
    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_bea44d4b387f9be622a0404f.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.666504;font-style:normal;font-weight:normal;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_8aee314feabc4ff4b16fe64b.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.666504;font-style: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;}
.fc5_c00000{color:transparent;}
.fc4_c00000{color:rgb(36,64,97);}
.fc2_c00000{color:rgb(210,218,227);}
.fc1_c00000{color:rgb(55,102,156);}
.fc3_c00000{color:rgb(0,0,0);}
.fc0_c00000{color:rgb(255,255,255);}
.fs6_c00000{font-size:66.000000px;}
.fs3_c00000{font-size:78.000000px;}
.fs4_c00000{font-size:84.000000px;}
.fs5_c00000{font-size:108.000000px;}
.fs2_c00000{font-size:144.000000px;}
.fs0_c00000{font-size:180.000000px;}
.fs1_c00000{font-size:300.000000px;}
.y18_c00000{bottom:-2431.500000px;}
.y19_c00000{bottom:-2106.000000px;}
.y15_c00000{bottom:-1876.500000px;}
.y17_c00000{bottom:-1749.000000px;}
.y16_c00000{bottom:-1422.000000px;}
.y0_c00000{bottom:0.000000px;}
.yd_c00000{bottom:6.000000px;}
.yf_c00000{bottom:7.500000px;}
.y6_c00000{bottom:16.500000px;}
.y2_c00000{bottom:19.500000px;}
.y4_c00000{bottom:24.000000px;}
.y11_c00000{bottom:39.000000px;}
.y13_c00000{bottom:90.000000px;}
.y12_c00000{bottom:138.000000px;}
.yb_c00000{bottom:189.000000px;}
.ya_c00000{bottom:243.000000px;}
.ye_c00000{bottom:253.500000px;}
.y9_c00000{bottom:297.000000px;}
.y10_c00000{bottom:327.000000px;}
.y8_c00000{bottom:351.000000px;}
.yc_c00000{bottom:391.500000px;}
.y7_c00000{bottom:495.000000px;}
.y5_c00000{bottom:930.000000px;}
.y3_c00000{bottom:1087.500000px;}
.y1_c00000{bottom:1114.500000px;}
.y14_c00000{bottom:1246.500000px;}
.he_c00000{height:0.000000px;}
.h8_c00000{height:25.500000px;}
.ha_c00000{height:28.500000px;}
.h10_c00000{height:43.989258px;}
.h5_c00000{height:48.000000px;}
.h9_c00000{height:51.987305px;}
.hc_c00000{height:55.986328px;}
.hb_c00000{height:58.500000px;}
.h1_c00000{height:61.500000px;}
.hf_c00000{height:71.982422px;}
.h3_c00000{height:93.000000px;}
.h6_c00000{height:95.976562px;}
.hd_c00000{height:109.500000px;}
.h2_c00000{height:119.970703px;}
.h4_c00000{height:199.951172px;}
.h7_c00000{height:393.000000px;}
.h0_c00000{height:1263.000000px;}
.w7_c00000{width:0.000000px;}
.w1_c00000{width:120.000000px;}
.w5_c00000{width:124.500000px;}
.w2_c00000{width:135.000000px;}
.w6_c00000{width:421.500000px;}
.w3_c00000{width:697.500000px;}
.w4_c00000{width:699.000000px;}
.w0_c00000{width:892.500000px;}
.x0_c00000{left:0.000000px;}
.x8_c00000{left:1.635000px;}
.x2_c00000{left:9.960000px;}
.xe_c00000{left:16.500000px;}
.x9_c00000{left:24.045000px;}
.x4_c00000{left:25.800000px;}
.xd_c00000{left:69.000000px;}
.xc_c00000{left:70.500000px;}
.x7_c00000{left:111.000000px;}
.x5_c00000{left:112.500000px;}
.x12_c00000{left:115.887000px;}
.xa_c00000{left:179.025000px;}
.x6_c00000{left:267.588000px;}
.xb_c00000{left:344.040000px;}
.x10_c00000{left:360.051000px;}
.xf_c00000{left:378.000000px;}
.x11_c00000{left:396.000000px;}
.x1_c00000{left:585.000000px;}
.x3_c00000{left:720.000000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs6_c00000{font-size:58.666667pt;}
.fs3_c00000{font-size:69.333333pt;}
.fs4_c00000{font-size:74.666667pt;}
.fs5_c00000{font-size:96.000000pt;}
.fs2_c00000{font-size:128.000000pt;}
.fs0_c00000{font-size:160.000000pt;}
.fs1_c00000{font-size:266.666667pt;}
.y18_c00000{bottom:-2161.333333pt;}
.y19_c00000{bottom:-1872.000000pt;}
.y15_c00000{bottom:-1668.000000pt;}
.y17_c00000{bottom:-1554.666667pt;}
.y16_c00000{bottom:-1264.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.yd_c00000{bottom:5.333333pt;}
.yf_c00000{bottom:6.666667pt;}
.y6_c00000{bottom:14.666667pt;}
.y2_c00000{bottom:17.333333pt;}
.y4_c00000{bottom:21.333333pt;}
.y11_c00000{bottom:34.666667pt;}
.y13_c00000{bottom:80.000000pt;}
.y12_c00000{bottom:122.666667pt;}
.yb_c00000{bottom:168.000000pt;}
.ya_c00000{bottom:216.000000pt;}
.ye_c00000{bottom:225.333333pt;}
.y9_c00000{bottom:264.000000pt;}
.y10_c00000{bottom:290.666667pt;}
.y8_c00000{bottom:312.000000pt;}
.yc_c00000{bottom:348.000000pt;}
.y7_c00000{bottom:440.000000pt;}
.y5_c00000{bottom:826.666667pt;}
.y3_c00000{bottom:966.666667pt;}
.y1_c00000{bottom:990.666667pt;}
.y14_c00000{bottom:1108.000000pt;}
.he_c00000{height:0.000000pt;}
.h8_c00000{height:22.666667pt;}
.ha_c00000{height:25.333333pt;}
.h10_c00000{height:39.101562pt;}
.h5_c00000{height:42.666667pt;}
.h9_c00000{height:46.210938pt;}
.hc_c00000{height:49.765625pt;}
.hb_c00000{height:52.000000pt;}
.h1_c00000{height:54.666667pt;}
.hf_c00000{height:63.984375pt;}
.h3_c00000{height:82.666667pt;}
.h6_c00000{height:85.312500pt;}
.hd_c00000{height:97.333333pt;}
.h2_c00000{height:106.640625pt;}
.h4_c00000{height:177.734375pt;}
.h7_c00000{height:349.333333pt;}
.h0_c00000{height:1122.666667pt;}
.w7_c00000{width:0.000000pt;}
.w1_c00000{width:106.666667pt;}
.w5_c00000{width:110.666667pt;}
.w2_c00000{width:120.000000pt;}
.w6_c00000{width:374.666667pt;}
.w3_c00000{width:620.000000pt;}
.w4_c00000{width:621.333333pt;}
.w0_c00000{width:793.333333pt;}
.x0_c00000{left:0.000000pt;}
.x8_c00000{left:1.453333pt;}
.x2_c00000{left:8.853333pt;}
.xe_c00000{left:14.666667pt;}
.x9_c00000{left:21.373333pt;}
.x4_c00000{left:22.933333pt;}
.xd_c00000{left:61.333333pt;}
.xc_c00000{left:62.666667pt;}
.x7_c00000{left:98.666667pt;}
.x5_c00000{left:100.000000pt;}
.x12_c00000{left:103.010667pt;}
.xa_c00000{left:159.133333pt;}
.x6_c00000{left:237.856000pt;}
.xb_c00000{left:305.813333pt;}
.x10_c00000{left:320.045333pt;}
.xf_c00000{left:336.000000pt;}
.x11_c00000{left:352.000000pt;}
.x1_c00000{left:520.000000pt;}
.x3_c00000{left:640.000000pt;}
}





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

.ir_c00001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_19541a7e82d8d87d2552ebf6.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_6e69e179a95a200b1f3732a3.woff2')format("woff");}.ff2_c00001{font-family:ff2_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;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc2_c00001{color:transparent;}
.fc1_c00001{color:rgb(36,64,97);}
.fc0_c00001{color:rgb(0,0,0);}
.fs3_c00001{font-size:66.000000px;}
.fs0_c00001{font-size:78.000000px;}
.fs2_c00001{font-size:84.000000px;}
.fs1_c00001{font-size:108.000000px;}
.y0_c00001{bottom:0.000000px;}
.y16_c00001{bottom:6.000000px;}
.yc_c00001{bottom:7.500000px;}
.y5_c00001{bottom:9.000000px;}
.y14_c00001{bottom:12.000000px;}
.ye_c00001{bottom:28.500000px;}
.y15_c00001{bottom:37.500000px;}
.y10_c00001{bottom:57.000000px;}
.ya_c00001{bottom:93.018000px;}
.y9_c00001{bottom:126.012000px;}
.y8_c00001{bottom:159.006000px;}
.y7_c00001{bottom:192.000000px;}
.y13_c00001{bottom:240.000000px;}
.y3_c00001{bottom:243.000000px;}
.yd_c00001{bottom:306.000000px;}
.y17_c00001{bottom:361.500000px;}
.y2_c00001{bottom:379.500000px;}
.yf_c00001{bottom:495.000000px;}
.yb_c00001{bottom:591.000000px;}
.y4_c00001{bottom:661.500000px;}
.y12_c00001{bottom:717.000000px;}
.y6_c00001{bottom:762.000000px;}
.y11_c00001{bottom:1044.000000px;}
.y1_c00001{bottom:1246.500000px;}
.h1_c00001{height:0.000000px;}
.hc_c00001{height:22.500000px;}
.h6_c00001{height:27.000000px;}
.ha_c00001{height:30.000000px;}
.h3_c00001{height:34.500000px;}
.hb_c00001{height:37.500000px;}
.hd_c00001{height:43.989258px;}
.h8_c00001{height:48.000000px;}
.h2_c00001{height:51.987305px;}
.h7_c00001{height:55.986328px;}
.h4_c00001{height:71.982422px;}
.h9_c00001{height:76.500000px;}
.h5_c00001{height:217.500000px;}
.h0_c00001{height:1263.000000px;}
.w1_c00001{width:0.000000px;}
.w8_c00001{width:69.000000px;}
.w4_c00001{width:102.000000px;}
.w9_c00001{width:118.500000px;}
.w7_c00001{width:172.500000px;}
.wb_c00001{width:304.500000px;}
.wa_c00001{width:603.000000px;}
.w3_c00001{width:651.000000px;}
.w2_c00001{width:673.500000px;}
.w6_c00001{width:675.000000px;}
.w5_c00001{width:687.000000px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x11_c00001{left:1.500000px;}
.x1_c00001{left:16.500000px;}
.x8_c00001{left:29.526000px;}
.x6_c00001{left:39.219000px;}
.x7_c00001{left:45.240000px;}
.x2_c00001{left:54.000000px;}
.xb_c00001{left:105.000000px;}
.xd_c00001{left:114.000000px;}
.x3_c00001{left:120.000000px;}
.x5_c00001{left:132.000000px;}
.x4_c00001{left:175.533000px;}
.xc_c00001{left:221.574000px;}
.xe_c00001{left:224.950500px;}
.x9_c00001{left:275.307000px;}
.x13_c00001{left:283.500000px;}
.xf_c00001{left:376.500000px;}
.x12_c00001{left:388.500000px;}
.xa_c00001{left:394.500000px;}
.x10_c00001{left:411.000000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs3_c00001{font-size:58.666667pt;}
.fs0_c00001{font-size:69.333333pt;}
.fs2_c00001{font-size:74.666667pt;}
.fs1_c00001{font-size:96.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y16_c00001{bottom:5.333333pt;}
.yc_c00001{bottom:6.666667pt;}
.y5_c00001{bottom:8.000000pt;}
.y14_c00001{bottom:10.666667pt;}
.ye_c00001{bottom:25.333333pt;}
.y15_c00001{bottom:33.333333pt;}
.y10_c00001{bottom:50.666667pt;}
.ya_c00001{bottom:82.682667pt;}
.y9_c00001{bottom:112.010667pt;}
.y8_c00001{bottom:141.338667pt;}
.y7_c00001{bottom:170.666667pt;}
.y13_c00001{bottom:213.333333pt;}
.y3_c00001{bottom:216.000000pt;}
.yd_c00001{bottom:272.000000pt;}
.y17_c00001{bottom:321.333333pt;}
.y2_c00001{bottom:337.333333pt;}
.yf_c00001{bottom:440.000000pt;}
.yb_c00001{bottom:525.333333pt;}
.y4_c00001{bottom:588.000000pt;}
.y12_c00001{bottom:637.333333pt;}
.y6_c00001{bottom:677.333333pt;}
.y11_c00001{bottom:928.000000pt;}
.y1_c00001{bottom:1108.000000pt;}
.h1_c00001{height:0.000000pt;}
.hc_c00001{height:20.000000pt;}
.h6_c00001{height:24.000000pt;}
.ha_c00001{height:26.666667pt;}
.h3_c00001{height:30.666667pt;}
.hb_c00001{height:33.333333pt;}
.hd_c00001{height:39.101562pt;}
.h8_c00001{height:42.666667pt;}
.h2_c00001{height:46.210938pt;}
.h7_c00001{height:49.765625pt;}
.h4_c00001{height:63.984375pt;}
.h9_c00001{height:68.000000pt;}
.h5_c00001{height:193.333333pt;}
.h0_c00001{height:1122.666667pt;}
.w1_c00001{width:0.000000pt;}
.w8_c00001{width:61.333333pt;}
.w4_c00001{width:90.666667pt;}
.w9_c00001{width:105.333333pt;}
.w7_c00001{width:153.333333pt;}
.wb_c00001{width:270.666667pt;}
.wa_c00001{width:536.000000pt;}
.w3_c00001{width:578.666667pt;}
.w2_c00001{width:598.666667pt;}
.w6_c00001{width:600.000000pt;}
.w5_c00001{width:610.666667pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x11_c00001{left:1.333333pt;}
.x1_c00001{left:14.666667pt;}
.x8_c00001{left:26.245333pt;}
.x6_c00001{left:34.861333pt;}
.x7_c00001{left:40.213333pt;}
.x2_c00001{left:48.000000pt;}
.xb_c00001{left:93.333333pt;}
.xd_c00001{left:101.333333pt;}
.x3_c00001{left:106.666667pt;}
.x5_c00001{left:117.333333pt;}
.x4_c00001{left:156.029333pt;}
.xc_c00001{left:196.954667pt;}
.xe_c00001{left:199.956000pt;}
.x9_c00001{left:244.717333pt;}
.x13_c00001{left:252.000000pt;}
.xf_c00001{left:334.666667pt;}
.x12_c00001{left:345.333333pt;}
.xa_c00001{left:350.666667pt;}
.x10_c00001{left:365.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_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_4e91f0762b1b12eca20a7ff8.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_f6b769919a26db2302345ff2.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc2_c00002{color:transparent;}
.fc1_c00002{color:rgb(36,64,97);}
.fc0_c00002{color:rgb(0,0,0);}
.fs3_c00002{font-size:66.000000px;}
.fs0_c00002{font-size:78.000000px;}
.fs1_c00002{font-size:84.000000px;}
.fs2_c00002{font-size:108.000000px;}
.y0_c00002{bottom:0.000000px;}
.y7_c00002{bottom:25.500000px;}
.y8_c00002{bottom:351.000000px;}
.y4_c00002{bottom:580.500000px;}
.y6_c00002{bottom:708.000000px;}
.y5_c00002{bottom:1035.000000px;}
.y1_c00002{bottom:1246.500000px;}
.y3_c00002{bottom:1471.500000px;}
.y2_c00002{bottom:1608.000000px;}
.h1_c00002{height:0.000000px;}
.h5_c00002{height:43.989258px;}
.h2_c00002{height:51.987305px;}
.h3_c00002{height:55.986328px;}
.h4_c00002{height:71.982422px;}
.h0_c00002{height:1263.000000px;}
.w1_c00002{width:0.000000px;}
.w0_c00002{width:892.500000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:16.500000px;}
.x2_c00002{left:54.000000px;}
.x6_c00002{left:115.887000px;}
.x7_c00002{left:267.252000px;}
.x4_c00002{left:360.051000px;}
.x3_c00002{left:378.000000px;}
.x5_c00002{left:396.000000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs3_c00002{font-size:58.666667pt;}
.fs0_c00002{font-size:69.333333pt;}
.fs1_c00002{font-size:74.666667pt;}
.fs2_c00002{font-size:96.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y7_c00002{bottom:22.666667pt;}
.y8_c00002{bottom:312.000000pt;}
.y4_c00002{bottom:516.000000pt;}
.y6_c00002{bottom:629.333333pt;}
.y5_c00002{bottom:920.000000pt;}
.y1_c00002{bottom:1108.000000pt;}
.y3_c00002{bottom:1308.000000pt;}
.y2_c00002{bottom:1429.333333pt;}
.h1_c00002{height:0.000000pt;}
.h5_c00002{height:39.101562pt;}
.h2_c00002{height:46.210938pt;}
.h3_c00002{height:49.765625pt;}
.h4_c00002{height:63.984375pt;}
.h0_c00002{height:1122.666667pt;}
.w1_c00002{width:0.000000pt;}
.w0_c00002{width:793.333333pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:14.666667pt;}
.x2_c00002{left:48.000000pt;}
.x6_c00002{left:103.010667pt;}
.x7_c00002{left:237.557333pt;}
.x4_c00002{left:320.045333pt;}
.x3_c00002{left:336.000000pt;}
.x5_c00002{left:352.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8dbeafeaaf7be45734165633.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.263000;font-style:normal;font-weight:normal;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_03c62aea2538bae13cd1ed14.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls1_c00003{letter-spacing:-12.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
._4_c00003{margin-left:-12.000000px;}
._6_c00003{margin-left:-9.750000px;}
._3_c00003{margin-left:-8.640000px;}
._1_c00003{margin-left:-5.880000px;}
._5_c00003{margin-left:-3.630000px;}
._2_c00003{margin-left:-2.400000px;}
._0_c00003{width:1.680000px;}
.fc2_c00003{color:transparent;}
.fc1_c00003{color:rgb(255,255,255);}
.fc0_c00003{color:rgb(118,209,197);}
.fs2_c00003{font-size:66.000000px;}
.fs3_c00003{font-size:78.000000px;}
.fs1_c00003{font-size:96.000000px;}
.fs4_c00003{font-size:120.000000px;}
.fs0_c00003{font-size:168.000000px;}
.y0_c00003{bottom:0.000000px;}
.yc_c00003{bottom:625.322250px;}
.yb_c00003{bottom:625.622250px;}
.y9_c00003{bottom:714.346350px;}
.y8_c00003{bottom:733.849350px;}
.y7_c00003{bottom:753.352350px;}
.ya_c00003{bottom:784.535100px;}
.y6_c00003{bottom:860.269050px;}
.y5_c00003{bottom:931.647600px;}
.y4_c00003{bottom:985.659600px;}
.y3_c00003{bottom:1039.671600px;}
.y2_c00003{bottom:1093.683600px;}
.y1_c00003{bottom:1147.695600px;}
.h5_c00003{height:63.954000px;}
.h6_c00003{height:75.582000px;}
.h4_c00003{height:93.024000px;}
.h7_c00003{height:116.280000px;}
.h3_c00003{height:162.792000px;}
.h2_c00003{height:1261.500000px;}
.h0_c00003{height:1262.835000px;}
.h1_c00003{height:1263.000000px;}
.w2_c00003{width:892.500000px;}
.w0_c00003{width:892.920000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
.xc_c00003{left:88.202100px;}
.xb_c00003{left:194.132100px;}
.x1_c00003{left:201.933150px;}
.xa_c00003{left:271.812000px;}
.x2_c00003{left:289.503150px;}
.x3_c00003{left:436.167150px;}
.x5_c00003{left:449.271150px;}
.x8_c00003{left:464.405400px;}
.x4_c00003{left:484.383150px;}
.x6_c00003{left:499.315500px;}
.x7_c00003{left:609.308400px;}
.x9_c00003{left:611.882400px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls1_c00003{letter-spacing:-10.666667pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._4_c00003{margin-left:-10.666667pt;}
._6_c00003{margin-left:-8.666667pt;}
._3_c00003{margin-left:-7.680000pt;}
._1_c00003{margin-left:-5.226667pt;}
._5_c00003{margin-left:-3.226667pt;}
._2_c00003{margin-left:-2.133333pt;}
._0_c00003{width:1.493333pt;}
.fs2_c00003{font-size:58.666667pt;}
.fs3_c00003{font-size:69.333333pt;}
.fs1_c00003{font-size:85.333333pt;}
.fs4_c00003{font-size:106.666667pt;}
.fs0_c00003{font-size:149.333333pt;}
.y0_c00003{bottom:0.000000pt;}
.yc_c00003{bottom:555.842000pt;}
.yb_c00003{bottom:556.108667pt;}
.y9_c00003{bottom:634.974533pt;}
.y8_c00003{bottom:652.310533pt;}
.y7_c00003{bottom:669.646533pt;}
.ya_c00003{bottom:697.364533pt;}
.y6_c00003{bottom:764.683600pt;}
.y5_c00003{bottom:828.131200pt;}
.y4_c00003{bottom:876.141867pt;}
.y3_c00003{bottom:924.152533pt;}
.y2_c00003{bottom:972.163200pt;}
.y1_c00003{bottom:1020.173867pt;}
.h5_c00003{height:56.848000pt;}
.h6_c00003{height:67.184000pt;}
.h4_c00003{height:82.688000pt;}
.h7_c00003{height:103.360000pt;}
.h3_c00003{height:144.704000pt;}
.h2_c00003{height:1121.333333pt;}
.h0_c00003{height:1122.520000pt;}
.h1_c00003{height:1122.666667pt;}
.w2_c00003{width:793.333333pt;}
.w0_c00003{width:793.706667pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{left:0.000000pt;}
.xc_c00003{left:78.401867pt;}
.xb_c00003{left:172.561867pt;}
.x1_c00003{left:179.496133pt;}
.xa_c00003{left:241.610667pt;}
.x2_c00003{left:257.336133pt;}
.x3_c00003{left:387.704133pt;}
.x5_c00003{left:399.352133pt;}
.x8_c00003{left:412.804800pt;}
.x4_c00003{left:430.562800pt;}
.x6_c00003{left:443.836000pt;}
.x7_c00003{left:541.607467pt;}
.x9_c00003{left:543.895467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00004{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
}
.y0_c00004{bottom:0.000000px;}
.h0_c00004{height:1262.835000px;}
.h1_c00004{height:1263.000000px;}
.w0_c00004{width:892.920000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
@media print{
.y0_c00004{bottom:0.000000pt;}
.h0_c00004{height:1122.520000pt;}
.h1_c00004{height:1122.666667pt;}
.w0_c00004{width:793.706667pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{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_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_1cc917a9e77c63a5c20e36e4.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;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_c00005;src:url('chunks/assets/font_0e30908e9f82be494be72572.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;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;}
.m1_c00005{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls2_c00005{letter-spacing:0.000000px;}
.ls1_c00005{letter-spacing:6.617376px;}
.ls0_c00005{letter-spacing:8.660520px;}
.sc__c00005{text-shadow:none;}
.sc1_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00005{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc1_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00005{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00005{word-spacing:-28.234656px;}
.ws1_c00005{word-spacing:0.000000px;}
._4_c00005{width:1.656000px;}
._0_c00005{width:2.952000px;}
._9_c00005{width:4.968000px;}
._2_c00005{width:6.048000px;}
._8_c00005{width:7.056000px;}
._a_c00005{width:8.208000px;}
._1_c00005{width:9.288000px;}
._3_c00005{width:10.368000px;}
._e_c00005{width:11.376000px;}
._10_c00005{width:15.048000px;}
._5_c00005{width:16.416000px;}
._c_c00005{width:17.928000px;}
._b_c00005{width:18.936000px;}
._7_c00005{width:24.912000px;}
._6_c00005{width:29.664000px;}
._f_c00005{width:30.960000px;}
._d_c00005{width:36.504000px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs3_c00005{font-size:72.000000px;}
.fs4_c00005{font-size:74.215901px;}
.fs2_c00005{font-size:77.760000px;}
.fs0_c00005{font-size:83.520000px;}
.fs1_c00005{font-size:95.040000px;}
.y0_c00005{bottom:0.000000px;}
.y1_c00005{bottom:54.000000px;}
.y27_c00005{bottom:151.605000px;}
.y26_c00005{bottom:172.845000px;}
.y25_c00005{bottom:193.725000px;}
.y24_c00005{bottom:214.965000px;}
.y23_c00005{bottom:235.845000px;}
.y22_c00005{bottom:271.845000px;}
.y21_c00005{bottom:292.725000px;}
.y20_c00005{bottom:313.965000px;}
.y1f_c00005{bottom:334.845000px;}
.y1e_c00005{bottom:355.725000px;}
.y1d_c00005{bottom:376.965000px;}
.y1c_c00005{bottom:397.845000px;}
.y1b_c00005{bottom:418.725000px;}
.y1a_c00005{bottom:439.965000px;}
.y19_c00005{bottom:460.845000px;}
.y18_c00005{bottom:496.845000px;}
.y17_c00005{bottom:517.725000px;}
.y16_c00005{bottom:538.965000px;}
.y15_c00005{bottom:559.845000px;}
.y14_c00005{bottom:580.725000px;}
.y13_c00005{bottom:616.725000px;}
.y12_c00005{bottom:637.965000px;}
.y11_c00005{bottom:658.845000px;}
.y10_c00005{bottom:680.085000px;}
.yf_c00005{bottom:700.965000px;}
.ye_c00005{bottom:736.965000px;}
.yd_c00005{bottom:757.845000px;}
.yc_c00005{bottom:779.085000px;}
.yb_c00005{bottom:799.965000px;}
.ya_c00005{bottom:820.845000px;}
.y9_c00005{bottom:842.085000px;}
.y8_c00005{bottom:862.965000px;}
.y7_c00005{bottom:883.845000px;}
.y6_c00005{bottom:920.915640px;}
.y5_c00005{bottom:960.525000px;}
.y4_c00005{bottom:1000.485000px;}
.y3_c00005{bottom:1042.955640px;}
.y2_c00005{bottom:1082.565000px;}
.h5_c00005{height:55.584000px;}
.h6_c00005{height:57.294676px;}
.h3_c00005{height:64.477440px;}
.h4_c00005{height:73.370880px;}
.h2_c00005{height:1201.365000px;}
.h0_c00005{height:1262.835000px;}
.h1_c00005{height:1263.000000px;}
.w2_c00005{width:863.955000px;}
.w0_c00005{width:892.935000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:14.490000px;}
.x4_c00005{left:113.040150px;}
.x5_c00005{left:174.059250px;}
.x3_c00005{left:375.499200px;}
.x2_c00005{left:431.715150px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls2_c00005{letter-spacing:0.000000pt;}
.ls1_c00005{letter-spacing:5.882112pt;}
.ls0_c00005{letter-spacing:7.698240pt;}
.ws0_c00005{word-spacing:-25.097472pt;}
.ws1_c00005{word-spacing:0.000000pt;}
._4_c00005{width:1.472000pt;}
._0_c00005{width:2.624000pt;}
._9_c00005{width:4.416000pt;}
._2_c00005{width:5.376000pt;}
._8_c00005{width:6.272000pt;}
._a_c00005{width:7.296000pt;}
._1_c00005{width:8.256000pt;}
._3_c00005{width:9.216000pt;}
._e_c00005{width:10.112000pt;}
._10_c00005{width:13.376000pt;}
._5_c00005{width:14.592000pt;}
._c_c00005{width:15.936000pt;}
._b_c00005{width:16.832000pt;}
._7_c00005{width:22.144000pt;}
._6_c00005{width:26.368000pt;}
._f_c00005{width:27.520000pt;}
._d_c00005{width:32.448000pt;}
.fs3_c00005{font-size:64.000000pt;}
.fs4_c00005{font-size:65.969690pt;}
.fs2_c00005{font-size:69.120000pt;}
.fs0_c00005{font-size:74.240000pt;}
.fs1_c00005{font-size:84.480000pt;}
.y0_c00005{bottom:0.000000pt;}
.y1_c00005{bottom:48.000000pt;}
.y27_c00005{bottom:134.760000pt;}
.y26_c00005{bottom:153.640000pt;}
.y25_c00005{bottom:172.200000pt;}
.y24_c00005{bottom:191.080000pt;}
.y23_c00005{bottom:209.640000pt;}
.y22_c00005{bottom:241.640000pt;}
.y21_c00005{bottom:260.200000pt;}
.y20_c00005{bottom:279.080000pt;}
.y1f_c00005{bottom:297.640000pt;}
.y1e_c00005{bottom:316.200000pt;}
.y1d_c00005{bottom:335.080000pt;}
.y1c_c00005{bottom:353.640000pt;}
.y1b_c00005{bottom:372.200000pt;}
.y1a_c00005{bottom:391.080000pt;}
.y19_c00005{bottom:409.640000pt;}
.y18_c00005{bottom:441.640000pt;}
.y17_c00005{bottom:460.200000pt;}
.y16_c00005{bottom:479.080000pt;}
.y15_c00005{bottom:497.640000pt;}
.y14_c00005{bottom:516.200000pt;}
.y13_c00005{bottom:548.200000pt;}
.y12_c00005{bottom:567.080000pt;}
.y11_c00005{bottom:585.640000pt;}
.y10_c00005{bottom:604.520000pt;}
.yf_c00005{bottom:623.080000pt;}
.ye_c00005{bottom:655.080000pt;}
.yd_c00005{bottom:673.640000pt;}
.yc_c00005{bottom:692.520000pt;}
.yb_c00005{bottom:711.080000pt;}
.ya_c00005{bottom:729.640000pt;}
.y9_c00005{bottom:748.520000pt;}
.y8_c00005{bottom:767.080000pt;}
.y7_c00005{bottom:785.640000pt;}
.y6_c00005{bottom:818.591680pt;}
.y5_c00005{bottom:853.800000pt;}
.y4_c00005{bottom:889.320000pt;}
.y3_c00005{bottom:927.071680pt;}
.y2_c00005{bottom:962.280000pt;}
.h5_c00005{height:49.408000pt;}
.h6_c00005{height:50.928601pt;}
.h3_c00005{height:57.313280pt;}
.h4_c00005{height:65.218560pt;}
.h2_c00005{height:1067.880000pt;}
.h0_c00005{height:1122.520000pt;}
.h1_c00005{height:1122.666667pt;}
.w2_c00005{width:767.960000pt;}
.w0_c00005{width:793.720000pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:12.880000pt;}
.x4_c00005{left:100.480133pt;}
.x5_c00005{left:154.719333pt;}
.x3_c00005{left:333.777067pt;}
.x2_c00005{left:383.746800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_289631bff4777b1c21d3276e.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;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_c00006;src:url('chunks/assets/font_0e30908e9f82be494be72572.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;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;}
.m1_c00006{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls2_c00006{letter-spacing:0.000000px;}
.ls1_c00006{letter-spacing:6.617376px;}
.ls0_c00006{letter-spacing:8.658360px;}
.ls3_c00006{letter-spacing:12.477600px;}
.sc__c00006{text-shadow:none;}
.sc1_c00006{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_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;}
.sc1_c00006{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:-28.234656px;}
.ws1_c00006{word-spacing:0.000000px;}
._5_c00006{margin-left:-12.355200px;}
._7_c00006{width:1.008000px;}
._0_c00006{width:2.088000px;}
._a_c00006{width:3.672000px;}
._2_c00006{width:5.400000px;}
._c_c00006{width:6.768000px;}
._6_c00006{width:8.640000px;}
._3_c00006{width:10.080000px;}
._1_c00006{width:11.736000px;}
._4_c00006{width:13.176000px;}
._b_c00006{width:14.616000px;}
._d_c00006{width:15.696000px;}
._9_c00006{width:16.704000px;}
._8_c00006{width:28.440000px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:72.000000px;}
.fs4_c00006{font-size:74.215901px;}
.fs2_c00006{font-size:77.760000px;}
.fs3_c00006{font-size:83.520000px;}
.fs1_c00006{font-size:95.040000px;}
.y0_c00006{bottom:0.000000px;}
.y1_c00006{bottom:54.000000px;}
.y25_c00006{bottom:152.325000px;}
.y24_c00006{bottom:188.325000px;}
.y23_c00006{bottom:209.205000px;}
.y22_c00006{bottom:230.445000px;}
.y21_c00006{bottom:251.325000px;}
.y20_c00006{bottom:287.325000px;}
.y1f_c00006{bottom:308.205000px;}
.y1e_c00006{bottom:329.445000px;}
.y1d_c00006{bottom:350.325000px;}
.y1c_c00006{bottom:371.205000px;}
.y1b_c00006{bottom:392.445000px;}
.y1a_c00006{bottom:413.325000px;}
.y19_c00006{bottom:434.205000px;}
.y18_c00006{bottom:455.445000px;}
.y17_c00006{bottom:476.325000px;}
.y16_c00006{bottom:512.325000px;}
.y15_c00006{bottom:533.565000px;}
.y14_c00006{bottom:554.445000px;}
.y13_c00006{bottom:575.325000px;}
.y12_c00006{bottom:611.325000px;}
.y11_c00006{bottom:632.565000px;}
.y10_c00006{bottom:653.445000px;}
.yf_c00006{bottom:674.325000px;}
.ye_c00006{bottom:710.325000px;}
.yd_c00006{bottom:731.565000px;}
.yc_c00006{bottom:752.445000px;}
.yb_c00006{bottom:773.325000px;}
.ya_c00006{bottom:794.565000px;}
.y9_c00006{bottom:815.445000px;}
.y8_c00006{bottom:852.522120px;}
.y7_c00006{bottom:892.131480px;}
.y6_c00006{bottom:931.365000px;}
.y5_c00006{bottom:971.685000px;}
.y4_c00006{bottom:1013.085000px;}
.y3_c00006{bottom:1049.085000px;}
.y2_c00006{bottom:1085.085000px;}
.h3_c00006{height:55.584000px;}
.h6_c00006{height:57.294676px;}
.h5_c00006{height:64.477440px;}
.h4_c00006{height:73.370880px;}
.h2_c00006{height:1201.365000px;}
.h0_c00006{height:1262.835000px;}
.h1_c00006{height:1263.000000px;}
.w2_c00006{width:863.955000px;}
.w0_c00006{width:892.935000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:14.490000px;}
.x2_c00006{left:113.040150px;}
.x5_c00006{left:174.059250px;}
.x3_c00006{left:371.475300px;}
.x4_c00006{left:431.715150px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls2_c00006{letter-spacing:0.000000pt;}
.ls1_c00006{letter-spacing:5.882112pt;}
.ls0_c00006{letter-spacing:7.696320pt;}
.ls3_c00006{letter-spacing:11.091200pt;}
.ws0_c00006{word-spacing:-25.097472pt;}
.ws1_c00006{word-spacing:0.000000pt;}
._5_c00006{margin-left:-10.982400pt;}
._7_c00006{width:0.896000pt;}
._0_c00006{width:1.856000pt;}
._a_c00006{width:3.264000pt;}
._2_c00006{width:4.800000pt;}
._c_c00006{width:6.016000pt;}
._6_c00006{width:7.680000pt;}
._3_c00006{width:8.960000pt;}
._1_c00006{width:10.432000pt;}
._4_c00006{width:11.712000pt;}
._b_c00006{width:12.992000pt;}
._d_c00006{width:13.952000pt;}
._9_c00006{width:14.848000pt;}
._8_c00006{width:25.280000pt;}
.fs0_c00006{font-size:64.000000pt;}
.fs4_c00006{font-size:65.969690pt;}
.fs2_c00006{font-size:69.120000pt;}
.fs3_c00006{font-size:74.240000pt;}
.fs1_c00006{font-size:84.480000pt;}
.y0_c00006{bottom:0.000000pt;}
.y1_c00006{bottom:48.000000pt;}
.y25_c00006{bottom:135.400000pt;}
.y24_c00006{bottom:167.400000pt;}
.y23_c00006{bottom:185.960000pt;}
.y22_c00006{bottom:204.840000pt;}
.y21_c00006{bottom:223.400000pt;}
.y20_c00006{bottom:255.400000pt;}
.y1f_c00006{bottom:273.960000pt;}
.y1e_c00006{bottom:292.840000pt;}
.y1d_c00006{bottom:311.400000pt;}
.y1c_c00006{bottom:329.960000pt;}
.y1b_c00006{bottom:348.840000pt;}
.y1a_c00006{bottom:367.400000pt;}
.y19_c00006{bottom:385.960000pt;}
.y18_c00006{bottom:404.840000pt;}
.y17_c00006{bottom:423.400000pt;}
.y16_c00006{bottom:455.400000pt;}
.y15_c00006{bottom:474.280000pt;}
.y14_c00006{bottom:492.840000pt;}
.y13_c00006{bottom:511.400000pt;}
.y12_c00006{bottom:543.400000pt;}
.y11_c00006{bottom:562.280000pt;}
.y10_c00006{bottom:580.840000pt;}
.yf_c00006{bottom:599.400000pt;}
.ye_c00006{bottom:631.400000pt;}
.yd_c00006{bottom:650.280000pt;}
.yc_c00006{bottom:668.840000pt;}
.yb_c00006{bottom:687.400000pt;}
.ya_c00006{bottom:706.280000pt;}
.y9_c00006{bottom:724.840000pt;}
.y8_c00006{bottom:757.797440pt;}
.y7_c00006{bottom:793.005760pt;}
.y6_c00006{bottom:827.880000pt;}
.y5_c00006{bottom:863.720000pt;}
.y4_c00006{bottom:900.520000pt;}
.y3_c00006{bottom:932.520000pt;}
.y2_c00006{bottom:964.520000pt;}
.h3_c00006{height:49.408000pt;}
.h6_c00006{height:50.928601pt;}
.h5_c00006{height:57.313280pt;}
.h4_c00006{height:65.218560pt;}
.h2_c00006{height:1067.880000pt;}
.h0_c00006{height:1122.520000pt;}
.h1_c00006{height:1122.666667pt;}
.w2_c00006{width:767.960000pt;}
.w0_c00006{width:793.720000pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:12.880000pt;}
.x2_c00006{left:100.480133pt;}
.x5_c00006{left:154.719333pt;}
.x3_c00006{left:330.200267pt;}
.x4_c00006{left:383.746800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef680d87248229daad7477cc.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.263000;font-style:normal;font-weight:normal;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_150b39a1c21ee6048cf323f8.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.050000;font-style:normal;font-weight:normal;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_b369a32382bc4609e59a834e.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.240000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls18_c00007{letter-spacing:0.000000px;}
.ls14_c00007{letter-spacing:0.116208px;}
.ls23_c00007{letter-spacing:0.133056px;}
.ls17_c00007{letter-spacing:0.151440px;}
.lsd_c00007{letter-spacing:0.265680px;}
.ls6_c00007{letter-spacing:0.283392px;}
.ls28_c00007{letter-spacing:0.301104px;}
.ls22_c00007{letter-spacing:0.308880px;}
.lsf_c00007{letter-spacing:0.342144px;}
.ls10_c00007{letter-spacing:0.346896px;}
.ls2_c00007{letter-spacing:0.351648px;}
.ls11_c00007{letter-spacing:0.354600px;}
.ls13_c00007{letter-spacing:0.355200px;}
.lsa_c00007{letter-spacing:0.355680px;}
.ls3_c00007{letter-spacing:0.356400px;}
.ls4_c00007{letter-spacing:0.370656px;}
.ls24_c00007{letter-spacing:0.371952px;}
.ls0_c00007{letter-spacing:0.389520px;}
.ls1f_c00007{letter-spacing:0.389664px;}
.ls1c_c00007{letter-spacing:0.407376px;}
.ls9_c00007{letter-spacing:0.413280px;}
.ls1b_c00007{letter-spacing:0.478224px;}
.ls20_c00007{letter-spacing:0.495936px;}
.ls1d_c00007{letter-spacing:0.501840px;}
.ls15_c00007{letter-spacing:0.507744px;}
.ls19_c00007{letter-spacing:0.531360px;}
.ls1e_c00007{letter-spacing:0.566784px;}
.ls7_c00007{letter-spacing:0.590400px;}
.ls25_c00007{letter-spacing:0.619920px;}
.ls29_c00007{letter-spacing:0.655344px;}
.ls2a_c00007{letter-spacing:0.673056px;}
.ls12_c00007{letter-spacing:0.687840px;}
.ls27_c00007{letter-spacing:0.690768px;}
.ls16_c00007{letter-spacing:0.690840px;}
.ls1_c00007{letter-spacing:0.696720px;}
.ls5_c00007{letter-spacing:0.708480px;}
.ls26_c00007{letter-spacing:0.743904px;}
.ls1a_c00007{letter-spacing:4.295808px;}
.ls21_c00007{letter-spacing:4.357584px;}
.lse_c00007{letter-spacing:5.608920px;}
.lsc_c00007{letter-spacing:165.371040px;}
.ls8_c00007{letter-spacing:196.012800px;}
.lsb_c00007{letter-spacing:198.256320px;}
.sc__c00007{text-shadow:none;}
.sc1_c00007{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_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;}
.sc1_c00007{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00007{word-spacing:-16.944480px;}
.ws5_c00007{word-spacing:-16.909056px;}
.ws3_c00007{word-spacing:-16.820496px;}
.wsc_c00007{word-spacing:-16.714224px;}
.ws4_c00007{word-spacing:-16.696512px;}
.ws1_c00007{word-spacing:-15.700608px;}
.ws8_c00007{word-spacing:-14.913504px;}
.wsa_c00007{word-spacing:-14.860368px;}
.wse_c00007{word-spacing:-14.842656px;}
.ws7_c00007{word-spacing:-14.789520px;}
.wsb_c00007{word-spacing:-14.736384px;}
.ws9_c00007{word-spacing:-14.677344px;}
.wsd_c00007{word-spacing:-14.559264px;}
.wsf_c00007{word-spacing:-14.541552px;}
.ws0_c00007{word-spacing:-13.566960px;}
.ws2_c00007{word-spacing:-13.557456px;}
.ws10_c00007{word-spacing:0.000000px;}
._16_c00007{margin-left:-207.425328px;}
._e_c00007{margin-left:-204.671064px;}
._20_c00007{margin-left:-203.150448px;}
._2_c00007{margin-left:-195.892200px;}
._18_c00007{margin-left:-191.744904px;}
._c_c00007{margin-left:-183.041808px;}
._a_c00007{margin-left:-173.577696px;}
._f_c00007{margin-left:-167.387304px;}
._b_c00007{margin-left:-158.236104px;}
._12_c00007{margin-left:-156.201744px;}
._15_c00007{margin-left:-153.341496px;}
._1a_c00007{margin-left:-149.406624px;}
._d_c00007{margin-left:-131.461464px;}
._19_c00007{margin-left:-124.913520px;}
._1d_c00007{margin-left:-123.776784px;}
._1_c00007{margin-left:-119.939760px;}
._13_c00007{margin-left:-116.426880px;}
._1f_c00007{margin-left:-107.387472px;}
._23_c00007{margin-left:-94.060800px;}
._1e_c00007{margin-left:-92.916768px;}
._1c_c00007{margin-left:-80.500464px;}
._11_c00007{margin-left:-78.295944px;}
._1b_c00007{margin-left:-66.442848px;}
._10_c00007{margin-left:-56.456280px;}
._17_c00007{margin-left:-44.672664px;}
._26_c00007{margin-left:-43.494384px;}
._3_c00007{margin-left:-42.411360px;}
._24_c00007{margin-left:-31.225968px;}
._25_c00007{margin-left:-28.076136px;}
._14_c00007{margin-left:-21.903936px;}
._7_c00007{margin-left:-19.382928px;}
._21_c00007{margin-left:-7.332192px;}
._4_c00007{margin-left:-6.178584px;}
._0_c00007{margin-left:-1.260456px;}
._8_c00007{width:1.006488px;}
._22_c00007{width:14.662152px;}
._9_c00007{width:62.564688px;}
._5_c00007{width:84.323832px;}
._6_c00007{width:196.018704px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs1_c00007{font-size:47.520000px;}
.fs0_c00007{font-size:59.040000px;}
.y0_c00007{bottom:0.000000px;}
.y1_c00007{bottom:54.000000px;}
.y37_c00007{bottom:74.560320px;}
.y36_c00007{bottom:93.640320px;}
.y35_c00007{bottom:112.729320px;}
.y34_c00007{bottom:131.440320px;}
.y33_c00007{bottom:150.521400px;}
.y32_c00007{bottom:169.960320px;}
.y31_c00007{bottom:189.049320px;}
.y30_c00007{bottom:207.760320px;}
.y2f_c00007{bottom:226.840320px;}
.y2e_c00007{bottom:245.920320px;}
.y2d_c00007{bottom:265.009320px;}
.y2c_c00007{bottom:283.726080px;}
.y2b_c00007{bottom:303.160320px;}
.y2a_c00007{bottom:322.240320px;}
.y29_c00007{bottom:341.329320px;}
.y28_c00007{bottom:360.040320px;}
.y27_c00007{bottom:379.120320px;}
.y26_c00007{bottom:398.206080px;}
.y25_c00007{bottom:417.640320px;}
.y24_c00007{bottom:436.721400px;}
.y23_c00007{bottom:456.160320px;}
.y22_c00007{bottom:475.249320px;}
.y21_c00007{bottom:493.960320px;}
.y20_c00007{bottom:513.040320px;}
.y1f_c00007{bottom:532.129320px;}
.y1e_c00007{bottom:550.847160px;}
.y1d_c00007{bottom:570.286080px;}
.y1c_c00007{bottom:589.720320px;}
.y1b_c00007{bottom:608.809320px;}
.y1a_c00007{bottom:627.520320px;}
.y19_c00007{bottom:646.600320px;}
.y18_c00007{bottom:665.689320px;}
.y17_c00007{bottom:684.401400px;}
.y16_c00007{bottom:703.840320px;}
.y15_c00007{bottom:722.929320px;}
.y14_c00007{bottom:741.640320px;}
.y13_c00007{bottom:760.720320px;}
.y12_c00007{bottom:779.809320px;}
.y11_c00007{bottom:798.520320px;}
.y10_c00007{bottom:817.600320px;}
.yf_c00007{bottom:836.689320px;}
.ye_c00007{bottom:855.407160px;}
.yd_c00007{bottom:874.846080px;}
.yc_c00007{bottom:894.281400px;}
.yb_c00007{bottom:913.366080px;}
.ya_c00007{bottom:932.807160px;}
.y9_c00007{bottom:952.246080px;}
.y8_c00007{bottom:971.681400px;}
.y7_c00007{bottom:990.766080px;}
.y6_c00007{bottom:1010.201400px;}
.y5_c00007{bottom:1029.640320px;}
.y4_c00007{bottom:1048.727010px;}
.y3_c00007{bottom:1068.165930px;}
.y2_c00007{bottom:1087.604850px;}
.h5_c00007{height:55.556640px;}
.h6_c00007{height:55.575360px;}
.h3_c00007{height:57.209760px;}
.h4_c00007{height:57.224160px;}
.h7_c00007{height:57.228480px;}
.h2_c00007{height:1201.365000px;}
.h0_c00007{height:1262.835000px;}
.h1_c00007{height:1263.000000px;}
.w2_c00007{width:863.955000px;}
.w0_c00007{width:892.935000px;}
.w1_c00007{width:893.250000px;}
.x0_c00007{left:0.000000px;}
.x1_c00007{left:14.490000px;}
.x3_c00007{left:113.042580px;}
.x4_c00007{left:210.266700px;}
.x2_c00007{left:408.221250px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls18_c00007{letter-spacing:0.000000pt;}
.ls14_c00007{letter-spacing:0.103296pt;}
.ls23_c00007{letter-spacing:0.118272pt;}
.ls17_c00007{letter-spacing:0.134613pt;}
.lsd_c00007{letter-spacing:0.236160pt;}
.ls6_c00007{letter-spacing:0.251904pt;}
.ls28_c00007{letter-spacing:0.267648pt;}
.ls22_c00007{letter-spacing:0.274560pt;}
.lsf_c00007{letter-spacing:0.304128pt;}
.ls10_c00007{letter-spacing:0.308352pt;}
.ls2_c00007{letter-spacing:0.312576pt;}
.ls11_c00007{letter-spacing:0.315200pt;}
.ls13_c00007{letter-spacing:0.315733pt;}
.lsa_c00007{letter-spacing:0.316160pt;}
.ls3_c00007{letter-spacing:0.316800pt;}
.ls4_c00007{letter-spacing:0.329472pt;}
.ls24_c00007{letter-spacing:0.330624pt;}
.ls0_c00007{letter-spacing:0.346240pt;}
.ls1f_c00007{letter-spacing:0.346368pt;}
.ls1c_c00007{letter-spacing:0.362112pt;}
.ls9_c00007{letter-spacing:0.367360pt;}
.ls1b_c00007{letter-spacing:0.425088pt;}
.ls20_c00007{letter-spacing:0.440832pt;}
.ls1d_c00007{letter-spacing:0.446080pt;}
.ls15_c00007{letter-spacing:0.451328pt;}
.ls19_c00007{letter-spacing:0.472320pt;}
.ls1e_c00007{letter-spacing:0.503808pt;}
.ls7_c00007{letter-spacing:0.524800pt;}
.ls25_c00007{letter-spacing:0.551040pt;}
.ls29_c00007{letter-spacing:0.582528pt;}
.ls2a_c00007{letter-spacing:0.598272pt;}
.ls12_c00007{letter-spacing:0.611413pt;}
.ls27_c00007{letter-spacing:0.614016pt;}
.ls16_c00007{letter-spacing:0.614080pt;}
.ls1_c00007{letter-spacing:0.619307pt;}
.ls5_c00007{letter-spacing:0.629760pt;}
.ls26_c00007{letter-spacing:0.661248pt;}
.ls1a_c00007{letter-spacing:3.818496pt;}
.ls21_c00007{letter-spacing:3.873408pt;}
.lse_c00007{letter-spacing:4.985707pt;}
.lsc_c00007{letter-spacing:146.996480pt;}
.ls8_c00007{letter-spacing:174.233600pt;}
.lsb_c00007{letter-spacing:176.227840pt;}
.ws6_c00007{word-spacing:-15.061760pt;}
.ws5_c00007{word-spacing:-15.030272pt;}
.ws3_c00007{word-spacing:-14.951552pt;}
.wsc_c00007{word-spacing:-14.857088pt;}
.ws4_c00007{word-spacing:-14.841344pt;}
.ws1_c00007{word-spacing:-13.956096pt;}
.ws8_c00007{word-spacing:-13.256448pt;}
.wsa_c00007{word-spacing:-13.209216pt;}
.wse_c00007{word-spacing:-13.193472pt;}
.ws7_c00007{word-spacing:-13.146240pt;}
.wsb_c00007{word-spacing:-13.099008pt;}
.ws9_c00007{word-spacing:-13.046528pt;}
.wsd_c00007{word-spacing:-12.941568pt;}
.wsf_c00007{word-spacing:-12.925824pt;}
.ws0_c00007{word-spacing:-12.059520pt;}
.ws2_c00007{word-spacing:-12.051072pt;}
.ws10_c00007{word-spacing:0.000000pt;}
._16_c00007{margin-left:-184.378069pt;}
._e_c00007{margin-left:-181.929835pt;}
._20_c00007{margin-left:-180.578176pt;}
._2_c00007{margin-left:-174.126400pt;}
._18_c00007{margin-left:-170.439915pt;}
._c_c00007{margin-left:-162.703829pt;}
._a_c00007{margin-left:-154.291285pt;}
._f_c00007{margin-left:-148.788715pt;}
._b_c00007{margin-left:-140.654315pt;}
._12_c00007{margin-left:-138.845995pt;}
._15_c00007{margin-left:-136.303552pt;}
._1a_c00007{margin-left:-132.805888pt;}
._d_c00007{margin-left:-116.854635pt;}
._19_c00007{margin-left:-111.034240pt;}
._1d_c00007{margin-left:-110.023808pt;}
._1_c00007{margin-left:-106.613120pt;}
._13_c00007{margin-left:-103.490560pt;}
._1f_c00007{margin-left:-95.455531pt;}
._23_c00007{margin-left:-83.609600pt;}
._1e_c00007{margin-left:-82.592683pt;}
._1c_c00007{margin-left:-71.555968pt;}
._11_c00007{margin-left:-69.596395pt;}
._1b_c00007{margin-left:-59.060309pt;}
._10_c00007{margin-left:-50.183360pt;}
._17_c00007{margin-left:-39.709035pt;}
._26_c00007{margin-left:-38.661675pt;}
._3_c00007{margin-left:-37.698987pt;}
._24_c00007{margin-left:-27.756416pt;}
._25_c00007{margin-left:-24.956565pt;}
._14_c00007{margin-left:-19.470165pt;}
._7_c00007{margin-left:-17.229269pt;}
._21_c00007{margin-left:-6.517504pt;}
._4_c00007{margin-left:-5.492075pt;}
._0_c00007{margin-left:-1.120405pt;}
._8_c00007{width:0.894656pt;}
._22_c00007{width:13.033024pt;}
._9_c00007{width:55.613056pt;}
._5_c00007{width:74.954517pt;}
._6_c00007{width:174.238848pt;}
.fs1_c00007{font-size:42.240000pt;}
.fs0_c00007{font-size:52.480000pt;}
.y0_c00007{bottom:0.000000pt;}
.y1_c00007{bottom:48.000000pt;}
.y37_c00007{bottom:66.275840pt;}
.y36_c00007{bottom:83.235840pt;}
.y35_c00007{bottom:100.203840pt;}
.y34_c00007{bottom:116.835840pt;}
.y33_c00007{bottom:133.796800pt;}
.y32_c00007{bottom:151.075840pt;}
.y31_c00007{bottom:168.043840pt;}
.y30_c00007{bottom:184.675840pt;}
.y2f_c00007{bottom:201.635840pt;}
.y2e_c00007{bottom:218.595840pt;}
.y2d_c00007{bottom:235.563840pt;}
.y2c_c00007{bottom:252.200960pt;}
.y2b_c00007{bottom:269.475840pt;}
.y2a_c00007{bottom:286.435840pt;}
.y29_c00007{bottom:303.403840pt;}
.y28_c00007{bottom:320.035840pt;}
.y27_c00007{bottom:336.995840pt;}
.y26_c00007{bottom:353.960960pt;}
.y25_c00007{bottom:371.235840pt;}
.y24_c00007{bottom:388.196800pt;}
.y23_c00007{bottom:405.475840pt;}
.y22_c00007{bottom:422.443840pt;}
.y21_c00007{bottom:439.075840pt;}
.y20_c00007{bottom:456.035840pt;}
.y1f_c00007{bottom:473.003840pt;}
.y1e_c00007{bottom:489.641920pt;}
.y1d_c00007{bottom:506.920960pt;}
.y1c_c00007{bottom:524.195840pt;}
.y1b_c00007{bottom:541.163840pt;}
.y1a_c00007{bottom:557.795840pt;}
.y19_c00007{bottom:574.755840pt;}
.y18_c00007{bottom:591.723840pt;}
.y17_c00007{bottom:608.356800pt;}
.y16_c00007{bottom:625.635840pt;}
.y15_c00007{bottom:642.603840pt;}
.y14_c00007{bottom:659.235840pt;}
.y13_c00007{bottom:676.195840pt;}
.y12_c00007{bottom:693.163840pt;}
.y11_c00007{bottom:709.795840pt;}
.y10_c00007{bottom:726.755840pt;}
.yf_c00007{bottom:743.723840pt;}
.ye_c00007{bottom:760.361920pt;}
.yd_c00007{bottom:777.640960pt;}
.yc_c00007{bottom:794.916800pt;}
.yb_c00007{bottom:811.880960pt;}
.ya_c00007{bottom:829.161920pt;}
.y9_c00007{bottom:846.440960pt;}
.y8_c00007{bottom:863.716800pt;}
.y7_c00007{bottom:880.680960pt;}
.y6_c00007{bottom:897.956800pt;}
.y5_c00007{bottom:915.235840pt;}
.y4_c00007{bottom:932.201787pt;}
.y3_c00007{bottom:949.480827pt;}
.y2_c00007{bottom:966.759867pt;}
.h5_c00007{height:49.383680pt;}
.h6_c00007{height:49.400320pt;}
.h3_c00007{height:50.853120pt;}
.h4_c00007{height:50.865920pt;}
.h7_c00007{height:50.869760pt;}
.h2_c00007{height:1067.880000pt;}
.h0_c00007{height:1122.520000pt;}
.h1_c00007{height:1122.666667pt;}
.w2_c00007{width:767.960000pt;}
.w0_c00007{width:793.720000pt;}
.w1_c00007{width:794.000000pt;}
.x0_c00007{left:0.000000pt;}
.x1_c00007{left:12.880000pt;}
.x3_c00007{left:100.482293pt;}
.x4_c00007{left:186.903733pt;}
.x2_c00007{left:362.863333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_230a8e38768fabc9295e2eab.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.240000;font-style:normal;font-weight:normal;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_daa5c5713977494a0f975966.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.050000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_f15cc364c90cae0bb27dc9b6.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.263000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls14_c00008{letter-spacing:0.000000px;}
.ls4_c00008{letter-spacing:0.133056px;}
.ls1b_c00008{letter-spacing:0.230256px;}
.ls7_c00008{letter-spacing:0.265680px;}
.ls24_c00008{letter-spacing:0.283392px;}
.ls1f_c00008{letter-spacing:0.301104px;}
.ls2_c00008{letter-spacing:0.346896px;}
.ls9_c00008{letter-spacing:0.351648px;}
.ls6_c00008{letter-spacing:0.354240px;}
.ls1a_c00008{letter-spacing:0.371952px;}
.ls1e_c00008{letter-spacing:0.389664px;}
.lsf_c00008{letter-spacing:0.401472px;}
.ls20_c00008{letter-spacing:0.460512px;}
.ls5_c00008{letter-spacing:0.472320px;}
.lsd_c00008{letter-spacing:0.478224px;}
.lse_c00008{letter-spacing:0.495936px;}
.ls10_c00008{letter-spacing:0.501840px;}
.lsc_c00008{letter-spacing:0.507744px;}
.lsa_c00008{letter-spacing:0.531360px;}
.ls18_c00008{letter-spacing:0.566784px;}
.ls15_c00008{letter-spacing:0.602208px;}
.ls17_c00008{letter-spacing:0.619920px;}
.ls3_c00008{letter-spacing:0.622080px;}
.ls12_c00008{letter-spacing:0.655344px;}
.ls1c_c00008{letter-spacing:0.673056px;}
.ls8_c00008{letter-spacing:0.687840px;}
.ls13_c00008{letter-spacing:0.690768px;}
.ls1_c00008{letter-spacing:0.690840px;}
.ls23_c00008{letter-spacing:0.708480px;}
.ls22_c00008{letter-spacing:0.726192px;}
.ls16_c00008{letter-spacing:0.743904px;}
.ls26_c00008{letter-spacing:0.761616px;}
.ls21_c00008{letter-spacing:0.797040px;}
.ls25_c00008{letter-spacing:0.814752px;}
.ls19_c00008{letter-spacing:0.850176px;}
.ls1d_c00008{letter-spacing:4.357584px;}
.lsb_c00008{letter-spacing:5.602080px;}
.ls0_c00008{letter-spacing:196.012800px;}
.ls11_c00008{letter-spacing:198.256320px;}
.sc__c00008{text-shadow:none;}
.sc1_c00008{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_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;}
.sc1_c00008{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00008{word-spacing:-17.263296px;}
.wsb_c00008{word-spacing:-17.210160px;}
.ws17_c00008{word-spacing:-17.103888px;}
.wsf_c00008{word-spacing:-17.086176px;}
.ws15_c00008{word-spacing:-16.944480px;}
.ws16_c00008{word-spacing:-16.914960px;}
.ws14_c00008{word-spacing:-16.909056px;}
.ws12_c00008{word-spacing:-16.891344px;}
.ws11_c00008{word-spacing:-16.802784px;}
.wsa_c00008{word-spacing:-16.714224px;}
.ws13_c00008{word-spacing:-16.413120px;}
.ws7_c00008{word-spacing:-15.762384px;}
.ws10_c00008{word-spacing:-14.984352px;}
.ws2_c00008{word-spacing:-14.913504px;}
.ws0_c00008{word-spacing:-14.860368px;}
.ws6_c00008{word-spacing:-14.842656px;}
.ws5_c00008{word-spacing:-14.824944px;}
.ws3_c00008{word-spacing:-14.789520px;}
.ws1_c00008{word-spacing:-14.771808px;}
.ws4_c00008{word-spacing:-14.736384px;}
.wsd_c00008{word-spacing:-14.677344px;}
.wse_c00008{word-spacing:-14.559264px;}
.wsc_c00008{word-spacing:-14.541552px;}
.ws8_c00008{word-spacing:-13.557456px;}
.ws18_c00008{word-spacing:0.000000px;}
._b_c00008{margin-left:-210.229632px;}
._6_c00008{margin-left:-202.017936px;}
._22_c00008{margin-left:-197.099136px;}
._15_c00008{margin-left:-195.618120px;}
._2c_c00008{margin-left:-191.861400px;}
._27_c00008{margin-left:-184.027680px;}
._1c_c00008{margin-left:-181.117008px;}
._2e_c00008{margin-left:-179.994360px;}
._d_c00008{margin-left:-175.047696px;}
._11_c00008{margin-left:-173.382768px;}
._26_c00008{margin-left:-169.810848px;}
._23_c00008{margin-left:-159.461136px;}
._1e_c00008{margin-left:-157.111344px;}
._2a_c00008{margin-left:-150.634656px;}
._2b_c00008{margin-left:-149.524704px;}
._c_c00008{margin-left:-138.484224px;}
._8_c00008{margin-left:-132.627456px;}
._14_c00008{margin-left:-127.142640px;}
._2_c00008{margin-left:-125.672544px;}
._25_c00008{margin-left:-122.071104px;}
._2d_c00008{margin-left:-115.364160px;}
._21_c00008{margin-left:-110.522880px;}
._3_c00008{margin-left:-109.460160px;}
._5_c00008{margin-left:-104.601168px;}
._10_c00008{margin-left:-81.823536px;}
._24_c00008{margin-left:-75.884112px;}
._1b_c00008{margin-left:-74.071584px;}
._1d_c00008{margin-left:-64.961712px;}
._e_c00008{margin-left:-57.115296px;}
._9_c00008{margin-left:-53.242272px;}
._13_c00008{margin-left:-50.933808px;}
._29_c00008{margin-left:-47.456352px;}
._4_c00008{margin-left:-46.251936px;}
._12_c00008{margin-left:-40.247568px;}
._7_c00008{margin-left:-27.860976px;}
._20_c00008{margin-left:-16.696512px;}
._18_c00008{margin-left:-15.474384px;}
._f_c00008{margin-left:-14.187312px;}
._a_c00008{margin-left:-5.036112px;}
._0_c00008{margin-left:-1.180800px;}
._1_c00008{width:1.056816px;}
._1a_c00008{width:7.261920px;}
._16_c00008{width:99.010080px;}
._28_c00008{width:107.393760px;}
._19_c00008{width:172.278720px;}
._1f_c00008{width:184.972320px;}
._17_c00008{width:196.012800px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs1_c00008{font-size:47.520000px;}
.fs0_c00008{font-size:59.040000px;}
.y0_c00008{bottom:0.000000px;}
.y1_c00008{bottom:54.000000px;}
.y38_c00008{bottom:60.889320px;}
.y37_c00008{bottom:79.600320px;}
.y36_c00008{bottom:98.680320px;}
.y35_c00008{bottom:117.769320px;}
.y34_c00008{bottom:136.480320px;}
.y33_c00008{bottom:155.560320px;}
.y32_c00008{bottom:174.640320px;}
.y31_c00008{bottom:193.715640px;}
.y30_c00008{bottom:212.800320px;}
.y2f_c00008{bottom:231.880320px;}
.y2e_c00008{bottom:250.969320px;}
.y2d_c00008{bottom:269.680320px;}
.y2c_c00008{bottom:288.760320px;}
.y2b_c00008{bottom:307.840320px;}
.y2a_c00008{bottom:326.929320px;}
.y29_c00008{bottom:345.640320px;}
.y28_c00008{bottom:364.720320px;}
.y27_c00008{bottom:383.800320px;}
.y26_c00008{bottom:402.875640px;}
.y25_c00008{bottom:421.960320px;}
.y24_c00008{bottom:441.040320px;}
.y23_c00008{bottom:460.120320px;}
.y22_c00008{bottom:479.209320px;}
.y21_c00008{bottom:497.920320px;}
.y20_c00008{bottom:517.000320px;}
.y1f_c00008{bottom:536.089320px;}
.y1e_c00008{bottom:554.800320px;}
.y1d_c00008{bottom:573.880320px;}
.y1c_c00008{bottom:592.969320px;}
.y1b_c00008{bottom:611.685720px;}
.y1a_c00008{bottom:631.124640px;}
.y19_c00008{bottom:650.209320px;}
.y18_c00008{bottom:668.916720px;}
.y17_c00008{bottom:688.355640px;}
.y16_c00008{bottom:707.440320px;}
.y15_c00008{bottom:726.529320px;}
.y14_c00008{bottom:745.240320px;}
.y13_c00008{bottom:764.320320px;}
.y12_c00008{bottom:783.400320px;}
.y11_c00008{bottom:802.489320px;}
.y10_c00008{bottom:821.200320px;}
.yf_c00008{bottom:840.280320px;}
.ye_c00008{bottom:859.366080px;}
.yd_c00008{bottom:878.809320px;}
.yc_c00008{bottom:897.520320px;}
.yb_c00008{bottom:916.600320px;}
.ya_c00008{bottom:935.680170px;}
.y9_c00008{bottom:954.769320px;}
.y8_c00008{bottom:973.481400px;}
.y7_c00008{bottom:992.920320px;}
.y6_c00008{bottom:1012.000320px;}
.y5_c00008{bottom:1031.089320px;}
.y4_c00008{bottom:1049.800320px;}
.y3_c00008{bottom:1068.880320px;}
.y2_c00008{bottom:1087.965000px;}
.h3_c00008{height:55.556640px;}
.h4_c00008{height:55.575360px;}
.h6_c00008{height:55.575960px;}
.h7_c00008{height:57.209760px;}
.h5_c00008{height:57.224160px;}
.h9_c00008{height:57.228480px;}
.h8_c00008{height:57.242880px;}
.ha_c00008{height:57.247200px;}
.h2_c00008{height:1201.365000px;}
.h0_c00008{height:1262.835000px;}
.h1_c00008{height:1263.000000px;}
.w2_c00008{width:863.955000px;}
.w0_c00008{width:892.935000px;}
.w1_c00008{width:893.250000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:14.490000px;}
.x2_c00008{left:113.040150px;}
.x3_c00008{left:308.684820px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls14_c00008{letter-spacing:0.000000pt;}
.ls4_c00008{letter-spacing:0.118272pt;}
.ls1b_c00008{letter-spacing:0.204672pt;}
.ls7_c00008{letter-spacing:0.236160pt;}
.ls24_c00008{letter-spacing:0.251904pt;}
.ls1f_c00008{letter-spacing:0.267648pt;}
.ls2_c00008{letter-spacing:0.308352pt;}
.ls9_c00008{letter-spacing:0.312576pt;}
.ls6_c00008{letter-spacing:0.314880pt;}
.ls1a_c00008{letter-spacing:0.330624pt;}
.ls1e_c00008{letter-spacing:0.346368pt;}
.lsf_c00008{letter-spacing:0.356864pt;}
.ls20_c00008{letter-spacing:0.409344pt;}
.ls5_c00008{letter-spacing:0.419840pt;}
.lsd_c00008{letter-spacing:0.425088pt;}
.lse_c00008{letter-spacing:0.440832pt;}
.ls10_c00008{letter-spacing:0.446080pt;}
.lsc_c00008{letter-spacing:0.451328pt;}
.lsa_c00008{letter-spacing:0.472320pt;}
.ls18_c00008{letter-spacing:0.503808pt;}
.ls15_c00008{letter-spacing:0.535296pt;}
.ls17_c00008{letter-spacing:0.551040pt;}
.ls3_c00008{letter-spacing:0.552960pt;}
.ls12_c00008{letter-spacing:0.582528pt;}
.ls1c_c00008{letter-spacing:0.598272pt;}
.ls8_c00008{letter-spacing:0.611413pt;}
.ls13_c00008{letter-spacing:0.614016pt;}
.ls1_c00008{letter-spacing:0.614080pt;}
.ls23_c00008{letter-spacing:0.629760pt;}
.ls22_c00008{letter-spacing:0.645504pt;}
.ls16_c00008{letter-spacing:0.661248pt;}
.ls26_c00008{letter-spacing:0.676992pt;}
.ls21_c00008{letter-spacing:0.708480pt;}
.ls25_c00008{letter-spacing:0.724224pt;}
.ls19_c00008{letter-spacing:0.755712pt;}
.ls1d_c00008{letter-spacing:3.873408pt;}
.lsb_c00008{letter-spacing:4.979627pt;}
.ls0_c00008{letter-spacing:174.233600pt;}
.ls11_c00008{letter-spacing:176.227840pt;}
.ws9_c00008{word-spacing:-15.345152pt;}
.wsb_c00008{word-spacing:-15.297920pt;}
.ws17_c00008{word-spacing:-15.203456pt;}
.wsf_c00008{word-spacing:-15.187712pt;}
.ws15_c00008{word-spacing:-15.061760pt;}
.ws16_c00008{word-spacing:-15.035520pt;}
.ws14_c00008{word-spacing:-15.030272pt;}
.ws12_c00008{word-spacing:-15.014528pt;}
.ws11_c00008{word-spacing:-14.935808pt;}
.wsa_c00008{word-spacing:-14.857088pt;}
.ws13_c00008{word-spacing:-14.589440pt;}
.ws7_c00008{word-spacing:-14.011008pt;}
.ws10_c00008{word-spacing:-13.319424pt;}
.ws2_c00008{word-spacing:-13.256448pt;}
.ws0_c00008{word-spacing:-13.209216pt;}
.ws6_c00008{word-spacing:-13.193472pt;}
.ws5_c00008{word-spacing:-13.177728pt;}
.ws3_c00008{word-spacing:-13.146240pt;}
.ws1_c00008{word-spacing:-13.130496pt;}
.ws4_c00008{word-spacing:-13.099008pt;}
.wsd_c00008{word-spacing:-13.046528pt;}
.wse_c00008{word-spacing:-12.941568pt;}
.wsc_c00008{word-spacing:-12.925824pt;}
.ws8_c00008{word-spacing:-12.051072pt;}
.ws18_c00008{word-spacing:0.000000pt;}
._b_c00008{margin-left:-186.870784pt;}
._6_c00008{margin-left:-179.571499pt;}
._22_c00008{margin-left:-175.199232pt;}
._15_c00008{margin-left:-173.882773pt;}
._2c_c00008{margin-left:-170.543467pt;}
._27_c00008{margin-left:-163.580160pt;}
._1c_c00008{margin-left:-160.992896pt;}
._2e_c00008{margin-left:-159.994987pt;}
._d_c00008{margin-left:-155.597952pt;}
._11_c00008{margin-left:-154.118016pt;}
._26_c00008{margin-left:-150.942976pt;}
._23_c00008{margin-left:-141.743232pt;}
._1e_c00008{margin-left:-139.654528pt;}
._2a_c00008{margin-left:-133.897472pt;}
._2b_c00008{margin-left:-132.910848pt;}
._c_c00008{margin-left:-123.097088pt;}
._8_c00008{margin-left:-117.891072pt;}
._14_c00008{margin-left:-113.015680pt;}
._2_c00008{margin-left:-111.708928pt;}
._25_c00008{margin-left:-108.507648pt;}
._2d_c00008{margin-left:-102.545920pt;}
._21_c00008{margin-left:-98.242560pt;}
._3_c00008{margin-left:-97.297920pt;}
._5_c00008{margin-left:-92.978816pt;}
._10_c00008{margin-left:-72.732032pt;}
._24_c00008{margin-left:-67.452544pt;}
._1b_c00008{margin-left:-65.841408pt;}
._1d_c00008{margin-left:-57.743744pt;}
._e_c00008{margin-left:-50.769152pt;}
._9_c00008{margin-left:-47.326464pt;}
._13_c00008{margin-left:-45.274496pt;}
._29_c00008{margin-left:-42.183424pt;}
._4_c00008{margin-left:-41.112832pt;}
._12_c00008{margin-left:-35.775616pt;}
._7_c00008{margin-left:-24.765312pt;}
._20_c00008{margin-left:-14.841344pt;}
._18_c00008{margin-left:-13.755008pt;}
._f_c00008{margin-left:-12.610944pt;}
._a_c00008{margin-left:-4.476544pt;}
._0_c00008{margin-left:-1.049600pt;}
._1_c00008{width:0.939392pt;}
._1a_c00008{width:6.455040pt;}
._16_c00008{width:88.008960pt;}
._28_c00008{width:95.461120pt;}
._19_c00008{width:153.136640pt;}
._1f_c00008{width:164.419840pt;}
._17_c00008{width:174.233600pt;}
.fs1_c00008{font-size:42.240000pt;}
.fs0_c00008{font-size:52.480000pt;}
.y0_c00008{bottom:0.000000pt;}
.y1_c00008{bottom:48.000000pt;}
.y38_c00008{bottom:54.123840pt;}
.y37_c00008{bottom:70.755840pt;}
.y36_c00008{bottom:87.715840pt;}
.y35_c00008{bottom:104.683840pt;}
.y34_c00008{bottom:121.315840pt;}
.y33_c00008{bottom:138.275840pt;}
.y32_c00008{bottom:155.235840pt;}
.y31_c00008{bottom:172.191680pt;}
.y30_c00008{bottom:189.155840pt;}
.y2f_c00008{bottom:206.115840pt;}
.y2e_c00008{bottom:223.083840pt;}
.y2d_c00008{bottom:239.715840pt;}
.y2c_c00008{bottom:256.675840pt;}
.y2b_c00008{bottom:273.635840pt;}
.y2a_c00008{bottom:290.603840pt;}
.y29_c00008{bottom:307.235840pt;}
.y28_c00008{bottom:324.195840pt;}
.y27_c00008{bottom:341.155840pt;}
.y26_c00008{bottom:358.111680pt;}
.y25_c00008{bottom:375.075840pt;}
.y24_c00008{bottom:392.035840pt;}
.y23_c00008{bottom:408.995840pt;}
.y22_c00008{bottom:425.963840pt;}
.y21_c00008{bottom:442.595840pt;}
.y20_c00008{bottom:459.555840pt;}
.y1f_c00008{bottom:476.523840pt;}
.y1e_c00008{bottom:493.155840pt;}
.y1d_c00008{bottom:510.115840pt;}
.y1c_c00008{bottom:527.083840pt;}
.y1b_c00008{bottom:543.720640pt;}
.y1a_c00008{bottom:560.999680pt;}
.y19_c00008{bottom:577.963840pt;}
.y18_c00008{bottom:594.592640pt;}
.y17_c00008{bottom:611.871680pt;}
.y16_c00008{bottom:628.835840pt;}
.y15_c00008{bottom:645.803840pt;}
.y14_c00008{bottom:662.435840pt;}
.y13_c00008{bottom:679.395840pt;}
.y12_c00008{bottom:696.355840pt;}
.y11_c00008{bottom:713.323840pt;}
.y10_c00008{bottom:729.955840pt;}
.yf_c00008{bottom:746.915840pt;}
.ye_c00008{bottom:763.880960pt;}
.yd_c00008{bottom:781.163840pt;}
.yc_c00008{bottom:797.795840pt;}
.yb_c00008{bottom:814.755840pt;}
.ya_c00008{bottom:831.715707pt;}
.y9_c00008{bottom:848.683840pt;}
.y8_c00008{bottom:865.316800pt;}
.y7_c00008{bottom:882.595840pt;}
.y6_c00008{bottom:899.555840pt;}
.y5_c00008{bottom:916.523840pt;}
.y4_c00008{bottom:933.155840pt;}
.y3_c00008{bottom:950.115840pt;}
.y2_c00008{bottom:967.080000pt;}
.h3_c00008{height:49.383680pt;}
.h4_c00008{height:49.400320pt;}
.h6_c00008{height:49.400853pt;}
.h7_c00008{height:50.853120pt;}
.h5_c00008{height:50.865920pt;}
.h9_c00008{height:50.869760pt;}
.h8_c00008{height:50.882560pt;}
.ha_c00008{height:50.886400pt;}
.h2_c00008{height:1067.880000pt;}
.h0_c00008{height:1122.520000pt;}
.h1_c00008{height:1122.666667pt;}
.w2_c00008{width:767.960000pt;}
.w0_c00008{width:793.720000pt;}
.w1_c00008{width:794.000000pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:12.880000pt;}
.x2_c00008{left:100.480133pt;}
.x3_c00008{left:274.386507pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b366919436f0ac8f186415a5.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.240000;font-style:normal;font-weight:normal;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_776cdbf31db143b36d1ebdcc.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.050000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_b1e7bc3e93e70a7340b30dcf.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.263000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.lsb_c00009{letter-spacing:0.000000px;}
.ls6_c00009{letter-spacing:0.265680px;}
.ls10_c00009{letter-spacing:0.283392px;}
.lsd_c00009{letter-spacing:0.301104px;}
.ls3_c00009{letter-spacing:0.354240px;}
.ls16_c00009{letter-spacing:0.371952px;}
.lsc_c00009{letter-spacing:0.389664px;}
.ls15_c00009{letter-spacing:0.425088px;}
.ls1d_c00009{letter-spacing:0.442800px;}
.ls19_c00009{letter-spacing:0.460512px;}
.ls13_c00009{letter-spacing:0.478224px;}
.ls14_c00009{letter-spacing:0.495936px;}
.ls1_c00009{letter-spacing:0.501840px;}
.ls7_c00009{letter-spacing:0.507744px;}
.ls2_c00009{letter-spacing:0.531360px;}
.ls8_c00009{letter-spacing:0.535560px;}
.ls1b_c00009{letter-spacing:0.566784px;}
.lse_c00009{letter-spacing:0.602208px;}
.ls17_c00009{letter-spacing:0.619920px;}
.ls1a_c00009{letter-spacing:0.637632px;}
.lsa_c00009{letter-spacing:0.655344px;}
.ls1c_c00009{letter-spacing:0.690768px;}
.lsf_c00009{letter-spacing:0.708480px;}
.ls18_c00009{letter-spacing:0.726192px;}
.ls9_c00009{letter-spacing:0.761616px;}
.ls5_c00009{letter-spacing:5.313600px;}
.ls12_c00009{letter-spacing:5.319504px;}
.ls11_c00009{letter-spacing:5.602896px;}
.ls0_c00009{letter-spacing:196.012800px;}
.ls4_c00009{letter-spacing:198.256320px;}
.sc__c00009{text-shadow:none;}
.sc1_c00009{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_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;}
.sc1_c00009{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00009{word-spacing:-19.772496px;}
.wsc_c00009{word-spacing:-19.489104px;}
.ws10_c00009{word-spacing:-17.103888px;}
.wse_c00009{word-spacing:-17.068464px;}
.ws3_c00009{word-spacing:-16.944480px;}
.ws1_c00009{word-spacing:-16.914960px;}
.ws7_c00009{word-spacing:-16.909056px;}
.wsd_c00009{word-spacing:-16.873632px;}
.ws8_c00009{word-spacing:-16.838208px;}
.ws12_c00009{word-spacing:-16.802784px;}
.ws9_c00009{word-spacing:-16.785072px;}
.wsf_c00009{word-spacing:-16.767360px;}
.ws2_c00009{word-spacing:-16.714224px;}
.ws11_c00009{word-spacing:-16.413120px;}
.ws0_c00009{word-spacing:-14.824944px;}
.wsb_c00009{word-spacing:-14.789520px;}
.ws4_c00009{word-spacing:-14.771808px;}
.wsa_c00009{word-spacing:-14.677344px;}
.ws5_c00009{word-spacing:-14.559264px;}
.ws13_c00009{word-spacing:0.000000px;}
._5_c00009{margin-left:-205.671744px;}
._18_c00009{margin-left:-201.350016px;}
._25_c00009{margin-left:-195.534576px;}
._3_c00009{margin-left:-185.663088px;}
._17_c00009{margin-left:-183.118464px;}
._1e_c00009{margin-left:-180.007056px;}
._26_c00009{margin-left:-177.326640px;}
._c_c00009{margin-left:-165.979152px;}
._1b_c00009{margin-left:-164.827872px;}
._1d_c00009{margin-left:-159.461136px;}
._d_c00009{margin-left:-143.473104px;}
._13_c00009{margin-left:-137.203056px;}
._15_c00009{margin-left:-124.769232px;}
._27_c00009{margin-left:-114.655680px;}
._28_c00009{margin-left:-102.953952px;}
._f_c00009{margin-left:-98.065440px;}
._e_c00009{margin-left:-85.802832px;}
._23_c00009{margin-left:-84.344544px;}
._4_c00009{margin-left:-78.493680px;}
._11_c00009{margin-left:-75.789648px;}
._14_c00009{margin-left:-65.752848px;}
._2b_c00009{margin-left:-63.385344px;}
._24_c00009{margin-left:-56.383200px;}
._29_c00009{margin-left:-49.168512px;}
._2_c00009{margin-left:-47.261520px;}
._12_c00009{margin-left:-37.702944px;}
._19_c00009{margin-left:-35.571600px;}
._1f_c00009{margin-left:-23.421168px;}
._2a_c00009{margin-left:-19.878768px;}
._b_c00009{margin-left:-12.693600px;}
._6_c00009{margin-left:-10.969632px;}
._8_c00009{margin-left:-5.874480px;}
._0_c00009{margin-left:-1.328400px;}
._1_c00009{width:1.210320px;}
._9_c00009{width:5.626512px;}
._16_c00009{width:100.220400px;}
._20_c00009{width:105.221088px;}
._10_c00009{width:117.891072px;}
._21_c00009{width:119.030544px;}
._22_c00009{width:121.882176px;}
._2c_c00009{width:154.141632px;}
._1a_c00009{width:160.228656px;}
._1c_c00009{width:192.470400px;}
._a_c00009{width:196.012800px;}
._7_c00009{width:198.256320px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs0_c00009{font-size:59.040000px;}
.y0_c00009{bottom:0.000000px;}
.y1_c00009{bottom:54.000000px;}
.y35_c00009{bottom:117.760320px;}
.y34_c00009{bottom:136.840320px;}
.y33_c00009{bottom:155.929320px;}
.y32_c00009{bottom:174.640320px;}
.y31_c00009{bottom:193.720320px;}
.y30_c00009{bottom:212.800320px;}
.y2f_c00009{bottom:231.889320px;}
.y2e_c00009{bottom:250.600320px;}
.y2d_c00009{bottom:269.680320px;}
.y2c_c00009{bottom:288.769320px;}
.y2b_c00009{bottom:307.481400px;}
.y2a_c00009{bottom:326.920320px;}
.y29_c00009{bottom:346.009320px;}
.y28_c00009{bottom:364.720320px;}
.y27_c00009{bottom:383.800320px;}
.y26_c00009{bottom:402.889320px;}
.y25_c00009{bottom:421.600320px;}
.y24_c00009{bottom:440.680320px;}
.y23_c00009{bottom:459.769320px;}
.y22_c00009{bottom:478.480320px;}
.y21_c00009{bottom:497.560320px;}
.y20_c00009{bottom:516.649320px;}
.y1f_c00009{bottom:535.360320px;}
.y1e_c00009{bottom:554.440320px;}
.y1d_c00009{bottom:573.529320px;}
.y1c_c00009{bottom:592.240320px;}
.y1b_c00009{bottom:611.320320px;}
.y1a_c00009{bottom:630.409320px;}
.y19_c00009{bottom:649.120320px;}
.y18_c00009{bottom:668.200320px;}
.y17_c00009{bottom:687.289320px;}
.y16_c00009{bottom:706.001400px;}
.y15_c00009{bottom:725.440320px;}
.y14_c00009{bottom:744.515640px;}
.y13_c00009{bottom:763.600320px;}
.y12_c00009{bottom:782.680170px;}
.y11_c00009{bottom:801.760320px;}
.y10_c00009{bottom:820.849320px;}
.yf_c00009{bottom:839.560320px;}
.ye_c00009{bottom:858.640320px;}
.yd_c00009{bottom:877.726080px;}
.yc_c00009{bottom:897.169320px;}
.yb_c00009{bottom:915.881400px;}
.ya_c00009{bottom:935.320320px;}
.y9_c00009{bottom:954.410400px;}
.y8_c00009{bottom:973.849320px;}
.y7_c00009{bottom:992.560320px;}
.y6_c00009{bottom:1011.640320px;}
.y5_c00009{bottom:1030.729320px;}
.y4_c00009{bottom:1049.441400px;}
.y3_c00009{bottom:1068.880320px;}
.y2_c00009{bottom:1087.965000px;}
.h3_c00009{height:55.556640px;}
.h7_c00009{height:55.574760px;}
.h5_c00009{height:55.575360px;}
.h8_c00009{height:55.575960px;}
.h9_c00009{height:57.192480px;}
.h6_c00009{height:57.209760px;}
.h4_c00009{height:57.224160px;}
.h2_c00009{height:1201.365000px;}
.h0_c00009{height:1262.835000px;}
.h1_c00009{height:1263.000000px;}
.w2_c00009{width:863.955000px;}
.w0_c00009{width:892.935000px;}
.w1_c00009{width:893.250000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:14.490000px;}
.x2_c00009{left:113.040150px;}
.x3_c00009{left:431.709420px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.lsb_c00009{letter-spacing:0.000000pt;}
.ls6_c00009{letter-spacing:0.236160pt;}
.ls10_c00009{letter-spacing:0.251904pt;}
.lsd_c00009{letter-spacing:0.267648pt;}
.ls3_c00009{letter-spacing:0.314880pt;}
.ls16_c00009{letter-spacing:0.330624pt;}
.lsc_c00009{letter-spacing:0.346368pt;}
.ls15_c00009{letter-spacing:0.377856pt;}
.ls1d_c00009{letter-spacing:0.393600pt;}
.ls19_c00009{letter-spacing:0.409344pt;}
.ls13_c00009{letter-spacing:0.425088pt;}
.ls14_c00009{letter-spacing:0.440832pt;}
.ls1_c00009{letter-spacing:0.446080pt;}
.ls7_c00009{letter-spacing:0.451328pt;}
.ls2_c00009{letter-spacing:0.472320pt;}
.ls8_c00009{letter-spacing:0.476053pt;}
.ls1b_c00009{letter-spacing:0.503808pt;}
.lse_c00009{letter-spacing:0.535296pt;}
.ls17_c00009{letter-spacing:0.551040pt;}
.ls1a_c00009{letter-spacing:0.566784pt;}
.lsa_c00009{letter-spacing:0.582528pt;}
.ls1c_c00009{letter-spacing:0.614016pt;}
.lsf_c00009{letter-spacing:0.629760pt;}
.ls18_c00009{letter-spacing:0.645504pt;}
.ls9_c00009{letter-spacing:0.676992pt;}
.ls5_c00009{letter-spacing:4.723200pt;}
.ls12_c00009{letter-spacing:4.728448pt;}
.ls11_c00009{letter-spacing:4.980352pt;}
.ls0_c00009{letter-spacing:174.233600pt;}
.ls4_c00009{letter-spacing:176.227840pt;}
.ws6_c00009{word-spacing:-17.575552pt;}
.wsc_c00009{word-spacing:-17.323648pt;}
.ws10_c00009{word-spacing:-15.203456pt;}
.wse_c00009{word-spacing:-15.171968pt;}
.ws3_c00009{word-spacing:-15.061760pt;}
.ws1_c00009{word-spacing:-15.035520pt;}
.ws7_c00009{word-spacing:-15.030272pt;}
.wsd_c00009{word-spacing:-14.998784pt;}
.ws8_c00009{word-spacing:-14.967296pt;}
.ws12_c00009{word-spacing:-14.935808pt;}
.ws9_c00009{word-spacing:-14.920064pt;}
.wsf_c00009{word-spacing:-14.904320pt;}
.ws2_c00009{word-spacing:-14.857088pt;}
.ws11_c00009{word-spacing:-14.589440pt;}
.ws0_c00009{word-spacing:-13.177728pt;}
.wsb_c00009{word-spacing:-13.146240pt;}
.ws4_c00009{word-spacing:-13.130496pt;}
.wsa_c00009{word-spacing:-13.046528pt;}
.ws5_c00009{word-spacing:-12.941568pt;}
.ws13_c00009{word-spacing:0.000000pt;}
._5_c00009{margin-left:-182.819328pt;}
._18_c00009{margin-left:-178.977792pt;}
._25_c00009{margin-left:-173.808512pt;}
._3_c00009{margin-left:-165.033856pt;}
._17_c00009{margin-left:-162.771968pt;}
._1e_c00009{margin-left:-160.006272pt;}
._26_c00009{margin-left:-157.623680pt;}
._c_c00009{margin-left:-147.537024pt;}
._1b_c00009{margin-left:-146.513664pt;}
._1d_c00009{margin-left:-141.743232pt;}
._d_c00009{margin-left:-127.531648pt;}
._13_c00009{margin-left:-121.958272pt;}
._15_c00009{margin-left:-110.905984pt;}
._27_c00009{margin-left:-101.916160pt;}
._28_c00009{margin-left:-91.514624pt;}
._f_c00009{margin-left:-87.169280pt;}
._e_c00009{margin-left:-76.269184pt;}
._23_c00009{margin-left:-74.972928pt;}
._4_c00009{margin-left:-69.772160pt;}
._11_c00009{margin-left:-67.368576pt;}
._14_c00009{margin-left:-58.446976pt;}
._2b_c00009{margin-left:-56.342528pt;}
._24_c00009{margin-left:-50.118400pt;}
._29_c00009{margin-left:-43.705344pt;}
._2_c00009{margin-left:-42.010240pt;}
._12_c00009{margin-left:-33.513728pt;}
._19_c00009{margin-left:-31.619200pt;}
._1f_c00009{margin-left:-20.818816pt;}
._2a_c00009{margin-left:-17.670016pt;}
._b_c00009{margin-left:-11.283200pt;}
._6_c00009{margin-left:-9.750784pt;}
._8_c00009{margin-left:-5.221760pt;}
._0_c00009{margin-left:-1.180800pt;}
._1_c00009{width:1.075840pt;}
._9_c00009{width:5.001344pt;}
._16_c00009{width:89.084800pt;}
._20_c00009{width:93.529856pt;}
._10_c00009{width:104.792064pt;}
._21_c00009{width:105.804928pt;}
._22_c00009{width:108.339712pt;}
._2c_c00009{width:137.014784pt;}
._1a_c00009{width:142.425472pt;}
._1c_c00009{width:171.084800pt;}
._a_c00009{width:174.233600pt;}
._7_c00009{width:176.227840pt;}
.fs0_c00009{font-size:52.480000pt;}
.y0_c00009{bottom:0.000000pt;}
.y1_c00009{bottom:48.000000pt;}
.y35_c00009{bottom:104.675840pt;}
.y34_c00009{bottom:121.635840pt;}
.y33_c00009{bottom:138.603840pt;}
.y32_c00009{bottom:155.235840pt;}
.y31_c00009{bottom:172.195840pt;}
.y30_c00009{bottom:189.155840pt;}
.y2f_c00009{bottom:206.123840pt;}
.y2e_c00009{bottom:222.755840pt;}
.y2d_c00009{bottom:239.715840pt;}
.y2c_c00009{bottom:256.683840pt;}
.y2b_c00009{bottom:273.316800pt;}
.y2a_c00009{bottom:290.595840pt;}
.y29_c00009{bottom:307.563840pt;}
.y28_c00009{bottom:324.195840pt;}
.y27_c00009{bottom:341.155840pt;}
.y26_c00009{bottom:358.123840pt;}
.y25_c00009{bottom:374.755840pt;}
.y24_c00009{bottom:391.715840pt;}
.y23_c00009{bottom:408.683840pt;}
.y22_c00009{bottom:425.315840pt;}
.y21_c00009{bottom:442.275840pt;}
.y20_c00009{bottom:459.243840pt;}
.y1f_c00009{bottom:475.875840pt;}
.y1e_c00009{bottom:492.835840pt;}
.y1d_c00009{bottom:509.803840pt;}
.y1c_c00009{bottom:526.435840pt;}
.y1b_c00009{bottom:543.395840pt;}
.y1a_c00009{bottom:560.363840pt;}
.y19_c00009{bottom:576.995840pt;}
.y18_c00009{bottom:593.955840pt;}
.y17_c00009{bottom:610.923840pt;}
.y16_c00009{bottom:627.556800pt;}
.y15_c00009{bottom:644.835840pt;}
.y14_c00009{bottom:661.791680pt;}
.y13_c00009{bottom:678.755840pt;}
.y12_c00009{bottom:695.715707pt;}
.y11_c00009{bottom:712.675840pt;}
.y10_c00009{bottom:729.643840pt;}
.yf_c00009{bottom:746.275840pt;}
.ye_c00009{bottom:763.235840pt;}
.yd_c00009{bottom:780.200960pt;}
.yc_c00009{bottom:797.483840pt;}
.yb_c00009{bottom:814.116800pt;}
.ya_c00009{bottom:831.395840pt;}
.y9_c00009{bottom:848.364800pt;}
.y8_c00009{bottom:865.643840pt;}
.y7_c00009{bottom:882.275840pt;}
.y6_c00009{bottom:899.235840pt;}
.y5_c00009{bottom:916.203840pt;}
.y4_c00009{bottom:932.836800pt;}
.y3_c00009{bottom:950.115840pt;}
.y2_c00009{bottom:967.080000pt;}
.h3_c00009{height:49.383680pt;}
.h7_c00009{height:49.399787pt;}
.h5_c00009{height:49.400320pt;}
.h8_c00009{height:49.400853pt;}
.h9_c00009{height:50.837760pt;}
.h6_c00009{height:50.853120pt;}
.h4_c00009{height:50.865920pt;}
.h2_c00009{height:1067.880000pt;}
.h0_c00009{height:1122.520000pt;}
.h1_c00009{height:1122.666667pt;}
.w2_c00009{width:767.960000pt;}
.w0_c00009{width:793.720000pt;}
.w1_c00009{width:794.000000pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:12.880000pt;}
.x2_c00009{left:100.480133pt;}
.x3_c00009{left:383.741707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6fefbb4daef66d33f29ba454.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.240000;font-style:normal;font-weight:normal;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_736bcae0ad2bdc7faee52560.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.263000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_7963e57761224514ec4e3b7c.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.050000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.lse_c00010{letter-spacing:0.000000px;}
.ls1d_c00010{letter-spacing:0.194832px;}
.ls4_c00010{letter-spacing:0.265680px;}
.ls1b_c00010{letter-spacing:0.283392px;}
.lsf_c00010{letter-spacing:0.301104px;}
.lsa_c00010{letter-spacing:0.308880px;}
.ls8_c00010{letter-spacing:0.351648px;}
.ls0_c00010{letter-spacing:0.354240px;}
.ls1c_c00010{letter-spacing:0.389664px;}
.ls1f_c00010{letter-spacing:0.407376px;}
.lsb_c00010{letter-spacing:0.413280px;}
.ls6_c00010{letter-spacing:0.472320px;}
.ls1e_c00010{letter-spacing:0.478224px;}
.ls3_c00010{letter-spacing:0.495936px;}
.lsd_c00010{letter-spacing:0.501840px;}
.ls2_c00010{letter-spacing:0.531360px;}
.ls11_c00010{letter-spacing:0.566784px;}
.ls16_c00010{letter-spacing:0.584496px;}
.ls19_c00010{letter-spacing:0.602208px;}
.ls10_c00010{letter-spacing:0.619920px;}
.ls1a_c00010{letter-spacing:0.637632px;}
.ls12_c00010{letter-spacing:0.655344px;}
.ls15_c00010{letter-spacing:0.673056px;}
.lsc_c00010{letter-spacing:0.688800px;}
.ls14_c00010{letter-spacing:0.690768px;}
.ls9_c00010{letter-spacing:0.693720px;}
.ls7_c00010{letter-spacing:0.701040px;}
.ls17_c00010{letter-spacing:0.708480px;}
.ls18_c00010{letter-spacing:0.743904px;}
.ls13_c00010{letter-spacing:0.814752px;}
.ls5_c00010{letter-spacing:191.171520px;}
.ls1_c00010{letter-spacing:196.012800px;}
.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;}
}
.ws10_c00010{word-spacing:-17.103888px;}
.ws6_c00010{word-spacing:-17.033040px;}
.wsf_c00010{word-spacing:-16.997616px;}
.ws1_c00010{word-spacing:-16.944480px;}
.ws11_c00010{word-spacing:-16.914960px;}
.wsa_c00010{word-spacing:-16.909056px;}
.ws0_c00010{word-spacing:-16.714224px;}
.wsb_c00010{word-spacing:-16.413120px;}
.ws3_c00010{word-spacing:-14.984352px;}
.ws8_c00010{word-spacing:-14.913504px;}
.ws4_c00010{word-spacing:-14.860368px;}
.ws7_c00010{word-spacing:-14.842656px;}
.ws9_c00010{word-spacing:-14.824944px;}
.ws2_c00010{word-spacing:-14.736384px;}
.ws5_c00010{word-spacing:-14.665536px;}
.wsc_c00010{word-spacing:-14.559264px;}
.wse_c00010{word-spacing:-13.600224px;}
.wsd_c00010{word-spacing:-13.519440px;}
.ws12_c00010{word-spacing:0.000000px;}
._6_c00010{margin-left:-209.562480px;}
._1e_c00010{margin-left:-196.768512px;}
._1a_c00010{margin-left:-195.730440px;}
._5_c00010{margin-left:-193.149360px;}
._f_c00010{margin-left:-185.598144px;}
._1d_c00010{margin-left:-179.127360px;}
._4_c00010{margin-left:-164.426400px;}
._b_c00010{margin-left:-155.298816px;}
._26_c00010{margin-left:-148.574160px;}
._12_c00010{margin-left:-146.702592px;}
._a_c00010{margin-left:-136.488672px;}
._11_c00010{margin-left:-122.561136px;}
._19_c00010{margin-left:-120.585240px;}
._e_c00010{margin-left:-119.172240px;}
._25_c00010{margin-left:-102.227760px;}
._17_c00010{margin-left:-100.043280px;}
._1f_c00010{margin-left:-98.596800px;}
._16_c00010{margin-left:-85.047120px;}
._9_c00010{margin-left:-80.164512px;}
._d_c00010{margin-left:-76.273776px;}
._13_c00010{margin-left:-63.037008px;}
._7_c00010{margin-left:-58.786128px;}
._c_c00010{margin-left:-53.047440px;}
._21_c00010{margin-left:-45.832752px;}
._10_c00010{margin-left:-42.981120px;}
._1_c00010{margin-left:-37.590768px;}
._3_c00010{margin-left:-35.778240px;}
._8_c00010{margin-left:-31.084560px;}
._22_c00010{margin-left:-29.608560px;}
._1c_c00010{margin-left:-4.457520px;}
._2_c00010{margin-left:-1.033200px;}
._0_c00010{width:1.003680px;}
._18_c00010{width:86.570352px;}
._23_c00010{width:118.392912px;}
._24_c00010{width:143.231040px;}
._14_c00010{width:162.424944px;}
._1b_c00010{width:165.636720px;}
._20_c00010{width:179.481600px;}
._15_c00010{width:196.012800px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs1_c00010{font-size:47.520000px;}
.fs0_c00010{font-size:59.040000px;}
.y0_c00010{bottom:0.000000px;}
.y1_c00010{bottom:54.000000px;}
.y36_c00010{bottom:99.040320px;}
.y35_c00010{bottom:118.129320px;}
.y34_c00010{bottom:136.840320px;}
.y33_c00010{bottom:155.920320px;}
.y32_c00010{bottom:175.009320px;}
.y31_c00010{bottom:193.720320px;}
.y30_c00010{bottom:212.800320px;}
.y2f_c00010{bottom:231.889320px;}
.y2e_c00010{bottom:250.600320px;}
.y2d_c00010{bottom:269.681400px;}
.y2c_c00010{bottom:289.120320px;}
.y2b_c00010{bottom:308.209320px;}
.y2a_c00010{bottom:326.920320px;}
.y29_c00010{bottom:346.000320px;}
.y28_c00010{bottom:365.081400px;}
.y27_c00010{bottom:384.166080px;}
.y26_c00010{bottom:403.601040px;}
.y25_c00010{bottom:423.039960px;}
.y24_c00010{bottom:441.755640px;}
.y23_c00010{bottom:460.840320px;}
.y22_c00010{bottom:479.910600px;}
.y21_c00010{bottom:498.995280px;}
.y20_c00010{bottom:518.079960px;}
.y1f_c00010{bottom:537.164640px;}
.y1e_c00010{bottom:555.880320px;}
.y1d_c00010{bottom:574.960320px;}
.y1c_c00010{bottom:594.040320px;}
.y1b_c00010{bottom:613.129320px;}
.y1a_c00010{bottom:631.840320px;}
.y19_c00010{bottom:650.920320px;}
.y18_c00010{bottom:670.000320px;}
.y17_c00010{bottom:689.089320px;}
.y16_c00010{bottom:707.800320px;}
.y15_c00010{bottom:726.880320px;}
.y14_c00010{bottom:745.969320px;}
.y13_c00010{bottom:764.680320px;}
.y12_c00010{bottom:783.760320px;}
.y11_c00010{bottom:802.840320px;}
.y10_c00010{bottom:821.929320px;}
.yf_c00010{bottom:840.640320px;}
.ye_c00010{bottom:859.720320px;}
.yd_c00010{bottom:878.800320px;}
.yc_c00010{bottom:897.889320px;}
.yb_c00010{bottom:916.600320px;}
.ya_c00010{bottom:935.680170px;}
.y9_c00010{bottom:954.760320px;}
.y8_c00010{bottom:973.849320px;}
.y7_c00010{bottom:992.560320px;}
.y6_c00010{bottom:1011.640320px;}
.y5_c00010{bottom:1030.729320px;}
.y4_c00010{bottom:1049.440320px;}
.y3_c00010{bottom:1068.526080px;}
.y2_c00010{bottom:1087.965000px;}
.h3_c00010{height:55.556640px;}
.h6_c00010{height:55.574760px;}
.h5_c00010{height:55.575360px;}
.h7_c00010{height:55.575960px;}
.h4_c00010{height:57.209760px;}
.ha_c00010{height:57.224160px;}
.h9_c00010{height:57.225600px;}
.h8_c00010{height:57.267360px;}
.h2_c00010{height:1201.365000px;}
.h0_c00010{height:1262.835000px;}
.h1_c00010{height:1263.000000px;}
.w2_c00010{width:863.955000px;}
.w0_c00010{width:892.935000px;}
.w1_c00010{width:893.250000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:14.490000px;}
.x2_c00010{left:113.040150px;}
.x4_c00010{left:267.947220px;}
.x3_c00010{left:431.709420px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.lse_c00010{letter-spacing:0.000000pt;}
.ls1d_c00010{letter-spacing:0.173184pt;}
.ls4_c00010{letter-spacing:0.236160pt;}
.ls1b_c00010{letter-spacing:0.251904pt;}
.lsf_c00010{letter-spacing:0.267648pt;}
.lsa_c00010{letter-spacing:0.274560pt;}
.ls8_c00010{letter-spacing:0.312576pt;}
.ls0_c00010{letter-spacing:0.314880pt;}
.ls1c_c00010{letter-spacing:0.346368pt;}
.ls1f_c00010{letter-spacing:0.362112pt;}
.lsb_c00010{letter-spacing:0.367360pt;}
.ls6_c00010{letter-spacing:0.419840pt;}
.ls1e_c00010{letter-spacing:0.425088pt;}
.ls3_c00010{letter-spacing:0.440832pt;}
.lsd_c00010{letter-spacing:0.446080pt;}
.ls2_c00010{letter-spacing:0.472320pt;}
.ls11_c00010{letter-spacing:0.503808pt;}
.ls16_c00010{letter-spacing:0.519552pt;}
.ls19_c00010{letter-spacing:0.535296pt;}
.ls10_c00010{letter-spacing:0.551040pt;}
.ls1a_c00010{letter-spacing:0.566784pt;}
.ls12_c00010{letter-spacing:0.582528pt;}
.ls15_c00010{letter-spacing:0.598272pt;}
.lsc_c00010{letter-spacing:0.612267pt;}
.ls14_c00010{letter-spacing:0.614016pt;}
.ls9_c00010{letter-spacing:0.616640pt;}
.ls7_c00010{letter-spacing:0.623147pt;}
.ls17_c00010{letter-spacing:0.629760pt;}
.ls18_c00010{letter-spacing:0.661248pt;}
.ls13_c00010{letter-spacing:0.724224pt;}
.ls5_c00010{letter-spacing:169.930240pt;}
.ls1_c00010{letter-spacing:174.233600pt;}
.ws10_c00010{word-spacing:-15.203456pt;}
.ws6_c00010{word-spacing:-15.140480pt;}
.wsf_c00010{word-spacing:-15.108992pt;}
.ws1_c00010{word-spacing:-15.061760pt;}
.ws11_c00010{word-spacing:-15.035520pt;}
.wsa_c00010{word-spacing:-15.030272pt;}
.ws0_c00010{word-spacing:-14.857088pt;}
.wsb_c00010{word-spacing:-14.589440pt;}
.ws3_c00010{word-spacing:-13.319424pt;}
.ws8_c00010{word-spacing:-13.256448pt;}
.ws4_c00010{word-spacing:-13.209216pt;}
.ws7_c00010{word-spacing:-13.193472pt;}
.ws9_c00010{word-spacing:-13.177728pt;}
.ws2_c00010{word-spacing:-13.099008pt;}
.ws5_c00010{word-spacing:-13.036032pt;}
.wsc_c00010{word-spacing:-12.941568pt;}
.wse_c00010{word-spacing:-12.089088pt;}
.wsd_c00010{word-spacing:-12.017280pt;}
.ws12_c00010{word-spacing:0.000000pt;}
._6_c00010{margin-left:-186.277760pt;}
._1e_c00010{margin-left:-174.905344pt;}
._1a_c00010{margin-left:-173.982613pt;}
._5_c00010{margin-left:-171.688320pt;}
._f_c00010{margin-left:-164.976128pt;}
._1d_c00010{margin-left:-159.224320pt;}
._4_c00010{margin-left:-146.156800pt;}
._b_c00010{margin-left:-138.043392pt;}
._26_c00010{margin-left:-132.065920pt;}
._12_c00010{margin-left:-130.402304pt;}
._a_c00010{margin-left:-121.323264pt;}
._11_c00010{margin-left:-108.943232pt;}
._19_c00010{margin-left:-107.186880pt;}
._e_c00010{margin-left:-105.930880pt;}
._25_c00010{margin-left:-90.869120pt;}
._17_c00010{margin-left:-88.927360pt;}
._1f_c00010{margin-left:-87.641600pt;}
._16_c00010{margin-left:-75.597440pt;}
._9_c00010{margin-left:-71.257344pt;}
._d_c00010{margin-left:-67.798912pt;}
._13_c00010{margin-left:-56.032896pt;}
._7_c00010{margin-left:-52.254336pt;}
._c_c00010{margin-left:-47.153280pt;}
._21_c00010{margin-left:-40.740224pt;}
._10_c00010{margin-left:-38.205440pt;}
._1_c00010{margin-left:-33.414016pt;}
._3_c00010{margin-left:-31.802880pt;}
._8_c00010{margin-left:-27.630720pt;}
._22_c00010{margin-left:-26.318720pt;}
._1c_c00010{margin-left:-3.962240pt;}
._2_c00010{margin-left:-0.918400pt;}
._0_c00010{width:0.892160pt;}
._18_c00010{width:76.951424pt;}
._23_c00010{width:105.238144pt;}
._24_c00010{width:127.316480pt;}
._14_c00010{width:144.377728pt;}
._1b_c00010{width:147.232640pt;}
._20_c00010{width:159.539200pt;}
._15_c00010{width:174.233600pt;}
.fs1_c00010{font-size:42.240000pt;}
.fs0_c00010{font-size:52.480000pt;}
.y0_c00010{bottom:0.000000pt;}
.y1_c00010{bottom:48.000000pt;}
.y36_c00010{bottom:88.035840pt;}
.y35_c00010{bottom:105.003840pt;}
.y34_c00010{bottom:121.635840pt;}
.y33_c00010{bottom:138.595840pt;}
.y32_c00010{bottom:155.563840pt;}
.y31_c00010{bottom:172.195840pt;}
.y30_c00010{bottom:189.155840pt;}
.y2f_c00010{bottom:206.123840pt;}
.y2e_c00010{bottom:222.755840pt;}
.y2d_c00010{bottom:239.716800pt;}
.y2c_c00010{bottom:256.995840pt;}
.y2b_c00010{bottom:273.963840pt;}
.y2a_c00010{bottom:290.595840pt;}
.y29_c00010{bottom:307.555840pt;}
.y28_c00010{bottom:324.516800pt;}
.y27_c00010{bottom:341.480960pt;}
.y26_c00010{bottom:358.756480pt;}
.y25_c00010{bottom:376.035520pt;}
.y24_c00010{bottom:392.671680pt;}
.y23_c00010{bottom:409.635840pt;}
.y22_c00010{bottom:426.587200pt;}
.y21_c00010{bottom:443.551360pt;}
.y20_c00010{bottom:460.515520pt;}
.y1f_c00010{bottom:477.479680pt;}
.y1e_c00010{bottom:494.115840pt;}
.y1d_c00010{bottom:511.075840pt;}
.y1c_c00010{bottom:528.035840pt;}
.y1b_c00010{bottom:545.003840pt;}
.y1a_c00010{bottom:561.635840pt;}
.y19_c00010{bottom:578.595840pt;}
.y18_c00010{bottom:595.555840pt;}
.y17_c00010{bottom:612.523840pt;}
.y16_c00010{bottom:629.155840pt;}
.y15_c00010{bottom:646.115840pt;}
.y14_c00010{bottom:663.083840pt;}
.y13_c00010{bottom:679.715840pt;}
.y12_c00010{bottom:696.675840pt;}
.y11_c00010{bottom:713.635840pt;}
.y10_c00010{bottom:730.603840pt;}
.yf_c00010{bottom:747.235840pt;}
.ye_c00010{bottom:764.195840pt;}
.yd_c00010{bottom:781.155840pt;}
.yc_c00010{bottom:798.123840pt;}
.yb_c00010{bottom:814.755840pt;}
.ya_c00010{bottom:831.715707pt;}
.y9_c00010{bottom:848.675840pt;}
.y8_c00010{bottom:865.643840pt;}
.y7_c00010{bottom:882.275840pt;}
.y6_c00010{bottom:899.235840pt;}
.y5_c00010{bottom:916.203840pt;}
.y4_c00010{bottom:932.835840pt;}
.y3_c00010{bottom:949.800960pt;}
.y2_c00010{bottom:967.080000pt;}
.h3_c00010{height:49.383680pt;}
.h6_c00010{height:49.399787pt;}
.h5_c00010{height:49.400320pt;}
.h7_c00010{height:49.400853pt;}
.h4_c00010{height:50.853120pt;}
.ha_c00010{height:50.865920pt;}
.h9_c00010{height:50.867200pt;}
.h8_c00010{height:50.904320pt;}
.h2_c00010{height:1067.880000pt;}
.h0_c00010{height:1122.520000pt;}
.h1_c00010{height:1122.666667pt;}
.w2_c00010{width:767.960000pt;}
.w0_c00010{width:793.720000pt;}
.w1_c00010{width:794.000000pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:12.880000pt;}
.x2_c00010{left:100.480133pt;}
.x4_c00010{left:238.175307pt;}
.x3_c00010{left:383.741707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fffdceeb64f0df221851886.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.240000;font-style:normal;font-weight:normal;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_81b832d7141e896359247e37.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.263000;font-style:normal;font-weight:normal;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_1519a8493c042511b86f68fb.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.050000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls6_c00011{letter-spacing:0.000000px;}
.ls2_c00011{letter-spacing:0.236160px;}
.ls9_c00011{letter-spacing:0.265680px;}
.ls10_c00011{letter-spacing:0.283392px;}
.ls0_c00011{letter-spacing:0.295200px;}
.ls5_c00011{letter-spacing:0.354240px;}
.lsd_c00011{letter-spacing:0.371952px;}
.lse_c00011{letter-spacing:0.389664px;}
.ls13_c00011{letter-spacing:0.407376px;}
.ls8_c00011{letter-spacing:0.460512px;}
.lsa_c00011{letter-spacing:0.478224px;}
.ls4_c00011{letter-spacing:0.501840px;}
.ls11_c00011{letter-spacing:0.513648px;}
.ls7_c00011{letter-spacing:0.531360px;}
.lsb_c00011{letter-spacing:0.566784px;}
.lsc_c00011{letter-spacing:0.602208px;}
.ls12_c00011{letter-spacing:0.619920px;}
.lsf_c00011{letter-spacing:0.655344px;}
.ls1_c00011{letter-spacing:196.012800px;}
.ls3_c00011{letter-spacing:198.256320px;}
.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:-16.944480px;}
.ws4_c00011{word-spacing:-16.914960px;}
.ws1_c00011{word-spacing:-16.873632px;}
.ws5_c00011{word-spacing:-16.802784px;}
.ws6_c00011{word-spacing:-16.785072px;}
.ws8_c00011{word-spacing:-14.789520px;}
.ws2_c00011{word-spacing:-14.771808px;}
.ws7_c00011{word-spacing:-14.683248px;}
.ws3_c00011{word-spacing:-14.541552px;}
.ws9_c00011{word-spacing:0.000000px;}
._13_c00011{margin-left:-198.451152px;}
._4_c00011{margin-left:-195.865200px;}
._15_c00011{margin-left:-192.824640px;}
._16_c00011{margin-left:-180.278640px;}
._11_c00011{margin-left:-170.047008px;}
._6_c00011{margin-left:-168.824880px;}
._b_c00011{margin-left:-159.112800px;}
._10_c00011{margin-left:-150.516576px;}
._1e_c00011{margin-left:-146.212560px;}
._5_c00011{margin-left:-145.002240px;}
._3_c00011{margin-left:-141.625152px;}
._1a_c00011{margin-left:-137.504160px;}
._18_c00011{margin-left:-135.774288px;}
._14_c00011{margin-left:-127.662192px;}
._1c_c00011{margin-left:-117.223920px;}
._19_c00011{margin-left:-116.161200px;}
._12_c00011{margin-left:-111.939840px;}
._21_c00011{margin-left:-107.742096px;}
._17_c00011{margin-left:-103.969440px;}
._1f_c00011{margin-left:-95.568048px;}
._2_c00011{margin-left:-93.489840px;}
._25_c00011{margin-left:-91.901664px;}
._c_c00011{margin-left:-87.851520px;}
._24_c00011{margin-left:-83.937168px;}
._f_c00011{margin-left:-70.877520px;}
._1b_c00011{margin-left:-62.287200px;}
._e_c00011{margin-left:-52.929360px;}
._2b_c00011{margin-left:-50.892480px;}
._d_c00011{margin-left:-8.236080px;}
._1_c00011{margin-left:-6.376320px;}
._0_c00011{margin-left:-1.121760px;}
._7_c00011{width:1.269360px;}
._1d_c00011{width:23.852160px;}
._22_c00011{width:48.253392px;}
._29_c00011{width:83.671488px;}
._20_c00011{width:93.111984px;}
._27_c00011{width:102.434400px;}
._a_c00011{width:113.858640px;}
._28_c00011{width:130.378032px;}
._26_c00011{width:139.482000px;}
._8_c00011{width:151.319520px;}
._2a_c00011{width:192.080736px;}
._9_c00011{width:196.012800px;}
._23_c00011{width:198.256320px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs0_c00011{font-size:59.040000px;}
.y0_c00011{bottom:0.000000px;}
.y1_c00011{bottom:54.000000px;}
.y35_c00011{bottom:119.200320px;}
.y34_c00011{bottom:138.289320px;}
.y33_c00011{bottom:157.000320px;}
.y32_c00011{bottom:176.080320px;}
.y31_c00011{bottom:195.169320px;}
.y30_c00011{bottom:213.880320px;}
.y2f_c00011{bottom:232.960320px;}
.y2e_c00011{bottom:252.049320px;}
.y2d_c00011{bottom:270.760320px;}
.y2c_c00011{bottom:289.840320px;}
.y2b_c00011{bottom:308.920320px;}
.y2a_c00011{bottom:328.009320px;}
.y29_c00011{bottom:346.720320px;}
.y28_c00011{bottom:365.800320px;}
.y27_c00011{bottom:384.889320px;}
.y26_c00011{bottom:403.600320px;}
.y25_c00011{bottom:422.680320px;}
.y24_c00011{bottom:441.769320px;}
.y23_c00011{bottom:460.480320px;}
.y22_c00011{bottom:479.570400px;}
.y21_c00011{bottom:499.009320px;}
.y20_c00011{bottom:517.720320px;}
.y1f_c00011{bottom:536.800320px;}
.y1e_c00011{bottom:555.889320px;}
.y1d_c00011{bottom:574.600320px;}
.y1c_c00011{bottom:593.680320px;}
.y1b_c00011{bottom:612.769320px;}
.y1a_c00011{bottom:631.480320px;}
.y19_c00011{bottom:650.560320px;}
.y18_c00011{bottom:669.649320px;}
.y17_c00011{bottom:688.360320px;}
.y16_c00011{bottom:707.440320px;}
.y15_c00011{bottom:726.520320px;}
.y14_c00011{bottom:745.609320px;}
.y13_c00011{bottom:764.320320px;}
.y12_c00011{bottom:783.410400px;}
.y11_c00011{bottom:802.849320px;}
.y10_c00011{bottom:821.560320px;}
.yf_c00011{bottom:840.640320px;}
.ye_c00011{bottom:859.729320px;}
.yd_c00011{bottom:878.440320px;}
.yc_c00011{bottom:897.520320px;}
.yb_c00011{bottom:916.609320px;}
.ya_c00011{bottom:935.321400px;}
.y9_c00011{bottom:954.760320px;}
.y8_c00011{bottom:973.849320px;}
.y7_c00011{bottom:992.560320px;}
.y6_c00011{bottom:1011.640320px;}
.y5_c00011{bottom:1030.729320px;}
.y4_c00011{bottom:1049.440320px;}
.y3_c00011{bottom:1068.526080px;}
.y2_c00011{bottom:1087.965000px;}
.h3_c00011{height:55.556640px;}
.h5_c00011{height:55.575360px;}
.h4_c00011{height:57.209760px;}
.h2_c00011{height:1201.365000px;}
.h0_c00011{height:1262.835000px;}
.h1_c00011{height:1263.000000px;}
.w2_c00011{width:863.955000px;}
.w0_c00011{width:892.935000px;}
.w1_c00011{width:893.250000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:14.490000px;}
.x2_c00011{left:113.040150px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls6_c00011{letter-spacing:0.000000pt;}
.ls2_c00011{letter-spacing:0.209920pt;}
.ls9_c00011{letter-spacing:0.236160pt;}
.ls10_c00011{letter-spacing:0.251904pt;}
.ls0_c00011{letter-spacing:0.262400pt;}
.ls5_c00011{letter-spacing:0.314880pt;}
.lsd_c00011{letter-spacing:0.330624pt;}
.lse_c00011{letter-spacing:0.346368pt;}
.ls13_c00011{letter-spacing:0.362112pt;}
.ls8_c00011{letter-spacing:0.409344pt;}
.lsa_c00011{letter-spacing:0.425088pt;}
.ls4_c00011{letter-spacing:0.446080pt;}
.ls11_c00011{letter-spacing:0.456576pt;}
.ls7_c00011{letter-spacing:0.472320pt;}
.lsb_c00011{letter-spacing:0.503808pt;}
.lsc_c00011{letter-spacing:0.535296pt;}
.ls12_c00011{letter-spacing:0.551040pt;}
.lsf_c00011{letter-spacing:0.582528pt;}
.ls1_c00011{letter-spacing:174.233600pt;}
.ls3_c00011{letter-spacing:176.227840pt;}
.ws0_c00011{word-spacing:-15.061760pt;}
.ws4_c00011{word-spacing:-15.035520pt;}
.ws1_c00011{word-spacing:-14.998784pt;}
.ws5_c00011{word-spacing:-14.935808pt;}
.ws6_c00011{word-spacing:-14.920064pt;}
.ws8_c00011{word-spacing:-13.146240pt;}
.ws2_c00011{word-spacing:-13.130496pt;}
.ws7_c00011{word-spacing:-13.051776pt;}
.ws3_c00011{word-spacing:-12.925824pt;}
.ws9_c00011{word-spacing:0.000000pt;}
._13_c00011{margin-left:-176.401024pt;}
._4_c00011{margin-left:-174.102400pt;}
._15_c00011{margin-left:-171.399680pt;}
._16_c00011{margin-left:-160.247680pt;}
._11_c00011{margin-left:-151.152896pt;}
._6_c00011{margin-left:-150.066560pt;}
._b_c00011{margin-left:-141.433600pt;}
._10_c00011{margin-left:-133.792512pt;}
._1e_c00011{margin-left:-129.966720pt;}
._5_c00011{margin-left:-128.890880pt;}
._3_c00011{margin-left:-125.889024pt;}
._1a_c00011{margin-left:-122.225920pt;}
._18_c00011{margin-left:-120.688256pt;}
._14_c00011{margin-left:-113.477504pt;}
._1c_c00011{margin-left:-104.199040pt;}
._19_c00011{margin-left:-103.254400pt;}
._12_c00011{margin-left:-99.502080pt;}
._21_c00011{margin-left:-95.770752pt;}
._17_c00011{margin-left:-92.417280pt;}
._1f_c00011{margin-left:-84.949376pt;}
._2_c00011{margin-left:-83.102080pt;}
._25_c00011{margin-left:-81.690368pt;}
._c_c00011{margin-left:-78.090240pt;}
._24_c00011{margin-left:-74.610816pt;}
._f_c00011{margin-left:-63.002240pt;}
._1b_c00011{margin-left:-55.366400pt;}
._e_c00011{margin-left:-47.048320pt;}
._2b_c00011{margin-left:-45.237760pt;}
._d_c00011{margin-left:-7.320960pt;}
._1_c00011{margin-left:-5.667840pt;}
._0_c00011{margin-left:-0.997120pt;}
._7_c00011{width:1.128320pt;}
._1d_c00011{width:21.201920pt;}
._22_c00011{width:42.891904pt;}
._29_c00011{width:74.374656pt;}
._20_c00011{width:82.766208pt;}
._27_c00011{width:91.052800pt;}
._a_c00011{width:101.207680pt;}
._28_c00011{width:115.891584pt;}
._26_c00011{width:123.984000pt;}
._8_c00011{width:134.506240pt;}
._2a_c00011{width:170.738432pt;}
._9_c00011{width:174.233600pt;}
._23_c00011{width:176.227840pt;}
.fs0_c00011{font-size:52.480000pt;}
.y0_c00011{bottom:0.000000pt;}
.y1_c00011{bottom:48.000000pt;}
.y35_c00011{bottom:105.955840pt;}
.y34_c00011{bottom:122.923840pt;}
.y33_c00011{bottom:139.555840pt;}
.y32_c00011{bottom:156.515840pt;}
.y31_c00011{bottom:173.483840pt;}
.y30_c00011{bottom:190.115840pt;}
.y2f_c00011{bottom:207.075840pt;}
.y2e_c00011{bottom:224.043840pt;}
.y2d_c00011{bottom:240.675840pt;}
.y2c_c00011{bottom:257.635840pt;}
.y2b_c00011{bottom:274.595840pt;}
.y2a_c00011{bottom:291.563840pt;}
.y29_c00011{bottom:308.195840pt;}
.y28_c00011{bottom:325.155840pt;}
.y27_c00011{bottom:342.123840pt;}
.y26_c00011{bottom:358.755840pt;}
.y25_c00011{bottom:375.715840pt;}
.y24_c00011{bottom:392.683840pt;}
.y23_c00011{bottom:409.315840pt;}
.y22_c00011{bottom:426.284800pt;}
.y21_c00011{bottom:443.563840pt;}
.y20_c00011{bottom:460.195840pt;}
.y1f_c00011{bottom:477.155840pt;}
.y1e_c00011{bottom:494.123840pt;}
.y1d_c00011{bottom:510.755840pt;}
.y1c_c00011{bottom:527.715840pt;}
.y1b_c00011{bottom:544.683840pt;}
.y1a_c00011{bottom:561.315840pt;}
.y19_c00011{bottom:578.275840pt;}
.y18_c00011{bottom:595.243840pt;}
.y17_c00011{bottom:611.875840pt;}
.y16_c00011{bottom:628.835840pt;}
.y15_c00011{bottom:645.795840pt;}
.y14_c00011{bottom:662.763840pt;}
.y13_c00011{bottom:679.395840pt;}
.y12_c00011{bottom:696.364800pt;}
.y11_c00011{bottom:713.643840pt;}
.y10_c00011{bottom:730.275840pt;}
.yf_c00011{bottom:747.235840pt;}
.ye_c00011{bottom:764.203840pt;}
.yd_c00011{bottom:780.835840pt;}
.yc_c00011{bottom:797.795840pt;}
.yb_c00011{bottom:814.763840pt;}
.ya_c00011{bottom:831.396800pt;}
.y9_c00011{bottom:848.675840pt;}
.y8_c00011{bottom:865.643840pt;}
.y7_c00011{bottom:882.275840pt;}
.y6_c00011{bottom:899.235840pt;}
.y5_c00011{bottom:916.203840pt;}
.y4_c00011{bottom:932.835840pt;}
.y3_c00011{bottom:949.800960pt;}
.y2_c00011{bottom:967.080000pt;}
.h3_c00011{height:49.383680pt;}
.h5_c00011{height:49.400320pt;}
.h4_c00011{height:50.853120pt;}
.h2_c00011{height:1067.880000pt;}
.h0_c00011{height:1122.520000pt;}
.h1_c00011{height:1122.666667pt;}
.w2_c00011{width:767.960000pt;}
.w0_c00011{width:793.720000pt;}
.w1_c00011{width:794.000000pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:12.880000pt;}
.x2_c00011{left:100.480133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4de1153ec91a1e47a7123b5e.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.240000;font-style:normal;font-weight:normal;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_8297b6612002379fbe0f3ccc.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.263000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_321e93e9fefd831c00c46457.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.050000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.lsb_c00012{letter-spacing:0.000000px;}
.ls16_c00012{letter-spacing:0.194832px;}
.ls6_c00012{letter-spacing:0.265680px;}
.lse_c00012{letter-spacing:0.283392px;}
.ls10_c00012{letter-spacing:0.336528px;}
.ls3_c00012{letter-spacing:0.354240px;}
.ls15_c00012{letter-spacing:0.356400px;}
.ls9_c00012{letter-spacing:0.389664px;}
.ls13_c00012{letter-spacing:0.407376px;}
.ls8_c00012{letter-spacing:0.413280px;}
.lsd_c00012{letter-spacing:0.460512px;}
.ls7_c00012{letter-spacing:0.472320px;}
.lsc_c00012{letter-spacing:0.478224px;}
.ls5_c00012{letter-spacing:0.490032px;}
.ls11_c00012{letter-spacing:0.495936px;}
.ls2_c00012{letter-spacing:0.501840px;}
.ls1_c00012{letter-spacing:0.531360px;}
.ls12_c00012{letter-spacing:0.566784px;}
.ls4_c00012{letter-spacing:0.590400px;}
.ls14_c00012{letter-spacing:0.602208px;}
.lsa_c00012{letter-spacing:0.637080px;}
.lsf_c00012{letter-spacing:0.690768px;}
.ls0_c00012{letter-spacing:196.012800px;}
.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;}
}
.ws8_c00012{word-spacing:-17.103888px;}
.ws6_c00012{word-spacing:-16.979904px;}
.ws0_c00012{word-spacing:-16.944480px;}
.ws2_c00012{word-spacing:-16.914960px;}
.ws1_c00012{word-spacing:-16.873632px;}
.ws5_c00012{word-spacing:-16.749648px;}
.ws7_c00012{word-spacing:-16.696512px;}
.ws3_c00012{word-spacing:-14.860368px;}
.ws4_c00012{word-spacing:-14.506128px;}
.ws9_c00012{word-spacing:-13.405392px;}
.wsa_c00012{word-spacing:0.000000px;}
._18_c00012{margin-left:-207.425232px;}
._1d_c00012{margin-left:-196.771080px;}
._11_c00012{margin-left:-195.658560px;}
._16_c00012{margin-left:-181.140624px;}
._4_c00012{margin-left:-171.452160px;}
._5_c00012{margin-left:-168.116400px;}
._b_c00012{margin-left:-164.810160px;}
._1_c00012{margin-left:-148.042800px;}
._9_c00012{margin-left:-143.969040px;}
._1c_c00012{margin-left:-127.254816px;}
._12_c00012{margin-left:-125.755200px;}
._2_c00012{margin-left:-120.795840px;}
._3_c00012{margin-left:-117.064512px;}
._17_c00012{margin-left:-113.947200px;}
._10_c00012{margin-left:-77.106240px;}
._1e_c00012{margin-left:-66.816072px;}
._14_c00012{margin-left:-55.946304px;}
._c_c00012{margin-left:-52.870320px;}
._a_c00012{margin-left:-34.361280px;}
._8_c00012{margin-left:-28.959120px;}
._13_c00012{margin-left:-13.667760px;}
._1b_c00012{margin-left:-11.536416px;}
._1a_c00012{margin-left:-8.625744px;}
._0_c00012{margin-left:-1.121760px;}
._d_c00012{width:1.033200px;}
._e_c00012{width:90.803520px;}
._f_c00012{width:99.624096px;}
._6_c00012{width:108.893376px;}
._15_c00012{width:112.435776px;}
._19_c00012{width:184.045392px;}
._7_c00012{width:196.012800px;}
.fc0_c00012{color:rgb(0,0,0);}
.fs1_c00012{font-size:47.520000px;}
.fs0_c00012{font-size:59.040000px;}
.y0_c00012{bottom:0.000000px;}
.y1_c00012{bottom:54.000000px;}
.y27_c00012{bottom:383.801400px;}
.y26_c00012{bottom:403.240320px;}
.y25_c00012{bottom:422.321400px;}
.y24_c00012{bottom:441.760320px;}
.y23_c00012{bottom:460.841400px;}
.y22_c00012{bottom:479.926080px;}
.y21_c00012{bottom:499.360320px;}
.y20_c00012{bottom:518.449320px;}
.y1f_c00012{bottom:537.160320px;}
.y1e_c00012{bottom:556.240320px;}
.y1d_c00012{bottom:575.329320px;}
.y1c_c00012{bottom:594.040320px;}
.y1b_c00012{bottom:613.120320px;}
.y1a_c00012{bottom:632.209320px;}
.y19_c00012{bottom:650.920320px;}
.y18_c00012{bottom:670.000320px;}
.y17_c00012{bottom:689.089320px;}
.y16_c00012{bottom:707.801400px;}
.y15_c00012{bottom:727.240320px;}
.y14_c00012{bottom:746.324640px;}
.y13_c00012{bottom:765.040320px;}
.y12_c00012{bottom:784.120320px;}
.y11_c00012{bottom:803.209320px;}
.y10_c00012{bottom:821.920320px;}
.yf_c00012{bottom:841.000320px;}
.ye_c00012{bottom:860.089320px;}
.yd_c00012{bottom:878.800320px;}
.yc_c00012{bottom:897.880320px;}
.yb_c00012{bottom:916.969320px;}
.ya_c00012{bottom:935.680170px;}
.y9_c00012{bottom:954.760320px;}
.y8_c00012{bottom:973.849320px;}
.y7_c00012{bottom:992.560320px;}
.y6_c00012{bottom:1011.640320px;}
.y5_c00012{bottom:1030.729320px;}
.y4_c00012{bottom:1049.440320px;}
.y3_c00012{bottom:1068.526080px;}
.y2_c00012{bottom:1087.965000px;}
.h3_c00012{height:55.556640px;}
.h8_c00012{height:55.558080px;}
.h6_c00012{height:55.574760px;}
.h5_c00012{height:55.575360px;}
.h7_c00012{height:55.575960px;}
.h4_c00012{height:57.209760px;}
.h9_c00012{height:57.224160px;}
.h2_c00012{height:1201.365000px;}
.h0_c00012{height:1262.835000px;}
.h1_c00012{height:1263.000000px;}
.w2_c00012{width:863.955000px;}
.w0_c00012{width:892.935000px;}
.w1_c00012{width:893.250000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:14.490000px;}
.x2_c00012{left:113.040150px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.lsb_c00012{letter-spacing:0.000000pt;}
.ls16_c00012{letter-spacing:0.173184pt;}
.ls6_c00012{letter-spacing:0.236160pt;}
.lse_c00012{letter-spacing:0.251904pt;}
.ls10_c00012{letter-spacing:0.299136pt;}
.ls3_c00012{letter-spacing:0.314880pt;}
.ls15_c00012{letter-spacing:0.316800pt;}
.ls9_c00012{letter-spacing:0.346368pt;}
.ls13_c00012{letter-spacing:0.362112pt;}
.ls8_c00012{letter-spacing:0.367360pt;}
.lsd_c00012{letter-spacing:0.409344pt;}
.ls7_c00012{letter-spacing:0.419840pt;}
.lsc_c00012{letter-spacing:0.425088pt;}
.ls5_c00012{letter-spacing:0.435584pt;}
.ls11_c00012{letter-spacing:0.440832pt;}
.ls2_c00012{letter-spacing:0.446080pt;}
.ls1_c00012{letter-spacing:0.472320pt;}
.ls12_c00012{letter-spacing:0.503808pt;}
.ls4_c00012{letter-spacing:0.524800pt;}
.ls14_c00012{letter-spacing:0.535296pt;}
.lsa_c00012{letter-spacing:0.566293pt;}
.lsf_c00012{letter-spacing:0.614016pt;}
.ls0_c00012{letter-spacing:174.233600pt;}
.ws8_c00012{word-spacing:-15.203456pt;}
.ws6_c00012{word-spacing:-15.093248pt;}
.ws0_c00012{word-spacing:-15.061760pt;}
.ws2_c00012{word-spacing:-15.035520pt;}
.ws1_c00012{word-spacing:-14.998784pt;}
.ws5_c00012{word-spacing:-14.888576pt;}
.ws7_c00012{word-spacing:-14.841344pt;}
.ws3_c00012{word-spacing:-13.209216pt;}
.ws4_c00012{word-spacing:-12.894336pt;}
.ws9_c00012{word-spacing:-11.915904pt;}
.wsa_c00012{word-spacing:0.000000pt;}
._18_c00012{margin-left:-184.377984pt;}
._1d_c00012{margin-left:-174.907627pt;}
._11_c00012{margin-left:-173.918720pt;}
._16_c00012{margin-left:-161.013888pt;}
._4_c00012{margin-left:-152.401920pt;}
._5_c00012{margin-left:-149.436800pt;}
._b_c00012{margin-left:-146.497920pt;}
._1_c00012{margin-left:-131.593600pt;}
._9_c00012{margin-left:-127.972480pt;}
._1c_c00012{margin-left:-113.115392pt;}
._12_c00012{margin-left:-111.782400pt;}
._2_c00012{margin-left:-107.374080pt;}
._3_c00012{margin-left:-104.057344pt;}
._17_c00012{margin-left:-101.286400pt;}
._10_c00012{margin-left:-68.538880pt;}
._1e_c00012{margin-left:-59.392064pt;}
._14_c00012{margin-left:-49.730048pt;}
._c_c00012{margin-left:-46.995840pt;}
._a_c00012{margin-left:-30.543360pt;}
._8_c00012{margin-left:-25.741440pt;}
._13_c00012{margin-left:-12.149120pt;}
._1b_c00012{margin-left:-10.254592pt;}
._1a_c00012{margin-left:-7.667328pt;}
._0_c00012{margin-left:-0.997120pt;}
._d_c00012{width:0.918400pt;}
._e_c00012{width:80.714240pt;}
._f_c00012{width:88.554752pt;}
._6_c00012{width:96.794112pt;}
._15_c00012{width:99.942912pt;}
._19_c00012{width:163.595904pt;}
._7_c00012{width:174.233600pt;}
.fs1_c00012{font-size:42.240000pt;}
.fs0_c00012{font-size:52.480000pt;}
.y0_c00012{bottom:0.000000pt;}
.y1_c00012{bottom:48.000000pt;}
.y27_c00012{bottom:341.156800pt;}
.y26_c00012{bottom:358.435840pt;}
.y25_c00012{bottom:375.396800pt;}
.y24_c00012{bottom:392.675840pt;}
.y23_c00012{bottom:409.636800pt;}
.y22_c00012{bottom:426.600960pt;}
.y21_c00012{bottom:443.875840pt;}
.y20_c00012{bottom:460.843840pt;}
.y1f_c00012{bottom:477.475840pt;}
.y1e_c00012{bottom:494.435840pt;}
.y1d_c00012{bottom:511.403840pt;}
.y1c_c00012{bottom:528.035840pt;}
.y1b_c00012{bottom:544.995840pt;}
.y1a_c00012{bottom:561.963840pt;}
.y19_c00012{bottom:578.595840pt;}
.y18_c00012{bottom:595.555840pt;}
.y17_c00012{bottom:612.523840pt;}
.y16_c00012{bottom:629.156800pt;}
.y15_c00012{bottom:646.435840pt;}
.y14_c00012{bottom:663.399680pt;}
.y13_c00012{bottom:680.035840pt;}
.y12_c00012{bottom:696.995840pt;}
.y11_c00012{bottom:713.963840pt;}
.y10_c00012{bottom:730.595840pt;}
.yf_c00012{bottom:747.555840pt;}
.ye_c00012{bottom:764.523840pt;}
.yd_c00012{bottom:781.155840pt;}
.yc_c00012{bottom:798.115840pt;}
.yb_c00012{bottom:815.083840pt;}
.ya_c00012{bottom:831.715707pt;}
.y9_c00012{bottom:848.675840pt;}
.y8_c00012{bottom:865.643840pt;}
.y7_c00012{bottom:882.275840pt;}
.y6_c00012{bottom:899.235840pt;}
.y5_c00012{bottom:916.203840pt;}
.y4_c00012{bottom:932.835840pt;}
.y3_c00012{bottom:949.800960pt;}
.y2_c00012{bottom:967.080000pt;}
.h3_c00012{height:49.383680pt;}
.h8_c00012{height:49.384960pt;}
.h6_c00012{height:49.399787pt;}
.h5_c00012{height:49.400320pt;}
.h7_c00012{height:49.400853pt;}
.h4_c00012{height:50.853120pt;}
.h9_c00012{height:50.865920pt;}
.h2_c00012{height:1067.880000pt;}
.h0_c00012{height:1122.520000pt;}
.h1_c00012{height:1122.666667pt;}
.w2_c00012{width:767.960000pt;}
.w0_c00012{width:793.720000pt;}
.w1_c00012{width:794.000000pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:12.880000pt;}
.x2_c00012{left:100.480133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b43b85cf34e1c9e8075abb51.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.134000;font-style:normal;font-weight:normal;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_4a90c2beef94759be996d583.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.134000;font-style:normal;font-weight:normal;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_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_8cf02a0af8c843dfd1f2f549.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:0.787000;font-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_c00013{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00013{vertical-align:-24.480000px;}
.v0_c00013{vertical-align:0.000000px;}
.v1_c00013{vertical-align:30.240000px;}
.ls7_c00013{letter-spacing:0.000000px;}
.ls4_c00013{letter-spacing:0.265680px;}
.ls5_c00013{letter-spacing:0.295200px;}
.ls9_c00013{letter-spacing:0.425088px;}
.lsb_c00013{letter-spacing:0.478224px;}
.ls6_c00013{letter-spacing:0.531360px;}
.ls3_c00013{letter-spacing:0.541440px;}
.ls2_c00013{letter-spacing:0.599640px;}
.ls1_c00013{letter-spacing:6.671808px;}
.ls0_c00013{letter-spacing:8.282640px;}
.ls8_c00013{letter-spacing:8.496576px;}
.lsa_c00013{letter-spacing:17.121600px;}
.sc__c00013{text-shadow:none;}
.sc1_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00013{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc1_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00013{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00013{word-spacing:-28.289088px;}
.ws1_c00013{word-spacing:-20.016000px;}
.ws3_c00013{word-spacing:-16.944480px;}
.ws2_c00013{word-spacing:-10.008000px;}
.ws4_c00013{word-spacing:0.000000px;}
._15_c00013{margin-left:-17.415120px;}
._14_c00013{margin-left:-16.177800px;}
._13_c00013{margin-left:-10.821600px;}
._16_c00013{margin-left:-1.003680px;}
._6_c00013{width:1.335886px;}
._a_c00013{width:2.671772px;}
._8_c00013{width:4.675602px;}
._12_c00013{width:6.984000px;}
._0_c00013{width:9.648000px;}
._f_c00013{width:11.448000px;}
._b_c00013{width:15.214260px;}
._9_c00013{width:16.253282px;}
._e_c00013{width:17.514953px;}
._11_c00013{width:18.754095px;}
._d_c00013{width:21.819475px;}
._c_c00013{width:25.306699px;}
._1_c00013{width:26.496000px;}
._2_c00013{width:28.126903px;}
._5_c00013{width:29.658242px;}
._4_c00013{width:31.541758px;}
._10_c00013{width:36.144000px;}
._7_c00013{width:37.701678px;}
._3_c00013{width:59.224289px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs6_c00013{font-size:36.000000px;}
.fs4_c00013{font-size:41.760000px;}
.fs7_c00013{font-size:59.040000px;}
.fs8_c00013{font-size:60.000000px;}
.fs5_c00013{font-size:64.800000px;}
.fs2_c00013{font-size:72.000000px;}
.fs3_c00013{font-size:74.215901px;}
.fs1_c00013{font-size:77.760000px;}
.fs0_c00013{font-size:95.040000px;}
.y0_c00013{bottom:0.000000px;}
.y2b_c00013{bottom:3.120150px;}
.y2a_c00013{bottom:34.744500px;}
.y1_c00013{bottom:54.000000px;}
.y29_c00013{bottom:55.482840px;}
.y28_c00013{bottom:72.766800px;}
.y27_c00013{bottom:96.525000px;}
.y26_c00013{bottom:113.805000px;}
.y25_c00013{bottom:140.805000px;}
.y24_c00013{bottom:170.685000px;}
.y23_c00013{bottom:191.925000px;}
.y22_c00013{bottom:212.805000px;}
.y21_c00013{bottom:248.805000px;}
.y20_c00013{bottom:284.805000px;}
.y1f_c00013{bottom:320.805000px;}
.y1e_c00013{bottom:356.805000px;}
.y1d_c00013{bottom:377.685000px;}
.y1c_c00013{bottom:398.925000px;}
.y1b_c00013{bottom:419.805000px;}
.y1a_c00013{bottom:440.685000px;}
.y19_c00013{bottom:461.925000px;}
.y18_c00013{bottom:482.805000px;}
.y17_c00013{bottom:518.805000px;}
.y16_c00013{bottom:540.045000px;}
.y15_c00013{bottom:560.925000px;}
.y14_c00013{bottom:581.805000px;}
.y13_c00013{bottom:603.045000px;}
.y12_c00013{bottom:623.925000px;}
.y11_c00013{bottom:644.805000px;}
.y10_c00013{bottom:666.045000px;}
.yf_c00013{bottom:686.925000px;}
.ye_c00013{bottom:707.805000px;}
.yd_c00013{bottom:729.045000px;}
.yc_c00013{bottom:749.925000px;}
.yb_c00013{bottom:770.805000px;}
.ya_c00013{bottom:792.045000px;}
.y9_c00013{bottom:812.925000px;}
.y8_c00013{bottom:833.805000px;}
.y7_c00013{bottom:869.805000px;}
.y6_c00013{bottom:907.615080px;}
.y5_c00013{bottom:950.454360px;}
.y4_c00013{bottom:993.650040px;}
.y3_c00013{bottom:1036.489320px;}
.y2_c00013{bottom:1079.685000px;}
.ha_c00013{height:19.255500px;}
.h8_c00013{height:32.616000px;}
.h7_c00013{height:45.024609px;}
.hb_c00013{height:46.320000px;}
.h9_c00013{height:53.490240px;}
.h4_c00013{height:65.232000px;}
.h5_c00013{height:67.239607px;}
.h6_c00013{height:68.074560px;}
.h3_c00013{height:86.106240px;}
.h2_c00013{height:1201.365000px;}
.h0_c00013{height:1262.835000px;}
.h1_c00013{height:1263.000000px;}
.w3_c00013{width:8.340000px;}
.w2_c00013{width:863.955000px;}
.w0_c00013{width:892.935000px;}
.w1_c00013{width:893.250000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:14.490000px;}
.x4_c00013{left:113.040150px;}
.x3_c00013{left:323.535870px;}
.x10_c00013{left:336.636000px;}
.xc_c00013{left:372.346050px;}
.x6_c00013{left:385.761450px;}
.xd_c00013{left:424.365300px;}
.x2_c00013{left:431.715150px;}
.x7_c00013{left:572.743650px;}
.xe_c00013{left:638.404500px;}
.x5_c00013{left:648.112800px;}
.xa_c00013{left:660.105000px;}
.x8_c00013{left:664.114800px;}
.xb_c00013{left:685.958550px;}
.xf_c00013{left:690.423750px;}
.x9_c00013{left:716.133900px;}
.x11_c00013{left:776.595000px;}
@media print{
.v2_c00013{vertical-align:-21.760000pt;}
.v0_c00013{vertical-align:0.000000pt;}
.v1_c00013{vertical-align:26.880000pt;}
.ls7_c00013{letter-spacing:0.000000pt;}
.ls4_c00013{letter-spacing:0.236160pt;}
.ls5_c00013{letter-spacing:0.262400pt;}
.ls9_c00013{letter-spacing:0.377856pt;}
.lsb_c00013{letter-spacing:0.425088pt;}
.ls6_c00013{letter-spacing:0.472320pt;}
.ls3_c00013{letter-spacing:0.481280pt;}
.ls2_c00013{letter-spacing:0.533013pt;}
.ls1_c00013{letter-spacing:5.930496pt;}
.ls0_c00013{letter-spacing:7.362347pt;}
.ls8_c00013{letter-spacing:7.552512pt;}
.lsa_c00013{letter-spacing:15.219200pt;}
.ws0_c00013{word-spacing:-25.145856pt;}
.ws1_c00013{word-spacing:-17.792000pt;}
.ws3_c00013{word-spacing:-15.061760pt;}
.ws2_c00013{word-spacing:-8.896000pt;}
.ws4_c00013{word-spacing:0.000000pt;}
._15_c00013{margin-left:-15.480107pt;}
._14_c00013{margin-left:-14.380267pt;}
._13_c00013{margin-left:-9.619200pt;}
._16_c00013{margin-left:-0.892160pt;}
._6_c00013{width:1.187454pt;}
._a_c00013{width:2.374909pt;}
._8_c00013{width:4.156090pt;}
._12_c00013{width:6.208000pt;}
._0_c00013{width:8.576000pt;}
._f_c00013{width:10.176000pt;}
._b_c00013{width:13.523786pt;}
._9_c00013{width:14.447362pt;}
._e_c00013{width:15.568847pt;}
._11_c00013{width:16.670306pt;}
._d_c00013{width:19.395089pt;}
._c_c00013{width:22.494844pt;}
._1_c00013{width:23.552000pt;}
._2_c00013{width:25.001692pt;}
._5_c00013{width:26.362882pt;}
._4_c00013{width:28.037118pt;}
._10_c00013{width:32.128000pt;}
._7_c00013{width:33.512603pt;}
._3_c00013{width:52.643813pt;}
.fs6_c00013{font-size:32.000000pt;}
.fs4_c00013{font-size:37.120000pt;}
.fs7_c00013{font-size:52.480000pt;}
.fs8_c00013{font-size:53.333333pt;}
.fs5_c00013{font-size:57.600000pt;}
.fs2_c00013{font-size:64.000000pt;}
.fs3_c00013{font-size:65.969690pt;}
.fs1_c00013{font-size:69.120000pt;}
.fs0_c00013{font-size:84.480000pt;}
.y0_c00013{bottom:0.000000pt;}
.y2b_c00013{bottom:2.773467pt;}
.y2a_c00013{bottom:30.884000pt;}
.y1_c00013{bottom:48.000000pt;}
.y29_c00013{bottom:49.318080pt;}
.y28_c00013{bottom:64.681600pt;}
.y27_c00013{bottom:85.800000pt;}
.y26_c00013{bottom:101.160000pt;}
.y25_c00013{bottom:125.160000pt;}
.y24_c00013{bottom:151.720000pt;}
.y23_c00013{bottom:170.600000pt;}
.y22_c00013{bottom:189.160000pt;}
.y21_c00013{bottom:221.160000pt;}
.y20_c00013{bottom:253.160000pt;}
.y1f_c00013{bottom:285.160000pt;}
.y1e_c00013{bottom:317.160000pt;}
.y1d_c00013{bottom:335.720000pt;}
.y1c_c00013{bottom:354.600000pt;}
.y1b_c00013{bottom:373.160000pt;}
.y1a_c00013{bottom:391.720000pt;}
.y19_c00013{bottom:410.600000pt;}
.y18_c00013{bottom:429.160000pt;}
.y17_c00013{bottom:461.160000pt;}
.y16_c00013{bottom:480.040000pt;}
.y15_c00013{bottom:498.600000pt;}
.y14_c00013{bottom:517.160000pt;}
.y13_c00013{bottom:536.040000pt;}
.y12_c00013{bottom:554.600000pt;}
.y11_c00013{bottom:573.160000pt;}
.y10_c00013{bottom:592.040000pt;}
.yf_c00013{bottom:610.600000pt;}
.ye_c00013{bottom:629.160000pt;}
.yd_c00013{bottom:648.040000pt;}
.yc_c00013{bottom:666.600000pt;}
.yb_c00013{bottom:685.160000pt;}
.ya_c00013{bottom:704.040000pt;}
.y9_c00013{bottom:722.600000pt;}
.y8_c00013{bottom:741.160000pt;}
.y7_c00013{bottom:773.160000pt;}
.y6_c00013{bottom:806.768960pt;}
.y5_c00013{bottom:844.848320pt;}
.y4_c00013{bottom:883.244480pt;}
.y3_c00013{bottom:921.323840pt;}
.y2_c00013{bottom:959.720000pt;}
.ha_c00013{height:17.116000pt;}
.h8_c00013{height:28.992000pt;}
.h7_c00013{height:40.021875pt;}
.hb_c00013{height:41.173333pt;}
.h9_c00013{height:47.546880pt;}
.h4_c00013{height:57.984000pt;}
.h5_c00013{height:59.768539pt;}
.h6_c00013{height:60.510720pt;}
.h3_c00013{height:76.538880pt;}
.h2_c00013{height:1067.880000pt;}
.h0_c00013{height:1122.520000pt;}
.h1_c00013{height:1122.666667pt;}
.w3_c00013{width:7.413333pt;}
.w2_c00013{width:767.960000pt;}
.w0_c00013{width:793.720000pt;}
.w1_c00013{width:794.000000pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:12.880000pt;}
.x4_c00013{left:100.480133pt;}
.x3_c00013{left:287.587440pt;}
.x10_c00013{left:299.232000pt;}
.xc_c00013{left:330.974267pt;}
.x6_c00013{left:342.899067pt;}
.xd_c00013{left:377.213600pt;}
.x2_c00013{left:383.746800pt;}
.x7_c00013{left:509.105467pt;}
.xe_c00013{left:567.470667pt;}
.x5_c00013{left:576.100267pt;}
.xa_c00013{left:586.760000pt;}
.x8_c00013{left:590.324267pt;}
.xb_c00013{left:609.740933pt;}
.xf_c00013{left:613.710000pt;}
.x9_c00013{left:636.563467pt;}
.x11_c00013{left:690.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d81c6420ab9947400e7c0f87.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.134000;font-style:normal;font-weight:normal;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_46ccc14012a12882eea50453.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_325e16f70588f088fa7f0e3d.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:0.787000;font-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_c00014{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00014{vertical-align:-30.240000px;}
.v3_c00014{vertical-align:-24.480000px;}
.v0_c00014{vertical-align:0.000000px;}
.v1_c00014{vertical-align:30.240000px;}
.ls4_c00014{letter-spacing:0.000000px;}
.ls3_c00014{letter-spacing:0.236160px;}
.ls7_c00014{letter-spacing:0.265680px;}
.ls8_c00014{letter-spacing:0.273857px;}
.ls6_c00014{letter-spacing:0.438171px;}
.ls9_c00014{letter-spacing:0.478224px;}
.ls2_c00014{letter-spacing:0.531360px;}
.lsa_c00014{letter-spacing:0.584496px;}
.ls1_c00014{letter-spacing:0.820440px;}
.ls0_c00014{letter-spacing:0.849240px;}
.ls5_c00014{letter-spacing:3.074400px;}
.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;}
}
.ws2_c00014{word-spacing:-17.192114px;}
.ws3_c00014{word-spacing:-16.944480px;}
.ws0_c00014{word-spacing:-11.609280px;}
.ws1_c00014{word-spacing:-10.008000px;}
.ws4_c00014{word-spacing:0.000000px;}
._1a_c00014{margin-left:-16.177800px;}
._19_c00014{margin-left:-10.821600px;}
._16_c00014{margin-left:-2.764800px;}
._1b_c00014{margin-left:-1.003680px;}
._2_c00014{width:1.008000px;}
._e_c00014{width:2.016000px;}
._3_c00014{width:3.024000px;}
._6_c00014{width:4.392000px;}
._14_c00014{width:5.616000px;}
._f_c00014{width:7.416000px;}
._13_c00014{width:8.712000px;}
._9_c00014{width:9.720000px;}
._10_c00014{width:11.160000px;}
._5_c00014{width:12.528000px;}
._b_c00014{width:14.688000px;}
._7_c00014{width:15.696000px;}
._0_c00014{width:16.848000px;}
._1_c00014{width:18.576000px;}
._d_c00014{width:21.168000px;}
._c_c00014{width:22.320000px;}
._12_c00014{width:23.472000px;}
._18_c00014{width:28.080000px;}
._11_c00014{width:29.088000px;}
._8_c00014{width:30.456000px;}
._17_c00014{width:37.728000px;}
._4_c00014{width:43.632000px;}
._15_c00014{width:53.280000px;}
._a_c00014{width:62.352000px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs4_c00014{font-size:36.000000px;}
.fs1_c00014{font-size:41.760000px;}
.fs5_c00014{font-size:59.040000px;}
.fs7_c00014{font-size:60.000000px;}
.fs6_c00014{font-size:60.857039px;}
.fs3_c00014{font-size:64.800000px;}
.fs0_c00014{font-size:72.000000px;}
.fs2_c00014{font-size:74.215901px;}
.y0_c00014{bottom:0.000000px;}
.y35_c00014{bottom:3.120150px;}
.y34_c00014{bottom:34.744500px;}
.y1_c00014{bottom:54.000000px;}
.y33_c00014{bottom:61.605000px;}
.y32_c00014{bottom:72.765000px;}
.y31_c00014{bottom:78.885000px;}
.y30_c00014{bottom:90.405000px;}
.y2f_c00014{bottom:96.525000px;}
.y2e_c00014{bottom:123.165000px;}
.y2d_c00014{bottom:142.605000px;}
.y2c_c00014{bottom:163.845000px;}
.y2b_c00014{bottom:184.725000px;}
.y2a_c00014{bottom:205.605000px;}
.y29_c00014{bottom:226.845000px;}
.y28_c00014{bottom:247.725000px;}
.y27_c00014{bottom:283.725000px;}
.y26_c00014{bottom:304.965000px;}
.y25_c00014{bottom:325.845000px;}
.y24_c00014{bottom:346.725000px;}
.y23_c00014{bottom:367.965000px;}
.y22_c00014{bottom:388.845000px;}
.y21_c00014{bottom:409.725000px;}
.y20_c00014{bottom:430.965000px;}
.y1f_c00014{bottom:451.845000px;}
.y1e_c00014{bottom:472.725000px;}
.y1d_c00014{bottom:508.725000px;}
.y1c_c00014{bottom:529.965000px;}
.y1b_c00014{bottom:550.845000px;}
.y1a_c00014{bottom:571.725000px;}
.y19_c00014{bottom:592.965000px;}
.y18_c00014{bottom:613.845000px;}
.y17_c00014{bottom:634.725000px;}
.y16_c00014{bottom:655.965000px;}
.y15_c00014{bottom:676.845000px;}
.y14_c00014{bottom:697.725000px;}
.y13_c00014{bottom:718.965000px;}
.y12_c00014{bottom:739.845000px;}
.y11_c00014{bottom:761.085000px;}
.y10_c00014{bottom:781.965000px;}
.yf_c00014{bottom:817.965000px;}
.ye_c00014{bottom:838.845000px;}
.yd_c00014{bottom:860.085000px;}
.yc_c00014{bottom:880.965000px;}
.yb_c00014{bottom:901.845000px;}
.ya_c00014{bottom:923.085000px;}
.y9_c00014{bottom:943.965000px;}
.y8_c00014{bottom:964.845000px;}
.y7_c00014{bottom:986.085000px;}
.y6_c00014{bottom:1006.965000px;}
.y4_c00014{bottom:1042.965000px;}
.y5_c00014{bottom:1050.525000px;}
.y3_c00014{bottom:1063.845000px;}
.y2_c00014{bottom:1085.085000px;}
.hb_c00014{height:19.255500px;}
.h8_c00014{height:32.616000px;}
.h6_c00014{height:37.834560px;}
.h7_c00014{height:45.024609px;}
.hc_c00014{height:46.320000px;}
.ha_c00014{height:53.490240px;}
.h9_c00014{height:55.136477px;}
.h4_c00014{height:65.232000px;}
.h5_c00014{height:67.239607px;}
.h3_c00014{height:68.074560px;}
.h2_c00014{height:1201.365000px;}
.h0_c00014{height:1262.835000px;}
.h1_c00014{height:1263.000000px;}
.w3_c00014{width:8.340000px;}
.w2_c00014{width:863.955000px;}
.w0_c00014{width:892.935000px;}
.w1_c00014{width:893.250000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:14.490000px;}
.x2_c00014{left:113.040150px;}
.xc_c00014{left:122.213700px;}
.xd_c00014{left:133.868400px;}
.xe_c00014{left:142.207800px;}
.xf_c00014{left:173.046750px;}
.x7_c00014{left:239.307150px;}
.x10_c00014{left:378.915450px;}
.x11_c00014{left:398.909550px;}
.x5_c00014{left:554.069850px;}
.x8_c00014{left:606.172800px;}
.x3_c00014{left:610.048050px;}
.x4_c00014{left:614.880000px;}
.x6_c00014{left:629.038350px;}
.x9_c00014{left:679.594800px;}
.xa_c00014{left:727.997250px;}
.xb_c00014{left:734.388450px;}
.x12_c00014{left:776.595000px;}
@media print{
.v2_c00014{vertical-align:-26.880000pt;}
.v3_c00014{vertical-align:-21.760000pt;}
.v0_c00014{vertical-align:0.000000pt;}
.v1_c00014{vertical-align:26.880000pt;}
.ls4_c00014{letter-spacing:0.000000pt;}
.ls3_c00014{letter-spacing:0.209920pt;}
.ls7_c00014{letter-spacing:0.236160pt;}
.ls8_c00014{letter-spacing:0.243428pt;}
.ls6_c00014{letter-spacing:0.389485pt;}
.ls9_c00014{letter-spacing:0.425088pt;}
.ls2_c00014{letter-spacing:0.472320pt;}
.lsa_c00014{letter-spacing:0.519552pt;}
.ls1_c00014{letter-spacing:0.729280pt;}
.ls0_c00014{letter-spacing:0.754880pt;}
.ls5_c00014{letter-spacing:2.732800pt;}
.ws2_c00014{word-spacing:-15.281879pt;}
.ws3_c00014{word-spacing:-15.061760pt;}
.ws0_c00014{word-spacing:-10.319360pt;}
.ws1_c00014{word-spacing:-8.896000pt;}
.ws4_c00014{word-spacing:0.000000pt;}
._1a_c00014{margin-left:-14.380267pt;}
._19_c00014{margin-left:-9.619200pt;}
._16_c00014{margin-left:-2.457600pt;}
._1b_c00014{margin-left:-0.892160pt;}
._2_c00014{width:0.896000pt;}
._e_c00014{width:1.792000pt;}
._3_c00014{width:2.688000pt;}
._6_c00014{width:3.904000pt;}
._14_c00014{width:4.992000pt;}
._f_c00014{width:6.592000pt;}
._13_c00014{width:7.744000pt;}
._9_c00014{width:8.640000pt;}
._10_c00014{width:9.920000pt;}
._5_c00014{width:11.136000pt;}
._b_c00014{width:13.056000pt;}
._7_c00014{width:13.952000pt;}
._0_c00014{width:14.976000pt;}
._1_c00014{width:16.512000pt;}
._d_c00014{width:18.816000pt;}
._c_c00014{width:19.840000pt;}
._12_c00014{width:20.864000pt;}
._18_c00014{width:24.960000pt;}
._11_c00014{width:25.856000pt;}
._8_c00014{width:27.072000pt;}
._17_c00014{width:33.536000pt;}
._4_c00014{width:38.784000pt;}
._15_c00014{width:47.360000pt;}
._a_c00014{width:55.424000pt;}
.fs4_c00014{font-size:32.000000pt;}
.fs1_c00014{font-size:37.120000pt;}
.fs5_c00014{font-size:52.480000pt;}
.fs7_c00014{font-size:53.333333pt;}
.fs6_c00014{font-size:54.095146pt;}
.fs3_c00014{font-size:57.600000pt;}
.fs0_c00014{font-size:64.000000pt;}
.fs2_c00014{font-size:65.969690pt;}
.y0_c00014{bottom:0.000000pt;}
.y35_c00014{bottom:2.773467pt;}
.y34_c00014{bottom:30.884000pt;}
.y1_c00014{bottom:48.000000pt;}
.y33_c00014{bottom:54.760000pt;}
.y32_c00014{bottom:64.680000pt;}
.y31_c00014{bottom:70.120000pt;}
.y30_c00014{bottom:80.360000pt;}
.y2f_c00014{bottom:85.800000pt;}
.y2e_c00014{bottom:109.480000pt;}
.y2d_c00014{bottom:126.760000pt;}
.y2c_c00014{bottom:145.640000pt;}
.y2b_c00014{bottom:164.200000pt;}
.y2a_c00014{bottom:182.760000pt;}
.y29_c00014{bottom:201.640000pt;}
.y28_c00014{bottom:220.200000pt;}
.y27_c00014{bottom:252.200000pt;}
.y26_c00014{bottom:271.080000pt;}
.y25_c00014{bottom:289.640000pt;}
.y24_c00014{bottom:308.200000pt;}
.y23_c00014{bottom:327.080000pt;}
.y22_c00014{bottom:345.640000pt;}
.y21_c00014{bottom:364.200000pt;}
.y20_c00014{bottom:383.080000pt;}
.y1f_c00014{bottom:401.640000pt;}
.y1e_c00014{bottom:420.200000pt;}
.y1d_c00014{bottom:452.200000pt;}
.y1c_c00014{bottom:471.080000pt;}
.y1b_c00014{bottom:489.640000pt;}
.y1a_c00014{bottom:508.200000pt;}
.y19_c00014{bottom:527.080000pt;}
.y18_c00014{bottom:545.640000pt;}
.y17_c00014{bottom:564.200000pt;}
.y16_c00014{bottom:583.080000pt;}
.y15_c00014{bottom:601.640000pt;}
.y14_c00014{bottom:620.200000pt;}
.y13_c00014{bottom:639.080000pt;}
.y12_c00014{bottom:657.640000pt;}
.y11_c00014{bottom:676.520000pt;}
.y10_c00014{bottom:695.080000pt;}
.yf_c00014{bottom:727.080000pt;}
.ye_c00014{bottom:745.640000pt;}
.yd_c00014{bottom:764.520000pt;}
.yc_c00014{bottom:783.080000pt;}
.yb_c00014{bottom:801.640000pt;}
.ya_c00014{bottom:820.520000pt;}
.y9_c00014{bottom:839.080000pt;}
.y8_c00014{bottom:857.640000pt;}
.y7_c00014{bottom:876.520000pt;}
.y6_c00014{bottom:895.080000pt;}
.y4_c00014{bottom:927.080000pt;}
.y5_c00014{bottom:933.800000pt;}
.y3_c00014{bottom:945.640000pt;}
.y2_c00014{bottom:964.520000pt;}
.hb_c00014{height:17.116000pt;}
.h8_c00014{height:28.992000pt;}
.h6_c00014{height:33.630720pt;}
.h7_c00014{height:40.021875pt;}
.hc_c00014{height:41.173333pt;}
.ha_c00014{height:47.546880pt;}
.h9_c00014{height:49.010202pt;}
.h4_c00014{height:57.984000pt;}
.h5_c00014{height:59.768539pt;}
.h3_c00014{height:60.510720pt;}
.h2_c00014{height:1067.880000pt;}
.h0_c00014{height:1122.520000pt;}
.h1_c00014{height:1122.666667pt;}
.w3_c00014{width:7.413333pt;}
.w2_c00014{width:767.960000pt;}
.w0_c00014{width:793.720000pt;}
.w1_c00014{width:794.000000pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:12.880000pt;}
.x2_c00014{left:100.480133pt;}
.xc_c00014{left:108.634400pt;}
.xd_c00014{left:118.994133pt;}
.xe_c00014{left:126.406933pt;}
.xf_c00014{left:153.819333pt;}
.x7_c00014{left:212.717467pt;}
.x10_c00014{left:336.813733pt;}
.x11_c00014{left:354.586267pt;}
.x5_c00014{left:492.506533pt;}
.x8_c00014{left:538.820267pt;}
.x3_c00014{left:542.264933pt;}
.x4_c00014{left:546.560000pt;}
.x6_c00014{left:559.145200pt;}
.x9_c00014{left:604.084267pt;}
.xa_c00014{left:647.108667pt;}
.xb_c00014{left:652.789733pt;}
.x12_c00014{left:690.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd3be2ec55a534704d9ddf83.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.134000;font-style:normal;font-weight:normal;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_3361a4ff3fd1b3e12e93c7a3.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_a6c49c1cb6e250fc67bad456.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:0.787000;font-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_c00015{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00015{vertical-align:-24.480000px;}
.v0_c00015{vertical-align:0.000000px;}
.v1_c00015{vertical-align:30.240000px;}
.ls5_c00015{letter-spacing:0.000000px;}
.ls1_c00015{letter-spacing:0.354240px;}
.ls9_c00015{letter-spacing:0.371952px;}
.ls7_c00015{letter-spacing:0.425088px;}
.ls8_c00015{letter-spacing:0.478224px;}
.ls0_c00015{letter-spacing:0.480840px;}
.ls4_c00015{letter-spacing:0.531360px;}
.ls2_c00015{letter-spacing:0.571680px;}
.ls6_c00015{letter-spacing:0.696672px;}
.ls3_c00015{letter-spacing:6.152040px;}
.lsa_c00015{letter-spacing:6.281856px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:-11.609280px;}
.ws1_c00015{word-spacing:-10.008000px;}
.ws2_c00015{word-spacing:0.000000px;}
._f_c00015{margin-left:-16.177800px;}
._e_c00015{margin-left:-10.821600px;}
._12_c00015{margin-left:-6.730560px;}
._11_c00015{margin-left:-5.726880px;}
._10_c00015{margin-left:-1.239840px;}
._2_c00015{width:1.080000px;}
._0_c00015{width:2.664000px;}
._8_c00015{width:3.960000px;}
._3_c00015{width:5.400000px;}
._a_c00015{width:6.984000px;}
._9_c00015{width:9.000000px;}
._6_c00015{width:10.008000px;}
._4_c00015{width:11.448000px;}
._7_c00015{width:17.136000px;}
._c_c00015{width:23.688000px;}
._1_c00015{width:28.080000px;}
._d_c00015{width:33.048000px;}
._5_c00015{width:44.640000px;}
._b_c00015{width:46.800000px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs4_c00015{font-size:36.000000px;}
.fs1_c00015{font-size:41.760000px;}
.fs6_c00015{font-size:47.520000px;}
.fs5_c00015{font-size:59.040000px;}
.fs7_c00015{font-size:60.000000px;}
.fs3_c00015{font-size:64.800000px;}
.fs0_c00015{font-size:72.000000px;}
.fs2_c00015{font-size:74.215901px;}
.y0_c00015{bottom:0.000000px;}
.y24_c00015{bottom:3.120150px;}
.y23_c00015{bottom:34.744500px;}
.y1_c00015{bottom:54.000000px;}
.y22_c00015{bottom:55.481040px;}
.y21_c00015{bottom:78.885000px;}
.y20_c00015{bottom:90.400680px;}
.y1f_c00015{bottom:107.684640px;}
.y1e_c00015{bottom:125.322840px;}
.y1d_c00015{bottom:142.961040px;}
.y1c_c00015{bottom:166.365000px;}
.y1b_c00015{bottom:193.365000px;}
.y1a_c00015{bottom:550.845000px;}
.y19_c00015{bottom:571.725000px;}
.y18_c00015{bottom:592.965000px;}
.y17_c00015{bottom:613.845000px;}
.y16_c00015{bottom:634.725000px;}
.y15_c00015{bottom:655.965000px;}
.y14_c00015{bottom:676.845000px;}
.y13_c00015{bottom:697.725000px;}
.y12_c00015{bottom:718.965000px;}
.y11_c00015{bottom:739.845000px;}
.y10_c00015{bottom:761.085000px;}
.yf_c00015{bottom:797.085000px;}
.ye_c00015{bottom:817.965000px;}
.yd_c00015{bottom:838.845000px;}
.yc_c00015{bottom:860.085000px;}
.yb_c00015{bottom:880.965000px;}
.ya_c00015{bottom:901.845000px;}
.y9_c00015{bottom:923.085000px;}
.y8_c00015{bottom:943.965000px;}
.y7_c00015{bottom:964.845000px;}
.y6_c00015{bottom:986.085000px;}
.y5_c00015{bottom:1006.965000px;}
.y4_c00015{bottom:1027.845000px;}
.y3_c00015{bottom:1063.845000px;}
.y2_c00015{bottom:1085.085000px;}
.h9_c00015{height:19.255500px;}
.h7_c00015{height:32.616000px;}
.h6_c00015{height:45.024609px;}
.ha_c00015{height:46.320000px;}
.h8_c00015{height:53.490240px;}
.h3_c00015{height:65.232000px;}
.h5_c00015{height:67.239607px;}
.h4_c00015{height:68.074560px;}
.h2_c00015{height:1201.365000px;}
.h0_c00015{height:1262.835000px;}
.h1_c00015{height:1263.000000px;}
.w3_c00015{width:8.340000px;}
.w2_c00015{width:863.955000px;}
.w0_c00015{width:892.935000px;}
.w1_c00015{width:893.250000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:14.490000px;}
.x2_c00015{left:113.040150px;}
.x3_c00015{left:363.412800px;}
.x4_c00015{left:446.001000px;}
.x5_c00015{left:776.595000px;}
@media print{
.v2_c00015{vertical-align:-21.760000pt;}
.v0_c00015{vertical-align:0.000000pt;}
.v1_c00015{vertical-align:26.880000pt;}
.ls5_c00015{letter-spacing:0.000000pt;}
.ls1_c00015{letter-spacing:0.314880pt;}
.ls9_c00015{letter-spacing:0.330624pt;}
.ls7_c00015{letter-spacing:0.377856pt;}
.ls8_c00015{letter-spacing:0.425088pt;}
.ls0_c00015{letter-spacing:0.427413pt;}
.ls4_c00015{letter-spacing:0.472320pt;}
.ls2_c00015{letter-spacing:0.508160pt;}
.ls6_c00015{letter-spacing:0.619264pt;}
.ls3_c00015{letter-spacing:5.468480pt;}
.lsa_c00015{letter-spacing:5.583872pt;}
.ws0_c00015{word-spacing:-10.319360pt;}
.ws1_c00015{word-spacing:-8.896000pt;}
.ws2_c00015{word-spacing:0.000000pt;}
._f_c00015{margin-left:-14.380267pt;}
._e_c00015{margin-left:-9.619200pt;}
._12_c00015{margin-left:-5.982720pt;}
._11_c00015{margin-left:-5.090560pt;}
._10_c00015{margin-left:-1.102080pt;}
._2_c00015{width:0.960000pt;}
._0_c00015{width:2.368000pt;}
._8_c00015{width:3.520000pt;}
._3_c00015{width:4.800000pt;}
._a_c00015{width:6.208000pt;}
._9_c00015{width:8.000000pt;}
._6_c00015{width:8.896000pt;}
._4_c00015{width:10.176000pt;}
._7_c00015{width:15.232000pt;}
._c_c00015{width:21.056000pt;}
._1_c00015{width:24.960000pt;}
._d_c00015{width:29.376000pt;}
._5_c00015{width:39.680000pt;}
._b_c00015{width:41.600000pt;}
.fs4_c00015{font-size:32.000000pt;}
.fs1_c00015{font-size:37.120000pt;}
.fs6_c00015{font-size:42.240000pt;}
.fs5_c00015{font-size:52.480000pt;}
.fs7_c00015{font-size:53.333333pt;}
.fs3_c00015{font-size:57.600000pt;}
.fs0_c00015{font-size:64.000000pt;}
.fs2_c00015{font-size:65.969690pt;}
.y0_c00015{bottom:0.000000pt;}
.y24_c00015{bottom:2.773467pt;}
.y23_c00015{bottom:30.884000pt;}
.y1_c00015{bottom:48.000000pt;}
.y22_c00015{bottom:49.316480pt;}
.y21_c00015{bottom:70.120000pt;}
.y20_c00015{bottom:80.356160pt;}
.y1f_c00015{bottom:95.719680pt;}
.y1e_c00015{bottom:111.398080pt;}
.y1d_c00015{bottom:127.076480pt;}
.y1c_c00015{bottom:147.880000pt;}
.y1b_c00015{bottom:171.880000pt;}
.y1a_c00015{bottom:489.640000pt;}
.y19_c00015{bottom:508.200000pt;}
.y18_c00015{bottom:527.080000pt;}
.y17_c00015{bottom:545.640000pt;}
.y16_c00015{bottom:564.200000pt;}
.y15_c00015{bottom:583.080000pt;}
.y14_c00015{bottom:601.640000pt;}
.y13_c00015{bottom:620.200000pt;}
.y12_c00015{bottom:639.080000pt;}
.y11_c00015{bottom:657.640000pt;}
.y10_c00015{bottom:676.520000pt;}
.yf_c00015{bottom:708.520000pt;}
.ye_c00015{bottom:727.080000pt;}
.yd_c00015{bottom:745.640000pt;}
.yc_c00015{bottom:764.520000pt;}
.yb_c00015{bottom:783.080000pt;}
.ya_c00015{bottom:801.640000pt;}
.y9_c00015{bottom:820.520000pt;}
.y8_c00015{bottom:839.080000pt;}
.y7_c00015{bottom:857.640000pt;}
.y6_c00015{bottom:876.520000pt;}
.y5_c00015{bottom:895.080000pt;}
.y4_c00015{bottom:913.640000pt;}
.y3_c00015{bottom:945.640000pt;}
.y2_c00015{bottom:964.520000pt;}
.h9_c00015{height:17.116000pt;}
.h7_c00015{height:28.992000pt;}
.h6_c00015{height:40.021875pt;}
.ha_c00015{height:41.173333pt;}
.h8_c00015{height:47.546880pt;}
.h3_c00015{height:57.984000pt;}
.h5_c00015{height:59.768539pt;}
.h4_c00015{height:60.510720pt;}
.h2_c00015{height:1067.880000pt;}
.h0_c00015{height:1122.520000pt;}
.h1_c00015{height:1122.666667pt;}
.w3_c00015{width:7.413333pt;}
.w2_c00015{width:767.960000pt;}
.w0_c00015{width:793.720000pt;}
.w1_c00015{width:794.000000pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:12.880000pt;}
.x2_c00015{left:100.480133pt;}
.x3_c00015{left:323.033600pt;}
.x4_c00015{left:396.445333pt;}
.x5_c00015{left:690.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e9a3db8ca8eac94af3ca887.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.134000;font-style:normal;font-weight:normal;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_109c3e92ff99947eb1e8890d.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.134000;font-style:normal;font-weight:normal;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_415614a751f542f0f1f3bf63.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:0.787000;font-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_c00016{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls0_c00016{letter-spacing:0.000000px;}
.ls2_c00016{letter-spacing:6.656256px;}
.ls3_c00016{letter-spacing:6.671808px;}
.ls1_c00016{letter-spacing:8.496576px;}
.sc__c00016{text-shadow:none;}
.sc1_c00016{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_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;}
.sc1_c00016{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00016{word-spacing:-28.289088px;}
.ws0_c00016{word-spacing:-28.273536px;}
.ws2_c00016{word-spacing:0.000000px;}
._8_c00016{width:1.080000px;}
._2_c00016{width:3.312000px;}
._1_c00016{width:4.896000px;}
._d_c00016{width:6.192000px;}
._0_c00016{width:7.551624px;}
._4_c00016{width:9.152376px;}
._7_c00016{width:10.390226px;}
._f_c00016{width:11.664000px;}
._c_c00016{width:13.176000px;}
._6_c00016{width:14.256000px;}
._11_c00016{width:15.696000px;}
._e_c00016{width:16.920000px;}
._5_c00016{width:18.936000px;}
._3_c00016{width:21.888000px;}
._10_c00016{width:23.256000px;}
._b_c00016{width:24.552000px;}
._9_c00016{width:27.288000px;}
._a_c00016{width:28.967653px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs4_c00016{font-size:60.000000px;}
.fs0_c00016{font-size:72.000000px;}
.fs3_c00016{font-size:74.215901px;}
.fs2_c00016{font-size:77.760000px;}
.fs1_c00016{font-size:95.040000px;}
.y0_c00016{bottom:0.000000px;}
.y2d_c00016{bottom:3.120150px;}
.y2c_c00016{bottom:34.744500px;}
.y1_c00016{bottom:54.000000px;}
.y2b_c00016{bottom:111.645000px;}
.y2a_c00016{bottom:132.885000px;}
.y29_c00016{bottom:153.765000px;}
.y28_c00016{bottom:174.645000px;}
.y27_c00016{bottom:195.885000px;}
.y26_c00016{bottom:216.765000px;}
.y25_c00016{bottom:237.645000px;}
.y24_c00016{bottom:258.885000px;}
.y23_c00016{bottom:279.765000px;}
.y22_c00016{bottom:300.645000px;}
.y21_c00016{bottom:321.885000px;}
.y20_c00016{bottom:342.765000px;}
.y1f_c00016{bottom:364.005000px;}
.y1e_c00016{bottom:384.885000px;}
.y1d_c00016{bottom:405.765000px;}
.y1c_c00016{bottom:427.005000px;}
.y1b_c00016{bottom:447.885000px;}
.y1a_c00016{bottom:468.765000px;}
.y19_c00016{bottom:490.005000px;}
.y18_c00016{bottom:510.885000px;}
.y17_c00016{bottom:531.765000px;}
.y16_c00016{bottom:553.005000px;}
.y15_c00016{bottom:573.885000px;}
.y14_c00016{bottom:609.885000px;}
.y13_c00016{bottom:630.765000px;}
.y12_c00016{bottom:652.005000px;}
.y11_c00016{bottom:672.885000px;}
.y10_c00016{bottom:693.765000px;}
.yf_c00016{bottom:715.005000px;}
.ye_c00016{bottom:735.885000px;}
.yd_c00016{bottom:756.765000px;}
.yc_c00016{bottom:778.005000px;}
.yb_c00016{bottom:798.885000px;}
.ya_c00016{bottom:820.125000px;}
.y9_c00016{bottom:841.005000px;}
.y8_c00016{bottom:861.885000px;}
.y7_c00016{bottom:897.885000px;}
.y6_c00016{bottom:935.685000px;}
.y5_c00016{bottom:977.085000px;}
.y4_c00016{bottom:1013.085000px;}
.y3_c00016{bottom:1049.085000px;}
.y2_c00016{bottom:1085.085000px;}
.h6_c00016{height:19.255500px;}
.h7_c00016{height:46.320000px;}
.h3_c00016{height:65.232000px;}
.h5_c00016{height:67.239607px;}
.h4_c00016{height:86.106240px;}
.h2_c00016{height:1201.365000px;}
.h0_c00016{height:1262.835000px;}
.h1_c00016{height:1263.000000px;}
.w3_c00016{width:8.340000px;}
.w2_c00016{width:863.955000px;}
.w0_c00016{width:892.935000px;}
.w1_c00016{width:893.250000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:14.490000px;}
.x4_c00016{left:113.040150px;}
.x5_c00016{left:189.035100px;}
.x9_c00016{left:216.016500px;}
.x7_c00016{left:228.076500px;}
.x8_c00016{left:260.746200px;}
.x3_c00016{left:298.045200px;}
.x2_c00016{left:431.715150px;}
.xa_c00016{left:534.875250px;}
.x6_c00016{left:536.996700px;}
.xb_c00016{left:596.902200px;}
.xc_c00016{left:776.595000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ls2_c00016{letter-spacing:5.916672pt;}
.ls3_c00016{letter-spacing:5.930496pt;}
.ls1_c00016{letter-spacing:7.552512pt;}
.ws1_c00016{word-spacing:-25.145856pt;}
.ws0_c00016{word-spacing:-25.132032pt;}
.ws2_c00016{word-spacing:0.000000pt;}
._8_c00016{width:0.960000pt;}
._2_c00016{width:2.944000pt;}
._1_c00016{width:4.352000pt;}
._d_c00016{width:5.504000pt;}
._0_c00016{width:6.712555pt;}
._4_c00016{width:8.135445pt;}
._7_c00016{width:9.235757pt;}
._f_c00016{width:10.368000pt;}
._c_c00016{width:11.712000pt;}
._6_c00016{width:12.672000pt;}
._11_c00016{width:13.952000pt;}
._e_c00016{width:15.040000pt;}
._5_c00016{width:16.832000pt;}
._3_c00016{width:19.456000pt;}
._10_c00016{width:20.672000pt;}
._b_c00016{width:21.824000pt;}
._9_c00016{width:24.256000pt;}
._a_c00016{width:25.749025pt;}
.fs4_c00016{font-size:53.333333pt;}
.fs0_c00016{font-size:64.000000pt;}
.fs3_c00016{font-size:65.969690pt;}
.fs2_c00016{font-size:69.120000pt;}
.fs1_c00016{font-size:84.480000pt;}
.y0_c00016{bottom:0.000000pt;}
.y2d_c00016{bottom:2.773467pt;}
.y2c_c00016{bottom:30.884000pt;}
.y1_c00016{bottom:48.000000pt;}
.y2b_c00016{bottom:99.240000pt;}
.y2a_c00016{bottom:118.120000pt;}
.y29_c00016{bottom:136.680000pt;}
.y28_c00016{bottom:155.240000pt;}
.y27_c00016{bottom:174.120000pt;}
.y26_c00016{bottom:192.680000pt;}
.y25_c00016{bottom:211.240000pt;}
.y24_c00016{bottom:230.120000pt;}
.y23_c00016{bottom:248.680000pt;}
.y22_c00016{bottom:267.240000pt;}
.y21_c00016{bottom:286.120000pt;}
.y20_c00016{bottom:304.680000pt;}
.y1f_c00016{bottom:323.560000pt;}
.y1e_c00016{bottom:342.120000pt;}
.y1d_c00016{bottom:360.680000pt;}
.y1c_c00016{bottom:379.560000pt;}
.y1b_c00016{bottom:398.120000pt;}
.y1a_c00016{bottom:416.680000pt;}
.y19_c00016{bottom:435.560000pt;}
.y18_c00016{bottom:454.120000pt;}
.y17_c00016{bottom:472.680000pt;}
.y16_c00016{bottom:491.560000pt;}
.y15_c00016{bottom:510.120000pt;}
.y14_c00016{bottom:542.120000pt;}
.y13_c00016{bottom:560.680000pt;}
.y12_c00016{bottom:579.560000pt;}
.y11_c00016{bottom:598.120000pt;}
.y10_c00016{bottom:616.680000pt;}
.yf_c00016{bottom:635.560000pt;}
.ye_c00016{bottom:654.120000pt;}
.yd_c00016{bottom:672.680000pt;}
.yc_c00016{bottom:691.560000pt;}
.yb_c00016{bottom:710.120000pt;}
.ya_c00016{bottom:729.000000pt;}
.y9_c00016{bottom:747.560000pt;}
.y8_c00016{bottom:766.120000pt;}
.y7_c00016{bottom:798.120000pt;}
.y6_c00016{bottom:831.720000pt;}
.y5_c00016{bottom:868.520000pt;}
.y4_c00016{bottom:900.520000pt;}
.y3_c00016{bottom:932.520000pt;}
.y2_c00016{bottom:964.520000pt;}
.h6_c00016{height:17.116000pt;}
.h7_c00016{height:41.173333pt;}
.h3_c00016{height:57.984000pt;}
.h5_c00016{height:59.768539pt;}
.h4_c00016{height:76.538880pt;}
.h2_c00016{height:1067.880000pt;}
.h0_c00016{height:1122.520000pt;}
.h1_c00016{height:1122.666667pt;}
.w3_c00016{width:7.413333pt;}
.w2_c00016{width:767.960000pt;}
.w0_c00016{width:793.720000pt;}
.w1_c00016{width:794.000000pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:12.880000pt;}
.x4_c00016{left:100.480133pt;}
.x5_c00016{left:168.031200pt;}
.x9_c00016{left:192.014667pt;}
.x7_c00016{left:202.734667pt;}
.x8_c00016{left:231.774400pt;}
.x3_c00016{left:264.929067pt;}
.x2_c00016{left:383.746800pt;}
.xa_c00016{left:475.444667pt;}
.x6_c00016{left:477.330400pt;}
.xb_c00016{left:530.579733pt;}
.xc_c00016{left:690.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47483fde4d1a18c8f5f92df2.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.134000;font-style:normal;font-weight:normal;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_7ed7d0322ff78fff043ecfa8.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;}
.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;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:0.000000px;}
._3_c00017{width:1.440000px;}
._c_c00017{width:2.592000px;}
._4_c00017{width:4.104000px;}
._1_c00017{width:5.904000px;}
._2_c00017{width:7.056000px;}
._7_c00017{width:8.496000px;}
._b_c00017{width:10.080000px;}
._6_c00017{width:11.232000px;}
._0_c00017{width:12.384000px;}
._5_c00017{width:14.256000px;}
._8_c00017{width:15.768000px;}
._e_c00017{width:16.848000px;}
._d_c00017{width:21.024000px;}
._9_c00017{width:24.912000px;}
._a_c00017{width:25.920000px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs1_c00017{font-size:64.800000px;}
.fs0_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y1_c00017{bottom:54.000000px;}
.y1d_c00017{bottom:474.885000px;}
.y1c_c00017{bottom:508.725000px;}
.y1b_c00017{bottom:529.965000px;}
.y1a_c00017{bottom:550.845000px;}
.y19_c00017{bottom:571.725000px;}
.y18_c00017{bottom:592.965000px;}
.y17_c00017{bottom:613.845000px;}
.y16_c00017{bottom:634.725000px;}
.y15_c00017{bottom:670.725000px;}
.y14_c00017{bottom:691.965000px;}
.y13_c00017{bottom:712.845000px;}
.y12_c00017{bottom:734.085000px;}
.y11_c00017{bottom:754.965000px;}
.y10_c00017{bottom:775.845000px;}
.yf_c00017{bottom:811.845000px;}
.ye_c00017{bottom:833.085000px;}
.yd_c00017{bottom:853.965000px;}
.yc_c00017{bottom:874.845000px;}
.yb_c00017{bottom:896.085000px;}
.ya_c00017{bottom:916.965000px;}
.y9_c00017{bottom:937.845000px;}
.y8_c00017{bottom:959.085000px;}
.y7_c00017{bottom:979.965000px;}
.y6_c00017{bottom:1000.845000px;}
.y5_c00017{bottom:1022.085000px;}
.y4_c00017{bottom:1042.965000px;}
.y3_c00017{bottom:1063.845000px;}
.y2_c00017{bottom:1085.085000px;}
.h4_c00017{height:43.189453px;}
.h3_c00017{height:65.232000px;}
.h2_c00017{height:1201.365000px;}
.h0_c00017{height:1262.835000px;}
.h1_c00017{height:1263.000000px;}
.w2_c00017{width:863.955000px;}
.w0_c00017{width:892.935000px;}
.w1_c00017{width:893.250000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:14.490000px;}
.x2_c00017{left:113.040150px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws0_c00017{word-spacing:0.000000pt;}
._3_c00017{width:1.280000pt;}
._c_c00017{width:2.304000pt;}
._4_c00017{width:3.648000pt;}
._1_c00017{width:5.248000pt;}
._2_c00017{width:6.272000pt;}
._7_c00017{width:7.552000pt;}
._b_c00017{width:8.960000pt;}
._6_c00017{width:9.984000pt;}
._0_c00017{width:11.008000pt;}
._5_c00017{width:12.672000pt;}
._8_c00017{width:14.016000pt;}
._e_c00017{width:14.976000pt;}
._d_c00017{width:18.688000pt;}
._9_c00017{width:22.144000pt;}
._a_c00017{width:23.040000pt;}
.fs1_c00017{font-size:57.600000pt;}
.fs0_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y1_c00017{bottom:48.000000pt;}
.y1d_c00017{bottom:422.120000pt;}
.y1c_c00017{bottom:452.200000pt;}
.y1b_c00017{bottom:471.080000pt;}
.y1a_c00017{bottom:489.640000pt;}
.y19_c00017{bottom:508.200000pt;}
.y18_c00017{bottom:527.080000pt;}
.y17_c00017{bottom:545.640000pt;}
.y16_c00017{bottom:564.200000pt;}
.y15_c00017{bottom:596.200000pt;}
.y14_c00017{bottom:615.080000pt;}
.y13_c00017{bottom:633.640000pt;}
.y12_c00017{bottom:652.520000pt;}
.y11_c00017{bottom:671.080000pt;}
.y10_c00017{bottom:689.640000pt;}
.yf_c00017{bottom:721.640000pt;}
.ye_c00017{bottom:740.520000pt;}
.yd_c00017{bottom:759.080000pt;}
.yc_c00017{bottom:777.640000pt;}
.yb_c00017{bottom:796.520000pt;}
.ya_c00017{bottom:815.080000pt;}
.y9_c00017{bottom:833.640000pt;}
.y8_c00017{bottom:852.520000pt;}
.y7_c00017{bottom:871.080000pt;}
.y6_c00017{bottom:889.640000pt;}
.y5_c00017{bottom:908.520000pt;}
.y4_c00017{bottom:927.080000pt;}
.y3_c00017{bottom:945.640000pt;}
.y2_c00017{bottom:964.520000pt;}
.h4_c00017{height:38.390625pt;}
.h3_c00017{height:57.984000pt;}
.h2_c00017{height:1067.880000pt;}
.h0_c00017{height:1122.520000pt;}
.h1_c00017{height:1122.666667pt;}
.w2_c00017{width:767.960000pt;}
.w0_c00017{width:793.720000pt;}
.w1_c00017{width:794.000000pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:12.880000pt;}
.x2_c00017{left:100.480133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_944efa92968a0b136b8a986e.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.134000;font-style:normal;font-weight:normal;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_9b9dcb60b5ef8865555a492b.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.134000;font-style:normal;font-weight:normal;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_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_f1841aab92138eceb804211a.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:0.787000;font-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_c00018{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00018{vertical-align:-24.480000px;}
.v0_c00018{vertical-align:0.000000px;}
.v1_c00018{vertical-align:30.240000px;}
.lsb_c00018{letter-spacing:-0.179568px;}
.ls6_c00018{letter-spacing:0.000000px;}
.lsd_c00018{letter-spacing:0.144000px;}
.lsc_c00018{letter-spacing:0.265680px;}
.ls3_c00018{letter-spacing:0.295200px;}
.ls4_c00018{letter-spacing:0.531360px;}
.ls5_c00018{letter-spacing:0.560880px;}
.ls8_c00018{letter-spacing:5.009472px;}
.ls9_c00018{letter-spacing:5.430672px;}
.ls2_c00018{letter-spacing:5.976000px;}
.ls7_c00018{letter-spacing:6.594048px;}
.ls1_c00018{letter-spacing:8.230464px;}
.ls0_c00018{letter-spacing:8.458560px;}
.lsa_c00018{letter-spacing:32.680800px;}
.sc__c00018{text-shadow:none;}
.sc1_c00018{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_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;}
.sc1_c00018{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-11.609280px;}
.ws1_c00018{word-spacing:-11.429712px;}
.ws3_c00018{word-spacing:-10.152000px;}
.ws2_c00018{word-spacing:-10.008000px;}
.ws4_c00018{word-spacing:0.000000px;}
._a_c00018{margin-left:-32.667960px;}
._13_c00018{margin-left:-16.177800px;}
._12_c00018{margin-left:-10.821600px;}
._1_c00018{margin-left:-1.066608px;}
._0_c00018{width:1.164768px;}
._2_c00018{width:2.579232px;}
._5_c00018{width:4.320000px;}
._8_c00018{width:5.328000px;}
._b_c00018{width:6.552000px;}
._10_c00018{width:7.560000px;}
._c_c00018{width:9.000000px;}
._d_c00018{width:10.107951px;}
._4_c00018{width:11.664000px;}
._f_c00018{width:13.176000px;}
._e_c00018{width:14.544000px;}
._7_c00018{width:26.568000px;}
._9_c00018{width:32.688000px;}
._11_c00018{width:34.213530px;}
._6_c00018{width:44.784000px;}
._3_c00018{width:46.080000px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs7_c00018{font-size:36.000000px;}
.fs5_c00018{font-size:41.760000px;}
.fs3_c00018{font-size:56.160000px;}
.fs8_c00018{font-size:59.040000px;}
.fs9_c00018{font-size:60.000000px;}
.fs6_c00018{font-size:64.800000px;}
.fs0_c00018{font-size:72.000000px;}
.fs4_c00018{font-size:74.215901px;}
.fs2_c00018{font-size:77.760000px;}
.fs1_c00018{font-size:95.040000px;}
.y0_c00018{bottom:0.000000px;}
.y2b_c00018{bottom:3.120150px;}
.y2a_c00018{bottom:34.744500px;}
.y1_c00018{bottom:54.000000px;}
.y29_c00018{bottom:61.605000px;}
.y28_c00018{bottom:78.885000px;}
.y27_c00018{bottom:96.525000px;}
.y26_c00018{bottom:123.165000px;}
.y25_c00018{bottom:149.805000px;}
.y24_c00018{bottom:170.685000px;}
.y23_c00018{bottom:191.925000px;}
.y22_c00018{bottom:212.805000px;}
.y21_c00018{bottom:248.805000px;}
.y20_c00018{bottom:269.685000px;}
.y1f_c00018{bottom:290.925000px;}
.y1e_c00018{bottom:311.805000px;}
.y1d_c00018{bottom:332.685000px;}
.y1c_c00018{bottom:353.925000px;}
.y1b_c00018{bottom:389.925000px;}
.y1a_c00018{bottom:410.805000px;}
.y19_c00018{bottom:431.685000px;}
.y18_c00018{bottom:452.925000px;}
.y17_c00018{bottom:473.805000px;}
.y16_c00018{bottom:509.805000px;}
.y15_c00018{bottom:531.045000px;}
.y14_c00018{bottom:551.925000px;}
.y13_c00018{bottom:572.805000px;}
.y12_c00018{bottom:594.045000px;}
.y11_c00018{bottom:614.925000px;}
.y10_c00018{bottom:635.805000px;}
.yf_c00018{bottom:657.045000px;}
.ye_c00018{bottom:677.925000px;}
.yd_c00018{bottom:698.805000px;}
.yc_c00018{bottom:734.805000px;}
.yb_c00018{bottom:756.045000px;}
.ya_c00018{bottom:776.925000px;}
.y9_c00018{bottom:797.805000px;}
.y8_c00018{bottom:833.805000px;}
.y7_c00018{bottom:871.605720px;}
.y6_c00018{bottom:914.454360px;}
.y5_c00018{bottom:957.650040px;}
.y4_c00018{bottom:1000.489320px;}
.y3_c00018{bottom:1043.685000px;}
.y2_c00018{bottom:1085.085000px;}
.h9_c00018{height:19.255500px;}
.h8_c00018{height:32.616000px;}
.h7_c00018{height:45.024609px;}
.ha_c00018{height:46.320000px;}
.h3_c00018{height:65.232000px;}
.h5_c00018{height:67.239607px;}
.h6_c00018{height:68.074560px;}
.h4_c00018{height:86.106240px;}
.h2_c00018{height:1201.365000px;}
.h0_c00018{height:1262.835000px;}
.h1_c00018{height:1263.000000px;}
.w3_c00018{width:8.340000px;}
.w2_c00018{width:863.955000px;}
.w0_c00018{width:892.935000px;}
.w1_c00018{width:893.250000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:14.490000px;}
.x2_c00018{left:113.040150px;}
.xb_c00018{left:178.840200px;}
.x4_c00018{left:267.889950px;}
.xe_c00018{left:270.670200px;}
.x9_c00018{left:325.065300px;}
.x3_c00018{left:431.715150px;}
.xd_c00018{left:457.183200px;}
.x5_c00018{left:509.290950px;}
.xc_c00018{left:520.237500px;}
.x6_c00018{left:586.257150px;}
.x7_c00018{left:591.100650px;}
.x8_c00018{left:679.101150px;}
.xa_c00018{left:705.229950px;}
.xf_c00018{left:776.595000px;}
@media print{
.v2_c00018{vertical-align:-21.760000pt;}
.v0_c00018{vertical-align:0.000000pt;}
.v1_c00018{vertical-align:26.880000pt;}
.lsb_c00018{letter-spacing:-0.159616pt;}
.ls6_c00018{letter-spacing:0.000000pt;}
.lsd_c00018{letter-spacing:0.128000pt;}
.lsc_c00018{letter-spacing:0.236160pt;}
.ls3_c00018{letter-spacing:0.262400pt;}
.ls4_c00018{letter-spacing:0.472320pt;}
.ls5_c00018{letter-spacing:0.498560pt;}
.ls8_c00018{letter-spacing:4.452864pt;}
.ls9_c00018{letter-spacing:4.827264pt;}
.ls2_c00018{letter-spacing:5.312000pt;}
.ls7_c00018{letter-spacing:5.861376pt;}
.ls1_c00018{letter-spacing:7.315968pt;}
.ls0_c00018{letter-spacing:7.518720pt;}
.lsa_c00018{letter-spacing:29.049600pt;}
.ws0_c00018{word-spacing:-10.319360pt;}
.ws1_c00018{word-spacing:-10.159744pt;}
.ws3_c00018{word-spacing:-9.024000pt;}
.ws2_c00018{word-spacing:-8.896000pt;}
.ws4_c00018{word-spacing:0.000000pt;}
._a_c00018{margin-left:-29.038187pt;}
._13_c00018{margin-left:-14.380267pt;}
._12_c00018{margin-left:-9.619200pt;}
._1_c00018{margin-left:-0.948096pt;}
._0_c00018{width:1.035349pt;}
._2_c00018{width:2.292651pt;}
._5_c00018{width:3.840000pt;}
._8_c00018{width:4.736000pt;}
._b_c00018{width:5.824000pt;}
._10_c00018{width:6.720000pt;}
._c_c00018{width:8.000000pt;}
._d_c00018{width:8.984845pt;}
._4_c00018{width:10.368000pt;}
._f_c00018{width:11.712000pt;}
._e_c00018{width:12.928000pt;}
._7_c00018{width:23.616000pt;}
._9_c00018{width:29.056000pt;}
._11_c00018{width:30.412027pt;}
._6_c00018{width:39.808000pt;}
._3_c00018{width:40.960000pt;}
.fs7_c00018{font-size:32.000000pt;}
.fs5_c00018{font-size:37.120000pt;}
.fs3_c00018{font-size:49.920000pt;}
.fs8_c00018{font-size:52.480000pt;}
.fs9_c00018{font-size:53.333333pt;}
.fs6_c00018{font-size:57.600000pt;}
.fs0_c00018{font-size:64.000000pt;}
.fs4_c00018{font-size:65.969690pt;}
.fs2_c00018{font-size:69.120000pt;}
.fs1_c00018{font-size:84.480000pt;}
.y0_c00018{bottom:0.000000pt;}
.y2b_c00018{bottom:2.773467pt;}
.y2a_c00018{bottom:30.884000pt;}
.y1_c00018{bottom:48.000000pt;}
.y29_c00018{bottom:54.760000pt;}
.y28_c00018{bottom:70.120000pt;}
.y27_c00018{bottom:85.800000pt;}
.y26_c00018{bottom:109.480000pt;}
.y25_c00018{bottom:133.160000pt;}
.y24_c00018{bottom:151.720000pt;}
.y23_c00018{bottom:170.600000pt;}
.y22_c00018{bottom:189.160000pt;}
.y21_c00018{bottom:221.160000pt;}
.y20_c00018{bottom:239.720000pt;}
.y1f_c00018{bottom:258.600000pt;}
.y1e_c00018{bottom:277.160000pt;}
.y1d_c00018{bottom:295.720000pt;}
.y1c_c00018{bottom:314.600000pt;}
.y1b_c00018{bottom:346.600000pt;}
.y1a_c00018{bottom:365.160000pt;}
.y19_c00018{bottom:383.720000pt;}
.y18_c00018{bottom:402.600000pt;}
.y17_c00018{bottom:421.160000pt;}
.y16_c00018{bottom:453.160000pt;}
.y15_c00018{bottom:472.040000pt;}
.y14_c00018{bottom:490.600000pt;}
.y13_c00018{bottom:509.160000pt;}
.y12_c00018{bottom:528.040000pt;}
.y11_c00018{bottom:546.600000pt;}
.y10_c00018{bottom:565.160000pt;}
.yf_c00018{bottom:584.040000pt;}
.ye_c00018{bottom:602.600000pt;}
.yd_c00018{bottom:621.160000pt;}
.yc_c00018{bottom:653.160000pt;}
.yb_c00018{bottom:672.040000pt;}
.ya_c00018{bottom:690.600000pt;}
.y9_c00018{bottom:709.160000pt;}
.y8_c00018{bottom:741.160000pt;}
.y7_c00018{bottom:774.760640pt;}
.y6_c00018{bottom:812.848320pt;}
.y5_c00018{bottom:851.244480pt;}
.y4_c00018{bottom:889.323840pt;}
.y3_c00018{bottom:927.720000pt;}
.y2_c00018{bottom:964.520000pt;}
.h9_c00018{height:17.116000pt;}
.h8_c00018{height:28.992000pt;}
.h7_c00018{height:40.021875pt;}
.ha_c00018{height:41.173333pt;}
.h3_c00018{height:57.984000pt;}
.h5_c00018{height:59.768539pt;}
.h6_c00018{height:60.510720pt;}
.h4_c00018{height:76.538880pt;}
.h2_c00018{height:1067.880000pt;}
.h0_c00018{height:1122.520000pt;}
.h1_c00018{height:1122.666667pt;}
.w3_c00018{width:7.413333pt;}
.w2_c00018{width:767.960000pt;}
.w0_c00018{width:793.720000pt;}
.w1_c00018{width:794.000000pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:12.880000pt;}
.x2_c00018{left:100.480133pt;}
.xb_c00018{left:158.969067pt;}
.x4_c00018{left:238.124400pt;}
.xe_c00018{left:240.595733pt;}
.x9_c00018{left:288.946933pt;}
.x3_c00018{left:383.746800pt;}
.xd_c00018{left:406.385067pt;}
.x5_c00018{left:452.703067pt;}
.xc_c00018{left:462.433333pt;}
.x6_c00018{left:521.117467pt;}
.x7_c00018{left:525.422800pt;}
.x8_c00018{left:603.645467pt;}
.xa_c00018{left:626.871067pt;}
.xf_c00018{left:690.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_caf9acb399385cbe4163b0c4.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.134000;font-style:normal;font-weight:normal;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_25620c8e802c31355f1bfd7d.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.134000;font-style:normal;font-weight:normal;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_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_e2ead4643fcecd11ce914b4f.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:0.787000;font-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_c00019{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00019{vertical-align:-24.480000px;}
.v0_c00019{vertical-align:0.000000px;}
.v1_c00019{vertical-align:30.240000px;}
.ls3_c00019{letter-spacing:-0.179568px;}
.ls2_c00019{letter-spacing:0.000000px;}
.ls0_c00019{letter-spacing:0.132840px;}
.ls5_c00019{letter-spacing:0.144000px;}
.ls7_c00019{letter-spacing:0.273857px;}
.ls9_c00019{letter-spacing:0.531360px;}
.ls1_c00019{letter-spacing:0.532560px;}
.ls8_c00019{letter-spacing:0.690768px;}
.ls6_c00019{letter-spacing:0.712027px;}
.ls4_c00019{letter-spacing:0.717816px;}
.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;}
}
.ws1_c00019{word-spacing:-20.632021px;}
.ws4_c00019{word-spacing:-17.630284px;}
.ws5_c00019{word-spacing:-17.103888px;}
.ws2_c00019{word-spacing:-16.810792px;}
.ws0_c00019{word-spacing:-11.429712px;}
.ws3_c00019{word-spacing:-10.152000px;}
.ws6_c00019{word-spacing:0.000000px;}
._18_c00019{margin-left:-16.177800px;}
._17_c00019{margin-left:-10.821600px;}
._19_c00019{margin-left:-1.204992px;}
._f_c00019{width:1.335886px;}
._e_c00019{width:2.592000px;}
._a_c00019{width:3.744000px;}
._2_c00019{width:5.760000px;}
._d_c00019{width:7.200000px;}
._0_c00019{width:8.352000px;}
._c_c00019{width:10.224000px;}
._3_c00019{width:12.096000px;}
._b_c00019{width:13.680000px;}
._10_c00019{width:15.552000px;}
._9_c00019{width:17.280000px;}
._1_c00019{width:18.864000px;}
._11_c00019{width:22.464000px;}
._15_c00019{width:24.048000px;}
._5_c00019{width:25.889901px;}
._4_c00019{width:27.534099px;}
._16_c00019{width:29.018417px;}
._12_c00019{width:30.205872px;}
._13_c00019{width:31.308769px;}
._7_c00019{width:33.408000px;}
._6_c00019{width:34.436178px;}
._8_c00019{width:52.619074px;}
._14_c00019{width:53.737852px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs5_c00019{font-size:36.000000px;}
.fs2_c00019{font-size:41.760000px;}
.fs8_c00019{font-size:47.520000px;}
.fs3_c00019{font-size:57.888403px;}
.fs6_c00019{font-size:59.040000px;}
.fs9_c00019{font-size:60.000000px;}
.fs7_c00019{font-size:60.857039px;}
.fs4_c00019{font-size:64.800000px;}
.fs0_c00019{font-size:72.000000px;}
.fs1_c00019{font-size:74.215901px;}
.y0_c00019{bottom:0.000000px;}
.y31_c00019{bottom:3.120150px;}
.y30_c00019{bottom:34.744500px;}
.y1_c00019{bottom:54.000000px;}
.y2f_c00019{bottom:55.485000px;}
.y2e_c00019{bottom:61.605000px;}
.y2d_c00019{bottom:88.245000px;}
.y2c_c00019{bottom:127.845000px;}
.y2b_c00019{bottom:148.725000px;}
.y2a_c00019{bottom:169.605000px;}
.y29_c00019{bottom:190.845000px;}
.y28_c00019{bottom:226.845000px;}
.y27_c00019{bottom:247.725000px;}
.y26_c00019{bottom:268.965000px;}
.y25_c00019{bottom:289.845000px;}
.y24_c00019{bottom:310.725000px;}
.y23_c00019{bottom:331.965000px;}
.y22_c00019{bottom:352.845000px;}
.y21_c00019{bottom:388.845000px;}
.y20_c00019{bottom:409.725000px;}
.y1f_c00019{bottom:430.965000px;}
.y1e_c00019{bottom:451.845000px;}
.y1d_c00019{bottom:472.725000px;}
.y1c_c00019{bottom:493.965000px;}
.y1b_c00019{bottom:514.845000px;}
.y1a_c00019{bottom:535.725000px;}
.y19_c00019{bottom:556.965000px;}
.y18_c00019{bottom:592.965000px;}
.y17_c00019{bottom:613.845000px;}
.y16_c00019{bottom:634.725000px;}
.y15_c00019{bottom:655.965000px;}
.y14_c00019{bottom:676.845000px;}
.y13_c00019{bottom:697.725000px;}
.y12_c00019{bottom:718.965000px;}
.y11_c00019{bottom:739.845000px;}
.y10_c00019{bottom:761.085000px;}
.yf_c00019{bottom:781.965000px;}
.ye_c00019{bottom:802.845000px;}
.yd_c00019{bottom:838.845000px;}
.yc_c00019{bottom:860.085000px;}
.yb_c00019{bottom:880.965000px;}
.ya_c00019{bottom:901.845000px;}
.y9_c00019{bottom:923.085000px;}
.y8_c00019{bottom:943.965000px;}
.y7_c00019{bottom:964.845000px;}
.y6_c00019{bottom:986.085000px;}
.y5_c00019{bottom:1006.965000px;}
.y4_c00019{bottom:1027.845000px;}
.y3_c00019{bottom:1063.845000px;}
.y2_c00019{bottom:1085.085000px;}
.ha_c00019{height:19.255500px;}
.h7_c00019{height:32.616000px;}
.h6_c00019{height:45.024609px;}
.hb_c00019{height:46.320000px;}
.h9_c00019{height:53.490240px;}
.h8_c00019{height:55.136477px;}
.h3_c00019{height:65.232000px;}
.h4_c00019{height:67.239607px;}
.h5_c00019{height:68.074560px;}
.h2_c00019{height:1201.365000px;}
.h0_c00019{height:1262.835000px;}
.h1_c00019{height:1263.000000px;}
.w3_c00019{width:8.340000px;}
.w2_c00019{width:863.955000px;}
.w0_c00019{width:892.935000px;}
.w1_c00019{width:893.250000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:14.490000px;}
.x2_c00019{left:113.040150px;}
.xd_c00019{left:123.048000px;}
.x25_c00019{left:127.217700px;}
.x26_c00019{left:151.381650px;}
.x3_c00019{left:167.715150px;}
.x7_c00019{left:183.426600px;}
.x18_c00019{left:189.016800px;}
.x23_c00019{left:190.230450px;}
.x9_c00019{left:218.068800px;}
.x1c_c00019{left:223.902150px;}
.xe_c00019{left:239.202000px;}
.xa_c00019{left:251.982750px;}
.xb_c00019{left:304.002000px;}
.xf_c00019{left:316.460100px;}
.x1f_c00019{left:330.184650px;}
.x20_c00019{left:336.178350px;}
.x4_c00019{left:341.125800px;}
.x12_c00019{left:364.740600px;}
.x21_c00019{left:402.150450px;}
.x1a_c00019{left:419.789400px;}
.x13_c00019{left:432.412050px;}
.x17_c00019{left:442.513500px;}
.x15_c00019{left:448.512750px;}
.x8_c00019{left:457.200450px;}
.x22_c00019{left:482.252250px;}
.x19_c00019{left:506.684250px;}
.x24_c00019{left:527.988600px;}
.x5_c00019{left:556.927350px;}
.x1b_c00019{left:577.040100px;}
.x16_c00019{left:588.053100px;}
.x6_c00019{left:637.962600px;}
.x10_c00019{left:642.045750px;}
.x11_c00019{left:652.163100px;}
.x1d_c00019{left:666.724800px;}
.x14_c00019{left:722.062500px;}
.x1e_c00019{left:739.410300px;}
.xc_c00019{left:745.386150px;}
.x27_c00019{left:776.595000px;}
@media print{
.v2_c00019{vertical-align:-21.760000pt;}
.v0_c00019{vertical-align:0.000000pt;}
.v1_c00019{vertical-align:26.880000pt;}
.ls3_c00019{letter-spacing:-0.159616pt;}
.ls2_c00019{letter-spacing:0.000000pt;}
.ls0_c00019{letter-spacing:0.118080pt;}
.ls5_c00019{letter-spacing:0.128000pt;}
.ls7_c00019{letter-spacing:0.243428pt;}
.ls9_c00019{letter-spacing:0.472320pt;}
.ls1_c00019{letter-spacing:0.473387pt;}
.ls8_c00019{letter-spacing:0.614016pt;}
.ls6_c00019{letter-spacing:0.632913pt;}
.ls4_c00019{letter-spacing:0.638059pt;}
.ws1_c00019{word-spacing:-18.339574pt;}
.ws4_c00019{word-spacing:-15.671364pt;}
.ws5_c00019{word-spacing:-15.203456pt;}
.ws2_c00019{word-spacing:-14.942926pt;}
.ws0_c00019{word-spacing:-10.159744pt;}
.ws3_c00019{word-spacing:-9.024000pt;}
.ws6_c00019{word-spacing:0.000000pt;}
._18_c00019{margin-left:-14.380267pt;}
._17_c00019{margin-left:-9.619200pt;}
._19_c00019{margin-left:-1.071104pt;}
._f_c00019{width:1.187454pt;}
._e_c00019{width:2.304000pt;}
._a_c00019{width:3.328000pt;}
._2_c00019{width:5.120000pt;}
._d_c00019{width:6.400000pt;}
._0_c00019{width:7.424000pt;}
._c_c00019{width:9.088000pt;}
._3_c00019{width:10.752000pt;}
._b_c00019{width:12.160000pt;}
._10_c00019{width:13.824000pt;}
._9_c00019{width:15.360000pt;}
._1_c00019{width:16.768000pt;}
._11_c00019{width:19.968000pt;}
._15_c00019{width:21.376000pt;}
._5_c00019{width:23.013245pt;}
._4_c00019{width:24.474755pt;}
._16_c00019{width:25.794149pt;}
._12_c00019{width:26.849664pt;}
._13_c00019{width:27.830017pt;}
._7_c00019{width:29.696000pt;}
._6_c00019{width:30.609936pt;}
._8_c00019{width:46.772510pt;}
._14_c00019{width:47.766980pt;}
.fs5_c00019{font-size:32.000000pt;}
.fs2_c00019{font-size:37.120000pt;}
.fs8_c00019{font-size:42.240000pt;}
.fs3_c00019{font-size:51.456358pt;}
.fs6_c00019{font-size:52.480000pt;}
.fs9_c00019{font-size:53.333333pt;}
.fs7_c00019{font-size:54.095146pt;}
.fs4_c00019{font-size:57.600000pt;}
.fs0_c00019{font-size:64.000000pt;}
.fs1_c00019{font-size:65.969690pt;}
.y0_c00019{bottom:0.000000pt;}
.y31_c00019{bottom:2.773467pt;}
.y30_c00019{bottom:30.884000pt;}
.y1_c00019{bottom:48.000000pt;}
.y2f_c00019{bottom:49.320000pt;}
.y2e_c00019{bottom:54.760000pt;}
.y2d_c00019{bottom:78.440000pt;}
.y2c_c00019{bottom:113.640000pt;}
.y2b_c00019{bottom:132.200000pt;}
.y2a_c00019{bottom:150.760000pt;}
.y29_c00019{bottom:169.640000pt;}
.y28_c00019{bottom:201.640000pt;}
.y27_c00019{bottom:220.200000pt;}
.y26_c00019{bottom:239.080000pt;}
.y25_c00019{bottom:257.640000pt;}
.y24_c00019{bottom:276.200000pt;}
.y23_c00019{bottom:295.080000pt;}
.y22_c00019{bottom:313.640000pt;}
.y21_c00019{bottom:345.640000pt;}
.y20_c00019{bottom:364.200000pt;}
.y1f_c00019{bottom:383.080000pt;}
.y1e_c00019{bottom:401.640000pt;}
.y1d_c00019{bottom:420.200000pt;}
.y1c_c00019{bottom:439.080000pt;}
.y1b_c00019{bottom:457.640000pt;}
.y1a_c00019{bottom:476.200000pt;}
.y19_c00019{bottom:495.080000pt;}
.y18_c00019{bottom:527.080000pt;}
.y17_c00019{bottom:545.640000pt;}
.y16_c00019{bottom:564.200000pt;}
.y15_c00019{bottom:583.080000pt;}
.y14_c00019{bottom:601.640000pt;}
.y13_c00019{bottom:620.200000pt;}
.y12_c00019{bottom:639.080000pt;}
.y11_c00019{bottom:657.640000pt;}
.y10_c00019{bottom:676.520000pt;}
.yf_c00019{bottom:695.080000pt;}
.ye_c00019{bottom:713.640000pt;}
.yd_c00019{bottom:745.640000pt;}
.yc_c00019{bottom:764.520000pt;}
.yb_c00019{bottom:783.080000pt;}
.ya_c00019{bottom:801.640000pt;}
.y9_c00019{bottom:820.520000pt;}
.y8_c00019{bottom:839.080000pt;}
.y7_c00019{bottom:857.640000pt;}
.y6_c00019{bottom:876.520000pt;}
.y5_c00019{bottom:895.080000pt;}
.y4_c00019{bottom:913.640000pt;}
.y3_c00019{bottom:945.640000pt;}
.y2_c00019{bottom:964.520000pt;}
.ha_c00019{height:17.116000pt;}
.h7_c00019{height:28.992000pt;}
.h6_c00019{height:40.021875pt;}
.hb_c00019{height:41.173333pt;}
.h9_c00019{height:47.546880pt;}
.h8_c00019{height:49.010202pt;}
.h3_c00019{height:57.984000pt;}
.h4_c00019{height:59.768539pt;}
.h5_c00019{height:60.510720pt;}
.h2_c00019{height:1067.880000pt;}
.h0_c00019{height:1122.520000pt;}
.h1_c00019{height:1122.666667pt;}
.w3_c00019{width:7.413333pt;}
.w2_c00019{width:767.960000pt;}
.w0_c00019{width:793.720000pt;}
.w1_c00019{width:794.000000pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:12.880000pt;}
.x2_c00019{left:100.480133pt;}
.xd_c00019{left:109.376000pt;}
.x25_c00019{left:113.082400pt;}
.x26_c00019{left:134.561467pt;}
.x3_c00019{left:149.080133pt;}
.x7_c00019{left:163.045867pt;}
.x18_c00019{left:168.014933pt;}
.x23_c00019{left:169.093733pt;}
.x9_c00019{left:193.838933pt;}
.x1c_c00019{left:199.024133pt;}
.xe_c00019{left:212.624000pt;}
.xa_c00019{left:223.984667pt;}
.xb_c00019{left:270.224000pt;}
.xf_c00019{left:281.297867pt;}
.x1f_c00019{left:293.497467pt;}
.x20_c00019{left:298.825200pt;}
.x4_c00019{left:303.222933pt;}
.x12_c00019{left:324.213867pt;}
.x21_c00019{left:357.467067pt;}
.x1a_c00019{left:373.146133pt;}
.x13_c00019{left:384.366267pt;}
.x17_c00019{left:393.345333pt;}
.x15_c00019{left:398.678000pt;}
.x8_c00019{left:406.400400pt;}
.x22_c00019{left:428.668667pt;}
.x19_c00019{left:450.386000pt;}
.x24_c00019{left:469.323200pt;}
.x5_c00019{left:495.046533pt;}
.x1b_c00019{left:512.924533pt;}
.x16_c00019{left:522.713867pt;}
.x6_c00019{left:567.077867pt;}
.x10_c00019{left:570.707333pt;}
.x11_c00019{left:579.700533pt;}
.x1d_c00019{left:592.644267pt;}
.x14_c00019{left:641.833333pt;}
.x1e_c00019{left:657.253600pt;}
.xc_c00019{left:662.565467pt;}
.x27_c00019{left:690.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0edfa0e9be1434b6f871b3e0.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.134000;font-style:normal;font-weight:normal;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_4bfd8c5bb1590a2542706dac.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.134000;font-style:normal;font-weight:normal;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_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_f491321d2d1992a38da0f9d0.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:0.787000;font-style: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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m1_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);}
.v2_c00020{vertical-align:-24.480000px;}
.v0_c00020{vertical-align:0.000000px;}
.v1_c00020{vertical-align:30.240000px;}
.ls1_c00020{letter-spacing:-0.179568px;}
.ls0_c00020{letter-spacing:0.000000px;}
.ls2_c00020{letter-spacing:0.144000px;}
.ls3_c00020{letter-spacing:0.265680px;}
.ls4_c00020{letter-spacing:0.531360px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:-20.016000px;}
.ws1_c00020{word-spacing:-11.429712px;}
.ws2_c00020{word-spacing:-10.152000px;}
.ws3_c00020{word-spacing:0.000000px;}
._19_c00020{margin-left:-16.177800px;}
._18_c00020{margin-left:-10.821600px;}
._1a_c00020{margin-left:-1.129680px;}
._e_c00020{width:1.296000px;}
._b_c00020{width:2.304000px;}
._1_c00020{width:4.050617px;}
._0_c00020{width:5.120897px;}
._10_c00020{width:6.264000px;}
._15_c00020{width:7.704000px;}
._14_c00020{width:10.224000px;}
._3_c00020{width:11.232000px;}
._4_c00020{width:12.269042px;}
._f_c00020{width:13.592875px;}
._12_c00020{width:14.616000px;}
._d_c00020{width:17.280000px;}
._2_c00020{width:18.720000px;}
._16_c00020{width:21.141745px;}
._a_c00020{width:22.261127px;}
._9_c00020{width:23.674873px;}
._17_c00020{width:24.788111px;}
._11_c00020{width:27.432000px;}
._8_c00020{width:32.904000px;}
._7_c00020{width:33.916667px;}
._c_c00020{width:35.280000px;}
._13_c00020{width:46.013859px;}
._6_c00020{width:54.144000px;}
._5_c00020{width:55.810358px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs4_c00020{font-size:36.000000px;}
.fs2_c00020{font-size:41.760000px;}
.fs5_c00020{font-size:59.040000px;}
.fs6_c00020{font-size:60.000000px;}
.fs3_c00020{font-size:64.800000px;}
.fs1_c00020{font-size:72.000000px;}
.fs0_c00020{font-size:74.215901px;}
.y0_c00020{bottom:0.000000px;}
.y31_c00020{bottom:3.120150px;}
.y30_c00020{bottom:34.744500px;}
.y1_c00020{bottom:54.000000px;}
.y2f_c00020{bottom:61.605000px;}
.y2e_c00020{bottom:88.245000px;}
.y2d_c00020{bottom:121.725000px;}
.y2c_c00020{bottom:142.605000px;}
.y2b_c00020{bottom:163.845000px;}
.y2a_c00020{bottom:199.845000px;}
.y29_c00020{bottom:220.725000px;}
.y28_c00020{bottom:241.605000px;}
.y27_c00020{bottom:262.845000px;}
.y26_c00020{bottom:283.725000px;}
.y25_c00020{bottom:304.965000px;}
.y24_c00020{bottom:325.845000px;}
.y23_c00020{bottom:346.725000px;}
.y22_c00020{bottom:367.965000px;}
.y21_c00020{bottom:388.845000px;}
.y20_c00020{bottom:424.845000px;}
.y1f_c00020{bottom:445.725000px;}
.y1e_c00020{bottom:466.965000px;}
.y1d_c00020{bottom:487.845000px;}
.y1c_c00020{bottom:508.725000px;}
.y1b_c00020{bottom:529.965000px;}
.y1a_c00020{bottom:550.845000px;}
.y19_c00020{bottom:571.725000px;}
.y18_c00020{bottom:592.965000px;}
.y17_c00020{bottom:613.845000px;}
.y16_c00020{bottom:634.725000px;}
.y15_c00020{bottom:670.725000px;}
.y14_c00020{bottom:691.965000px;}
.y13_c00020{bottom:712.845000px;}
.y12_c00020{bottom:734.085000px;}
.y11_c00020{bottom:754.965000px;}
.y10_c00020{bottom:775.845000px;}
.yf_c00020{bottom:797.085000px;}
.ye_c00020{bottom:817.965000px;}
.yd_c00020{bottom:853.965000px;}
.yc_c00020{bottom:874.845000px;}
.yb_c00020{bottom:896.085000px;}
.ya_c00020{bottom:916.965000px;}
.y9_c00020{bottom:937.845000px;}
.y8_c00020{bottom:959.085000px;}
.y7_c00020{bottom:979.965000px;}
.y6_c00020{bottom:1000.845000px;}
.y5_c00020{bottom:1022.085000px;}
.y4_c00020{bottom:1042.965000px;}
.y3_c00020{bottom:1063.845000px;}
.y2_c00020{bottom:1085.085000px;}
.h8_c00020{height:19.255500px;}
.h7_c00020{height:32.616000px;}
.h6_c00020{height:45.024609px;}
.h9_c00020{height:46.320000px;}
.h4_c00020{height:65.232000px;}
.h3_c00020{height:67.239607px;}
.h5_c00020{height:68.074560px;}
.h2_c00020{height:1201.365000px;}
.h0_c00020{height:1262.835000px;}
.h1_c00020{height:1263.000000px;}
.w3_c00020{width:8.340000px;}
.w2_c00020{width:863.955000px;}
.w0_c00020{width:892.935000px;}
.w1_c00020{width:893.250000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:14.490000px;}
.x2_c00020{left:113.040150px;}
.x1a_c00020{left:196.072650px;}
.x10_c00020{left:199.096800px;}
.x15_c00020{left:225.575700px;}
.x3_c00020{left:251.559750px;}
.xd_c00020{left:252.605700px;}
.x1d_c00020{left:264.525450px;}
.x16_c00020{left:275.136450px;}
.x1c_c00020{left:283.543200px;}
.x8_c00020{left:285.824700px;}
.x9_c00020{left:325.325250px;}
.x6_c00020{left:354.553350px;}
.x13_c00020{left:449.976900px;}
.x19_c00020{left:462.242850px;}
.x4_c00020{left:466.895850px;}
.x14_c00020{left:498.180900px;}
.xb_c00020{left:500.626800px;}
.x5_c00020{left:521.793150px;}
.xa_c00020{left:549.597600px;}
.x7_c00020{left:557.724300px;}
.x11_c00020{left:562.726350px;}
.x18_c00020{left:575.412900px;}
.xe_c00020{left:643.818900px;}
.x1b_c00020{left:656.080050px;}
.xf_c00020{left:677.824950px;}
.xc_c00020{left:729.384150px;}
.x12_c00020{left:733.227600px;}
.x17_c00020{left:750.390000px;}
.x1e_c00020{left:776.595000px;}
@media print{
.v2_c00020{vertical-align:-21.760000pt;}
.v0_c00020{vertical-align:0.000000pt;}
.v1_c00020{vertical-align:26.880000pt;}
.ls1_c00020{letter-spacing:-0.159616pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ls2_c00020{letter-spacing:0.128000pt;}
.ls3_c00020{letter-spacing:0.236160pt;}
.ls4_c00020{letter-spacing:0.472320pt;}
.ws0_c00020{word-spacing:-17.792000pt;}
.ws1_c00020{word-spacing:-10.159744pt;}
.ws2_c00020{word-spacing:-9.024000pt;}
.ws3_c00020{word-spacing:0.000000pt;}
._19_c00020{margin-left:-14.380267pt;}
._18_c00020{margin-left:-9.619200pt;}
._1a_c00020{margin-left:-1.004160pt;}
._e_c00020{width:1.152000pt;}
._b_c00020{width:2.048000pt;}
._1_c00020{width:3.600548pt;}
._0_c00020{width:4.551909pt;}
._10_c00020{width:5.568000pt;}
._15_c00020{width:6.848000pt;}
._14_c00020{width:9.088000pt;}
._3_c00020{width:9.984000pt;}
._4_c00020{width:10.905815pt;}
._f_c00020{width:12.082555pt;}
._12_c00020{width:12.992000pt;}
._d_c00020{width:15.360000pt;}
._2_c00020{width:16.640000pt;}
._16_c00020{width:18.792662pt;}
._a_c00020{width:19.787669pt;}
._9_c00020{width:21.044331pt;}
._17_c00020{width:22.033876pt;}
._11_c00020{width:24.384000pt;}
._8_c00020{width:29.248000pt;}
._7_c00020{width:30.148148pt;}
._c_c00020{width:31.360000pt;}
._13_c00020{width:40.901208pt;}
._6_c00020{width:48.128000pt;}
._5_c00020{width:49.609207pt;}
.fs4_c00020{font-size:32.000000pt;}
.fs2_c00020{font-size:37.120000pt;}
.fs5_c00020{font-size:52.480000pt;}
.fs6_c00020{font-size:53.333333pt;}
.fs3_c00020{font-size:57.600000pt;}
.fs1_c00020{font-size:64.000000pt;}
.fs0_c00020{font-size:65.969690pt;}
.y0_c00020{bottom:0.000000pt;}
.y31_c00020{bottom:2.773467pt;}
.y30_c00020{bottom:30.884000pt;}
.y1_c00020{bottom:48.000000pt;}
.y2f_c00020{bottom:54.760000pt;}
.y2e_c00020{bottom:78.440000pt;}
.y2d_c00020{bottom:108.200000pt;}
.y2c_c00020{bottom:126.760000pt;}
.y2b_c00020{bottom:145.640000pt;}
.y2a_c00020{bottom:177.640000pt;}
.y29_c00020{bottom:196.200000pt;}
.y28_c00020{bottom:214.760000pt;}
.y27_c00020{bottom:233.640000pt;}
.y26_c00020{bottom:252.200000pt;}
.y25_c00020{bottom:271.080000pt;}
.y24_c00020{bottom:289.640000pt;}
.y23_c00020{bottom:308.200000pt;}
.y22_c00020{bottom:327.080000pt;}
.y21_c00020{bottom:345.640000pt;}
.y20_c00020{bottom:377.640000pt;}
.y1f_c00020{bottom:396.200000pt;}
.y1e_c00020{bottom:415.080000pt;}
.y1d_c00020{bottom:433.640000pt;}
.y1c_c00020{bottom:452.200000pt;}
.y1b_c00020{bottom:471.080000pt;}
.y1a_c00020{bottom:489.640000pt;}
.y19_c00020{bottom:508.200000pt;}
.y18_c00020{bottom:527.080000pt;}
.y17_c00020{bottom:545.640000pt;}
.y16_c00020{bottom:564.200000pt;}
.y15_c00020{bottom:596.200000pt;}
.y14_c00020{bottom:615.080000pt;}
.y13_c00020{bottom:633.640000pt;}
.y12_c00020{bottom:652.520000pt;}
.y11_c00020{bottom:671.080000pt;}
.y10_c00020{bottom:689.640000pt;}
.yf_c00020{bottom:708.520000pt;}
.ye_c00020{bottom:727.080000pt;}
.yd_c00020{bottom:759.080000pt;}
.yc_c00020{bottom:777.640000pt;}
.yb_c00020{bottom:796.520000pt;}
.ya_c00020{bottom:815.080000pt;}
.y9_c00020{bottom:833.640000pt;}
.y8_c00020{bottom:852.520000pt;}
.y7_c00020{bottom:871.080000pt;}
.y6_c00020{bottom:889.640000pt;}
.y5_c00020{bottom:908.520000pt;}
.y4_c00020{bottom:927.080000pt;}
.y3_c00020{bottom:945.640000pt;}
.y2_c00020{bottom:964.520000pt;}
.h8_c00020{height:17.116000pt;}
.h7_c00020{height:28.992000pt;}
.h6_c00020{height:40.021875pt;}
.h9_c00020{height:41.173333pt;}
.h4_c00020{height:57.984000pt;}
.h3_c00020{height:59.768539pt;}
.h5_c00020{height:60.510720pt;}
.h2_c00020{height:1067.880000pt;}
.h0_c00020{height:1122.520000pt;}
.h1_c00020{height:1122.666667pt;}
.w3_c00020{width:7.413333pt;}
.w2_c00020{width:767.960000pt;}
.w0_c00020{width:793.720000pt;}
.w1_c00020{width:794.000000pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:12.880000pt;}
.x2_c00020{left:100.480133pt;}
.x1a_c00020{left:174.286800pt;}
.x10_c00020{left:176.974933pt;}
.x15_c00020{left:200.511733pt;}
.x3_c00020{left:223.608667pt;}
.xd_c00020{left:224.538400pt;}
.x1d_c00020{left:235.133733pt;}
.x16_c00020{left:244.565733pt;}
.x1c_c00020{left:252.038400pt;}
.x8_c00020{left:254.066400pt;}
.x9_c00020{left:289.178000pt;}
.x6_c00020{left:315.158533pt;}
.x13_c00020{left:399.979467pt;}
.x19_c00020{left:410.882533pt;}
.x4_c00020{left:415.018533pt;}
.x14_c00020{left:442.827467pt;}
.xb_c00020{left:445.001600pt;}
.x5_c00020{left:463.816133pt;}
.xa_c00020{left:488.531200pt;}
.x7_c00020{left:495.754933pt;}
.x11_c00020{left:500.201200pt;}
.x18_c00020{left:511.478133pt;}
.xe_c00020{left:572.283467pt;}
.x1b_c00020{left:583.182267pt;}
.xf_c00020{left:602.511067pt;}
.xc_c00020{left:648.341467pt;}
.x12_c00020{left:651.757867pt;}
.x17_c00020{left:667.013333pt;}
.x1e_c00020{left:690.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1034aefaf9a9c9f64481f90c.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_d2d5acf2e9c2250c82ab841f.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_1cf7ce01e9b89690125415cf.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:0.787000;font-style: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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m1_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);}
.v2_c00021{vertical-align:-24.480000px;}
.v0_c00021{vertical-align:0.000000px;}
.v1_c00021{vertical-align:30.240000px;}
.ls1_c00021{letter-spacing:-0.179568px;}
.ls0_c00021{letter-spacing:0.000000px;}
.ls2_c00021{letter-spacing:0.144000px;}
.ls3_c00021{letter-spacing:0.265680px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:-20.016000px;}
.ws1_c00021{word-spacing:-11.429712px;}
.ws2_c00021{word-spacing:-10.152000px;}
.ws3_c00021{word-spacing:0.000000px;}
._19_c00021{margin-left:-16.177800px;}
._18_c00021{margin-left:-10.821600px;}
._9_c00021{width:1.728000px;}
._8_c00021{width:2.880000px;}
._e_c00021{width:4.608000px;}
._10_c00021{width:5.688000px;}
._4_c00021{width:6.768000px;}
._3_c00021{width:7.776000px;}
._f_c00021{width:9.432000px;}
._11_c00021{width:10.656000px;}
._14_c00021{width:12.524861px;}
._c_c00021{width:13.896000px;}
._13_c00021{width:15.120000px;}
._5_c00021{width:17.136000px;}
._a_c00021{width:18.864000px;}
._2_c00021{width:21.024000px;}
._12_c00021{width:22.104000px;}
._b_c00021{width:23.688000px;}
._1_c00021{width:25.471196px;}
._0_c00021{width:27.088804px;}
._6_c00021{width:28.173588px;}
._17_c00021{width:29.736000px;}
._15_c00021{width:31.248000px;}
._16_c00021{width:33.171402px;}
._d_c00021{width:40.608000px;}
._7_c00021{width:67.104000px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs4_c00021{font-size:36.000000px;}
.fs2_c00021{font-size:41.760000px;}
.fs5_c00021{font-size:59.040000px;}
.fs6_c00021{font-size:60.000000px;}
.fs3_c00021{font-size:64.800000px;}
.fs1_c00021{font-size:72.000000px;}
.fs0_c00021{font-size:74.215901px;}
.y0_c00021{bottom:0.000000px;}
.y31_c00021{bottom:3.120150px;}
.y30_c00021{bottom:34.744500px;}
.y1_c00021{bottom:54.000000px;}
.y2f_c00021{bottom:61.605000px;}
.y2e_c00021{bottom:88.245000px;}
.y2d_c00021{bottom:121.725000px;}
.y2c_c00021{bottom:142.605000px;}
.y2b_c00021{bottom:163.845000px;}
.y2a_c00021{bottom:184.725000px;}
.y29_c00021{bottom:205.605000px;}
.y28_c00021{bottom:226.845000px;}
.y27_c00021{bottom:247.725000px;}
.y26_c00021{bottom:283.725000px;}
.y25_c00021{bottom:304.965000px;}
.y24_c00021{bottom:325.845000px;}
.y23_c00021{bottom:346.725000px;}
.y22_c00021{bottom:367.965000px;}
.y21_c00021{bottom:388.845000px;}
.y20_c00021{bottom:409.725000px;}
.y1f_c00021{bottom:430.965000px;}
.y1e_c00021{bottom:451.845000px;}
.y1d_c00021{bottom:487.845000px;}
.y1c_c00021{bottom:508.725000px;}
.y1b_c00021{bottom:529.965000px;}
.y1a_c00021{bottom:550.845000px;}
.y19_c00021{bottom:571.725000px;}
.y18_c00021{bottom:592.965000px;}
.y17_c00021{bottom:613.845000px;}
.y16_c00021{bottom:634.725000px;}
.y15_c00021{bottom:655.965000px;}
.y14_c00021{bottom:676.845000px;}
.y13_c00021{bottom:697.725000px;}
.y12_c00021{bottom:718.965000px;}
.y11_c00021{bottom:739.845000px;}
.y10_c00021{bottom:775.845000px;}
.yf_c00021{bottom:797.085000px;}
.ye_c00021{bottom:817.965000px;}
.yd_c00021{bottom:838.845000px;}
.yc_c00021{bottom:860.085000px;}
.yb_c00021{bottom:880.965000px;}
.ya_c00021{bottom:916.965000px;}
.y9_c00021{bottom:937.845000px;}
.y8_c00021{bottom:959.085000px;}
.y7_c00021{bottom:979.965000px;}
.y6_c00021{bottom:1000.845000px;}
.y5_c00021{bottom:1022.085000px;}
.y4_c00021{bottom:1042.965000px;}
.y3_c00021{bottom:1063.845000px;}
.y2_c00021{bottom:1085.085000px;}
.h8_c00021{height:19.255500px;}
.h7_c00021{height:32.616000px;}
.h6_c00021{height:45.024609px;}
.h9_c00021{height:46.320000px;}
.h4_c00021{height:65.232000px;}
.h3_c00021{height:67.239607px;}
.h5_c00021{height:68.074560px;}
.h2_c00021{height:1201.365000px;}
.h0_c00021{height:1262.835000px;}
.h1_c00021{height:1263.000000px;}
.w3_c00021{width:8.340000px;}
.w2_c00021{width:863.955000px;}
.w0_c00021{width:892.935000px;}
.w1_c00021{width:893.250000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:14.490000px;}
.x2_c00021{left:113.040150px;}
.x19_c00021{left:182.051550px;}
.x9_c00021{left:192.059250px;}
.x4_c00021{left:207.633150px;}
.x3_c00021{left:210.599850px;}
.x16_c00021{left:220.048050px;}
.x1c_c00021{left:239.767800px;}
.x10_c00021{left:251.200950px;}
.x5_c00021{left:259.652400px;}
.x15_c00021{left:265.548300px;}
.x13_c00021{left:279.872250px;}
.xc_c00021{left:281.153700px;}
.x11_c00021{left:300.232200px;}
.x17_c00021{left:316.058700px;}
.x1d_c00021{left:335.778450px;}
.xa_c00021{left:368.096250px;}
.xe_c00021{left:384.823200px;}
.x14_c00021{left:454.652400px;}
.x1a_c00021{left:456.803100px;}
.x12_c00021{left:464.500050px;}
.xf_c00021{left:500.831250px;}
.xd_c00021{left:516.253800px;}
.x18_c00021{left:521.920500px;}
.x6_c00021{left:532.810200px;}
.x7_c00021{left:542.818050px;}
.x8_c00021{left:626.804850px;}
.xb_c00021{left:653.139750px;}
.x1b_c00021{left:750.390000px;}
.x1e_c00021{left:776.595000px;}
@media print{
.v2_c00021{vertical-align:-21.760000pt;}
.v0_c00021{vertical-align:0.000000pt;}
.v1_c00021{vertical-align:26.880000pt;}
.ls1_c00021{letter-spacing:-0.159616pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ls2_c00021{letter-spacing:0.128000pt;}
.ls3_c00021{letter-spacing:0.236160pt;}
.ws0_c00021{word-spacing:-17.792000pt;}
.ws1_c00021{word-spacing:-10.159744pt;}
.ws2_c00021{word-spacing:-9.024000pt;}
.ws3_c00021{word-spacing:0.000000pt;}
._19_c00021{margin-left:-14.380267pt;}
._18_c00021{margin-left:-9.619200pt;}
._9_c00021{width:1.536000pt;}
._8_c00021{width:2.560000pt;}
._e_c00021{width:4.096000pt;}
._10_c00021{width:5.056000pt;}
._4_c00021{width:6.016000pt;}
._3_c00021{width:6.912000pt;}
._f_c00021{width:8.384000pt;}
._11_c00021{width:9.472000pt;}
._14_c00021{width:11.133210pt;}
._c_c00021{width:12.352000pt;}
._13_c00021{width:13.440000pt;}
._5_c00021{width:15.232000pt;}
._a_c00021{width:16.768000pt;}
._2_c00021{width:18.688000pt;}
._12_c00021{width:19.648000pt;}
._b_c00021{width:21.056000pt;}
._1_c00021{width:22.641063pt;}
._0_c00021{width:24.078937pt;}
._6_c00021{width:25.043189pt;}
._17_c00021{width:26.432000pt;}
._15_c00021{width:27.776000pt;}
._16_c00021{width:29.485691pt;}
._d_c00021{width:36.096000pt;}
._7_c00021{width:59.648000pt;}
.fs4_c00021{font-size:32.000000pt;}
.fs2_c00021{font-size:37.120000pt;}
.fs5_c00021{font-size:52.480000pt;}
.fs6_c00021{font-size:53.333333pt;}
.fs3_c00021{font-size:57.600000pt;}
.fs1_c00021{font-size:64.000000pt;}
.fs0_c00021{font-size:65.969690pt;}
.y0_c00021{bottom:0.000000pt;}
.y31_c00021{bottom:2.773467pt;}
.y30_c00021{bottom:30.884000pt;}
.y1_c00021{bottom:48.000000pt;}
.y2f_c00021{bottom:54.760000pt;}
.y2e_c00021{bottom:78.440000pt;}
.y2d_c00021{bottom:108.200000pt;}
.y2c_c00021{bottom:126.760000pt;}
.y2b_c00021{bottom:145.640000pt;}
.y2a_c00021{bottom:164.200000pt;}
.y29_c00021{bottom:182.760000pt;}
.y28_c00021{bottom:201.640000pt;}
.y27_c00021{bottom:220.200000pt;}
.y26_c00021{bottom:252.200000pt;}
.y25_c00021{bottom:271.080000pt;}
.y24_c00021{bottom:289.640000pt;}
.y23_c00021{bottom:308.200000pt;}
.y22_c00021{bottom:327.080000pt;}
.y21_c00021{bottom:345.640000pt;}
.y20_c00021{bottom:364.200000pt;}
.y1f_c00021{bottom:383.080000pt;}
.y1e_c00021{bottom:401.640000pt;}
.y1d_c00021{bottom:433.640000pt;}
.y1c_c00021{bottom:452.200000pt;}
.y1b_c00021{bottom:471.080000pt;}
.y1a_c00021{bottom:489.640000pt;}
.y19_c00021{bottom:508.200000pt;}
.y18_c00021{bottom:527.080000pt;}
.y17_c00021{bottom:545.640000pt;}
.y16_c00021{bottom:564.200000pt;}
.y15_c00021{bottom:583.080000pt;}
.y14_c00021{bottom:601.640000pt;}
.y13_c00021{bottom:620.200000pt;}
.y12_c00021{bottom:639.080000pt;}
.y11_c00021{bottom:657.640000pt;}
.y10_c00021{bottom:689.640000pt;}
.yf_c00021{bottom:708.520000pt;}
.ye_c00021{bottom:727.080000pt;}
.yd_c00021{bottom:745.640000pt;}
.yc_c00021{bottom:764.520000pt;}
.yb_c00021{bottom:783.080000pt;}
.ya_c00021{bottom:815.080000pt;}
.y9_c00021{bottom:833.640000pt;}
.y8_c00021{bottom:852.520000pt;}
.y7_c00021{bottom:871.080000pt;}
.y6_c00021{bottom:889.640000pt;}
.y5_c00021{bottom:908.520000pt;}
.y4_c00021{bottom:927.080000pt;}
.y3_c00021{bottom:945.640000pt;}
.y2_c00021{bottom:964.520000pt;}
.h8_c00021{height:17.116000pt;}
.h7_c00021{height:28.992000pt;}
.h6_c00021{height:40.021875pt;}
.h9_c00021{height:41.173333pt;}
.h4_c00021{height:57.984000pt;}
.h3_c00021{height:59.768539pt;}
.h5_c00021{height:60.510720pt;}
.h2_c00021{height:1067.880000pt;}
.h0_c00021{height:1122.520000pt;}
.h1_c00021{height:1122.666667pt;}
.w3_c00021{width:7.413333pt;}
.w2_c00021{width:767.960000pt;}
.w0_c00021{width:793.720000pt;}
.w1_c00021{width:794.000000pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:12.880000pt;}
.x2_c00021{left:100.480133pt;}
.x19_c00021{left:161.823600pt;}
.x9_c00021{left:170.719333pt;}
.x4_c00021{left:184.562800pt;}
.x3_c00021{left:187.199867pt;}
.x16_c00021{left:195.598267pt;}
.x1c_c00021{left:213.126933pt;}
.x10_c00021{left:223.289733pt;}
.x5_c00021{left:230.802133pt;}
.x15_c00021{left:236.042933pt;}
.x13_c00021{left:248.775333pt;}
.xc_c00021{left:249.914400pt;}
.x11_c00021{left:266.873067pt;}
.x17_c00021{left:280.941067pt;}
.x1d_c00021{left:298.469733pt;}
.xa_c00021{left:327.196667pt;}
.xe_c00021{left:342.065067pt;}
.x14_c00021{left:404.135467pt;}
.x1a_c00021{left:406.047200pt;}
.x12_c00021{left:412.888933pt;}
.xf_c00021{left:445.183333pt;}
.xd_c00021{left:458.892267pt;}
.x18_c00021{left:463.929333pt;}
.x6_c00021{left:473.609067pt;}
.x7_c00021{left:482.504933pt;}
.x8_c00021{left:557.159867pt;}
.xb_c00021{left:580.568667pt;}
.x1b_c00021{left:667.013333pt;}
.x1e_c00021{left:690.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1dd39fd0b532b8dcd5c317bc.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.134000;font-style:normal;font-weight:normal;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_6b4400e16cd10849e4b2d90a.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_568ca3b93883d1f6b8f9ae7b.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:0.787000;font-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_c00022{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00022{vertical-align:-24.480000px;}
.v0_c00022{vertical-align:0.000000px;}
.v1_c00022{vertical-align:30.240000px;}
.ls4_c00022{letter-spacing:-0.179568px;}
.ls2_c00022{letter-spacing:0.000000px;}
.ls5_c00022{letter-spacing:0.144000px;}
.ls8_c00022{letter-spacing:0.265680px;}
.ls7_c00022{letter-spacing:0.273857px;}
.ls0_c00022{letter-spacing:0.295200px;}
.ls1_c00022{letter-spacing:0.304285px;}
.ls18_c00022{letter-spacing:0.318816px;}
.ls11_c00022{letter-spacing:0.328628px;}
.ls16_c00022{letter-spacing:0.371952px;}
.ls9_c00022{letter-spacing:0.425088px;}
.lse_c00022{letter-spacing:0.478224px;}
.ls10_c00022{letter-spacing:0.492942px;}
.ls14_c00022{letter-spacing:0.531360px;}
.lsf_c00022{letter-spacing:0.547713px;}
.lsa_c00022{letter-spacing:0.602485px;}
.ls12_c00022{letter-spacing:0.712027px;}
.ls3_c00022{letter-spacing:0.717816px;}
.lsc_c00022{letter-spacing:0.797040px;}
.ls15_c00022{letter-spacing:0.885600px;}
.ls13_c00022{letter-spacing:0.962352px;}
.lsd_c00022{letter-spacing:4.197744px;}
.lsb_c00022{letter-spacing:6.399936px;}
.ls6_c00022{letter-spacing:9.971856px;}
.ls17_c00022{letter-spacing:12.912048px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:-20.632021px;}
.ws3_c00022{word-spacing:-20.016000px;}
.ws6_c00022{word-spacing:-17.411199px;}
.ws5_c00022{word-spacing:-17.192114px;}
.ws1_c00022{word-spacing:-16.810792px;}
.ws2_c00022{word-spacing:-11.429712px;}
.ws4_c00022{word-spacing:-10.152000px;}
.ws7_c00022{word-spacing:0.000000px;}
._13_c00022{margin-left:-16.177800px;}
._1b_c00022{margin-left:-12.627360px;}
._12_c00022{margin-left:-10.821600px;}
._14_c00022{margin-left:-9.557280px;}
._16_c00022{margin-left:-6.081120px;}
._17_c00022{margin-left:-4.900320px;}
._18_c00022{margin-left:-3.889440px;}
._19_c00022{margin-left:-2.877120px;}
._15_c00022{margin-left:-1.091152px;}
._1_c00022{width:1.080000px;}
._6_c00022{width:2.292954px;}
._1a_c00022{width:4.077422px;}
._0_c00022{width:6.264000px;}
._f_c00022{width:7.704000px;}
._8_c00022{width:9.576000px;}
._3_c00022{width:11.304000px;}
._9_c00022{width:12.888000px;}
._d_c00022{width:16.848000px;}
._10_c00022{width:18.576000px;}
._7_c00022{width:24.756551px;}
._5_c00022{width:26.075449px;}
._2_c00022{width:27.360000px;}
._a_c00022{width:28.498906px;}
._e_c00022{width:31.320000px;}
._11_c00022{width:32.472000px;}
._b_c00022{width:35.640000px;}
._c_c00022{width:36.736871px;}
._4_c00022{width:51.768000px;}
.fc0_c00022{color:rgb(0,0,0);}
.fs5_c00022{font-size:36.000000px;}
.fs3_c00022{font-size:41.760000px;}
.fs2_c00022{font-size:57.888403px;}
.fs6_c00022{font-size:59.040000px;}
.fs8_c00022{font-size:60.000000px;}
.fs7_c00022{font-size:60.857039px;}
.fs4_c00022{font-size:64.800000px;}
.fs0_c00022{font-size:72.000000px;}
.fs1_c00022{font-size:74.215901px;}
.y0_c00022{bottom:0.000000px;}
.y38_c00022{bottom:3.120150px;}
.y37_c00022{bottom:34.744500px;}
.y1_c00022{bottom:54.000000px;}
.y36_c00022{bottom:55.481040px;}
.y35_c00022{bottom:78.885000px;}
.y34_c00022{bottom:90.401040px;}
.y33_c00022{bottom:113.805000px;}
.y32_c00022{bottom:125.325000px;}
.y31_c00022{bottom:131.445000px;}
.y2f_c00022{bottom:142.960680px;}
.y30_c00022{bottom:142.965000px;}
.y2e_c00022{bottom:160.244640px;}
.y2d_c00022{bottom:177.882840px;}
.y2c_c00022{bottom:195.521040px;}
.y2b_c00022{bottom:212.805000px;}
.y2a_c00022{bottom:218.925000px;}
.y29_c00022{bottom:236.565000px;}
.y28_c00022{bottom:247.726800px;}
.y27_c00022{bottom:265.365000px;}
.y26_c00022{bottom:265.366800px;}
.y25_c00022{bottom:283.005000px;}
.y24_c00022{bottom:289.125000px;}
.y23_c00022{bottom:315.765000px;}
.y22_c00022{bottom:352.845000px;}
.y21_c00022{bottom:388.845000px;}
.y20_c00022{bottom:409.725000px;}
.y1f_c00022{bottom:430.965000px;}
.y1e_c00022{bottom:451.845000px;}
.y1d_c00022{bottom:472.725000px;}
.y1c_c00022{bottom:493.965000px;}
.y1b_c00022{bottom:514.845000px;}
.y1a_c00022{bottom:535.725000px;}
.y19_c00022{bottom:556.965000px;}
.y18_c00022{bottom:577.845000px;}
.y17_c00022{bottom:598.725000px;}
.y16_c00022{bottom:619.965000px;}
.y15_c00022{bottom:640.845000px;}
.y14_c00022{bottom:661.725000px;}
.y13_c00022{bottom:697.725000px;}
.y12_c00022{bottom:718.965000px;}
.y11_c00022{bottom:739.845000px;}
.y10_c00022{bottom:761.085000px;}
.yf_c00022{bottom:781.965000px;}
.ye_c00022{bottom:802.845000px;}
.yd_c00022{bottom:838.845000px;}
.yc_c00022{bottom:860.085000px;}
.yb_c00022{bottom:880.965000px;}
.ya_c00022{bottom:901.845000px;}
.y9_c00022{bottom:923.085000px;}
.y8_c00022{bottom:943.965000px;}
.y7_c00022{bottom:964.845000px;}
.y6_c00022{bottom:986.085000px;}
.y5_c00022{bottom:1006.965000px;}
.y4_c00022{bottom:1042.965000px;}
.y3_c00022{bottom:1063.845000px;}
.y2_c00022{bottom:1085.085000px;}
.ha_c00022{height:19.255500px;}
.h7_c00022{height:32.616000px;}
.h6_c00022{height:45.024609px;}
.hb_c00022{height:46.320000px;}
.h9_c00022{height:53.490240px;}
.h8_c00022{height:55.136477px;}
.h3_c00022{height:65.232000px;}
.h4_c00022{height:67.239607px;}
.h5_c00022{height:68.074560px;}
.h2_c00022{height:1201.365000px;}
.h0_c00022{height:1262.835000px;}
.h1_c00022{height:1263.000000px;}
.w3_c00022{width:16.680000px;}
.w2_c00022{width:863.955000px;}
.w0_c00022{width:892.935000px;}
.w1_c00022{width:893.250000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:14.490000px;}
.x2_c00022{left:113.040150px;}
.x17_c00022{left:127.217700px;}
.x3_c00022{left:145.625550px;}
.x18_c00022{left:151.381650px;}
.x4_c00022{left:171.191100px;}
.xd_c00022{left:190.176300px;}
.xb_c00022{left:206.026650px;}
.x10_c00022{left:212.100900px;}
.xe_c00022{left:222.294750px;}
.x11_c00022{left:228.129600px;}
.x9_c00022{left:243.773400px;}
.x16_c00022{left:300.578550px;}
.xc_c00022{left:341.797500px;}
.x14_c00022{left:350.507850px;}
.xf_c00022{left:416.222100px;}
.x15_c00022{left:558.919500px;}
.xa_c00022{left:573.584400px;}
.x5_c00022{left:597.269550px;}
.x12_c00022{left:618.880350px;}
.x6_c00022{left:663.241650px;}
.x13_c00022{left:666.369150px;}
.x7_c00022{left:669.355200px;}
.x8_c00022{left:686.412600px;}
.x19_c00022{left:768.255000px;}
@media print{
.v2_c00022{vertical-align:-21.760000pt;}
.v0_c00022{vertical-align:0.000000pt;}
.v1_c00022{vertical-align:26.880000pt;}
.ls4_c00022{letter-spacing:-0.159616pt;}
.ls2_c00022{letter-spacing:0.000000pt;}
.ls5_c00022{letter-spacing:0.128000pt;}
.ls8_c00022{letter-spacing:0.236160pt;}
.ls7_c00022{letter-spacing:0.243428pt;}
.ls0_c00022{letter-spacing:0.262400pt;}
.ls1_c00022{letter-spacing:0.270476pt;}
.ls18_c00022{letter-spacing:0.283392pt;}
.ls11_c00022{letter-spacing:0.292114pt;}
.ls16_c00022{letter-spacing:0.330624pt;}
.ls9_c00022{letter-spacing:0.377856pt;}
.lse_c00022{letter-spacing:0.425088pt;}
.ls10_c00022{letter-spacing:0.438171pt;}
.ls14_c00022{letter-spacing:0.472320pt;}
.lsf_c00022{letter-spacing:0.486856pt;}
.lsa_c00022{letter-spacing:0.535542pt;}
.ls12_c00022{letter-spacing:0.632913pt;}
.ls3_c00022{letter-spacing:0.638059pt;}
.lsc_c00022{letter-spacing:0.708480pt;}
.ls15_c00022{letter-spacing:0.787200pt;}
.ls13_c00022{letter-spacing:0.855424pt;}
.lsd_c00022{letter-spacing:3.731328pt;}
.lsb_c00022{letter-spacing:5.688832pt;}
.ls6_c00022{letter-spacing:8.863872pt;}
.ls17_c00022{letter-spacing:11.477376pt;}
.ws0_c00022{word-spacing:-18.339574pt;}
.ws3_c00022{word-spacing:-17.792000pt;}
.ws6_c00022{word-spacing:-15.476621pt;}
.ws5_c00022{word-spacing:-15.281879pt;}
.ws1_c00022{word-spacing:-14.942926pt;}
.ws2_c00022{word-spacing:-10.159744pt;}
.ws4_c00022{word-spacing:-9.024000pt;}
.ws7_c00022{word-spacing:0.000000pt;}
._13_c00022{margin-left:-14.380267pt;}
._1b_c00022{margin-left:-11.224320pt;}
._12_c00022{margin-left:-9.619200pt;}
._14_c00022{margin-left:-8.495360pt;}
._16_c00022{margin-left:-5.405440pt;}
._17_c00022{margin-left:-4.355840pt;}
._18_c00022{margin-left:-3.457280pt;}
._19_c00022{margin-left:-2.557440pt;}
._15_c00022{margin-left:-0.969913pt;}
._1_c00022{width:0.960000pt;}
._6_c00022{width:2.038181pt;}
._1a_c00022{width:3.624375pt;}
._0_c00022{width:5.568000pt;}
._f_c00022{width:6.848000pt;}
._8_c00022{width:8.512000pt;}
._3_c00022{width:10.048000pt;}
._9_c00022{width:11.456000pt;}
._d_c00022{width:14.976000pt;}
._10_c00022{width:16.512000pt;}
._7_c00022{width:22.005823pt;}
._5_c00022{width:23.178177pt;}
._2_c00022{width:24.320000pt;}
._a_c00022{width:25.332361pt;}
._e_c00022{width:27.840000pt;}
._11_c00022{width:28.864000pt;}
._b_c00022{width:31.680000pt;}
._c_c00022{width:32.654997pt;}
._4_c00022{width:46.016000pt;}
.fs5_c00022{font-size:32.000000pt;}
.fs3_c00022{font-size:37.120000pt;}
.fs2_c00022{font-size:51.456358pt;}
.fs6_c00022{font-size:52.480000pt;}
.fs8_c00022{font-size:53.333333pt;}
.fs7_c00022{font-size:54.095146pt;}
.fs4_c00022{font-size:57.600000pt;}
.fs0_c00022{font-size:64.000000pt;}
.fs1_c00022{font-size:65.969690pt;}
.y0_c00022{bottom:0.000000pt;}
.y38_c00022{bottom:2.773467pt;}
.y37_c00022{bottom:30.884000pt;}
.y1_c00022{bottom:48.000000pt;}
.y36_c00022{bottom:49.316480pt;}
.y35_c00022{bottom:70.120000pt;}
.y34_c00022{bottom:80.356480pt;}
.y33_c00022{bottom:101.160000pt;}
.y32_c00022{bottom:111.400000pt;}
.y31_c00022{bottom:116.840000pt;}
.y2f_c00022{bottom:127.076160pt;}
.y30_c00022{bottom:127.080000pt;}
.y2e_c00022{bottom:142.439680pt;}
.y2d_c00022{bottom:158.118080pt;}
.y2c_c00022{bottom:173.796480pt;}
.y2b_c00022{bottom:189.160000pt;}
.y2a_c00022{bottom:194.600000pt;}
.y29_c00022{bottom:210.280000pt;}
.y28_c00022{bottom:220.201600pt;}
.y27_c00022{bottom:235.880000pt;}
.y26_c00022{bottom:235.881600pt;}
.y25_c00022{bottom:251.560000pt;}
.y24_c00022{bottom:257.000000pt;}
.y23_c00022{bottom:280.680000pt;}
.y22_c00022{bottom:313.640000pt;}
.y21_c00022{bottom:345.640000pt;}
.y20_c00022{bottom:364.200000pt;}
.y1f_c00022{bottom:383.080000pt;}
.y1e_c00022{bottom:401.640000pt;}
.y1d_c00022{bottom:420.200000pt;}
.y1c_c00022{bottom:439.080000pt;}
.y1b_c00022{bottom:457.640000pt;}
.y1a_c00022{bottom:476.200000pt;}
.y19_c00022{bottom:495.080000pt;}
.y18_c00022{bottom:513.640000pt;}
.y17_c00022{bottom:532.200000pt;}
.y16_c00022{bottom:551.080000pt;}
.y15_c00022{bottom:569.640000pt;}
.y14_c00022{bottom:588.200000pt;}
.y13_c00022{bottom:620.200000pt;}
.y12_c00022{bottom:639.080000pt;}
.y11_c00022{bottom:657.640000pt;}
.y10_c00022{bottom:676.520000pt;}
.yf_c00022{bottom:695.080000pt;}
.ye_c00022{bottom:713.640000pt;}
.yd_c00022{bottom:745.640000pt;}
.yc_c00022{bottom:764.520000pt;}
.yb_c00022{bottom:783.080000pt;}
.ya_c00022{bottom:801.640000pt;}
.y9_c00022{bottom:820.520000pt;}
.y8_c00022{bottom:839.080000pt;}
.y7_c00022{bottom:857.640000pt;}
.y6_c00022{bottom:876.520000pt;}
.y5_c00022{bottom:895.080000pt;}
.y4_c00022{bottom:927.080000pt;}
.y3_c00022{bottom:945.640000pt;}
.y2_c00022{bottom:964.520000pt;}
.ha_c00022{height:17.116000pt;}
.h7_c00022{height:28.992000pt;}
.h6_c00022{height:40.021875pt;}
.hb_c00022{height:41.173333pt;}
.h9_c00022{height:47.546880pt;}
.h8_c00022{height:49.010202pt;}
.h3_c00022{height:57.984000pt;}
.h4_c00022{height:59.768539pt;}
.h5_c00022{height:60.510720pt;}
.h2_c00022{height:1067.880000pt;}
.h0_c00022{height:1122.520000pt;}
.h1_c00022{height:1122.666667pt;}
.w3_c00022{width:14.826667pt;}
.w2_c00022{width:767.960000pt;}
.w0_c00022{width:793.720000pt;}
.w1_c00022{width:794.000000pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:12.880000pt;}
.x2_c00022{left:100.480133pt;}
.x17_c00022{left:113.082400pt;}
.x3_c00022{left:129.444933pt;}
.x18_c00022{left:134.561467pt;}
.x4_c00022{left:152.169867pt;}
.xd_c00022{left:169.045600pt;}
.xb_c00022{left:183.134800pt;}
.x10_c00022{left:188.534133pt;}
.xe_c00022{left:197.595333pt;}
.x11_c00022{left:202.781867pt;}
.x9_c00022{left:216.687467pt;}
.x16_c00022{left:267.180933pt;}
.xc_c00022{left:303.820000pt;}
.x14_c00022{left:311.562533pt;}
.xf_c00022{left:369.975200pt;}
.x15_c00022{left:496.817333pt;}
.xa_c00022{left:509.852800pt;}
.x5_c00022{left:530.906267pt;}
.x12_c00022{left:550.115867pt;}
.x6_c00022{left:589.548133pt;}
.x13_c00022{left:592.328133pt;}
.x7_c00022{left:594.982400pt;}
.x8_c00022{left:610.144533pt;}
.x19_c00022{left:682.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_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_79e9c0d3f6542a6bc65d6ed9.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_0514b30992ff7ddcd5eb6766.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_8cf02a0af8c843dfd1f2f549.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:0.787000;font-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_c00023{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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:-30.240000px;}
.v3_c00023{vertical-align:-24.480000px;}
.v0_c00023{vertical-align:0.000000px;}
.v2_c00023{vertical-align:30.240000px;}
.ls8_c00023{letter-spacing:-0.179568px;}
.ls6_c00023{letter-spacing:0.000000px;}
.ls9_c00023{letter-spacing:0.144000px;}
.lsa_c00023{letter-spacing:0.265680px;}
.ls2_c00023{letter-spacing:0.295200px;}
.lsb_c00023{letter-spacing:0.438171px;}
.ls3_c00023{letter-spacing:0.531360px;}
.ls7_c00023{letter-spacing:0.561600px;}
.ls5_c00023{letter-spacing:5.335200px;}
.ls4_c00023{letter-spacing:5.430672px;}
.ls1_c00023{letter-spacing:5.971200px;}
.ls0_c00023{letter-spacing:5.976000px;}
.sc__c00023{text-shadow:none;}
.sc1_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00023{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc1_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00023{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00023{word-spacing:-20.016000px;}
.ws4_c00023{word-spacing:-16.944480px;}
.ws0_c00023{word-spacing:-16.174080px;}
.ws1_c00023{word-spacing:-11.429712px;}
.ws3_c00023{word-spacing:-10.152000px;}
.ws5_c00023{word-spacing:0.000000px;}
._12_c00023{margin-left:-16.177800px;}
._11_c00023{margin-left:-10.821600px;}
._0_c00023{margin-left:-1.347840px;}
._9_c00023{width:1.091016px;}
._3_c00023{width:2.808000px;}
._6_c00023{width:4.088160px;}
._1_c00023{width:5.407920px;}
._4_c00023{width:6.584400px;}
._5_c00023{width:8.424000px;}
._2_c00023{width:9.432000px;}
._8_c00023{width:10.835522px;}
._d_c00023{width:12.097192px;}
._c_c00023{width:14.976000px;}
._e_c00023{width:16.132659px;}
._b_c00023{width:17.741016px;}
._7_c00023{width:18.864000px;}
._a_c00023{width:21.888000px;}
._f_c00023{width:24.552000px;}
._10_c00023{width:32.472000px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs5_c00023{font-size:36.000000px;}
.fs3_c00023{font-size:41.760000px;}
.fs1_c00023{font-size:56.160000px;}
.fs6_c00023{font-size:59.040000px;}
.fs8_c00023{font-size:60.000000px;}
.fs7_c00023{font-size:60.857039px;}
.fs4_c00023{font-size:64.800000px;}
.fs0_c00023{font-size:72.000000px;}
.fs2_c00023{font-size:74.215901px;}
.y0_c00023{bottom:0.000000px;}
.y34_c00023{bottom:3.120150px;}
.y33_c00023{bottom:34.744500px;}
.y1_c00023{bottom:54.000000px;}
.y32_c00023{bottom:61.605000px;}
.y31_c00023{bottom:78.885000px;}
.y30_c00023{bottom:96.525000px;}
.y2f_c00023{bottom:113.805000px;}
.y2e_c00023{bottom:125.325000px;}
.y2d_c00023{bottom:131.445000px;}
.y2c_c00023{bottom:149.085000px;}
.y2b_c00023{bottom:175.725000px;}
.y2a_c00023{bottom:226.845000px;}
.y29_c00023{bottom:247.725000px;}
.y28_c00023{bottom:268.965000px;}
.y27_c00023{bottom:289.845000px;}
.y26_c00023{bottom:310.725000px;}
.y25_c00023{bottom:331.965000px;}
.y24_c00023{bottom:352.845000px;}
.y22_c00023{bottom:388.845000px;}
.y23_c00023{bottom:396.405000px;}
.y21_c00023{bottom:409.725000px;}
.y20_c00023{bottom:430.965000px;}
.y1f_c00023{bottom:451.845000px;}
.y1e_c00023{bottom:472.725000px;}
.y1d_c00023{bottom:493.965000px;}
.y1c_c00023{bottom:514.845000px;}
.y1b_c00023{bottom:535.725000px;}
.y1a_c00023{bottom:556.965000px;}
.y19_c00023{bottom:577.845000px;}
.y18_c00023{bottom:598.725000px;}
.y17_c00023{bottom:619.965000px;}
.y16_c00023{bottom:640.845000px;}
.y15_c00023{bottom:661.725000px;}
.y14_c00023{bottom:682.965000px;}
.y13_c00023{bottom:703.845000px;}
.y12_c00023{bottom:739.845000px;}
.y11_c00023{bottom:761.085000px;}
.yf_c00023{bottom:781.965000px;}
.y10_c00023{bottom:789.525000px;}
.ye_c00023{bottom:802.845000px;}
.yd_c00023{bottom:824.085000px;}
.yc_c00023{bottom:844.965000px;}
.yb_c00023{bottom:865.845000px;}
.ya_c00023{bottom:887.085000px;}
.y9_c00023{bottom:907.965000px;}
.y8_c00023{bottom:928.845000px;}
.y7_c00023{bottom:950.085000px;}
.y6_c00023{bottom:970.965000px;}
.y5_c00023{bottom:991.845000px;}
.y4_c00023{bottom:1013.085000px;}
.y3_c00023{bottom:1049.085000px;}
.y2_c00023{bottom:1085.085000px;}
.hb_c00023{height:19.255500px;}
.h8_c00023{height:32.616000px;}
.h5_c00023{height:37.834560px;}
.h7_c00023{height:45.024609px;}
.hc_c00023{height:46.320000px;}
.ha_c00023{height:53.490240px;}
.h9_c00023{height:55.136477px;}
.h3_c00023{height:65.232000px;}
.h4_c00023{height:67.239607px;}
.h6_c00023{height:68.074560px;}
.h2_c00023{height:1201.365000px;}
.h0_c00023{height:1262.835000px;}
.h1_c00023{height:1263.000000px;}
.w3_c00023{width:16.680000px;}
.w2_c00023{width:863.955000px;}
.w0_c00023{width:892.935000px;}
.w1_c00023{width:893.250000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:14.490000px;}
.x2_c00023{left:113.040150px;}
.x6_c00023{left:253.873500px;}
.x7_c00023{left:273.867600px;}
.x3_c00023{left:394.905450px;}
.x4_c00023{left:415.080000px;}
.x5_c00023{left:622.080000px;}
.x8_c00023{left:768.255000px;}
@media print{
.v1_c00023{vertical-align:-26.880000pt;}
.v3_c00023{vertical-align:-21.760000pt;}
.v0_c00023{vertical-align:0.000000pt;}
.v2_c00023{vertical-align:26.880000pt;}
.ls8_c00023{letter-spacing:-0.159616pt;}
.ls6_c00023{letter-spacing:0.000000pt;}
.ls9_c00023{letter-spacing:0.128000pt;}
.lsa_c00023{letter-spacing:0.236160pt;}
.ls2_c00023{letter-spacing:0.262400pt;}
.lsb_c00023{letter-spacing:0.389485pt;}
.ls3_c00023{letter-spacing:0.472320pt;}
.ls7_c00023{letter-spacing:0.499200pt;}
.ls5_c00023{letter-spacing:4.742400pt;}
.ls4_c00023{letter-spacing:4.827264pt;}
.ls1_c00023{letter-spacing:5.307733pt;}
.ls0_c00023{letter-spacing:5.312000pt;}
.ws2_c00023{word-spacing:-17.792000pt;}
.ws4_c00023{word-spacing:-15.061760pt;}
.ws0_c00023{word-spacing:-14.376960pt;}
.ws1_c00023{word-spacing:-10.159744pt;}
.ws3_c00023{word-spacing:-9.024000pt;}
.ws5_c00023{word-spacing:0.000000pt;}
._12_c00023{margin-left:-14.380267pt;}
._11_c00023{margin-left:-9.619200pt;}
._0_c00023{margin-left:-1.198080pt;}
._9_c00023{width:0.969792pt;}
._3_c00023{width:2.496000pt;}
._6_c00023{width:3.633920pt;}
._1_c00023{width:4.807040pt;}
._4_c00023{width:5.852800pt;}
._5_c00023{width:7.488000pt;}
._2_c00023{width:8.384000pt;}
._8_c00023{width:9.631575pt;}
._d_c00023{width:10.753059pt;}
._c_c00023{width:13.312000pt;}
._e_c00023{width:14.340141pt;}
._b_c00023{width:15.769792pt;}
._7_c00023{width:16.768000pt;}
._a_c00023{width:19.456000pt;}
._f_c00023{width:21.824000pt;}
._10_c00023{width:28.864000pt;}
.fs5_c00023{font-size:32.000000pt;}
.fs3_c00023{font-size:37.120000pt;}
.fs1_c00023{font-size:49.920000pt;}
.fs6_c00023{font-size:52.480000pt;}
.fs8_c00023{font-size:53.333333pt;}
.fs7_c00023{font-size:54.095146pt;}
.fs4_c00023{font-size:57.600000pt;}
.fs0_c00023{font-size:64.000000pt;}
.fs2_c00023{font-size:65.969690pt;}
.y0_c00023{bottom:0.000000pt;}
.y34_c00023{bottom:2.773467pt;}
.y33_c00023{bottom:30.884000pt;}
.y1_c00023{bottom:48.000000pt;}
.y32_c00023{bottom:54.760000pt;}
.y31_c00023{bottom:70.120000pt;}
.y30_c00023{bottom:85.800000pt;}
.y2f_c00023{bottom:101.160000pt;}
.y2e_c00023{bottom:111.400000pt;}
.y2d_c00023{bottom:116.840000pt;}
.y2c_c00023{bottom:132.520000pt;}
.y2b_c00023{bottom:156.200000pt;}
.y2a_c00023{bottom:201.640000pt;}
.y29_c00023{bottom:220.200000pt;}
.y28_c00023{bottom:239.080000pt;}
.y27_c00023{bottom:257.640000pt;}
.y26_c00023{bottom:276.200000pt;}
.y25_c00023{bottom:295.080000pt;}
.y24_c00023{bottom:313.640000pt;}
.y22_c00023{bottom:345.640000pt;}
.y23_c00023{bottom:352.360000pt;}
.y21_c00023{bottom:364.200000pt;}
.y20_c00023{bottom:383.080000pt;}
.y1f_c00023{bottom:401.640000pt;}
.y1e_c00023{bottom:420.200000pt;}
.y1d_c00023{bottom:439.080000pt;}
.y1c_c00023{bottom:457.640000pt;}
.y1b_c00023{bottom:476.200000pt;}
.y1a_c00023{bottom:495.080000pt;}
.y19_c00023{bottom:513.640000pt;}
.y18_c00023{bottom:532.200000pt;}
.y17_c00023{bottom:551.080000pt;}
.y16_c00023{bottom:569.640000pt;}
.y15_c00023{bottom:588.200000pt;}
.y14_c00023{bottom:607.080000pt;}
.y13_c00023{bottom:625.640000pt;}
.y12_c00023{bottom:657.640000pt;}
.y11_c00023{bottom:676.520000pt;}
.yf_c00023{bottom:695.080000pt;}
.y10_c00023{bottom:701.800000pt;}
.ye_c00023{bottom:713.640000pt;}
.yd_c00023{bottom:732.520000pt;}
.yc_c00023{bottom:751.080000pt;}
.yb_c00023{bottom:769.640000pt;}
.ya_c00023{bottom:788.520000pt;}
.y9_c00023{bottom:807.080000pt;}
.y8_c00023{bottom:825.640000pt;}
.y7_c00023{bottom:844.520000pt;}
.y6_c00023{bottom:863.080000pt;}
.y5_c00023{bottom:881.640000pt;}
.y4_c00023{bottom:900.520000pt;}
.y3_c00023{bottom:932.520000pt;}
.y2_c00023{bottom:964.520000pt;}
.hb_c00023{height:17.116000pt;}
.h8_c00023{height:28.992000pt;}
.h5_c00023{height:33.630720pt;}
.h7_c00023{height:40.021875pt;}
.hc_c00023{height:41.173333pt;}
.ha_c00023{height:47.546880pt;}
.h9_c00023{height:49.010202pt;}
.h3_c00023{height:57.984000pt;}
.h4_c00023{height:59.768539pt;}
.h6_c00023{height:60.510720pt;}
.h2_c00023{height:1067.880000pt;}
.h0_c00023{height:1122.520000pt;}
.h1_c00023{height:1122.666667pt;}
.w3_c00023{width:14.826667pt;}
.w2_c00023{width:767.960000pt;}
.w0_c00023{width:793.720000pt;}
.w1_c00023{width:794.000000pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:12.880000pt;}
.x2_c00023{left:100.480133pt;}
.x6_c00023{left:225.665333pt;}
.x7_c00023{left:243.437867pt;}
.x3_c00023{left:351.027067pt;}
.x4_c00023{left:368.960000pt;}
.x5_c00023{left:552.960000pt;}
.x8_c00023{left:682.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_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_d3e9eb2dcf6738369a1f00d1.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.134000;font-style:normal;font-weight:normal;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_ab01e5a9def37e68e6a3d353.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_c6c3566481afa035ab9d824b.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:0.787000;font-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_c00024{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00024{vertical-align:-30.240000px;}
.v3_c00024{vertical-align:-24.480000px;}
.v0_c00024{vertical-align:0.000000px;}
.v1_c00024{vertical-align:30.240000px;}
.ls3_c00024{letter-spacing:-0.179568px;}
.ls2_c00024{letter-spacing:0.000000px;}
.ls6_c00024{letter-spacing:0.144000px;}
.ls7_c00024{letter-spacing:0.265680px;}
.ls1_c00024{letter-spacing:0.295200px;}
.ls4_c00024{letter-spacing:0.511056px;}
.ls8_c00024{letter-spacing:0.531360px;}
.ls9_c00024{letter-spacing:0.584496px;}
.ls5_c00024{letter-spacing:0.606528px;}
.ls0_c00024{letter-spacing:5.976000px;}
.sc__c00024{text-shadow:none;}
.sc1_c00024{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_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;}
.sc1_c00024{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00024{word-spacing:-20.016000px;}
.ws4_c00024{word-spacing:-16.944480px;}
.ws2_c00024{word-spacing:-16.219008px;}
.ws0_c00024{word-spacing:-11.429712px;}
.ws3_c00024{word-spacing:-10.152000px;}
.ws5_c00024{word-spacing:0.000000px;}
._13_c00024{margin-left:-16.177800px;}
._12_c00024{margin-left:-10.821600px;}
._14_c00024{margin-left:-1.071360px;}
._1_c00024{width:1.728000px;}
._2_c00024{width:3.024000px;}
._c_c00024{width:4.231498px;}
._9_c00024{width:6.011488px;}
._e_c00024{width:7.021536px;}
._d_c00024{width:8.064000px;}
._6_c00024{width:10.080000px;}
._7_c00024{width:11.376000px;}
._5_c00024{width:13.608000px;}
._3_c00024{width:15.048000px;}
._4_c00024{width:16.437370px;}
._0_c00024{width:18.144000px;}
._11_c00024{width:21.312000px;}
._10_c00024{width:26.640000px;}
._f_c00024{width:35.352000px;}
._8_c00024{width:39.672000px;}
._a_c00024{width:45.864000px;}
._b_c00024{width:47.275529px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs5_c00024{font-size:36.000000px;}
.fs1_c00024{font-size:41.760000px;}
.fs3_c00024{font-size:56.160000px;}
.fs6_c00024{font-size:59.040000px;}
.fs7_c00024{font-size:60.000000px;}
.fs4_c00024{font-size:64.800000px;}
.fs0_c00024{font-size:72.000000px;}
.fs2_c00024{font-size:74.215901px;}
.y0_c00024{bottom:0.000000px;}
.y30_c00024{bottom:3.120150px;}
.y2f_c00024{bottom:34.744500px;}
.y1_c00024{bottom:54.000000px;}
.y2e_c00024{bottom:61.605000px;}
.y2d_c00024{bottom:78.885000px;}
.y2c_c00024{bottom:96.525000px;}
.y2b_c00024{bottom:113.805000px;}
.y2a_c00024{bottom:131.445000px;}
.y29_c00024{bottom:149.085000px;}
.y28_c00024{bottom:175.725000px;}
.y27_c00024{bottom:223.965000px;}
.y26_c00024{bottom:244.845000px;}
.y25_c00024{bottom:265.725000px;}
.y24_c00024{bottom:286.965000px;}
.y23_c00024{bottom:307.845000px;}
.y22_c00024{bottom:343.845000px;}
.y21_c00024{bottom:379.845000px;}
.y20_c00024{bottom:415.845000px;}
.y1f_c00024{bottom:436.725000px;}
.y1e_c00024{bottom:457.965000px;}
.y1d_c00024{bottom:478.845000px;}
.y1c_c00024{bottom:499.725000px;}
.y1b_c00024{bottom:520.965000px;}
.y1a_c00024{bottom:541.845000px;}
.y19_c00024{bottom:562.725000px;}
.y18_c00024{bottom:583.965000px;}
.y17_c00024{bottom:604.845000px;}
.y16_c00024{bottom:640.845000px;}
.y15_c00024{bottom:676.845000px;}
.y14_c00024{bottom:712.845000px;}
.y13_c00024{bottom:734.085000px;}
.y12_c00024{bottom:754.965000px;}
.y11_c00024{bottom:775.845000px;}
.y10_c00024{bottom:797.085000px;}
.yf_c00024{bottom:817.965000px;}
.ye_c00024{bottom:838.845000px;}
.yd_c00024{bottom:860.085000px;}
.yc_c00024{bottom:880.965000px;}
.yb_c00024{bottom:901.845000px;}
.ya_c00024{bottom:923.085000px;}
.y9_c00024{bottom:943.965000px;}
.y8_c00024{bottom:964.845000px;}
.y6_c00024{bottom:986.085000px;}
.y7_c00024{bottom:993.645000px;}
.y5_c00024{bottom:1006.965000px;}
.y4_c00024{bottom:1042.965000px;}
.y3_c00024{bottom:1063.845000px;}
.y2_c00024{bottom:1085.085000px;}
.h9_c00024{height:19.255500px;}
.h8_c00024{height:32.616000px;}
.h6_c00024{height:37.834560px;}
.h7_c00024{height:45.024609px;}
.ha_c00024{height:46.320000px;}
.h4_c00024{height:65.232000px;}
.h5_c00024{height:67.239607px;}
.h3_c00024{height:68.074560px;}
.h2_c00024{height:1201.365000px;}
.h0_c00024{height:1262.835000px;}
.h1_c00024{height:1263.000000px;}
.w3_c00024{width:16.680000px;}
.w2_c00024{width:863.955000px;}
.w0_c00024{width:892.935000px;}
.w1_c00024{width:893.250000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:14.490000px;}
.x2_c00024{left:113.040150px;}
.x3_c00024{left:356.867100px;}
.x5_c00024{left:407.952000px;}
.x6_c00024{left:507.449400px;}
.x7_c00024{left:528.695100px;}
.x4_c00024{left:636.120000px;}
.x8_c00024{left:768.255000px;}
@media print{
.v2_c00024{vertical-align:-26.880000pt;}
.v3_c00024{vertical-align:-21.760000pt;}
.v0_c00024{vertical-align:0.000000pt;}
.v1_c00024{vertical-align:26.880000pt;}
.ls3_c00024{letter-spacing:-0.159616pt;}
.ls2_c00024{letter-spacing:0.000000pt;}
.ls6_c00024{letter-spacing:0.128000pt;}
.ls7_c00024{letter-spacing:0.236160pt;}
.ls1_c00024{letter-spacing:0.262400pt;}
.ls4_c00024{letter-spacing:0.454272pt;}
.ls8_c00024{letter-spacing:0.472320pt;}
.ls9_c00024{letter-spacing:0.519552pt;}
.ls5_c00024{letter-spacing:0.539136pt;}
.ls0_c00024{letter-spacing:5.312000pt;}
.ws1_c00024{word-spacing:-17.792000pt;}
.ws4_c00024{word-spacing:-15.061760pt;}
.ws2_c00024{word-spacing:-14.416896pt;}
.ws0_c00024{word-spacing:-10.159744pt;}
.ws3_c00024{word-spacing:-9.024000pt;}
.ws5_c00024{word-spacing:0.000000pt;}
._13_c00024{margin-left:-14.380267pt;}
._12_c00024{margin-left:-9.619200pt;}
._14_c00024{margin-left:-0.952320pt;}
._1_c00024{width:1.536000pt;}
._2_c00024{width:2.688000pt;}
._c_c00024{width:3.761332pt;}
._9_c00024{width:5.343545pt;}
._e_c00024{width:6.241365pt;}
._d_c00024{width:7.168000pt;}
._6_c00024{width:8.960000pt;}
._7_c00024{width:10.112000pt;}
._5_c00024{width:12.096000pt;}
._3_c00024{width:13.376000pt;}
._4_c00024{width:14.610996pt;}
._0_c00024{width:16.128000pt;}
._11_c00024{width:18.944000pt;}
._10_c00024{width:23.680000pt;}
._f_c00024{width:31.424000pt;}
._8_c00024{width:35.264000pt;}
._a_c00024{width:40.768000pt;}
._b_c00024{width:42.022693pt;}
.fs5_c00024{font-size:32.000000pt;}
.fs1_c00024{font-size:37.120000pt;}
.fs3_c00024{font-size:49.920000pt;}
.fs6_c00024{font-size:52.480000pt;}
.fs7_c00024{font-size:53.333333pt;}
.fs4_c00024{font-size:57.600000pt;}
.fs0_c00024{font-size:64.000000pt;}
.fs2_c00024{font-size:65.969690pt;}
.y0_c00024{bottom:0.000000pt;}
.y30_c00024{bottom:2.773467pt;}
.y2f_c00024{bottom:30.884000pt;}
.y1_c00024{bottom:48.000000pt;}
.y2e_c00024{bottom:54.760000pt;}
.y2d_c00024{bottom:70.120000pt;}
.y2c_c00024{bottom:85.800000pt;}
.y2b_c00024{bottom:101.160000pt;}
.y2a_c00024{bottom:116.840000pt;}
.y29_c00024{bottom:132.520000pt;}
.y28_c00024{bottom:156.200000pt;}
.y27_c00024{bottom:199.080000pt;}
.y26_c00024{bottom:217.640000pt;}
.y25_c00024{bottom:236.200000pt;}
.y24_c00024{bottom:255.080000pt;}
.y23_c00024{bottom:273.640000pt;}
.y22_c00024{bottom:305.640000pt;}
.y21_c00024{bottom:337.640000pt;}
.y20_c00024{bottom:369.640000pt;}
.y1f_c00024{bottom:388.200000pt;}
.y1e_c00024{bottom:407.080000pt;}
.y1d_c00024{bottom:425.640000pt;}
.y1c_c00024{bottom:444.200000pt;}
.y1b_c00024{bottom:463.080000pt;}
.y1a_c00024{bottom:481.640000pt;}
.y19_c00024{bottom:500.200000pt;}
.y18_c00024{bottom:519.080000pt;}
.y17_c00024{bottom:537.640000pt;}
.y16_c00024{bottom:569.640000pt;}
.y15_c00024{bottom:601.640000pt;}
.y14_c00024{bottom:633.640000pt;}
.y13_c00024{bottom:652.520000pt;}
.y12_c00024{bottom:671.080000pt;}
.y11_c00024{bottom:689.640000pt;}
.y10_c00024{bottom:708.520000pt;}
.yf_c00024{bottom:727.080000pt;}
.ye_c00024{bottom:745.640000pt;}
.yd_c00024{bottom:764.520000pt;}
.yc_c00024{bottom:783.080000pt;}
.yb_c00024{bottom:801.640000pt;}
.ya_c00024{bottom:820.520000pt;}
.y9_c00024{bottom:839.080000pt;}
.y8_c00024{bottom:857.640000pt;}
.y6_c00024{bottom:876.520000pt;}
.y7_c00024{bottom:883.240000pt;}
.y5_c00024{bottom:895.080000pt;}
.y4_c00024{bottom:927.080000pt;}
.y3_c00024{bottom:945.640000pt;}
.y2_c00024{bottom:964.520000pt;}
.h9_c00024{height:17.116000pt;}
.h8_c00024{height:28.992000pt;}
.h6_c00024{height:33.630720pt;}
.h7_c00024{height:40.021875pt;}
.ha_c00024{height:41.173333pt;}
.h4_c00024{height:57.984000pt;}
.h5_c00024{height:59.768539pt;}
.h3_c00024{height:60.510720pt;}
.h2_c00024{height:1067.880000pt;}
.h0_c00024{height:1122.520000pt;}
.h1_c00024{height:1122.666667pt;}
.w3_c00024{width:14.826667pt;}
.w2_c00024{width:767.960000pt;}
.w0_c00024{width:793.720000pt;}
.w1_c00024{width:794.000000pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:12.880000pt;}
.x2_c00024{left:100.480133pt;}
.x3_c00024{left:317.215200pt;}
.x5_c00024{left:362.624000pt;}
.x6_c00024{left:451.066133pt;}
.x7_c00024{left:469.951200pt;}
.x4_c00024{left:565.440000pt;}
.x8_c00024{left:682.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_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_46ca3c8b8a4df63ed751dfa8.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.134000;font-style:normal;font-weight:normal;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_2b3b7e62d7ba475f87daf9b9.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_1a79a6f5486b983abc761ff1.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:0.787000;font-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_c00025{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00025{vertical-align:-24.480000px;}
.v0_c00025{vertical-align:0.000000px;}
.v1_c00025{vertical-align:30.240000px;}
.ls4_c00025{letter-spacing:-0.179568px;}
.ls2_c00025{letter-spacing:0.000000px;}
.ls5_c00025{letter-spacing:0.144000px;}
.ls6_c00025{letter-spacing:0.265680px;}
.ls3_c00025{letter-spacing:0.275184px;}
.ls8_c00025{letter-spacing:0.438171px;}
.ls9_c00025{letter-spacing:0.531360px;}
.ls1_c00025{letter-spacing:0.560880px;}
.lsa_c00025{letter-spacing:0.696672px;}
.ls7_c00025{letter-spacing:1.611792px;}
.ls0_c00025{letter-spacing:5.976000px;}
.sc__c00025{text-shadow:none;}
.sc1_c00025{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_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;}
.sc1_c00025{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00025{word-spacing:-16.944480px;}
.ws0_c00025{word-spacing:-15.887664px;}
.ws1_c00025{word-spacing:-11.429712px;}
.ws2_c00025{word-spacing:-10.152000px;}
.ws4_c00025{word-spacing:0.000000px;}
._17_c00025{margin-left:-16.177800px;}
._16_c00025{margin-left:-10.821600px;}
._18_c00025{margin-left:-1.173600px;}
._1_c00025{width:1.062240px;}
._c_c00025{width:2.304000px;}
._b_c00025{width:3.744000px;}
._d_c00025{width:4.824000px;}
._15_c00025{width:6.264000px;}
._4_c00025{width:8.208000px;}
._a_c00025{width:9.223200px;}
._0_c00025{width:12.096000px;}
._8_c00025{width:13.104000px;}
._e_c00025{width:14.832000px;}
._6_c00025{width:16.416000px;}
._5_c00025{width:17.424000px;}
._11_c00025{width:18.720000px;}
._2_c00025{width:21.456000px;}
._3_c00025{width:22.752000px;}
._f_c00025{width:24.120000px;}
._9_c00025{width:25.200000px;}
._7_c00025{width:28.080000px;}
._12_c00025{width:33.696000px;}
._13_c00025{width:34.733042px;}
._14_c00025{width:40.824000px;}
._10_c00025{width:47.160000px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs5_c00025{font-size:36.000000px;}
.fs3_c00025{font-size:41.760000px;}
.fs1_c00025{font-size:56.160000px;}
.fs6_c00025{font-size:59.040000px;}
.fs8_c00025{font-size:60.000000px;}
.fs7_c00025{font-size:60.857039px;}
.fs4_c00025{font-size:64.800000px;}
.fs0_c00025{font-size:72.000000px;}
.fs2_c00025{font-size:74.215901px;}
.y0_c00025{bottom:0.000000px;}
.y31_c00025{bottom:3.120150px;}
.y30_c00025{bottom:34.744500px;}
.y1_c00025{bottom:54.000000px;}
.y2f_c00025{bottom:55.481040px;}
.y2e_c00025{bottom:72.765000px;}
.y2d_c00025{bottom:78.885000px;}
.y2c_c00025{bottom:96.525000px;}
.y2b_c00025{bottom:113.805000px;}
.y2a_c00025{bottom:131.445000px;}
.y29_c00025{bottom:158.085000px;}
.y28_c00025{bottom:196.605000px;}
.y27_c00025{bottom:217.845000px;}
.y26_c00025{bottom:238.725000px;}
.y25_c00025{bottom:259.965000px;}
.y24_c00025{bottom:280.845000px;}
.y23_c00025{bottom:301.725000px;}
.y22_c00025{bottom:322.965000px;}
.y21_c00025{bottom:358.965000px;}
.y20_c00025{bottom:379.845000px;}
.y1f_c00025{bottom:400.725000px;}
.y1e_c00025{bottom:421.965000px;}
.y1d_c00025{bottom:442.845000px;}
.y1c_c00025{bottom:463.725000px;}
.y1b_c00025{bottom:484.965000px;}
.y1a_c00025{bottom:520.965000px;}
.y19_c00025{bottom:541.845000px;}
.y18_c00025{bottom:562.725000px;}
.y17_c00025{bottom:583.965000px;}
.y16_c00025{bottom:604.845000px;}
.y15_c00025{bottom:625.725000px;}
.y14_c00025{bottom:646.965000px;}
.y13_c00025{bottom:667.845000px;}
.y12_c00025{bottom:689.085000px;}
.y11_c00025{bottom:709.965000px;}
.y10_c00025{bottom:730.845000px;}
.yf_c00025{bottom:752.085000px;}
.ye_c00025{bottom:788.085000px;}
.yd_c00025{bottom:808.965000px;}
.yc_c00025{bottom:829.845000px;}
.yb_c00025{bottom:851.085000px;}
.ya_c00025{bottom:871.965000px;}
.y9_c00025{bottom:892.845000px;}
.y8_c00025{bottom:914.085000px;}
.y7_c00025{bottom:934.965000px;}
.y6_c00025{bottom:955.845000px;}
.y5_c00025{bottom:991.845000px;}
.y4_c00025{bottom:1027.845000px;}
.y3_c00025{bottom:1063.845000px;}
.y2_c00025{bottom:1085.085000px;}
.ha_c00025{height:19.255500px;}
.h7_c00025{height:32.616000px;}
.h6_c00025{height:45.024609px;}
.hb_c00025{height:46.320000px;}
.h9_c00025{height:53.490240px;}
.h8_c00025{height:55.136477px;}
.h3_c00025{height:65.232000px;}
.h4_c00025{height:67.239607px;}
.h5_c00025{height:68.074560px;}
.h2_c00025{height:1201.365000px;}
.h0_c00025{height:1262.835000px;}
.h1_c00025{height:1263.000000px;}
.w3_c00025{width:16.680000px;}
.w2_c00025{width:863.955000px;}
.w0_c00025{width:892.935000px;}
.w1_c00025{width:893.250000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:14.490000px;}
.x2_c00025{left:113.040150px;}
.x9_c00025{left:172.596750px;}
.x8_c00025{left:223.054650px;}
.xd_c00025{left:260.245200px;}
.xe_c00025{left:280.575750px;}
.x5_c00025{left:338.787150px;}
.xf_c00025{left:377.232750px;}
.x10_c00025{left:381.738900px;}
.xa_c00025{left:387.301800px;}
.x6_c00025{left:441.663900px;}
.xb_c00025{left:511.584600px;}
.x3_c00025{left:515.014500px;}
.x7_c00025{left:554.963400px;}
.xc_c00025{left:648.652200px;}
.x4_c00025{left:716.697900px;}
.x11_c00025{left:768.255000px;}
@media print{
.v2_c00025{vertical-align:-21.760000pt;}
.v0_c00025{vertical-align:0.000000pt;}
.v1_c00025{vertical-align:26.880000pt;}
.ls4_c00025{letter-spacing:-0.159616pt;}
.ls2_c00025{letter-spacing:0.000000pt;}
.ls5_c00025{letter-spacing:0.128000pt;}
.ls6_c00025{letter-spacing:0.236160pt;}
.ls3_c00025{letter-spacing:0.244608pt;}
.ls8_c00025{letter-spacing:0.389485pt;}
.ls9_c00025{letter-spacing:0.472320pt;}
.ls1_c00025{letter-spacing:0.498560pt;}
.lsa_c00025{letter-spacing:0.619264pt;}
.ls7_c00025{letter-spacing:1.432704pt;}
.ls0_c00025{letter-spacing:5.312000pt;}
.ws3_c00025{word-spacing:-15.061760pt;}
.ws0_c00025{word-spacing:-14.122368pt;}
.ws1_c00025{word-spacing:-10.159744pt;}
.ws2_c00025{word-spacing:-9.024000pt;}
.ws4_c00025{word-spacing:0.000000pt;}
._17_c00025{margin-left:-14.380267pt;}
._16_c00025{margin-left:-9.619200pt;}
._18_c00025{margin-left:-1.043200pt;}
._1_c00025{width:0.944213pt;}
._c_c00025{width:2.048000pt;}
._b_c00025{width:3.328000pt;}
._d_c00025{width:4.288000pt;}
._15_c00025{width:5.568000pt;}
._4_c00025{width:7.296000pt;}
._a_c00025{width:8.198400pt;}
._0_c00025{width:10.752000pt;}
._8_c00025{width:11.648000pt;}
._e_c00025{width:13.184000pt;}
._6_c00025{width:14.592000pt;}
._5_c00025{width:15.488000pt;}
._11_c00025{width:16.640000pt;}
._2_c00025{width:19.072000pt;}
._3_c00025{width:20.224000pt;}
._f_c00025{width:21.440000pt;}
._9_c00025{width:22.400000pt;}
._7_c00025{width:24.960000pt;}
._12_c00025{width:29.952000pt;}
._13_c00025{width:30.873815pt;}
._14_c00025{width:36.288000pt;}
._10_c00025{width:41.920000pt;}
.fs5_c00025{font-size:32.000000pt;}
.fs3_c00025{font-size:37.120000pt;}
.fs1_c00025{font-size:49.920000pt;}
.fs6_c00025{font-size:52.480000pt;}
.fs8_c00025{font-size:53.333333pt;}
.fs7_c00025{font-size:54.095146pt;}
.fs4_c00025{font-size:57.600000pt;}
.fs0_c00025{font-size:64.000000pt;}
.fs2_c00025{font-size:65.969690pt;}
.y0_c00025{bottom:0.000000pt;}
.y31_c00025{bottom:2.773467pt;}
.y30_c00025{bottom:30.884000pt;}
.y1_c00025{bottom:48.000000pt;}
.y2f_c00025{bottom:49.316480pt;}
.y2e_c00025{bottom:64.680000pt;}
.y2d_c00025{bottom:70.120000pt;}
.y2c_c00025{bottom:85.800000pt;}
.y2b_c00025{bottom:101.160000pt;}
.y2a_c00025{bottom:116.840000pt;}
.y29_c00025{bottom:140.520000pt;}
.y28_c00025{bottom:174.760000pt;}
.y27_c00025{bottom:193.640000pt;}
.y26_c00025{bottom:212.200000pt;}
.y25_c00025{bottom:231.080000pt;}
.y24_c00025{bottom:249.640000pt;}
.y23_c00025{bottom:268.200000pt;}
.y22_c00025{bottom:287.080000pt;}
.y21_c00025{bottom:319.080000pt;}
.y20_c00025{bottom:337.640000pt;}
.y1f_c00025{bottom:356.200000pt;}
.y1e_c00025{bottom:375.080000pt;}
.y1d_c00025{bottom:393.640000pt;}
.y1c_c00025{bottom:412.200000pt;}
.y1b_c00025{bottom:431.080000pt;}
.y1a_c00025{bottom:463.080000pt;}
.y19_c00025{bottom:481.640000pt;}
.y18_c00025{bottom:500.200000pt;}
.y17_c00025{bottom:519.080000pt;}
.y16_c00025{bottom:537.640000pt;}
.y15_c00025{bottom:556.200000pt;}
.y14_c00025{bottom:575.080000pt;}
.y13_c00025{bottom:593.640000pt;}
.y12_c00025{bottom:612.520000pt;}
.y11_c00025{bottom:631.080000pt;}
.y10_c00025{bottom:649.640000pt;}
.yf_c00025{bottom:668.520000pt;}
.ye_c00025{bottom:700.520000pt;}
.yd_c00025{bottom:719.080000pt;}
.yc_c00025{bottom:737.640000pt;}
.yb_c00025{bottom:756.520000pt;}
.ya_c00025{bottom:775.080000pt;}
.y9_c00025{bottom:793.640000pt;}
.y8_c00025{bottom:812.520000pt;}
.y7_c00025{bottom:831.080000pt;}
.y6_c00025{bottom:849.640000pt;}
.y5_c00025{bottom:881.640000pt;}
.y4_c00025{bottom:913.640000pt;}
.y3_c00025{bottom:945.640000pt;}
.y2_c00025{bottom:964.520000pt;}
.ha_c00025{height:17.116000pt;}
.h7_c00025{height:28.992000pt;}
.h6_c00025{height:40.021875pt;}
.hb_c00025{height:41.173333pt;}
.h9_c00025{height:47.546880pt;}
.h8_c00025{height:49.010202pt;}
.h3_c00025{height:57.984000pt;}
.h4_c00025{height:59.768539pt;}
.h5_c00025{height:60.510720pt;}
.h2_c00025{height:1067.880000pt;}
.h0_c00025{height:1122.520000pt;}
.h1_c00025{height:1122.666667pt;}
.w3_c00025{width:14.826667pt;}
.w2_c00025{width:767.960000pt;}
.w0_c00025{width:793.720000pt;}
.w1_c00025{width:794.000000pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:12.880000pt;}
.x2_c00025{left:100.480133pt;}
.x9_c00025{left:153.419333pt;}
.x8_c00025{left:198.270800pt;}
.xd_c00025{left:231.329067pt;}
.xe_c00025{left:249.400667pt;}
.x5_c00025{left:301.144133pt;}
.xf_c00025{left:335.318000pt;}
.x10_c00025{left:339.323467pt;}
.xa_c00025{left:344.268267pt;}
.x6_c00025{left:392.590133pt;}
.xb_c00025{left:454.741867pt;}
.x3_c00025{left:457.790667pt;}
.x7_c00025{left:493.300800pt;}
.xc_c00025{left:576.579733pt;}
.x4_c00025{left:637.064800pt;}
.x11_c00025{left:682.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_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_e953630653571149dc030ac6.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.134000;font-style:normal;font-weight:normal;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_a1fc8ede88b764ba48cad2d8.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.134000;font-style:normal;font-weight:normal;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_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_18b943f5f66760fb5846460a.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:0.787000;font-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_c00026{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00026{vertical-align:-24.480000px;}
.v0_c00026{vertical-align:0.000000px;}
.v1_c00026{vertical-align:30.240000px;}
.ls5_c00026{letter-spacing:-0.179568px;}
.ls3_c00026{letter-spacing:0.000000px;}
.ls6_c00026{letter-spacing:0.144000px;}
.lsd_c00026{letter-spacing:0.265680px;}
.ls1_c00026{letter-spacing:0.295200px;}
.lsa_c00026{letter-spacing:0.425088px;}
.ls8_c00026{letter-spacing:0.478224px;}
.ls2_c00026{letter-spacing:0.531360px;}
.ls0_c00026{letter-spacing:0.542400px;}
.lsc_c00026{letter-spacing:0.696672px;}
.lsb_c00026{letter-spacing:0.712027px;}
.ls7_c00026{letter-spacing:1.505520px;}
.ls9_c00026{letter-spacing:21.626352px;}
.ls4_c00026{letter-spacing:24.717600px;}
.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;}
}
.ws1_c00026{word-spacing:-20.016000px;}
.ws3_c00026{word-spacing:-16.944480px;}
.ws0_c00026{word-spacing:-11.429712px;}
.ws2_c00026{word-spacing:-10.152000px;}
.ws4_c00026{word-spacing:0.000000px;}
._15_c00026{margin-left:-21.306240px;}
._16_c00026{margin-left:-20.270880px;}
._12_c00026{margin-left:-16.177800px;}
._11_c00026{margin-left:-10.821600px;}
._14_c00026{margin-left:-2.130192px;}
._13_c00026{margin-left:-1.055520px;}
._5_c00026{width:1.584000px;}
._6_c00026{width:3.024000px;}
._d_c00026{width:4.304522px;}
._0_c00026{width:6.264000px;}
._8_c00026{width:7.272000px;}
._a_c00026{width:8.496000px;}
._c_c00026{width:9.792000px;}
._b_c00026{width:11.664000px;}
._4_c00026{width:12.672000px;}
._1_c00026{width:13.752000px;}
._3_c00026{width:15.048000px;}
._e_c00026{width:16.056000px;}
._10_c00026{width:17.208000px;}
._7_c00026{width:18.288000px;}
._9_c00026{width:24.367946px;}
._2_c00026{width:25.456054px;}
._f_c00026{width:31.824000px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs4_c00026{font-size:36.000000px;}
.fs2_c00026{font-size:41.760000px;}
.fs5_c00026{font-size:59.040000px;}
.fs7_c00026{font-size:60.000000px;}
.fs6_c00026{font-size:60.857039px;}
.fs3_c00026{font-size:64.800000px;}
.fs0_c00026{font-size:72.000000px;}
.fs1_c00026{font-size:74.215901px;}
.y0_c00026{bottom:0.000000px;}
.y32_c00026{bottom:3.120150px;}
.y31_c00026{bottom:34.744500px;}
.y1_c00026{bottom:54.000000px;}
.y30_c00026{bottom:61.605000px;}
.y2f_c00026{bottom:78.885000px;}
.y2e_c00026{bottom:96.525000px;}
.y2d_c00026{bottom:107.685000px;}
.y2c_c00026{bottom:107.686800px;}
.y2b_c00026{bottom:131.445000px;}
.y2a_c00026{bottom:142.961040px;}
.y29_c00026{bottom:166.365000px;}
.y28_c00026{bottom:193.365000px;}
.y27_c00026{bottom:247.725000px;}
.y26_c00026{bottom:268.965000px;}
.y25_c00026{bottom:289.845000px;}
.y24_c00026{bottom:310.725000px;}
.y23_c00026{bottom:331.965000px;}
.y22_c00026{bottom:367.965000px;}
.y21_c00026{bottom:388.845000px;}
.y20_c00026{bottom:409.725000px;}
.y1f_c00026{bottom:430.965000px;}
.y1e_c00026{bottom:451.845000px;}
.y1d_c00026{bottom:472.725000px;}
.y1c_c00026{bottom:493.965000px;}
.y1b_c00026{bottom:514.845000px;}
.y1a_c00026{bottom:550.845000px;}
.y19_c00026{bottom:571.725000px;}
.y18_c00026{bottom:592.965000px;}
.y17_c00026{bottom:613.845000px;}
.y16_c00026{bottom:634.725000px;}
.y15_c00026{bottom:655.965000px;}
.y14_c00026{bottom:691.965000px;}
.y13_c00026{bottom:712.845000px;}
.y12_c00026{bottom:734.085000px;}
.y11_c00026{bottom:754.965000px;}
.y10_c00026{bottom:775.845000px;}
.yf_c00026{bottom:797.085000px;}
.ye_c00026{bottom:817.965000px;}
.yd_c00026{bottom:838.845000px;}
.yc_c00026{bottom:860.085000px;}
.yb_c00026{bottom:880.965000px;}
.ya_c00026{bottom:916.965000px;}
.y9_c00026{bottom:937.845000px;}
.y8_c00026{bottom:959.085000px;}
.y7_c00026{bottom:979.965000px;}
.y6_c00026{bottom:1000.845000px;}
.y5_c00026{bottom:1022.085000px;}
.y4_c00026{bottom:1042.965000px;}
.y3_c00026{bottom:1063.845000px;}
.y2_c00026{bottom:1085.085000px;}
.ha_c00026{height:19.255500px;}
.h7_c00026{height:32.616000px;}
.h6_c00026{height:45.024609px;}
.hb_c00026{height:46.320000px;}
.h8_c00026{height:53.490240px;}
.h9_c00026{height:55.136477px;}
.h3_c00026{height:65.232000px;}
.h4_c00026{height:67.239607px;}
.h5_c00026{height:68.074560px;}
.h2_c00026{height:1201.365000px;}
.h0_c00026{height:1262.835000px;}
.h1_c00026{height:1263.000000px;}
.w3_c00026{width:16.680000px;}
.w2_c00026{width:863.955000px;}
.w0_c00026{width:892.935000px;}
.w1_c00026{width:893.250000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:14.490000px;}
.x2_c00026{left:113.040150px;}
.x6_c00026{left:156.059700px;}
.xf_c00026{left:184.067100px;}
.x3_c00026{left:193.234200px;}
.x10_c00026{left:267.220050px;}
.x11_c00026{left:291.384150px;}
.xd_c00026{left:332.180400px;}
.xc_c00026{left:345.748500px;}
.xb_c00026{left:421.445400px;}
.x7_c00026{left:527.961450px;}
.xe_c00026{left:578.313750px;}
.x4_c00026{left:703.190100px;}
.x5_c00026{left:720.366600px;}
.x8_c00026{left:724.258350px;}
.x9_c00026{left:734.266050px;}
.xa_c00026{left:741.390000px;}
.x12_c00026{left:768.255000px;}
@media print{
.v2_c00026{vertical-align:-21.760000pt;}
.v0_c00026{vertical-align:0.000000pt;}
.v1_c00026{vertical-align:26.880000pt;}
.ls5_c00026{letter-spacing:-0.159616pt;}
.ls3_c00026{letter-spacing:0.000000pt;}
.ls6_c00026{letter-spacing:0.128000pt;}
.lsd_c00026{letter-spacing:0.236160pt;}
.ls1_c00026{letter-spacing:0.262400pt;}
.lsa_c00026{letter-spacing:0.377856pt;}
.ls8_c00026{letter-spacing:0.425088pt;}
.ls2_c00026{letter-spacing:0.472320pt;}
.ls0_c00026{letter-spacing:0.482133pt;}
.lsc_c00026{letter-spacing:0.619264pt;}
.lsb_c00026{letter-spacing:0.632913pt;}
.ls7_c00026{letter-spacing:1.338240pt;}
.ls9_c00026{letter-spacing:19.223424pt;}
.ls4_c00026{letter-spacing:21.971200pt;}
.ws1_c00026{word-spacing:-17.792000pt;}
.ws3_c00026{word-spacing:-15.061760pt;}
.ws0_c00026{word-spacing:-10.159744pt;}
.ws2_c00026{word-spacing:-9.024000pt;}
.ws4_c00026{word-spacing:0.000000pt;}
._15_c00026{margin-left:-18.938880pt;}
._16_c00026{margin-left:-18.018560pt;}
._12_c00026{margin-left:-14.380267pt;}
._11_c00026{margin-left:-9.619200pt;}
._14_c00026{margin-left:-1.893504pt;}
._13_c00026{margin-left:-0.938240pt;}
._5_c00026{width:1.408000pt;}
._6_c00026{width:2.688000pt;}
._d_c00026{width:3.826242pt;}
._0_c00026{width:5.568000pt;}
._8_c00026{width:6.464000pt;}
._a_c00026{width:7.552000pt;}
._c_c00026{width:8.704000pt;}
._b_c00026{width:10.368000pt;}
._4_c00026{width:11.264000pt;}
._1_c00026{width:12.224000pt;}
._3_c00026{width:13.376000pt;}
._e_c00026{width:14.272000pt;}
._10_c00026{width:15.296000pt;}
._7_c00026{width:16.256000pt;}
._9_c00026{width:21.660396pt;}
._2_c00026{width:22.627604pt;}
._f_c00026{width:28.288000pt;}
.fs4_c00026{font-size:32.000000pt;}
.fs2_c00026{font-size:37.120000pt;}
.fs5_c00026{font-size:52.480000pt;}
.fs7_c00026{font-size:53.333333pt;}
.fs6_c00026{font-size:54.095146pt;}
.fs3_c00026{font-size:57.600000pt;}
.fs0_c00026{font-size:64.000000pt;}
.fs1_c00026{font-size:65.969690pt;}
.y0_c00026{bottom:0.000000pt;}
.y32_c00026{bottom:2.773467pt;}
.y31_c00026{bottom:30.884000pt;}
.y1_c00026{bottom:48.000000pt;}
.y30_c00026{bottom:54.760000pt;}
.y2f_c00026{bottom:70.120000pt;}
.y2e_c00026{bottom:85.800000pt;}
.y2d_c00026{bottom:95.720000pt;}
.y2c_c00026{bottom:95.721600pt;}
.y2b_c00026{bottom:116.840000pt;}
.y2a_c00026{bottom:127.076480pt;}
.y29_c00026{bottom:147.880000pt;}
.y28_c00026{bottom:171.880000pt;}
.y27_c00026{bottom:220.200000pt;}
.y26_c00026{bottom:239.080000pt;}
.y25_c00026{bottom:257.640000pt;}
.y24_c00026{bottom:276.200000pt;}
.y23_c00026{bottom:295.080000pt;}
.y22_c00026{bottom:327.080000pt;}
.y21_c00026{bottom:345.640000pt;}
.y20_c00026{bottom:364.200000pt;}
.y1f_c00026{bottom:383.080000pt;}
.y1e_c00026{bottom:401.640000pt;}
.y1d_c00026{bottom:420.200000pt;}
.y1c_c00026{bottom:439.080000pt;}
.y1b_c00026{bottom:457.640000pt;}
.y1a_c00026{bottom:489.640000pt;}
.y19_c00026{bottom:508.200000pt;}
.y18_c00026{bottom:527.080000pt;}
.y17_c00026{bottom:545.640000pt;}
.y16_c00026{bottom:564.200000pt;}
.y15_c00026{bottom:583.080000pt;}
.y14_c00026{bottom:615.080000pt;}
.y13_c00026{bottom:633.640000pt;}
.y12_c00026{bottom:652.520000pt;}
.y11_c00026{bottom:671.080000pt;}
.y10_c00026{bottom:689.640000pt;}
.yf_c00026{bottom:708.520000pt;}
.ye_c00026{bottom:727.080000pt;}
.yd_c00026{bottom:745.640000pt;}
.yc_c00026{bottom:764.520000pt;}
.yb_c00026{bottom:783.080000pt;}
.ya_c00026{bottom:815.080000pt;}
.y9_c00026{bottom:833.640000pt;}
.y8_c00026{bottom:852.520000pt;}
.y7_c00026{bottom:871.080000pt;}
.y6_c00026{bottom:889.640000pt;}
.y5_c00026{bottom:908.520000pt;}
.y4_c00026{bottom:927.080000pt;}
.y3_c00026{bottom:945.640000pt;}
.y2_c00026{bottom:964.520000pt;}
.ha_c00026{height:17.116000pt;}
.h7_c00026{height:28.992000pt;}
.h6_c00026{height:40.021875pt;}
.hb_c00026{height:41.173333pt;}
.h8_c00026{height:47.546880pt;}
.h9_c00026{height:49.010202pt;}
.h3_c00026{height:57.984000pt;}
.h4_c00026{height:59.768539pt;}
.h5_c00026{height:60.510720pt;}
.h2_c00026{height:1067.880000pt;}
.h0_c00026{height:1122.520000pt;}
.h1_c00026{height:1122.666667pt;}
.w3_c00026{width:14.826667pt;}
.w2_c00026{width:767.960000pt;}
.w0_c00026{width:793.720000pt;}
.w1_c00026{width:794.000000pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:12.880000pt;}
.x2_c00026{left:100.480133pt;}
.x6_c00026{left:138.719733pt;}
.xf_c00026{left:163.615200pt;}
.x3_c00026{left:171.763733pt;}
.x10_c00026{left:237.528933pt;}
.x11_c00026{left:259.008133pt;}
.xd_c00026{left:295.271467pt;}
.xc_c00026{left:307.332000pt;}
.xb_c00026{left:374.618133pt;}
.x7_c00026{left:469.299067pt;}
.xe_c00026{left:514.056667pt;}
.x4_c00026{left:625.057867pt;}
.x5_c00026{left:640.325867pt;}
.x8_c00026{left:643.785200pt;}
.x9_c00026{left:652.680933pt;}
.xa_c00026{left:659.013333pt;}
.x12_c00026{left:682.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_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_b590229cd05fb1526a17b985.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.134000;font-style:normal;font-weight:normal;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_81efba4f1c0be100b90eb3b3.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_fdb184932610b7249a66a128.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:0.787000;font-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_c00027{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00027{vertical-align:-24.480000px;}
.v0_c00027{vertical-align:0.000000px;}
.v1_c00027{vertical-align:30.240000px;}
.ls1_c00027{letter-spacing:-0.179568px;}
.ls0_c00027{letter-spacing:0.000000px;}
.ls4_c00027{letter-spacing:0.144000px;}
.ls5_c00027{letter-spacing:0.265680px;}
.ls7_c00027{letter-spacing:0.371952px;}
.ls3_c00027{letter-spacing:0.466128px;}
.ls9_c00027{letter-spacing:0.531360px;}
.ls2_c00027{letter-spacing:0.696384px;}
.ls8_c00027{letter-spacing:0.712027px;}
.ls6_c00027{letter-spacing:8.838288px;}
.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:-20.016000px;}
.ws4_c00027{word-spacing:-17.630284px;}
.ws2_c00027{word-spacing:-16.078608px;}
.ws1_c00027{word-spacing:-11.429712px;}
.ws3_c00027{word-spacing:-10.152000px;}
.ws5_c00027{word-spacing:0.000000px;}
._12_c00027{margin-left:-16.177800px;}
._11_c00027{margin-left:-10.821600px;}
._13_c00027{margin-left:-8.612640px;}
._14_c00027{margin-left:-7.467840px;}
._f_c00027{margin-left:-1.071840px;}
._4_c00027{width:1.008000px;}
._2_c00027{width:2.088000px;}
._9_c00027{width:4.104000px;}
._1_c00027{width:5.571384px;}
._0_c00027{width:6.812616px;}
._6_c00027{width:8.424000px;}
._d_c00027{width:10.080000px;}
._8_c00027{width:11.376000px;}
._c_c00027{width:13.794816px;}
._7_c00027{width:14.904000px;}
._3_c00027{width:16.200000px;}
._e_c00027{width:17.250438px;}
._5_c00027{width:23.328000px;}
._a_c00027{width:24.674616px;}
._10_c00027{width:33.120000px;}
._b_c00027{width:48.456000px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs5_c00027{font-size:36.000000px;}
.fs1_c00027{font-size:41.760000px;}
.fs3_c00027{font-size:56.160000px;}
.fs6_c00027{font-size:59.040000px;}
.fs8_c00027{font-size:60.000000px;}
.fs7_c00027{font-size:60.857039px;}
.fs4_c00027{font-size:64.800000px;}
.fs0_c00027{font-size:72.000000px;}
.fs2_c00027{font-size:74.215901px;}
.y0_c00027{bottom:0.000000px;}
.y34_c00027{bottom:3.120150px;}
.y33_c00027{bottom:34.744500px;}
.y1_c00027{bottom:54.000000px;}
.y32_c00027{bottom:55.485000px;}
.y31_c00027{bottom:61.605000px;}
.y30_c00027{bottom:72.766800px;}
.y2f_c00027{bottom:90.405000px;}
.y2e_c00027{bottom:96.525000px;}
.y2d_c00027{bottom:113.805000px;}
.y2c_c00027{bottom:131.445000px;}
.y2b_c00027{bottom:149.085000px;}
.y2a_c00027{bottom:166.365000px;}
.y29_c00027{bottom:177.886800px;}
.y28_c00027{bottom:201.645000px;}
.y27_c00027{bottom:218.925000px;}
.y26_c00027{bottom:236.565000px;}
.y25_c00027{bottom:263.205000px;}
.y24_c00027{bottom:295.965000px;}
.y23_c00027{bottom:316.845000px;}
.y22_c00027{bottom:337.725000px;}
.y21_c00027{bottom:373.725000px;}
.y20_c00027{bottom:394.965000px;}
.y1f_c00027{bottom:415.845000px;}
.y1e_c00027{bottom:451.845000px;}
.y1d_c00027{bottom:487.845000px;}
.y1c_c00027{bottom:523.845000px;}
.y1b_c00027{bottom:544.725000px;}
.y1a_c00027{bottom:565.965000px;}
.y19_c00027{bottom:586.845000px;}
.y18_c00027{bottom:607.725000px;}
.y17_c00027{bottom:628.965000px;}
.y16_c00027{bottom:649.845000px;}
.y15_c00027{bottom:670.725000px;}
.y14_c00027{bottom:691.965000px;}
.y13_c00027{bottom:712.845000px;}
.y12_c00027{bottom:734.085000px;}
.y11_c00027{bottom:754.965000px;}
.y10_c00027{bottom:775.845000px;}
.yf_c00027{bottom:797.085000px;}
.ye_c00027{bottom:817.965000px;}
.yd_c00027{bottom:838.845000px;}
.yc_c00027{bottom:860.085000px;}
.yb_c00027{bottom:880.965000px;}
.ya_c00027{bottom:901.845000px;}
.y9_c00027{bottom:923.085000px;}
.y8_c00027{bottom:943.965000px;}
.y7_c00027{bottom:964.845000px;}
.y6_c00027{bottom:986.085000px;}
.y5_c00027{bottom:1022.085000px;}
.y4_c00027{bottom:1042.965000px;}
.y3_c00027{bottom:1063.845000px;}
.y2_c00027{bottom:1085.085000px;}
.ha_c00027{height:19.255500px;}
.h7_c00027{height:32.616000px;}
.h6_c00027{height:45.024609px;}
.hb_c00027{height:46.320000px;}
.h8_c00027{height:53.490240px;}
.h9_c00027{height:55.136477px;}
.h4_c00027{height:65.232000px;}
.h5_c00027{height:67.239607px;}
.h3_c00027{height:68.074560px;}
.h2_c00027{height:1201.365000px;}
.h0_c00027{height:1262.835000px;}
.h1_c00027{height:1263.000000px;}
.w3_c00027{width:16.680000px;}
.w2_c00027{width:863.955000px;}
.w0_c00027{width:892.935000px;}
.w1_c00027{width:893.250000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:14.490000px;}
.x2_c00027{left:113.040150px;}
.x4_c00027{left:128.534250px;}
.x5_c00027{left:154.014750px;}
.x6_c00027{left:223.080300px;}
.x3_c00027{left:231.288150px;}
.x7_c00027{left:768.255000px;}
@media print{
.v2_c00027{vertical-align:-21.760000pt;}
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:26.880000pt;}
.ls1_c00027{letter-spacing:-0.159616pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ls4_c00027{letter-spacing:0.128000pt;}
.ls5_c00027{letter-spacing:0.236160pt;}
.ls7_c00027{letter-spacing:0.330624pt;}
.ls3_c00027{letter-spacing:0.414336pt;}
.ls9_c00027{letter-spacing:0.472320pt;}
.ls2_c00027{letter-spacing:0.619008pt;}
.ls8_c00027{letter-spacing:0.632913pt;}
.ls6_c00027{letter-spacing:7.856256pt;}
.ws0_c00027{word-spacing:-17.792000pt;}
.ws4_c00027{word-spacing:-15.671364pt;}
.ws2_c00027{word-spacing:-14.292096pt;}
.ws1_c00027{word-spacing:-10.159744pt;}
.ws3_c00027{word-spacing:-9.024000pt;}
.ws5_c00027{word-spacing:0.000000pt;}
._12_c00027{margin-left:-14.380267pt;}
._11_c00027{margin-left:-9.619200pt;}
._13_c00027{margin-left:-7.655680pt;}
._14_c00027{margin-left:-6.638080pt;}
._f_c00027{margin-left:-0.952747pt;}
._4_c00027{width:0.896000pt;}
._2_c00027{width:1.856000pt;}
._9_c00027{width:3.648000pt;}
._1_c00027{width:4.952341pt;}
._0_c00027{width:6.055659pt;}
._6_c00027{width:7.488000pt;}
._d_c00027{width:8.960000pt;}
._8_c00027{width:10.112000pt;}
._c_c00027{width:12.262059pt;}
._7_c00027{width:13.248000pt;}
._3_c00027{width:14.400000pt;}
._e_c00027{width:15.333723pt;}
._5_c00027{width:20.736000pt;}
._a_c00027{width:21.932992pt;}
._10_c00027{width:29.440000pt;}
._b_c00027{width:43.072000pt;}
.fs5_c00027{font-size:32.000000pt;}
.fs1_c00027{font-size:37.120000pt;}
.fs3_c00027{font-size:49.920000pt;}
.fs6_c00027{font-size:52.480000pt;}
.fs8_c00027{font-size:53.333333pt;}
.fs7_c00027{font-size:54.095146pt;}
.fs4_c00027{font-size:57.600000pt;}
.fs0_c00027{font-size:64.000000pt;}
.fs2_c00027{font-size:65.969690pt;}
.y0_c00027{bottom:0.000000pt;}
.y34_c00027{bottom:2.773467pt;}
.y33_c00027{bottom:30.884000pt;}
.y1_c00027{bottom:48.000000pt;}
.y32_c00027{bottom:49.320000pt;}
.y31_c00027{bottom:54.760000pt;}
.y30_c00027{bottom:64.681600pt;}
.y2f_c00027{bottom:80.360000pt;}
.y2e_c00027{bottom:85.800000pt;}
.y2d_c00027{bottom:101.160000pt;}
.y2c_c00027{bottom:116.840000pt;}
.y2b_c00027{bottom:132.520000pt;}
.y2a_c00027{bottom:147.880000pt;}
.y29_c00027{bottom:158.121600pt;}
.y28_c00027{bottom:179.240000pt;}
.y27_c00027{bottom:194.600000pt;}
.y26_c00027{bottom:210.280000pt;}
.y25_c00027{bottom:233.960000pt;}
.y24_c00027{bottom:263.080000pt;}
.y23_c00027{bottom:281.640000pt;}
.y22_c00027{bottom:300.200000pt;}
.y21_c00027{bottom:332.200000pt;}
.y20_c00027{bottom:351.080000pt;}
.y1f_c00027{bottom:369.640000pt;}
.y1e_c00027{bottom:401.640000pt;}
.y1d_c00027{bottom:433.640000pt;}
.y1c_c00027{bottom:465.640000pt;}
.y1b_c00027{bottom:484.200000pt;}
.y1a_c00027{bottom:503.080000pt;}
.y19_c00027{bottom:521.640000pt;}
.y18_c00027{bottom:540.200000pt;}
.y17_c00027{bottom:559.080000pt;}
.y16_c00027{bottom:577.640000pt;}
.y15_c00027{bottom:596.200000pt;}
.y14_c00027{bottom:615.080000pt;}
.y13_c00027{bottom:633.640000pt;}
.y12_c00027{bottom:652.520000pt;}
.y11_c00027{bottom:671.080000pt;}
.y10_c00027{bottom:689.640000pt;}
.yf_c00027{bottom:708.520000pt;}
.ye_c00027{bottom:727.080000pt;}
.yd_c00027{bottom:745.640000pt;}
.yc_c00027{bottom:764.520000pt;}
.yb_c00027{bottom:783.080000pt;}
.ya_c00027{bottom:801.640000pt;}
.y9_c00027{bottom:820.520000pt;}
.y8_c00027{bottom:839.080000pt;}
.y7_c00027{bottom:857.640000pt;}
.y6_c00027{bottom:876.520000pt;}
.y5_c00027{bottom:908.520000pt;}
.y4_c00027{bottom:927.080000pt;}
.y3_c00027{bottom:945.640000pt;}
.y2_c00027{bottom:964.520000pt;}
.ha_c00027{height:17.116000pt;}
.h7_c00027{height:28.992000pt;}
.h6_c00027{height:40.021875pt;}
.hb_c00027{height:41.173333pt;}
.h8_c00027{height:47.546880pt;}
.h9_c00027{height:49.010202pt;}
.h4_c00027{height:57.984000pt;}
.h5_c00027{height:59.768539pt;}
.h3_c00027{height:60.510720pt;}
.h2_c00027{height:1067.880000pt;}
.h0_c00027{height:1122.520000pt;}
.h1_c00027{height:1122.666667pt;}
.w3_c00027{width:14.826667pt;}
.w2_c00027{width:767.960000pt;}
.w0_c00027{width:793.720000pt;}
.w1_c00027{width:794.000000pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:12.880000pt;}
.x2_c00027{left:100.480133pt;}
.x4_c00027{left:114.252667pt;}
.x5_c00027{left:136.902000pt;}
.x6_c00027{left:198.293600pt;}
.x3_c00027{left:205.589467pt;}
.x7_c00027{left:682.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_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_1ad012ebcd4a2c4a80aa89d6.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.134000;font-style:normal;font-weight:normal;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_07f601e2fcbcc2d0e9d0ec2d.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.134000;font-style:normal;font-weight:normal;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_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_efd97a76a79f55ee800f25b9.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:0.787000;font-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_c00028{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00028{vertical-align:-24.480000px;}
.v0_c00028{vertical-align:0.000000px;}
.v1_c00028{vertical-align:30.240000px;}
.ls2_c00028{letter-spacing:-0.179568px;}
.ls1_c00028{letter-spacing:0.000000px;}
.ls3_c00028{letter-spacing:0.144000px;}
.ls0_c00028{letter-spacing:0.232800px;}
.ls4_c00028{letter-spacing:0.265680px;}
.ls5_c00028{letter-spacing:0.531360px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-20.016000px;}
.ws1_c00028{word-spacing:-11.429712px;}
.ws2_c00028{word-spacing:-10.152000px;}
.ws3_c00028{word-spacing:0.000000px;}
._11_c00028{margin-left:-16.177800px;}
._10_c00028{margin-left:-10.821600px;}
._6_c00028{width:1.008000px;}
._9_c00028{width:2.880000px;}
._3_c00028{width:4.392000px;}
._c_c00028{width:6.382568px;}
._4_c00028{width:7.776000px;}
._5_c00028{width:9.720000px;}
._7_c00028{width:12.096000px;}
._2_c00028{width:13.536000px;}
._a_c00028{width:15.048000px;}
._f_c00028{width:16.344000px;}
._d_c00028{width:17.424000px;}
._8_c00028{width:18.432000px;}
._0_c00028{width:26.712000px;}
._1_c00028{width:28.584000px;}
._e_c00028{width:33.840000px;}
._b_c00028{width:35.712000px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs4_c00028{font-size:36.000000px;}
.fs1_c00028{font-size:41.760000px;}
.fs5_c00028{font-size:59.040000px;}
.fs6_c00028{font-size:60.000000px;}
.fs3_c00028{font-size:64.800000px;}
.fs0_c00028{font-size:72.000000px;}
.fs2_c00028{font-size:74.215901px;}
.y0_c00028{bottom:0.000000px;}
.y25_c00028{bottom:3.120150px;}
.y24_c00028{bottom:34.744500px;}
.y1_c00028{bottom:54.000000px;}
.y23_c00028{bottom:61.605000px;}
.y22_c00028{bottom:78.885000px;}
.y21_c00028{bottom:105.525000px;}
.y20_c00028{bottom:424.845000px;}
.y1f_c00028{bottom:445.725000px;}
.y1e_c00028{bottom:466.965000px;}
.y1d_c00028{bottom:487.845000px;}
.y1c_c00028{bottom:508.725000px;}
.y1b_c00028{bottom:529.965000px;}
.y1a_c00028{bottom:550.845000px;}
.y19_c00028{bottom:571.725000px;}
.y18_c00028{bottom:592.965000px;}
.y17_c00028{bottom:613.845000px;}
.y16_c00028{bottom:634.725000px;}
.y15_c00028{bottom:670.725000px;}
.y14_c00028{bottom:691.965000px;}
.y13_c00028{bottom:712.845000px;}
.y12_c00028{bottom:734.085000px;}
.y11_c00028{bottom:754.965000px;}
.y10_c00028{bottom:775.845000px;}
.yf_c00028{bottom:797.085000px;}
.ye_c00028{bottom:817.965000px;}
.yd_c00028{bottom:838.845000px;}
.yc_c00028{bottom:874.845000px;}
.yb_c00028{bottom:896.085000px;}
.ya_c00028{bottom:916.965000px;}
.y9_c00028{bottom:937.845000px;}
.y8_c00028{bottom:959.085000px;}
.y7_c00028{bottom:979.965000px;}
.y6_c00028{bottom:1000.845000px;}
.y5_c00028{bottom:1022.085000px;}
.y4_c00028{bottom:1042.965000px;}
.y3_c00028{bottom:1063.845000px;}
.y2_c00028{bottom:1085.085000px;}
.h8_c00028{height:19.255500px;}
.h7_c00028{height:32.616000px;}
.h6_c00028{height:45.024609px;}
.h9_c00028{height:46.320000px;}
.h3_c00028{height:65.232000px;}
.h5_c00028{height:67.239607px;}
.h4_c00028{height:68.074560px;}
.h2_c00028{height:1201.365000px;}
.h0_c00028{height:1262.835000px;}
.h1_c00028{height:1263.000000px;}
.w3_c00028{width:16.680000px;}
.w2_c00028{width:863.955000px;}
.w0_c00028{width:892.935000px;}
.w1_c00028{width:893.250000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:14.490000px;}
.x2_c00028{left:113.040150px;}
.x6_c00028{left:194.523150px;}
.xb_c00028{left:208.412400px;}
.x7_c00028{left:382.973550px;}
.x5_c00028{left:497.728650px;}
.x4_c00028{left:518.377800px;}
.xc_c00028{left:530.340450px;}
.x8_c00028{left:635.924100px;}
.x9_c00028{left:659.128800px;}
.xa_c00028{left:664.333650px;}
.x3_c00028{left:677.382900px;}
.xd_c00028{left:768.255000px;}
@media print{
.v2_c00028{vertical-align:-21.760000pt;}
.v0_c00028{vertical-align:0.000000pt;}
.v1_c00028{vertical-align:26.880000pt;}
.ls2_c00028{letter-spacing:-0.159616pt;}
.ls1_c00028{letter-spacing:0.000000pt;}
.ls3_c00028{letter-spacing:0.128000pt;}
.ls0_c00028{letter-spacing:0.206933pt;}
.ls4_c00028{letter-spacing:0.236160pt;}
.ls5_c00028{letter-spacing:0.472320pt;}
.ws0_c00028{word-spacing:-17.792000pt;}
.ws1_c00028{word-spacing:-10.159744pt;}
.ws2_c00028{word-spacing:-9.024000pt;}
.ws3_c00028{word-spacing:0.000000pt;}
._11_c00028{margin-left:-14.380267pt;}
._10_c00028{margin-left:-9.619200pt;}
._6_c00028{width:0.896000pt;}
._9_c00028{width:2.560000pt;}
._3_c00028{width:3.904000pt;}
._c_c00028{width:5.673393pt;}
._4_c00028{width:6.912000pt;}
._5_c00028{width:8.640000pt;}
._7_c00028{width:10.752000pt;}
._2_c00028{width:12.032000pt;}
._a_c00028{width:13.376000pt;}
._f_c00028{width:14.528000pt;}
._d_c00028{width:15.488000pt;}
._8_c00028{width:16.384000pt;}
._0_c00028{width:23.744000pt;}
._1_c00028{width:25.408000pt;}
._e_c00028{width:30.080000pt;}
._b_c00028{width:31.744000pt;}
.fs4_c00028{font-size:32.000000pt;}
.fs1_c00028{font-size:37.120000pt;}
.fs5_c00028{font-size:52.480000pt;}
.fs6_c00028{font-size:53.333333pt;}
.fs3_c00028{font-size:57.600000pt;}
.fs0_c00028{font-size:64.000000pt;}
.fs2_c00028{font-size:65.969690pt;}
.y0_c00028{bottom:0.000000pt;}
.y25_c00028{bottom:2.773467pt;}
.y24_c00028{bottom:30.884000pt;}
.y1_c00028{bottom:48.000000pt;}
.y23_c00028{bottom:54.760000pt;}
.y22_c00028{bottom:70.120000pt;}
.y21_c00028{bottom:93.800000pt;}
.y20_c00028{bottom:377.640000pt;}
.y1f_c00028{bottom:396.200000pt;}
.y1e_c00028{bottom:415.080000pt;}
.y1d_c00028{bottom:433.640000pt;}
.y1c_c00028{bottom:452.200000pt;}
.y1b_c00028{bottom:471.080000pt;}
.y1a_c00028{bottom:489.640000pt;}
.y19_c00028{bottom:508.200000pt;}
.y18_c00028{bottom:527.080000pt;}
.y17_c00028{bottom:545.640000pt;}
.y16_c00028{bottom:564.200000pt;}
.y15_c00028{bottom:596.200000pt;}
.y14_c00028{bottom:615.080000pt;}
.y13_c00028{bottom:633.640000pt;}
.y12_c00028{bottom:652.520000pt;}
.y11_c00028{bottom:671.080000pt;}
.y10_c00028{bottom:689.640000pt;}
.yf_c00028{bottom:708.520000pt;}
.ye_c00028{bottom:727.080000pt;}
.yd_c00028{bottom:745.640000pt;}
.yc_c00028{bottom:777.640000pt;}
.yb_c00028{bottom:796.520000pt;}
.ya_c00028{bottom:815.080000pt;}
.y9_c00028{bottom:833.640000pt;}
.y8_c00028{bottom:852.520000pt;}
.y7_c00028{bottom:871.080000pt;}
.y6_c00028{bottom:889.640000pt;}
.y5_c00028{bottom:908.520000pt;}
.y4_c00028{bottom:927.080000pt;}
.y3_c00028{bottom:945.640000pt;}
.y2_c00028{bottom:964.520000pt;}
.h8_c00028{height:17.116000pt;}
.h7_c00028{height:28.992000pt;}
.h6_c00028{height:40.021875pt;}
.h9_c00028{height:41.173333pt;}
.h3_c00028{height:57.984000pt;}
.h5_c00028{height:59.768539pt;}
.h4_c00028{height:60.510720pt;}
.h2_c00028{height:1067.880000pt;}
.h0_c00028{height:1122.520000pt;}
.h1_c00028{height:1122.666667pt;}
.w3_c00028{width:14.826667pt;}
.w2_c00028{width:767.960000pt;}
.w0_c00028{width:793.720000pt;}
.w1_c00028{width:794.000000pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:12.880000pt;}
.x2_c00028{left:100.480133pt;}
.x6_c00028{left:172.909467pt;}
.xb_c00028{left:185.255467pt;}
.x7_c00028{left:340.420933pt;}
.x5_c00028{left:442.425467pt;}
.x4_c00028{left:460.780267pt;}
.xc_c00028{left:471.413733pt;}
.x8_c00028{left:565.265867pt;}
.x9_c00028{left:585.892267pt;}
.xa_c00028{left:590.518800pt;}
.x3_c00028{left:602.118133pt;}
.xd_c00028{left:682.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_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_12e6f51f4ef40299af93e4a7.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.134000;font-style:normal;font-weight:normal;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_025d7bdfbd238bbd06a23894.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.134000;font-style:normal;font-weight:normal;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_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;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:ff5_c00029;src:url('chunks/assets/font_3cdca110a77f1202a9b0114b.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:0.787000;font-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_c00029{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00029{vertical-align:-24.480000px;}
.v0_c00029{vertical-align:0.000000px;}
.v1_c00029{vertical-align:30.240000px;}
.lse_c00029{letter-spacing:-0.179568px;}
.lsb_c00029{letter-spacing:0.000000px;}
.ls10_c00029{letter-spacing:0.144000px;}
.ls11_c00029{letter-spacing:0.265680px;}
.lsd_c00029{letter-spacing:5.335200px;}
.ls3_c00029{letter-spacing:5.976000px;}
.lsc_c00029{letter-spacing:6.555168px;}
.ls2_c00029{letter-spacing:6.648480px;}
.ls1_c00029{letter-spacing:8.230464px;}
.ls0_c00029{letter-spacing:8.458560px;}
.ls5_c00029{letter-spacing:23.976000px;}
.ls6_c00029{letter-spacing:25.920000px;}
.lsf_c00029{letter-spacing:26.157600px;}
.ls4_c00029{letter-spacing:28.008000px;}
.ls8_c00029{letter-spacing:29.664000px;}
.ls7_c00029{letter-spacing:32.040000px;}
.ls9_c00029{letter-spacing:40.032000px;}
.lsa_c00029{letter-spacing:43.992000px;}
.sc__c00029{text-shadow:none;}
.sc1_c00029{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_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;}
.sc1_c00029{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:-28.265760px;}
.ws1_c00029{word-spacing:-11.429712px;}
.ws2_c00029{word-spacing:-10.152000px;}
.ws3_c00029{word-spacing:0.000000px;}
._d_c00029{margin-left:-29.664000px;}
._b_c00029{margin-left:-25.920000px;}
._10_c00029{margin-left:-20.203200px;}
._13_c00029{margin-left:-16.177800px;}
._12_c00029{margin-left:-10.821600px;}
._2_c00029{margin-left:-1.319280px;}
._0_c00029{width:1.048608px;}
._8_c00029{width:3.384000px;}
._a_c00029{width:4.464000px;}
._3_c00029{width:5.804880px;}
._6_c00029{width:7.020480px;}
._1_c00029{width:8.483280px;}
._9_c00029{width:9.580320px;}
._5_c00029{width:12.744000px;}
._11_c00029{width:14.400000px;}
._4_c00029{width:15.768000px;}
._7_c00029{width:18.864000px;}
._f_c00029{width:20.160000px;}
._c_c00029{width:25.920000px;}
._e_c00029{width:29.664000px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs7_c00029{font-size:36.000000px;}
.fs5_c00029{font-size:41.760000px;}
.fs4_c00029{font-size:56.160000px;}
.fs8_c00029{font-size:59.040000px;}
.fs9_c00029{font-size:60.000000px;}
.fs6_c00029{font-size:64.800000px;}
.fs0_c00029{font-size:72.000000px;}
.fs3_c00029{font-size:74.215901px;}
.fs2_c00029{font-size:77.760000px;}
.fs1_c00029{font-size:95.040000px;}
.y0_c00029{bottom:0.000000px;}
.y2c_c00029{bottom:3.120150px;}
.y2b_c00029{bottom:34.744500px;}
.y1_c00029{bottom:54.000000px;}
.y2a_c00029{bottom:61.605000px;}
.y29_c00029{bottom:88.245000px;}
.y28_c00029{bottom:122.805000px;}
.y27_c00029{bottom:143.685000px;}
.y26_c00029{bottom:164.925000px;}
.y25_c00029{bottom:185.805000px;}
.y24_c00029{bottom:206.685000px;}
.y23_c00029{bottom:227.925000px;}
.y22_c00029{bottom:248.805000px;}
.y21_c00029{bottom:269.685000px;}
.y20_c00029{bottom:290.925000px;}
.y1f_c00029{bottom:311.805000px;}
.y1e_c00029{bottom:332.685000px;}
.y1d_c00029{bottom:353.925000px;}
.y1c_c00029{bottom:374.805000px;}
.y1b_c00029{bottom:395.685000px;}
.y1a_c00029{bottom:416.925000px;}
.y19_c00029{bottom:437.805000px;}
.y18_c00029{bottom:473.805000px;}
.y17_c00029{bottom:495.045000px;}
.y16_c00029{bottom:515.925000px;}
.y15_c00029{bottom:536.805000px;}
.y14_c00029{bottom:572.805000px;}
.y13_c00029{bottom:594.045000px;}
.y12_c00029{bottom:614.925000px;}
.y11_c00029{bottom:635.805000px;}
.y10_c00029{bottom:671.805000px;}
.yf_c00029{bottom:693.045000px;}
.ye_c00029{bottom:729.045000px;}
.yd_c00029{bottom:765.045000px;}
.yc_c00029{bottom:785.925000px;}
.yb_c00029{bottom:806.805000px;}
.ya_c00029{bottom:828.045000px;}
.y9_c00029{bottom:848.925000px;}
.y8_c00029{bottom:869.805000px;}
.y7_c00029{bottom:891.045000px;}
.y6_c00029{bottom:928.489320px;}
.y5_c00029{bottom:971.685000px;}
.y4_c00029{bottom:1013.085000px;}
.y3_c00029{bottom:1049.085000px;}
.y2_c00029{bottom:1085.085000px;}
.h9_c00029{height:19.255500px;}
.h8_c00029{height:32.616000px;}
.h7_c00029{height:45.024609px;}
.ha_c00029{height:46.320000px;}
.h3_c00029{height:65.232000px;}
.h5_c00029{height:67.239607px;}
.h6_c00029{height:68.074560px;}
.h4_c00029{height:86.106240px;}
.h2_c00029{height:1201.365000px;}
.h0_c00029{height:1262.835000px;}
.h1_c00029{height:1263.000000px;}
.w3_c00029{width:16.680000px;}
.w2_c00029{width:863.955000px;}
.w0_c00029{width:892.935000px;}
.w1_c00029{width:893.250000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:14.490000px;}
.x2_c00029{left:113.040150px;}
.x10_c00029{left:140.482200px;}
.x16_c00029{left:167.045100px;}
.x17_c00029{left:194.045100px;}
.xe_c00029{left:207.034500px;}
.x3_c00029{left:214.027500px;}
.xf_c00029{left:274.047300px;}
.x22_c00029{left:336.507600px;}
.x8_c00029{left:340.301250px;}
.x18_c00029{left:342.051600px;}
.x1e_c00029{left:376.539600px;}
.x19_c00029{left:385.016550px;}
.x20_c00029{left:389.498250px;}
.x11_c00029{left:392.214450px;}
.x1a_c00029{left:403.016250px;}
.x9_c00029{left:410.303250px;}
.x6_c00029{left:425.351250px;}
.x4_c00029{left:431.722080px;}
.x5_c00029{left:440.309250px;}
.x23_c00029{left:451.508100px;}
.xc_c00029{left:459.102900px;}
.x7_c00029{left:511.355250px;}
.xd_c00029{left:520.122150px;}
.x1b_c00029{left:525.018000px;}
.x1f_c00029{left:563.556150px;}
.x12_c00029{left:615.533250px;}
.xb_c00029{left:617.316000px;}
.x14_c00029{left:623.084100px;}
.x1d_c00029{left:625.511700px;}
.x13_c00029{left:626.973600px;}
.x1c_c00029{left:646.029750px;}
.x15_c00029{left:678.036900px;}
.x21_c00029{left:688.563750px;}
.xa_c00029{left:750.390000px;}
.x24_c00029{left:768.255000px;}
@media print{
.v2_c00029{vertical-align:-21.760000pt;}
.v0_c00029{vertical-align:0.000000pt;}
.v1_c00029{vertical-align:26.880000pt;}
.lse_c00029{letter-spacing:-0.159616pt;}
.lsb_c00029{letter-spacing:0.000000pt;}
.ls10_c00029{letter-spacing:0.128000pt;}
.ls11_c00029{letter-spacing:0.236160pt;}
.lsd_c00029{letter-spacing:4.742400pt;}
.ls3_c00029{letter-spacing:5.312000pt;}
.lsc_c00029{letter-spacing:5.826816pt;}
.ls2_c00029{letter-spacing:5.909760pt;}
.ls1_c00029{letter-spacing:7.315968pt;}
.ls0_c00029{letter-spacing:7.518720pt;}
.ls5_c00029{letter-spacing:21.312000pt;}
.ls6_c00029{letter-spacing:23.040000pt;}
.lsf_c00029{letter-spacing:23.251200pt;}
.ls4_c00029{letter-spacing:24.896000pt;}
.ls8_c00029{letter-spacing:26.368000pt;}
.ls7_c00029{letter-spacing:28.480000pt;}
.ls9_c00029{letter-spacing:35.584000pt;}
.lsa_c00029{letter-spacing:39.104000pt;}
.ws0_c00029{word-spacing:-25.125120pt;}
.ws1_c00029{word-spacing:-10.159744pt;}
.ws2_c00029{word-spacing:-9.024000pt;}
.ws3_c00029{word-spacing:0.000000pt;}
._d_c00029{margin-left:-26.368000pt;}
._b_c00029{margin-left:-23.040000pt;}
._10_c00029{margin-left:-17.958400pt;}
._13_c00029{margin-left:-14.380267pt;}
._12_c00029{margin-left:-9.619200pt;}
._2_c00029{margin-left:-1.172693pt;}
._0_c00029{width:0.932096pt;}
._8_c00029{width:3.008000pt;}
._a_c00029{width:3.968000pt;}
._3_c00029{width:5.159893pt;}
._6_c00029{width:6.240427pt;}
._1_c00029{width:7.540693pt;}
._9_c00029{width:8.515840pt;}
._5_c00029{width:11.328000pt;}
._11_c00029{width:12.800000pt;}
._4_c00029{width:14.016000pt;}
._7_c00029{width:16.768000pt;}
._f_c00029{width:17.920000pt;}
._c_c00029{width:23.040000pt;}
._e_c00029{width:26.368000pt;}
.fs7_c00029{font-size:32.000000pt;}
.fs5_c00029{font-size:37.120000pt;}
.fs4_c00029{font-size:49.920000pt;}
.fs8_c00029{font-size:52.480000pt;}
.fs9_c00029{font-size:53.333333pt;}
.fs6_c00029{font-size:57.600000pt;}
.fs0_c00029{font-size:64.000000pt;}
.fs3_c00029{font-size:65.969690pt;}
.fs2_c00029{font-size:69.120000pt;}
.fs1_c00029{font-size:84.480000pt;}
.y0_c00029{bottom:0.000000pt;}
.y2c_c00029{bottom:2.773467pt;}
.y2b_c00029{bottom:30.884000pt;}
.y1_c00029{bottom:48.000000pt;}
.y2a_c00029{bottom:54.760000pt;}
.y29_c00029{bottom:78.440000pt;}
.y28_c00029{bottom:109.160000pt;}
.y27_c00029{bottom:127.720000pt;}
.y26_c00029{bottom:146.600000pt;}
.y25_c00029{bottom:165.160000pt;}
.y24_c00029{bottom:183.720000pt;}
.y23_c00029{bottom:202.600000pt;}
.y22_c00029{bottom:221.160000pt;}
.y21_c00029{bottom:239.720000pt;}
.y20_c00029{bottom:258.600000pt;}
.y1f_c00029{bottom:277.160000pt;}
.y1e_c00029{bottom:295.720000pt;}
.y1d_c00029{bottom:314.600000pt;}
.y1c_c00029{bottom:333.160000pt;}
.y1b_c00029{bottom:351.720000pt;}
.y1a_c00029{bottom:370.600000pt;}
.y19_c00029{bottom:389.160000pt;}
.y18_c00029{bottom:421.160000pt;}
.y17_c00029{bottom:440.040000pt;}
.y16_c00029{bottom:458.600000pt;}
.y15_c00029{bottom:477.160000pt;}
.y14_c00029{bottom:509.160000pt;}
.y13_c00029{bottom:528.040000pt;}
.y12_c00029{bottom:546.600000pt;}
.y11_c00029{bottom:565.160000pt;}
.y10_c00029{bottom:597.160000pt;}
.yf_c00029{bottom:616.040000pt;}
.ye_c00029{bottom:648.040000pt;}
.yd_c00029{bottom:680.040000pt;}
.yc_c00029{bottom:698.600000pt;}
.yb_c00029{bottom:717.160000pt;}
.ya_c00029{bottom:736.040000pt;}
.y9_c00029{bottom:754.600000pt;}
.y8_c00029{bottom:773.160000pt;}
.y7_c00029{bottom:792.040000pt;}
.y6_c00029{bottom:825.323840pt;}
.y5_c00029{bottom:863.720000pt;}
.y4_c00029{bottom:900.520000pt;}
.y3_c00029{bottom:932.520000pt;}
.y2_c00029{bottom:964.520000pt;}
.h9_c00029{height:17.116000pt;}
.h8_c00029{height:28.992000pt;}
.h7_c00029{height:40.021875pt;}
.ha_c00029{height:41.173333pt;}
.h3_c00029{height:57.984000pt;}
.h5_c00029{height:59.768539pt;}
.h6_c00029{height:60.510720pt;}
.h4_c00029{height:76.538880pt;}
.h2_c00029{height:1067.880000pt;}
.h0_c00029{height:1122.520000pt;}
.h1_c00029{height:1122.666667pt;}
.w3_c00029{width:14.826667pt;}
.w2_c00029{width:767.960000pt;}
.w0_c00029{width:793.720000pt;}
.w1_c00029{width:794.000000pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:12.880000pt;}
.x2_c00029{left:100.480133pt;}
.x10_c00029{left:124.873067pt;}
.x16_c00029{left:148.484533pt;}
.x17_c00029{left:172.484533pt;}
.xe_c00029{left:184.030667pt;}
.x3_c00029{left:190.246667pt;}
.xf_c00029{left:243.597600pt;}
.x22_c00029{left:299.117867pt;}
.x8_c00029{left:302.490000pt;}
.x18_c00029{left:304.045867pt;}
.x1e_c00029{left:334.701867pt;}
.x19_c00029{left:342.236933pt;}
.x20_c00029{left:346.220667pt;}
.x11_c00029{left:348.635067pt;}
.x1a_c00029{left:358.236667pt;}
.x9_c00029{left:364.714000pt;}
.x6_c00029{left:378.090000pt;}
.x4_c00029{left:383.752960pt;}
.x5_c00029{left:391.386000pt;}
.x23_c00029{left:401.340533pt;}
.xc_c00029{left:408.091467pt;}
.x7_c00029{left:454.538000pt;}
.xd_c00029{left:462.330800pt;}
.x1b_c00029{left:466.682667pt;}
.x1f_c00029{left:500.938800pt;}
.x12_c00029{left:547.140667pt;}
.xb_c00029{left:548.725333pt;}
.x14_c00029{left:553.852533pt;}
.x1d_c00029{left:556.010400pt;}
.x13_c00029{left:557.309867pt;}
.x1c_c00029{left:574.248667pt;}
.x15_c00029{left:602.699467pt;}
.x21_c00029{left:612.056667pt;}
.xa_c00029{left:667.013333pt;}
.x24_c00029{left:682.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_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_e51adb2c33f6aa4f8e3745d5.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.134000;font-style:normal;font-weight:normal;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_4fe89d5efde2e465fa672961.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_9dfa439570c32a2671ab6b89.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:0.787000;font-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_c00030{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00030{vertical-align:-24.480000px;}
.v0_c00030{vertical-align:0.000000px;}
.v1_c00030{vertical-align:30.240000px;}
.ls6_c00030{letter-spacing:-0.179568px;}
.ls5_c00030{letter-spacing:0.000000px;}
.ls0_c00030{letter-spacing:0.079800px;}
.ls8_c00030{letter-spacing:0.144000px;}
.ls9_c00030{letter-spacing:0.265680px;}
.ls4_c00030{letter-spacing:0.295200px;}
.lsa_c00030{letter-spacing:0.531360px;}
.ls3_c00030{letter-spacing:0.560880px;}
.ls7_c00030{letter-spacing:0.771845px;}
.ls2_c00030{letter-spacing:5.968800px;}
.ls1_c00030{letter-spacing:5.976000px;}
.sc__c00030{text-shadow:none;}
.sc1_c00030{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_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;}
.sc1_c00030{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:-11.429712px;}
.ws1_c00030{word-spacing:-10.152000px;}
.ws2_c00030{word-spacing:0.000000px;}
._15_c00030{margin-left:-16.177800px;}
._14_c00030{margin-left:-10.821600px;}
._16_c00030{margin-left:-1.114560px;}
._12_c00030{width:1.334795px;}
._a_c00030{width:2.376000px;}
._7_c00030{width:3.744000px;}
._1_c00030{width:4.968000px;}
._5_c00030{width:6.408000px;}
._8_c00030{width:7.560000px;}
._0_c00030{width:9.288000px;}
._c_c00030{width:10.584000px;}
._e_c00030{width:11.800328px;}
._3_c00030{width:13.320000px;}
._f_c00030{width:14.328000px;}
._9_c00030{width:15.768000px;}
._b_c00030{width:18.776623px;}
._13_c00030{width:20.023200px;}
._4_c00030{width:21.456000px;}
._2_c00030{width:27.648000px;}
._6_c00030{width:29.376000px;}
._d_c00030{width:30.528000px;}
._10_c00030{width:35.640000px;}
._11_c00030{width:36.736871px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs4_c00030{font-size:36.000000px;}
.fs2_c00030{font-size:41.760000px;}
.fs5_c00030{font-size:59.040000px;}
.fs6_c00030{font-size:60.000000px;}
.fs3_c00030{font-size:64.800000px;}
.fs0_c00030{font-size:72.000000px;}
.fs1_c00030{font-size:74.215901px;}
.y0_c00030{bottom:0.000000px;}
.y2f_c00030{bottom:3.120150px;}
.y2e_c00030{bottom:34.744500px;}
.y1_c00030{bottom:54.000000px;}
.y2d_c00030{bottom:61.605000px;}
.y2c_c00030{bottom:78.885000px;}
.y2b_c00030{bottom:96.525000px;}
.y2a_c00030{bottom:113.805000px;}
.y29_c00030{bottom:131.445000px;}
.y28_c00030{bottom:158.085000px;}
.y27_c00030{bottom:208.845000px;}
.y26_c00030{bottom:229.725000px;}
.y25_c00030{bottom:265.725000px;}
.y24_c00030{bottom:286.965000px;}
.y23_c00030{bottom:322.965000px;}
.y22_c00030{bottom:343.845000px;}
.y21_c00030{bottom:364.725000px;}
.y1f_c00030{bottom:385.965000px;}
.y20_c00030{bottom:393.525000px;}
.y1e_c00030{bottom:406.845000px;}
.y1d_c00030{bottom:427.725000px;}
.y1c_c00030{bottom:448.965000px;}
.y1b_c00030{bottom:469.845000px;}
.y1a_c00030{bottom:505.845000px;}
.y19_c00030{bottom:526.725000px;}
.y18_c00030{bottom:547.965000px;}
.y17_c00030{bottom:568.845000px;}
.y16_c00030{bottom:604.845000px;}
.y15_c00030{bottom:625.725000px;}
.y14_c00030{bottom:646.965000px;}
.y13_c00030{bottom:682.965000px;}
.y12_c00030{bottom:703.845000px;}
.y11_c00030{bottom:725.085000px;}
.y10_c00030{bottom:745.965000px;}
.yf_c00030{bottom:781.965000px;}
.ye_c00030{bottom:802.845000px;}
.yd_c00030{bottom:824.085000px;}
.yc_c00030{bottom:844.965000px;}
.yb_c00030{bottom:865.845000px;}
.ya_c00030{bottom:887.085000px;}
.y9_c00030{bottom:907.965000px;}
.y8_c00030{bottom:943.965000px;}
.y7_c00030{bottom:964.845000px;}
.y6_c00030{bottom:986.085000px;}
.y5_c00030{bottom:1006.965000px;}
.y4_c00030{bottom:1027.845000px;}
.y3_c00030{bottom:1049.085000px;}
.y2_c00030{bottom:1085.085000px;}
.h9_c00030{height:19.255500px;}
.h8_c00030{height:32.616000px;}
.h6_c00030{height:37.834560px;}
.h7_c00030{height:45.024609px;}
.ha_c00030{height:46.320000px;}
.h3_c00030{height:65.232000px;}
.h4_c00030{height:67.239607px;}
.h5_c00030{height:68.074560px;}
.h2_c00030{height:1201.365000px;}
.h0_c00030{height:1262.835000px;}
.h1_c00030{height:1263.000000px;}
.w3_c00030{width:16.680000px;}
.w2_c00030{width:863.955000px;}
.w0_c00030{width:892.935000px;}
.w1_c00030{width:893.250000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:14.490000px;}
.x3_c00030{left:113.040150px;}
.x1a_c00030{left:160.037100px;}
.xe_c00030{left:191.086950px;}
.x15_c00030{left:192.616650px;}
.x2_c00030{left:194.040150px;}
.xf_c00030{left:196.278450px;}
.x9_c00030{left:260.994150px;}
.x6_c00030{left:266.404200px;}
.x8_c00030{left:281.431650px;}
.x1b_c00030{left:284.019300px;}
.x1c_c00030{left:289.023150px;}
.x18_c00030{left:291.020850px;}
.x4_c00030{left:367.405200px;}
.x14_c00030{left:401.185200px;}
.xc_c00030{left:449.022900px;}
.x7_c00030{left:473.785050px;}
.x5_c00030{left:567.736050px;}
.x10_c00030{left:573.397650px;}
.x11_c00030{left:578.520000px;}
.x12_c00030{left:590.077050px;}
.x13_c00030{left:600.242100px;}
.x16_c00030{left:602.514000px;}
.xd_c00030{left:620.476650px;}
.x17_c00030{left:626.075250px;}
.x19_c00030{left:671.353350px;}
.xb_c00030{left:683.377050px;}
.xa_c00030{left:693.402900px;}
.x1d_c00030{left:768.255000px;}
@media print{
.v2_c00030{vertical-align:-21.760000pt;}
.v0_c00030{vertical-align:0.000000pt;}
.v1_c00030{vertical-align:26.880000pt;}
.ls6_c00030{letter-spacing:-0.159616pt;}
.ls5_c00030{letter-spacing:0.000000pt;}
.ls0_c00030{letter-spacing:0.070933pt;}
.ls8_c00030{letter-spacing:0.128000pt;}
.ls9_c00030{letter-spacing:0.236160pt;}
.ls4_c00030{letter-spacing:0.262400pt;}
.lsa_c00030{letter-spacing:0.472320pt;}
.ls3_c00030{letter-spacing:0.498560pt;}
.ls7_c00030{letter-spacing:0.686085pt;}
.ls2_c00030{letter-spacing:5.305600pt;}
.ls1_c00030{letter-spacing:5.312000pt;}
.ws0_c00030{word-spacing:-10.159744pt;}
.ws1_c00030{word-spacing:-9.024000pt;}
.ws2_c00030{word-spacing:0.000000pt;}
._15_c00030{margin-left:-14.380267pt;}
._14_c00030{margin-left:-9.619200pt;}
._16_c00030{margin-left:-0.990720pt;}
._12_c00030{width:1.186485pt;}
._a_c00030{width:2.112000pt;}
._7_c00030{width:3.328000pt;}
._1_c00030{width:4.416000pt;}
._5_c00030{width:5.696000pt;}
._8_c00030{width:6.720000pt;}
._0_c00030{width:8.256000pt;}
._c_c00030{width:9.408000pt;}
._e_c00030{width:10.489181pt;}
._3_c00030{width:11.840000pt;}
._f_c00030{width:12.736000pt;}
._9_c00030{width:14.016000pt;}
._b_c00030{width:16.690332pt;}
._13_c00030{width:17.798400pt;}
._4_c00030{width:19.072000pt;}
._2_c00030{width:24.576000pt;}
._6_c00030{width:26.112000pt;}
._d_c00030{width:27.136000pt;}
._10_c00030{width:31.680000pt;}
._11_c00030{width:32.654997pt;}
.fs4_c00030{font-size:32.000000pt;}
.fs2_c00030{font-size:37.120000pt;}
.fs5_c00030{font-size:52.480000pt;}
.fs6_c00030{font-size:53.333333pt;}
.fs3_c00030{font-size:57.600000pt;}
.fs0_c00030{font-size:64.000000pt;}
.fs1_c00030{font-size:65.969690pt;}
.y0_c00030{bottom:0.000000pt;}
.y2f_c00030{bottom:2.773467pt;}
.y2e_c00030{bottom:30.884000pt;}
.y1_c00030{bottom:48.000000pt;}
.y2d_c00030{bottom:54.760000pt;}
.y2c_c00030{bottom:70.120000pt;}
.y2b_c00030{bottom:85.800000pt;}
.y2a_c00030{bottom:101.160000pt;}
.y29_c00030{bottom:116.840000pt;}
.y28_c00030{bottom:140.520000pt;}
.y27_c00030{bottom:185.640000pt;}
.y26_c00030{bottom:204.200000pt;}
.y25_c00030{bottom:236.200000pt;}
.y24_c00030{bottom:255.080000pt;}
.y23_c00030{bottom:287.080000pt;}
.y22_c00030{bottom:305.640000pt;}
.y21_c00030{bottom:324.200000pt;}
.y1f_c00030{bottom:343.080000pt;}
.y20_c00030{bottom:349.800000pt;}
.y1e_c00030{bottom:361.640000pt;}
.y1d_c00030{bottom:380.200000pt;}
.y1c_c00030{bottom:399.080000pt;}
.y1b_c00030{bottom:417.640000pt;}
.y1a_c00030{bottom:449.640000pt;}
.y19_c00030{bottom:468.200000pt;}
.y18_c00030{bottom:487.080000pt;}
.y17_c00030{bottom:505.640000pt;}
.y16_c00030{bottom:537.640000pt;}
.y15_c00030{bottom:556.200000pt;}
.y14_c00030{bottom:575.080000pt;}
.y13_c00030{bottom:607.080000pt;}
.y12_c00030{bottom:625.640000pt;}
.y11_c00030{bottom:644.520000pt;}
.y10_c00030{bottom:663.080000pt;}
.yf_c00030{bottom:695.080000pt;}
.ye_c00030{bottom:713.640000pt;}
.yd_c00030{bottom:732.520000pt;}
.yc_c00030{bottom:751.080000pt;}
.yb_c00030{bottom:769.640000pt;}
.ya_c00030{bottom:788.520000pt;}
.y9_c00030{bottom:807.080000pt;}
.y8_c00030{bottom:839.080000pt;}
.y7_c00030{bottom:857.640000pt;}
.y6_c00030{bottom:876.520000pt;}
.y5_c00030{bottom:895.080000pt;}
.y4_c00030{bottom:913.640000pt;}
.y3_c00030{bottom:932.520000pt;}
.y2_c00030{bottom:964.520000pt;}
.h9_c00030{height:17.116000pt;}
.h8_c00030{height:28.992000pt;}
.h6_c00030{height:33.630720pt;}
.h7_c00030{height:40.021875pt;}
.ha_c00030{height:41.173333pt;}
.h3_c00030{height:57.984000pt;}
.h4_c00030{height:59.768539pt;}
.h5_c00030{height:60.510720pt;}
.h2_c00030{height:1067.880000pt;}
.h0_c00030{height:1122.520000pt;}
.h1_c00030{height:1122.666667pt;}
.w3_c00030{width:14.826667pt;}
.w2_c00030{width:767.960000pt;}
.w0_c00030{width:793.720000pt;}
.w1_c00030{width:794.000000pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:12.880000pt;}
.x3_c00030{left:100.480133pt;}
.x1a_c00030{left:142.255200pt;}
.xe_c00030{left:169.855067pt;}
.x15_c00030{left:171.214800pt;}
.x2_c00030{left:172.480133pt;}
.xf_c00030{left:174.469733pt;}
.x9_c00030{left:231.994800pt;}
.x6_c00030{left:236.803733pt;}
.x8_c00030{left:250.161467pt;}
.x1b_c00030{left:252.461600pt;}
.x1c_c00030{left:256.909467pt;}
.x18_c00030{left:258.685200pt;}
.x4_c00030{left:326.582400pt;}
.x14_c00030{left:356.609067pt;}
.xc_c00030{left:399.131467pt;}
.x7_c00030{left:421.142267pt;}
.x5_c00030{left:504.654267pt;}
.x10_c00030{left:509.686800pt;}
.x11_c00030{left:514.240000pt;}
.x12_c00030{left:524.512933pt;}
.x13_c00030{left:533.548533pt;}
.x16_c00030{left:535.568000pt;}
.xd_c00030{left:551.534800pt;}
.x17_c00030{left:556.511333pt;}
.x19_c00030{left:596.758533pt;}
.xb_c00030{left:607.446267pt;}
.xa_c00030{left:616.358133pt;}
.x1d_c00030{left:682.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_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_6ed8cd5445ab527f01773e03.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.134000;font-style:normal;font-weight:normal;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_292657cb9f0c155ba52016a3.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_85fbef2148fd4b3f87844a75.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:0.787000;font-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_c00031{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00031{vertical-align:-30.240000px;}
.v3_c00031{vertical-align:-24.480000px;}
.v0_c00031{vertical-align:0.000000px;}
.v1_c00031{vertical-align:30.240000px;}
.ls3_c00031{letter-spacing:-0.179568px;}
.ls2_c00031{letter-spacing:0.000000px;}
.ls5_c00031{letter-spacing:0.144000px;}
.ls6_c00031{letter-spacing:0.265680px;}
.ls8_c00031{letter-spacing:0.273857px;}
.ls1_c00031{letter-spacing:0.304285px;}
.lse_c00031{letter-spacing:0.318816px;}
.ls9_c00031{letter-spacing:0.383399px;}
.lsb_c00031{letter-spacing:0.438171px;}
.ls10_c00031{letter-spacing:0.478224px;}
.lsd_c00031{letter-spacing:0.492942px;}
.lsa_c00031{letter-spacing:0.547713px;}
.ls12_c00031{letter-spacing:0.584496px;}
.lsc_c00031{letter-spacing:0.962352px;}
.ls4_c00031{letter-spacing:5.335200px;}
.ls0_c00031{letter-spacing:5.976000px;}
.ls7_c00031{letter-spacing:7.102512px;}
.ls11_c00031{letter-spacing:8.389584px;}
.lsf_c00031{letter-spacing:21.709008px;}
.sc__c00031{text-shadow:none;}
.sc1_c00031{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_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;}
.sc1_c00031{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00031{word-spacing:-17.465970px;}
.ws3_c00031{word-spacing:-17.301656px;}
.ws2_c00031{word-spacing:-17.192114px;}
.ws0_c00031{word-spacing:-11.429712px;}
.ws1_c00031{word-spacing:-10.152000px;}
.ws5_c00031{word-spacing:0.000000px;}
._18_c00031{margin-left:-21.424320px;}
._19_c00031{margin-left:-20.057760px;}
._15_c00031{margin-left:-16.177800px;}
._14_c00031{margin-left:-10.821600px;}
._1a_c00031{margin-left:-8.199360px;}
._16_c00031{margin-left:-6.900480px;}
._17_c00031{margin-left:-5.807520px;}
._11_c00031{margin-left:-1.015680px;}
._8_c00031{width:1.003416px;}
._0_c00031{width:2.592000px;}
._5_c00031{width:4.608000px;}
._6_c00031{width:5.711616px;}
._f_c00031{width:7.056000px;}
._1_c00031{width:8.784000px;}
._e_c00031{width:10.656000px;}
._4_c00031{width:11.736000px;}
._d_c00031{width:12.816000px;}
._c_c00031{width:14.616000px;}
._10_c00031{width:16.128000px;}
._7_c00031{width:23.400000px;}
._9_c00031{width:24.480000px;}
._13_c00031{width:26.064000px;}
._12_c00031{width:30.024000px;}
._2_c00031{width:31.104000px;}
._3_c00031{width:33.018539px;}
._a_c00031{width:34.229461px;}
._b_c00031{width:35.517555px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs5_c00031{font-size:36.000000px;}
.fs2_c00031{font-size:41.760000px;}
.fs3_c00031{font-size:56.160000px;}
.fs6_c00031{font-size:59.040000px;}
.fs8_c00031{font-size:60.000000px;}
.fs7_c00031{font-size:60.857039px;}
.fs4_c00031{font-size:64.800000px;}
.fs0_c00031{font-size:72.000000px;}
.fs1_c00031{font-size:74.215901px;}
.y0_c00031{bottom:0.000000px;}
.y35_c00031{bottom:3.120150px;}
.y34_c00031{bottom:34.744500px;}
.y1_c00031{bottom:54.000000px;}
.y33_c00031{bottom:55.485000px;}
.y32_c00031{bottom:72.765000px;}
.y31_c00031{bottom:78.885000px;}
.y30_c00031{bottom:90.401040px;}
.y2f_c00031{bottom:113.805000px;}
.y2e_c00031{bottom:125.325000px;}
.y2d_c00031{bottom:125.326800px;}
.y2c_c00031{bottom:142.965000px;}
.y2b_c00031{bottom:149.085000px;}
.y2a_c00031{bottom:166.365000px;}
.y29_c00031{bottom:193.365000px;}
.y28_c00031{bottom:244.845000px;}
.y27_c00031{bottom:265.725000px;}
.y26_c00031{bottom:286.965000px;}
.y25_c00031{bottom:307.845000px;}
.y24_c00031{bottom:328.725000px;}
.y23_c00031{bottom:364.725000px;}
.y22_c00031{bottom:400.725000px;}
.y21_c00031{bottom:436.725000px;}
.y20_c00031{bottom:457.965000px;}
.y1f_c00031{bottom:478.845000px;}
.y1e_c00031{bottom:499.725000px;}
.y1d_c00031{bottom:520.965000px;}
.y1c_c00031{bottom:541.845000px;}
.y1b_c00031{bottom:562.725000px;}
.y1a_c00031{bottom:583.965000px;}
.y19_c00031{bottom:604.845000px;}
.y18_c00031{bottom:625.725000px;}
.y17_c00031{bottom:646.965000px;}
.y16_c00031{bottom:667.845000px;}
.y14_c00031{bottom:703.845000px;}
.y15_c00031{bottom:711.405000px;}
.y13_c00031{bottom:725.085000px;}
.y12_c00031{bottom:745.965000px;}
.y11_c00031{bottom:781.965000px;}
.y10_c00031{bottom:802.845000px;}
.yf_c00031{bottom:824.085000px;}
.ye_c00031{bottom:844.965000px;}
.yd_c00031{bottom:865.845000px;}
.yc_c00031{bottom:901.845000px;}
.ya_c00031{bottom:923.085000px;}
.yb_c00031{bottom:930.645000px;}
.y8_c00031{bottom:943.965000px;}
.y9_c00031{bottom:951.525000px;}
.y7_c00031{bottom:964.845000px;}
.y6_c00031{bottom:986.085000px;}
.y5_c00031{bottom:1022.085000px;}
.y4_c00031{bottom:1042.965000px;}
.y3_c00031{bottom:1063.845000px;}
.y2_c00031{bottom:1085.085000px;}
.hb_c00031{height:19.255500px;}
.h8_c00031{height:32.616000px;}
.h6_c00031{height:37.834560px;}
.h7_c00031{height:45.024609px;}
.hc_c00031{height:46.320000px;}
.ha_c00031{height:53.490240px;}
.h9_c00031{height:55.136477px;}
.h3_c00031{height:65.232000px;}
.h4_c00031{height:67.239607px;}
.h5_c00031{height:68.074560px;}
.h2_c00031{height:1201.365000px;}
.h0_c00031{height:1262.835000px;}
.h1_c00031{height:1263.000000px;}
.w3_c00031{width:16.680000px;}
.w2_c00031{width:863.955000px;}
.w0_c00031{width:892.935000px;}
.w1_c00031{width:893.250000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:14.490000px;}
.x2_c00031{left:113.040150px;}
.x18_c00031{left:194.148600px;}
.x9_c00031{left:196.348350px;}
.x19_c00031{left:211.158300px;}
.x11_c00031{left:219.588450px;}
.x1b_c00031{left:223.072200px;}
.xa_c00031{left:232.677300px;}
.x1c_c00031{left:242.080050px;}
.xb_c00031{left:244.022100px;}
.x21_c00031{left:254.138700px;}
.x3_c00031{left:266.635650px;}
.x15_c00031{left:270.852150px;}
.x12_c00031{left:317.520000px;}
.x16_c00031{left:326.885400px;}
.x22_c00031{left:351.635400px;}
.x13_c00031{left:354.038100px;}
.xc_c00031{left:361.080000px;}
.x4_c00031{left:382.643550px;}
.xd_c00031{left:393.369150px;}
.x5_c00031{left:400.429350px;}
.x14_c00031{left:431.058750px;}
.x17_c00031{left:495.159600px;}
.xe_c00031{left:509.358750px;}
.xf_c00031{left:515.699700px;}
.x7_c00031{left:534.045750px;}
.x1d_c00031{left:536.040000px;}
.x24_c00031{left:542.266500px;}
.x1f_c00031{left:546.149400px;}
.x1e_c00031{left:547.835100px;}
.x6_c00031{left:565.084650px;}
.x20_c00031{left:598.168500px;}
.x23_c00031{left:602.811750px;}
.x10_c00031{left:631.707600px;}
.x8_c00031{left:650.053650px;}
.x1a_c00031{left:673.369200px;}
.x25_c00031{left:734.565750px;}
.x26_c00031{left:768.255000px;}
@media print{
.v2_c00031{vertical-align:-26.880000pt;}
.v3_c00031{vertical-align:-21.760000pt;}
.v0_c00031{vertical-align:0.000000pt;}
.v1_c00031{vertical-align:26.880000pt;}
.ls3_c00031{letter-spacing:-0.159616pt;}
.ls2_c00031{letter-spacing:0.000000pt;}
.ls5_c00031{letter-spacing:0.128000pt;}
.ls6_c00031{letter-spacing:0.236160pt;}
.ls8_c00031{letter-spacing:0.243428pt;}
.ls1_c00031{letter-spacing:0.270476pt;}
.lse_c00031{letter-spacing:0.283392pt;}
.ls9_c00031{letter-spacing:0.340799pt;}
.lsb_c00031{letter-spacing:0.389485pt;}
.ls10_c00031{letter-spacing:0.425088pt;}
.lsd_c00031{letter-spacing:0.438171pt;}
.lsa_c00031{letter-spacing:0.486856pt;}
.ls12_c00031{letter-spacing:0.519552pt;}
.lsc_c00031{letter-spacing:0.855424pt;}
.ls4_c00031{letter-spacing:4.742400pt;}
.ls0_c00031{letter-spacing:5.312000pt;}
.ls7_c00031{letter-spacing:6.313344pt;}
.ls11_c00031{letter-spacing:7.457408pt;}
.lsf_c00031{letter-spacing:19.296896pt;}
.ws4_c00031{word-spacing:-15.525307pt;}
.ws3_c00031{word-spacing:-15.379250pt;}
.ws2_c00031{word-spacing:-15.281879pt;}
.ws0_c00031{word-spacing:-10.159744pt;}
.ws1_c00031{word-spacing:-9.024000pt;}
.ws5_c00031{word-spacing:0.000000pt;}
._18_c00031{margin-left:-19.043840pt;}
._19_c00031{margin-left:-17.829120pt;}
._15_c00031{margin-left:-14.380267pt;}
._14_c00031{margin-left:-9.619200pt;}
._1a_c00031{margin-left:-7.288320pt;}
._16_c00031{margin-left:-6.133760pt;}
._17_c00031{margin-left:-5.162240pt;}
._11_c00031{margin-left:-0.902827pt;}
._8_c00031{width:0.891925pt;}
._0_c00031{width:2.304000pt;}
._5_c00031{width:4.096000pt;}
._6_c00031{width:5.076992pt;}
._f_c00031{width:6.272000pt;}
._1_c00031{width:7.808000pt;}
._e_c00031{width:9.472000pt;}
._4_c00031{width:10.432000pt;}
._d_c00031{width:11.392000pt;}
._c_c00031{width:12.992000pt;}
._10_c00031{width:14.336000pt;}
._7_c00031{width:20.800000pt;}
._9_c00031{width:21.760000pt;}
._13_c00031{width:23.168000pt;}
._12_c00031{width:26.688000pt;}
._2_c00031{width:27.648000pt;}
._3_c00031{width:29.349812pt;}
._a_c00031{width:30.426188pt;}
._b_c00031{width:31.571160pt;}
.fs5_c00031{font-size:32.000000pt;}
.fs2_c00031{font-size:37.120000pt;}
.fs3_c00031{font-size:49.920000pt;}
.fs6_c00031{font-size:52.480000pt;}
.fs8_c00031{font-size:53.333333pt;}
.fs7_c00031{font-size:54.095146pt;}
.fs4_c00031{font-size:57.600000pt;}
.fs0_c00031{font-size:64.000000pt;}
.fs1_c00031{font-size:65.969690pt;}
.y0_c00031{bottom:0.000000pt;}
.y35_c00031{bottom:2.773467pt;}
.y34_c00031{bottom:30.884000pt;}
.y1_c00031{bottom:48.000000pt;}
.y33_c00031{bottom:49.320000pt;}
.y32_c00031{bottom:64.680000pt;}
.y31_c00031{bottom:70.120000pt;}
.y30_c00031{bottom:80.356480pt;}
.y2f_c00031{bottom:101.160000pt;}
.y2e_c00031{bottom:111.400000pt;}
.y2d_c00031{bottom:111.401600pt;}
.y2c_c00031{bottom:127.080000pt;}
.y2b_c00031{bottom:132.520000pt;}
.y2a_c00031{bottom:147.880000pt;}
.y29_c00031{bottom:171.880000pt;}
.y28_c00031{bottom:217.640000pt;}
.y27_c00031{bottom:236.200000pt;}
.y26_c00031{bottom:255.080000pt;}
.y25_c00031{bottom:273.640000pt;}
.y24_c00031{bottom:292.200000pt;}
.y23_c00031{bottom:324.200000pt;}
.y22_c00031{bottom:356.200000pt;}
.y21_c00031{bottom:388.200000pt;}
.y20_c00031{bottom:407.080000pt;}
.y1f_c00031{bottom:425.640000pt;}
.y1e_c00031{bottom:444.200000pt;}
.y1d_c00031{bottom:463.080000pt;}
.y1c_c00031{bottom:481.640000pt;}
.y1b_c00031{bottom:500.200000pt;}
.y1a_c00031{bottom:519.080000pt;}
.y19_c00031{bottom:537.640000pt;}
.y18_c00031{bottom:556.200000pt;}
.y17_c00031{bottom:575.080000pt;}
.y16_c00031{bottom:593.640000pt;}
.y14_c00031{bottom:625.640000pt;}
.y15_c00031{bottom:632.360000pt;}
.y13_c00031{bottom:644.520000pt;}
.y12_c00031{bottom:663.080000pt;}
.y11_c00031{bottom:695.080000pt;}
.y10_c00031{bottom:713.640000pt;}
.yf_c00031{bottom:732.520000pt;}
.ye_c00031{bottom:751.080000pt;}
.yd_c00031{bottom:769.640000pt;}
.yc_c00031{bottom:801.640000pt;}
.ya_c00031{bottom:820.520000pt;}
.yb_c00031{bottom:827.240000pt;}
.y8_c00031{bottom:839.080000pt;}
.y9_c00031{bottom:845.800000pt;}
.y7_c00031{bottom:857.640000pt;}
.y6_c00031{bottom:876.520000pt;}
.y5_c00031{bottom:908.520000pt;}
.y4_c00031{bottom:927.080000pt;}
.y3_c00031{bottom:945.640000pt;}
.y2_c00031{bottom:964.520000pt;}
.hb_c00031{height:17.116000pt;}
.h8_c00031{height:28.992000pt;}
.h6_c00031{height:33.630720pt;}
.h7_c00031{height:40.021875pt;}
.hc_c00031{height:41.173333pt;}
.ha_c00031{height:47.546880pt;}
.h9_c00031{height:49.010202pt;}
.h3_c00031{height:57.984000pt;}
.h4_c00031{height:59.768539pt;}
.h5_c00031{height:60.510720pt;}
.h2_c00031{height:1067.880000pt;}
.h0_c00031{height:1122.520000pt;}
.h1_c00031{height:1122.666667pt;}
.w3_c00031{width:14.826667pt;}
.w2_c00031{width:767.960000pt;}
.w0_c00031{width:793.720000pt;}
.w1_c00031{width:794.000000pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:12.880000pt;}
.x2_c00031{left:100.480133pt;}
.x18_c00031{left:172.576533pt;}
.x9_c00031{left:174.531867pt;}
.x19_c00031{left:187.696267pt;}
.x11_c00031{left:195.189733pt;}
.x1b_c00031{left:198.286400pt;}
.xa_c00031{left:206.824267pt;}
.x1c_c00031{left:215.182267pt;}
.xb_c00031{left:216.908533pt;}
.x21_c00031{left:225.901067pt;}
.x3_c00031{left:237.009467pt;}
.x15_c00031{left:240.757467pt;}
.x12_c00031{left:282.240000pt;}
.x16_c00031{left:290.564800pt;}
.x22_c00031{left:312.564800pt;}
.x13_c00031{left:314.700533pt;}
.xc_c00031{left:320.960000pt;}
.x4_c00031{left:340.127600pt;}
.xd_c00031{left:349.661467pt;}
.x5_c00031{left:355.937200pt;}
.x14_c00031{left:383.163333pt;}
.x17_c00031{left:440.141867pt;}
.xe_c00031{left:452.763333pt;}
.xf_c00031{left:458.399733pt;}
.x7_c00031{left:474.707333pt;}
.x1d_c00031{left:476.480000pt;}
.x24_c00031{left:482.014667pt;}
.x1f_c00031{left:485.466133pt;}
.x1e_c00031{left:486.964533pt;}
.x6_c00031{left:502.297467pt;}
.x20_c00031{left:531.705333pt;}
.x23_c00031{left:535.832667pt;}
.x10_c00031{left:561.517867pt;}
.x8_c00031{left:577.825467pt;}
.x1a_c00031{left:598.550400pt;}
.x25_c00031{left:652.947333pt;}
.x26_c00031{left:682.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_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_aa99e6e0383660ef8efc7f1b.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_93410836835aa6c35fdb78e6.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_82f6fff613a903ce228118d7.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00032{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00032{vertical-align:-30.240000px;}
.v3_c00032{vertical-align:-24.480000px;}
.v0_c00032{vertical-align:0.000000px;}
.v1_c00032{vertical-align:30.240000px;}
.ls6_c00032{letter-spacing:-0.179568px;}
.ls5_c00032{letter-spacing:0.000000px;}
.ls8_c00032{letter-spacing:0.144000px;}
.ls2_c00032{letter-spacing:0.236160px;}
.lsf_c00032{letter-spacing:0.265680px;}
.ls3_c00032{letter-spacing:0.295200px;}
.lsd_c00032{letter-spacing:0.318816px;}
.lsa_c00032{letter-spacing:0.425088px;}
.ls4_c00032{letter-spacing:0.531360px;}
.lsb_c00032{letter-spacing:0.584496px;}
.ls0_c00032{letter-spacing:5.976000px;}
.lse_c00032{letter-spacing:7.940880px;}
.ls7_c00032{letter-spacing:8.683200px;}
.ls1_c00032{letter-spacing:8.916720px;}
.lsc_c00032{letter-spacing:10.461888px;}
.ls9_c00032{letter-spacing:12.138624px;}
.sc__c00032{text-shadow:none;}
.sc1_c00032{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_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;}
.sc1_c00032{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00032{word-spacing:-16.944480px;}
.ws0_c00032{word-spacing:-11.429712px;}
.ws1_c00032{word-spacing:-10.152000px;}
.ws3_c00032{word-spacing:0.000000px;}
._14_c00032{margin-left:-16.177800px;}
._15_c00032{margin-left:-12.551040px;}
._13_c00032{margin-left:-10.821600px;}
._17_c00032{margin-left:-9.820440px;}
._12_c00032{margin-left:-8.800200px;}
._19_c00032{margin-left:-7.701192px;}
._18_c00032{margin-left:-6.680376px;}
._16_c00032{margin-left:-1.003680px;}
._c_c00032{width:1.152000px;}
._0_c00032{width:2.304000px;}
._8_c00032{width:3.744000px;}
._1a_c00032{width:5.726880px;}
._10_c00032{width:6.912000px;}
._11_c00032{width:8.712000px;}
._9_c00032{width:10.512000px;}
._a_c00032{width:12.096000px;}
._1_c00032{width:14.616000px;}
._b_c00032{width:16.056000px;}
._f_c00032{width:17.064403px;}
._5_c00032{width:18.143866px;}
._4_c00032{width:19.296134px;}
._e_c00032{width:21.528000px;}
._2_c00032{width:26.784000px;}
._3_c00032{width:28.432631px;}
._d_c00032{width:30.346363px;}
._6_c00032{width:32.112000px;}
._7_c00032{width:34.088584px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs5_c00032{font-size:36.000000px;}
.fs2_c00032{font-size:41.760000px;}
.fs3_c00032{font-size:56.160000px;}
.fs6_c00032{font-size:59.040000px;}
.fs8_c00032{font-size:60.000000px;}
.fs7_c00032{font-size:60.857039px;}
.fs4_c00032{font-size:64.800000px;}
.fs0_c00032{font-size:72.000000px;}
.fs1_c00032{font-size:74.215901px;}
.y0_c00032{bottom:0.000000px;}
.y2e_c00032{bottom:3.120150px;}
.y2d_c00032{bottom:34.744500px;}
.y1_c00032{bottom:54.000000px;}
.y2b_c00032{bottom:55.480680px;}
.y2c_c00032{bottom:55.485000px;}
.y2a_c00032{bottom:72.764640px;}
.y29_c00032{bottom:90.402840px;}
.y28_c00032{bottom:107.686800px;}
.y27_c00032{bottom:131.445000px;}
.y26_c00032{bottom:149.085000px;}
.y25_c00032{bottom:160.246800px;}
.y24_c00032{bottom:184.005000px;}
.y23_c00032{bottom:210.645000px;}
.y22_c00032{bottom:321.165000px;}
.y21_c00032{bottom:349.965000px;}
.y20_c00032{bottom:378.405000px;}
.y1f_c00032{bottom:406.845000px;}
.y1e_c00032{bottom:442.845000px;}
.y1d_c00032{bottom:463.725000px;}
.y1c_c00032{bottom:484.965000px;}
.y1b_c00032{bottom:520.965000px;}
.y1a_c00032{bottom:541.845000px;}
.y19_c00032{bottom:562.725000px;}
.y18_c00032{bottom:583.965000px;}
.y17_c00032{bottom:604.845000px;}
.y16_c00032{bottom:625.725000px;}
.y15_c00032{bottom:646.965000px;}
.y14_c00032{bottom:667.845000px;}
.y13_c00032{bottom:689.085000px;}
.y12_c00032{bottom:709.965000px;}
.y11_c00032{bottom:730.845000px;}
.y10_c00032{bottom:752.085000px;}
.yf_c00032{bottom:772.965000px;}
.ye_c00032{bottom:793.845000px;}
.yc_c00032{bottom:829.845000px;}
.yd_c00032{bottom:837.405000px;}
.yb_c00032{bottom:851.085000px;}
.ya_c00032{bottom:887.085000px;}
.y9_c00032{bottom:907.965000px;}
.y8_c00032{bottom:943.965000px;}
.y7_c00032{bottom:964.845000px;}
.y6_c00032{bottom:1000.845000px;}
.y5_c00032{bottom:1022.085000px;}
.y4_c00032{bottom:1042.965000px;}
.y3_c00032{bottom:1063.845000px;}
.y2_c00032{bottom:1085.085000px;}
.hb_c00032{height:19.255500px;}
.h8_c00032{height:32.616000px;}
.h6_c00032{height:37.834560px;}
.h7_c00032{height:45.024609px;}
.hc_c00032{height:46.320000px;}
.h9_c00032{height:53.490240px;}
.ha_c00032{height:55.136477px;}
.h3_c00032{height:65.232000px;}
.h4_c00032{height:67.239607px;}
.h5_c00032{height:68.074560px;}
.h2_c00032{height:1201.365000px;}
.h0_c00032{height:1262.835000px;}
.h1_c00032{height:1263.000000px;}
.w3_c00032{width:16.680000px;}
.w2_c00032{width:863.955000px;}
.w0_c00032{width:892.935000px;}
.w1_c00032{width:893.250000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:14.490000px;}
.x2_c00032{left:113.040150px;}
.xc_c00032{left:213.046500px;}
.xf_c00032{left:224.025900px;}
.x8_c00032{left:291.038850px;}
.x10_c00032{left:296.060700px;}
.x7_c00032{left:322.057950px;}
.xd_c00032{left:442.023150px;}
.x5_c00032{left:482.499000px;}
.xb_c00032{left:508.906800px;}
.x3_c00032{left:525.274200px;}
.x4_c00032{left:570.574650px;}
.xe_c00032{left:593.422500px;}
.x9_c00032{left:616.416900px;}
.x11_c00032{left:660.568350px;}
.x6_c00032{left:697.129800px;}
.xa_c00032{left:699.120000px;}
.x12_c00032{left:768.255000px;}
@media print{
.v2_c00032{vertical-align:-26.880000pt;}
.v3_c00032{vertical-align:-21.760000pt;}
.v0_c00032{vertical-align:0.000000pt;}
.v1_c00032{vertical-align:26.880000pt;}
.ls6_c00032{letter-spacing:-0.159616pt;}
.ls5_c00032{letter-spacing:0.000000pt;}
.ls8_c00032{letter-spacing:0.128000pt;}
.ls2_c00032{letter-spacing:0.209920pt;}
.lsf_c00032{letter-spacing:0.236160pt;}
.ls3_c00032{letter-spacing:0.262400pt;}
.lsd_c00032{letter-spacing:0.283392pt;}
.lsa_c00032{letter-spacing:0.377856pt;}
.ls4_c00032{letter-spacing:0.472320pt;}
.lsb_c00032{letter-spacing:0.519552pt;}
.ls0_c00032{letter-spacing:5.312000pt;}
.lse_c00032{letter-spacing:7.058560pt;}
.ls7_c00032{letter-spacing:7.718400pt;}
.ls1_c00032{letter-spacing:7.925973pt;}
.lsc_c00032{letter-spacing:9.299456pt;}
.ls9_c00032{letter-spacing:10.789888pt;}
.ws2_c00032{word-spacing:-15.061760pt;}
.ws0_c00032{word-spacing:-10.159744pt;}
.ws1_c00032{word-spacing:-9.024000pt;}
.ws3_c00032{word-spacing:0.000000pt;}
._14_c00032{margin-left:-14.380267pt;}
._15_c00032{margin-left:-11.156480pt;}
._13_c00032{margin-left:-9.619200pt;}
._17_c00032{margin-left:-8.729280pt;}
._12_c00032{margin-left:-7.822400pt;}
._19_c00032{margin-left:-6.845504pt;}
._18_c00032{margin-left:-5.938112pt;}
._16_c00032{margin-left:-0.892160pt;}
._c_c00032{width:1.024000pt;}
._0_c00032{width:2.048000pt;}
._8_c00032{width:3.328000pt;}
._1a_c00032{width:5.090560pt;}
._10_c00032{width:6.144000pt;}
._11_c00032{width:7.744000pt;}
._9_c00032{width:9.344000pt;}
._a_c00032{width:10.752000pt;}
._1_c00032{width:12.992000pt;}
._b_c00032{width:14.272000pt;}
._f_c00032{width:15.168358pt;}
._5_c00032{width:16.127881pt;}
._4_c00032{width:17.152119pt;}
._e_c00032{width:19.136000pt;}
._2_c00032{width:23.808000pt;}
._3_c00032{width:25.273449pt;}
._d_c00032{width:26.974545pt;}
._6_c00032{width:28.544000pt;}
._7_c00032{width:30.300963pt;}
.fs5_c00032{font-size:32.000000pt;}
.fs2_c00032{font-size:37.120000pt;}
.fs3_c00032{font-size:49.920000pt;}
.fs6_c00032{font-size:52.480000pt;}
.fs8_c00032{font-size:53.333333pt;}
.fs7_c00032{font-size:54.095146pt;}
.fs4_c00032{font-size:57.600000pt;}
.fs0_c00032{font-size:64.000000pt;}
.fs1_c00032{font-size:65.969690pt;}
.y0_c00032{bottom:0.000000pt;}
.y2e_c00032{bottom:2.773467pt;}
.y2d_c00032{bottom:30.884000pt;}
.y1_c00032{bottom:48.000000pt;}
.y2b_c00032{bottom:49.316160pt;}
.y2c_c00032{bottom:49.320000pt;}
.y2a_c00032{bottom:64.679680pt;}
.y29_c00032{bottom:80.358080pt;}
.y28_c00032{bottom:95.721600pt;}
.y27_c00032{bottom:116.840000pt;}
.y26_c00032{bottom:132.520000pt;}
.y25_c00032{bottom:142.441600pt;}
.y24_c00032{bottom:163.560000pt;}
.y23_c00032{bottom:187.240000pt;}
.y22_c00032{bottom:285.480000pt;}
.y21_c00032{bottom:311.080000pt;}
.y20_c00032{bottom:336.360000pt;}
.y1f_c00032{bottom:361.640000pt;}
.y1e_c00032{bottom:393.640000pt;}
.y1d_c00032{bottom:412.200000pt;}
.y1c_c00032{bottom:431.080000pt;}
.y1b_c00032{bottom:463.080000pt;}
.y1a_c00032{bottom:481.640000pt;}
.y19_c00032{bottom:500.200000pt;}
.y18_c00032{bottom:519.080000pt;}
.y17_c00032{bottom:537.640000pt;}
.y16_c00032{bottom:556.200000pt;}
.y15_c00032{bottom:575.080000pt;}
.y14_c00032{bottom:593.640000pt;}
.y13_c00032{bottom:612.520000pt;}
.y12_c00032{bottom:631.080000pt;}
.y11_c00032{bottom:649.640000pt;}
.y10_c00032{bottom:668.520000pt;}
.yf_c00032{bottom:687.080000pt;}
.ye_c00032{bottom:705.640000pt;}
.yc_c00032{bottom:737.640000pt;}
.yd_c00032{bottom:744.360000pt;}
.yb_c00032{bottom:756.520000pt;}
.ya_c00032{bottom:788.520000pt;}
.y9_c00032{bottom:807.080000pt;}
.y8_c00032{bottom:839.080000pt;}
.y7_c00032{bottom:857.640000pt;}
.y6_c00032{bottom:889.640000pt;}
.y5_c00032{bottom:908.520000pt;}
.y4_c00032{bottom:927.080000pt;}
.y3_c00032{bottom:945.640000pt;}
.y2_c00032{bottom:964.520000pt;}
.hb_c00032{height:17.116000pt;}
.h8_c00032{height:28.992000pt;}
.h6_c00032{height:33.630720pt;}
.h7_c00032{height:40.021875pt;}
.hc_c00032{height:41.173333pt;}
.h9_c00032{height:47.546880pt;}
.ha_c00032{height:49.010202pt;}
.h3_c00032{height:57.984000pt;}
.h4_c00032{height:59.768539pt;}
.h5_c00032{height:60.510720pt;}
.h2_c00032{height:1067.880000pt;}
.h0_c00032{height:1122.520000pt;}
.h1_c00032{height:1122.666667pt;}
.w3_c00032{width:14.826667pt;}
.w2_c00032{width:767.960000pt;}
.w0_c00032{width:793.720000pt;}
.w1_c00032{width:794.000000pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:12.880000pt;}
.x2_c00032{left:100.480133pt;}
.xc_c00032{left:189.374667pt;}
.xf_c00032{left:199.134133pt;}
.x8_c00032{left:258.701200pt;}
.x10_c00032{left:263.165067pt;}
.x7_c00032{left:286.273733pt;}
.xd_c00032{left:392.909467pt;}
.x5_c00032{left:428.888000pt;}
.xb_c00032{left:452.361600pt;}
.x3_c00032{left:466.910400pt;}
.x4_c00032{left:507.177467pt;}
.xe_c00032{left:527.486667pt;}
.x9_c00032{left:547.926133pt;}
.x11_c00032{left:587.171867pt;}
.x6_c00032{left:619.670933pt;}
.xa_c00032{left:621.440000pt;}
.x12_c00032{left:682.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_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_85dd52747ea94e6b5365e44d.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_f42c3e0d261b12b4de643261.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_d758aaf8cf5e2c6b7162cfe7.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00033;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;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:ff6_c00033;src:url('chunks/assets/font_c6c3566481afa035ab9d824b.woff2')format("woff");}.ff6_c00033{font-family:ff6_c00033;line-height:0.787000;font-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_c00033{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00033{vertical-align:-24.480000px;}
.v0_c00033{vertical-align:0.000000px;}
.v1_c00033{vertical-align:30.240000px;}
.ls7_c00033{letter-spacing:-0.179568px;}
.ls4_c00033{letter-spacing:0.000000px;}
.ls8_c00033{letter-spacing:0.144000px;}
.lsc_c00033{letter-spacing:0.273857px;}
.ls2_c00033{letter-spacing:0.295200px;}
.ls10_c00033{letter-spacing:0.318816px;}
.lsa_c00033{letter-spacing:0.425088px;}
.lsd_c00033{letter-spacing:0.492942px;}
.ls3_c00033{letter-spacing:0.531360px;}
.lsb_c00033{letter-spacing:0.547713px;}
.ls6_c00033{letter-spacing:0.561600px;}
.ls11_c00033{letter-spacing:0.584496px;}
.ls5_c00033{letter-spacing:0.696384px;}
.lsf_c00033{letter-spacing:0.712027px;}
.lse_c00033{letter-spacing:0.821570px;}
.ls1_c00033{letter-spacing:5.976000px;}
.ls9_c00033{letter-spacing:6.128352px;}
.ls0_c00033{letter-spacing:24.488520px;}
.sc__c00033{text-shadow:none;}
.sc1_c00033{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_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;}
.sc1_c00033{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-20.016000px;}
.ws3_c00033{word-spacing:-16.944480px;}
.ws1_c00033{word-spacing:-11.429712px;}
.ws2_c00033{word-spacing:-10.152000px;}
.ws4_c00033{word-spacing:0.000000px;}
._e_c00033{margin-left:-16.177800px;}
._d_c00033{margin-left:-10.821600px;}
._f_c00033{margin-left:-5.837760px;}
._10_c00033{margin-left:-4.648320px;}
._0_c00033{margin-left:-1.123800px;}
._4_c00033{width:1.584000px;}
._12_c00033{width:4.136562px;}
._11_c00033{width:5.148915px;}
._9_c00033{width:6.264000px;}
._13_c00033{width:7.428834px;}
._6_c00033{width:8.640000px;}
._8_c00033{width:12.312000px;}
._7_c00033{width:13.464000px;}
._a_c00033{width:14.904000px;}
._3_c00033{width:17.424000px;}
._b_c00033{width:18.792000px;}
._14_c00033{width:20.078712px;}
._5_c00033{width:21.456000px;}
._1_c00033{width:23.306400px;}
._2_c00033{width:25.143120px;}
._c_c00033{width:32.616000px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs5_c00033{font-size:36.000000px;}
.fs3_c00033{font-size:41.760000px;}
.fs1_c00033{font-size:56.160000px;}
.fs6_c00033{font-size:59.040000px;}
.fs8_c00033{font-size:60.000000px;}
.fs7_c00033{font-size:60.857039px;}
.fs4_c00033{font-size:64.800000px;}
.fs0_c00033{font-size:72.000000px;}
.fs2_c00033{font-size:74.215901px;}
.y0_c00033{bottom:0.000000px;}
.y26_c00033{bottom:3.120150px;}
.y25_c00033{bottom:34.744500px;}
.y1_c00033{bottom:54.000000px;}
.y24_c00033{bottom:55.481040px;}
.y22_c00033{bottom:72.762480px;}
.y23_c00033{bottom:72.765000px;}
.y21_c00033{bottom:90.400680px;}
.y20_c00033{bottom:107.684640px;}
.y1f_c00033{bottom:125.322840px;}
.y1e_c00033{bottom:142.961040px;}
.y1d_c00033{bottom:160.245000px;}
.y1c_c00033{bottom:166.365000px;}
.y1b_c00033{bottom:193.365000px;}
.y1a_c00033{bottom:462.645000px;}
.y19_c00033{bottom:483.525000px;}
.y18_c00033{bottom:504.405000px;}
.y17_c00033{bottom:525.645000px;}
.y16_c00033{bottom:561.645000px;}
.y15_c00033{bottom:597.645000px;}
.y14_c00033{bottom:618.525000px;}
.y13_c00033{bottom:639.405000px;}
.y12_c00033{bottom:660.645000px;}
.y11_c00033{bottom:681.525000px;}
.y10_c00033{bottom:702.405000px;}
.yf_c00033{bottom:723.645000px;}
.ye_c00033{bottom:744.525000px;}
.yd_c00033{bottom:765.765000px;}
.yc_c00033{bottom:801.765000px;}
.yb_c00033{bottom:822.645000px;}
.ya_c00033{bottom:843.525000px;}
.y9_c00033{bottom:864.765000px;}
.y8_c00033{bottom:901.485000px;}
.y7_c00033{bottom:929.925000px;}
.y6_c00033{bottom:955.845000px;}
.y5_c00033{bottom:991.845000px;}
.y4_c00033{bottom:1027.845000px;}
.y3_c00033{bottom:1049.085000px;}
.y2_c00033{bottom:1085.085000px;}
.hb_c00033{height:19.255500px;}
.h8_c00033{height:32.616000px;}
.h7_c00033{height:45.024609px;}
.hc_c00033{height:46.320000px;}
.ha_c00033{height:53.490240px;}
.h9_c00033{height:55.136477px;}
.h5_c00033{height:57.600000px;}
.h3_c00033{height:65.232000px;}
.h4_c00033{height:67.239607px;}
.h6_c00033{height:68.074560px;}
.h2_c00033{height:1201.365000px;}
.h0_c00033{height:1262.835000px;}
.h1_c00033{height:1263.000000px;}
.w3_c00033{width:16.680000px;}
.w2_c00033{width:863.955000px;}
.w0_c00033{width:892.935000px;}
.w1_c00033{width:893.250000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:14.490000px;}
.x3_c00033{left:113.040150px;}
.x2_c00033{left:140.040150px;}
.x4_c00033{left:283.140000px;}
.x6_c00033{left:382.578000px;}
.x5_c00033{left:652.151700px;}
.x7_c00033{left:659.304150px;}
.x8_c00033{left:668.608200px;}
.x9_c00033{left:697.906500px;}
.xa_c00033{left:768.255000px;}
@media print{
.v2_c00033{vertical-align:-21.760000pt;}
.v0_c00033{vertical-align:0.000000pt;}
.v1_c00033{vertical-align:26.880000pt;}
.ls7_c00033{letter-spacing:-0.159616pt;}
.ls4_c00033{letter-spacing:0.000000pt;}
.ls8_c00033{letter-spacing:0.128000pt;}
.lsc_c00033{letter-spacing:0.243428pt;}
.ls2_c00033{letter-spacing:0.262400pt;}
.ls10_c00033{letter-spacing:0.283392pt;}
.lsa_c00033{letter-spacing:0.377856pt;}
.lsd_c00033{letter-spacing:0.438171pt;}
.ls3_c00033{letter-spacing:0.472320pt;}
.lsb_c00033{letter-spacing:0.486856pt;}
.ls6_c00033{letter-spacing:0.499200pt;}
.ls11_c00033{letter-spacing:0.519552pt;}
.ls5_c00033{letter-spacing:0.619008pt;}
.lsf_c00033{letter-spacing:0.632913pt;}
.lse_c00033{letter-spacing:0.730284pt;}
.ls1_c00033{letter-spacing:5.312000pt;}
.ls9_c00033{letter-spacing:5.447424pt;}
.ls0_c00033{letter-spacing:21.767573pt;}
.ws0_c00033{word-spacing:-17.792000pt;}
.ws3_c00033{word-spacing:-15.061760pt;}
.ws1_c00033{word-spacing:-10.159744pt;}
.ws2_c00033{word-spacing:-9.024000pt;}
.ws4_c00033{word-spacing:0.000000pt;}
._e_c00033{margin-left:-14.380267pt;}
._d_c00033{margin-left:-9.619200pt;}
._f_c00033{margin-left:-5.189120pt;}
._10_c00033{margin-left:-4.131840pt;}
._0_c00033{margin-left:-0.998933pt;}
._4_c00033{width:1.408000pt;}
._12_c00033{width:3.676944pt;}
._11_c00033{width:4.576813pt;}
._9_c00033{width:5.568000pt;}
._13_c00033{width:6.603408pt;}
._6_c00033{width:7.680000pt;}
._8_c00033{width:10.944000pt;}
._7_c00033{width:11.968000pt;}
._a_c00033{width:13.248000pt;}
._3_c00033{width:15.488000pt;}
._b_c00033{width:16.704000pt;}
._14_c00033{width:17.847744pt;}
._5_c00033{width:19.072000pt;}
._1_c00033{width:20.716800pt;}
._2_c00033{width:22.349440pt;}
._c_c00033{width:28.992000pt;}
.fs5_c00033{font-size:32.000000pt;}
.fs3_c00033{font-size:37.120000pt;}
.fs1_c00033{font-size:49.920000pt;}
.fs6_c00033{font-size:52.480000pt;}
.fs8_c00033{font-size:53.333333pt;}
.fs7_c00033{font-size:54.095146pt;}
.fs4_c00033{font-size:57.600000pt;}
.fs0_c00033{font-size:64.000000pt;}
.fs2_c00033{font-size:65.969690pt;}
.y0_c00033{bottom:0.000000pt;}
.y26_c00033{bottom:2.773467pt;}
.y25_c00033{bottom:30.884000pt;}
.y1_c00033{bottom:48.000000pt;}
.y24_c00033{bottom:49.316480pt;}
.y22_c00033{bottom:64.677760pt;}
.y23_c00033{bottom:64.680000pt;}
.y21_c00033{bottom:80.356160pt;}
.y20_c00033{bottom:95.719680pt;}
.y1f_c00033{bottom:111.398080pt;}
.y1e_c00033{bottom:127.076480pt;}
.y1d_c00033{bottom:142.440000pt;}
.y1c_c00033{bottom:147.880000pt;}
.y1b_c00033{bottom:171.880000pt;}
.y1a_c00033{bottom:411.240000pt;}
.y19_c00033{bottom:429.800000pt;}
.y18_c00033{bottom:448.360000pt;}
.y17_c00033{bottom:467.240000pt;}
.y16_c00033{bottom:499.240000pt;}
.y15_c00033{bottom:531.240000pt;}
.y14_c00033{bottom:549.800000pt;}
.y13_c00033{bottom:568.360000pt;}
.y12_c00033{bottom:587.240000pt;}
.y11_c00033{bottom:605.800000pt;}
.y10_c00033{bottom:624.360000pt;}
.yf_c00033{bottom:643.240000pt;}
.ye_c00033{bottom:661.800000pt;}
.yd_c00033{bottom:680.680000pt;}
.yc_c00033{bottom:712.680000pt;}
.yb_c00033{bottom:731.240000pt;}
.ya_c00033{bottom:749.800000pt;}
.y9_c00033{bottom:768.680000pt;}
.y8_c00033{bottom:801.320000pt;}
.y7_c00033{bottom:826.600000pt;}
.y6_c00033{bottom:849.640000pt;}
.y5_c00033{bottom:881.640000pt;}
.y4_c00033{bottom:913.640000pt;}
.y3_c00033{bottom:932.520000pt;}
.y2_c00033{bottom:964.520000pt;}
.hb_c00033{height:17.116000pt;}
.h8_c00033{height:28.992000pt;}
.h7_c00033{height:40.021875pt;}
.hc_c00033{height:41.173333pt;}
.ha_c00033{height:47.546880pt;}
.h9_c00033{height:49.010202pt;}
.h5_c00033{height:51.200000pt;}
.h3_c00033{height:57.984000pt;}
.h4_c00033{height:59.768539pt;}
.h6_c00033{height:60.510720pt;}
.h2_c00033{height:1067.880000pt;}
.h0_c00033{height:1122.520000pt;}
.h1_c00033{height:1122.666667pt;}
.w3_c00033{width:14.826667pt;}
.w2_c00033{width:767.960000pt;}
.w0_c00033{width:793.720000pt;}
.w1_c00033{width:794.000000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:12.880000pt;}
.x3_c00033{left:100.480133pt;}
.x2_c00033{left:124.480133pt;}
.x4_c00033{left:251.680000pt;}
.x6_c00033{left:340.069333pt;}
.x5_c00033{left:579.690400pt;}
.x7_c00033{left:586.048133pt;}
.x8_c00033{left:594.318400pt;}
.x9_c00033{left:620.361333pt;}
.xa_c00033{left:682.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_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_d3187b997172cbbef5f8c082.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.134000;font-style:normal;font-weight:normal;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_3170d38f8d84d6e74bb00cca.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.134000;font-style:normal;font-weight:normal;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_d08e959bf419e4792ca07bd4.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;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:ff4_c00034;src:url('chunks/assets/font_58cee7f995b9c863bf606a1b.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00034;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00034;src:url('chunks/assets/font_3811ebb41657fb0df00cb04e.woff2')format("woff");}.ff6_c00034{font-family:ff6_c00034;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00034;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff7_c00034{font-family:ff7_c00034;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:ff8_c00034;src:url('chunks/assets/font_325e16f70588f088fa7f0e3d.woff2')format("woff");}.ff8_c00034{font-family:ff8_c00034;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00034{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00034{vertical-align:-24.480000px;}
.v0_c00034{vertical-align:0.000000px;}
.v1_c00034{vertical-align:30.240000px;}
.ls5_c00034{letter-spacing:-0.179568px;}
.ls4_c00034{letter-spacing:0.000000px;}
.ls9_c00034{letter-spacing:0.144000px;}
.lsa_c00034{letter-spacing:0.265680px;}
.lsd_c00034{letter-spacing:0.273857px;}
.lse_c00034{letter-spacing:0.492942px;}
.lsc_c00034{letter-spacing:0.547713px;}
.ls8_c00034{letter-spacing:0.561600px;}
.ls7_c00034{letter-spacing:0.696384px;}
.ls3_c00034{letter-spacing:0.821570px;}
.lsb_c00034{letter-spacing:3.081888px;}
.ls2_c00034{letter-spacing:5.954400px;}
.ls1_c00034{letter-spacing:5.976000px;}
.ls6_c00034{letter-spacing:7.394400px;}
.ls0_c00034{letter-spacing:106.848000px;}
.sc__c00034{text-shadow:none;}
.sc1_c00034{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_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;}
.sc1_c00034{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00034{word-spacing:-20.016000px;}
.ws3_c00034{word-spacing:-17.739827px;}
.ws0_c00034{word-spacing:-11.429712px;}
.ws2_c00034{word-spacing:-10.152000px;}
.ws4_c00034{word-spacing:0.000000px;}
._10_c00034{margin-left:-16.177800px;}
._f_c00034{margin-left:-10.821600px;}
._11_c00034{margin-left:-2.885760px;}
._3_c00034{margin-left:-1.540800px;}
._2_c00034{width:1.440000px;}
._d_c00034{width:3.240000px;}
._b_c00034{width:4.392000px;}
._8_c00034{width:5.400000px;}
._4_c00034{width:8.352000px;}
._7_c00034{width:9.648000px;}
._c_c00034{width:10.944000px;}
._5_c00034{width:12.096000px;}
._6_c00034{width:13.464000px;}
._13_c00034{width:14.565401px;}
._12_c00034{width:15.883687px;}
._e_c00034{width:22.608000px;}
._9_c00034{width:29.026800px;}
._a_c00034{width:30.310560px;}
._1_c00034{width:103.464000px;}
._0_c00034{width:110.136397px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs5_c00034{font-size:36.000000px;}
.fs2_c00034{font-size:41.760000px;}
.fs3_c00034{font-size:56.160000px;}
.fs6_c00034{font-size:59.040000px;}
.fs8_c00034{font-size:60.000000px;}
.fs7_c00034{font-size:60.857039px;}
.fs4_c00034{font-size:64.800000px;}
.fs0_c00034{font-size:72.000000px;}
.fs1_c00034{font-size:74.215901px;}
.y0_c00034{bottom:0.000000px;}
.y2b_c00034{bottom:3.120150px;}
.y2a_c00034{bottom:34.744500px;}
.y1_c00034{bottom:54.000000px;}
.y28_c00034{bottom:55.478880px;}
.y29_c00034{bottom:55.485000px;}
.y27_c00034{bottom:72.762840px;}
.y26_c00034{bottom:90.401040px;}
.y25_c00034{bottom:107.685000px;}
.y24_c00034{bottom:113.805000px;}
.y23_c00034{bottom:131.445000px;}
.y22_c00034{bottom:158.085000px;}
.y21_c00034{bottom:261.045000px;}
.y20_c00034{bottom:281.925000px;}
.y1f_c00034{bottom:303.165000px;}
.y1e_c00034{bottom:324.045000px;}
.y1d_c00034{bottom:345.285000px;}
.y1c_c00034{bottom:381.645000px;}
.y1b_c00034{bottom:410.445000px;}
.y1a_c00034{bottom:438.885000px;}
.y19_c00034{bottom:474.525000px;}
.y18_c00034{bottom:510.525000px;}
.y17_c00034{bottom:531.765000px;}
.y16_c00034{bottom:552.645000px;}
.y15_c00034{bottom:573.525000px;}
.y14_c00034{bottom:594.765000px;}
.y13_c00034{bottom:630.765000px;}
.y12_c00034{bottom:651.645000px;}
.y11_c00034{bottom:672.525000px;}
.y10_c00034{bottom:693.765000px;}
.yf_c00034{bottom:714.645000px;}
.ye_c00034{bottom:735.525000px;}
.yd_c00034{bottom:756.765000px;}
.yc_c00034{bottom:792.765000px;}
.yb_c00034{bottom:829.485000px;}
.ya_c00034{bottom:858.285000px;}
.y9_c00034{bottom:879.885000px;}
.y8_c00034{bottom:908.325000px;}
.y7_c00034{bottom:937.125000px;}
.y6_c00034{bottom:963.405000px;}
.y5_c00034{bottom:992.205000px;}
.y4_c00034{bottom:1013.445000px;}
.y3_c00034{bottom:1049.085000px;}
.y2_c00034{bottom:1085.085000px;}
.hb_c00034{height:19.255500px;}
.h8_c00034{height:32.616000px;}
.h7_c00034{height:45.024609px;}
.hc_c00034{height:46.320000px;}
.h5_c00034{height:47.988281px;}
.ha_c00034{height:53.490240px;}
.h9_c00034{height:55.136477px;}
.h3_c00034{height:65.232000px;}
.h4_c00034{height:67.239607px;}
.h6_c00034{height:68.074560px;}
.h2_c00034{height:1201.365000px;}
.h0_c00034{height:1262.835000px;}
.h1_c00034{height:1263.000000px;}
.w3_c00034{width:16.680000px;}
.w2_c00034{width:863.955000px;}
.w0_c00034{width:892.935000px;}
.w1_c00034{width:893.250000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:14.490000px;}
.x2_c00034{left:113.040150px;}
.x25_c00034{left:170.549250px;}
.x3_c00034{left:240.624150px;}
.x4_c00034{left:272.339700px;}
.x15_c00034{left:283.135500px;}
.x5_c00034{left:323.350650px;}
.xd_c00034{left:325.331100px;}
.x6_c00034{left:327.850650px;}
.xe_c00034{left:329.831100px;}
.x13_c00034{left:332.818650px;}
.x1e_c00034{left:345.131100px;}
.x1f_c00034{left:349.631100px;}
.x16_c00034{left:357.172500px;}
.x17_c00034{left:361.672500px;}
.x24_c00034{left:372.300000px;}
.xf_c00034{left:394.846050px;}
.x10_c00034{left:399.346050px;}
.x20_c00034{left:401.650200px;}
.x21_c00034{left:406.150200px;}
.x22_c00034{left:414.017250px;}
.x14_c00034{left:422.762700px;}
.x7_c00034{left:433.851150px;}
.x8_c00034{left:438.351150px;}
.x11_c00034{left:448.359000px;}
.x12_c00034{left:452.859000px;}
.x18_c00034{left:456.710850px;}
.x19_c00034{left:461.210850px;}
.x1a_c00034{left:516.199500px;}
.x1b_c00034{left:520.699500px;}
.x9_c00034{left:532.345500px;}
.xa_c00034{left:536.845500px;}
.x23_c00034{left:562.704300px;}
.x1c_c00034{left:580.710150px;}
.x1d_c00034{left:585.210150px;}
.xb_c00034{left:607.854150px;}
.xc_c00034{left:612.354150px;}
.x26_c00034{left:768.255000px;}
@media print{
.v2_c00034{vertical-align:-21.760000pt;}
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:26.880000pt;}
.ls5_c00034{letter-spacing:-0.159616pt;}
.ls4_c00034{letter-spacing:0.000000pt;}
.ls9_c00034{letter-spacing:0.128000pt;}
.lsa_c00034{letter-spacing:0.236160pt;}
.lsd_c00034{letter-spacing:0.243428pt;}
.lse_c00034{letter-spacing:0.438171pt;}
.lsc_c00034{letter-spacing:0.486856pt;}
.ls8_c00034{letter-spacing:0.499200pt;}
.ls7_c00034{letter-spacing:0.619008pt;}
.ls3_c00034{letter-spacing:0.730284pt;}
.lsb_c00034{letter-spacing:2.739456pt;}
.ls2_c00034{letter-spacing:5.292800pt;}
.ls1_c00034{letter-spacing:5.312000pt;}
.ls6_c00034{letter-spacing:6.572800pt;}
.ls0_c00034{letter-spacing:94.976000pt;}
.ws1_c00034{word-spacing:-17.792000pt;}
.ws3_c00034{word-spacing:-15.768735pt;}
.ws0_c00034{word-spacing:-10.159744pt;}
.ws2_c00034{word-spacing:-9.024000pt;}
.ws4_c00034{word-spacing:0.000000pt;}
._10_c00034{margin-left:-14.380267pt;}
._f_c00034{margin-left:-9.619200pt;}
._11_c00034{margin-left:-2.565120pt;}
._3_c00034{margin-left:-1.369600pt;}
._2_c00034{width:1.280000pt;}
._d_c00034{width:2.880000pt;}
._b_c00034{width:3.904000pt;}
._8_c00034{width:4.800000pt;}
._4_c00034{width:7.424000pt;}
._7_c00034{width:8.576000pt;}
._c_c00034{width:9.728000pt;}
._5_c00034{width:10.752000pt;}
._6_c00034{width:11.968000pt;}
._13_c00034{width:12.947023pt;}
._12_c00034{width:14.118833pt;}
._e_c00034{width:20.096000pt;}
._9_c00034{width:25.801600pt;}
._a_c00034{width:26.942720pt;}
._1_c00034{width:91.968000pt;}
._0_c00034{width:97.899020pt;}
.fs5_c00034{font-size:32.000000pt;}
.fs2_c00034{font-size:37.120000pt;}
.fs3_c00034{font-size:49.920000pt;}
.fs6_c00034{font-size:52.480000pt;}
.fs8_c00034{font-size:53.333333pt;}
.fs7_c00034{font-size:54.095146pt;}
.fs4_c00034{font-size:57.600000pt;}
.fs0_c00034{font-size:64.000000pt;}
.fs1_c00034{font-size:65.969690pt;}
.y0_c00034{bottom:0.000000pt;}
.y2b_c00034{bottom:2.773467pt;}
.y2a_c00034{bottom:30.884000pt;}
.y1_c00034{bottom:48.000000pt;}
.y28_c00034{bottom:49.314560pt;}
.y29_c00034{bottom:49.320000pt;}
.y27_c00034{bottom:64.678080pt;}
.y26_c00034{bottom:80.356480pt;}
.y25_c00034{bottom:95.720000pt;}
.y24_c00034{bottom:101.160000pt;}
.y23_c00034{bottom:116.840000pt;}
.y22_c00034{bottom:140.520000pt;}
.y21_c00034{bottom:232.040000pt;}
.y20_c00034{bottom:250.600000pt;}
.y1f_c00034{bottom:269.480000pt;}
.y1e_c00034{bottom:288.040000pt;}
.y1d_c00034{bottom:306.920000pt;}
.y1c_c00034{bottom:339.240000pt;}
.y1b_c00034{bottom:364.840000pt;}
.y1a_c00034{bottom:390.120000pt;}
.y19_c00034{bottom:421.800000pt;}
.y18_c00034{bottom:453.800000pt;}
.y17_c00034{bottom:472.680000pt;}
.y16_c00034{bottom:491.240000pt;}
.y15_c00034{bottom:509.800000pt;}
.y14_c00034{bottom:528.680000pt;}
.y13_c00034{bottom:560.680000pt;}
.y12_c00034{bottom:579.240000pt;}
.y11_c00034{bottom:597.800000pt;}
.y10_c00034{bottom:616.680000pt;}
.yf_c00034{bottom:635.240000pt;}
.ye_c00034{bottom:653.800000pt;}
.yd_c00034{bottom:672.680000pt;}
.yc_c00034{bottom:704.680000pt;}
.yb_c00034{bottom:737.320000pt;}
.ya_c00034{bottom:762.920000pt;}
.y9_c00034{bottom:782.120000pt;}
.y8_c00034{bottom:807.400000pt;}
.y7_c00034{bottom:833.000000pt;}
.y6_c00034{bottom:856.360000pt;}
.y5_c00034{bottom:881.960000pt;}
.y4_c00034{bottom:900.840000pt;}
.y3_c00034{bottom:932.520000pt;}
.y2_c00034{bottom:964.520000pt;}
.hb_c00034{height:17.116000pt;}
.h8_c00034{height:28.992000pt;}
.h7_c00034{height:40.021875pt;}
.hc_c00034{height:41.173333pt;}
.h5_c00034{height:42.656250pt;}
.ha_c00034{height:47.546880pt;}
.h9_c00034{height:49.010202pt;}
.h3_c00034{height:57.984000pt;}
.h4_c00034{height:59.768539pt;}
.h6_c00034{height:60.510720pt;}
.h2_c00034{height:1067.880000pt;}
.h0_c00034{height:1122.520000pt;}
.h1_c00034{height:1122.666667pt;}
.w3_c00034{width:14.826667pt;}
.w2_c00034{width:767.960000pt;}
.w0_c00034{width:793.720000pt;}
.w1_c00034{width:794.000000pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:12.880000pt;}
.x2_c00034{left:100.480133pt;}
.x25_c00034{left:151.599333pt;}
.x3_c00034{left:213.888133pt;}
.x4_c00034{left:242.079733pt;}
.x15_c00034{left:251.676000pt;}
.x5_c00034{left:287.422800pt;}
.xd_c00034{left:289.183200pt;}
.x6_c00034{left:291.422800pt;}
.xe_c00034{left:293.183200pt;}
.x13_c00034{left:295.838800pt;}
.x1e_c00034{left:306.783200pt;}
.x1f_c00034{left:310.783200pt;}
.x16_c00034{left:317.486667pt;}
.x17_c00034{left:321.486667pt;}
.x24_c00034{left:330.933333pt;}
.xf_c00034{left:350.974267pt;}
.x10_c00034{left:354.974267pt;}
.x20_c00034{left:357.022400pt;}
.x21_c00034{left:361.022400pt;}
.x22_c00034{left:368.015333pt;}
.x14_c00034{left:375.789067pt;}
.x7_c00034{left:385.645467pt;}
.x8_c00034{left:389.645467pt;}
.x11_c00034{left:398.541333pt;}
.x12_c00034{left:402.541333pt;}
.x18_c00034{left:405.965200pt;}
.x19_c00034{left:409.965200pt;}
.x1a_c00034{left:458.844000pt;}
.x1b_c00034{left:462.844000pt;}
.x9_c00034{left:473.196000pt;}
.xa_c00034{left:477.196000pt;}
.x23_c00034{left:500.181600pt;}
.x1c_c00034{left:516.186800pt;}
.x1d_c00034{left:520.186800pt;}
.xb_c00034{left:540.314800pt;}
.xc_c00034{left:544.314800pt;}
.x26_c00034{left:682.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_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_4b280893751d0ef322c5b8bc.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.134000;font-style:normal;font-weight:normal;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_2b6da2772f7c65a6165aa49e.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.134000;font-style:normal;font-weight:normal;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_d08e959bf419e4792ca07bd4.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;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:ff4_c00035;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;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:ff5_c00035;src:url('chunks/assets/font_a37b40605d01d9d02bb5d601.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00035{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00035{vertical-align:-24.480000px;}
.v0_c00035{vertical-align:0.000000px;}
.v1_c00035{vertical-align:30.240000px;}
.lsd_c00035{letter-spacing:-0.179568px;}
.lsa_c00035{letter-spacing:0.000000px;}
.lse_c00035{letter-spacing:0.144000px;}
.ls13_c00035{letter-spacing:0.265680px;}
.ls14_c00035{letter-spacing:0.273857px;}
.ls9_c00035{letter-spacing:0.295200px;}
.ls7_c00035{letter-spacing:0.304285px;}
.ls4_c00035{letter-spacing:0.316457px;}
.ls10_c00035{letter-spacing:0.318816px;}
.ls3_c00035{letter-spacing:0.322200px;}
.ls5_c00035{letter-spacing:0.334714px;}
.ls12_c00035{letter-spacing:0.383399px;}
.ls11_c00035{letter-spacing:0.438171px;}
.ls19_c00035{letter-spacing:0.478224px;}
.ls8_c00035{letter-spacing:0.531360px;}
.lsc_c00035{letter-spacing:0.561600px;}
.ls2_c00035{letter-spacing:0.660000px;}
.lsb_c00035{letter-spacing:0.696384px;}
.ls17_c00035{letter-spacing:0.712027px;}
.ls15_c00035{letter-spacing:0.821570px;}
.lsf_c00035{letter-spacing:2.526912px;}
.ls1_c00035{letter-spacing:5.976000px;}
.ls18_c00035{letter-spacing:26.508960px;}
.ls16_c00035{letter-spacing:29.183472px;}
.ls6_c00035{letter-spacing:29.189376px;}
.ls0_c00035{letter-spacing:141.696000px;}
.sc__c00035{text-shadow:none;}
.sc1_c00035{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_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;}
.sc1_c00035{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:-20.016000px;}
.ws6_c00035{word-spacing:-17.739827px;}
.ws3_c00035{word-spacing:-17.356428px;}
.ws4_c00035{word-spacing:-17.301656px;}
.ws5_c00035{word-spacing:-17.192114px;}
.ws7_c00035{word-spacing:-16.944480px;}
.ws1_c00035{word-spacing:-11.429712px;}
.ws2_c00035{word-spacing:-10.152000px;}
.ws8_c00035{word-spacing:0.000000px;}
._16_c00035{margin-left:-29.756160px;}
._15_c00035{margin-left:-28.693440px;}
._17_c00035{margin-left:-26.206560px;}
._18_c00035{margin-left:-25.009920px;}
._12_c00035{margin-left:-16.177800px;}
._11_c00035{margin-left:-10.821600px;}
._13_c00035{margin-left:-3.001800px;}
._0_c00035{margin-left:-1.123800px;}
._14_c00035{width:1.062720px;}
._c_c00035{width:2.576160px;}
._b_c00035{width:3.744000px;}
._a_c00035{width:4.896000px;}
._6_c00035{width:5.976000px;}
._e_c00035{width:6.984000px;}
._7_c00035{width:8.064000px;}
._9_c00035{width:9.216000px;}
._f_c00035{width:12.097192px;}
._8_c00035{width:13.464000px;}
._4_c00035{width:15.120000px;}
._3_c00035{width:18.432000px;}
._d_c00035{width:26.928000px;}
._1_c00035{width:28.641600px;}
._2_c00035{width:30.098760px;}
._10_c00035{width:31.680000px;}
._5_c00035{width:146.056894px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs5_c00035{font-size:36.000000px;}
.fs3_c00035{font-size:41.760000px;}
.fs1_c00035{font-size:56.160000px;}
.fs6_c00035{font-size:59.040000px;}
.fs8_c00035{font-size:60.000000px;}
.fs7_c00035{font-size:60.857039px;}
.fs4_c00035{font-size:64.800000px;}
.fs0_c00035{font-size:72.000000px;}
.fs2_c00035{font-size:74.215901px;}
.y0_c00035{bottom:0.000000px;}
.y33_c00035{bottom:3.120150px;}
.y32_c00035{bottom:34.744500px;}
.y1_c00035{bottom:54.000000px;}
.y31_c00035{bottom:61.246800px;}
.y2f_c00035{bottom:78.881040px;}
.y30_c00035{bottom:78.885000px;}
.y2e_c00035{bottom:96.165000px;}
.y2d_c00035{bottom:102.285000px;}
.y2c_c00035{bottom:113.805000px;}
.y2b_c00035{bottom:119.925000px;}
.y2a_c00035{bottom:137.565000px;}
.y29_c00035{bottom:148.726800px;}
.y28_c00035{bottom:166.365000px;}
.y27_c00035{bottom:166.366800px;}
.y25_c00035{bottom:184.001040px;}
.y26_c00035{bottom:184.005000px;}
.y24_c00035{bottom:207.405000px;}
.y23_c00035{bottom:234.405000px;}
.y22_c00035{bottom:254.925000px;}
.y21_c00035{bottom:275.805000px;}
.y20_c00035{bottom:311.805000px;}
.y1f_c00035{bottom:333.045000px;}
.y1e_c00035{bottom:353.925000px;}
.y1d_c00035{bottom:389.925000px;}
.y1c_c00035{bottom:410.805000px;}
.y1b_c00035{bottom:432.045000px;}
.y1a_c00035{bottom:452.925000px;}
.y19_c00035{bottom:473.805000px;}
.y18_c00035{bottom:495.045000px;}
.y17_c00035{bottom:515.925000px;}
.y16_c00035{bottom:551.925000px;}
.y15_c00035{bottom:572.805000px;}
.y14_c00035{bottom:594.045000px;}
.y13_c00035{bottom:614.925000px;}
.y12_c00035{bottom:635.805000px;}
.y11_c00035{bottom:657.045000px;}
.y10_c00035{bottom:677.925000px;}
.yf_c00035{bottom:698.805000px;}
.ye_c00035{bottom:735.165000px;}
.yd_c00035{bottom:763.605000px;}
.yc_c00035{bottom:792.045000px;}
.yb_c00035{bottom:820.845000px;}
.ya_c00035{bottom:849.645000px;}
.y9_c00035{bottom:878.445000px;}
.y8_c00035{bottom:914.085000px;}
.y7_c00035{bottom:950.085000px;}
.y6_c00035{bottom:970.965000px;}
.y5_c00035{bottom:991.845000px;}
.y4_c00035{bottom:1013.085000px;}
.y3_c00035{bottom:1049.085000px;}
.y2_c00035{bottom:1085.085000px;}
.hb_c00035{height:19.255500px;}
.h8_c00035{height:32.616000px;}
.h7_c00035{height:45.024609px;}
.hc_c00035{height:46.320000px;}
.h5_c00035{height:47.988281px;}
.h9_c00035{height:53.490240px;}
.ha_c00035{height:55.136477px;}
.h3_c00035{height:65.232000px;}
.h4_c00035{height:67.239607px;}
.h6_c00035{height:68.074560px;}
.h2_c00035{height:1201.365000px;}
.h0_c00035{height:1262.835000px;}
.h1_c00035{height:1263.000000px;}
.w3_c00035{width:16.680000px;}
.w2_c00035{width:863.955000px;}
.w0_c00035{width:892.935000px;}
.w1_c00035{width:893.250000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:14.490000px;}
.x2_c00035{left:113.040150px;}
.x2e_c00035{left:127.217700px;}
.x2f_c00035{left:151.381650px;}
.x30_c00035{left:157.844550px;}
.x25_c00035{left:192.058950px;}
.x29_c00035{left:221.727900px;}
.x3_c00035{left:240.615300px;}
.x16_c00035{left:281.040150px;}
.x2c_c00035{left:282.775200px;}
.x6_c00035{left:308.057700px;}
.x7_c00035{left:312.557700px;}
.x2a_c00035{left:318.399900px;}
.xe_c00035{left:327.065550px;}
.xf_c00035{left:331.565550px;}
.x1e_c00035{left:336.023100px;}
.x31_c00035{left:361.904250px;}
.x4_c00035{left:365.062800px;}
.x5_c00035{left:369.562800px;}
.x8_c00035{left:372.568350px;}
.x10_c00035{left:374.081250px;}
.x9_c00035{left:377.068350px;}
.x1c_c00035{left:384.500550px;}
.x26_c00035{left:392.767050px;}
.x28_c00035{left:404.979150px;}
.x19_c00035{left:411.067800px;}
.x11_c00035{left:419.080050px;}
.x12_c00035{left:423.580050px;}
.xa_c00035{left:437.079000px;}
.xb_c00035{left:441.579000px;}
.x1d_c00035{left:444.511950px;}
.x1f_c00035{left:452.031000px;}
.x1a_c00035{left:471.079050px;}
.x13_c00035{left:480.584850px;}
.x14_c00035{left:485.084850px;}
.x32_c00035{left:486.306900px;}
.xc_c00035{left:511.598100px;}
.xd_c00035{left:516.098100px;}
.x15_c00035{left:528.067800px;}
.x1b_c00035{left:532.667400px;}
.x17_c00035{left:552.449400px;}
.x24_c00035{left:579.473850px;}
.x33_c00035{left:583.803600px;}
.x21_c00035{left:601.155450px;}
.x22_c00035{left:623.384400px;}
.x27_c00035{left:630.776700px;}
.x2d_c00035{left:633.662850px;}
.x2b_c00035{left:715.396350px;}
.x20_c00035{left:734.406450px;}
.x18_c00035{left:741.390000px;}
.x23_c00035{left:750.390000px;}
.x34_c00035{left:768.255000px;}
@media print{
.v2_c00035{vertical-align:-21.760000pt;}
.v0_c00035{vertical-align:0.000000pt;}
.v1_c00035{vertical-align:26.880000pt;}
.lsd_c00035{letter-spacing:-0.159616pt;}
.lsa_c00035{letter-spacing:0.000000pt;}
.lse_c00035{letter-spacing:0.128000pt;}
.ls13_c00035{letter-spacing:0.236160pt;}
.ls14_c00035{letter-spacing:0.243428pt;}
.ls9_c00035{letter-spacing:0.262400pt;}
.ls7_c00035{letter-spacing:0.270476pt;}
.ls4_c00035{letter-spacing:0.281295pt;}
.ls10_c00035{letter-spacing:0.283392pt;}
.ls3_c00035{letter-spacing:0.286400pt;}
.ls5_c00035{letter-spacing:0.297523pt;}
.ls12_c00035{letter-spacing:0.340799pt;}
.ls11_c00035{letter-spacing:0.389485pt;}
.ls19_c00035{letter-spacing:0.425088pt;}
.ls8_c00035{letter-spacing:0.472320pt;}
.lsc_c00035{letter-spacing:0.499200pt;}
.ls2_c00035{letter-spacing:0.586667pt;}
.lsb_c00035{letter-spacing:0.619008pt;}
.ls17_c00035{letter-spacing:0.632913pt;}
.ls15_c00035{letter-spacing:0.730284pt;}
.lsf_c00035{letter-spacing:2.246144pt;}
.ls1_c00035{letter-spacing:5.312000pt;}
.ls18_c00035{letter-spacing:23.563520pt;}
.ls16_c00035{letter-spacing:25.940864pt;}
.ls6_c00035{letter-spacing:25.946112pt;}
.ls0_c00035{letter-spacing:125.952000pt;}
.ws0_c00035{word-spacing:-17.792000pt;}
.ws6_c00035{word-spacing:-15.768735pt;}
.ws3_c00035{word-spacing:-15.427936pt;}
.ws4_c00035{word-spacing:-15.379250pt;}
.ws5_c00035{word-spacing:-15.281879pt;}
.ws7_c00035{word-spacing:-15.061760pt;}
.ws1_c00035{word-spacing:-10.159744pt;}
.ws2_c00035{word-spacing:-9.024000pt;}
.ws8_c00035{word-spacing:0.000000pt;}
._16_c00035{margin-left:-26.449920pt;}
._15_c00035{margin-left:-25.505280pt;}
._17_c00035{margin-left:-23.294720pt;}
._18_c00035{margin-left:-22.231040pt;}
._12_c00035{margin-left:-14.380267pt;}
._11_c00035{margin-left:-9.619200pt;}
._13_c00035{margin-left:-2.668267pt;}
._0_c00035{margin-left:-0.998933pt;}
._14_c00035{width:0.944640pt;}
._c_c00035{width:2.289920pt;}
._b_c00035{width:3.328000pt;}
._a_c00035{width:4.352000pt;}
._6_c00035{width:5.312000pt;}
._e_c00035{width:6.208000pt;}
._7_c00035{width:7.168000pt;}
._9_c00035{width:8.192000pt;}
._f_c00035{width:10.753059pt;}
._8_c00035{width:11.968000pt;}
._4_c00035{width:13.440000pt;}
._3_c00035{width:16.384000pt;}
._d_c00035{width:23.936000pt;}
._1_c00035{width:25.459200pt;}
._2_c00035{width:26.754453pt;}
._10_c00035{width:28.160000pt;}
._5_c00035{width:129.828350pt;}
.fs5_c00035{font-size:32.000000pt;}
.fs3_c00035{font-size:37.120000pt;}
.fs1_c00035{font-size:49.920000pt;}
.fs6_c00035{font-size:52.480000pt;}
.fs8_c00035{font-size:53.333333pt;}
.fs7_c00035{font-size:54.095146pt;}
.fs4_c00035{font-size:57.600000pt;}
.fs0_c00035{font-size:64.000000pt;}
.fs2_c00035{font-size:65.969690pt;}
.y0_c00035{bottom:0.000000pt;}
.y33_c00035{bottom:2.773467pt;}
.y32_c00035{bottom:30.884000pt;}
.y1_c00035{bottom:48.000000pt;}
.y31_c00035{bottom:54.441600pt;}
.y2f_c00035{bottom:70.116480pt;}
.y30_c00035{bottom:70.120000pt;}
.y2e_c00035{bottom:85.480000pt;}
.y2d_c00035{bottom:90.920000pt;}
.y2c_c00035{bottom:101.160000pt;}
.y2b_c00035{bottom:106.600000pt;}
.y2a_c00035{bottom:122.280000pt;}
.y29_c00035{bottom:132.201600pt;}
.y28_c00035{bottom:147.880000pt;}
.y27_c00035{bottom:147.881600pt;}
.y25_c00035{bottom:163.556480pt;}
.y26_c00035{bottom:163.560000pt;}
.y24_c00035{bottom:184.360000pt;}
.y23_c00035{bottom:208.360000pt;}
.y22_c00035{bottom:226.600000pt;}
.y21_c00035{bottom:245.160000pt;}
.y20_c00035{bottom:277.160000pt;}
.y1f_c00035{bottom:296.040000pt;}
.y1e_c00035{bottom:314.600000pt;}
.y1d_c00035{bottom:346.600000pt;}
.y1c_c00035{bottom:365.160000pt;}
.y1b_c00035{bottom:384.040000pt;}
.y1a_c00035{bottom:402.600000pt;}
.y19_c00035{bottom:421.160000pt;}
.y18_c00035{bottom:440.040000pt;}
.y17_c00035{bottom:458.600000pt;}
.y16_c00035{bottom:490.600000pt;}
.y15_c00035{bottom:509.160000pt;}
.y14_c00035{bottom:528.040000pt;}
.y13_c00035{bottom:546.600000pt;}
.y12_c00035{bottom:565.160000pt;}
.y11_c00035{bottom:584.040000pt;}
.y10_c00035{bottom:602.600000pt;}
.yf_c00035{bottom:621.160000pt;}
.ye_c00035{bottom:653.480000pt;}
.yd_c00035{bottom:678.760000pt;}
.yc_c00035{bottom:704.040000pt;}
.yb_c00035{bottom:729.640000pt;}
.ya_c00035{bottom:755.240000pt;}
.y9_c00035{bottom:780.840000pt;}
.y8_c00035{bottom:812.520000pt;}
.y7_c00035{bottom:844.520000pt;}
.y6_c00035{bottom:863.080000pt;}
.y5_c00035{bottom:881.640000pt;}
.y4_c00035{bottom:900.520000pt;}
.y3_c00035{bottom:932.520000pt;}
.y2_c00035{bottom:964.520000pt;}
.hb_c00035{height:17.116000pt;}
.h8_c00035{height:28.992000pt;}
.h7_c00035{height:40.021875pt;}
.hc_c00035{height:41.173333pt;}
.h5_c00035{height:42.656250pt;}
.h9_c00035{height:47.546880pt;}
.ha_c00035{height:49.010202pt;}
.h3_c00035{height:57.984000pt;}
.h4_c00035{height:59.768539pt;}
.h6_c00035{height:60.510720pt;}
.h2_c00035{height:1067.880000pt;}
.h0_c00035{height:1122.520000pt;}
.h1_c00035{height:1122.666667pt;}
.w3_c00035{width:14.826667pt;}
.w2_c00035{width:767.960000pt;}
.w0_c00035{width:793.720000pt;}
.w1_c00035{width:794.000000pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:12.880000pt;}
.x2_c00035{left:100.480133pt;}
.x2e_c00035{left:113.082400pt;}
.x2f_c00035{left:134.561467pt;}
.x30_c00035{left:140.306267pt;}
.x25_c00035{left:170.719067pt;}
.x29_c00035{left:197.091467pt;}
.x3_c00035{left:213.880267pt;}
.x16_c00035{left:249.813467pt;}
.x2c_c00035{left:251.355733pt;}
.x6_c00035{left:273.829067pt;}
.x7_c00035{left:277.829067pt;}
.x2a_c00035{left:283.022133pt;}
.xe_c00035{left:290.724933pt;}
.xf_c00035{left:294.724933pt;}
.x1e_c00035{left:298.687200pt;}
.x31_c00035{left:321.692667pt;}
.x4_c00035{left:324.500267pt;}
.x5_c00035{left:328.500267pt;}
.x8_c00035{left:331.171867pt;}
.x10_c00035{left:332.516667pt;}
.x9_c00035{left:335.171867pt;}
.x1c_c00035{left:341.778267pt;}
.x26_c00035{left:349.126267pt;}
.x28_c00035{left:359.981467pt;}
.x19_c00035{left:365.393600pt;}
.x11_c00035{left:372.515600pt;}
.x12_c00035{left:376.515600pt;}
.xa_c00035{left:388.514667pt;}
.xb_c00035{left:392.514667pt;}
.x1d_c00035{left:395.121733pt;}
.x1f_c00035{left:401.805333pt;}
.x1a_c00035{left:418.736933pt;}
.x13_c00035{left:427.186533pt;}
.x14_c00035{left:431.186533pt;}
.x32_c00035{left:432.272800pt;}
.xc_c00035{left:454.753867pt;}
.xd_c00035{left:458.753867pt;}
.x15_c00035{left:469.393600pt;}
.x1b_c00035{left:473.482133pt;}
.x17_c00035{left:491.066133pt;}
.x24_c00035{left:515.087867pt;}
.x33_c00035{left:518.936533pt;}
.x21_c00035{left:534.360400pt;}
.x22_c00035{left:554.119467pt;}
.x27_c00035{left:560.690400pt;}
.x2d_c00035{left:563.255867pt;}
.x2b_c00035{left:635.907867pt;}
.x20_c00035{left:652.805733pt;}
.x18_c00035{left:659.013333pt;}
.x23_c00035{left:667.013333pt;}
.x34_c00035{left:682.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_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_7eb0e4dd2fb3e5b815c096ac.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.134000;font-style:normal;font-weight:normal;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_81806756175eb9687bc66394.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.134000;font-style:normal;font-weight:normal;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_701a1e6b3e26d545defc8a84.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00036;src:url('chunks/assets/font_27f34fe2ef79a3f9f0ea7f53.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;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:ff5_c00036;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;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:ff6_c00036;src:url('chunks/assets/font_137ef2b59d9b2f24e3328865.woff2')format("woff");}.ff6_c00036{font-family:ff6_c00036;line-height:0.787000;font-style: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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m1_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);}
.v1_c00036{vertical-align:-30.240000px;}
.v3_c00036{vertical-align:-24.480000px;}
.v0_c00036{vertical-align:0.000000px;}
.v2_c00036{vertical-align:30.240000px;}
.ls4_c00036{letter-spacing:-0.179568px;}
.ls3_c00036{letter-spacing:0.000000px;}
.ls1_c00036{letter-spacing:0.005400px;}
.ls9_c00036{letter-spacing:0.144000px;}
.lsa_c00036{letter-spacing:0.265680px;}
.ls8_c00036{letter-spacing:0.561600px;}
.ls2_c00036{letter-spacing:0.605040px;}
.ls7_c00036{letter-spacing:0.696384px;}
.ls5_c00036{letter-spacing:5.976000px;}
.ls6_c00036{letter-spacing:6.955200px;}
.ls0_c00036{letter-spacing:143.904633px;}
.sc__c00036{text-shadow:none;}
.sc1_c00036{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_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;}
.sc1_c00036{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00036{word-spacing:-20.016000px;}
.ws0_c00036{word-spacing:-11.429712px;}
.ws2_c00036{word-spacing:-10.152000px;}
.ws3_c00036{word-spacing:0.000000px;}
._10_c00036{margin-left:-16.177800px;}
._f_c00036{margin-left:-10.821600px;}
._8_c00036{margin-left:-6.427584px;}
._9_c00036{margin-left:-1.123200px;}
._2_c00036{width:2.160000px;}
._1_c00036{width:3.560402px;}
._0_c00036{width:4.675602px;}
._6_c00036{width:5.849593px;}
._7_c00036{width:6.984000px;}
._b_c00036{width:15.336000px;}
._e_c00036{width:22.824000px;}
._d_c00036{width:24.048000px;}
._c_c00036{width:27.576000px;}
._a_c00036{width:44.136000px;}
._5_c00036{width:61.376550px;}
._4_c00036{width:102.640591px;}
._3_c00036{width:143.904633px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs5_c00036{font-size:36.000000px;}
.fs1_c00036{font-size:41.760000px;}
.fs3_c00036{font-size:56.160000px;}
.fs6_c00036{font-size:59.040000px;}
.fs7_c00036{font-size:60.000000px;}
.fs4_c00036{font-size:64.800000px;}
.fs2_c00036{font-size:72.000000px;}
.fs0_c00036{font-size:74.215901px;}
.y0_c00036{bottom:0.000000px;}
.y2b_c00036{bottom:3.120150px;}
.y2a_c00036{bottom:34.744500px;}
.y1_c00036{bottom:54.000000px;}
.y29_c00036{bottom:61.605000px;}
.y28_c00036{bottom:78.885000px;}
.y27_c00036{bottom:96.525000px;}
.y26_c00036{bottom:123.165000px;}
.y25_c00036{bottom:142.605000px;}
.y24_c00036{bottom:163.485000px;}
.y23_c00036{bottom:184.365000px;}
.y22_c00036{bottom:205.605000px;}
.y21_c00036{bottom:226.485000px;}
.y20_c00036{bottom:247.365000px;}
.y1f_c00036{bottom:283.365000px;}
.y1e_c00036{bottom:304.605000px;}
.y1d_c00036{bottom:325.485000px;}
.y1c_c00036{bottom:361.485000px;}
.y1b_c00036{bottom:389.925000px;}
.y1a_c00036{bottom:418.725000px;}
.y19_c00036{bottom:447.165000px;}
.y18_c00036{bottom:475.605000px;}
.y17_c00036{bottom:511.605000px;}
.y16_c00036{bottom:547.605000px;}
.y15_c00036{bottom:583.605000px;}
.y14_c00036{bottom:604.485000px;}
.y13_c00036{bottom:625.725000px;}
.y12_c00036{bottom:654.165000px;}
.y11_c00036{bottom:682.605000px;}
.y10_c00036{bottom:711.765000px;}
.yf_c00036{bottom:740.565000px;}
.ye_c00036{bottom:769.725000px;}
.yd_c00036{bottom:798.525000px;}
.yc_c00036{bottom:826.605000px;}
.yb_c00036{bottom:855.045000px;}
.ya_c00036{bottom:884.565000px;}
.y9_c00036{bottom:913.365000px;}
.y8_c00036{bottom:942.525000px;}
.y7_c00036{bottom:971.325000px;}
.y6_c00036{bottom:1006.965000px;}
.y5_c00036{bottom:1042.965000px;}
.y4_c00036{bottom:1063.845000px;}
.y2_c00036{bottom:1085.085000px;}
.y3_c00036{bottom:1092.645000px;}
.ha_c00036{height:19.255500px;}
.h9_c00036{height:32.616000px;}
.h4_c00036{height:37.834560px;}
.h8_c00036{height:45.024609px;}
.hb_c00036{height:46.320000px;}
.h6_c00036{height:47.988281px;}
.h5_c00036{height:65.232000px;}
.h3_c00036{height:67.239607px;}
.h7_c00036{height:68.074560px;}
.h2_c00036{height:1201.365000px;}
.h0_c00036{height:1262.835000px;}
.h1_c00036{height:1263.000000px;}
.w3_c00036{width:16.680000px;}
.w2_c00036{width:863.955000px;}
.w0_c00036{width:892.935000px;}
.w1_c00036{width:893.250000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:14.490000px;}
.x2_c00036{left:113.040150px;}
.x11_c00036{left:135.273150px;}
.x15_c00036{left:166.140000px;}
.x18_c00036{left:190.060950px;}
.x19_c00036{left:205.054650px;}
.x4_c00036{left:219.631650px;}
.x3_c00036{left:249.480000px;}
.x6_c00036{left:283.140000px;}
.x9_c00036{left:293.147850px;}
.xe_c00036{left:303.155550px;}
.xa_c00036{left:323.040150px;}
.xf_c00036{left:372.035550px;}
.x12_c00036{left:374.510400px;}
.xb_c00036{left:380.045250px;}
.x7_c00036{left:389.062800px;}
.x8_c00036{left:398.062800px;}
.x16_c00036{left:444.573900px;}
.x5_c00036{left:457.166400px;}
.xc_c00036{left:464.068050px;}
.xd_c00036{left:473.068050px;}
.x17_c00036{left:490.581300px;}
.x10_c00036{left:495.027750px;}
.x13_c00036{left:559.895100px;}
.x14_c00036{left:682.646100px;}
.x1a_c00036{left:768.255000px;}
@media print{
.v1_c00036{vertical-align:-26.880000pt;}
.v3_c00036{vertical-align:-21.760000pt;}
.v0_c00036{vertical-align:0.000000pt;}
.v2_c00036{vertical-align:26.880000pt;}
.ls4_c00036{letter-spacing:-0.159616pt;}
.ls3_c00036{letter-spacing:0.000000pt;}
.ls1_c00036{letter-spacing:0.004800pt;}
.ls9_c00036{letter-spacing:0.128000pt;}
.lsa_c00036{letter-spacing:0.236160pt;}
.ls8_c00036{letter-spacing:0.499200pt;}
.ls2_c00036{letter-spacing:0.537813pt;}
.ls7_c00036{letter-spacing:0.619008pt;}
.ls5_c00036{letter-spacing:5.312000pt;}
.ls6_c00036{letter-spacing:6.182400pt;}
.ls0_c00036{letter-spacing:127.915229pt;}
.ws1_c00036{word-spacing:-17.792000pt;}
.ws0_c00036{word-spacing:-10.159744pt;}
.ws2_c00036{word-spacing:-9.024000pt;}
.ws3_c00036{word-spacing:0.000000pt;}
._10_c00036{margin-left:-14.380267pt;}
._f_c00036{margin-left:-9.619200pt;}
._8_c00036{margin-left:-5.713408pt;}
._9_c00036{margin-left:-0.998400pt;}
._2_c00036{width:1.920000pt;}
._1_c00036{width:3.164802pt;}
._0_c00036{width:4.156090pt;}
._6_c00036{width:5.199638pt;}
._7_c00036{width:6.208000pt;}
._b_c00036{width:13.632000pt;}
._e_c00036{width:20.288000pt;}
._d_c00036{width:21.376000pt;}
._c_c00036{width:24.512000pt;}
._a_c00036{width:39.232000pt;}
._5_c00036{width:54.556934pt;}
._4_c00036{width:91.236081pt;}
._3_c00036{width:127.915229pt;}
.fs5_c00036{font-size:32.000000pt;}
.fs1_c00036{font-size:37.120000pt;}
.fs3_c00036{font-size:49.920000pt;}
.fs6_c00036{font-size:52.480000pt;}
.fs7_c00036{font-size:53.333333pt;}
.fs4_c00036{font-size:57.600000pt;}
.fs2_c00036{font-size:64.000000pt;}
.fs0_c00036{font-size:65.969690pt;}
.y0_c00036{bottom:0.000000pt;}
.y2b_c00036{bottom:2.773467pt;}
.y2a_c00036{bottom:30.884000pt;}
.y1_c00036{bottom:48.000000pt;}
.y29_c00036{bottom:54.760000pt;}
.y28_c00036{bottom:70.120000pt;}
.y27_c00036{bottom:85.800000pt;}
.y26_c00036{bottom:109.480000pt;}
.y25_c00036{bottom:126.760000pt;}
.y24_c00036{bottom:145.320000pt;}
.y23_c00036{bottom:163.880000pt;}
.y22_c00036{bottom:182.760000pt;}
.y21_c00036{bottom:201.320000pt;}
.y20_c00036{bottom:219.880000pt;}
.y1f_c00036{bottom:251.880000pt;}
.y1e_c00036{bottom:270.760000pt;}
.y1d_c00036{bottom:289.320000pt;}
.y1c_c00036{bottom:321.320000pt;}
.y1b_c00036{bottom:346.600000pt;}
.y1a_c00036{bottom:372.200000pt;}
.y19_c00036{bottom:397.480000pt;}
.y18_c00036{bottom:422.760000pt;}
.y17_c00036{bottom:454.760000pt;}
.y16_c00036{bottom:486.760000pt;}
.y15_c00036{bottom:518.760000pt;}
.y14_c00036{bottom:537.320000pt;}
.y13_c00036{bottom:556.200000pt;}
.y12_c00036{bottom:581.480000pt;}
.y11_c00036{bottom:606.760000pt;}
.y10_c00036{bottom:632.680000pt;}
.yf_c00036{bottom:658.280000pt;}
.ye_c00036{bottom:684.200000pt;}
.yd_c00036{bottom:709.800000pt;}
.yc_c00036{bottom:734.760000pt;}
.yb_c00036{bottom:760.040000pt;}
.ya_c00036{bottom:786.280000pt;}
.y9_c00036{bottom:811.880000pt;}
.y8_c00036{bottom:837.800000pt;}
.y7_c00036{bottom:863.400000pt;}
.y6_c00036{bottom:895.080000pt;}
.y5_c00036{bottom:927.080000pt;}
.y4_c00036{bottom:945.640000pt;}
.y2_c00036{bottom:964.520000pt;}
.y3_c00036{bottom:971.240000pt;}
.ha_c00036{height:17.116000pt;}
.h9_c00036{height:28.992000pt;}
.h4_c00036{height:33.630720pt;}
.h8_c00036{height:40.021875pt;}
.hb_c00036{height:41.173333pt;}
.h6_c00036{height:42.656250pt;}
.h5_c00036{height:57.984000pt;}
.h3_c00036{height:59.768539pt;}
.h7_c00036{height:60.510720pt;}
.h2_c00036{height:1067.880000pt;}
.h0_c00036{height:1122.520000pt;}
.h1_c00036{height:1122.666667pt;}
.w3_c00036{width:14.826667pt;}
.w2_c00036{width:767.960000pt;}
.w0_c00036{width:793.720000pt;}
.w1_c00036{width:794.000000pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:12.880000pt;}
.x2_c00036{left:100.480133pt;}
.x11_c00036{left:120.242800pt;}
.x15_c00036{left:147.680000pt;}
.x18_c00036{left:168.943067pt;}
.x19_c00036{left:182.270800pt;}
.x4_c00036{left:195.228133pt;}
.x3_c00036{left:221.760000pt;}
.x6_c00036{left:251.680000pt;}
.x9_c00036{left:260.575867pt;}
.xe_c00036{left:269.471600pt;}
.xa_c00036{left:287.146800pt;}
.xf_c00036{left:330.698267pt;}
.x12_c00036{left:332.898133pt;}
.xb_c00036{left:337.818000pt;}
.x7_c00036{left:345.833600pt;}
.x8_c00036{left:353.833600pt;}
.x16_c00036{left:395.176800pt;}
.x5_c00036{left:406.370133pt;}
.xc_c00036{left:412.504933pt;}
.xd_c00036{left:420.504933pt;}
.x17_c00036{left:436.072267pt;}
.x10_c00036{left:440.024667pt;}
.x13_c00036{left:497.684533pt;}
.x14_c00036{left:606.796533pt;}
.x1a_c00036{left:682.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_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_bbc91dc41ba28da70da6a2e3.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.134000;font-style:normal;font-weight:normal;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_4b9f2d37c64752010cdf613d.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_d08e959bf419e4792ca07bd4.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;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:ff4_c00037;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;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:ff5_c00037;src:url('chunks/assets/font_166ba8d7fe365a595f286e67.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:0.787000;font-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_c00037{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00037{vertical-align:-24.480000px;}
.v0_c00037{vertical-align:0.000000px;}
.v1_c00037{vertical-align:30.240000px;}
.ls6_c00037{letter-spacing:-0.179568px;}
.ls5_c00037{letter-spacing:0.000000px;}
.lsa_c00037{letter-spacing:0.144000px;}
.lsb_c00037{letter-spacing:0.265680px;}
.ls2_c00037{letter-spacing:0.295200px;}
.ls0_c00037{letter-spacing:0.512640px;}
.ls3_c00037{letter-spacing:0.531360px;}
.ls4_c00037{letter-spacing:0.560880px;}
.ls9_c00037{letter-spacing:0.561600px;}
.ls1_c00037{letter-spacing:0.605880px;}
.ls8_c00037{letter-spacing:0.696384px;}
.ls7_c00037{letter-spacing:5.976000px;}
.sc__c00037{text-shadow:none;}
.sc1_c00037{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_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;}
.sc1_c00037{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00037{word-spacing:-20.016000px;}
.ws3_c00037{word-spacing:-16.944480px;}
.ws0_c00037{word-spacing:-11.429712px;}
.ws2_c00037{word-spacing:-10.152000px;}
.ws4_c00037{word-spacing:0.000000px;}
._e_c00037{margin-left:-16.177800px;}
._d_c00037{margin-left:-10.821600px;}
._8_c00037{margin-left:-1.123200px;}
._1_c00037{width:1.944000px;}
._5_c00037{width:3.744000px;}
._2_c00037{width:5.544000px;}
._9_c00037{width:6.624000px;}
._4_c00037{width:9.072000px;}
._3_c00037{width:10.080000px;}
._6_c00037{width:11.448000px;}
._7_c00037{width:12.504985px;}
._0_c00037{width:14.256000px;}
._a_c00037{width:21.957960px;}
._b_c00037{width:23.243712px;}
._c_c00037{width:31.752000px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs5_c00037{font-size:36.000000px;}
.fs2_c00037{font-size:41.760000px;}
.fs3_c00037{font-size:56.160000px;}
.fs6_c00037{font-size:59.040000px;}
.fs7_c00037{font-size:60.000000px;}
.fs4_c00037{font-size:64.800000px;}
.fs0_c00037{font-size:72.000000px;}
.fs1_c00037{font-size:74.215901px;}
.y0_c00037{bottom:0.000000px;}
.y23_c00037{bottom:3.120150px;}
.y22_c00037{bottom:34.744500px;}
.y1_c00037{bottom:54.000000px;}
.y21_c00037{bottom:61.605000px;}
.y20_c00037{bottom:78.885000px;}
.y1f_c00037{bottom:105.525000px;}
.y1e_c00037{bottom:353.925000px;}
.y1d_c00037{bottom:375.165000px;}
.y1c_c00037{bottom:396.045000px;}
.y1b_c00037{bottom:416.925000px;}
.y1a_c00037{bottom:438.165000px;}
.y19_c00037{bottom:459.045000px;}
.y18_c00037{bottom:479.925000px;}
.y17_c00037{bottom:515.925000px;}
.y16_c00037{bottom:544.725000px;}
.y15_c00037{bottom:573.525000px;}
.y14_c00037{bottom:609.165000px;}
.y13_c00037{bottom:645.165000px;}
.y12_c00037{bottom:666.405000px;}
.y11_c00037{bottom:687.285000px;}
.y10_c00037{bottom:723.285000px;}
.yf_c00037{bottom:752.445000px;}
.ye_c00037{bottom:780.525000px;}
.yd_c00037{bottom:808.965000px;}
.yc_c00037{bottom:844.965000px;}
.yb_c00037{bottom:880.965000px;}
.ya_c00037{bottom:901.845000px;}
.y9_c00037{bottom:923.085000px;}
.y8_c00037{bottom:943.965000px;}
.y7_c00037{bottom:964.845000px;}
.y6_c00037{bottom:986.085000px;}
.y5_c00037{bottom:1006.965000px;}
.y4_c00037{bottom:1042.965000px;}
.y3_c00037{bottom:1063.845000px;}
.y2_c00037{bottom:1085.085000px;}
.h9_c00037{height:19.255500px;}
.h8_c00037{height:32.616000px;}
.h7_c00037{height:45.024609px;}
.ha_c00037{height:46.320000px;}
.h6_c00037{height:47.988281px;}
.h3_c00037{height:65.232000px;}
.h4_c00037{height:67.239607px;}
.h5_c00037{height:68.074560px;}
.h2_c00037{height:1201.365000px;}
.h0_c00037{height:1262.835000px;}
.h1_c00037{height:1263.000000px;}
.w3_c00037{width:16.680000px;}
.w2_c00037{width:863.955000px;}
.w0_c00037{width:892.935000px;}
.w1_c00037{width:893.250000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:14.490000px;}
.x2_c00037{left:113.040150px;}
.x21_c00037{left:166.140000px;}
.x17_c00037{left:168.047250px;}
.xd_c00037{left:187.036800px;}
.x3_c00037{left:198.618150px;}
.x11_c00037{left:238.257900px;}
.x8_c00037{left:251.856750px;}
.x9_c00037{left:275.850600px;}
.x13_c00037{left:279.693900px;}
.x29_c00037{left:283.134000px;}
.xe_c00037{left:324.104400px;}
.x18_c00037{left:325.665150px;}
.x4_c00037{left:340.617900px;}
.x1a_c00037{left:348.668700px;}
.x1b_c00037{left:353.168700px;}
.x12_c00037{left:355.255650px;}
.x7_c00037{left:374.452200px;}
.xa_c00037{left:384.412800px;}
.x14_c00037{left:409.181700px;}
.x22_c00037{left:412.413900px;}
.x23_c00037{left:416.913900px;}
.x19_c00037{left:418.705500px;}
.x1c_c00037{left:426.157050px;}
.x1d_c00037{left:430.657050px;}
.x5_c00037{left:490.944900px;}
.x1e_c00037{left:495.671550px;}
.x24_c00037{left:497.912550px;}
.xb_c00037{left:500.420700px;}
.x25_c00037{left:502.412550px;}
.x26_c00037{left:562.423050px;}
.x1f_c00037{left:567.184200px;}
.x20_c00037{left:571.684200px;}
.xf_c00037{left:585.277650px;}
.x6_c00037{left:594.947400px;}
.x15_c00037{left:622.795950px;}
.x27_c00037{left:640.920000px;}
.x28_c00037{left:645.420000px;}
.x16_c00037{left:669.409350px;}
.xc_c00037{left:708.397050px;}
.x10_c00037{left:727.277400px;}
.x2a_c00037{left:768.255000px;}
@media print{
.v2_c00037{vertical-align:-21.760000pt;}
.v0_c00037{vertical-align:0.000000pt;}
.v1_c00037{vertical-align:26.880000pt;}
.ls6_c00037{letter-spacing:-0.159616pt;}
.ls5_c00037{letter-spacing:0.000000pt;}
.lsa_c00037{letter-spacing:0.128000pt;}
.lsb_c00037{letter-spacing:0.236160pt;}
.ls2_c00037{letter-spacing:0.262400pt;}
.ls0_c00037{letter-spacing:0.455680pt;}
.ls3_c00037{letter-spacing:0.472320pt;}
.ls4_c00037{letter-spacing:0.498560pt;}
.ls9_c00037{letter-spacing:0.499200pt;}
.ls1_c00037{letter-spacing:0.538560pt;}
.ls8_c00037{letter-spacing:0.619008pt;}
.ls7_c00037{letter-spacing:5.312000pt;}
.ws1_c00037{word-spacing:-17.792000pt;}
.ws3_c00037{word-spacing:-15.061760pt;}
.ws0_c00037{word-spacing:-10.159744pt;}
.ws2_c00037{word-spacing:-9.024000pt;}
.ws4_c00037{word-spacing:0.000000pt;}
._e_c00037{margin-left:-14.380267pt;}
._d_c00037{margin-left:-9.619200pt;}
._8_c00037{margin-left:-0.998400pt;}
._1_c00037{width:1.728000pt;}
._5_c00037{width:3.328000pt;}
._2_c00037{width:4.928000pt;}
._9_c00037{width:5.888000pt;}
._4_c00037{width:8.064000pt;}
._3_c00037{width:8.960000pt;}
._6_c00037{width:10.176000pt;}
._7_c00037{width:11.115542pt;}
._0_c00037{width:12.672000pt;}
._a_c00037{width:19.518187pt;}
._b_c00037{width:20.661077pt;}
._c_c00037{width:28.224000pt;}
.fs5_c00037{font-size:32.000000pt;}
.fs2_c00037{font-size:37.120000pt;}
.fs3_c00037{font-size:49.920000pt;}
.fs6_c00037{font-size:52.480000pt;}
.fs7_c00037{font-size:53.333333pt;}
.fs4_c00037{font-size:57.600000pt;}
.fs0_c00037{font-size:64.000000pt;}
.fs1_c00037{font-size:65.969690pt;}
.y0_c00037{bottom:0.000000pt;}
.y23_c00037{bottom:2.773467pt;}
.y22_c00037{bottom:30.884000pt;}
.y1_c00037{bottom:48.000000pt;}
.y21_c00037{bottom:54.760000pt;}
.y20_c00037{bottom:70.120000pt;}
.y1f_c00037{bottom:93.800000pt;}
.y1e_c00037{bottom:314.600000pt;}
.y1d_c00037{bottom:333.480000pt;}
.y1c_c00037{bottom:352.040000pt;}
.y1b_c00037{bottom:370.600000pt;}
.y1a_c00037{bottom:389.480000pt;}
.y19_c00037{bottom:408.040000pt;}
.y18_c00037{bottom:426.600000pt;}
.y17_c00037{bottom:458.600000pt;}
.y16_c00037{bottom:484.200000pt;}
.y15_c00037{bottom:509.800000pt;}
.y14_c00037{bottom:541.480000pt;}
.y13_c00037{bottom:573.480000pt;}
.y12_c00037{bottom:592.360000pt;}
.y11_c00037{bottom:610.920000pt;}
.y10_c00037{bottom:642.920000pt;}
.yf_c00037{bottom:668.840000pt;}
.ye_c00037{bottom:693.800000pt;}
.yd_c00037{bottom:719.080000pt;}
.yc_c00037{bottom:751.080000pt;}
.yb_c00037{bottom:783.080000pt;}
.ya_c00037{bottom:801.640000pt;}
.y9_c00037{bottom:820.520000pt;}
.y8_c00037{bottom:839.080000pt;}
.y7_c00037{bottom:857.640000pt;}
.y6_c00037{bottom:876.520000pt;}
.y5_c00037{bottom:895.080000pt;}
.y4_c00037{bottom:927.080000pt;}
.y3_c00037{bottom:945.640000pt;}
.y2_c00037{bottom:964.520000pt;}
.h9_c00037{height:17.116000pt;}
.h8_c00037{height:28.992000pt;}
.h7_c00037{height:40.021875pt;}
.ha_c00037{height:41.173333pt;}
.h6_c00037{height:42.656250pt;}
.h3_c00037{height:57.984000pt;}
.h4_c00037{height:59.768539pt;}
.h5_c00037{height:60.510720pt;}
.h2_c00037{height:1067.880000pt;}
.h0_c00037{height:1122.520000pt;}
.h1_c00037{height:1122.666667pt;}
.w3_c00037{width:14.826667pt;}
.w2_c00037{width:767.960000pt;}
.w0_c00037{width:793.720000pt;}
.w1_c00037{width:794.000000pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:12.880000pt;}
.x2_c00037{left:100.480133pt;}
.x21_c00037{left:147.680000pt;}
.x17_c00037{left:149.375333pt;}
.xd_c00037{left:166.254933pt;}
.x3_c00037{left:176.549467pt;}
.x11_c00037{left:211.784800pt;}
.x8_c00037{left:223.872667pt;}
.x9_c00037{left:245.200533pt;}
.x13_c00037{left:248.616800pt;}
.x29_c00037{left:251.674667pt;}
.xe_c00037{left:288.092800pt;}
.x18_c00037{left:289.480133pt;}
.x4_c00037{left:302.771467pt;}
.x1a_c00037{left:309.927733pt;}
.x1b_c00037{left:313.927733pt;}
.x12_c00037{left:315.782800pt;}
.x7_c00037{left:332.846400pt;}
.xa_c00037{left:341.700267pt;}
.x14_c00037{left:363.717067pt;}
.x22_c00037{left:366.590133pt;}
.x23_c00037{left:370.590133pt;}
.x19_c00037{left:372.182667pt;}
.x1c_c00037{left:378.806267pt;}
.x1d_c00037{left:382.806267pt;}
.x5_c00037{left:436.395467pt;}
.x1e_c00037{left:440.596933pt;}
.x24_c00037{left:442.588933pt;}
.xb_c00037{left:444.818400pt;}
.x25_c00037{left:446.588933pt;}
.x26_c00037{left:499.931600pt;}
.x1f_c00037{left:504.163733pt;}
.x20_c00037{left:508.163733pt;}
.xf_c00037{left:520.246800pt;}
.x6_c00037{left:528.842133pt;}
.x15_c00037{left:553.596400pt;}
.x27_c00037{left:569.706667pt;}
.x28_c00037{left:573.706667pt;}
.x16_c00037{left:595.030533pt;}
.xc_c00037{left:629.686267pt;}
.x10_c00037{left:646.468800pt;}
.x2a_c00037{left:682.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_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_4871c1ccc0ed2e633d04fba3.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.134000;font-style:normal;font-weight:normal;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_169411140ea5b8a2a90ff951.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_99f93515a715d032885e8dff.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_21021900ee78866432356e93.woff2')format("woff");}.ff4_c00038{font-family:ff4_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;}
@font-face{font-family:ff5_c00038;src:url('chunks/assets/font_d08e959bf419e4792ca07bd4.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;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:ff6_c00038;src:url('chunks/assets/font_f501e7d3e35d3b60d2ee0819.woff2')format("woff");}.ff6_c00038{font-family:ff6_c00038;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00038{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls4_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:0.013200px;}
.ls1_c00038{letter-spacing:0.232320px;}
.ls6_c00038{letter-spacing:0.561600px;}
.ls5_c00038{letter-spacing:0.696384px;}
.ls3_c00038{letter-spacing:5.430672px;}
.ls2_c00038{letter-spacing:5.976000px;}
.sc__c00038{text-shadow:none;}
.sc1_c00038{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_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;}
.sc1_c00038{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00038{word-spacing:-21.043152px;}
.ws0_c00038{word-spacing:-20.016000px;}
.ws2_c00038{word-spacing:0.000000px;}
._1_c00038{margin-left:-1.123800px;}
._9_c00038{width:1.008000px;}
._6_c00038{width:2.232000px;}
._7_c00038{width:3.744000px;}
._a_c00038{width:5.145912px;}
._d_c00038{width:6.912000px;}
._e_c00038{width:8.064000px;}
._4_c00038{width:10.533600px;}
._2_c00038{width:12.074400px;}
._3_c00038{width:13.389192px;}
._c_c00038{width:17.424000px;}
._b_c00038{width:18.504000px;}
._5_c00038{width:21.312000px;}
._8_c00038{width:112.511306px;}
._0_c00038{width:143.904633px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs2_c00038{font-size:56.160000px;}
.fs3_c00038{font-size:60.000000px;}
.fs0_c00038{font-size:72.000000px;}
.fs1_c00038{font-size:74.215901px;}
.y0_c00038{bottom:0.000000px;}
.y29_c00038{bottom:3.120150px;}
.y28_c00038{bottom:34.744500px;}
.y1_c00038{bottom:54.000000px;}
.y27_c00038{bottom:65.565000px;}
.y26_c00038{bottom:86.805000px;}
.y25_c00038{bottom:107.685000px;}
.y24_c00038{bottom:128.565000px;}
.y23_c00038{bottom:149.805000px;}
.y22_c00038{bottom:185.805000px;}
.y21_c00038{bottom:221.805000px;}
.y20_c00038{bottom:257.805000px;}
.y1f_c00038{bottom:278.685000px;}
.y1e_c00038{bottom:299.565000px;}
.y1d_c00038{bottom:335.925000px;}
.y1c_c00038{bottom:371.925000px;}
.y1b_c00038{bottom:392.805000px;}
.y1a_c00038{bottom:413.685000px;}
.y19_c00038{bottom:434.925000px;}
.y18_c00038{bottom:471.285000px;}
.y17_c00038{bottom:500.085000px;}
.y16_c00038{bottom:528.525000px;}
.y15_c00038{bottom:557.325000px;}
.y14_c00038{bottom:585.765000px;}
.y13_c00038{bottom:621.405000px;}
.y12_c00038{bottom:657.405000px;}
.y11_c00038{bottom:678.645000px;}
.y10_c00038{bottom:699.525000px;}
.yf_c00038{bottom:720.405000px;}
.ye_c00038{bottom:741.645000px;}
.yd_c00038{bottom:762.525000px;}
.yc_c00038{bottom:790.965000px;}
.yb_c00038{bottom:819.765000px;}
.ya_c00038{bottom:848.205000px;}
.y9_c00038{bottom:877.365000px;}
.y8_c00038{bottom:905.445000px;}
.y7_c00038{bottom:934.245000px;}
.y6_c00038{bottom:963.405000px;}
.y5_c00038{bottom:992.205000px;}
.y4_c00038{bottom:1020.645000px;}
.y3_c00038{bottom:1049.085000px;}
.y2_c00038{bottom:1085.085000px;}
.h6_c00038{height:19.255500px;}
.h7_c00038{height:46.320000px;}
.h5_c00038{height:47.988281px;}
.h3_c00038{height:65.232000px;}
.h4_c00038{height:67.239607px;}
.h2_c00038{height:1201.365000px;}
.h0_c00038{height:1262.835000px;}
.h1_c00038{height:1263.000000px;}
.w3_c00038{width:16.680000px;}
.w2_c00038{width:863.955000px;}
.w0_c00038{width:892.935000px;}
.w1_c00038{width:893.250000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:14.490000px;}
.x2_c00038{left:113.040150px;}
.xf_c00038{left:222.103350px;}
.xd_c00038{left:226.580550px;}
.xe_c00038{left:233.078250px;}
.x10_c00038{left:274.122450px;}
.x3_c00038{left:283.140000px;}
.x4_c00038{left:323.040150px;}
.x5_c00038{left:325.444050px;}
.x8_c00038{left:391.463400px;}
.x9_c00038{left:395.963400px;}
.xa_c00038{left:419.452200px;}
.xb_c00038{left:423.952200px;}
.x6_c00038{left:431.440050px;}
.x7_c00038{left:435.940050px;}
.xc_c00038{left:493.934700px;}
.x11_c00038{left:768.255000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls4_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:0.011733pt;}
.ls1_c00038{letter-spacing:0.206507pt;}
.ls6_c00038{letter-spacing:0.499200pt;}
.ls5_c00038{letter-spacing:0.619008pt;}
.ls3_c00038{letter-spacing:4.827264pt;}
.ls2_c00038{letter-spacing:5.312000pt;}
.ws1_c00038{word-spacing:-18.705024pt;}
.ws0_c00038{word-spacing:-17.792000pt;}
.ws2_c00038{word-spacing:0.000000pt;}
._1_c00038{margin-left:-0.998933pt;}
._9_c00038{width:0.896000pt;}
._6_c00038{width:1.984000pt;}
._7_c00038{width:3.328000pt;}
._a_c00038{width:4.574144pt;}
._d_c00038{width:6.144000pt;}
._e_c00038{width:7.168000pt;}
._4_c00038{width:9.363200pt;}
._2_c00038{width:10.732800pt;}
._3_c00038{width:11.901504pt;}
._c_c00038{width:15.488000pt;}
._b_c00038{width:16.448000pt;}
._5_c00038{width:18.944000pt;}
._8_c00038{width:100.010050pt;}
._0_c00038{width:127.915229pt;}
.fs2_c00038{font-size:49.920000pt;}
.fs3_c00038{font-size:53.333333pt;}
.fs0_c00038{font-size:64.000000pt;}
.fs1_c00038{font-size:65.969690pt;}
.y0_c00038{bottom:0.000000pt;}
.y29_c00038{bottom:2.773467pt;}
.y28_c00038{bottom:30.884000pt;}
.y1_c00038{bottom:48.000000pt;}
.y27_c00038{bottom:58.280000pt;}
.y26_c00038{bottom:77.160000pt;}
.y25_c00038{bottom:95.720000pt;}
.y24_c00038{bottom:114.280000pt;}
.y23_c00038{bottom:133.160000pt;}
.y22_c00038{bottom:165.160000pt;}
.y21_c00038{bottom:197.160000pt;}
.y20_c00038{bottom:229.160000pt;}
.y1f_c00038{bottom:247.720000pt;}
.y1e_c00038{bottom:266.280000pt;}
.y1d_c00038{bottom:298.600000pt;}
.y1c_c00038{bottom:330.600000pt;}
.y1b_c00038{bottom:349.160000pt;}
.y1a_c00038{bottom:367.720000pt;}
.y19_c00038{bottom:386.600000pt;}
.y18_c00038{bottom:418.920000pt;}
.y17_c00038{bottom:444.520000pt;}
.y16_c00038{bottom:469.800000pt;}
.y15_c00038{bottom:495.400000pt;}
.y14_c00038{bottom:520.680000pt;}
.y13_c00038{bottom:552.360000pt;}
.y12_c00038{bottom:584.360000pt;}
.y11_c00038{bottom:603.240000pt;}
.y10_c00038{bottom:621.800000pt;}
.yf_c00038{bottom:640.360000pt;}
.ye_c00038{bottom:659.240000pt;}
.yd_c00038{bottom:677.800000pt;}
.yc_c00038{bottom:703.080000pt;}
.yb_c00038{bottom:728.680000pt;}
.ya_c00038{bottom:753.960000pt;}
.y9_c00038{bottom:779.880000pt;}
.y8_c00038{bottom:804.840000pt;}
.y7_c00038{bottom:830.440000pt;}
.y6_c00038{bottom:856.360000pt;}
.y5_c00038{bottom:881.960000pt;}
.y4_c00038{bottom:907.240000pt;}
.y3_c00038{bottom:932.520000pt;}
.y2_c00038{bottom:964.520000pt;}
.h6_c00038{height:17.116000pt;}
.h7_c00038{height:41.173333pt;}
.h5_c00038{height:42.656250pt;}
.h3_c00038{height:57.984000pt;}
.h4_c00038{height:59.768539pt;}
.h2_c00038{height:1067.880000pt;}
.h0_c00038{height:1122.520000pt;}
.h1_c00038{height:1122.666667pt;}
.w3_c00038{width:14.826667pt;}
.w2_c00038{width:767.960000pt;}
.w0_c00038{width:793.720000pt;}
.w1_c00038{width:794.000000pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:12.880000pt;}
.x2_c00038{left:100.480133pt;}
.xf_c00038{left:197.425200pt;}
.xd_c00038{left:201.404933pt;}
.xe_c00038{left:207.180667pt;}
.x10_c00038{left:243.664400pt;}
.x3_c00038{left:251.680000pt;}
.x4_c00038{left:287.146800pt;}
.x5_c00038{left:289.283600pt;}
.x8_c00038{left:347.967467pt;}
.x9_c00038{left:351.967467pt;}
.xa_c00038{left:372.846400pt;}
.xb_c00038{left:376.846400pt;}
.x6_c00038{left:383.502267pt;}
.x7_c00038{left:387.502267pt;}
.xc_c00038{left:439.053067pt;}
.x11_c00038{left:682.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_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_3491a897465d238f2f64d73d.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.134000;font-style:normal;font-weight:normal;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_7866454aecb69e11c157402f.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_ef7a7275e6388e82b26bbf75.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:0.787000;font-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_c00039{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00039{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00039{vertical-align:-24.480000px;}
.v0_c00039{vertical-align:0.000000px;}
.v1_c00039{vertical-align:30.240000px;}
.ls8_c00039{letter-spacing:-0.179568px;}
.ls1_c00039{letter-spacing:0.000000px;}
.ls9_c00039{letter-spacing:0.144000px;}
.lsc_c00039{letter-spacing:0.265680px;}
.ls6_c00039{letter-spacing:0.275184px;}
.lsb_c00039{letter-spacing:0.438171px;}
.ls3_c00039{letter-spacing:0.606528px;}
.ls4_c00039{letter-spacing:0.625195px;}
.lsd_c00039{letter-spacing:0.690768px;}
.ls2_c00039{letter-spacing:0.696384px;}
.ls7_c00039{letter-spacing:5.976000px;}
.ls5_c00039{letter-spacing:8.575200px;}
.lsa_c00039{letter-spacing:14.730480px;}
.ls0_c00039{letter-spacing:14.760000px;}
.sc__c00039{text-shadow:none;}
.sc1_c00039{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_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;}
.sc1_c00039{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:-16.718171px;}
.ws1_c00039{word-spacing:-15.887664px;}
.ws2_c00039{word-spacing:-11.429712px;}
.ws3_c00039{word-spacing:-10.152000px;}
.ws4_c00039{word-spacing:0.000000px;}
._11_c00039{margin-left:-16.177800px;}
._12_c00039{margin-left:-14.516640px;}
._13_c00039{margin-left:-13.312800px;}
._10_c00039{margin-left:-10.821600px;}
._6_c00039{margin-left:-8.582400px;}
._0_c00039{margin-left:-1.128000px;}
._3_c00039{width:1.872000px;}
._8_c00039{width:2.880000px;}
._b_c00039{width:4.032000px;}
._2_c00039{width:8.064000px;}
._5_c00039{width:9.072000px;}
._c_c00039{width:10.152000px;}
._7_c00039{width:11.160000px;}
._14_c00039{width:14.464800px;}
._4_c00039{width:16.200000px;}
._9_c00039{width:21.816000px;}
._f_c00039{width:23.832000px;}
._a_c00039{width:24.912000px;}
._e_c00039{width:39.816000px;}
._d_c00039{width:45.792000px;}
._1_c00039{width:181.584000px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs6_c00039{font-size:36.000000px;}
.fs4_c00039{font-size:41.760000px;}
.fs1_c00039{font-size:56.160000px;}
.fs2_c00039{font-size:57.888403px;}
.fs7_c00039{font-size:59.040000px;}
.fs9_c00039{font-size:60.000000px;}
.fs8_c00039{font-size:60.857039px;}
.fs5_c00039{font-size:64.800000px;}
.fs0_c00039{font-size:72.000000px;}
.fs3_c00039{font-size:74.215901px;}
.y0_c00039{bottom:0.000000px;}
.y2b_c00039{bottom:3.120150px;}
.y2a_c00039{bottom:34.744500px;}
.y1_c00039{bottom:54.000000px;}
.y29_c00039{bottom:55.482840px;}
.y28_c00039{bottom:72.766800px;}
.y27_c00039{bottom:90.405000px;}
.y26_c00039{bottom:96.525000px;}
.y25_c00039{bottom:123.165000px;}
.y24_c00039{bottom:160.965000px;}
.y23_c00039{bottom:181.845000px;}
.y22_c00039{bottom:202.725000px;}
.y21_c00039{bottom:223.965000px;}
.y20_c00039{bottom:259.965000px;}
.y1f_c00039{bottom:280.845000px;}
.y1e_c00039{bottom:301.725000px;}
.y1d_c00039{bottom:322.965000px;}
.y1c_c00039{bottom:343.845000px;}
.y1b_c00039{bottom:364.725000px;}
.y1a_c00039{bottom:385.965000px;}
.y19_c00039{bottom:406.845000px;}
.y18_c00039{bottom:427.725000px;}
.y17_c00039{bottom:448.965000px;}
.y16_c00039{bottom:484.965000px;}
.y15_c00039{bottom:520.965000px;}
.y14_c00039{bottom:556.965000px;}
.y13_c00039{bottom:577.845000px;}
.y12_c00039{bottom:613.845000px;}
.y11_c00039{bottom:635.085000px;}
.y10_c00039{bottom:671.085000px;}
.yf_c00039{bottom:707.085000px;}
.ye_c00039{bottom:743.085000px;}
.yd_c00039{bottom:779.085000px;}
.yc_c00039{bottom:799.965000px;}
.yb_c00039{bottom:835.965000px;}
.ya_c00039{bottom:856.845000px;}
.y9_c00039{bottom:892.845000px;}
.y8_c00039{bottom:914.085000px;}
.y7_c00039{bottom:934.965000px;}
.y6_c00039{bottom:955.845000px;}
.y5_c00039{bottom:977.085000px;}
.y4_c00039{bottom:1013.085000px;}
.y3_c00039{bottom:1049.085000px;}
.y2_c00039{bottom:1085.085000px;}
.ha_c00039{height:19.255500px;}
.h7_c00039{height:32.616000px;}
.h6_c00039{height:45.024609px;}
.hb_c00039{height:46.320000px;}
.h9_c00039{height:53.490240px;}
.h8_c00039{height:55.136477px;}
.h3_c00039{height:65.232000px;}
.h4_c00039{height:67.239607px;}
.h5_c00039{height:68.074560px;}
.h2_c00039{height:1201.365000px;}
.h0_c00039{height:1262.835000px;}
.h1_c00039{height:1263.000000px;}
.w3_c00039{width:16.680000px;}
.w2_c00039{width:863.955000px;}
.w0_c00039{width:892.935000px;}
.w1_c00039{width:893.250000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:14.490000px;}
.x17_c00039{left:113.040000px;}
.x2_c00039{left:115.740300px;}
.x11_c00039{left:139.692600px;}
.x5_c00039{left:186.137700px;}
.xf_c00039{left:235.225050px;}
.x12_c00039{left:255.682200px;}
.x13_c00039{left:261.634950px;}
.x15_c00039{left:277.629300px;}
.xb_c00039{left:324.469500px;}
.x6_c00039{left:345.165150px;}
.x10_c00039{left:356.236800px;}
.x14_c00039{left:377.643000px;}
.x16_c00039{left:393.637200px;}
.x3_c00039{left:401.247150px;}
.xd_c00039{left:405.505050px;}
.xc_c00039{left:445.481400px;}
.x4_c00039{left:464.048250px;}
.xe_c00039{left:526.516800px;}
.x7_c00039{left:570.350100px;}
.x18_c00039{left:632.296950px;}
.x9_c00039{left:636.198450px;}
.x19_c00039{left:643.951500px;}
.x8_c00039{left:663.336600px;}
.xa_c00039{left:688.217700px;}
.x1a_c00039{left:768.255000px;}
@media print{
.v2_c00039{vertical-align:-21.760000pt;}
.v0_c00039{vertical-align:0.000000pt;}
.v1_c00039{vertical-align:26.880000pt;}
.ls8_c00039{letter-spacing:-0.159616pt;}
.ls1_c00039{letter-spacing:0.000000pt;}
.ls9_c00039{letter-spacing:0.128000pt;}
.lsc_c00039{letter-spacing:0.236160pt;}
.ls6_c00039{letter-spacing:0.244608pt;}
.lsb_c00039{letter-spacing:0.389485pt;}
.ls3_c00039{letter-spacing:0.539136pt;}
.ls4_c00039{letter-spacing:0.555729pt;}
.lsd_c00039{letter-spacing:0.614016pt;}
.ls2_c00039{letter-spacing:0.619008pt;}
.ls7_c00039{letter-spacing:5.312000pt;}
.ls5_c00039{letter-spacing:7.622400pt;}
.lsa_c00039{letter-spacing:13.093760pt;}
.ls0_c00039{letter-spacing:13.120000pt;}
.ws0_c00039{word-spacing:-14.860596pt;}
.ws1_c00039{word-spacing:-14.122368pt;}
.ws2_c00039{word-spacing:-10.159744pt;}
.ws3_c00039{word-spacing:-9.024000pt;}
.ws4_c00039{word-spacing:0.000000pt;}
._11_c00039{margin-left:-14.380267pt;}
._12_c00039{margin-left:-12.903680pt;}
._13_c00039{margin-left:-11.833600pt;}
._10_c00039{margin-left:-9.619200pt;}
._6_c00039{margin-left:-7.628800pt;}
._0_c00039{margin-left:-1.002667pt;}
._3_c00039{width:1.664000pt;}
._8_c00039{width:2.560000pt;}
._b_c00039{width:3.584000pt;}
._2_c00039{width:7.168000pt;}
._5_c00039{width:8.064000pt;}
._c_c00039{width:9.024000pt;}
._7_c00039{width:9.920000pt;}
._14_c00039{width:12.857600pt;}
._4_c00039{width:14.400000pt;}
._9_c00039{width:19.392000pt;}
._f_c00039{width:21.184000pt;}
._a_c00039{width:22.144000pt;}
._e_c00039{width:35.392000pt;}
._d_c00039{width:40.704000pt;}
._1_c00039{width:161.408000pt;}
.fs6_c00039{font-size:32.000000pt;}
.fs4_c00039{font-size:37.120000pt;}
.fs1_c00039{font-size:49.920000pt;}
.fs2_c00039{font-size:51.456358pt;}
.fs7_c00039{font-size:52.480000pt;}
.fs9_c00039{font-size:53.333333pt;}
.fs8_c00039{font-size:54.095146pt;}
.fs5_c00039{font-size:57.600000pt;}
.fs0_c00039{font-size:64.000000pt;}
.fs3_c00039{font-size:65.969690pt;}
.y0_c00039{bottom:0.000000pt;}
.y2b_c00039{bottom:2.773467pt;}
.y2a_c00039{bottom:30.884000pt;}
.y1_c00039{bottom:48.000000pt;}
.y29_c00039{bottom:49.318080pt;}
.y28_c00039{bottom:64.681600pt;}
.y27_c00039{bottom:80.360000pt;}
.y26_c00039{bottom:85.800000pt;}
.y25_c00039{bottom:109.480000pt;}
.y24_c00039{bottom:143.080000pt;}
.y23_c00039{bottom:161.640000pt;}
.y22_c00039{bottom:180.200000pt;}
.y21_c00039{bottom:199.080000pt;}
.y20_c00039{bottom:231.080000pt;}
.y1f_c00039{bottom:249.640000pt;}
.y1e_c00039{bottom:268.200000pt;}
.y1d_c00039{bottom:287.080000pt;}
.y1c_c00039{bottom:305.640000pt;}
.y1b_c00039{bottom:324.200000pt;}
.y1a_c00039{bottom:343.080000pt;}
.y19_c00039{bottom:361.640000pt;}
.y18_c00039{bottom:380.200000pt;}
.y17_c00039{bottom:399.080000pt;}
.y16_c00039{bottom:431.080000pt;}
.y15_c00039{bottom:463.080000pt;}
.y14_c00039{bottom:495.080000pt;}
.y13_c00039{bottom:513.640000pt;}
.y12_c00039{bottom:545.640000pt;}
.y11_c00039{bottom:564.520000pt;}
.y10_c00039{bottom:596.520000pt;}
.yf_c00039{bottom:628.520000pt;}
.ye_c00039{bottom:660.520000pt;}
.yd_c00039{bottom:692.520000pt;}
.yc_c00039{bottom:711.080000pt;}
.yb_c00039{bottom:743.080000pt;}
.ya_c00039{bottom:761.640000pt;}
.y9_c00039{bottom:793.640000pt;}
.y8_c00039{bottom:812.520000pt;}
.y7_c00039{bottom:831.080000pt;}
.y6_c00039{bottom:849.640000pt;}
.y5_c00039{bottom:868.520000pt;}
.y4_c00039{bottom:900.520000pt;}
.y3_c00039{bottom:932.520000pt;}
.y2_c00039{bottom:964.520000pt;}
.ha_c00039{height:17.116000pt;}
.h7_c00039{height:28.992000pt;}
.h6_c00039{height:40.021875pt;}
.hb_c00039{height:41.173333pt;}
.h9_c00039{height:47.546880pt;}
.h8_c00039{height:49.010202pt;}
.h3_c00039{height:57.984000pt;}
.h4_c00039{height:59.768539pt;}
.h5_c00039{height:60.510720pt;}
.h2_c00039{height:1067.880000pt;}
.h0_c00039{height:1122.520000pt;}
.h1_c00039{height:1122.666667pt;}
.w3_c00039{width:14.826667pt;}
.w2_c00039{width:767.960000pt;}
.w0_c00039{width:793.720000pt;}
.w1_c00039{width:794.000000pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:12.880000pt;}
.x17_c00039{left:100.480000pt;}
.x2_c00039{left:102.880267pt;}
.x11_c00039{left:124.171200pt;}
.x5_c00039{left:165.455733pt;}
.xf_c00039{left:209.088933pt;}
.x12_c00039{left:227.273067pt;}
.x13_c00039{left:232.564400pt;}
.x15_c00039{left:246.781600pt;}
.xb_c00039{left:288.417333pt;}
.x6_c00039{left:306.813467pt;}
.x10_c00039{left:316.654933pt;}
.x14_c00039{left:335.682667pt;}
.x16_c00039{left:349.899733pt;}
.x3_c00039{left:356.664133pt;}
.xd_c00039{left:360.448933pt;}
.xc_c00039{left:395.983467pt;}
.x4_c00039{left:412.487333pt;}
.xe_c00039{left:468.014933pt;}
.x7_c00039{left:506.977867pt;}
.x18_c00039{left:562.041733pt;}
.x9_c00039{left:565.509733pt;}
.x19_c00039{left:572.401333pt;}
.x8_c00039{left:589.632533pt;}
.xa_c00039{left:611.749067pt;}
.x1a_c00039{left:682.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_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_b2609ea20a2016f8ea02b984.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.134000;font-style:normal;font-weight:normal;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_8e153f1850715bc5c56d1ca4.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:0.787000;font-style: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:0.000000px;}
._1_c00040{width:6.840000px;}
._0_c00040{width:10.008000px;}
.fc0_c00040{color:rgb(0,0,0);}
.fs1_c00040{font-size:60.000000px;}
.fs0_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y6_c00040{bottom:3.120150px;}
.y5_c00040{bottom:34.744500px;}
.y1_c00040{bottom:54.000000px;}
.y4_c00040{bottom:1042.965000px;}
.y3_c00040{bottom:1063.845000px;}
.y2_c00040{bottom:1085.085000px;}
.h4_c00040{height:19.255500px;}
.h5_c00040{height:46.320000px;}
.h3_c00040{height:65.232000px;}
.h2_c00040{height:1201.365000px;}
.h0_c00040{height:1262.835000px;}
.h1_c00040{height:1263.000000px;}
.w3_c00040{width:16.680000px;}
.w2_c00040{width:863.955000px;}
.w0_c00040{width:892.935000px;}
.w1_c00040{width:893.250000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:14.490000px;}
.x2_c00040{left:115.740300px;}
.x3_c00040{left:768.255000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:0.000000pt;}
._1_c00040{width:6.080000pt;}
._0_c00040{width:8.896000pt;}
.fs1_c00040{font-size:53.333333pt;}
.fs0_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y6_c00040{bottom:2.773467pt;}
.y5_c00040{bottom:30.884000pt;}
.y1_c00040{bottom:48.000000pt;}
.y4_c00040{bottom:927.080000pt;}
.y3_c00040{bottom:945.640000pt;}
.y2_c00040{bottom:964.520000pt;}
.h4_c00040{height:17.116000pt;}
.h5_c00040{height:41.173333pt;}
.h3_c00040{height:57.984000pt;}
.h2_c00040{height:1067.880000pt;}
.h0_c00040{height:1122.520000pt;}
.h1_c00040{height:1122.666667pt;}
.w3_c00040{width:14.826667pt;}
.w2_c00040{width:767.960000pt;}
.w0_c00040{width:793.720000pt;}
.w1_c00040{width:794.000000pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:12.880000pt;}
.x2_c00040{left:102.880267pt;}
.x3_c00040{left:682.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_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_9900952cd9486629b076c838.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.134000;font-style:normal;font-weight:normal;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_58ead70cceadb7bce5b33721.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_90cfccb7a633452c841e8a68.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:0.787000;font-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_c00041{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00041{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00041{letter-spacing:0.000000px;}
.ls6_c00041{letter-spacing:5.245344px;}
.ls7_c00041{letter-spacing:5.499398px;}
.ls3_c00041{letter-spacing:5.976000px;}
.ls2_c00041{letter-spacing:6.671808px;}
.ls1_c00041{letter-spacing:8.230464px;}
.ls0_c00041{letter-spacing:8.458560px;}
.ls4_c00041{letter-spacing:16.992000px;}
.sc__c00041{text-shadow:none;}
.sc1_c00041{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_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;}
.sc1_c00041{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:-21.592374px;}
.ws1_c00041{word-spacing:0.000000px;}
._5_c00041{width:1.152000px;}
._6_c00041{width:2.160000px;}
._f_c00041{width:3.163766px;}
._2_c00041{width:4.900234px;}
._0_c00041{width:5.931953px;}
._4_c00041{width:7.316047px;}
._c_c00041{width:8.347766px;}
._8_c00041{width:9.504000px;}
._7_c00041{width:11.016000px;}
._9_c00041{width:13.824000px;}
._1_c00041{width:15.696000px;}
._3_c00041{width:21.024000px;}
._b_c00041{width:22.464000px;}
._d_c00041{width:34.056000px;}
._e_c00041{width:39.240000px;}
._a_c00041{width:40.536000px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs3_c00041{font-size:56.160000px;}
.fs4_c00041{font-size:57.888403px;}
.fs6_c00041{font-size:60.000000px;}
.fs0_c00041{font-size:72.000000px;}
.fs5_c00041{font-size:74.215901px;}
.fs2_c00041{font-size:77.760000px;}
.fs1_c00041{font-size:95.040000px;}
.y0_c00041{bottom:0.000000px;}
.y29_c00041{bottom:3.120150px;}
.y28_c00041{bottom:34.744500px;}
.y1_c00041{bottom:54.000000px;}
.y27_c00041{bottom:68.805000px;}
.y26_c00041{bottom:89.685000px;}
.y25_c00041{bottom:125.685000px;}
.y24_c00041{bottom:146.925000px;}
.y23_c00041{bottom:167.805000px;}
.y22_c00041{bottom:188.685000px;}
.y21_c00041{bottom:209.925000px;}
.y20_c00041{bottom:230.805000px;}
.y1f_c00041{bottom:251.685000px;}
.y1e_c00041{bottom:272.925000px;}
.y1d_c00041{bottom:293.805000px;}
.y1c_c00041{bottom:314.685000px;}
.y1b_c00041{bottom:350.685000px;}
.y1a_c00041{bottom:371.925000px;}
.y19_c00041{bottom:392.805000px;}
.y18_c00041{bottom:414.045000px;}
.y17_c00041{bottom:434.925000px;}
.y16_c00041{bottom:455.805000px;}
.y15_c00041{bottom:477.045000px;}
.y14_c00041{bottom:497.925000px;}
.y13_c00041{bottom:518.805000px;}
.y12_c00041{bottom:540.045000px;}
.y11_c00041{bottom:560.925000px;}
.y10_c00041{bottom:596.925000px;}
.yf_c00041{bottom:617.805000px;}
.ye_c00041{bottom:639.045000px;}
.yd_c00041{bottom:675.045000px;}
.yc_c00041{bottom:712.489320px;}
.yb_c00041{bottom:755.685000px;}
.ya_c00041{bottom:797.085000px;}
.y9_c00041{bottom:833.085000px;}
.y8_c00041{bottom:869.085000px;}
.y7_c00041{bottom:905.085000px;}
.y6_c00041{bottom:941.085000px;}
.y5_c00041{bottom:977.085000px;}
.y4_c00041{bottom:1013.085000px;}
.y3_c00041{bottom:1049.085000px;}
.y2_c00041{bottom:1085.085000px;}
.h6_c00041{height:19.255500px;}
.h7_c00041{height:46.320000px;}
.h3_c00041{height:65.232000px;}
.h5_c00041{height:67.239607px;}
.h4_c00041{height:86.106240px;}
.h2_c00041{height:1201.365000px;}
.h0_c00041{height:1262.835000px;}
.h1_c00041{height:1263.000000px;}
.w3_c00041{width:16.680000px;}
.w2_c00041{width:863.955000px;}
.w0_c00041{width:892.935000px;}
.w1_c00041{width:893.250000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:14.490000px;}
.x4_c00041{left:113.040150px;}
.x8_c00041{left:139.296000px;}
.x5_c00041{left:183.062250px;}
.x9_c00041{left:191.315250px;}
.xc_c00041{left:206.299800px;}
.x10_c00041{left:226.627500px;}
.xe_c00041{left:232.360050px;}
.xd_c00041{left:258.318900px;}
.x3_c00041{left:267.973350px;}
.x11_c00041{left:278.646600px;}
.xf_c00041{left:284.379300px;}
.x2_c00041{left:431.715150px;}
.x6_c00041{left:466.581600px;}
.xa_c00041{left:517.316850px;}
.x7_c00041{left:518.600850px;}
.xb_c00041{left:569.335950px;}
.x12_c00041{left:768.255000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls5_c00041{letter-spacing:0.000000pt;}
.ls6_c00041{letter-spacing:4.662528pt;}
.ls7_c00041{letter-spacing:4.888354pt;}
.ls3_c00041{letter-spacing:5.312000pt;}
.ls2_c00041{letter-spacing:5.930496pt;}
.ls1_c00041{letter-spacing:7.315968pt;}
.ls0_c00041{letter-spacing:7.518720pt;}
.ls4_c00041{letter-spacing:15.104000pt;}
.ws0_c00041{word-spacing:-19.193222pt;}
.ws1_c00041{word-spacing:0.000000pt;}
._5_c00041{width:1.024000pt;}
._6_c00041{width:1.920000pt;}
._f_c00041{width:2.812237pt;}
._2_c00041{width:4.355763pt;}
._0_c00041{width:5.272847pt;}
._4_c00041{width:6.503153pt;}
._c_c00041{width:7.420237pt;}
._8_c00041{width:8.448000pt;}
._7_c00041{width:9.792000pt;}
._9_c00041{width:12.288000pt;}
._1_c00041{width:13.952000pt;}
._3_c00041{width:18.688000pt;}
._b_c00041{width:19.968000pt;}
._d_c00041{width:30.272000pt;}
._e_c00041{width:34.880000pt;}
._a_c00041{width:36.032000pt;}
.fs3_c00041{font-size:49.920000pt;}
.fs4_c00041{font-size:51.456358pt;}
.fs6_c00041{font-size:53.333333pt;}
.fs0_c00041{font-size:64.000000pt;}
.fs5_c00041{font-size:65.969690pt;}
.fs2_c00041{font-size:69.120000pt;}
.fs1_c00041{font-size:84.480000pt;}
.y0_c00041{bottom:0.000000pt;}
.y29_c00041{bottom:2.773467pt;}
.y28_c00041{bottom:30.884000pt;}
.y1_c00041{bottom:48.000000pt;}
.y27_c00041{bottom:61.160000pt;}
.y26_c00041{bottom:79.720000pt;}
.y25_c00041{bottom:111.720000pt;}
.y24_c00041{bottom:130.600000pt;}
.y23_c00041{bottom:149.160000pt;}
.y22_c00041{bottom:167.720000pt;}
.y21_c00041{bottom:186.600000pt;}
.y20_c00041{bottom:205.160000pt;}
.y1f_c00041{bottom:223.720000pt;}
.y1e_c00041{bottom:242.600000pt;}
.y1d_c00041{bottom:261.160000pt;}
.y1c_c00041{bottom:279.720000pt;}
.y1b_c00041{bottom:311.720000pt;}
.y1a_c00041{bottom:330.600000pt;}
.y19_c00041{bottom:349.160000pt;}
.y18_c00041{bottom:368.040000pt;}
.y17_c00041{bottom:386.600000pt;}
.y16_c00041{bottom:405.160000pt;}
.y15_c00041{bottom:424.040000pt;}
.y14_c00041{bottom:442.600000pt;}
.y13_c00041{bottom:461.160000pt;}
.y12_c00041{bottom:480.040000pt;}
.y11_c00041{bottom:498.600000pt;}
.y10_c00041{bottom:530.600000pt;}
.yf_c00041{bottom:549.160000pt;}
.ye_c00041{bottom:568.040000pt;}
.yd_c00041{bottom:600.040000pt;}
.yc_c00041{bottom:633.323840pt;}
.yb_c00041{bottom:671.720000pt;}
.ya_c00041{bottom:708.520000pt;}
.y9_c00041{bottom:740.520000pt;}
.y8_c00041{bottom:772.520000pt;}
.y7_c00041{bottom:804.520000pt;}
.y6_c00041{bottom:836.520000pt;}
.y5_c00041{bottom:868.520000pt;}
.y4_c00041{bottom:900.520000pt;}
.y3_c00041{bottom:932.520000pt;}
.y2_c00041{bottom:964.520000pt;}
.h6_c00041{height:17.116000pt;}
.h7_c00041{height:41.173333pt;}
.h3_c00041{height:57.984000pt;}
.h5_c00041{height:59.768539pt;}
.h4_c00041{height:76.538880pt;}
.h2_c00041{height:1067.880000pt;}
.h0_c00041{height:1122.520000pt;}
.h1_c00041{height:1122.666667pt;}
.w3_c00041{width:14.826667pt;}
.w2_c00041{width:767.960000pt;}
.w0_c00041{width:793.720000pt;}
.w1_c00041{width:794.000000pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:12.880000pt;}
.x4_c00041{left:100.480133pt;}
.x8_c00041{left:123.818667pt;}
.x5_c00041{left:162.722000pt;}
.x9_c00041{left:170.058000pt;}
.xc_c00041{left:183.377600pt;}
.x10_c00041{left:201.446667pt;}
.xe_c00041{left:206.542267pt;}
.xd_c00041{left:229.616800pt;}
.x3_c00041{left:238.198533pt;}
.x11_c00041{left:247.685867pt;}
.xf_c00041{left:252.781600pt;}
.x2_c00041{left:383.746800pt;}
.x6_c00041{left:414.739200pt;}
.xa_c00041{left:459.837200pt;}
.x7_c00041{left:460.978533pt;}
.xb_c00041{left:506.076400pt;}
.x12_c00041{left:682.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_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_02071ce08cd4687a02ebbac3.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.134000;font-style:normal;font-weight:normal;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_99a81a4a62d586d904f4f187.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.134000;font-style:normal;font-weight:normal;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_fda1e4678868fb441765681b.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00042{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00042{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00042{letter-spacing:0.000000px;}
.ls6_c00042{letter-spacing:0.202464px;}
.ls5_c00042{letter-spacing:0.329519px;}
.ls7_c00042{letter-spacing:0.362304px;}
.ls1_c00042{letter-spacing:0.399600px;}
.ls3_c00042{letter-spacing:5.335200px;}
.ls4_c00042{letter-spacing:5.430672px;}
.ls0_c00042{letter-spacing:5.976000px;}
.sc__c00042{text-shadow:none;}
.sc1_c00042{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_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc1_c00042{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:-21.043152px;}
.ws1_c00042{word-spacing:0.000000px;}
._3_c00042{margin-left:-1.016880px;}
._9_c00042{width:1.872000px;}
._8_c00042{width:3.744000px;}
._4_c00042{width:5.655384px;}
._b_c00042{width:6.912000px;}
._7_c00042{width:8.064000px;}
._5_c00042{width:9.072000px;}
._6_c00042{width:10.800000px;}
._16_c00042{width:12.240000px;}
._0_c00042{width:13.392000px;}
._a_c00042{width:14.400000px;}
._12_c00042{width:16.272000px;}
._2_c00042{width:21.888000px;}
._10_c00042{width:25.344000px;}
._19_c00042{width:26.640000px;}
._c_c00042{width:27.720000px;}
._1_c00042{width:33.480000px;}
._13_c00042{width:35.280000px;}
._17_c00042{width:45.216000px;}
._11_c00042{width:50.112000px;}
._d_c00042{width:60.840000px;}
._1b_c00042{width:65.520000px;}
._f_c00042{width:67.248000px;}
._1a_c00042{width:73.296000px;}
._e_c00042{width:89.280000px;}
._18_c00042{width:97.200000px;}
._15_c00042{width:110.520000px;}
._14_c00042{width:282.528000px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs3_c00042{font-size:53.280000px;}
.fs4_c00042{font-size:54.919767px;}
.fs1_c00042{font-size:56.160000px;}
.fs5_c00042{font-size:60.000000px;}
.fs0_c00042{font-size:72.000000px;}
.fs2_c00042{font-size:74.215901px;}
.y0_c00042{bottom:0.000000px;}
.y34_c00042{bottom:3.120150px;}
.y32_c00042{bottom:18.720000px;}
.y31_c00042{bottom:34.560000px;}
.y33_c00042{bottom:34.744500px;}
.y1_c00042{bottom:54.000000px;}
.y2f_c00042{bottom:76.725000px;}
.y2e_c00042{bottom:97.965000px;}
.y2d_c00042{bottom:118.845000px;}
.y2c_c00042{bottom:140.085000px;}
.y2b_c00042{bottom:160.965000px;}
.y2a_c00042{bottom:181.845000px;}
.y29_c00042{bottom:203.085000px;}
.y30_c00042{bottom:220.365000px;}
.y28_c00042{bottom:226.845000px;}
.y27_c00042{bottom:247.725000px;}
.y26_c00042{bottom:268.965000px;}
.y25_c00042{bottom:289.845000px;}
.y24_c00042{bottom:310.725000px;}
.y23_c00042{bottom:331.965000px;}
.y22_c00042{bottom:352.845000px;}
.y21_c00042{bottom:373.725000px;}
.y20_c00042{bottom:394.965000px;}
.y1f_c00042{bottom:415.845000px;}
.y1e_c00042{bottom:436.725000px;}
.y1d_c00042{bottom:457.965000px;}
.y1c_c00042{bottom:478.845000px;}
.y1b_c00042{bottom:499.725000px;}
.y1a_c00042{bottom:520.965000px;}
.y19_c00042{bottom:541.845000px;}
.y18_c00042{bottom:562.725000px;}
.y17_c00042{bottom:583.965000px;}
.y16_c00042{bottom:604.845000px;}
.y15_c00042{bottom:625.725000px;}
.y14_c00042{bottom:661.725000px;}
.y13_c00042{bottom:682.965000px;}
.y12_c00042{bottom:703.845000px;}
.y11_c00042{bottom:725.085000px;}
.y10_c00042{bottom:745.965000px;}
.yf_c00042{bottom:766.845000px;}
.ye_c00042{bottom:788.085000px;}
.yd_c00042{bottom:808.965000px;}
.yc_c00042{bottom:829.845000px;}
.yb_c00042{bottom:851.085000px;}
.ya_c00042{bottom:871.965000px;}
.y9_c00042{bottom:892.845000px;}
.y8_c00042{bottom:914.085000px;}
.y7_c00042{bottom:950.085000px;}
.y6_c00042{bottom:986.085000px;}
.y5_c00042{bottom:1022.085000px;}
.y4_c00042{bottom:1042.965000px;}
.y3_c00042{bottom:1063.845000px;}
.y2_c00042{bottom:1085.085000px;}
.h8_c00042{height:19.255500px;}
.h9_c00042{height:46.320000px;}
.h5_c00042{height:47.160000px;}
.h6_c00042{height:48.271680px;}
.h7_c00042{height:49.757309px;}
.h3_c00042{height:65.232000px;}
.h4_c00042{height:67.239607px;}
.h2_c00042{height:1201.365000px;}
.h0_c00042{height:1262.835000px;}
.h1_c00042{height:1263.000000px;}
.w4_c00042{width:16.680000px;}
.w3_c00042{width:443.520000px;}
.w2_c00042{width:863.955000px;}
.w0_c00042{width:892.935000px;}
.w1_c00042{width:893.250000px;}
.x0_c00042{left:0.000000px;}
.xd_c00042{left:11.848950px;}
.x1_c00042{left:14.490000px;}
.x2_c00042{left:113.040150px;}
.xc_c00042{left:127.530000px;}
.x10_c00042{left:141.277350px;}
.xe_c00042{left:375.734100px;}
.xf_c00042{left:418.501200px;}
.x6_c00042{left:565.922250px;}
.x3_c00042{left:583.540650px;}
.x4_c00042{left:612.956850px;}
.x7_c00042{left:620.927850px;}
.x8_c00042{left:662.543850px;}
.xa_c00042{left:672.623250px;}
.x5_c00042{left:692.966250px;}
.x9_c00042{left:703.393050px;}
.xb_c00042{left:716.632650px;}
.x11_c00042{left:768.255000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls2_c00042{letter-spacing:0.000000pt;}
.ls6_c00042{letter-spacing:0.179968pt;}
.ls5_c00042{letter-spacing:0.292905pt;}
.ls7_c00042{letter-spacing:0.322048pt;}
.ls1_c00042{letter-spacing:0.355200pt;}
.ls3_c00042{letter-spacing:4.742400pt;}
.ls4_c00042{letter-spacing:4.827264pt;}
.ls0_c00042{letter-spacing:5.312000pt;}
.ws0_c00042{word-spacing:-18.705024pt;}
.ws1_c00042{word-spacing:0.000000pt;}
._3_c00042{margin-left:-0.903893pt;}
._9_c00042{width:1.664000pt;}
._8_c00042{width:3.328000pt;}
._4_c00042{width:5.027008pt;}
._b_c00042{width:6.144000pt;}
._7_c00042{width:7.168000pt;}
._5_c00042{width:8.064000pt;}
._6_c00042{width:9.600000pt;}
._16_c00042{width:10.880000pt;}
._0_c00042{width:11.904000pt;}
._a_c00042{width:12.800000pt;}
._12_c00042{width:14.464000pt;}
._2_c00042{width:19.456000pt;}
._10_c00042{width:22.528000pt;}
._19_c00042{width:23.680000pt;}
._c_c00042{width:24.640000pt;}
._1_c00042{width:29.760000pt;}
._13_c00042{width:31.360000pt;}
._17_c00042{width:40.192000pt;}
._11_c00042{width:44.544000pt;}
._d_c00042{width:54.080000pt;}
._1b_c00042{width:58.240000pt;}
._f_c00042{width:59.776000pt;}
._1a_c00042{width:65.152000pt;}
._e_c00042{width:79.360000pt;}
._18_c00042{width:86.400000pt;}
._15_c00042{width:98.240000pt;}
._14_c00042{width:251.136000pt;}
.fs3_c00042{font-size:47.360000pt;}
.fs4_c00042{font-size:48.817571pt;}
.fs1_c00042{font-size:49.920000pt;}
.fs5_c00042{font-size:53.333333pt;}
.fs0_c00042{font-size:64.000000pt;}
.fs2_c00042{font-size:65.969690pt;}
.y0_c00042{bottom:0.000000pt;}
.y34_c00042{bottom:2.773467pt;}
.y32_c00042{bottom:16.640000pt;}
.y31_c00042{bottom:30.720000pt;}
.y33_c00042{bottom:30.884000pt;}
.y1_c00042{bottom:48.000000pt;}
.y2f_c00042{bottom:68.200000pt;}
.y2e_c00042{bottom:87.080000pt;}
.y2d_c00042{bottom:105.640000pt;}
.y2c_c00042{bottom:124.520000pt;}
.y2b_c00042{bottom:143.080000pt;}
.y2a_c00042{bottom:161.640000pt;}
.y29_c00042{bottom:180.520000pt;}
.y30_c00042{bottom:195.880000pt;}
.y28_c00042{bottom:201.640000pt;}
.y27_c00042{bottom:220.200000pt;}
.y26_c00042{bottom:239.080000pt;}
.y25_c00042{bottom:257.640000pt;}
.y24_c00042{bottom:276.200000pt;}
.y23_c00042{bottom:295.080000pt;}
.y22_c00042{bottom:313.640000pt;}
.y21_c00042{bottom:332.200000pt;}
.y20_c00042{bottom:351.080000pt;}
.y1f_c00042{bottom:369.640000pt;}
.y1e_c00042{bottom:388.200000pt;}
.y1d_c00042{bottom:407.080000pt;}
.y1c_c00042{bottom:425.640000pt;}
.y1b_c00042{bottom:444.200000pt;}
.y1a_c00042{bottom:463.080000pt;}
.y19_c00042{bottom:481.640000pt;}
.y18_c00042{bottom:500.200000pt;}
.y17_c00042{bottom:519.080000pt;}
.y16_c00042{bottom:537.640000pt;}
.y15_c00042{bottom:556.200000pt;}
.y14_c00042{bottom:588.200000pt;}
.y13_c00042{bottom:607.080000pt;}
.y12_c00042{bottom:625.640000pt;}
.y11_c00042{bottom:644.520000pt;}
.y10_c00042{bottom:663.080000pt;}
.yf_c00042{bottom:681.640000pt;}
.ye_c00042{bottom:700.520000pt;}
.yd_c00042{bottom:719.080000pt;}
.yc_c00042{bottom:737.640000pt;}
.yb_c00042{bottom:756.520000pt;}
.ya_c00042{bottom:775.080000pt;}
.y9_c00042{bottom:793.640000pt;}
.y8_c00042{bottom:812.520000pt;}
.y7_c00042{bottom:844.520000pt;}
.y6_c00042{bottom:876.520000pt;}
.y5_c00042{bottom:908.520000pt;}
.y4_c00042{bottom:927.080000pt;}
.y3_c00042{bottom:945.640000pt;}
.y2_c00042{bottom:964.520000pt;}
.h8_c00042{height:17.116000pt;}
.h9_c00042{height:41.173333pt;}
.h5_c00042{height:41.920000pt;}
.h6_c00042{height:42.908160pt;}
.h7_c00042{height:44.228719pt;}
.h3_c00042{height:57.984000pt;}
.h4_c00042{height:59.768539pt;}
.h2_c00042{height:1067.880000pt;}
.h0_c00042{height:1122.520000pt;}
.h1_c00042{height:1122.666667pt;}
.w4_c00042{width:14.826667pt;}
.w3_c00042{width:394.240000pt;}
.w2_c00042{width:767.960000pt;}
.w0_c00042{width:793.720000pt;}
.w1_c00042{width:794.000000pt;}
.x0_c00042{left:0.000000pt;}
.xd_c00042{left:10.532400pt;}
.x1_c00042{left:12.880000pt;}
.x2_c00042{left:100.480133pt;}
.xc_c00042{left:113.360000pt;}
.x10_c00042{left:125.579867pt;}
.xe_c00042{left:333.985867pt;}
.xf_c00042{left:372.001067pt;}
.x6_c00042{left:503.042000pt;}
.x3_c00042{left:518.702800pt;}
.x4_c00042{left:544.850533pt;}
.x7_c00042{left:551.935867pt;}
.x8_c00042{left:588.927867pt;}
.xa_c00042{left:597.887333pt;}
.x5_c00042{left:615.970000pt;}
.x9_c00042{left:625.238267pt;}
.xb_c00042{left:637.006800pt;}
.x11_c00042{left:682.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_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_f4e4c6afe6517915f6d1b981.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.134000;font-style:normal;font-weight:normal;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_76f034c2f8b29c1bf7027847.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.134000;font-style:normal;font-weight:normal;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_1a79a6f5486b983abc761ff1.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:0.787000;font-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_c00043{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls3_c00043{letter-spacing:0.000000px;}
.lsf_c00043{letter-spacing:0.265680px;}
.lse_c00043{letter-spacing:0.425088px;}
.lsd_c00043{letter-spacing:0.478224px;}
.lsc_c00043{letter-spacing:0.531360px;}
.ls10_c00043{letter-spacing:0.584496px;}
.ls7_c00043{letter-spacing:4.115232px;}
.ls8_c00043{letter-spacing:4.276800px;}
.ls9_c00043{letter-spacing:4.357584px;}
.ls6_c00043{letter-spacing:4.516186px;}
.ls4_c00043{letter-spacing:5.245344px;}
.ls5_c00043{letter-spacing:5.335200px;}
.ls11_c00043{letter-spacing:5.461200px;}
.lsa_c00043{letter-spacing:5.514336px;}
.lsb_c00043{letter-spacing:5.673744px;}
.ls2_c00043{letter-spacing:5.780040px;}
.ls1_c00043{letter-spacing:5.846481px;}
.ls0_c00043{letter-spacing:5.976000px;}
.sc__c00043{text-shadow:none;}
.sc1_c00043{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_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc1_c00043{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00043{word-spacing:-21.874320px;}
.ws0_c00043{word-spacing:-20.947680px;}
.ws1_c00043{word-spacing:-18.133320px;}
.ws2_c00043{word-spacing:-17.487360px;}
.ws7_c00043{word-spacing:-16.944480px;}
.ws6_c00043{word-spacing:-16.891344px;}
.ws3_c00043{word-spacing:-16.838208px;}
.ws4_c00043{word-spacing:-16.678800px;}
.ws8_c00043{word-spacing:0.000000px;}
._1_c00043{margin-left:-1.063920px;}
._6_c00043{width:1.512000px;}
._5_c00043{width:2.880000px;}
._a_c00043{width:4.813920px;}
._2_c00043{width:5.976000px;}
._8_c00043{width:14.256000px;}
._4_c00043{width:17.136000px;}
._3_c00043{width:18.288000px;}
._0_c00043{width:21.096000px;}
._7_c00043{width:23.688000px;}
._9_c00043{width:31.392000px;}
._d_c00043{width:36.486720px;}
._e_c00043{width:37.726560px;}
._b_c00043{width:39.970080px;}
._c_c00043{width:41.553480px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs4_c00043{font-size:47.520000px;}
.fs3_c00043{font-size:48.982495px;}
.fs1_c00043{font-size:56.160000px;}
.fs5_c00043{font-size:59.040000px;}
.fs6_c00043{font-size:60.000000px;}
.fs2_c00043{font-size:60.857039px;}
.fs0_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y37_c00043{bottom:3.120150px;}
.y36_c00043{bottom:34.744500px;}
.y1_c00043{bottom:54.000000px;}
.y35_c00043{bottom:65.925000px;}
.y34_c00043{bottom:87.525000px;}
.y33_c00043{bottom:105.165000px;}
.y32_c00043{bottom:122.445000px;}
.y31_c00043{bottom:140.085000px;}
.y30_c00043{bottom:157.365000px;}
.y2f_c00043{bottom:175.005000px;}
.y2e_c00043{bottom:192.645000px;}
.y2d_c00043{bottom:209.925000px;}
.y2c_c00043{bottom:227.565000px;}
.y2b_c00043{bottom:245.205000px;}
.y2a_c00043{bottom:262.485000px;}
.y29_c00043{bottom:280.125000px;}
.y28_c00043{bottom:297.405000px;}
.y27_c00043{bottom:315.045000px;}
.y26_c00043{bottom:332.685000px;}
.y25_c00043{bottom:349.965000px;}
.y24_c00043{bottom:367.605000px;}
.y23_c00043{bottom:385.245000px;}
.y22_c00043{bottom:402.525000px;}
.y21_c00043{bottom:420.165000px;}
.y20_c00043{bottom:437.445000px;}
.y1f_c00043{bottom:455.085000px;}
.y1e_c00043{bottom:472.725000px;}
.y1d_c00043{bottom:490.005000px;}
.y1c_c00043{bottom:507.645000px;}
.y1b_c00043{bottom:525.285000px;}
.y1a_c00043{bottom:542.565000px;}
.y19_c00043{bottom:560.205000px;}
.y18_c00043{bottom:577.485000px;}
.y17_c00043{bottom:595.125000px;}
.y16_c00043{bottom:612.765000px;}
.y15_c00043{bottom:630.045000px;}
.y14_c00043{bottom:647.685000px;}
.y13_c00043{bottom:665.325000px;}
.y12_c00043{bottom:682.605000px;}
.y11_c00043{bottom:700.245000px;}
.y10_c00043{bottom:718.605000px;}
.yf_c00043{bottom:752.085000px;}
.ye_c00043{bottom:788.085000px;}
.yd_c00043{bottom:808.965000px;}
.yc_c00043{bottom:829.845000px;}
.yb_c00043{bottom:851.085000px;}
.ya_c00043{bottom:871.965000px;}
.y9_c00043{bottom:892.845000px;}
.y8_c00043{bottom:914.085000px;}
.y7_c00043{bottom:934.965000px;}
.y6_c00043{bottom:955.845000px;}
.y5_c00043{bottom:991.845000px;}
.y4_c00043{bottom:1027.845000px;}
.y3_c00043{bottom:1063.845000px;}
.y2_c00043{bottom:1085.085000px;}
.h6_c00043{height:19.255500px;}
.h7_c00043{height:46.320000px;}
.h5_c00043{height:53.490240px;}
.h4_c00043{height:55.136477px;}
.h3_c00043{height:65.232000px;}
.h2_c00043{height:1201.365000px;}
.h0_c00043{height:1262.835000px;}
.h1_c00043{height:1263.000000px;}
.w4_c00043{width:16.680000px;}
.w3_c00043{width:323.280000px;}
.w2_c00043{width:863.955000px;}
.w0_c00043{width:892.935000px;}
.w1_c00043{width:893.250000px;}
.x0_c00043{left:0.000000px;}
.x4_c00043{left:7.920150px;}
.x1_c00043{left:14.490000px;}
.x5_c00043{left:64.982100px;}
.x7_c00043{left:69.313950px;}
.x2_c00043{left:113.040150px;}
.x3_c00043{left:119.610000px;}
.x6_c00043{left:443.610000px;}
.x8_c00043{left:768.255000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls3_c00043{letter-spacing:0.000000pt;}
.lsf_c00043{letter-spacing:0.236160pt;}
.lse_c00043{letter-spacing:0.377856pt;}
.lsd_c00043{letter-spacing:0.425088pt;}
.lsc_c00043{letter-spacing:0.472320pt;}
.ls10_c00043{letter-spacing:0.519552pt;}
.ls7_c00043{letter-spacing:3.657984pt;}
.ls8_c00043{letter-spacing:3.801600pt;}
.ls9_c00043{letter-spacing:3.873408pt;}
.ls6_c00043{letter-spacing:4.014388pt;}
.ls4_c00043{letter-spacing:4.662528pt;}
.ls5_c00043{letter-spacing:4.742400pt;}
.ls11_c00043{letter-spacing:4.854400pt;}
.lsa_c00043{letter-spacing:4.901632pt;}
.lsb_c00043{letter-spacing:5.043328pt;}
.ls2_c00043{letter-spacing:5.137813pt;}
.ls1_c00043{letter-spacing:5.196872pt;}
.ls0_c00043{letter-spacing:5.312000pt;}
.ws5_c00043{word-spacing:-19.443840pt;}
.ws0_c00043{word-spacing:-18.620160pt;}
.ws1_c00043{word-spacing:-16.118506pt;}
.ws2_c00043{word-spacing:-15.544320pt;}
.ws7_c00043{word-spacing:-15.061760pt;}
.ws6_c00043{word-spacing:-15.014528pt;}
.ws3_c00043{word-spacing:-14.967296pt;}
.ws4_c00043{word-spacing:-14.825600pt;}
.ws8_c00043{word-spacing:0.000000pt;}
._1_c00043{margin-left:-0.945707pt;}
._6_c00043{width:1.344000pt;}
._5_c00043{width:2.560000pt;}
._a_c00043{width:4.279040pt;}
._2_c00043{width:5.312000pt;}
._8_c00043{width:12.672000pt;}
._4_c00043{width:15.232000pt;}
._3_c00043{width:16.256000pt;}
._0_c00043{width:18.752000pt;}
._7_c00043{width:21.056000pt;}
._9_c00043{width:27.904000pt;}
._d_c00043{width:32.432640pt;}
._e_c00043{width:33.534720pt;}
._b_c00043{width:35.528960pt;}
._c_c00043{width:36.936427pt;}
.fs4_c00043{font-size:42.240000pt;}
.fs3_c00043{font-size:43.539995pt;}
.fs1_c00043{font-size:49.920000pt;}
.fs5_c00043{font-size:52.480000pt;}
.fs6_c00043{font-size:53.333333pt;}
.fs2_c00043{font-size:54.095146pt;}
.fs0_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y37_c00043{bottom:2.773467pt;}
.y36_c00043{bottom:30.884000pt;}
.y1_c00043{bottom:48.000000pt;}
.y35_c00043{bottom:58.600000pt;}
.y34_c00043{bottom:77.800000pt;}
.y33_c00043{bottom:93.480000pt;}
.y32_c00043{bottom:108.840000pt;}
.y31_c00043{bottom:124.520000pt;}
.y30_c00043{bottom:139.880000pt;}
.y2f_c00043{bottom:155.560000pt;}
.y2e_c00043{bottom:171.240000pt;}
.y2d_c00043{bottom:186.600000pt;}
.y2c_c00043{bottom:202.280000pt;}
.y2b_c00043{bottom:217.960000pt;}
.y2a_c00043{bottom:233.320000pt;}
.y29_c00043{bottom:249.000000pt;}
.y28_c00043{bottom:264.360000pt;}
.y27_c00043{bottom:280.040000pt;}
.y26_c00043{bottom:295.720000pt;}
.y25_c00043{bottom:311.080000pt;}
.y24_c00043{bottom:326.760000pt;}
.y23_c00043{bottom:342.440000pt;}
.y22_c00043{bottom:357.800000pt;}
.y21_c00043{bottom:373.480000pt;}
.y20_c00043{bottom:388.840000pt;}
.y1f_c00043{bottom:404.520000pt;}
.y1e_c00043{bottom:420.200000pt;}
.y1d_c00043{bottom:435.560000pt;}
.y1c_c00043{bottom:451.240000pt;}
.y1b_c00043{bottom:466.920000pt;}
.y1a_c00043{bottom:482.280000pt;}
.y19_c00043{bottom:497.960000pt;}
.y18_c00043{bottom:513.320000pt;}
.y17_c00043{bottom:529.000000pt;}
.y16_c00043{bottom:544.680000pt;}
.y15_c00043{bottom:560.040000pt;}
.y14_c00043{bottom:575.720000pt;}
.y13_c00043{bottom:591.400000pt;}
.y12_c00043{bottom:606.760000pt;}
.y11_c00043{bottom:622.440000pt;}
.y10_c00043{bottom:638.760000pt;}
.yf_c00043{bottom:668.520000pt;}
.ye_c00043{bottom:700.520000pt;}
.yd_c00043{bottom:719.080000pt;}
.yc_c00043{bottom:737.640000pt;}
.yb_c00043{bottom:756.520000pt;}
.ya_c00043{bottom:775.080000pt;}
.y9_c00043{bottom:793.640000pt;}
.y8_c00043{bottom:812.520000pt;}
.y7_c00043{bottom:831.080000pt;}
.y6_c00043{bottom:849.640000pt;}
.y5_c00043{bottom:881.640000pt;}
.y4_c00043{bottom:913.640000pt;}
.y3_c00043{bottom:945.640000pt;}
.y2_c00043{bottom:964.520000pt;}
.h6_c00043{height:17.116000pt;}
.h7_c00043{height:41.173333pt;}
.h5_c00043{height:47.546880pt;}
.h4_c00043{height:49.010202pt;}
.h3_c00043{height:57.984000pt;}
.h2_c00043{height:1067.880000pt;}
.h0_c00043{height:1122.520000pt;}
.h1_c00043{height:1122.666667pt;}
.w4_c00043{width:14.826667pt;}
.w3_c00043{width:287.360000pt;}
.w2_c00043{width:767.960000pt;}
.w0_c00043{width:793.720000pt;}
.w1_c00043{width:794.000000pt;}
.x0_c00043{left:0.000000pt;}
.x4_c00043{left:7.040133pt;}
.x1_c00043{left:12.880000pt;}
.x5_c00043{left:57.761867pt;}
.x7_c00043{left:61.612400pt;}
.x2_c00043{left:100.480133pt;}
.x3_c00043{left:106.320000pt;}
.x6_c00043{left:394.320000pt;}
.x8_c00043{left:682.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_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_72d9bb9ad5104660783f0745.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.134000;font-style:normal;font-weight:normal;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_8117eec061a5768aabf71f3f.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.134000;font-style:normal;font-weight:normal;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_3437386b06afcb82795b5b20.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_e2ee32a11d2c70c148df57ff.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_1c34a4ac1f0358f3c2f434dc.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;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:ff6_c00044;src:url('chunks/assets/font_a37b40605d01d9d02bb5d601.woff2')format("woff");}.ff6_c00044{font-family:ff6_c00044;line-height:0.787000;font-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_c00044{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00044{vertical-align:-27.360000px;}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:30.240000px;}
.ls4_c00044{letter-spacing:-0.179568px;}
.ls3_c00044{letter-spacing:0.000000px;}
.lsb_c00044{letter-spacing:0.242064px;}
.lsd_c00044{letter-spacing:0.253872px;}
.ls6_c00044{letter-spacing:0.318816px;}
.ls0_c00044{letter-spacing:0.332520px;}
.ls9_c00044{letter-spacing:0.383760px;}
.ls2_c00044{letter-spacing:0.419184px;}
.ls8_c00044{letter-spacing:0.478224px;}
.lse_c00044{letter-spacing:0.543168px;}
.lsa_c00044{letter-spacing:0.578592px;}
.ls5_c00044{letter-spacing:0.719280px;}
.ls7_c00044{letter-spacing:0.738000px;}
.lsf_c00044{letter-spacing:3.577824px;}
.ls1_c00044{letter-spacing:9.056736px;}
.lsc_c00044{letter-spacing:10.125360px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-20.016000px;}
.ws5_c00044{word-spacing:-15.238224px;}
.ws6_c00044{word-spacing:-15.013872px;}
.ws1_c00044{word-spacing:-11.429712px;}
.ws2_c00044{word-spacing:-10.439280px;}
.ws4_c00044{word-spacing:-0.637632px;}
.ws3_c00044{word-spacing:-0.478224px;}
.ws7_c00044{word-spacing:0.000000px;}
._11_c00044{margin-left:-16.177800px;}
._10_c00044{margin-left:-10.821600px;}
._14_c00044{margin-left:-9.623520px;}
._13_c00044{margin-left:-8.501760px;}
._15_c00044{margin-left:-3.567168px;}
._16_c00044{margin-left:-2.489184px;}
._12_c00044{margin-left:-1.317960px;}
._1_c00044{width:1.008000px;}
._0_c00044{width:3.024000px;}
._3_c00044{width:4.104000px;}
._4_c00044{width:5.328000px;}
._6_c00044{width:6.984000px;}
._f_c00044{width:8.928000px;}
._c_c00044{width:10.224000px;}
._e_c00044{width:12.672000px;}
._8_c00044{width:15.480000px;}
._d_c00044{width:16.704000px;}
._2_c00044{width:17.712000px;}
._9_c00044{width:21.024000px;}
._5_c00044{width:23.760000px;}
._a_c00044{width:25.416000px;}
._17_c00044{width:27.422640px;}
._b_c00044{width:28.728000px;}
._7_c00044{width:32.112000px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs5_c00044{font-size:38.880000px;}
.fs2_c00044{font-size:41.760000px;}
.fs3_c00044{font-size:56.160000px;}
.fs6_c00044{font-size:59.040000px;}
.fs7_c00044{font-size:60.000000px;}
.fs4_c00044{font-size:64.800000px;}
.fs0_c00044{font-size:72.000000px;}
.fs1_c00044{font-size:74.215901px;}
.y0_c00044{bottom:0.000000px;}
.y2b_c00044{bottom:3.120150px;}
.y2a_c00044{bottom:34.744500px;}
.y1_c00044{bottom:54.000000px;}
.y29_c00044{bottom:61.221240px;}
.y28_c00044{bottom:78.505200px;}
.y27_c00044{bottom:95.789160px;}
.y26_c00044{bottom:113.073120px;}
.y25_c00044{bottom:130.357080px;}
.y24_c00044{bottom:147.641040px;}
.y23_c00044{bottom:171.765000px;}
.y22_c00044{bottom:197.325000px;}
.y21_c00044{bottom:373.725000px;}
.y20_c00044{bottom:394.965000px;}
.y1f_c00044{bottom:415.845000px;}
.y1e_c00044{bottom:436.725000px;}
.y1d_c00044{bottom:457.965000px;}
.y1c_c00044{bottom:478.845000px;}
.y1b_c00044{bottom:514.845000px;}
.y1a_c00044{bottom:535.725000px;}
.y19_c00044{bottom:556.965000px;}
.y18_c00044{bottom:577.845000px;}
.y17_c00044{bottom:598.725000px;}
.y16_c00044{bottom:619.965000px;}
.y15_c00044{bottom:655.965000px;}
.y14_c00044{bottom:676.845000px;}
.y13_c00044{bottom:697.725000px;}
.y12_c00044{bottom:718.965000px;}
.y11_c00044{bottom:739.845000px;}
.y10_c00044{bottom:761.085000px;}
.yf_c00044{bottom:781.965000px;}
.ye_c00044{bottom:802.845000px;}
.yd_c00044{bottom:838.845000px;}
.yc_c00044{bottom:860.085000px;}
.yb_c00044{bottom:880.965000px;}
.ya_c00044{bottom:901.845000px;}
.y9_c00044{bottom:923.085000px;}
.y8_c00044{bottom:943.965000px;}
.y7_c00044{bottom:964.845000px;}
.y6_c00044{bottom:986.085000px;}
.y5_c00044{bottom:1022.085000px;}
.y4_c00044{bottom:1042.965000px;}
.y3_c00044{bottom:1063.845000px;}
.y2_c00044{bottom:1085.085000px;}
.h9_c00044{height:19.255500px;}
.h7_c00044{height:27.014766px;}
.h8_c00044{height:41.022422px;}
.h6_c00044{height:45.024609px;}
.ha_c00044{height:46.320000px;}
.h3_c00044{height:65.232000px;}
.h4_c00044{height:67.239607px;}
.h5_c00044{height:68.074560px;}
.h2_c00044{height:1201.365000px;}
.h0_c00044{height:1262.835000px;}
.h1_c00044{height:1263.000000px;}
.w3_c00044{width:16.680000px;}
.w2_c00044{width:863.955000px;}
.w0_c00044{width:892.935000px;}
.w1_c00044{width:893.250000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:14.490000px;}
.x2_c00044{left:113.040150px;}
.x7_c00044{left:212.316300px;}
.x8_c00044{left:284.351100px;}
.x5_c00044{left:369.291150px;}
.x6_c00044{left:421.310250px;}
.x3_c00044{left:698.370900px;}
.x4_c00044{left:750.390000px;}
.x9_c00044{left:768.255000px;}
@media print{
.v2_c00044{vertical-align:-24.320000pt;}
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:26.880000pt;}
.ls4_c00044{letter-spacing:-0.159616pt;}
.ls3_c00044{letter-spacing:0.000000pt;}
.lsb_c00044{letter-spacing:0.215168pt;}
.lsd_c00044{letter-spacing:0.225664pt;}
.ls6_c00044{letter-spacing:0.283392pt;}
.ls0_c00044{letter-spacing:0.295573pt;}
.ls9_c00044{letter-spacing:0.341120pt;}
.ls2_c00044{letter-spacing:0.372608pt;}
.ls8_c00044{letter-spacing:0.425088pt;}
.lse_c00044{letter-spacing:0.482816pt;}
.lsa_c00044{letter-spacing:0.514304pt;}
.ls5_c00044{letter-spacing:0.639360pt;}
.ls7_c00044{letter-spacing:0.656000pt;}
.lsf_c00044{letter-spacing:3.180288pt;}
.ls1_c00044{letter-spacing:8.050432pt;}
.lsc_c00044{letter-spacing:9.000320pt;}
.ws0_c00044{word-spacing:-17.792000pt;}
.ws5_c00044{word-spacing:-13.545088pt;}
.ws6_c00044{word-spacing:-13.345664pt;}
.ws1_c00044{word-spacing:-10.159744pt;}
.ws2_c00044{word-spacing:-9.279360pt;}
.ws4_c00044{word-spacing:-0.566784pt;}
.ws3_c00044{word-spacing:-0.425088pt;}
.ws7_c00044{word-spacing:0.000000pt;}
._11_c00044{margin-left:-14.380267pt;}
._10_c00044{margin-left:-9.619200pt;}
._14_c00044{margin-left:-8.554240pt;}
._13_c00044{margin-left:-7.557120pt;}
._15_c00044{margin-left:-3.170816pt;}
._16_c00044{margin-left:-2.212608pt;}
._12_c00044{margin-left:-1.171520pt;}
._1_c00044{width:0.896000pt;}
._0_c00044{width:2.688000pt;}
._3_c00044{width:3.648000pt;}
._4_c00044{width:4.736000pt;}
._6_c00044{width:6.208000pt;}
._f_c00044{width:7.936000pt;}
._c_c00044{width:9.088000pt;}
._e_c00044{width:11.264000pt;}
._8_c00044{width:13.760000pt;}
._d_c00044{width:14.848000pt;}
._2_c00044{width:15.744000pt;}
._9_c00044{width:18.688000pt;}
._5_c00044{width:21.120000pt;}
._a_c00044{width:22.592000pt;}
._17_c00044{width:24.375680pt;}
._b_c00044{width:25.536000pt;}
._7_c00044{width:28.544000pt;}
.fs5_c00044{font-size:34.560000pt;}
.fs2_c00044{font-size:37.120000pt;}
.fs3_c00044{font-size:49.920000pt;}
.fs6_c00044{font-size:52.480000pt;}
.fs7_c00044{font-size:53.333333pt;}
.fs4_c00044{font-size:57.600000pt;}
.fs0_c00044{font-size:64.000000pt;}
.fs1_c00044{font-size:65.969690pt;}
.y0_c00044{bottom:0.000000pt;}
.y2b_c00044{bottom:2.773467pt;}
.y2a_c00044{bottom:30.884000pt;}
.y1_c00044{bottom:48.000000pt;}
.y29_c00044{bottom:54.418880pt;}
.y28_c00044{bottom:69.782400pt;}
.y27_c00044{bottom:85.145920pt;}
.y26_c00044{bottom:100.509440pt;}
.y25_c00044{bottom:115.872960pt;}
.y24_c00044{bottom:131.236480pt;}
.y23_c00044{bottom:152.680000pt;}
.y22_c00044{bottom:175.400000pt;}
.y21_c00044{bottom:332.200000pt;}
.y20_c00044{bottom:351.080000pt;}
.y1f_c00044{bottom:369.640000pt;}
.y1e_c00044{bottom:388.200000pt;}
.y1d_c00044{bottom:407.080000pt;}
.y1c_c00044{bottom:425.640000pt;}
.y1b_c00044{bottom:457.640000pt;}
.y1a_c00044{bottom:476.200000pt;}
.y19_c00044{bottom:495.080000pt;}
.y18_c00044{bottom:513.640000pt;}
.y17_c00044{bottom:532.200000pt;}
.y16_c00044{bottom:551.080000pt;}
.y15_c00044{bottom:583.080000pt;}
.y14_c00044{bottom:601.640000pt;}
.y13_c00044{bottom:620.200000pt;}
.y12_c00044{bottom:639.080000pt;}
.y11_c00044{bottom:657.640000pt;}
.y10_c00044{bottom:676.520000pt;}
.yf_c00044{bottom:695.080000pt;}
.ye_c00044{bottom:713.640000pt;}
.yd_c00044{bottom:745.640000pt;}
.yc_c00044{bottom:764.520000pt;}
.yb_c00044{bottom:783.080000pt;}
.ya_c00044{bottom:801.640000pt;}
.y9_c00044{bottom:820.520000pt;}
.y8_c00044{bottom:839.080000pt;}
.y7_c00044{bottom:857.640000pt;}
.y6_c00044{bottom:876.520000pt;}
.y5_c00044{bottom:908.520000pt;}
.y4_c00044{bottom:927.080000pt;}
.y3_c00044{bottom:945.640000pt;}
.y2_c00044{bottom:964.520000pt;}
.h9_c00044{height:17.116000pt;}
.h7_c00044{height:24.013125pt;}
.h8_c00044{height:36.464375pt;}
.h6_c00044{height:40.021875pt;}
.ha_c00044{height:41.173333pt;}
.h3_c00044{height:57.984000pt;}
.h4_c00044{height:59.768539pt;}
.h5_c00044{height:60.510720pt;}
.h2_c00044{height:1067.880000pt;}
.h0_c00044{height:1122.520000pt;}
.h1_c00044{height:1122.666667pt;}
.w3_c00044{width:14.826667pt;}
.w2_c00044{width:767.960000pt;}
.w0_c00044{width:793.720000pt;}
.w1_c00044{width:794.000000pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:12.880000pt;}
.x2_c00044{left:100.480133pt;}
.x7_c00044{left:188.725600pt;}
.x8_c00044{left:252.756533pt;}
.x5_c00044{left:328.258800pt;}
.x6_c00044{left:374.498000pt;}
.x3_c00044{left:620.774133pt;}
.x4_c00044{left:667.013333pt;}
.x9_c00044{left:682.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_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_8aafd3113847540bd24f8674.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.134000;font-style:normal;font-weight:normal;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_9cbed7666ede1047cacc9227.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.134000;font-style:normal;font-weight:normal;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_ef7bef95acc43689bb2fde98.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_a6c49c1cb6e250fc67bad456.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:0.787000;font-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_c00045{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00045{vertical-align:-24.480000px;}
.v0_c00045{vertical-align:0.000000px;}
.v1_c00045{vertical-align:30.240000px;}
.lsf_c00045{letter-spacing:-0.179568px;}
.ls4_c00045{letter-spacing:0.000000px;}
.ls13_c00045{letter-spacing:0.144000px;}
.lsd_c00045{letter-spacing:0.265680px;}
.ls5_c00045{letter-spacing:0.318816px;}
.ls15_c00045{letter-spacing:0.357572px;}
.ls3_c00045{letter-spacing:0.371952px;}
.ls9_c00045{letter-spacing:0.478224px;}
.ls6_c00045{letter-spacing:0.531360px;}
.ls2_c00045{letter-spacing:0.548950px;}
.ls1_c00045{letter-spacing:0.549072px;}
.ls12_c00045{letter-spacing:0.625195px;}
.ls0_c00045{letter-spacing:0.712027px;}
.lsc_c00045{letter-spacing:0.766799px;}
.ls7_c00045{letter-spacing:0.821570px;}
.lse_c00045{letter-spacing:0.962352px;}
.lsa_c00045{letter-spacing:0.991970px;}
.ls10_c00045{letter-spacing:1.087200px;}
.ls8_c00045{letter-spacing:5.514336px;}
.ls14_c00045{letter-spacing:8.247888px;}
.ls11_c00045{letter-spacing:13.284000px;}
.lsb_c00045{letter-spacing:28.675728px;}
.sc__c00045{text-shadow:none;}
.sc1_c00045{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_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;}
.sc1_c00045{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00045{word-spacing:-21.927456px;}
.ws9_c00045{word-spacing:-20.632021px;}
.ws5_c00045{word-spacing:-17.739827px;}
.ws4_c00045{word-spacing:-17.685056px;}
.ws3_c00045{word-spacing:-17.630284px;}
.ws7_c00045{word-spacing:-17.375472px;}
.ws6_c00045{word-spacing:-16.962192px;}
.ws1_c00045{word-spacing:-16.944480px;}
.wsa_c00045{word-spacing:-16.718171px;}
.wsd_c00045{word-spacing:-16.678800px;}
.ws0_c00045{word-spacing:-16.413120px;}
.wsc_c00045{word-spacing:-13.974706px;}
.ws8_c00045{word-spacing:-11.429712px;}
.wsb_c00045{word-spacing:-10.152000px;}
.wse_c00045{word-spacing:0.000000px;}
._3_c00045{margin-left:-28.162080px;}
._15_c00045{margin-left:-16.177800px;}
._14_c00045{margin-left:-10.821600px;}
._16_c00045{margin-left:-7.963200px;}
._17_c00045{margin-left:-6.780960px;}
._1_c00045{margin-left:-1.460569px;}
._5_c00045{width:1.180800px;}
._6_c00045{width:2.390400px;}
._9_c00045{width:4.089600px;}
._0_c00045{width:5.513160px;}
._f_c00045{width:7.416000px;}
._13_c00045{width:8.856000px;}
._e_c00045{width:10.080000px;}
._12_c00045{width:11.088000px;}
._11_c00045{width:12.096000px;}
._b_c00045{width:13.176000px;}
._a_c00045{width:14.616000px;}
._7_c00045{width:18.792000px;}
._4_c00045{width:20.368800px;}
._10_c00045{width:24.480000px;}
._c_c00045{width:27.302400px;}
._2_c00045{width:28.339200px;}
._d_c00045{width:33.480000px;}
._8_c00045{width:40.824000px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs7_c00045{font-size:36.000000px;}
.fs4_c00045{font-size:41.760000px;}
.fs8_c00045{font-size:48.982495px;}
.fs5_c00045{font-size:57.888403px;}
.fs1_c00045{font-size:59.040000px;}
.fs9_c00045{font-size:60.000000px;}
.fs2_c00045{font-size:60.857039px;}
.fs6_c00045{font-size:64.800000px;}
.fs0_c00045{font-size:72.000000px;}
.fs3_c00045{font-size:74.215901px;}
.y0_c00045{bottom:0.000000px;}
.y34_c00045{bottom:3.120150px;}
.y33_c00045{bottom:34.744500px;}
.y1_c00045{bottom:54.000000px;}
.y31_c00045{bottom:55.482840px;}
.y32_c00045{bottom:55.485000px;}
.y30_c00045{bottom:72.766800px;}
.y2f_c00045{bottom:90.405000px;}
.y2e_c00045{bottom:96.525000px;}
.y2d_c00045{bottom:123.165000px;}
.y2c_c00045{bottom:207.405000px;}
.y2b_c00045{bottom:228.645000px;}
.y2a_c00045{bottom:249.525000px;}
.y29_c00045{bottom:270.405000px;}
.y28_c00045{bottom:291.645000px;}
.y27_c00045{bottom:312.525000px;}
.y26_c00045{bottom:333.405000px;}
.y25_c00045{bottom:354.645000px;}
.y24_c00045{bottom:390.645000px;}
.y23_c00045{bottom:411.525000px;}
.y22_c00045{bottom:432.765000px;}
.y21_c00045{bottom:453.645000px;}
.y20_c00045{bottom:474.525000px;}
.y1f_c00045{bottom:495.765000px;}
.y1e_c00045{bottom:516.645000px;}
.y1d_c00045{bottom:552.645000px;}
.y1c_c00045{bottom:573.525000px;}
.y1b_c00045{bottom:594.765000px;}
.y1a_c00045{bottom:615.645000px;}
.y19_c00045{bottom:636.525000px;}
.y18_c00045{bottom:657.765000px;}
.y17_c00045{bottom:678.645000px;}
.y16_c00045{bottom:714.645000px;}
.y15_c00045{bottom:735.525000px;}
.y14_c00045{bottom:756.765000px;}
.y13_c00045{bottom:777.645000px;}
.y12_c00045{bottom:798.525000px;}
.y11_c00045{bottom:819.765000px;}
.y10_c00045{bottom:840.645000px;}
.yf_c00045{bottom:876.645000px;}
.ye_c00045{bottom:913.365000px;}
.yb_c00045{bottom:915.885000px;}
.yd_c00045{bottom:930.645000px;}
.ya_c00045{bottom:933.165000px;}
.yc_c00045{bottom:948.285000px;}
.y9_c00045{bottom:965.925000px;}
.y8_c00045{bottom:999.045000px;}
.y5_c00045{bottom:1001.565000px;}
.y7_c00045{bottom:1016.685000px;}
.y4_c00045{bottom:1018.845000px;}
.y6_c00045{bottom:1033.965000px;}
.y3_c00045{bottom:1051.604850px;}
.y2_c00045{bottom:1085.085000px;}
.ha_c00045{height:19.255500px;}
.h9_c00045{height:32.616000px;}
.h8_c00045{height:45.024609px;}
.hb_c00045{height:46.320000px;}
.h4_c00045{height:53.490240px;}
.h5_c00045{height:55.136477px;}
.h3_c00045{height:65.232000px;}
.h6_c00045{height:67.239607px;}
.h7_c00045{height:68.074560px;}
.h2_c00045{height:1201.365000px;}
.h0_c00045{height:1262.835000px;}
.h1_c00045{height:1263.000000px;}
.w7_c00045{width:16.680000px;}
.w3_c00045{width:60.840000px;}
.w4_c00045{width:137.520000px;}
.w5_c00045{width:158.760000px;}
.w6_c00045{width:288.000000px;}
.w2_c00045{width:863.955000px;}
.w0_c00045{width:892.935000px;}
.w1_c00045{width:893.250000px;}
.x0_c00045{left:0.000000px;}
.x4_c00045{left:7.920150px;}
.x1_c00045{left:14.490000px;}
.xc_c00045{left:50.908950px;}
.x9_c00045{left:55.506750px;}
.x11_c00045{left:75.043050px;}
.x6_c00045{left:79.212750px;}
.x2_c00045{left:113.040150px;}
.x3_c00045{left:119.610000px;}
.xa_c00045{left:131.374350px;}
.xd_c00045{left:151.735650px;}
.x1d_c00045{left:153.665400px;}
.x1e_c00045{left:159.659250px;}
.x23_c00045{left:161.063250px;}
.x12_c00045{left:165.059250px;}
.xb_c00045{left:167.208750px;}
.x5_c00045{left:181.170000px;}
.xe_c00045{left:186.700050px;}
.x2a_c00045{left:196.377300px;}
.xf_c00045{left:242.745600px;}
.x10_c00045{left:280.259850px;}
.x13_c00045{left:283.396050px;}
.x7_c00045{left:319.410000px;}
.x19_c00045{left:322.047000px;}
.x14_c00045{left:330.393300px;}
.x15_c00045{left:341.662350px;}
.x1a_c00045{left:351.062550px;}
.x1b_c00045{left:365.382150px;}
.x8_c00045{left:478.890000px;}
.x1f_c00045{left:485.327700px;}
.x20_c00045{left:505.990800px;}
.x16_c00045{left:541.982700px;}
.x17_c00045{left:547.257900px;}
.x21_c00045{left:562.005600px;}
.x28_c00045{left:566.910600px;}
.x22_c00045{left:577.664700px;}
.x29_c00045{left:606.557400px;}
.x18_c00045{left:645.556350px;}
.x24_c00045{left:647.164200px;}
.x1c_c00045{left:662.091450px;}
.x25_c00045{left:694.349400px;}
.x26_c00045{left:705.347100px;}
.x27_c00045{left:710.351100px;}
.x2b_c00045{left:768.255000px;}
@media print{
.v2_c00045{vertical-align:-21.760000pt;}
.v0_c00045{vertical-align:0.000000pt;}
.v1_c00045{vertical-align:26.880000pt;}
.lsf_c00045{letter-spacing:-0.159616pt;}
.ls4_c00045{letter-spacing:0.000000pt;}
.ls13_c00045{letter-spacing:0.128000pt;}
.lsd_c00045{letter-spacing:0.236160pt;}
.ls5_c00045{letter-spacing:0.283392pt;}
.ls15_c00045{letter-spacing:0.317842pt;}
.ls3_c00045{letter-spacing:0.330624pt;}
.ls9_c00045{letter-spacing:0.425088pt;}
.ls6_c00045{letter-spacing:0.472320pt;}
.ls2_c00045{letter-spacing:0.487956pt;}
.ls1_c00045{letter-spacing:0.488064pt;}
.ls12_c00045{letter-spacing:0.555729pt;}
.ls0_c00045{letter-spacing:0.632913pt;}
.lsc_c00045{letter-spacing:0.681599pt;}
.ls7_c00045{letter-spacing:0.730284pt;}
.lse_c00045{letter-spacing:0.855424pt;}
.lsa_c00045{letter-spacing:0.881751pt;}
.ls10_c00045{letter-spacing:0.966400pt;}
.ls8_c00045{letter-spacing:4.901632pt;}
.ls14_c00045{letter-spacing:7.331456pt;}
.ls11_c00045{letter-spacing:11.808000pt;}
.lsb_c00045{letter-spacing:25.489536pt;}
.ws2_c00045{word-spacing:-19.491072pt;}
.ws9_c00045{word-spacing:-18.339574pt;}
.ws5_c00045{word-spacing:-15.768735pt;}
.ws4_c00045{word-spacing:-15.720049pt;}
.ws3_c00045{word-spacing:-15.671364pt;}
.ws7_c00045{word-spacing:-15.444864pt;}
.ws6_c00045{word-spacing:-15.077504pt;}
.ws1_c00045{word-spacing:-15.061760pt;}
.wsa_c00045{word-spacing:-14.860596pt;}
.wsd_c00045{word-spacing:-14.825600pt;}
.ws0_c00045{word-spacing:-14.589440pt;}
.wsc_c00045{word-spacing:-12.421961pt;}
.ws8_c00045{word-spacing:-10.159744pt;}
.wsb_c00045{word-spacing:-9.024000pt;}
.wse_c00045{word-spacing:0.000000pt;}
._3_c00045{margin-left:-25.032960pt;}
._15_c00045{margin-left:-14.380267pt;}
._14_c00045{margin-left:-9.619200pt;}
._16_c00045{margin-left:-7.078400pt;}
._17_c00045{margin-left:-6.027520pt;}
._1_c00045{margin-left:-1.298283pt;}
._5_c00045{width:1.049600pt;}
._6_c00045{width:2.124800pt;}
._9_c00045{width:3.635200pt;}
._0_c00045{width:4.900587pt;}
._f_c00045{width:6.592000pt;}
._13_c00045{width:7.872000pt;}
._e_c00045{width:8.960000pt;}
._12_c00045{width:9.856000pt;}
._11_c00045{width:10.752000pt;}
._b_c00045{width:11.712000pt;}
._a_c00045{width:12.992000pt;}
._7_c00045{width:16.704000pt;}
._4_c00045{width:18.105600pt;}
._10_c00045{width:21.760000pt;}
._c_c00045{width:24.268800pt;}
._2_c00045{width:25.190400pt;}
._d_c00045{width:29.760000pt;}
._8_c00045{width:36.288000pt;}
.fs7_c00045{font-size:32.000000pt;}
.fs4_c00045{font-size:37.120000pt;}
.fs8_c00045{font-size:43.539995pt;}
.fs5_c00045{font-size:51.456358pt;}
.fs1_c00045{font-size:52.480000pt;}
.fs9_c00045{font-size:53.333333pt;}
.fs2_c00045{font-size:54.095146pt;}
.fs6_c00045{font-size:57.600000pt;}
.fs0_c00045{font-size:64.000000pt;}
.fs3_c00045{font-size:65.969690pt;}
.y0_c00045{bottom:0.000000pt;}
.y34_c00045{bottom:2.773467pt;}
.y33_c00045{bottom:30.884000pt;}
.y1_c00045{bottom:48.000000pt;}
.y31_c00045{bottom:49.318080pt;}
.y32_c00045{bottom:49.320000pt;}
.y30_c00045{bottom:64.681600pt;}
.y2f_c00045{bottom:80.360000pt;}
.y2e_c00045{bottom:85.800000pt;}
.y2d_c00045{bottom:109.480000pt;}
.y2c_c00045{bottom:184.360000pt;}
.y2b_c00045{bottom:203.240000pt;}
.y2a_c00045{bottom:221.800000pt;}
.y29_c00045{bottom:240.360000pt;}
.y28_c00045{bottom:259.240000pt;}
.y27_c00045{bottom:277.800000pt;}
.y26_c00045{bottom:296.360000pt;}
.y25_c00045{bottom:315.240000pt;}
.y24_c00045{bottom:347.240000pt;}
.y23_c00045{bottom:365.800000pt;}
.y22_c00045{bottom:384.680000pt;}
.y21_c00045{bottom:403.240000pt;}
.y20_c00045{bottom:421.800000pt;}
.y1f_c00045{bottom:440.680000pt;}
.y1e_c00045{bottom:459.240000pt;}
.y1d_c00045{bottom:491.240000pt;}
.y1c_c00045{bottom:509.800000pt;}
.y1b_c00045{bottom:528.680000pt;}
.y1a_c00045{bottom:547.240000pt;}
.y19_c00045{bottom:565.800000pt;}
.y18_c00045{bottom:584.680000pt;}
.y17_c00045{bottom:603.240000pt;}
.y16_c00045{bottom:635.240000pt;}
.y15_c00045{bottom:653.800000pt;}
.y14_c00045{bottom:672.680000pt;}
.y13_c00045{bottom:691.240000pt;}
.y12_c00045{bottom:709.800000pt;}
.y11_c00045{bottom:728.680000pt;}
.y10_c00045{bottom:747.240000pt;}
.yf_c00045{bottom:779.240000pt;}
.ye_c00045{bottom:811.880000pt;}
.yb_c00045{bottom:814.120000pt;}
.yd_c00045{bottom:827.240000pt;}
.ya_c00045{bottom:829.480000pt;}
.yc_c00045{bottom:842.920000pt;}
.y9_c00045{bottom:858.600000pt;}
.y8_c00045{bottom:888.040000pt;}
.y5_c00045{bottom:890.280000pt;}
.y7_c00045{bottom:903.720000pt;}
.y4_c00045{bottom:905.640000pt;}
.y6_c00045{bottom:919.080000pt;}
.y3_c00045{bottom:934.759867pt;}
.y2_c00045{bottom:964.520000pt;}
.ha_c00045{height:17.116000pt;}
.h9_c00045{height:28.992000pt;}
.h8_c00045{height:40.021875pt;}
.hb_c00045{height:41.173333pt;}
.h4_c00045{height:47.546880pt;}
.h5_c00045{height:49.010202pt;}
.h3_c00045{height:57.984000pt;}
.h6_c00045{height:59.768539pt;}
.h7_c00045{height:60.510720pt;}
.h2_c00045{height:1067.880000pt;}
.h0_c00045{height:1122.520000pt;}
.h1_c00045{height:1122.666667pt;}
.w7_c00045{width:14.826667pt;}
.w3_c00045{width:54.080000pt;}
.w4_c00045{width:122.240000pt;}
.w5_c00045{width:141.120000pt;}
.w6_c00045{width:256.000000pt;}
.w2_c00045{width:767.960000pt;}
.w0_c00045{width:793.720000pt;}
.w1_c00045{width:794.000000pt;}
.x0_c00045{left:0.000000pt;}
.x4_c00045{left:7.040133pt;}
.x1_c00045{left:12.880000pt;}
.xc_c00045{left:45.252400pt;}
.x9_c00045{left:49.339333pt;}
.x11_c00045{left:66.704933pt;}
.x6_c00045{left:70.411333pt;}
.x2_c00045{left:100.480133pt;}
.x3_c00045{left:106.320000pt;}
.xa_c00045{left:116.777200pt;}
.xd_c00045{left:134.876133pt;}
.x1d_c00045{left:136.591467pt;}
.x1e_c00045{left:141.919333pt;}
.x23_c00045{left:143.167333pt;}
.x12_c00045{left:146.719333pt;}
.xb_c00045{left:148.630000pt;}
.x5_c00045{left:161.040000pt;}
.xe_c00045{left:165.955600pt;}
.x2a_c00045{left:174.557600pt;}
.xf_c00045{left:215.773867pt;}
.x10_c00045{left:249.119867pt;}
.x13_c00045{left:251.907600pt;}
.x7_c00045{left:283.920000pt;}
.x19_c00045{left:286.264000pt;}
.x14_c00045{left:293.682933pt;}
.x15_c00045{left:303.699867pt;}
.x1a_c00045{left:312.055600pt;}
.x1b_c00045{left:324.784133pt;}
.x8_c00045{left:425.680000pt;}
.x1f_c00045{left:431.402400pt;}
.x20_c00045{left:449.769600pt;}
.x16_c00045{left:481.762400pt;}
.x17_c00045{left:486.451467pt;}
.x21_c00045{left:499.560533pt;}
.x28_c00045{left:503.920533pt;}
.x22_c00045{left:513.479733pt;}
.x29_c00045{left:539.162133pt;}
.x18_c00045{left:573.827867pt;}
.x24_c00045{left:575.257067pt;}
.x1c_c00045{left:588.525733pt;}
.x25_c00045{left:617.199467pt;}
.x26_c00045{left:626.975200pt;}
.x27_c00045{left:631.423200pt;}
.x2b_c00045{left:682.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_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_821d5efc7656a64590e6da2c.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.134000;font-style:normal;font-weight:normal;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_3ccc3c740c2c274d96327563.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_ee1671ca259c9bc594be241e.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:0.787000;font-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_c00046{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls3_c00046{letter-spacing:0.000000px;}
.ls1_c00046{letter-spacing:0.420120px;}
.ls4_c00046{letter-spacing:5.430672px;}
.ls0_c00046{letter-spacing:5.976000px;}
.ls2_c00046{letter-spacing:12.967920px;}
.sc__c00046{text-shadow:none;}
.sc1_c00046{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_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;}
.sc1_c00046{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:0.000000px;}
._0_c00046{margin-left:-1.184160px;}
._a_c00046{width:1.152000px;}
._2_c00046{width:2.160000px;}
._6_c00046{width:3.240000px;}
._b_c00046{width:4.608000px;}
._5_c00046{width:6.408000px;}
._c_c00046{width:7.776000px;}
._10_c00046{width:8.928000px;}
._7_c00046{width:10.224000px;}
._f_c00046{width:12.168000px;}
._1_c00046{width:13.320000px;}
._11_c00046{width:14.328000px;}
._4_c00046{width:16.344000px;}
._3_c00046{width:18.576000px;}
._e_c00046{width:22.824000px;}
._d_c00046{width:27.504000px;}
._8_c00046{width:28.800000px;}
._9_c00046{width:32.904000px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs1_c00046{font-size:56.160000px;}
.fs3_c00046{font-size:60.000000px;}
.fs0_c00046{font-size:72.000000px;}
.fs2_c00046{font-size:74.215901px;}
.y0_c00046{bottom:0.000000px;}
.y2f_c00046{bottom:3.120150px;}
.y2e_c00046{bottom:34.744500px;}
.y1_c00046{bottom:54.000000px;}
.y2d_c00046{bottom:61.605000px;}
.y2c_c00046{bottom:82.845000px;}
.y2b_c00046{bottom:103.725000px;}
.y2a_c00046{bottom:124.605000px;}
.y29_c00046{bottom:145.845000px;}
.y28_c00046{bottom:166.725000px;}
.y27_c00046{bottom:187.605000px;}
.y26_c00046{bottom:223.965000px;}
.y25_c00046{bottom:244.845000px;}
.y24_c00046{bottom:265.725000px;}
.y23_c00046{bottom:286.965000px;}
.y22_c00046{bottom:307.845000px;}
.y21_c00046{bottom:328.725000px;}
.y20_c00046{bottom:349.965000px;}
.y1f_c00046{bottom:385.965000px;}
.y1e_c00046{bottom:406.845000px;}
.y1d_c00046{bottom:427.725000px;}
.y1c_c00046{bottom:448.965000px;}
.y1b_c00046{bottom:469.845000px;}
.y1a_c00046{bottom:490.725000px;}
.y19_c00046{bottom:511.965000px;}
.y18_c00046{bottom:532.845000px;}
.y17_c00046{bottom:553.725000px;}
.y16_c00046{bottom:574.965000px;}
.y15_c00046{bottom:610.965000px;}
.y14_c00046{bottom:631.845000px;}
.y13_c00046{bottom:652.725000px;}
.y12_c00046{bottom:673.965000px;}
.y11_c00046{bottom:709.965000px;}
.y10_c00046{bottom:730.845000px;}
.yf_c00046{bottom:752.085000px;}
.ye_c00046{bottom:772.965000px;}
.yd_c00046{bottom:793.845000px;}
.yc_c00046{bottom:829.845000px;}
.yb_c00046{bottom:851.085000px;}
.ya_c00046{bottom:871.965000px;}
.y9_c00046{bottom:892.845000px;}
.y8_c00046{bottom:928.845000px;}
.y7_c00046{bottom:950.085000px;}
.y6_c00046{bottom:970.965000px;}
.y5_c00046{bottom:991.845000px;}
.y4_c00046{bottom:1013.085000px;}
.y3_c00046{bottom:1049.085000px;}
.y2_c00046{bottom:1085.085000px;}
.h5_c00046{height:19.255500px;}
.h6_c00046{height:46.320000px;}
.h3_c00046{height:65.232000px;}
.h4_c00046{height:67.239607px;}
.h2_c00046{height:1201.365000px;}
.h0_c00046{height:1262.835000px;}
.h1_c00046{height:1263.000000px;}
.w3_c00046{width:16.680000px;}
.w2_c00046{width:863.955000px;}
.w0_c00046{width:892.935000px;}
.w1_c00046{width:893.250000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:14.490000px;}
.x2_c00046{left:113.040150px;}
.x6_c00046{left:115.740150px;}
.xb_c00046{left:167.759400px;}
.x7_c00046{left:261.204300px;}
.x3_c00046{left:280.915350px;}
.x9_c00046{left:320.512200px;}
.xa_c00046{left:369.507150px;}
.x8_c00046{left:476.340900px;}
.x4_c00046{left:693.366900px;}
.x5_c00046{left:745.386150px;}
.xc_c00046{left:768.255000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls3_c00046{letter-spacing:0.000000pt;}
.ls1_c00046{letter-spacing:0.373440pt;}
.ls4_c00046{letter-spacing:4.827264pt;}
.ls0_c00046{letter-spacing:5.312000pt;}
.ls2_c00046{letter-spacing:11.527040pt;}
.ws0_c00046{word-spacing:0.000000pt;}
._0_c00046{margin-left:-1.052587pt;}
._a_c00046{width:1.024000pt;}
._2_c00046{width:1.920000pt;}
._6_c00046{width:2.880000pt;}
._b_c00046{width:4.096000pt;}
._5_c00046{width:5.696000pt;}
._c_c00046{width:6.912000pt;}
._10_c00046{width:7.936000pt;}
._7_c00046{width:9.088000pt;}
._f_c00046{width:10.816000pt;}
._1_c00046{width:11.840000pt;}
._11_c00046{width:12.736000pt;}
._4_c00046{width:14.528000pt;}
._3_c00046{width:16.512000pt;}
._e_c00046{width:20.288000pt;}
._d_c00046{width:24.448000pt;}
._8_c00046{width:25.600000pt;}
._9_c00046{width:29.248000pt;}
.fs1_c00046{font-size:49.920000pt;}
.fs3_c00046{font-size:53.333333pt;}
.fs0_c00046{font-size:64.000000pt;}
.fs2_c00046{font-size:65.969690pt;}
.y0_c00046{bottom:0.000000pt;}
.y2f_c00046{bottom:2.773467pt;}
.y2e_c00046{bottom:30.884000pt;}
.y1_c00046{bottom:48.000000pt;}
.y2d_c00046{bottom:54.760000pt;}
.y2c_c00046{bottom:73.640000pt;}
.y2b_c00046{bottom:92.200000pt;}
.y2a_c00046{bottom:110.760000pt;}
.y29_c00046{bottom:129.640000pt;}
.y28_c00046{bottom:148.200000pt;}
.y27_c00046{bottom:166.760000pt;}
.y26_c00046{bottom:199.080000pt;}
.y25_c00046{bottom:217.640000pt;}
.y24_c00046{bottom:236.200000pt;}
.y23_c00046{bottom:255.080000pt;}
.y22_c00046{bottom:273.640000pt;}
.y21_c00046{bottom:292.200000pt;}
.y20_c00046{bottom:311.080000pt;}
.y1f_c00046{bottom:343.080000pt;}
.y1e_c00046{bottom:361.640000pt;}
.y1d_c00046{bottom:380.200000pt;}
.y1c_c00046{bottom:399.080000pt;}
.y1b_c00046{bottom:417.640000pt;}
.y1a_c00046{bottom:436.200000pt;}
.y19_c00046{bottom:455.080000pt;}
.y18_c00046{bottom:473.640000pt;}
.y17_c00046{bottom:492.200000pt;}
.y16_c00046{bottom:511.080000pt;}
.y15_c00046{bottom:543.080000pt;}
.y14_c00046{bottom:561.640000pt;}
.y13_c00046{bottom:580.200000pt;}
.y12_c00046{bottom:599.080000pt;}
.y11_c00046{bottom:631.080000pt;}
.y10_c00046{bottom:649.640000pt;}
.yf_c00046{bottom:668.520000pt;}
.ye_c00046{bottom:687.080000pt;}
.yd_c00046{bottom:705.640000pt;}
.yc_c00046{bottom:737.640000pt;}
.yb_c00046{bottom:756.520000pt;}
.ya_c00046{bottom:775.080000pt;}
.y9_c00046{bottom:793.640000pt;}
.y8_c00046{bottom:825.640000pt;}
.y7_c00046{bottom:844.520000pt;}
.y6_c00046{bottom:863.080000pt;}
.y5_c00046{bottom:881.640000pt;}
.y4_c00046{bottom:900.520000pt;}
.y3_c00046{bottom:932.520000pt;}
.y2_c00046{bottom:964.520000pt;}
.h5_c00046{height:17.116000pt;}
.h6_c00046{height:41.173333pt;}
.h3_c00046{height:57.984000pt;}
.h4_c00046{height:59.768539pt;}
.h2_c00046{height:1067.880000pt;}
.h0_c00046{height:1122.520000pt;}
.h1_c00046{height:1122.666667pt;}
.w3_c00046{width:14.826667pt;}
.w2_c00046{width:767.960000pt;}
.w0_c00046{width:793.720000pt;}
.w1_c00046{width:794.000000pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:12.880000pt;}
.x2_c00046{left:100.480133pt;}
.x6_c00046{left:102.880133pt;}
.xb_c00046{left:149.119467pt;}
.x7_c00046{left:232.181600pt;}
.x3_c00046{left:249.702533pt;}
.x9_c00046{left:284.899733pt;}
.xa_c00046{left:328.450800pt;}
.x8_c00046{left:423.414133pt;}
.x4_c00046{left:616.326133pt;}
.x5_c00046{left:662.565467pt;}
.xc_c00046{left:682.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_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_bf0795b19131b2822636e198.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.134000;font-style:normal;font-weight:normal;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_debd8364ab3d4132a8162c36.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls1_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:8.072520px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:0.000000px;}
._2_c00047{width:2.160000px;}
._1_c00047{width:7.848000px;}
._0_c00047{width:23.328000px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs1_c00047{font-size:56.160000px;}
.fs2_c00047{font-size:60.000000px;}
.fs0_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y8_c00047{bottom:3.120150px;}
.y7_c00047{bottom:34.744500px;}
.y1_c00047{bottom:54.000000px;}
.y6_c00047{bottom:986.085000px;}
.y5_c00047{bottom:1006.965000px;}
.y4_c00047{bottom:1027.845000px;}
.y3_c00047{bottom:1063.845000px;}
.y2_c00047{bottom:1085.085000px;}
.h4_c00047{height:19.255500px;}
.h5_c00047{height:46.320000px;}
.h3_c00047{height:65.232000px;}
.h2_c00047{height:1201.365000px;}
.h0_c00047{height:1262.835000px;}
.h1_c00047{height:1263.000000px;}
.w3_c00047{width:16.680000px;}
.w2_c00047{width:863.955000px;}
.w0_c00047{width:892.935000px;}
.w1_c00047{width:893.250000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:14.490000px;}
.x2_c00047{left:115.740300px;}
.x3_c00047{left:768.255000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls1_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:7.175573pt;}
.ws0_c00047{word-spacing:0.000000pt;}
._2_c00047{width:1.920000pt;}
._1_c00047{width:6.976000pt;}
._0_c00047{width:20.736000pt;}
.fs1_c00047{font-size:49.920000pt;}
.fs2_c00047{font-size:53.333333pt;}
.fs0_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y8_c00047{bottom:2.773467pt;}
.y7_c00047{bottom:30.884000pt;}
.y1_c00047{bottom:48.000000pt;}
.y6_c00047{bottom:876.520000pt;}
.y5_c00047{bottom:895.080000pt;}
.y4_c00047{bottom:913.640000pt;}
.y3_c00047{bottom:945.640000pt;}
.y2_c00047{bottom:964.520000pt;}
.h4_c00047{height:17.116000pt;}
.h5_c00047{height:41.173333pt;}
.h3_c00047{height:57.984000pt;}
.h2_c00047{height:1067.880000pt;}
.h0_c00047{height:1122.520000pt;}
.h1_c00047{height:1122.666667pt;}
.w3_c00047{width:14.826667pt;}
.w2_c00047{width:767.960000pt;}
.w0_c00047{width:793.720000pt;}
.w1_c00047{width:794.000000pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:12.880000pt;}
.x2_c00047{left:102.880267pt;}
.x3_c00047{left:682.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_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_dbe68d4bf60569cf7da5a02f.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:0.000000px;}
.fc0_c00048{color:rgb(0,0,0);}
.fs0_c00048{font-size:60.000000px;}
.y0_c00048{bottom:0.000000px;}
.y2_c00048{bottom:3.120150px;}
.y1_c00048{bottom:34.744500px;}
.h2_c00048{height:19.255500px;}
.h3_c00048{height:46.320000px;}
.h0_c00048{height:1262.835000px;}
.h1_c00048{height:1263.000000px;}
.w2_c00048{width:16.680000px;}
.w0_c00048{width:892.935000px;}
.w1_c00048{width:893.250000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:768.255000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:0.000000pt;}
.fs0_c00048{font-size:53.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y2_c00048{bottom:2.773467pt;}
.y1_c00048{bottom:30.884000pt;}
.h2_c00048{height:17.116000pt;}
.h3_c00048{height:41.173333pt;}
.h0_c00048{height:1122.520000pt;}
.h1_c00048{height:1122.666667pt;}
.w2_c00048{width:14.826667pt;}
.w0_c00048{width:793.720000pt;}
.w1_c00048{width:794.000000pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:682.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_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_d632e6384db15e8be9dadd89.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:0.000000px;}
.fc1_c00049{color:transparent;}
.fc0_c00049{color:rgb(0,0,0);}
.fs0_c00049{font-size:60.000000px;}
.y0_c00049{bottom:0.000000px;}
.y2_c00049{bottom:3.120150px;}
.y1_c00049{bottom:34.744500px;}
.h2_c00049{height:19.255500px;}
.h3_c00049{height:46.320000px;}
.h0_c00049{height:1262.835000px;}
.h1_c00049{height:1263.000000px;}
.w2_c00049{width:16.680000px;}
.w0_c00049{width:892.920000px;}
.w1_c00049{width:893.250000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:768.240000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:0.000000pt;}
.fs0_c00049{font-size:53.333333pt;}
.y0_c00049{bottom:0.000000pt;}
.y2_c00049{bottom:2.773467pt;}
.y1_c00049{bottom:30.884000pt;}
.h2_c00049{height:17.116000pt;}
.h3_c00049{height:41.173333pt;}
.h0_c00049{height:1122.520000pt;}
.h1_c00049{height:1122.666667pt;}
.w2_c00049{width:14.826667pt;}
.w0_c00049{width:793.706667pt;}
.w1_c00049{width:794.000000pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:682.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_732b9224925b702b0ed40cb5.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:0.000000px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs1_c00050{font-size:60.000000px;}
.fs0_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y4_c00050{bottom:3.120150px;}
.y3_c00050{bottom:34.744500px;}
.y1_c00050{bottom:54.000000px;}
.y2_c00050{bottom:1085.085000px;}
.h4_c00050{height:19.255500px;}
.h5_c00050{height:46.320000px;}
.h3_c00050{height:55.584000px;}
.h2_c00050{height:1201.365000px;}
.h0_c00050{height:1262.835000px;}
.h1_c00050{height:1263.000000px;}
.w3_c00050{width:16.680000px;}
.w2_c00050{width:863.955000px;}
.w0_c00050{width:892.935000px;}
.w1_c00050{width:893.250000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:14.490000px;}
.x2_c00050{left:113.040150px;}
.x3_c00050{left:768.255000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
.fs1_c00050{font-size:53.333333pt;}
.fs0_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y4_c00050{bottom:2.773467pt;}
.y3_c00050{bottom:30.884000pt;}
.y1_c00050{bottom:48.000000pt;}
.y2_c00050{bottom:964.520000pt;}
.h4_c00050{height:17.116000pt;}
.h5_c00050{height:41.173333pt;}
.h3_c00050{height:49.408000pt;}
.h2_c00050{height:1067.880000pt;}
.h0_c00050{height:1122.520000pt;}
.h1_c00050{height:1122.666667pt;}
.w3_c00050{width:14.826667pt;}
.w2_c00050{width:767.960000pt;}
.w0_c00050{width:793.720000pt;}
.w1_c00050{width:794.000000pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:12.880000pt;}
.x2_c00050{left:100.480133pt;}
.x3_c00050{left:682.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_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_3ca45df33b59a32f1ef84bbb.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.134000;font-style:normal;font-weight:normal;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_e77b1c808499f8da25d2bfd6.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;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:ff3_c00051;src:url('chunks/assets/font_d7791b1b457995fc1137fb7c.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:0.787000;font-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_c00051{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00051{vertical-align:-24.480000px;}
.v0_c00051{vertical-align:0.000000px;}
.v1_c00051{vertical-align:30.240000px;}
.ls9_c00051{letter-spacing:0.000000px;}
.ls4_c00051{letter-spacing:0.020640px;}
.lsd_c00051{letter-spacing:0.265680px;}
.ls13_c00051{letter-spacing:0.273857px;}
.ls6_c00051{letter-spacing:0.295200px;}
.ls11_c00051{letter-spacing:0.377856px;}
.ls5_c00051{letter-spacing:0.421440px;}
.ls7_c00051{letter-spacing:0.531360px;}
.lsf_c00051{letter-spacing:0.547713px;}
.ls12_c00051{letter-spacing:0.712027px;}
.ls14_c00051{letter-spacing:2.426544px;}
.ls10_c00051{letter-spacing:3.282624px;}
.lsc_c00051{letter-spacing:5.290272px;}
.lsb_c00051{letter-spacing:5.430672px;}
.lsa_c00051{letter-spacing:5.597809px;}
.ls2_c00051{letter-spacing:5.973000px;}
.ls0_c00051{letter-spacing:5.976000px;}
.ls3_c00051{letter-spacing:5.990400px;}
.ls1_c00051{letter-spacing:6.159301px;}
.ls8_c00051{letter-spacing:6.159920px;}
.lse_c00051{letter-spacing:11.235312px;}
.sc__c00051{text-shadow:none;}
.sc1_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00051{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc1_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00051{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00051{word-spacing:-25.992000px;}
.ws0_c00051{word-spacing:-21.690785px;}
.ws1_c00051{word-spacing:-21.043152px;}
.ws3_c00051{word-spacing:-20.902752px;}
.ws6_c00051{word-spacing:-16.944480px;}
.ws4_c00051{word-spacing:-11.609280px;}
.ws5_c00051{word-spacing:-10.008000px;}
.ws7_c00051{word-spacing:0.000000px;}
._d_c00051{margin-left:-11.748960px;}
._c_c00051{margin-left:-10.745280px;}
._e_c00051{margin-left:-9.741600px;}
._1_c00051{margin-left:-6.105606px;}
._10_c00051{margin-left:-3.896640px;}
._f_c00051{margin-left:-2.833920px;}
._0_c00051{margin-left:-1.273545px;}
._2_c00051{width:1.872000px;}
._3_c00051{width:3.168000px;}
._8_c00051{width:4.392000px;}
._6_c00051{width:5.688000px;}
._b_c00051{width:6.912000px;}
._4_c00051{width:10.656000px;}
._7_c00051{width:15.408000px;}
._9_c00051{width:18.216000px;}
._a_c00051{width:22.104000px;}
._5_c00051{width:24.120000px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs5_c00051{font-size:36.000000px;}
.fs4_c00051{font-size:41.760000px;}
.fs3_c00051{font-size:56.160000px;}
.fs2_c00051{font-size:57.888403px;}
.fs6_c00051{font-size:59.040000px;}
.fs8_c00051{font-size:60.000000px;}
.fs7_c00051{font-size:60.857039px;}
.fs0_c00051{font-size:72.000000px;}
.fs1_c00051{font-size:74.215901px;}
.y0_c00051{bottom:0.000000px;}
.y3_c00051{bottom:2.565000px;}
.y30_c00051{bottom:3.120150px;}
.y2f_c00051{bottom:34.744500px;}
.y1_c00051{bottom:54.000000px;}
.y2e_c00051{bottom:55.481040px;}
.y2d_c00051{bottom:78.885000px;}
.y2c_c00051{bottom:90.401040px;}
.y2b_c00051{bottom:107.685000px;}
.y2a_c00051{bottom:113.805000px;}
.y29_c00051{bottom:125.326800px;}
.y27_c00051{bottom:142.961040px;}
.y28_c00051{bottom:142.965000px;}
.y26_c00051{bottom:166.365000px;}
.y25_c00051{bottom:184.005000px;}
.y24_c00051{bottom:210.645000px;}
.y23_c00051{bottom:249.165000px;}
.y22_c00051{bottom:270.405000px;}
.y21_c00051{bottom:291.285000px;}
.y20_c00051{bottom:312.165000px;}
.y1f_c00051{bottom:348.165000px;}
.y1e_c00051{bottom:384.525000px;}
.y1d_c00051{bottom:420.525000px;}
.y1c_c00051{bottom:456.525000px;}
.y1b_c00051{bottom:492.525000px;}
.y1a_c00051{bottom:528.525000px;}
.y19_c00051{bottom:566.685000px;}
.y18_c00051{bottom:604.845000px;}
.y17_c00051{bottom:640.845000px;}
.y16_c00051{bottom:661.725000px;}
.y15_c00051{bottom:682.965000px;}
.y14_c00051{bottom:703.845000px;}
.y13_c00051{bottom:725.085000px;}
.y12_c00051{bottom:745.965000px;}
.y11_c00051{bottom:766.845000px;}
.y10_c00051{bottom:788.085000px;}
.yf_c00051{bottom:808.965000px;}
.ye_c00051{bottom:829.845000px;}
.yd_c00051{bottom:851.085000px;}
.yc_c00051{bottom:871.965000px;}
.yb_c00051{bottom:907.965000px;}
.ya_c00051{bottom:928.845000px;}
.y9_c00051{bottom:950.085000px;}
.y8_c00051{bottom:970.965000px;}
.y7_c00051{bottom:991.845000px;}
.y6_c00051{bottom:1013.085000px;}
.y5_c00051{bottom:1049.085000px;}
.y4_c00051{bottom:1085.085000px;}
.y2_c00051{bottom:1138.365000px;}
.h9_c00051{height:19.255500px;}
.h6_c00051{height:32.616000px;}
.ha_c00051{height:46.320000px;}
.h8_c00051{height:46.981634px;}
.h7_c00051{height:53.490240px;}
.h4_c00051{height:57.294676px;}
.h3_c00051{height:65.232000px;}
.h5_c00051{height:68.074560px;}
.h2_c00051{height:1201.365000px;}
.h0_c00051{height:1262.835000px;}
.h1_c00051{height:1263.000000px;}
.w3_c00051{width:16.680000px;}
.w2_c00051{width:863.955000px;}
.w0_c00051{width:892.935000px;}
.w1_c00051{width:893.250000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:14.490000px;}
.x2_c00051{left:113.040150px;}
.x3_c00051{left:159.029700px;}
.x14_c00051{left:172.024950px;}
.x10_c00051{left:194.038650px;}
.x17_c00051{left:196.306650px;}
.x11_c00051{left:203.675850px;}
.x5_c00051{left:212.971800px;}
.x12_c00051{left:230.269050px;}
.xc_c00051{left:252.165150px;}
.x18_c00051{left:262.082850px;}
.x4_c00051{left:266.469750px;}
.x15_c00051{left:319.047000px;}
.xd_c00051{left:333.163650px;}
.x16_c00051{left:343.040400px;}
.x19_c00051{left:362.474100px;}
.xe_c00051{left:366.417150px;}
.x13_c00051{left:411.969000px;}
.x8_c00051{left:425.137200px;}
.xf_c00051{left:432.305400px;}
.x1a_c00051{left:473.417400px;}
.x9_c00051{left:518.123700px;}
.xa_c00051{left:546.131100px;}
.x6_c00051{left:567.711600px;}
.x1b_c00051{left:574.425300px;}
.x7_c00051{left:602.721000px;}
.x1c_c00051{left:606.915150px;}
.xb_c00051{left:641.169450px;}
.x1d_c00051{left:768.255000px;}
@media print{
.v2_c00051{vertical-align:-21.760000pt;}
.v0_c00051{vertical-align:0.000000pt;}
.v1_c00051{vertical-align:26.880000pt;}
.ls9_c00051{letter-spacing:0.000000pt;}
.ls4_c00051{letter-spacing:0.018347pt;}
.lsd_c00051{letter-spacing:0.236160pt;}
.ls13_c00051{letter-spacing:0.243428pt;}
.ls6_c00051{letter-spacing:0.262400pt;}
.ls11_c00051{letter-spacing:0.335872pt;}
.ls5_c00051{letter-spacing:0.374613pt;}
.ls7_c00051{letter-spacing:0.472320pt;}
.lsf_c00051{letter-spacing:0.486856pt;}
.ls12_c00051{letter-spacing:0.632913pt;}
.ls14_c00051{letter-spacing:2.156928pt;}
.ls10_c00051{letter-spacing:2.917888pt;}
.lsc_c00051{letter-spacing:4.702464pt;}
.lsb_c00051{letter-spacing:4.827264pt;}
.lsa_c00051{letter-spacing:4.975830pt;}
.ls2_c00051{letter-spacing:5.309333pt;}
.ls0_c00051{letter-spacing:5.312000pt;}
.ls3_c00051{letter-spacing:5.324800pt;}
.ls1_c00051{letter-spacing:5.474935pt;}
.ls8_c00051{letter-spacing:5.475484pt;}
.lse_c00051{letter-spacing:9.986944pt;}
.ws2_c00051{word-spacing:-23.104000pt;}
.ws0_c00051{word-spacing:-19.280697pt;}
.ws1_c00051{word-spacing:-18.705024pt;}
.ws3_c00051{word-spacing:-18.580224pt;}
.ws6_c00051{word-spacing:-15.061760pt;}
.ws4_c00051{word-spacing:-10.319360pt;}
.ws5_c00051{word-spacing:-8.896000pt;}
.ws7_c00051{word-spacing:0.000000pt;}
._d_c00051{margin-left:-10.443520pt;}
._c_c00051{margin-left:-9.551360pt;}
._e_c00051{margin-left:-8.659200pt;}
._1_c00051{margin-left:-5.427206pt;}
._10_c00051{margin-left:-3.463680pt;}
._f_c00051{margin-left:-2.519040pt;}
._0_c00051{margin-left:-1.132040pt;}
._2_c00051{width:1.664000pt;}
._3_c00051{width:2.816000pt;}
._8_c00051{width:3.904000pt;}
._6_c00051{width:5.056000pt;}
._b_c00051{width:6.144000pt;}
._4_c00051{width:9.472000pt;}
._7_c00051{width:13.696000pt;}
._9_c00051{width:16.192000pt;}
._a_c00051{width:19.648000pt;}
._5_c00051{width:21.440000pt;}
.fs5_c00051{font-size:32.000000pt;}
.fs4_c00051{font-size:37.120000pt;}
.fs3_c00051{font-size:49.920000pt;}
.fs2_c00051{font-size:51.456358pt;}
.fs6_c00051{font-size:52.480000pt;}
.fs8_c00051{font-size:53.333333pt;}
.fs7_c00051{font-size:54.095146pt;}
.fs0_c00051{font-size:64.000000pt;}
.fs1_c00051{font-size:65.969690pt;}
.y0_c00051{bottom:0.000000pt;}
.y3_c00051{bottom:2.280000pt;}
.y30_c00051{bottom:2.773467pt;}
.y2f_c00051{bottom:30.884000pt;}
.y1_c00051{bottom:48.000000pt;}
.y2e_c00051{bottom:49.316480pt;}
.y2d_c00051{bottom:70.120000pt;}
.y2c_c00051{bottom:80.356480pt;}
.y2b_c00051{bottom:95.720000pt;}
.y2a_c00051{bottom:101.160000pt;}
.y29_c00051{bottom:111.401600pt;}
.y27_c00051{bottom:127.076480pt;}
.y28_c00051{bottom:127.080000pt;}
.y26_c00051{bottom:147.880000pt;}
.y25_c00051{bottom:163.560000pt;}
.y24_c00051{bottom:187.240000pt;}
.y23_c00051{bottom:221.480000pt;}
.y22_c00051{bottom:240.360000pt;}
.y21_c00051{bottom:258.920000pt;}
.y20_c00051{bottom:277.480000pt;}
.y1f_c00051{bottom:309.480000pt;}
.y1e_c00051{bottom:341.800000pt;}
.y1d_c00051{bottom:373.800000pt;}
.y1c_c00051{bottom:405.800000pt;}
.y1b_c00051{bottom:437.800000pt;}
.y1a_c00051{bottom:469.800000pt;}
.y19_c00051{bottom:503.720000pt;}
.y18_c00051{bottom:537.640000pt;}
.y17_c00051{bottom:569.640000pt;}
.y16_c00051{bottom:588.200000pt;}
.y15_c00051{bottom:607.080000pt;}
.y14_c00051{bottom:625.640000pt;}
.y13_c00051{bottom:644.520000pt;}
.y12_c00051{bottom:663.080000pt;}
.y11_c00051{bottom:681.640000pt;}
.y10_c00051{bottom:700.520000pt;}
.yf_c00051{bottom:719.080000pt;}
.ye_c00051{bottom:737.640000pt;}
.yd_c00051{bottom:756.520000pt;}
.yc_c00051{bottom:775.080000pt;}
.yb_c00051{bottom:807.080000pt;}
.ya_c00051{bottom:825.640000pt;}
.y9_c00051{bottom:844.520000pt;}
.y8_c00051{bottom:863.080000pt;}
.y7_c00051{bottom:881.640000pt;}
.y6_c00051{bottom:900.520000pt;}
.y5_c00051{bottom:932.520000pt;}
.y4_c00051{bottom:964.520000pt;}
.y2_c00051{bottom:1011.880000pt;}
.h9_c00051{height:17.116000pt;}
.h6_c00051{height:28.992000pt;}
.ha_c00051{height:41.173333pt;}
.h8_c00051{height:41.761453pt;}
.h7_c00051{height:47.546880pt;}
.h4_c00051{height:50.928601pt;}
.h3_c00051{height:57.984000pt;}
.h5_c00051{height:60.510720pt;}
.h2_c00051{height:1067.880000pt;}
.h0_c00051{height:1122.520000pt;}
.h1_c00051{height:1122.666667pt;}
.w3_c00051{width:14.826667pt;}
.w2_c00051{width:767.960000pt;}
.w0_c00051{width:793.720000pt;}
.w1_c00051{width:794.000000pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:12.880000pt;}
.x2_c00051{left:100.480133pt;}
.x3_c00051{left:141.359733pt;}
.x14_c00051{left:152.911067pt;}
.x10_c00051{left:172.478800pt;}
.x17_c00051{left:174.494800pt;}
.x11_c00051{left:181.045200pt;}
.x5_c00051{left:189.308267pt;}
.x12_c00051{left:204.683600pt;}
.xc_c00051{left:224.146800pt;}
.x18_c00051{left:232.962533pt;}
.x4_c00051{left:236.862000pt;}
.x15_c00051{left:283.597333pt;}
.xd_c00051{left:296.145467pt;}
.x16_c00051{left:304.924800pt;}
.x19_c00051{left:322.199200pt;}
.xe_c00051{left:325.704133pt;}
.x13_c00051{left:366.194667pt;}
.x8_c00051{left:377.899733pt;}
.xf_c00051{left:384.271467pt;}
.x1a_c00051{left:420.815467pt;}
.x9_c00051{left:460.554400pt;}
.xa_c00051{left:485.449867pt;}
.x6_c00051{left:504.632533pt;}
.x1b_c00051{left:510.600267pt;}
.x7_c00051{left:535.752000pt;}
.x1c_c00051{left:539.480133pt;}
.xb_c00051{left:569.928400pt;}
.x1d_c00051{left:682.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_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_1a97e7181ccedb14d24c7686.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_8d12fab8eda108b2929aa60a.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;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:ff3_c00052;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00052;src:url('chunks/assets/font_14fe9deff3990bae9f4fd2ef.woff2')format("woff");}.ff5_c00052{font-family:ff5_c00052;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00052;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff6_c00052{font-family:ff6_c00052;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00052;src:url('chunks/assets/font_4e63902b1e635482d416dc40.woff2')format("woff");}.ff7_c00052{font-family:ff7_c00052;line-height:0.787000;font-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_c00052{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00052{vertical-align:-24.480000px;}
.v0_c00052{vertical-align:0.000000px;}
.v1_c00052{vertical-align:30.240000px;}
.ls15_c00052{letter-spacing:0.000000px;}
.ls4_c00052{letter-spacing:0.035400px;}
.ls5_c00052{letter-spacing:0.036000px;}
.lsd_c00052{letter-spacing:0.132240px;}
.lsf_c00052{letter-spacing:0.132840px;}
.ls1b_c00052{letter-spacing:0.265680px;}
.lse_c00052{letter-spacing:0.295200px;}
.ls7_c00052{letter-spacing:0.318480px;}
.ls19_c00052{letter-spacing:0.318816px;}
.lsc_c00052{letter-spacing:0.326674px;}
.lsa_c00052{letter-spacing:0.327911px;}
.ls1c_c00052{letter-spacing:0.371952px;}
.ls13_c00052{letter-spacing:0.392040px;}
.ls8_c00052{letter-spacing:0.492942px;}
.ls1e_c00052{letter-spacing:0.494723px;}
.lsb_c00052{letter-spacing:0.494773px;}
.ls9_c00052{letter-spacing:0.531360px;}
.ls3_c00052{letter-spacing:0.531840px;}
.ls11_c00052{letter-spacing:0.554976px;}
.ls1f_c00052{letter-spacing:0.584496px;}
.ls1d_c00052{letter-spacing:0.637632px;}
.ls1a_c00052{letter-spacing:0.690768px;}
.ls18_c00052{letter-spacing:0.696672px;}
.ls10_c00052{letter-spacing:0.712027px;}
.ls17_c00052{letter-spacing:0.743904px;}
.ls20_c00052{letter-spacing:1.222128px;}
.ls16_c00052{letter-spacing:5.430672px;}
.ls6_c00052{letter-spacing:5.974200px;}
.ls12_c00052{letter-spacing:5.975400px;}
.ls0_c00052{letter-spacing:5.976000px;}
.ls1_c00052{letter-spacing:5.985600px;}
.ls14_c00052{letter-spacing:6.159920px;}
.ls2_c00052{letter-spacing:54.864000px;}
.sc__c00052{text-shadow:none;}
.sc1_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00052{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc1_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00052{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00052{word-spacing:-21.043152px;}
.ws4_c00052{word-spacing:-17.630284px;}
.ws1_c00052{word-spacing:-17.157024px;}
.ws5_c00052{word-spacing:-17.103888px;}
.ws2_c00052{word-spacing:-16.944480px;}
.ws3_c00052{word-spacing:-14.111857px;}
.ws6_c00052{word-spacing:-10.008000px;}
.ws7_c00052{word-spacing:0.000000px;}
._0_c00052{margin-left:-1.179360px;}
._5_c00052{width:1.003680px;}
._4_c00052{width:2.304000px;}
._6_c00052{width:3.719520px;}
._8_c00052{width:6.408000px;}
._d_c00052{width:8.064000px;}
._2_c00052{width:12.096000px;}
._b_c00052{width:17.712000px;}
._7_c00052{width:18.864000px;}
._9_c00052{width:21.816000px;}
._3_c00052{width:23.688000px;}
._a_c00052{width:28.080000px;}
._1_c00052{width:29.304000px;}
._c_c00052{width:34.848000px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs8_c00052{font-size:36.000000px;}
.fs3_c00052{font-size:41.760000px;}
.fs7_c00052{font-size:47.520000px;}
.fs6_c00052{font-size:48.982495px;}
.fs2_c00052{font-size:56.160000px;}
.fs4_c00052{font-size:59.040000px;}
.fs9_c00052{font-size:60.000000px;}
.fs5_c00052{font-size:60.857039px;}
.fs0_c00052{font-size:72.000000px;}
.fs1_c00052{font-size:74.215901px;}
.y0_c00052{bottom:0.000000px;}
.y3_c00052{bottom:2.565000px;}
.y31_c00052{bottom:3.120150px;}
.y30_c00052{bottom:34.744500px;}
.y1_c00052{bottom:54.000000px;}
.y2f_c00052{bottom:61.605000px;}
.y2e_c00052{bottom:72.766800px;}
.y2d_c00052{bottom:90.405000px;}
.y2c_c00052{bottom:96.525000px;}
.y2b_c00052{bottom:123.165000px;}
.y2a_c00052{bottom:158.805000px;}
.y29_c00052{bottom:179.685000px;}
.y28_c00052{bottom:215.685000px;}
.y27_c00052{bottom:236.925000px;}
.y26_c00052{bottom:257.805000px;}
.y25_c00052{bottom:278.685000px;}
.y24_c00052{bottom:299.925000px;}
.y23_c00052{bottom:320.805000px;}
.y22_c00052{bottom:341.685000px;}
.y21_c00052{bottom:362.925000px;}
.y20_c00052{bottom:383.805000px;}
.y1f_c00052{bottom:419.805000px;}
.y1e_c00052{bottom:455.805000px;}
.y1d_c00052{bottom:484.241040px;}
.y1c_c00052{bottom:501.525000px;}
.y1a_c00052{bottom:526.721040px;}
.y1b_c00052{bottom:526.725000px;}
.y19_c00052{bottom:544.005000px;}
.y18_c00052{bottom:576.765000px;}
.y17_c00052{bottom:605.925000px;}
.y16_c00052{bottom:623.565000px;}
.y15_c00052{bottom:640.845000px;}
.y12_c00052{bottom:655.245000px;}
.y13_c00052{bottom:655.605000px;}
.y14_c00052{bottom:658.485000px;}
.y11_c00052{bottom:691.965000px;}
.y10_c00052{bottom:727.965000px;}
.yf_c00052{bottom:748.845000px;}
.ye_c00052{bottom:784.845000px;}
.yd_c00052{bottom:820.845000px;}
.yc_c00052{bottom:856.845000px;}
.yb_c00052{bottom:878.085000px;}
.ya_c00052{bottom:914.085000px;}
.y9_c00052{bottom:950.085000px;}
.y8_c00052{bottom:970.965000px;}
.y7_c00052{bottom:991.845000px;}
.y6_c00052{bottom:1013.085000px;}
.y5_c00052{bottom:1049.085000px;}
.y4_c00052{bottom:1085.085000px;}
.y2_c00052{bottom:1138.365000px;}
.h9_c00052{height:19.255500px;}
.h8_c00052{height:32.616000px;}
.ha_c00052{height:46.320000px;}
.h7_c00052{height:46.981634px;}
.h6_c00052{height:53.490240px;}
.h4_c00052{height:57.294676px;}
.h3_c00052{height:65.232000px;}
.h5_c00052{height:68.074560px;}
.h2_c00052{height:1201.365000px;}
.h0_c00052{height:1262.835000px;}
.h1_c00052{height:1263.000000px;}
.w7_c00052{width:16.680000px;}
.w3_c00052{width:39.600000px;}
.w4_c00052{width:137.520000px;}
.w5_c00052{width:180.000000px;}
.w6_c00052{width:288.000000px;}
.w2_c00052{width:863.955000px;}
.w0_c00052{width:892.935000px;}
.w1_c00052{width:893.250000px;}
.x0_c00052{left:0.000000px;}
.xb_c00052{left:7.920150px;}
.x1_c00052{left:14.490000px;}
.xc_c00052{left:47.537400px;}
.x2_c00052{left:113.040150px;}
.xa_c00052{left:119.610000px;}
.x11_c00052{left:132.595200px;}
.x7_c00052{left:140.037600px;}
.x18_c00052{left:143.526450px;}
.x15_c00052{left:154.738350px;}
.x3_c00052{left:159.029700px;}
.x12_c00052{left:162.546600px;}
.x16_c00052{left:217.017000px;}
.x8_c00052{left:222.196950px;}
.xf_c00052{left:234.223200px;}
.x9_c00052{left:240.748950px;}
.x10_c00052{left:256.080450px;}
.x4_c00052{left:266.469750px;}
.xd_c00052{left:298.170000px;}
.x5_c00052{left:334.753050px;}
.x6_c00052{left:412.707600px;}
.xe_c00052{left:478.890000px;}
.x17_c00052{left:613.906500px;}
.x13_c00052{left:619.740600px;}
.x14_c00052{left:641.891250px;}
.x19_c00052{left:768.255000px;}
@media print{
.v2_c00052{vertical-align:-21.760000pt;}
.v0_c00052{vertical-align:0.000000pt;}
.v1_c00052{vertical-align:26.880000pt;}
.ls15_c00052{letter-spacing:0.000000pt;}
.ls4_c00052{letter-spacing:0.031467pt;}
.ls5_c00052{letter-spacing:0.032000pt;}
.lsd_c00052{letter-spacing:0.117547pt;}
.lsf_c00052{letter-spacing:0.118080pt;}
.ls1b_c00052{letter-spacing:0.236160pt;}
.lse_c00052{letter-spacing:0.262400pt;}
.ls7_c00052{letter-spacing:0.283093pt;}
.ls19_c00052{letter-spacing:0.283392pt;}
.lsc_c00052{letter-spacing:0.290377pt;}
.lsa_c00052{letter-spacing:0.291476pt;}
.ls1c_c00052{letter-spacing:0.330624pt;}
.ls13_c00052{letter-spacing:0.348480pt;}
.ls8_c00052{letter-spacing:0.438171pt;}
.ls1e_c00052{letter-spacing:0.439754pt;}
.lsb_c00052{letter-spacing:0.439798pt;}
.ls9_c00052{letter-spacing:0.472320pt;}
.ls3_c00052{letter-spacing:0.472747pt;}
.ls11_c00052{letter-spacing:0.493312pt;}
.ls1f_c00052{letter-spacing:0.519552pt;}
.ls1d_c00052{letter-spacing:0.566784pt;}
.ls1a_c00052{letter-spacing:0.614016pt;}
.ls18_c00052{letter-spacing:0.619264pt;}
.ls10_c00052{letter-spacing:0.632913pt;}
.ls17_c00052{letter-spacing:0.661248pt;}
.ls20_c00052{letter-spacing:1.086336pt;}
.ls16_c00052{letter-spacing:4.827264pt;}
.ls6_c00052{letter-spacing:5.310400pt;}
.ls12_c00052{letter-spacing:5.311467pt;}
.ls0_c00052{letter-spacing:5.312000pt;}
.ls1_c00052{letter-spacing:5.320533pt;}
.ls14_c00052{letter-spacing:5.475484pt;}
.ls2_c00052{letter-spacing:48.768000pt;}
.ws0_c00052{word-spacing:-18.705024pt;}
.ws4_c00052{word-spacing:-15.671364pt;}
.ws1_c00052{word-spacing:-15.250688pt;}
.ws5_c00052{word-spacing:-15.203456pt;}
.ws2_c00052{word-spacing:-15.061760pt;}
.ws3_c00052{word-spacing:-12.543873pt;}
.ws6_c00052{word-spacing:-8.896000pt;}
.ws7_c00052{word-spacing:0.000000pt;}
._0_c00052{margin-left:-1.048320pt;}
._5_c00052{width:0.892160pt;}
._4_c00052{width:2.048000pt;}
._6_c00052{width:3.306240pt;}
._8_c00052{width:5.696000pt;}
._d_c00052{width:7.168000pt;}
._2_c00052{width:10.752000pt;}
._b_c00052{width:15.744000pt;}
._7_c00052{width:16.768000pt;}
._9_c00052{width:19.392000pt;}
._3_c00052{width:21.056000pt;}
._a_c00052{width:24.960000pt;}
._1_c00052{width:26.048000pt;}
._c_c00052{width:30.976000pt;}
.fs8_c00052{font-size:32.000000pt;}
.fs3_c00052{font-size:37.120000pt;}
.fs7_c00052{font-size:42.240000pt;}
.fs6_c00052{font-size:43.539995pt;}
.fs2_c00052{font-size:49.920000pt;}
.fs4_c00052{font-size:52.480000pt;}
.fs9_c00052{font-size:53.333333pt;}
.fs5_c00052{font-size:54.095146pt;}
.fs0_c00052{font-size:64.000000pt;}
.fs1_c00052{font-size:65.969690pt;}
.y0_c00052{bottom:0.000000pt;}
.y3_c00052{bottom:2.280000pt;}
.y31_c00052{bottom:2.773467pt;}
.y30_c00052{bottom:30.884000pt;}
.y1_c00052{bottom:48.000000pt;}
.y2f_c00052{bottom:54.760000pt;}
.y2e_c00052{bottom:64.681600pt;}
.y2d_c00052{bottom:80.360000pt;}
.y2c_c00052{bottom:85.800000pt;}
.y2b_c00052{bottom:109.480000pt;}
.y2a_c00052{bottom:141.160000pt;}
.y29_c00052{bottom:159.720000pt;}
.y28_c00052{bottom:191.720000pt;}
.y27_c00052{bottom:210.600000pt;}
.y26_c00052{bottom:229.160000pt;}
.y25_c00052{bottom:247.720000pt;}
.y24_c00052{bottom:266.600000pt;}
.y23_c00052{bottom:285.160000pt;}
.y22_c00052{bottom:303.720000pt;}
.y21_c00052{bottom:322.600000pt;}
.y20_c00052{bottom:341.160000pt;}
.y1f_c00052{bottom:373.160000pt;}
.y1e_c00052{bottom:405.160000pt;}
.y1d_c00052{bottom:430.436480pt;}
.y1c_c00052{bottom:445.800000pt;}
.y1a_c00052{bottom:468.196480pt;}
.y1b_c00052{bottom:468.200000pt;}
.y19_c00052{bottom:483.560000pt;}
.y18_c00052{bottom:512.680000pt;}
.y17_c00052{bottom:538.600000pt;}
.y16_c00052{bottom:554.280000pt;}
.y15_c00052{bottom:569.640000pt;}
.y12_c00052{bottom:582.440000pt;}
.y13_c00052{bottom:582.760000pt;}
.y14_c00052{bottom:585.320000pt;}
.y11_c00052{bottom:615.080000pt;}
.y10_c00052{bottom:647.080000pt;}
.yf_c00052{bottom:665.640000pt;}
.ye_c00052{bottom:697.640000pt;}
.yd_c00052{bottom:729.640000pt;}
.yc_c00052{bottom:761.640000pt;}
.yb_c00052{bottom:780.520000pt;}
.ya_c00052{bottom:812.520000pt;}
.y9_c00052{bottom:844.520000pt;}
.y8_c00052{bottom:863.080000pt;}
.y7_c00052{bottom:881.640000pt;}
.y6_c00052{bottom:900.520000pt;}
.y5_c00052{bottom:932.520000pt;}
.y4_c00052{bottom:964.520000pt;}
.y2_c00052{bottom:1011.880000pt;}
.h9_c00052{height:17.116000pt;}
.h8_c00052{height:28.992000pt;}
.ha_c00052{height:41.173333pt;}
.h7_c00052{height:41.761453pt;}
.h6_c00052{height:47.546880pt;}
.h4_c00052{height:50.928601pt;}
.h3_c00052{height:57.984000pt;}
.h5_c00052{height:60.510720pt;}
.h2_c00052{height:1067.880000pt;}
.h0_c00052{height:1122.520000pt;}
.h1_c00052{height:1122.666667pt;}
.w7_c00052{width:14.826667pt;}
.w3_c00052{width:35.200000pt;}
.w4_c00052{width:122.240000pt;}
.w5_c00052{width:160.000000pt;}
.w6_c00052{width:256.000000pt;}
.w2_c00052{width:767.960000pt;}
.w0_c00052{width:793.720000pt;}
.w1_c00052{width:794.000000pt;}
.x0_c00052{left:0.000000pt;}
.xb_c00052{left:7.040133pt;}
.x1_c00052{left:12.880000pt;}
.xc_c00052{left:42.255467pt;}
.x2_c00052{left:100.480133pt;}
.xa_c00052{left:106.320000pt;}
.x11_c00052{left:117.862400pt;}
.x7_c00052{left:124.477867pt;}
.x18_c00052{left:127.579067pt;}
.x15_c00052{left:137.545200pt;}
.x3_c00052{left:141.359733pt;}
.x12_c00052{left:144.485867pt;}
.x16_c00052{left:192.904000pt;}
.x8_c00052{left:197.508400pt;}
.xf_c00052{left:208.198400pt;}
.x9_c00052{left:213.999067pt;}
.x10_c00052{left:227.627067pt;}
.x4_c00052{left:236.862000pt;}
.xd_c00052{left:265.040000pt;}
.x5_c00052{left:297.558267pt;}
.x6_c00052{left:366.851200pt;}
.xe_c00052{left:425.680000pt;}
.x17_c00052{left:545.694667pt;}
.x13_c00052{left:550.880533pt;}
.x14_c00052{left:570.570000pt;}
.x19_c00052{left:682.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_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_7e155eb7a094d35f3d4c2d72.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_2fd5f654997e00b19aad7ce1.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;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:ff3_c00053;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_18b943f5f66760fb5846460a.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:0.787000;font-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_c00053{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00053{vertical-align:-30.240000px;}
.v3_c00053{vertical-align:-24.480000px;}
.v0_c00053{vertical-align:0.000000px;}
.v1_c00053{vertical-align:30.240000px;}
.lsc_c00053{letter-spacing:-0.179568px;}
.lsb_c00053{letter-spacing:0.000000px;}
.ls15_c00053{letter-spacing:0.144000px;}
.ls1_c00053{letter-spacing:0.149040px;}
.ls3_c00053{letter-spacing:0.196800px;}
.lse_c00053{letter-spacing:0.265680px;}
.ls14_c00053{letter-spacing:0.318816px;}
.ls1d_c00053{letter-spacing:0.328628px;}
.ls2_c00053{letter-spacing:0.375240px;}
.ls13_c00053{letter-spacing:0.425088px;}
.lsf_c00053{letter-spacing:0.438171px;}
.ls17_c00053{letter-spacing:0.478224px;}
.ls1c_c00053{letter-spacing:0.531360px;}
.ls9_c00053{letter-spacing:0.547713px;}
.ls12_c00053{letter-spacing:0.572688px;}
.ls10_c00053{letter-spacing:0.637632px;}
.ls19_c00053{letter-spacing:0.690768px;}
.ls21_c00053{letter-spacing:0.821570px;}
.ls22_c00053{letter-spacing:0.991970px;}
.ls18_c00053{letter-spacing:1.375632px;}
.ls5_c00053{letter-spacing:2.088000px;}
.ls24_c00053{letter-spacing:2.591856px;}
.lsd_c00053{letter-spacing:4.142592px;}
.ls1f_c00053{letter-spacing:5.248656px;}
.ls1a_c00053{letter-spacing:5.402160px;}
.ls1e_c00053{letter-spacing:5.514336px;}
.ls0_c00053{letter-spacing:5.976000px;}
.ls6_c00053{letter-spacing:5.983200px;}
.ls8_c00053{letter-spacing:6.159600px;}
.lsa_c00053{letter-spacing:6.159920px;}
.ls11_c00053{letter-spacing:7.468560px;}
.ls4_c00053{letter-spacing:8.064000px;}
.ls23_c00053{letter-spacing:8.962272px;}
.ls20_c00053{letter-spacing:11.477376px;}
.ls7_c00053{letter-spacing:11.736000px;}
.ls1b_c00053{letter-spacing:28.534032px;}
.ls16_c00053{letter-spacing:34.922160px;}
.sc__c00053{text-shadow:none;}
.sc1_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00053{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc1_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00053{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8_c00053{word-spacing:-21.927456px;}
.ws6_c00053{word-spacing:-21.815280px;}
.ws9_c00053{word-spacing:-21.661776px;}
.ws7_c00053{word-spacing:-17.246885px;}
.wsa_c00053{word-spacing:-16.731936px;}
.ws4_c00053{word-spacing:-16.678800px;}
.ws2_c00053{word-spacing:-15.751872px;}
.ws0_c00053{word-spacing:-11.609280px;}
.ws1_c00053{word-spacing:-11.429712px;}
.ws5_c00053{word-spacing:-10.152000px;}
.ws3_c00053{word-spacing:-10.008000px;}
.wsb_c00053{word-spacing:0.000000px;}
._12_c00053{margin-left:-34.531200px;}
._13_c00053{margin-left:-33.217920px;}
._17_c00053{margin-left:-29.149248px;}
._16_c00053{margin-left:-27.930048px;}
._18_c00053{margin-left:-11.269440px;}
._19_c00053{margin-left:-10.228320px;}
._1a_c00053{margin-left:-9.203040px;}
._10_c00053{margin-left:-8.029440px;}
._f_c00053{margin-left:-6.966720px;}
._11_c00053{margin-left:-5.963040px;}
._1b_c00053{margin-left:-2.898456px;}
._a_c00053{margin-left:-1.463304px;}
._0_c00053{width:1.152000px;}
._8_c00053{width:2.736000px;}
._b_c00053{width:5.064216px;}
._4_c00053{width:6.120000px;}
._7_c00053{width:7.704000px;}
._14_c00053{width:8.886240px;}
._3_c00053{width:10.584000px;}
._d_c00053{width:11.736000px;}
._c_c00053{width:12.816000px;}
._1_c00053{width:14.616000px;}
._5_c00053{width:15.768000px;}
._e_c00053{width:17.856000px;}
._6_c00053{width:23.112000px;}
._9_c00053{width:24.984000px;}
._15_c00053{width:27.736104px;}
._2_c00053{width:30.960000px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs3_c00053{font-size:36.000000px;}
.fs2_c00053{font-size:41.760000px;}
.fs4_c00053{font-size:59.040000px;}
.fs6_c00053{font-size:60.000000px;}
.fs5_c00053{font-size:60.857039px;}
.fs0_c00053{font-size:72.000000px;}
.fs1_c00053{font-size:74.215901px;}
.y0_c00053{bottom:0.000000px;}
.y3_c00053{bottom:2.565000px;}
.y37_c00053{bottom:3.120150px;}
.y36_c00053{bottom:34.744500px;}
.y1_c00053{bottom:54.000000px;}
.y35_c00053{bottom:55.482840px;}
.y34_c00053{bottom:72.766800px;}
.y33_c00053{bottom:96.525000px;}
.y32_c00053{bottom:107.684640px;}
.y31_c00053{bottom:125.322840px;}
.y30_c00053{bottom:142.961040px;}
.y2f_c00053{bottom:166.365000px;}
.y2e_c00053{bottom:177.885000px;}
.y2d_c00053{bottom:177.886800px;}
.y2c_c00053{bottom:195.525000px;}
.y2b_c00053{bottom:201.645000px;}
.y2a_c00053{bottom:212.806800px;}
.y28_c00053{bottom:230.444640px;}
.y29_c00053{bottom:230.445000px;}
.y27_c00053{bottom:247.728600px;}
.y26_c00053{bottom:265.366800px;}
.y25_c00053{bottom:289.125000px;}
.y24_c00053{bottom:300.288600px;}
.y23_c00053{bottom:317.926800px;}
.y22_c00053{bottom:341.685000px;}
.y21_c00053{bottom:352.845000px;}
.y20_c00053{bottom:352.846800px;}
.y1f_c00053{bottom:376.605000px;}
.y1e_c00053{bottom:387.766800px;}
.y1d_c00053{bottom:411.525000px;}
.y1c_c00053{bottom:423.045000px;}
.y1b_c00053{bottom:429.165000px;}
.y1a_c00053{bottom:455.805000px;}
.y19_c00053{bottom:610.605000px;}
.y18_c00053{bottom:631.485000px;}
.y17_c00053{bottom:652.725000px;}
.y16_c00053{bottom:673.605000px;}
.y15_c00053{bottom:694.485000px;}
.y14_c00053{bottom:715.725000px;}
.y13_c00053{bottom:751.725000px;}
.y12_c00053{bottom:774.765000px;}
.y11_c00053{bottom:797.445000px;}
.y10_c00053{bottom:817.965000px;}
.yf_c00053{bottom:838.845000px;}
.ye_c00053{bottom:860.085000px;}
.yd_c00053{bottom:880.965000px;}
.yc_c00053{bottom:901.845000px;}
.yb_c00053{bottom:937.845000px;}
.ya_c00053{bottom:959.085000px;}
.y9_c00053{bottom:979.965000px;}
.y8_c00053{bottom:1000.845000px;}
.y7_c00053{bottom:1022.085000px;}
.y6_c00053{bottom:1042.965000px;}
.y5_c00053{bottom:1063.845000px;}
.y4_c00053{bottom:1085.085000px;}
.y2_c00053{bottom:1138.365000px;}
.h9_c00053{height:19.255500px;}
.h6_c00053{height:32.616000px;}
.ha_c00053{height:46.320000px;}
.h7_c00053{height:46.981634px;}
.h8_c00053{height:53.490240px;}
.h4_c00053{height:57.294676px;}
.h3_c00053{height:65.232000px;}
.h5_c00053{height:68.074560px;}
.h2_c00053{height:1201.365000px;}
.h0_c00053{height:1262.835000px;}
.h1_c00053{height:1263.000000px;}
.w3_c00053{width:16.680000px;}
.w2_c00053{width:863.955000px;}
.w0_c00053{width:892.935000px;}
.w1_c00053{width:893.250000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:14.490000px;}
.x2_c00053{left:113.040150px;}
.xd_c00053{left:121.379850px;}
.x3_c00053{left:159.029700px;}
.x12_c00053{left:173.038650px;}
.xe_c00053{left:186.343050px;}
.xb_c00053{left:227.200950px;}
.xc_c00053{left:256.389450px;}
.x4_c00053{left:266.469750px;}
.x9_c00053{left:354.736050px;}
.xa_c00053{left:374.730150px;}
.x5_c00053{left:578.525400px;}
.x7_c00053{left:593.265000px;}
.x6_c00053{left:618.502800px;}
.x11_c00053{left:636.756300px;}
.x8_c00053{left:653.302050px;}
.xf_c00053{left:658.749750px;}
.x10_c00053{left:679.147350px;}
.x13_c00053{left:768.255000px;}
@media print{
.v2_c00053{vertical-align:-26.880000pt;}
.v3_c00053{vertical-align:-21.760000pt;}
.v0_c00053{vertical-align:0.000000pt;}
.v1_c00053{vertical-align:26.880000pt;}
.lsc_c00053{letter-spacing:-0.159616pt;}
.lsb_c00053{letter-spacing:0.000000pt;}
.ls15_c00053{letter-spacing:0.128000pt;}
.ls1_c00053{letter-spacing:0.132480pt;}
.ls3_c00053{letter-spacing:0.174933pt;}
.lse_c00053{letter-spacing:0.236160pt;}
.ls14_c00053{letter-spacing:0.283392pt;}
.ls1d_c00053{letter-spacing:0.292114pt;}
.ls2_c00053{letter-spacing:0.333547pt;}
.ls13_c00053{letter-spacing:0.377856pt;}
.lsf_c00053{letter-spacing:0.389485pt;}
.ls17_c00053{letter-spacing:0.425088pt;}
.ls1c_c00053{letter-spacing:0.472320pt;}
.ls9_c00053{letter-spacing:0.486856pt;}
.ls12_c00053{letter-spacing:0.509056pt;}
.ls10_c00053{letter-spacing:0.566784pt;}
.ls19_c00053{letter-spacing:0.614016pt;}
.ls21_c00053{letter-spacing:0.730284pt;}
.ls22_c00053{letter-spacing:0.881751pt;}
.ls18_c00053{letter-spacing:1.222784pt;}
.ls5_c00053{letter-spacing:1.856000pt;}
.ls24_c00053{letter-spacing:2.303872pt;}
.lsd_c00053{letter-spacing:3.682304pt;}
.ls1f_c00053{letter-spacing:4.665472pt;}
.ls1a_c00053{letter-spacing:4.801920pt;}
.ls1e_c00053{letter-spacing:4.901632pt;}
.ls0_c00053{letter-spacing:5.312000pt;}
.ls6_c00053{letter-spacing:5.318400pt;}
.ls8_c00053{letter-spacing:5.475200pt;}
.lsa_c00053{letter-spacing:5.475484pt;}
.ls11_c00053{letter-spacing:6.638720pt;}
.ls4_c00053{letter-spacing:7.168000pt;}
.ls23_c00053{letter-spacing:7.966464pt;}
.ls20_c00053{letter-spacing:10.202112pt;}
.ls7_c00053{letter-spacing:10.432000pt;}
.ls1b_c00053{letter-spacing:25.363584pt;}
.ls16_c00053{letter-spacing:31.041920pt;}
.ws8_c00053{word-spacing:-19.491072pt;}
.ws6_c00053{word-spacing:-19.391360pt;}
.ws9_c00053{word-spacing:-19.254912pt;}
.ws7_c00053{word-spacing:-15.330564pt;}
.wsa_c00053{word-spacing:-14.872832pt;}
.ws4_c00053{word-spacing:-14.825600pt;}
.ws2_c00053{word-spacing:-14.001664pt;}
.ws0_c00053{word-spacing:-10.319360pt;}
.ws1_c00053{word-spacing:-10.159744pt;}
.ws5_c00053{word-spacing:-9.024000pt;}
.ws3_c00053{word-spacing:-8.896000pt;}
.wsb_c00053{word-spacing:0.000000pt;}
._12_c00053{margin-left:-30.694400pt;}
._13_c00053{margin-left:-29.527040pt;}
._17_c00053{margin-left:-25.910443pt;}
._16_c00053{margin-left:-24.826709pt;}
._18_c00053{margin-left:-10.017280pt;}
._19_c00053{margin-left:-9.091840pt;}
._1a_c00053{margin-left:-8.180480pt;}
._10_c00053{margin-left:-7.137280pt;}
._f_c00053{margin-left:-6.192640pt;}
._11_c00053{margin-left:-5.300480pt;}
._1b_c00053{margin-left:-2.576405pt;}
._a_c00053{margin-left:-1.300715pt;}
._0_c00053{width:1.024000pt;}
._8_c00053{width:2.432000pt;}
._b_c00053{width:4.501525pt;}
._4_c00053{width:5.440000pt;}
._7_c00053{width:6.848000pt;}
._14_c00053{width:7.898880pt;}
._3_c00053{width:9.408000pt;}
._d_c00053{width:10.432000pt;}
._c_c00053{width:11.392000pt;}
._1_c00053{width:12.992000pt;}
._5_c00053{width:14.016000pt;}
._e_c00053{width:15.872000pt;}
._6_c00053{width:20.544000pt;}
._9_c00053{width:22.208000pt;}
._15_c00053{width:24.654315pt;}
._2_c00053{width:27.520000pt;}
.fs3_c00053{font-size:32.000000pt;}
.fs2_c00053{font-size:37.120000pt;}
.fs4_c00053{font-size:52.480000pt;}
.fs6_c00053{font-size:53.333333pt;}
.fs5_c00053{font-size:54.095146pt;}
.fs0_c00053{font-size:64.000000pt;}
.fs1_c00053{font-size:65.969690pt;}
.y0_c00053{bottom:0.000000pt;}
.y3_c00053{bottom:2.280000pt;}
.y37_c00053{bottom:2.773467pt;}
.y36_c00053{bottom:30.884000pt;}
.y1_c00053{bottom:48.000000pt;}
.y35_c00053{bottom:49.318080pt;}
.y34_c00053{bottom:64.681600pt;}
.y33_c00053{bottom:85.800000pt;}
.y32_c00053{bottom:95.719680pt;}
.y31_c00053{bottom:111.398080pt;}
.y30_c00053{bottom:127.076480pt;}
.y2f_c00053{bottom:147.880000pt;}
.y2e_c00053{bottom:158.120000pt;}
.y2d_c00053{bottom:158.121600pt;}
.y2c_c00053{bottom:173.800000pt;}
.y2b_c00053{bottom:179.240000pt;}
.y2a_c00053{bottom:189.161600pt;}
.y28_c00053{bottom:204.839680pt;}
.y29_c00053{bottom:204.840000pt;}
.y27_c00053{bottom:220.203200pt;}
.y26_c00053{bottom:235.881600pt;}
.y25_c00053{bottom:257.000000pt;}
.y24_c00053{bottom:266.923200pt;}
.y23_c00053{bottom:282.601600pt;}
.y22_c00053{bottom:303.720000pt;}
.y21_c00053{bottom:313.640000pt;}
.y20_c00053{bottom:313.641600pt;}
.y1f_c00053{bottom:334.760000pt;}
.y1e_c00053{bottom:344.681600pt;}
.y1d_c00053{bottom:365.800000pt;}
.y1c_c00053{bottom:376.040000pt;}
.y1b_c00053{bottom:381.480000pt;}
.y1a_c00053{bottom:405.160000pt;}
.y19_c00053{bottom:542.760000pt;}
.y18_c00053{bottom:561.320000pt;}
.y17_c00053{bottom:580.200000pt;}
.y16_c00053{bottom:598.760000pt;}
.y15_c00053{bottom:617.320000pt;}
.y14_c00053{bottom:636.200000pt;}
.y13_c00053{bottom:668.200000pt;}
.y12_c00053{bottom:688.680000pt;}
.y11_c00053{bottom:708.840000pt;}
.y10_c00053{bottom:727.080000pt;}
.yf_c00053{bottom:745.640000pt;}
.ye_c00053{bottom:764.520000pt;}
.yd_c00053{bottom:783.080000pt;}
.yc_c00053{bottom:801.640000pt;}
.yb_c00053{bottom:833.640000pt;}
.ya_c00053{bottom:852.520000pt;}
.y9_c00053{bottom:871.080000pt;}
.y8_c00053{bottom:889.640000pt;}
.y7_c00053{bottom:908.520000pt;}
.y6_c00053{bottom:927.080000pt;}
.y5_c00053{bottom:945.640000pt;}
.y4_c00053{bottom:964.520000pt;}
.y2_c00053{bottom:1011.880000pt;}
.h9_c00053{height:17.116000pt;}
.h6_c00053{height:28.992000pt;}
.ha_c00053{height:41.173333pt;}
.h7_c00053{height:41.761453pt;}
.h8_c00053{height:47.546880pt;}
.h4_c00053{height:50.928601pt;}
.h3_c00053{height:57.984000pt;}
.h5_c00053{height:60.510720pt;}
.h2_c00053{height:1067.880000pt;}
.h0_c00053{height:1122.520000pt;}
.h1_c00053{height:1122.666667pt;}
.w3_c00053{width:14.826667pt;}
.w2_c00053{width:767.960000pt;}
.w0_c00053{width:793.720000pt;}
.w1_c00053{width:794.000000pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:12.880000pt;}
.x2_c00053{left:100.480133pt;}
.xd_c00053{left:107.893200pt;}
.x3_c00053{left:141.359733pt;}
.x12_c00053{left:153.812133pt;}
.xe_c00053{left:165.638267pt;}
.xb_c00053{left:201.956400pt;}
.xc_c00053{left:227.901733pt;}
.x4_c00053{left:236.862000pt;}
.x9_c00053{left:315.320933pt;}
.xa_c00053{left:333.093467pt;}
.x5_c00053{left:514.244800pt;}
.x7_c00053{left:527.346667pt;}
.x6_c00053{left:549.780267pt;}
.x11_c00053{left:566.005600pt;}
.x8_c00053{left:580.712933pt;}
.xf_c00053{left:585.555333pt;}
.x10_c00053{left:603.686533pt;}
.x13_c00053{left:682.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_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_fafa36fdce95f80efaf897bf.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.134000;font-style:normal;font-weight:normal;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_d374ae0dac307b6806e70ba1.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;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:ff3_c00054;src:url('chunks/assets/font_137ef2b59d9b2f24e3328865.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00054{vertical-align:-24.480000px;}
.v0_c00054{vertical-align:0.000000px;}
.v1_c00054{vertical-align:30.240000px;}
.ls6_c00054{letter-spacing:-0.179568px;}
.ls4_c00054{letter-spacing:0.000000px;}
.ls7_c00054{letter-spacing:0.144000px;}
.ls9_c00054{letter-spacing:0.273857px;}
.lsc_c00054{letter-spacing:0.318816px;}
.lsf_c00054{letter-spacing:0.399600px;}
.lsb_c00054{letter-spacing:0.531360px;}
.ls2_c00054{letter-spacing:0.547713px;}
.lse_c00054{letter-spacing:0.690768px;}
.lsd_c00054{letter-spacing:0.712027px;}
.ls5_c00054{letter-spacing:5.335200px;}
.ls8_c00054{letter-spacing:5.579280px;}
.ls0_c00054{letter-spacing:5.976000px;}
.ls1_c00054{letter-spacing:5.985000px;}
.ls3_c00054{letter-spacing:6.159920px;}
.lsa_c00054{letter-spacing:15.840432px;}
.sc__c00054{text-shadow:none;}
.sc2_c00054{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00054{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc2_c00054{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00054{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00054{word-spacing:-20.947680px;}
.ws3_c00054{word-spacing:-17.192114px;}
.ws1_c00054{word-spacing:-11.429712px;}
.ws2_c00054{word-spacing:-10.152000px;}
.ws4_c00054{word-spacing:0.000000px;}
._5_c00054{margin-left:-16.354080px;}
._4_c00054{margin-left:-15.291360px;}
._2_c00054{margin-left:-5.365440px;}
._3_c00054{margin-left:-4.161600px;}
._1_c00054{margin-left:-1.007400px;}
._7_c00054{width:1.003680px;}
._0_c00054{width:4.320000px;}
._6_c00054{width:14.600592px;}
.fc1_c00054{color:rgb(79,129,189);}
.fc0_c00054{color:rgb(0,0,0);}
.fs5_c00054{font-size:36.000000px;}
.fs3_c00054{font-size:41.760000px;}
.fs4_c00054{font-size:53.280000px;}
.fs2_c00054{font-size:56.160000px;}
.fs6_c00054{font-size:59.040000px;}
.fs8_c00054{font-size:60.000000px;}
.fs7_c00054{font-size:60.857039px;}
.fs0_c00054{font-size:72.000000px;}
.fs1_c00054{font-size:74.215901px;}
.y0_c00054{bottom:0.000000px;}
.y3_c00054{bottom:2.565000px;}
.y14_c00054{bottom:3.120150px;}
.y12_c00054{bottom:3.960000px;}
.y13_c00054{bottom:34.744500px;}
.y11_c00054{bottom:34.920000px;}
.y1_c00054{bottom:54.000000px;}
.ye_c00054{bottom:55.481040px;}
.yf_c00054{bottom:55.485000px;}
.yd_c00054{bottom:72.765000px;}
.yc_c00054{bottom:72.766800px;}
.yb_c00054{bottom:90.405000px;}
.ya_c00054{bottom:96.525000px;}
.y9_c00054{bottom:123.165000px;}
.y10_c00054{bottom:416.925000px;}
.y8_c00054{bottom:945.764850px;}
.y7_c00054{bottom:977.085000px;}
.y6_c00054{bottom:1013.085000px;}
.y5_c00054{bottom:1049.085000px;}
.y4_c00054{bottom:1085.085000px;}
.y2_c00054{bottom:1138.365000px;}
.hb_c00054{height:19.255500px;}
.h7_c00054{height:32.616000px;}
.hc_c00054{height:46.320000px;}
.h8_c00054{height:46.981634px;}
.ha_c00054{height:47.520000px;}
.h6_c00054{height:48.271680px;}
.h9_c00054{height:53.490240px;}
.h4_c00054{height:57.294676px;}
.h3_c00054{height:65.232000px;}
.h5_c00054{height:68.074560px;}
.h2_c00054{height:1201.365000px;}
.h0_c00054{height:1262.835000px;}
.h1_c00054{height:1263.000000px;}
.w4_c00054{width:16.680000px;}
.w3_c00054{width:644.760000px;}
.w2_c00054{width:863.955000px;}
.w0_c00054{width:892.935000px;}
.w1_c00054{width:893.250000px;}
.x0_c00054{left:0.000000px;}
.xc_c00054{left:3.240150px;}
.x1_c00054{left:14.490000px;}
.x2_c00054{left:113.040150px;}
.xb_c00054{left:121.497000px;}
.xa_c00054{left:124.290000px;}
.x7_c00054{left:148.048800px;}
.x3_c00054{left:159.029700px;}
.x4_c00054{left:266.469750px;}
.x8_c00054{left:268.899600px;}
.x9_c00054{left:293.063550px;}
.x5_c00054{left:431.715150px;}
.x6_c00054{left:725.371200px;}
.xd_c00054{left:768.255000px;}
@media print{
.v2_c00054{vertical-align:-21.760000pt;}
.v0_c00054{vertical-align:0.000000pt;}
.v1_c00054{vertical-align:26.880000pt;}
.ls6_c00054{letter-spacing:-0.159616pt;}
.ls4_c00054{letter-spacing:0.000000pt;}
.ls7_c00054{letter-spacing:0.128000pt;}
.ls9_c00054{letter-spacing:0.243428pt;}
.lsc_c00054{letter-spacing:0.283392pt;}
.lsf_c00054{letter-spacing:0.355200pt;}
.lsb_c00054{letter-spacing:0.472320pt;}
.ls2_c00054{letter-spacing:0.486856pt;}
.lse_c00054{letter-spacing:0.614016pt;}
.lsd_c00054{letter-spacing:0.632913pt;}
.ls5_c00054{letter-spacing:4.742400pt;}
.ls8_c00054{letter-spacing:4.959360pt;}
.ls0_c00054{letter-spacing:5.312000pt;}
.ls1_c00054{letter-spacing:5.320000pt;}
.ls3_c00054{letter-spacing:5.475484pt;}
.lsa_c00054{letter-spacing:14.080384pt;}
.ws0_c00054{word-spacing:-18.620160pt;}
.ws3_c00054{word-spacing:-15.281879pt;}
.ws1_c00054{word-spacing:-10.159744pt;}
.ws2_c00054{word-spacing:-9.024000pt;}
.ws4_c00054{word-spacing:0.000000pt;}
._5_c00054{margin-left:-14.536960pt;}
._4_c00054{margin-left:-13.592320pt;}
._2_c00054{margin-left:-4.769280pt;}
._3_c00054{margin-left:-3.699200pt;}
._1_c00054{margin-left:-0.895467pt;}
._7_c00054{width:0.892160pt;}
._0_c00054{width:3.840000pt;}
._6_c00054{width:12.978304pt;}
.fs5_c00054{font-size:32.000000pt;}
.fs3_c00054{font-size:37.120000pt;}
.fs4_c00054{font-size:47.360000pt;}
.fs2_c00054{font-size:49.920000pt;}
.fs6_c00054{font-size:52.480000pt;}
.fs8_c00054{font-size:53.333333pt;}
.fs7_c00054{font-size:54.095146pt;}
.fs0_c00054{font-size:64.000000pt;}
.fs1_c00054{font-size:65.969690pt;}
.y0_c00054{bottom:0.000000pt;}
.y3_c00054{bottom:2.280000pt;}
.y14_c00054{bottom:2.773467pt;}
.y12_c00054{bottom:3.520000pt;}
.y13_c00054{bottom:30.884000pt;}
.y11_c00054{bottom:31.040000pt;}
.y1_c00054{bottom:48.000000pt;}
.ye_c00054{bottom:49.316480pt;}
.yf_c00054{bottom:49.320000pt;}
.yd_c00054{bottom:64.680000pt;}
.yc_c00054{bottom:64.681600pt;}
.yb_c00054{bottom:80.360000pt;}
.ya_c00054{bottom:85.800000pt;}
.y9_c00054{bottom:109.480000pt;}
.y10_c00054{bottom:370.600000pt;}
.y8_c00054{bottom:840.679867pt;}
.y7_c00054{bottom:868.520000pt;}
.y6_c00054{bottom:900.520000pt;}
.y5_c00054{bottom:932.520000pt;}
.y4_c00054{bottom:964.520000pt;}
.y2_c00054{bottom:1011.880000pt;}
.hb_c00054{height:17.116000pt;}
.h7_c00054{height:28.992000pt;}
.hc_c00054{height:41.173333pt;}
.h8_c00054{height:41.761453pt;}
.ha_c00054{height:42.240000pt;}
.h6_c00054{height:42.908160pt;}
.h9_c00054{height:47.546880pt;}
.h4_c00054{height:50.928601pt;}
.h3_c00054{height:57.984000pt;}
.h5_c00054{height:60.510720pt;}
.h2_c00054{height:1067.880000pt;}
.h0_c00054{height:1122.520000pt;}
.h1_c00054{height:1122.666667pt;}
.w4_c00054{width:14.826667pt;}
.w3_c00054{width:573.120000pt;}
.w2_c00054{width:767.960000pt;}
.w0_c00054{width:793.720000pt;}
.w1_c00054{width:794.000000pt;}
.x0_c00054{left:0.000000pt;}
.xc_c00054{left:2.880133pt;}
.x1_c00054{left:12.880000pt;}
.x2_c00054{left:100.480133pt;}
.xb_c00054{left:107.997333pt;}
.xa_c00054{left:110.480000pt;}
.x7_c00054{left:131.598933pt;}
.x3_c00054{left:141.359733pt;}
.x4_c00054{left:236.862000pt;}
.x8_c00054{left:239.021867pt;}
.x9_c00054{left:260.500933pt;}
.x5_c00054{left:383.746800pt;}
.x6_c00054{left:644.774400pt;}
.xd_c00054{left:682.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_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_ee1671ca259c9bc594be241e.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:0.000000px;}
.fc1_c00055{color:transparent;}
.fc0_c00055{color:rgb(0,0,0);}
.fs0_c00055{font-size:60.000000px;}
.y0_c00055{bottom:0.000000px;}
.y2_c00055{bottom:3.120150px;}
.y1_c00055{bottom:34.744500px;}
.h2_c00055{height:19.255500px;}
.h3_c00055{height:46.320000px;}
.h0_c00055{height:1262.835000px;}
.h1_c00055{height:1263.000000px;}
.w2_c00055{width:16.680000px;}
.w0_c00055{width:892.920000px;}
.w1_c00055{width:893.250000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:768.240000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
.fs0_c00055{font-size:53.333333pt;}
.y0_c00055{bottom:0.000000pt;}
.y2_c00055{bottom:2.773467pt;}
.y1_c00055{bottom:30.884000pt;}
.h2_c00055{height:17.116000pt;}
.h3_c00055{height:41.173333pt;}
.h0_c00055{height:1122.520000pt;}
.h1_c00055{height:1122.666667pt;}
.w2_c00055{width:14.826667pt;}
.w0_c00055{width:793.706667pt;}
.w1_c00055{width:794.000000pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:682.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_415614a751f542f0f1f3bf63.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:0.000000px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs1_c00056{font-size:60.000000px;}
.fs0_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y4_c00056{bottom:3.120150px;}
.y3_c00056{bottom:34.744500px;}
.y1_c00056{bottom:54.000000px;}
.y2_c00056{bottom:1085.085000px;}
.h4_c00056{height:19.255500px;}
.h5_c00056{height:46.320000px;}
.h3_c00056{height:55.584000px;}
.h2_c00056{height:1201.365000px;}
.h0_c00056{height:1262.835000px;}
.h1_c00056{height:1263.000000px;}
.w3_c00056{width:16.680000px;}
.w2_c00056{width:863.955000px;}
.w0_c00056{width:892.935000px;}
.w1_c00056{width:893.250000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:14.490000px;}
.x2_c00056{left:113.040150px;}
.x3_c00056{left:768.255000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
.fs1_c00056{font-size:53.333333pt;}
.fs0_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y4_c00056{bottom:2.773467pt;}
.y3_c00056{bottom:30.884000pt;}
.y1_c00056{bottom:48.000000pt;}
.y2_c00056{bottom:964.520000pt;}
.h4_c00056{height:17.116000pt;}
.h5_c00056{height:41.173333pt;}
.h3_c00056{height:49.408000pt;}
.h2_c00056{height:1067.880000pt;}
.h0_c00056{height:1122.520000pt;}
.h1_c00056{height:1122.666667pt;}
.w3_c00056{width:14.826667pt;}
.w2_c00056{width:767.960000pt;}
.w0_c00056{width:793.720000pt;}
.w1_c00056{width:794.000000pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:12.880000pt;}
.x2_c00056{left:100.480133pt;}
.x3_c00056{left:682.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_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_931ad9e64bc1419ebf2001ab.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_a911a185bdfdf80696639787.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;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:ff3_c00057;src:url('chunks/assets/font_575befe08308659f601d9c8a.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:0.787000;font-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_c00057{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00057{vertical-align:-24.480000px;}
.v0_c00057{vertical-align:0.000000px;}
.v1_c00057{vertical-align:30.240000px;}
.lse_c00057{letter-spacing:0.000000px;}
.ls8_c00057{letter-spacing:0.045840px;}
.ls5_c00057{letter-spacing:0.140640px;}
.ls13_c00057{letter-spacing:0.265680px;}
.lsb_c00057{letter-spacing:0.295200px;}
.ls14_c00057{letter-spacing:0.318816px;}
.ls16_c00057{letter-spacing:0.371952px;}
.ls1b_c00057{letter-spacing:0.425088px;}
.ls15_c00057{letter-spacing:0.478224px;}
.ls7_c00057{letter-spacing:0.489240px;}
.ls9_c00057{letter-spacing:0.492942px;}
.lsc_c00057{letter-spacing:0.531360px;}
.ls17_c00057{letter-spacing:0.547713px;}
.lsa_c00057{letter-spacing:0.712027px;}
.ls18_c00057{letter-spacing:0.718113px;}
.ls12_c00057{letter-spacing:0.766799px;}
.ls6_c00057{letter-spacing:0.777840px;}
.ls19_c00057{letter-spacing:4.132800px;}
.ls10_c00057{letter-spacing:5.149872px;}
.lsf_c00057{letter-spacing:5.245344px;}
.ls4_c00057{letter-spacing:5.335200px;}
.ls1_c00057{letter-spacing:5.406777px;}
.ls3_c00057{letter-spacing:5.975400px;}
.ls2_c00057{letter-spacing:5.976000px;}
.ls0_c00057{letter-spacing:6.159301px;}
.lsd_c00057{letter-spacing:6.159920px;}
.ls11_c00057{letter-spacing:10.054512px;}
.ls1a_c00057{letter-spacing:10.650816px;}
.sc__c00057{text-shadow:none;}
.sc1_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00057{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc1_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00057{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00057{word-spacing:-25.992000px;}
.ws0_c00057{word-spacing:-21.499753px;}
.ws1_c00057{word-spacing:-20.857824px;}
.ws3_c00057{word-spacing:-20.762352px;}
.ws5_c00057{word-spacing:-20.016000px;}
.ws7_c00057{word-spacing:-17.685056px;}
.ws9_c00057{word-spacing:-17.630284px;}
.ws8_c00057{word-spacing:-17.411199px;}
.wsa_c00057{word-spacing:-16.944480px;}
.ws4_c00057{word-spacing:-11.609280px;}
.ws6_c00057{word-spacing:-10.008000px;}
.wsb_c00057{word-spacing:0.000000px;}
._e_c00057{margin-left:-10.520928px;}
._d_c00057{margin-left:-9.446400px;}
._11_c00057{margin-left:-4.841280px;}
._10_c00057{margin-left:-3.660480px;}
._12_c00057{margin-left:-2.538720px;}
._f_c00057{margin-left:-1.038720px;}
._2_c00057{width:1.005600px;}
._b_c00057{width:2.926800px;}
._6_c00057{width:4.034400px;}
._3_c00057{width:5.040000px;}
._8_c00057{width:6.264000px;}
._5_c00057{width:7.704000px;}
._9_c00057{width:9.504000px;}
._a_c00057{width:10.728000px;}
._7_c00057{width:11.736000px;}
._4_c00057{width:12.888000px;}
._c_c00057{width:15.696000px;}
._1_c00057{width:16.776000px;}
._0_c00057{width:18.437400px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs5_c00057{font-size:36.000000px;}
.fs4_c00057{font-size:41.760000px;}
.fs3_c00057{font-size:56.160000px;}
.fs2_c00057{font-size:57.888403px;}
.fs6_c00057{font-size:59.040000px;}
.fs8_c00057{font-size:60.000000px;}
.fs7_c00057{font-size:60.857039px;}
.fs0_c00057{font-size:72.000000px;}
.fs1_c00057{font-size:74.215901px;}
.y0_c00057{bottom:0.000000px;}
.y3_c00057{bottom:2.565000px;}
.y32_c00057{bottom:3.120150px;}
.y31_c00057{bottom:34.744500px;}
.y1_c00057{bottom:54.000000px;}
.y30_c00057{bottom:55.485000px;}
.y2f_c00057{bottom:61.605000px;}
.y2e_c00057{bottom:72.765000px;}
.y2d_c00057{bottom:78.885000px;}
.y2b_c00057{bottom:90.401040px;}
.y2c_c00057{bottom:90.405000px;}
.y2a_c00057{bottom:113.805000px;}
.y29_c00057{bottom:125.326800px;}
.y28_c00057{bottom:149.085000px;}
.y27_c00057{bottom:160.245000px;}
.y26_c00057{bottom:166.365000px;}
.y24_c00057{bottom:177.882840px;}
.y25_c00057{bottom:177.885000px;}
.y23_c00057{bottom:195.521040px;}
.y22_c00057{bottom:212.805000px;}
.y21_c00057{bottom:218.925000px;}
.y20_c00057{bottom:245.565000px;}
.y1f_c00057{bottom:394.965000px;}
.y1e_c00057{bottom:415.845000px;}
.y1d_c00057{bottom:451.845000px;}
.y1c_c00057{bottom:472.725000px;}
.y1b_c00057{bottom:493.965000px;}
.y1a_c00057{bottom:514.845000px;}
.y19_c00057{bottom:535.725000px;}
.y18_c00057{bottom:571.725000px;}
.y17_c00057{bottom:592.965000px;}
.y16_c00057{bottom:613.845000px;}
.y15_c00057{bottom:634.725000px;}
.y14_c00057{bottom:655.965000px;}
.y13_c00057{bottom:676.845000px;}
.y12_c00057{bottom:698.085000px;}
.y11_c00057{bottom:734.085000px;}
.y10_c00057{bottom:754.965000px;}
.yf_c00057{bottom:790.965000px;}
.ye_c00057{bottom:829.125000px;}
.yd_c00057{bottom:865.845000px;}
.yc_c00057{bottom:901.845000px;}
.yb_c00057{bottom:923.085000px;}
.ya_c00057{bottom:943.965000px;}
.y9_c00057{bottom:964.845000px;}
.y8_c00057{bottom:986.085000px;}
.y7_c00057{bottom:1006.965000px;}
.y6_c00057{bottom:1027.845000px;}
.y5_c00057{bottom:1049.085000px;}
.y4_c00057{bottom:1085.085000px;}
.y2_c00057{bottom:1138.365000px;}
.h9_c00057{height:19.255500px;}
.h6_c00057{height:32.616000px;}
.ha_c00057{height:46.320000px;}
.h7_c00057{height:46.981634px;}
.h8_c00057{height:53.490240px;}
.h4_c00057{height:57.294676px;}
.h3_c00057{height:65.232000px;}
.h5_c00057{height:68.074560px;}
.h2_c00057{height:1201.365000px;}
.h0_c00057{height:1262.835000px;}
.h1_c00057{height:1263.000000px;}
.w3_c00057{width:16.680000px;}
.w2_c00057{width:863.955000px;}
.w0_c00057{width:892.935000px;}
.w1_c00057{width:893.250000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:14.490000px;}
.x2_c00057{left:113.040150px;}
.x1e_c00057{left:122.213700px;}
.x3_c00057{left:150.011700px;}
.x22_c00057{left:152.213400px;}
.x24_c00057{left:156.383100px;}
.x5_c00057{left:167.072700px;}
.x1f_c00057{left:184.746450px;}
.x1c_c00057{left:187.212900px;}
.x4_c00057{left:199.474800px;}
.x8_c00057{left:202.842750px;}
.x23_c00057{left:215.585850px;}
.xa_c00057{left:219.763500px;}
.x10_c00057{left:233.317050px;}
.x1d_c00057{left:255.579750px;}
.x16_c00057{left:291.131550px;}
.x11_c00057{left:308.151150px;}
.x14_c00057{left:319.086600px;}
.x17_c00057{left:325.300800px;}
.x18_c00057{left:329.470500px;}
.x6_c00057{left:331.439250px;}
.x19_c00057{left:333.640050px;}
.x20_c00057{left:338.077800px;}
.x15_c00057{left:343.080000px;}
.x21_c00057{left:372.232200px;}
.x1a_c00057{left:407.593050px;}
.x9_c00057{left:416.478150px;}
.x1b_c00057{left:425.922750px;}
.x12_c00057{left:466.084050px;}
.xc_c00057{left:548.282550px;}
.x7_c00057{left:554.302050px;}
.xd_c00057{left:621.337650px;}
.xe_c00057{left:670.980900px;}
.xb_c00057{left:694.375200px;}
.x13_c00057{left:701.412900px;}
.xf_c00057{left:750.390000px;}
.x25_c00057{left:768.255000px;}
@media print{
.v2_c00057{vertical-align:-21.760000pt;}
.v0_c00057{vertical-align:0.000000pt;}
.v1_c00057{vertical-align:26.880000pt;}
.lse_c00057{letter-spacing:0.000000pt;}
.ls8_c00057{letter-spacing:0.040747pt;}
.ls5_c00057{letter-spacing:0.125013pt;}
.ls13_c00057{letter-spacing:0.236160pt;}
.lsb_c00057{letter-spacing:0.262400pt;}
.ls14_c00057{letter-spacing:0.283392pt;}
.ls16_c00057{letter-spacing:0.330624pt;}
.ls1b_c00057{letter-spacing:0.377856pt;}
.ls15_c00057{letter-spacing:0.425088pt;}
.ls7_c00057{letter-spacing:0.434880pt;}
.ls9_c00057{letter-spacing:0.438171pt;}
.lsc_c00057{letter-spacing:0.472320pt;}
.ls17_c00057{letter-spacing:0.486856pt;}
.lsa_c00057{letter-spacing:0.632913pt;}
.ls18_c00057{letter-spacing:0.638323pt;}
.ls12_c00057{letter-spacing:0.681599pt;}
.ls6_c00057{letter-spacing:0.691413pt;}
.ls19_c00057{letter-spacing:3.673600pt;}
.ls10_c00057{letter-spacing:4.577664pt;}
.lsf_c00057{letter-spacing:4.662528pt;}
.ls4_c00057{letter-spacing:4.742400pt;}
.ls1_c00057{letter-spacing:4.806024pt;}
.ls3_c00057{letter-spacing:5.311467pt;}
.ls2_c00057{letter-spacing:5.312000pt;}
.ls0_c00057{letter-spacing:5.474935pt;}
.lsd_c00057{letter-spacing:5.475484pt;}
.ls11_c00057{letter-spacing:8.937344pt;}
.ls1a_c00057{letter-spacing:9.467392pt;}
.ws2_c00057{word-spacing:-23.104000pt;}
.ws0_c00057{word-spacing:-19.110891pt;}
.ws1_c00057{word-spacing:-18.540288pt;}
.ws3_c00057{word-spacing:-18.455424pt;}
.ws5_c00057{word-spacing:-17.792000pt;}
.ws7_c00057{word-spacing:-15.720049pt;}
.ws9_c00057{word-spacing:-15.671364pt;}
.ws8_c00057{word-spacing:-15.476621pt;}
.wsa_c00057{word-spacing:-15.061760pt;}
.ws4_c00057{word-spacing:-10.319360pt;}
.ws6_c00057{word-spacing:-8.896000pt;}
.wsb_c00057{word-spacing:0.000000pt;}
._e_c00057{margin-left:-9.351936pt;}
._d_c00057{margin-left:-8.396800pt;}
._11_c00057{margin-left:-4.303360pt;}
._10_c00057{margin-left:-3.253760pt;}
._12_c00057{margin-left:-2.256640pt;}
._f_c00057{margin-left:-0.923307pt;}
._2_c00057{width:0.893867pt;}
._b_c00057{width:2.601600pt;}
._6_c00057{width:3.586133pt;}
._3_c00057{width:4.480000pt;}
._8_c00057{width:5.568000pt;}
._5_c00057{width:6.848000pt;}
._9_c00057{width:8.448000pt;}
._a_c00057{width:9.536000pt;}
._7_c00057{width:10.432000pt;}
._4_c00057{width:11.456000pt;}
._c_c00057{width:13.952000pt;}
._1_c00057{width:14.912000pt;}
._0_c00057{width:16.388800pt;}
.fs5_c00057{font-size:32.000000pt;}
.fs4_c00057{font-size:37.120000pt;}
.fs3_c00057{font-size:49.920000pt;}
.fs2_c00057{font-size:51.456358pt;}
.fs6_c00057{font-size:52.480000pt;}
.fs8_c00057{font-size:53.333333pt;}
.fs7_c00057{font-size:54.095146pt;}
.fs0_c00057{font-size:64.000000pt;}
.fs1_c00057{font-size:65.969690pt;}
.y0_c00057{bottom:0.000000pt;}
.y3_c00057{bottom:2.280000pt;}
.y32_c00057{bottom:2.773467pt;}
.y31_c00057{bottom:30.884000pt;}
.y1_c00057{bottom:48.000000pt;}
.y30_c00057{bottom:49.320000pt;}
.y2f_c00057{bottom:54.760000pt;}
.y2e_c00057{bottom:64.680000pt;}
.y2d_c00057{bottom:70.120000pt;}
.y2b_c00057{bottom:80.356480pt;}
.y2c_c00057{bottom:80.360000pt;}
.y2a_c00057{bottom:101.160000pt;}
.y29_c00057{bottom:111.401600pt;}
.y28_c00057{bottom:132.520000pt;}
.y27_c00057{bottom:142.440000pt;}
.y26_c00057{bottom:147.880000pt;}
.y24_c00057{bottom:158.118080pt;}
.y25_c00057{bottom:158.120000pt;}
.y23_c00057{bottom:173.796480pt;}
.y22_c00057{bottom:189.160000pt;}
.y21_c00057{bottom:194.600000pt;}
.y20_c00057{bottom:218.280000pt;}
.y1f_c00057{bottom:351.080000pt;}
.y1e_c00057{bottom:369.640000pt;}
.y1d_c00057{bottom:401.640000pt;}
.y1c_c00057{bottom:420.200000pt;}
.y1b_c00057{bottom:439.080000pt;}
.y1a_c00057{bottom:457.640000pt;}
.y19_c00057{bottom:476.200000pt;}
.y18_c00057{bottom:508.200000pt;}
.y17_c00057{bottom:527.080000pt;}
.y16_c00057{bottom:545.640000pt;}
.y15_c00057{bottom:564.200000pt;}
.y14_c00057{bottom:583.080000pt;}
.y13_c00057{bottom:601.640000pt;}
.y12_c00057{bottom:620.520000pt;}
.y11_c00057{bottom:652.520000pt;}
.y10_c00057{bottom:671.080000pt;}
.yf_c00057{bottom:703.080000pt;}
.ye_c00057{bottom:737.000000pt;}
.yd_c00057{bottom:769.640000pt;}
.yc_c00057{bottom:801.640000pt;}
.yb_c00057{bottom:820.520000pt;}
.ya_c00057{bottom:839.080000pt;}
.y9_c00057{bottom:857.640000pt;}
.y8_c00057{bottom:876.520000pt;}
.y7_c00057{bottom:895.080000pt;}
.y6_c00057{bottom:913.640000pt;}
.y5_c00057{bottom:932.520000pt;}
.y4_c00057{bottom:964.520000pt;}
.y2_c00057{bottom:1011.880000pt;}
.h9_c00057{height:17.116000pt;}
.h6_c00057{height:28.992000pt;}
.ha_c00057{height:41.173333pt;}
.h7_c00057{height:41.761453pt;}
.h8_c00057{height:47.546880pt;}
.h4_c00057{height:50.928601pt;}
.h3_c00057{height:57.984000pt;}
.h5_c00057{height:60.510720pt;}
.h2_c00057{height:1067.880000pt;}
.h0_c00057{height:1122.520000pt;}
.h1_c00057{height:1122.666667pt;}
.w3_c00057{width:14.826667pt;}
.w2_c00057{width:767.960000pt;}
.w0_c00057{width:793.720000pt;}
.w1_c00057{width:794.000000pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:12.880000pt;}
.x2_c00057{left:100.480133pt;}
.x1e_c00057{left:108.634400pt;}
.x3_c00057{left:133.343733pt;}
.x22_c00057{left:135.300800pt;}
.x24_c00057{left:139.007200pt;}
.x5_c00057{left:148.509067pt;}
.x1f_c00057{left:164.219067pt;}
.x1c_c00057{left:166.411467pt;}
.x4_c00057{left:177.310933pt;}
.x8_c00057{left:180.304667pt;}
.x23_c00057{left:191.631867pt;}
.xa_c00057{left:195.345333pt;}
.x10_c00057{left:207.392933pt;}
.x1d_c00057{left:227.182000pt;}
.x16_c00057{left:258.783600pt;}
.x11_c00057{left:273.912133pt;}
.x14_c00057{left:283.632533pt;}
.x17_c00057{left:289.156267pt;}
.x18_c00057{left:292.862667pt;}
.x6_c00057{left:294.612667pt;}
.x19_c00057{left:296.568933pt;}
.x20_c00057{left:300.513600pt;}
.x15_c00057{left:304.960000pt;}
.x21_c00057{left:330.873067pt;}
.x1a_c00057{left:362.304933pt;}
.x9_c00057{left:370.202800pt;}
.x1b_c00057{left:378.598000pt;}
.x12_c00057{left:414.296933pt;}
.xc_c00057{left:487.362267pt;}
.x7_c00057{left:492.712933pt;}
.xd_c00057{left:552.300133pt;}
.xe_c00057{left:596.427467pt;}
.xb_c00057{left:617.222400pt;}
.x13_c00057{left:623.478133pt;}
.xf_c00057{left:667.013333pt;}
.x25_c00057{left:682.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_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_8baee7f5b396f4fe0694d3b3.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.134000;font-style:normal;font-weight:normal;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_6af4b62bb1bf7cd5dc910f9e.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;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:ff3_c00058;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_0c8c7c3c76f7548e4400968a.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:0.787000;font-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_c00058{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00058{vertical-align:-24.480000px;}
.v0_c00058{vertical-align:0.000000px;}
.v1_c00058{vertical-align:30.240000px;}
.lse_c00058{letter-spacing:-0.179568px;}
.lsc_c00058{letter-spacing:0.000000px;}
.ls2_c00058{letter-spacing:0.047640px;}
.ls17_c00058{letter-spacing:0.144000px;}
.ls1_c00058{letter-spacing:0.191640px;}
.ls14_c00058{letter-spacing:0.265680px;}
.ls7_c00058{letter-spacing:0.295200px;}
.ls1f_c00058{letter-spacing:0.318816px;}
.ls1b_c00058{letter-spacing:0.371952px;}
.ls1c_c00058{letter-spacing:0.425088px;}
.ls6_c00058{letter-spacing:0.438171px;}
.ls10_c00058{letter-spacing:0.478224px;}
.ls8_c00058{letter-spacing:0.531360px;}
.ls12_c00058{letter-spacing:0.547713px;}
.ls13_c00058{letter-spacing:0.690768px;}
.ls20_c00058{letter-spacing:0.766799px;}
.ls3_c00058{letter-spacing:0.843240px;}
.lsa_c00058{letter-spacing:0.944640px;}
.lsf_c00058{letter-spacing:2.768976px;}
.ls11_c00058{letter-spacing:3.064176px;}
.ls18_c00058{letter-spacing:3.329856px;}
.ls21_c00058{letter-spacing:3.518784px;}
.ls1d_c00058{letter-spacing:4.097376px;}
.ls1e_c00058{letter-spacing:4.422096px;}
.lsd_c00058{letter-spacing:5.430672px;}
.ls19_c00058{letter-spacing:5.514336px;}
.ls4_c00058{letter-spacing:5.976000px;}
.ls5_c00058{letter-spacing:5.978400px;}
.ls0_c00058{letter-spacing:5.980800px;}
.lsb_c00058{letter-spacing:6.159920px;}
.ls16_c00058{letter-spacing:8.129808px;}
.ls15_c00058{letter-spacing:8.135712px;}
.ls1a_c00058{letter-spacing:10.544544px;}
.ls9_c00058{letter-spacing:10.568160px;}
.sc__c00058{text-shadow:none;}
.sc1_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00058{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc1_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00058{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6_c00058{word-spacing:-21.927456px;}
.ws0_c00058{word-spacing:-21.043152px;}
.ws7_c00058{word-spacing:-17.685056px;}
.ws3_c00058{word-spacing:-17.356428px;}
.ws4_c00058{word-spacing:-16.944480px;}
.ws1_c00058{word-spacing:-11.429712px;}
.ws5_c00058{word-spacing:-10.152000px;}
.ws2_c00058{word-spacing:-10.008000px;}
.ws8_c00058{word-spacing:0.000000px;}
._d_c00058{margin-left:-11.092320px;}
._e_c00058{margin-left:-9.961920px;}
._b_c00058{margin-left:-8.678880px;}
._a_c00058{margin-left:-7.675200px;}
._c_c00058{margin-left:-6.671520px;}
._10_c00058{margin-left:-4.583520px;}
._9_c00058{margin-left:-3.306240px;}
._8_c00058{margin-left:-2.184480px;}
._6_c00058{margin-left:-1.179360px;}
._2_c00058{width:1.440000px;}
._0_c00058{width:3.384000px;}
._5_c00058{width:4.824000px;}
._7_c00058{width:6.120000px;}
._11_c00058{width:7.259040px;}
._f_c00058{width:8.964000px;}
._4_c00058{width:10.224000px;}
._1_c00058{width:17.928000px;}
._3_c00058{width:19.008000px;}
.fc0_c00058{color:rgb(0,0,0);}
.fs4_c00058{font-size:36.000000px;}
.fs3_c00058{font-size:41.760000px;}
.fs2_c00058{font-size:56.160000px;}
.fs5_c00058{font-size:59.040000px;}
.fs7_c00058{font-size:60.000000px;}
.fs6_c00058{font-size:60.857039px;}
.fs0_c00058{font-size:72.000000px;}
.fs1_c00058{font-size:74.215901px;}
.y0_c00058{bottom:0.000000px;}
.y3_c00058{bottom:2.565000px;}
.y34_c00058{bottom:3.120150px;}
.y33_c00058{bottom:34.744500px;}
.y1_c00058{bottom:54.000000px;}
.y32_c00058{bottom:55.481040px;}
.y30_c00058{bottom:72.762120px;}
.y31_c00058{bottom:72.765000px;}
.y2f_c00058{bottom:90.400320px;}
.y2e_c00058{bottom:107.684280px;}
.y2d_c00058{bottom:125.322480px;}
.y2c_c00058{bottom:142.960680px;}
.y2b_c00058{bottom:160.244640px;}
.y2a_c00058{bottom:177.882840px;}
.y29_c00058{bottom:195.521040px;}
.y28_c00058{bottom:218.925000px;}
.y27_c00058{bottom:230.441040px;}
.y26_c00058{bottom:253.845000px;}
.y25_c00058{bottom:265.366800px;}
.y24_c00058{bottom:283.005000px;}
.y23_c00058{bottom:289.125000px;}
.y22_c00058{bottom:306.405000px;}
.y21_c00058{bottom:317.925000px;}
.y20_c00058{bottom:317.926800px;}
.y1e_c00058{bottom:335.562840px;}
.y1f_c00058{bottom:335.565000px;}
.y1d_c00058{bottom:352.846800px;}
.y1c_c00058{bottom:376.605000px;}
.y1b_c00058{bottom:403.245000px;}
.y1a_c00058{bottom:472.725000px;}
.y19_c00058{bottom:493.965000px;}
.y18_c00058{bottom:514.845000px;}
.y17_c00058{bottom:550.845000px;}
.y16_c00058{bottom:571.725000px;}
.y15_c00058{bottom:607.725000px;}
.y14_c00058{bottom:644.085000px;}
.y13_c00058{bottom:680.085000px;}
.y12_c00058{bottom:716.085000px;}
.y11_c00058{bottom:736.965000px;}
.y10_c00058{bottom:757.845000px;}
.yf_c00058{bottom:779.085000px;}
.ye_c00058{bottom:815.085000px;}
.yd_c00058{bottom:851.085000px;}
.yc_c00058{bottom:871.965000px;}
.yb_c00058{bottom:892.845000px;}
.ya_c00058{bottom:914.085000px;}
.y9_c00058{bottom:934.965000px;}
.y8_c00058{bottom:955.845000px;}
.y7_c00058{bottom:977.085000px;}
.y6_c00058{bottom:1013.085000px;}
.y5_c00058{bottom:1049.085000px;}
.y4_c00058{bottom:1085.085000px;}
.y2_c00058{bottom:1138.365000px;}
.h9_c00058{height:19.255500px;}
.h6_c00058{height:32.616000px;}
.ha_c00058{height:46.320000px;}
.h8_c00058{height:46.981634px;}
.h7_c00058{height:53.490240px;}
.h4_c00058{height:57.294676px;}
.h3_c00058{height:65.232000px;}
.h5_c00058{height:68.074560px;}
.h2_c00058{height:1201.365000px;}
.h0_c00058{height:1262.835000px;}
.h1_c00058{height:1263.000000px;}
.w3_c00058{width:16.680000px;}
.w2_c00058{width:863.955000px;}
.w0_c00058{width:892.935000px;}
.w1_c00058{width:893.250000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:14.490000px;}
.x2_c00058{left:113.040150px;}
.x6_c00058{left:148.031550px;}
.x3_c00058{left:150.011700px;}
.x8_c00058{left:153.257400px;}
.x5_c00058{left:155.033550px;}
.x4_c00058{left:199.474800px;}
.xb_c00058{left:331.374000px;}
.xc_c00058{left:351.367950px;}
.x9_c00058{left:372.108000px;}
.x7_c00058{left:430.782750px;}
.xa_c00058{left:442.938000px;}
.xf_c00058{left:474.636900px;}
.x10_c00058{left:517.985850px;}
.xd_c00058{left:588.344550px;}
.xe_c00058{left:604.168950px;}
.x11_c00058{left:768.255000px;}
@media print{
.v2_c00058{vertical-align:-21.760000pt;}
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:26.880000pt;}
.lse_c00058{letter-spacing:-0.159616pt;}
.lsc_c00058{letter-spacing:0.000000pt;}
.ls2_c00058{letter-spacing:0.042347pt;}
.ls17_c00058{letter-spacing:0.128000pt;}
.ls1_c00058{letter-spacing:0.170347pt;}
.ls14_c00058{letter-spacing:0.236160pt;}
.ls7_c00058{letter-spacing:0.262400pt;}
.ls1f_c00058{letter-spacing:0.283392pt;}
.ls1b_c00058{letter-spacing:0.330624pt;}
.ls1c_c00058{letter-spacing:0.377856pt;}
.ls6_c00058{letter-spacing:0.389485pt;}
.ls10_c00058{letter-spacing:0.425088pt;}
.ls8_c00058{letter-spacing:0.472320pt;}
.ls12_c00058{letter-spacing:0.486856pt;}
.ls13_c00058{letter-spacing:0.614016pt;}
.ls20_c00058{letter-spacing:0.681599pt;}
.ls3_c00058{letter-spacing:0.749547pt;}
.lsa_c00058{letter-spacing:0.839680pt;}
.lsf_c00058{letter-spacing:2.461312pt;}
.ls11_c00058{letter-spacing:2.723712pt;}
.ls18_c00058{letter-spacing:2.959872pt;}
.ls21_c00058{letter-spacing:3.127808pt;}
.ls1d_c00058{letter-spacing:3.642112pt;}
.ls1e_c00058{letter-spacing:3.930752pt;}
.lsd_c00058{letter-spacing:4.827264pt;}
.ls19_c00058{letter-spacing:4.901632pt;}
.ls4_c00058{letter-spacing:5.312000pt;}
.ls5_c00058{letter-spacing:5.314133pt;}
.ls0_c00058{letter-spacing:5.316267pt;}
.lsb_c00058{letter-spacing:5.475484pt;}
.ls16_c00058{letter-spacing:7.226496pt;}
.ls15_c00058{letter-spacing:7.231744pt;}
.ls1a_c00058{letter-spacing:9.372928pt;}
.ls9_c00058{letter-spacing:9.393920pt;}
.ws6_c00058{word-spacing:-19.491072pt;}
.ws0_c00058{word-spacing:-18.705024pt;}
.ws7_c00058{word-spacing:-15.720049pt;}
.ws3_c00058{word-spacing:-15.427936pt;}
.ws4_c00058{word-spacing:-15.061760pt;}
.ws1_c00058{word-spacing:-10.159744pt;}
.ws5_c00058{word-spacing:-9.024000pt;}
.ws2_c00058{word-spacing:-8.896000pt;}
.ws8_c00058{word-spacing:0.000000pt;}
._d_c00058{margin-left:-9.859840pt;}
._e_c00058{margin-left:-8.855040pt;}
._b_c00058{margin-left:-7.714560pt;}
._a_c00058{margin-left:-6.822400pt;}
._c_c00058{margin-left:-5.930240pt;}
._10_c00058{margin-left:-4.074240pt;}
._9_c00058{margin-left:-2.938880pt;}
._8_c00058{margin-left:-1.941760pt;}
._6_c00058{margin-left:-1.048320pt;}
._2_c00058{width:1.280000pt;}
._0_c00058{width:3.008000pt;}
._5_c00058{width:4.288000pt;}
._7_c00058{width:5.440000pt;}
._11_c00058{width:6.452480pt;}
._f_c00058{width:7.968000pt;}
._4_c00058{width:9.088000pt;}
._1_c00058{width:15.936000pt;}
._3_c00058{width:16.896000pt;}
.fs4_c00058{font-size:32.000000pt;}
.fs3_c00058{font-size:37.120000pt;}
.fs2_c00058{font-size:49.920000pt;}
.fs5_c00058{font-size:52.480000pt;}
.fs7_c00058{font-size:53.333333pt;}
.fs6_c00058{font-size:54.095146pt;}
.fs0_c00058{font-size:64.000000pt;}
.fs1_c00058{font-size:65.969690pt;}
.y0_c00058{bottom:0.000000pt;}
.y3_c00058{bottom:2.280000pt;}
.y34_c00058{bottom:2.773467pt;}
.y33_c00058{bottom:30.884000pt;}
.y1_c00058{bottom:48.000000pt;}
.y32_c00058{bottom:49.316480pt;}
.y30_c00058{bottom:64.677440pt;}
.y31_c00058{bottom:64.680000pt;}
.y2f_c00058{bottom:80.355840pt;}
.y2e_c00058{bottom:95.719360pt;}
.y2d_c00058{bottom:111.397760pt;}
.y2c_c00058{bottom:127.076160pt;}
.y2b_c00058{bottom:142.439680pt;}
.y2a_c00058{bottom:158.118080pt;}
.y29_c00058{bottom:173.796480pt;}
.y28_c00058{bottom:194.600000pt;}
.y27_c00058{bottom:204.836480pt;}
.y26_c00058{bottom:225.640000pt;}
.y25_c00058{bottom:235.881600pt;}
.y24_c00058{bottom:251.560000pt;}
.y23_c00058{bottom:257.000000pt;}
.y22_c00058{bottom:272.360000pt;}
.y21_c00058{bottom:282.600000pt;}
.y20_c00058{bottom:282.601600pt;}
.y1e_c00058{bottom:298.278080pt;}
.y1f_c00058{bottom:298.280000pt;}
.y1d_c00058{bottom:313.641600pt;}
.y1c_c00058{bottom:334.760000pt;}
.y1b_c00058{bottom:358.440000pt;}
.y1a_c00058{bottom:420.200000pt;}
.y19_c00058{bottom:439.080000pt;}
.y18_c00058{bottom:457.640000pt;}
.y17_c00058{bottom:489.640000pt;}
.y16_c00058{bottom:508.200000pt;}
.y15_c00058{bottom:540.200000pt;}
.y14_c00058{bottom:572.520000pt;}
.y13_c00058{bottom:604.520000pt;}
.y12_c00058{bottom:636.520000pt;}
.y11_c00058{bottom:655.080000pt;}
.y10_c00058{bottom:673.640000pt;}
.yf_c00058{bottom:692.520000pt;}
.ye_c00058{bottom:724.520000pt;}
.yd_c00058{bottom:756.520000pt;}
.yc_c00058{bottom:775.080000pt;}
.yb_c00058{bottom:793.640000pt;}
.ya_c00058{bottom:812.520000pt;}
.y9_c00058{bottom:831.080000pt;}
.y8_c00058{bottom:849.640000pt;}
.y7_c00058{bottom:868.520000pt;}
.y6_c00058{bottom:900.520000pt;}
.y5_c00058{bottom:932.520000pt;}
.y4_c00058{bottom:964.520000pt;}
.y2_c00058{bottom:1011.880000pt;}
.h9_c00058{height:17.116000pt;}
.h6_c00058{height:28.992000pt;}
.ha_c00058{height:41.173333pt;}
.h8_c00058{height:41.761453pt;}
.h7_c00058{height:47.546880pt;}
.h4_c00058{height:50.928601pt;}
.h3_c00058{height:57.984000pt;}
.h5_c00058{height:60.510720pt;}
.h2_c00058{height:1067.880000pt;}
.h0_c00058{height:1122.520000pt;}
.h1_c00058{height:1122.666667pt;}
.w3_c00058{width:14.826667pt;}
.w2_c00058{width:767.960000pt;}
.w0_c00058{width:793.720000pt;}
.w1_c00058{width:794.000000pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:12.880000pt;}
.x2_c00058{left:100.480133pt;}
.x6_c00058{left:131.583600pt;}
.x3_c00058{left:133.343733pt;}
.x8_c00058{left:136.228800pt;}
.x5_c00058{left:137.807600pt;}
.x4_c00058{left:177.310933pt;}
.xb_c00058{left:294.554667pt;}
.xc_c00058{left:312.327067pt;}
.x9_c00058{left:330.762667pt;}
.x7_c00058{left:382.918000pt;}
.xa_c00058{left:393.722667pt;}
.xf_c00058{left:421.899467pt;}
.x10_c00058{left:460.431867pt;}
.xd_c00058{left:522.972933pt;}
.xe_c00058{left:537.039067pt;}
.x11_c00058{left:682.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_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_abb697d7fcf377a23cb5b83a.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_7c15520066038b20788e602e.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;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:ff3_c00059;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00059;src:url('chunks/assets/font_96631fcb77c739339cfdbc99.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:0.787000;font-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_c00059{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00059{vertical-align:-24.480000px;}
.v0_c00059{vertical-align:0.000000px;}
.v1_c00059{vertical-align:30.240000px;}
.ls12_c00059{letter-spacing:-0.179568px;}
.ls11_c00059{letter-spacing:0.000000px;}
.ls24_c00059{letter-spacing:0.144000px;}
.lsf_c00059{letter-spacing:0.265680px;}
.ls9_c00059{letter-spacing:0.295200px;}
.ls26_c00059{letter-spacing:0.318816px;}
.ls15_c00059{letter-spacing:0.330480px;}
.ls18_c00059{letter-spacing:0.395280px;}
.ls4_c00059{letter-spacing:0.398400px;}
.ls3_c00059{letter-spacing:0.399000px;}
.ls27_c00059{letter-spacing:0.425088px;}
.ls25_c00059{letter-spacing:0.478224px;}
.lsa_c00059{letter-spacing:0.501840px;}
.lsb_c00059{letter-spacing:0.531360px;}
.ls7_c00059{letter-spacing:0.654480px;}
.ls5_c00059{letter-spacing:0.667440px;}
.ls1b_c00059{letter-spacing:0.687981px;}
.ls22_c00059{letter-spacing:0.690768px;}
.ls1d_c00059{letter-spacing:0.696672px;}
.lsd_c00059{letter-spacing:0.712027px;}
.ls21_c00059{letter-spacing:0.743904px;}
.ls20_c00059{letter-spacing:0.766799px;}
.ls1e_c00059{letter-spacing:0.797040px;}
.ls23_c00059{letter-spacing:0.821570px;}
.ls14_c00059{letter-spacing:0.861840px;}
.ls16_c00059{letter-spacing:0.868320px;}
.ls8_c00059{letter-spacing:0.888364px;}
.ls6_c00059{letter-spacing:0.895044px;}
.ls19_c00059{letter-spacing:0.961838px;}
.lsc_c00059{letter-spacing:0.991970px;}
.ls1a_c00059{letter-spacing:1.028632px;}
.ls1c_c00059{letter-spacing:1.198800px;}
.ls17_c00059{letter-spacing:1.235695px;}
.ls1f_c00059{letter-spacing:5.661936px;}
.ls2_c00059{letter-spacing:5.976000px;}
.ls10_c00059{letter-spacing:6.159920px;}
.lse_c00059{letter-spacing:9.782928px;}
.ls13_c00059{letter-spacing:11.527200px;}
.ls1_c00059{letter-spacing:12.744000px;}
.ls0_c00059{letter-spacing:54.864000px;}
.sc__c00059{text-shadow:none;}
.sc1_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00059{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc1_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00059{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00059{word-spacing:-25.992000px;}
.ws6_c00059{word-spacing:-19.597451px;}
.ws4_c00059{word-spacing:-19.530657px;}
.ws3_c00059{word-spacing:-19.463862px;}
.ws5_c00059{word-spacing:-19.457183px;}
.ws7_c00059{word-spacing:-19.213200px;}
.ws2_c00059{word-spacing:-18.681840px;}
.ws8_c00059{word-spacing:-18.344880px;}
.ws9_c00059{word-spacing:-17.910227px;}
.wsc_c00059{word-spacing:-17.739827px;}
.wsb_c00059{word-spacing:-17.685056px;}
.wsa_c00059{word-spacing:-17.630284px;}
.wse_c00059{word-spacing:-16.944480px;}
.ws0_c00059{word-spacing:-11.429712px;}
.wsd_c00059{word-spacing:-10.152000px;}
.wsf_c00059{word-spacing:0.000000px;}
._6_c00059{margin-left:-10.857984px;}
._10_c00059{margin-left:-9.498240px;}
._11_c00059{margin-left:-8.419680px;}
._f_c00059{margin-left:-5.372640px;}
._d_c00059{margin-left:-1.101600px;}
._1_c00059{width:1.296000px;}
._2_c00059{width:2.592000px;}
._9_c00059{width:4.320000px;}
._e_c00059{width:5.577120px;}
._4_c00059{width:6.696000px;}
._0_c00059{width:8.064000px;}
._3_c00059{width:10.224000px;}
._5_c00059{width:11.520000px;}
._a_c00059{width:12.672000px;}
._7_c00059{width:15.912000px;}
._8_c00059{width:17.784000px;}
._c_c00059{width:25.488000px;}
._b_c00059{width:30.240000px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs7_c00059{font-size:36.000000px;}
.fs2_c00059{font-size:41.760000px;}
.fs5_c00059{font-size:59.040000px;}
.fs8_c00059{font-size:60.000000px;}
.fs6_c00059{font-size:60.857039px;}
.fs3_c00059{font-size:64.800000px;}
.fs4_c00059{font-size:66.794311px;}
.fs0_c00059{font-size:72.000000px;}
.fs1_c00059{font-size:74.215901px;}
.y0_c00059{bottom:0.000000px;}
.y3_c00059{bottom:2.565000px;}
.y36_c00059{bottom:3.120150px;}
.y35_c00059{bottom:34.744500px;}
.y1_c00059{bottom:54.000000px;}
.y34_c00059{bottom:55.485000px;}
.y33_c00059{bottom:61.605000px;}
.y32_c00059{bottom:72.764640px;}
.y31_c00059{bottom:90.402840px;}
.y30_c00059{bottom:107.686800px;}
.y2f_c00059{bottom:125.325000px;}
.y2e_c00059{bottom:131.445000px;}
.y2d_c00059{bottom:158.085000px;}
.y2c_c00059{bottom:191.926800px;}
.y2b_c00059{bottom:209.565000px;}
.y2a_c00059{bottom:209.566800px;}
.y28_c00059{bottom:227.201040px;}
.y29_c00059{bottom:227.205000px;}
.y27_c00059{bottom:244.485000px;}
.y26_c00059{bottom:277.245000px;}
.y25_c00059{bottom:299.205000px;}
.y24_c00059{bottom:318.285000px;}
.y23_c00059{bottom:337.725000px;}
.y21_c00059{bottom:355.005000px;}
.y22_c00059{bottom:356.805000px;}
.y20_c00059{bottom:391.725000px;}
.y1f_c00059{bottom:427.725000px;}
.y1e_c00059{bottom:448.965000px;}
.y1d_c00059{bottom:469.845000px;}
.y1c_c00059{bottom:490.725000px;}
.y1b_c00059{bottom:511.965000px;}
.y1a_c00059{bottom:532.845000px;}
.y19_c00059{bottom:553.725000px;}
.y18_c00059{bottom:574.965000px;}
.y17_c00059{bottom:595.845000px;}
.y16_c00059{bottom:631.845000px;}
.y15_c00059{bottom:652.725000px;}
.y14_c00059{bottom:673.965000px;}
.y13_c00059{bottom:694.845000px;}
.y12_c00059{bottom:716.085000px;}
.y11_c00059{bottom:736.965000px;}
.y10_c00059{bottom:757.845000px;}
.yf_c00059{bottom:779.085000px;}
.ye_c00059{bottom:799.965000px;}
.yd_c00059{bottom:820.845000px;}
.yc_c00059{bottom:856.845000px;}
.yb_c00059{bottom:878.085000px;}
.ya_c00059{bottom:898.965000px;}
.y9_c00059{bottom:934.965000px;}
.y8_c00059{bottom:955.845000px;}
.y7_c00059{bottom:991.845000px;}
.y6_c00059{bottom:1013.085000px;}
.y5_c00059{bottom:1049.085000px;}
.y4_c00059{bottom:1085.085000px;}
.y2_c00059{bottom:1138.365000px;}
.hb_c00059{height:19.255500px;}
.ha_c00059{height:32.616000px;}
.hc_c00059{height:46.320000px;}
.h9_c00059{height:46.981634px;}
.h7_c00059{height:51.565208px;}
.h8_c00059{height:53.490240px;}
.h4_c00059{height:57.294676px;}
.h6_c00059{height:58.708800px;}
.h3_c00059{height:65.232000px;}
.h5_c00059{height:68.074560px;}
.h2_c00059{height:1201.365000px;}
.h0_c00059{height:1262.835000px;}
.h1_c00059{height:1263.000000px;}
.w7_c00059{width:16.680000px;}
.w3_c00059{width:71.280000px;}
.w5_c00059{width:126.720000px;}
.w4_c00059{width:127.080000px;}
.w6_c00059{width:320.040000px;}
.w2_c00059{width:863.955000px;}
.w0_c00059{width:892.935000px;}
.w1_c00059{width:893.250000px;}
.x0_c00059{left:0.000000px;}
.xd_c00059{left:7.920150px;}
.x1_c00059{left:14.490000px;}
.x14_c00059{left:47.337900px;}
.x19_c00059{left:53.789400px;}
.xf_c00059{left:69.892950px;}
.x1a_c00059{left:99.642300px;}
.x2_c00059{left:113.040150px;}
.x15_c00059{left:117.255300px;}
.xc_c00059{left:119.610000px;}
.x29_c00059{left:127.217700px;}
.x5_c00059{left:140.037600px;}
.x3_c00059{left:150.011700px;}
.x2a_c00059{left:163.052100px;}
.x16_c00059{left:164.939550px;}
.x12_c00059{left:173.097900px;}
.xe_c00059{left:191.610000px;}
.x4_c00059{left:199.474800px;}
.x13_c00059{left:222.172050px;}
.x17_c00059{left:274.034100px;}
.xa_c00059{left:279.068850px;}
.x18_c00059{left:312.495150px;}
.x10_c00059{left:319.410000px;}
.xb_c00059{left:357.115650px;}
.x25_c00059{left:422.824200px;}
.x1b_c00059{left:426.999000px;}
.x11_c00059{left:446.850000px;}
.x26_c00059{left:458.658600px;}
.x1c_c00059{left:463.673550px;}
.x27_c00059{left:479.256600px;}
.x8_c00059{left:502.516500px;}
.x6_c00059{left:516.177600px;}
.x1d_c00059{left:521.041200px;}
.x28_c00059{left:522.605700px;}
.x7_c00059{left:527.175300px;}
.x9_c00059{left:548.523450px;}
.x21_c00059{left:550.341450px;}
.x1e_c00059{left:556.875750px;}
.x22_c00059{left:586.970550px;}
.x1f_c00059{left:649.311750px;}
.x20_c00059{left:692.660850px;}
.x23_c00059{left:715.425600px;}
.x24_c00059{left:750.390000px;}
.x2b_c00059{left:768.255000px;}
@media print{
.v2_c00059{vertical-align:-21.760000pt;}
.v0_c00059{vertical-align:0.000000pt;}
.v1_c00059{vertical-align:26.880000pt;}
.ls12_c00059{letter-spacing:-0.159616pt;}
.ls11_c00059{letter-spacing:0.000000pt;}
.ls24_c00059{letter-spacing:0.128000pt;}
.lsf_c00059{letter-spacing:0.236160pt;}
.ls9_c00059{letter-spacing:0.262400pt;}
.ls26_c00059{letter-spacing:0.283392pt;}
.ls15_c00059{letter-spacing:0.293760pt;}
.ls18_c00059{letter-spacing:0.351360pt;}
.ls4_c00059{letter-spacing:0.354133pt;}
.ls3_c00059{letter-spacing:0.354667pt;}
.ls27_c00059{letter-spacing:0.377856pt;}
.ls25_c00059{letter-spacing:0.425088pt;}
.lsa_c00059{letter-spacing:0.446080pt;}
.lsb_c00059{letter-spacing:0.472320pt;}
.ls7_c00059{letter-spacing:0.581760pt;}
.ls5_c00059{letter-spacing:0.593280pt;}
.ls1b_c00059{letter-spacing:0.611539pt;}
.ls22_c00059{letter-spacing:0.614016pt;}
.ls1d_c00059{letter-spacing:0.619264pt;}
.lsd_c00059{letter-spacing:0.632913pt;}
.ls21_c00059{letter-spacing:0.661248pt;}
.ls20_c00059{letter-spacing:0.681599pt;}
.ls1e_c00059{letter-spacing:0.708480pt;}
.ls23_c00059{letter-spacing:0.730284pt;}
.ls14_c00059{letter-spacing:0.766080pt;}
.ls16_c00059{letter-spacing:0.771840pt;}
.ls8_c00059{letter-spacing:0.789657pt;}
.ls6_c00059{letter-spacing:0.795594pt;}
.ls19_c00059{letter-spacing:0.854967pt;}
.lsc_c00059{letter-spacing:0.881751pt;}
.ls1a_c00059{letter-spacing:0.914340pt;}
.ls1c_c00059{letter-spacing:1.065600pt;}
.ls17_c00059{letter-spacing:1.098395pt;}
.ls1f_c00059{letter-spacing:5.032832pt;}
.ls2_c00059{letter-spacing:5.312000pt;}
.ls10_c00059{letter-spacing:5.475484pt;}
.lse_c00059{letter-spacing:8.695936pt;}
.ls13_c00059{letter-spacing:10.246400pt;}
.ls1_c00059{letter-spacing:11.328000pt;}
.ls0_c00059{letter-spacing:48.768000pt;}
.ws1_c00059{word-spacing:-23.104000pt;}
.ws6_c00059{word-spacing:-17.419956pt;}
.ws4_c00059{word-spacing:-17.360584pt;}
.ws3_c00059{word-spacing:-17.301211pt;}
.ws5_c00059{word-spacing:-17.295274pt;}
.ws7_c00059{word-spacing:-17.078400pt;}
.ws2_c00059{word-spacing:-16.606080pt;}
.ws8_c00059{word-spacing:-16.306560pt;}
.ws9_c00059{word-spacing:-15.920201pt;}
.wsc_c00059{word-spacing:-15.768735pt;}
.wsb_c00059{word-spacing:-15.720049pt;}
.wsa_c00059{word-spacing:-15.671364pt;}
.wse_c00059{word-spacing:-15.061760pt;}
.ws0_c00059{word-spacing:-10.159744pt;}
.wsd_c00059{word-spacing:-9.024000pt;}
.wsf_c00059{word-spacing:0.000000pt;}
._6_c00059{margin-left:-9.651541pt;}
._10_c00059{margin-left:-8.442880pt;}
._11_c00059{margin-left:-7.484160pt;}
._f_c00059{margin-left:-4.775680pt;}
._d_c00059{margin-left:-0.979200pt;}
._1_c00059{width:1.152000pt;}
._2_c00059{width:2.304000pt;}
._9_c00059{width:3.840000pt;}
._e_c00059{width:4.957440pt;}
._4_c00059{width:5.952000pt;}
._0_c00059{width:7.168000pt;}
._3_c00059{width:9.088000pt;}
._5_c00059{width:10.240000pt;}
._a_c00059{width:11.264000pt;}
._7_c00059{width:14.144000pt;}
._8_c00059{width:15.808000pt;}
._c_c00059{width:22.656000pt;}
._b_c00059{width:26.880000pt;}
.fs7_c00059{font-size:32.000000pt;}
.fs2_c00059{font-size:37.120000pt;}
.fs5_c00059{font-size:52.480000pt;}
.fs8_c00059{font-size:53.333333pt;}
.fs6_c00059{font-size:54.095146pt;}
.fs3_c00059{font-size:57.600000pt;}
.fs4_c00059{font-size:59.372721pt;}
.fs0_c00059{font-size:64.000000pt;}
.fs1_c00059{font-size:65.969690pt;}
.y0_c00059{bottom:0.000000pt;}
.y3_c00059{bottom:2.280000pt;}
.y36_c00059{bottom:2.773467pt;}
.y35_c00059{bottom:30.884000pt;}
.y1_c00059{bottom:48.000000pt;}
.y34_c00059{bottom:49.320000pt;}
.y33_c00059{bottom:54.760000pt;}
.y32_c00059{bottom:64.679680pt;}
.y31_c00059{bottom:80.358080pt;}
.y30_c00059{bottom:95.721600pt;}
.y2f_c00059{bottom:111.400000pt;}
.y2e_c00059{bottom:116.840000pt;}
.y2d_c00059{bottom:140.520000pt;}
.y2c_c00059{bottom:170.601600pt;}
.y2b_c00059{bottom:186.280000pt;}
.y2a_c00059{bottom:186.281600pt;}
.y28_c00059{bottom:201.956480pt;}
.y29_c00059{bottom:201.960000pt;}
.y27_c00059{bottom:217.320000pt;}
.y26_c00059{bottom:246.440000pt;}
.y25_c00059{bottom:265.960000pt;}
.y24_c00059{bottom:282.920000pt;}
.y23_c00059{bottom:300.200000pt;}
.y21_c00059{bottom:315.560000pt;}
.y22_c00059{bottom:317.160000pt;}
.y20_c00059{bottom:348.200000pt;}
.y1f_c00059{bottom:380.200000pt;}
.y1e_c00059{bottom:399.080000pt;}
.y1d_c00059{bottom:417.640000pt;}
.y1c_c00059{bottom:436.200000pt;}
.y1b_c00059{bottom:455.080000pt;}
.y1a_c00059{bottom:473.640000pt;}
.y19_c00059{bottom:492.200000pt;}
.y18_c00059{bottom:511.080000pt;}
.y17_c00059{bottom:529.640000pt;}
.y16_c00059{bottom:561.640000pt;}
.y15_c00059{bottom:580.200000pt;}
.y14_c00059{bottom:599.080000pt;}
.y13_c00059{bottom:617.640000pt;}
.y12_c00059{bottom:636.520000pt;}
.y11_c00059{bottom:655.080000pt;}
.y10_c00059{bottom:673.640000pt;}
.yf_c00059{bottom:692.520000pt;}
.ye_c00059{bottom:711.080000pt;}
.yd_c00059{bottom:729.640000pt;}
.yc_c00059{bottom:761.640000pt;}
.yb_c00059{bottom:780.520000pt;}
.ya_c00059{bottom:799.080000pt;}
.y9_c00059{bottom:831.080000pt;}
.y8_c00059{bottom:849.640000pt;}
.y7_c00059{bottom:881.640000pt;}
.y6_c00059{bottom:900.520000pt;}
.y5_c00059{bottom:932.520000pt;}
.y4_c00059{bottom:964.520000pt;}
.y2_c00059{bottom:1011.880000pt;}
.hb_c00059{height:17.116000pt;}
.ha_c00059{height:28.992000pt;}
.hc_c00059{height:41.173333pt;}
.h9_c00059{height:41.761453pt;}
.h7_c00059{height:45.835741pt;}
.h8_c00059{height:47.546880pt;}
.h4_c00059{height:50.928601pt;}
.h6_c00059{height:52.185600pt;}
.h3_c00059{height:57.984000pt;}
.h5_c00059{height:60.510720pt;}
.h2_c00059{height:1067.880000pt;}
.h0_c00059{height:1122.520000pt;}
.h1_c00059{height:1122.666667pt;}
.w7_c00059{width:14.826667pt;}
.w3_c00059{width:63.360000pt;}
.w5_c00059{width:112.640000pt;}
.w4_c00059{width:112.960000pt;}
.w6_c00059{width:284.480000pt;}
.w2_c00059{width:767.960000pt;}
.w0_c00059{width:793.720000pt;}
.w1_c00059{width:794.000000pt;}
.x0_c00059{left:0.000000pt;}
.xd_c00059{left:7.040133pt;}
.x1_c00059{left:12.880000pt;}
.x14_c00059{left:42.078133pt;}
.x19_c00059{left:47.812800pt;}
.xf_c00059{left:62.127067pt;}
.x1a_c00059{left:88.570933pt;}
.x2_c00059{left:100.480133pt;}
.x15_c00059{left:104.226933pt;}
.xc_c00059{left:106.320000pt;}
.x29_c00059{left:113.082400pt;}
.x5_c00059{left:124.477867pt;}
.x3_c00059{left:133.343733pt;}
.x2a_c00059{left:144.935200pt;}
.x16_c00059{left:146.612933pt;}
.x12_c00059{left:153.864800pt;}
.xe_c00059{left:170.320000pt;}
.x4_c00059{left:177.310933pt;}
.x13_c00059{left:197.486267pt;}
.x17_c00059{left:243.585867pt;}
.xa_c00059{left:248.061200pt;}
.x18_c00059{left:277.773467pt;}
.x10_c00059{left:283.920000pt;}
.xb_c00059{left:317.436133pt;}
.x25_c00059{left:375.843733pt;}
.x1b_c00059{left:379.554667pt;}
.x11_c00059{left:397.200000pt;}
.x26_c00059{left:407.696533pt;}
.x1c_c00059{left:412.154267pt;}
.x27_c00059{left:426.005867pt;}
.x8_c00059{left:446.681333pt;}
.x6_c00059{left:458.824533pt;}
.x1d_c00059{left:463.147733pt;}
.x28_c00059{left:464.538400pt;}
.x7_c00059{left:468.600267pt;}
.x9_c00059{left:487.576400pt;}
.x21_c00059{left:489.192400pt;}
.x1e_c00059{left:495.000667pt;}
.x22_c00059{left:521.751600pt;}
.x1f_c00059{left:577.166000pt;}
.x20_c00059{left:615.698533pt;}
.x23_c00059{left:635.933867pt;}
.x24_c00059{left:667.013333pt;}
.x2b_c00059{left:682.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_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_2a392f33668ac3b4b03cdb95.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_cd40844b90e9fa1556c57eb8.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;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:ff3_c00060;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_1f3df6ea4d06ee47381d3fe1.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:0.787000;font-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_c00060{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00060{vertical-align:-24.480000px;}
.v0_c00060{vertical-align:0.000000px;}
.v1_c00060{vertical-align:30.240000px;}
.ls11_c00060{letter-spacing:-0.179568px;}
.ls8_c00060{letter-spacing:0.000000px;}
.ls12_c00060{letter-spacing:0.144000px;}
.ls9_c00060{letter-spacing:0.265680px;}
.ls3_c00060{letter-spacing:0.295200px;}
.ls15_c00060{letter-spacing:0.318816px;}
.lsf_c00060{letter-spacing:0.371952px;}
.ls17_c00060{letter-spacing:0.425088px;}
.ls19_c00060{letter-spacing:0.438171px;}
.lsd_c00060{letter-spacing:0.478224px;}
.ls13_c00060{letter-spacing:0.492942px;}
.ls4_c00060{letter-spacing:0.513648px;}
.ls1_c00060{letter-spacing:0.531360px;}
.ls2_c00060{letter-spacing:0.543168px;}
.ls1a_c00060{letter-spacing:0.547713px;}
.lsc_c00060{letter-spacing:0.584496px;}
.lsa_c00060{letter-spacing:0.690768px;}
.ls0_c00060{letter-spacing:0.712027px;}
.lse_c00060{letter-spacing:0.743904px;}
.lsb_c00060{letter-spacing:0.797040px;}
.ls18_c00060{letter-spacing:1.499616px;}
.ls16_c00060{letter-spacing:3.294432px;}
.ls14_c00060{letter-spacing:4.262688px;}
.ls10_c00060{letter-spacing:5.430672px;}
.ls5_c00060{letter-spacing:5.975400px;}
.ls6_c00060{letter-spacing:5.976000px;}
.ls7_c00060{letter-spacing:6.159920px;}
.sc__c00060{text-shadow:none;}
.sc1_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00060{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc1_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00060{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00060{word-spacing:-21.043152px;}
.ws0_c00060{word-spacing:-17.630284px;}
.ws8_c00060{word-spacing:-17.465970px;}
.ws7_c00060{word-spacing:-17.411199px;}
.ws1_c00060{word-spacing:-17.103888px;}
.ws2_c00060{word-spacing:-16.997616px;}
.ws6_c00060{word-spacing:-16.944480px;}
.ws4_c00060{word-spacing:-11.429712px;}
.ws5_c00060{word-spacing:-10.152000px;}
.ws9_c00060{word-spacing:0.000000px;}
._d_c00060{margin-left:-3.830400px;}
._e_c00060{margin-left:-2.556432px;}
._1_c00060{margin-left:-1.092240px;}
._3_c00060{width:1.151280px;}
._8_c00060{width:2.568240px;}
._4_c00060{width:4.103280px;}
._5_c00060{width:5.396256px;}
._2_c00060{width:7.261920px;}
._0_c00060{width:8.678880px;}
._9_c00060{width:10.275840px;}
._6_c00060{width:12.044160px;}
._7_c00060{width:13.467024px;}
._b_c00060{width:14.612976px;}
._a_c00060{width:15.768000px;}
._c_c00060{width:18.648000px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs6_c00060{font-size:36.000000px;}
.fs5_c00060{font-size:41.760000px;}
.fs4_c00060{font-size:56.160000px;}
.fs2_c00060{font-size:59.040000px;}
.fs7_c00060{font-size:60.000000px;}
.fs3_c00060{font-size:60.857039px;}
.fs0_c00060{font-size:72.000000px;}
.fs1_c00060{font-size:74.215901px;}
.y0_c00060{bottom:0.000000px;}
.y3_c00060{bottom:2.565000px;}
.y36_c00060{bottom:3.120150px;}
.y35_c00060{bottom:34.744500px;}
.y1_c00060{bottom:54.000000px;}
.y34_c00060{bottom:55.480680px;}
.y33_c00060{bottom:72.764640px;}
.y32_c00060{bottom:90.402840px;}
.y31_c00060{bottom:107.686800px;}
.y30_c00060{bottom:125.325000px;}
.y2f_c00060{bottom:131.445000px;}
.y2e_c00060{bottom:142.964640px;}
.y2d_c00060{bottom:160.248600px;}
.y2c_c00060{bottom:177.886800px;}
.y2b_c00060{bottom:201.645000px;}
.y2a_c00060{bottom:212.805000px;}
.y29_c00060{bottom:218.925000px;}
.y28_c00060{bottom:230.445000px;}
.y27_c00060{bottom:236.565000px;}
.y26_c00060{bottom:263.205000px;}
.y25_c00060{bottom:333.765000px;}
.y24_c00060{bottom:354.645000px;}
.y23_c00060{bottom:375.885000px;}
.y22_c00060{bottom:396.765000px;}
.y21_c00060{bottom:418.005000px;}
.y20_c00060{bottom:454.005000px;}
.y1f_c00060{bottom:474.885000px;}
.y1e_c00060{bottom:495.765000px;}
.y1d_c00060{bottom:531.765000px;}
.y1c_c00060{bottom:553.005000px;}
.y1b_c00060{bottom:573.885000px;}
.y1a_c00060{bottom:594.765000px;}
.y19_c00060{bottom:616.005000px;}
.y18_c00060{bottom:636.885000px;}
.y17_c00060{bottom:657.765000px;}
.y16_c00060{bottom:693.765000px;}
.y15_c00060{bottom:715.005000px;}
.y14_c00060{bottom:735.885000px;}
.y13_c00060{bottom:756.765000px;}
.y12_c00060{bottom:778.005000px;}
.y11_c00060{bottom:798.885000px;}
.y10_c00060{bottom:819.765000px;}
.yf_c00060{bottom:841.005000px;}
.ye_c00060{bottom:861.885000px;}
.yd_c00060{bottom:883.125000px;}
.yc_c00060{bottom:919.125000px;}
.yb_c00060{bottom:955.125000px;}
.ya_c00060{bottom:983.202480px;}
.y9_c00060{bottom:1000.840680px;}
.y8_c00060{bottom:1018.124640px;}
.y7_c00060{bottom:1035.762840px;}
.y6_c00060{bottom:1053.401040px;}
.y5_c00060{bottom:1070.685000px;}
.y4_c00060{bottom:1088.325000px;}
.y2_c00060{bottom:1138.365000px;}
.h9_c00060{height:19.255500px;}
.h8_c00060{height:32.616000px;}
.ha_c00060{height:46.320000px;}
.h6_c00060{height:46.981634px;}
.h5_c00060{height:53.490240px;}
.h4_c00060{height:57.294676px;}
.h3_c00060{height:65.232000px;}
.h7_c00060{height:68.074560px;}
.h2_c00060{height:1201.365000px;}
.h0_c00060{height:1262.835000px;}
.h1_c00060{height:1263.000000px;}
.w3_c00060{width:16.680000px;}
.w2_c00060{width:863.955000px;}
.w0_c00060{width:892.935000px;}
.w1_c00060{width:893.250000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:14.490000px;}
.x2_c00060{left:113.040150px;}
.x11_c00060{left:127.217700px;}
.x5_c00060{left:133.034550px;}
.x13_c00060{left:148.669500px;}
.x3_c00060{left:150.011700px;}
.xc_c00060{left:158.057400px;}
.x12_c00060{left:161.386950px;}
.x6_c00060{left:169.731450px;}
.x4_c00060{left:199.474800px;}
.xd_c00060{left:214.036350px;}
.x7_c00060{left:249.462900px;}
.x14_c00060{left:261.489300px;}
.x15_c00060{left:317.433150px;}
.x10_c00060{left:356.099100px;}
.x16_c00060{left:373.276200px;}
.x8_c00060{left:456.673350px;}
.x9_c00060{left:482.664900px;}
.xa_c00060{left:556.222350px;}
.xe_c00060{left:578.629050px;}
.x17_c00060{left:600.474600px;}
.x18_c00060{left:620.776950px;}
.xb_c00060{left:623.180850px;}
.xf_c00060{left:645.641550px;}
.x19_c00060{left:768.255000px;}
@media print{
.v2_c00060{vertical-align:-21.760000pt;}
.v0_c00060{vertical-align:0.000000pt;}
.v1_c00060{vertical-align:26.880000pt;}
.ls11_c00060{letter-spacing:-0.159616pt;}
.ls8_c00060{letter-spacing:0.000000pt;}
.ls12_c00060{letter-spacing:0.128000pt;}
.ls9_c00060{letter-spacing:0.236160pt;}
.ls3_c00060{letter-spacing:0.262400pt;}
.ls15_c00060{letter-spacing:0.283392pt;}
.lsf_c00060{letter-spacing:0.330624pt;}
.ls17_c00060{letter-spacing:0.377856pt;}
.ls19_c00060{letter-spacing:0.389485pt;}
.lsd_c00060{letter-spacing:0.425088pt;}
.ls13_c00060{letter-spacing:0.438171pt;}
.ls4_c00060{letter-spacing:0.456576pt;}
.ls1_c00060{letter-spacing:0.472320pt;}
.ls2_c00060{letter-spacing:0.482816pt;}
.ls1a_c00060{letter-spacing:0.486856pt;}
.lsc_c00060{letter-spacing:0.519552pt;}
.lsa_c00060{letter-spacing:0.614016pt;}
.ls0_c00060{letter-spacing:0.632913pt;}
.lse_c00060{letter-spacing:0.661248pt;}
.lsb_c00060{letter-spacing:0.708480pt;}
.ls18_c00060{letter-spacing:1.332992pt;}
.ls16_c00060{letter-spacing:2.928384pt;}
.ls14_c00060{letter-spacing:3.789056pt;}
.ls10_c00060{letter-spacing:4.827264pt;}
.ls5_c00060{letter-spacing:5.311467pt;}
.ls6_c00060{letter-spacing:5.312000pt;}
.ls7_c00060{letter-spacing:5.475484pt;}
.ws3_c00060{word-spacing:-18.705024pt;}
.ws0_c00060{word-spacing:-15.671364pt;}
.ws8_c00060{word-spacing:-15.525307pt;}
.ws7_c00060{word-spacing:-15.476621pt;}
.ws1_c00060{word-spacing:-15.203456pt;}
.ws2_c00060{word-spacing:-15.108992pt;}
.ws6_c00060{word-spacing:-15.061760pt;}
.ws4_c00060{word-spacing:-10.159744pt;}
.ws5_c00060{word-spacing:-9.024000pt;}
.ws9_c00060{word-spacing:0.000000pt;}
._d_c00060{margin-left:-3.404800pt;}
._e_c00060{margin-left:-2.272384pt;}
._1_c00060{margin-left:-0.970880pt;}
._3_c00060{width:1.023360pt;}
._8_c00060{width:2.282880pt;}
._4_c00060{width:3.647360pt;}
._5_c00060{width:4.796672pt;}
._2_c00060{width:6.455040pt;}
._0_c00060{width:7.714560pt;}
._9_c00060{width:9.134080pt;}
._6_c00060{width:10.705920pt;}
._7_c00060{width:11.970688pt;}
._b_c00060{width:12.989312pt;}
._a_c00060{width:14.016000pt;}
._c_c00060{width:16.576000pt;}
.fs6_c00060{font-size:32.000000pt;}
.fs5_c00060{font-size:37.120000pt;}
.fs4_c00060{font-size:49.920000pt;}
.fs2_c00060{font-size:52.480000pt;}
.fs7_c00060{font-size:53.333333pt;}
.fs3_c00060{font-size:54.095146pt;}
.fs0_c00060{font-size:64.000000pt;}
.fs1_c00060{font-size:65.969690pt;}
.y0_c00060{bottom:0.000000pt;}
.y3_c00060{bottom:2.280000pt;}
.y36_c00060{bottom:2.773467pt;}
.y35_c00060{bottom:30.884000pt;}
.y1_c00060{bottom:48.000000pt;}
.y34_c00060{bottom:49.316160pt;}
.y33_c00060{bottom:64.679680pt;}
.y32_c00060{bottom:80.358080pt;}
.y31_c00060{bottom:95.721600pt;}
.y30_c00060{bottom:111.400000pt;}
.y2f_c00060{bottom:116.840000pt;}
.y2e_c00060{bottom:127.079680pt;}
.y2d_c00060{bottom:142.443200pt;}
.y2c_c00060{bottom:158.121600pt;}
.y2b_c00060{bottom:179.240000pt;}
.y2a_c00060{bottom:189.160000pt;}
.y29_c00060{bottom:194.600000pt;}
.y28_c00060{bottom:204.840000pt;}
.y27_c00060{bottom:210.280000pt;}
.y26_c00060{bottom:233.960000pt;}
.y25_c00060{bottom:296.680000pt;}
.y24_c00060{bottom:315.240000pt;}
.y23_c00060{bottom:334.120000pt;}
.y22_c00060{bottom:352.680000pt;}
.y21_c00060{bottom:371.560000pt;}
.y20_c00060{bottom:403.560000pt;}
.y1f_c00060{bottom:422.120000pt;}
.y1e_c00060{bottom:440.680000pt;}
.y1d_c00060{bottom:472.680000pt;}
.y1c_c00060{bottom:491.560000pt;}
.y1b_c00060{bottom:510.120000pt;}
.y1a_c00060{bottom:528.680000pt;}
.y19_c00060{bottom:547.560000pt;}
.y18_c00060{bottom:566.120000pt;}
.y17_c00060{bottom:584.680000pt;}
.y16_c00060{bottom:616.680000pt;}
.y15_c00060{bottom:635.560000pt;}
.y14_c00060{bottom:654.120000pt;}
.y13_c00060{bottom:672.680000pt;}
.y12_c00060{bottom:691.560000pt;}
.y11_c00060{bottom:710.120000pt;}
.y10_c00060{bottom:728.680000pt;}
.yf_c00060{bottom:747.560000pt;}
.ye_c00060{bottom:766.120000pt;}
.yd_c00060{bottom:785.000000pt;}
.yc_c00060{bottom:817.000000pt;}
.yb_c00060{bottom:849.000000pt;}
.ya_c00060{bottom:873.957760pt;}
.y9_c00060{bottom:889.636160pt;}
.y8_c00060{bottom:904.999680pt;}
.y7_c00060{bottom:920.678080pt;}
.y6_c00060{bottom:936.356480pt;}
.y5_c00060{bottom:951.720000pt;}
.y4_c00060{bottom:967.400000pt;}
.y2_c00060{bottom:1011.880000pt;}
.h9_c00060{height:17.116000pt;}
.h8_c00060{height:28.992000pt;}
.ha_c00060{height:41.173333pt;}
.h6_c00060{height:41.761453pt;}
.h5_c00060{height:47.546880pt;}
.h4_c00060{height:50.928601pt;}
.h3_c00060{height:57.984000pt;}
.h7_c00060{height:60.510720pt;}
.h2_c00060{height:1067.880000pt;}
.h0_c00060{height:1122.520000pt;}
.h1_c00060{height:1122.666667pt;}
.w3_c00060{width:14.826667pt;}
.w2_c00060{width:767.960000pt;}
.w0_c00060{width:793.720000pt;}
.w1_c00060{width:794.000000pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:12.880000pt;}
.x2_c00060{left:100.480133pt;}
.x11_c00060{left:113.082400pt;}
.x5_c00060{left:118.252933pt;}
.x13_c00060{left:132.150667pt;}
.x3_c00060{left:133.343733pt;}
.xc_c00060{left:140.495467pt;}
.x12_c00060{left:143.455067pt;}
.x6_c00060{left:150.872400pt;}
.x4_c00060{left:177.310933pt;}
.xd_c00060{left:190.254533pt;}
.x7_c00060{left:221.744800pt;}
.x14_c00060{left:232.434933pt;}
.x15_c00060{left:282.162800pt;}
.x10_c00060{left:316.532533pt;}
.x16_c00060{left:331.801067pt;}
.x8_c00060{left:405.931867pt;}
.x9_c00060{left:429.035467pt;}
.xa_c00060{left:494.419867pt;}
.xe_c00060{left:514.336933pt;}
.x17_c00060{left:533.755200pt;}
.x18_c00060{left:551.801733pt;}
.xb_c00060{left:553.938533pt;}
.xf_c00060{left:573.903600pt;}
.x19_c00060{left:682.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_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_9a2fd442e5be263aff02c190.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.134000;font-style:normal;font-weight:normal;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_cfde47ee09c8f7a4794357a5.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;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:ff3_c00061;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_304819c9075bff775a03b00f.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:0.787000;font-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_c00061{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00061{vertical-align:-24.480000px;}
.v0_c00061{vertical-align:0.000000px;}
.v1_c00061{vertical-align:30.240000px;}
.ls6_c00061{letter-spacing:-0.179568px;}
.ls5_c00061{letter-spacing:0.000000px;}
.ls9_c00061{letter-spacing:0.144000px;}
.lsb_c00061{letter-spacing:0.265680px;}
.lsd_c00061{letter-spacing:0.273857px;}
.lsf_c00061{letter-spacing:0.318816px;}
.ls2_c00061{letter-spacing:0.324720px;}
.ls15_c00061{letter-spacing:0.328628px;}
.ls17_c00061{letter-spacing:0.371952px;}
.ls11_c00061{letter-spacing:0.425088px;}
.ls13_c00061{letter-spacing:0.438171px;}
.lse_c00061{letter-spacing:0.478224px;}
.ls14_c00061{letter-spacing:0.492942px;}
.ls3_c00061{letter-spacing:0.531360px;}
.lsc_c00061{letter-spacing:0.547713px;}
.ls1d_c00061{letter-spacing:0.690768px;}
.ls12_c00061{letter-spacing:0.712027px;}
.ls19_c00061{letter-spacing:0.962352px;}
.ls1c_c00061{letter-spacing:1.068624px;}
.lsa_c00061{letter-spacing:1.529136px;}
.ls1a_c00061{letter-spacing:3.749040px;}
.ls18_c00061{letter-spacing:3.772656px;}
.ls10_c00061{letter-spacing:4.445712px;}
.ls7_c00061{letter-spacing:5.335200px;}
.ls0_c00061{letter-spacing:5.976000px;}
.ls1_c00061{letter-spacing:6.007800px;}
.ls4_c00061{letter-spacing:6.159920px;}
.ls1b_c00061{letter-spacing:6.594768px;}
.ls16_c00061{letter-spacing:8.537184px;}
.ls8_c00061{letter-spacing:33.890400px;}
.sc__c00061{text-shadow:none;}
.sc1_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00061{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc1_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00061{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00061{word-spacing:-20.947680px;}
.ws1_c00061{word-spacing:-20.016000px;}
.ws5_c00061{word-spacing:-16.944480px;}
.ws4_c00061{word-spacing:-16.891344px;}
.ws0_c00061{word-spacing:-11.429712px;}
.ws3_c00061{word-spacing:-10.152000px;}
.ws6_c00061{word-spacing:0.000000px;}
._17_c00061{margin-left:-8.258400px;}
._18_c00061{margin-left:-7.194240px;}
._19_c00061{margin-left:-5.916672px;}
._12_c00061{margin-left:-4.779648px;}
._11_c00061{margin-left:-3.632256px;}
._10_c00061{margin-left:-2.233440px;}
._f_c00061{margin-left:-1.055520px;}
._2_c00061{width:1.008000px;}
._16_c00061{width:2.695703px;}
._d_c00061{width:3.816000px;}
._e_c00061{width:7.128000px;}
._0_c00061{width:8.136000px;}
._9_c00061{width:9.216000px;}
._4_c00061{width:10.224000px;}
._13_c00061{width:11.378880px;}
._14_c00061{width:12.504960px;}
._5_c00061{width:13.680000px;}
._15_c00061{width:15.228000px;}
._a_c00061{width:18.144000px;}
._1_c00061{width:22.608000px;}
._8_c00061{width:23.831352px;}
._7_c00061{width:24.840216px;}
._6_c00061{width:27.648000px;}
._b_c00061{width:33.912000px;}
._c_c00061{width:34.955689px;}
._3_c00061{width:43.128000px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs4_c00061{font-size:36.000000px;}
.fs2_c00061{font-size:41.760000px;}
.fs3_c00061{font-size:56.160000px;}
.fs5_c00061{font-size:59.040000px;}
.fs7_c00061{font-size:60.000000px;}
.fs6_c00061{font-size:60.857039px;}
.fs0_c00061{font-size:72.000000px;}
.fs1_c00061{font-size:74.215901px;}
.y0_c00061{bottom:0.000000px;}
.y3_c00061{bottom:2.565000px;}
.y3c_c00061{bottom:3.120150px;}
.y3b_c00061{bottom:34.744500px;}
.y1_c00061{bottom:54.000000px;}
.y3a_c00061{bottom:55.481040px;}
.y39_c00061{bottom:78.885000px;}
.y38_c00061{bottom:90.401040px;}
.y37_c00061{bottom:113.805000px;}
.y36_c00061{bottom:125.322840px;}
.y35_c00061{bottom:142.961040px;}
.y34_c00061{bottom:166.365000px;}
.y33_c00061{bottom:184.005000px;}
.y32_c00061{bottom:195.522120px;}
.y31_c00061{bottom:212.806080px;}
.y30_c00061{bottom:230.444280px;}
.y2f_c00061{bottom:247.728240px;}
.y2e_c00061{bottom:265.366440px;}
.y2d_c00061{bottom:283.004640px;}
.y2c_c00061{bottom:300.288600px;}
.y2b_c00061{bottom:317.926800px;}
.y2a_c00061{bottom:341.685000px;}
.y29_c00061{bottom:352.845000px;}
.y28_c00061{bottom:352.846440px;}
.y27_c00061{bottom:370.484640px;}
.y26_c00061{bottom:387.768600px;}
.y25_c00061{bottom:405.406800px;}
.y23_c00061{bottom:423.038520px;}
.y24_c00061{bottom:423.045000px;}
.y22_c00061{bottom:440.322480px;}
.y21_c00061{bottom:457.960680px;}
.y20_c00061{bottom:475.598880px;}
.y1f_c00061{bottom:492.882840px;}
.y1e_c00061{bottom:510.521040px;}
.y1d_c00061{bottom:527.805000px;}
.y1c_c00061{bottom:527.806800px;}
.y1b_c00061{bottom:545.445000px;}
.y1a_c00061{bottom:545.446800px;}
.y19_c00061{bottom:569.205000px;}
.y18_c00061{bottom:595.845000px;}
.y17_c00061{bottom:625.725000px;}
.y16_c00061{bottom:646.965000px;}
.y15_c00061{bottom:667.845000px;}
.y14_c00061{bottom:689.085000px;}
.y13_c00061{bottom:725.085000px;}
.y12_c00061{bottom:745.965000px;}
.y11_c00061{bottom:766.845000px;}
.y10_c00061{bottom:802.845000px;}
.yf_c00061{bottom:838.845000px;}
.ye_c00061{bottom:874.845000px;}
.yd_c00061{bottom:896.085000px;}
.yc_c00061{bottom:916.965000px;}
.yb_c00061{bottom:937.845000px;}
.ya_c00061{bottom:959.085000px;}
.y9_c00061{bottom:979.965000px;}
.y8_c00061{bottom:1000.845000px;}
.y7_c00061{bottom:1022.085000px;}
.y6_c00061{bottom:1042.965000px;}
.y5_c00061{bottom:1063.845000px;}
.y4_c00061{bottom:1085.085000px;}
.y2_c00061{bottom:1138.365000px;}
.h9_c00061{height:19.255500px;}
.h6_c00061{height:32.616000px;}
.ha_c00061{height:46.320000px;}
.h8_c00061{height:46.981634px;}
.h7_c00061{height:53.490240px;}
.h4_c00061{height:57.294676px;}
.h3_c00061{height:65.232000px;}
.h5_c00061{height:68.074560px;}
.h2_c00061{height:1201.365000px;}
.h0_c00061{height:1262.835000px;}
.h1_c00061{height:1263.000000px;}
.w3_c00061{width:16.680000px;}
.w2_c00061{width:863.955000px;}
.w0_c00061{width:892.935000px;}
.w1_c00061{width:893.250000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:14.490000px;}
.x2_c00061{left:113.040150px;}
.x3_c00061{left:150.011700px;}
.x4_c00061{left:199.474800px;}
.xd_c00061{left:418.924050px;}
.xe_c00061{left:463.112550px;}
.xf_c00061{left:471.452250px;}
.x5_c00061{left:518.596800px;}
.xc_c00061{left:542.365650px;}
.x6_c00061{left:620.470500px;}
.xa_c00061{left:644.269800px;}
.x7_c00061{left:658.866600px;}
.x8_c00061{left:681.139500px;}
.xb_c00061{left:682.906500px;}
.x9_c00061{left:746.220300px;}
.x10_c00061{left:768.255000px;}
@media print{
.v2_c00061{vertical-align:-21.760000pt;}
.v0_c00061{vertical-align:0.000000pt;}
.v1_c00061{vertical-align:26.880000pt;}
.ls6_c00061{letter-spacing:-0.159616pt;}
.ls5_c00061{letter-spacing:0.000000pt;}
.ls9_c00061{letter-spacing:0.128000pt;}
.lsb_c00061{letter-spacing:0.236160pt;}
.lsd_c00061{letter-spacing:0.243428pt;}
.lsf_c00061{letter-spacing:0.283392pt;}
.ls2_c00061{letter-spacing:0.288640pt;}
.ls15_c00061{letter-spacing:0.292114pt;}
.ls17_c00061{letter-spacing:0.330624pt;}
.ls11_c00061{letter-spacing:0.377856pt;}
.ls13_c00061{letter-spacing:0.389485pt;}
.lse_c00061{letter-spacing:0.425088pt;}
.ls14_c00061{letter-spacing:0.438171pt;}
.ls3_c00061{letter-spacing:0.472320pt;}
.lsc_c00061{letter-spacing:0.486856pt;}
.ls1d_c00061{letter-spacing:0.614016pt;}
.ls12_c00061{letter-spacing:0.632913pt;}
.ls19_c00061{letter-spacing:0.855424pt;}
.ls1c_c00061{letter-spacing:0.949888pt;}
.lsa_c00061{letter-spacing:1.359232pt;}
.ls1a_c00061{letter-spacing:3.332480pt;}
.ls18_c00061{letter-spacing:3.353472pt;}
.ls10_c00061{letter-spacing:3.951744pt;}
.ls7_c00061{letter-spacing:4.742400pt;}
.ls0_c00061{letter-spacing:5.312000pt;}
.ls1_c00061{letter-spacing:5.340267pt;}
.ls4_c00061{letter-spacing:5.475484pt;}
.ls1b_c00061{letter-spacing:5.862016pt;}
.ls16_c00061{letter-spacing:7.588608pt;}
.ls8_c00061{letter-spacing:30.124800pt;}
.ws2_c00061{word-spacing:-18.620160pt;}
.ws1_c00061{word-spacing:-17.792000pt;}
.ws5_c00061{word-spacing:-15.061760pt;}
.ws4_c00061{word-spacing:-15.014528pt;}
.ws0_c00061{word-spacing:-10.159744pt;}
.ws3_c00061{word-spacing:-9.024000pt;}
.ws6_c00061{word-spacing:0.000000pt;}
._17_c00061{margin-left:-7.340800pt;}
._18_c00061{margin-left:-6.394880pt;}
._19_c00061{margin-left:-5.259264pt;}
._12_c00061{margin-left:-4.248576pt;}
._11_c00061{margin-left:-3.228672pt;}
._10_c00061{margin-left:-1.985280pt;}
._f_c00061{margin-left:-0.938240pt;}
._2_c00061{width:0.896000pt;}
._16_c00061{width:2.396181pt;}
._d_c00061{width:3.392000pt;}
._e_c00061{width:6.336000pt;}
._0_c00061{width:7.232000pt;}
._9_c00061{width:8.192000pt;}
._4_c00061{width:9.088000pt;}
._13_c00061{width:10.114560pt;}
._14_c00061{width:11.115520pt;}
._5_c00061{width:12.160000pt;}
._15_c00061{width:13.536000pt;}
._a_c00061{width:16.128000pt;}
._1_c00061{width:20.096000pt;}
._8_c00061{width:21.183424pt;}
._7_c00061{width:22.080192pt;}
._6_c00061{width:24.576000pt;}
._b_c00061{width:30.144000pt;}
._c_c00061{width:31.071724pt;}
._3_c00061{width:38.336000pt;}
.fs4_c00061{font-size:32.000000pt;}
.fs2_c00061{font-size:37.120000pt;}
.fs3_c00061{font-size:49.920000pt;}
.fs5_c00061{font-size:52.480000pt;}
.fs7_c00061{font-size:53.333333pt;}
.fs6_c00061{font-size:54.095146pt;}
.fs0_c00061{font-size:64.000000pt;}
.fs1_c00061{font-size:65.969690pt;}
.y0_c00061{bottom:0.000000pt;}
.y3_c00061{bottom:2.280000pt;}
.y3c_c00061{bottom:2.773467pt;}
.y3b_c00061{bottom:30.884000pt;}
.y1_c00061{bottom:48.000000pt;}
.y3a_c00061{bottom:49.316480pt;}
.y39_c00061{bottom:70.120000pt;}
.y38_c00061{bottom:80.356480pt;}
.y37_c00061{bottom:101.160000pt;}
.y36_c00061{bottom:111.398080pt;}
.y35_c00061{bottom:127.076480pt;}
.y34_c00061{bottom:147.880000pt;}
.y33_c00061{bottom:163.560000pt;}
.y32_c00061{bottom:173.797440pt;}
.y31_c00061{bottom:189.160960pt;}
.y30_c00061{bottom:204.839360pt;}
.y2f_c00061{bottom:220.202880pt;}
.y2e_c00061{bottom:235.881280pt;}
.y2d_c00061{bottom:251.559680pt;}
.y2c_c00061{bottom:266.923200pt;}
.y2b_c00061{bottom:282.601600pt;}
.y2a_c00061{bottom:303.720000pt;}
.y29_c00061{bottom:313.640000pt;}
.y28_c00061{bottom:313.641280pt;}
.y27_c00061{bottom:329.319680pt;}
.y26_c00061{bottom:344.683200pt;}
.y25_c00061{bottom:360.361600pt;}
.y23_c00061{bottom:376.034240pt;}
.y24_c00061{bottom:376.040000pt;}
.y22_c00061{bottom:391.397760pt;}
.y21_c00061{bottom:407.076160pt;}
.y20_c00061{bottom:422.754560pt;}
.y1f_c00061{bottom:438.118080pt;}
.y1e_c00061{bottom:453.796480pt;}
.y1d_c00061{bottom:469.160000pt;}
.y1c_c00061{bottom:469.161600pt;}
.y1b_c00061{bottom:484.840000pt;}
.y1a_c00061{bottom:484.841600pt;}
.y19_c00061{bottom:505.960000pt;}
.y18_c00061{bottom:529.640000pt;}
.y17_c00061{bottom:556.200000pt;}
.y16_c00061{bottom:575.080000pt;}
.y15_c00061{bottom:593.640000pt;}
.y14_c00061{bottom:612.520000pt;}
.y13_c00061{bottom:644.520000pt;}
.y12_c00061{bottom:663.080000pt;}
.y11_c00061{bottom:681.640000pt;}
.y10_c00061{bottom:713.640000pt;}
.yf_c00061{bottom:745.640000pt;}
.ye_c00061{bottom:777.640000pt;}
.yd_c00061{bottom:796.520000pt;}
.yc_c00061{bottom:815.080000pt;}
.yb_c00061{bottom:833.640000pt;}
.ya_c00061{bottom:852.520000pt;}
.y9_c00061{bottom:871.080000pt;}
.y8_c00061{bottom:889.640000pt;}
.y7_c00061{bottom:908.520000pt;}
.y6_c00061{bottom:927.080000pt;}
.y5_c00061{bottom:945.640000pt;}
.y4_c00061{bottom:964.520000pt;}
.y2_c00061{bottom:1011.880000pt;}
.h9_c00061{height:17.116000pt;}
.h6_c00061{height:28.992000pt;}
.ha_c00061{height:41.173333pt;}
.h8_c00061{height:41.761453pt;}
.h7_c00061{height:47.546880pt;}
.h4_c00061{height:50.928601pt;}
.h3_c00061{height:57.984000pt;}
.h5_c00061{height:60.510720pt;}
.h2_c00061{height:1067.880000pt;}
.h0_c00061{height:1122.520000pt;}
.h1_c00061{height:1122.666667pt;}
.w3_c00061{width:14.826667pt;}
.w2_c00061{width:767.960000pt;}
.w0_c00061{width:793.720000pt;}
.w1_c00061{width:794.000000pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:12.880000pt;}
.x2_c00061{left:100.480133pt;}
.x3_c00061{left:133.343733pt;}
.x4_c00061{left:177.310933pt;}
.xd_c00061{left:372.376933pt;}
.xe_c00061{left:411.655600pt;}
.xf_c00061{left:419.068667pt;}
.x5_c00061{left:460.974933pt;}
.xc_c00061{left:482.102800pt;}
.x6_c00061{left:551.529333pt;}
.xa_c00061{left:572.684267pt;}
.x7_c00061{left:585.659200pt;}
.x8_c00061{left:605.457333pt;}
.xb_c00061{left:607.028000pt;}
.x9_c00061{left:663.306933pt;}
.x10_c00061{left:682.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_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_68efe986fa20c78aceb89f53.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.134000;font-style:normal;font-weight:normal;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_41a4ff39a20afac2567a788a.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;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:ff3_c00062;src:url('chunks/assets/font_9d21fe34972a3a12c1b377d1.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:0.787000;font-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_c00062{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00062{vertical-align:-24.480000px;}
.v0_c00062{vertical-align:0.000000px;}
.v1_c00062{vertical-align:30.240000px;}
.ls3_c00062{letter-spacing:-0.179568px;}
.ls2_c00062{letter-spacing:0.000000px;}
.ls4_c00062{letter-spacing:0.144000px;}
.ls8_c00062{letter-spacing:0.202464px;}
.ls9_c00062{letter-spacing:0.239760px;}
.ls5_c00062{letter-spacing:0.265680px;}
.ls6_c00062{letter-spacing:0.399600px;}
.ls7_c00062{letter-spacing:4.880448px;}
.ls0_c00062{letter-spacing:5.976000px;}
.ls1_c00062{letter-spacing:6.159920px;}
.sc__c00062{text-shadow:none;}
.sc1_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00062{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc1_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00062{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00062{word-spacing:-19.692288px;}
.ws0_c00062{word-spacing:-11.429712px;}
.ws1_c00062{word-spacing:-10.152000px;}
.ws3_c00062{word-spacing:0.000000px;}
._2_c00062{margin-left:-1.028400px;}
._0_c00062{width:2.016000px;}
._1_c00062{width:4.320000px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs3_c00062{font-size:36.000000px;}
.fs2_c00062{font-size:41.760000px;}
.fs5_c00062{font-size:53.280000px;}
.fs4_c00062{font-size:59.040000px;}
.fs6_c00062{font-size:60.000000px;}
.fs0_c00062{font-size:72.000000px;}
.fs1_c00062{font-size:74.215901px;}
.y0_c00062{bottom:0.000000px;}
.y3_c00062{bottom:2.565000px;}
.y26_c00062{bottom:3.120150px;}
.y22_c00062{bottom:9.000000px;}
.y24_c00062{bottom:21.960000px;}
.y21_c00062{bottom:24.840000px;}
.y25_c00062{bottom:34.744500px;}
.y1_c00062{bottom:54.000000px;}
.y1f_c00062{bottom:61.605000px;}
.y1e_c00062{bottom:88.245000px;}
.y1d_c00062{bottom:136.845000px;}
.y1c_c00062{bottom:172.845000px;}
.y23_c00062{bottom:257.805000px;}
.y1b_c00062{bottom:271.845000px;}
.y1a_c00062{bottom:307.845000px;}
.y19_c00062{bottom:343.845000px;}
.y18_c00062{bottom:379.845000px;}
.y17_c00062{bottom:415.845000px;}
.y16_c00062{bottom:451.845000px;}
.y15_c00062{bottom:487.845000px;}
.y14_c00062{bottom:523.845000px;}
.y13_c00062{bottom:559.845000px;}
.y12_c00062{bottom:595.845000px;}
.y11_c00062{bottom:631.845000px;}
.y10_c00062{bottom:667.845000px;}
.y20_c00062{bottom:686.925000px;}
.yf_c00062{bottom:703.845000px;}
.ye_c00062{bottom:739.845000px;}
.yd_c00062{bottom:775.845000px;}
.yc_c00062{bottom:811.845000px;}
.yb_c00062{bottom:847.845000px;}
.ya_c00062{bottom:883.845000px;}
.y9_c00062{bottom:919.845000px;}
.y8_c00062{bottom:955.845000px;}
.y7_c00062{bottom:991.845000px;}
.y6_c00062{bottom:1027.845000px;}
.y5_c00062{bottom:1063.845000px;}
.y4_c00062{bottom:1085.085000px;}
.y2_c00062{bottom:1138.365000px;}
.ha_c00062{height:19.255500px;}
.h6_c00062{height:32.616000px;}
.h9_c00062{height:34.560000px;}
.h7_c00062{height:37.440000px;}
.hb_c00062{height:46.320000px;}
.h8_c00062{height:48.271680px;}
.h4_c00062{height:57.294676px;}
.h3_c00062{height:65.232000px;}
.h5_c00062{height:68.074560px;}
.h2_c00062{height:1201.365000px;}
.h0_c00062{height:1262.835000px;}
.h1_c00062{height:1263.000000px;}
.w5_c00062{width:16.680000px;}
.w3_c00062{width:617.400000px;}
.w4_c00062{width:680.400000px;}
.w2_c00062{width:863.955000px;}
.w0_c00062{width:892.935000px;}
.w1_c00062{width:893.250000px;}
.x0_c00062{left:0.000000px;}
.x9_c00062{left:5.177700px;}
.x1_c00062{left:14.490000px;}
.x6_c00062{left:17.112600px;}
.x2_c00062{left:113.040150px;}
.x8_c00062{left:126.090000px;}
.x3_c00062{left:150.011700px;}
.x5_c00062{left:161.730000px;}
.x4_c00062{left:199.474800px;}
.x7_c00062{left:266.932050px;}
.xa_c00062{left:768.255000px;}
@media print{
.v2_c00062{vertical-align:-21.760000pt;}
.v0_c00062{vertical-align:0.000000pt;}
.v1_c00062{vertical-align:26.880000pt;}
.ls3_c00062{letter-spacing:-0.159616pt;}
.ls2_c00062{letter-spacing:0.000000pt;}
.ls4_c00062{letter-spacing:0.128000pt;}
.ls8_c00062{letter-spacing:0.179968pt;}
.ls9_c00062{letter-spacing:0.213120pt;}
.ls5_c00062{letter-spacing:0.236160pt;}
.ls6_c00062{letter-spacing:0.355200pt;}
.ls7_c00062{letter-spacing:4.338176pt;}
.ls0_c00062{letter-spacing:5.312000pt;}
.ls1_c00062{letter-spacing:5.475484pt;}
.ws2_c00062{word-spacing:-17.504256pt;}
.ws0_c00062{word-spacing:-10.159744pt;}
.ws1_c00062{word-spacing:-9.024000pt;}
.ws3_c00062{word-spacing:0.000000pt;}
._2_c00062{margin-left:-0.914133pt;}
._0_c00062{width:1.792000pt;}
._1_c00062{width:3.840000pt;}
.fs3_c00062{font-size:32.000000pt;}
.fs2_c00062{font-size:37.120000pt;}
.fs5_c00062{font-size:47.360000pt;}
.fs4_c00062{font-size:52.480000pt;}
.fs6_c00062{font-size:53.333333pt;}
.fs0_c00062{font-size:64.000000pt;}
.fs1_c00062{font-size:65.969690pt;}
.y0_c00062{bottom:0.000000pt;}
.y3_c00062{bottom:2.280000pt;}
.y26_c00062{bottom:2.773467pt;}
.y22_c00062{bottom:8.000000pt;}
.y24_c00062{bottom:19.520000pt;}
.y21_c00062{bottom:22.080000pt;}
.y25_c00062{bottom:30.884000pt;}
.y1_c00062{bottom:48.000000pt;}
.y1f_c00062{bottom:54.760000pt;}
.y1e_c00062{bottom:78.440000pt;}
.y1d_c00062{bottom:121.640000pt;}
.y1c_c00062{bottom:153.640000pt;}
.y23_c00062{bottom:229.160000pt;}
.y1b_c00062{bottom:241.640000pt;}
.y1a_c00062{bottom:273.640000pt;}
.y19_c00062{bottom:305.640000pt;}
.y18_c00062{bottom:337.640000pt;}
.y17_c00062{bottom:369.640000pt;}
.y16_c00062{bottom:401.640000pt;}
.y15_c00062{bottom:433.640000pt;}
.y14_c00062{bottom:465.640000pt;}
.y13_c00062{bottom:497.640000pt;}
.y12_c00062{bottom:529.640000pt;}
.y11_c00062{bottom:561.640000pt;}
.y10_c00062{bottom:593.640000pt;}
.y20_c00062{bottom:610.600000pt;}
.yf_c00062{bottom:625.640000pt;}
.ye_c00062{bottom:657.640000pt;}
.yd_c00062{bottom:689.640000pt;}
.yc_c00062{bottom:721.640000pt;}
.yb_c00062{bottom:753.640000pt;}
.ya_c00062{bottom:785.640000pt;}
.y9_c00062{bottom:817.640000pt;}
.y8_c00062{bottom:849.640000pt;}
.y7_c00062{bottom:881.640000pt;}
.y6_c00062{bottom:913.640000pt;}
.y5_c00062{bottom:945.640000pt;}
.y4_c00062{bottom:964.520000pt;}
.y2_c00062{bottom:1011.880000pt;}
.ha_c00062{height:17.116000pt;}
.h6_c00062{height:28.992000pt;}
.h9_c00062{height:30.720000pt;}
.h7_c00062{height:33.280000pt;}
.hb_c00062{height:41.173333pt;}
.h8_c00062{height:42.908160pt;}
.h4_c00062{height:50.928601pt;}
.h3_c00062{height:57.984000pt;}
.h5_c00062{height:60.510720pt;}
.h2_c00062{height:1067.880000pt;}
.h0_c00062{height:1122.520000pt;}
.h1_c00062{height:1122.666667pt;}
.w5_c00062{width:14.826667pt;}
.w3_c00062{width:548.800000pt;}
.w4_c00062{width:604.800000pt;}
.w2_c00062{width:767.960000pt;}
.w0_c00062{width:793.720000pt;}
.w1_c00062{width:794.000000pt;}
.x0_c00062{left:0.000000pt;}
.x9_c00062{left:4.602400pt;}
.x1_c00062{left:12.880000pt;}
.x6_c00062{left:15.211200pt;}
.x2_c00062{left:100.480133pt;}
.x8_c00062{left:112.080000pt;}
.x3_c00062{left:133.343733pt;}
.x5_c00062{left:143.760000pt;}
.x4_c00062{left:177.310933pt;}
.x7_c00062{left:237.272933pt;}
.xa_c00062{left:682.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_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_5bcbdf4a58e251f87a0fc28b.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.134000;font-style:normal;font-weight:normal;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_41a4ff39a20afac2567a788a.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;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:ff3_c00063;src:url('chunks/assets/font_fdb184932610b7249a66a128.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00063{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls2_c00063{letter-spacing:0.000000px;}
.ls5_c00063{letter-spacing:0.202464px;}
.ls6_c00063{letter-spacing:0.239760px;}
.ls3_c00063{letter-spacing:0.399600px;}
.ls4_c00063{letter-spacing:4.880448px;}
.ls0_c00063{letter-spacing:5.976000px;}
.ls1_c00063{letter-spacing:6.159920px;}
.sc__c00063{text-shadow:none;}
.sc1_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00063{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc1_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00063{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00063{word-spacing:-19.692288px;}
.ws1_c00063{word-spacing:0.000000px;}
._0_c00063{margin-left:-1.118880px;}
._1_c00063{width:1.095240px;}
.fc1_c00063{color:transparent;}
.fc0_c00063{color:rgb(0,0,0);}
.fs2_c00063{font-size:53.280000px;}
.fs3_c00063{font-size:60.000000px;}
.fs0_c00063{font-size:72.000000px;}
.fs1_c00063{font-size:74.215901px;}
.y0_c00063{bottom:0.000000px;}
.y3_c00063{bottom:2.565000px;}
.y1f_c00063{bottom:3.120150px;}
.y1c_c00063{bottom:24.120000px;}
.y1e_c00063{bottom:34.744500px;}
.y1b_c00063{bottom:39.960000px;}
.y1_c00063{bottom:54.000000px;}
.y1a_c00063{bottom:319.365000px;}
.y19_c00063{bottom:328.725000px;}
.y18_c00063{bottom:364.725000px;}
.y17_c00063{bottom:400.725000px;}
.y16_c00063{bottom:436.725000px;}
.y15_c00063{bottom:472.725000px;}
.y14_c00063{bottom:509.085000px;}
.y13_c00063{bottom:545.085000px;}
.y12_c00063{bottom:581.085000px;}
.y11_c00063{bottom:617.085000px;}
.y10_c00063{bottom:653.085000px;}
.yf_c00063{bottom:689.085000px;}
.y1d_c00063{bottom:724.365000px;}
.ye_c00063{bottom:725.085000px;}
.yd_c00063{bottom:761.085000px;}
.yc_c00063{bottom:797.085000px;}
.yb_c00063{bottom:833.085000px;}
.ya_c00063{bottom:869.085000px;}
.y9_c00063{bottom:905.085000px;}
.y8_c00063{bottom:941.085000px;}
.y7_c00063{bottom:977.085000px;}
.y6_c00063{bottom:1013.085000px;}
.y5_c00063{bottom:1049.085000px;}
.y4_c00063{bottom:1085.085000px;}
.y2_c00063{bottom:1138.365000px;}
.h7_c00063{height:19.255500px;}
.h8_c00063{height:46.320000px;}
.h6_c00063{height:48.271680px;}
.h5_c00063{height:52.560000px;}
.h4_c00063{height:57.294676px;}
.h3_c00063{height:65.232000px;}
.h2_c00063{height:1201.365000px;}
.h0_c00063{height:1262.835000px;}
.h1_c00063{height:1263.000000px;}
.w5_c00063{width:16.680000px;}
.w3_c00063{width:600.840000px;}
.w4_c00063{width:601.920000px;}
.w2_c00063{width:863.955000px;}
.w0_c00063{width:892.935000px;}
.w1_c00063{width:893.250000px;}
.x0_c00063{left:0.000000px;}
.x6_c00063{left:9.109800px;}
.x1_c00063{left:14.490000px;}
.x2_c00063{left:113.040150px;}
.x3_c00063{left:150.011700px;}
.x5_c00063{left:152.730000px;}
.x8_c00063{left:177.210000px;}
.x4_c00063{left:199.474800px;}
.x7_c00063{left:258.929250px;}
.x9_c00063{left:768.255000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls2_c00063{letter-spacing:0.000000pt;}
.ls5_c00063{letter-spacing:0.179968pt;}
.ls6_c00063{letter-spacing:0.213120pt;}
.ls3_c00063{letter-spacing:0.355200pt;}
.ls4_c00063{letter-spacing:4.338176pt;}
.ls0_c00063{letter-spacing:5.312000pt;}
.ls1_c00063{letter-spacing:5.475484pt;}
.ws0_c00063{word-spacing:-17.504256pt;}
.ws1_c00063{word-spacing:0.000000pt;}
._0_c00063{margin-left:-0.994560pt;}
._1_c00063{width:0.973547pt;}
.fs2_c00063{font-size:47.360000pt;}
.fs3_c00063{font-size:53.333333pt;}
.fs0_c00063{font-size:64.000000pt;}
.fs1_c00063{font-size:65.969690pt;}
.y0_c00063{bottom:0.000000pt;}
.y3_c00063{bottom:2.280000pt;}
.y1f_c00063{bottom:2.773467pt;}
.y1c_c00063{bottom:21.440000pt;}
.y1e_c00063{bottom:30.884000pt;}
.y1b_c00063{bottom:35.520000pt;}
.y1_c00063{bottom:48.000000pt;}
.y1a_c00063{bottom:283.880000pt;}
.y19_c00063{bottom:292.200000pt;}
.y18_c00063{bottom:324.200000pt;}
.y17_c00063{bottom:356.200000pt;}
.y16_c00063{bottom:388.200000pt;}
.y15_c00063{bottom:420.200000pt;}
.y14_c00063{bottom:452.520000pt;}
.y13_c00063{bottom:484.520000pt;}
.y12_c00063{bottom:516.520000pt;}
.y11_c00063{bottom:548.520000pt;}
.y10_c00063{bottom:580.520000pt;}
.yf_c00063{bottom:612.520000pt;}
.y1d_c00063{bottom:643.880000pt;}
.ye_c00063{bottom:644.520000pt;}
.yd_c00063{bottom:676.520000pt;}
.yc_c00063{bottom:708.520000pt;}
.yb_c00063{bottom:740.520000pt;}
.ya_c00063{bottom:772.520000pt;}
.y9_c00063{bottom:804.520000pt;}
.y8_c00063{bottom:836.520000pt;}
.y7_c00063{bottom:868.520000pt;}
.y6_c00063{bottom:900.520000pt;}
.y5_c00063{bottom:932.520000pt;}
.y4_c00063{bottom:964.520000pt;}
.y2_c00063{bottom:1011.880000pt;}
.h7_c00063{height:17.116000pt;}
.h8_c00063{height:41.173333pt;}
.h6_c00063{height:42.908160pt;}
.h5_c00063{height:46.720000pt;}
.h4_c00063{height:50.928601pt;}
.h3_c00063{height:57.984000pt;}
.h2_c00063{height:1067.880000pt;}
.h0_c00063{height:1122.520000pt;}
.h1_c00063{height:1122.666667pt;}
.w5_c00063{width:14.826667pt;}
.w3_c00063{width:534.080000pt;}
.w4_c00063{width:535.040000pt;}
.w2_c00063{width:767.960000pt;}
.w0_c00063{width:793.720000pt;}
.w1_c00063{width:794.000000pt;}
.x0_c00063{left:0.000000pt;}
.x6_c00063{left:8.097600pt;}
.x1_c00063{left:12.880000pt;}
.x2_c00063{left:100.480133pt;}
.x3_c00063{left:133.343733pt;}
.x5_c00063{left:135.760000pt;}
.x8_c00063{left:157.520000pt;}
.x4_c00063{left:177.310933pt;}
.x7_c00063{left:230.159333pt;}
.x9_c00063{left:682.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_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_9c6729f9f19d731509afdd32.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_b3f080afc2c90028e1c424a2.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;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:ff3_c00064;src:url('chunks/assets/font_166ba8d7fe365a595f286e67.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00064{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00064{vertical-align:-30.240000px;}
.v3_c00064{vertical-align:-24.480000px;}
.v0_c00064{vertical-align:0.000000px;}
.v1_c00064{vertical-align:30.240000px;}
.ls11_c00064{letter-spacing:0.000000px;}
.ls4_c00064{letter-spacing:0.045240px;}
.lsd_c00064{letter-spacing:0.265680px;}
.ls1d_c00064{letter-spacing:0.273857px;}
.lsb_c00064{letter-spacing:0.295200px;}
.ls22_c00064{letter-spacing:0.318816px;}
.lsa_c00064{letter-spacing:0.330840px;}
.ls10_c00064{letter-spacing:0.354240px;}
.ls1e_c00064{letter-spacing:0.425088px;}
.ls19_c00064{letter-spacing:0.438171px;}
.ls18_c00064{letter-spacing:0.478224px;}
.lsc_c00064{letter-spacing:0.531360px;}
.lsf_c00064{letter-spacing:0.560880px;}
.ls6_c00064{letter-spacing:0.566040px;}
.ls1f_c00064{letter-spacing:0.584496px;}
.ls7_c00064{letter-spacing:0.685440px;}
.lse_c00064{letter-spacing:0.712027px;}
.ls1a_c00064{letter-spacing:0.743904px;}
.ls20_c00064{letter-spacing:0.766799px;}
.ls1c_c00064{letter-spacing:0.797040px;}
.ls8_c00064{letter-spacing:0.801840px;}
.ls5_c00064{letter-spacing:0.812040px;}
.ls21_c00064{letter-spacing:0.991970px;}
.ls3_c00064{letter-spacing:4.998240px;}
.ls14_c00064{letter-spacing:5.054400px;}
.ls16_c00064{letter-spacing:5.149872px;}
.ls15_c00064{letter-spacing:5.245344px;}
.ls12_c00064{letter-spacing:5.308367px;}
.ls13_c00064{letter-spacing:5.335200px;}
.ls17_c00064{letter-spacing:5.430672px;}
.ls2_c00064{letter-spacing:5.975400px;}
.ls1_c00064{letter-spacing:5.976000px;}
.ls9_c00064{letter-spacing:5.991000px;}
.ls0_c00064{letter-spacing:6.159920px;}
.ls23_c00064{letter-spacing:7.751952px;}
.ls1b_c00064{letter-spacing:10.898784px;}
.sc__c00064{text-shadow:none;}
.sc1_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00064{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc1_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00064{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00064{word-spacing:-25.992000px;}
.ws0_c00064{word-spacing:-21.401343px;}
.ws6_c00064{word-spacing:-21.043152px;}
.ws3_c00064{word-spacing:-20.762352px;}
.ws1_c00064{word-spacing:-20.666880px;}
.ws4_c00064{word-spacing:-20.016000px;}
.ws8_c00064{word-spacing:-17.685056px;}
.ws9_c00064{word-spacing:-17.630284px;}
.ws5_c00064{word-spacing:-11.609280px;}
.ws7_c00064{word-spacing:-10.008000px;}
.wsa_c00064{word-spacing:0.000000px;}
._e_c00064{margin-left:-11.453760px;}
._d_c00064{margin-left:-10.391040px;}
._f_c00064{margin-left:-9.387360px;}
._11_c00064{margin-left:-8.206560px;}
._10_c00064{margin-left:-7.143840px;}
._0_c00064{margin-left:-1.102920px;}
._b_c00064{width:1.245000px;}
._9_c00064{width:2.520000px;}
._3_c00064{width:3.600000px;}
._5_c00064{width:4.608000px;}
._a_c00064{width:6.408000px;}
._2_c00064{width:7.704000px;}
._8_c00064{width:8.712000px;}
._c_c00064{width:10.296000px;}
._1_c00064{width:12.960000px;}
._4_c00064{width:14.646840px;}
._6_c00064{width:21.024000px;}
._7_c00064{width:40.896000px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs5_c00064{font-size:36.000000px;}
.fs4_c00064{font-size:41.760000px;}
.fs3_c00064{font-size:56.160000px;}
.fs2_c00064{font-size:57.888403px;}
.fs6_c00064{font-size:59.040000px;}
.fs8_c00064{font-size:60.000000px;}
.fs7_c00064{font-size:60.857039px;}
.fs0_c00064{font-size:72.000000px;}
.fs1_c00064{font-size:74.215901px;}
.y0_c00064{bottom:0.000000px;}
.y3_c00064{bottom:2.565000px;}
.y35_c00064{bottom:3.120150px;}
.y34_c00064{bottom:34.744500px;}
.y1_c00064{bottom:54.000000px;}
.y33_c00064{bottom:55.481040px;}
.y32_c00064{bottom:72.765000px;}
.y31_c00064{bottom:72.766800px;}
.y30_c00064{bottom:96.525000px;}
.y2f_c00064{bottom:107.685000px;}
.y2e_c00064{bottom:113.805000px;}
.y2d_c00064{bottom:125.325000px;}
.y2c_c00064{bottom:131.445000px;}
.y2b_c00064{bottom:142.965000px;}
.y2a_c00064{bottom:149.085000px;}
.y29_c00064{bottom:160.245000px;}
.y28_c00064{bottom:166.365000px;}
.y27_c00064{bottom:177.885000px;}
.y26_c00064{bottom:177.886800px;}
.y25_c00064{bottom:201.645000px;}
.y24_c00064{bottom:218.925000px;}
.y23_c00064{bottom:230.445000px;}
.y22_c00064{bottom:236.565000px;}
.y21_c00064{bottom:263.205000px;}
.y20_c00064{bottom:312.165000px;}
.y1f_c00064{bottom:333.405000px;}
.y1e_c00064{bottom:354.285000px;}
.y1d_c00064{bottom:390.285000px;}
.y1c_c00064{bottom:411.525000px;}
.y1b_c00064{bottom:432.405000px;}
.y1a_c00064{bottom:468.405000px;}
.y19_c00064{bottom:504.405000px;}
.y18_c00064{bottom:540.405000px;}
.y17_c00064{bottom:576.405000px;}
.y16_c00064{bottom:612.405000px;}
.y15_c00064{bottom:633.285000px;}
.y14_c00064{bottom:654.525000px;}
.y13_c00064{bottom:675.405000px;}
.y12_c00064{bottom:696.285000px;}
.y11_c00064{bottom:732.285000px;}
.y10_c00064{bottom:768.285000px;}
.yf_c00064{bottom:806.805000px;}
.ye_c00064{bottom:844.965000px;}
.yd_c00064{bottom:880.965000px;}
.yc_c00064{bottom:901.845000px;}
.yb_c00064{bottom:923.085000px;}
.ya_c00064{bottom:943.965000px;}
.y9_c00064{bottom:964.845000px;}
.y8_c00064{bottom:986.085000px;}
.y7_c00064{bottom:1006.965000px;}
.y6_c00064{bottom:1027.845000px;}
.y5_c00064{bottom:1049.085000px;}
.y4_c00064{bottom:1085.085000px;}
.y2_c00064{bottom:1138.365000px;}
.h9_c00064{height:19.255500px;}
.h6_c00064{height:32.616000px;}
.ha_c00064{height:46.320000px;}
.h7_c00064{height:46.981634px;}
.h8_c00064{height:53.490240px;}
.h4_c00064{height:57.294676px;}
.h3_c00064{height:65.232000px;}
.h5_c00064{height:68.074560px;}
.h2_c00064{height:1201.365000px;}
.h0_c00064{height:1262.835000px;}
.h1_c00064{height:1263.000000px;}
.w3_c00064{width:16.680000px;}
.w2_c00064{width:863.955000px;}
.w0_c00064{width:892.935000px;}
.w1_c00064{width:893.250000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:14.490000px;}
.x2_c00064{left:113.040150px;}
.x1a_c00064{left:122.213700px;}
.x3_c00064{left:150.011700px;}
.x1c_c00064{left:152.182950px;}
.x18_c00064{left:156.396900px;}
.xd_c00064{left:157.409550px;}
.x1b_c00064{left:163.057950px;}
.x1d_c00064{left:185.541450px;}
.x19_c00064{left:194.736000px;}
.x5_c00064{left:200.306700px;}
.x1e_c00064{left:211.341000px;}
.x13_c00064{left:213.881850px;}
.x4_c00064{left:230.956350px;}
.x7_c00064{left:254.463900px;}
.x8_c00064{left:259.467750px;}
.x9_c00064{left:264.471600px;}
.xe_c00064{left:274.047300px;}
.xf_c00064{left:313.034550px;}
.xb_c00064{left:319.047000px;}
.xa_c00064{left:338.468550px;}
.xc_c00064{left:348.044250px;}
.x14_c00064{left:365.571900px;}
.x21_c00064{left:401.273700px;}
.x6_c00064{left:416.478150px;}
.x22_c00064{left:422.080800px;}
.x10_c00064{left:442.259100px;}
.x11_c00064{left:462.253050px;}
.x15_c00064{left:473.088450px;}
.x16_c00064{left:481.427850px;}
.x1f_c00064{left:513.070650px;}
.x20_c00064{left:533.064600px;}
.x17_c00064{left:734.003250px;}
.x12_c00064{left:738.168000px;}
.x23_c00064{left:768.255000px;}
@media print{
.v2_c00064{vertical-align:-26.880000pt;}
.v3_c00064{vertical-align:-21.760000pt;}
.v0_c00064{vertical-align:0.000000pt;}
.v1_c00064{vertical-align:26.880000pt;}
.ls11_c00064{letter-spacing:0.000000pt;}
.ls4_c00064{letter-spacing:0.040213pt;}
.lsd_c00064{letter-spacing:0.236160pt;}
.ls1d_c00064{letter-spacing:0.243428pt;}
.lsb_c00064{letter-spacing:0.262400pt;}
.ls22_c00064{letter-spacing:0.283392pt;}
.lsa_c00064{letter-spacing:0.294080pt;}
.ls10_c00064{letter-spacing:0.314880pt;}
.ls1e_c00064{letter-spacing:0.377856pt;}
.ls19_c00064{letter-spacing:0.389485pt;}
.ls18_c00064{letter-spacing:0.425088pt;}
.lsc_c00064{letter-spacing:0.472320pt;}
.lsf_c00064{letter-spacing:0.498560pt;}
.ls6_c00064{letter-spacing:0.503147pt;}
.ls1f_c00064{letter-spacing:0.519552pt;}
.ls7_c00064{letter-spacing:0.609280pt;}
.lse_c00064{letter-spacing:0.632913pt;}
.ls1a_c00064{letter-spacing:0.661248pt;}
.ls20_c00064{letter-spacing:0.681599pt;}
.ls1c_c00064{letter-spacing:0.708480pt;}
.ls8_c00064{letter-spacing:0.712747pt;}
.ls5_c00064{letter-spacing:0.721813pt;}
.ls21_c00064{letter-spacing:0.881751pt;}
.ls3_c00064{letter-spacing:4.442880pt;}
.ls14_c00064{letter-spacing:4.492800pt;}
.ls16_c00064{letter-spacing:4.577664pt;}
.ls15_c00064{letter-spacing:4.662528pt;}
.ls12_c00064{letter-spacing:4.718548pt;}
.ls13_c00064{letter-spacing:4.742400pt;}
.ls17_c00064{letter-spacing:4.827264pt;}
.ls2_c00064{letter-spacing:5.311467pt;}
.ls1_c00064{letter-spacing:5.312000pt;}
.ls9_c00064{letter-spacing:5.325333pt;}
.ls0_c00064{letter-spacing:5.475484pt;}
.ls23_c00064{letter-spacing:6.890624pt;}
.ls1b_c00064{letter-spacing:9.687808pt;}
.ws2_c00064{word-spacing:-23.104000pt;}
.ws0_c00064{word-spacing:-19.023416pt;}
.ws6_c00064{word-spacing:-18.705024pt;}
.ws3_c00064{word-spacing:-18.455424pt;}
.ws1_c00064{word-spacing:-18.370560pt;}
.ws4_c00064{word-spacing:-17.792000pt;}
.ws8_c00064{word-spacing:-15.720049pt;}
.ws9_c00064{word-spacing:-15.671364pt;}
.ws5_c00064{word-spacing:-10.319360pt;}
.ws7_c00064{word-spacing:-8.896000pt;}
.wsa_c00064{word-spacing:0.000000pt;}
._e_c00064{margin-left:-10.181120pt;}
._d_c00064{margin-left:-9.236480pt;}
._f_c00064{margin-left:-8.344320pt;}
._11_c00064{margin-left:-7.294720pt;}
._10_c00064{margin-left:-6.350080pt;}
._0_c00064{margin-left:-0.980373pt;}
._b_c00064{width:1.106667pt;}
._9_c00064{width:2.240000pt;}
._3_c00064{width:3.200000pt;}
._5_c00064{width:4.096000pt;}
._a_c00064{width:5.696000pt;}
._2_c00064{width:6.848000pt;}
._8_c00064{width:7.744000pt;}
._c_c00064{width:9.152000pt;}
._1_c00064{width:11.520000pt;}
._4_c00064{width:13.019413pt;}
._6_c00064{width:18.688000pt;}
._7_c00064{width:36.352000pt;}
.fs5_c00064{font-size:32.000000pt;}
.fs4_c00064{font-size:37.120000pt;}
.fs3_c00064{font-size:49.920000pt;}
.fs2_c00064{font-size:51.456358pt;}
.fs6_c00064{font-size:52.480000pt;}
.fs8_c00064{font-size:53.333333pt;}
.fs7_c00064{font-size:54.095146pt;}
.fs0_c00064{font-size:64.000000pt;}
.fs1_c00064{font-size:65.969690pt;}
.y0_c00064{bottom:0.000000pt;}
.y3_c00064{bottom:2.280000pt;}
.y35_c00064{bottom:2.773467pt;}
.y34_c00064{bottom:30.884000pt;}
.y1_c00064{bottom:48.000000pt;}
.y33_c00064{bottom:49.316480pt;}
.y32_c00064{bottom:64.680000pt;}
.y31_c00064{bottom:64.681600pt;}
.y30_c00064{bottom:85.800000pt;}
.y2f_c00064{bottom:95.720000pt;}
.y2e_c00064{bottom:101.160000pt;}
.y2d_c00064{bottom:111.400000pt;}
.y2c_c00064{bottom:116.840000pt;}
.y2b_c00064{bottom:127.080000pt;}
.y2a_c00064{bottom:132.520000pt;}
.y29_c00064{bottom:142.440000pt;}
.y28_c00064{bottom:147.880000pt;}
.y27_c00064{bottom:158.120000pt;}
.y26_c00064{bottom:158.121600pt;}
.y25_c00064{bottom:179.240000pt;}
.y24_c00064{bottom:194.600000pt;}
.y23_c00064{bottom:204.840000pt;}
.y22_c00064{bottom:210.280000pt;}
.y21_c00064{bottom:233.960000pt;}
.y20_c00064{bottom:277.480000pt;}
.y1f_c00064{bottom:296.360000pt;}
.y1e_c00064{bottom:314.920000pt;}
.y1d_c00064{bottom:346.920000pt;}
.y1c_c00064{bottom:365.800000pt;}
.y1b_c00064{bottom:384.360000pt;}
.y1a_c00064{bottom:416.360000pt;}
.y19_c00064{bottom:448.360000pt;}
.y18_c00064{bottom:480.360000pt;}
.y17_c00064{bottom:512.360000pt;}
.y16_c00064{bottom:544.360000pt;}
.y15_c00064{bottom:562.920000pt;}
.y14_c00064{bottom:581.800000pt;}
.y13_c00064{bottom:600.360000pt;}
.y12_c00064{bottom:618.920000pt;}
.y11_c00064{bottom:650.920000pt;}
.y10_c00064{bottom:682.920000pt;}
.yf_c00064{bottom:717.160000pt;}
.ye_c00064{bottom:751.080000pt;}
.yd_c00064{bottom:783.080000pt;}
.yc_c00064{bottom:801.640000pt;}
.yb_c00064{bottom:820.520000pt;}
.ya_c00064{bottom:839.080000pt;}
.y9_c00064{bottom:857.640000pt;}
.y8_c00064{bottom:876.520000pt;}
.y7_c00064{bottom:895.080000pt;}
.y6_c00064{bottom:913.640000pt;}
.y5_c00064{bottom:932.520000pt;}
.y4_c00064{bottom:964.520000pt;}
.y2_c00064{bottom:1011.880000pt;}
.h9_c00064{height:17.116000pt;}
.h6_c00064{height:28.992000pt;}
.ha_c00064{height:41.173333pt;}
.h7_c00064{height:41.761453pt;}
.h8_c00064{height:47.546880pt;}
.h4_c00064{height:50.928601pt;}
.h3_c00064{height:57.984000pt;}
.h5_c00064{height:60.510720pt;}
.h2_c00064{height:1067.880000pt;}
.h0_c00064{height:1122.520000pt;}
.h1_c00064{height:1122.666667pt;}
.w3_c00064{width:14.826667pt;}
.w2_c00064{width:767.960000pt;}
.w0_c00064{width:793.720000pt;}
.w1_c00064{width:794.000000pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:12.880000pt;}
.x2_c00064{left:100.480133pt;}
.x1a_c00064{left:108.634400pt;}
.x3_c00064{left:133.343733pt;}
.x1c_c00064{left:135.273733pt;}
.x18_c00064{left:139.019467pt;}
.xd_c00064{left:139.919600pt;}
.x1b_c00064{left:144.940400pt;}
.x1d_c00064{left:164.925733pt;}
.x19_c00064{left:173.098667pt;}
.x5_c00064{left:178.050400pt;}
.x1e_c00064{left:187.858667pt;}
.x13_c00064{left:190.117200pt;}
.x4_c00064{left:205.294533pt;}
.x7_c00064{left:226.190133pt;}
.x8_c00064{left:230.638000pt;}
.x9_c00064{left:235.085867pt;}
.xe_c00064{left:243.597600pt;}
.xf_c00064{left:278.252933pt;}
.xb_c00064{left:283.597333pt;}
.xa_c00064{left:300.860933pt;}
.xc_c00064{left:309.372667pt;}
.x14_c00064{left:324.952800pt;}
.x21_c00064{left:356.687733pt;}
.x6_c00064{left:370.202800pt;}
.x22_c00064{left:375.182933pt;}
.x10_c00064{left:393.119200pt;}
.x11_c00064{left:410.891600pt;}
.x15_c00064{left:420.523067pt;}
.x16_c00064{left:427.935867pt;}
.x1f_c00064{left:456.062800pt;}
.x20_c00064{left:473.835200pt;}
.x17_c00064{left:652.447333pt;}
.x12_c00064{left:656.149333pt;}
.x23_c00064{left:682.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_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_48e13efa3b78cce66b72c909.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_ec85ac71069729abf11953f3.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;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:ff3_c00065;src:url('chunks/assets/font_debd8364ab3d4132a8162c36.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:0.787000;font-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_c00065{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00065{vertical-align:-24.480000px;}
.v0_c00065{vertical-align:0.000000px;}
.v1_c00065{vertical-align:30.240000px;}
.ls5_c00065{letter-spacing:-0.179568px;}
.ls4_c00065{letter-spacing:0.000000px;}
.ls8_c00065{letter-spacing:0.144000px;}
.lsa_c00065{letter-spacing:0.265680px;}
.ls1_c00065{letter-spacing:0.295200px;}
.lsc_c00065{letter-spacing:0.478224px;}
.ls0_c00065{letter-spacing:0.531360px;}
.lse_c00065{letter-spacing:0.547713px;}
.lsf_c00065{letter-spacing:0.712027px;}
.ls7_c00065{letter-spacing:0.743904px;}
.lsb_c00065{letter-spacing:0.766799px;}
.ls6_c00065{letter-spacing:5.602896px;}
.ls2_c00065{letter-spacing:5.976000px;}
.ls3_c00065{letter-spacing:6.159920px;}
.lsd_c00065{letter-spacing:6.854544px;}
.ls9_c00065{letter-spacing:11.294352px;}
.sc__c00065{text-shadow:none;}
.sc1_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00065{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc1_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00065{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00065{word-spacing:-17.685056px;}
.ws4_c00065{word-spacing:-17.465970px;}
.ws0_c00065{word-spacing:-11.429712px;}
.ws2_c00065{word-spacing:-10.152000px;}
.ws1_c00065{word-spacing:-10.008000px;}
.ws5_c00065{word-spacing:0.000000px;}
._13_c00065{margin-left:-11.923200px;}
._12_c00065{margin-left:-10.797120px;}
._14_c00065{margin-left:-9.773280px;}
._15_c00065{margin-left:-7.018560px;}
._10_c00065{margin-left:-5.904000px;}
._f_c00065{margin-left:-4.900320px;}
._11_c00065{margin-left:-1.180800px;}
._2_c00065{width:1.200432px;}
._3_c00065{width:3.168000px;}
._1_c00065{width:4.248000px;}
._a_c00065{width:5.328000px;}
._4_c00065{width:6.336000px;}
._b_c00065{width:7.776000px;}
._c_c00065{width:8.928000px;}
._6_c00065{width:10.944000px;}
._7_c00065{width:12.096000px;}
._0_c00065{width:13.536000px;}
._5_c00065{width:14.616000px;}
._9_c00065{width:16.344000px;}
._8_c00065{width:18.288000px;}
._e_c00065{width:21.312000px;}
._d_c00065{width:28.080000px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs3_c00065{font-size:36.000000px;}
.fs2_c00065{font-size:41.760000px;}
.fs4_c00065{font-size:59.040000px;}
.fs6_c00065{font-size:60.000000px;}
.fs5_c00065{font-size:60.857039px;}
.fs0_c00065{font-size:72.000000px;}
.fs1_c00065{font-size:74.215901px;}
.y0_c00065{bottom:0.000000px;}
.y3_c00065{bottom:2.565000px;}
.y36_c00065{bottom:3.120150px;}
.y35_c00065{bottom:34.744500px;}
.y1_c00065{bottom:54.000000px;}
.y34_c00065{bottom:55.485000px;}
.y33_c00065{bottom:72.765000px;}
.y32_c00065{bottom:78.885000px;}
.y31_c00065{bottom:90.405000px;}
.y30_c00065{bottom:96.525000px;}
.y2f_c00065{bottom:113.805000px;}
.y2e_c00065{bottom:131.445000px;}
.y2d_c00065{bottom:149.085000px;}
.y2c_c00065{bottom:160.246800px;}
.y2b_c00065{bottom:184.005000px;}
.y2a_c00065{bottom:195.521040px;}
.y29_c00065{bottom:218.925000px;}
.y28_c00065{bottom:245.565000px;}
.y27_c00065{bottom:274.725000px;}
.y26_c00065{bottom:295.965000px;}
.y25_c00065{bottom:331.965000px;}
.y24_c00065{bottom:352.845000px;}
.y23_c00065{bottom:373.725000px;}
.y22_c00065{bottom:394.965000px;}
.y21_c00065{bottom:415.845000px;}
.y20_c00065{bottom:436.725000px;}
.y1f_c00065{bottom:472.725000px;}
.y1e_c00065{bottom:493.965000px;}
.y1d_c00065{bottom:514.845000px;}
.y1c_c00065{bottom:535.725000px;}
.y1b_c00065{bottom:556.965000px;}
.y1a_c00065{bottom:577.845000px;}
.y19_c00065{bottom:598.725000px;}
.y18_c00065{bottom:619.965000px;}
.y17_c00065{bottom:640.845000px;}
.y16_c00065{bottom:661.725000px;}
.y15_c00065{bottom:682.965000px;}
.y14_c00065{bottom:718.965000px;}
.y13_c00065{bottom:739.845000px;}
.y12_c00065{bottom:761.085000px;}
.y11_c00065{bottom:781.965000px;}
.y10_c00065{bottom:802.845000px;}
.yf_c00065{bottom:824.085000px;}
.ye_c00065{bottom:860.085000px;}
.yd_c00065{bottom:880.965000px;}
.yc_c00065{bottom:901.845000px;}
.yb_c00065{bottom:923.085000px;}
.ya_c00065{bottom:943.965000px;}
.y9_c00065{bottom:964.845000px;}
.y8_c00065{bottom:986.085000px;}
.y7_c00065{bottom:1006.965000px;}
.y6_c00065{bottom:1042.965000px;}
.y5_c00065{bottom:1063.845000px;}
.y4_c00065{bottom:1085.085000px;}
.y2_c00065{bottom:1138.365000px;}
.h9_c00065{height:19.255500px;}
.h6_c00065{height:32.616000px;}
.ha_c00065{height:46.320000px;}
.h8_c00065{height:46.981634px;}
.h7_c00065{height:53.490240px;}
.h4_c00065{height:57.294676px;}
.h3_c00065{height:65.232000px;}
.h5_c00065{height:68.074560px;}
.h2_c00065{height:1201.365000px;}
.h0_c00065{height:1262.835000px;}
.h1_c00065{height:1263.000000px;}
.w3_c00065{width:16.680000px;}
.w2_c00065{width:863.955000px;}
.w0_c00065{width:892.935000px;}
.w1_c00065{width:893.250000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:14.490000px;}
.x2_c00065{left:113.040150px;}
.x8_c00065{left:119.034000px;}
.x14_c00065{left:127.217700px;}
.x19_c00065{left:145.530000px;}
.x3_c00065{left:150.011700px;}
.x5_c00065{left:156.421200px;}
.xa_c00065{left:170.816850px;}
.x9_c00065{left:201.076500px;}
.x17_c00065{left:205.506900px;}
.x4_c00065{left:230.956350px;}
.xb_c00065{left:238.820100px;}
.x18_c00065{left:251.361000px;}
.x10_c00065{left:268.103100px;}
.x11_c00065{left:307.090200px;}
.xe_c00065{left:343.537350px;}
.xf_c00065{left:411.540450px;}
.xc_c00065{left:416.703300px;}
.xd_c00065{left:455.690550px;}
.x6_c00065{left:578.562300px;}
.x15_c00065{left:619.801350px;}
.x16_c00065{left:623.971050px;}
.x7_c00065{left:625.938750px;}
.x12_c00065{left:656.105400px;}
.x13_c00065{left:700.350900px;}
.x1a_c00065{left:768.255000px;}
@media print{
.v2_c00065{vertical-align:-21.760000pt;}
.v0_c00065{vertical-align:0.000000pt;}
.v1_c00065{vertical-align:26.880000pt;}
.ls5_c00065{letter-spacing:-0.159616pt;}
.ls4_c00065{letter-spacing:0.000000pt;}
.ls8_c00065{letter-spacing:0.128000pt;}
.lsa_c00065{letter-spacing:0.236160pt;}
.ls1_c00065{letter-spacing:0.262400pt;}
.lsc_c00065{letter-spacing:0.425088pt;}
.ls0_c00065{letter-spacing:0.472320pt;}
.lse_c00065{letter-spacing:0.486856pt;}
.lsf_c00065{letter-spacing:0.632913pt;}
.ls7_c00065{letter-spacing:0.661248pt;}
.lsb_c00065{letter-spacing:0.681599pt;}
.ls6_c00065{letter-spacing:4.980352pt;}
.ls2_c00065{letter-spacing:5.312000pt;}
.ls3_c00065{letter-spacing:5.475484pt;}
.lsd_c00065{letter-spacing:6.092928pt;}
.ls9_c00065{letter-spacing:10.039424pt;}
.ws3_c00065{word-spacing:-15.720049pt;}
.ws4_c00065{word-spacing:-15.525307pt;}
.ws0_c00065{word-spacing:-10.159744pt;}
.ws2_c00065{word-spacing:-9.024000pt;}
.ws1_c00065{word-spacing:-8.896000pt;}
.ws5_c00065{word-spacing:0.000000pt;}
._13_c00065{margin-left:-10.598400pt;}
._12_c00065{margin-left:-9.597440pt;}
._14_c00065{margin-left:-8.687360pt;}
._15_c00065{margin-left:-6.238720pt;}
._10_c00065{margin-left:-5.248000pt;}
._f_c00065{margin-left:-4.355840pt;}
._11_c00065{margin-left:-1.049600pt;}
._2_c00065{width:1.067051pt;}
._3_c00065{width:2.816000pt;}
._1_c00065{width:3.776000pt;}
._a_c00065{width:4.736000pt;}
._4_c00065{width:5.632000pt;}
._b_c00065{width:6.912000pt;}
._c_c00065{width:7.936000pt;}
._6_c00065{width:9.728000pt;}
._7_c00065{width:10.752000pt;}
._0_c00065{width:12.032000pt;}
._5_c00065{width:12.992000pt;}
._9_c00065{width:14.528000pt;}
._8_c00065{width:16.256000pt;}
._e_c00065{width:18.944000pt;}
._d_c00065{width:24.960000pt;}
.fs3_c00065{font-size:32.000000pt;}
.fs2_c00065{font-size:37.120000pt;}
.fs4_c00065{font-size:52.480000pt;}
.fs6_c00065{font-size:53.333333pt;}
.fs5_c00065{font-size:54.095146pt;}
.fs0_c00065{font-size:64.000000pt;}
.fs1_c00065{font-size:65.969690pt;}
.y0_c00065{bottom:0.000000pt;}
.y3_c00065{bottom:2.280000pt;}
.y36_c00065{bottom:2.773467pt;}
.y35_c00065{bottom:30.884000pt;}
.y1_c00065{bottom:48.000000pt;}
.y34_c00065{bottom:49.320000pt;}
.y33_c00065{bottom:64.680000pt;}
.y32_c00065{bottom:70.120000pt;}
.y31_c00065{bottom:80.360000pt;}
.y30_c00065{bottom:85.800000pt;}
.y2f_c00065{bottom:101.160000pt;}
.y2e_c00065{bottom:116.840000pt;}
.y2d_c00065{bottom:132.520000pt;}
.y2c_c00065{bottom:142.441600pt;}
.y2b_c00065{bottom:163.560000pt;}
.y2a_c00065{bottom:173.796480pt;}
.y29_c00065{bottom:194.600000pt;}
.y28_c00065{bottom:218.280000pt;}
.y27_c00065{bottom:244.200000pt;}
.y26_c00065{bottom:263.080000pt;}
.y25_c00065{bottom:295.080000pt;}
.y24_c00065{bottom:313.640000pt;}
.y23_c00065{bottom:332.200000pt;}
.y22_c00065{bottom:351.080000pt;}
.y21_c00065{bottom:369.640000pt;}
.y20_c00065{bottom:388.200000pt;}
.y1f_c00065{bottom:420.200000pt;}
.y1e_c00065{bottom:439.080000pt;}
.y1d_c00065{bottom:457.640000pt;}
.y1c_c00065{bottom:476.200000pt;}
.y1b_c00065{bottom:495.080000pt;}
.y1a_c00065{bottom:513.640000pt;}
.y19_c00065{bottom:532.200000pt;}
.y18_c00065{bottom:551.080000pt;}
.y17_c00065{bottom:569.640000pt;}
.y16_c00065{bottom:588.200000pt;}
.y15_c00065{bottom:607.080000pt;}
.y14_c00065{bottom:639.080000pt;}
.y13_c00065{bottom:657.640000pt;}
.y12_c00065{bottom:676.520000pt;}
.y11_c00065{bottom:695.080000pt;}
.y10_c00065{bottom:713.640000pt;}
.yf_c00065{bottom:732.520000pt;}
.ye_c00065{bottom:764.520000pt;}
.yd_c00065{bottom:783.080000pt;}
.yc_c00065{bottom:801.640000pt;}
.yb_c00065{bottom:820.520000pt;}
.ya_c00065{bottom:839.080000pt;}
.y9_c00065{bottom:857.640000pt;}
.y8_c00065{bottom:876.520000pt;}
.y7_c00065{bottom:895.080000pt;}
.y6_c00065{bottom:927.080000pt;}
.y5_c00065{bottom:945.640000pt;}
.y4_c00065{bottom:964.520000pt;}
.y2_c00065{bottom:1011.880000pt;}
.h9_c00065{height:17.116000pt;}
.h6_c00065{height:28.992000pt;}
.ha_c00065{height:41.173333pt;}
.h8_c00065{height:41.761453pt;}
.h7_c00065{height:47.546880pt;}
.h4_c00065{height:50.928601pt;}
.h3_c00065{height:57.984000pt;}
.h5_c00065{height:60.510720pt;}
.h2_c00065{height:1067.880000pt;}
.h0_c00065{height:1122.520000pt;}
.h1_c00065{height:1122.666667pt;}
.w3_c00065{width:14.826667pt;}
.w2_c00065{width:767.960000pt;}
.w0_c00065{width:793.720000pt;}
.w1_c00065{width:794.000000pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:12.880000pt;}
.x2_c00065{left:100.480133pt;}
.x8_c00065{left:105.808000pt;}
.x14_c00065{left:113.082400pt;}
.x19_c00065{left:129.360000pt;}
.x3_c00065{left:133.343733pt;}
.x5_c00065{left:139.041067pt;}
.xa_c00065{left:151.837200pt;}
.x9_c00065{left:178.734667pt;}
.x17_c00065{left:182.672800pt;}
.x4_c00065{left:205.294533pt;}
.xb_c00065{left:212.284533pt;}
.x18_c00065{left:223.432000pt;}
.x10_c00065{left:238.313867pt;}
.x11_c00065{left:272.969067pt;}
.xe_c00065{left:305.366533pt;}
.xf_c00065{left:365.813733pt;}
.xc_c00065{left:370.402933pt;}
.xd_c00065{left:405.058267pt;}
.x6_c00065{left:514.277600pt;}
.x15_c00065{left:550.934533pt;}
.x16_c00065{left:554.640933pt;}
.x7_c00065{left:556.390000pt;}
.x12_c00065{left:583.204800pt;}
.x13_c00065{left:622.534133pt;}
.x1a_c00065{left:682.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_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_049a6c6219087489fcc4731e.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_642a10cfc0ae74746b5d1073.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;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:ff3_c00066;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_575befe08308659f601d9c8a.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00066{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls4_c00066{letter-spacing:0.000000px;}
.ls6_c00066{letter-spacing:5.430672px;}
.ls2_c00066{letter-spacing:5.976000px;}
.ls0_c00066{letter-spacing:5.986200px;}
.ls3_c00066{letter-spacing:6.159920px;}
.ls5_c00066{letter-spacing:6.912000px;}
.ls1_c00066{letter-spacing:54.864000px;}
.sc__c00066{text-shadow:none;}
.sc1_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00066{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc1_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00066{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00066{word-spacing:-21.043152px;}
.ws1_c00066{word-spacing:0.000000px;}
._9_c00066{margin-left:-6.552000px;}
._a_c00066{margin-left:-1.179360px;}
._4_c00066{width:1.800000px;}
._1_c00066{width:3.528000px;}
._0_c00066{width:4.536000px;}
._5_c00066{width:5.688000px;}
._3_c00066{width:6.840000px;}
._7_c00066{width:8.352000px;}
._c_c00066{width:16.128000px;}
._8_c00066{width:18.288000px;}
._2_c00066{width:21.312000px;}
._6_c00066{width:23.040000px;}
._b_c00066{width:25.560000px;}
.fc0_c00066{color:rgb(0,0,0);}
.fs2_c00066{font-size:56.160000px;}
.fs3_c00066{font-size:60.000000px;}
.fs0_c00066{font-size:72.000000px;}
.fs1_c00066{font-size:74.215901px;}
.y0_c00066{bottom:0.000000px;}
.y3_c00066{bottom:2.565000px;}
.y2a_c00066{bottom:3.120150px;}
.y29_c00066{bottom:34.744500px;}
.y1_c00066{bottom:54.000000px;}
.y28_c00066{bottom:163.845000px;}
.y27_c00066{bottom:184.725000px;}
.y26_c00066{bottom:205.965000px;}
.y25_c00066{bottom:226.845000px;}
.y24_c00066{bottom:262.845000px;}
.y23_c00066{bottom:283.725000px;}
.y22_c00066{bottom:319.725000px;}
.y21_c00066{bottom:340.965000px;}
.y20_c00066{bottom:376.965000px;}
.y1f_c00066{bottom:412.965000px;}
.y1e_c00066{bottom:433.845000px;}
.y1d_c00066{bottom:469.845000px;}
.y1c_c00066{bottom:490.725000px;}
.y1b_c00066{bottom:511.965000px;}
.y1a_c00066{bottom:532.845000px;}
.y19_c00066{bottom:568.845000px;}
.y18_c00066{bottom:604.845000px;}
.y17_c00066{bottom:625.725000px;}
.y16_c00066{bottom:661.725000px;}
.y15_c00066{bottom:697.725000px;}
.y14_c00066{bottom:718.965000px;}
.y13_c00066{bottom:739.845000px;}
.y12_c00066{bottom:761.085000px;}
.y11_c00066{bottom:781.965000px;}
.y10_c00066{bottom:802.845000px;}
.yf_c00066{bottom:824.085000px;}
.ye_c00066{bottom:844.965000px;}
.yd_c00066{bottom:865.845000px;}
.yc_c00066{bottom:901.845000px;}
.yb_c00066{bottom:923.085000px;}
.ya_c00066{bottom:943.965000px;}
.y9_c00066{bottom:964.845000px;}
.y8_c00066{bottom:1000.845000px;}
.y7_c00066{bottom:1022.085000px;}
.y6_c00066{bottom:1042.965000px;}
.y5_c00066{bottom:1063.845000px;}
.y4_c00066{bottom:1085.085000px;}
.y2_c00066{bottom:1138.365000px;}
.h5_c00066{height:19.255500px;}
.h6_c00066{height:46.320000px;}
.h4_c00066{height:57.294676px;}
.h3_c00066{height:65.232000px;}
.h2_c00066{height:1201.365000px;}
.h0_c00066{height:1262.835000px;}
.h1_c00066{height:1263.000000px;}
.w3_c00066{width:16.680000px;}
.w2_c00066{width:863.955000px;}
.w0_c00066{width:892.935000px;}
.w1_c00066{width:893.250000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:14.490000px;}
.x2_c00066{left:113.040150px;}
.x5_c00066{left:136.043700px;}
.x16_c00066{left:140.037600px;}
.x13_c00066{left:148.031550px;}
.x3_c00066{left:150.011700px;}
.x10_c00066{left:155.820150px;}
.x6_c00066{left:175.030950px;}
.xb_c00066{left:181.043250px;}
.xe_c00066{left:214.108500px;}
.x4_c00066{left:230.956350px;}
.xf_c00066{left:258.099600px;}
.x9_c00066{left:264.179850px;}
.xa_c00066{left:317.189250px;}
.x14_c00066{left:353.120700px;}
.x17_c00066{left:397.135200px;}
.x18_c00066{left:407.143050px;}
.x7_c00066{left:412.135650px;}
.x15_c00066{left:425.065500px;}
.x8_c00066{left:451.122750px;}
.x19_c00066{left:489.206550px;}
.x1a_c00066{left:496.208550px;}
.xc_c00066{left:581.859750px;}
.xd_c00066{left:620.847000px;}
.x11_c00066{left:723.390450px;}
.x12_c00066{left:750.390000px;}
.x1b_c00066{left:768.255000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls4_c00066{letter-spacing:0.000000pt;}
.ls6_c00066{letter-spacing:4.827264pt;}
.ls2_c00066{letter-spacing:5.312000pt;}
.ls0_c00066{letter-spacing:5.321067pt;}
.ls3_c00066{letter-spacing:5.475484pt;}
.ls5_c00066{letter-spacing:6.144000pt;}
.ls1_c00066{letter-spacing:48.768000pt;}
.ws0_c00066{word-spacing:-18.705024pt;}
.ws1_c00066{word-spacing:0.000000pt;}
._9_c00066{margin-left:-5.824000pt;}
._a_c00066{margin-left:-1.048320pt;}
._4_c00066{width:1.600000pt;}
._1_c00066{width:3.136000pt;}
._0_c00066{width:4.032000pt;}
._5_c00066{width:5.056000pt;}
._3_c00066{width:6.080000pt;}
._7_c00066{width:7.424000pt;}
._c_c00066{width:14.336000pt;}
._8_c00066{width:16.256000pt;}
._2_c00066{width:18.944000pt;}
._6_c00066{width:20.480000pt;}
._b_c00066{width:22.720000pt;}
.fs2_c00066{font-size:49.920000pt;}
.fs3_c00066{font-size:53.333333pt;}
.fs0_c00066{font-size:64.000000pt;}
.fs1_c00066{font-size:65.969690pt;}
.y0_c00066{bottom:0.000000pt;}
.y3_c00066{bottom:2.280000pt;}
.y2a_c00066{bottom:2.773467pt;}
.y29_c00066{bottom:30.884000pt;}
.y1_c00066{bottom:48.000000pt;}
.y28_c00066{bottom:145.640000pt;}
.y27_c00066{bottom:164.200000pt;}
.y26_c00066{bottom:183.080000pt;}
.y25_c00066{bottom:201.640000pt;}
.y24_c00066{bottom:233.640000pt;}
.y23_c00066{bottom:252.200000pt;}
.y22_c00066{bottom:284.200000pt;}
.y21_c00066{bottom:303.080000pt;}
.y20_c00066{bottom:335.080000pt;}
.y1f_c00066{bottom:367.080000pt;}
.y1e_c00066{bottom:385.640000pt;}
.y1d_c00066{bottom:417.640000pt;}
.y1c_c00066{bottom:436.200000pt;}
.y1b_c00066{bottom:455.080000pt;}
.y1a_c00066{bottom:473.640000pt;}
.y19_c00066{bottom:505.640000pt;}
.y18_c00066{bottom:537.640000pt;}
.y17_c00066{bottom:556.200000pt;}
.y16_c00066{bottom:588.200000pt;}
.y15_c00066{bottom:620.200000pt;}
.y14_c00066{bottom:639.080000pt;}
.y13_c00066{bottom:657.640000pt;}
.y12_c00066{bottom:676.520000pt;}
.y11_c00066{bottom:695.080000pt;}
.y10_c00066{bottom:713.640000pt;}
.yf_c00066{bottom:732.520000pt;}
.ye_c00066{bottom:751.080000pt;}
.yd_c00066{bottom:769.640000pt;}
.yc_c00066{bottom:801.640000pt;}
.yb_c00066{bottom:820.520000pt;}
.ya_c00066{bottom:839.080000pt;}
.y9_c00066{bottom:857.640000pt;}
.y8_c00066{bottom:889.640000pt;}
.y7_c00066{bottom:908.520000pt;}
.y6_c00066{bottom:927.080000pt;}
.y5_c00066{bottom:945.640000pt;}
.y4_c00066{bottom:964.520000pt;}
.y2_c00066{bottom:1011.880000pt;}
.h5_c00066{height:17.116000pt;}
.h6_c00066{height:41.173333pt;}
.h4_c00066{height:50.928601pt;}
.h3_c00066{height:57.984000pt;}
.h2_c00066{height:1067.880000pt;}
.h0_c00066{height:1122.520000pt;}
.h1_c00066{height:1122.666667pt;}
.w3_c00066{width:14.826667pt;}
.w2_c00066{width:767.960000pt;}
.w0_c00066{width:793.720000pt;}
.w1_c00066{width:794.000000pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:12.880000pt;}
.x2_c00066{left:100.480133pt;}
.x5_c00066{left:120.927733pt;}
.x16_c00066{left:124.477867pt;}
.x13_c00066{left:131.583600pt;}
.x3_c00066{left:133.343733pt;}
.x10_c00066{left:138.506800pt;}
.x6_c00066{left:155.583067pt;}
.xb_c00066{left:160.927333pt;}
.xe_c00066{left:190.318667pt;}
.x4_c00066{left:205.294533pt;}
.xf_c00066{left:229.421867pt;}
.x9_c00066{left:234.826533pt;}
.xa_c00066{left:281.946000pt;}
.x14_c00066{left:313.885067pt;}
.x17_c00066{left:353.009067pt;}
.x18_c00066{left:361.904933pt;}
.x7_c00066{left:366.342800pt;}
.x15_c00066{left:377.836000pt;}
.x8_c00066{left:400.998000pt;}
.x19_c00066{left:434.850267pt;}
.x1a_c00066{left:441.074267pt;}
.xc_c00066{left:517.208667pt;}
.xd_c00066{left:551.864000pt;}
.x11_c00066{left:643.013733pt;}
.x12_c00066{left:667.013333pt;}
.x1b_c00066{left:682.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_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_d893ce1087a8ba00fc0fd364.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.134000;font-style:normal;font-weight:normal;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_52c56162606f4b14434864b3.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;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:ff3_c00067;src:url('chunks/assets/font_d2f9fd548fbb7af8ac8a594c.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:0.787000;font-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_c00067{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00067{vertical-align:-24.480000px;}
.v0_c00067{vertical-align:0.000000px;}
.v1_c00067{vertical-align:30.240000px;}
.ls10_c00067{letter-spacing:-0.179568px;}
.lsf_c00067{letter-spacing:0.000000px;}
.ls29_c00067{letter-spacing:0.144000px;}
.ls8_c00067{letter-spacing:0.236160px;}
.lsa_c00067{letter-spacing:0.265680px;}
.ls6_c00067{letter-spacing:0.295200px;}
.lsc_c00067{letter-spacing:0.312912px;}
.ls1c_c00067{letter-spacing:0.318816px;}
.ls15_c00067{letter-spacing:0.330480px;}
.ls13_c00067{letter-spacing:0.395280px;}
.ls32_c00067{letter-spacing:0.425088px;}
.ls2d_c00067{letter-spacing:0.438171px;}
.ls21_c00067{letter-spacing:0.478224px;}
.lsb_c00067{letter-spacing:0.501840px;}
.ls4_c00067{letter-spacing:0.507744px;}
.ls9_c00067{letter-spacing:0.531360px;}
.ls1f_c00067{letter-spacing:0.584496px;}
.ls11_c00067{letter-spacing:0.602640px;}
.ls3_c00067{letter-spacing:0.654480px;}
.ls1d_c00067{letter-spacing:0.690768px;}
.ls5_c00067{letter-spacing:0.712027px;}
.ls1a_c00067{letter-spacing:0.743904px;}
.ls20_c00067{letter-spacing:0.766799px;}
.ls23_c00067{letter-spacing:0.797040px;}
.ls25_c00067{letter-spacing:0.821570px;}
.ls14_c00067{letter-spacing:0.861840px;}
.ls2_c00067{letter-spacing:0.888364px;}
.ls1_c00067{letter-spacing:0.895044px;}
.ls17_c00067{letter-spacing:0.961838px;}
.ls24_c00067{letter-spacing:0.962352px;}
.ls1b_c00067{letter-spacing:0.991970px;}
.ls18_c00067{letter-spacing:1.028632px;}
.ls19_c00067{letter-spacing:1.198800px;}
.ls12_c00067{letter-spacing:1.235695px;}
.ls2a_c00067{letter-spacing:1.989648px;}
.ls1e_c00067{letter-spacing:2.816208px;}
.ls7_c00067{letter-spacing:2.833920px;}
.ls28_c00067{letter-spacing:5.119200px;}
.ls30_c00067{letter-spacing:5.295888px;}
.ls2b_c00067{letter-spacing:5.301792px;}
.ls26_c00067{letter-spacing:5.430672px;}
.ls2f_c00067{letter-spacing:5.514336px;}
.ls2e_c00067{letter-spacing:5.880384px;}
.lsd_c00067{letter-spacing:5.975400px;}
.ls0_c00067{letter-spacing:5.976000px;}
.lse_c00067{letter-spacing:6.159920px;}
.ls2c_c00067{letter-spacing:7.639776px;}
.ls22_c00067{letter-spacing:14.718672px;}
.ls16_c00067{letter-spacing:15.999120px;}
.ls31_c00067{letter-spacing:16.029360px;}
.ls27_c00067{letter-spacing:24.127200px;}
.sc__c00067{text-shadow:none;}
.sc1_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00067{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc1_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00067{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00067{word-spacing:-25.992000px;}
.ws10_c00067{word-spacing:-21.927456px;}
.wsf_c00067{word-spacing:-21.714912px;}
.ws11_c00067{word-spacing:-21.709008px;}
.wsd_c00067{word-spacing:-21.043152px;}
.ws6_c00067{word-spacing:-19.597451px;}
.ws4_c00067{word-spacing:-19.530657px;}
.ws3_c00067{word-spacing:-19.463862px;}
.ws5_c00067{word-spacing:-19.457183px;}
.ws7_c00067{word-spacing:-19.213200px;}
.ws2_c00067{word-spacing:-18.876240px;}
.wsc_c00067{word-spacing:-17.739827px;}
.wsa_c00067{word-spacing:-17.685056px;}
.ws8_c00067{word-spacing:-17.630284px;}
.ws9_c00067{word-spacing:-16.944480px;}
.wsb_c00067{word-spacing:-16.891344px;}
.ws0_c00067{word-spacing:-11.429712px;}
.wse_c00067{word-spacing:-10.152000px;}
.ws12_c00067{word-spacing:0.000000px;}
._7_c00067{margin-left:-16.524000px;}
._6_c00067{margin-left:-15.357600px;}
._12_c00067{margin-left:-7.302816px;}
._13_c00067{margin-left:-6.267168px;}
._14_c00067{margin-left:-5.077440px;}
._a_c00067{margin-left:-2.302560px;}
._3_c00067{margin-left:-1.101600px;}
._4_c00067{width:1.051320px;}
._9_c00067{width:3.004920px;}
._8_c00067{width:4.212000px;}
._d_c00067{width:6.040800px;}
._c_c00067{width:7.418880px;}
._2_c00067{width:8.424000px;}
._11_c00067{width:10.656000px;}
._b_c00067{width:13.871280px;}
._5_c00067{width:15.606240px;}
._1_c00067{width:18.072000px;}
._10_c00067{width:21.312000px;}
._0_c00067{width:22.536000px;}
._f_c00067{width:24.120000px;}
._e_c00067{width:26.424000px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs8_c00067{font-size:36.000000px;}
.fs2_c00067{font-size:41.760000px;}
.fs7_c00067{font-size:56.160000px;}
.fs5_c00067{font-size:59.040000px;}
.fs9_c00067{font-size:60.000000px;}
.fs6_c00067{font-size:60.857039px;}
.fs3_c00067{font-size:64.800000px;}
.fs4_c00067{font-size:66.794311px;}
.fs0_c00067{font-size:72.000000px;}
.fs1_c00067{font-size:74.215901px;}
.y0_c00067{bottom:0.000000px;}
.y3_c00067{bottom:2.565000px;}
.y3e_c00067{bottom:3.120150px;}
.y3d_c00067{bottom:34.744500px;}
.y1_c00067{bottom:54.000000px;}
.y3b_c00067{bottom:55.480680px;}
.y3c_c00067{bottom:55.485000px;}
.y3a_c00067{bottom:72.764640px;}
.y39_c00067{bottom:90.402840px;}
.y38_c00067{bottom:107.686800px;}
.y37_c00067{bottom:131.445000px;}
.y36_c00067{bottom:149.085000px;}
.y35_c00067{bottom:160.248600px;}
.y34_c00067{bottom:177.886800px;}
.y33_c00067{bottom:195.525000px;}
.y32_c00067{bottom:212.805000px;}
.y31_c00067{bottom:212.806800px;}
.y30_c00067{bottom:236.565000px;}
.y2f_c00067{bottom:263.205000px;}
.y2e_c00067{bottom:292.365000px;}
.y2d_c00067{bottom:313.245000px;}
.y2c_c00067{bottom:334.485000px;}
.y2b_c00067{bottom:370.485000px;}
.y2a_c00067{bottom:391.365000px;}
.y29_c00067{bottom:412.245000px;}
.y28_c00067{bottom:433.485000px;}
.y27_c00067{bottom:454.365000px;}
.y26_c00067{bottom:475.245000px;}
.y25_c00067{bottom:496.485000px;}
.y24_c00067{bottom:532.485000px;}
.y23_c00067{bottom:568.485000px;}
.y22_c00067{bottom:596.566800px;}
.y20_c00067{bottom:614.200680px;}
.y21_c00067{bottom:614.205000px;}
.y1f_c00067{bottom:631.484640px;}
.y1e_c00067{bottom:649.122840px;}
.y1d_c00067{bottom:666.761040px;}
.y1c_c00067{bottom:684.045000px;}
.y1a_c00067{bottom:709.241040px;}
.y1b_c00067{bottom:709.245000px;}
.y19_c00067{bottom:726.525000px;}
.y18_c00067{bottom:759.645000px;}
.y17_c00067{bottom:779.445000px;}
.y13_c00067{bottom:793.485000px;}
.y16_c00067{bottom:798.885000px;}
.y12_c00067{bottom:814.365000px;}
.y15_c00067{bottom:817.965000px;}
.y11_c00067{bottom:835.605000px;}
.y14_c00067{bottom:837.405000px;}
.y10_c00067{bottom:857.205000px;}
.yc_c00067{bottom:871.245000px;}
.yf_c00067{bottom:876.645000px;}
.yb_c00067{bottom:892.125000px;}
.ye_c00067{bottom:895.725000px;}
.ya_c00067{bottom:913.365000px;}
.yd_c00067{bottom:915.165000px;}
.y9_c00067{bottom:950.085000px;}
.y8_c00067{bottom:986.085000px;}
.y7_c00067{bottom:1006.965000px;}
.y6_c00067{bottom:1042.965000px;}
.y5_c00067{bottom:1063.845000px;}
.y4_c00067{bottom:1085.085000px;}
.y2_c00067{bottom:1138.365000px;}
.hb_c00067{height:19.255500px;}
.ha_c00067{height:32.616000px;}
.hc_c00067{height:46.320000px;}
.h9_c00067{height:46.981634px;}
.h7_c00067{height:51.565208px;}
.h8_c00067{height:53.490240px;}
.h4_c00067{height:57.294676px;}
.h6_c00067{height:58.708800px;}
.h3_c00067{height:65.232000px;}
.h5_c00067{height:68.074560px;}
.h2_c00067{height:1201.365000px;}
.h0_c00067{height:1262.835000px;}
.h1_c00067{height:1263.000000px;}
.w7_c00067{width:16.680000px;}
.w3_c00067{width:60.840000px;}
.w4_c00067{width:137.520000px;}
.w5_c00067{width:158.760000px;}
.w6_c00067{width:288.000000px;}
.w2_c00067{width:863.955000px;}
.w0_c00067{width:892.935000px;}
.w1_c00067{width:893.250000px;}
.x0_c00067{left:0.000000px;}
.x6_c00067{left:7.920150px;}
.x1_c00067{left:14.490000px;}
.xe_c00067{left:55.244100px;}
.xb_c00067{left:56.405400px;}
.x13_c00067{left:88.540500px;}
.x14_c00067{left:91.939950px;}
.x8_c00067{left:93.544350px;}
.x2_c00067{left:113.040150px;}
.x5_c00067{left:119.610000px;}
.xc_c00067{left:132.068700px;}
.xf_c00067{left:147.973200px;}
.x3_c00067{left:150.011700px;}
.x26_c00067{left:156.389250px;}
.xd_c00067{left:171.486450px;}
.x7_c00067{left:181.170000px;}
.x10_c00067{left:186.434100px;}
.x4_c00067{left:230.956350px;}
.x11_c00067{left:238.993800px;}
.x22_c00067{left:251.533050px;}
.x12_c00067{left:280.259850px;}
.x9_c00067{left:319.410000px;}
.x23_c00067{left:342.146550px;}
.x15_c00067{left:391.842750px;}
.x16_c00067{left:433.324650px;}
.x20_c00067{left:448.168650px;}
.xa_c00067{left:478.890000px;}
.x17_c00067{left:496.261950px;}
.x19_c00067{left:508.155750px;}
.x18_c00067{left:532.096500px;}
.x24_c00067{left:540.333150px;}
.x21_c00067{left:548.286150px;}
.x1a_c00067{left:551.504850px;}
.x1e_c00067{left:560.534550px;}
.x25_c00067{left:562.170000px;}
.x27_c00067{left:621.073200px;}
.x1b_c00067{left:627.806100px;}
.x1c_c00067{left:631.975650px;}
.x28_c00067{left:641.104650px;}
.x1d_c00067{left:668.527650px;}
.x1f_c00067{left:703.180650px;}
.x29_c00067{left:768.255000px;}
@media print{
.v2_c00067{vertical-align:-21.760000pt;}
.v0_c00067{vertical-align:0.000000pt;}
.v1_c00067{vertical-align:26.880000pt;}
.ls10_c00067{letter-spacing:-0.159616pt;}
.lsf_c00067{letter-spacing:0.000000pt;}
.ls29_c00067{letter-spacing:0.128000pt;}
.ls8_c00067{letter-spacing:0.209920pt;}
.lsa_c00067{letter-spacing:0.236160pt;}
.ls6_c00067{letter-spacing:0.262400pt;}
.lsc_c00067{letter-spacing:0.278144pt;}
.ls1c_c00067{letter-spacing:0.283392pt;}
.ls15_c00067{letter-spacing:0.293760pt;}
.ls13_c00067{letter-spacing:0.351360pt;}
.ls32_c00067{letter-spacing:0.377856pt;}
.ls2d_c00067{letter-spacing:0.389485pt;}
.ls21_c00067{letter-spacing:0.425088pt;}
.lsb_c00067{letter-spacing:0.446080pt;}
.ls4_c00067{letter-spacing:0.451328pt;}
.ls9_c00067{letter-spacing:0.472320pt;}
.ls1f_c00067{letter-spacing:0.519552pt;}
.ls11_c00067{letter-spacing:0.535680pt;}
.ls3_c00067{letter-spacing:0.581760pt;}
.ls1d_c00067{letter-spacing:0.614016pt;}
.ls5_c00067{letter-spacing:0.632913pt;}
.ls1a_c00067{letter-spacing:0.661248pt;}
.ls20_c00067{letter-spacing:0.681599pt;}
.ls23_c00067{letter-spacing:0.708480pt;}
.ls25_c00067{letter-spacing:0.730284pt;}
.ls14_c00067{letter-spacing:0.766080pt;}
.ls2_c00067{letter-spacing:0.789657pt;}
.ls1_c00067{letter-spacing:0.795594pt;}
.ls17_c00067{letter-spacing:0.854967pt;}
.ls24_c00067{letter-spacing:0.855424pt;}
.ls1b_c00067{letter-spacing:0.881751pt;}
.ls18_c00067{letter-spacing:0.914340pt;}
.ls19_c00067{letter-spacing:1.065600pt;}
.ls12_c00067{letter-spacing:1.098395pt;}
.ls2a_c00067{letter-spacing:1.768576pt;}
.ls1e_c00067{letter-spacing:2.503296pt;}
.ls7_c00067{letter-spacing:2.519040pt;}
.ls28_c00067{letter-spacing:4.550400pt;}
.ls30_c00067{letter-spacing:4.707456pt;}
.ls2b_c00067{letter-spacing:4.712704pt;}
.ls26_c00067{letter-spacing:4.827264pt;}
.ls2f_c00067{letter-spacing:4.901632pt;}
.ls2e_c00067{letter-spacing:5.227008pt;}
.lsd_c00067{letter-spacing:5.311467pt;}
.ls0_c00067{letter-spacing:5.312000pt;}
.lse_c00067{letter-spacing:5.475484pt;}
.ls2c_c00067{letter-spacing:6.790912pt;}
.ls22_c00067{letter-spacing:13.083264pt;}
.ls16_c00067{letter-spacing:14.221440pt;}
.ls31_c00067{letter-spacing:14.248320pt;}
.ls27_c00067{letter-spacing:21.446400pt;}
.ws1_c00067{word-spacing:-23.104000pt;}
.ws10_c00067{word-spacing:-19.491072pt;}
.wsf_c00067{word-spacing:-19.302144pt;}
.ws11_c00067{word-spacing:-19.296896pt;}
.wsd_c00067{word-spacing:-18.705024pt;}
.ws6_c00067{word-spacing:-17.419956pt;}
.ws4_c00067{word-spacing:-17.360584pt;}
.ws3_c00067{word-spacing:-17.301211pt;}
.ws5_c00067{word-spacing:-17.295274pt;}
.ws7_c00067{word-spacing:-17.078400pt;}
.ws2_c00067{word-spacing:-16.778880pt;}
.wsc_c00067{word-spacing:-15.768735pt;}
.wsa_c00067{word-spacing:-15.720049pt;}
.ws8_c00067{word-spacing:-15.671364pt;}
.ws9_c00067{word-spacing:-15.061760pt;}
.wsb_c00067{word-spacing:-15.014528pt;}
.ws0_c00067{word-spacing:-10.159744pt;}
.wse_c00067{word-spacing:-9.024000pt;}
.ws12_c00067{word-spacing:0.000000pt;}
._7_c00067{margin-left:-14.688000pt;}
._6_c00067{margin-left:-13.651200pt;}
._12_c00067{margin-left:-6.491392pt;}
._13_c00067{margin-left:-5.570816pt;}
._14_c00067{margin-left:-4.513280pt;}
._a_c00067{margin-left:-2.046720pt;}
._3_c00067{margin-left:-0.979200pt;}
._4_c00067{width:0.934507pt;}
._9_c00067{width:2.671040pt;}
._8_c00067{width:3.744000pt;}
._d_c00067{width:5.369600pt;}
._c_c00067{width:6.594560pt;}
._2_c00067{width:7.488000pt;}
._11_c00067{width:9.472000pt;}
._b_c00067{width:12.330027pt;}
._5_c00067{width:13.872213pt;}
._1_c00067{width:16.064000pt;}
._10_c00067{width:18.944000pt;}
._0_c00067{width:20.032000pt;}
._f_c00067{width:21.440000pt;}
._e_c00067{width:23.488000pt;}
.fs8_c00067{font-size:32.000000pt;}
.fs2_c00067{font-size:37.120000pt;}
.fs7_c00067{font-size:49.920000pt;}
.fs5_c00067{font-size:52.480000pt;}
.fs9_c00067{font-size:53.333333pt;}
.fs6_c00067{font-size:54.095146pt;}
.fs3_c00067{font-size:57.600000pt;}
.fs4_c00067{font-size:59.372721pt;}
.fs0_c00067{font-size:64.000000pt;}
.fs1_c00067{font-size:65.969690pt;}
.y0_c00067{bottom:0.000000pt;}
.y3_c00067{bottom:2.280000pt;}
.y3e_c00067{bottom:2.773467pt;}
.y3d_c00067{bottom:30.884000pt;}
.y1_c00067{bottom:48.000000pt;}
.y3b_c00067{bottom:49.316160pt;}
.y3c_c00067{bottom:49.320000pt;}
.y3a_c00067{bottom:64.679680pt;}
.y39_c00067{bottom:80.358080pt;}
.y38_c00067{bottom:95.721600pt;}
.y37_c00067{bottom:116.840000pt;}
.y36_c00067{bottom:132.520000pt;}
.y35_c00067{bottom:142.443200pt;}
.y34_c00067{bottom:158.121600pt;}
.y33_c00067{bottom:173.800000pt;}
.y32_c00067{bottom:189.160000pt;}
.y31_c00067{bottom:189.161600pt;}
.y30_c00067{bottom:210.280000pt;}
.y2f_c00067{bottom:233.960000pt;}
.y2e_c00067{bottom:259.880000pt;}
.y2d_c00067{bottom:278.440000pt;}
.y2c_c00067{bottom:297.320000pt;}
.y2b_c00067{bottom:329.320000pt;}
.y2a_c00067{bottom:347.880000pt;}
.y29_c00067{bottom:366.440000pt;}
.y28_c00067{bottom:385.320000pt;}
.y27_c00067{bottom:403.880000pt;}
.y26_c00067{bottom:422.440000pt;}
.y25_c00067{bottom:441.320000pt;}
.y24_c00067{bottom:473.320000pt;}
.y23_c00067{bottom:505.320000pt;}
.y22_c00067{bottom:530.281600pt;}
.y20_c00067{bottom:545.956160pt;}
.y21_c00067{bottom:545.960000pt;}
.y1f_c00067{bottom:561.319680pt;}
.y1e_c00067{bottom:576.998080pt;}
.y1d_c00067{bottom:592.676480pt;}
.y1c_c00067{bottom:608.040000pt;}
.y1a_c00067{bottom:630.436480pt;}
.y1b_c00067{bottom:630.440000pt;}
.y19_c00067{bottom:645.800000pt;}
.y18_c00067{bottom:675.240000pt;}
.y17_c00067{bottom:692.840000pt;}
.y13_c00067{bottom:705.320000pt;}
.y16_c00067{bottom:710.120000pt;}
.y12_c00067{bottom:723.880000pt;}
.y15_c00067{bottom:727.080000pt;}
.y11_c00067{bottom:742.760000pt;}
.y14_c00067{bottom:744.360000pt;}
.y10_c00067{bottom:761.960000pt;}
.yc_c00067{bottom:774.440000pt;}
.yf_c00067{bottom:779.240000pt;}
.yb_c00067{bottom:793.000000pt;}
.ye_c00067{bottom:796.200000pt;}
.ya_c00067{bottom:811.880000pt;}
.yd_c00067{bottom:813.480000pt;}
.y9_c00067{bottom:844.520000pt;}
.y8_c00067{bottom:876.520000pt;}
.y7_c00067{bottom:895.080000pt;}
.y6_c00067{bottom:927.080000pt;}
.y5_c00067{bottom:945.640000pt;}
.y4_c00067{bottom:964.520000pt;}
.y2_c00067{bottom:1011.880000pt;}
.hb_c00067{height:17.116000pt;}
.ha_c00067{height:28.992000pt;}
.hc_c00067{height:41.173333pt;}
.h9_c00067{height:41.761453pt;}
.h7_c00067{height:45.835741pt;}
.h8_c00067{height:47.546880pt;}
.h4_c00067{height:50.928601pt;}
.h6_c00067{height:52.185600pt;}
.h3_c00067{height:57.984000pt;}
.h5_c00067{height:60.510720pt;}
.h2_c00067{height:1067.880000pt;}
.h0_c00067{height:1122.520000pt;}
.h1_c00067{height:1122.666667pt;}
.w7_c00067{width:14.826667pt;}
.w3_c00067{width:54.080000pt;}
.w4_c00067{width:122.240000pt;}
.w5_c00067{width:141.120000pt;}
.w6_c00067{width:256.000000pt;}
.w2_c00067{width:767.960000pt;}
.w0_c00067{width:793.720000pt;}
.w1_c00067{width:794.000000pt;}
.x0_c00067{left:0.000000pt;}
.x6_c00067{left:7.040133pt;}
.x1_c00067{left:12.880000pt;}
.xe_c00067{left:49.105867pt;}
.xb_c00067{left:50.138133pt;}
.x13_c00067{left:78.702667pt;}
.x14_c00067{left:81.724400pt;}
.x8_c00067{left:83.150533pt;}
.x2_c00067{left:100.480133pt;}
.x5_c00067{left:106.320000pt;}
.xc_c00067{left:117.394400pt;}
.xf_c00067{left:131.531733pt;}
.x3_c00067{left:133.343733pt;}
.x26_c00067{left:139.012667pt;}
.xd_c00067{left:152.432400pt;}
.x7_c00067{left:161.040000pt;}
.x10_c00067{left:165.719200pt;}
.x4_c00067{left:205.294533pt;}
.x11_c00067{left:212.438933pt;}
.x22_c00067{left:223.584933pt;}
.x12_c00067{left:249.119867pt;}
.x9_c00067{left:283.920000pt;}
.x23_c00067{left:304.130267pt;}
.x15_c00067{left:348.304667pt;}
.x16_c00067{left:385.177467pt;}
.x20_c00067{left:398.372133pt;}
.xa_c00067{left:425.680000pt;}
.x17_c00067{left:441.121733pt;}
.x19_c00067{left:451.694000pt;}
.x18_c00067{left:472.974667pt;}
.x24_c00067{left:480.296133pt;}
.x21_c00067{left:487.365467pt;}
.x1a_c00067{left:490.226533pt;}
.x1e_c00067{left:498.252933pt;}
.x25_c00067{left:499.706667pt;}
.x27_c00067{left:552.065067pt;}
.x1b_c00067{left:558.049867pt;}
.x1c_c00067{left:561.756133pt;}
.x28_c00067{left:569.870800pt;}
.x1d_c00067{left:594.246800pt;}
.x1f_c00067{left:625.049467pt;}
.x29_c00067{left:682.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_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_80fec3e91d9ccd8671991a15.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.134000;font-style:normal;font-weight:normal;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_3e76c5c5a286dcaeb1dc5787.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;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:ff3_c00068;src:url('chunks/assets/font_21cc66f8e218f3690c80521c.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:0.772000;font-style:normal;font-weight:normal;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_22faf2ecd90e141cdc36d347.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:0.787000;font-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_c00068{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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:-24.480000px;}
.v0_c00068{vertical-align:0.000000px;}
.v1_c00068{vertical-align:30.240000px;}
.lsb_c00068{letter-spacing:-0.179568px;}
.lsa_c00068{letter-spacing:0.000000px;}
.ls10_c00068{letter-spacing:0.144000px;}
.ls6_c00068{letter-spacing:0.236160px;}
.ls13_c00068{letter-spacing:0.265680px;}
.ls3_c00068{letter-spacing:0.295200px;}
.lsf_c00068{letter-spacing:0.318816px;}
.lsc_c00068{letter-spacing:0.328628px;}
.ls18_c00068{letter-spacing:0.371952px;}
.ls12_c00068{letter-spacing:0.438171px;}
.lse_c00068{letter-spacing:0.478224px;}
.ls8_c00068{letter-spacing:0.501840px;}
.ls5_c00068{letter-spacing:0.517285px;}
.ls4_c00068{letter-spacing:0.531360px;}
.ls1a_c00068{letter-spacing:0.602485px;}
.ls1_c00068{letter-spacing:0.688200px;}
.ls11_c00068{letter-spacing:0.690768px;}
.ls1e_c00068{letter-spacing:0.712027px;}
.ls16_c00068{letter-spacing:0.797040px;}
.ls19_c00068{letter-spacing:0.962352px;}
.ls1f_c00068{letter-spacing:0.991970px;}
.ls1c_c00068{letter-spacing:2.704032px;}
.ls1b_c00068{letter-spacing:2.957904px;}
.lsd_c00068{letter-spacing:3.211776px;}
.ls2_c00068{letter-spacing:3.955680px;}
.ls1d_c00068{letter-spacing:5.354928px;}
.ls7_c00068{letter-spacing:5.372640px;}
.ls15_c00068{letter-spacing:5.514336px;}
.ls0_c00068{letter-spacing:5.976000px;}
.ls9_c00068{letter-spacing:6.159920px;}
.ls17_c00068{letter-spacing:8.448624px;}
.ls14_c00068{letter-spacing:9.210240px;}
.sc__c00068{text-shadow:none;}
.sc1_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00068{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc1_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00068{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6_c00068{word-spacing:-21.768048px;}
.ws0_c00068{word-spacing:-20.016000px;}
.ws2_c00068{word-spacing:-17.246885px;}
.ws5_c00068{word-spacing:-16.944480px;}
.ws3_c00068{word-spacing:-16.731936px;}
.ws1_c00068{word-spacing:-11.429712px;}
.ws4_c00068{word-spacing:-10.152000px;}
.ws7_c00068{word-spacing:0.000000px;}
._11_c00068{margin-left:-8.907840px;}
._14_c00068{margin-left:-7.151040px;}
._10_c00068{margin-left:-2.774880px;}
._f_c00068{margin-left:-1.168800px;}
._7_c00068{width:1.327800px;}
._b_c00068{width:3.312000px;}
._9_c00068{width:4.464000px;}
._1_c00068{width:5.904000px;}
._4_c00068{width:6.912000px;}
._13_c00068{width:8.088480px;}
._12_c00068{width:9.174240px;}
._d_c00068{width:11.016000px;}
._6_c00068{width:12.456000px;}
._2_c00068{width:13.608000px;}
._5_c00068{width:14.760000px;}
._c_c00068{width:16.920000px;}
._3_c00068{width:18.288000px;}
._a_c00068{width:21.888000px;}
._8_c00068{width:22.968000px;}
._e_c00068{width:39.312000px;}
._0_c00068{width:46.656000px;}
.fc0_c00068{color:rgb(0,0,0);}
.fs5_c00068{font-size:36.000000px;}
.fs2_c00068{font-size:41.760000px;}
.fs3_c00068{font-size:59.040000px;}
.fs6_c00068{font-size:60.000000px;}
.fs4_c00068{font-size:60.857039px;}
.fs0_c00068{font-size:72.000000px;}
.fs1_c00068{font-size:74.215901px;}
.y0_c00068{bottom:0.000000px;}
.y3_c00068{bottom:2.565000px;}
.y3e_c00068{bottom:3.120150px;}
.y3d_c00068{bottom:34.744500px;}
.y1_c00068{bottom:54.000000px;}
.y3c_c00068{bottom:55.485000px;}
.y3b_c00068{bottom:61.605000px;}
.y3a_c00068{bottom:72.765000px;}
.y39_c00068{bottom:78.885000px;}
.y38_c00068{bottom:90.401040px;}
.y37_c00068{bottom:113.805000px;}
.y36_c00068{bottom:125.326800px;}
.y35_c00068{bottom:149.085000px;}
.y34_c00068{bottom:160.245000px;}
.y33_c00068{bottom:166.365000px;}
.y32_c00068{bottom:177.886800px;}
.y30_c00068{bottom:195.522840px;}
.y31_c00068{bottom:195.525000px;}
.y2f_c00068{bottom:212.806800px;}
.y2e_c00068{bottom:236.565000px;}
.y2d_c00068{bottom:253.845000px;}
.y2c_c00068{bottom:271.485000px;}
.y2a_c00068{bottom:283.001040px;}
.y2b_c00068{bottom:283.005000px;}
.y29_c00068{bottom:306.405000px;}
.y28_c00068{bottom:317.925000px;}
.y27_c00068{bottom:317.926800px;}
.y25_c00068{bottom:335.561040px;}
.y26_c00068{bottom:335.565000px;}
.y24_c00068{bottom:352.845000px;}
.y23_c00068{bottom:385.605000px;}
.y22_c00068{bottom:409.725000px;}
.y21_c00068{bottom:430.965000px;}
.y20_c00068{bottom:451.845000px;}
.y1f_c00068{bottom:472.725000px;}
.y1e_c00068{bottom:508.725000px;}
.y1d_c00068{bottom:529.965000px;}
.y1c_c00068{bottom:550.845000px;}
.y1b_c00068{bottom:571.725000px;}
.y1a_c00068{bottom:592.965000px;}
.y19_c00068{bottom:613.845000px;}
.y18_c00068{bottom:634.725000px;}
.y17_c00068{bottom:655.965000px;}
.y16_c00068{bottom:676.845000px;}
.y15_c00068{bottom:712.845000px;}
.y14_c00068{bottom:734.085000px;}
.y13_c00068{bottom:754.965000px;}
.y12_c00068{bottom:775.845000px;}
.y11_c00068{bottom:797.085000px;}
.y10_c00068{bottom:817.965000px;}
.yf_c00068{bottom:838.845000px;}
.ye_c00068{bottom:860.085000px;}
.yd_c00068{bottom:896.085000px;}
.yc_c00068{bottom:916.965000px;}
.yb_c00068{bottom:937.845000px;}
.ya_c00068{bottom:959.085000px;}
.y9_c00068{bottom:979.965000px;}
.y8_c00068{bottom:1000.845000px;}
.y7_c00068{bottom:1022.085000px;}
.y6_c00068{bottom:1042.965000px;}
.y5_c00068{bottom:1063.845000px;}
.y4_c00068{bottom:1085.085000px;}
.y2_c00068{bottom:1138.365000px;}
.h9_c00068{height:19.255500px;}
.h8_c00068{height:32.616000px;}
.ha_c00068{height:46.320000px;}
.h7_c00068{height:46.981634px;}
.h6_c00068{height:53.490240px;}
.h4_c00068{height:57.294676px;}
.h3_c00068{height:65.232000px;}
.h5_c00068{height:68.074560px;}
.h2_c00068{height:1201.365000px;}
.h0_c00068{height:1262.835000px;}
.h1_c00068{height:1263.000000px;}
.w3_c00068{width:16.680000px;}
.w2_c00068{width:863.955000px;}
.w0_c00068{width:892.935000px;}
.w1_c00068{width:893.250000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:14.490000px;}
.x2_c00068{left:113.040150px;}
.x1f_c00068{left:127.217700px;}
.xc_c00068{left:143.180400px;}
.x3_c00068{left:150.011700px;}
.x20_c00068{left:151.381650px;}
.x5_c00068{left:158.021550px;}
.xd_c00068{left:219.291900px;}
.x4_c00068{left:230.956350px;}
.x1a_c00068{left:268.915650px;}
.x1b_c00068{left:288.909600px;}
.x18_c00068{left:328.868400px;}
.x8_c00068{left:337.538400px;}
.x6_c00068{left:339.984450px;}
.x19_c00068{left:366.352350px;}
.x1d_c00068{left:373.105200px;}
.x9_c00068{left:376.525650px;}
.x1e_c00068{left:402.279000px;}
.x7_c00068{left:420.964950px;}
.x14_c00068{left:422.308650px;}
.x1c_c00068{left:444.510450px;}
.x15_c00068{left:459.792450px;}
.x16_c00068{left:486.203550px;}
.x21_c00068{left:488.886150px;}
.xe_c00068{left:518.750250px;}
.x17_c00068{left:523.687500px;}
.x22_c00068{left:529.730250px;}
.xf_c00068{left:533.743950px;}
.x12_c00068{left:604.498500px;}
.x13_c00068{left:619.492350px;}
.x10_c00068{left:666.792450px;}
.xa_c00068{left:678.373200px;}
.x11_c00068{left:690.361050px;}
.xb_c00068{left:745.386150px;}
.x23_c00068{left:768.255000px;}
@media print{
.v2_c00068{vertical-align:-21.760000pt;}
.v0_c00068{vertical-align:0.000000pt;}
.v1_c00068{vertical-align:26.880000pt;}
.lsb_c00068{letter-spacing:-0.159616pt;}
.lsa_c00068{letter-spacing:0.000000pt;}
.ls10_c00068{letter-spacing:0.128000pt;}
.ls6_c00068{letter-spacing:0.209920pt;}
.ls13_c00068{letter-spacing:0.236160pt;}
.ls3_c00068{letter-spacing:0.262400pt;}
.lsf_c00068{letter-spacing:0.283392pt;}
.lsc_c00068{letter-spacing:0.292114pt;}
.ls18_c00068{letter-spacing:0.330624pt;}
.ls12_c00068{letter-spacing:0.389485pt;}
.lse_c00068{letter-spacing:0.425088pt;}
.ls8_c00068{letter-spacing:0.446080pt;}
.ls5_c00068{letter-spacing:0.459809pt;}
.ls4_c00068{letter-spacing:0.472320pt;}
.ls1a_c00068{letter-spacing:0.535542pt;}
.ls1_c00068{letter-spacing:0.611733pt;}
.ls11_c00068{letter-spacing:0.614016pt;}
.ls1e_c00068{letter-spacing:0.632913pt;}
.ls16_c00068{letter-spacing:0.708480pt;}
.ls19_c00068{letter-spacing:0.855424pt;}
.ls1f_c00068{letter-spacing:0.881751pt;}
.ls1c_c00068{letter-spacing:2.403584pt;}
.ls1b_c00068{letter-spacing:2.629248pt;}
.lsd_c00068{letter-spacing:2.854912pt;}
.ls2_c00068{letter-spacing:3.516160pt;}
.ls1d_c00068{letter-spacing:4.759936pt;}
.ls7_c00068{letter-spacing:4.775680pt;}
.ls15_c00068{letter-spacing:4.901632pt;}
.ls0_c00068{letter-spacing:5.312000pt;}
.ls9_c00068{letter-spacing:5.475484pt;}
.ls17_c00068{letter-spacing:7.509888pt;}
.ls14_c00068{letter-spacing:8.186880pt;}
.ws6_c00068{word-spacing:-19.349376pt;}
.ws0_c00068{word-spacing:-17.792000pt;}
.ws2_c00068{word-spacing:-15.330564pt;}
.ws5_c00068{word-spacing:-15.061760pt;}
.ws3_c00068{word-spacing:-14.872832pt;}
.ws1_c00068{word-spacing:-10.159744pt;}
.ws4_c00068{word-spacing:-9.024000pt;}
.ws7_c00068{word-spacing:0.000000pt;}
._11_c00068{margin-left:-7.918080pt;}
._14_c00068{margin-left:-6.356480pt;}
._10_c00068{margin-left:-2.466560pt;}
._f_c00068{margin-left:-1.038933pt;}
._7_c00068{width:1.180267pt;}
._b_c00068{width:2.944000pt;}
._9_c00068{width:3.968000pt;}
._1_c00068{width:5.248000pt;}
._4_c00068{width:6.144000pt;}
._13_c00068{width:7.189760pt;}
._12_c00068{width:8.154880pt;}
._d_c00068{width:9.792000pt;}
._6_c00068{width:11.072000pt;}
._2_c00068{width:12.096000pt;}
._5_c00068{width:13.120000pt;}
._c_c00068{width:15.040000pt;}
._3_c00068{width:16.256000pt;}
._a_c00068{width:19.456000pt;}
._8_c00068{width:20.416000pt;}
._e_c00068{width:34.944000pt;}
._0_c00068{width:41.472000pt;}
.fs5_c00068{font-size:32.000000pt;}
.fs2_c00068{font-size:37.120000pt;}
.fs3_c00068{font-size:52.480000pt;}
.fs6_c00068{font-size:53.333333pt;}
.fs4_c00068{font-size:54.095146pt;}
.fs0_c00068{font-size:64.000000pt;}
.fs1_c00068{font-size:65.969690pt;}
.y0_c00068{bottom:0.000000pt;}
.y3_c00068{bottom:2.280000pt;}
.y3e_c00068{bottom:2.773467pt;}
.y3d_c00068{bottom:30.884000pt;}
.y1_c00068{bottom:48.000000pt;}
.y3c_c00068{bottom:49.320000pt;}
.y3b_c00068{bottom:54.760000pt;}
.y3a_c00068{bottom:64.680000pt;}
.y39_c00068{bottom:70.120000pt;}
.y38_c00068{bottom:80.356480pt;}
.y37_c00068{bottom:101.160000pt;}
.y36_c00068{bottom:111.401600pt;}
.y35_c00068{bottom:132.520000pt;}
.y34_c00068{bottom:142.440000pt;}
.y33_c00068{bottom:147.880000pt;}
.y32_c00068{bottom:158.121600pt;}
.y30_c00068{bottom:173.798080pt;}
.y31_c00068{bottom:173.800000pt;}
.y2f_c00068{bottom:189.161600pt;}
.y2e_c00068{bottom:210.280000pt;}
.y2d_c00068{bottom:225.640000pt;}
.y2c_c00068{bottom:241.320000pt;}
.y2a_c00068{bottom:251.556480pt;}
.y2b_c00068{bottom:251.560000pt;}
.y29_c00068{bottom:272.360000pt;}
.y28_c00068{bottom:282.600000pt;}
.y27_c00068{bottom:282.601600pt;}
.y25_c00068{bottom:298.276480pt;}
.y26_c00068{bottom:298.280000pt;}
.y24_c00068{bottom:313.640000pt;}
.y23_c00068{bottom:342.760000pt;}
.y22_c00068{bottom:364.200000pt;}
.y21_c00068{bottom:383.080000pt;}
.y20_c00068{bottom:401.640000pt;}
.y1f_c00068{bottom:420.200000pt;}
.y1e_c00068{bottom:452.200000pt;}
.y1d_c00068{bottom:471.080000pt;}
.y1c_c00068{bottom:489.640000pt;}
.y1b_c00068{bottom:508.200000pt;}
.y1a_c00068{bottom:527.080000pt;}
.y19_c00068{bottom:545.640000pt;}
.y18_c00068{bottom:564.200000pt;}
.y17_c00068{bottom:583.080000pt;}
.y16_c00068{bottom:601.640000pt;}
.y15_c00068{bottom:633.640000pt;}
.y14_c00068{bottom:652.520000pt;}
.y13_c00068{bottom:671.080000pt;}
.y12_c00068{bottom:689.640000pt;}
.y11_c00068{bottom:708.520000pt;}
.y10_c00068{bottom:727.080000pt;}
.yf_c00068{bottom:745.640000pt;}
.ye_c00068{bottom:764.520000pt;}
.yd_c00068{bottom:796.520000pt;}
.yc_c00068{bottom:815.080000pt;}
.yb_c00068{bottom:833.640000pt;}
.ya_c00068{bottom:852.520000pt;}
.y9_c00068{bottom:871.080000pt;}
.y8_c00068{bottom:889.640000pt;}
.y7_c00068{bottom:908.520000pt;}
.y6_c00068{bottom:927.080000pt;}
.y5_c00068{bottom:945.640000pt;}
.y4_c00068{bottom:964.520000pt;}
.y2_c00068{bottom:1011.880000pt;}
.h9_c00068{height:17.116000pt;}
.h8_c00068{height:28.992000pt;}
.ha_c00068{height:41.173333pt;}
.h7_c00068{height:41.761453pt;}
.h6_c00068{height:47.546880pt;}
.h4_c00068{height:50.928601pt;}
.h3_c00068{height:57.984000pt;}
.h5_c00068{height:60.510720pt;}
.h2_c00068{height:1067.880000pt;}
.h0_c00068{height:1122.520000pt;}
.h1_c00068{height:1122.666667pt;}
.w3_c00068{width:14.826667pt;}
.w2_c00068{width:767.960000pt;}
.w0_c00068{width:793.720000pt;}
.w1_c00068{width:794.000000pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:12.880000pt;}
.x2_c00068{left:100.480133pt;}
.x1f_c00068{left:113.082400pt;}
.xc_c00068{left:127.271467pt;}
.x3_c00068{left:133.343733pt;}
.x20_c00068{left:134.561467pt;}
.x5_c00068{left:140.463600pt;}
.xd_c00068{left:194.926133pt;}
.x4_c00068{left:205.294533pt;}
.x1a_c00068{left:239.036133pt;}
.x1b_c00068{left:256.808533pt;}
.x18_c00068{left:292.327467pt;}
.x8_c00068{left:300.034133pt;}
.x6_c00068{left:302.208400pt;}
.x19_c00068{left:325.646533pt;}
.x1d_c00068{left:331.649067pt;}
.x9_c00068{left:334.689467pt;}
.x1e_c00068{left:357.581333pt;}
.x7_c00068{left:374.191067pt;}
.x14_c00068{left:375.385467pt;}
.x1c_c00068{left:395.120400pt;}
.x15_c00068{left:408.704400pt;}
.x16_c00068{left:432.180933pt;}
.x21_c00068{left:434.565467pt;}
.xe_c00068{left:461.111333pt;}
.x17_c00068{left:465.500000pt;}
.x22_c00068{left:470.871333pt;}
.xf_c00068{left:474.439067pt;}
.x12_c00068{left:537.332000pt;}
.x13_c00068{left:550.659867pt;}
.x10_c00068{left:592.704400pt;}
.xa_c00068{left:602.998400pt;}
.x11_c00068{left:613.654267pt;}
.xb_c00068{left:662.565467pt;}
.x23_c00068{left:682.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_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_4a8f8cb00b3c4a082773b8f9.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_7544873d4f206ad95abad32f.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;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:ff3_c00069;src:url('chunks/assets/font_afd4338d16e58c84bdba0e2e.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:0.787000;font-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_c00069{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00069{vertical-align:-24.480000px;}
.v0_c00069{vertical-align:0.000000px;}
.v1_c00069{vertical-align:30.240000px;}
.ls7_c00069{letter-spacing:-0.179568px;}
.ls4_c00069{letter-spacing:0.000000px;}
.ls8_c00069{letter-spacing:0.144000px;}
.lsa_c00069{letter-spacing:0.318816px;}
.ls1_c00069{letter-spacing:5.335200px;}
.ls6_c00069{letter-spacing:5.430672px;}
.ls9_c00069{letter-spacing:5.744592px;}
.ls0_c00069{letter-spacing:5.955600px;}
.ls2_c00069{letter-spacing:5.976000px;}
.ls3_c00069{letter-spacing:6.159920px;}
.ls5_c00069{letter-spacing:25.336800px;}
.sc__c00069{text-shadow:none;}
.sc1_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00069{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc1_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00069{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00069{word-spacing:-21.043152px;}
.ws1_c00069{word-spacing:-11.429712px;}
.ws2_c00069{word-spacing:-10.152000px;}
.ws3_c00069{word-spacing:0.000000px;}
._1_c00069{margin-left:-25.329600px;}
._8_c00069{margin-left:-5.306400px;}
._9_c00069{margin-left:-4.248000px;}
._7_c00069{margin-left:-1.037400px;}
._a_c00069{width:1.180800px;}
._6_c00069{width:4.320000px;}
._2_c00069{width:7.632000px;}
._4_c00069{width:13.968000px;}
._3_c00069{width:16.632000px;}
._0_c00069{width:25.344000px;}
._5_c00069{width:26.496000px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs4_c00069{font-size:36.000000px;}
.fs3_c00069{font-size:41.760000px;}
.fs2_c00069{font-size:56.160000px;}
.fs5_c00069{font-size:59.040000px;}
.fs6_c00069{font-size:60.000000px;}
.fs0_c00069{font-size:72.000000px;}
.fs1_c00069{font-size:74.215901px;}
.y0_c00069{bottom:0.000000px;}
.y3_c00069{bottom:2.565000px;}
.y14_c00069{bottom:3.120150px;}
.y13_c00069{bottom:34.744500px;}
.y1_c00069{bottom:54.000000px;}
.y12_c00069{bottom:55.481040px;}
.y11_c00069{bottom:78.885000px;}
.y10_c00069{bottom:105.525000px;}
.yf_c00069{bottom:763.965000px;}
.ye_c00069{bottom:799.965000px;}
.yd_c00069{bottom:835.965000px;}
.yc_c00069{bottom:871.965000px;}
.yb_c00069{bottom:892.845000px;}
.ya_c00069{bottom:914.085000px;}
.y9_c00069{bottom:950.085000px;}
.y8_c00069{bottom:986.085000px;}
.y7_c00069{bottom:1022.085000px;}
.y6_c00069{bottom:1042.965000px;}
.y5_c00069{bottom:1063.845000px;}
.y4_c00069{bottom:1085.085000px;}
.y2_c00069{bottom:1138.365000px;}
.h8_c00069{height:19.255500px;}
.h6_c00069{height:32.616000px;}
.h9_c00069{height:46.320000px;}
.h7_c00069{height:53.490240px;}
.h4_c00069{height:57.294676px;}
.h3_c00069{height:65.232000px;}
.h5_c00069{height:68.074560px;}
.h2_c00069{height:1201.365000px;}
.h0_c00069{height:1262.835000px;}
.h1_c00069{height:1263.000000px;}
.w3_c00069{width:16.680000px;}
.w2_c00069{width:863.955000px;}
.w0_c00069{width:892.935000px;}
.w1_c00069{width:893.250000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:14.490000px;}
.x2_c00069{left:113.040150px;}
.x3_c00069{left:150.011700px;}
.x4_c00069{left:230.956350px;}
.x9_c00069{left:308.515800px;}
.xa_c00069{left:347.503050px;}
.x7_c00069{left:608.496150px;}
.x5_c00069{left:611.256600px;}
.x6_c00069{left:653.250000px;}
.x8_c00069{left:677.489100px;}
.xb_c00069{left:768.255000px;}
@media print{
.v2_c00069{vertical-align:-21.760000pt;}
.v0_c00069{vertical-align:0.000000pt;}
.v1_c00069{vertical-align:26.880000pt;}
.ls7_c00069{letter-spacing:-0.159616pt;}
.ls4_c00069{letter-spacing:0.000000pt;}
.ls8_c00069{letter-spacing:0.128000pt;}
.lsa_c00069{letter-spacing:0.283392pt;}
.ls1_c00069{letter-spacing:4.742400pt;}
.ls6_c00069{letter-spacing:4.827264pt;}
.ls9_c00069{letter-spacing:5.106304pt;}
.ls0_c00069{letter-spacing:5.293867pt;}
.ls2_c00069{letter-spacing:5.312000pt;}
.ls3_c00069{letter-spacing:5.475484pt;}
.ls5_c00069{letter-spacing:22.521600pt;}
.ws0_c00069{word-spacing:-18.705024pt;}
.ws1_c00069{word-spacing:-10.159744pt;}
.ws2_c00069{word-spacing:-9.024000pt;}
.ws3_c00069{word-spacing:0.000000pt;}
._1_c00069{margin-left:-22.515200pt;}
._8_c00069{margin-left:-4.716800pt;}
._9_c00069{margin-left:-3.776000pt;}
._7_c00069{margin-left:-0.922133pt;}
._a_c00069{width:1.049600pt;}
._6_c00069{width:3.840000pt;}
._2_c00069{width:6.784000pt;}
._4_c00069{width:12.416000pt;}
._3_c00069{width:14.784000pt;}
._0_c00069{width:22.528000pt;}
._5_c00069{width:23.552000pt;}
.fs4_c00069{font-size:32.000000pt;}
.fs3_c00069{font-size:37.120000pt;}
.fs2_c00069{font-size:49.920000pt;}
.fs5_c00069{font-size:52.480000pt;}
.fs6_c00069{font-size:53.333333pt;}
.fs0_c00069{font-size:64.000000pt;}
.fs1_c00069{font-size:65.969690pt;}
.y0_c00069{bottom:0.000000pt;}
.y3_c00069{bottom:2.280000pt;}
.y14_c00069{bottom:2.773467pt;}
.y13_c00069{bottom:30.884000pt;}
.y1_c00069{bottom:48.000000pt;}
.y12_c00069{bottom:49.316480pt;}
.y11_c00069{bottom:70.120000pt;}
.y10_c00069{bottom:93.800000pt;}
.yf_c00069{bottom:679.080000pt;}
.ye_c00069{bottom:711.080000pt;}
.yd_c00069{bottom:743.080000pt;}
.yc_c00069{bottom:775.080000pt;}
.yb_c00069{bottom:793.640000pt;}
.ya_c00069{bottom:812.520000pt;}
.y9_c00069{bottom:844.520000pt;}
.y8_c00069{bottom:876.520000pt;}
.y7_c00069{bottom:908.520000pt;}
.y6_c00069{bottom:927.080000pt;}
.y5_c00069{bottom:945.640000pt;}
.y4_c00069{bottom:964.520000pt;}
.y2_c00069{bottom:1011.880000pt;}
.h8_c00069{height:17.116000pt;}
.h6_c00069{height:28.992000pt;}
.h9_c00069{height:41.173333pt;}
.h7_c00069{height:47.546880pt;}
.h4_c00069{height:50.928601pt;}
.h3_c00069{height:57.984000pt;}
.h5_c00069{height:60.510720pt;}
.h2_c00069{height:1067.880000pt;}
.h0_c00069{height:1122.520000pt;}
.h1_c00069{height:1122.666667pt;}
.w3_c00069{width:14.826667pt;}
.w2_c00069{width:767.960000pt;}
.w0_c00069{width:793.720000pt;}
.w1_c00069{width:794.000000pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:12.880000pt;}
.x2_c00069{left:100.480133pt;}
.x3_c00069{left:133.343733pt;}
.x4_c00069{left:205.294533pt;}
.x9_c00069{left:274.236267pt;}
.xa_c00069{left:308.891600pt;}
.x7_c00069{left:540.885467pt;}
.x5_c00069{left:543.339200pt;}
.x6_c00069{left:580.666667pt;}
.x8_c00069{left:602.212533pt;}
.xb_c00069{left:682.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_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_570bcc3939cc7b03463cbcfe.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;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_c00070;src:url('chunks/assets/font_72c4d9666c7e30a45e24f670.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_f0ebd73c3d1e39c00fdd0f12.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00070{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls6_c00070{letter-spacing:0.000000px;}
.lsb_c00070{letter-spacing:0.202464px;}
.ls1_c00070{letter-spacing:0.238560px;}
.ls2_c00070{letter-spacing:0.239160px;}
.lsd_c00070{letter-spacing:0.239760px;}
.lsa_c00070{letter-spacing:0.282384px;}
.lsc_c00070{letter-spacing:0.319680px;}
.ls3_c00070{letter-spacing:0.399600px;}
.ls8_c00070{letter-spacing:0.436896px;}
.ls9_c00070{letter-spacing:0.596736px;}
.ls0_c00070{letter-spacing:4.680960px;}
.ls7_c00070{letter-spacing:4.880448px;}
.ls4_c00070{letter-spacing:5.976000px;}
.ls5_c00070{letter-spacing:6.159920px;}
.sc__c00070{text-shadow:none;}
.sc1_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00070{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc1_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00070{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00070{word-spacing:-19.692288px;}
.ws1_c00070{word-spacing:-15.211440px;}
.ws2_c00070{word-spacing:-15.014304px;}
.ws3_c00070{word-spacing:0.000000px;}
._0_c00070{margin-left:-1.118880px;}
._1_c00070{width:1.063320px;}
.fc1_c00070{color:transparent;}
.fc0_c00070{color:rgb(0,0,0);}
.fs2_c00070{font-size:53.280000px;}
.fs3_c00070{font-size:60.000000px;}
.fs0_c00070{font-size:72.000000px;}
.fs1_c00070{font-size:74.215901px;}
.y22_c00070{bottom:-13.680000px;}
.y0_c00070{bottom:0.000000px;}
.y27_c00070{bottom:3.120150px;}
.y21_c00070{bottom:16.920000px;}
.y25_c00070{bottom:25.560000px;}
.y20_c00070{bottom:32.760000px;}
.y26_c00070{bottom:34.744500px;}
.y24_c00070{bottom:41.400000px;}
.y1_c00070{bottom:54.000000px;}
.y1e_c00070{bottom:112.725000px;}
.y1d_c00070{bottom:148.725000px;}
.y1f_c00070{bottom:184.365000px;}
.y1c_c00070{bottom:184.725000px;}
.y1b_c00070{bottom:220.725000px;}
.y1a_c00070{bottom:256.725000px;}
.y19_c00070{bottom:292.725000px;}
.y18_c00070{bottom:328.725000px;}
.y17_c00070{bottom:364.725000px;}
.y16_c00070{bottom:400.725000px;}
.y15_c00070{bottom:436.725000px;}
.y14_c00070{bottom:472.725000px;}
.y13_c00070{bottom:509.085000px;}
.y12_c00070{bottom:545.085000px;}
.y11_c00070{bottom:581.085000px;}
.y10_c00070{bottom:617.085000px;}
.yf_c00070{bottom:653.085000px;}
.y23_c00070{bottom:670.365000px;}
.ye_c00070{bottom:689.085000px;}
.yd_c00070{bottom:725.085000px;}
.yc_c00070{bottom:761.085000px;}
.yb_c00070{bottom:797.085000px;}
.ya_c00070{bottom:833.085000px;}
.y9_c00070{bottom:869.085000px;}
.y8_c00070{bottom:905.085000px;}
.y7_c00070{bottom:941.085000px;}
.y6_c00070{bottom:977.085000px;}
.y5_c00070{bottom:1013.085000px;}
.y4_c00070{bottom:1049.085000px;}
.y3_c00070{bottom:1085.085000px;}
.y2_c00070{bottom:1138.365000px;}
.h8_c00070{height:19.255500px;}
.h6_c00070{height:41.132160px;}
.h5_c00070{height:45.360000px;}
.h9_c00070{height:46.320000px;}
.h7_c00070{height:54.000000px;}
.h3_c00070{height:55.584000px;}
.h4_c00070{height:57.294676px;}
.h2_c00070{height:1201.365000px;}
.h0_c00070{height:1262.835000px;}
.h1_c00070{height:1263.000000px;}
.w5_c00070{width:16.680000px;}
.w3_c00070{width:762.840000px;}
.w4_c00070{width:775.800000px;}
.w2_c00070{width:863.955000px;}
.w0_c00070{width:892.935000px;}
.w1_c00070{width:893.250000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:14.490000px;}
.x6_c00070{left:54.367950px;}
.x9_c00070{left:69.210000px;}
.x5_c00070{left:70.290000px;}
.xa_c00070{left:98.713650px;}
.x2_c00070{left:113.040150px;}
.x3_c00070{left:150.011700px;}
.x7_c00070{left:204.903000px;}
.xb_c00070{left:207.824700px;}
.x4_c00070{left:230.956350px;}
.x8_c00070{left:379.326000px;}
.xc_c00070{left:768.255000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls6_c00070{letter-spacing:0.000000pt;}
.lsb_c00070{letter-spacing:0.179968pt;}
.ls1_c00070{letter-spacing:0.212053pt;}
.ls2_c00070{letter-spacing:0.212587pt;}
.lsd_c00070{letter-spacing:0.213120pt;}
.lsa_c00070{letter-spacing:0.251008pt;}
.lsc_c00070{letter-spacing:0.284160pt;}
.ls3_c00070{letter-spacing:0.355200pt;}
.ls8_c00070{letter-spacing:0.388352pt;}
.ls9_c00070{letter-spacing:0.530432pt;}
.ls0_c00070{letter-spacing:4.160853pt;}
.ls7_c00070{letter-spacing:4.338176pt;}
.ls4_c00070{letter-spacing:5.312000pt;}
.ls5_c00070{letter-spacing:5.475484pt;}
.ws0_c00070{word-spacing:-17.504256pt;}
.ws1_c00070{word-spacing:-13.521280pt;}
.ws2_c00070{word-spacing:-13.346048pt;}
.ws3_c00070{word-spacing:0.000000pt;}
._0_c00070{margin-left:-0.994560pt;}
._1_c00070{width:0.945173pt;}
.fs2_c00070{font-size:47.360000pt;}
.fs3_c00070{font-size:53.333333pt;}
.fs0_c00070{font-size:64.000000pt;}
.fs1_c00070{font-size:65.969690pt;}
.y22_c00070{bottom:-12.160000pt;}
.y0_c00070{bottom:0.000000pt;}
.y27_c00070{bottom:2.773467pt;}
.y21_c00070{bottom:15.040000pt;}
.y25_c00070{bottom:22.720000pt;}
.y20_c00070{bottom:29.120000pt;}
.y26_c00070{bottom:30.884000pt;}
.y24_c00070{bottom:36.800000pt;}
.y1_c00070{bottom:48.000000pt;}
.y1e_c00070{bottom:100.200000pt;}
.y1d_c00070{bottom:132.200000pt;}
.y1f_c00070{bottom:163.880000pt;}
.y1c_c00070{bottom:164.200000pt;}
.y1b_c00070{bottom:196.200000pt;}
.y1a_c00070{bottom:228.200000pt;}
.y19_c00070{bottom:260.200000pt;}
.y18_c00070{bottom:292.200000pt;}
.y17_c00070{bottom:324.200000pt;}
.y16_c00070{bottom:356.200000pt;}
.y15_c00070{bottom:388.200000pt;}
.y14_c00070{bottom:420.200000pt;}
.y13_c00070{bottom:452.520000pt;}
.y12_c00070{bottom:484.520000pt;}
.y11_c00070{bottom:516.520000pt;}
.y10_c00070{bottom:548.520000pt;}
.yf_c00070{bottom:580.520000pt;}
.y23_c00070{bottom:595.880000pt;}
.ye_c00070{bottom:612.520000pt;}
.yd_c00070{bottom:644.520000pt;}
.yc_c00070{bottom:676.520000pt;}
.yb_c00070{bottom:708.520000pt;}
.ya_c00070{bottom:740.520000pt;}
.y9_c00070{bottom:772.520000pt;}
.y8_c00070{bottom:804.520000pt;}
.y7_c00070{bottom:836.520000pt;}
.y6_c00070{bottom:868.520000pt;}
.y5_c00070{bottom:900.520000pt;}
.y4_c00070{bottom:932.520000pt;}
.y3_c00070{bottom:964.520000pt;}
.y2_c00070{bottom:1011.880000pt;}
.h8_c00070{height:17.116000pt;}
.h6_c00070{height:36.561920pt;}
.h5_c00070{height:40.320000pt;}
.h9_c00070{height:41.173333pt;}
.h7_c00070{height:48.000000pt;}
.h3_c00070{height:49.408000pt;}
.h4_c00070{height:50.928601pt;}
.h2_c00070{height:1067.880000pt;}
.h0_c00070{height:1122.520000pt;}
.h1_c00070{height:1122.666667pt;}
.w5_c00070{width:14.826667pt;}
.w3_c00070{width:678.080000pt;}
.w4_c00070{width:689.600000pt;}
.w2_c00070{width:767.960000pt;}
.w0_c00070{width:793.720000pt;}
.w1_c00070{width:794.000000pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:12.880000pt;}
.x6_c00070{left:48.327067pt;}
.x9_c00070{left:61.520000pt;}
.x5_c00070{left:62.480000pt;}
.xa_c00070{left:87.745467pt;}
.x2_c00070{left:100.480133pt;}
.x3_c00070{left:133.343733pt;}
.x7_c00070{left:182.136000pt;}
.xb_c00070{left:184.733067pt;}
.x4_c00070{left:205.294533pt;}
.x8_c00070{left:337.178667pt;}
.xc_c00070{left:682.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_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_cac08a542cf0308caa454181.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;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_c00071;src:url('chunks/assets/font_72c4d9666c7e30a45e24f670.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_753d9b35511d8420477eccec.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00071{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls4_c00071{letter-spacing:0.000000px;}
.ls1_c00071{letter-spacing:0.200160px;}
.ls7_c00071{letter-spacing:0.239760px;}
.ls8_c00071{letter-spacing:0.319680px;}
.ls5_c00071{letter-spacing:0.399600px;}
.ls0_c00071{letter-spacing:4.680960px;}
.ls6_c00071{letter-spacing:4.880448px;}
.ls2_c00071{letter-spacing:5.976000px;}
.ls3_c00071{letter-spacing:6.159920px;}
.sc__c00071{text-shadow:none;}
.sc2_c00071{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00071{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc2_c00071{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00071{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00071{word-spacing:-19.692288px;}
.ws1_c00071{word-spacing:0.000000px;}
._0_c00071{margin-left:-1.118880px;}
._1_c00071{width:1.072176px;}
.fc2_c00071{color:transparent;}
.fc1_c00071{color:rgb(79,129,189);}
.fc0_c00071{color:rgb(0,0,0);}
.fs2_c00071{font-size:53.280000px;}
.fs3_c00071{font-size:60.000000px;}
.fs0_c00071{font-size:72.000000px;}
.fs1_c00071{font-size:74.215901px;}
.y0_c00071{bottom:0.000000px;}
.y20_c00071{bottom:3.120150px;}
.y1d_c00071{bottom:14.400000px;}
.y1f_c00071{bottom:34.744500px;}
.y1_c00071{bottom:54.000000px;}
.y1b_c00071{bottom:178.965000px;}
.y1e_c00071{bottom:184.365000px;}
.y1a_c00071{bottom:214.965000px;}
.y19_c00071{bottom:250.965000px;}
.y18_c00071{bottom:286.965000px;}
.y17_c00071{bottom:322.965000px;}
.y16_c00071{bottom:358.965000px;}
.y15_c00071{bottom:394.965000px;}
.y14_c00071{bottom:430.965000px;}
.y13_c00071{bottom:466.965000px;}
.y12_c00071{bottom:502.965000px;}
.y11_c00071{bottom:538.965000px;}
.y10_c00071{bottom:574.965000px;}
.yf_c00071{bottom:610.965000px;}
.ye_c00071{bottom:689.085000px;}
.y1c_c00071{bottom:697.365000px;}
.yd_c00071{bottom:725.085000px;}
.yc_c00071{bottom:761.085000px;}
.yb_c00071{bottom:797.085000px;}
.ya_c00071{bottom:833.085000px;}
.y9_c00071{bottom:869.085000px;}
.y8_c00071{bottom:905.085000px;}
.y7_c00071{bottom:941.085000px;}
.y6_c00071{bottom:977.085000px;}
.y5_c00071{bottom:1013.085000px;}
.y4_c00071{bottom:1049.085000px;}
.y3_c00071{bottom:1085.085000px;}
.y2_c00071{bottom:1138.365000px;}
.h7_c00071{height:19.255500px;}
.h5_c00071{height:27.000000px;}
.h6_c00071{height:41.132160px;}
.h8_c00071{height:46.320000px;}
.h3_c00071{height:55.584000px;}
.h4_c00071{height:57.294676px;}
.h2_c00071{height:1201.365000px;}
.h0_c00071{height:1262.835000px;}
.h1_c00071{height:1263.000000px;}
.w5_c00071{width:16.680000px;}
.w3_c00071{width:760.320000px;}
.w4_c00071{width:761.400000px;}
.w2_c00071{width:863.955000px;}
.w0_c00071{width:892.935000px;}
.w1_c00071{width:893.250000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:14.490000px;}
.x7_c00071{left:69.210000px;}
.x5_c00071{left:70.290000px;}
.x8_c00071{left:106.504800px;}
.x2_c00071{left:113.040150px;}
.x6_c00071{left:131.209950px;}
.x3_c00071{left:150.011700px;}
.x4_c00071{left:230.956350px;}
.x9_c00071{left:768.255000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls4_c00071{letter-spacing:0.000000pt;}
.ls1_c00071{letter-spacing:0.177920pt;}
.ls7_c00071{letter-spacing:0.213120pt;}
.ls8_c00071{letter-spacing:0.284160pt;}
.ls5_c00071{letter-spacing:0.355200pt;}
.ls0_c00071{letter-spacing:4.160853pt;}
.ls6_c00071{letter-spacing:4.338176pt;}
.ls2_c00071{letter-spacing:5.312000pt;}
.ls3_c00071{letter-spacing:5.475484pt;}
.ws0_c00071{word-spacing:-17.504256pt;}
.ws1_c00071{word-spacing:0.000000pt;}
._0_c00071{margin-left:-0.994560pt;}
._1_c00071{width:0.953045pt;}
.fs2_c00071{font-size:47.360000pt;}
.fs3_c00071{font-size:53.333333pt;}
.fs0_c00071{font-size:64.000000pt;}
.fs1_c00071{font-size:65.969690pt;}
.y0_c00071{bottom:0.000000pt;}
.y20_c00071{bottom:2.773467pt;}
.y1d_c00071{bottom:12.800000pt;}
.y1f_c00071{bottom:30.884000pt;}
.y1_c00071{bottom:48.000000pt;}
.y1b_c00071{bottom:159.080000pt;}
.y1e_c00071{bottom:163.880000pt;}
.y1a_c00071{bottom:191.080000pt;}
.y19_c00071{bottom:223.080000pt;}
.y18_c00071{bottom:255.080000pt;}
.y17_c00071{bottom:287.080000pt;}
.y16_c00071{bottom:319.080000pt;}
.y15_c00071{bottom:351.080000pt;}
.y14_c00071{bottom:383.080000pt;}
.y13_c00071{bottom:415.080000pt;}
.y12_c00071{bottom:447.080000pt;}
.y11_c00071{bottom:479.080000pt;}
.y10_c00071{bottom:511.080000pt;}
.yf_c00071{bottom:543.080000pt;}
.ye_c00071{bottom:612.520000pt;}
.y1c_c00071{bottom:619.880000pt;}
.yd_c00071{bottom:644.520000pt;}
.yc_c00071{bottom:676.520000pt;}
.yb_c00071{bottom:708.520000pt;}
.ya_c00071{bottom:740.520000pt;}
.y9_c00071{bottom:772.520000pt;}
.y8_c00071{bottom:804.520000pt;}
.y7_c00071{bottom:836.520000pt;}
.y6_c00071{bottom:868.520000pt;}
.y5_c00071{bottom:900.520000pt;}
.y4_c00071{bottom:932.520000pt;}
.y3_c00071{bottom:964.520000pt;}
.y2_c00071{bottom:1011.880000pt;}
.h7_c00071{height:17.116000pt;}
.h5_c00071{height:24.000000pt;}
.h6_c00071{height:36.561920pt;}
.h8_c00071{height:41.173333pt;}
.h3_c00071{height:49.408000pt;}
.h4_c00071{height:50.928601pt;}
.h2_c00071{height:1067.880000pt;}
.h0_c00071{height:1122.520000pt;}
.h1_c00071{height:1122.666667pt;}
.w5_c00071{width:14.826667pt;}
.w3_c00071{width:675.840000pt;}
.w4_c00071{width:676.800000pt;}
.w2_c00071{width:767.960000pt;}
.w0_c00071{width:793.720000pt;}
.w1_c00071{width:794.000000pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:12.880000pt;}
.x7_c00071{left:61.520000pt;}
.x5_c00071{left:62.480000pt;}
.x8_c00071{left:94.670933pt;}
.x2_c00071{left:100.480133pt;}
.x6_c00071{left:116.631067pt;}
.x3_c00071{left:133.343733pt;}
.x4_c00071{left:205.294533pt;}
.x9_c00071{left:682.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_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_7f429d322056de3d6b949532.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;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_c00072;src:url('chunks/assets/font_949827a30921728a520c9a8d.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_efc21ebd35158522aea7f80f.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00072{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00072{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls5_c00072{letter-spacing:0.000000px;}
.ls9_c00072{letter-spacing:0.202464px;}
.ls1_c00072{letter-spacing:0.238560px;}
.lsa_c00072{letter-spacing:0.239760px;}
.ls7_c00072{letter-spacing:0.319680px;}
.ls0_c00072{letter-spacing:0.399600px;}
.ls2_c00072{letter-spacing:0.410256px;}
.ls6_c00072{letter-spacing:0.516816px;}
.ls8_c00072{letter-spacing:0.532722px;}
.lsb_c00072{letter-spacing:0.719280px;}
.ls3_c00072{letter-spacing:5.976000px;}
.ls4_c00072{letter-spacing:6.159920px;}
.sc__c00072{text-shadow:none;}
.sc1_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00072{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc1_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00072{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00072{word-spacing:-15.531120px;}
.ws3_c00072{word-spacing:-15.222096px;}
.ws0_c00072{word-spacing:-15.211440px;}
.ws1_c00072{word-spacing:-15.014304px;}
.ws4_c00072{word-spacing:0.000000px;}
._0_c00072{margin-left:-1.037040px;}
._1_c00072{width:1.118880px;}
.fc1_c00072{color:transparent;}
.fc0_c00072{color:rgb(0,0,0);}
.fs2_c00072{font-size:53.280000px;}
.fs3_c00072{font-size:54.919767px;}
.fs4_c00072{font-size:60.000000px;}
.fs0_c00072{font-size:72.000000px;}
.fs1_c00072{font-size:74.215901px;}
.y0_c00072{bottom:0.000000px;}
.y2b_c00072{bottom:3.120150px;}
.y29_c00072{bottom:9.720000px;}
.y28_c00072{bottom:25.560000px;}
.y2a_c00072{bottom:34.744500px;}
.y27_c00072{bottom:41.400000px;}
.y1_c00072{bottom:54.000000px;}
.y25_c00072{bottom:61.560000px;}
.y20_c00072{bottom:64.440000px;}
.y24_c00072{bottom:77.040000px;}
.y1f_c00072{bottom:79.920000px;}
.y23_c00072{bottom:92.880000px;}
.y1e_c00072{bottom:95.760000px;}
.y22_c00072{bottom:108.720000px;}
.y1c_c00072{bottom:184.725000px;}
.y1b_c00072{bottom:220.725000px;}
.y26_c00072{bottom:238.365000px;}
.y1a_c00072{bottom:256.725000px;}
.y19_c00072{bottom:292.725000px;}
.y18_c00072{bottom:328.725000px;}
.y17_c00072{bottom:364.725000px;}
.y16_c00072{bottom:400.725000px;}
.y15_c00072{bottom:436.725000px;}
.y14_c00072{bottom:472.725000px;}
.y13_c00072{bottom:509.085000px;}
.y12_c00072{bottom:545.085000px;}
.y21_c00072{bottom:549.045000px;}
.y11_c00072{bottom:581.085000px;}
.y10_c00072{bottom:617.085000px;}
.yf_c00072{bottom:653.085000px;}
.ye_c00072{bottom:689.085000px;}
.yd_c00072{bottom:725.085000px;}
.yc_c00072{bottom:761.085000px;}
.yb_c00072{bottom:797.085000px;}
.ya_c00072{bottom:833.085000px;}
.y1d_c00072{bottom:859.365000px;}
.y9_c00072{bottom:869.085000px;}
.y8_c00072{bottom:905.085000px;}
.y7_c00072{bottom:941.085000px;}
.y6_c00072{bottom:977.085000px;}
.y5_c00072{bottom:1013.085000px;}
.y4_c00072{bottom:1049.085000px;}
.y3_c00072{bottom:1085.085000px;}
.y2_c00072{bottom:1138.365000px;}
.ha_c00072{height:19.255500px;}
.h6_c00072{height:41.132160px;}
.h7_c00072{height:42.398060px;}
.hb_c00072{height:46.320000px;}
.h9_c00072{height:54.000000px;}
.h3_c00072{height:55.584000px;}
.h4_c00072{height:57.294676px;}
.h5_c00072{height:108.360000px;}
.h8_c00072{height:121.320000px;}
.h2_c00072{height:1201.365000px;}
.h0_c00072{height:1262.835000px;}
.h1_c00072{height:1263.000000px;}
.w6_c00072{width:16.680000px;}
.w4_c00072{width:168.840000px;}
.w5_c00072{width:249.480000px;}
.w3_c00072{width:249.840000px;}
.w2_c00072{width:863.955000px;}
.w0_c00072{width:892.935000px;}
.w1_c00072{width:893.250000px;}
.x0_c00072{left:0.000000px;}
.x9_c00072{left:3.549300px;}
.xc_c00072{left:7.338750px;}
.x6_c00072{left:12.540150px;}
.x1_c00072{left:14.490000px;}
.xd_c00072{left:24.989700px;}
.xe_c00072{left:38.097900px;}
.xa_c00072{left:41.058000px;}
.x2_c00072{left:113.040150px;}
.x3_c00072{left:150.011700px;}
.x7_c00072{left:170.095650px;}
.x10_c00072{left:199.335600px;}
.x8_c00072{left:203.088750px;}
.x4_c00072{left:230.956350px;}
.xb_c00072{left:251.730000px;}
.xf_c00072{left:498.690000px;}
.x5_c00072{left:502.290000px;}
.x11_c00072{left:768.255000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls5_c00072{letter-spacing:0.000000pt;}
.ls9_c00072{letter-spacing:0.179968pt;}
.ls1_c00072{letter-spacing:0.212053pt;}
.lsa_c00072{letter-spacing:0.213120pt;}
.ls7_c00072{letter-spacing:0.284160pt;}
.ls0_c00072{letter-spacing:0.355200pt;}
.ls2_c00072{letter-spacing:0.364672pt;}
.ls6_c00072{letter-spacing:0.459392pt;}
.ls8_c00072{letter-spacing:0.473530pt;}
.lsb_c00072{letter-spacing:0.639360pt;}
.ls3_c00072{letter-spacing:5.312000pt;}
.ls4_c00072{letter-spacing:5.475484pt;}
.ws2_c00072{word-spacing:-13.805440pt;}
.ws3_c00072{word-spacing:-13.530752pt;}
.ws0_c00072{word-spacing:-13.521280pt;}
.ws1_c00072{word-spacing:-13.346048pt;}
.ws4_c00072{word-spacing:0.000000pt;}
._0_c00072{margin-left:-0.921813pt;}
._1_c00072{width:0.994560pt;}
.fs2_c00072{font-size:47.360000pt;}
.fs3_c00072{font-size:48.817571pt;}
.fs4_c00072{font-size:53.333333pt;}
.fs0_c00072{font-size:64.000000pt;}
.fs1_c00072{font-size:65.969690pt;}
.y0_c00072{bottom:0.000000pt;}
.y2b_c00072{bottom:2.773467pt;}
.y29_c00072{bottom:8.640000pt;}
.y28_c00072{bottom:22.720000pt;}
.y2a_c00072{bottom:30.884000pt;}
.y27_c00072{bottom:36.800000pt;}
.y1_c00072{bottom:48.000000pt;}
.y25_c00072{bottom:54.720000pt;}
.y20_c00072{bottom:57.280000pt;}
.y24_c00072{bottom:68.480000pt;}
.y1f_c00072{bottom:71.040000pt;}
.y23_c00072{bottom:82.560000pt;}
.y1e_c00072{bottom:85.120000pt;}
.y22_c00072{bottom:96.640000pt;}
.y1c_c00072{bottom:164.200000pt;}
.y1b_c00072{bottom:196.200000pt;}
.y26_c00072{bottom:211.880000pt;}
.y1a_c00072{bottom:228.200000pt;}
.y19_c00072{bottom:260.200000pt;}
.y18_c00072{bottom:292.200000pt;}
.y17_c00072{bottom:324.200000pt;}
.y16_c00072{bottom:356.200000pt;}
.y15_c00072{bottom:388.200000pt;}
.y14_c00072{bottom:420.200000pt;}
.y13_c00072{bottom:452.520000pt;}
.y12_c00072{bottom:484.520000pt;}
.y21_c00072{bottom:488.040000pt;}
.y11_c00072{bottom:516.520000pt;}
.y10_c00072{bottom:548.520000pt;}
.yf_c00072{bottom:580.520000pt;}
.ye_c00072{bottom:612.520000pt;}
.yd_c00072{bottom:644.520000pt;}
.yc_c00072{bottom:676.520000pt;}
.yb_c00072{bottom:708.520000pt;}
.ya_c00072{bottom:740.520000pt;}
.y1d_c00072{bottom:763.880000pt;}
.y9_c00072{bottom:772.520000pt;}
.y8_c00072{bottom:804.520000pt;}
.y7_c00072{bottom:836.520000pt;}
.y6_c00072{bottom:868.520000pt;}
.y5_c00072{bottom:900.520000pt;}
.y4_c00072{bottom:932.520000pt;}
.y3_c00072{bottom:964.520000pt;}
.y2_c00072{bottom:1011.880000pt;}
.ha_c00072{height:17.116000pt;}
.h6_c00072{height:36.561920pt;}
.h7_c00072{height:37.687165pt;}
.hb_c00072{height:41.173333pt;}
.h9_c00072{height:48.000000pt;}
.h3_c00072{height:49.408000pt;}
.h4_c00072{height:50.928601pt;}
.h5_c00072{height:96.320000pt;}
.h8_c00072{height:107.840000pt;}
.h2_c00072{height:1067.880000pt;}
.h0_c00072{height:1122.520000pt;}
.h1_c00072{height:1122.666667pt;}
.w6_c00072{width:14.826667pt;}
.w4_c00072{width:150.080000pt;}
.w5_c00072{width:221.760000pt;}
.w3_c00072{width:222.080000pt;}
.w2_c00072{width:767.960000pt;}
.w0_c00072{width:793.720000pt;}
.w1_c00072{width:794.000000pt;}
.x0_c00072{left:0.000000pt;}
.x9_c00072{left:3.154933pt;}
.xc_c00072{left:6.523333pt;}
.x6_c00072{left:11.146800pt;}
.x1_c00072{left:12.880000pt;}
.xd_c00072{left:22.213067pt;}
.xe_c00072{left:33.864800pt;}
.xa_c00072{left:36.496000pt;}
.x2_c00072{left:100.480133pt;}
.x3_c00072{left:133.343733pt;}
.x7_c00072{left:151.196133pt;}
.x10_c00072{left:177.187200pt;}
.x8_c00072{left:180.523333pt;}
.x4_c00072{left:205.294533pt;}
.xb_c00072{left:223.760000pt;}
.xf_c00072{left:443.280000pt;}
.x5_c00072{left:446.480000pt;}
.x11_c00072{left:682.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_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_672fe2dafa80e515017766af.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;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_c00073;src:url('chunks/assets/font_949827a30921728a520c9a8d.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_efd97a76a79f55ee800f25b9.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:0.787000;font-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_c00073{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00073{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls6_c00073{letter-spacing:0.000000px;}
.ls8_c00073{letter-spacing:0.202464px;}
.ls2_c00073{letter-spacing:0.265680px;}
.ls0_c00073{letter-spacing:0.399600px;}
.ls1_c00073{letter-spacing:0.410256px;}
.ls3_c00073{letter-spacing:0.513648px;}
.ls7_c00073{letter-spacing:0.532722px;}
.ls9_c00073{letter-spacing:0.719280px;}
.lsa_c00073{letter-spacing:0.767520px;}
.lsb_c00073{letter-spacing:0.962352px;}
.ls4_c00073{letter-spacing:5.976000px;}
.ls5_c00073{letter-spacing:6.159920px;}
.sc__c00073{text-shadow:none;}
.sc1_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00073{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc1_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00073{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00073{word-spacing:-17.375472px;}
.ws4_c00073{word-spacing:-16.926768px;}
.ws1_c00073{word-spacing:-15.531120px;}
.ws2_c00073{word-spacing:-15.222096px;}
.ws0_c00073{word-spacing:-15.211440px;}
.ws5_c00073{word-spacing:0.000000px;}
._0_c00073{margin-left:-1.118880px;}
._1_c00073{width:1.026480px;}
.fc1_c00073{color:transparent;}
.fc0_c00073{color:rgb(0,0,0);}
.fs2_c00073{font-size:53.280000px;}
.fs3_c00073{font-size:54.919767px;}
.fs4_c00073{font-size:59.040000px;}
.fs5_c00073{font-size:60.000000px;}
.fs0_c00073{font-size:72.000000px;}
.fs1_c00073{font-size:74.215901px;}
.y0_c00073{bottom:0.000000px;}
.y24_c00073{bottom:3.120150px;}
.y1e_c00073{bottom:14.399850px;}
.y22_c00073{bottom:33.120000px;}
.y23_c00073{bottom:34.744500px;}
.y1_c00073{bottom:54.000000px;}
.y20_c00073{bottom:66.600000px;}
.y21_c00073{bottom:123.885000px;}
.y1c_c00073{bottom:184.725000px;}
.y1b_c00073{bottom:220.725000px;}
.y1a_c00073{bottom:256.725000px;}
.y19_c00073{bottom:292.725000px;}
.y18_c00073{bottom:328.725000px;}
.y17_c00073{bottom:364.725000px;}
.y16_c00073{bottom:400.725000px;}
.y15_c00073{bottom:436.725000px;}
.y1f_c00073{bottom:454.365000px;}
.y14_c00073{bottom:472.725000px;}
.y13_c00073{bottom:509.085000px;}
.y12_c00073{bottom:545.085000px;}
.y11_c00073{bottom:581.085000px;}
.y10_c00073{bottom:617.085000px;}
.yf_c00073{bottom:653.085000px;}
.ye_c00073{bottom:689.085000px;}
.yd_c00073{bottom:725.085000px;}
.yc_c00073{bottom:761.085000px;}
.yb_c00073{bottom:797.085000px;}
.y1d_c00073{bottom:832.365000px;}
.ya_c00073{bottom:833.085000px;}
.y9_c00073{bottom:869.085000px;}
.y8_c00073{bottom:905.085000px;}
.y7_c00073{bottom:941.085000px;}
.y6_c00073{bottom:977.085000px;}
.y5_c00073{bottom:1013.085000px;}
.y4_c00073{bottom:1049.085000px;}
.y3_c00073{bottom:1085.085000px;}
.y2_c00073{bottom:1138.365000px;}
.hb_c00073{height:19.255500px;}
.h5_c00073{height:27.000000px;}
.h6_c00073{height:41.132160px;}
.h7_c00073{height:42.398060px;}
.h9_c00073{height:45.578880px;}
.hc_c00073{height:46.320000px;}
.ha_c00073{height:47.160000px;}
.h3_c00073{height:55.584000px;}
.h4_c00073{height:57.294676px;}
.h8_c00073{height:81.000000px;}
.h2_c00073{height:1201.365000px;}
.h0_c00073{height:1262.835000px;}
.h1_c00073{height:1263.000000px;}
.w6_c00073{width:16.680000px;}
.w3_c00073{width:573.840000px;}
.w4_c00073{width:580.320000px;}
.w5_c00073{width:600.840000px;}
.w2_c00073{width:863.955000px;}
.w0_c00073{width:892.935000px;}
.w1_c00073{width:893.250000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:14.490000px;}
.xa_c00073{left:41.943750px;}
.xe_c00073{left:48.389550px;}
.x6_c00073{left:55.121700px;}
.x2_c00073{left:113.040150px;}
.xd_c00073{left:124.290000px;}
.xb_c00073{left:133.499400px;}
.x9_c00073{left:144.810000px;}
.x7_c00073{left:146.677350px;}
.x3_c00073{left:150.011700px;}
.xc_c00073{left:162.739650px;}
.x5_c00073{left:178.290000px;}
.x8_c00073{left:179.670300px;}
.x4_c00073{left:230.956350px;}
.xf_c00073{left:768.255000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls6_c00073{letter-spacing:0.000000pt;}
.ls8_c00073{letter-spacing:0.179968pt;}
.ls2_c00073{letter-spacing:0.236160pt;}
.ls0_c00073{letter-spacing:0.355200pt;}
.ls1_c00073{letter-spacing:0.364672pt;}
.ls3_c00073{letter-spacing:0.456576pt;}
.ls7_c00073{letter-spacing:0.473530pt;}
.ls9_c00073{letter-spacing:0.639360pt;}
.lsa_c00073{letter-spacing:0.682240pt;}
.lsb_c00073{letter-spacing:0.855424pt;}
.ls4_c00073{letter-spacing:5.312000pt;}
.ls5_c00073{letter-spacing:5.475484pt;}
.ws3_c00073{word-spacing:-15.444864pt;}
.ws4_c00073{word-spacing:-15.046016pt;}
.ws1_c00073{word-spacing:-13.805440pt;}
.ws2_c00073{word-spacing:-13.530752pt;}
.ws0_c00073{word-spacing:-13.521280pt;}
.ws5_c00073{word-spacing:0.000000pt;}
._0_c00073{margin-left:-0.994560pt;}
._1_c00073{width:0.912427pt;}
.fs2_c00073{font-size:47.360000pt;}
.fs3_c00073{font-size:48.817571pt;}
.fs4_c00073{font-size:52.480000pt;}
.fs5_c00073{font-size:53.333333pt;}
.fs0_c00073{font-size:64.000000pt;}
.fs1_c00073{font-size:65.969690pt;}
.y0_c00073{bottom:0.000000pt;}
.y24_c00073{bottom:2.773467pt;}
.y1e_c00073{bottom:12.799867pt;}
.y22_c00073{bottom:29.440000pt;}
.y23_c00073{bottom:30.884000pt;}
.y1_c00073{bottom:48.000000pt;}
.y20_c00073{bottom:59.200000pt;}
.y21_c00073{bottom:110.120000pt;}
.y1c_c00073{bottom:164.200000pt;}
.y1b_c00073{bottom:196.200000pt;}
.y1a_c00073{bottom:228.200000pt;}
.y19_c00073{bottom:260.200000pt;}
.y18_c00073{bottom:292.200000pt;}
.y17_c00073{bottom:324.200000pt;}
.y16_c00073{bottom:356.200000pt;}
.y15_c00073{bottom:388.200000pt;}
.y1f_c00073{bottom:403.880000pt;}
.y14_c00073{bottom:420.200000pt;}
.y13_c00073{bottom:452.520000pt;}
.y12_c00073{bottom:484.520000pt;}
.y11_c00073{bottom:516.520000pt;}
.y10_c00073{bottom:548.520000pt;}
.yf_c00073{bottom:580.520000pt;}
.ye_c00073{bottom:612.520000pt;}
.yd_c00073{bottom:644.520000pt;}
.yc_c00073{bottom:676.520000pt;}
.yb_c00073{bottom:708.520000pt;}
.y1d_c00073{bottom:739.880000pt;}
.ya_c00073{bottom:740.520000pt;}
.y9_c00073{bottom:772.520000pt;}
.y8_c00073{bottom:804.520000pt;}
.y7_c00073{bottom:836.520000pt;}
.y6_c00073{bottom:868.520000pt;}
.y5_c00073{bottom:900.520000pt;}
.y4_c00073{bottom:932.520000pt;}
.y3_c00073{bottom:964.520000pt;}
.y2_c00073{bottom:1011.880000pt;}
.hb_c00073{height:17.116000pt;}
.h5_c00073{height:24.000000pt;}
.h6_c00073{height:36.561920pt;}
.h7_c00073{height:37.687165pt;}
.h9_c00073{height:40.514560pt;}
.hc_c00073{height:41.173333pt;}
.ha_c00073{height:41.920000pt;}
.h3_c00073{height:49.408000pt;}
.h4_c00073{height:50.928601pt;}
.h8_c00073{height:72.000000pt;}
.h2_c00073{height:1067.880000pt;}
.h0_c00073{height:1122.520000pt;}
.h1_c00073{height:1122.666667pt;}
.w6_c00073{width:14.826667pt;}
.w3_c00073{width:510.080000pt;}
.w4_c00073{width:515.840000pt;}
.w5_c00073{width:534.080000pt;}
.w2_c00073{width:767.960000pt;}
.w0_c00073{width:793.720000pt;}
.w1_c00073{width:794.000000pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:12.880000pt;}
.xa_c00073{left:37.283333pt;}
.xe_c00073{left:43.012933pt;}
.x6_c00073{left:48.997067pt;}
.x2_c00073{left:100.480133pt;}
.xd_c00073{left:110.480000pt;}
.xb_c00073{left:118.666133pt;}
.x9_c00073{left:128.720000pt;}
.x7_c00073{left:130.379867pt;}
.x3_c00073{left:133.343733pt;}
.xc_c00073{left:144.657467pt;}
.x5_c00073{left:158.480000pt;}
.x8_c00073{left:159.706933pt;}
.x4_c00073{left:205.294533pt;}
.xf_c00073{left:682.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_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_91ef479d4306ccaddec4d8ed.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.134000;font-style:normal;font-weight:normal;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_f4e84b609165fd55777e1de2.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;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:ff3_c00074;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_f501e7d3e35d3b60d2ee0819.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00074{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00074{vertical-align:-24.480000px;}
.v0_c00074{vertical-align:0.000000px;}
.v1_c00074{vertical-align:30.240000px;}
.ls9_c00074{letter-spacing:0.000000px;}
.lsd_c00074{letter-spacing:0.265680px;}
.ls4_c00074{letter-spacing:0.305640px;}
.ls16_c00074{letter-spacing:0.318816px;}
.ls5_c00074{letter-spacing:0.318840px;}
.ls3_c00074{letter-spacing:0.324840px;}
.ls10_c00074{letter-spacing:0.371952px;}
.ls14_c00074{letter-spacing:0.425088px;}
.ls17_c00074{letter-spacing:0.478224px;}
.lse_c00074{letter-spacing:0.492942px;}
.ls11_c00074{letter-spacing:0.531360px;}
.ls12_c00074{letter-spacing:0.690768px;}
.ls6_c00074{letter-spacing:0.944640px;}
.ls15_c00074{letter-spacing:0.974160px;}
.ls7_c00074{letter-spacing:0.980064px;}
.ls8_c00074{letter-spacing:1.416960px;}
.ls18_c00074{letter-spacing:1.428768px;}
.ls19_c00074{letter-spacing:2.621376px;}
.lsc_c00074{letter-spacing:5.149872px;}
.lsb_c00074{letter-spacing:5.335200px;}
.lsa_c00074{letter-spacing:5.499398px;}
.lsf_c00074{letter-spacing:5.520240px;}
.ls1_c00074{letter-spacing:5.976000px;}
.ls0_c00074{letter-spacing:6.159301px;}
.ls2_c00074{letter-spacing:6.159920px;}
.ls13_c00074{letter-spacing:8.861904px;}
.sc__c00074{text-shadow:none;}
.sc1_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00074{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc1_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00074{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00074{word-spacing:-25.992000px;}
.ws0_c00074{word-spacing:-21.592374px;}
.ws1_c00074{word-spacing:-20.947680px;}
.ws3_c00074{word-spacing:-20.762352px;}
.ws6_c00074{word-spacing:-17.411199px;}
.ws7_c00074{word-spacing:-16.785072px;}
.ws8_c00074{word-spacing:-16.731936px;}
.ws4_c00074{word-spacing:-11.609280px;}
.ws5_c00074{word-spacing:-10.008000px;}
.ws9_c00074{word-spacing:0.000000px;}
._e_c00074{margin-left:-8.821728px;}
._f_c00074{margin-left:-7.650432px;}
._c_c00074{margin-left:-6.022080px;}
._b_c00074{margin-left:-4.959360px;}
._10_c00074{margin-left:-2.772576px;}
._d_c00074{margin-left:-1.357920px;}
._1_c00074{width:1.944000px;}
._6_c00074{width:4.032000px;}
._9_c00074{width:5.112000px;}
._3_c00074{width:6.120000px;}
._2_c00074{width:7.416000px;}
._4_c00074{width:9.144000px;}
._0_c00074{width:10.224000px;}
._7_c00074{width:11.376000px;}
._8_c00074{width:17.496000px;}
._5_c00074{width:21.024000px;}
._a_c00074{width:28.152000px;}
.fc0_c00074{color:rgb(0,0,0);}
.fs5_c00074{font-size:36.000000px;}
.fs4_c00074{font-size:41.760000px;}
.fs3_c00074{font-size:56.160000px;}
.fs2_c00074{font-size:57.888403px;}
.fs6_c00074{font-size:59.040000px;}
.fs8_c00074{font-size:60.000000px;}
.fs7_c00074{font-size:60.857039px;}
.fs0_c00074{font-size:72.000000px;}
.fs1_c00074{font-size:74.215901px;}
.y0_c00074{bottom:0.000000px;}
.y3_c00074{bottom:2.565000px;}
.y31_c00074{bottom:3.120150px;}
.y30_c00074{bottom:34.744500px;}
.y1_c00074{bottom:54.000000px;}
.y2f_c00074{bottom:55.482840px;}
.y2e_c00074{bottom:72.766800px;}
.y2d_c00074{bottom:96.525000px;}
.y2c_c00074{bottom:113.805000px;}
.y2b_c00074{bottom:131.445000px;}
.y2a_c00074{bottom:149.085000px;}
.y29_c00074{bottom:160.254720px;}
.y28_c00074{bottom:178.970400px;}
.y27_c00074{bottom:196.608600px;}
.y26_c00074{bottom:214.246800px;}
.y25_c00074{bottom:238.005000px;}
.y24_c00074{bottom:249.165000px;}
.y23_c00074{bottom:255.285000px;}
.y22_c00074{bottom:281.925000px;}
.y21_c00074{bottom:349.605000px;}
.y20_c00074{bottom:370.845000px;}
.y1f_c00074{bottom:406.845000px;}
.y1e_c00074{bottom:427.725000px;}
.y1d_c00074{bottom:448.605000px;}
.y1c_c00074{bottom:469.845000px;}
.y1b_c00074{bottom:490.725000px;}
.y1a_c00074{bottom:511.605000px;}
.y19_c00074{bottom:534.645000px;}
.y18_c00074{bottom:555.525000px;}
.y17_c00074{bottom:576.405000px;}
.y16_c00074{bottom:612.405000px;}
.y15_c00074{bottom:633.285000px;}
.y14_c00074{bottom:654.525000px;}
.y13_c00074{bottom:675.405000px;}
.y12_c00074{bottom:696.285000px;}
.y11_c00074{bottom:717.525000px;}
.y10_c00074{bottom:738.405000px;}
.yf_c00074{bottom:759.285000px;}
.ye_c00074{bottom:795.285000px;}
.yd_c00074{bottom:831.285000px;}
.yc_c00074{bottom:869.805000px;}
.yb_c00074{bottom:907.965000px;}
.ya_c00074{bottom:943.965000px;}
.y9_c00074{bottom:964.845000px;}
.y8_c00074{bottom:986.085000px;}
.y7_c00074{bottom:1006.965000px;}
.y6_c00074{bottom:1027.845000px;}
.y5_c00074{bottom:1049.085000px;}
.y4_c00074{bottom:1085.085000px;}
.y2_c00074{bottom:1138.365000px;}
.h9_c00074{height:19.255500px;}
.h6_c00074{height:32.616000px;}
.ha_c00074{height:46.320000px;}
.h7_c00074{height:46.981634px;}
.h8_c00074{height:53.490240px;}
.h4_c00074{height:57.294676px;}
.h3_c00074{height:65.232000px;}
.h5_c00074{height:68.074560px;}
.h2_c00074{height:1201.365000px;}
.h0_c00074{height:1262.835000px;}
.h1_c00074{height:1263.000000px;}
.w3_c00074{width:16.680000px;}
.w2_c00074{width:863.955000px;}
.w0_c00074{width:892.935000px;}
.w1_c00074{width:893.250000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:14.490000px;}
.x2_c00074{left:113.040150px;}
.x3_c00074{left:150.011700px;}
.x5_c00074{left:209.389500px;}
.x4_c00074{left:239.956800px;}
.x7_c00074{left:303.494700px;}
.x8_c00074{left:363.886950px;}
.x6_c00074{left:416.478150px;}
.x9_c00074{left:428.880600px;}
.xa_c00074{left:768.255000px;}
@media print{
.v2_c00074{vertical-align:-21.760000pt;}
.v0_c00074{vertical-align:0.000000pt;}
.v1_c00074{vertical-align:26.880000pt;}
.ls9_c00074{letter-spacing:0.000000pt;}
.lsd_c00074{letter-spacing:0.236160pt;}
.ls4_c00074{letter-spacing:0.271680pt;}
.ls16_c00074{letter-spacing:0.283392pt;}
.ls5_c00074{letter-spacing:0.283413pt;}
.ls3_c00074{letter-spacing:0.288747pt;}
.ls10_c00074{letter-spacing:0.330624pt;}
.ls14_c00074{letter-spacing:0.377856pt;}
.ls17_c00074{letter-spacing:0.425088pt;}
.lse_c00074{letter-spacing:0.438171pt;}
.ls11_c00074{letter-spacing:0.472320pt;}
.ls12_c00074{letter-spacing:0.614016pt;}
.ls6_c00074{letter-spacing:0.839680pt;}
.ls15_c00074{letter-spacing:0.865920pt;}
.ls7_c00074{letter-spacing:0.871168pt;}
.ls8_c00074{letter-spacing:1.259520pt;}
.ls18_c00074{letter-spacing:1.270016pt;}
.ls19_c00074{letter-spacing:2.330112pt;}
.lsc_c00074{letter-spacing:4.577664pt;}
.lsb_c00074{letter-spacing:4.742400pt;}
.lsa_c00074{letter-spacing:4.888354pt;}
.lsf_c00074{letter-spacing:4.906880pt;}
.ls1_c00074{letter-spacing:5.312000pt;}
.ls0_c00074{letter-spacing:5.474935pt;}
.ls2_c00074{letter-spacing:5.475484pt;}
.ls13_c00074{letter-spacing:7.877248pt;}
.ws2_c00074{word-spacing:-23.104000pt;}
.ws0_c00074{word-spacing:-19.193222pt;}
.ws1_c00074{word-spacing:-18.620160pt;}
.ws3_c00074{word-spacing:-18.455424pt;}
.ws6_c00074{word-spacing:-15.476621pt;}
.ws7_c00074{word-spacing:-14.920064pt;}
.ws8_c00074{word-spacing:-14.872832pt;}
.ws4_c00074{word-spacing:-10.319360pt;}
.ws5_c00074{word-spacing:-8.896000pt;}
.ws9_c00074{word-spacing:0.000000pt;}
._e_c00074{margin-left:-7.841536pt;}
._f_c00074{margin-left:-6.800384pt;}
._c_c00074{margin-left:-5.352960pt;}
._b_c00074{margin-left:-4.408320pt;}
._10_c00074{margin-left:-2.464512pt;}
._d_c00074{margin-left:-1.207040pt;}
._1_c00074{width:1.728000pt;}
._6_c00074{width:3.584000pt;}
._9_c00074{width:4.544000pt;}
._3_c00074{width:5.440000pt;}
._2_c00074{width:6.592000pt;}
._4_c00074{width:8.128000pt;}
._0_c00074{width:9.088000pt;}
._7_c00074{width:10.112000pt;}
._8_c00074{width:15.552000pt;}
._5_c00074{width:18.688000pt;}
._a_c00074{width:25.024000pt;}
.fs5_c00074{font-size:32.000000pt;}
.fs4_c00074{font-size:37.120000pt;}
.fs3_c00074{font-size:49.920000pt;}
.fs2_c00074{font-size:51.456358pt;}
.fs6_c00074{font-size:52.480000pt;}
.fs8_c00074{font-size:53.333333pt;}
.fs7_c00074{font-size:54.095146pt;}
.fs0_c00074{font-size:64.000000pt;}
.fs1_c00074{font-size:65.969690pt;}
.y0_c00074{bottom:0.000000pt;}
.y3_c00074{bottom:2.280000pt;}
.y31_c00074{bottom:2.773467pt;}
.y30_c00074{bottom:30.884000pt;}
.y1_c00074{bottom:48.000000pt;}
.y2f_c00074{bottom:49.318080pt;}
.y2e_c00074{bottom:64.681600pt;}
.y2d_c00074{bottom:85.800000pt;}
.y2c_c00074{bottom:101.160000pt;}
.y2b_c00074{bottom:116.840000pt;}
.y2a_c00074{bottom:132.520000pt;}
.y29_c00074{bottom:142.448640pt;}
.y28_c00074{bottom:159.084800pt;}
.y27_c00074{bottom:174.763200pt;}
.y26_c00074{bottom:190.441600pt;}
.y25_c00074{bottom:211.560000pt;}
.y24_c00074{bottom:221.480000pt;}
.y23_c00074{bottom:226.920000pt;}
.y22_c00074{bottom:250.600000pt;}
.y21_c00074{bottom:310.760000pt;}
.y20_c00074{bottom:329.640000pt;}
.y1f_c00074{bottom:361.640000pt;}
.y1e_c00074{bottom:380.200000pt;}
.y1d_c00074{bottom:398.760000pt;}
.y1c_c00074{bottom:417.640000pt;}
.y1b_c00074{bottom:436.200000pt;}
.y1a_c00074{bottom:454.760000pt;}
.y19_c00074{bottom:475.240000pt;}
.y18_c00074{bottom:493.800000pt;}
.y17_c00074{bottom:512.360000pt;}
.y16_c00074{bottom:544.360000pt;}
.y15_c00074{bottom:562.920000pt;}
.y14_c00074{bottom:581.800000pt;}
.y13_c00074{bottom:600.360000pt;}
.y12_c00074{bottom:618.920000pt;}
.y11_c00074{bottom:637.800000pt;}
.y10_c00074{bottom:656.360000pt;}
.yf_c00074{bottom:674.920000pt;}
.ye_c00074{bottom:706.920000pt;}
.yd_c00074{bottom:738.920000pt;}
.yc_c00074{bottom:773.160000pt;}
.yb_c00074{bottom:807.080000pt;}
.ya_c00074{bottom:839.080000pt;}
.y9_c00074{bottom:857.640000pt;}
.y8_c00074{bottom:876.520000pt;}
.y7_c00074{bottom:895.080000pt;}
.y6_c00074{bottom:913.640000pt;}
.y5_c00074{bottom:932.520000pt;}
.y4_c00074{bottom:964.520000pt;}
.y2_c00074{bottom:1011.880000pt;}
.h9_c00074{height:17.116000pt;}
.h6_c00074{height:28.992000pt;}
.ha_c00074{height:41.173333pt;}
.h7_c00074{height:41.761453pt;}
.h8_c00074{height:47.546880pt;}
.h4_c00074{height:50.928601pt;}
.h3_c00074{height:57.984000pt;}
.h5_c00074{height:60.510720pt;}
.h2_c00074{height:1067.880000pt;}
.h0_c00074{height:1122.520000pt;}
.h1_c00074{height:1122.666667pt;}
.w3_c00074{width:14.826667pt;}
.w2_c00074{width:767.960000pt;}
.w0_c00074{width:793.720000pt;}
.w1_c00074{width:794.000000pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:12.880000pt;}
.x2_c00074{left:100.480133pt;}
.x3_c00074{left:133.343733pt;}
.x5_c00074{left:186.124000pt;}
.x4_c00074{left:213.294933pt;}
.x7_c00074{left:269.773067pt;}
.x8_c00074{left:323.455067pt;}
.x6_c00074{left:370.202800pt;}
.x9_c00074{left:381.227200pt;}
.xa_c00074{left:682.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_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_5cbe6fe2ca171faf8896fb44.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.134000;font-style:normal;font-weight:normal;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_95574f1363daff4ffcf850b7.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;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:ff3_c00075;src:url('chunks/assets/font_cd13f09129e48d12817b39c0.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:0.901000;font-style:normal;font-weight:normal;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_dbe68d4bf60569cf7da5a02f.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:0.787000;font-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_c00075{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00075{vertical-align:-24.480000px;}
.v0_c00075{vertical-align:0.000000px;}
.v1_c00075{vertical-align:30.240000px;}
.ls12_c00075{letter-spacing:-0.179568px;}
.ls10_c00075{letter-spacing:0.000000px;}
.ls3_c00075{letter-spacing:0.021600px;}
.ls2_c00075{letter-spacing:0.030600px;}
.ls1e_c00075{letter-spacing:0.144000px;}
.ls9_c00075{letter-spacing:0.236160px;}
.ls19_c00075{letter-spacing:0.265680px;}
.ls7_c00075{letter-spacing:0.273857px;}
.ls6_c00075{letter-spacing:0.295200px;}
.ls8_c00075{letter-spacing:0.318816px;}
.lsa_c00075{letter-spacing:0.324720px;}
.ls0_c00075{letter-spacing:0.330240px;}
.ls17_c00075{letter-spacing:0.425088px;}
.ls1a_c00075{letter-spacing:0.438171px;}
.ls16_c00075{letter-spacing:0.478224px;}
.lsb_c00075{letter-spacing:0.531360px;}
.ls4_c00075{letter-spacing:0.602485px;}
.ls1b_c00075{letter-spacing:0.690768px;}
.ls13_c00075{letter-spacing:1.454400px;}
.ls1c_c00075{letter-spacing:2.721744px;}
.ls20_c00075{letter-spacing:3.920256px;}
.ls1d_c00075{letter-spacing:4.274496px;}
.ls18_c00075{letter-spacing:5.248656px;}
.lse_c00075{letter-spacing:5.254560px;}
.ls15_c00075{letter-spacing:5.295888px;}
.lsc_c00075{letter-spacing:5.313600px;}
.ls25_c00075{letter-spacing:5.354928px;}
.ls24_c00075{letter-spacing:5.402160px;}
.ls21_c00075{letter-spacing:5.461200px;}
.ls23_c00075{letter-spacing:5.514336px;}
.ls11_c00075{letter-spacing:5.932800px;}
.ls1_c00075{letter-spacing:5.976000px;}
.lsf_c00075{letter-spacing:6.159920px;}
.ls1f_c00075{letter-spacing:7.344576px;}
.ls22_c00075{letter-spacing:9.098064px;}
.ls14_c00075{letter-spacing:11.967408px;}
.lsd_c00075{letter-spacing:14.700960px;}
.ls5_c00075{letter-spacing:16.944480px;}
.sc__c00075{text-shadow:none;}
.sc1_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00075{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc1_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00075{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb_c00075{word-spacing:-21.927456px;}
.wsa_c00075{word-spacing:-21.874320px;}
.wse_c00075{word-spacing:-21.815280px;}
.wsd_c00075{word-spacing:-21.726720px;}
.ws5_c00075{word-spacing:-21.709008px;}
.ws7_c00075{word-spacing:-21.661776px;}
.ws1_c00075{word-spacing:-20.016000px;}
.ws4_c00075{word-spacing:-17.520742px;}
.ws8_c00075{word-spacing:-17.103888px;}
.wsf_c00075{word-spacing:-16.944480px;}
.ws6_c00075{word-spacing:-16.838208px;}
.wsc_c00075{word-spacing:-16.413120px;}
.ws0_c00075{word-spacing:-11.609280px;}
.ws2_c00075{word-spacing:-11.429712px;}
.ws9_c00075{word-spacing:-10.152000px;}
.ws3_c00075{word-spacing:-10.008000px;}
.ws10_c00075{word-spacing:0.000000px;}
._12_c00075{margin-left:-12.398400px;}
._11_c00075{margin-left:-11.394720px;}
._17_c00075{margin-left:-9.298080px;}
._15_c00075{margin-left:-8.082720px;}
._16_c00075{margin-left:-7.080480px;}
._7_c00075{margin-left:-5.961600px;}
._14_c00075{margin-left:-4.266720px;}
._13_c00075{margin-left:-2.841120px;}
._f_c00075{margin-left:-1.468800px;}
._e_c00075{width:1.440000px;}
._9_c00075{width:3.024000px;}
._6_c00075{width:5.040000px;}
._1_c00075{width:6.768000px;}
._2_c00075{width:8.208000px;}
._b_c00075{width:9.216000px;}
._c_c00075{width:10.998216px;}
._5_c00075{width:12.096000px;}
._18_c00075{width:14.173920px;}
._10_c00075{width:15.264000px;}
._0_c00075{width:16.776000px;}
._4_c00075{width:18.720000px;}
._8_c00075{width:22.392000px;}
._d_c00075{width:27.432000px;}
._3_c00075{width:29.664000px;}
._a_c00075{width:30.960000px;}
.fc0_c00075{color:rgb(0,0,0);}
.fs3_c00075{font-size:36.000000px;}
.fs2_c00075{font-size:41.760000px;}
.fs4_c00075{font-size:59.040000px;}
.fs6_c00075{font-size:60.000000px;}
.fs5_c00075{font-size:60.857039px;}
.fs0_c00075{font-size:72.000000px;}
.fs1_c00075{font-size:74.215901px;}
.y0_c00075{bottom:0.000000px;}
.y3_c00075{bottom:2.565000px;}
.y3c_c00075{bottom:3.120150px;}
.y3b_c00075{bottom:34.744500px;}
.y1_c00075{bottom:54.000000px;}
.y3a_c00075{bottom:61.605000px;}
.y39_c00075{bottom:72.765000px;}
.y38_c00075{bottom:78.885000px;}
.y37_c00075{bottom:90.402480px;}
.y36_c00075{bottom:107.686440px;}
.y35_c00075{bottom:125.324640px;}
.y34_c00075{bottom:142.962840px;}
.y33_c00075{bottom:160.246800px;}
.y32_c00075{bottom:184.005000px;}
.y31_c00075{bottom:195.521040px;}
.y30_c00075{bottom:212.805000px;}
.y2f_c00075{bottom:218.925000px;}
.y2d_c00075{bottom:230.442840px;}
.y2e_c00075{bottom:230.445000px;}
.y2c_c00075{bottom:247.726800px;}
.y2b_c00075{bottom:271.485000px;}
.y2a_c00075{bottom:283.005000px;}
.y29_c00075{bottom:289.125000px;}
.y28_c00075{bottom:300.285000px;}
.y27_c00075{bottom:300.286800px;}
.y26_c00075{bottom:317.925000px;}
.y25_c00075{bottom:324.045000px;}
.y24_c00075{bottom:350.685000px;}
.y23_c00075{bottom:388.845000px;}
.y22_c00075{bottom:409.725000px;}
.y21_c00075{bottom:430.605000px;}
.y20_c00075{bottom:451.845000px;}
.y1f_c00075{bottom:472.725000px;}
.y1e_c00075{bottom:493.605000px;}
.y1d_c00075{bottom:514.845000px;}
.y1c_c00075{bottom:550.845000px;}
.y1b_c00075{bottom:572.085000px;}
.y1a_c00075{bottom:592.965000px;}
.y19_c00075{bottom:613.845000px;}
.y18_c00075{bottom:634.725000px;}
.y17_c00075{bottom:655.965000px;}
.y16_c00075{bottom:676.845000px;}
.y15_c00075{bottom:697.725000px;}
.y14_c00075{bottom:718.965000px;}
.y13_c00075{bottom:739.845000px;}
.y12_c00075{bottom:761.085000px;}
.y11_c00075{bottom:797.085000px;}
.y10_c00075{bottom:817.965000px;}
.yf_c00075{bottom:838.845000px;}
.ye_c00075{bottom:860.085000px;}
.yd_c00075{bottom:880.965000px;}
.yc_c00075{bottom:901.845000px;}
.yb_c00075{bottom:923.085000px;}
.ya_c00075{bottom:943.965000px;}
.y9_c00075{bottom:964.845000px;}
.y8_c00075{bottom:986.085000px;}
.y7_c00075{bottom:1006.965000px;}
.y6_c00075{bottom:1042.965000px;}
.y5_c00075{bottom:1063.845000px;}
.y4_c00075{bottom:1085.085000px;}
.y2_c00075{bottom:1138.365000px;}
.h9_c00075{height:19.255500px;}
.h6_c00075{height:32.616000px;}
.ha_c00075{height:46.320000px;}
.h7_c00075{height:46.981634px;}
.h8_c00075{height:53.490240px;}
.h4_c00075{height:57.294676px;}
.h3_c00075{height:65.232000px;}
.h5_c00075{height:68.074560px;}
.h2_c00075{height:1201.365000px;}
.h0_c00075{height:1262.835000px;}
.h1_c00075{height:1263.000000px;}
.w3_c00075{width:16.680000px;}
.w2_c00075{width:863.955000px;}
.w0_c00075{width:892.935000px;}
.w1_c00075{width:893.250000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:14.490000px;}
.x2_c00075{left:113.040150px;}
.x25_c00075{left:118.034850px;}
.x26_c00075{left:138.028950px;}
.x1e_c00075{left:147.614100px;}
.x3_c00075{left:150.011700px;}
.x1f_c00075{left:175.947900px;}
.x4_c00075{left:239.956800px;}
.x1c_c00075{left:289.386900px;}
.x28_c00075{left:291.417900px;}
.x21_c00075{left:293.912850px;}
.x1d_c00075{left:331.056150px;}
.x22_c00075{left:333.916650px;}
.x23_c00075{left:343.081050px;}
.x24_c00075{left:363.075000px;}
.x20_c00075{left:381.006150px;}
.xf_c00075{left:449.106450px;}
.x11_c00075{left:479.658300px;}
.x1a_c00075{left:482.973600px;}
.x12_c00075{left:526.655250px;}
.x10_c00075{left:534.483000px;}
.x27_c00075{left:539.886900px;}
.x1b_c00075{left:544.965000px;}
.xb_c00075{left:551.987550px;}
.x16_c00075{left:556.114800px;}
.x5_c00075{left:565.581600px;}
.x7_c00075{left:592.262250px;}
.x8_c00075{left:613.278750px;}
.x14_c00075{left:632.055150px;}
.x9_c00075{left:638.424600px;}
.x6_c00075{left:642.302100px;}
.x18_c00075{left:651.012450px;}
.xd_c00075{left:658.705350px;}
.x13_c00075{left:661.517250px;}
.x17_c00075{left:678.552150px;}
.x15_c00075{left:686.054700px;}
.x19_c00075{left:687.391050px;}
.xc_c00075{left:689.973300px;}
.xa_c00075{left:696.437700px;}
.xe_c00075{left:733.710600px;}
.x29_c00075{left:768.255000px;}
@media print{
.v2_c00075{vertical-align:-21.760000pt;}
.v0_c00075{vertical-align:0.000000pt;}
.v1_c00075{vertical-align:26.880000pt;}
.ls12_c00075{letter-spacing:-0.159616pt;}
.ls10_c00075{letter-spacing:0.000000pt;}
.ls3_c00075{letter-spacing:0.019200pt;}
.ls2_c00075{letter-spacing:0.027200pt;}
.ls1e_c00075{letter-spacing:0.128000pt;}
.ls9_c00075{letter-spacing:0.209920pt;}
.ls19_c00075{letter-spacing:0.236160pt;}
.ls7_c00075{letter-spacing:0.243428pt;}
.ls6_c00075{letter-spacing:0.262400pt;}
.ls8_c00075{letter-spacing:0.283392pt;}
.lsa_c00075{letter-spacing:0.288640pt;}
.ls0_c00075{letter-spacing:0.293547pt;}
.ls17_c00075{letter-spacing:0.377856pt;}
.ls1a_c00075{letter-spacing:0.389485pt;}
.ls16_c00075{letter-spacing:0.425088pt;}
.lsb_c00075{letter-spacing:0.472320pt;}
.ls4_c00075{letter-spacing:0.535542pt;}
.ls1b_c00075{letter-spacing:0.614016pt;}
.ls13_c00075{letter-spacing:1.292800pt;}
.ls1c_c00075{letter-spacing:2.419328pt;}
.ls20_c00075{letter-spacing:3.484672pt;}
.ls1d_c00075{letter-spacing:3.799552pt;}
.ls18_c00075{letter-spacing:4.665472pt;}
.lse_c00075{letter-spacing:4.670720pt;}
.ls15_c00075{letter-spacing:4.707456pt;}
.lsc_c00075{letter-spacing:4.723200pt;}
.ls25_c00075{letter-spacing:4.759936pt;}
.ls24_c00075{letter-spacing:4.801920pt;}
.ls21_c00075{letter-spacing:4.854400pt;}
.ls23_c00075{letter-spacing:4.901632pt;}
.ls11_c00075{letter-spacing:5.273600pt;}
.ls1_c00075{letter-spacing:5.312000pt;}
.lsf_c00075{letter-spacing:5.475484pt;}
.ls1f_c00075{letter-spacing:6.528512pt;}
.ls22_c00075{letter-spacing:8.087168pt;}
.ls14_c00075{letter-spacing:10.637696pt;}
.lsd_c00075{letter-spacing:13.067520pt;}
.ls5_c00075{letter-spacing:15.061760pt;}
.wsb_c00075{word-spacing:-19.491072pt;}
.wsa_c00075{word-spacing:-19.443840pt;}
.wse_c00075{word-spacing:-19.391360pt;}
.wsd_c00075{word-spacing:-19.312640pt;}
.ws5_c00075{word-spacing:-19.296896pt;}
.ws7_c00075{word-spacing:-19.254912pt;}
.ws1_c00075{word-spacing:-17.792000pt;}
.ws4_c00075{word-spacing:-15.573992pt;}
.ws8_c00075{word-spacing:-15.203456pt;}
.wsf_c00075{word-spacing:-15.061760pt;}
.ws6_c00075{word-spacing:-14.967296pt;}
.wsc_c00075{word-spacing:-14.589440pt;}
.ws0_c00075{word-spacing:-10.319360pt;}
.ws2_c00075{word-spacing:-10.159744pt;}
.ws9_c00075{word-spacing:-9.024000pt;}
.ws3_c00075{word-spacing:-8.896000pt;}
.ws10_c00075{word-spacing:0.000000pt;}
._12_c00075{margin-left:-11.020800pt;}
._11_c00075{margin-left:-10.128640pt;}
._17_c00075{margin-left:-8.264960pt;}
._15_c00075{margin-left:-7.184640pt;}
._16_c00075{margin-left:-6.293760pt;}
._7_c00075{margin-left:-5.299200pt;}
._14_c00075{margin-left:-3.792640pt;}
._13_c00075{margin-left:-2.525440pt;}
._f_c00075{margin-left:-1.305600pt;}
._e_c00075{width:1.280000pt;}
._9_c00075{width:2.688000pt;}
._6_c00075{width:4.480000pt;}
._1_c00075{width:6.016000pt;}
._2_c00075{width:7.296000pt;}
._b_c00075{width:8.192000pt;}
._c_c00075{width:9.776192pt;}
._5_c00075{width:10.752000pt;}
._18_c00075{width:12.599040pt;}
._10_c00075{width:13.568000pt;}
._0_c00075{width:14.912000pt;}
._4_c00075{width:16.640000pt;}
._8_c00075{width:19.904000pt;}
._d_c00075{width:24.384000pt;}
._3_c00075{width:26.368000pt;}
._a_c00075{width:27.520000pt;}
.fs3_c00075{font-size:32.000000pt;}
.fs2_c00075{font-size:37.120000pt;}
.fs4_c00075{font-size:52.480000pt;}
.fs6_c00075{font-size:53.333333pt;}
.fs5_c00075{font-size:54.095146pt;}
.fs0_c00075{font-size:64.000000pt;}
.fs1_c00075{font-size:65.969690pt;}
.y0_c00075{bottom:0.000000pt;}
.y3_c00075{bottom:2.280000pt;}
.y3c_c00075{bottom:2.773467pt;}
.y3b_c00075{bottom:30.884000pt;}
.y1_c00075{bottom:48.000000pt;}
.y3a_c00075{bottom:54.760000pt;}
.y39_c00075{bottom:64.680000pt;}
.y38_c00075{bottom:70.120000pt;}
.y37_c00075{bottom:80.357760pt;}
.y36_c00075{bottom:95.721280pt;}
.y35_c00075{bottom:111.399680pt;}
.y34_c00075{bottom:127.078080pt;}
.y33_c00075{bottom:142.441600pt;}
.y32_c00075{bottom:163.560000pt;}
.y31_c00075{bottom:173.796480pt;}
.y30_c00075{bottom:189.160000pt;}
.y2f_c00075{bottom:194.600000pt;}
.y2d_c00075{bottom:204.838080pt;}
.y2e_c00075{bottom:204.840000pt;}
.y2c_c00075{bottom:220.201600pt;}
.y2b_c00075{bottom:241.320000pt;}
.y2a_c00075{bottom:251.560000pt;}
.y29_c00075{bottom:257.000000pt;}
.y28_c00075{bottom:266.920000pt;}
.y27_c00075{bottom:266.921600pt;}
.y26_c00075{bottom:282.600000pt;}
.y25_c00075{bottom:288.040000pt;}
.y24_c00075{bottom:311.720000pt;}
.y23_c00075{bottom:345.640000pt;}
.y22_c00075{bottom:364.200000pt;}
.y21_c00075{bottom:382.760000pt;}
.y20_c00075{bottom:401.640000pt;}
.y1f_c00075{bottom:420.200000pt;}
.y1e_c00075{bottom:438.760000pt;}
.y1d_c00075{bottom:457.640000pt;}
.y1c_c00075{bottom:489.640000pt;}
.y1b_c00075{bottom:508.520000pt;}
.y1a_c00075{bottom:527.080000pt;}
.y19_c00075{bottom:545.640000pt;}
.y18_c00075{bottom:564.200000pt;}
.y17_c00075{bottom:583.080000pt;}
.y16_c00075{bottom:601.640000pt;}
.y15_c00075{bottom:620.200000pt;}
.y14_c00075{bottom:639.080000pt;}
.y13_c00075{bottom:657.640000pt;}
.y12_c00075{bottom:676.520000pt;}
.y11_c00075{bottom:708.520000pt;}
.y10_c00075{bottom:727.080000pt;}
.yf_c00075{bottom:745.640000pt;}
.ye_c00075{bottom:764.520000pt;}
.yd_c00075{bottom:783.080000pt;}
.yc_c00075{bottom:801.640000pt;}
.yb_c00075{bottom:820.520000pt;}
.ya_c00075{bottom:839.080000pt;}
.y9_c00075{bottom:857.640000pt;}
.y8_c00075{bottom:876.520000pt;}
.y7_c00075{bottom:895.080000pt;}
.y6_c00075{bottom:927.080000pt;}
.y5_c00075{bottom:945.640000pt;}
.y4_c00075{bottom:964.520000pt;}
.y2_c00075{bottom:1011.880000pt;}
.h9_c00075{height:17.116000pt;}
.h6_c00075{height:28.992000pt;}
.ha_c00075{height:41.173333pt;}
.h7_c00075{height:41.761453pt;}
.h8_c00075{height:47.546880pt;}
.h4_c00075{height:50.928601pt;}
.h3_c00075{height:57.984000pt;}
.h5_c00075{height:60.510720pt;}
.h2_c00075{height:1067.880000pt;}
.h0_c00075{height:1122.520000pt;}
.h1_c00075{height:1122.666667pt;}
.w3_c00075{width:14.826667pt;}
.w2_c00075{width:767.960000pt;}
.w0_c00075{width:793.720000pt;}
.w1_c00075{width:794.000000pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:12.880000pt;}
.x2_c00075{left:100.480133pt;}
.x25_c00075{left:104.919867pt;}
.x26_c00075{left:122.692400pt;}
.x1e_c00075{left:131.212533pt;}
.x3_c00075{left:133.343733pt;}
.x1f_c00075{left:156.398133pt;}
.x4_c00075{left:213.294933pt;}
.x1c_c00075{left:257.232800pt;}
.x28_c00075{left:259.038133pt;}
.x21_c00075{left:261.255867pt;}
.x1d_c00075{left:294.272133pt;}
.x22_c00075{left:296.814800pt;}
.x23_c00075{left:304.960933pt;}
.x24_c00075{left:322.733333pt;}
.x20_c00075{left:338.672133pt;}
.xf_c00075{left:399.205733pt;}
.x11_c00075{left:426.362933pt;}
.x1a_c00075{left:429.309867pt;}
.x12_c00075{left:468.138000pt;}
.x10_c00075{left:475.096000pt;}
.x27_c00075{left:479.899467pt;}
.x1b_c00075{left:484.413333pt;}
.xb_c00075{left:490.655600pt;}
.x16_c00075{left:494.324267pt;}
.x5_c00075{left:502.739200pt;}
.x7_c00075{left:526.455333pt;}
.x8_c00075{left:545.136667pt;}
.x14_c00075{left:561.826800pt;}
.x9_c00075{left:567.488533pt;}
.x6_c00075{left:570.935200pt;}
.x18_c00075{left:578.677733pt;}
.xd_c00075{left:585.515867pt;}
.x13_c00075{left:588.015333pt;}
.x17_c00075{left:603.157467pt;}
.x15_c00075{left:609.826400pt;}
.x19_c00075{left:611.014267pt;}
.xc_c00075{left:613.309600pt;}
.xa_c00075{left:619.055733pt;}
.xe_c00075{left:652.187200pt;}
.x29_c00075{left:682.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_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_9c30f75b67d43dee4ed5fcbb.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_339f42d732a7ce7d52d08f56.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;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:ff3_c00076;src:url('chunks/assets/font_a25b3dd26e6809000d6aeec7.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_13a56605893f384ccd6d5f45.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_0c8c7c3c76f7548e4400968a.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00076{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00076{vertical-align:-24.480000px;}
.v0_c00076{vertical-align:0.000000px;}
.v1_c00076{vertical-align:30.240000px;}
.ls13_c00076{letter-spacing:-0.179568px;}
.ls11_c00076{letter-spacing:0.000000px;}
.ls14_c00076{letter-spacing:0.144000px;}
.ls5_c00076{letter-spacing:0.236160px;}
.ls1d_c00076{letter-spacing:0.265680px;}
.ls4_c00076{letter-spacing:0.295200px;}
.lsf_c00076{letter-spacing:0.304285px;}
.ls19_c00076{letter-spacing:0.318816px;}
.ls2b_c00076{letter-spacing:0.328628px;}
.lse_c00076{letter-spacing:0.340799px;}
.ls7_c00076{letter-spacing:0.342432px;}
.ls2a_c00076{letter-spacing:0.371228px;}
.ls2_c00076{letter-spacing:0.378000px;}
.ls16_c00076{letter-spacing:0.425088px;}
.ls27_c00076{letter-spacing:0.436896px;}
.ls1e_c00076{letter-spacing:0.438171px;}
.ls1c_c00076{letter-spacing:0.478224px;}
.ls23_c00076{letter-spacing:0.492942px;}
.ls8_c00076{letter-spacing:0.531360px;}
.lsa_c00076{letter-spacing:0.547713px;}
.ls21_c00076{letter-spacing:0.584496px;}
.lsd_c00076{letter-spacing:0.596399px;}
.ls25_c00076{letter-spacing:0.690768px;}
.ls1f_c00076{letter-spacing:0.696672px;}
.lsc_c00076{letter-spacing:0.712027px;}
.ls9_c00076{letter-spacing:0.730284px;}
.ls29_c00076{letter-spacing:0.766799px;}
.ls12_c00076{letter-spacing:0.770400px;}
.ls22_c00076{letter-spacing:1.664928px;}
.ls15_c00076{letter-spacing:3.554208px;}
.ls20_c00076{letter-spacing:3.560112px;}
.ls1a_c00076{letter-spacing:5.248656px;}
.ls18_c00076{letter-spacing:5.295888px;}
.ls1b_c00076{letter-spacing:5.301792px;}
.ls3_c00076{letter-spacing:5.372640px;}
.ls17_c00076{letter-spacing:5.461200px;}
.ls24_c00076{letter-spacing:5.514336px;}
.ls0_c00076{letter-spacing:5.976000px;}
.ls10_c00076{letter-spacing:6.159920px;}
.ls6_c00076{letter-spacing:6.376320px;}
.ls28_c00076{letter-spacing:9.906912px;}
.ls26_c00076{letter-spacing:10.420560px;}
.lsb_c00076{letter-spacing:10.686496px;}
.ls1_c00076{letter-spacing:21.384000px;}
.sc__c00076{text-shadow:none;}
.sc1_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00076{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc1_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00076{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00076{word-spacing:-21.874320px;}
.ws4_c00076{word-spacing:-21.714912px;}
.ws3_c00076{word-spacing:-21.709008px;}
.wsc_c00076{word-spacing:-20.545336px;}
.wsb_c00076{word-spacing:-20.508822px;}
.wsa_c00076{word-spacing:-20.374937px;}
.wsd_c00076{word-spacing:-20.149766px;}
.ws1_c00076{word-spacing:-20.016000px;}
.ws6_c00076{word-spacing:-17.630284px;}
.ws9_c00076{word-spacing:-17.465970px;}
.ws7_c00076{word-spacing:-17.411199px;}
.ws8_c00076{word-spacing:-16.944480px;}
.ws0_c00076{word-spacing:-11.429712px;}
.ws2_c00076{word-spacing:-10.152000px;}
.wse_c00076{word-spacing:0.000000px;}
._4_c00076{margin-left:-21.384000px;}
._13_c00076{margin-left:-10.095840px;}
._14_c00076{margin-left:-9.092160px;}
._10_c00076{margin-left:-3.240000px;}
._11_c00076{margin-left:-2.234880px;}
._f_c00076{margin-left:-1.087800px;}
._0_c00076{width:1.512000px;}
._7_c00076{width:3.168000px;}
._1_c00076{width:4.392000px;}
._5_c00076{width:5.472000px;}
._6_c00076{width:6.624000px;}
._8_c00076{width:7.848000px;}
._e_c00076{width:9.504000px;}
._12_c00076{width:10.982880px;}
._15_c00076{width:12.009960px;}
._a_c00076{width:13.176000px;}
._d_c00076{width:14.328000px;}
._b_c00076{width:15.912000px;}
._2_c00076{width:17.064000px;}
._9_c00076{width:18.360000px;}
._3_c00076{width:21.384000px;}
._c_c00076{width:24.984000px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs3_c00076{font-size:36.000000px;}
.fs2_c00076{font-size:41.760000px;}
.fs4_c00076{font-size:59.040000px;}
.fs6_c00076{font-size:60.000000px;}
.fs5_c00076{font-size:60.857039px;}
.fs0_c00076{font-size:72.000000px;}
.fs1_c00076{font-size:74.215901px;}
.y0_c00076{bottom:0.000000px;}
.y3_c00076{bottom:2.565000px;}
.y3f_c00076{bottom:3.120150px;}
.y3e_c00076{bottom:34.744500px;}
.y1_c00076{bottom:54.000000px;}
.y3d_c00076{bottom:55.485000px;}
.y3c_c00076{bottom:61.605000px;}
.y3b_c00076{bottom:72.765000px;}
.y3a_c00076{bottom:72.766800px;}
.y39_c00076{bottom:90.405000px;}
.y38_c00076{bottom:90.406800px;}
.y37_c00076{bottom:114.165000px;}
.y36_c00076{bottom:125.325000px;}
.y35_c00076{bottom:131.445000px;}
.y34_c00076{bottom:142.966440px;}
.y33_c00076{bottom:160.604640px;}
.y32_c00076{bottom:177.888600px;}
.y31_c00076{bottom:195.526800px;}
.y30_c00076{bottom:213.165000px;}
.y2f_c00076{bottom:230.445000px;}
.y2e_c00076{bottom:236.565000px;}
.y2d_c00076{bottom:254.205000px;}
.y2c_c00076{bottom:265.365000px;}
.y2b_c00076{bottom:271.485000px;}
.y2a_c00076{bottom:283.005000px;}
.y29_c00076{bottom:283.006800px;}
.y28_c00076{bottom:300.645000px;}
.y27_c00076{bottom:306.765000px;}
.y26_c00076{bottom:317.925000px;}
.y25_c00076{bottom:317.926800px;}
.y24_c00076{bottom:341.685000px;}
.y22_c00076{bottom:353.202840px;}
.y23_c00076{bottom:353.205000px;}
.y21_c00076{bottom:370.486800px;}
.y20_c00076{bottom:394.245000px;}
.y1f_c00076{bottom:420.885000px;}
.y1e_c00076{bottom:493.965000px;}
.y1d_c00076{bottom:514.845000px;}
.y1c_c00076{bottom:535.725000px;}
.y1b_c00076{bottom:556.965000px;}
.y1a_c00076{bottom:577.845000px;}
.y19_c00076{bottom:598.725000px;}
.y18_c00076{bottom:619.965000px;}
.y17_c00076{bottom:640.845000px;}
.y16_c00076{bottom:676.845000px;}
.y15_c00076{bottom:697.725000px;}
.y14_c00076{bottom:718.965000px;}
.y13_c00076{bottom:739.845000px;}
.y12_c00076{bottom:761.085000px;}
.y11_c00076{bottom:781.965000px;}
.y10_c00076{bottom:802.845000px;}
.yf_c00076{bottom:824.085000px;}
.ye_c00076{bottom:844.965000px;}
.yd_c00076{bottom:865.845000px;}
.yc_c00076{bottom:901.845000px;}
.yb_c00076{bottom:923.085000px;}
.ya_c00076{bottom:943.965000px;}
.y9_c00076{bottom:964.845000px;}
.y8_c00076{bottom:986.085000px;}
.y7_c00076{bottom:1006.965000px;}
.y6_c00076{bottom:1027.845000px;}
.y5_c00076{bottom:1063.845000px;}
.y4_c00076{bottom:1085.085000px;}
.y2_c00076{bottom:1138.365000px;}
.ha_c00076{height:19.255500px;}
.h6_c00076{height:32.616000px;}
.hb_c00076{height:46.320000px;}
.h8_c00076{height:46.981634px;}
.h9_c00076{height:48.685631px;}
.h7_c00076{height:53.490240px;}
.h4_c00076{height:57.294676px;}
.h3_c00076{height:65.232000px;}
.h5_c00076{height:68.074560px;}
.h2_c00076{height:1201.365000px;}
.h0_c00076{height:1262.835000px;}
.h1_c00076{height:1263.000000px;}
.w3_c00076{width:16.680000px;}
.w2_c00076{width:863.955000px;}
.w0_c00076{width:892.935000px;}
.w1_c00076{width:893.250000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:14.490000px;}
.x2_c00076{left:113.040150px;}
.x21_c00076{left:127.217700px;}
.x11_c00076{left:143.879100px;}
.x3_c00076{left:150.011700px;}
.x22_c00076{left:151.381650px;}
.x12_c00076{left:172.213650px;}
.x20_c00076{left:175.152900px;}
.x1a_c00076{left:183.061950px;}
.x16_c00076{left:186.700200px;}
.x7_c00076{left:204.674250px;}
.x13_c00076{left:223.466700px;}
.xb_c00076{left:230.531550px;}
.x4_c00076{left:239.956800px;}
.xc_c00076{left:250.525650px;}
.x17_c00076{left:254.306100px;}
.x23_c00076{left:268.932150px;}
.x8_c00076{left:277.994700px;}
.x5_c00076{left:348.224100px;}
.x1d_c00076{left:358.089900px;}
.x1e_c00076{left:378.083850px;}
.xd_c00076{left:388.880550px;}
.xe_c00076{left:408.874500px;}
.x6_c00076{left:415.219500px;}
.xf_c00076{left:451.474650px;}
.x14_c00076{left:464.811000px;}
.x1b_c00076{left:475.115100px;}
.x15_c00076{left:484.804950px;}
.x10_c00076{left:498.963900px;}
.x1c_c00076{left:500.089650px;}
.x18_c00076{left:525.329550px;}
.x9_c00076{left:557.784300px;}
.x19_c00076{left:632.099550px;}
.x1f_c00076{left:647.897100px;}
.xa_c00076{left:745.386150px;}
.x24_c00076{left:768.255000px;}
@media print{
.v2_c00076{vertical-align:-21.760000pt;}
.v0_c00076{vertical-align:0.000000pt;}
.v1_c00076{vertical-align:26.880000pt;}
.ls13_c00076{letter-spacing:-0.159616pt;}
.ls11_c00076{letter-spacing:0.000000pt;}
.ls14_c00076{letter-spacing:0.128000pt;}
.ls5_c00076{letter-spacing:0.209920pt;}
.ls1d_c00076{letter-spacing:0.236160pt;}
.ls4_c00076{letter-spacing:0.262400pt;}
.lsf_c00076{letter-spacing:0.270476pt;}
.ls19_c00076{letter-spacing:0.283392pt;}
.ls2b_c00076{letter-spacing:0.292114pt;}
.lse_c00076{letter-spacing:0.302933pt;}
.ls7_c00076{letter-spacing:0.304384pt;}
.ls2a_c00076{letter-spacing:0.329980pt;}
.ls2_c00076{letter-spacing:0.336000pt;}
.ls16_c00076{letter-spacing:0.377856pt;}
.ls27_c00076{letter-spacing:0.388352pt;}
.ls1e_c00076{letter-spacing:0.389485pt;}
.ls1c_c00076{letter-spacing:0.425088pt;}
.ls23_c00076{letter-spacing:0.438171pt;}
.ls8_c00076{letter-spacing:0.472320pt;}
.lsa_c00076{letter-spacing:0.486856pt;}
.ls21_c00076{letter-spacing:0.519552pt;}
.lsd_c00076{letter-spacing:0.530132pt;}
.ls25_c00076{letter-spacing:0.614016pt;}
.ls1f_c00076{letter-spacing:0.619264pt;}
.lsc_c00076{letter-spacing:0.632913pt;}
.ls9_c00076{letter-spacing:0.649142pt;}
.ls29_c00076{letter-spacing:0.681599pt;}
.ls12_c00076{letter-spacing:0.684800pt;}
.ls22_c00076{letter-spacing:1.479936pt;}
.ls15_c00076{letter-spacing:3.159296pt;}
.ls20_c00076{letter-spacing:3.164544pt;}
.ls1a_c00076{letter-spacing:4.665472pt;}
.ls18_c00076{letter-spacing:4.707456pt;}
.ls1b_c00076{letter-spacing:4.712704pt;}
.ls3_c00076{letter-spacing:4.775680pt;}
.ls17_c00076{letter-spacing:4.854400pt;}
.ls24_c00076{letter-spacing:4.901632pt;}
.ls0_c00076{letter-spacing:5.312000pt;}
.ls10_c00076{letter-spacing:5.475484pt;}
.ls6_c00076{letter-spacing:5.667840pt;}
.ls28_c00076{letter-spacing:8.806144pt;}
.ls26_c00076{letter-spacing:9.262720pt;}
.lsb_c00076{letter-spacing:9.499108pt;}
.ls1_c00076{letter-spacing:19.008000pt;}
.ws5_c00076{word-spacing:-19.443840pt;}
.ws4_c00076{word-spacing:-19.302144pt;}
.ws3_c00076{word-spacing:-19.296896pt;}
.wsc_c00076{word-spacing:-18.262521pt;}
.wsb_c00076{word-spacing:-18.230064pt;}
.wsa_c00076{word-spacing:-18.111055pt;}
.wsd_c00076{word-spacing:-17.910903pt;}
.ws1_c00076{word-spacing:-17.792000pt;}
.ws6_c00076{word-spacing:-15.671364pt;}
.ws9_c00076{word-spacing:-15.525307pt;}
.ws7_c00076{word-spacing:-15.476621pt;}
.ws8_c00076{word-spacing:-15.061760pt;}
.ws0_c00076{word-spacing:-10.159744pt;}
.ws2_c00076{word-spacing:-9.024000pt;}
.wse_c00076{word-spacing:0.000000pt;}
._4_c00076{margin-left:-19.008000pt;}
._13_c00076{margin-left:-8.974080pt;}
._14_c00076{margin-left:-8.081920pt;}
._10_c00076{margin-left:-2.880000pt;}
._11_c00076{margin-left:-1.986560pt;}
._f_c00076{margin-left:-0.966933pt;}
._0_c00076{width:1.344000pt;}
._7_c00076{width:2.816000pt;}
._1_c00076{width:3.904000pt;}
._5_c00076{width:4.864000pt;}
._6_c00076{width:5.888000pt;}
._8_c00076{width:6.976000pt;}
._e_c00076{width:8.448000pt;}
._12_c00076{width:9.762560pt;}
._15_c00076{width:10.675520pt;}
._a_c00076{width:11.712000pt;}
._d_c00076{width:12.736000pt;}
._b_c00076{width:14.144000pt;}
._2_c00076{width:15.168000pt;}
._9_c00076{width:16.320000pt;}
._3_c00076{width:19.008000pt;}
._c_c00076{width:22.208000pt;}
.fs3_c00076{font-size:32.000000pt;}
.fs2_c00076{font-size:37.120000pt;}
.fs4_c00076{font-size:52.480000pt;}
.fs6_c00076{font-size:53.333333pt;}
.fs5_c00076{font-size:54.095146pt;}
.fs0_c00076{font-size:64.000000pt;}
.fs1_c00076{font-size:65.969690pt;}
.y0_c00076{bottom:0.000000pt;}
.y3_c00076{bottom:2.280000pt;}
.y3f_c00076{bottom:2.773467pt;}
.y3e_c00076{bottom:30.884000pt;}
.y1_c00076{bottom:48.000000pt;}
.y3d_c00076{bottom:49.320000pt;}
.y3c_c00076{bottom:54.760000pt;}
.y3b_c00076{bottom:64.680000pt;}
.y3a_c00076{bottom:64.681600pt;}
.y39_c00076{bottom:80.360000pt;}
.y38_c00076{bottom:80.361600pt;}
.y37_c00076{bottom:101.480000pt;}
.y36_c00076{bottom:111.400000pt;}
.y35_c00076{bottom:116.840000pt;}
.y34_c00076{bottom:127.081280pt;}
.y33_c00076{bottom:142.759680pt;}
.y32_c00076{bottom:158.123200pt;}
.y31_c00076{bottom:173.801600pt;}
.y30_c00076{bottom:189.480000pt;}
.y2f_c00076{bottom:204.840000pt;}
.y2e_c00076{bottom:210.280000pt;}
.y2d_c00076{bottom:225.960000pt;}
.y2c_c00076{bottom:235.880000pt;}
.y2b_c00076{bottom:241.320000pt;}
.y2a_c00076{bottom:251.560000pt;}
.y29_c00076{bottom:251.561600pt;}
.y28_c00076{bottom:267.240000pt;}
.y27_c00076{bottom:272.680000pt;}
.y26_c00076{bottom:282.600000pt;}
.y25_c00076{bottom:282.601600pt;}
.y24_c00076{bottom:303.720000pt;}
.y22_c00076{bottom:313.958080pt;}
.y23_c00076{bottom:313.960000pt;}
.y21_c00076{bottom:329.321600pt;}
.y20_c00076{bottom:350.440000pt;}
.y1f_c00076{bottom:374.120000pt;}
.y1e_c00076{bottom:439.080000pt;}
.y1d_c00076{bottom:457.640000pt;}
.y1c_c00076{bottom:476.200000pt;}
.y1b_c00076{bottom:495.080000pt;}
.y1a_c00076{bottom:513.640000pt;}
.y19_c00076{bottom:532.200000pt;}
.y18_c00076{bottom:551.080000pt;}
.y17_c00076{bottom:569.640000pt;}
.y16_c00076{bottom:601.640000pt;}
.y15_c00076{bottom:620.200000pt;}
.y14_c00076{bottom:639.080000pt;}
.y13_c00076{bottom:657.640000pt;}
.y12_c00076{bottom:676.520000pt;}
.y11_c00076{bottom:695.080000pt;}
.y10_c00076{bottom:713.640000pt;}
.yf_c00076{bottom:732.520000pt;}
.ye_c00076{bottom:751.080000pt;}
.yd_c00076{bottom:769.640000pt;}
.yc_c00076{bottom:801.640000pt;}
.yb_c00076{bottom:820.520000pt;}
.ya_c00076{bottom:839.080000pt;}
.y9_c00076{bottom:857.640000pt;}
.y8_c00076{bottom:876.520000pt;}
.y7_c00076{bottom:895.080000pt;}
.y6_c00076{bottom:913.640000pt;}
.y5_c00076{bottom:945.640000pt;}
.y4_c00076{bottom:964.520000pt;}
.y2_c00076{bottom:1011.880000pt;}
.ha_c00076{height:17.116000pt;}
.h6_c00076{height:28.992000pt;}
.hb_c00076{height:41.173333pt;}
.h8_c00076{height:41.761453pt;}
.h9_c00076{height:43.276117pt;}
.h7_c00076{height:47.546880pt;}
.h4_c00076{height:50.928601pt;}
.h3_c00076{height:57.984000pt;}
.h5_c00076{height:60.510720pt;}
.h2_c00076{height:1067.880000pt;}
.h0_c00076{height:1122.520000pt;}
.h1_c00076{height:1122.666667pt;}
.w3_c00076{width:14.826667pt;}
.w2_c00076{width:767.960000pt;}
.w0_c00076{width:793.720000pt;}
.w1_c00076{width:794.000000pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:12.880000pt;}
.x2_c00076{left:100.480133pt;}
.x21_c00076{left:113.082400pt;}
.x11_c00076{left:127.892533pt;}
.x3_c00076{left:133.343733pt;}
.x22_c00076{left:134.561467pt;}
.x12_c00076{left:153.078800pt;}
.x20_c00076{left:155.691467pt;}
.x1a_c00076{left:162.721733pt;}
.x16_c00076{left:165.955733pt;}
.x7_c00076{left:181.932667pt;}
.x13_c00076{left:198.637067pt;}
.xb_c00076{left:204.916933pt;}
.x4_c00076{left:213.294933pt;}
.xc_c00076{left:222.689467pt;}
.x17_c00076{left:226.049867pt;}
.x23_c00076{left:239.050800pt;}
.x8_c00076{left:247.106400pt;}
.x5_c00076{left:309.532533pt;}
.x1d_c00076{left:318.302133pt;}
.x1e_c00076{left:336.074533pt;}
.xd_c00076{left:345.671600pt;}
.xe_c00076{left:363.444000pt;}
.x6_c00076{left:369.084000pt;}
.xf_c00076{left:401.310800pt;}
.x14_c00076{left:413.165333pt;}
.x1b_c00076{left:422.324533pt;}
.x15_c00076{left:430.937733pt;}
.x10_c00076{left:443.523467pt;}
.x1c_c00076{left:444.524133pt;}
.x18_c00076{left:466.959600pt;}
.x9_c00076{left:495.808267pt;}
.x19_c00076{left:561.866267pt;}
.x1f_c00076{left:575.908533pt;}
.xa_c00076{left:662.565467pt;}
.x24_c00076{left:682.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_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_e9b9a0ea3ed1bfc84377f607.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_030e692063524276eb1ec396.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;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:ff3_c00077;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;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:ff5_c00077;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00077;src:url('chunks/assets/font_22faf2ecd90e141cdc36d347.woff2')format("woff");}.ff6_c00077{font-family:ff6_c00077;line-height:0.787000;font-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_c00077{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00077{vertical-align:-24.480000px;}
.v0_c00077{vertical-align:0.000000px;}
.v1_c00077{vertical-align:30.240000px;}
.lsc_c00077{letter-spacing:-0.179568px;}
.lsb_c00077{letter-spacing:0.000000px;}
.ls0_c00077{letter-spacing:0.021600px;}
.ls10_c00077{letter-spacing:0.144000px;}
.ls6_c00077{letter-spacing:0.236160px;}
.ls11_c00077{letter-spacing:0.265680px;}
.ls7_c00077{letter-spacing:0.354240px;}
.ls2_c00077{letter-spacing:0.362880px;}
.ls12_c00077{letter-spacing:0.371952px;}
.ls14_c00077{letter-spacing:0.425088px;}
.ls13_c00077{letter-spacing:0.438171px;}
.ls8_c00077{letter-spacing:0.531360px;}
.ls1_c00077{letter-spacing:0.667440px;}
.ls15_c00077{letter-spacing:0.690768px;}
.ls5_c00077{letter-spacing:0.712027px;}
.lse_c00077{letter-spacing:0.933120px;}
.ls3_c00077{letter-spacing:3.604320px;}
.lsf_c00077{letter-spacing:5.430672px;}
.ls4_c00077{letter-spacing:5.953200px;}
.ls9_c00077{letter-spacing:5.976000px;}
.lsa_c00077{letter-spacing:6.159920px;}
.lsd_c00077{letter-spacing:27.374400px;}
.sc__c00077{text-shadow:none;}
.sc1_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00077{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc1_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00077{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00077{word-spacing:-21.043152px;}
.ws3_c00077{word-spacing:-17.630284px;}
.ws4_c00077{word-spacing:-16.944480px;}
.ws0_c00077{word-spacing:-11.429712px;}
.ws2_c00077{word-spacing:-10.152000px;}
.ws5_c00077{word-spacing:0.000000px;}
._f_c00077{margin-left:-1.555200px;}
._3_c00077{width:1.296000px;}
._4_c00077{width:2.448000px;}
._9_c00077{width:3.744000px;}
._6_c00077{width:5.112000px;}
._5_c00077{width:6.912000px;}
._c_c00077{width:8.208000px;}
._1_c00077{width:9.432000px;}
._e_c00077{width:11.448000px;}
._0_c00077{width:16.488000px;}
._b_c00077{width:17.712000px;}
._a_c00077{width:18.720000px;}
._d_c00077{width:21.384000px;}
._2_c00077{width:24.912000px;}
._8_c00077{width:27.360000px;}
._7_c00077{width:29.016000px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs5_c00077{font-size:36.000000px;}
.fs2_c00077{font-size:41.760000px;}
.fs4_c00077{font-size:56.160000px;}
.fs6_c00077{font-size:59.040000px;}
.fs8_c00077{font-size:60.000000px;}
.fs7_c00077{font-size:60.857039px;}
.fs3_c00077{font-size:64.800000px;}
.fs0_c00077{font-size:72.000000px;}
.fs1_c00077{font-size:74.215901px;}
.y0_c00077{bottom:0.000000px;}
.y3_c00077{bottom:2.565000px;}
.y32_c00077{bottom:3.120150px;}
.y31_c00077{bottom:34.744500px;}
.y1_c00077{bottom:54.000000px;}
.y30_c00077{bottom:55.485000px;}
.y2f_c00077{bottom:61.605000px;}
.y2e_c00077{bottom:72.765000px;}
.y2d_c00077{bottom:78.885000px;}
.y2c_c00077{bottom:96.525000px;}
.y2b_c00077{bottom:107.685000px;}
.y2a_c00077{bottom:113.805000px;}
.y29_c00077{bottom:140.445000px;}
.y28_c00077{bottom:190.485000px;}
.y27_c00077{bottom:226.485000px;}
.y26_c00077{bottom:262.485000px;}
.y25_c00077{bottom:298.485000px;}
.y24_c00077{bottom:334.485000px;}
.y23_c00077{bottom:370.485000px;}
.y22_c00077{bottom:406.485000px;}
.y21_c00077{bottom:427.725000px;}
.y20_c00077{bottom:463.725000px;}
.y1f_c00077{bottom:484.605000px;}
.y1e_c00077{bottom:505.485000px;}
.y1d_c00077{bottom:526.725000px;}
.y1c_c00077{bottom:547.605000px;}
.y1b_c00077{bottom:568.485000px;}
.y1a_c00077{bottom:589.725000px;}
.y19_c00077{bottom:610.605000px;}
.y18_c00077{bottom:631.485000px;}
.y17_c00077{bottom:652.725000px;}
.y16_c00077{bottom:673.605000px;}
.y15_c00077{bottom:694.485000px;}
.y14_c00077{bottom:730.485000px;}
.y13_c00077{bottom:751.725000px;}
.y12_c00077{bottom:772.605000px;}
.y11_c00077{bottom:793.485000px;}
.y10_c00077{bottom:816.525000px;}
.yf_c00077{bottom:837.405000px;}
.ye_c00077{bottom:858.285000px;}
.yd_c00077{bottom:879.165000px;}
.yc_c00077{bottom:900.405000px;}
.yb_c00077{bottom:921.285000px;}
.ya_c00077{bottom:942.165000px;}
.y9_c00077{bottom:978.165000px;}
.y8_c00077{bottom:999.405000px;}
.y7_c00077{bottom:1022.445000px;}
.y6_c00077{bottom:1042.965000px;}
.y5_c00077{bottom:1063.845000px;}
.y4_c00077{bottom:1085.085000px;}
.y2_c00077{bottom:1138.365000px;}
.ha_c00077{height:19.255500px;}
.h7_c00077{height:32.616000px;}
.hb_c00077{height:46.320000px;}
.h8_c00077{height:46.981634px;}
.h6_c00077{height:52.031250px;}
.h9_c00077{height:53.490240px;}
.h4_c00077{height:57.294676px;}
.h3_c00077{height:65.232000px;}
.h5_c00077{height:68.074560px;}
.h2_c00077{height:1201.365000px;}
.h0_c00077{height:1262.835000px;}
.h1_c00077{height:1263.000000px;}
.w3_c00077{width:16.680000px;}
.w2_c00077{width:863.955000px;}
.w0_c00077{width:892.935000px;}
.w1_c00077{width:893.250000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:14.490000px;}
.x2_c00077{left:113.040150px;}
.x1a_c00077{left:127.217700px;}
.x14_c00077{left:140.038500px;}
.x18_c00077{left:145.025700px;}
.x1b_c00077{left:147.212100px;}
.x3_c00077{left:150.011700px;}
.x15_c00077{left:167.040150px;}
.xd_c00077{left:191.033250px;}
.x4_c00077{left:239.956800px;}
.x10_c00077{left:271.059450px;}
.xb_c00077{left:277.509600px;}
.x11_c00077{left:295.052850px;}
.xe_c00077{left:320.368350px;}
.x12_c00077{left:321.481500px;}
.x13_c00077{left:346.286100px;}
.x1e_c00077{left:365.619450px;}
.xf_c00077{left:385.383150px;}
.x7_c00077{left:409.128300px;}
.x16_c00077{left:417.164100px;}
.x1c_c00077{left:473.106150px;}
.x8_c00077{left:474.143250px;}
.x9_c00077{left:491.985300px;}
.x1d_c00077{left:493.100100px;}
.x19_c00077{left:516.090450px;}
.x5_c00077{left:538.135950px;}
.x17_c00077{left:564.167700px;}
.xa_c00077{left:576.876750px;}
.x6_c00077{left:617.619450px;}
.xc_c00077{left:733.710600px;}
.x1f_c00077{left:768.255000px;}
@media print{
.v2_c00077{vertical-align:-21.760000pt;}
.v0_c00077{vertical-align:0.000000pt;}
.v1_c00077{vertical-align:26.880000pt;}
.lsc_c00077{letter-spacing:-0.159616pt;}
.lsb_c00077{letter-spacing:0.000000pt;}
.ls0_c00077{letter-spacing:0.019200pt;}
.ls10_c00077{letter-spacing:0.128000pt;}
.ls6_c00077{letter-spacing:0.209920pt;}
.ls11_c00077{letter-spacing:0.236160pt;}
.ls7_c00077{letter-spacing:0.314880pt;}
.ls2_c00077{letter-spacing:0.322560pt;}
.ls12_c00077{letter-spacing:0.330624pt;}
.ls14_c00077{letter-spacing:0.377856pt;}
.ls13_c00077{letter-spacing:0.389485pt;}
.ls8_c00077{letter-spacing:0.472320pt;}
.ls1_c00077{letter-spacing:0.593280pt;}
.ls15_c00077{letter-spacing:0.614016pt;}
.ls5_c00077{letter-spacing:0.632913pt;}
.lse_c00077{letter-spacing:0.829440pt;}
.ls3_c00077{letter-spacing:3.203840pt;}
.lsf_c00077{letter-spacing:4.827264pt;}
.ls4_c00077{letter-spacing:5.291733pt;}
.ls9_c00077{letter-spacing:5.312000pt;}
.lsa_c00077{letter-spacing:5.475484pt;}
.lsd_c00077{letter-spacing:24.332800pt;}
.ws1_c00077{word-spacing:-18.705024pt;}
.ws3_c00077{word-spacing:-15.671364pt;}
.ws4_c00077{word-spacing:-15.061760pt;}
.ws0_c00077{word-spacing:-10.159744pt;}
.ws2_c00077{word-spacing:-9.024000pt;}
.ws5_c00077{word-spacing:0.000000pt;}
._f_c00077{margin-left:-1.382400pt;}
._3_c00077{width:1.152000pt;}
._4_c00077{width:2.176000pt;}
._9_c00077{width:3.328000pt;}
._6_c00077{width:4.544000pt;}
._5_c00077{width:6.144000pt;}
._c_c00077{width:7.296000pt;}
._1_c00077{width:8.384000pt;}
._e_c00077{width:10.176000pt;}
._0_c00077{width:14.656000pt;}
._b_c00077{width:15.744000pt;}
._a_c00077{width:16.640000pt;}
._d_c00077{width:19.008000pt;}
._2_c00077{width:22.144000pt;}
._8_c00077{width:24.320000pt;}
._7_c00077{width:25.792000pt;}
.fs5_c00077{font-size:32.000000pt;}
.fs2_c00077{font-size:37.120000pt;}
.fs4_c00077{font-size:49.920000pt;}
.fs6_c00077{font-size:52.480000pt;}
.fs8_c00077{font-size:53.333333pt;}
.fs7_c00077{font-size:54.095146pt;}
.fs3_c00077{font-size:57.600000pt;}
.fs0_c00077{font-size:64.000000pt;}
.fs1_c00077{font-size:65.969690pt;}
.y0_c00077{bottom:0.000000pt;}
.y3_c00077{bottom:2.280000pt;}
.y32_c00077{bottom:2.773467pt;}
.y31_c00077{bottom:30.884000pt;}
.y1_c00077{bottom:48.000000pt;}
.y30_c00077{bottom:49.320000pt;}
.y2f_c00077{bottom:54.760000pt;}
.y2e_c00077{bottom:64.680000pt;}
.y2d_c00077{bottom:70.120000pt;}
.y2c_c00077{bottom:85.800000pt;}
.y2b_c00077{bottom:95.720000pt;}
.y2a_c00077{bottom:101.160000pt;}
.y29_c00077{bottom:124.840000pt;}
.y28_c00077{bottom:169.320000pt;}
.y27_c00077{bottom:201.320000pt;}
.y26_c00077{bottom:233.320000pt;}
.y25_c00077{bottom:265.320000pt;}
.y24_c00077{bottom:297.320000pt;}
.y23_c00077{bottom:329.320000pt;}
.y22_c00077{bottom:361.320000pt;}
.y21_c00077{bottom:380.200000pt;}
.y20_c00077{bottom:412.200000pt;}
.y1f_c00077{bottom:430.760000pt;}
.y1e_c00077{bottom:449.320000pt;}
.y1d_c00077{bottom:468.200000pt;}
.y1c_c00077{bottom:486.760000pt;}
.y1b_c00077{bottom:505.320000pt;}
.y1a_c00077{bottom:524.200000pt;}
.y19_c00077{bottom:542.760000pt;}
.y18_c00077{bottom:561.320000pt;}
.y17_c00077{bottom:580.200000pt;}
.y16_c00077{bottom:598.760000pt;}
.y15_c00077{bottom:617.320000pt;}
.y14_c00077{bottom:649.320000pt;}
.y13_c00077{bottom:668.200000pt;}
.y12_c00077{bottom:686.760000pt;}
.y11_c00077{bottom:705.320000pt;}
.y10_c00077{bottom:725.800000pt;}
.yf_c00077{bottom:744.360000pt;}
.ye_c00077{bottom:762.920000pt;}
.yd_c00077{bottom:781.480000pt;}
.yc_c00077{bottom:800.360000pt;}
.yb_c00077{bottom:818.920000pt;}
.ya_c00077{bottom:837.480000pt;}
.y9_c00077{bottom:869.480000pt;}
.y8_c00077{bottom:888.360000pt;}
.y7_c00077{bottom:908.840000pt;}
.y6_c00077{bottom:927.080000pt;}
.y5_c00077{bottom:945.640000pt;}
.y4_c00077{bottom:964.520000pt;}
.y2_c00077{bottom:1011.880000pt;}
.ha_c00077{height:17.116000pt;}
.h7_c00077{height:28.992000pt;}
.hb_c00077{height:41.173333pt;}
.h8_c00077{height:41.761453pt;}
.h6_c00077{height:46.250000pt;}
.h9_c00077{height:47.546880pt;}
.h4_c00077{height:50.928601pt;}
.h3_c00077{height:57.984000pt;}
.h5_c00077{height:60.510720pt;}
.h2_c00077{height:1067.880000pt;}
.h0_c00077{height:1122.520000pt;}
.h1_c00077{height:1122.666667pt;}
.w3_c00077{width:14.826667pt;}
.w2_c00077{width:767.960000pt;}
.w0_c00077{width:793.720000pt;}
.w1_c00077{width:794.000000pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:12.880000pt;}
.x2_c00077{left:100.480133pt;}
.x1a_c00077{left:113.082400pt;}
.x14_c00077{left:124.478667pt;}
.x18_c00077{left:128.911733pt;}
.x1b_c00077{left:130.855200pt;}
.x3_c00077{left:133.343733pt;}
.x15_c00077{left:148.480133pt;}
.xd_c00077{left:169.807333pt;}
.x4_c00077{left:213.294933pt;}
.x10_c00077{left:240.941733pt;}
.xb_c00077{left:246.675200pt;}
.x11_c00077{left:262.269200pt;}
.xe_c00077{left:284.771867pt;}
.x12_c00077{left:285.761333pt;}
.x13_c00077{left:307.809867pt;}
.x1e_c00077{left:324.995067pt;}
.xf_c00077{left:342.562800pt;}
.x7_c00077{left:363.669600pt;}
.x16_c00077{left:370.812533pt;}
.x1c_c00077{left:420.538800pt;}
.x8_c00077{left:421.460667pt;}
.x9_c00077{left:437.320267pt;}
.x1d_c00077{left:438.311200pt;}
.x19_c00077{left:458.747067pt;}
.x5_c00077{left:478.343067pt;}
.x17_c00077{left:501.482400pt;}
.xa_c00077{left:512.779333pt;}
.x6_c00077{left:548.995067pt;}
.xc_c00077{left:652.187200pt;}
.x1f_c00077{left:682.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_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_a7687085c92f6c46144fff4c.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00078;src:url('chunks/assets/font_ed5d4f46421f4b230d59429f.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;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:ff3_c00078;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00078;src:url('chunks/assets/font_f1841aab92138eceb804211a.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:0.787000;font-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_c00078{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls3_c00078{letter-spacing:0.000000px;}
.ls5_c00078{letter-spacing:3.736800px;}
.ls4_c00078{letter-spacing:5.430672px;}
.ls1_c00078{letter-spacing:5.976000px;}
.ls0_c00078{letter-spacing:5.978400px;}
.ls2_c00078{letter-spacing:6.159920px;}
.sc__c00078{text-shadow:none;}
.sc1_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00078{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc1_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00078{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00078{word-spacing:-21.043152px;}
.ws1_c00078{word-spacing:0.000000px;}
._1_c00078{margin-left:-1.179360px;}
._4_c00078{width:1.728000px;}
._6_c00078{width:3.744000px;}
._2_c00078{width:5.760000px;}
._3_c00078{width:8.352000px;}
._0_c00078{width:14.256000px;}
._5_c00078{width:27.720000px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs2_c00078{font-size:56.160000px;}
.fs3_c00078{font-size:60.000000px;}
.fs0_c00078{font-size:72.000000px;}
.fs1_c00078{font-size:74.215901px;}
.y0_c00078{bottom:0.000000px;}
.y3_c00078{bottom:2.565000px;}
.y25_c00078{bottom:3.120150px;}
.y24_c00078{bottom:34.744500px;}
.y1_c00078{bottom:54.000000px;}
.y23_c00078{bottom:73.845000px;}
.y22_c00078{bottom:94.725000px;}
.y21_c00078{bottom:130.725000px;}
.y20_c00078{bottom:166.725000px;}
.y1f_c00078{bottom:202.725000px;}
.y1e_c00078{bottom:223.965000px;}
.y1d_c00078{bottom:259.965000px;}
.y1c_c00078{bottom:295.965000px;}
.y1b_c00078{bottom:331.965000px;}
.y1a_c00078{bottom:352.845000px;}
.y19_c00078{bottom:388.845000px;}
.y18_c00078{bottom:424.845000px;}
.y17_c00078{bottom:460.845000px;}
.y16_c00078{bottom:481.725000px;}
.y15_c00078{bottom:517.725000px;}
.y14_c00078{bottom:554.085000px;}
.y13_c00078{bottom:590.085000px;}
.y12_c00078{bottom:626.085000px;}
.y11_c00078{bottom:662.085000px;}
.y10_c00078{bottom:698.085000px;}
.yf_c00078{bottom:734.085000px;}
.ye_c00078{bottom:754.965000px;}
.yd_c00078{bottom:775.845000px;}
.yc_c00078{bottom:811.845000px;}
.yb_c00078{bottom:847.845000px;}
.ya_c00078{bottom:883.845000px;}
.y9_c00078{bottom:919.845000px;}
.y8_c00078{bottom:955.845000px;}
.y7_c00078{bottom:991.845000px;}
.y6_c00078{bottom:1027.845000px;}
.y5_c00078{bottom:1063.845000px;}
.y4_c00078{bottom:1085.085000px;}
.y2_c00078{bottom:1138.365000px;}
.h6_c00078{height:19.255500px;}
.h7_c00078{height:46.320000px;}
.h5_c00078{height:52.031250px;}
.h4_c00078{height:57.294676px;}
.h3_c00078{height:65.232000px;}
.h2_c00078{height:1201.365000px;}
.h0_c00078{height:1262.835000px;}
.h1_c00078{height:1263.000000px;}
.w3_c00078{width:16.680000px;}
.w2_c00078{width:863.955000px;}
.w0_c00078{width:892.935000px;}
.w1_c00078{width:893.250000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:14.490000px;}
.x2_c00078{left:113.040150px;}
.x7_c00078{left:140.040150px;}
.x5_c00078{left:143.027700px;}
.xb_c00078{left:148.031550px;}
.x3_c00078{left:150.011700px;}
.x11_c00078{left:153.035550px;}
.xa_c00078{left:155.033550px;}
.xd_c00078{left:156.474900px;}
.x20_c00078{left:159.965400px;}
.x8_c00078{left:167.040150px;}
.x10_c00078{left:197.062800px;}
.x6_c00078{left:220.066800px;}
.x16_c00078{left:221.461950px;}
.x24_c00078{left:225.034500px;}
.x2a_c00078{left:232.037100px;}
.x21_c00078{left:234.880050px;}
.x2b_c00078{left:237.040950px;}
.x4_c00078{left:239.956800px;}
.x17_c00078{left:243.457800px;}
.x12_c00078{left:247.048800px;}
.x26_c00078{left:254.854650px;}
.x1f_c00078{left:260.026650px;}
.x13_c00078{left:274.047750px;}
.x23_c00078{left:280.042200px;}
.xc_c00078{left:283.066350px;}
.x22_c00078{left:289.869450px;}
.x27_c00078{left:304.857750px;}
.x28_c00078{left:316.789650px;}
.x25_c00078{left:330.026700px;}
.x14_c00078{left:342.068850px;}
.x29_c00078{left:344.797500px;}
.x9_c00078{left:409.100100px;}
.x18_c00078{left:430.845600px;}
.x15_c00078{left:447.061200px;}
.x19_c00078{left:463.839450px;}
.x1e_c00078{left:545.087400px;}
.x1a_c00078{left:563.517000px;}
.x1b_c00078{left:636.487800px;}
.xe_c00078{left:650.268750px;}
.x1c_c00078{left:720.163950px;}
.x1d_c00078{left:730.392300px;}
.xf_c00078{left:734.291400px;}
.x2c_c00078{left:768.255000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls3_c00078{letter-spacing:0.000000pt;}
.ls5_c00078{letter-spacing:3.321600pt;}
.ls4_c00078{letter-spacing:4.827264pt;}
.ls1_c00078{letter-spacing:5.312000pt;}
.ls0_c00078{letter-spacing:5.314133pt;}
.ls2_c00078{letter-spacing:5.475484pt;}
.ws0_c00078{word-spacing:-18.705024pt;}
.ws1_c00078{word-spacing:0.000000pt;}
._1_c00078{margin-left:-1.048320pt;}
._4_c00078{width:1.536000pt;}
._6_c00078{width:3.328000pt;}
._2_c00078{width:5.120000pt;}
._3_c00078{width:7.424000pt;}
._0_c00078{width:12.672000pt;}
._5_c00078{width:24.640000pt;}
.fs2_c00078{font-size:49.920000pt;}
.fs3_c00078{font-size:53.333333pt;}
.fs0_c00078{font-size:64.000000pt;}
.fs1_c00078{font-size:65.969690pt;}
.y0_c00078{bottom:0.000000pt;}
.y3_c00078{bottom:2.280000pt;}
.y25_c00078{bottom:2.773467pt;}
.y24_c00078{bottom:30.884000pt;}
.y1_c00078{bottom:48.000000pt;}
.y23_c00078{bottom:65.640000pt;}
.y22_c00078{bottom:84.200000pt;}
.y21_c00078{bottom:116.200000pt;}
.y20_c00078{bottom:148.200000pt;}
.y1f_c00078{bottom:180.200000pt;}
.y1e_c00078{bottom:199.080000pt;}
.y1d_c00078{bottom:231.080000pt;}
.y1c_c00078{bottom:263.080000pt;}
.y1b_c00078{bottom:295.080000pt;}
.y1a_c00078{bottom:313.640000pt;}
.y19_c00078{bottom:345.640000pt;}
.y18_c00078{bottom:377.640000pt;}
.y17_c00078{bottom:409.640000pt;}
.y16_c00078{bottom:428.200000pt;}
.y15_c00078{bottom:460.200000pt;}
.y14_c00078{bottom:492.520000pt;}
.y13_c00078{bottom:524.520000pt;}
.y12_c00078{bottom:556.520000pt;}
.y11_c00078{bottom:588.520000pt;}
.y10_c00078{bottom:620.520000pt;}
.yf_c00078{bottom:652.520000pt;}
.ye_c00078{bottom:671.080000pt;}
.yd_c00078{bottom:689.640000pt;}
.yc_c00078{bottom:721.640000pt;}
.yb_c00078{bottom:753.640000pt;}
.ya_c00078{bottom:785.640000pt;}
.y9_c00078{bottom:817.640000pt;}
.y8_c00078{bottom:849.640000pt;}
.y7_c00078{bottom:881.640000pt;}
.y6_c00078{bottom:913.640000pt;}
.y5_c00078{bottom:945.640000pt;}
.y4_c00078{bottom:964.520000pt;}
.y2_c00078{bottom:1011.880000pt;}
.h6_c00078{height:17.116000pt;}
.h7_c00078{height:41.173333pt;}
.h5_c00078{height:46.250000pt;}
.h4_c00078{height:50.928601pt;}
.h3_c00078{height:57.984000pt;}
.h2_c00078{height:1067.880000pt;}
.h0_c00078{height:1122.520000pt;}
.h1_c00078{height:1122.666667pt;}
.w3_c00078{width:14.826667pt;}
.w2_c00078{width:767.960000pt;}
.w0_c00078{width:793.720000pt;}
.w1_c00078{width:794.000000pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:12.880000pt;}
.x2_c00078{left:100.480133pt;}
.x7_c00078{left:124.480133pt;}
.x5_c00078{left:127.135733pt;}
.xb_c00078{left:131.583600pt;}
.x3_c00078{left:133.343733pt;}
.x11_c00078{left:136.031600pt;}
.xa_c00078{left:137.807600pt;}
.xd_c00078{left:139.088800pt;}
.x20_c00078{left:142.191467pt;}
.x8_c00078{left:148.480133pt;}
.x10_c00078{left:175.166933pt;}
.x6_c00078{left:195.614933pt;}
.x16_c00078{left:196.855067pt;}
.x24_c00078{left:200.030667pt;}
.x2a_c00078{left:206.255200pt;}
.x21_c00078{left:208.782267pt;}
.x2b_c00078{left:210.703067pt;}
.x4_c00078{left:213.294933pt;}
.x17_c00078{left:216.406933pt;}
.x12_c00078{left:219.598933pt;}
.x26_c00078{left:226.537467pt;}
.x1f_c00078{left:231.134800pt;}
.x13_c00078{left:243.598000pt;}
.x23_c00078{left:248.926400pt;}
.xc_c00078{left:251.614533pt;}
.x22_c00078{left:257.661733pt;}
.x27_c00078{left:270.984667pt;}
.x28_c00078{left:281.590800pt;}
.x25_c00078{left:293.357067pt;}
.x14_c00078{left:304.061200pt;}
.x29_c00078{left:306.486667pt;}
.x9_c00078{left:363.644533pt;}
.x18_c00078{left:382.973867pt;}
.x15_c00078{left:397.387733pt;}
.x19_c00078{left:412.301733pt;}
.x1e_c00078{left:484.522133pt;}
.x1a_c00078{left:500.904000pt;}
.x1b_c00078{left:565.766933pt;}
.xe_c00078{left:578.016667pt;}
.x1c_c00078{left:640.145733pt;}
.x1d_c00078{left:649.237600pt;}
.xf_c00078{left:652.703467pt;}
.x2c_c00078{left:682.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_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_479b3a4b8c044ee076d461a5.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_7f2fec84b51c2642d7e62345.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;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:ff3_c00079;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00079;src:url('chunks/assets/font_a25b3dd26e6809000d6aeec7.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00079;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff6_c00079{font-family:ff6_c00079;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00079;src:url('chunks/assets/font_8c7cb27c96be640a003e5647.woff2')format("woff");}.ff7_c00079{font-family:ff7_c00079;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00079;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff8_c00079{font-family:ff8_c00079;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00079;src:url('chunks/assets/font_97c2b977a4b3e013e0b9ee79.woff2')format("woff");}.ff9_c00079{font-family:ff9_c00079;line-height:0.921000;font-style:normal;font-weight: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_c00079;src:url('chunks/assets/font_ccd5ba3304c3ef98c71f7ec9.woff2')format("woff");}.ffa_c00079{font-family:ffa_c00079;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00079{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00079{vertical-align:-24.480000px;}
.v0_c00079{vertical-align:0.000000px;}
.v1_c00079{vertical-align:30.240000px;}
.ls14_c00079{letter-spacing:-0.179568px;}
.ls13_c00079{letter-spacing:0.000000px;}
.ls24_c00079{letter-spacing:0.144000px;}
.ls20_c00079{letter-spacing:0.242064px;}
.ls1c_c00079{letter-spacing:0.265680px;}
.lse_c00079{letter-spacing:0.273857px;}
.ls11_c00079{letter-spacing:0.295200px;}
.ls5_c00079{letter-spacing:0.318480px;}
.ls16_c00079{letter-spacing:0.318816px;}
.ls9_c00079{letter-spacing:0.319080px;}
.ls17_c00079{letter-spacing:0.328628px;}
.ls23_c00079{letter-spacing:0.383399px;}
.ls25_c00079{letter-spacing:0.438171px;}
.ls10_c00079{letter-spacing:0.438740px;}
.ls21_c00079{letter-spacing:0.478224px;}
.ls3_c00079{letter-spacing:0.492942px;}
.lsa_c00079{letter-spacing:0.507744px;}
.ls8_c00079{letter-spacing:0.531360px;}
.lsc_c00079{letter-spacing:0.537264px;}
.ls4_c00079{letter-spacing:0.548950px;}
.lsb_c00079{letter-spacing:0.549072px;}
.lsd_c00079{letter-spacing:0.553799px;}
.ls19_c00079{letter-spacing:0.690768px;}
.ls1b_c00079{letter-spacing:0.696672px;}
.ls7_c00079{letter-spacing:0.712027px;}
.lsf_c00079{letter-spacing:0.713462px;}
.ls22_c00079{letter-spacing:0.718113px;}
.ls1e_c00079{letter-spacing:0.766799px;}
.ls1f_c00079{letter-spacing:0.821570px;}
.ls1d_c00079{letter-spacing:0.991970px;}
.ls26_c00079{letter-spacing:1.777104px;}
.ls15_c00079{letter-spacing:2.347200px;}
.ls18_c00079{letter-spacing:5.461200px;}
.ls27_c00079{letter-spacing:5.514336px;}
.ls0_c00079{letter-spacing:5.976000px;}
.ls12_c00079{letter-spacing:6.159920px;}
.ls6_c00079{letter-spacing:6.974934px;}
.ls1a_c00079{letter-spacing:13.100976px;}
.ls1_c00079{letter-spacing:16.200000px;}
.ls2_c00079{letter-spacing:54.864000px;}
.sc__c00079{text-shadow:none;}
.sc1_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00079{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc1_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00079{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws10_c00079{word-spacing:-21.927456px;}
.ws5_c00079{word-spacing:-21.874320px;}
.ws8_c00079{word-spacing:-17.739827px;}
.ws7_c00079{word-spacing:-17.685056px;}
.ws6_c00079{word-spacing:-17.630284px;}
.wsa_c00079{word-spacing:-17.472056px;}
.ws3_c00079{word-spacing:-17.411199px;}
.wsd_c00079{word-spacing:-17.301656px;}
.ws4_c00079{word-spacing:-17.246885px;}
.ws9_c00079{word-spacing:-16.962192px;}
.ws2_c00079{word-spacing:-16.944480px;}
.wsb_c00079{word-spacing:-16.891344px;}
.ws1_c00079{word-spacing:-16.413120px;}
.ws0_c00079{word-spacing:-11.429712px;}
.wse_c00079{word-spacing:-10.152000px;}
.wsf_c00079{word-spacing:-5.520240px;}
.wsc_c00079{word-spacing:-0.778970px;}
.ws11_c00079{word-spacing:0.000000px;}
._8_c00079{margin-left:-13.025496px;}
._9_c00079{margin-left:-11.934072px;}
._11_c00079{margin-left:-2.177280px;}
._7_c00079{margin-left:-1.003680px;}
._2_c00079{width:1.728000px;}
._3_c00079{width:2.952000px;}
._10_c00079{width:4.320000px;}
._a_c00079{width:5.785920px;}
._4_c00079{width:7.488000px;}
._1_c00079{width:10.224000px;}
._5_c00079{width:11.448000px;}
._b_c00079{width:15.704640px;}
._0_c00079{width:17.928000px;}
._6_c00079{width:29.304000px;}
._c_c00079{width:31.055040px;}
._d_c00079{width:59.925600px;}
._e_c00079{width:77.991840px;}
._f_c00079{width:82.183680px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs5_c00079{font-size:36.000000px;}
.fs2_c00079{font-size:41.760000px;}
.fs3_c00079{font-size:59.040000px;}
.fs6_c00079{font-size:60.000000px;}
.fs4_c00079{font-size:60.857039px;}
.fs0_c00079{font-size:72.000000px;}
.fs1_c00079{font-size:74.215901px;}
.y0_c00079{bottom:0.000000px;}
.y3_c00079{bottom:2.565000px;}
.y33_c00079{bottom:3.120150px;}
.y32_c00079{bottom:34.744500px;}
.y1_c00079{bottom:54.000000px;}
.y31_c00079{bottom:61.605000px;}
.y2f_c00079{bottom:72.757800px;}
.y30_c00079{bottom:72.765000px;}
.y2e_c00079{bottom:96.885000px;}
.y2d_c00079{bottom:108.045000px;}
.y2c_c00079{bottom:114.165000px;}
.y2b_c00079{bottom:140.805000px;}
.y29_c00079{bottom:177.525000px;}
.y2a_c00079{bottom:177.885000px;}
.y28_c00079{bottom:195.165000px;}
.y27_c00079{bottom:213.525000px;}
.y26_c00079{bottom:231.165000px;}
.y25_c00079{bottom:248.445000px;}
.y24_c00079{bottom:266.085000px;}
.y23_c00079{bottom:283.725000px;}
.y22_c00079{bottom:301.725000px;}
.y21_c00079{bottom:319.365000px;}
.y20_c00079{bottom:337.005000px;}
.y1f_c00079{bottom:354.285000px;}
.y1e_c00079{bottom:371.925000px;}
.y1d_c00079{bottom:389.205000px;}
.y1c_c00079{bottom:406.845000px;}
.y1b_c00079{bottom:424.485000px;}
.y1a_c00079{bottom:457.965000px;}
.y19_c00079{bottom:493.965000px;}
.y18_c00079{bottom:514.845000px;}
.y17_c00079{bottom:535.725000px;}
.y16_c00079{bottom:571.725000px;}
.y15_c00079{bottom:592.965000px;}
.y14_c00079{bottom:613.845000px;}
.y13_c00079{bottom:635.085000px;}
.y12_c00079{bottom:655.965000px;}
.y11_c00079{bottom:676.845000px;}
.y10_c00079{bottom:698.085000px;}
.yf_c00079{bottom:734.085000px;}
.ye_c00079{bottom:770.085000px;}
.yd_c00079{bottom:790.965000px;}
.yc_c00079{bottom:826.965000px;}
.yb_c00079{bottom:862.965000px;}
.ya_c00079{bottom:898.965000px;}
.y9_c00079{bottom:934.965000px;}
.y8_c00079{bottom:970.965000px;}
.y7_c00079{bottom:991.845000px;}
.y6_c00079{bottom:1027.845000px;}
.y5_c00079{bottom:1049.085000px;}
.y4_c00079{bottom:1085.085000px;}
.y2_c00079{bottom:1138.365000px;}
.hc_c00079{height:19.255500px;}
.hb_c00079{height:32.616000px;}
.ha_c00079{height:39.350391px;}
.hd_c00079{height:46.320000px;}
.h9_c00079{height:46.981634px;}
.h5_c00079{height:52.031250px;}
.h7_c00079{height:53.490240px;}
.h8_c00079{height:55.136477px;}
.h4_c00079{height:57.294676px;}
.h3_c00079{height:65.232000px;}
.h6_c00079{height:68.074560px;}
.h2_c00079{height:1201.365000px;}
.h0_c00079{height:1262.835000px;}
.h1_c00079{height:1263.000000px;}
.w7_c00079{width:16.680000px;}
.w3_c00079{width:50.760000px;}
.w4_c00079{width:162.000000px;}
.w5_c00079{width:178.920000px;}
.w6_c00079{width:259.200000px;}
.w2_c00079{width:863.955000px;}
.w0_c00079{width:892.935000px;}
.w1_c00079{width:893.250000px;}
.x0_c00079{left:0.000000px;}
.x16_c00079{left:7.920150px;}
.x1_c00079{left:14.490000px;}
.x20_c00079{left:42.884250px;}
.x23_c00079{left:55.903800px;}
.x1e_c00079{left:62.378700px;}
.x24_c00079{left:63.403800px;}
.x2a_c00079{left:70.888350px;}
.x28_c00079{left:74.232300px;}
.x2b_c00079{left:78.388350px;}
.x29_c00079{left:81.732300px;}
.x26_c00079{left:91.885050px;}
.x18_c00079{left:95.052450px;}
.x1c_c00079{left:96.953850px;}
.x25_c00079{left:103.406850px;}
.x1f_c00079{left:105.727800px;}
.x2_c00079{left:113.040150px;}
.x15_c00079{left:119.610000px;}
.x27_c00079{left:126.849450px;}
.x1d_c00079{left:132.788250px;}
.x5_c00079{left:140.038800px;}
.x3_c00079{left:150.011700px;}
.x2c_c00079{left:151.675950px;}
.xe_c00079{left:153.035550px;}
.x9_c00079{left:155.599350px;}
.x8_c00079{left:159.515250px;}
.x6_c00079{left:167.040150px;}
.x17_c00079{left:171.090000px;}
.xa_c00079{left:175.067100px;}
.xc_c00079{left:178.037100px;}
.xd_c00079{left:183.040950px;}
.x1b_c00079{left:198.200850px;}
.xb_c00079{left:212.074950px;}
.x21_c00079{left:213.930750px;}
.x4_c00079{left:239.956800px;}
.x7_c00079{left:247.048800px;}
.x22_c00079{left:251.445000px;}
.x19_c00079{left:333.810000px;}
.x2d_c00079{left:387.220050px;}
.x2e_c00079{left:398.874750px;}
.x11_c00079{left:439.551600px;}
.x2f_c00079{left:480.573450px;}
.x30_c00079{left:500.567550px;}
.x1a_c00079{left:513.450000px;}
.x12_c00079{left:523.034850px;}
.xf_c00079{left:524.371950px;}
.x13_c00079{left:550.948650px;}
.x14_c00079{left:563.926350px;}
.x10_c00079{left:607.586400px;}
.x31_c00079{left:768.255000px;}
@media print{
.v2_c00079{vertical-align:-21.760000pt;}
.v0_c00079{vertical-align:0.000000pt;}
.v1_c00079{vertical-align:26.880000pt;}
.ls14_c00079{letter-spacing:-0.159616pt;}
.ls13_c00079{letter-spacing:0.000000pt;}
.ls24_c00079{letter-spacing:0.128000pt;}
.ls20_c00079{letter-spacing:0.215168pt;}
.ls1c_c00079{letter-spacing:0.236160pt;}
.lse_c00079{letter-spacing:0.243428pt;}
.ls11_c00079{letter-spacing:0.262400pt;}
.ls5_c00079{letter-spacing:0.283093pt;}
.ls16_c00079{letter-spacing:0.283392pt;}
.ls9_c00079{letter-spacing:0.283627pt;}
.ls17_c00079{letter-spacing:0.292114pt;}
.ls23_c00079{letter-spacing:0.340799pt;}
.ls25_c00079{letter-spacing:0.389485pt;}
.ls10_c00079{letter-spacing:0.389991pt;}
.ls21_c00079{letter-spacing:0.425088pt;}
.ls3_c00079{letter-spacing:0.438171pt;}
.lsa_c00079{letter-spacing:0.451328pt;}
.ls8_c00079{letter-spacing:0.472320pt;}
.lsc_c00079{letter-spacing:0.477568pt;}
.ls4_c00079{letter-spacing:0.487956pt;}
.lsb_c00079{letter-spacing:0.488064pt;}
.lsd_c00079{letter-spacing:0.492266pt;}
.ls19_c00079{letter-spacing:0.614016pt;}
.ls1b_c00079{letter-spacing:0.619264pt;}
.ls7_c00079{letter-spacing:0.632913pt;}
.lsf_c00079{letter-spacing:0.634189pt;}
.ls22_c00079{letter-spacing:0.638323pt;}
.ls1e_c00079{letter-spacing:0.681599pt;}
.ls1f_c00079{letter-spacing:0.730284pt;}
.ls1d_c00079{letter-spacing:0.881751pt;}
.ls26_c00079{letter-spacing:1.579648pt;}
.ls15_c00079{letter-spacing:2.086400pt;}
.ls18_c00079{letter-spacing:4.854400pt;}
.ls27_c00079{letter-spacing:4.901632pt;}
.ls0_c00079{letter-spacing:5.312000pt;}
.ls12_c00079{letter-spacing:5.475484pt;}
.ls6_c00079{letter-spacing:6.199941pt;}
.ls1a_c00079{letter-spacing:11.645312pt;}
.ls1_c00079{letter-spacing:14.400000pt;}
.ls2_c00079{letter-spacing:48.768000pt;}
.ws10_c00079{word-spacing:-19.491072pt;}
.ws5_c00079{word-spacing:-19.443840pt;}
.ws8_c00079{word-spacing:-15.768735pt;}
.ws7_c00079{word-spacing:-15.720049pt;}
.ws6_c00079{word-spacing:-15.671364pt;}
.wsa_c00079{word-spacing:-15.530716pt;}
.ws3_c00079{word-spacing:-15.476621pt;}
.wsd_c00079{word-spacing:-15.379250pt;}
.ws4_c00079{word-spacing:-15.330564pt;}
.ws9_c00079{word-spacing:-15.077504pt;}
.ws2_c00079{word-spacing:-15.061760pt;}
.wsb_c00079{word-spacing:-15.014528pt;}
.ws1_c00079{word-spacing:-14.589440pt;}
.ws0_c00079{word-spacing:-10.159744pt;}
.wse_c00079{word-spacing:-9.024000pt;}
.wsf_c00079{word-spacing:-4.906880pt;}
.wsc_c00079{word-spacing:-0.692418pt;}
.ws11_c00079{word-spacing:0.000000pt;}
._8_c00079{margin-left:-11.578219pt;}
._9_c00079{margin-left:-10.608064pt;}
._11_c00079{margin-left:-1.935360pt;}
._7_c00079{margin-left:-0.892160pt;}
._2_c00079{width:1.536000pt;}
._3_c00079{width:2.624000pt;}
._10_c00079{width:3.840000pt;}
._a_c00079{width:5.143040pt;}
._4_c00079{width:6.656000pt;}
._1_c00079{width:9.088000pt;}
._5_c00079{width:10.176000pt;}
._b_c00079{width:13.959680pt;}
._0_c00079{width:15.936000pt;}
._6_c00079{width:26.048000pt;}
._c_c00079{width:27.604480pt;}
._d_c00079{width:53.267200pt;}
._e_c00079{width:69.326080pt;}
._f_c00079{width:73.052160pt;}
.fs5_c00079{font-size:32.000000pt;}
.fs2_c00079{font-size:37.120000pt;}
.fs3_c00079{font-size:52.480000pt;}
.fs6_c00079{font-size:53.333333pt;}
.fs4_c00079{font-size:54.095146pt;}
.fs0_c00079{font-size:64.000000pt;}
.fs1_c00079{font-size:65.969690pt;}
.y0_c00079{bottom:0.000000pt;}
.y3_c00079{bottom:2.280000pt;}
.y33_c00079{bottom:2.773467pt;}
.y32_c00079{bottom:30.884000pt;}
.y1_c00079{bottom:48.000000pt;}
.y31_c00079{bottom:54.760000pt;}
.y2f_c00079{bottom:64.673600pt;}
.y30_c00079{bottom:64.680000pt;}
.y2e_c00079{bottom:86.120000pt;}
.y2d_c00079{bottom:96.040000pt;}
.y2c_c00079{bottom:101.480000pt;}
.y2b_c00079{bottom:125.160000pt;}
.y29_c00079{bottom:157.800000pt;}
.y2a_c00079{bottom:158.120000pt;}
.y28_c00079{bottom:173.480000pt;}
.y27_c00079{bottom:189.800000pt;}
.y26_c00079{bottom:205.480000pt;}
.y25_c00079{bottom:220.840000pt;}
.y24_c00079{bottom:236.520000pt;}
.y23_c00079{bottom:252.200000pt;}
.y22_c00079{bottom:268.200000pt;}
.y21_c00079{bottom:283.880000pt;}
.y20_c00079{bottom:299.560000pt;}
.y1f_c00079{bottom:314.920000pt;}
.y1e_c00079{bottom:330.600000pt;}
.y1d_c00079{bottom:345.960000pt;}
.y1c_c00079{bottom:361.640000pt;}
.y1b_c00079{bottom:377.320000pt;}
.y1a_c00079{bottom:407.080000pt;}
.y19_c00079{bottom:439.080000pt;}
.y18_c00079{bottom:457.640000pt;}
.y17_c00079{bottom:476.200000pt;}
.y16_c00079{bottom:508.200000pt;}
.y15_c00079{bottom:527.080000pt;}
.y14_c00079{bottom:545.640000pt;}
.y13_c00079{bottom:564.520000pt;}
.y12_c00079{bottom:583.080000pt;}
.y11_c00079{bottom:601.640000pt;}
.y10_c00079{bottom:620.520000pt;}
.yf_c00079{bottom:652.520000pt;}
.ye_c00079{bottom:684.520000pt;}
.yd_c00079{bottom:703.080000pt;}
.yc_c00079{bottom:735.080000pt;}
.yb_c00079{bottom:767.080000pt;}
.ya_c00079{bottom:799.080000pt;}
.y9_c00079{bottom:831.080000pt;}
.y8_c00079{bottom:863.080000pt;}
.y7_c00079{bottom:881.640000pt;}
.y6_c00079{bottom:913.640000pt;}
.y5_c00079{bottom:932.520000pt;}
.y4_c00079{bottom:964.520000pt;}
.y2_c00079{bottom:1011.880000pt;}
.hc_c00079{height:17.116000pt;}
.hb_c00079{height:28.992000pt;}
.ha_c00079{height:34.978125pt;}
.hd_c00079{height:41.173333pt;}
.h9_c00079{height:41.761453pt;}
.h5_c00079{height:46.250000pt;}
.h7_c00079{height:47.546880pt;}
.h8_c00079{height:49.010202pt;}
.h4_c00079{height:50.928601pt;}
.h3_c00079{height:57.984000pt;}
.h6_c00079{height:60.510720pt;}
.h2_c00079{height:1067.880000pt;}
.h0_c00079{height:1122.520000pt;}
.h1_c00079{height:1122.666667pt;}
.w7_c00079{width:14.826667pt;}
.w3_c00079{width:45.120000pt;}
.w4_c00079{width:144.000000pt;}
.w5_c00079{width:159.040000pt;}
.w6_c00079{width:230.400000pt;}
.w2_c00079{width:767.960000pt;}
.w0_c00079{width:793.720000pt;}
.w1_c00079{width:794.000000pt;}
.x0_c00079{left:0.000000pt;}
.x16_c00079{left:7.040133pt;}
.x1_c00079{left:12.880000pt;}
.x20_c00079{left:38.119333pt;}
.x23_c00079{left:49.692267pt;}
.x1e_c00079{left:55.447733pt;}
.x24_c00079{left:56.358933pt;}
.x2a_c00079{left:63.011867pt;}
.x28_c00079{left:65.984267pt;}
.x2b_c00079{left:69.678533pt;}
.x29_c00079{left:72.650933pt;}
.x26_c00079{left:81.675600pt;}
.x18_c00079{left:84.491067pt;}
.x1c_c00079{left:86.181200pt;}
.x25_c00079{left:91.917200pt;}
.x1f_c00079{left:93.980267pt;}
.x2_c00079{left:100.480133pt;}
.x15_c00079{left:106.320000pt;}
.x27_c00079{left:112.755067pt;}
.x1d_c00079{left:118.034000pt;}
.x5_c00079{left:124.478933pt;}
.x3_c00079{left:133.343733pt;}
.x2c_c00079{left:134.823067pt;}
.xe_c00079{left:136.031600pt;}
.x9_c00079{left:138.310533pt;}
.x8_c00079{left:141.791333pt;}
.x6_c00079{left:148.480133pt;}
.x17_c00079{left:152.080000pt;}
.xa_c00079{left:155.615200pt;}
.xc_c00079{left:158.255200pt;}
.xd_c00079{left:162.703067pt;}
.x1b_c00079{left:176.178533pt;}
.xb_c00079{left:188.511067pt;}
.x21_c00079{left:190.160667pt;}
.x4_c00079{left:213.294933pt;}
.x7_c00079{left:219.598933pt;}
.x22_c00079{left:223.506667pt;}
.x19_c00079{left:296.720000pt;}
.x2d_c00079{left:344.195600pt;}
.x2e_c00079{left:354.555333pt;}
.x11_c00079{left:390.712533pt;}
.x2f_c00079{left:427.176400pt;}
.x30_c00079{left:444.948933pt;}
.x1a_c00079{left:456.400000pt;}
.x12_c00079{left:464.919867pt;}
.xf_c00079{left:466.108400pt;}
.x13_c00079{left:489.732133pt;}
.x14_c00079{left:501.267867pt;}
.x10_c00079{left:540.076800pt;}
.x31_c00079{left:682.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_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_eaf5c789457f91820cb5522f.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_fe50e3f7f0b4171e8f47683a.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;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:ff3_c00080;src:url('chunks/assets/font_a994ec5cefc610b6ff0a0b39.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00080{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls6_c00080{letter-spacing:0.000000px;}
.lsc_c00080{letter-spacing:0.265680px;}
.lsa_c00080{letter-spacing:0.318816px;}
.ls1_c00080{letter-spacing:0.507744px;}
.ls2_c00080{letter-spacing:0.531360px;}
.ls3_c00080{letter-spacing:0.560880px;}
.lse_c00080{letter-spacing:0.584496px;}
.lsb_c00080{letter-spacing:0.690768px;}
.ls7_c00080{letter-spacing:0.696672px;}
.ls0_c00080{letter-spacing:0.712027px;}
.lsd_c00080{letter-spacing:0.766799px;}
.lsf_c00080{letter-spacing:0.821570px;}
.ls9_c00080{letter-spacing:0.991970px;}
.ls4_c00080{letter-spacing:5.976000px;}
.ls5_c00080{letter-spacing:6.159920px;}
.ls8_c00080{letter-spacing:9.623520px;}
.sc__c00080{text-shadow:none;}
.sc1_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00080{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc1_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00080{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00080{word-spacing:-17.739827px;}
.ws3_c00080{word-spacing:-17.685056px;}
.ws2_c00080{word-spacing:-17.630284px;}
.ws0_c00080{word-spacing:-17.109792px;}
.ws1_c00080{word-spacing:-17.103888px;}
.ws4_c00080{word-spacing:-16.997616px;}
.ws6_c00080{word-spacing:0.000000px;}
._2_c00080{margin-left:-10.095840px;}
._1_c00080{margin-left:-9.092160px;}
._0_c00080{margin-left:-1.245120px;}
._4_c00080{width:1.180800px;}
._5_c00080{width:20.433408px;}
._3_c00080{width:37.077120px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs2_c00080{font-size:59.040000px;}
.fs4_c00080{font-size:60.000000px;}
.fs3_c00080{font-size:60.857039px;}
.fs0_c00080{font-size:72.000000px;}
.fs1_c00080{font-size:74.215901px;}
.y0_c00080{bottom:0.000000px;}
.y3_c00080{bottom:2.565000px;}
.ya_c00080{bottom:3.120150px;}
.y9_c00080{bottom:34.744500px;}
.y1_c00080{bottom:54.000000px;}
.y8_c00080{bottom:1017.405000px;}
.y7_c00080{bottom:1035.045000px;}
.y6_c00080{bottom:1052.685000px;}
.y5_c00080{bottom:1069.965000px;}
.y4_c00080{bottom:1087.604850px;}
.y2_c00080{bottom:1138.365000px;}
.h7_c00080{height:19.255500px;}
.h8_c00080{height:46.320000px;}
.h6_c00080{height:46.981634px;}
.h5_c00080{height:53.490240px;}
.h4_c00080{height:57.294676px;}
.h3_c00080{height:65.232000px;}
.h2_c00080{height:1201.365000px;}
.h0_c00080{height:1262.835000px;}
.h1_c00080{height:1263.000000px;}
.w4_c00080{width:16.680000px;}
.w3_c00080{width:259.200000px;}
.w2_c00080{width:863.955000px;}
.w0_c00080{width:892.935000px;}
.w1_c00080{width:893.250000px;}
.x0_c00080{left:0.000000px;}
.x6_c00080{left:7.919850px;}
.x1_c00080{left:14.490000px;}
.xc_c00080{left:49.618200px;}
.xa_c00080{left:51.268950px;}
.x9_c00080{left:77.204400px;}
.xd_c00080{left:87.132300px;}
.x2_c00080{left:113.040150px;}
.x3_c00080{left:150.011700px;}
.x7_c00080{left:203.282100px;}
.xb_c00080{left:216.480750px;}
.x4_c00080{left:239.956800px;}
.x8_c00080{left:246.465300px;}
.x5_c00080{left:513.450000px;}
.xe_c00080{left:768.255000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls6_c00080{letter-spacing:0.000000pt;}
.lsc_c00080{letter-spacing:0.236160pt;}
.lsa_c00080{letter-spacing:0.283392pt;}
.ls1_c00080{letter-spacing:0.451328pt;}
.ls2_c00080{letter-spacing:0.472320pt;}
.ls3_c00080{letter-spacing:0.498560pt;}
.lse_c00080{letter-spacing:0.519552pt;}
.lsb_c00080{letter-spacing:0.614016pt;}
.ls7_c00080{letter-spacing:0.619264pt;}
.ls0_c00080{letter-spacing:0.632913pt;}
.lsd_c00080{letter-spacing:0.681599pt;}
.lsf_c00080{letter-spacing:0.730284pt;}
.ls9_c00080{letter-spacing:0.881751pt;}
.ls4_c00080{letter-spacing:5.312000pt;}
.ls5_c00080{letter-spacing:5.475484pt;}
.ls8_c00080{letter-spacing:8.554240pt;}
.ws5_c00080{word-spacing:-15.768735pt;}
.ws3_c00080{word-spacing:-15.720049pt;}
.ws2_c00080{word-spacing:-15.671364pt;}
.ws0_c00080{word-spacing:-15.208704pt;}
.ws1_c00080{word-spacing:-15.203456pt;}
.ws4_c00080{word-spacing:-15.108992pt;}
.ws6_c00080{word-spacing:0.000000pt;}
._2_c00080{margin-left:-8.974080pt;}
._1_c00080{margin-left:-8.081920pt;}
._0_c00080{margin-left:-1.106773pt;}
._4_c00080{width:1.049600pt;}
._5_c00080{width:18.163029pt;}
._3_c00080{width:32.957440pt;}
.fs2_c00080{font-size:52.480000pt;}
.fs4_c00080{font-size:53.333333pt;}
.fs3_c00080{font-size:54.095146pt;}
.fs0_c00080{font-size:64.000000pt;}
.fs1_c00080{font-size:65.969690pt;}
.y0_c00080{bottom:0.000000pt;}
.y3_c00080{bottom:2.280000pt;}
.ya_c00080{bottom:2.773467pt;}
.y9_c00080{bottom:30.884000pt;}
.y1_c00080{bottom:48.000000pt;}
.y8_c00080{bottom:904.360000pt;}
.y7_c00080{bottom:920.040000pt;}
.y6_c00080{bottom:935.720000pt;}
.y5_c00080{bottom:951.080000pt;}
.y4_c00080{bottom:966.759867pt;}
.y2_c00080{bottom:1011.880000pt;}
.h7_c00080{height:17.116000pt;}
.h8_c00080{height:41.173333pt;}
.h6_c00080{height:41.761453pt;}
.h5_c00080{height:47.546880pt;}
.h4_c00080{height:50.928601pt;}
.h3_c00080{height:57.984000pt;}
.h2_c00080{height:1067.880000pt;}
.h0_c00080{height:1122.520000pt;}
.h1_c00080{height:1122.666667pt;}
.w4_c00080{width:14.826667pt;}
.w3_c00080{width:230.400000pt;}
.w2_c00080{width:767.960000pt;}
.w0_c00080{width:793.720000pt;}
.w1_c00080{width:794.000000pt;}
.x0_c00080{left:0.000000pt;}
.x6_c00080{left:7.039867pt;}
.x1_c00080{left:12.880000pt;}
.xc_c00080{left:44.105067pt;}
.xa_c00080{left:45.572400pt;}
.x9_c00080{left:68.626133pt;}
.xd_c00080{left:77.450933pt;}
.x2_c00080{left:100.480133pt;}
.x3_c00080{left:133.343733pt;}
.x7_c00080{left:180.695200pt;}
.xb_c00080{left:192.427333pt;}
.x4_c00080{left:213.294933pt;}
.x8_c00080{left:219.080267pt;}
.x5_c00080{left:456.400000pt;}
.xe_c00080{left:682.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_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_5182c14649cf50f036edc94f.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.134000;font-style:normal;font-weight:normal;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_13beebf83c94c04659168f63.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;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:ff3_c00081;src:url('chunks/assets/font_4f84d91a77653250b9197df2.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00081;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00081;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00081;src:url('chunks/assets/font_0435058f82ab8191d032b0a4.woff2')format("woff");}.ff6_c00081{font-family:ff6_c00081;line-height:0.787000;font-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_c00081{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls17_c00081{letter-spacing:0.000000px;}
.ls18_c00081{letter-spacing:0.242064px;}
.ls3_c00081{letter-spacing:0.265680px;}
.ls12_c00081{letter-spacing:0.273238px;}
.ls22_c00081{letter-spacing:0.273857px;}
.lsc_c00081{letter-spacing:0.318480px;}
.ls1a_c00081{letter-spacing:0.318816px;}
.lsd_c00081{letter-spacing:0.319080px;}
.lsb_c00081{letter-spacing:0.324720px;}
.ls2_c00081{letter-spacing:0.328628px;}
.ls2f_c00081{letter-spacing:0.438171px;}
.ls0_c00081{letter-spacing:0.492942px;}
.ls5_c00081{letter-spacing:0.531360px;}
.lsf_c00081{letter-spacing:0.543168px;}
.ls28_c00081{letter-spacing:0.547713px;}
.ls1_c00081{letter-spacing:0.548950px;}
.ls9_c00081{letter-spacing:0.549072px;}
.ls8_c00081{letter-spacing:0.560880px;}
.ls2a_c00081{letter-spacing:0.584496px;}
.lsa_c00081{letter-spacing:0.602485px;}
.ls1b_c00081{letter-spacing:0.690768px;}
.ls1d_c00081{letter-spacing:0.696672px;}
.ls4_c00081{letter-spacing:0.712027px;}
.ls11_c00081{letter-spacing:0.713462px;}
.ls13_c00081{letter-spacing:0.716060px;}
.ls2e_c00081{letter-spacing:0.718113px;}
.ls1f_c00081{letter-spacing:0.766799px;}
.ls20_c00081{letter-spacing:0.821570px;}
.ls21_c00081{letter-spacing:0.962352px;}
.ls6_c00081{letter-spacing:0.991970px;}
.ls2b_c00081{letter-spacing:1.290169px;}
.ls14_c00081{letter-spacing:1.994280px;}
.ls27_c00081{letter-spacing:1.995552px;}
.ls29_c00081{letter-spacing:2.857536px;}
.ls25_c00081{letter-spacing:3.418416px;}
.ls23_c00081{letter-spacing:5.301792px;}
.ls7_c00081{letter-spacing:5.458800px;}
.ls19_c00081{letter-spacing:5.461200px;}
.ls2c_c00081{letter-spacing:5.514336px;}
.ls15_c00081{letter-spacing:5.976000px;}
.ls16_c00081{letter-spacing:6.159920px;}
.ls1e_c00081{letter-spacing:8.950464px;}
.ls24_c00081{letter-spacing:9.895104px;}
.ls1c_c00081{letter-spacing:13.100976px;}
.lse_c00081{letter-spacing:14.386680px;}
.ls26_c00081{letter-spacing:17.918640px;}
.ls10_c00081{letter-spacing:41.778481px;}
.ls2d_c00081{letter-spacing:64.831004px;}
.sc__c00081{text-shadow:none;}
.sc1_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00081{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc1_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00081{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws10_c00081{word-spacing:-21.927456px;}
.ws3_c00081{word-spacing:-21.874320px;}
.wsb_c00081{word-spacing:-21.714912px;}
.ws6_c00081{word-spacing:-17.910227px;}
.ws9_c00081{word-spacing:-17.739827px;}
.ws8_c00081{word-spacing:-17.685056px;}
.ws12_c00081{word-spacing:-17.636370px;}
.ws2_c00081{word-spacing:-17.630284px;}
.wse_c00081{word-spacing:-17.520742px;}
.wsf_c00081{word-spacing:-17.465970px;}
.ws0_c00081{word-spacing:-17.411199px;}
.wsa_c00081{word-spacing:-17.375472px;}
.ws1_c00081{word-spacing:-17.246885px;}
.ws7_c00081{word-spacing:-17.103888px;}
.ws11_c00081{word-spacing:-16.997616px;}
.wsc_c00081{word-spacing:-16.962192px;}
.ws5_c00081{word-spacing:-16.944480px;}
.ws4_c00081{word-spacing:-16.731936px;}
.wsd_c00081{word-spacing:-16.413120px;}
.ws13_c00081{word-spacing:0.000000px;}
._17_c00081{margin-left:-64.021605px;}
._e_c00081{margin-left:-18.538560px;}
._d_c00081{margin-left:-17.416800px;}
._4_c00081{margin-left:-12.849816px;}
._5_c00081{margin-left:-11.779944px;}
._8_c00081{margin-left:-8.619840px;}
._c_c00081{margin-left:-2.892960px;}
._2_c00081{margin-left:-1.003680px;}
._0_c00081{width:1.034570px;}
._9_c00081{width:2.980150px;}
._6_c00081{width:4.782240px;}
._14_c00081{width:7.025760px;}
._7_c00081{width:8.147520px;}
._b_c00081{width:9.210240px;}
._3_c00081{width:11.630880px;}
._12_c00081{width:12.988800px;}
._13_c00081{width:14.700960px;}
._1a_c00081{width:18.538560px;}
._10_c00081{width:24.324480px;}
._11_c00081{width:25.885944px;}
._a_c00081{width:28.516320px;}
._15_c00081{width:29.815200px;}
._f_c00081{width:31.999680px;}
._18_c00081{width:36.427680px;}
._19_c00081{width:38.021760px;}
._16_c00081{width:62.051040px;}
._1_c00081{width:82.157003px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs2_c00081{font-size:59.040000px;}
.fs4_c00081{font-size:60.000000px;}
.fs3_c00081{font-size:60.857039px;}
.fs0_c00081{font-size:72.000000px;}
.fs1_c00081{font-size:74.215901px;}
.y0_c00081{bottom:0.000000px;}
.y3_c00081{bottom:2.565000px;}
.y43_c00081{bottom:3.120150px;}
.y42_c00081{bottom:34.744500px;}
.y1_c00081{bottom:54.000000px;}
.y41_c00081{bottom:188.685000px;}
.y40_c00081{bottom:205.965000px;}
.y3f_c00081{bottom:223.605000px;}
.y3e_c00081{bottom:240.885000px;}
.y3d_c00081{bottom:258.525000px;}
.y3b_c00081{bottom:275.805000px;}
.y3c_c00081{bottom:276.165000px;}
.y3a_c00081{bottom:293.445000px;}
.y39_c00081{bottom:311.085000px;}
.y38_c00081{bottom:329.445000px;}
.y35_c00081{bottom:346.005000px;}
.y37_c00081{bottom:346.725000px;}
.y34_c00081{bottom:364.005000px;}
.y36_c00081{bottom:364.365000px;}
.y33_c00081{bottom:381.645000px;}
.y32_c00081{bottom:400.005000px;}
.y31_c00081{bottom:417.645000px;}
.y30_c00081{bottom:434.925000px;}
.y2f_c00081{bottom:452.565000px;}
.y2d_c00081{bottom:469.845000px;}
.y2e_c00081{bottom:470.205000px;}
.y2c_c00081{bottom:487.485000px;}
.y2b_c00081{bottom:505.125000px;}
.y2a_c00081{bottom:523.485000px;}
.y28_c00081{bottom:540.765000px;}
.y27_c00081{bottom:558.405000px;}
.y29_c00081{bottom:575.685000px;}
.y26_c00081{bottom:576.045000px;}
.y25_c00081{bottom:593.325000px;}
.y24_c00081{bottom:611.685000px;}
.y23_c00081{bottom:629.325000px;}
.y22_c00081{bottom:646.605000px;}
.y20_c00081{bottom:663.885000px;}
.y21_c00081{bottom:664.245000px;}
.y1f_c00081{bottom:681.525000px;}
.y1e_c00081{bottom:699.885000px;}
.y1d_c00081{bottom:717.525000px;}
.y1c_c00081{bottom:734.805000px;}
.y1b_c00081{bottom:752.445000px;}
.y19_c00081{bottom:769.725000px;}
.y1a_c00081{bottom:770.085000px;}
.y18_c00081{bottom:787.365000px;}
.y17_c00081{bottom:805.005000px;}
.y16_c00081{bottom:822.285000px;}
.y15_c00081{bottom:840.645000px;}
.y14_c00081{bottom:858.285000px;}
.y13_c00081{bottom:875.565000px;}
.y10_c00081{bottom:892.845000px;}
.y12_c00081{bottom:893.205000px;}
.yf_c00081{bottom:910.485000px;}
.y11_c00081{bottom:910.845000px;}
.ye_c00081{bottom:928.125000px;}
.yd_c00081{bottom:946.485000px;}
.yc_c00081{bottom:964.125000px;}
.y9_c00081{bottom:981.405000px;}
.y8_c00081{bottom:998.685000px;}
.yb_c00081{bottom:999.045000px;}
.y7_c00081{bottom:1016.325000px;}
.ya_c00081{bottom:1016.685000px;}
.y6_c00081{bottom:1033.965000px;}
.y5_c00081{bottom:1051.604850px;}
.y4_c00081{bottom:1085.085000px;}
.y2_c00081{bottom:1138.365000px;}
.h9_c00081{height:19.255500px;}
.h8_c00081{height:39.350391px;}
.ha_c00081{height:46.320000px;}
.h7_c00081{height:46.981634px;}
.h5_c00081{height:53.490240px;}
.h6_c00081{height:55.136477px;}
.h4_c00081{height:57.294676px;}
.h3_c00081{height:65.232000px;}
.h2_c00081{height:1201.365000px;}
.h0_c00081{height:1262.835000px;}
.h1_c00081{height:1263.000000px;}
.w7_c00081{width:16.680000px;}
.w3_c00081{width:50.760000px;}
.w4_c00081{width:162.000000px;}
.w5_c00081{width:178.920000px;}
.w6_c00081{width:259.200000px;}
.w2_c00081{width:863.955000px;}
.w0_c00081{width:892.935000px;}
.w1_c00081{width:893.250000px;}
.x0_c00081{left:0.000000px;}
.x6_c00081{left:7.920150px;}
.x11_c00081{left:12.914550px;}
.x1_c00081{left:14.490000px;}
.x23_c00081{left:16.664550px;}
.x40_c00081{left:27.073800px;}
.x12_c00081{left:31.244550px;}
.x4a_c00081{left:38.729250px;}
.x28_c00081{left:41.278350px;}
.x14_c00081{left:42.884250px;}
.x3c_c00081{left:45.649500px;}
.xe_c00081{left:47.893200px;}
.x3d_c00081{left:49.399500px;}
.x20_c00081{left:51.074550px;}
.xf_c00081{left:55.393200px;}
.x13_c00081{left:59.655600px;}
.x21_c00081{left:61.755750px;}
.x30_c00081{left:62.923200px;}
.x41_c00081{left:65.411700px;}
.x24_c00081{left:67.467150px;}
.x47_c00081{left:68.820000px;}
.x34_c00081{left:70.220400px;}
.x2d_c00081{left:71.248350px;}
.x2b_c00081{left:72.839250px;}
.x2e_c00081{left:74.998350px;}
.xa_c00081{left:76.243050px;}
.x44_c00081{left:77.293800px;}
.x3b_c00081{left:78.748350px;}
.xb_c00081{left:79.993050px;}
.x1f_c00081{left:81.297600px;}
.x49_c00081{left:86.666250px;}
.x10_c00081{left:87.867000px;}
.x39_c00081{left:91.894650px;}
.x8_c00081{left:95.052450px;}
.x3e_c00081{left:96.119550px;}
.x1a_c00081{left:99.277800px;}
.x22_c00081{left:101.580150px;}
.x42_c00081{left:105.952800px;}
.x4b_c00081{left:107.401500px;}
.x2_c00081{left:113.040150px;}
.x35_c00081{left:114.488700px;}
.x1b_c00081{left:118.551900px;}
.x5_c00081{left:119.610000px;}
.x29_c00081{left:122.110650px;}
.x3a_c00081{left:126.858900px;}
.xc_c00081{left:130.795650px;}
.x45_c00081{left:132.880950px;}
.xd_c00081{left:134.965350px;}
.x43_c00081{left:140.917050px;}
.x31_c00081{left:142.061550px;}
.x38_c00081{left:143.193750px;}
.x27_c00081{left:144.980850px;}
.x2f_c00081{left:147.520200px;}
.x3f_c00081{left:148.674900px;}
.x3_c00081{left:150.011700px;}
.x48_c00081{left:155.455200px;}
.x2a_c00081{left:159.624900px;}
.x1c_c00081{left:164.959200px;}
.x2c_c00081{left:167.669850px;}
.x7_c00081{left:171.090000px;}
.x32_c00081{left:183.500100px;}
.x36_c00081{left:191.338050px;}
.x16_c00081{left:193.378650px;}
.x25_c00081{left:198.143700px;}
.x46_c00081{left:202.090800px;}
.x18_c00081{left:203.926200px;}
.x1d_c00081{left:213.930750px;}
.x33_c00081{left:215.164500px;}
.x4c_c00081{left:216.480750px;}
.x37_c00081{left:227.172600px;}
.x17_c00081{left:229.213050px;}
.x26_c00081{left:233.978250px;}
.x4_c00081{left:239.956800px;}
.x19_c00081{left:247.275300px;}
.x1e_c00081{left:251.445000px;}
.x9_c00081{left:333.810000px;}
.x15_c00081{left:513.450000px;}
.x4d_c00081{left:768.255000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls17_c00081{letter-spacing:0.000000pt;}
.ls18_c00081{letter-spacing:0.215168pt;}
.ls3_c00081{letter-spacing:0.236160pt;}
.ls12_c00081{letter-spacing:0.242878pt;}
.ls22_c00081{letter-spacing:0.243428pt;}
.lsc_c00081{letter-spacing:0.283093pt;}
.ls1a_c00081{letter-spacing:0.283392pt;}
.lsd_c00081{letter-spacing:0.283627pt;}
.lsb_c00081{letter-spacing:0.288640pt;}
.ls2_c00081{letter-spacing:0.292114pt;}
.ls2f_c00081{letter-spacing:0.389485pt;}
.ls0_c00081{letter-spacing:0.438171pt;}
.ls5_c00081{letter-spacing:0.472320pt;}
.lsf_c00081{letter-spacing:0.482816pt;}
.ls28_c00081{letter-spacing:0.486856pt;}
.ls1_c00081{letter-spacing:0.487956pt;}
.ls9_c00081{letter-spacing:0.488064pt;}
.ls8_c00081{letter-spacing:0.498560pt;}
.ls2a_c00081{letter-spacing:0.519552pt;}
.lsa_c00081{letter-spacing:0.535542pt;}
.ls1b_c00081{letter-spacing:0.614016pt;}
.ls1d_c00081{letter-spacing:0.619264pt;}
.ls4_c00081{letter-spacing:0.632913pt;}
.ls11_c00081{letter-spacing:0.634189pt;}
.ls13_c00081{letter-spacing:0.636498pt;}
.ls2e_c00081{letter-spacing:0.638323pt;}
.ls1f_c00081{letter-spacing:0.681599pt;}
.ls20_c00081{letter-spacing:0.730284pt;}
.ls21_c00081{letter-spacing:0.855424pt;}
.ls6_c00081{letter-spacing:0.881751pt;}
.ls2b_c00081{letter-spacing:1.146817pt;}
.ls14_c00081{letter-spacing:1.772693pt;}
.ls27_c00081{letter-spacing:1.773824pt;}
.ls29_c00081{letter-spacing:2.540032pt;}
.ls25_c00081{letter-spacing:3.038592pt;}
.ls23_c00081{letter-spacing:4.712704pt;}
.ls7_c00081{letter-spacing:4.852267pt;}
.ls19_c00081{letter-spacing:4.854400pt;}
.ls2c_c00081{letter-spacing:4.901632pt;}
.ls15_c00081{letter-spacing:5.312000pt;}
.ls16_c00081{letter-spacing:5.475484pt;}
.ls1e_c00081{letter-spacing:7.955968pt;}
.ls24_c00081{letter-spacing:8.795648pt;}
.ls1c_c00081{letter-spacing:11.645312pt;}
.lse_c00081{letter-spacing:12.788160pt;}
.ls26_c00081{letter-spacing:15.927680pt;}
.ls10_c00081{letter-spacing:37.136428pt;}
.ls2d_c00081{letter-spacing:57.627559pt;}
.ws10_c00081{word-spacing:-19.491072pt;}
.ws3_c00081{word-spacing:-19.443840pt;}
.wsb_c00081{word-spacing:-19.302144pt;}
.ws6_c00081{word-spacing:-15.920201pt;}
.ws9_c00081{word-spacing:-15.768735pt;}
.ws8_c00081{word-spacing:-15.720049pt;}
.ws12_c00081{word-spacing:-15.676773pt;}
.ws2_c00081{word-spacing:-15.671364pt;}
.wse_c00081{word-spacing:-15.573992pt;}
.wsf_c00081{word-spacing:-15.525307pt;}
.ws0_c00081{word-spacing:-15.476621pt;}
.wsa_c00081{word-spacing:-15.444864pt;}
.ws1_c00081{word-spacing:-15.330564pt;}
.ws7_c00081{word-spacing:-15.203456pt;}
.ws11_c00081{word-spacing:-15.108992pt;}
.wsc_c00081{word-spacing:-15.077504pt;}
.ws5_c00081{word-spacing:-15.061760pt;}
.ws4_c00081{word-spacing:-14.872832pt;}
.wsd_c00081{word-spacing:-14.589440pt;}
.ws13_c00081{word-spacing:0.000000pt;}
._17_c00081{margin-left:-56.908093pt;}
._e_c00081{margin-left:-16.478720pt;}
._d_c00081{margin-left:-15.481600pt;}
._4_c00081{margin-left:-11.422059pt;}
._5_c00081{margin-left:-10.471061pt;}
._8_c00081{margin-left:-7.662080pt;}
._c_c00081{margin-left:-2.571520pt;}
._2_c00081{margin-left:-0.892160pt;}
._0_c00081{width:0.919617pt;}
._9_c00081{width:2.649023pt;}
._6_c00081{width:4.250880pt;}
._14_c00081{width:6.245120pt;}
._7_c00081{width:7.242240pt;}
._b_c00081{width:8.186880pt;}
._3_c00081{width:10.338560pt;}
._12_c00081{width:11.545600pt;}
._13_c00081{width:13.067520pt;}
._1a_c00081{width:16.478720pt;}
._10_c00081{width:21.621760pt;}
._11_c00081{width:23.009728pt;}
._a_c00081{width:25.347840pt;}
._15_c00081{width:26.502400pt;}
._f_c00081{width:28.444160pt;}
._18_c00081{width:32.380160pt;}
._19_c00081{width:33.797120pt;}
._16_c00081{width:55.156480pt;}
._1_c00081{width:73.028447pt;}
.fs2_c00081{font-size:52.480000pt;}
.fs4_c00081{font-size:53.333333pt;}
.fs3_c00081{font-size:54.095146pt;}
.fs0_c00081{font-size:64.000000pt;}
.fs1_c00081{font-size:65.969690pt;}
.y0_c00081{bottom:0.000000pt;}
.y3_c00081{bottom:2.280000pt;}
.y43_c00081{bottom:2.773467pt;}
.y42_c00081{bottom:30.884000pt;}
.y1_c00081{bottom:48.000000pt;}
.y41_c00081{bottom:167.720000pt;}
.y40_c00081{bottom:183.080000pt;}
.y3f_c00081{bottom:198.760000pt;}
.y3e_c00081{bottom:214.120000pt;}
.y3d_c00081{bottom:229.800000pt;}
.y3b_c00081{bottom:245.160000pt;}
.y3c_c00081{bottom:245.480000pt;}
.y3a_c00081{bottom:260.840000pt;}
.y39_c00081{bottom:276.520000pt;}
.y38_c00081{bottom:292.840000pt;}
.y35_c00081{bottom:307.560000pt;}
.y37_c00081{bottom:308.200000pt;}
.y34_c00081{bottom:323.560000pt;}
.y36_c00081{bottom:323.880000pt;}
.y33_c00081{bottom:339.240000pt;}
.y32_c00081{bottom:355.560000pt;}
.y31_c00081{bottom:371.240000pt;}
.y30_c00081{bottom:386.600000pt;}
.y2f_c00081{bottom:402.280000pt;}
.y2d_c00081{bottom:417.640000pt;}
.y2e_c00081{bottom:417.960000pt;}
.y2c_c00081{bottom:433.320000pt;}
.y2b_c00081{bottom:449.000000pt;}
.y2a_c00081{bottom:465.320000pt;}
.y28_c00081{bottom:480.680000pt;}
.y27_c00081{bottom:496.360000pt;}
.y29_c00081{bottom:511.720000pt;}
.y26_c00081{bottom:512.040000pt;}
.y25_c00081{bottom:527.400000pt;}
.y24_c00081{bottom:543.720000pt;}
.y23_c00081{bottom:559.400000pt;}
.y22_c00081{bottom:574.760000pt;}
.y20_c00081{bottom:590.120000pt;}
.y21_c00081{bottom:590.440000pt;}
.y1f_c00081{bottom:605.800000pt;}
.y1e_c00081{bottom:622.120000pt;}
.y1d_c00081{bottom:637.800000pt;}
.y1c_c00081{bottom:653.160000pt;}
.y1b_c00081{bottom:668.840000pt;}
.y19_c00081{bottom:684.200000pt;}
.y1a_c00081{bottom:684.520000pt;}
.y18_c00081{bottom:699.880000pt;}
.y17_c00081{bottom:715.560000pt;}
.y16_c00081{bottom:730.920000pt;}
.y15_c00081{bottom:747.240000pt;}
.y14_c00081{bottom:762.920000pt;}
.y13_c00081{bottom:778.280000pt;}
.y10_c00081{bottom:793.640000pt;}
.y12_c00081{bottom:793.960000pt;}
.yf_c00081{bottom:809.320000pt;}
.y11_c00081{bottom:809.640000pt;}
.ye_c00081{bottom:825.000000pt;}
.yd_c00081{bottom:841.320000pt;}
.yc_c00081{bottom:857.000000pt;}
.y9_c00081{bottom:872.360000pt;}
.y8_c00081{bottom:887.720000pt;}
.yb_c00081{bottom:888.040000pt;}
.y7_c00081{bottom:903.400000pt;}
.ya_c00081{bottom:903.720000pt;}
.y6_c00081{bottom:919.080000pt;}
.y5_c00081{bottom:934.759867pt;}
.y4_c00081{bottom:964.520000pt;}
.y2_c00081{bottom:1011.880000pt;}
.h9_c00081{height:17.116000pt;}
.h8_c00081{height:34.978125pt;}
.ha_c00081{height:41.173333pt;}
.h7_c00081{height:41.761453pt;}
.h5_c00081{height:47.546880pt;}
.h6_c00081{height:49.010202pt;}
.h4_c00081{height:50.928601pt;}
.h3_c00081{height:57.984000pt;}
.h2_c00081{height:1067.880000pt;}
.h0_c00081{height:1122.520000pt;}
.h1_c00081{height:1122.666667pt;}
.w7_c00081{width:14.826667pt;}
.w3_c00081{width:45.120000pt;}
.w4_c00081{width:144.000000pt;}
.w5_c00081{width:159.040000pt;}
.w6_c00081{width:230.400000pt;}
.w2_c00081{width:767.960000pt;}
.w0_c00081{width:793.720000pt;}
.w1_c00081{width:794.000000pt;}
.x0_c00081{left:0.000000pt;}
.x6_c00081{left:7.040133pt;}
.x11_c00081{left:11.479600pt;}
.x1_c00081{left:12.880000pt;}
.x23_c00081{left:14.812933pt;}
.x40_c00081{left:24.065600pt;}
.x12_c00081{left:27.772933pt;}
.x4a_c00081{left:34.426000pt;}
.x28_c00081{left:36.691867pt;}
.x14_c00081{left:38.119333pt;}
.x3c_c00081{left:40.577333pt;}
.xe_c00081{left:42.571733pt;}
.x3d_c00081{left:43.910667pt;}
.x20_c00081{left:45.399600pt;}
.xf_c00081{left:49.238400pt;}
.x13_c00081{left:53.027200pt;}
.x21_c00081{left:54.894000pt;}
.x30_c00081{left:55.931733pt;}
.x41_c00081{left:58.143733pt;}
.x24_c00081{left:59.970800pt;}
.x47_c00081{left:61.173333pt;}
.x34_c00081{left:62.418133pt;}
.x2d_c00081{left:63.331867pt;}
.x2b_c00081{left:64.746000pt;}
.x2e_c00081{left:66.665200pt;}
.xa_c00081{left:67.771600pt;}
.x44_c00081{left:68.705600pt;}
.x3b_c00081{left:69.998533pt;}
.xb_c00081{left:71.104933pt;}
.x1f_c00081{left:72.264533pt;}
.x49_c00081{left:77.036667pt;}
.x10_c00081{left:78.104000pt;}
.x39_c00081{left:81.684133pt;}
.x8_c00081{left:84.491067pt;}
.x3e_c00081{left:85.439600pt;}
.x1a_c00081{left:88.246933pt;}
.x22_c00081{left:90.293467pt;}
.x42_c00081{left:94.180267pt;}
.x4b_c00081{left:95.468000pt;}
.x2_c00081{left:100.480133pt;}
.x35_c00081{left:101.767733pt;}
.x1b_c00081{left:105.379467pt;}
.x5_c00081{left:106.320000pt;}
.x29_c00081{left:108.542800pt;}
.x3a_c00081{left:112.763467pt;}
.xc_c00081{left:116.262800pt;}
.x45_c00081{left:118.116400pt;}
.xd_c00081{left:119.969200pt;}
.x43_c00081{left:125.259600pt;}
.x31_c00081{left:126.276933pt;}
.x38_c00081{left:127.283333pt;}
.x27_c00081{left:128.871867pt;}
.x2f_c00081{left:131.129067pt;}
.x3f_c00081{left:132.155467pt;}
.x3_c00081{left:133.343733pt;}
.x48_c00081{left:138.182400pt;}
.x2a_c00081{left:141.888800pt;}
.x1c_c00081{left:146.630400pt;}
.x2c_c00081{left:149.039867pt;}
.x7_c00081{left:152.080000pt;}
.x32_c00081{left:163.111200pt;}
.x36_c00081{left:170.078267pt;}
.x16_c00081{left:171.892133pt;}
.x25_c00081{left:176.127733pt;}
.x46_c00081{left:179.636267pt;}
.x18_c00081{left:181.267733pt;}
.x1d_c00081{left:190.160667pt;}
.x33_c00081{left:191.257333pt;}
.x4c_c00081{left:192.427333pt;}
.x37_c00081{left:201.931200pt;}
.x17_c00081{left:203.744933pt;}
.x26_c00081{left:207.980667pt;}
.x4_c00081{left:213.294933pt;}
.x19_c00081{left:219.800267pt;}
.x1e_c00081{left:223.506667pt;}
.x9_c00081{left:296.720000pt;}
.x15_c00081{left:456.400000pt;}
.x4d_c00081{left:682.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_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_018a87c975cd56cf30ea3dcb.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.134000;font-style:normal;font-weight:normal;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_3f70a37efc094c038fbb8c57.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;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:ff3_c00082;src:url('chunks/assets/font_a25b3dd26e6809000d6aeec7.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff4_c00082{font-family:ff4_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;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_402e086272315e61441abee6.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00082{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00082{vertical-align:-24.480000px;}
.v0_c00082{vertical-align:0.000000px;}
.v1_c00082{vertical-align:24.480000px;}
.v2_c00082{vertical-align:30.240000px;}
.ls28_c00082{letter-spacing:-0.179568px;}
.ls14_c00082{letter-spacing:0.000000px;}
.ls29_c00082{letter-spacing:0.144000px;}
.ls1f_c00082{letter-spacing:0.242064px;}
.lsc_c00082{letter-spacing:0.265680px;}
.lsd_c00082{letter-spacing:0.277488px;}
.lsa_c00082{letter-spacing:0.295200px;}
.ls7_c00082{letter-spacing:0.318480px;}
.ls1a_c00082{letter-spacing:0.318816px;}
.lsb_c00082{letter-spacing:0.330624px;}
.ls2_c00082{letter-spacing:0.370680px;}
.ls8_c00082{letter-spacing:0.371952px;}
.ls2b_c00082{letter-spacing:0.425088px;}
.ls24_c00082{letter-spacing:0.478224px;}
.ls17_c00082{letter-spacing:0.492942px;}
.ls3_c00082{letter-spacing:0.531360px;}
.ls20_c00082{letter-spacing:0.547713px;}
.ls9_c00082{letter-spacing:0.549072px;}
.ls1d_c00082{letter-spacing:0.584496px;}
.ls19_c00082{letter-spacing:0.690768px;}
.ls1b_c00082{letter-spacing:0.696672px;}
.ls6_c00082{letter-spacing:0.712027px;}
.ls23_c00082{letter-spacing:0.743904px;}
.ls1c_c00082{letter-spacing:0.766799px;}
.ls1e_c00082{letter-spacing:0.821570px;}
.ls25_c00082{letter-spacing:0.962352px;}
.ls4_c00082{letter-spacing:0.991970px;}
.ls2a_c00082{letter-spacing:2.355696px;}
.ls16_c00082{letter-spacing:3.024000px;}
.ls0_c00082{letter-spacing:5.352840px;}
.ls11_c00082{letter-spacing:5.410080px;}
.ls27_c00082{letter-spacing:5.430672px;}
.ls18_c00082{letter-spacing:5.461200px;}
.ls15_c00082{letter-spacing:5.514336px;}
.ls1_c00082{letter-spacing:5.903640px;}
.ls10_c00082{letter-spacing:5.975400px;}
.ls12_c00082{letter-spacing:5.976000px;}
.ls13_c00082{letter-spacing:6.159920px;}
.lse_c00082{letter-spacing:6.553440px;}
.ls26_c00082{letter-spacing:6.571152px;}
.ls22_c00082{letter-spacing:7.952688px;}
.lsf_c00082{letter-spacing:11.926080px;}
.ls5_c00082{letter-spacing:14.388048px;}
.ls21_c00082{letter-spacing:19.230824px;}
.sc__c00082{text-shadow:none;}
.sc1_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00082{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc1_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00082{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00082{word-spacing:-21.927456px;}
.ws3_c00082{word-spacing:-21.874320px;}
.wsc_c00082{word-spacing:-21.043152px;}
.wsd_c00082{word-spacing:-20.016000px;}
.ws5_c00082{word-spacing:-17.910227px;}
.ws9_c00082{word-spacing:-17.739827px;}
.ws8_c00082{word-spacing:-17.685056px;}
.ws7_c00082{word-spacing:-17.630284px;}
.ws2_c00082{word-spacing:-17.411199px;}
.ws6_c00082{word-spacing:-17.103888px;}
.wsa_c00082{word-spacing:-16.962192px;}
.ws4_c00082{word-spacing:-16.944480px;}
.wsb_c00082{word-spacing:-16.678800px;}
.ws1_c00082{word-spacing:-13.032000px;}
.wse_c00082{word-spacing:-11.429712px;}
.wsf_c00082{word-spacing:-10.152000px;}
.ws10_c00082{word-spacing:0.000000px;}
._8_c00082{margin-left:-18.439683px;}
._2_c00082{margin-left:-14.051520px;}
._a_c00082{margin-left:-7.616160px;}
._b_c00082{margin-left:-6.376320px;}
._10_c00082{margin-left:-5.248656px;}
._16_c00082{margin-left:-2.885760px;}
._0_c00082{margin-left:-1.003680px;}
._4_c00082{width:1.180800px;}
._d_c00082{width:2.420640px;}
._6_c00082{width:3.955680px;}
._f_c00082{width:5.785920px;}
._9_c00082{width:6.966720px;}
._c_c00082{width:8.088480px;}
._11_c00082{width:9.092160px;}
._12_c00082{width:10.213920px;}
._13_c00082{width:11.264832px;}
._e_c00082{width:12.398400px;}
._1_c00082{width:13.402080px;}
._15_c00082{width:14.461920px;}
._7_c00082{width:18.249264px;}
._14_c00082{width:21.168000px;}
._3_c00082{width:36.427680px;}
._5_c00082{width:38.021760px;}
.fc0_c00082{color:rgb(0,0,0);}
.fs3_c00082{font-size:36.000000px;}
.fs6_c00082{font-size:41.760000px;}
.fs5_c00082{font-size:56.160000px;}
.fs2_c00082{font-size:59.040000px;}
.fs7_c00082{font-size:60.000000px;}
.fs4_c00082{font-size:60.857039px;}
.fs0_c00082{font-size:72.000000px;}
.fs1_c00082{font-size:74.215901px;}
.y0_c00082{bottom:0.000000px;}
.y3_c00082{bottom:2.565000px;}
.y37_c00082{bottom:3.120150px;}
.y36_c00082{bottom:34.744500px;}
.y1_c00082{bottom:54.000000px;}
.y35_c00082{bottom:61.605000px;}
.y34_c00082{bottom:72.765000px;}
.y33_c00082{bottom:72.766800px;}
.y32_c00082{bottom:96.525000px;}
.y31_c00082{bottom:113.805000px;}
.y30_c00082{bottom:140.445000px;}
.y2f_c00082{bottom:196.605000px;}
.y2e_c00082{bottom:217.485000px;}
.y2d_c00082{bottom:238.365000px;}
.y2c_c00082{bottom:259.605000px;}
.y2b_c00082{bottom:295.605000px;}
.y2a_c00082{bottom:316.485000px;}
.y29_c00082{bottom:337.725000px;}
.y28_c00082{bottom:373.725000px;}
.y27_c00082{bottom:394.605000px;}
.y26_c00082{bottom:415.485000px;}
.y25_c00082{bottom:436.725000px;}
.y24_c00082{bottom:457.605000px;}
.y23_c00082{bottom:478.485000px;}
.y22_c00082{bottom:514.485000px;}
.y21_c00082{bottom:550.485000px;}
.y20_c00082{bottom:586.480320px;}
.y1f_c00082{bottom:603.764280px;}
.y1e_c00082{bottom:621.402480px;}
.y1d_c00082{bottom:639.040680px;}
.y1c_c00082{bottom:656.324640px;}
.y1b_c00082{bottom:673.962840px;}
.y1a_c00082{bottom:691.246800px;}
.y19_c00082{bottom:708.885000px;}
.y18_c00082{bottom:733.725000px;}
.y17_c00082{bottom:751.365000px;}
.y16_c00082{bottom:751.366800px;}
.y15_c00082{bottom:769.005000px;}
.y14_c00082{bottom:801.764850px;}
.y13_c00082{bottom:823.365000px;}
.y12_c00082{bottom:840.645000px;}
.y11_c00082{bottom:858.285000px;}
.y10_c00082{bottom:875.565000px;}
.ye_c00082{bottom:893.205000px;}
.yf_c00082{bottom:910.485000px;}
.yd_c00082{bottom:910.845000px;}
.yc_c00082{bottom:928.125000px;}
.yb_c00082{bottom:946.485000px;}
.ya_c00082{bottom:964.125000px;}
.y9_c00082{bottom:981.405000px;}
.y8_c00082{bottom:999.045000px;}
.y7_c00082{bottom:1016.685000px;}
.y6_c00082{bottom:1033.965000px;}
.y5_c00082{bottom:1051.604850px;}
.y4_c00082{bottom:1085.085000px;}
.y2_c00082{bottom:1138.365000px;}
.hb_c00082{height:19.255500px;}
.ha_c00082{height:32.616000px;}
.h8_c00082{height:39.350391px;}
.hc_c00082{height:46.320000px;}
.h7_c00082{height:46.981634px;}
.h5_c00082{height:53.490240px;}
.h6_c00082{height:57.096000px;}
.h4_c00082{height:57.294676px;}
.h3_c00082{height:65.232000px;}
.h9_c00082{height:68.074560px;}
.h2_c00082{height:1201.365000px;}
.h0_c00082{height:1262.835000px;}
.h1_c00082{height:1263.000000px;}
.w7_c00082{width:16.680000px;}
.w3_c00082{width:50.760000px;}
.w4_c00082{width:162.000000px;}
.w5_c00082{width:178.920000px;}
.w6_c00082{width:259.200000px;}
.w2_c00082{width:863.955000px;}
.w0_c00082{width:892.935000px;}
.w1_c00082{width:893.250000px;}
.x0_c00082{left:0.000000px;}
.x6_c00082{left:7.920150px;}
.x1_c00082{left:14.490000px;}
.xf_c00082{left:45.434100px;}
.xd_c00082{left:51.268950px;}
.x12_c00082{left:70.888350px;}
.x10_c00082{left:74.232300px;}
.xc_c00082{left:77.876100px;}
.x11_c00082{left:81.732300px;}
.x14_c00082{left:102.072300px;}
.x2_c00082{left:113.040150px;}
.x5_c00082{left:119.610000px;}
.x13_c00082{left:132.536400px;}
.x3_c00082{left:150.011700px;}
.x1b_c00082{left:156.389250px;}
.x23_c00082{left:165.553350px;}
.x7_c00082{left:171.090000px;}
.xa_c00082{left:202.090800px;}
.x16_c00082{left:205.163700px;}
.xb_c00082{left:238.765350px;}
.x4_c00082{left:239.956800px;}
.x15_c00082{left:246.465300px;}
.xe_c00082{left:251.445000px;}
.x1f_c00082{left:261.513450px;}
.x1c_c00082{left:317.701950px;}
.x8_c00082{left:333.810000px;}
.x20_c00082{left:366.505650px;}
.x17_c00082{left:446.312250px;}
.x18_c00082{left:482.986800px;}
.x1d_c00082{left:495.490800px;}
.x9_c00082{left:513.450000px;}
.x1e_c00082{left:624.754800px;}
.x19_c00082{left:626.660550px;}
.x1a_c00082{left:662.494950px;}
.x21_c00082{left:669.010200px;}
.x22_c00082{left:689.979900px;}
.x24_c00082{left:768.255000px;}
@media print{
.v3_c00082{vertical-align:-21.760000pt;}
.v0_c00082{vertical-align:0.000000pt;}
.v1_c00082{vertical-align:21.760000pt;}
.v2_c00082{vertical-align:26.880000pt;}
.ls28_c00082{letter-spacing:-0.159616pt;}
.ls14_c00082{letter-spacing:0.000000pt;}
.ls29_c00082{letter-spacing:0.128000pt;}
.ls1f_c00082{letter-spacing:0.215168pt;}
.lsc_c00082{letter-spacing:0.236160pt;}
.lsd_c00082{letter-spacing:0.246656pt;}
.lsa_c00082{letter-spacing:0.262400pt;}
.ls7_c00082{letter-spacing:0.283093pt;}
.ls1a_c00082{letter-spacing:0.283392pt;}
.lsb_c00082{letter-spacing:0.293888pt;}
.ls2_c00082{letter-spacing:0.329493pt;}
.ls8_c00082{letter-spacing:0.330624pt;}
.ls2b_c00082{letter-spacing:0.377856pt;}
.ls24_c00082{letter-spacing:0.425088pt;}
.ls17_c00082{letter-spacing:0.438171pt;}
.ls3_c00082{letter-spacing:0.472320pt;}
.ls20_c00082{letter-spacing:0.486856pt;}
.ls9_c00082{letter-spacing:0.488064pt;}
.ls1d_c00082{letter-spacing:0.519552pt;}
.ls19_c00082{letter-spacing:0.614016pt;}
.ls1b_c00082{letter-spacing:0.619264pt;}
.ls6_c00082{letter-spacing:0.632913pt;}
.ls23_c00082{letter-spacing:0.661248pt;}
.ls1c_c00082{letter-spacing:0.681599pt;}
.ls1e_c00082{letter-spacing:0.730284pt;}
.ls25_c00082{letter-spacing:0.855424pt;}
.ls4_c00082{letter-spacing:0.881751pt;}
.ls2a_c00082{letter-spacing:2.093952pt;}
.ls16_c00082{letter-spacing:2.688000pt;}
.ls0_c00082{letter-spacing:4.758080pt;}
.ls11_c00082{letter-spacing:4.808960pt;}
.ls27_c00082{letter-spacing:4.827264pt;}
.ls18_c00082{letter-spacing:4.854400pt;}
.ls15_c00082{letter-spacing:4.901632pt;}
.ls1_c00082{letter-spacing:5.247680pt;}
.ls10_c00082{letter-spacing:5.311467pt;}
.ls12_c00082{letter-spacing:5.312000pt;}
.ls13_c00082{letter-spacing:5.475484pt;}
.lse_c00082{letter-spacing:5.825280pt;}
.ls26_c00082{letter-spacing:5.841024pt;}
.ls22_c00082{letter-spacing:7.069056pt;}
.lsf_c00082{letter-spacing:10.600960pt;}
.ls5_c00082{letter-spacing:12.789376pt;}
.ls21_c00082{letter-spacing:17.094066pt;}
.ws0_c00082{word-spacing:-19.491072pt;}
.ws3_c00082{word-spacing:-19.443840pt;}
.wsc_c00082{word-spacing:-18.705024pt;}
.wsd_c00082{word-spacing:-17.792000pt;}
.ws5_c00082{word-spacing:-15.920201pt;}
.ws9_c00082{word-spacing:-15.768735pt;}
.ws8_c00082{word-spacing:-15.720049pt;}
.ws7_c00082{word-spacing:-15.671364pt;}
.ws2_c00082{word-spacing:-15.476621pt;}
.ws6_c00082{word-spacing:-15.203456pt;}
.wsa_c00082{word-spacing:-15.077504pt;}
.ws4_c00082{word-spacing:-15.061760pt;}
.wsb_c00082{word-spacing:-14.825600pt;}
.ws1_c00082{word-spacing:-11.584000pt;}
.wse_c00082{word-spacing:-10.159744pt;}
.wsf_c00082{word-spacing:-9.024000pt;}
.ws10_c00082{word-spacing:0.000000pt;}
._8_c00082{margin-left:-16.390829pt;}
._2_c00082{margin-left:-12.490240pt;}
._a_c00082{margin-left:-6.769920pt;}
._b_c00082{margin-left:-5.667840pt;}
._10_c00082{margin-left:-4.665472pt;}
._16_c00082{margin-left:-2.565120pt;}
._0_c00082{margin-left:-0.892160pt;}
._4_c00082{width:1.049600pt;}
._d_c00082{width:2.151680pt;}
._6_c00082{width:3.516160pt;}
._f_c00082{width:5.143040pt;}
._9_c00082{width:6.192640pt;}
._c_c00082{width:7.189760pt;}
._11_c00082{width:8.081920pt;}
._12_c00082{width:9.079040pt;}
._13_c00082{width:10.013184pt;}
._e_c00082{width:11.020800pt;}
._1_c00082{width:11.912960pt;}
._15_c00082{width:12.855040pt;}
._7_c00082{width:16.221568pt;}
._14_c00082{width:18.816000pt;}
._3_c00082{width:32.380160pt;}
._5_c00082{width:33.797120pt;}
.fs3_c00082{font-size:32.000000pt;}
.fs6_c00082{font-size:37.120000pt;}
.fs5_c00082{font-size:49.920000pt;}
.fs2_c00082{font-size:52.480000pt;}
.fs7_c00082{font-size:53.333333pt;}
.fs4_c00082{font-size:54.095146pt;}
.fs0_c00082{font-size:64.000000pt;}
.fs1_c00082{font-size:65.969690pt;}
.y0_c00082{bottom:0.000000pt;}
.y3_c00082{bottom:2.280000pt;}
.y37_c00082{bottom:2.773467pt;}
.y36_c00082{bottom:30.884000pt;}
.y1_c00082{bottom:48.000000pt;}
.y35_c00082{bottom:54.760000pt;}
.y34_c00082{bottom:64.680000pt;}
.y33_c00082{bottom:64.681600pt;}
.y32_c00082{bottom:85.800000pt;}
.y31_c00082{bottom:101.160000pt;}
.y30_c00082{bottom:124.840000pt;}
.y2f_c00082{bottom:174.760000pt;}
.y2e_c00082{bottom:193.320000pt;}
.y2d_c00082{bottom:211.880000pt;}
.y2c_c00082{bottom:230.760000pt;}
.y2b_c00082{bottom:262.760000pt;}
.y2a_c00082{bottom:281.320000pt;}
.y29_c00082{bottom:300.200000pt;}
.y28_c00082{bottom:332.200000pt;}
.y27_c00082{bottom:350.760000pt;}
.y26_c00082{bottom:369.320000pt;}
.y25_c00082{bottom:388.200000pt;}
.y24_c00082{bottom:406.760000pt;}
.y23_c00082{bottom:425.320000pt;}
.y22_c00082{bottom:457.320000pt;}
.y21_c00082{bottom:489.320000pt;}
.y20_c00082{bottom:521.315840pt;}
.y1f_c00082{bottom:536.679360pt;}
.y1e_c00082{bottom:552.357760pt;}
.y1d_c00082{bottom:568.036160pt;}
.y1c_c00082{bottom:583.399680pt;}
.y1b_c00082{bottom:599.078080pt;}
.y1a_c00082{bottom:614.441600pt;}
.y19_c00082{bottom:630.120000pt;}
.y18_c00082{bottom:652.200000pt;}
.y17_c00082{bottom:667.880000pt;}
.y16_c00082{bottom:667.881600pt;}
.y15_c00082{bottom:683.560000pt;}
.y14_c00082{bottom:712.679867pt;}
.y13_c00082{bottom:731.880000pt;}
.y12_c00082{bottom:747.240000pt;}
.y11_c00082{bottom:762.920000pt;}
.y10_c00082{bottom:778.280000pt;}
.ye_c00082{bottom:793.960000pt;}
.yf_c00082{bottom:809.320000pt;}
.yd_c00082{bottom:809.640000pt;}
.yc_c00082{bottom:825.000000pt;}
.yb_c00082{bottom:841.320000pt;}
.ya_c00082{bottom:857.000000pt;}
.y9_c00082{bottom:872.360000pt;}
.y8_c00082{bottom:888.040000pt;}
.y7_c00082{bottom:903.720000pt;}
.y6_c00082{bottom:919.080000pt;}
.y5_c00082{bottom:934.759867pt;}
.y4_c00082{bottom:964.520000pt;}
.y2_c00082{bottom:1011.880000pt;}
.hb_c00082{height:17.116000pt;}
.ha_c00082{height:28.992000pt;}
.h8_c00082{height:34.978125pt;}
.hc_c00082{height:41.173333pt;}
.h7_c00082{height:41.761453pt;}
.h5_c00082{height:47.546880pt;}
.h6_c00082{height:50.752000pt;}
.h4_c00082{height:50.928601pt;}
.h3_c00082{height:57.984000pt;}
.h9_c00082{height:60.510720pt;}
.h2_c00082{height:1067.880000pt;}
.h0_c00082{height:1122.520000pt;}
.h1_c00082{height:1122.666667pt;}
.w7_c00082{width:14.826667pt;}
.w3_c00082{width:45.120000pt;}
.w4_c00082{width:144.000000pt;}
.w5_c00082{width:159.040000pt;}
.w6_c00082{width:230.400000pt;}
.w2_c00082{width:767.960000pt;}
.w0_c00082{width:793.720000pt;}
.w1_c00082{width:794.000000pt;}
.x0_c00082{left:0.000000pt;}
.x6_c00082{left:7.040133pt;}
.x1_c00082{left:12.880000pt;}
.xf_c00082{left:40.385867pt;}
.xd_c00082{left:45.572400pt;}
.x12_c00082{left:63.011867pt;}
.x10_c00082{left:65.984267pt;}
.xc_c00082{left:69.223200pt;}
.x11_c00082{left:72.650933pt;}
.x14_c00082{left:90.730933pt;}
.x2_c00082{left:100.480133pt;}
.x5_c00082{left:106.320000pt;}
.x13_c00082{left:117.810133pt;}
.x3_c00082{left:133.343733pt;}
.x1b_c00082{left:139.012667pt;}
.x23_c00082{left:147.158533pt;}
.x7_c00082{left:152.080000pt;}
.xa_c00082{left:179.636267pt;}
.x16_c00082{left:182.367733pt;}
.xb_c00082{left:212.235867pt;}
.x4_c00082{left:213.294933pt;}
.x15_c00082{left:219.080267pt;}
.xe_c00082{left:223.506667pt;}
.x1f_c00082{left:232.456400pt;}
.x1c_c00082{left:282.401733pt;}
.x8_c00082{left:296.720000pt;}
.x20_c00082{left:325.782800pt;}
.x17_c00082{left:396.722000pt;}
.x18_c00082{left:429.321600pt;}
.x1d_c00082{left:440.436267pt;}
.x9_c00082{left:456.400000pt;}
.x1e_c00082{left:555.337600pt;}
.x19_c00082{left:557.031600pt;}
.x1a_c00082{left:588.884400pt;}
.x21_c00082{left:594.675733pt;}
.x22_c00082{left:613.315467pt;}
.x24_c00082{left:682.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_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_8100319d0d3c702c7aeb2910.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.134000;font-style:normal;font-weight:normal;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_527b0fbf1ce69246012c839c.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;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:ff3_c00083;src:url('chunks/assets/font_a25b3dd26e6809000d6aeec7.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:0.787000;font-style:normal;font-weight:normal;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_3cdca110a77f1202a9b0114b.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00083{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00083{vertical-align:-30.240000px;}
.v3_c00083{vertical-align:-24.480000px;}
.v0_c00083{vertical-align:0.000000px;}
.v1_c00083{vertical-align:30.240000px;}
.ls9_c00083{letter-spacing:-0.179568px;}
.ls8_c00083{letter-spacing:0.000000px;}
.lsb_c00083{letter-spacing:0.144000px;}
.lse_c00083{letter-spacing:0.265680px;}
.ls4_c00083{letter-spacing:0.295200px;}
.ls10_c00083{letter-spacing:0.318816px;}
.ls6_c00083{letter-spacing:0.324720px;}
.ls18_c00083{letter-spacing:0.371952px;}
.ls17_c00083{letter-spacing:0.425088px;}
.ls12_c00083{letter-spacing:0.438171px;}
.ls5_c00083{letter-spacing:0.531360px;}
.ls2_c00083{letter-spacing:0.553799px;}
.ls13_c00083{letter-spacing:0.584496px;}
.ls15_c00083{letter-spacing:0.690768px;}
.lsc_c00083{letter-spacing:0.712027px;}
.ls19_c00083{letter-spacing:0.743904px;}
.lsa_c00083{letter-spacing:3.765600px;}
.ls14_c00083{letter-spacing:5.248656px;}
.lsf_c00083{letter-spacing:5.295888px;}
.ls1_c00083{letter-spacing:5.372640px;}
.ls11_c00083{letter-spacing:5.461200px;}
.lsd_c00083{letter-spacing:5.514336px;}
.ls16_c00083{letter-spacing:5.679648px;}
.ls0_c00083{letter-spacing:5.976000px;}
.ls7_c00083{letter-spacing:6.159920px;}
.ls3_c00083{letter-spacing:23.675040px;}
.sc__c00083{text-shadow:none;}
.sc1_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00083{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc1_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00083{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00083{word-spacing:-21.927456px;}
.ws5_c00083{word-spacing:-21.874320px;}
.ws4_c00083{word-spacing:-21.709008px;}
.ws8_c00083{word-spacing:-21.661776px;}
.ws0_c00083{word-spacing:-20.016000px;}
.ws7_c00083{word-spacing:-17.472056px;}
.ws9_c00083{word-spacing:-16.944480px;}
.ws6_c00083{word-spacing:-16.731936px;}
.ws1_c00083{word-spacing:-11.429712px;}
.ws2_c00083{word-spacing:-10.152000px;}
.wsa_c00083{word-spacing:0.000000px;}
._10_c00083{margin-left:-23.254560px;}
._11_c00083{margin-left:-22.250880px;}
._13_c00083{margin-left:-5.247360px;}
._e_c00083{margin-left:-3.787200px;}
._f_c00083{margin-left:-1.115856px;}
._8_c00083{width:1.008000px;}
._7_c00083{width:2.088000px;}
._4_c00083{width:3.219855px;}
._3_c00083{width:4.230306px;}
._b_c00083{width:5.675544px;}
._2_c00083{width:6.692458px;}
._1_c00083{width:7.866886px;}
._9_c00083{width:9.269114px;}
._a_c00083{width:10.656000px;}
._d_c00083{width:17.496000px;}
._6_c00083{width:18.576000px;}
._12_c00083{width:22.676256px;}
._c_c00083{width:23.832000px;}
._5_c00083{width:24.984000px;}
._0_c00083{width:30.528000px;}
.fc0_c00083{color:rgb(0,0,0);}
.fs3_c00083{font-size:36.000000px;}
.fs2_c00083{font-size:41.760000px;}
.fs4_c00083{font-size:59.040000px;}
.fs6_c00083{font-size:60.000000px;}
.fs5_c00083{font-size:60.857039px;}
.fs0_c00083{font-size:72.000000px;}
.fs1_c00083{font-size:74.215901px;}
.y0_c00083{bottom:0.000000px;}
.y3_c00083{bottom:2.565000px;}
.y37_c00083{bottom:3.120150px;}
.y36_c00083{bottom:34.744500px;}
.y1_c00083{bottom:54.000000px;}
.y35_c00083{bottom:61.605000px;}
.y34_c00083{bottom:72.766800px;}
.y32_c00083{bottom:90.401040px;}
.y33_c00083{bottom:90.405000px;}
.y31_c00083{bottom:113.805000px;}
.y30_c00083{bottom:131.445000px;}
.y2f_c00083{bottom:142.965000px;}
.y2e_c00083{bottom:160.245000px;}
.y2d_c00083{bottom:177.885000px;}
.y2c_c00083{bottom:177.886800px;}
.y2b_c00083{bottom:201.645000px;}
.y2a_c00083{bottom:212.805000px;}
.y29_c00083{bottom:218.925000px;}
.y28_c00083{bottom:230.445000px;}
.y27_c00083{bottom:236.565000px;}
.y26_c00083{bottom:247.725000px;}
.y25_c00083{bottom:253.845000px;}
.y24_c00083{bottom:280.485000px;}
.y23_c00083{bottom:334.845000px;}
.y22_c00083{bottom:355.725000px;}
.y21_c00083{bottom:376.965000px;}
.y20_c00083{bottom:412.965000px;}
.y1f_c00083{bottom:433.845000px;}
.y1e_c00083{bottom:454.725000px;}
.y1d_c00083{bottom:490.725000px;}
.y1c_c00083{bottom:511.965000px;}
.y1b_c00083{bottom:547.965000px;}
.y1a_c00083{bottom:568.845000px;}
.y19_c00083{bottom:604.845000px;}
.y18_c00083{bottom:625.725000px;}
.y16_c00083{bottom:646.965000px;}
.y17_c00083{bottom:654.525000px;}
.y15_c00083{bottom:667.845000px;}
.y14_c00083{bottom:689.085000px;}
.y13_c00083{bottom:725.085000px;}
.y12_c00083{bottom:745.965000px;}
.y11_c00083{bottom:766.845000px;}
.y10_c00083{bottom:788.085000px;}
.yf_c00083{bottom:808.965000px;}
.ye_c00083{bottom:829.845000px;}
.yd_c00083{bottom:865.845000px;}
.yc_c00083{bottom:887.085000px;}
.yb_c00083{bottom:907.965000px;}
.ya_c00083{bottom:928.845000px;}
.y9_c00083{bottom:950.085000px;}
.y8_c00083{bottom:970.965000px;}
.y7_c00083{bottom:1006.965000px;}
.y6_c00083{bottom:1027.845000px;}
.y5_c00083{bottom:1063.845000px;}
.y4_c00083{bottom:1085.085000px;}
.y2_c00083{bottom:1138.365000px;}
.ha_c00083{height:19.255500px;}
.h7_c00083{height:32.616000px;}
.h6_c00083{height:37.834560px;}
.hb_c00083{height:46.320000px;}
.h8_c00083{height:46.981634px;}
.h9_c00083{height:53.490240px;}
.h4_c00083{height:57.294676px;}
.h3_c00083{height:65.232000px;}
.h5_c00083{height:68.074560px;}
.h2_c00083{height:1201.365000px;}
.h0_c00083{height:1262.835000px;}
.h1_c00083{height:1263.000000px;}
.w3_c00083{width:16.680000px;}
.w2_c00083{width:863.955000px;}
.w0_c00083{width:892.935000px;}
.w1_c00083{width:893.250000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:14.490000px;}
.x2_c00083{left:113.040150px;}
.x22_c00083{left:127.217700px;}
.x27_c00083{left:133.034250px;}
.x3_c00083{left:150.011700px;}
.x14_c00083{left:152.009100px;}
.x15_c00083{left:210.332850px;}
.x5_c00083{left:219.838650px;}
.x10_c00083{left:222.672750px;}
.x11_c00083{left:238.674300px;}
.x4_c00083{left:239.956800px;}
.x8_c00083{left:260.614800px;}
.x20_c00083{left:262.495200px;}
.x6_c00083{left:272.763750px;}
.x7_c00083{left:308.156250px;}
.x12_c00083{left:312.307650px;}
.x1a_c00083{left:317.315850px;}
.x21_c00083{left:321.498450px;}
.x17_c00083{left:329.861550px;}
.x1e_c00083{left:332.389500px;}
.xa_c00083{left:335.397600px;}
.x1d_c00083{left:337.863300px;}
.x9_c00083{left:365.607000px;}
.x16_c00083{left:376.994400px;}
.x23_c00083{left:379.808700px;}
.x1f_c00083{left:384.197400px;}
.xb_c00083{left:389.254050px;}
.x24_c00083{left:403.913850px;}
.x28_c00083{left:408.838200px;}
.x25_c00083{left:423.907800px;}
.x29_c00083{left:429.033750px;}
.xc_c00083{left:467.282850px;}
.xd_c00083{left:497.285550px;}
.x1b_c00083{left:640.764450px;}
.xe_c00083{left:665.982450px;}
.x18_c00083{left:674.617350px;}
.x19_c00083{left:679.680000px;}
.xf_c00083{left:694.393050px;}
.x1c_c00083{left:699.767550px;}
.x13_c00083{left:712.429350px;}
.x26_c00083{left:734.565750px;}
.x2a_c00083{left:768.255000px;}
@media print{
.v2_c00083{vertical-align:-26.880000pt;}
.v3_c00083{vertical-align:-21.760000pt;}
.v0_c00083{vertical-align:0.000000pt;}
.v1_c00083{vertical-align:26.880000pt;}
.ls9_c00083{letter-spacing:-0.159616pt;}
.ls8_c00083{letter-spacing:0.000000pt;}
.lsb_c00083{letter-spacing:0.128000pt;}
.lse_c00083{letter-spacing:0.236160pt;}
.ls4_c00083{letter-spacing:0.262400pt;}
.ls10_c00083{letter-spacing:0.283392pt;}
.ls6_c00083{letter-spacing:0.288640pt;}
.ls18_c00083{letter-spacing:0.330624pt;}
.ls17_c00083{letter-spacing:0.377856pt;}
.ls12_c00083{letter-spacing:0.389485pt;}
.ls5_c00083{letter-spacing:0.472320pt;}
.ls2_c00083{letter-spacing:0.492266pt;}
.ls13_c00083{letter-spacing:0.519552pt;}
.ls15_c00083{letter-spacing:0.614016pt;}
.lsc_c00083{letter-spacing:0.632913pt;}
.ls19_c00083{letter-spacing:0.661248pt;}
.lsa_c00083{letter-spacing:3.347200pt;}
.ls14_c00083{letter-spacing:4.665472pt;}
.lsf_c00083{letter-spacing:4.707456pt;}
.ls1_c00083{letter-spacing:4.775680pt;}
.ls11_c00083{letter-spacing:4.854400pt;}
.lsd_c00083{letter-spacing:4.901632pt;}
.ls16_c00083{letter-spacing:5.048576pt;}
.ls0_c00083{letter-spacing:5.312000pt;}
.ls7_c00083{letter-spacing:5.475484pt;}
.ls3_c00083{letter-spacing:21.044480pt;}
.ws3_c00083{word-spacing:-19.491072pt;}
.ws5_c00083{word-spacing:-19.443840pt;}
.ws4_c00083{word-spacing:-19.296896pt;}
.ws8_c00083{word-spacing:-19.254912pt;}
.ws0_c00083{word-spacing:-17.792000pt;}
.ws7_c00083{word-spacing:-15.530716pt;}
.ws9_c00083{word-spacing:-15.061760pt;}
.ws6_c00083{word-spacing:-14.872832pt;}
.ws1_c00083{word-spacing:-10.159744pt;}
.ws2_c00083{word-spacing:-9.024000pt;}
.wsa_c00083{word-spacing:0.000000pt;}
._10_c00083{margin-left:-20.670720pt;}
._11_c00083{margin-left:-19.778560pt;}
._13_c00083{margin-left:-4.664320pt;}
._e_c00083{margin-left:-3.366400pt;}
._f_c00083{margin-left:-0.991872pt;}
._8_c00083{width:0.896000pt;}
._7_c00083{width:1.856000pt;}
._4_c00083{width:2.862094pt;}
._3_c00083{width:3.760272pt;}
._b_c00083{width:5.044928pt;}
._2_c00083{width:5.948851pt;}
._1_c00083{width:6.992787pt;}
._9_c00083{width:8.239213pt;}
._a_c00083{width:9.472000pt;}
._d_c00083{width:15.552000pt;}
._6_c00083{width:16.512000pt;}
._12_c00083{width:20.156672pt;}
._c_c00083{width:21.184000pt;}
._5_c00083{width:22.208000pt;}
._0_c00083{width:27.136000pt;}
.fs3_c00083{font-size:32.000000pt;}
.fs2_c00083{font-size:37.120000pt;}
.fs4_c00083{font-size:52.480000pt;}
.fs6_c00083{font-size:53.333333pt;}
.fs5_c00083{font-size:54.095146pt;}
.fs0_c00083{font-size:64.000000pt;}
.fs1_c00083{font-size:65.969690pt;}
.y0_c00083{bottom:0.000000pt;}
.y3_c00083{bottom:2.280000pt;}
.y37_c00083{bottom:2.773467pt;}
.y36_c00083{bottom:30.884000pt;}
.y1_c00083{bottom:48.000000pt;}
.y35_c00083{bottom:54.760000pt;}
.y34_c00083{bottom:64.681600pt;}
.y32_c00083{bottom:80.356480pt;}
.y33_c00083{bottom:80.360000pt;}
.y31_c00083{bottom:101.160000pt;}
.y30_c00083{bottom:116.840000pt;}
.y2f_c00083{bottom:127.080000pt;}
.y2e_c00083{bottom:142.440000pt;}
.y2d_c00083{bottom:158.120000pt;}
.y2c_c00083{bottom:158.121600pt;}
.y2b_c00083{bottom:179.240000pt;}
.y2a_c00083{bottom:189.160000pt;}
.y29_c00083{bottom:194.600000pt;}
.y28_c00083{bottom:204.840000pt;}
.y27_c00083{bottom:210.280000pt;}
.y26_c00083{bottom:220.200000pt;}
.y25_c00083{bottom:225.640000pt;}
.y24_c00083{bottom:249.320000pt;}
.y23_c00083{bottom:297.640000pt;}
.y22_c00083{bottom:316.200000pt;}
.y21_c00083{bottom:335.080000pt;}
.y20_c00083{bottom:367.080000pt;}
.y1f_c00083{bottom:385.640000pt;}
.y1e_c00083{bottom:404.200000pt;}
.y1d_c00083{bottom:436.200000pt;}
.y1c_c00083{bottom:455.080000pt;}
.y1b_c00083{bottom:487.080000pt;}
.y1a_c00083{bottom:505.640000pt;}
.y19_c00083{bottom:537.640000pt;}
.y18_c00083{bottom:556.200000pt;}
.y16_c00083{bottom:575.080000pt;}
.y17_c00083{bottom:581.800000pt;}
.y15_c00083{bottom:593.640000pt;}
.y14_c00083{bottom:612.520000pt;}
.y13_c00083{bottom:644.520000pt;}
.y12_c00083{bottom:663.080000pt;}
.y11_c00083{bottom:681.640000pt;}
.y10_c00083{bottom:700.520000pt;}
.yf_c00083{bottom:719.080000pt;}
.ye_c00083{bottom:737.640000pt;}
.yd_c00083{bottom:769.640000pt;}
.yc_c00083{bottom:788.520000pt;}
.yb_c00083{bottom:807.080000pt;}
.ya_c00083{bottom:825.640000pt;}
.y9_c00083{bottom:844.520000pt;}
.y8_c00083{bottom:863.080000pt;}
.y7_c00083{bottom:895.080000pt;}
.y6_c00083{bottom:913.640000pt;}
.y5_c00083{bottom:945.640000pt;}
.y4_c00083{bottom:964.520000pt;}
.y2_c00083{bottom:1011.880000pt;}
.ha_c00083{height:17.116000pt;}
.h7_c00083{height:28.992000pt;}
.h6_c00083{height:33.630720pt;}
.hb_c00083{height:41.173333pt;}
.h8_c00083{height:41.761453pt;}
.h9_c00083{height:47.546880pt;}
.h4_c00083{height:50.928601pt;}
.h3_c00083{height:57.984000pt;}
.h5_c00083{height:60.510720pt;}
.h2_c00083{height:1067.880000pt;}
.h0_c00083{height:1122.520000pt;}
.h1_c00083{height:1122.666667pt;}
.w3_c00083{width:14.826667pt;}
.w2_c00083{width:767.960000pt;}
.w0_c00083{width:793.720000pt;}
.w1_c00083{width:794.000000pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:12.880000pt;}
.x2_c00083{left:100.480133pt;}
.x22_c00083{left:113.082400pt;}
.x27_c00083{left:118.252667pt;}
.x3_c00083{left:133.343733pt;}
.x14_c00083{left:135.119200pt;}
.x15_c00083{left:186.962533pt;}
.x5_c00083{left:195.412133pt;}
.x10_c00083{left:197.931333pt;}
.x11_c00083{left:212.154933pt;}
.x4_c00083{left:213.294933pt;}
.x8_c00083{left:231.657600pt;}
.x20_c00083{left:233.329067pt;}
.x6_c00083{left:242.456667pt;}
.x7_c00083{left:273.916667pt;}
.x12_c00083{left:277.606800pt;}
.x1a_c00083{left:282.058533pt;}
.x21_c00083{left:285.776400pt;}
.x17_c00083{left:293.210267pt;}
.x1e_c00083{left:295.457333pt;}
.xa_c00083{left:298.131200pt;}
.x1d_c00083{left:300.322933pt;}
.x9_c00083{left:324.984000pt;}
.x16_c00083{left:335.106133pt;}
.x23_c00083{left:337.607733pt;}
.x1f_c00083{left:341.508800pt;}
.xb_c00083{left:346.003600pt;}
.x24_c00083{left:359.034533pt;}
.x28_c00083{left:363.411733pt;}
.x25_c00083{left:376.806933pt;}
.x29_c00083{left:381.363333pt;}
.xc_c00083{left:415.362533pt;}
.xd_c00083{left:442.031600pt;}
.x1b_c00083{left:569.568400pt;}
.xe_c00083{left:591.984400pt;}
.x18_c00083{left:599.659867pt;}
.x19_c00083{left:604.160000pt;}
.xf_c00083{left:617.238267pt;}
.x1c_c00083{left:622.015600pt;}
.x13_c00083{left:633.270533pt;}
.x26_c00083{left:652.947333pt;}
.x2a_c00083{left:682.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_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_3fac6e86b8d918c4f4362a8e.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.134000;font-style:normal;font-weight:normal;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_8587fe507da0a681a99c0b5f.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;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:ff3_c00084;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_dbe4d877395ff654862bb9fa.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:0.787000;font-style:normal;font-weight:normal;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_ef7a7275e6388e82b26bbf75.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00084{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00084{vertical-align:-24.480000px;}
.v0_c00084{vertical-align:0.000000px;}
.v1_c00084{vertical-align:30.240000px;}
.ls13_c00084{letter-spacing:-0.179568px;}
.ls12_c00084{letter-spacing:0.000000px;}
.ls15_c00084{letter-spacing:0.144000px;}
.ls1b_c00084{letter-spacing:0.265680px;}
.lsf_c00084{letter-spacing:0.295200px;}
.ls23_c00084{letter-spacing:0.318816px;}
.ls27_c00084{letter-spacing:0.371952px;}
.ls1d_c00084{letter-spacing:0.425088px;}
.ls1e_c00084{letter-spacing:0.438171px;}
.ls1c_c00084{letter-spacing:0.478224px;}
.ls6_c00084{letter-spacing:0.492942px;}
.ls10_c00084{letter-spacing:0.531360px;}
.ls26_c00084{letter-spacing:0.584496px;}
.ls22_c00084{letter-spacing:0.690768px;}
.ls21_c00084{letter-spacing:0.696672px;}
.lse_c00084{letter-spacing:0.712027px;}
.ls5_c00084{letter-spacing:0.755712px;}
.ls1a_c00084{letter-spacing:0.821570px;}
.lsd_c00084{letter-spacing:3.211776px;}
.ls17_c00084{letter-spacing:5.248656px;}
.ls7_c00084{letter-spacing:5.313600px;}
.ls14_c00084{letter-spacing:5.335200px;}
.ls24_c00084{letter-spacing:5.354928px;}
.lsc_c00084{letter-spacing:5.360832px;}
.ls3_c00084{letter-spacing:5.372640px;}
.ls19_c00084{letter-spacing:5.461200px;}
.lsa_c00084{letter-spacing:5.490720px;}
.ls8_c00084{letter-spacing:5.514336px;}
.ls4_c00084{letter-spacing:5.974848px;}
.ls0_c00084{letter-spacing:5.976000px;}
.ls16_c00084{letter-spacing:5.980752px;}
.ls2_c00084{letter-spacing:5.998800px;}
.ls11_c00084{letter-spacing:6.159920px;}
.ls25_c00084{letter-spacing:6.211008px;}
.ls1_c00084{letter-spacing:6.359400px;}
.lsb_c00084{letter-spacing:8.206560px;}
.ls28_c00084{letter-spacing:8.330544px;}
.ls20_c00084{letter-spacing:8.401392px;}
.ls1f_c00084{letter-spacing:8.407296px;}
.ls18_c00084{letter-spacing:10.957824px;}
.ls9_c00084{letter-spacing:14.010192px;}
.sc__c00084{text-shadow:none;}
.sc1_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00084{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc1_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00084{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00084{word-spacing:-21.927456px;}
.ws6_c00084{word-spacing:-21.874320px;}
.ws4_c00084{word-spacing:-21.661776px;}
.ws2_c00084{word-spacing:-20.947680px;}
.ws1_c00084{word-spacing:-20.016000px;}
.ws8_c00084{word-spacing:-17.630284px;}
.ws7_c00084{word-spacing:-17.356428px;}
.ws0_c00084{word-spacing:-11.429712px;}
.ws3_c00084{word-spacing:-10.152000px;}
.ws9_c00084{word-spacing:0.000000px;}
._14_c00084{margin-left:-13.493808px;}
._10_c00084{margin-left:-8.022240px;}
._11_c00084{margin-left:-6.736320px;}
._e_c00084{margin-left:-5.719680px;}
._f_c00084{margin-left:-4.582080px;}
._15_c00084{margin-left:-2.975040px;}
._d_c00084{margin-left:-1.651800px;}
._6_c00084{width:1.308816px;}
._9_c00084{width:3.240000px;}
._8_c00084{width:4.968000px;}
._1_c00084{width:5.997958px;}
._0_c00084{width:7.050511px;}
._12_c00084{width:8.325862px;}
._7_c00084{width:9.864000px;}
._5_c00084{width:11.160000px;}
._3_c00084{width:12.744000px;}
._13_c00084{width:13.815360px;}
._16_c00084{width:15.713016px;}
._4_c00084{width:16.776000px;}
._a_c00084{width:18.432000px;}
._c_c00084{width:24.215082px;}
._b_c00084{width:25.752918px;}
._2_c00084{width:27.432000px;}
.fc0_c00084{color:rgb(0,0,0);}
.fs4_c00084{font-size:36.000000px;}
.fs2_c00084{font-size:41.760000px;}
.fs3_c00084{font-size:56.160000px;}
.fs5_c00084{font-size:59.040000px;}
.fs7_c00084{font-size:60.000000px;}
.fs6_c00084{font-size:60.857039px;}
.fs0_c00084{font-size:72.000000px;}
.fs1_c00084{font-size:74.215901px;}
.y0_c00084{bottom:0.000000px;}
.y3_c00084{bottom:2.565000px;}
.y36_c00084{bottom:3.120150px;}
.y35_c00084{bottom:34.744500px;}
.y1_c00084{bottom:54.000000px;}
.y34_c00084{bottom:55.481040px;}
.y33_c00084{bottom:78.885000px;}
.y32_c00084{bottom:90.402840px;}
.y31_c00084{bottom:107.686800px;}
.y30_c00084{bottom:125.325000px;}
.y2f_c00084{bottom:131.445000px;}
.y2e_c00084{bottom:142.962480px;}
.y2d_c00084{bottom:160.246440px;}
.y2c_c00084{bottom:177.884640px;}
.y2b_c00084{bottom:195.522840px;}
.y2a_c00084{bottom:212.806800px;}
.y28_c00084{bottom:230.442840px;}
.y29_c00084{bottom:230.445000px;}
.y27_c00084{bottom:247.726800px;}
.y26_c00084{bottom:271.485000px;}
.y25_c00084{bottom:283.005000px;}
.y24_c00084{bottom:289.125000px;}
.y23_c00084{bottom:300.288600px;}
.y22_c00084{bottom:317.926800px;}
.y20_c00084{bottom:335.561040px;}
.y21_c00084{bottom:335.565000px;}
.y1f_c00084{bottom:352.845000px;}
.y1e_c00084{bottom:358.965000px;}
.y1d_c00084{bottom:385.605000px;}
.y1c_c00084{bottom:502.605000px;}
.y1b_c00084{bottom:523.485000px;}
.y1a_c00084{bottom:544.725000px;}
.y19_c00084{bottom:580.725000px;}
.y18_c00084{bottom:616.725000px;}
.y17_c00084{bottom:652.725000px;}
.y16_c00084{bottom:673.605000px;}
.y15_c00084{bottom:694.485000px;}
.y14_c00084{bottom:715.725000px;}
.y13_c00084{bottom:736.605000px;}
.y12_c00084{bottom:772.605000px;}
.y11_c00084{bottom:793.485000px;}
.y10_c00084{bottom:814.725000px;}
.yf_c00084{bottom:835.605000px;}
.ye_c00084{bottom:871.605000px;}
.yd_c00084{bottom:894.645000px;}
.yc_c00084{bottom:917.325000px;}
.yb_c00084{bottom:937.845000px;}
.ya_c00084{bottom:959.085000px;}
.y9_c00084{bottom:979.965000px;}
.y8_c00084{bottom:1000.845000px;}
.y7_c00084{bottom:1022.085000px;}
.y6_c00084{bottom:1042.965000px;}
.y5_c00084{bottom:1063.845000px;}
.y4_c00084{bottom:1085.085000px;}
.y2_c00084{bottom:1138.365000px;}
.h9_c00084{height:19.255500px;}
.h6_c00084{height:32.616000px;}
.ha_c00084{height:46.320000px;}
.h7_c00084{height:46.981634px;}
.h8_c00084{height:53.490240px;}
.h4_c00084{height:57.294676px;}
.h3_c00084{height:65.232000px;}
.h5_c00084{height:68.074560px;}
.h2_c00084{height:1201.365000px;}
.h0_c00084{height:1262.835000px;}
.h1_c00084{height:1263.000000px;}
.w3_c00084{width:16.680000px;}
.w2_c00084{width:863.955000px;}
.w0_c00084{width:892.935000px;}
.w1_c00084{width:893.250000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:14.490000px;}
.x2_c00084{left:113.040150px;}
.x3_c00084{left:150.011700px;}
.x9_c00084{left:168.851850px;}
.x18_c00084{left:171.053100px;}
.x5_c00084{left:194.761650px;}
.x1b_c00084{left:196.187250px;}
.x6_c00084{left:206.482200px;}
.x1c_c00084{left:231.318900px;}
.x4_c00084{left:239.956800px;}
.x15_c00084{left:260.267550px;}
.xa_c00084{left:267.402150px;}
.x16_c00084{left:276.529200px;}
.x1d_c00084{left:279.457350px;}
.x22_c00084{left:296.382150px;}
.xe_c00084{left:301.827000px;}
.x7_c00084{left:310.921800px;}
.x12_c00084{left:314.439000px;}
.x17_c00084{left:335.532300px;}
.xf_c00084{left:338.834850px;}
.x23_c00084{left:363.040650px;}
.xb_c00084{left:386.081250px;}
.x1e_c00084{left:395.801850px;}
.x1f_c00084{left:404.263200px;}
.x19_c00084{left:438.961650px;}
.x20_c00084{left:470.203800px;}
.x21_c00084{left:474.373500px;}
.x26_c00084{left:534.572400px;}
.x1a_c00084{left:548.242200px;}
.xc_c00084{left:559.597350px;}
.x27_c00084{left:570.406800px;}
.x13_c00084{left:573.198150px;}
.x24_c00084{left:596.704800px;}
.x10_c00084{left:609.035550px;}
.x25_c00084{left:620.133900px;}
.xd_c00084{left:656.316600px;}
.x11_c00084{left:687.028500px;}
.x8_c00084{left:720.366600px;}
.x14_c00084{left:731.812500px;}
.x28_c00084{left:768.255000px;}
@media print{
.v2_c00084{vertical-align:-21.760000pt;}
.v0_c00084{vertical-align:0.000000pt;}
.v1_c00084{vertical-align:26.880000pt;}
.ls13_c00084{letter-spacing:-0.159616pt;}
.ls12_c00084{letter-spacing:0.000000pt;}
.ls15_c00084{letter-spacing:0.128000pt;}
.ls1b_c00084{letter-spacing:0.236160pt;}
.lsf_c00084{letter-spacing:0.262400pt;}
.ls23_c00084{letter-spacing:0.283392pt;}
.ls27_c00084{letter-spacing:0.330624pt;}
.ls1d_c00084{letter-spacing:0.377856pt;}
.ls1e_c00084{letter-spacing:0.389485pt;}
.ls1c_c00084{letter-spacing:0.425088pt;}
.ls6_c00084{letter-spacing:0.438171pt;}
.ls10_c00084{letter-spacing:0.472320pt;}
.ls26_c00084{letter-spacing:0.519552pt;}
.ls22_c00084{letter-spacing:0.614016pt;}
.ls21_c00084{letter-spacing:0.619264pt;}
.lse_c00084{letter-spacing:0.632913pt;}
.ls5_c00084{letter-spacing:0.671744pt;}
.ls1a_c00084{letter-spacing:0.730284pt;}
.lsd_c00084{letter-spacing:2.854912pt;}
.ls17_c00084{letter-spacing:4.665472pt;}
.ls7_c00084{letter-spacing:4.723200pt;}
.ls14_c00084{letter-spacing:4.742400pt;}
.ls24_c00084{letter-spacing:4.759936pt;}
.lsc_c00084{letter-spacing:4.765184pt;}
.ls3_c00084{letter-spacing:4.775680pt;}
.ls19_c00084{letter-spacing:4.854400pt;}
.lsa_c00084{letter-spacing:4.880640pt;}
.ls8_c00084{letter-spacing:4.901632pt;}
.ls4_c00084{letter-spacing:5.310976pt;}
.ls0_c00084{letter-spacing:5.312000pt;}
.ls16_c00084{letter-spacing:5.316224pt;}
.ls2_c00084{letter-spacing:5.332267pt;}
.ls11_c00084{letter-spacing:5.475484pt;}
.ls25_c00084{letter-spacing:5.520896pt;}
.ls1_c00084{letter-spacing:5.652800pt;}
.lsb_c00084{letter-spacing:7.294720pt;}
.ls28_c00084{letter-spacing:7.404928pt;}
.ls20_c00084{letter-spacing:7.467904pt;}
.ls1f_c00084{letter-spacing:7.473152pt;}
.ls18_c00084{letter-spacing:9.740288pt;}
.ls9_c00084{letter-spacing:12.453504pt;}
.ws5_c00084{word-spacing:-19.491072pt;}
.ws6_c00084{word-spacing:-19.443840pt;}
.ws4_c00084{word-spacing:-19.254912pt;}
.ws2_c00084{word-spacing:-18.620160pt;}
.ws1_c00084{word-spacing:-17.792000pt;}
.ws8_c00084{word-spacing:-15.671364pt;}
.ws7_c00084{word-spacing:-15.427936pt;}
.ws0_c00084{word-spacing:-10.159744pt;}
.ws3_c00084{word-spacing:-9.024000pt;}
.ws9_c00084{word-spacing:0.000000pt;}
._14_c00084{margin-left:-11.994496pt;}
._10_c00084{margin-left:-7.130880pt;}
._11_c00084{margin-left:-5.987840pt;}
._e_c00084{margin-left:-5.084160pt;}
._f_c00084{margin-left:-4.072960pt;}
._15_c00084{margin-left:-2.644480pt;}
._d_c00084{margin-left:-1.468267pt;}
._6_c00084{width:1.163392pt;}
._9_c00084{width:2.880000pt;}
._8_c00084{width:4.416000pt;}
._1_c00084{width:5.331518pt;}
._0_c00084{width:6.267121pt;}
._12_c00084{width:7.400766pt;}
._7_c00084{width:8.768000pt;}
._5_c00084{width:9.920000pt;}
._3_c00084{width:11.328000pt;}
._13_c00084{width:12.280320pt;}
._16_c00084{width:13.967125pt;}
._4_c00084{width:14.912000pt;}
._a_c00084{width:16.384000pt;}
._c_c00084{width:21.524518pt;}
._b_c00084{width:22.891482pt;}
._2_c00084{width:24.384000pt;}
.fs4_c00084{font-size:32.000000pt;}
.fs2_c00084{font-size:37.120000pt;}
.fs3_c00084{font-size:49.920000pt;}
.fs5_c00084{font-size:52.480000pt;}
.fs7_c00084{font-size:53.333333pt;}
.fs6_c00084{font-size:54.095146pt;}
.fs0_c00084{font-size:64.000000pt;}
.fs1_c00084{font-size:65.969690pt;}
.y0_c00084{bottom:0.000000pt;}
.y3_c00084{bottom:2.280000pt;}
.y36_c00084{bottom:2.773467pt;}
.y35_c00084{bottom:30.884000pt;}
.y1_c00084{bottom:48.000000pt;}
.y34_c00084{bottom:49.316480pt;}
.y33_c00084{bottom:70.120000pt;}
.y32_c00084{bottom:80.358080pt;}
.y31_c00084{bottom:95.721600pt;}
.y30_c00084{bottom:111.400000pt;}
.y2f_c00084{bottom:116.840000pt;}
.y2e_c00084{bottom:127.077760pt;}
.y2d_c00084{bottom:142.441280pt;}
.y2c_c00084{bottom:158.119680pt;}
.y2b_c00084{bottom:173.798080pt;}
.y2a_c00084{bottom:189.161600pt;}
.y28_c00084{bottom:204.838080pt;}
.y29_c00084{bottom:204.840000pt;}
.y27_c00084{bottom:220.201600pt;}
.y26_c00084{bottom:241.320000pt;}
.y25_c00084{bottom:251.560000pt;}
.y24_c00084{bottom:257.000000pt;}
.y23_c00084{bottom:266.923200pt;}
.y22_c00084{bottom:282.601600pt;}
.y20_c00084{bottom:298.276480pt;}
.y21_c00084{bottom:298.280000pt;}
.y1f_c00084{bottom:313.640000pt;}
.y1e_c00084{bottom:319.080000pt;}
.y1d_c00084{bottom:342.760000pt;}
.y1c_c00084{bottom:446.760000pt;}
.y1b_c00084{bottom:465.320000pt;}
.y1a_c00084{bottom:484.200000pt;}
.y19_c00084{bottom:516.200000pt;}
.y18_c00084{bottom:548.200000pt;}
.y17_c00084{bottom:580.200000pt;}
.y16_c00084{bottom:598.760000pt;}
.y15_c00084{bottom:617.320000pt;}
.y14_c00084{bottom:636.200000pt;}
.y13_c00084{bottom:654.760000pt;}
.y12_c00084{bottom:686.760000pt;}
.y11_c00084{bottom:705.320000pt;}
.y10_c00084{bottom:724.200000pt;}
.yf_c00084{bottom:742.760000pt;}
.ye_c00084{bottom:774.760000pt;}
.yd_c00084{bottom:795.240000pt;}
.yc_c00084{bottom:815.400000pt;}
.yb_c00084{bottom:833.640000pt;}
.ya_c00084{bottom:852.520000pt;}
.y9_c00084{bottom:871.080000pt;}
.y8_c00084{bottom:889.640000pt;}
.y7_c00084{bottom:908.520000pt;}
.y6_c00084{bottom:927.080000pt;}
.y5_c00084{bottom:945.640000pt;}
.y4_c00084{bottom:964.520000pt;}
.y2_c00084{bottom:1011.880000pt;}
.h9_c00084{height:17.116000pt;}
.h6_c00084{height:28.992000pt;}
.ha_c00084{height:41.173333pt;}
.h7_c00084{height:41.761453pt;}
.h8_c00084{height:47.546880pt;}
.h4_c00084{height:50.928601pt;}
.h3_c00084{height:57.984000pt;}
.h5_c00084{height:60.510720pt;}
.h2_c00084{height:1067.880000pt;}
.h0_c00084{height:1122.520000pt;}
.h1_c00084{height:1122.666667pt;}
.w3_c00084{width:14.826667pt;}
.w2_c00084{width:767.960000pt;}
.w0_c00084{width:793.720000pt;}
.w1_c00084{width:794.000000pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:12.880000pt;}
.x2_c00084{left:100.480133pt;}
.x3_c00084{left:133.343733pt;}
.x9_c00084{left:150.090533pt;}
.x18_c00084{left:152.047200pt;}
.x5_c00084{left:173.121467pt;}
.x1b_c00084{left:174.388667pt;}
.x6_c00084{left:183.539733pt;}
.x1c_c00084{left:205.616800pt;}
.x4_c00084{left:213.294933pt;}
.x15_c00084{left:231.348933pt;}
.xa_c00084{left:237.690800pt;}
.x16_c00084{left:245.803733pt;}
.x1d_c00084{left:248.406533pt;}
.x22_c00084{left:263.450800pt;}
.xe_c00084{left:268.290667pt;}
.x7_c00084{left:276.374933pt;}
.x12_c00084{left:279.501333pt;}
.x17_c00084{left:298.250933pt;}
.xf_c00084{left:301.186533pt;}
.x23_c00084{left:322.702800pt;}
.xb_c00084{left:343.183333pt;}
.x1e_c00084{left:351.823867pt;}
.x1f_c00084{left:359.345067pt;}
.x19_c00084{left:390.188133pt;}
.x20_c00084{left:417.958933pt;}
.x21_c00084{left:421.665333pt;}
.x26_c00084{left:475.175467pt;}
.x1a_c00084{left:487.326400pt;}
.xc_c00084{left:497.419867pt;}
.x27_c00084{left:507.028267pt;}
.x13_c00084{left:509.509467pt;}
.x24_c00084{left:530.404267pt;}
.x10_c00084{left:541.364933pt;}
.x25_c00084{left:551.230133pt;}
.xd_c00084{left:583.392533pt;}
.x11_c00084{left:610.692000pt;}
.x8_c00084{left:640.325867pt;}
.x14_c00084{left:650.500000pt;}
.x28_c00084{left:682.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_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_6c9cdd445c80bfc361def95b.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.134000;font-style:normal;font-weight:normal;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_e4be568b035a048fa1910270.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;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:ff3_c00085;src:url('chunks/assets/font_d632e6384db15e8be9dadd89.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:0.787000;font-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_c00085{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls2_c00085{letter-spacing:0.000000px;}
.ls4_c00085{letter-spacing:0.239760px;}
.ls3_c00085{letter-spacing:0.399600px;}
.ls0_c00085{letter-spacing:5.976000px;}
.ls1_c00085{letter-spacing:6.159920px;}
.sc__c00085{text-shadow:none;}
.sc1_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00085{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc1_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00085{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00085{word-spacing:0.000000px;}
._0_c00085{margin-left:-1.118880px;}
._1_c00085{width:1.118880px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs2_c00085{font-size:53.280000px;}
.fs3_c00085{font-size:60.000000px;}
.fs0_c00085{font-size:72.000000px;}
.fs1_c00085{font-size:74.215901px;}
.y0_c00085{bottom:0.000000px;}
.y3_c00085{bottom:2.565000px;}
.y1e_c00085{bottom:3.120150px;}
.y19_c00085{bottom:25.560000px;}
.y1d_c00085{bottom:34.744500px;}
.y1c_c00085{bottom:35.280000px;}
.y1b_c00085{bottom:51.120000px;}
.y1_c00085{bottom:54.000000px;}
.y17_c00085{bottom:400.725000px;}
.y1a_c00085{bottom:426.645000px;}
.y16_c00085{bottom:436.725000px;}
.y15_c00085{bottom:472.725000px;}
.y14_c00085{bottom:509.085000px;}
.y13_c00085{bottom:545.085000px;}
.y12_c00085{bottom:581.085000px;}
.y11_c00085{bottom:617.085000px;}
.y10_c00085{bottom:653.085000px;}
.yf_c00085{bottom:689.085000px;}
.ye_c00085{bottom:725.085000px;}
.y18_c00085{bottom:760.365000px;}
.yd_c00085{bottom:761.085000px;}
.yc_c00085{bottom:797.085000px;}
.yb_c00085{bottom:833.085000px;}
.ya_c00085{bottom:869.085000px;}
.y9_c00085{bottom:905.085000px;}
.y8_c00085{bottom:941.085000px;}
.y7_c00085{bottom:977.085000px;}
.y6_c00085{bottom:1013.085000px;}
.y5_c00085{bottom:1049.085000px;}
.y4_c00085{bottom:1085.085000px;}
.y2_c00085{bottom:1138.365000px;}
.h8_c00085{height:19.255500px;}
.h5_c00085{height:38.160000px;}
.h9_c00085{height:46.320000px;}
.h6_c00085{height:48.271680px;}
.h4_c00085{height:57.294676px;}
.h7_c00085{height:63.720000px;}
.h3_c00085{height:65.232000px;}
.h2_c00085{height:1201.365000px;}
.h0_c00085{height:1262.835000px;}
.h1_c00085{height:1263.000000px;}
.w5_c00085{width:16.680000px;}
.w3_c00085{width:573.840000px;}
.w4_c00085{width:659.520000px;}
.w2_c00085{width:863.955000px;}
.w0_c00085{width:892.935000px;}
.w1_c00085{width:893.250000px;}
.x0_c00085{left:0.000000px;}
.x7_c00085{left:12.831300px;}
.x1_c00085{left:14.490000px;}
.x2_c00085{left:113.040150px;}
.x6_c00085{left:124.290000px;}
.x3_c00085{left:150.011700px;}
.x5_c00085{left:151.290000px;}
.x4_c00085{left:239.956800px;}
.x8_c00085{left:289.846050px;}
.x9_c00085{left:768.255000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls2_c00085{letter-spacing:0.000000pt;}
.ls4_c00085{letter-spacing:0.213120pt;}
.ls3_c00085{letter-spacing:0.355200pt;}
.ls0_c00085{letter-spacing:5.312000pt;}
.ls1_c00085{letter-spacing:5.475484pt;}
.ws0_c00085{word-spacing:0.000000pt;}
._0_c00085{margin-left:-0.994560pt;}
._1_c00085{width:0.994560pt;}
.fs2_c00085{font-size:47.360000pt;}
.fs3_c00085{font-size:53.333333pt;}
.fs0_c00085{font-size:64.000000pt;}
.fs1_c00085{font-size:65.969690pt;}
.y0_c00085{bottom:0.000000pt;}
.y3_c00085{bottom:2.280000pt;}
.y1e_c00085{bottom:2.773467pt;}
.y19_c00085{bottom:22.720000pt;}
.y1d_c00085{bottom:30.884000pt;}
.y1c_c00085{bottom:31.360000pt;}
.y1b_c00085{bottom:45.440000pt;}
.y1_c00085{bottom:48.000000pt;}
.y17_c00085{bottom:356.200000pt;}
.y1a_c00085{bottom:379.240000pt;}
.y16_c00085{bottom:388.200000pt;}
.y15_c00085{bottom:420.200000pt;}
.y14_c00085{bottom:452.520000pt;}
.y13_c00085{bottom:484.520000pt;}
.y12_c00085{bottom:516.520000pt;}
.y11_c00085{bottom:548.520000pt;}
.y10_c00085{bottom:580.520000pt;}
.yf_c00085{bottom:612.520000pt;}
.ye_c00085{bottom:644.520000pt;}
.y18_c00085{bottom:675.880000pt;}
.yd_c00085{bottom:676.520000pt;}
.yc_c00085{bottom:708.520000pt;}
.yb_c00085{bottom:740.520000pt;}
.ya_c00085{bottom:772.520000pt;}
.y9_c00085{bottom:804.520000pt;}
.y8_c00085{bottom:836.520000pt;}
.y7_c00085{bottom:868.520000pt;}
.y6_c00085{bottom:900.520000pt;}
.y5_c00085{bottom:932.520000pt;}
.y4_c00085{bottom:964.520000pt;}
.y2_c00085{bottom:1011.880000pt;}
.h8_c00085{height:17.116000pt;}
.h5_c00085{height:33.920000pt;}
.h9_c00085{height:41.173333pt;}
.h6_c00085{height:42.908160pt;}
.h4_c00085{height:50.928601pt;}
.h7_c00085{height:56.640000pt;}
.h3_c00085{height:57.984000pt;}
.h2_c00085{height:1067.880000pt;}
.h0_c00085{height:1122.520000pt;}
.h1_c00085{height:1122.666667pt;}
.w5_c00085{width:14.826667pt;}
.w3_c00085{width:510.080000pt;}
.w4_c00085{width:586.240000pt;}
.w2_c00085{width:767.960000pt;}
.w0_c00085{width:793.720000pt;}
.w1_c00085{width:794.000000pt;}
.x0_c00085{left:0.000000pt;}
.x7_c00085{left:11.405600pt;}
.x1_c00085{left:12.880000pt;}
.x2_c00085{left:100.480133pt;}
.x6_c00085{left:110.480000pt;}
.x3_c00085{left:133.343733pt;}
.x5_c00085{left:134.480000pt;}
.x4_c00085{left:213.294933pt;}
.x8_c00085{left:257.640933pt;}
.x9_c00085{left:682.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_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_28430d341ac049964dedd064.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.134000;font-style:normal;font-weight:normal;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_e4be568b035a048fa1910270.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;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:ff3_c00086;src:url('chunks/assets/font_96631fcb77c739339cfdbc99.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:0.787000;font-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_c00086{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls2_c00086{letter-spacing:0.000000px;}
.ls4_c00086{letter-spacing:0.202464px;}
.ls5_c00086{letter-spacing:0.239760px;}
.ls3_c00086{letter-spacing:0.399600px;}
.ls0_c00086{letter-spacing:5.976000px;}
.ls1_c00086{letter-spacing:6.159920px;}
.sc__c00086{text-shadow:none;}
.sc1_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00086{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc1_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00086{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00086{word-spacing:0.000000px;}
._0_c00086{margin-left:-1.118880px;}
._1_c00086{width:1.012320px;}
.fc0_c00086{color:rgb(0,0,0);}
.fs2_c00086{font-size:53.280000px;}
.fs3_c00086{font-size:60.000000px;}
.fs0_c00086{font-size:72.000000px;}
.fs1_c00086{font-size:74.215901px;}
.y0_c00086{bottom:0.000000px;}
.y3_c00086{bottom:2.565000px;}
.y29_c00086{bottom:3.120150px;}
.y22_c00086{bottom:24.120000px;}
.y25_c00086{bottom:24.840000px;}
.y28_c00086{bottom:34.744500px;}
.y21_c00086{bottom:39.960000px;}
.y24_c00086{bottom:40.320000px;}
.y27_c00086{bottom:40.680000px;}
.y1_c00086{bottom:54.000000px;}
.y1f_c00086{bottom:112.725000px;}
.y1e_c00086{bottom:148.725000px;}
.y26_c00086{bottom:149.085000px;}
.y1d_c00086{bottom:184.725000px;}
.y1c_c00086{bottom:220.725000px;}
.y1b_c00086{bottom:256.725000px;}
.y1a_c00086{bottom:292.725000px;}
.y19_c00086{bottom:328.725000px;}
.y18_c00086{bottom:364.725000px;}
.y17_c00086{bottom:400.725000px;}
.y16_c00086{bottom:436.725000px;}
.y23_c00086{bottom:472.365000px;}
.y15_c00086{bottom:472.725000px;}
.y14_c00086{bottom:509.085000px;}
.y13_c00086{bottom:545.085000px;}
.y12_c00086{bottom:581.085000px;}
.y11_c00086{bottom:617.085000px;}
.y10_c00086{bottom:653.085000px;}
.yf_c00086{bottom:689.085000px;}
.ye_c00086{bottom:725.085000px;}
.yd_c00086{bottom:761.085000px;}
.yc_c00086{bottom:797.085000px;}
.y20_c00086{bottom:832.365000px;}
.yb_c00086{bottom:833.085000px;}
.ya_c00086{bottom:869.085000px;}
.y9_c00086{bottom:905.085000px;}
.y8_c00086{bottom:941.085000px;}
.y7_c00086{bottom:977.085000px;}
.y6_c00086{bottom:1013.085000px;}
.y5_c00086{bottom:1049.085000px;}
.y4_c00086{bottom:1085.085000px;}
.y2_c00086{bottom:1138.365000px;}
.h9_c00086{height:19.255500px;}
.ha_c00086{height:46.320000px;}
.h6_c00086{height:48.271680px;}
.h5_c00086{height:52.560000px;}
.h7_c00086{height:52.920000px;}
.h8_c00086{height:53.280000px;}
.h4_c00086{height:57.294676px;}
.h3_c00086{height:65.232000px;}
.h2_c00086{height:1201.365000px;}
.h0_c00086{height:1262.835000px;}
.h1_c00086{height:1263.000000px;}
.w6_c00086{width:16.680000px;}
.w3_c00086{width:572.040000px;}
.w4_c00086{width:574.200000px;}
.w5_c00086{width:641.160000px;}
.w2_c00086{width:863.955000px;}
.w0_c00086{width:892.935000px;}
.w1_c00086{width:893.250000px;}
.x0_c00086{left:0.000000px;}
.xb_c00086{left:3.643500px;}
.x6_c00086{left:4.677150px;}
.x8_c00086{left:5.952000px;}
.x1_c00086{left:14.490000px;}
.x2_c00086{left:113.040150px;}
.xa_c00086{left:137.970000px;}
.x3_c00086{left:150.011700px;}
.x5_c00086{left:153.090000px;}
.x7_c00086{left:210.399750px;}
.x9_c00086{left:211.674600px;}
.x4_c00086{left:239.956800px;}
.xc_c00086{left:280.658250px;}
.xd_c00086{left:768.255000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls2_c00086{letter-spacing:0.000000pt;}
.ls4_c00086{letter-spacing:0.179968pt;}
.ls5_c00086{letter-spacing:0.213120pt;}
.ls3_c00086{letter-spacing:0.355200pt;}
.ls0_c00086{letter-spacing:5.312000pt;}
.ls1_c00086{letter-spacing:5.475484pt;}
.ws0_c00086{word-spacing:0.000000pt;}
._0_c00086{margin-left:-0.994560pt;}
._1_c00086{width:0.899840pt;}
.fs2_c00086{font-size:47.360000pt;}
.fs3_c00086{font-size:53.333333pt;}
.fs0_c00086{font-size:64.000000pt;}
.fs1_c00086{font-size:65.969690pt;}
.y0_c00086{bottom:0.000000pt;}
.y3_c00086{bottom:2.280000pt;}
.y29_c00086{bottom:2.773467pt;}
.y22_c00086{bottom:21.440000pt;}
.y25_c00086{bottom:22.080000pt;}
.y28_c00086{bottom:30.884000pt;}
.y21_c00086{bottom:35.520000pt;}
.y24_c00086{bottom:35.840000pt;}
.y27_c00086{bottom:36.160000pt;}
.y1_c00086{bottom:48.000000pt;}
.y1f_c00086{bottom:100.200000pt;}
.y1e_c00086{bottom:132.200000pt;}
.y26_c00086{bottom:132.520000pt;}
.y1d_c00086{bottom:164.200000pt;}
.y1c_c00086{bottom:196.200000pt;}
.y1b_c00086{bottom:228.200000pt;}
.y1a_c00086{bottom:260.200000pt;}
.y19_c00086{bottom:292.200000pt;}
.y18_c00086{bottom:324.200000pt;}
.y17_c00086{bottom:356.200000pt;}
.y16_c00086{bottom:388.200000pt;}
.y23_c00086{bottom:419.880000pt;}
.y15_c00086{bottom:420.200000pt;}
.y14_c00086{bottom:452.520000pt;}
.y13_c00086{bottom:484.520000pt;}
.y12_c00086{bottom:516.520000pt;}
.y11_c00086{bottom:548.520000pt;}
.y10_c00086{bottom:580.520000pt;}
.yf_c00086{bottom:612.520000pt;}
.ye_c00086{bottom:644.520000pt;}
.yd_c00086{bottom:676.520000pt;}
.yc_c00086{bottom:708.520000pt;}
.y20_c00086{bottom:739.880000pt;}
.yb_c00086{bottom:740.520000pt;}
.ya_c00086{bottom:772.520000pt;}
.y9_c00086{bottom:804.520000pt;}
.y8_c00086{bottom:836.520000pt;}
.y7_c00086{bottom:868.520000pt;}
.y6_c00086{bottom:900.520000pt;}
.y5_c00086{bottom:932.520000pt;}
.y4_c00086{bottom:964.520000pt;}
.y2_c00086{bottom:1011.880000pt;}
.h9_c00086{height:17.116000pt;}
.ha_c00086{height:41.173333pt;}
.h6_c00086{height:42.908160pt;}
.h5_c00086{height:46.720000pt;}
.h7_c00086{height:47.040000pt;}
.h8_c00086{height:47.360000pt;}
.h4_c00086{height:50.928601pt;}
.h3_c00086{height:57.984000pt;}
.h2_c00086{height:1067.880000pt;}
.h0_c00086{height:1122.520000pt;}
.h1_c00086{height:1122.666667pt;}
.w6_c00086{width:14.826667pt;}
.w3_c00086{width:508.480000pt;}
.w4_c00086{width:510.400000pt;}
.w5_c00086{width:569.920000pt;}
.w2_c00086{width:767.960000pt;}
.w0_c00086{width:793.720000pt;}
.w1_c00086{width:794.000000pt;}
.x0_c00086{left:0.000000pt;}
.xb_c00086{left:3.238667pt;}
.x6_c00086{left:4.157467pt;}
.x8_c00086{left:5.290667pt;}
.x1_c00086{left:12.880000pt;}
.x2_c00086{left:100.480133pt;}
.xa_c00086{left:122.640000pt;}
.x3_c00086{left:133.343733pt;}
.x5_c00086{left:136.080000pt;}
.x7_c00086{left:187.022000pt;}
.x9_c00086{left:188.155200pt;}
.x4_c00086{left:213.294933pt;}
.xc_c00086{left:249.474000pt;}
.xd_c00086{left:682.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_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_2d8bed450732ed37b58bbbc4.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.134000;font-style:normal;font-weight:normal;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_e4be568b035a048fa1910270.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;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:ff3_c00087;src:url('chunks/assets/font_afd4338d16e58c84bdba0e2e.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:0.787000;font-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_c00087{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls2_c00087{letter-spacing:0.000000px;}
.ls3_c00087{letter-spacing:0.399600px;}
.ls4_c00087{letter-spacing:0.596736px;}
.ls0_c00087{letter-spacing:5.976000px;}
.ls1_c00087{letter-spacing:6.159920px;}
.sc__c00087{text-shadow:none;}
.sc2_c00087{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00087{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc2_c00087{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00087{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00087{word-spacing:0.000000px;}
._0_c00087{margin-left:-1.118880px;}
.fc2_c00087{color:transparent;}
.fc1_c00087{color:rgb(79,129,189);}
.fc0_c00087{color:rgb(0,0,0);}
.fs2_c00087{font-size:53.280000px;}
.fs3_c00087{font-size:60.000000px;}
.fs0_c00087{font-size:72.000000px;}
.fs1_c00087{font-size:74.215901px;}
.y26_c00087{bottom:-16.560000px;}
.y0_c00087{bottom:0.000000px;}
.y3_c00087{bottom:2.565000px;}
.y29_c00087{bottom:3.120150px;}
.y25_c00087{bottom:14.400000px;}
.y23_c00087{bottom:25.560000px;}
.y28_c00087{bottom:34.744500px;}
.y22_c00087{bottom:41.399850px;}
.y1_c00087{bottom:54.000000px;}
.y27_c00087{bottom:76.365000px;}
.y20_c00087{bottom:76.725000px;}
.y1f_c00087{bottom:112.725000px;}
.y1e_c00087{bottom:148.725000px;}
.y1d_c00087{bottom:184.725000px;}
.y1c_c00087{bottom:220.725000px;}
.y1b_c00087{bottom:256.725000px;}
.y1a_c00087{bottom:292.725000px;}
.y19_c00087{bottom:328.725000px;}
.y18_c00087{bottom:364.725000px;}
.y17_c00087{bottom:400.725000px;}
.y16_c00087{bottom:436.725000px;}
.y15_c00087{bottom:472.725000px;}
.y24_c00087{bottom:481.365000px;}
.y14_c00087{bottom:509.085000px;}
.y13_c00087{bottom:545.085000px;}
.y12_c00087{bottom:581.085000px;}
.y11_c00087{bottom:617.085000px;}
.y10_c00087{bottom:653.085000px;}
.yf_c00087{bottom:689.085000px;}
.ye_c00087{bottom:725.085000px;}
.yd_c00087{bottom:761.085000px;}
.yc_c00087{bottom:797.085000px;}
.y21_c00087{bottom:805.365000px;}
.yb_c00087{bottom:833.085000px;}
.ya_c00087{bottom:869.085000px;}
.y9_c00087{bottom:905.085000px;}
.y8_c00087{bottom:941.085000px;}
.y7_c00087{bottom:977.085000px;}
.y6_c00087{bottom:1013.085000px;}
.y5_c00087{bottom:1049.085000px;}
.y4_c00087{bottom:1085.085000px;}
.y2_c00087{bottom:1138.365000px;}
.h8_c00087{height:19.255500px;}
.h7_c00087{height:27.000000px;}
.h9_c00087{height:46.320000px;}
.h6_c00087{height:48.271680px;}
.h5_c00087{height:54.000000px;}
.h4_c00087{height:57.294676px;}
.h3_c00087{height:65.232000px;}
.h2_c00087{height:1201.365000px;}
.h0_c00087{height:1262.835000px;}
.h1_c00087{height:1263.000000px;}
.w6_c00087{width:16.680000px;}
.w3_c00087{width:612.360000px;}
.w4_c00087{width:627.480000px;}
.w5_c00087{width:651.600000px;}
.w2_c00087{width:863.955000px;}
.w0_c00087{width:892.935000px;}
.w1_c00087{width:893.250000px;}
.x0_c00087{left:0.000000px;}
.xa_c00087{left:3.240150px;}
.x7_c00087{left:12.094800px;}
.x1_c00087{left:14.490000px;}
.x9_c00087{left:38.198700px;}
.xb_c00087{left:54.472650px;}
.x2_c00087{left:113.040150px;}
.x6_c00087{left:124.290000px;}
.x3_c00087{left:150.011700px;}
.x4_c00087{left:239.956800px;}
.x8_c00087{left:243.332100px;}
.x5_c00087{left:732.238800px;}
.xc_c00087{left:768.255000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls2_c00087{letter-spacing:0.000000pt;}
.ls3_c00087{letter-spacing:0.355200pt;}
.ls4_c00087{letter-spacing:0.530432pt;}
.ls0_c00087{letter-spacing:5.312000pt;}
.ls1_c00087{letter-spacing:5.475484pt;}
.ws0_c00087{word-spacing:0.000000pt;}
._0_c00087{margin-left:-0.994560pt;}
.fs2_c00087{font-size:47.360000pt;}
.fs3_c00087{font-size:53.333333pt;}
.fs0_c00087{font-size:64.000000pt;}
.fs1_c00087{font-size:65.969690pt;}
.y26_c00087{bottom:-14.720000pt;}
.y0_c00087{bottom:0.000000pt;}
.y3_c00087{bottom:2.280000pt;}
.y29_c00087{bottom:2.773467pt;}
.y25_c00087{bottom:12.800000pt;}
.y23_c00087{bottom:22.720000pt;}
.y28_c00087{bottom:30.884000pt;}
.y22_c00087{bottom:36.799867pt;}
.y1_c00087{bottom:48.000000pt;}
.y27_c00087{bottom:67.880000pt;}
.y20_c00087{bottom:68.200000pt;}
.y1f_c00087{bottom:100.200000pt;}
.y1e_c00087{bottom:132.200000pt;}
.y1d_c00087{bottom:164.200000pt;}
.y1c_c00087{bottom:196.200000pt;}
.y1b_c00087{bottom:228.200000pt;}
.y1a_c00087{bottom:260.200000pt;}
.y19_c00087{bottom:292.200000pt;}
.y18_c00087{bottom:324.200000pt;}
.y17_c00087{bottom:356.200000pt;}
.y16_c00087{bottom:388.200000pt;}
.y15_c00087{bottom:420.200000pt;}
.y24_c00087{bottom:427.880000pt;}
.y14_c00087{bottom:452.520000pt;}
.y13_c00087{bottom:484.520000pt;}
.y12_c00087{bottom:516.520000pt;}
.y11_c00087{bottom:548.520000pt;}
.y10_c00087{bottom:580.520000pt;}
.yf_c00087{bottom:612.520000pt;}
.ye_c00087{bottom:644.520000pt;}
.yd_c00087{bottom:676.520000pt;}
.yc_c00087{bottom:708.520000pt;}
.y21_c00087{bottom:715.880000pt;}
.yb_c00087{bottom:740.520000pt;}
.ya_c00087{bottom:772.520000pt;}
.y9_c00087{bottom:804.520000pt;}
.y8_c00087{bottom:836.520000pt;}
.y7_c00087{bottom:868.520000pt;}
.y6_c00087{bottom:900.520000pt;}
.y5_c00087{bottom:932.520000pt;}
.y4_c00087{bottom:964.520000pt;}
.y2_c00087{bottom:1011.880000pt;}
.h8_c00087{height:17.116000pt;}
.h7_c00087{height:24.000000pt;}
.h9_c00087{height:41.173333pt;}
.h6_c00087{height:42.908160pt;}
.h5_c00087{height:48.000000pt;}
.h4_c00087{height:50.928601pt;}
.h3_c00087{height:57.984000pt;}
.h2_c00087{height:1067.880000pt;}
.h0_c00087{height:1122.520000pt;}
.h1_c00087{height:1122.666667pt;}
.w6_c00087{width:14.826667pt;}
.w3_c00087{width:544.320000pt;}
.w4_c00087{width:557.760000pt;}
.w5_c00087{width:579.200000pt;}
.w2_c00087{width:767.960000pt;}
.w0_c00087{width:793.720000pt;}
.w1_c00087{width:794.000000pt;}
.x0_c00087{left:0.000000pt;}
.xa_c00087{left:2.880133pt;}
.x7_c00087{left:10.750933pt;}
.x1_c00087{left:12.880000pt;}
.x9_c00087{left:33.954400pt;}
.xb_c00087{left:48.420133pt;}
.x2_c00087{left:100.480133pt;}
.x6_c00087{left:110.480000pt;}
.x3_c00087{left:133.343733pt;}
.x4_c00087{left:213.294933pt;}
.x8_c00087{left:216.295200pt;}
.x5_c00087{left:650.878933pt;}
.xc_c00087{left:682.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_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_653e64febbbbd1662794a3f9.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_b46ee86ffd43b61b78f77118.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;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:ff3_c00088;src:url('chunks/assets/font_ccd5ba3304c3ef98c71f7ec9.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:0.787000;font-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_c00088{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v1_c00088{vertical-align:-30.240000px;}
.v3_c00088{vertical-align:-24.480000px;}
.v0_c00088{vertical-align:0.000000px;}
.v2_c00088{vertical-align:30.240000px;}
.lsc_c00088{letter-spacing:0.000000px;}
.ls1c_c00088{letter-spacing:0.236160px;}
.ls5_c00088{letter-spacing:0.250440px;}
.ls1f_c00088{letter-spacing:0.265680px;}
.lsa_c00088{letter-spacing:0.295200px;}
.ls19_c00088{letter-spacing:0.318816px;}
.ls8_c00088{letter-spacing:0.328628px;}
.ls17_c00088{letter-spacing:0.401472px;}
.ls1b_c00088{letter-spacing:0.413280px;}
.ls7_c00088{letter-spacing:0.421440px;}
.ls14_c00088{letter-spacing:0.425088px;}
.ls15_c00088{letter-spacing:0.478224px;}
.ls11_c00088{letter-spacing:0.531360px;}
.ls9_c00088{letter-spacing:0.584496px;}
.ls13_c00088{letter-spacing:0.696672px;}
.ls1e_c00088{letter-spacing:0.797040px;}
.ls1d_c00088{letter-spacing:0.826560px;}
.ls18_c00088{letter-spacing:0.991970px;}
.ls1a_c00088{letter-spacing:3.536496px;}
.lse_c00088{letter-spacing:5.149872px;}
.ls2_c00088{letter-spacing:5.163646px;}
.lsd_c00088{letter-spacing:5.335200px;}
.lsf_c00088{letter-spacing:5.430672px;}
.ls16_c00088{letter-spacing:5.514336px;}
.ls4_c00088{letter-spacing:5.975400px;}
.ls3_c00088{letter-spacing:5.976000px;}
.ls6_c00088{letter-spacing:5.994000px;}
.ls1_c00088{letter-spacing:6.158683px;}
.ls0_c00088{letter-spacing:6.159920px;}
.lsb_c00088{letter-spacing:6.671520px;}
.ls12_c00088{letter-spacing:8.407296px;}
.ls10_c00088{letter-spacing:12.912048px;}
.sc__c00088{text-shadow:none;}
.sc1_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00088{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc1_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00088{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00088{word-spacing:-25.992000px;}
.ws7_c00088{word-spacing:-21.927456px;}
.ws0_c00088{word-spacing:-21.256622px;}
.ws5_c00088{word-spacing:-21.043152px;}
.ws1_c00088{word-spacing:-20.947680px;}
.ws3_c00088{word-spacing:-20.762352px;}
.ws8_c00088{word-spacing:-16.731936px;}
.ws4_c00088{word-spacing:-11.609280px;}
.ws6_c00088{word-spacing:-10.008000px;}
.ws9_c00088{word-spacing:0.000000px;}
._10_c00088{margin-left:-9.092160px;}
._f_c00088{margin-left:-7.911360px;}
._11_c00088{margin-left:-6.789600px;}
._13_c00088{margin-left:-3.641472px;}
._14_c00088{margin-left:-2.616768px;}
._0_c00088{margin-left:-1.030920px;}
._9_c00088{width:1.944000px;}
._8_c00088{width:3.744000px;}
._6_c00088{width:5.616000px;}
._5_c00088{width:6.696000px;}
._12_c00088{width:8.140320px;}
._c_c00088{width:9.360000px;}
._e_c00088{width:12.293880px;}
._1_c00088{width:15.696000px;}
._d_c00088{width:17.640000px;}
._3_c00088{width:21.744000px;}
._4_c00088{width:23.082404px;}
._7_c00088{width:25.128000px;}
._a_c00088{width:30.960000px;}
._b_c00088{width:32.256000px;}
._2_c00088{width:48.096000px;}
._15_c00088{width:413.484360px;}
._16_c00088{width:414.583440px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs5_c00088{font-size:36.000000px;}
.fs4_c00088{font-size:41.760000px;}
.fs3_c00088{font-size:56.160000px;}
.fs2_c00088{font-size:57.888403px;}
.fs6_c00088{font-size:59.040000px;}
.fs8_c00088{font-size:60.000000px;}
.fs7_c00088{font-size:60.857039px;}
.fs0_c00088{font-size:72.000000px;}
.fs1_c00088{font-size:74.215901px;}
.y0_c00088{bottom:0.000000px;}
.y2e_c00088{bottom:3.120150px;}
.y2d_c00088{bottom:34.744500px;}
.y1_c00088{bottom:54.000000px;}
.y2c_c00088{bottom:55.482480px;}
.y2b_c00088{bottom:72.766440px;}
.y2a_c00088{bottom:90.404640px;}
.y29_c00088{bottom:107.688600px;}
.y28_c00088{bottom:125.326800px;}
.y26_c00088{bottom:142.962840px;}
.y27_c00088{bottom:142.965000px;}
.y25_c00088{bottom:160.246800px;}
.y24_c00088{bottom:184.005000px;}
.y23_c00088{bottom:195.521040px;}
.y22_c00088{bottom:212.805000px;}
.y21_c00088{bottom:218.925000px;}
.y20_c00088{bottom:245.565000px;}
.y1f_c00088{bottom:333.405000px;}
.y1e_c00088{bottom:354.285000px;}
.y1d_c00088{bottom:390.285000px;}
.y1c_c00088{bottom:426.285000px;}
.y1b_c00088{bottom:462.285000px;}
.y1a_c00088{bottom:498.285000px;}
.y19_c00088{bottom:534.285000px;}
.y18_c00088{bottom:570.285000px;}
.y17_c00088{bottom:591.525000px;}
.y16_c00088{bottom:612.405000px;}
.y15_c00088{bottom:633.285000px;}
.y14_c00088{bottom:654.525000px;}
.y13_c00088{bottom:690.525000px;}
.y12_c00088{bottom:726.525000px;}
.y11_c00088{bottom:764.685000px;}
.y10_c00088{bottom:802.845000px;}
.yf_c00088{bottom:838.845000px;}
.ye_c00088{bottom:860.085000px;}
.yd_c00088{bottom:880.965000px;}
.yc_c00088{bottom:901.845000px;}
.yb_c00088{bottom:923.085000px;}
.ya_c00088{bottom:943.965000px;}
.y9_c00088{bottom:964.845000px;}
.y7_c00088{bottom:986.085000px;}
.y8_c00088{bottom:993.645000px;}
.y6_c00088{bottom:1006.965000px;}
.y5_c00088{bottom:1027.845000px;}
.y4_c00088{bottom:1049.085000px;}
.y3_c00088{bottom:1085.085000px;}
.y2_c00088{bottom:1138.365000px;}
.ha_c00088{height:19.255500px;}
.h7_c00088{height:32.616000px;}
.h5_c00088{height:37.834560px;}
.hb_c00088{height:46.320000px;}
.h8_c00088{height:46.981634px;}
.h9_c00088{height:53.490240px;}
.h4_c00088{height:57.294676px;}
.h3_c00088{height:65.232000px;}
.h6_c00088{height:68.074560px;}
.h2_c00088{height:1201.365000px;}
.h0_c00088{height:1262.835000px;}
.h1_c00088{height:1263.000000px;}
.w3_c00088{width:16.680000px;}
.w2_c00088{width:863.955000px;}
.w0_c00088{width:892.935000px;}
.w1_c00088{width:893.250000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:14.490000px;}
.x2_c00088{left:113.040150px;}
.x15_c00088{left:136.205550px;}
.x3_c00088{left:150.011700px;}
.x16_c00088{left:152.701500px;}
.x14_c00088{left:159.441300px;}
.x4_c00088{left:185.002500px;}
.x10_c00088{left:218.031750px;}
.x11_c00088{left:252.051300px;}
.x12_c00088{left:319.047000px;}
.xb_c00088{left:354.785850px;}
.x7_c00088{left:383.121000px;}
.x13_c00088{left:390.001500px;}
.x17_c00088{left:391.666950px;}
.xf_c00088{left:416.478150px;}
.xc_c00088{left:432.778950px;}
.x18_c00088{left:434.355450px;}
.x8_c00088{left:440.476650px;}
.x5_c00088{left:450.144300px;}
.x9_c00088{left:456.159000px;}
.xa_c00088{left:526.320000px;}
.x6_c00088{left:628.029000px;}
.xd_c00088{left:656.426550px;}
.xe_c00088{left:721.441350px;}
.x19_c00088{left:768.255000px;}
@media print{
.v1_c00088{vertical-align:-26.880000pt;}
.v3_c00088{vertical-align:-21.760000pt;}
.v0_c00088{vertical-align:0.000000pt;}
.v2_c00088{vertical-align:26.880000pt;}
.lsc_c00088{letter-spacing:0.000000pt;}
.ls1c_c00088{letter-spacing:0.209920pt;}
.ls5_c00088{letter-spacing:0.222613pt;}
.ls1f_c00088{letter-spacing:0.236160pt;}
.lsa_c00088{letter-spacing:0.262400pt;}
.ls19_c00088{letter-spacing:0.283392pt;}
.ls8_c00088{letter-spacing:0.292114pt;}
.ls17_c00088{letter-spacing:0.356864pt;}
.ls1b_c00088{letter-spacing:0.367360pt;}
.ls7_c00088{letter-spacing:0.374613pt;}
.ls14_c00088{letter-spacing:0.377856pt;}
.ls15_c00088{letter-spacing:0.425088pt;}
.ls11_c00088{letter-spacing:0.472320pt;}
.ls9_c00088{letter-spacing:0.519552pt;}
.ls13_c00088{letter-spacing:0.619264pt;}
.ls1e_c00088{letter-spacing:0.708480pt;}
.ls1d_c00088{letter-spacing:0.734720pt;}
.ls18_c00088{letter-spacing:0.881751pt;}
.ls1a_c00088{letter-spacing:3.143552pt;}
.lse_c00088{letter-spacing:4.577664pt;}
.ls2_c00088{letter-spacing:4.589907pt;}
.lsd_c00088{letter-spacing:4.742400pt;}
.lsf_c00088{letter-spacing:4.827264pt;}
.ls16_c00088{letter-spacing:4.901632pt;}
.ls4_c00088{letter-spacing:5.311467pt;}
.ls3_c00088{letter-spacing:5.312000pt;}
.ls6_c00088{letter-spacing:5.328000pt;}
.ls1_c00088{letter-spacing:5.474385pt;}
.ls0_c00088{letter-spacing:5.475484pt;}
.lsb_c00088{letter-spacing:5.930240pt;}
.ls12_c00088{letter-spacing:7.473152pt;}
.ls10_c00088{letter-spacing:11.477376pt;}
.ws2_c00088{word-spacing:-23.104000pt;}
.ws7_c00088{word-spacing:-19.491072pt;}
.ws0_c00088{word-spacing:-18.894775pt;}
.ws5_c00088{word-spacing:-18.705024pt;}
.ws1_c00088{word-spacing:-18.620160pt;}
.ws3_c00088{word-spacing:-18.455424pt;}
.ws8_c00088{word-spacing:-14.872832pt;}
.ws4_c00088{word-spacing:-10.319360pt;}
.ws6_c00088{word-spacing:-8.896000pt;}
.ws9_c00088{word-spacing:0.000000pt;}
._10_c00088{margin-left:-8.081920pt;}
._f_c00088{margin-left:-7.032320pt;}
._11_c00088{margin-left:-6.035200pt;}
._13_c00088{margin-left:-3.236864pt;}
._14_c00088{margin-left:-2.326016pt;}
._0_c00088{margin-left:-0.916373pt;}
._9_c00088{width:1.728000pt;}
._8_c00088{width:3.328000pt;}
._6_c00088{width:4.992000pt;}
._5_c00088{width:5.952000pt;}
._12_c00088{width:7.235840pt;}
._c_c00088{width:8.320000pt;}
._e_c00088{width:10.927893pt;}
._1_c00088{width:13.952000pt;}
._d_c00088{width:15.680000pt;}
._3_c00088{width:19.328000pt;}
._4_c00088{width:20.517693pt;}
._7_c00088{width:22.336000pt;}
._a_c00088{width:27.520000pt;}
._b_c00088{width:28.672000pt;}
._2_c00088{width:42.752000pt;}
._15_c00088{width:367.541653pt;}
._16_c00088{width:368.518613pt;}
.fs5_c00088{font-size:32.000000pt;}
.fs4_c00088{font-size:37.120000pt;}
.fs3_c00088{font-size:49.920000pt;}
.fs2_c00088{font-size:51.456358pt;}
.fs6_c00088{font-size:52.480000pt;}
.fs8_c00088{font-size:53.333333pt;}
.fs7_c00088{font-size:54.095146pt;}
.fs0_c00088{font-size:64.000000pt;}
.fs1_c00088{font-size:65.969690pt;}
.y0_c00088{bottom:0.000000pt;}
.y2e_c00088{bottom:2.773467pt;}
.y2d_c00088{bottom:30.884000pt;}
.y1_c00088{bottom:48.000000pt;}
.y2c_c00088{bottom:49.317760pt;}
.y2b_c00088{bottom:64.681280pt;}
.y2a_c00088{bottom:80.359680pt;}
.y29_c00088{bottom:95.723200pt;}
.y28_c00088{bottom:111.401600pt;}
.y26_c00088{bottom:127.078080pt;}
.y27_c00088{bottom:127.080000pt;}
.y25_c00088{bottom:142.441600pt;}
.y24_c00088{bottom:163.560000pt;}
.y23_c00088{bottom:173.796480pt;}
.y22_c00088{bottom:189.160000pt;}
.y21_c00088{bottom:194.600000pt;}
.y20_c00088{bottom:218.280000pt;}
.y1f_c00088{bottom:296.360000pt;}
.y1e_c00088{bottom:314.920000pt;}
.y1d_c00088{bottom:346.920000pt;}
.y1c_c00088{bottom:378.920000pt;}
.y1b_c00088{bottom:410.920000pt;}
.y1a_c00088{bottom:442.920000pt;}
.y19_c00088{bottom:474.920000pt;}
.y18_c00088{bottom:506.920000pt;}
.y17_c00088{bottom:525.800000pt;}
.y16_c00088{bottom:544.360000pt;}
.y15_c00088{bottom:562.920000pt;}
.y14_c00088{bottom:581.800000pt;}
.y13_c00088{bottom:613.800000pt;}
.y12_c00088{bottom:645.800000pt;}
.y11_c00088{bottom:679.720000pt;}
.y10_c00088{bottom:713.640000pt;}
.yf_c00088{bottom:745.640000pt;}
.ye_c00088{bottom:764.520000pt;}
.yd_c00088{bottom:783.080000pt;}
.yc_c00088{bottom:801.640000pt;}
.yb_c00088{bottom:820.520000pt;}
.ya_c00088{bottom:839.080000pt;}
.y9_c00088{bottom:857.640000pt;}
.y7_c00088{bottom:876.520000pt;}
.y8_c00088{bottom:883.240000pt;}
.y6_c00088{bottom:895.080000pt;}
.y5_c00088{bottom:913.640000pt;}
.y4_c00088{bottom:932.520000pt;}
.y3_c00088{bottom:964.520000pt;}
.y2_c00088{bottom:1011.880000pt;}
.ha_c00088{height:17.116000pt;}
.h7_c00088{height:28.992000pt;}
.h5_c00088{height:33.630720pt;}
.hb_c00088{height:41.173333pt;}
.h8_c00088{height:41.761453pt;}
.h9_c00088{height:47.546880pt;}
.h4_c00088{height:50.928601pt;}
.h3_c00088{height:57.984000pt;}
.h6_c00088{height:60.510720pt;}
.h2_c00088{height:1067.880000pt;}
.h0_c00088{height:1122.520000pt;}
.h1_c00088{height:1122.666667pt;}
.w3_c00088{width:14.826667pt;}
.w2_c00088{width:767.960000pt;}
.w0_c00088{width:793.720000pt;}
.w1_c00088{width:794.000000pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:12.880000pt;}
.x2_c00088{left:100.480133pt;}
.x15_c00088{left:121.071600pt;}
.x3_c00088{left:133.343733pt;}
.x16_c00088{left:135.734667pt;}
.x14_c00088{left:141.725600pt;}
.x4_c00088{left:164.446667pt;}
.x10_c00088{left:193.806000pt;}
.x11_c00088{left:224.045600pt;}
.x12_c00088{left:283.597333pt;}
.xb_c00088{left:315.365200pt;}
.x7_c00088{left:340.552000pt;}
.x13_c00088{left:346.668000pt;}
.x17_c00088{left:348.148400pt;}
.xf_c00088{left:370.202800pt;}
.xc_c00088{left:384.692400pt;}
.x18_c00088{left:386.093733pt;}
.x8_c00088{left:391.534800pt;}
.x5_c00088{left:400.128267pt;}
.x9_c00088{left:405.474667pt;}
.xa_c00088{left:467.840000pt;}
.x6_c00088{left:558.248000pt;}
.xd_c00088{left:583.490267pt;}
.xe_c00088{left:641.281200pt;}
.x19_c00088{left:682.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_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_fa4bd6c1d90a75a12d336158.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_b8f65d86b089af6830d78a29.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;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:ff3_c00089;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00089;src:url('chunks/assets/font_e2ead4643fcecd11ce914b4f.woff2')format("woff");}.ff6_c00089{font-family:ff6_c00089;line-height:0.787000;font-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_c00089{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00089{vertical-align:-24.480000px;}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:30.240000px;}
.ls12_c00089{letter-spacing:0.000000px;}
.ls3_c00089{letter-spacing:0.157200px;}
.ls1c_c00089{letter-spacing:0.265680px;}
.lse_c00089{letter-spacing:0.295200px;}
.ls23_c00089{letter-spacing:0.318816px;}
.ls19_c00089{letter-spacing:0.330480px;}
.ls14_c00089{letter-spacing:0.395280px;}
.lsf_c00089{letter-spacing:0.531360px;}
.ls25_c00089{letter-spacing:0.547713px;}
.ls6_c00089{letter-spacing:0.559440px;}
.ls10_c00089{letter-spacing:0.560880px;}
.ls18_c00089{letter-spacing:0.667440px;}
.ls1b_c00089{letter-spacing:0.696672px;}
.ls4_c00089{letter-spacing:0.702240px;}
.lsd_c00089{letter-spacing:0.712027px;}
.ls24_c00089{letter-spacing:0.718113px;}
.ls1e_c00089{letter-spacing:0.743904px;}
.ls1f_c00089{letter-spacing:0.766799px;}
.lsc_c00089{letter-spacing:0.821570px;}
.ls15_c00089{letter-spacing:0.861840px;}
.lsa_c00089{letter-spacing:0.888364px;}
.ls9_c00089{letter-spacing:0.895044px;}
.ls17_c00089{letter-spacing:0.961838px;}
.lsb_c00089{letter-spacing:0.991970px;}
.ls1a_c00089{letter-spacing:1.028632px;}
.ls7_c00089{letter-spacing:1.235695px;}
.ls1d_c00089{letter-spacing:1.316592px;}
.ls26_c00089{letter-spacing:4.132800px;}
.ls22_c00089{letter-spacing:5.295888px;}
.ls11_c00089{letter-spacing:5.372640px;}
.ls13_c00089{letter-spacing:5.430672px;}
.ls21_c00089{letter-spacing:5.461200px;}
.ls27_c00089{letter-spacing:5.514336px;}
.ls5_c00089{letter-spacing:5.976000px;}
.ls1_c00089{letter-spacing:5.978400px;}
.ls0_c00089{letter-spacing:6.159920px;}
.ls16_c00089{letter-spacing:7.212240px;}
.ls8_c00089{letter-spacing:7.215000px;}
.ls20_c00089{letter-spacing:9.865584px;}
.ls2_c00089{letter-spacing:54.864000px;}
.sc__c00089{text-shadow:none;}
.sc1_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00089{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc1_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00089{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00089{word-spacing:-25.992000px;}
.ws12_c00089{word-spacing:-21.927456px;}
.wsf_c00089{word-spacing:-21.874320px;}
.wse_c00089{word-spacing:-21.709008px;}
.ws0_c00089{word-spacing:-21.043152px;}
.ws2_c00089{word-spacing:-20.016000px;}
.ws4_c00089{word-spacing:-19.804513px;}
.ws8_c00089{word-spacing:-19.597451px;}
.ws6_c00089{word-spacing:-19.530657px;}
.ws5_c00089{word-spacing:-19.463862px;}
.ws7_c00089{word-spacing:-19.457183px;}
.ws9_c00089{word-spacing:-17.910227px;}
.wsa_c00089{word-spacing:-17.739827px;}
.wsc_c00089{word-spacing:-17.685056px;}
.ws10_c00089{word-spacing:-17.636370px;}
.wsb_c00089{word-spacing:-17.630284px;}
.ws11_c00089{word-spacing:-16.944480px;}
.ws1_c00089{word-spacing:-11.609280px;}
.wsd_c00089{word-spacing:-10.008000px;}
.ws13_c00089{word-spacing:0.000000px;}
._10_c00089{margin-left:-10.391040px;}
._f_c00089{margin-left:-9.269280px;}
._e_c00089{margin-left:-7.776000px;}
._d_c00089{margin-left:-6.544800px;}
._13_c00089{margin-left:-4.368960px;}
._12_c00089{margin-left:-3.365280px;}
._0_c00089{margin-left:-1.179360px;}
._2_c00089{width:1.296000px;}
._6_c00089{width:3.024000px;}
._4_c00089{width:4.248000px;}
._9_c00089{width:5.256000px;}
._5_c00089{width:6.552000px;}
._8_c00089{width:7.704000px;}
._11_c00089{width:9.741600px;}
._1_c00089{width:12.096000px;}
._7_c00089{width:14.616000px;}
._3_c00089{width:16.344000px;}
._b_c00089{width:26.351400px;}
._c_c00089{width:27.432600px;}
._a_c00089{width:63.576000px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs8_c00089{font-size:36.000000px;}
.fs3_c00089{font-size:41.760000px;}
.fs2_c00089{font-size:56.160000px;}
.fs6_c00089{font-size:59.040000px;}
.fs9_c00089{font-size:60.000000px;}
.fs7_c00089{font-size:60.857039px;}
.fs5_c00089{font-size:64.800000px;}
.fs4_c00089{font-size:66.794311px;}
.fs0_c00089{font-size:72.000000px;}
.fs1_c00089{font-size:74.215901px;}
.y0_c00089{bottom:0.000000px;}
.y34_c00089{bottom:3.120150px;}
.y33_c00089{bottom:34.744500px;}
.y1_c00089{bottom:54.000000px;}
.y32_c00089{bottom:55.485000px;}
.y31_c00089{bottom:61.605000px;}
.y30_c00089{bottom:72.765000px;}
.y2f_c00089{bottom:72.766800px;}
.y2e_c00089{bottom:96.525000px;}
.y2d_c00089{bottom:107.685000px;}
.y2c_c00089{bottom:113.805000px;}
.y2b_c00089{bottom:125.325000px;}
.y2a_c00089{bottom:131.445000px;}
.y28_c00089{bottom:142.961040px;}
.y29_c00089{bottom:142.965000px;}
.y27_c00089{bottom:160.245000px;}
.y26_c00089{bottom:184.005000px;}
.y25_c00089{bottom:210.645000px;}
.y24_c00089{bottom:294.885000px;}
.y23_c00089{bottom:294.886800px;}
.y22_c00089{bottom:312.525000px;}
.y21_c00089{bottom:345.285000px;}
.y1e_c00089{bottom:367.245000px;}
.y20_c00089{bottom:370.845000px;}
.y1d_c00089{bottom:388.125000px;}
.y1f_c00089{bottom:389.925000px;}
.y1c_c00089{bottom:409.005000px;}
.y1b_c00089{bottom:445.725000px;}
.y1a_c00089{bottom:466.965000px;}
.y19_c00089{bottom:487.845000px;}
.y18_c00089{bottom:508.725000px;}
.y17_c00089{bottom:544.725000px;}
.y16_c00089{bottom:565.965000px;}
.y15_c00089{bottom:586.845000px;}
.y14_c00089{bottom:607.725000px;}
.y13_c00089{bottom:628.965000px;}
.y12_c00089{bottom:649.845000px;}
.y11_c00089{bottom:671.085000px;}
.y10_c00089{bottom:691.965000px;}
.yf_c00089{bottom:727.965000px;}
.ye_c00089{bottom:763.965000px;}
.yd_c00089{bottom:784.845000px;}
.yc_c00089{bottom:820.845000px;}
.yb_c00089{bottom:856.845000px;}
.ya_c00089{bottom:878.085000px;}
.y9_c00089{bottom:898.965000px;}
.y8_c00089{bottom:919.845000px;}
.y7_c00089{bottom:955.845000px;}
.y6_c00089{bottom:977.085000px;}
.y5_c00089{bottom:1013.085000px;}
.y4_c00089{bottom:1049.085000px;}
.y3_c00089{bottom:1085.085000px;}
.y2_c00089{bottom:1138.365000px;}
.hb_c00089{height:19.255500px;}
.ha_c00089{height:32.616000px;}
.hc_c00089{height:46.320000px;}
.h9_c00089{height:46.981634px;}
.h6_c00089{height:51.565208px;}
.h8_c00089{height:53.490240px;}
.h4_c00089{height:57.294676px;}
.h7_c00089{height:58.708800px;}
.h3_c00089{height:65.232000px;}
.h5_c00089{height:68.074560px;}
.h2_c00089{height:1201.365000px;}
.h0_c00089{height:1262.835000px;}
.h1_c00089{height:1263.000000px;}
.w7_c00089{width:16.680000px;}
.w3_c00089{width:60.840000px;}
.w5_c00089{width:84.240000px;}
.w4_c00089{width:105.480000px;}
.w6_c00089{width:394.560000px;}
.w2_c00089{width:863.955000px;}
.w0_c00089{width:892.935000px;}
.w1_c00089{width:893.250000px;}
.x0_c00089{left:0.000000px;}
.x18_c00089{left:7.920150px;}
.x1_c00089{left:14.490000px;}
.x1a_c00089{left:36.575550px;}
.x1d_c00089{left:48.262200px;}
.x21_c00089{left:50.571600px;}
.x22_c00089{left:89.032500px;}
.x2_c00089{left:113.040150px;}
.x17_c00089{left:119.610000px;}
.x32_c00089{left:122.213700px;}
.x8_c00089{left:140.037600px;}
.x7_c00089{left:143.027700px;}
.x5_c00089{left:148.031550px;}
.x3_c00089{left:150.011700px;}
.x34_c00089{left:158.888250px;}
.x33_c00089{left:165.562800px;}
.x2f_c00089{left:167.218950px;}
.x1e_c00089{left:179.019000px;}
.x19_c00089{left:181.170000px;}
.x4_c00089{left:185.002500px;}
.x31_c00089{left:188.863050px;}
.x2b_c00089{left:197.680950px;}
.x23_c00089{left:219.725100px;}
.x2c_c00089{left:234.310200px;}
.x16_c00089{left:248.073900px;}
.x24_c00089{left:256.399650px;}
.x1f_c00089{left:285.314250px;}
.x1b_c00089{left:287.370000px;}
.x25_c00089{left:323.020350px;}
.x11_c00089{left:329.436000px;}
.x20_c00089{left:332.998650px;}
.x9_c00089{left:341.397600px;}
.xa_c00089{left:354.393300px;}
.x2d_c00089{left:356.479200px;}
.x26_c00089{left:358.839900px;}
.x1c_c00089{left:372.330000px;}
.x12_c00089{left:382.327200px;}
.x2e_c00089{left:391.443600px;}
.x27_c00089{left:396.894000px;}
.xb_c00089{left:410.072700px;}
.xc_c00089{left:424.076700px;}
.x28_c00089{left:432.728400px;}
.xf_c00089{left:486.111750px;}
.x10_c00089{left:497.109450px;}
.x35_c00089{left:554.761500px;}
.x36_c00089{left:566.431200px;}
.x6_c00089{left:593.092200px;}
.x30_c00089{left:629.726700px;}
.xd_c00089{left:656.809650px;}
.x13_c00089{left:665.601150px;}
.xe_c00089{left:670.813500px;}
.x29_c00089{left:707.040900px;}
.x14_c00089{left:708.584400px;}
.x15_c00089{left:739.392300px;}
.x2a_c00089{left:750.390000px;}
.x37_c00089{left:768.255000px;}
@media print{
.v2_c00089{vertical-align:-21.760000pt;}
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:26.880000pt;}
.ls12_c00089{letter-spacing:0.000000pt;}
.ls3_c00089{letter-spacing:0.139733pt;}
.ls1c_c00089{letter-spacing:0.236160pt;}
.lse_c00089{letter-spacing:0.262400pt;}
.ls23_c00089{letter-spacing:0.283392pt;}
.ls19_c00089{letter-spacing:0.293760pt;}
.ls14_c00089{letter-spacing:0.351360pt;}
.lsf_c00089{letter-spacing:0.472320pt;}
.ls25_c00089{letter-spacing:0.486856pt;}
.ls6_c00089{letter-spacing:0.497280pt;}
.ls10_c00089{letter-spacing:0.498560pt;}
.ls18_c00089{letter-spacing:0.593280pt;}
.ls1b_c00089{letter-spacing:0.619264pt;}
.ls4_c00089{letter-spacing:0.624213pt;}
.lsd_c00089{letter-spacing:0.632913pt;}
.ls24_c00089{letter-spacing:0.638323pt;}
.ls1e_c00089{letter-spacing:0.661248pt;}
.ls1f_c00089{letter-spacing:0.681599pt;}
.lsc_c00089{letter-spacing:0.730284pt;}
.ls15_c00089{letter-spacing:0.766080pt;}
.lsa_c00089{letter-spacing:0.789657pt;}
.ls9_c00089{letter-spacing:0.795594pt;}
.ls17_c00089{letter-spacing:0.854967pt;}
.lsb_c00089{letter-spacing:0.881751pt;}
.ls1a_c00089{letter-spacing:0.914340pt;}
.ls7_c00089{letter-spacing:1.098395pt;}
.ls1d_c00089{letter-spacing:1.170304pt;}
.ls26_c00089{letter-spacing:3.673600pt;}
.ls22_c00089{letter-spacing:4.707456pt;}
.ls11_c00089{letter-spacing:4.775680pt;}
.ls13_c00089{letter-spacing:4.827264pt;}
.ls21_c00089{letter-spacing:4.854400pt;}
.ls27_c00089{letter-spacing:4.901632pt;}
.ls5_c00089{letter-spacing:5.312000pt;}
.ls1_c00089{letter-spacing:5.314133pt;}
.ls0_c00089{letter-spacing:5.475484pt;}
.ls16_c00089{letter-spacing:6.410880pt;}
.ls8_c00089{letter-spacing:6.413333pt;}
.ls20_c00089{letter-spacing:8.769408pt;}
.ls2_c00089{letter-spacing:48.768000pt;}
.ws3_c00089{word-spacing:-23.104000pt;}
.ws12_c00089{word-spacing:-19.491072pt;}
.wsf_c00089{word-spacing:-19.443840pt;}
.wse_c00089{word-spacing:-19.296896pt;}
.ws0_c00089{word-spacing:-18.705024pt;}
.ws2_c00089{word-spacing:-17.792000pt;}
.ws4_c00089{word-spacing:-17.604012pt;}
.ws8_c00089{word-spacing:-17.419956pt;}
.ws6_c00089{word-spacing:-17.360584pt;}
.ws5_c00089{word-spacing:-17.301211pt;}
.ws7_c00089{word-spacing:-17.295274pt;}
.ws9_c00089{word-spacing:-15.920201pt;}
.wsa_c00089{word-spacing:-15.768735pt;}
.wsc_c00089{word-spacing:-15.720049pt;}
.ws10_c00089{word-spacing:-15.676773pt;}
.wsb_c00089{word-spacing:-15.671364pt;}
.ws11_c00089{word-spacing:-15.061760pt;}
.ws1_c00089{word-spacing:-10.319360pt;}
.wsd_c00089{word-spacing:-8.896000pt;}
.ws13_c00089{word-spacing:0.000000pt;}
._10_c00089{margin-left:-9.236480pt;}
._f_c00089{margin-left:-8.239360pt;}
._e_c00089{margin-left:-6.912000pt;}
._d_c00089{margin-left:-5.817600pt;}
._13_c00089{margin-left:-3.883520pt;}
._12_c00089{margin-left:-2.991360pt;}
._0_c00089{margin-left:-1.048320pt;}
._2_c00089{width:1.152000pt;}
._6_c00089{width:2.688000pt;}
._4_c00089{width:3.776000pt;}
._9_c00089{width:4.672000pt;}
._5_c00089{width:5.824000pt;}
._8_c00089{width:6.848000pt;}
._11_c00089{width:8.659200pt;}
._1_c00089{width:10.752000pt;}
._7_c00089{width:12.992000pt;}
._3_c00089{width:14.528000pt;}
._b_c00089{width:23.423467pt;}
._c_c00089{width:24.384533pt;}
._a_c00089{width:56.512000pt;}
.fs8_c00089{font-size:32.000000pt;}
.fs3_c00089{font-size:37.120000pt;}
.fs2_c00089{font-size:49.920000pt;}
.fs6_c00089{font-size:52.480000pt;}
.fs9_c00089{font-size:53.333333pt;}
.fs7_c00089{font-size:54.095146pt;}
.fs5_c00089{font-size:57.600000pt;}
.fs4_c00089{font-size:59.372721pt;}
.fs0_c00089{font-size:64.000000pt;}
.fs1_c00089{font-size:65.969690pt;}
.y0_c00089{bottom:0.000000pt;}
.y34_c00089{bottom:2.773467pt;}
.y33_c00089{bottom:30.884000pt;}
.y1_c00089{bottom:48.000000pt;}
.y32_c00089{bottom:49.320000pt;}
.y31_c00089{bottom:54.760000pt;}
.y30_c00089{bottom:64.680000pt;}
.y2f_c00089{bottom:64.681600pt;}
.y2e_c00089{bottom:85.800000pt;}
.y2d_c00089{bottom:95.720000pt;}
.y2c_c00089{bottom:101.160000pt;}
.y2b_c00089{bottom:111.400000pt;}
.y2a_c00089{bottom:116.840000pt;}
.y28_c00089{bottom:127.076480pt;}
.y29_c00089{bottom:127.080000pt;}
.y27_c00089{bottom:142.440000pt;}
.y26_c00089{bottom:163.560000pt;}
.y25_c00089{bottom:187.240000pt;}
.y24_c00089{bottom:262.120000pt;}
.y23_c00089{bottom:262.121600pt;}
.y22_c00089{bottom:277.800000pt;}
.y21_c00089{bottom:306.920000pt;}
.y1e_c00089{bottom:326.440000pt;}
.y20_c00089{bottom:329.640000pt;}
.y1d_c00089{bottom:345.000000pt;}
.y1f_c00089{bottom:346.600000pt;}
.y1c_c00089{bottom:363.560000pt;}
.y1b_c00089{bottom:396.200000pt;}
.y1a_c00089{bottom:415.080000pt;}
.y19_c00089{bottom:433.640000pt;}
.y18_c00089{bottom:452.200000pt;}
.y17_c00089{bottom:484.200000pt;}
.y16_c00089{bottom:503.080000pt;}
.y15_c00089{bottom:521.640000pt;}
.y14_c00089{bottom:540.200000pt;}
.y13_c00089{bottom:559.080000pt;}
.y12_c00089{bottom:577.640000pt;}
.y11_c00089{bottom:596.520000pt;}
.y10_c00089{bottom:615.080000pt;}
.yf_c00089{bottom:647.080000pt;}
.ye_c00089{bottom:679.080000pt;}
.yd_c00089{bottom:697.640000pt;}
.yc_c00089{bottom:729.640000pt;}
.yb_c00089{bottom:761.640000pt;}
.ya_c00089{bottom:780.520000pt;}
.y9_c00089{bottom:799.080000pt;}
.y8_c00089{bottom:817.640000pt;}
.y7_c00089{bottom:849.640000pt;}
.y6_c00089{bottom:868.520000pt;}
.y5_c00089{bottom:900.520000pt;}
.y4_c00089{bottom:932.520000pt;}
.y3_c00089{bottom:964.520000pt;}
.y2_c00089{bottom:1011.880000pt;}
.hb_c00089{height:17.116000pt;}
.ha_c00089{height:28.992000pt;}
.hc_c00089{height:41.173333pt;}
.h9_c00089{height:41.761453pt;}
.h6_c00089{height:45.835741pt;}
.h8_c00089{height:47.546880pt;}
.h4_c00089{height:50.928601pt;}
.h7_c00089{height:52.185600pt;}
.h3_c00089{height:57.984000pt;}
.h5_c00089{height:60.510720pt;}
.h2_c00089{height:1067.880000pt;}
.h0_c00089{height:1122.520000pt;}
.h1_c00089{height:1122.666667pt;}
.w7_c00089{width:14.826667pt;}
.w3_c00089{width:54.080000pt;}
.w5_c00089{width:74.880000pt;}
.w4_c00089{width:93.760000pt;}
.w6_c00089{width:350.720000pt;}
.w2_c00089{width:767.960000pt;}
.w0_c00089{width:793.720000pt;}
.w1_c00089{width:794.000000pt;}
.x0_c00089{left:0.000000pt;}
.x18_c00089{left:7.040133pt;}
.x1_c00089{left:12.880000pt;}
.x1a_c00089{left:32.511600pt;}
.x1d_c00089{left:42.899733pt;}
.x21_c00089{left:44.952533pt;}
.x22_c00089{left:79.140000pt;}
.x2_c00089{left:100.480133pt;}
.x17_c00089{left:106.320000pt;}
.x32_c00089{left:108.634400pt;}
.x8_c00089{left:124.477867pt;}
.x7_c00089{left:127.135733pt;}
.x5_c00089{left:131.583600pt;}
.x3_c00089{left:133.343733pt;}
.x34_c00089{left:141.234000pt;}
.x33_c00089{left:147.166933pt;}
.x2f_c00089{left:148.639067pt;}
.x1e_c00089{left:159.128000pt;}
.x19_c00089{left:161.040000pt;}
.x4_c00089{left:164.446667pt;}
.x31_c00089{left:167.878267pt;}
.x2b_c00089{left:175.716400pt;}
.x23_c00089{left:195.311200pt;}
.x2c_c00089{left:208.275733pt;}
.x16_c00089{left:220.510133pt;}
.x24_c00089{left:227.910800pt;}
.x1f_c00089{left:253.612667pt;}
.x1b_c00089{left:255.440000pt;}
.x25_c00089{left:287.129200pt;}
.x11_c00089{left:292.832000pt;}
.x20_c00089{left:295.998800pt;}
.x9_c00089{left:303.464533pt;}
.xa_c00089{left:315.016267pt;}
.x2d_c00089{left:316.870400pt;}
.x26_c00089{left:318.968800pt;}
.x1c_c00089{left:330.960000pt;}
.x12_c00089{left:339.846400pt;}
.x2e_c00089{left:347.949867pt;}
.x27_c00089{left:352.794667pt;}
.xb_c00089{left:364.509067pt;}
.xc_c00089{left:376.957067pt;}
.x28_c00089{left:384.647467pt;}
.xf_c00089{left:432.099333pt;}
.x10_c00089{left:441.875067pt;}
.x35_c00089{left:493.121333pt;}
.x36_c00089{left:503.494400pt;}
.x6_c00089{left:527.193067pt;}
.x30_c00089{left:559.757067pt;}
.xd_c00089{left:583.830800pt;}
.x13_c00089{left:591.645467pt;}
.xe_c00089{left:596.278667pt;}
.x29_c00089{left:628.480800pt;}
.x14_c00089{left:629.852800pt;}
.x15_c00089{left:657.237600pt;}
.x2a_c00089{left:667.013333pt;}
.x37_c00089{left:682.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_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_8c485dee8f289b74bcdda8bc.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.134000;font-style:normal;font-weight:normal;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_fdb827981bbacb78e2a158b3.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;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:ff3_c00090;src:url('chunks/assets/font_1d79aeec08e51c4993f1e9e3.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:0.787000;font-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_c00090{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls6_c00090{letter-spacing:0.000000px;}
.ls7_c00090{letter-spacing:0.265680px;}
.ls3_c00090{letter-spacing:0.295200px;}
.lsb_c00090{letter-spacing:0.478224px;}
.ls2_c00090{letter-spacing:0.531360px;}
.ls4_c00090{letter-spacing:0.560880px;}
.ls8_c00090{letter-spacing:0.584496px;}
.ls9_c00090{letter-spacing:0.690768px;}
.lsc_c00090{letter-spacing:0.696672px;}
.ls1_c00090{letter-spacing:0.712027px;}
.lsa_c00090{letter-spacing:0.743904px;}
.ls5_c00090{letter-spacing:5.976000px;}
.ls0_c00090{letter-spacing:6.159920px;}
.sc__c00090{text-shadow:none;}
.sc1_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00090{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc1_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00090{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00090{word-spacing:-17.630284px;}
.ws1_c00090{word-spacing:0.000000px;}
._1_c00090{margin-left:-1.062720px;}
._0_c00090{width:1.594080px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs3_c00090{font-size:59.040000px;}
.fs4_c00090{font-size:60.000000px;}
.fs2_c00090{font-size:60.857039px;}
.fs0_c00090{font-size:72.000000px;}
.fs1_c00090{font-size:74.215901px;}
.y0_c00090{bottom:0.000000px;}
.y7_c00090{bottom:3.120150px;}
.y6_c00090{bottom:34.744500px;}
.y1_c00090{bottom:54.000000px;}
.y5_c00090{bottom:1053.402840px;}
.y4_c00090{bottom:1070.686800px;}
.y3_c00090{bottom:1088.325000px;}
.y2_c00090{bottom:1138.365000px;}
.h7_c00090{height:19.255500px;}
.h8_c00090{height:46.320000px;}
.h5_c00090{height:46.981634px;}
.h6_c00090{height:53.490240px;}
.h4_c00090{height:57.294676px;}
.h3_c00090{height:65.232000px;}
.h2_c00090{height:1201.365000px;}
.h0_c00090{height:1262.835000px;}
.h1_c00090{height:1263.000000px;}
.w3_c00090{width:16.680000px;}
.w2_c00090{width:863.955000px;}
.w0_c00090{width:892.935000px;}
.w1_c00090{width:893.250000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:14.490000px;}
.x2_c00090{left:113.040150px;}
.x5_c00090{left:133.034550px;}
.x3_c00090{left:150.011700px;}
.x4_c00090{left:185.002500px;}
.x6_c00090{left:768.255000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls6_c00090{letter-spacing:0.000000pt;}
.ls7_c00090{letter-spacing:0.236160pt;}
.ls3_c00090{letter-spacing:0.262400pt;}
.lsb_c00090{letter-spacing:0.425088pt;}
.ls2_c00090{letter-spacing:0.472320pt;}
.ls4_c00090{letter-spacing:0.498560pt;}
.ls8_c00090{letter-spacing:0.519552pt;}
.ls9_c00090{letter-spacing:0.614016pt;}
.lsc_c00090{letter-spacing:0.619264pt;}
.ls1_c00090{letter-spacing:0.632913pt;}
.lsa_c00090{letter-spacing:0.661248pt;}
.ls5_c00090{letter-spacing:5.312000pt;}
.ls0_c00090{letter-spacing:5.475484pt;}
.ws0_c00090{word-spacing:-15.671364pt;}
.ws1_c00090{word-spacing:0.000000pt;}
._1_c00090{margin-left:-0.944640pt;}
._0_c00090{width:1.416960pt;}
.fs3_c00090{font-size:52.480000pt;}
.fs4_c00090{font-size:53.333333pt;}
.fs2_c00090{font-size:54.095146pt;}
.fs0_c00090{font-size:64.000000pt;}
.fs1_c00090{font-size:65.969690pt;}
.y0_c00090{bottom:0.000000pt;}
.y7_c00090{bottom:2.773467pt;}
.y6_c00090{bottom:30.884000pt;}
.y1_c00090{bottom:48.000000pt;}
.y5_c00090{bottom:936.358080pt;}
.y4_c00090{bottom:951.721600pt;}
.y3_c00090{bottom:967.400000pt;}
.y2_c00090{bottom:1011.880000pt;}
.h7_c00090{height:17.116000pt;}
.h8_c00090{height:41.173333pt;}
.h5_c00090{height:41.761453pt;}
.h6_c00090{height:47.546880pt;}
.h4_c00090{height:50.928601pt;}
.h3_c00090{height:57.984000pt;}
.h2_c00090{height:1067.880000pt;}
.h0_c00090{height:1122.520000pt;}
.h1_c00090{height:1122.666667pt;}
.w3_c00090{width:14.826667pt;}
.w2_c00090{width:767.960000pt;}
.w0_c00090{width:793.720000pt;}
.w1_c00090{width:794.000000pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:12.880000pt;}
.x2_c00090{left:100.480133pt;}
.x5_c00090{left:118.252933pt;}
.x3_c00090{left:133.343733pt;}
.x4_c00090{left:164.446667pt;}
.x6_c00090{left:682.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_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_1dff2992abe9681e4e0d0372.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_f75ebcc337fd19ef56879513.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;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:ff3_c00091;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_6eedc6698ca464e28822cf3f.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:0.787000;font-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_c00091{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00091{vertical-align:-24.480000px;}
.v0_c00091{vertical-align:0.000000px;}
.v1_c00091{vertical-align:30.240000px;}
.lsc_c00091{letter-spacing:-0.179568px;}
.ls9_c00091{letter-spacing:0.000000px;}
.ls4_c00091{letter-spacing:0.009840px;}
.ls3_c00091{letter-spacing:0.138240px;}
.ls11_c00091{letter-spacing:0.144000px;}
.ls6_c00091{letter-spacing:0.236160px;}
.lsf_c00091{letter-spacing:0.265680px;}
.ls7_c00091{letter-spacing:0.295200px;}
.ls19_c00091{letter-spacing:0.318816px;}
.ls13_c00091{letter-spacing:0.371952px;}
.ls16_c00091{letter-spacing:0.425088px;}
.ls8_c00091{letter-spacing:0.531360px;}
.lse_c00091{letter-spacing:0.690768px;}
.lsd_c00091{letter-spacing:0.718113px;}
.ls15_c00091{letter-spacing:0.743904px;}
.ls10_c00091{letter-spacing:0.766799px;}
.ls1a_c00091{letter-spacing:0.797040px;}
.ls18_c00091{letter-spacing:5.295888px;}
.lsb_c00091{letter-spacing:5.335200px;}
.lsa_c00091{letter-spacing:5.430672px;}
.ls17_c00091{letter-spacing:5.514336px;}
.ls5_c00091{letter-spacing:5.715600px;}
.ls1_c00091{letter-spacing:5.975400px;}
.ls2_c00091{letter-spacing:5.976000px;}
.ls0_c00091{letter-spacing:6.159920px;}
.ls14_c00091{letter-spacing:8.218368px;}
.ls12_c00091{letter-spacing:8.224272px;}
.sc__c00091{text-shadow:none;}
.sc1_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00091{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc1_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00091{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8_c00091{word-spacing:-21.709008px;}
.ws0_c00091{word-spacing:-21.043152px;}
.ws1_c00091{word-spacing:-20.947680px;}
.ws2_c00091{word-spacing:-20.016000px;}
.ws5_c00091{word-spacing:-17.685056px;}
.ws6_c00091{word-spacing:-16.944480px;}
.ws3_c00091{word-spacing:-11.429712px;}
.ws7_c00091{word-spacing:-10.152000px;}
.ws4_c00091{word-spacing:-10.008000px;}
.ws9_c00091{word-spacing:0.000000px;}
._d_c00091{margin-left:-7.904160px;}
._e_c00091{margin-left:-6.840000px;}
._c_c00091{margin-left:-1.034570px;}
._9_c00091{width:1.080000px;}
._a_c00091{width:2.160000px;}
._b_c00091{width:3.506016px;}
._0_c00091{width:4.608000px;}
._5_c00091{width:6.552000px;}
._3_c00091{width:7.704000px;}
._6_c00091{width:9.432000px;}
._8_c00091{width:10.512000px;}
._f_c00091{width:12.134090px;}
._4_c00091{width:13.320000px;}
._2_c00091{width:14.904000px;}
._1_c00091{width:15.984000px;}
._7_c00091{width:24.984000px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs6_c00091{font-size:36.000000px;}
.fs5_c00091{font-size:41.760000px;}
.fs3_c00091{font-size:56.160000px;}
.fs2_c00091{font-size:59.040000px;}
.fs8_c00091{font-size:60.000000px;}
.fs7_c00091{font-size:60.857039px;}
.fs4_c00091{font-size:64.800000px;}
.fs0_c00091{font-size:72.000000px;}
.fs1_c00091{font-size:74.215901px;}
.y0_c00091{bottom:0.000000px;}
.y26_c00091{bottom:3.120150px;}
.y25_c00091{bottom:34.744500px;}
.y1_c00091{bottom:54.000000px;}
.y24_c00091{bottom:55.478880px;}
.y23_c00091{bottom:72.762840px;}
.y22_c00091{bottom:90.401040px;}
.y21_c00091{bottom:107.685000px;}
.y20_c00091{bottom:113.805000px;}
.y1f_c00091{bottom:131.445000px;}
.y1e_c00091{bottom:149.085000px;}
.y1d_c00091{bottom:160.245000px;}
.y1c_c00091{bottom:160.246800px;}
.y1b_c00091{bottom:177.885000px;}
.y1a_c00091{bottom:184.005000px;}
.y19_c00091{bottom:210.645000px;}
.y18_c00091{bottom:557.325000px;}
.y17_c00091{bottom:593.325000px;}
.y16_c00091{bottom:614.565000px;}
.y15_c00091{bottom:635.445000px;}
.y14_c00091{bottom:656.325000px;}
.y13_c00091{bottom:692.325000px;}
.y12_c00091{bottom:728.325000px;}
.y11_c00091{bottom:764.325000px;}
.y10_c00091{bottom:785.565000px;}
.yf_c00091{bottom:806.445000px;}
.ye_c00091{bottom:827.325000px;}
.yd_c00091{bottom:848.565000px;}
.yc_c00091{bottom:869.445000px;}
.yb_c00091{bottom:890.325000px;}
.ya_c00091{bottom:926.325000px;}
.y9_c00091{bottom:947.565000px;}
.y8_c00091{bottom:968.445000px;}
.y7_c00091{bottom:989.325000px;}
.y6_c00091{bottom:1010.565000px;}
.y5_c00091{bottom:1031.445000px;}
.y4_c00091{bottom:1059.885000px;}
.y3_c00091{bottom:1088.325000px;}
.y2_c00091{bottom:1138.365000px;}
.h9_c00091{height:19.255500px;}
.h7_c00091{height:32.616000px;}
.ha_c00091{height:46.320000px;}
.h8_c00091{height:46.981634px;}
.h5_c00091{height:53.490240px;}
.h4_c00091{height:57.294676px;}
.h3_c00091{height:65.232000px;}
.h6_c00091{height:68.074560px;}
.h2_c00091{height:1201.365000px;}
.h0_c00091{height:1262.835000px;}
.h1_c00091{height:1263.000000px;}
.w3_c00091{width:16.680000px;}
.w2_c00091{width:863.955000px;}
.w0_c00091{width:892.935000px;}
.w1_c00091{width:893.250000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:14.490000px;}
.x2_c00091{left:113.040150px;}
.x7_c00091{left:124.472550px;}
.x3_c00091{left:150.011700px;}
.x4_c00091{left:185.002500px;}
.x8_c00091{left:204.872250px;}
.xb_c00091{left:371.557650px;}
.xc_c00091{left:414.906750px;}
.x9_c00091{left:529.712100px;}
.x5_c00091{left:561.393300px;}
.xa_c00091{left:573.061200px;}
.x6_c00091{left:626.408250px;}
.xd_c00091{left:768.255000px;}
@media print{
.v2_c00091{vertical-align:-21.760000pt;}
.v0_c00091{vertical-align:0.000000pt;}
.v1_c00091{vertical-align:26.880000pt;}
.lsc_c00091{letter-spacing:-0.159616pt;}
.ls9_c00091{letter-spacing:0.000000pt;}
.ls4_c00091{letter-spacing:0.008747pt;}
.ls3_c00091{letter-spacing:0.122880pt;}
.ls11_c00091{letter-spacing:0.128000pt;}
.ls6_c00091{letter-spacing:0.209920pt;}
.lsf_c00091{letter-spacing:0.236160pt;}
.ls7_c00091{letter-spacing:0.262400pt;}
.ls19_c00091{letter-spacing:0.283392pt;}
.ls13_c00091{letter-spacing:0.330624pt;}
.ls16_c00091{letter-spacing:0.377856pt;}
.ls8_c00091{letter-spacing:0.472320pt;}
.lse_c00091{letter-spacing:0.614016pt;}
.lsd_c00091{letter-spacing:0.638323pt;}
.ls15_c00091{letter-spacing:0.661248pt;}
.ls10_c00091{letter-spacing:0.681599pt;}
.ls1a_c00091{letter-spacing:0.708480pt;}
.ls18_c00091{letter-spacing:4.707456pt;}
.lsb_c00091{letter-spacing:4.742400pt;}
.lsa_c00091{letter-spacing:4.827264pt;}
.ls17_c00091{letter-spacing:4.901632pt;}
.ls5_c00091{letter-spacing:5.080533pt;}
.ls1_c00091{letter-spacing:5.311467pt;}
.ls2_c00091{letter-spacing:5.312000pt;}
.ls0_c00091{letter-spacing:5.475484pt;}
.ls14_c00091{letter-spacing:7.305216pt;}
.ls12_c00091{letter-spacing:7.310464pt;}
.ws8_c00091{word-spacing:-19.296896pt;}
.ws0_c00091{word-spacing:-18.705024pt;}
.ws1_c00091{word-spacing:-18.620160pt;}
.ws2_c00091{word-spacing:-17.792000pt;}
.ws5_c00091{word-spacing:-15.720049pt;}
.ws6_c00091{word-spacing:-15.061760pt;}
.ws3_c00091{word-spacing:-10.159744pt;}
.ws7_c00091{word-spacing:-9.024000pt;}
.ws4_c00091{word-spacing:-8.896000pt;}
.ws9_c00091{word-spacing:0.000000pt;}
._d_c00091{margin-left:-7.025920pt;}
._e_c00091{margin-left:-6.080000pt;}
._c_c00091{margin-left:-0.919617pt;}
._9_c00091{width:0.960000pt;}
._a_c00091{width:1.920000pt;}
._b_c00091{width:3.116459pt;}
._0_c00091{width:4.096000pt;}
._5_c00091{width:5.824000pt;}
._3_c00091{width:6.848000pt;}
._6_c00091{width:8.384000pt;}
._8_c00091{width:9.344000pt;}
._f_c00091{width:10.785857pt;}
._4_c00091{width:11.840000pt;}
._2_c00091{width:13.248000pt;}
._1_c00091{width:14.208000pt;}
._7_c00091{width:22.208000pt;}
.fs6_c00091{font-size:32.000000pt;}
.fs5_c00091{font-size:37.120000pt;}
.fs3_c00091{font-size:49.920000pt;}
.fs2_c00091{font-size:52.480000pt;}
.fs8_c00091{font-size:53.333333pt;}
.fs7_c00091{font-size:54.095146pt;}
.fs4_c00091{font-size:57.600000pt;}
.fs0_c00091{font-size:64.000000pt;}
.fs1_c00091{font-size:65.969690pt;}
.y0_c00091{bottom:0.000000pt;}
.y26_c00091{bottom:2.773467pt;}
.y25_c00091{bottom:30.884000pt;}
.y1_c00091{bottom:48.000000pt;}
.y24_c00091{bottom:49.314560pt;}
.y23_c00091{bottom:64.678080pt;}
.y22_c00091{bottom:80.356480pt;}
.y21_c00091{bottom:95.720000pt;}
.y20_c00091{bottom:101.160000pt;}
.y1f_c00091{bottom:116.840000pt;}
.y1e_c00091{bottom:132.520000pt;}
.y1d_c00091{bottom:142.440000pt;}
.y1c_c00091{bottom:142.441600pt;}
.y1b_c00091{bottom:158.120000pt;}
.y1a_c00091{bottom:163.560000pt;}
.y19_c00091{bottom:187.240000pt;}
.y18_c00091{bottom:495.400000pt;}
.y17_c00091{bottom:527.400000pt;}
.y16_c00091{bottom:546.280000pt;}
.y15_c00091{bottom:564.840000pt;}
.y14_c00091{bottom:583.400000pt;}
.y13_c00091{bottom:615.400000pt;}
.y12_c00091{bottom:647.400000pt;}
.y11_c00091{bottom:679.400000pt;}
.y10_c00091{bottom:698.280000pt;}
.yf_c00091{bottom:716.840000pt;}
.ye_c00091{bottom:735.400000pt;}
.yd_c00091{bottom:754.280000pt;}
.yc_c00091{bottom:772.840000pt;}
.yb_c00091{bottom:791.400000pt;}
.ya_c00091{bottom:823.400000pt;}
.y9_c00091{bottom:842.280000pt;}
.y8_c00091{bottom:860.840000pt;}
.y7_c00091{bottom:879.400000pt;}
.y6_c00091{bottom:898.280000pt;}
.y5_c00091{bottom:916.840000pt;}
.y4_c00091{bottom:942.120000pt;}
.y3_c00091{bottom:967.400000pt;}
.y2_c00091{bottom:1011.880000pt;}
.h9_c00091{height:17.116000pt;}
.h7_c00091{height:28.992000pt;}
.ha_c00091{height:41.173333pt;}
.h8_c00091{height:41.761453pt;}
.h5_c00091{height:47.546880pt;}
.h4_c00091{height:50.928601pt;}
.h3_c00091{height:57.984000pt;}
.h6_c00091{height:60.510720pt;}
.h2_c00091{height:1067.880000pt;}
.h0_c00091{height:1122.520000pt;}
.h1_c00091{height:1122.666667pt;}
.w3_c00091{width:14.826667pt;}
.w2_c00091{width:767.960000pt;}
.w0_c00091{width:793.720000pt;}
.w1_c00091{width:794.000000pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:12.880000pt;}
.x2_c00091{left:100.480133pt;}
.x7_c00091{left:110.642267pt;}
.x3_c00091{left:133.343733pt;}
.x4_c00091{left:164.446667pt;}
.x8_c00091{left:182.108667pt;}
.xb_c00091{left:330.273467pt;}
.xc_c00091{left:368.806000pt;}
.x9_c00091{left:470.855200pt;}
.x5_c00091{left:499.016267pt;}
.xa_c00091{left:509.387733pt;}
.x6_c00091{left:556.807333pt;}
.xd_c00091{left:682.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_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_c171985a1ac402eb207ff96b.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;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_c00092;src:url('chunks/assets/font_ab1d2373cb21c0077f35a0fd.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_e057dd00308608e43121e65a.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:0.787000;font-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_c00092{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls2_c00092{letter-spacing:0.000000px;}
.ls4_c00092{letter-spacing:0.202464px;}
.ls3_c00092{letter-spacing:0.399600px;}
.ls0_c00092{letter-spacing:5.976000px;}
.ls1_c00092{letter-spacing:6.159920px;}
.sc__c00092{text-shadow:none;}
.sc1_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00092{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc1_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00092{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00092{word-spacing:0.000000px;}
._0_c00092{margin-left:-1.118880px;}
._1_c00092{width:1.118880px;}
.fc1_c00092{color:transparent;}
.fc0_c00092{color:rgb(0,0,0);}
.fs2_c00092{font-size:53.280000px;}
.fs3_c00092{font-size:60.000000px;}
.fs0_c00092{font-size:72.000000px;}
.fs1_c00092{font-size:74.215901px;}
.y0_c00092{bottom:0.000000px;}
.y20_c00092{bottom:3.120150px;}
.y1e_c00092{bottom:9.720000px;}
.y1d_c00092{bottom:25.560000px;}
.y1f_c00092{bottom:34.744500px;}
.y1a_c00092{bottom:41.040000px;}
.y1c_c00092{bottom:41.400000px;}
.y1_c00092{bottom:54.000000px;}
.y1b_c00092{bottom:157.365000px;}
.y18_c00092{bottom:328.725000px;}
.y17_c00092{bottom:364.725000px;}
.y16_c00092{bottom:400.725000px;}
.y15_c00092{bottom:436.725000px;}
.y14_c00092{bottom:472.725000px;}
.y19_c00092{bottom:508.365000px;}
.y13_c00092{bottom:509.085000px;}
.y12_c00092{bottom:545.085000px;}
.y11_c00092{bottom:581.085000px;}
.y10_c00092{bottom:617.085000px;}
.yf_c00092{bottom:653.085000px;}
.ye_c00092{bottom:689.085000px;}
.yd_c00092{bottom:725.085000px;}
.yc_c00092{bottom:761.085000px;}
.yb_c00092{bottom:797.085000px;}
.ya_c00092{bottom:833.085000px;}
.y9_c00092{bottom:869.085000px;}
.y8_c00092{bottom:905.085000px;}
.y7_c00092{bottom:941.085000px;}
.y6_c00092{bottom:977.085000px;}
.y5_c00092{bottom:1013.085000px;}
.y4_c00092{bottom:1049.085000px;}
.y3_c00092{bottom:1085.085000px;}
.y2_c00092{bottom:1138.365000px;}
.h7_c00092{height:19.255500px;}
.h6_c00092{height:41.132160px;}
.h8_c00092{height:46.320000px;}
.h5_c00092{height:54.000000px;}
.h3_c00092{height:55.584000px;}
.h4_c00092{height:57.294676px;}
.h2_c00092{height:1201.365000px;}
.h0_c00092{height:1262.835000px;}
.h1_c00092{height:1263.000000px;}
.w5_c00092{width:16.680000px;}
.w4_c00092{width:241.920000px;}
.w3_c00092{width:637.200000px;}
.w2_c00092{width:863.955000px;}
.w0_c00092{width:892.935000px;}
.w1_c00092{width:893.250000px;}
.x0_c00092{left:0.000000px;}
.x9_c00092{left:6.116400px;}
.x8_c00092{left:8.735100px;}
.x1_c00092{left:14.490000px;}
.x6_c00092{left:44.791650px;}
.xa_c00092{left:93.108750px;}
.x2_c00092{left:113.040150px;}
.x5_c00092{left:123.210000px;}
.x3_c00092{left:150.011700px;}
.x4_c00092{left:185.002500px;}
.x7_c00092{left:313.290000px;}
.xb_c00092{left:768.255000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls2_c00092{letter-spacing:0.000000pt;}
.ls4_c00092{letter-spacing:0.179968pt;}
.ls3_c00092{letter-spacing:0.355200pt;}
.ls0_c00092{letter-spacing:5.312000pt;}
.ls1_c00092{letter-spacing:5.475484pt;}
.ws0_c00092{word-spacing:0.000000pt;}
._0_c00092{margin-left:-0.994560pt;}
._1_c00092{width:0.994560pt;}
.fs2_c00092{font-size:47.360000pt;}
.fs3_c00092{font-size:53.333333pt;}
.fs0_c00092{font-size:64.000000pt;}
.fs1_c00092{font-size:65.969690pt;}
.y0_c00092{bottom:0.000000pt;}
.y20_c00092{bottom:2.773467pt;}
.y1e_c00092{bottom:8.640000pt;}
.y1d_c00092{bottom:22.720000pt;}
.y1f_c00092{bottom:30.884000pt;}
.y1a_c00092{bottom:36.480000pt;}
.y1c_c00092{bottom:36.800000pt;}
.y1_c00092{bottom:48.000000pt;}
.y1b_c00092{bottom:139.880000pt;}
.y18_c00092{bottom:292.200000pt;}
.y17_c00092{bottom:324.200000pt;}
.y16_c00092{bottom:356.200000pt;}
.y15_c00092{bottom:388.200000pt;}
.y14_c00092{bottom:420.200000pt;}
.y19_c00092{bottom:451.880000pt;}
.y13_c00092{bottom:452.520000pt;}
.y12_c00092{bottom:484.520000pt;}
.y11_c00092{bottom:516.520000pt;}
.y10_c00092{bottom:548.520000pt;}
.yf_c00092{bottom:580.520000pt;}
.ye_c00092{bottom:612.520000pt;}
.yd_c00092{bottom:644.520000pt;}
.yc_c00092{bottom:676.520000pt;}
.yb_c00092{bottom:708.520000pt;}
.ya_c00092{bottom:740.520000pt;}
.y9_c00092{bottom:772.520000pt;}
.y8_c00092{bottom:804.520000pt;}
.y7_c00092{bottom:836.520000pt;}
.y6_c00092{bottom:868.520000pt;}
.y5_c00092{bottom:900.520000pt;}
.y4_c00092{bottom:932.520000pt;}
.y3_c00092{bottom:964.520000pt;}
.y2_c00092{bottom:1011.880000pt;}
.h7_c00092{height:17.116000pt;}
.h6_c00092{height:36.561920pt;}
.h8_c00092{height:41.173333pt;}
.h5_c00092{height:48.000000pt;}
.h3_c00092{height:49.408000pt;}
.h4_c00092{height:50.928601pt;}
.h2_c00092{height:1067.880000pt;}
.h0_c00092{height:1122.520000pt;}
.h1_c00092{height:1122.666667pt;}
.w5_c00092{width:14.826667pt;}
.w4_c00092{width:215.040000pt;}
.w3_c00092{width:566.400000pt;}
.w2_c00092{width:767.960000pt;}
.w0_c00092{width:793.720000pt;}
.w1_c00092{width:794.000000pt;}
.x0_c00092{left:0.000000pt;}
.x9_c00092{left:5.436800pt;}
.x8_c00092{left:7.764533pt;}
.x1_c00092{left:12.880000pt;}
.x6_c00092{left:39.814800pt;}
.xa_c00092{left:82.763333pt;}
.x2_c00092{left:100.480133pt;}
.x5_c00092{left:109.520000pt;}
.x3_c00092{left:133.343733pt;}
.x4_c00092{left:164.446667pt;}
.x7_c00092{left:278.480000pt;}
.xb_c00092{left:682.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_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_337690926fd452604d821021.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.134000;font-style:normal;font-weight:normal;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_35555ff7af7ba544f64bbb7d.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;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:ff3_c00093;src:url('chunks/assets/font_89264e42d598260d3826c924.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_9dfa439570c32a2671ab6b89.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:0.787000;font-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_c00093{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00093{vertical-align:-24.480000px;}
.v0_c00093{vertical-align:0.000000px;}
.v1_c00093{vertical-align:30.240000px;}
.ls1c_c00093{letter-spacing:-0.179568px;}
.ls17_c00093{letter-spacing:0.000000px;}
.ls6_c00093{letter-spacing:0.017640px;}
.ls7_c00093{letter-spacing:0.022440px;}
.ls3_c00093{letter-spacing:0.129840px;}
.ls2b_c00093{letter-spacing:0.144000px;}
.lsf_c00093{letter-spacing:0.236160px;}
.lsd_c00093{letter-spacing:0.265680px;}
.lsb_c00093{letter-spacing:0.295200px;}
.ls2a_c00093{letter-spacing:0.318816px;}
.ls25_c00093{letter-spacing:0.371952px;}
.ls24_c00093{letter-spacing:0.425088px;}
.ls29_c00093{letter-spacing:0.438171px;}
.ls1f_c00093{letter-spacing:0.478224px;}
.lsa_c00093{letter-spacing:0.492942px;}
.lsc_c00093{letter-spacing:0.531360px;}
.lse_c00093{letter-spacing:0.547713px;}
.ls9_c00093{letter-spacing:0.610200px;}
.ls5_c00093{letter-spacing:0.654840px;}
.ls8_c00093{letter-spacing:0.657000px;}
.ls22_c00093{letter-spacing:0.690768px;}
.ls20_c00093{letter-spacing:0.696672px;}
.ls10_c00093{letter-spacing:0.712027px;}
.ls21_c00093{letter-spacing:0.743904px;}
.ls1e_c00093{letter-spacing:0.821570px;}
.ls4_c00093{letter-spacing:0.849840px;}
.ls13_c00093{letter-spacing:0.980064px;}
.ls1d_c00093{letter-spacing:1.245744px;}
.ls2c_c00093{letter-spacing:1.629504px;}
.ls23_c00093{letter-spacing:1.966032px;}
.ls26_c00093{letter-spacing:2.438352px;}
.ls15_c00093{letter-spacing:5.012496px;}
.ls1b_c00093{letter-spacing:5.149872px;}
.ls19_c00093{letter-spacing:5.245344px;}
.ls2f_c00093{letter-spacing:5.248656px;}
.ls1a_c00093{letter-spacing:5.335200px;}
.ls11_c00093{letter-spacing:5.372640px;}
.ls2d_c00093{letter-spacing:5.461200px;}
.ls18_c00093{letter-spacing:5.499398px;}
.ls2_c00093{letter-spacing:5.975400px;}
.ls1_c00093{letter-spacing:5.976000px;}
.ls0_c00093{letter-spacing:6.159301px;}
.ls16_c00093{letter-spacing:6.159920px;}
.ls12_c00093{letter-spacing:6.612480px;}
.ls2e_c00093{letter-spacing:6.671520px;}
.ls14_c00093{letter-spacing:11.288448px;}
.ls28_c00093{letter-spacing:16.135632px;}
.ls30_c00093{letter-spacing:16.903152px;}
.ls27_c00093{letter-spacing:19.754784px;}
.sc__c00093{text-shadow:none;}
.sc1_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00093{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc1_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00093{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00093{word-spacing:-25.992000px;}
.wse_c00093{word-spacing:-21.874320px;}
.ws10_c00093{word-spacing:-21.661776px;}
.ws0_c00093{word-spacing:-21.592374px;}
.ws1_c00093{word-spacing:-20.947680px;}
.ws3_c00093{word-spacing:-20.762352px;}
.ws8_c00093{word-spacing:-17.739827px;}
.wsc_c00093{word-spacing:-17.630284px;}
.wsa_c00093{word-spacing:-17.465970px;}
.ws7_c00093{word-spacing:-17.411199px;}
.wsb_c00093{word-spacing:-17.103888px;}
.ws9_c00093{word-spacing:-16.944480px;}
.wsf_c00093{word-spacing:-16.413120px;}
.ws4_c00093{word-spacing:-11.609280px;}
.ws5_c00093{word-spacing:-11.429712px;}
.wsd_c00093{word-spacing:-10.152000px;}
.ws6_c00093{word-spacing:-10.008000px;}
.ws11_c00093{word-spacing:0.000000px;}
._f_c00093{margin-left:-20.191680px;}
._e_c00093{margin-left:-19.188000px;}
._14_c00093{margin-left:-16.649280px;}
._13_c00093{margin-left:-15.645600px;}
._19_c00093{margin-left:-11.181696px;}
._5_c00093{margin-left:-7.003693px;}
._15_c00093{margin-left:-5.746931px;}
._17_c00093{margin-left:-4.456512px;}
._d_c00093{margin-left:-2.225424px;}
._0_c00093{margin-left:-1.189848px;}
._2_c00093{width:1.008000px;}
._b_c00093{width:2.487816px;}
._3_c00093{width:3.816000px;}
._6_c00093{width:4.824000px;}
._c_c00093{width:6.264000px;}
._16_c00093{width:7.351920px;}
._8_c00093{width:9.432000px;}
._18_c00093{width:10.627200px;}
._1_c00093{width:12.456000px;}
._12_c00093{width:15.173280px;}
._7_c00093{width:17.496000px;}
._11_c00093{width:18.512016px;}
._10_c00093{width:19.719360px;}
._9_c00093{width:21.312000px;}
._4_c00093{width:22.320000px;}
._a_c00093{width:34.992000px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs6_c00093{font-size:36.000000px;}
.fs4_c00093{font-size:41.760000px;}
.fs5_c00093{font-size:43.045223px;}
.fs3_c00093{font-size:56.160000px;}
.fs2_c00093{font-size:57.888403px;}
.fs7_c00093{font-size:59.040000px;}
.fs9_c00093{font-size:60.000000px;}
.fs8_c00093{font-size:60.857039px;}
.fs0_c00093{font-size:72.000000px;}
.fs1_c00093{font-size:74.215901px;}
.y0_c00093{bottom:0.000000px;}
.y3f_c00093{bottom:3.120150px;}
.y3e_c00093{bottom:34.744500px;}
.y1_c00093{bottom:54.000000px;}
.y3c_c00093{bottom:55.478880px;}
.y3d_c00093{bottom:55.485000px;}
.y3b_c00093{bottom:72.762840px;}
.y3a_c00093{bottom:90.401040px;}
.y39_c00093{bottom:107.685000px;}
.y38_c00093{bottom:107.686800px;}
.y37_c00093{bottom:125.325000px;}
.y36_c00093{bottom:125.326440px;}
.y35_c00093{bottom:142.964640px;}
.y34_c00093{bottom:160.248600px;}
.y33_c00093{bottom:177.886800px;}
.y32_c00093{bottom:201.645000px;}
.y31_c00093{bottom:212.805000px;}
.y30_c00093{bottom:218.925000px;}
.y2f_c00093{bottom:236.565000px;}
.y2e_c00093{bottom:247.725000px;}
.y2d_c00093{bottom:247.726800px;}
.y2c_c00093{bottom:265.365000px;}
.y2b_c00093{bottom:265.366800px;}
.y2a_c00093{bottom:289.125000px;}
.y29_c00093{bottom:300.285000px;}
.y28_c00093{bottom:300.286800px;}
.y27_c00093{bottom:317.925000px;}
.y26_c00093{bottom:317.926800px;}
.y25_c00093{bottom:341.685000px;}
.y24_c00093{bottom:358.965000px;}
.y23_c00093{bottom:376.605000px;}
.y22_c00093{bottom:387.765000px;}
.y21_c00093{bottom:393.885000px;}
.y20_c00093{bottom:405.405000px;}
.y1f_c00093{bottom:411.525000px;}
.y1e_c00093{bottom:429.165000px;}
.y1d_c00093{bottom:440.325000px;}
.y1c_c00093{bottom:440.326800px;}
.y1b_c00093{bottom:457.965000px;}
.y1a_c00093{bottom:464.085000px;}
.y19_c00093{bottom:490.725000px;}
.y18_c00093{bottom:519.525000px;}
.y17_c00093{bottom:540.405000px;}
.y16_c00093{bottom:561.285000px;}
.y15_c00093{bottom:582.525000px;}
.y14_c00093{bottom:618.525000px;}
.y13_c00093{bottom:639.405000px;}
.y12_c00093{bottom:660.285000px;}
.y11_c00093{bottom:681.525000px;}
.y10_c00093{bottom:702.405000px;}
.yf_c00093{bottom:738.405000px;}
.ye_c00093{bottom:759.285000px;}
.yd_c00093{bottom:780.525000px;}
.yc_c00093{bottom:816.525000px;}
.yb_c00093{bottom:852.525000px;}
.ya_c00093{bottom:890.685000px;}
.y9_c00093{bottom:928.845000px;}
.y8_c00093{bottom:964.845000px;}
.y7_c00093{bottom:986.085000px;}
.y6_c00093{bottom:1006.965000px;}
.y5_c00093{bottom:1027.845000px;}
.y4_c00093{bottom:1049.085000px;}
.y3_c00093{bottom:1085.085000px;}
.y2_c00093{bottom:1138.365000px;}
.ha_c00093{height:19.255500px;}
.h7_c00093{height:32.616000px;}
.hb_c00093{height:46.320000px;}
.h8_c00093{height:46.981634px;}
.h9_c00093{height:53.490240px;}
.h4_c00093{height:57.294676px;}
.h6_c00093{height:64.401590px;}
.h3_c00093{height:65.232000px;}
.h5_c00093{height:68.074560px;}
.h2_c00093{height:1201.365000px;}
.h0_c00093{height:1262.835000px;}
.h1_c00093{height:1263.000000px;}
.w3_c00093{width:16.680000px;}
.w2_c00093{width:863.955000px;}
.w0_c00093{width:892.935000px;}
.w1_c00093{width:893.250000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:14.490000px;}
.x2_c00093{left:113.040150px;}
.x10_c00093{left:144.377250px;}
.x3_c00093{left:150.011700px;}
.x15_c00093{left:162.231750px;}
.x13_c00093{left:180.553050px;}
.x24_c00093{left:186.387750px;}
.x11_c00093{left:188.551050px;}
.x5_c00093{left:191.120400px;}
.x25_c00093{left:206.381850px;}
.x14_c00093{left:209.697150px;}
.x16_c00093{left:220.580250px;}
.x4_c00093{left:224.962200px;}
.x17_c00093{left:229.744650px;}
.x1e_c00093{left:238.090200px;}
.xb_c00093{left:248.505300px;}
.x18_c00093{left:255.588450px;}
.x1f_c00093{left:315.577500px;}
.x6_c00093{left:316.628850px;}
.x12_c00093{left:322.065750px;}
.x1a_c00093{left:342.150900px;}
.x1b_c00093{left:367.125300px;}
.x7_c00093{left:369.638250px;}
.x2a_c00093{left:374.673300px;}
.x19_c00093{left:386.456550px;}
.x22_c00093{left:412.763250px;}
.xa_c00093{left:416.478150px;}
.x28_c00093{left:418.909800px;}
.x2b_c00093{left:427.172250px;}
.x26_c00093{left:435.636450px;}
.x29_c00093{left:438.903750px;}
.x27_c00093{left:455.630550px;}
.x23_c00093{left:456.937050px;}
.x20_c00093{left:459.738300px;}
.x21_c00093{left:488.882400px;}
.xe_c00093{left:526.930350px;}
.x2c_c00093{left:534.655500px;}
.x8_c00093{left:541.361250px;}
.x2d_c00093{left:565.483500px;}
.xc_c00093{left:574.251750px;}
.xf_c00093{left:579.939750px;}
.xd_c00093{left:627.261150px;}
.x2e_c00093{left:634.597350px;}
.x2f_c00093{left:672.939750px;}
.x1c_c00093{left:693.238800px;}
.x9_c00093{left:698.806650px;}
.x1d_c00093{left:722.397900px;}
.x30_c00093{left:768.255000px;}
@media print{
.v2_c00093{vertical-align:-21.760000pt;}
.v0_c00093{vertical-align:0.000000pt;}
.v1_c00093{vertical-align:26.880000pt;}
.ls1c_c00093{letter-spacing:-0.159616pt;}
.ls17_c00093{letter-spacing:0.000000pt;}
.ls6_c00093{letter-spacing:0.015680pt;}
.ls7_c00093{letter-spacing:0.019947pt;}
.ls3_c00093{letter-spacing:0.115413pt;}
.ls2b_c00093{letter-spacing:0.128000pt;}
.lsf_c00093{letter-spacing:0.209920pt;}
.lsd_c00093{letter-spacing:0.236160pt;}
.lsb_c00093{letter-spacing:0.262400pt;}
.ls2a_c00093{letter-spacing:0.283392pt;}
.ls25_c00093{letter-spacing:0.330624pt;}
.ls24_c00093{letter-spacing:0.377856pt;}
.ls29_c00093{letter-spacing:0.389485pt;}
.ls1f_c00093{letter-spacing:0.425088pt;}
.lsa_c00093{letter-spacing:0.438171pt;}
.lsc_c00093{letter-spacing:0.472320pt;}
.lse_c00093{letter-spacing:0.486856pt;}
.ls9_c00093{letter-spacing:0.542400pt;}
.ls5_c00093{letter-spacing:0.582080pt;}
.ls8_c00093{letter-spacing:0.584000pt;}
.ls22_c00093{letter-spacing:0.614016pt;}
.ls20_c00093{letter-spacing:0.619264pt;}
.ls10_c00093{letter-spacing:0.632913pt;}
.ls21_c00093{letter-spacing:0.661248pt;}
.ls1e_c00093{letter-spacing:0.730284pt;}
.ls4_c00093{letter-spacing:0.755413pt;}
.ls13_c00093{letter-spacing:0.871168pt;}
.ls1d_c00093{letter-spacing:1.107328pt;}
.ls2c_c00093{letter-spacing:1.448448pt;}
.ls23_c00093{letter-spacing:1.747584pt;}
.ls26_c00093{letter-spacing:2.167424pt;}
.ls15_c00093{letter-spacing:4.455552pt;}
.ls1b_c00093{letter-spacing:4.577664pt;}
.ls19_c00093{letter-spacing:4.662528pt;}
.ls2f_c00093{letter-spacing:4.665472pt;}
.ls1a_c00093{letter-spacing:4.742400pt;}
.ls11_c00093{letter-spacing:4.775680pt;}
.ls2d_c00093{letter-spacing:4.854400pt;}
.ls18_c00093{letter-spacing:4.888354pt;}
.ls2_c00093{letter-spacing:5.311467pt;}
.ls1_c00093{letter-spacing:5.312000pt;}
.ls0_c00093{letter-spacing:5.474935pt;}
.ls16_c00093{letter-spacing:5.475484pt;}
.ls12_c00093{letter-spacing:5.877760pt;}
.ls2e_c00093{letter-spacing:5.930240pt;}
.ls14_c00093{letter-spacing:10.034176pt;}
.ls28_c00093{letter-spacing:14.342784pt;}
.ls30_c00093{letter-spacing:15.025024pt;}
.ls27_c00093{letter-spacing:17.559808pt;}
.ws2_c00093{word-spacing:-23.104000pt;}
.wse_c00093{word-spacing:-19.443840pt;}
.ws10_c00093{word-spacing:-19.254912pt;}
.ws0_c00093{word-spacing:-19.193222pt;}
.ws1_c00093{word-spacing:-18.620160pt;}
.ws3_c00093{word-spacing:-18.455424pt;}
.ws8_c00093{word-spacing:-15.768735pt;}
.wsc_c00093{word-spacing:-15.671364pt;}
.wsa_c00093{word-spacing:-15.525307pt;}
.ws7_c00093{word-spacing:-15.476621pt;}
.wsb_c00093{word-spacing:-15.203456pt;}
.ws9_c00093{word-spacing:-15.061760pt;}
.wsf_c00093{word-spacing:-14.589440pt;}
.ws4_c00093{word-spacing:-10.319360pt;}
.ws5_c00093{word-spacing:-10.159744pt;}
.wsd_c00093{word-spacing:-9.024000pt;}
.ws6_c00093{word-spacing:-8.896000pt;}
.ws11_c00093{word-spacing:0.000000pt;}
._f_c00093{margin-left:-17.948160pt;}
._e_c00093{margin-left:-17.056000pt;}
._14_c00093{margin-left:-14.799360pt;}
._13_c00093{margin-left:-13.907200pt;}
._19_c00093{margin-left:-9.939285pt;}
._5_c00093{margin-left:-6.225505pt;}
._15_c00093{margin-left:-5.108383pt;}
._17_c00093{margin-left:-3.961344pt;}
._d_c00093{margin-left:-1.978155pt;}
._0_c00093{margin-left:-1.057643pt;}
._2_c00093{width:0.896000pt;}
._b_c00093{width:2.211392pt;}
._3_c00093{width:3.392000pt;}
._6_c00093{width:4.288000pt;}
._c_c00093{width:5.568000pt;}
._16_c00093{width:6.535040pt;}
._8_c00093{width:8.384000pt;}
._18_c00093{width:9.446400pt;}
._1_c00093{width:11.072000pt;}
._12_c00093{width:13.487360pt;}
._7_c00093{width:15.552000pt;}
._11_c00093{width:16.455125pt;}
._10_c00093{width:17.528320pt;}
._9_c00093{width:18.944000pt;}
._4_c00093{width:19.840000pt;}
._a_c00093{width:31.104000pt;}
.fs6_c00093{font-size:32.000000pt;}
.fs4_c00093{font-size:37.120000pt;}
.fs5_c00093{font-size:38.262420pt;}
.fs3_c00093{font-size:49.920000pt;}
.fs2_c00093{font-size:51.456358pt;}
.fs7_c00093{font-size:52.480000pt;}
.fs9_c00093{font-size:53.333333pt;}
.fs8_c00093{font-size:54.095146pt;}
.fs0_c00093{font-size:64.000000pt;}
.fs1_c00093{font-size:65.969690pt;}
.y0_c00093{bottom:0.000000pt;}
.y3f_c00093{bottom:2.773467pt;}
.y3e_c00093{bottom:30.884000pt;}
.y1_c00093{bottom:48.000000pt;}
.y3c_c00093{bottom:49.314560pt;}
.y3d_c00093{bottom:49.320000pt;}
.y3b_c00093{bottom:64.678080pt;}
.y3a_c00093{bottom:80.356480pt;}
.y39_c00093{bottom:95.720000pt;}
.y38_c00093{bottom:95.721600pt;}
.y37_c00093{bottom:111.400000pt;}
.y36_c00093{bottom:111.401280pt;}
.y35_c00093{bottom:127.079680pt;}
.y34_c00093{bottom:142.443200pt;}
.y33_c00093{bottom:158.121600pt;}
.y32_c00093{bottom:179.240000pt;}
.y31_c00093{bottom:189.160000pt;}
.y30_c00093{bottom:194.600000pt;}
.y2f_c00093{bottom:210.280000pt;}
.y2e_c00093{bottom:220.200000pt;}
.y2d_c00093{bottom:220.201600pt;}
.y2c_c00093{bottom:235.880000pt;}
.y2b_c00093{bottom:235.881600pt;}
.y2a_c00093{bottom:257.000000pt;}
.y29_c00093{bottom:266.920000pt;}
.y28_c00093{bottom:266.921600pt;}
.y27_c00093{bottom:282.600000pt;}
.y26_c00093{bottom:282.601600pt;}
.y25_c00093{bottom:303.720000pt;}
.y24_c00093{bottom:319.080000pt;}
.y23_c00093{bottom:334.760000pt;}
.y22_c00093{bottom:344.680000pt;}
.y21_c00093{bottom:350.120000pt;}
.y20_c00093{bottom:360.360000pt;}
.y1f_c00093{bottom:365.800000pt;}
.y1e_c00093{bottom:381.480000pt;}
.y1d_c00093{bottom:391.400000pt;}
.y1c_c00093{bottom:391.401600pt;}
.y1b_c00093{bottom:407.080000pt;}
.y1a_c00093{bottom:412.520000pt;}
.y19_c00093{bottom:436.200000pt;}
.y18_c00093{bottom:461.800000pt;}
.y17_c00093{bottom:480.360000pt;}
.y16_c00093{bottom:498.920000pt;}
.y15_c00093{bottom:517.800000pt;}
.y14_c00093{bottom:549.800000pt;}
.y13_c00093{bottom:568.360000pt;}
.y12_c00093{bottom:586.920000pt;}
.y11_c00093{bottom:605.800000pt;}
.y10_c00093{bottom:624.360000pt;}
.yf_c00093{bottom:656.360000pt;}
.ye_c00093{bottom:674.920000pt;}
.yd_c00093{bottom:693.800000pt;}
.yc_c00093{bottom:725.800000pt;}
.yb_c00093{bottom:757.800000pt;}
.ya_c00093{bottom:791.720000pt;}
.y9_c00093{bottom:825.640000pt;}
.y8_c00093{bottom:857.640000pt;}
.y7_c00093{bottom:876.520000pt;}
.y6_c00093{bottom:895.080000pt;}
.y5_c00093{bottom:913.640000pt;}
.y4_c00093{bottom:932.520000pt;}
.y3_c00093{bottom:964.520000pt;}
.y2_c00093{bottom:1011.880000pt;}
.ha_c00093{height:17.116000pt;}
.h7_c00093{height:28.992000pt;}
.hb_c00093{height:41.173333pt;}
.h8_c00093{height:41.761453pt;}
.h9_c00093{height:47.546880pt;}
.h4_c00093{height:50.928601pt;}
.h6_c00093{height:57.245858pt;}
.h3_c00093{height:57.984000pt;}
.h5_c00093{height:60.510720pt;}
.h2_c00093{height:1067.880000pt;}
.h0_c00093{height:1122.520000pt;}
.h1_c00093{height:1122.666667pt;}
.w3_c00093{width:14.826667pt;}
.w2_c00093{width:767.960000pt;}
.w0_c00093{width:793.720000pt;}
.w1_c00093{width:794.000000pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:12.880000pt;}
.x2_c00093{left:100.480133pt;}
.x10_c00093{left:128.335333pt;}
.x3_c00093{left:133.343733pt;}
.x15_c00093{left:144.206000pt;}
.x13_c00093{left:160.491600pt;}
.x24_c00093{left:165.678000pt;}
.x11_c00093{left:167.600933pt;}
.x5_c00093{left:169.884800pt;}
.x25_c00093{left:183.450533pt;}
.x14_c00093{left:186.397467pt;}
.x16_c00093{left:196.071333pt;}
.x4_c00093{left:199.966400pt;}
.x17_c00093{left:204.217467pt;}
.x1e_c00093{left:211.635733pt;}
.xb_c00093{left:220.893600pt;}
.x18_c00093{left:227.189733pt;}
.x1f_c00093{left:280.513333pt;}
.x6_c00093{left:281.447867pt;}
.x12_c00093{left:286.280667pt;}
.x1a_c00093{left:304.134133pt;}
.x1b_c00093{left:326.333600pt;}
.x7_c00093{left:328.567333pt;}
.x2a_c00093{left:333.042933pt;}
.x19_c00093{left:343.516933pt;}
.x22_c00093{left:366.900667pt;}
.xa_c00093{left:370.202800pt;}
.x28_c00093{left:372.364267pt;}
.x2b_c00093{left:379.708667pt;}
.x26_c00093{left:387.232400pt;}
.x29_c00093{left:390.136667pt;}
.x27_c00093{left:405.004933pt;}
.x23_c00093{left:406.166267pt;}
.x20_c00093{left:408.656267pt;}
.x21_c00093{left:434.562133pt;}
.xe_c00093{left:468.382533pt;}
.x2c_c00093{left:475.249333pt;}
.x8_c00093{left:481.210000pt;}
.x2d_c00093{left:502.652000pt;}
.xc_c00093{left:510.446000pt;}
.xf_c00093{left:515.502000pt;}
.xd_c00093{left:557.565467pt;}
.x2e_c00093{left:564.086533pt;}
.x2f_c00093{left:598.168667pt;}
.x1c_c00093{left:616.212267pt;}
.x9_c00093{left:621.161467pt;}
.x1d_c00093{left:642.131467pt;}
.x30_c00093{left:682.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_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_28f02745dbb389d41cf77ff9.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_37386bb4e63963933311a8f0.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;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:ff3_c00094;src:url('chunks/assets/font_777ae61a611c5eb3f916a2b3.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00094;src:url('chunks/assets/font_89264e42d598260d3826c924.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00094;src:url('chunks/assets/font_8e153f1850715bc5c56d1ca4.woff2')format("woff");}.ff6_c00094{font-family:ff6_c00094;line-height:0.787000;font-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_c00094{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00094{vertical-align:-30.240000px;}
.v3_c00094{vertical-align:-24.480000px;}
.v0_c00094{vertical-align:0.000000px;}
.v1_c00094{vertical-align:30.240000px;}
.ls18_c00094{letter-spacing:-0.179568px;}
.ls17_c00094{letter-spacing:0.000000px;}
.ls23_c00094{letter-spacing:0.144000px;}
.lsb_c00094{letter-spacing:0.265680px;}
.ls28_c00094{letter-spacing:0.273857px;}
.ls5_c00094{letter-spacing:0.295200px;}
.ls15_c00094{letter-spacing:0.318816px;}
.ls1c_c00094{letter-spacing:0.371952px;}
.ls20_c00094{letter-spacing:0.425088px;}
.ls10_c00094{letter-spacing:0.438171px;}
.ls8_c00094{letter-spacing:0.531360px;}
.ls24_c00094{letter-spacing:0.584496px;}
.ls2a_c00094{letter-spacing:0.637632px;}
.ls29_c00094{letter-spacing:0.690768px;}
.ls7_c00094{letter-spacing:0.696672px;}
.ls6_c00094{letter-spacing:0.712027px;}
.ls27_c00094{letter-spacing:0.743904px;}
.ls2c_c00094{letter-spacing:0.766799px;}
.ls2d_c00094{letter-spacing:0.797040px;}
.ls26_c00094{letter-spacing:0.991970px;}
.ls2e_c00094{letter-spacing:1.269360px;}
.ls0_c00094{letter-spacing:3.024000px;}
.ls1a_c00094{letter-spacing:4.142592px;}
.ls11_c00094{letter-spacing:4.191840px;}
.ls12_c00094{letter-spacing:4.209552px;}
.ls2b_c00094{letter-spacing:5.248656px;}
.ls22_c00094{letter-spacing:5.295888px;}
.ls14_c00094{letter-spacing:5.301792px;}
.lsc_c00094{letter-spacing:5.313600px;}
.ls25_c00094{letter-spacing:5.354928px;}
.ls9_c00094{letter-spacing:5.372640px;}
.ls1b_c00094{letter-spacing:5.430672px;}
.ls1f_c00094{letter-spacing:5.461200px;}
.lse_c00094{letter-spacing:5.514336px;}
.ls1e_c00094{letter-spacing:5.750496px;}
.ls1_c00094{letter-spacing:5.976000px;}
.ls4_c00094{letter-spacing:5.991000px;}
.ls16_c00094{letter-spacing:6.159920px;}
.ls21_c00094{letter-spacing:6.193296px;}
.ls3_c00094{letter-spacing:6.441600px;}
.ls13_c00094{letter-spacing:8.053056px;}
.lsa_c00094{letter-spacing:11.134944px;}
.ls2f_c00094{letter-spacing:13.526064px;}
.ls1d_c00094{letter-spacing:13.549680px;}
.ls19_c00094{letter-spacing:13.910400px;}
.lsf_c00094{letter-spacing:13.951152px;}
.ls2_c00094{letter-spacing:14.400000px;}
.lsd_c00094{letter-spacing:16.058880px;}
.sc__c00094{text-shadow:none;}
.sc1_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00094{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc1_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00094{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00094{word-spacing:-21.927456px;}
.ws5_c00094{word-spacing:-21.874320px;}
.wsb_c00094{word-spacing:-21.768048px;}
.ws6_c00094{word-spacing:-21.714912px;}
.ws7_c00094{word-spacing:-21.709008px;}
.ws3_c00094{word-spacing:-21.043152px;}
.ws1_c00094{word-spacing:-20.016000px;}
.wsd_c00094{word-spacing:-17.685056px;}
.ws4_c00094{word-spacing:-17.630284px;}
.wsc_c00094{word-spacing:-17.356428px;}
.ws8_c00094{word-spacing:-16.731936px;}
.ws2_c00094{word-spacing:-15.751872px;}
.ws0_c00094{word-spacing:-11.429712px;}
.ws9_c00094{word-spacing:-10.152000px;}
.wse_c00094{word-spacing:0.000000px;}
._4_c00094{margin-left:-13.852800px;}
._e_c00094{margin-left:-12.597120px;}
._13_c00094{margin-left:-7.727040px;}
._10_c00094{margin-left:-6.022080px;}
._f_c00094{margin-left:-5.018400px;}
._11_c00094{margin-left:-3.889440px;}
._12_c00094{margin-left:-2.877120px;}
._9_c00094{margin-left:-1.501104px;}
._b_c00094{width:1.296000px;}
._1_c00094{width:2.952000px;}
._d_c00094{width:4.320000px;}
._c_c00094{width:6.552000px;}
._7_c00094{width:7.704000px;}
._2_c00094{width:8.712000px;}
._6_c00094{width:10.440000px;}
._14_c00094{width:11.789088px;}
._8_c00094{width:12.851016px;}
._3_c00094{width:13.896000px;}
._5_c00094{width:14.904000px;}
._a_c00094{width:16.056000px;}
._0_c00094{width:18.432000px;}
.fc0_c00094{color:rgb(0,0,0);}
.fs6_c00094{font-size:36.000000px;}
.fs2_c00094{font-size:41.760000px;}
.fs3_c00094{font-size:56.160000px;}
.fs4_c00094{font-size:59.040000px;}
.fs7_c00094{font-size:60.000000px;}
.fs5_c00094{font-size:60.857039px;}
.fs0_c00094{font-size:72.000000px;}
.fs1_c00094{font-size:74.215901px;}
.y0_c00094{bottom:0.000000px;}
.y3e_c00094{bottom:3.120150px;}
.y3d_c00094{bottom:34.744500px;}
.y1_c00094{bottom:54.000000px;}
.y3b_c00094{bottom:55.481040px;}
.y3c_c00094{bottom:55.485000px;}
.y3a_c00094{bottom:78.885000px;}
.y39_c00094{bottom:96.525000px;}
.y38_c00094{bottom:107.685000px;}
.y37_c00094{bottom:107.686800px;}
.y36_c00094{bottom:125.325000px;}
.y35_c00094{bottom:125.326800px;}
.y34_c00094{bottom:149.085000px;}
.y33_c00094{bottom:160.246800px;}
.y32_c00094{bottom:177.885000px;}
.y31_c00094{bottom:184.005000px;}
.y2f_c00094{bottom:195.521040px;}
.y30_c00094{bottom:195.525000px;}
.y2e_c00094{bottom:212.805000px;}
.y2d_c00094{bottom:218.925000px;}
.y2c_c00094{bottom:230.441040px;}
.y2b_c00094{bottom:247.725000px;}
.y2a_c00094{bottom:253.845000px;}
.y29_c00094{bottom:271.485000px;}
.y28_c00094{bottom:283.005000px;}
.y27_c00094{bottom:289.125000px;}
.y26_c00094{bottom:300.286800px;}
.y25_c00094{bottom:317.925000px;}
.y24_c00094{bottom:317.926800px;}
.y22_c00094{bottom:335.561040px;}
.y23_c00094{bottom:335.565000px;}
.y21_c00094{bottom:358.965000px;}
.y1f_c00094{bottom:370.480680px;}
.y20_c00094{bottom:370.485000px;}
.y1e_c00094{bottom:387.764640px;}
.y1d_c00094{bottom:405.402840px;}
.y1c_c00094{bottom:423.041040px;}
.y1b_c00094{bottom:440.325000px;}
.y1a_c00094{bottom:440.326800px;}
.y19_c00094{bottom:457.965000px;}
.y18_c00094{bottom:490.725000px;}
.y17_c00094{bottom:559.845000px;}
.y16_c00094{bottom:595.845000px;}
.y15_c00094{bottom:616.725000px;}
.y14_c00094{bottom:637.605000px;}
.y13_c00094{bottom:658.845000px;}
.y12_c00094{bottom:679.725000px;}
.y11_c00094{bottom:715.725000px;}
.y10_c00094{bottom:751.725000px;}
.yf_c00094{bottom:787.725000px;}
.ye_c00094{bottom:823.725000px;}
.yd_c00094{bottom:859.725000px;}
.yc_c00094{bottom:880.965000px;}
.yb_c00094{bottom:901.845000px;}
.ya_c00094{bottom:922.725000px;}
.y9_c00094{bottom:943.965000px;}
.y8_c00094{bottom:979.965000px;}
.y7_c00094{bottom:1000.845000px;}
.y6_c00094{bottom:1021.725000px;}
.y5_c00094{bottom:1042.965000px;}
.y4_c00094{bottom:1064.205000px;}
.y3_c00094{bottom:1085.085000px;}
.y2_c00094{bottom:1138.365000px;}
.h9_c00094{height:19.255500px;}
.h8_c00094{height:32.616000px;}
.ha_c00094{height:46.320000px;}
.h7_c00094{height:46.981634px;}
.h6_c00094{height:53.490240px;}
.h4_c00094{height:57.294676px;}
.h3_c00094{height:65.232000px;}
.h5_c00094{height:68.074560px;}
.h2_c00094{height:1201.365000px;}
.h0_c00094{height:1262.835000px;}
.h1_c00094{height:1263.000000px;}
.w3_c00094{width:16.680000px;}
.w2_c00094{width:863.955000px;}
.w0_c00094{width:892.935000px;}
.w1_c00094{width:893.250000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:14.490000px;}
.x2_c00094{left:113.040150px;}
.x15_c00094{left:127.217700px;}
.x3_c00094{left:150.011700px;}
.x7_c00094{left:155.033550px;}
.xc_c00094{left:164.449650px;}
.xd_c00094{left:189.424050px;}
.x16_c00094{left:195.570150px;}
.x1f_c00094{left:206.020800px;}
.x4_c00094{left:224.962200px;}
.x13_c00094{left:227.765700px;}
.x29_c00094{left:243.041400px;}
.x27_c00094{left:252.073200px;}
.x20_c00094{left:253.539600px;}
.x2a_c00094{left:263.035350px;}
.x14_c00094{left:268.854450px;}
.x5_c00094{left:319.047000px;}
.x6_c00094{left:348.044250px;}
.x23_c00094{left:374.553900px;}
.x17_c00094{left:408.360000px;}
.x24_c00094{left:410.388450px;}
.x28_c00094{left:425.509950px;}
.x25_c00094{left:430.122750px;}
.x18_c00094{left:433.505100px;}
.x12_c00094{left:442.292250px;}
.x10_c00094{left:458.477100px;}
.x26_c00094{left:473.472000px;}
.x11_c00094{left:512.655300px;}
.x8_c00094{left:562.148100px;}
.x9_c00094{left:587.122500px;}
.x21_c00094{left:631.540950px;}
.x22_c00094{left:651.535050px;}
.xe_c00094{left:659.331000px;}
.x19_c00094{left:667.440000px;}
.x1a_c00094{left:678.284850px;}
.xf_c00094{left:689.846100px;}
.x1b_c00094{left:695.255850px;}
.x1c_c00094{left:700.235550px;}
.xa_c00094{left:702.100650px;}
.x1d_c00094{left:710.385900px;}
.xb_c00094{left:734.565300px;}
.x1e_c00094{left:750.390000px;}
.x2b_c00094{left:768.255000px;}
@media print{
.v2_c00094{vertical-align:-26.880000pt;}
.v3_c00094{vertical-align:-21.760000pt;}
.v0_c00094{vertical-align:0.000000pt;}
.v1_c00094{vertical-align:26.880000pt;}
.ls18_c00094{letter-spacing:-0.159616pt;}
.ls17_c00094{letter-spacing:0.000000pt;}
.ls23_c00094{letter-spacing:0.128000pt;}
.lsb_c00094{letter-spacing:0.236160pt;}
.ls28_c00094{letter-spacing:0.243428pt;}
.ls5_c00094{letter-spacing:0.262400pt;}
.ls15_c00094{letter-spacing:0.283392pt;}
.ls1c_c00094{letter-spacing:0.330624pt;}
.ls20_c00094{letter-spacing:0.377856pt;}
.ls10_c00094{letter-spacing:0.389485pt;}
.ls8_c00094{letter-spacing:0.472320pt;}
.ls24_c00094{letter-spacing:0.519552pt;}
.ls2a_c00094{letter-spacing:0.566784pt;}
.ls29_c00094{letter-spacing:0.614016pt;}
.ls7_c00094{letter-spacing:0.619264pt;}
.ls6_c00094{letter-spacing:0.632913pt;}
.ls27_c00094{letter-spacing:0.661248pt;}
.ls2c_c00094{letter-spacing:0.681599pt;}
.ls2d_c00094{letter-spacing:0.708480pt;}
.ls26_c00094{letter-spacing:0.881751pt;}
.ls2e_c00094{letter-spacing:1.128320pt;}
.ls0_c00094{letter-spacing:2.688000pt;}
.ls1a_c00094{letter-spacing:3.682304pt;}
.ls11_c00094{letter-spacing:3.726080pt;}
.ls12_c00094{letter-spacing:3.741824pt;}
.ls2b_c00094{letter-spacing:4.665472pt;}
.ls22_c00094{letter-spacing:4.707456pt;}
.ls14_c00094{letter-spacing:4.712704pt;}
.lsc_c00094{letter-spacing:4.723200pt;}
.ls25_c00094{letter-spacing:4.759936pt;}
.ls9_c00094{letter-spacing:4.775680pt;}
.ls1b_c00094{letter-spacing:4.827264pt;}
.ls1f_c00094{letter-spacing:4.854400pt;}
.lse_c00094{letter-spacing:4.901632pt;}
.ls1e_c00094{letter-spacing:5.111552pt;}
.ls1_c00094{letter-spacing:5.312000pt;}
.ls4_c00094{letter-spacing:5.325333pt;}
.ls16_c00094{letter-spacing:5.475484pt;}
.ls21_c00094{letter-spacing:5.505152pt;}
.ls3_c00094{letter-spacing:5.725867pt;}
.ls13_c00094{letter-spacing:7.158272pt;}
.lsa_c00094{letter-spacing:9.897728pt;}
.ls2f_c00094{letter-spacing:12.023168pt;}
.ls1d_c00094{letter-spacing:12.044160pt;}
.ls19_c00094{letter-spacing:12.364800pt;}
.lsf_c00094{letter-spacing:12.401024pt;}
.ls2_c00094{letter-spacing:12.800000pt;}
.lsd_c00094{letter-spacing:14.274560pt;}
.wsa_c00094{word-spacing:-19.491072pt;}
.ws5_c00094{word-spacing:-19.443840pt;}
.wsb_c00094{word-spacing:-19.349376pt;}
.ws6_c00094{word-spacing:-19.302144pt;}
.ws7_c00094{word-spacing:-19.296896pt;}
.ws3_c00094{word-spacing:-18.705024pt;}
.ws1_c00094{word-spacing:-17.792000pt;}
.wsd_c00094{word-spacing:-15.720049pt;}
.ws4_c00094{word-spacing:-15.671364pt;}
.wsc_c00094{word-spacing:-15.427936pt;}
.ws8_c00094{word-spacing:-14.872832pt;}
.ws2_c00094{word-spacing:-14.001664pt;}
.ws0_c00094{word-spacing:-10.159744pt;}
.ws9_c00094{word-spacing:-9.024000pt;}
.wse_c00094{word-spacing:0.000000pt;}
._4_c00094{margin-left:-12.313600pt;}
._e_c00094{margin-left:-11.197440pt;}
._13_c00094{margin-left:-6.868480pt;}
._10_c00094{margin-left:-5.352960pt;}
._f_c00094{margin-left:-4.460800pt;}
._11_c00094{margin-left:-3.457280pt;}
._12_c00094{margin-left:-2.557440pt;}
._9_c00094{margin-left:-1.334315pt;}
._b_c00094{width:1.152000pt;}
._1_c00094{width:2.624000pt;}
._d_c00094{width:3.840000pt;}
._c_c00094{width:5.824000pt;}
._7_c00094{width:6.848000pt;}
._2_c00094{width:7.744000pt;}
._6_c00094{width:9.280000pt;}
._14_c00094{width:10.479189pt;}
._8_c00094{width:11.423125pt;}
._3_c00094{width:12.352000pt;}
._5_c00094{width:13.248000pt;}
._a_c00094{width:14.272000pt;}
._0_c00094{width:16.384000pt;}
.fs6_c00094{font-size:32.000000pt;}
.fs2_c00094{font-size:37.120000pt;}
.fs3_c00094{font-size:49.920000pt;}
.fs4_c00094{font-size:52.480000pt;}
.fs7_c00094{font-size:53.333333pt;}
.fs5_c00094{font-size:54.095146pt;}
.fs0_c00094{font-size:64.000000pt;}
.fs1_c00094{font-size:65.969690pt;}
.y0_c00094{bottom:0.000000pt;}
.y3e_c00094{bottom:2.773467pt;}
.y3d_c00094{bottom:30.884000pt;}
.y1_c00094{bottom:48.000000pt;}
.y3b_c00094{bottom:49.316480pt;}
.y3c_c00094{bottom:49.320000pt;}
.y3a_c00094{bottom:70.120000pt;}
.y39_c00094{bottom:85.800000pt;}
.y38_c00094{bottom:95.720000pt;}
.y37_c00094{bottom:95.721600pt;}
.y36_c00094{bottom:111.400000pt;}
.y35_c00094{bottom:111.401600pt;}
.y34_c00094{bottom:132.520000pt;}
.y33_c00094{bottom:142.441600pt;}
.y32_c00094{bottom:158.120000pt;}
.y31_c00094{bottom:163.560000pt;}
.y2f_c00094{bottom:173.796480pt;}
.y30_c00094{bottom:173.800000pt;}
.y2e_c00094{bottom:189.160000pt;}
.y2d_c00094{bottom:194.600000pt;}
.y2c_c00094{bottom:204.836480pt;}
.y2b_c00094{bottom:220.200000pt;}
.y2a_c00094{bottom:225.640000pt;}
.y29_c00094{bottom:241.320000pt;}
.y28_c00094{bottom:251.560000pt;}
.y27_c00094{bottom:257.000000pt;}
.y26_c00094{bottom:266.921600pt;}
.y25_c00094{bottom:282.600000pt;}
.y24_c00094{bottom:282.601600pt;}
.y22_c00094{bottom:298.276480pt;}
.y23_c00094{bottom:298.280000pt;}
.y21_c00094{bottom:319.080000pt;}
.y1f_c00094{bottom:329.316160pt;}
.y20_c00094{bottom:329.320000pt;}
.y1e_c00094{bottom:344.679680pt;}
.y1d_c00094{bottom:360.358080pt;}
.y1c_c00094{bottom:376.036480pt;}
.y1b_c00094{bottom:391.400000pt;}
.y1a_c00094{bottom:391.401600pt;}
.y19_c00094{bottom:407.080000pt;}
.y18_c00094{bottom:436.200000pt;}
.y17_c00094{bottom:497.640000pt;}
.y16_c00094{bottom:529.640000pt;}
.y15_c00094{bottom:548.200000pt;}
.y14_c00094{bottom:566.760000pt;}
.y13_c00094{bottom:585.640000pt;}
.y12_c00094{bottom:604.200000pt;}
.y11_c00094{bottom:636.200000pt;}
.y10_c00094{bottom:668.200000pt;}
.yf_c00094{bottom:700.200000pt;}
.ye_c00094{bottom:732.200000pt;}
.yd_c00094{bottom:764.200000pt;}
.yc_c00094{bottom:783.080000pt;}
.yb_c00094{bottom:801.640000pt;}
.ya_c00094{bottom:820.200000pt;}
.y9_c00094{bottom:839.080000pt;}
.y8_c00094{bottom:871.080000pt;}
.y7_c00094{bottom:889.640000pt;}
.y6_c00094{bottom:908.200000pt;}
.y5_c00094{bottom:927.080000pt;}
.y4_c00094{bottom:945.960000pt;}
.y3_c00094{bottom:964.520000pt;}
.y2_c00094{bottom:1011.880000pt;}
.h9_c00094{height:17.116000pt;}
.h8_c00094{height:28.992000pt;}
.ha_c00094{height:41.173333pt;}
.h7_c00094{height:41.761453pt;}
.h6_c00094{height:47.546880pt;}
.h4_c00094{height:50.928601pt;}
.h3_c00094{height:57.984000pt;}
.h5_c00094{height:60.510720pt;}
.h2_c00094{height:1067.880000pt;}
.h0_c00094{height:1122.520000pt;}
.h1_c00094{height:1122.666667pt;}
.w3_c00094{width:14.826667pt;}
.w2_c00094{width:767.960000pt;}
.w0_c00094{width:793.720000pt;}
.w1_c00094{width:794.000000pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:12.880000pt;}
.x2_c00094{left:100.480133pt;}
.x15_c00094{left:113.082400pt;}
.x3_c00094{left:133.343733pt;}
.x7_c00094{left:137.807600pt;}
.xc_c00094{left:146.177467pt;}
.xd_c00094{left:168.376933pt;}
.x16_c00094{left:173.840133pt;}
.x1f_c00094{left:183.129600pt;}
.x4_c00094{left:199.966400pt;}
.x13_c00094{left:202.458400pt;}
.x29_c00094{left:216.036800pt;}
.x27_c00094{left:224.065067pt;}
.x20_c00094{left:225.368533pt;}
.x2a_c00094{left:233.809200pt;}
.x14_c00094{left:238.981733pt;}
.x5_c00094{left:283.597333pt;}
.x6_c00094{left:309.372667pt;}
.x23_c00094{left:332.936800pt;}
.x17_c00094{left:362.986667pt;}
.x24_c00094{left:364.789733pt;}
.x28_c00094{left:378.231067pt;}
.x25_c00094{left:382.331333pt;}
.x18_c00094{left:385.337867pt;}
.x12_c00094{left:393.148667pt;}
.x10_c00094{left:407.535200pt;}
.x26_c00094{left:420.864000pt;}
.x11_c00094{left:455.693600pt;}
.x8_c00094{left:499.687200pt;}
.x9_c00094{left:521.886667pt;}
.x21_c00094{left:561.369733pt;}
.x22_c00094{left:579.142267pt;}
.xe_c00094{left:586.072000pt;}
.x19_c00094{left:593.280000pt;}
.x1a_c00094{left:602.919867pt;}
.xf_c00094{left:613.196533pt;}
.x1b_c00094{left:618.005200pt;}
.x1c_c00094{left:622.431600pt;}
.xa_c00094{left:624.089467pt;}
.x1d_c00094{left:631.454133pt;}
.xb_c00094{left:652.946933pt;}
.x1e_c00094{left:667.013333pt;}
.x2b_c00094{left:682.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_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_87e2fc0e9f2859e235d8c7a7.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_9b36f9ca5e0925562a13be3b.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;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:ff3_c00095;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00095;src:url('chunks/assets/font_89264e42d598260d3826c924.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00095;src:url('chunks/assets/font_732b9224925b702b0ed40cb5.woff2')format("woff");}.ff6_c00095{font-family:ff6_c00095;line-height:0.787000;font-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_c00095{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls4_c00095{letter-spacing:0.000000px;}
.ls5_c00095{letter-spacing:5.430672px;}
.ls2_c00095{letter-spacing:5.976000px;}
.ls0_c00095{letter-spacing:5.978400px;}
.ls3_c00095{letter-spacing:6.159920px;}
.ls1_c00095{letter-spacing:54.864000px;}
.sc__c00095{text-shadow:none;}
.sc1_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00095{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc1_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00095{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00095{word-spacing:-21.043152px;}
.ws1_c00095{word-spacing:0.000000px;}
._2_c00095{margin-left:-1.179360px;}
._0_c00095{width:1.224000px;}
._8_c00095{width:2.304000px;}
._9_c00095{width:3.312000px;}
._5_c00095{width:4.392000px;}
._a_c00095{width:5.400000px;}
._d_c00095{width:6.984000px;}
._7_c00095{width:9.000000px;}
._6_c00095{width:10.872000px;}
._c_c00095{width:12.096000px;}
._4_c00095{width:14.832000px;}
._b_c00095{width:16.128000px;}
._1_c00095{width:21.312000px;}
._3_c00095{width:26.568000px;}
._e_c00095{width:28.944000px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs2_c00095{font-size:56.160000px;}
.fs3_c00095{font-size:60.000000px;}
.fs0_c00095{font-size:72.000000px;}
.fs1_c00095{font-size:74.215901px;}
.y0_c00095{bottom:0.000000px;}
.y2b_c00095{bottom:3.120150px;}
.y2a_c00095{bottom:34.744500px;}
.y1_c00095{bottom:54.000000px;}
.y29_c00095{bottom:121.725000px;}
.y28_c00095{bottom:142.605000px;}
.y27_c00095{bottom:163.845000px;}
.y26_c00095{bottom:184.725000px;}
.y25_c00095{bottom:205.965000px;}
.y24_c00095{bottom:241.965000px;}
.y23_c00095{bottom:262.845000px;}
.y22_c00095{bottom:283.725000px;}
.y21_c00095{bottom:304.965000px;}
.y20_c00095{bottom:325.845000px;}
.y1f_c00095{bottom:346.725000px;}
.y1e_c00095{bottom:382.725000px;}
.y1d_c00095{bottom:403.965000px;}
.y1c_c00095{bottom:424.845000px;}
.y1b_c00095{bottom:445.725000px;}
.y1a_c00095{bottom:466.965000px;}
.y19_c00095{bottom:487.845000px;}
.y18_c00095{bottom:508.725000px;}
.y17_c00095{bottom:529.965000px;}
.y16_c00095{bottom:550.845000px;}
.y15_c00095{bottom:571.725000px;}
.y14_c00095{bottom:592.965000px;}
.y13_c00095{bottom:613.845000px;}
.y12_c00095{bottom:635.085000px;}
.y11_c00095{bottom:671.085000px;}
.y10_c00095{bottom:707.085000px;}
.yf_c00095{bottom:727.965000px;}
.ye_c00095{bottom:763.965000px;}
.yd_c00095{bottom:799.965000px;}
.yc_c00095{bottom:835.965000px;}
.yb_c00095{bottom:856.845000px;}
.ya_c00095{bottom:878.085000px;}
.y9_c00095{bottom:914.085000px;}
.y8_c00095{bottom:950.085000px;}
.y7_c00095{bottom:986.085000px;}
.y6_c00095{bottom:1022.085000px;}
.y5_c00095{bottom:1042.965000px;}
.y4_c00095{bottom:1063.845000px;}
.y3_c00095{bottom:1085.085000px;}
.y2_c00095{bottom:1138.365000px;}
.h5_c00095{height:19.255500px;}
.h6_c00095{height:46.320000px;}
.h4_c00095{height:57.294676px;}
.h3_c00095{height:65.232000px;}
.h2_c00095{height:1201.365000px;}
.h0_c00095{height:1262.835000px;}
.h1_c00095{height:1263.000000px;}
.w3_c00095{width:16.680000px;}
.w2_c00095{width:863.955000px;}
.w0_c00095{width:892.935000px;}
.w1_c00095{width:893.250000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:14.490000px;}
.x2_c00095{left:113.040150px;}
.x8_c00095{left:140.037600px;}
.x5_c00095{left:148.031550px;}
.x3_c00095{left:150.011700px;}
.x7_c00095{left:153.035550px;}
.x6_c00095{left:161.668200px;}
.x4_c00095{left:224.962200px;}
.x9_c00095{left:385.996200px;}
.xa_c00095{left:426.999750px;}
.xb_c00095{left:768.255000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls4_c00095{letter-spacing:0.000000pt;}
.ls5_c00095{letter-spacing:4.827264pt;}
.ls2_c00095{letter-spacing:5.312000pt;}
.ls0_c00095{letter-spacing:5.314133pt;}
.ls3_c00095{letter-spacing:5.475484pt;}
.ls1_c00095{letter-spacing:48.768000pt;}
.ws0_c00095{word-spacing:-18.705024pt;}
.ws1_c00095{word-spacing:0.000000pt;}
._2_c00095{margin-left:-1.048320pt;}
._0_c00095{width:1.088000pt;}
._8_c00095{width:2.048000pt;}
._9_c00095{width:2.944000pt;}
._5_c00095{width:3.904000pt;}
._a_c00095{width:4.800000pt;}
._d_c00095{width:6.208000pt;}
._7_c00095{width:8.000000pt;}
._6_c00095{width:9.664000pt;}
._c_c00095{width:10.752000pt;}
._4_c00095{width:13.184000pt;}
._b_c00095{width:14.336000pt;}
._1_c00095{width:18.944000pt;}
._3_c00095{width:23.616000pt;}
._e_c00095{width:25.728000pt;}
.fs2_c00095{font-size:49.920000pt;}
.fs3_c00095{font-size:53.333333pt;}
.fs0_c00095{font-size:64.000000pt;}
.fs1_c00095{font-size:65.969690pt;}
.y0_c00095{bottom:0.000000pt;}
.y2b_c00095{bottom:2.773467pt;}
.y2a_c00095{bottom:30.884000pt;}
.y1_c00095{bottom:48.000000pt;}
.y29_c00095{bottom:108.200000pt;}
.y28_c00095{bottom:126.760000pt;}
.y27_c00095{bottom:145.640000pt;}
.y26_c00095{bottom:164.200000pt;}
.y25_c00095{bottom:183.080000pt;}
.y24_c00095{bottom:215.080000pt;}
.y23_c00095{bottom:233.640000pt;}
.y22_c00095{bottom:252.200000pt;}
.y21_c00095{bottom:271.080000pt;}
.y20_c00095{bottom:289.640000pt;}
.y1f_c00095{bottom:308.200000pt;}
.y1e_c00095{bottom:340.200000pt;}
.y1d_c00095{bottom:359.080000pt;}
.y1c_c00095{bottom:377.640000pt;}
.y1b_c00095{bottom:396.200000pt;}
.y1a_c00095{bottom:415.080000pt;}
.y19_c00095{bottom:433.640000pt;}
.y18_c00095{bottom:452.200000pt;}
.y17_c00095{bottom:471.080000pt;}
.y16_c00095{bottom:489.640000pt;}
.y15_c00095{bottom:508.200000pt;}
.y14_c00095{bottom:527.080000pt;}
.y13_c00095{bottom:545.640000pt;}
.y12_c00095{bottom:564.520000pt;}
.y11_c00095{bottom:596.520000pt;}
.y10_c00095{bottom:628.520000pt;}
.yf_c00095{bottom:647.080000pt;}
.ye_c00095{bottom:679.080000pt;}
.yd_c00095{bottom:711.080000pt;}
.yc_c00095{bottom:743.080000pt;}
.yb_c00095{bottom:761.640000pt;}
.ya_c00095{bottom:780.520000pt;}
.y9_c00095{bottom:812.520000pt;}
.y8_c00095{bottom:844.520000pt;}
.y7_c00095{bottom:876.520000pt;}
.y6_c00095{bottom:908.520000pt;}
.y5_c00095{bottom:927.080000pt;}
.y4_c00095{bottom:945.640000pt;}
.y3_c00095{bottom:964.520000pt;}
.y2_c00095{bottom:1011.880000pt;}
.h5_c00095{height:17.116000pt;}
.h6_c00095{height:41.173333pt;}
.h4_c00095{height:50.928601pt;}
.h3_c00095{height:57.984000pt;}
.h2_c00095{height:1067.880000pt;}
.h0_c00095{height:1122.520000pt;}
.h1_c00095{height:1122.666667pt;}
.w3_c00095{width:14.826667pt;}
.w2_c00095{width:767.960000pt;}
.w0_c00095{width:793.720000pt;}
.w1_c00095{width:794.000000pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:12.880000pt;}
.x2_c00095{left:100.480133pt;}
.x8_c00095{left:124.477867pt;}
.x5_c00095{left:131.583600pt;}
.x3_c00095{left:133.343733pt;}
.x7_c00095{left:136.031600pt;}
.x6_c00095{left:143.705067pt;}
.x4_c00095{left:199.966400pt;}
.x9_c00095{left:343.107733pt;}
.xa_c00095{left:379.555333pt;}
.xb_c00095{left:682.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_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_8b3b6bfaf3dbc03707a6a40d.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_adff5c7e3cedfa755d8d29e4.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;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:ff3_c00096;src:url('chunks/assets/font_1541cc2a05d8c941aff26426.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00096;src:url('chunks/assets/font_1f3df6ea4d06ee47381d3fe1.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:0.787000;font-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_c00096{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00096{vertical-align:-24.480000px;}
.v0_c00096{vertical-align:0.000000px;}
.v1_c00096{vertical-align:30.240000px;}
.ls14_c00096{letter-spacing:-0.179568px;}
.ls13_c00096{letter-spacing:0.000000px;}
.ls27_c00096{letter-spacing:0.144000px;}
.ls11_c00096{letter-spacing:0.236160px;}
.ls9_c00096{letter-spacing:0.265680px;}
.ls8_c00096{letter-spacing:0.295200px;}
.ls23_c00096{letter-spacing:0.318816px;}
.ls16_c00096{letter-spacing:0.330480px;}
.lsb_c00096{letter-spacing:0.330624px;}
.ls3_c00096{letter-spacing:0.398400px;}
.lsf_c00096{letter-spacing:0.454608px;}
.ls2a_c00096{letter-spacing:0.492942px;}
.ls6_c00096{letter-spacing:0.531360px;}
.lsa_c00096{letter-spacing:0.560880px;}
.ls1c_c00096{letter-spacing:0.584496px;}
.ls2f_c00096{letter-spacing:0.602485px;}
.lsd_c00096{letter-spacing:0.628800px;}
.ls21_c00096{letter-spacing:0.637632px;}
.ls2_c00096{letter-spacing:0.667440px;}
.ls5_c00096{letter-spacing:0.680400px;}
.ls1e_c00096{letter-spacing:0.690768px;}
.ls1b_c00096{letter-spacing:0.696672px;}
.ls7_c00096{letter-spacing:0.712027px;}
.ls22_c00096{letter-spacing:0.743904px;}
.ls20_c00096{letter-spacing:0.766799px;}
.ls24_c00096{letter-spacing:0.797040px;}
.ls25_c00096{letter-spacing:0.821570px;}
.ls15_c00096{letter-spacing:0.861840px;}
.ls17_c00096{letter-spacing:0.868320px;}
.ls4_c00096{letter-spacing:0.888364px;}
.ls19_c00096{letter-spacing:0.961838px;}
.ls31_c00096{letter-spacing:0.962352px;}
.ls1d_c00096{letter-spacing:0.991970px;}
.ls1a_c00096{letter-spacing:1.028632px;}
.ls18_c00096{letter-spacing:1.235695px;}
.ls2b_c00096{letter-spacing:5.248656px;}
.ls28_c00096{letter-spacing:5.295888px;}
.ls2c_c00096{letter-spacing:5.301792px;}
.ls10_c00096{letter-spacing:5.372640px;}
.ls2e_c00096{letter-spacing:5.402160px;}
.ls26_c00096{letter-spacing:5.430672px;}
.ls29_c00096{letter-spacing:5.514336px;}
.ls30_c00096{letter-spacing:5.567472px;}
.ls0_c00096{letter-spacing:5.974800px;}
.lsc_c00096{letter-spacing:5.975400px;}
.ls1_c00096{letter-spacing:5.976000px;}
.ls12_c00096{letter-spacing:6.159920px;}
.ls1f_c00096{letter-spacing:8.041248px;}
.ls2d_c00096{letter-spacing:15.220512px;}
.lse_c00096{letter-spacing:20.250720px;}
.sc__c00096{text-shadow:none;}
.sc1_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00096{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc1_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00096{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00096{word-spacing:-25.992000px;}
.ws15_c00096{word-spacing:-21.980592px;}
.wsd_c00096{word-spacing:-21.927456px;}
.ws12_c00096{word-spacing:-21.815280px;}
.ws10_c00096{word-spacing:-21.714912px;}
.wsc_c00096{word-spacing:-21.709008px;}
.wsf_c00096{word-spacing:-21.661776px;}
.wsa_c00096{word-spacing:-21.043152px;}
.ws0_c00096{word-spacing:-20.016000px;}
.ws4_c00096{word-spacing:-19.530657px;}
.ws5_c00096{word-spacing:-19.457183px;}
.ws6_c00096{word-spacing:-18.694800px;}
.ws3_c00096{word-spacing:-18.681840px;}
.ws9_c00096{word-spacing:-17.739827px;}
.ws8_c00096{word-spacing:-17.685056px;}
.ws7_c00096{word-spacing:-17.630284px;}
.ws14_c00096{word-spacing:-17.520742px;}
.wse_c00096{word-spacing:-17.411199px;}
.ws13_c00096{word-spacing:-16.944480px;}
.ws11_c00096{word-spacing:-16.731936px;}
.ws1_c00096{word-spacing:-11.429712px;}
.wsb_c00096{word-spacing:-10.152000px;}
.ws16_c00096{word-spacing:0.000000px;}
._10_c00096{margin-left:-20.014560px;}
._12_c00096{margin-left:-14.929920px;}
._13_c00096{margin-left:-13.785120px;}
._7_c00096{margin-left:-8.560800px;}
._6_c00096{margin-left:-7.498080px;}
._2_c00096{margin-left:-1.101600px;}
._3_c00096{width:1.066440px;}
._8_c00096{width:2.656800px;}
._1_c00096{width:4.320000px;}
._c_c00096{width:5.760000px;}
._4_c00096{width:7.194528px;}
._5_c00096{width:8.324640px;}
._a_c00096{width:10.028496px;}
._9_c00096{width:11.217600px;}
._e_c00096{width:12.254400px;}
._14_c00096{width:15.007704px;}
._0_c00096{width:18.288000px;}
._11_c00096{width:19.812696px;}
._f_c00096{width:21.744000px;}
._b_c00096{width:25.776000px;}
._d_c00096{width:26.928000px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs8_c00096{font-size:36.000000px;}
.fs2_c00096{font-size:41.760000px;}
.fs7_c00096{font-size:56.160000px;}
.fs5_c00096{font-size:59.040000px;}
.fs9_c00096{font-size:60.000000px;}
.fs6_c00096{font-size:60.857039px;}
.fs3_c00096{font-size:64.800000px;}
.fs4_c00096{font-size:66.794311px;}
.fs0_c00096{font-size:72.000000px;}
.fs1_c00096{font-size:74.215901px;}
.y0_c00096{bottom:0.000000px;}
.y3b_c00096{bottom:3.120150px;}
.y3a_c00096{bottom:34.744500px;}
.y1_c00096{bottom:54.000000px;}
.y39_c00096{bottom:70.245000px;}
.y38_c00096{bottom:70.246800px;}
.y36_c00096{bottom:87.881040px;}
.y37_c00096{bottom:87.885000px;}
.y35_c00096{bottom:105.165000px;}
.y34_c00096{bottom:122.805000px;}
.y33_c00096{bottom:128.925000px;}
.y32_c00096{bottom:146.565000px;}
.y31_c00096{bottom:157.725000px;}
.y30_c00096{bottom:157.726800px;}
.y2f_c00096{bottom:175.365000px;}
.y2e_c00096{bottom:175.366800px;}
.y2d_c00096{bottom:193.005000px;}
.y2c_c00096{bottom:199.125000px;}
.y2b_c00096{bottom:216.405000px;}
.y2a_c00096{bottom:227.925000px;}
.y29_c00096{bottom:234.045000px;}
.y28_c00096{bottom:260.685000px;}
.y27_c00096{bottom:297.765000px;}
.y26_c00096{bottom:318.645000px;}
.y25_c00096{bottom:339.885000px;}
.y24_c00096{bottom:375.885000px;}
.y23_c00096{bottom:396.765000px;}
.y22_c00096{bottom:418.005000px;}
.y21_c00096{bottom:438.885000px;}
.y20_c00096{bottom:459.765000px;}
.y1f_c00096{bottom:481.005000px;}
.y1e_c00096{bottom:501.885000px;}
.y1d_c00096{bottom:522.765000px;}
.y1c_c00096{bottom:558.765000px;}
.y1b_c00096{bottom:580.005000px;}
.y1a_c00096{bottom:600.885000px;}
.y19_c00096{bottom:621.765000px;}
.y18_c00096{bottom:657.765000px;}
.y17_c00096{bottom:693.765000px;}
.y16_c00096{bottom:722.201040px;}
.y14_c00096{bottom:739.484640px;}
.y15_c00096{bottom:739.485000px;}
.y13_c00096{bottom:757.122840px;}
.y12_c00096{bottom:774.761040px;}
.y11_c00096{bottom:792.045000px;}
.y10_c00096{bottom:792.046800px;}
.yf_c00096{bottom:809.685000px;}
.ye_c00096{bottom:842.085000px;}
.yd_c00096{bottom:859.725000px;}
.yc_c00096{bottom:892.485000px;}
.yb_c00096{bottom:914.445000px;}
.ya_c00096{bottom:933.525000px;}
.y9_c00096{bottom:952.965000px;}
.y7_c00096{bottom:970.245000px;}
.y8_c00096{bottom:972.045000px;}
.y6_c00096{bottom:1006.965000px;}
.y5_c00096{bottom:1042.965000px;}
.y4_c00096{bottom:1063.845000px;}
.y3_c00096{bottom:1085.085000px;}
.y2_c00096{bottom:1138.365000px;}
.hb_c00096{height:19.255500px;}
.ha_c00096{height:32.616000px;}
.hc_c00096{height:46.320000px;}
.h9_c00096{height:46.981634px;}
.h7_c00096{height:51.565208px;}
.h8_c00096{height:53.490240px;}
.h4_c00096{height:57.294676px;}
.h6_c00096{height:58.708800px;}
.h3_c00096{height:65.232000px;}
.h5_c00096{height:68.074560px;}
.h2_c00096{height:1201.365000px;}
.h0_c00096{height:1262.835000px;}
.h1_c00096{height:1263.000000px;}
.w7_c00096{width:16.680000px;}
.w3_c00096{width:60.840000px;}
.w4_c00096{width:116.280000px;}
.w5_c00096{width:158.760000px;}
.w6_c00096{width:309.240000px;}
.w2_c00096{width:863.955000px;}
.w0_c00096{width:892.935000px;}
.w1_c00096{width:893.250000px;}
.x0_c00096{left:0.000000px;}
.xa_c00096{left:7.920150px;}
.x1_c00096{left:14.490000px;}
.x11_c00096{left:55.244250px;}
.xc_c00096{left:63.557250px;}
.x12_c00096{left:77.271450px;}
.x2_c00096{left:113.040150px;}
.x13_c00096{left:115.732350px;}
.x2d_c00096{left:118.034850px;}
.x9_c00096{left:119.610000px;}
.x27_c00096{left:127.217700px;}
.x26_c00096{left:130.032000px;}
.x1b_c00096{left:133.034550px;}
.x1e_c00096{left:140.869200px;}
.x2f_c00096{left:142.213650px;}
.xf_c00096{left:146.982300px;}
.x3_c00096{left:150.011700px;}
.x28_c00096{left:151.381650px;}
.x19_c00096{left:156.389250px;}
.x29_c00096{left:161.374200px;}
.x14_c00096{left:166.188600px;}
.x40_c00096{left:173.829300px;}
.x1f_c00096{left:177.498450px;}
.xb_c00096{left:181.170000px;}
.x22_c00096{left:188.966700px;}
.x10_c00096{left:191.911350px;}
.x37_c00096{left:197.204250px;}
.x7_c00096{left:201.211650px;}
.x2e_c00096{left:205.527450px;}
.x8_c00096{left:212.209350px;}
.x2a_c00096{left:222.588900px;}
.x4_c00096{left:224.962200px;}
.x1c_c00096{left:231.139200px;}
.x30_c00096{left:237.234750px;}
.x23_c00096{left:250.914900px;}
.x41_c00096{left:265.917450px;}
.x1d_c00096{left:273.914850px;}
.x38_c00096{left:284.641800px;}
.xd_c00096{left:298.170000px;}
.x31_c00096{left:306.411900px;}
.x2b_c00096{left:339.619650px;}
.x15_c00096{left:364.833300px;}
.x32_c00096{left:366.410100px;}
.x2c_c00096{left:371.284800px;}
.x33_c00096{left:374.749500px;}
.x34_c00096{left:378.919200px;}
.x39_c00096{left:382.965900px;}
.x16_c00096{left:407.622150px;}
.x3a_c00096{left:422.970300px;}
.x3b_c00096{left:452.129550px;}
.x3c_c00096{left:456.299250px;}
.xe_c00096{left:457.650000px;}
.x3d_c00096{left:462.120450px;}
.x46_c00096{left:473.087700px;}
.x17_c00096{left:485.682750px;}
.x1a_c00096{left:493.605450px;}
.x18_c00096{left:521.517300px;}
.x47_c00096{left:528.945900px;}
.x42_c00096{left:553.721550px;}
.x48_c00096{left:563.954250px;}
.x49_c00096{left:568.123950px;}
.x35_c00096{left:602.440500px;}
.x43_c00096{left:607.470000px;}
.x44_c00096{left:612.464700px;}
.x36_c00096{left:645.789600px;}
.x5_c00096{left:648.564300px;}
.x45_c00096{left:655.813800px;}
.x6_c00096{left:657.564300px;}
.x20_c00096{left:660.898650px;}
.x3e_c00096{left:717.046050px;}
.x24_c00096{left:724.441800px;}
.x25_c00096{left:738.445650px;}
.x21_c00096{left:745.386150px;}
.x3f_c00096{left:750.390000px;}
.x4a_c00096{left:768.255000px;}
@media print{
.v2_c00096{vertical-align:-21.760000pt;}
.v0_c00096{vertical-align:0.000000pt;}
.v1_c00096{vertical-align:26.880000pt;}
.ls14_c00096{letter-spacing:-0.159616pt;}
.ls13_c00096{letter-spacing:0.000000pt;}
.ls27_c00096{letter-spacing:0.128000pt;}
.ls11_c00096{letter-spacing:0.209920pt;}
.ls9_c00096{letter-spacing:0.236160pt;}
.ls8_c00096{letter-spacing:0.262400pt;}
.ls23_c00096{letter-spacing:0.283392pt;}
.ls16_c00096{letter-spacing:0.293760pt;}
.lsb_c00096{letter-spacing:0.293888pt;}
.ls3_c00096{letter-spacing:0.354133pt;}
.lsf_c00096{letter-spacing:0.404096pt;}
.ls2a_c00096{letter-spacing:0.438171pt;}
.ls6_c00096{letter-spacing:0.472320pt;}
.lsa_c00096{letter-spacing:0.498560pt;}
.ls1c_c00096{letter-spacing:0.519552pt;}
.ls2f_c00096{letter-spacing:0.535542pt;}
.lsd_c00096{letter-spacing:0.558933pt;}
.ls21_c00096{letter-spacing:0.566784pt;}
.ls2_c00096{letter-spacing:0.593280pt;}
.ls5_c00096{letter-spacing:0.604800pt;}
.ls1e_c00096{letter-spacing:0.614016pt;}
.ls1b_c00096{letter-spacing:0.619264pt;}
.ls7_c00096{letter-spacing:0.632913pt;}
.ls22_c00096{letter-spacing:0.661248pt;}
.ls20_c00096{letter-spacing:0.681599pt;}
.ls24_c00096{letter-spacing:0.708480pt;}
.ls25_c00096{letter-spacing:0.730284pt;}
.ls15_c00096{letter-spacing:0.766080pt;}
.ls17_c00096{letter-spacing:0.771840pt;}
.ls4_c00096{letter-spacing:0.789657pt;}
.ls19_c00096{letter-spacing:0.854967pt;}
.ls31_c00096{letter-spacing:0.855424pt;}
.ls1d_c00096{letter-spacing:0.881751pt;}
.ls1a_c00096{letter-spacing:0.914340pt;}
.ls18_c00096{letter-spacing:1.098395pt;}
.ls2b_c00096{letter-spacing:4.665472pt;}
.ls28_c00096{letter-spacing:4.707456pt;}
.ls2c_c00096{letter-spacing:4.712704pt;}
.ls10_c00096{letter-spacing:4.775680pt;}
.ls2e_c00096{letter-spacing:4.801920pt;}
.ls26_c00096{letter-spacing:4.827264pt;}
.ls29_c00096{letter-spacing:4.901632pt;}
.ls30_c00096{letter-spacing:4.948864pt;}
.ls0_c00096{letter-spacing:5.310933pt;}
.lsc_c00096{letter-spacing:5.311467pt;}
.ls1_c00096{letter-spacing:5.312000pt;}
.ls12_c00096{letter-spacing:5.475484pt;}
.ls1f_c00096{letter-spacing:7.147776pt;}
.ls2d_c00096{letter-spacing:13.529344pt;}
.lse_c00096{letter-spacing:18.000640pt;}
.ws2_c00096{word-spacing:-23.104000pt;}
.ws15_c00096{word-spacing:-19.538304pt;}
.wsd_c00096{word-spacing:-19.491072pt;}
.ws12_c00096{word-spacing:-19.391360pt;}
.ws10_c00096{word-spacing:-19.302144pt;}
.wsc_c00096{word-spacing:-19.296896pt;}
.wsf_c00096{word-spacing:-19.254912pt;}
.wsa_c00096{word-spacing:-18.705024pt;}
.ws0_c00096{word-spacing:-17.792000pt;}
.ws4_c00096{word-spacing:-17.360584pt;}
.ws5_c00096{word-spacing:-17.295274pt;}
.ws6_c00096{word-spacing:-16.617600pt;}
.ws3_c00096{word-spacing:-16.606080pt;}
.ws9_c00096{word-spacing:-15.768735pt;}
.ws8_c00096{word-spacing:-15.720049pt;}
.ws7_c00096{word-spacing:-15.671364pt;}
.ws14_c00096{word-spacing:-15.573992pt;}
.wse_c00096{word-spacing:-15.476621pt;}
.ws13_c00096{word-spacing:-15.061760pt;}
.ws11_c00096{word-spacing:-14.872832pt;}
.ws1_c00096{word-spacing:-10.159744pt;}
.wsb_c00096{word-spacing:-9.024000pt;}
.ws16_c00096{word-spacing:0.000000pt;}
._10_c00096{margin-left:-17.790720pt;}
._12_c00096{margin-left:-13.271040pt;}
._13_c00096{margin-left:-12.253440pt;}
._7_c00096{margin-left:-7.609600pt;}
._6_c00096{margin-left:-6.664960pt;}
._2_c00096{margin-left:-0.979200pt;}
._3_c00096{width:0.947947pt;}
._8_c00096{width:2.361600pt;}
._1_c00096{width:3.840000pt;}
._c_c00096{width:5.120000pt;}
._4_c00096{width:6.395136pt;}
._5_c00096{width:7.399680pt;}
._a_c00096{width:8.914219pt;}
._9_c00096{width:9.971200pt;}
._e_c00096{width:10.892800pt;}
._14_c00096{width:13.340181pt;}
._0_c00096{width:16.256000pt;}
._11_c00096{width:17.611285pt;}
._f_c00096{width:19.328000pt;}
._b_c00096{width:22.912000pt;}
._d_c00096{width:23.936000pt;}
.fs8_c00096{font-size:32.000000pt;}
.fs2_c00096{font-size:37.120000pt;}
.fs7_c00096{font-size:49.920000pt;}
.fs5_c00096{font-size:52.480000pt;}
.fs9_c00096{font-size:53.333333pt;}
.fs6_c00096{font-size:54.095146pt;}
.fs3_c00096{font-size:57.600000pt;}
.fs4_c00096{font-size:59.372721pt;}
.fs0_c00096{font-size:64.000000pt;}
.fs1_c00096{font-size:65.969690pt;}
.y0_c00096{bottom:0.000000pt;}
.y3b_c00096{bottom:2.773467pt;}
.y3a_c00096{bottom:30.884000pt;}
.y1_c00096{bottom:48.000000pt;}
.y39_c00096{bottom:62.440000pt;}
.y38_c00096{bottom:62.441600pt;}
.y36_c00096{bottom:78.116480pt;}
.y37_c00096{bottom:78.120000pt;}
.y35_c00096{bottom:93.480000pt;}
.y34_c00096{bottom:109.160000pt;}
.y33_c00096{bottom:114.600000pt;}
.y32_c00096{bottom:130.280000pt;}
.y31_c00096{bottom:140.200000pt;}
.y30_c00096{bottom:140.201600pt;}
.y2f_c00096{bottom:155.880000pt;}
.y2e_c00096{bottom:155.881600pt;}
.y2d_c00096{bottom:171.560000pt;}
.y2c_c00096{bottom:177.000000pt;}
.y2b_c00096{bottom:192.360000pt;}
.y2a_c00096{bottom:202.600000pt;}
.y29_c00096{bottom:208.040000pt;}
.y28_c00096{bottom:231.720000pt;}
.y27_c00096{bottom:264.680000pt;}
.y26_c00096{bottom:283.240000pt;}
.y25_c00096{bottom:302.120000pt;}
.y24_c00096{bottom:334.120000pt;}
.y23_c00096{bottom:352.680000pt;}
.y22_c00096{bottom:371.560000pt;}
.y21_c00096{bottom:390.120000pt;}
.y20_c00096{bottom:408.680000pt;}
.y1f_c00096{bottom:427.560000pt;}
.y1e_c00096{bottom:446.120000pt;}
.y1d_c00096{bottom:464.680000pt;}
.y1c_c00096{bottom:496.680000pt;}
.y1b_c00096{bottom:515.560000pt;}
.y1a_c00096{bottom:534.120000pt;}
.y19_c00096{bottom:552.680000pt;}
.y18_c00096{bottom:584.680000pt;}
.y17_c00096{bottom:616.680000pt;}
.y16_c00096{bottom:641.956480pt;}
.y14_c00096{bottom:657.319680pt;}
.y15_c00096{bottom:657.320000pt;}
.y13_c00096{bottom:672.998080pt;}
.y12_c00096{bottom:688.676480pt;}
.y11_c00096{bottom:704.040000pt;}
.y10_c00096{bottom:704.041600pt;}
.yf_c00096{bottom:719.720000pt;}
.ye_c00096{bottom:748.520000pt;}
.yd_c00096{bottom:764.200000pt;}
.yc_c00096{bottom:793.320000pt;}
.yb_c00096{bottom:812.840000pt;}
.ya_c00096{bottom:829.800000pt;}
.y9_c00096{bottom:847.080000pt;}
.y7_c00096{bottom:862.440000pt;}
.y8_c00096{bottom:864.040000pt;}
.y6_c00096{bottom:895.080000pt;}
.y5_c00096{bottom:927.080000pt;}
.y4_c00096{bottom:945.640000pt;}
.y3_c00096{bottom:964.520000pt;}
.y2_c00096{bottom:1011.880000pt;}
.hb_c00096{height:17.116000pt;}
.ha_c00096{height:28.992000pt;}
.hc_c00096{height:41.173333pt;}
.h9_c00096{height:41.761453pt;}
.h7_c00096{height:45.835741pt;}
.h8_c00096{height:47.546880pt;}
.h4_c00096{height:50.928601pt;}
.h6_c00096{height:52.185600pt;}
.h3_c00096{height:57.984000pt;}
.h5_c00096{height:60.510720pt;}
.h2_c00096{height:1067.880000pt;}
.h0_c00096{height:1122.520000pt;}
.h1_c00096{height:1122.666667pt;}
.w7_c00096{width:14.826667pt;}
.w3_c00096{width:54.080000pt;}
.w4_c00096{width:103.360000pt;}
.w5_c00096{width:141.120000pt;}
.w6_c00096{width:274.880000pt;}
.w2_c00096{width:767.960000pt;}
.w0_c00096{width:793.720000pt;}
.w1_c00096{width:794.000000pt;}
.x0_c00096{left:0.000000pt;}
.xa_c00096{left:7.040133pt;}
.x1_c00096{left:12.880000pt;}
.x11_c00096{left:49.106000pt;}
.xc_c00096{left:56.495333pt;}
.x12_c00096{left:68.685733pt;}
.x2_c00096{left:100.480133pt;}
.x13_c00096{left:102.873200pt;}
.x2d_c00096{left:104.919867pt;}
.x9_c00096{left:106.320000pt;}
.x27_c00096{left:113.082400pt;}
.x26_c00096{left:115.584000pt;}
.x1b_c00096{left:118.252933pt;}
.x1e_c00096{left:125.217067pt;}
.x2f_c00096{left:126.412133pt;}
.xf_c00096{left:130.650933pt;}
.x3_c00096{left:133.343733pt;}
.x28_c00096{left:134.561467pt;}
.x19_c00096{left:139.012667pt;}
.x29_c00096{left:143.443733pt;}
.x14_c00096{left:147.723200pt;}
.x40_c00096{left:154.514933pt;}
.x1f_c00096{left:157.776400pt;}
.xb_c00096{left:161.040000pt;}
.x22_c00096{left:167.970400pt;}
.x10_c00096{left:170.587867pt;}
.x37_c00096{left:175.292667pt;}
.x7_c00096{left:178.854800pt;}
.x2e_c00096{left:182.691067pt;}
.x8_c00096{left:188.630533pt;}
.x2a_c00096{left:197.856800pt;}
.x4_c00096{left:199.966400pt;}
.x1c_c00096{left:205.457067pt;}
.x30_c00096{left:210.875333pt;}
.x23_c00096{left:223.035467pt;}
.x41_c00096{left:236.371067pt;}
.x1d_c00096{left:243.479867pt;}
.x38_c00096{left:253.014933pt;}
.xd_c00096{left:265.040000pt;}
.x31_c00096{left:272.366133pt;}
.x2b_c00096{left:301.884133pt;}
.x15_c00096{left:324.296267pt;}
.x32_c00096{left:325.697867pt;}
.x2c_c00096{left:330.030933pt;}
.x33_c00096{left:333.110667pt;}
.x34_c00096{left:336.817067pt;}
.x39_c00096{left:340.414133pt;}
.x16_c00096{left:362.330800pt;}
.x3a_c00096{left:375.973600pt;}
.x3b_c00096{left:401.892933pt;}
.x3c_c00096{left:405.599333pt;}
.xe_c00096{left:406.800000pt;}
.x3d_c00096{left:410.773733pt;}
.x46_c00096{left:420.522400pt;}
.x17_c00096{left:431.718000pt;}
.x1a_c00096{left:438.760400pt;}
.x18_c00096{left:463.570933pt;}
.x47_c00096{left:470.174133pt;}
.x42_c00096{left:492.196933pt;}
.x48_c00096{left:501.292667pt;}
.x49_c00096{left:504.999067pt;}
.x35_c00096{left:535.502667pt;}
.x43_c00096{left:539.973333pt;}
.x44_c00096{left:544.413067pt;}
.x36_c00096{left:574.035200pt;}
.x5_c00096{left:576.501600pt;}
.x45_c00096{left:582.945600pt;}
.x6_c00096{left:584.501600pt;}
.x20_c00096{left:587.465467pt;}
.x3e_c00096{left:637.374267pt;}
.x24_c00096{left:643.948267pt;}
.x25_c00096{left:656.396133pt;}
.x21_c00096{left:662.565467pt;}
.x3f_c00096{left:667.013333pt;}
.x4a_c00096{left:682.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_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_652c13800e0fc3faaab59e45.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.134000;font-style:normal;font-weight:normal;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_319277f43c476e9d54203003.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;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:ff3_c00097;src:url('chunks/assets/font_89264e42d598260d3826c924.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_f0ebd73c3d1e39c00fdd0f12.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:0.787000;font-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_c00097{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00097{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00097{vertical-align:-24.480000px;}
.v0_c00097{vertical-align:0.000000px;}
.v1_c00097{vertical-align:30.240000px;}
.ls11_c00097{letter-spacing:-0.185094px;}
.lsf_c00097{letter-spacing:-0.179568px;}
.lse_c00097{letter-spacing:0.000000px;}
.ls14_c00097{letter-spacing:0.144000px;}
.ls10_c00097{letter-spacing:0.172800px;}
.ls4_c00097{letter-spacing:0.265680px;}
.ls7_c00097{letter-spacing:0.273857px;}
.ls2_c00097{letter-spacing:0.295200px;}
.ls6_c00097{letter-spacing:0.304285px;}
.ls17_c00097{letter-spacing:0.383399px;}
.ls19_c00097{letter-spacing:0.425088px;}
.ls3_c00097{letter-spacing:0.531360px;}
.lsc_c00097{letter-spacing:0.712027px;}
.ls15_c00097{letter-spacing:0.766799px;}
.ls18_c00097{letter-spacing:0.821570px;}
.ls9_c00097{letter-spacing:0.861984px;}
.ls16_c00097{letter-spacing:0.991970px;}
.ls8_c00097{letter-spacing:5.219136px;}
.ls13_c00097{letter-spacing:5.335200px;}
.lsb_c00097{letter-spacing:5.372640px;}
.ls1a_c00097{letter-spacing:5.514336px;}
.lsa_c00097{letter-spacing:5.549760px;}
.ls1_c00097{letter-spacing:5.976000px;}
.ls0_c00097{letter-spacing:5.983800px;}
.lsd_c00097{letter-spacing:6.159920px;}
.ls5_c00097{letter-spacing:19.778400px;}
.ls12_c00097{letter-spacing:28.648800px;}
.sc__c00097{text-shadow:none;}
.sc1_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00097{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc1_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00097{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00097{word-spacing:-21.927456px;}
.wsa_c00097{word-spacing:-21.632256px;}
.ws2_c00097{word-spacing:-20.947680px;}
.ws1_c00097{word-spacing:-20.632021px;}
.ws6_c00097{word-spacing:-17.910227px;}
.ws4_c00097{word-spacing:-17.685056px;}
.wsb_c00097{word-spacing:-17.630284px;}
.ws7_c00097{word-spacing:-17.301656px;}
.ws5_c00097{word-spacing:-16.944480px;}
.ws8_c00097{word-spacing:-16.918257px;}
.ws0_c00097{word-spacing:-11.429712px;}
.ws3_c00097{word-spacing:-10.152000px;}
.wsc_c00097{word-spacing:0.000000px;}
._7_c00097{margin-left:-28.641600px;}
._d_c00097{margin-left:-19.357920px;}
._6_c00097{margin-left:-8.312799px;}
._5_c00097{margin-left:-7.109265px;}
._c_c00097{margin-left:-1.034570px;}
._4_c00097{width:1.008000px;}
._b_c00097{width:2.057568px;}
._2_c00097{width:3.363216px;}
._1_c00097{width:4.536000px;}
._a_c00097{width:5.544000px;}
._9_c00097{width:6.696000px;}
._0_c00097{width:16.056000px;}
._e_c00097{width:20.265394px;}
._3_c00097{width:21.312000px;}
._8_c00097{width:28.656000px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs5_c00097{font-size:36.000000px;}
.fs2_c00097{font-size:41.760000px;}
.fs3_c00097{font-size:43.045223px;}
.fs4_c00097{font-size:56.160000px;}
.fs6_c00097{font-size:59.040000px;}
.fs8_c00097{font-size:60.000000px;}
.fs7_c00097{font-size:60.857039px;}
.fs0_c00097{font-size:72.000000px;}
.fs1_c00097{font-size:74.215901px;}
.y0_c00097{bottom:0.000000px;}
.y27_c00097{bottom:3.120150px;}
.y26_c00097{bottom:34.744500px;}
.y1_c00097{bottom:54.000000px;}
.y25_c00097{bottom:61.605000px;}
.y24_c00097{bottom:78.885000px;}
.y22_c00097{bottom:90.401040px;}
.y23_c00097{bottom:90.405000px;}
.y21_c00097{bottom:107.685000px;}
.y20_c00097{bottom:107.686800px;}
.y1f_c00097{bottom:125.325000px;}
.y1e_c00097{bottom:131.445000px;}
.y1d_c00097{bottom:142.965000px;}
.y1c_c00097{bottom:149.085000px;}
.y1b_c00097{bottom:160.245000px;}
.y1a_c00097{bottom:166.365000px;}
.y19_c00097{bottom:177.885000px;}
.y18_c00097{bottom:184.005000px;}
.y17_c00097{bottom:195.525000px;}
.y16_c00097{bottom:201.645000px;}
.y15_c00097{bottom:218.925000px;}
.y14_c00097{bottom:245.565000px;}
.y13_c00097{bottom:694.845000px;}
.y12_c00097{bottom:730.845000px;}
.y11_c00097{bottom:752.085000px;}
.y10_c00097{bottom:772.965000px;}
.yf_c00097{bottom:793.845000px;}
.ye_c00097{bottom:829.845000px;}
.yd_c00097{bottom:865.845000px;}
.yc_c00097{bottom:901.845000px;}
.ya_c00097{bottom:937.845000px;}
.yb_c00097{bottom:945.405000px;}
.y9_c00097{bottom:959.085000px;}
.y8_c00097{bottom:979.965000px;}
.y7_c00097{bottom:1000.845000px;}
.y6_c00097{bottom:1022.085000px;}
.y5_c00097{bottom:1042.965000px;}
.y4_c00097{bottom:1063.845000px;}
.y3_c00097{bottom:1085.085000px;}
.y2_c00097{bottom:1138.365000px;}
.hb_c00097{height:19.255500px;}
.h8_c00097{height:32.616000px;}
.h7_c00097{height:33.230912px;}
.hc_c00097{height:46.320000px;}
.h9_c00097{height:46.981634px;}
.ha_c00097{height:53.490240px;}
.h4_c00097{height:57.294676px;}
.h6_c00097{height:64.401590px;}
.h3_c00097{height:65.232000px;}
.h5_c00097{height:68.074560px;}
.h2_c00097{height:1201.365000px;}
.h0_c00097{height:1262.835000px;}
.h1_c00097{height:1263.000000px;}
.w3_c00097{width:16.680000px;}
.w2_c00097{width:863.955000px;}
.w0_c00097{width:892.935000px;}
.w1_c00097{width:893.250000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:14.490000px;}
.x2_c00097{left:113.040150px;}
.x1b_c00097{left:127.217700px;}
.x16_c00097{left:147.059700px;}
.x3_c00097{left:150.011700px;}
.x17_c00097{left:160.055400px;}
.x1c_c00097{left:170.566800px;}
.x1d_c00097{left:173.896050px;}
.x2b_c00097{left:176.412600px;}
.x13_c00097{left:181.720800px;}
.x19_c00097{left:199.024650px;}
.x2c_c00097{left:212.247150px;}
.x14_c00097{left:216.059700px;}
.x18_c00097{left:219.666900px;}
.x4_c00097{left:224.962200px;}
.x1a_c00097{left:252.034050px;}
.x1e_c00097{left:263.893050px;}
.x15_c00097{left:283.750500px;}
.x1f_c00097{left:307.242150px;}
.xb_c00097{left:350.065800px;}
.x24_c00097{left:370.782000px;}
.x25_c00097{left:379.946400px;}
.x20_c00097{left:404.392050px;}
.xc_c00097{left:412.110000px;}
.x27_c00097{left:448.062000px;}
.x26_c00097{left:452.795250px;}
.x21_c00097{left:456.065550px;}
.x5_c00097{left:480.258600px;}
.x6_c00097{left:491.256150px;}
.xd_c00097{left:492.426300px;}
.xe_c00097{left:521.441850px;}
.x22_c00097{left:559.455300px;}
.x7_c00097{left:561.138000px;}
.xf_c00097{left:579.002250px;}
.x23_c00097{left:592.784100px;}
.x28_c00097{left:621.402150px;}
.x8_c00097{left:636.124950px;}
.x9_c00097{left:641.128800px;}
.xa_c00097{left:647.259150px;}
.x10_c00097{left:670.668150px;}
.x11_c00097{left:680.719500px;}
.x29_c00097{left:693.558450px;}
.x2a_c00097{left:729.393000px;}
.x12_c00097{left:745.386150px;}
.x2d_c00097{left:768.255000px;}
@media print{
.v2_c00097{vertical-align:-21.760000pt;}
.v0_c00097{vertical-align:0.000000pt;}
.v1_c00097{vertical-align:26.880000pt;}
.ls11_c00097{letter-spacing:-0.164528pt;}
.lsf_c00097{letter-spacing:-0.159616pt;}
.lse_c00097{letter-spacing:0.000000pt;}
.ls14_c00097{letter-spacing:0.128000pt;}
.ls10_c00097{letter-spacing:0.153600pt;}
.ls4_c00097{letter-spacing:0.236160pt;}
.ls7_c00097{letter-spacing:0.243428pt;}
.ls2_c00097{letter-spacing:0.262400pt;}
.ls6_c00097{letter-spacing:0.270476pt;}
.ls17_c00097{letter-spacing:0.340799pt;}
.ls19_c00097{letter-spacing:0.377856pt;}
.ls3_c00097{letter-spacing:0.472320pt;}
.lsc_c00097{letter-spacing:0.632913pt;}
.ls15_c00097{letter-spacing:0.681599pt;}
.ls18_c00097{letter-spacing:0.730284pt;}
.ls9_c00097{letter-spacing:0.766208pt;}
.ls16_c00097{letter-spacing:0.881751pt;}
.ls8_c00097{letter-spacing:4.639232pt;}
.ls13_c00097{letter-spacing:4.742400pt;}
.lsb_c00097{letter-spacing:4.775680pt;}
.ls1a_c00097{letter-spacing:4.901632pt;}
.lsa_c00097{letter-spacing:4.933120pt;}
.ls1_c00097{letter-spacing:5.312000pt;}
.ls0_c00097{letter-spacing:5.318933pt;}
.lsd_c00097{letter-spacing:5.475484pt;}
.ls5_c00097{letter-spacing:17.580800pt;}
.ls12_c00097{letter-spacing:25.465600pt;}
.ws9_c00097{word-spacing:-19.491072pt;}
.wsa_c00097{word-spacing:-19.228672pt;}
.ws2_c00097{word-spacing:-18.620160pt;}
.ws1_c00097{word-spacing:-18.339574pt;}
.ws6_c00097{word-spacing:-15.920201pt;}
.ws4_c00097{word-spacing:-15.720049pt;}
.wsb_c00097{word-spacing:-15.671364pt;}
.ws7_c00097{word-spacing:-15.379250pt;}
.ws5_c00097{word-spacing:-15.061760pt;}
.ws8_c00097{word-spacing:-15.038451pt;}
.ws0_c00097{word-spacing:-10.159744pt;}
.ws3_c00097{word-spacing:-9.024000pt;}
.wsc_c00097{word-spacing:0.000000pt;}
._7_c00097{margin-left:-25.459200pt;}
._d_c00097{margin-left:-17.207040pt;}
._6_c00097{margin-left:-7.389155pt;}
._5_c00097{margin-left:-6.319347pt;}
._c_c00097{margin-left:-0.919617pt;}
._4_c00097{width:0.896000pt;}
._b_c00097{width:1.828949pt;}
._2_c00097{width:2.989525pt;}
._1_c00097{width:4.032000pt;}
._a_c00097{width:4.928000pt;}
._9_c00097{width:5.952000pt;}
._0_c00097{width:14.272000pt;}
._e_c00097{width:18.013684pt;}
._3_c00097{width:18.944000pt;}
._8_c00097{width:25.472000pt;}
.fs5_c00097{font-size:32.000000pt;}
.fs2_c00097{font-size:37.120000pt;}
.fs3_c00097{font-size:38.262420pt;}
.fs4_c00097{font-size:49.920000pt;}
.fs6_c00097{font-size:52.480000pt;}
.fs8_c00097{font-size:53.333333pt;}
.fs7_c00097{font-size:54.095146pt;}
.fs0_c00097{font-size:64.000000pt;}
.fs1_c00097{font-size:65.969690pt;}
.y0_c00097{bottom:0.000000pt;}
.y27_c00097{bottom:2.773467pt;}
.y26_c00097{bottom:30.884000pt;}
.y1_c00097{bottom:48.000000pt;}
.y25_c00097{bottom:54.760000pt;}
.y24_c00097{bottom:70.120000pt;}
.y22_c00097{bottom:80.356480pt;}
.y23_c00097{bottom:80.360000pt;}
.y21_c00097{bottom:95.720000pt;}
.y20_c00097{bottom:95.721600pt;}
.y1f_c00097{bottom:111.400000pt;}
.y1e_c00097{bottom:116.840000pt;}
.y1d_c00097{bottom:127.080000pt;}
.y1c_c00097{bottom:132.520000pt;}
.y1b_c00097{bottom:142.440000pt;}
.y1a_c00097{bottom:147.880000pt;}
.y19_c00097{bottom:158.120000pt;}
.y18_c00097{bottom:163.560000pt;}
.y17_c00097{bottom:173.800000pt;}
.y16_c00097{bottom:179.240000pt;}
.y15_c00097{bottom:194.600000pt;}
.y14_c00097{bottom:218.280000pt;}
.y13_c00097{bottom:617.640000pt;}
.y12_c00097{bottom:649.640000pt;}
.y11_c00097{bottom:668.520000pt;}
.y10_c00097{bottom:687.080000pt;}
.yf_c00097{bottom:705.640000pt;}
.ye_c00097{bottom:737.640000pt;}
.yd_c00097{bottom:769.640000pt;}
.yc_c00097{bottom:801.640000pt;}
.ya_c00097{bottom:833.640000pt;}
.yb_c00097{bottom:840.360000pt;}
.y9_c00097{bottom:852.520000pt;}
.y8_c00097{bottom:871.080000pt;}
.y7_c00097{bottom:889.640000pt;}
.y6_c00097{bottom:908.520000pt;}
.y5_c00097{bottom:927.080000pt;}
.y4_c00097{bottom:945.640000pt;}
.y3_c00097{bottom:964.520000pt;}
.y2_c00097{bottom:1011.880000pt;}
.hb_c00097{height:17.116000pt;}
.h8_c00097{height:28.992000pt;}
.h7_c00097{height:29.538588pt;}
.hc_c00097{height:41.173333pt;}
.h9_c00097{height:41.761453pt;}
.ha_c00097{height:47.546880pt;}
.h4_c00097{height:50.928601pt;}
.h6_c00097{height:57.245858pt;}
.h3_c00097{height:57.984000pt;}
.h5_c00097{height:60.510720pt;}
.h2_c00097{height:1067.880000pt;}
.h0_c00097{height:1122.520000pt;}
.h1_c00097{height:1122.666667pt;}
.w3_c00097{width:14.826667pt;}
.w2_c00097{width:767.960000pt;}
.w0_c00097{width:793.720000pt;}
.w1_c00097{width:794.000000pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:12.880000pt;}
.x2_c00097{left:100.480133pt;}
.x1b_c00097{left:113.082400pt;}
.x16_c00097{left:130.719733pt;}
.x3_c00097{left:133.343733pt;}
.x17_c00097{left:142.271467pt;}
.x1c_c00097{left:151.614933pt;}
.x1d_c00097{left:154.574267pt;}
.x2b_c00097{left:156.811200pt;}
.x13_c00097{left:161.529600pt;}
.x19_c00097{left:176.910800pt;}
.x2c_c00097{left:188.664133pt;}
.x14_c00097{left:192.053067pt;}
.x18_c00097{left:195.259467pt;}
.x4_c00097{left:199.966400pt;}
.x1a_c00097{left:224.030267pt;}
.x1e_c00097{left:234.571600pt;}
.x15_c00097{left:252.222667pt;}
.x1f_c00097{left:273.104133pt;}
.xb_c00097{left:311.169600pt;}
.x24_c00097{left:329.584000pt;}
.x25_c00097{left:337.730133pt;}
.x20_c00097{left:359.459600pt;}
.xc_c00097{left:366.320000pt;}
.x27_c00097{left:398.277333pt;}
.x26_c00097{left:402.484667pt;}
.x21_c00097{left:405.391600pt;}
.x5_c00097{left:426.896533pt;}
.x6_c00097{left:436.672133pt;}
.xd_c00097{left:437.712267pt;}
.xe_c00097{left:463.503867pt;}
.x22_c00097{left:497.293600pt;}
.x7_c00097{left:498.789333pt;}
.xf_c00097{left:514.668667pt;}
.x23_c00097{left:526.919200pt;}
.x28_c00097{left:552.357467pt;}
.x8_c00097{left:565.444400pt;}
.x9_c00097{left:569.892267pt;}
.xa_c00097{left:575.341467pt;}
.x10_c00097{left:596.149467pt;}
.x11_c00097{left:605.084000pt;}
.x29_c00097{left:616.496400pt;}
.x2a_c00097{left:648.349333pt;}
.x12_c00097{left:662.565467pt;}
.x2d_c00097{left:682.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_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_369a3dd5c84533c9a15bc10d.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;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_c00098;src:url('chunks/assets/font_ebf4d5458558a9732f8e54e9.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:0.787000;font-style:normal;font-weight:normal;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_751d5e44cef44da23f30484b.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_a994ec5cefc610b6ff0a0b39.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:0.787000;font-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_c00098{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls6_c00098{letter-spacing:0.000000px;}
.ls3_c00098{letter-spacing:0.199560px;}
.ls7_c00098{letter-spacing:0.202464px;}
.ls1_c00098{letter-spacing:0.239160px;}
.lsb_c00098{letter-spacing:0.239760px;}
.ls2_c00098{letter-spacing:0.399600px;}
.ls9_c00098{letter-spacing:0.436896px;}
.lsa_c00098{letter-spacing:0.676656px;}
.lsc_c00098{letter-spacing:0.719280px;}
.ls0_c00098{letter-spacing:4.760880px;}
.ls8_c00098{letter-spacing:4.843152px;}
.ls4_c00098{letter-spacing:5.976000px;}
.ls5_c00098{letter-spacing:6.159920px;}
.sc__c00098{text-shadow:none;}
.sc1_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00098{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc1_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00098{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00098{word-spacing:-19.654992px;}
.ws2_c00098{word-spacing:-15.488496px;}
.ws1_c00098{word-spacing:-15.211440px;}
.ws3_c00098{word-spacing:-15.051600px;}
.ws4_c00098{word-spacing:0.000000px;}
._1_c00098{margin-left:-1.065600px;}
._0_c00098{width:1.014120px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs2_c00098{font-size:53.280000px;}
.fs3_c00098{font-size:60.000000px;}
.fs0_c00098{font-size:72.000000px;}
.fs1_c00098{font-size:74.215901px;}
.y0_c00098{bottom:0.000000px;}
.y28_c00098{bottom:3.120150px;}
.y23_c00098{bottom:5.400000px;}
.y25_c00098{bottom:14.399850px;}
.y22_c00098{bottom:21.240000px;}
.y27_c00098{bottom:34.744500px;}
.y1_c00098{bottom:54.000000px;}
.y20_c00098{bottom:76.725000px;}
.y1f_c00098{bottom:112.725000px;}
.y1e_c00098{bottom:148.725000px;}
.y21_c00098{bottom:157.365000px;}
.y1d_c00098{bottom:184.725000px;}
.y1c_c00098{bottom:220.725000px;}
.y1b_c00098{bottom:256.725000px;}
.y1a_c00098{bottom:292.725000px;}
.y19_c00098{bottom:328.725000px;}
.y18_c00098{bottom:364.725000px;}
.y17_c00098{bottom:400.725000px;}
.y16_c00098{bottom:436.725000px;}
.y15_c00098{bottom:472.725000px;}
.y14_c00098{bottom:509.085000px;}
.y26_c00098{bottom:528.525000px;}
.y13_c00098{bottom:545.085000px;}
.y12_c00098{bottom:581.085000px;}
.y11_c00098{bottom:617.085000px;}
.y10_c00098{bottom:653.085000px;}
.yf_c00098{bottom:689.085000px;}
.ye_c00098{bottom:725.085000px;}
.yd_c00098{bottom:761.085000px;}
.yc_c00098{bottom:797.085000px;}
.yb_c00098{bottom:833.085000px;}
.y24_c00098{bottom:859.365000px;}
.ya_c00098{bottom:869.085000px;}
.y9_c00098{bottom:905.085000px;}
.y8_c00098{bottom:941.085000px;}
.y7_c00098{bottom:977.085000px;}
.y6_c00098{bottom:1013.085000px;}
.y5_c00098{bottom:1049.085000px;}
.y4_c00098{bottom:1085.085000px;}
.y3_c00098{bottom:1117.125000px;}
.y2_c00098{bottom:1138.365000px;}
.h8_c00098{height:19.255500px;}
.h7_c00098{height:27.000000px;}
.h5_c00098{height:33.840000px;}
.h6_c00098{height:41.132160px;}
.h9_c00098{height:46.320000px;}
.h3_c00098{height:55.584000px;}
.h4_c00098{height:57.294676px;}
.h2_c00098{height:1201.365000px;}
.h0_c00098{height:1262.835000px;}
.h1_c00098{height:1263.000000px;}
.w6_c00098{width:16.680000px;}
.w4_c00098{width:591.480000px;}
.w3_c00098{width:598.680000px;}
.w5_c00098{width:599.040000px;}
.w2_c00098{width:863.955000px;}
.w0_c00098{width:892.935000px;}
.w1_c00098{width:893.250000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:14.490000px;}
.x9_c00098{left:22.404300px;}
.x2_c00098{left:113.040150px;}
.x7_c00098{left:115.088250px;}
.x6_c00098{left:145.658550px;}
.xb_c00098{left:147.894750px;}
.x3_c00098{left:150.011700px;}
.x8_c00098{left:170.730000px;}
.xa_c00098{left:175.410000px;}
.x5_c00098{left:178.290000px;}
.x4_c00098{left:224.962200px;}
.xc_c00098{left:768.255000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls6_c00098{letter-spacing:0.000000pt;}
.ls3_c00098{letter-spacing:0.177387pt;}
.ls7_c00098{letter-spacing:0.179968pt;}
.ls1_c00098{letter-spacing:0.212587pt;}
.lsb_c00098{letter-spacing:0.213120pt;}
.ls2_c00098{letter-spacing:0.355200pt;}
.ls9_c00098{letter-spacing:0.388352pt;}
.lsa_c00098{letter-spacing:0.601472pt;}
.lsc_c00098{letter-spacing:0.639360pt;}
.ls0_c00098{letter-spacing:4.231893pt;}
.ls8_c00098{letter-spacing:4.305024pt;}
.ls4_c00098{letter-spacing:5.312000pt;}
.ls5_c00098{letter-spacing:5.475484pt;}
.ws0_c00098{word-spacing:-17.471104pt;}
.ws2_c00098{word-spacing:-13.767552pt;}
.ws1_c00098{word-spacing:-13.521280pt;}
.ws3_c00098{word-spacing:-13.379200pt;}
.ws4_c00098{word-spacing:0.000000pt;}
._1_c00098{margin-left:-0.947200pt;}
._0_c00098{width:0.901440pt;}
.fs2_c00098{font-size:47.360000pt;}
.fs3_c00098{font-size:53.333333pt;}
.fs0_c00098{font-size:64.000000pt;}
.fs1_c00098{font-size:65.969690pt;}
.y0_c00098{bottom:0.000000pt;}
.y28_c00098{bottom:2.773467pt;}
.y23_c00098{bottom:4.800000pt;}
.y25_c00098{bottom:12.799867pt;}
.y22_c00098{bottom:18.880000pt;}
.y27_c00098{bottom:30.884000pt;}
.y1_c00098{bottom:48.000000pt;}
.y20_c00098{bottom:68.200000pt;}
.y1f_c00098{bottom:100.200000pt;}
.y1e_c00098{bottom:132.200000pt;}
.y21_c00098{bottom:139.880000pt;}
.y1d_c00098{bottom:164.200000pt;}
.y1c_c00098{bottom:196.200000pt;}
.y1b_c00098{bottom:228.200000pt;}
.y1a_c00098{bottom:260.200000pt;}
.y19_c00098{bottom:292.200000pt;}
.y18_c00098{bottom:324.200000pt;}
.y17_c00098{bottom:356.200000pt;}
.y16_c00098{bottom:388.200000pt;}
.y15_c00098{bottom:420.200000pt;}
.y14_c00098{bottom:452.520000pt;}
.y26_c00098{bottom:469.800000pt;}
.y13_c00098{bottom:484.520000pt;}
.y12_c00098{bottom:516.520000pt;}
.y11_c00098{bottom:548.520000pt;}
.y10_c00098{bottom:580.520000pt;}
.yf_c00098{bottom:612.520000pt;}
.ye_c00098{bottom:644.520000pt;}
.yd_c00098{bottom:676.520000pt;}
.yc_c00098{bottom:708.520000pt;}
.yb_c00098{bottom:740.520000pt;}
.y24_c00098{bottom:763.880000pt;}
.ya_c00098{bottom:772.520000pt;}
.y9_c00098{bottom:804.520000pt;}
.y8_c00098{bottom:836.520000pt;}
.y7_c00098{bottom:868.520000pt;}
.y6_c00098{bottom:900.520000pt;}
.y5_c00098{bottom:932.520000pt;}
.y4_c00098{bottom:964.520000pt;}
.y3_c00098{bottom:993.000000pt;}
.y2_c00098{bottom:1011.880000pt;}
.h8_c00098{height:17.116000pt;}
.h7_c00098{height:24.000000pt;}
.h5_c00098{height:30.080000pt;}
.h6_c00098{height:36.561920pt;}
.h9_c00098{height:41.173333pt;}
.h3_c00098{height:49.408000pt;}
.h4_c00098{height:50.928601pt;}
.h2_c00098{height:1067.880000pt;}
.h0_c00098{height:1122.520000pt;}
.h1_c00098{height:1122.666667pt;}
.w6_c00098{width:14.826667pt;}
.w4_c00098{width:525.760000pt;}
.w3_c00098{width:532.160000pt;}
.w5_c00098{width:532.480000pt;}
.w2_c00098{width:767.960000pt;}
.w0_c00098{width:793.720000pt;}
.w1_c00098{width:794.000000pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:12.880000pt;}
.x9_c00098{left:19.914933pt;}
.x2_c00098{left:100.480133pt;}
.x7_c00098{left:102.300667pt;}
.x6_c00098{left:129.474267pt;}
.xb_c00098{left:131.462000pt;}
.x3_c00098{left:133.343733pt;}
.x8_c00098{left:151.760000pt;}
.xa_c00098{left:155.920000pt;}
.x5_c00098{left:158.480000pt;}
.x4_c00098{left:199.966400pt;}
.xc_c00098{left:682.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_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_af0a458db07f254ef684858c.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.134000;font-style:normal;font-weight:normal;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_7d30de64e7aa20cac9951752.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;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:ff3_c00099;src:url('chunks/assets/font_1d79aeec08e51c4993f1e9e3.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:0.787000;font-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_c00099{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00099{vertical-align:-24.480000px;}
.v0_c00099{vertical-align:0.000000px;}
.v1_c00099{vertical-align:31.170679px;}
.lsa_c00099{letter-spacing:0.000000px;}
.ls4_c00099{letter-spacing:0.177840px;}
.ls5_c00099{letter-spacing:0.265680px;}
.ls7_c00099{letter-spacing:0.295200px;}
.ls1d_c00099{letter-spacing:0.318816px;}
.lse_c00099{letter-spacing:0.371952px;}
.ls2_c00099{letter-spacing:0.385440px;}
.ls1_c00099{letter-spacing:0.421440px;}
.ls16_c00099{letter-spacing:0.425088px;}
.ls9_c00099{letter-spacing:0.438171px;}
.ls14_c00099{letter-spacing:0.478224px;}
.ls10_c00099{letter-spacing:0.531360px;}
.ls17_c00099{letter-spacing:0.547713px;}
.ls6_c00099{letter-spacing:0.560880px;}
.ls13_c00099{letter-spacing:0.584496px;}
.ls11_c00099{letter-spacing:0.602485px;}
.ls25_c00099{letter-spacing:0.690768px;}
.ls22_c00099{letter-spacing:0.696672px;}
.ls3_c00099{letter-spacing:0.706440px;}
.ls23_c00099{letter-spacing:0.712027px;}
.ls24_c00099{letter-spacing:0.962352px;}
.ls15_c00099{letter-spacing:1.027296px;}
.ls1f_c00099{letter-spacing:2.007360px;}
.lsd_c00099{letter-spacing:4.174128px;}
.ls1a_c00099{letter-spacing:4.593312px;}
.ls18_c00099{letter-spacing:4.599216px;}
.lsb_c00099{letter-spacing:5.009472px;}
.ls12_c00099{letter-spacing:5.207328px;}
.lsc_c00099{letter-spacing:5.245344px;}
.lsf_c00099{letter-spacing:5.248656px;}
.ls1c_c00099{letter-spacing:5.295888px;}
.ls8_c00099{letter-spacing:5.313600px;}
.ls19_c00099{letter-spacing:5.354928px;}
.ls1b_c00099{letter-spacing:5.461200px;}
.ls0_c00099{letter-spacing:5.976000px;}
.ls21_c00099{letter-spacing:6.884064px;}
.ls1e_c00099{letter-spacing:8.047152px;}
.ls20_c00099{letter-spacing:15.385824px;}
.sc__c00099{text-shadow:none;}
.sc1_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00099{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc1_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00099{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00099{word-spacing:-21.874320px;}
.ws6_c00099{word-spacing:-21.768048px;}
.ws8_c00099{word-spacing:-21.709008px;}
.ws1_c00099{word-spacing:-20.632021px;}
.ws0_c00099{word-spacing:-20.621952px;}
.ws3_c00099{word-spacing:-20.016000px;}
.ws5_c00099{word-spacing:-17.520742px;}
.wsa_c00099{word-spacing:-17.356428px;}
.ws9_c00099{word-spacing:-16.731936px;}
.ws2_c00099{word-spacing:-11.609280px;}
.ws4_c00099{word-spacing:-10.008000px;}
.wsb_c00099{word-spacing:0.000000px;}
._12_c00099{margin-left:-15.940800px;}
._11_c00099{margin-left:-14.700960px;}
._3_c00099{margin-left:-8.306615px;}
._10_c00099{margin-left:-6.748585px;}
._14_c00099{margin-left:-5.622693px;}
._e_c00099{margin-left:-4.428000px;}
._d_c00099{margin-left:-3.365280px;}
._f_c00099{margin-left:-1.099440px;}
._0_c00099{width:1.123200px;}
._8_c00099{width:2.160600px;}
._9_c00099{width:3.456000px;}
._5_c00099{width:4.680000px;}
._1_c00099{width:6.549672px;}
._7_c00099{width:7.641312px;}
._6_c00099{width:9.360000px;}
._a_c00099{width:10.584000px;}
._15_c00099{width:12.803760px;}
._13_c00099{width:14.048640px;}
._b_c00099{width:15.120000px;}
._c_c00099{width:16.681800px;}
._2_c00099{width:18.792000px;}
._4_c00099{width:22.104000px;}
.fc0_c00099{color:rgb(0,0,0);}
.fs5_c00099{font-size:36.000000px;}
.fs4_c00099{font-size:41.760000px;}
.fs3_c00099{font-size:43.045223px;}
.fs1_c00099{font-size:56.160000px;}
.fs6_c00099{font-size:59.040000px;}
.fs8_c00099{font-size:60.000000px;}
.fs7_c00099{font-size:60.857039px;}
.fs0_c00099{font-size:72.000000px;}
.fs2_c00099{font-size:74.215901px;}
.y0_c00099{bottom:0.000000px;}
.y32_c00099{bottom:3.120150px;}
.y31_c00099{bottom:34.744500px;}
.y1_c00099{bottom:54.000000px;}
.y30_c00099{bottom:55.481040px;}
.y2f_c00099{bottom:72.765000px;}
.y2e_c00099{bottom:78.885000px;}
.y2c_c00099{bottom:90.402840px;}
.y2d_c00099{bottom:90.405000px;}
.y2b_c00099{bottom:107.686800px;}
.y29_c00099{bottom:125.324640px;}
.y2a_c00099{bottom:125.325000px;}
.y28_c00099{bottom:142.962840px;}
.y27_c00099{bottom:160.246800px;}
.y26_c00099{bottom:184.005000px;}
.y25_c00099{bottom:195.521040px;}
.y24_c00099{bottom:218.925000px;}
.y22_c00099{bottom:230.441040px;}
.y23_c00099{bottom:230.445000px;}
.y21_c00099{bottom:253.845000px;}
.y20_c00099{bottom:271.485000px;}
.y1f_c00099{bottom:289.125000px;}
.y1e_c00099{bottom:306.405000px;}
.y1d_c00099{bottom:324.045000px;}
.y1c_c00099{bottom:335.558880px;}
.y1b_c00099{bottom:352.842840px;}
.y1a_c00099{bottom:370.481040px;}
.y19_c00099{bottom:387.765000px;}
.y18_c00099{bottom:387.766800px;}
.y17_c00099{bottom:411.525000px;}
.y16_c00099{bottom:438.165000px;}
.y15_c00099{bottom:598.725000px;}
.y14_c00099{bottom:619.965000px;}
.y13_c00099{bottom:640.845000px;}
.y12_c00099{bottom:676.845000px;}
.y11_c00099{bottom:698.085000px;}
.y10_c00099{bottom:718.965000px;}
.yf_c00099{bottom:739.845000px;}
.ye_c00099{bottom:775.845000px;}
.yd_c00099{bottom:811.845000px;}
.yc_c00099{bottom:850.365000px;}
.yb_c00099{bottom:887.085000px;}
.ya_c00099{bottom:923.085000px;}
.y9_c00099{bottom:943.965000px;}
.y8_c00099{bottom:964.845000px;}
.y7_c00099{bottom:986.085000px;}
.y6_c00099{bottom:1006.965000px;}
.y5_c00099{bottom:1027.845000px;}
.y4_c00099{bottom:1049.085000px;}
.y3_c00099{bottom:1085.085000px;}
.y2_c00099{bottom:1138.365000px;}
.ha_c00099{height:19.255500px;}
.h7_c00099{height:32.616000px;}
.hb_c00099{height:46.320000px;}
.h9_c00099{height:46.981634px;}
.h8_c00099{height:53.490240px;}
.h6_c00099{height:57.294676px;}
.h4_c00099{height:64.401590px;}
.h3_c00099{height:65.232000px;}
.h5_c00099{height:68.074560px;}
.h2_c00099{height:1201.365000px;}
.h0_c00099{height:1262.835000px;}
.h1_c00099{height:1263.000000px;}
.w3_c00099{width:16.680000px;}
.w2_c00099{width:863.955000px;}
.w0_c00099{width:892.935000px;}
.w1_c00099{width:893.250000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:14.490000px;}
.x2_c00099{left:113.040150px;}
.x12_c00099{left:125.739600px;}
.x6_c00099{left:172.024950px;}
.x10_c00099{left:177.223050px;}
.x11_c00099{left:197.217000px;}
.x7_c00099{left:255.021600px;}
.xe_c00099{left:267.357750px;}
.xf_c00099{left:283.182150px;}
.x5_c00099{left:416.478150px;}
.x8_c00099{left:523.973400px;}
.xc_c00099{left:526.396350px;}
.xd_c00099{left:586.423800px;}
.x9_c00099{left:606.016050px;}
.x3_c00099{left:622.870650px;}
.xa_c00099{left:670.842000px;}
.x4_c00099{left:699.681150px;}
.xb_c00099{left:729.985800px;}
.x13_c00099{left:768.255000px;}
@media print{
.v2_c00099{vertical-align:-21.760000pt;}
.v0_c00099{vertical-align:0.000000pt;}
.v1_c00099{vertical-align:27.707270pt;}
.lsa_c00099{letter-spacing:0.000000pt;}
.ls4_c00099{letter-spacing:0.158080pt;}
.ls5_c00099{letter-spacing:0.236160pt;}
.ls7_c00099{letter-spacing:0.262400pt;}
.ls1d_c00099{letter-spacing:0.283392pt;}
.lse_c00099{letter-spacing:0.330624pt;}
.ls2_c00099{letter-spacing:0.342613pt;}
.ls1_c00099{letter-spacing:0.374613pt;}
.ls16_c00099{letter-spacing:0.377856pt;}
.ls9_c00099{letter-spacing:0.389485pt;}
.ls14_c00099{letter-spacing:0.425088pt;}
.ls10_c00099{letter-spacing:0.472320pt;}
.ls17_c00099{letter-spacing:0.486856pt;}
.ls6_c00099{letter-spacing:0.498560pt;}
.ls13_c00099{letter-spacing:0.519552pt;}
.ls11_c00099{letter-spacing:0.535542pt;}
.ls25_c00099{letter-spacing:0.614016pt;}
.ls22_c00099{letter-spacing:0.619264pt;}
.ls3_c00099{letter-spacing:0.627947pt;}
.ls23_c00099{letter-spacing:0.632913pt;}
.ls24_c00099{letter-spacing:0.855424pt;}
.ls15_c00099{letter-spacing:0.913152pt;}
.ls1f_c00099{letter-spacing:1.784320pt;}
.lsd_c00099{letter-spacing:3.710336pt;}
.ls1a_c00099{letter-spacing:4.082944pt;}
.ls18_c00099{letter-spacing:4.088192pt;}
.lsb_c00099{letter-spacing:4.452864pt;}
.ls12_c00099{letter-spacing:4.628736pt;}
.lsc_c00099{letter-spacing:4.662528pt;}
.lsf_c00099{letter-spacing:4.665472pt;}
.ls1c_c00099{letter-spacing:4.707456pt;}
.ls8_c00099{letter-spacing:4.723200pt;}
.ls19_c00099{letter-spacing:4.759936pt;}
.ls1b_c00099{letter-spacing:4.854400pt;}
.ls0_c00099{letter-spacing:5.312000pt;}
.ls21_c00099{letter-spacing:6.119168pt;}
.ls1e_c00099{letter-spacing:7.153024pt;}
.ls20_c00099{letter-spacing:13.676288pt;}
.ws7_c00099{word-spacing:-19.443840pt;}
.ws6_c00099{word-spacing:-19.349376pt;}
.ws8_c00099{word-spacing:-19.296896pt;}
.ws1_c00099{word-spacing:-18.339574pt;}
.ws0_c00099{word-spacing:-18.330624pt;}
.ws3_c00099{word-spacing:-17.792000pt;}
.ws5_c00099{word-spacing:-15.573992pt;}
.wsa_c00099{word-spacing:-15.427936pt;}
.ws9_c00099{word-spacing:-14.872832pt;}
.ws2_c00099{word-spacing:-10.319360pt;}
.ws4_c00099{word-spacing:-8.896000pt;}
.wsb_c00099{word-spacing:0.000000pt;}
._12_c00099{margin-left:-14.169600pt;}
._11_c00099{margin-left:-13.067520pt;}
._3_c00099{margin-left:-7.383658pt;}
._10_c00099{margin-left:-5.998742pt;}
._14_c00099{margin-left:-4.997950pt;}
._e_c00099{margin-left:-3.936000pt;}
._d_c00099{margin-left:-2.991360pt;}
._f_c00099{margin-left:-0.977280pt;}
._0_c00099{width:0.998400pt;}
._8_c00099{width:1.920533pt;}
._9_c00099{width:3.072000pt;}
._5_c00099{width:4.160000pt;}
._1_c00099{width:5.821931pt;}
._7_c00099{width:6.792277pt;}
._6_c00099{width:8.320000pt;}
._a_c00099{width:9.408000pt;}
._15_c00099{width:11.381120pt;}
._13_c00099{width:12.487680pt;}
._b_c00099{width:13.440000pt;}
._c_c00099{width:14.828267pt;}
._2_c00099{width:16.704000pt;}
._4_c00099{width:19.648000pt;}
.fs5_c00099{font-size:32.000000pt;}
.fs4_c00099{font-size:37.120000pt;}
.fs3_c00099{font-size:38.262420pt;}
.fs1_c00099{font-size:49.920000pt;}
.fs6_c00099{font-size:52.480000pt;}
.fs8_c00099{font-size:53.333333pt;}
.fs7_c00099{font-size:54.095146pt;}
.fs0_c00099{font-size:64.000000pt;}
.fs2_c00099{font-size:65.969690pt;}
.y0_c00099{bottom:0.000000pt;}
.y32_c00099{bottom:2.773467pt;}
.y31_c00099{bottom:30.884000pt;}
.y1_c00099{bottom:48.000000pt;}
.y30_c00099{bottom:49.316480pt;}
.y2f_c00099{bottom:64.680000pt;}
.y2e_c00099{bottom:70.120000pt;}
.y2c_c00099{bottom:80.358080pt;}
.y2d_c00099{bottom:80.360000pt;}
.y2b_c00099{bottom:95.721600pt;}
.y29_c00099{bottom:111.399680pt;}
.y2a_c00099{bottom:111.400000pt;}
.y28_c00099{bottom:127.078080pt;}
.y27_c00099{bottom:142.441600pt;}
.y26_c00099{bottom:163.560000pt;}
.y25_c00099{bottom:173.796480pt;}
.y24_c00099{bottom:194.600000pt;}
.y22_c00099{bottom:204.836480pt;}
.y23_c00099{bottom:204.840000pt;}
.y21_c00099{bottom:225.640000pt;}
.y20_c00099{bottom:241.320000pt;}
.y1f_c00099{bottom:257.000000pt;}
.y1e_c00099{bottom:272.360000pt;}
.y1d_c00099{bottom:288.040000pt;}
.y1c_c00099{bottom:298.274560pt;}
.y1b_c00099{bottom:313.638080pt;}
.y1a_c00099{bottom:329.316480pt;}
.y19_c00099{bottom:344.680000pt;}
.y18_c00099{bottom:344.681600pt;}
.y17_c00099{bottom:365.800000pt;}
.y16_c00099{bottom:389.480000pt;}
.y15_c00099{bottom:532.200000pt;}
.y14_c00099{bottom:551.080000pt;}
.y13_c00099{bottom:569.640000pt;}
.y12_c00099{bottom:601.640000pt;}
.y11_c00099{bottom:620.520000pt;}
.y10_c00099{bottom:639.080000pt;}
.yf_c00099{bottom:657.640000pt;}
.ye_c00099{bottom:689.640000pt;}
.yd_c00099{bottom:721.640000pt;}
.yc_c00099{bottom:755.880000pt;}
.yb_c00099{bottom:788.520000pt;}
.ya_c00099{bottom:820.520000pt;}
.y9_c00099{bottom:839.080000pt;}
.y8_c00099{bottom:857.640000pt;}
.y7_c00099{bottom:876.520000pt;}
.y6_c00099{bottom:895.080000pt;}
.y5_c00099{bottom:913.640000pt;}
.y4_c00099{bottom:932.520000pt;}
.y3_c00099{bottom:964.520000pt;}
.y2_c00099{bottom:1011.880000pt;}
.ha_c00099{height:17.116000pt;}
.h7_c00099{height:28.992000pt;}
.hb_c00099{height:41.173333pt;}
.h9_c00099{height:41.761453pt;}
.h8_c00099{height:47.546880pt;}
.h6_c00099{height:50.928601pt;}
.h4_c00099{height:57.245858pt;}
.h3_c00099{height:57.984000pt;}
.h5_c00099{height:60.510720pt;}
.h2_c00099{height:1067.880000pt;}
.h0_c00099{height:1122.520000pt;}
.h1_c00099{height:1122.666667pt;}
.w3_c00099{width:14.826667pt;}
.w2_c00099{width:767.960000pt;}
.w0_c00099{width:793.720000pt;}
.w1_c00099{width:794.000000pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:12.880000pt;}
.x2_c00099{left:100.480133pt;}
.x12_c00099{left:111.768533pt;}
.x6_c00099{left:152.911067pt;}
.x10_c00099{left:157.531600pt;}
.x11_c00099{left:175.304000pt;}
.x7_c00099{left:226.685867pt;}
.xe_c00099{left:237.651333pt;}
.xf_c00099{left:251.717467pt;}
.x5_c00099{left:370.202800pt;}
.x8_c00099{left:465.754133pt;}
.xc_c00099{left:467.907867pt;}
.xd_c00099{left:521.265600pt;}
.x9_c00099{left:538.680933pt;}
.x3_c00099{left:553.662800pt;}
.xa_c00099{left:596.304000pt;}
.x4_c00099{left:621.938800pt;}
.xb_c00099{left:648.876267pt;}
.x13_c00099{left:682.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_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_a1083c155bf1a13f2588bed6.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.134000;font-style:normal;font-weight:normal;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_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_f3c60d417f9cd2434b032c7a.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;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:ff5_c00100;src:url('chunks/assets/font_f491321d2d1992a38da0f9d0.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;line-height:0.787000;font-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_c00100{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00100{vertical-align:-24.480000px;}
.v0_c00100{vertical-align:0.000000px;}
.v1_c00100{vertical-align:30.240000px;}
.ls6_c00100{letter-spacing:-0.179568px;}
.ls4_c00100{letter-spacing:0.000000px;}
.ls7_c00100{letter-spacing:0.144000px;}
.ls8_c00100{letter-spacing:0.265680px;}
.lsb_c00100{letter-spacing:0.425088px;}
.lsa_c00100{letter-spacing:0.478224px;}
.lsc_c00100{letter-spacing:0.531360px;}
.lsd_c00100{letter-spacing:0.584496px;}
.ls9_c00100{letter-spacing:3.743136px;}
.ls5_c00100{letter-spacing:5.430672px;}
.ls2_c00100{letter-spacing:5.952600px;}
.ls1_c00100{letter-spacing:5.975400px;}
.ls0_c00100{letter-spacing:5.976000px;}
.ls3_c00100{letter-spacing:54.864000px;}
.sc__c00100{text-shadow:none;}
.sc1_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00100{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc1_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00100{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00100{word-spacing:-21.043152px;}
.ws1_c00100{word-spacing:-11.429712px;}
.ws2_c00100{word-spacing:-10.152000px;}
.ws3_c00100{word-spacing:0.000000px;}
._8_c00100{margin-left:-3.535200px;}
._9_c00100{margin-left:-2.324160px;}
._6_c00100{margin-left:-1.179360px;}
._5_c00100{width:1.800000px;}
._2_c00100{width:2.880000px;}
._7_c00100{width:4.320000px;}
._1_c00100{width:6.264000px;}
._a_c00100{width:7.587360px;}
._4_c00100{width:9.288000px;}
._0_c00100{width:11.016000px;}
._3_c00100{width:17.424000px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs4_c00100{font-size:36.000000px;}
.fs2_c00100{font-size:41.760000px;}
.fs1_c00100{font-size:56.160000px;}
.fs5_c00100{font-size:59.040000px;}
.fs6_c00100{font-size:60.000000px;}
.fs0_c00100{font-size:72.000000px;}
.fs3_c00100{font-size:74.215901px;}
.y0_c00100{bottom:0.000000px;}
.y28_c00100{bottom:3.120150px;}
.y27_c00100{bottom:34.744500px;}
.y1_c00100{bottom:54.000000px;}
.y26_c00100{bottom:55.480680px;}
.y25_c00100{bottom:72.764640px;}
.y24_c00100{bottom:90.402840px;}
.y23_c00100{bottom:107.686800px;}
.y22_c00100{bottom:131.445000px;}
.y21_c00100{bottom:149.085000px;}
.y20_c00100{bottom:175.725000px;}
.y1f_c00100{bottom:196.965000px;}
.y1e_c00100{bottom:232.965000px;}
.y1d_c00100{bottom:268.965000px;}
.y1c_c00100{bottom:304.965000px;}
.y1b_c00100{bottom:325.845000px;}
.y1a_c00100{bottom:361.845000px;}
.y19_c00100{bottom:397.845000px;}
.y18_c00100{bottom:433.845000px;}
.y17_c00100{bottom:469.845000px;}
.y16_c00100{bottom:505.845000px;}
.y15_c00100{bottom:541.845000px;}
.y14_c00100{bottom:577.845000px;}
.y13_c00100{bottom:613.845000px;}
.y12_c00100{bottom:635.085000px;}
.y11_c00100{bottom:655.965000px;}
.y10_c00100{bottom:676.845000px;}
.yf_c00100{bottom:712.845000px;}
.ye_c00100{bottom:748.845000px;}
.yd_c00100{bottom:784.845000px;}
.yc_c00100{bottom:820.845000px;}
.yb_c00100{bottom:856.845000px;}
.ya_c00100{bottom:892.845000px;}
.y9_c00100{bottom:914.085000px;}
.y8_c00100{bottom:934.965000px;}
.y7_c00100{bottom:970.965000px;}
.y6_c00100{bottom:991.845000px;}
.y5_c00100{bottom:1013.085000px;}
.y4_c00100{bottom:1049.085000px;}
.y3_c00100{bottom:1085.085000px;}
.y2_c00100{bottom:1138.365000px;}
.h9_c00100{height:19.255500px;}
.h7_c00100{height:32.616000px;}
.ha_c00100{height:46.320000px;}
.h5_c00100{height:50.765625px;}
.h8_c00100{height:53.490240px;}
.h6_c00100{height:57.294676px;}
.h3_c00100{height:65.232000px;}
.h4_c00100{height:68.074560px;}
.h2_c00100{height:1201.365000px;}
.h0_c00100{height:1262.835000px;}
.h1_c00100{height:1263.000000px;}
.w3_c00100{width:16.680000px;}
.w2_c00100{width:863.955000px;}
.w0_c00100{width:892.935000px;}
.w1_c00100{width:893.250000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:14.490000px;}
.x2_c00100{left:113.040150px;}
.x3_c00100{left:140.047650px;}
.xb_c00100{left:148.031550px;}
.xc_c00100{left:150.029700px;}
.x8_c00100{left:153.035550px;}
.x6_c00100{left:155.033550px;}
.xd_c00100{left:160.055400px;}
.x4_c00100{left:167.040150px;}
.x5_c00100{left:329.019300px;}
.xf_c00100{left:372.037800px;}
.x10_c00100{left:387.031500px;}
.x9_c00100{left:513.065850px;}
.xa_c00100{left:553.025100px;}
.x7_c00100{left:587.062800px;}
.xe_c00100{left:712.374750px;}
.x11_c00100{left:768.255000px;}
@media print{
.v2_c00100{vertical-align:-21.760000pt;}
.v0_c00100{vertical-align:0.000000pt;}
.v1_c00100{vertical-align:26.880000pt;}
.ls6_c00100{letter-spacing:-0.159616pt;}
.ls4_c00100{letter-spacing:0.000000pt;}
.ls7_c00100{letter-spacing:0.128000pt;}
.ls8_c00100{letter-spacing:0.236160pt;}
.lsb_c00100{letter-spacing:0.377856pt;}
.lsa_c00100{letter-spacing:0.425088pt;}
.lsc_c00100{letter-spacing:0.472320pt;}
.lsd_c00100{letter-spacing:0.519552pt;}
.ls9_c00100{letter-spacing:3.327232pt;}
.ls5_c00100{letter-spacing:4.827264pt;}
.ls2_c00100{letter-spacing:5.291200pt;}
.ls1_c00100{letter-spacing:5.311467pt;}
.ls0_c00100{letter-spacing:5.312000pt;}
.ls3_c00100{letter-spacing:48.768000pt;}
.ws0_c00100{word-spacing:-18.705024pt;}
.ws1_c00100{word-spacing:-10.159744pt;}
.ws2_c00100{word-spacing:-9.024000pt;}
.ws3_c00100{word-spacing:0.000000pt;}
._8_c00100{margin-left:-3.142400pt;}
._9_c00100{margin-left:-2.065920pt;}
._6_c00100{margin-left:-1.048320pt;}
._5_c00100{width:1.600000pt;}
._2_c00100{width:2.560000pt;}
._7_c00100{width:3.840000pt;}
._1_c00100{width:5.568000pt;}
._a_c00100{width:6.744320pt;}
._4_c00100{width:8.256000pt;}
._0_c00100{width:9.792000pt;}
._3_c00100{width:15.488000pt;}
.fs4_c00100{font-size:32.000000pt;}
.fs2_c00100{font-size:37.120000pt;}
.fs1_c00100{font-size:49.920000pt;}
.fs5_c00100{font-size:52.480000pt;}
.fs6_c00100{font-size:53.333333pt;}
.fs0_c00100{font-size:64.000000pt;}
.fs3_c00100{font-size:65.969690pt;}
.y0_c00100{bottom:0.000000pt;}
.y28_c00100{bottom:2.773467pt;}
.y27_c00100{bottom:30.884000pt;}
.y1_c00100{bottom:48.000000pt;}
.y26_c00100{bottom:49.316160pt;}
.y25_c00100{bottom:64.679680pt;}
.y24_c00100{bottom:80.358080pt;}
.y23_c00100{bottom:95.721600pt;}
.y22_c00100{bottom:116.840000pt;}
.y21_c00100{bottom:132.520000pt;}
.y20_c00100{bottom:156.200000pt;}
.y1f_c00100{bottom:175.080000pt;}
.y1e_c00100{bottom:207.080000pt;}
.y1d_c00100{bottom:239.080000pt;}
.y1c_c00100{bottom:271.080000pt;}
.y1b_c00100{bottom:289.640000pt;}
.y1a_c00100{bottom:321.640000pt;}
.y19_c00100{bottom:353.640000pt;}
.y18_c00100{bottom:385.640000pt;}
.y17_c00100{bottom:417.640000pt;}
.y16_c00100{bottom:449.640000pt;}
.y15_c00100{bottom:481.640000pt;}
.y14_c00100{bottom:513.640000pt;}
.y13_c00100{bottom:545.640000pt;}
.y12_c00100{bottom:564.520000pt;}
.y11_c00100{bottom:583.080000pt;}
.y10_c00100{bottom:601.640000pt;}
.yf_c00100{bottom:633.640000pt;}
.ye_c00100{bottom:665.640000pt;}
.yd_c00100{bottom:697.640000pt;}
.yc_c00100{bottom:729.640000pt;}
.yb_c00100{bottom:761.640000pt;}
.ya_c00100{bottom:793.640000pt;}
.y9_c00100{bottom:812.520000pt;}
.y8_c00100{bottom:831.080000pt;}
.y7_c00100{bottom:863.080000pt;}
.y6_c00100{bottom:881.640000pt;}
.y5_c00100{bottom:900.520000pt;}
.y4_c00100{bottom:932.520000pt;}
.y3_c00100{bottom:964.520000pt;}
.y2_c00100{bottom:1011.880000pt;}
.h9_c00100{height:17.116000pt;}
.h7_c00100{height:28.992000pt;}
.ha_c00100{height:41.173333pt;}
.h5_c00100{height:45.125000pt;}
.h8_c00100{height:47.546880pt;}
.h6_c00100{height:50.928601pt;}
.h3_c00100{height:57.984000pt;}
.h4_c00100{height:60.510720pt;}
.h2_c00100{height:1067.880000pt;}
.h0_c00100{height:1122.520000pt;}
.h1_c00100{height:1122.666667pt;}
.w3_c00100{width:14.826667pt;}
.w2_c00100{width:767.960000pt;}
.w0_c00100{width:793.720000pt;}
.w1_c00100{width:794.000000pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:12.880000pt;}
.x2_c00100{left:100.480133pt;}
.x3_c00100{left:124.486800pt;}
.xb_c00100{left:131.583600pt;}
.xc_c00100{left:133.359733pt;}
.x8_c00100{left:136.031600pt;}
.x6_c00100{left:137.807600pt;}
.xd_c00100{left:142.271467pt;}
.x4_c00100{left:148.480133pt;}
.x5_c00100{left:292.461600pt;}
.xf_c00100{left:330.700267pt;}
.x10_c00100{left:344.028000pt;}
.x9_c00100{left:456.058533pt;}
.xa_c00100{left:491.577867pt;}
.x7_c00100{left:521.833600pt;}
.xe_c00100{left:633.222000pt;}
.x11_c00100{left:682.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_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_690a8664c9e37ec021d5a1d0.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.134000;font-style:normal;font-weight:normal;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_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_be43732e3ebc35c36b491374.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;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:ff5_c00101;src:url('chunks/assets/font_69f91f68350bebef35c10a15.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_f94a9847f73589f635e55e1e.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:0.787000;font-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_c00101{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00101{vertical-align:-24.480000px;}
.v0_c00101{vertical-align:0.000000px;}
.v1_c00101{vertical-align:30.240000px;}
.lse_c00101{letter-spacing:-0.179568px;}
.lsd_c00101{letter-spacing:0.000000px;}
.ls1a_c00101{letter-spacing:0.144000px;}
.ls1b_c00101{letter-spacing:0.265680px;}
.ls20_c00101{letter-spacing:0.318816px;}
.ls11_c00101{letter-spacing:0.330480px;}
.ls8_c00101{letter-spacing:0.354010px;}
.ls21_c00101{letter-spacing:0.377856px;}
.ls1e_c00101{letter-spacing:0.383760px;}
.ls15_c00101{letter-spacing:0.395280px;}
.ls2_c00101{letter-spacing:0.398400px;}
.lsa_c00101{letter-spacing:0.399000px;}
.lsf_c00101{letter-spacing:0.401760px;}
.ls14_c00101{letter-spacing:0.466560px;}
.ls19_c00101{letter-spacing:0.531360px;}
.lsc_c00101{letter-spacing:0.549072px;}
.ls7_c00101{letter-spacing:0.667440px;}
.ls1d_c00101{letter-spacing:0.743904px;}
.ls16_c00101{letter-spacing:0.861840px;}
.ls12_c00101{letter-spacing:0.868320px;}
.ls6_c00101{letter-spacing:0.888364px;}
.ls5_c00101{letter-spacing:0.895044px;}
.lsb_c00101{letter-spacing:0.944640px;}
.ls17_c00101{letter-spacing:0.961838px;}
.ls22_c00101{letter-spacing:0.962352px;}
.ls18_c00101{letter-spacing:1.028632px;}
.ls13_c00101{letter-spacing:1.198800px;}
.ls3_c00101{letter-spacing:1.235695px;}
.ls23_c00101{letter-spacing:5.301792px;}
.ls1f_c00101{letter-spacing:5.514336px;}
.ls1c_c00101{letter-spacing:5.732784px;}
.ls10_c00101{letter-spacing:5.812560px;}
.ls0_c00101{letter-spacing:5.976000px;}
.ls9_c00101{letter-spacing:22.794600px;}
.ls4_c00101{letter-spacing:30.696000px;}
.ls1_c00101{letter-spacing:54.864000px;}
.sc__c00101{text-shadow:none;}
.sc1_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00101{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc1_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00101{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00101{word-spacing:-23.826960px;}
.wsc_c00101{word-spacing:-21.927456px;}
.wsd_c00101{word-spacing:-21.714912px;}
.ws0_c00101{word-spacing:-20.016000px;}
.ws6_c00101{word-spacing:-19.804513px;}
.ws9_c00101{word-spacing:-19.597451px;}
.ws8_c00101{word-spacing:-19.530657px;}
.ws7_c00101{word-spacing:-19.463862px;}
.ws5_c00101{word-spacing:-18.882720px;}
.ws3_c00101{word-spacing:-18.681840px;}
.ws2_c00101{word-spacing:-18.014400px;}
.ws1_c00101{word-spacing:-11.429712px;}
.wsb_c00101{word-spacing:-10.152000px;}
.wsa_c00101{word-spacing:-0.961838px;}
.wse_c00101{word-spacing:0.000000px;}
._14_c00101{margin-left:-5.306400px;}
._15_c00101{margin-left:-4.305600px;}
._e_c00101{margin-left:-1.147680px;}
._9_c00101{width:1.944000px;}
._1_c00101{width:3.168000px;}
._d_c00101{width:4.320000px;}
._4_c00101{width:5.976000px;}
._a_c00101{width:7.056000px;}
._2_c00101{width:8.136000px;}
._c_c00101{width:9.720000px;}
._12_c00101{width:11.126880px;}
._13_c00101{width:12.626160px;}
._b_c00101{width:14.472000px;}
._8_c00101{width:15.768000px;}
._5_c00101{width:17.699784px;}
._3_c00101{width:18.876216px;}
._7_c00101{width:21.312000px;}
._10_c00101{width:22.655520px;}
._f_c00101{width:23.814240px;}
._11_c00101{width:29.465280px;}
._0_c00101{width:36.504000px;}
._6_c00101{width:40.104000px;}
.fc0_c00101{color:rgb(0,0,0);}
.fs5_c00101{font-size:36.000000px;}
.fs2_c00101{font-size:41.760000px;}
.fs6_c00101{font-size:59.040000px;}
.fs7_c00101{font-size:60.000000px;}
.fs3_c00101{font-size:64.800000px;}
.fs4_c00101{font-size:66.794311px;}
.fs0_c00101{font-size:72.000000px;}
.fs1_c00101{font-size:74.215901px;}
.y0_c00101{bottom:0.000000px;}
.y31_c00101{bottom:3.120150px;}
.y30_c00101{bottom:34.744500px;}
.y1_c00101{bottom:54.000000px;}
.y2f_c00101{bottom:55.482840px;}
.y2e_c00101{bottom:72.766800px;}
.y2d_c00101{bottom:96.525000px;}
.y2c_c00101{bottom:113.805000px;}
.y2b_c00101{bottom:131.445000px;}
.y2a_c00101{bottom:158.085000px;}
.y29_c00101{bottom:239.085000px;}
.y28_c00101{bottom:261.045000px;}
.y27_c00101{bottom:280.125000px;}
.y26_c00101{bottom:298.845000px;}
.y24_c00101{bottom:299.565000px;}
.y25_c00101{bottom:318.285000px;}
.y23_c00101{bottom:318.645000px;}
.y22_c00101{bottom:337.725000px;}
.y21_c00101{bottom:357.885000px;}
.y20_c00101{bottom:377.325000px;}
.y1f_c00101{bottom:396.405000px;}
.y1e_c00101{bottom:415.845000px;}
.y1d_c00101{bottom:434.925000px;}
.y1c_c00101{bottom:469.845000px;}
.y1b_c00101{bottom:505.845000px;}
.y1a_c00101{bottom:526.725000px;}
.y19_c00101{bottom:547.965000px;}
.y18_c00101{bottom:568.845000px;}
.y17_c00101{bottom:589.725000px;}
.y16_c00101{bottom:625.725000px;}
.y15_c00101{bottom:646.965000px;}
.y14_c00101{bottom:667.845000px;}
.y13_c00101{bottom:689.085000px;}
.y12_c00101{bottom:709.965000px;}
.y11_c00101{bottom:745.965000px;}
.y10_c00101{bottom:766.845000px;}
.yf_c00101{bottom:788.085000px;}
.ye_c00101{bottom:808.965000px;}
.yd_c00101{bottom:829.845000px;}
.yc_c00101{bottom:851.085000px;}
.yb_c00101{bottom:871.965000px;}
.ya_c00101{bottom:892.845000px;}
.y9_c00101{bottom:928.845000px;}
.y8_c00101{bottom:950.085000px;}
.y7_c00101{bottom:970.965000px;}
.y6_c00101{bottom:991.845000px;}
.y5_c00101{bottom:1013.085000px;}
.y4_c00101{bottom:1049.085000px;}
.y3_c00101{bottom:1085.085000px;}
.y2_c00101{bottom:1138.365000px;}
.hb_c00101{height:19.255500px;}
.h9_c00101{height:32.616000px;}
.hc_c00101{height:46.320000px;}
.h7_c00101{height:51.565208px;}
.ha_c00101{height:53.490240px;}
.h4_c00101{height:57.294676px;}
.h6_c00101{height:58.708800px;}
.h8_c00101{height:60.515646px;}
.h3_c00101{height:65.232000px;}
.h5_c00101{height:68.074560px;}
.h2_c00101{height:1201.365000px;}
.h0_c00101{height:1262.835000px;}
.h1_c00101{height:1263.000000px;}
.w7_c00101{width:16.680000px;}
.w3_c00101{width:60.840000px;}
.w4_c00101{width:95.040000px;}
.w5_c00101{width:147.960000px;}
.w6_c00101{width:341.280000px;}
.w2_c00101{width:863.955000px;}
.w0_c00101{width:892.935000px;}
.w1_c00101{width:893.250000px;}
.x0_c00101{left:0.000000px;}
.x14_c00101{left:7.920150px;}
.x22_c00101{left:13.054200px;}
.x1_c00101{left:14.490000px;}
.x24_c00101{left:47.902050px;}
.x1e_c00101{left:50.211600px;}
.x1a_c00101{left:67.139400px;}
.x21_c00101{left:69.912000px;}
.x23_c00101{left:82.473000px;}
.x1f_c00101{left:93.259350px;}
.x1b_c00101{left:106.557150px;}
.x2_c00101{left:113.040150px;}
.x13_c00101{left:119.610000px;}
.x28_c00101{left:129.543150px;}
.x3_c00101{left:140.040150px;}
.x25_c00101{left:160.100100px;}
.x15_c00101{left:181.170000px;}
.x27_c00101{left:200.977050px;}
.x26_c00101{left:214.307100px;}
.x1c_c00101{left:222.494100px;}
.xe_c00101{left:245.459100px;}
.x11_c00101{left:250.530000px;}
.x20_c00101{left:256.525050px;}
.x12_c00101{left:259.530000px;}
.x1d_c00101{left:270.178500px;}
.x18_c00101{left:275.437650px;}
.x16_c00101{left:276.930000px;}
.xf_c00101{left:289.468500px;}
.x19_c00101{left:315.779700px;}
.x9_c00101{left:321.137400px;}
.xa_c00101{left:334.133100px;}
.x10_c00101{left:391.981500px;}
.x17_c00101{left:425.610000px;}
.x4_c00101{left:434.064000px;}
.x5_c00101{left:504.173250px;}
.x6_c00101{left:545.176350px;}
.x7_c00101{left:565.767600px;}
.xb_c00101{left:594.307200px;}
.xc_c00101{left:612.040350px;}
.x8_c00101{left:638.774400px;}
.xd_c00101{left:666.221550px;}
.x29_c00101{left:768.255000px;}
@media print{
.v2_c00101{vertical-align:-21.760000pt;}
.v0_c00101{vertical-align:0.000000pt;}
.v1_c00101{vertical-align:26.880000pt;}
.lse_c00101{letter-spacing:-0.159616pt;}
.lsd_c00101{letter-spacing:0.000000pt;}
.ls1a_c00101{letter-spacing:0.128000pt;}
.ls1b_c00101{letter-spacing:0.236160pt;}
.ls20_c00101{letter-spacing:0.283392pt;}
.ls11_c00101{letter-spacing:0.293760pt;}
.ls8_c00101{letter-spacing:0.314675pt;}
.ls21_c00101{letter-spacing:0.335872pt;}
.ls1e_c00101{letter-spacing:0.341120pt;}
.ls15_c00101{letter-spacing:0.351360pt;}
.ls2_c00101{letter-spacing:0.354133pt;}
.lsa_c00101{letter-spacing:0.354667pt;}
.lsf_c00101{letter-spacing:0.357120pt;}
.ls14_c00101{letter-spacing:0.414720pt;}
.ls19_c00101{letter-spacing:0.472320pt;}
.lsc_c00101{letter-spacing:0.488064pt;}
.ls7_c00101{letter-spacing:0.593280pt;}
.ls1d_c00101{letter-spacing:0.661248pt;}
.ls16_c00101{letter-spacing:0.766080pt;}
.ls12_c00101{letter-spacing:0.771840pt;}
.ls6_c00101{letter-spacing:0.789657pt;}
.ls5_c00101{letter-spacing:0.795594pt;}
.lsb_c00101{letter-spacing:0.839680pt;}
.ls17_c00101{letter-spacing:0.854967pt;}
.ls22_c00101{letter-spacing:0.855424pt;}
.ls18_c00101{letter-spacing:0.914340pt;}
.ls13_c00101{letter-spacing:1.065600pt;}
.ls3_c00101{letter-spacing:1.098395pt;}
.ls23_c00101{letter-spacing:4.712704pt;}
.ls1f_c00101{letter-spacing:4.901632pt;}
.ls1c_c00101{letter-spacing:5.095808pt;}
.ls10_c00101{letter-spacing:5.166720pt;}
.ls0_c00101{letter-spacing:5.312000pt;}
.ls9_c00101{letter-spacing:20.261867pt;}
.ls4_c00101{letter-spacing:27.285333pt;}
.ls1_c00101{letter-spacing:48.768000pt;}
.ws4_c00101{word-spacing:-21.179520pt;}
.wsc_c00101{word-spacing:-19.491072pt;}
.wsd_c00101{word-spacing:-19.302144pt;}
.ws0_c00101{word-spacing:-17.792000pt;}
.ws6_c00101{word-spacing:-17.604012pt;}
.ws9_c00101{word-spacing:-17.419956pt;}
.ws8_c00101{word-spacing:-17.360584pt;}
.ws7_c00101{word-spacing:-17.301211pt;}
.ws5_c00101{word-spacing:-16.784640pt;}
.ws3_c00101{word-spacing:-16.606080pt;}
.ws2_c00101{word-spacing:-16.012800pt;}
.ws1_c00101{word-spacing:-10.159744pt;}
.wsb_c00101{word-spacing:-9.024000pt;}
.wsa_c00101{word-spacing:-0.854967pt;}
.wse_c00101{word-spacing:0.000000pt;}
._14_c00101{margin-left:-4.716800pt;}
._15_c00101{margin-left:-3.827200pt;}
._e_c00101{margin-left:-1.020160pt;}
._9_c00101{width:1.728000pt;}
._1_c00101{width:2.816000pt;}
._d_c00101{width:3.840000pt;}
._4_c00101{width:5.312000pt;}
._a_c00101{width:6.272000pt;}
._2_c00101{width:7.232000pt;}
._c_c00101{width:8.640000pt;}
._12_c00101{width:9.890560pt;}
._13_c00101{width:11.223253pt;}
._b_c00101{width:12.864000pt;}
._8_c00101{width:14.016000pt;}
._5_c00101{width:15.733141pt;}
._3_c00101{width:16.778859pt;}
._7_c00101{width:18.944000pt;}
._10_c00101{width:20.138240pt;}
._f_c00101{width:21.168213pt;}
._11_c00101{width:26.191360pt;}
._0_c00101{width:32.448000pt;}
._6_c00101{width:35.648000pt;}
.fs5_c00101{font-size:32.000000pt;}
.fs2_c00101{font-size:37.120000pt;}
.fs6_c00101{font-size:52.480000pt;}
.fs7_c00101{font-size:53.333333pt;}
.fs3_c00101{font-size:57.600000pt;}
.fs4_c00101{font-size:59.372721pt;}
.fs0_c00101{font-size:64.000000pt;}
.fs1_c00101{font-size:65.969690pt;}
.y0_c00101{bottom:0.000000pt;}
.y31_c00101{bottom:2.773467pt;}
.y30_c00101{bottom:30.884000pt;}
.y1_c00101{bottom:48.000000pt;}
.y2f_c00101{bottom:49.318080pt;}
.y2e_c00101{bottom:64.681600pt;}
.y2d_c00101{bottom:85.800000pt;}
.y2c_c00101{bottom:101.160000pt;}
.y2b_c00101{bottom:116.840000pt;}
.y2a_c00101{bottom:140.520000pt;}
.y29_c00101{bottom:212.520000pt;}
.y28_c00101{bottom:232.040000pt;}
.y27_c00101{bottom:249.000000pt;}
.y26_c00101{bottom:265.640000pt;}
.y24_c00101{bottom:266.280000pt;}
.y25_c00101{bottom:282.920000pt;}
.y23_c00101{bottom:283.240000pt;}
.y22_c00101{bottom:300.200000pt;}
.y21_c00101{bottom:318.120000pt;}
.y20_c00101{bottom:335.400000pt;}
.y1f_c00101{bottom:352.360000pt;}
.y1e_c00101{bottom:369.640000pt;}
.y1d_c00101{bottom:386.600000pt;}
.y1c_c00101{bottom:417.640000pt;}
.y1b_c00101{bottom:449.640000pt;}
.y1a_c00101{bottom:468.200000pt;}
.y19_c00101{bottom:487.080000pt;}
.y18_c00101{bottom:505.640000pt;}
.y17_c00101{bottom:524.200000pt;}
.y16_c00101{bottom:556.200000pt;}
.y15_c00101{bottom:575.080000pt;}
.y14_c00101{bottom:593.640000pt;}
.y13_c00101{bottom:612.520000pt;}
.y12_c00101{bottom:631.080000pt;}
.y11_c00101{bottom:663.080000pt;}
.y10_c00101{bottom:681.640000pt;}
.yf_c00101{bottom:700.520000pt;}
.ye_c00101{bottom:719.080000pt;}
.yd_c00101{bottom:737.640000pt;}
.yc_c00101{bottom:756.520000pt;}
.yb_c00101{bottom:775.080000pt;}
.ya_c00101{bottom:793.640000pt;}
.y9_c00101{bottom:825.640000pt;}
.y8_c00101{bottom:844.520000pt;}
.y7_c00101{bottom:863.080000pt;}
.y6_c00101{bottom:881.640000pt;}
.y5_c00101{bottom:900.520000pt;}
.y4_c00101{bottom:932.520000pt;}
.y3_c00101{bottom:964.520000pt;}
.y2_c00101{bottom:1011.880000pt;}
.hb_c00101{height:17.116000pt;}
.h9_c00101{height:28.992000pt;}
.hc_c00101{height:41.173333pt;}
.h7_c00101{height:45.835741pt;}
.ha_c00101{height:47.546880pt;}
.h4_c00101{height:50.928601pt;}
.h6_c00101{height:52.185600pt;}
.h8_c00101{height:53.791685pt;}
.h3_c00101{height:57.984000pt;}
.h5_c00101{height:60.510720pt;}
.h2_c00101{height:1067.880000pt;}
.h0_c00101{height:1122.520000pt;}
.h1_c00101{height:1122.666667pt;}
.w7_c00101{width:14.826667pt;}
.w3_c00101{width:54.080000pt;}
.w4_c00101{width:84.480000pt;}
.w5_c00101{width:131.520000pt;}
.w6_c00101{width:303.360000pt;}
.w2_c00101{width:767.960000pt;}
.w0_c00101{width:793.720000pt;}
.w1_c00101{width:794.000000pt;}
.x0_c00101{left:0.000000pt;}
.x14_c00101{left:7.040133pt;}
.x22_c00101{left:11.603733pt;}
.x1_c00101{left:12.880000pt;}
.x24_c00101{left:42.579600pt;}
.x1e_c00101{left:44.632533pt;}
.x1a_c00101{left:59.679467pt;}
.x21_c00101{left:62.144000pt;}
.x23_c00101{left:73.309333pt;}
.x1f_c00101{left:82.897200pt;}
.x1b_c00101{left:94.717467pt;}
.x2_c00101{left:100.480133pt;}
.x13_c00101{left:106.320000pt;}
.x28_c00101{left:115.149467pt;}
.x3_c00101{left:124.480133pt;}
.x25_c00101{left:142.311200pt;}
.x15_c00101{left:161.040000pt;}
.x27_c00101{left:178.646267pt;}
.x26_c00101{left:190.495200pt;}
.x1c_c00101{left:197.772533pt;}
.xe_c00101{left:218.185867pt;}
.x11_c00101{left:222.693333pt;}
.x20_c00101{left:228.022267pt;}
.x12_c00101{left:230.693333pt;}
.x1d_c00101{left:240.158667pt;}
.x18_c00101{left:244.833467pt;}
.x16_c00101{left:246.160000pt;}
.xf_c00101{left:257.305333pt;}
.x19_c00101{left:280.693067pt;}
.x9_c00101{left:285.455467pt;}
.xa_c00101{left:297.007200pt;}
.x10_c00101{left:348.428000pt;}
.x17_c00101{left:378.320000pt;}
.x4_c00101{left:385.834667pt;}
.x5_c00101{left:448.154000pt;}
.x6_c00101{left:484.601200pt;}
.x7_c00101{left:502.904533pt;}
.xb_c00101{left:528.273067pt;}
.xc_c00101{left:544.035867pt;}
.x8_c00101{left:567.799467pt;}
.xd_c00101{left:592.196933pt;}
.x29_c00101{left:682.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_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_523c3371315956bdce2e614c.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.134000;font-style:normal;font-weight:normal;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_6bc6d13d290c3bd8157f72bc.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;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:ff3_c00102;src:url('chunks/assets/font_904acfc788c2f05e0d73e4d6.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:0.787000;font-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_c00102{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00102{vertical-align:-24.480000px;}
.v0_c00102{vertical-align:0.000000px;}
.v1_c00102{vertical-align:30.240000px;}
.ls1c_c00102{letter-spacing:-0.179568px;}
.lsf_c00102{letter-spacing:0.000000px;}
.ls1d_c00102{letter-spacing:0.144000px;}
.ls8_c00102{letter-spacing:0.265680px;}
.lsb_c00102{letter-spacing:0.271584px;}
.ls2_c00102{letter-spacing:0.295200px;}
.lsa_c00102{letter-spacing:0.354240px;}
.ls20_c00102{letter-spacing:0.425088px;}
.ls1a_c00102{letter-spacing:0.478224px;}
.ls1_c00102{letter-spacing:0.531360px;}
.ls3_c00102{letter-spacing:0.537264px;}
.ls9_c00102{letter-spacing:0.549072px;}
.ls19_c00102{letter-spacing:0.584496px;}
.ls13_c00102{letter-spacing:0.690768px;}
.ls10_c00102{letter-spacing:0.696672px;}
.ls5_c00102{letter-spacing:0.708480px;}
.ls6_c00102{letter-spacing:0.712027px;}
.ls11_c00102{letter-spacing:0.743904px;}
.ls17_c00102{letter-spacing:0.797040px;}
.ls18_c00102{letter-spacing:0.962352px;}
.ls4_c00102{letter-spacing:0.991970px;}
.lsd_c00102{letter-spacing:1.368000px;}
.ls1f_c00102{letter-spacing:5.248656px;}
.ls1b_c00102{letter-spacing:5.430672px;}
.lse_c00102{letter-spacing:5.514336px;}
.lsc_c00102{letter-spacing:5.975400px;}
.ls0_c00102{letter-spacing:5.976000px;}
.ls14_c00102{letter-spacing:9.647136px;}
.ls12_c00102{letter-spacing:11.689920px;}
.ls16_c00102{letter-spacing:13.762224px;}
.ls7_c00102{letter-spacing:15.291360px;}
.ls1e_c00102{letter-spacing:19.471392px;}
.ls15_c00102{letter-spacing:20.132640px;}
.sc__c00102{text-shadow:none;}
.sc1_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00102{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc1_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00102{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00102{word-spacing:-21.927456px;}
.wsb_c00102{word-spacing:-21.661776px;}
.ws6_c00102{word-spacing:-21.043152px;}
.ws7_c00102{word-spacing:-20.016000px;}
.ws1_c00102{word-spacing:-17.910227px;}
.ws2_c00102{word-spacing:-17.630284px;}
.ws0_c00102{word-spacing:-17.109792px;}
.ws4_c00102{word-spacing:-17.103888px;}
.ws3_c00102{word-spacing:-16.944480px;}
.ws5_c00102{word-spacing:-16.678800px;}
.ws8_c00102{word-spacing:-11.429712px;}
.ws9_c00102{word-spacing:-10.152000px;}
.wsc_c00102{word-spacing:0.000000px;}
._7_c00102{margin-left:-19.548144px;}
._18_c00102{margin-left:-18.525456px;}
._a_c00102{margin-left:-13.224960px;}
._2_c00102{margin-left:-11.016864px;}
._4_c00102{margin-left:-9.493632px;}
._0_c00102{margin-left:-1.239840px;}
._5_c00102{width:1.121760px;}
._b_c00102{width:2.219904px;}
._15_c00102{width:3.540096px;}
._e_c00102{width:4.921920px;}
._d_c00102{width:5.963040px;}
._12_c00102{width:6.984000px;}
._3_c00102{width:8.796960px;}
._17_c00102{width:9.936000px;}
._1_c00102{width:11.158560px;}
._9_c00102{width:12.221280px;}
._8_c00102{width:13.815360px;}
._c_c00102{width:14.819040px;}
._13_c00102{width:16.716960px;}
._6_c00102{width:19.365120px;}
._14_c00102{width:21.024000px;}
._16_c00102{width:22.608000px;}
._11_c00102{width:23.760000px;}
._f_c00102{width:24.912000px;}
._10_c00102{width:40.536000px;}
.fc0_c00102{color:rgb(0,0,0);}
.fs6_c00102{font-size:36.000000px;}
.fs5_c00102{font-size:41.760000px;}
.fs4_c00102{font-size:56.160000px;}
.fs1_c00102{font-size:59.040000px;}
.fs7_c00102{font-size:60.000000px;}
.fs2_c00102{font-size:60.857039px;}
.fs0_c00102{font-size:72.000000px;}
.fs3_c00102{font-size:74.215901px;}
.y0_c00102{bottom:0.000000px;}
.y35_c00102{bottom:3.120150px;}
.y34_c00102{bottom:34.744500px;}
.y1_c00102{bottom:54.000000px;}
.y33_c00102{bottom:61.605000px;}
.y32_c00102{bottom:72.766800px;}
.y31_c00102{bottom:90.405000px;}
.y30_c00102{bottom:96.525000px;}
.y2f_c00102{bottom:113.805000px;}
.y2e_c00102{bottom:140.445000px;}
.y2d_c00102{bottom:180.765000px;}
.y2c_c00102{bottom:201.645000px;}
.y2b_c00102{bottom:222.885000px;}
.y2a_c00102{bottom:243.765000px;}
.y29_c00102{bottom:264.645000px;}
.y28_c00102{bottom:300.645000px;}
.y27_c00102{bottom:321.885000px;}
.y26_c00102{bottom:342.765000px;}
.y25_c00102{bottom:364.005000px;}
.y24_c00102{bottom:384.885000px;}
.y23_c00102{bottom:405.765000px;}
.y22_c00102{bottom:427.005000px;}
.y21_c00102{bottom:447.885000px;}
.y20_c00102{bottom:483.885000px;}
.y1f_c00102{bottom:504.765000px;}
.y1e_c00102{bottom:526.005000px;}
.y1d_c00102{bottom:546.885000px;}
.y1c_c00102{bottom:567.765000px;}
.y1b_c00102{bottom:589.005000px;}
.y1a_c00102{bottom:609.885000px;}
.y19_c00102{bottom:645.885000px;}
.y18_c00102{bottom:666.765000px;}
.y17_c00102{bottom:688.005000px;}
.y16_c00102{bottom:708.885000px;}
.y15_c00102{bottom:729.765000px;}
.y14_c00102{bottom:751.005000px;}
.y13_c00102{bottom:771.885000px;}
.y12_c00102{bottom:807.885000px;}
.y11_c00102{bottom:843.885000px;}
.y10_c00102{bottom:879.524640px;}
.yf_c00102{bottom:897.162840px;}
.ye_c00102{bottom:914.801040px;}
.yd_c00102{bottom:932.085000px;}
.yb_c00102{bottom:964.842690px;}
.yc_c00102{bottom:964.845000px;}
.ya_c00102{bottom:982.126650px;}
.y9_c00102{bottom:999.764850px;}
.y8_c00102{bottom:999.766800px;}
.y6_c00102{bottom:1017.402840px;}
.y7_c00102{bottom:1017.405000px;}
.y5_c00102{bottom:1034.686800px;}
.y4_c00102{bottom:1052.325000px;}
.y3_c00102{bottom:1085.085000px;}
.y2_c00102{bottom:1138.365000px;}
.h9_c00102{height:19.255500px;}
.h8_c00102{height:32.616000px;}
.ha_c00102{height:46.320000px;}
.h5_c00102{height:46.981634px;}
.h4_c00102{height:53.490240px;}
.h6_c00102{height:57.294676px;}
.h3_c00102{height:65.232000px;}
.h7_c00102{height:68.074560px;}
.h2_c00102{height:1201.365000px;}
.h0_c00102{height:1262.835000px;}
.h1_c00102{height:1263.000000px;}
.w3_c00102{width:16.680000px;}
.w2_c00102{width:863.955000px;}
.w0_c00102{width:892.935000px;}
.w1_c00102{width:893.250000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:14.490000px;}
.x2_c00102{left:113.040150px;}
.x9_c00102{left:133.034550px;}
.xa_c00102{left:194.626500px;}
.xf_c00102{left:200.536800px;}
.x7_c00102{left:208.916700px;}
.x8_c00102{left:248.050800px;}
.x5_c00102{left:475.992600px;}
.x10_c00102{left:477.444150px;}
.x6_c00102{left:511.827000px;}
.x11_c00102{left:536.950950px;}
.xb_c00102{left:586.143750px;}
.xc_c00102{left:601.551300px;}
.x12_c00102{left:608.492100px;}
.xd_c00102{left:630.600150px;}
.xe_c00102{left:639.600150px;}
.x13_c00102{left:645.166650px;}
.x3_c00102{left:659.609250px;}
.x4_c00102{left:696.283800px;}
.x14_c00102{left:768.255000px;}
@media print{
.v2_c00102{vertical-align:-21.760000pt;}
.v0_c00102{vertical-align:0.000000pt;}
.v1_c00102{vertical-align:26.880000pt;}
.ls1c_c00102{letter-spacing:-0.159616pt;}
.lsf_c00102{letter-spacing:0.000000pt;}
.ls1d_c00102{letter-spacing:0.128000pt;}
.ls8_c00102{letter-spacing:0.236160pt;}
.lsb_c00102{letter-spacing:0.241408pt;}
.ls2_c00102{letter-spacing:0.262400pt;}
.lsa_c00102{letter-spacing:0.314880pt;}
.ls20_c00102{letter-spacing:0.377856pt;}
.ls1a_c00102{letter-spacing:0.425088pt;}
.ls1_c00102{letter-spacing:0.472320pt;}
.ls3_c00102{letter-spacing:0.477568pt;}
.ls9_c00102{letter-spacing:0.488064pt;}
.ls19_c00102{letter-spacing:0.519552pt;}
.ls13_c00102{letter-spacing:0.614016pt;}
.ls10_c00102{letter-spacing:0.619264pt;}
.ls5_c00102{letter-spacing:0.629760pt;}
.ls6_c00102{letter-spacing:0.632913pt;}
.ls11_c00102{letter-spacing:0.661248pt;}
.ls17_c00102{letter-spacing:0.708480pt;}
.ls18_c00102{letter-spacing:0.855424pt;}
.ls4_c00102{letter-spacing:0.881751pt;}
.lsd_c00102{letter-spacing:1.216000pt;}
.ls1f_c00102{letter-spacing:4.665472pt;}
.ls1b_c00102{letter-spacing:4.827264pt;}
.lse_c00102{letter-spacing:4.901632pt;}
.lsc_c00102{letter-spacing:5.311467pt;}
.ls0_c00102{letter-spacing:5.312000pt;}
.ls14_c00102{letter-spacing:8.575232pt;}
.ls12_c00102{letter-spacing:10.391040pt;}
.ls16_c00102{letter-spacing:12.233088pt;}
.ls7_c00102{letter-spacing:13.592320pt;}
.ls1e_c00102{letter-spacing:17.307904pt;}
.ls15_c00102{letter-spacing:17.895680pt;}
.wsa_c00102{word-spacing:-19.491072pt;}
.wsb_c00102{word-spacing:-19.254912pt;}
.ws6_c00102{word-spacing:-18.705024pt;}
.ws7_c00102{word-spacing:-17.792000pt;}
.ws1_c00102{word-spacing:-15.920201pt;}
.ws2_c00102{word-spacing:-15.671364pt;}
.ws0_c00102{word-spacing:-15.208704pt;}
.ws4_c00102{word-spacing:-15.203456pt;}
.ws3_c00102{word-spacing:-15.061760pt;}
.ws5_c00102{word-spacing:-14.825600pt;}
.ws8_c00102{word-spacing:-10.159744pt;}
.ws9_c00102{word-spacing:-9.024000pt;}
.wsc_c00102{word-spacing:0.000000pt;}
._7_c00102{margin-left:-17.376128pt;}
._18_c00102{margin-left:-16.467072pt;}
._a_c00102{margin-left:-11.755520pt;}
._2_c00102{margin-left:-9.792768pt;}
._4_c00102{margin-left:-8.438784pt;}
._0_c00102{margin-left:-1.102080pt;}
._5_c00102{width:0.997120pt;}
._b_c00102{width:1.973248pt;}
._15_c00102{width:3.146752pt;}
._e_c00102{width:4.375040pt;}
._d_c00102{width:5.300480pt;}
._12_c00102{width:6.208000pt;}
._3_c00102{width:7.819520pt;}
._17_c00102{width:8.832000pt;}
._1_c00102{width:9.918720pt;}
._9_c00102{width:10.863360pt;}
._8_c00102{width:12.280320pt;}
._c_c00102{width:13.172480pt;}
._13_c00102{width:14.859520pt;}
._6_c00102{width:17.213440pt;}
._14_c00102{width:18.688000pt;}
._16_c00102{width:20.096000pt;}
._11_c00102{width:21.120000pt;}
._f_c00102{width:22.144000pt;}
._10_c00102{width:36.032000pt;}
.fs6_c00102{font-size:32.000000pt;}
.fs5_c00102{font-size:37.120000pt;}
.fs4_c00102{font-size:49.920000pt;}
.fs1_c00102{font-size:52.480000pt;}
.fs7_c00102{font-size:53.333333pt;}
.fs2_c00102{font-size:54.095146pt;}
.fs0_c00102{font-size:64.000000pt;}
.fs3_c00102{font-size:65.969690pt;}
.y0_c00102{bottom:0.000000pt;}
.y35_c00102{bottom:2.773467pt;}
.y34_c00102{bottom:30.884000pt;}
.y1_c00102{bottom:48.000000pt;}
.y33_c00102{bottom:54.760000pt;}
.y32_c00102{bottom:64.681600pt;}
.y31_c00102{bottom:80.360000pt;}
.y30_c00102{bottom:85.800000pt;}
.y2f_c00102{bottom:101.160000pt;}
.y2e_c00102{bottom:124.840000pt;}
.y2d_c00102{bottom:160.680000pt;}
.y2c_c00102{bottom:179.240000pt;}
.y2b_c00102{bottom:198.120000pt;}
.y2a_c00102{bottom:216.680000pt;}
.y29_c00102{bottom:235.240000pt;}
.y28_c00102{bottom:267.240000pt;}
.y27_c00102{bottom:286.120000pt;}
.y26_c00102{bottom:304.680000pt;}
.y25_c00102{bottom:323.560000pt;}
.y24_c00102{bottom:342.120000pt;}
.y23_c00102{bottom:360.680000pt;}
.y22_c00102{bottom:379.560000pt;}
.y21_c00102{bottom:398.120000pt;}
.y20_c00102{bottom:430.120000pt;}
.y1f_c00102{bottom:448.680000pt;}
.y1e_c00102{bottom:467.560000pt;}
.y1d_c00102{bottom:486.120000pt;}
.y1c_c00102{bottom:504.680000pt;}
.y1b_c00102{bottom:523.560000pt;}
.y1a_c00102{bottom:542.120000pt;}
.y19_c00102{bottom:574.120000pt;}
.y18_c00102{bottom:592.680000pt;}
.y17_c00102{bottom:611.560000pt;}
.y16_c00102{bottom:630.120000pt;}
.y15_c00102{bottom:648.680000pt;}
.y14_c00102{bottom:667.560000pt;}
.y13_c00102{bottom:686.120000pt;}
.y12_c00102{bottom:718.120000pt;}
.y11_c00102{bottom:750.120000pt;}
.y10_c00102{bottom:781.799680pt;}
.yf_c00102{bottom:797.478080pt;}
.ye_c00102{bottom:813.156480pt;}
.yd_c00102{bottom:828.520000pt;}
.yb_c00102{bottom:857.637947pt;}
.yc_c00102{bottom:857.640000pt;}
.ya_c00102{bottom:873.001467pt;}
.y9_c00102{bottom:888.679867pt;}
.y8_c00102{bottom:888.681600pt;}
.y6_c00102{bottom:904.358080pt;}
.y7_c00102{bottom:904.360000pt;}
.y5_c00102{bottom:919.721600pt;}
.y4_c00102{bottom:935.400000pt;}
.y3_c00102{bottom:964.520000pt;}
.y2_c00102{bottom:1011.880000pt;}
.h9_c00102{height:17.116000pt;}
.h8_c00102{height:28.992000pt;}
.ha_c00102{height:41.173333pt;}
.h5_c00102{height:41.761453pt;}
.h4_c00102{height:47.546880pt;}
.h6_c00102{height:50.928601pt;}
.h3_c00102{height:57.984000pt;}
.h7_c00102{height:60.510720pt;}
.h2_c00102{height:1067.880000pt;}
.h0_c00102{height:1122.520000pt;}
.h1_c00102{height:1122.666667pt;}
.w3_c00102{width:14.826667pt;}
.w2_c00102{width:767.960000pt;}
.w0_c00102{width:793.720000pt;}
.w1_c00102{width:794.000000pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:12.880000pt;}
.x2_c00102{left:100.480133pt;}
.x9_c00102{left:118.252933pt;}
.xa_c00102{left:173.001333pt;}
.xf_c00102{left:178.254933pt;}
.x7_c00102{left:185.703733pt;}
.x8_c00102{left:220.489600pt;}
.x5_c00102{left:423.104533pt;}
.x10_c00102{left:424.394800pt;}
.x6_c00102{left:454.957333pt;}
.x11_c00102{left:477.289733pt;}
.xb_c00102{left:521.016667pt;}
.xc_c00102{left:534.712267pt;}
.x12_c00102{left:540.881867pt;}
.xd_c00102{left:560.533467pt;}
.xe_c00102{left:568.533467pt;}
.x13_c00102{left:573.481467pt;}
.x3_c00102{left:586.319333pt;}
.x4_c00102{left:618.918933pt;}
.x14_c00102{left:682.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_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_0962898a6b964152441e136a.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.134000;font-style:normal;font-weight:normal;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_49489655e2616b66630cef12.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;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:ff3_c00103;src:url('chunks/assets/font_85fbef2148fd4b3f87844a75.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:0.787000;font-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_c00103{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00103{vertical-align:-24.480000px;}
.v0_c00103{vertical-align:0.000000px;}
.v1_c00103{vertical-align:30.240000px;}
.ls6_c00103{letter-spacing:-0.179568px;}
.ls4_c00103{letter-spacing:0.000000px;}
.ls7_c00103{letter-spacing:0.144000px;}
.lsa_c00103{letter-spacing:0.202464px;}
.ls2_c00103{letter-spacing:0.238560px;}
.ls8_c00103{letter-spacing:0.265680px;}
.ls3_c00103{letter-spacing:0.399600px;}
.lsb_c00103{letter-spacing:0.436896px;}
.ls9_c00103{letter-spacing:4.683312px;}
.ls5_c00103{letter-spacing:5.335200px;}
.ls0_c00103{letter-spacing:5.976000px;}
.ls1_c00103{letter-spacing:5.979600px;}
.sc__c00103{text-shadow:none;}
.sc1_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00103{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc1_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00103{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00103{word-spacing:-20.947680px;}
.ws3_c00103{word-spacing:-19.495152px;}
.ws4_c00103{word-spacing:-15.211440px;}
.ws1_c00103{word-spacing:-11.429712px;}
.ws2_c00103{word-spacing:-10.152000px;}
.ws5_c00103{word-spacing:0.000000px;}
._8_c00103{margin-left:-1.118880px;}
._1_c00103{width:1.080000px;}
._7_c00103{width:3.816000px;}
._4_c00103{width:5.184000px;}
._0_c00103{width:6.408000px;}
._6_c00103{width:8.496000px;}
._2_c00103{width:10.800000px;}
._3_c00103{width:13.752000px;}
._5_c00103{width:16.848000px;}
.fc1_c00103{color:transparent;}
.fc0_c00103{color:rgb(0,0,0);}
.fs4_c00103{font-size:36.000000px;}
.fs3_c00103{font-size:41.760000px;}
.fs6_c00103{font-size:53.280000px;}
.fs2_c00103{font-size:56.160000px;}
.fs5_c00103{font-size:59.040000px;}
.fs7_c00103{font-size:60.000000px;}
.fs0_c00103{font-size:72.000000px;}
.fs1_c00103{font-size:74.215901px;}
.y0_c00103{bottom:0.000000px;}
.y23_c00103{bottom:3.120150px;}
.y21_c00103{bottom:29.160000px;}
.y22_c00103{bottom:34.744500px;}
.y20_c00103{bottom:45.000000px;}
.y1_c00103{bottom:54.000000px;}
.y1e_c00103{bottom:61.605000px;}
.y1d_c00103{bottom:88.245000px;}
.y1c_c00103{bottom:304.965000px;}
.y1b_c00103{bottom:340.965000px;}
.y1f_c00103{bottom:356.085000px;}
.y1a_c00103{bottom:376.965000px;}
.y19_c00103{bottom:412.965000px;}
.y18_c00103{bottom:448.965000px;}
.y17_c00103{bottom:484.965000px;}
.y16_c00103{bottom:520.965000px;}
.y15_c00103{bottom:556.965000px;}
.y14_c00103{bottom:592.965000px;}
.y13_c00103{bottom:628.965000px;}
.y12_c00103{bottom:664.965000px;}
.y11_c00103{bottom:700.965000px;}
.y10_c00103{bottom:736.965000px;}
.yf_c00103{bottom:772.965000px;}
.ye_c00103{bottom:808.965000px;}
.yd_c00103{bottom:829.845000px;}
.yc_c00103{bottom:851.085000px;}
.yb_c00103{bottom:871.965000px;}
.ya_c00103{bottom:892.845000px;}
.y9_c00103{bottom:928.845000px;}
.y8_c00103{bottom:964.845000px;}
.y7_c00103{bottom:1000.845000px;}
.y6_c00103{bottom:1022.085000px;}
.y5_c00103{bottom:1042.965000px;}
.y4_c00103{bottom:1063.845000px;}
.y3_c00103{bottom:1085.085000px;}
.y2_c00103{bottom:1138.365000px;}
.h9_c00103{height:19.255500px;}
.h6_c00103{height:32.616000px;}
.ha_c00103{height:46.320000px;}
.h8_c00103{height:48.271680px;}
.h4_c00103{height:57.294676px;}
.h7_c00103{height:57.600000px;}
.h3_c00103{height:65.232000px;}
.h5_c00103{height:68.074560px;}
.h2_c00103{height:1201.365000px;}
.h0_c00103{height:1262.835000px;}
.h1_c00103{height:1263.000000px;}
.w4_c00103{width:16.680000px;}
.w3_c00103{width:626.760000px;}
.w2_c00103{width:863.955000px;}
.w0_c00103{width:892.935000px;}
.w1_c00103{width:893.250000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:14.490000px;}
.x2_c00103{left:113.040150px;}
.xa_c00103{left:125.730000px;}
.xb_c00103{left:131.571000px;}
.x3_c00103{left:136.043700px;}
.x9_c00103{left:170.099100px;}
.x6_c00103{left:235.921200px;}
.x7_c00103{left:245.946900px;}
.x4_c00103{left:476.365350px;}
.x5_c00103{left:551.096250px;}
.x8_c00103{left:693.384900px;}
.xc_c00103{left:768.255000px;}
@media print{
.v2_c00103{vertical-align:-21.760000pt;}
.v0_c00103{vertical-align:0.000000pt;}
.v1_c00103{vertical-align:26.880000pt;}
.ls6_c00103{letter-spacing:-0.159616pt;}
.ls4_c00103{letter-spacing:0.000000pt;}
.ls7_c00103{letter-spacing:0.128000pt;}
.lsa_c00103{letter-spacing:0.179968pt;}
.ls2_c00103{letter-spacing:0.212053pt;}
.ls8_c00103{letter-spacing:0.236160pt;}
.ls3_c00103{letter-spacing:0.355200pt;}
.lsb_c00103{letter-spacing:0.388352pt;}
.ls9_c00103{letter-spacing:4.162944pt;}
.ls5_c00103{letter-spacing:4.742400pt;}
.ls0_c00103{letter-spacing:5.312000pt;}
.ls1_c00103{letter-spacing:5.315200pt;}
.ws0_c00103{word-spacing:-18.620160pt;}
.ws3_c00103{word-spacing:-17.329024pt;}
.ws4_c00103{word-spacing:-13.521280pt;}
.ws1_c00103{word-spacing:-10.159744pt;}
.ws2_c00103{word-spacing:-9.024000pt;}
.ws5_c00103{word-spacing:0.000000pt;}
._8_c00103{margin-left:-0.994560pt;}
._1_c00103{width:0.960000pt;}
._7_c00103{width:3.392000pt;}
._4_c00103{width:4.608000pt;}
._0_c00103{width:5.696000pt;}
._6_c00103{width:7.552000pt;}
._2_c00103{width:9.600000pt;}
._3_c00103{width:12.224000pt;}
._5_c00103{width:14.976000pt;}
.fs4_c00103{font-size:32.000000pt;}
.fs3_c00103{font-size:37.120000pt;}
.fs6_c00103{font-size:47.360000pt;}
.fs2_c00103{font-size:49.920000pt;}
.fs5_c00103{font-size:52.480000pt;}
.fs7_c00103{font-size:53.333333pt;}
.fs0_c00103{font-size:64.000000pt;}
.fs1_c00103{font-size:65.969690pt;}
.y0_c00103{bottom:0.000000pt;}
.y23_c00103{bottom:2.773467pt;}
.y21_c00103{bottom:25.920000pt;}
.y22_c00103{bottom:30.884000pt;}
.y20_c00103{bottom:40.000000pt;}
.y1_c00103{bottom:48.000000pt;}
.y1e_c00103{bottom:54.760000pt;}
.y1d_c00103{bottom:78.440000pt;}
.y1c_c00103{bottom:271.080000pt;}
.y1b_c00103{bottom:303.080000pt;}
.y1f_c00103{bottom:316.520000pt;}
.y1a_c00103{bottom:335.080000pt;}
.y19_c00103{bottom:367.080000pt;}
.y18_c00103{bottom:399.080000pt;}
.y17_c00103{bottom:431.080000pt;}
.y16_c00103{bottom:463.080000pt;}
.y15_c00103{bottom:495.080000pt;}
.y14_c00103{bottom:527.080000pt;}
.y13_c00103{bottom:559.080000pt;}
.y12_c00103{bottom:591.080000pt;}
.y11_c00103{bottom:623.080000pt;}
.y10_c00103{bottom:655.080000pt;}
.yf_c00103{bottom:687.080000pt;}
.ye_c00103{bottom:719.080000pt;}
.yd_c00103{bottom:737.640000pt;}
.yc_c00103{bottom:756.520000pt;}
.yb_c00103{bottom:775.080000pt;}
.ya_c00103{bottom:793.640000pt;}
.y9_c00103{bottom:825.640000pt;}
.y8_c00103{bottom:857.640000pt;}
.y7_c00103{bottom:889.640000pt;}
.y6_c00103{bottom:908.520000pt;}
.y5_c00103{bottom:927.080000pt;}
.y4_c00103{bottom:945.640000pt;}
.y3_c00103{bottom:964.520000pt;}
.y2_c00103{bottom:1011.880000pt;}
.h9_c00103{height:17.116000pt;}
.h6_c00103{height:28.992000pt;}
.ha_c00103{height:41.173333pt;}
.h8_c00103{height:42.908160pt;}
.h4_c00103{height:50.928601pt;}
.h7_c00103{height:51.200000pt;}
.h3_c00103{height:57.984000pt;}
.h5_c00103{height:60.510720pt;}
.h2_c00103{height:1067.880000pt;}
.h0_c00103{height:1122.520000pt;}
.h1_c00103{height:1122.666667pt;}
.w4_c00103{width:14.826667pt;}
.w3_c00103{width:557.120000pt;}
.w2_c00103{width:767.960000pt;}
.w0_c00103{width:793.720000pt;}
.w1_c00103{width:794.000000pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:12.880000pt;}
.x2_c00103{left:100.480133pt;}
.xa_c00103{left:111.760000pt;}
.xb_c00103{left:116.952000pt;}
.x3_c00103{left:120.927733pt;}
.x9_c00103{left:151.199200pt;}
.x6_c00103{left:209.707733pt;}
.x7_c00103{left:218.619467pt;}
.x4_c00103{left:423.435867pt;}
.x5_c00103{left:489.863333pt;}
.x8_c00103{left:616.342133pt;}
.xc_c00103{left:682.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_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_7238fa838e602fa43c1291d9.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.134000;font-style:normal;font-weight:normal;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_90cfccb7a633452c841e8a68.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls5_c00104{letter-spacing:0.000000px;}
.ls6_c00104{letter-spacing:0.202464px;}
.ls2_c00104{letter-spacing:0.238560px;}
.ls4_c00104{letter-spacing:0.239160px;}
.ls9_c00104{letter-spacing:0.239760px;}
.ls3_c00104{letter-spacing:0.399600px;}
.ls1_c00104{letter-spacing:0.399720px;}
.ls8_c00104{letter-spacing:0.436896px;}
.ls7_c00104{letter-spacing:4.683312px;}
.ls0_c00104{letter-spacing:5.976000px;}
.sc__c00104{text-shadow:none;}
.sc1_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00104{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc1_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00104{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00104{word-spacing:-19.495152px;}
.ws1_c00104{word-spacing:-15.211440px;}
.ws2_c00104{word-spacing:-15.051600px;}
.ws3_c00104{word-spacing:0.000000px;}
._1_c00104{margin-left:-1.012320px;}
._0_c00104{width:1.014000px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs1_c00104{font-size:53.280000px;}
.fs2_c00104{font-size:60.000000px;}
.fs0_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y20_c00104{bottom:3.120150px;}
.y1e_c00104{bottom:25.560000px;}
.y1b_c00104{bottom:26.640000px;}
.y1f_c00104{bottom:34.744500px;}
.y1d_c00104{bottom:41.040000px;}
.y1a_c00104{bottom:42.480000px;}
.y1_c00104{bottom:54.000000px;}
.y18_c00104{bottom:328.725000px;}
.y1c_c00104{bottom:337.365000px;}
.y17_c00104{bottom:364.725000px;}
.y16_c00104{bottom:400.725000px;}
.y15_c00104{bottom:436.725000px;}
.y14_c00104{bottom:472.725000px;}
.y13_c00104{bottom:509.085000px;}
.y12_c00104{bottom:545.085000px;}
.y11_c00104{bottom:581.085000px;}
.y10_c00104{bottom:617.085000px;}
.yf_c00104{bottom:653.085000px;}
.ye_c00104{bottom:689.085000px;}
.yd_c00104{bottom:725.085000px;}
.y19_c00104{bottom:750.285000px;}
.yc_c00104{bottom:761.085000px;}
.yb_c00104{bottom:797.085000px;}
.ya_c00104{bottom:833.085000px;}
.y9_c00104{bottom:869.085000px;}
.y8_c00104{bottom:905.085000px;}
.y7_c00104{bottom:941.085000px;}
.y6_c00104{bottom:977.085000px;}
.y5_c00104{bottom:1013.085000px;}
.y4_c00104{bottom:1049.085000px;}
.y3_c00104{bottom:1085.085000px;}
.y2_c00104{bottom:1138.365000px;}
.h7_c00104{height:19.255500px;}
.h8_c00104{height:46.320000px;}
.h5_c00104{height:48.271680px;}
.h6_c00104{height:53.640000px;}
.h4_c00104{height:55.080000px;}
.h3_c00104{height:65.232000px;}
.h2_c00104{height:1201.365000px;}
.h0_c00104{height:1262.835000px;}
.h1_c00104{height:1263.000000px;}
.w5_c00104{width:16.680000px;}
.w4_c00104{width:600.840000px;}
.w3_c00104{width:651.960000px;}
.w2_c00104{width:863.955000px;}
.w0_c00104{width:892.935000px;}
.w1_c00104{width:893.250000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:14.490000px;}
.x5_c00104{left:82.418250px;}
.x2_c00104{left:113.040150px;}
.x7_c00104{left:118.311000px;}
.x3_c00104{left:123.570000px;}
.x4_c00104{left:129.120750px;}
.x6_c00104{left:151.290000px;}
.x8_c00104{left:768.255000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls5_c00104{letter-spacing:0.000000pt;}
.ls6_c00104{letter-spacing:0.179968pt;}
.ls2_c00104{letter-spacing:0.212053pt;}
.ls4_c00104{letter-spacing:0.212587pt;}
.ls9_c00104{letter-spacing:0.213120pt;}
.ls3_c00104{letter-spacing:0.355200pt;}
.ls1_c00104{letter-spacing:0.355307pt;}
.ls8_c00104{letter-spacing:0.388352pt;}
.ls7_c00104{letter-spacing:4.162944pt;}
.ls0_c00104{letter-spacing:5.312000pt;}
.ws0_c00104{word-spacing:-17.329024pt;}
.ws1_c00104{word-spacing:-13.521280pt;}
.ws2_c00104{word-spacing:-13.379200pt;}
.ws3_c00104{word-spacing:0.000000pt;}
._1_c00104{margin-left:-0.899840pt;}
._0_c00104{width:0.901333pt;}
.fs1_c00104{font-size:47.360000pt;}
.fs2_c00104{font-size:53.333333pt;}
.fs0_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y20_c00104{bottom:2.773467pt;}
.y1e_c00104{bottom:22.720000pt;}
.y1b_c00104{bottom:23.680000pt;}
.y1f_c00104{bottom:30.884000pt;}
.y1d_c00104{bottom:36.480000pt;}
.y1a_c00104{bottom:37.760000pt;}
.y1_c00104{bottom:48.000000pt;}
.y18_c00104{bottom:292.200000pt;}
.y1c_c00104{bottom:299.880000pt;}
.y17_c00104{bottom:324.200000pt;}
.y16_c00104{bottom:356.200000pt;}
.y15_c00104{bottom:388.200000pt;}
.y14_c00104{bottom:420.200000pt;}
.y13_c00104{bottom:452.520000pt;}
.y12_c00104{bottom:484.520000pt;}
.y11_c00104{bottom:516.520000pt;}
.y10_c00104{bottom:548.520000pt;}
.yf_c00104{bottom:580.520000pt;}
.ye_c00104{bottom:612.520000pt;}
.yd_c00104{bottom:644.520000pt;}
.y19_c00104{bottom:666.920000pt;}
.yc_c00104{bottom:676.520000pt;}
.yb_c00104{bottom:708.520000pt;}
.ya_c00104{bottom:740.520000pt;}
.y9_c00104{bottom:772.520000pt;}
.y8_c00104{bottom:804.520000pt;}
.y7_c00104{bottom:836.520000pt;}
.y6_c00104{bottom:868.520000pt;}
.y5_c00104{bottom:900.520000pt;}
.y4_c00104{bottom:932.520000pt;}
.y3_c00104{bottom:964.520000pt;}
.y2_c00104{bottom:1011.880000pt;}
.h7_c00104{height:17.116000pt;}
.h8_c00104{height:41.173333pt;}
.h5_c00104{height:42.908160pt;}
.h6_c00104{height:47.680000pt;}
.h4_c00104{height:48.960000pt;}
.h3_c00104{height:57.984000pt;}
.h2_c00104{height:1067.880000pt;}
.h0_c00104{height:1122.520000pt;}
.h1_c00104{height:1122.666667pt;}
.w5_c00104{width:14.826667pt;}
.w4_c00104{width:534.080000pt;}
.w3_c00104{width:579.520000pt;}
.w2_c00104{width:767.960000pt;}
.w0_c00104{width:793.720000pt;}
.w1_c00104{width:794.000000pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:12.880000pt;}
.x5_c00104{left:73.260667pt;}
.x2_c00104{left:100.480133pt;}
.x7_c00104{left:105.165333pt;}
.x3_c00104{left:109.840000pt;}
.x4_c00104{left:114.774000pt;}
.x6_c00104{left:134.480000pt;}
.x8_c00104{left:682.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_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_4db82110372bc23cfc3b00f5.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.134000;font-style:normal;font-weight:normal;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_2eebfe2b8b05a4975c1f5abe.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;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:ff3_c00105;src:url('chunks/assets/font_652384b3d7b8a59e9254e743.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:0.787000;font-style:normal;font-weight:normal;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_d7791b1b457995fc1137fb7c.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:0.787000;font-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_c00105{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00105{vertical-align:-24.480000px;}
.v0_c00105{vertical-align:0.000000px;}
.v1_c00105{vertical-align:30.240000px;}
.lsd_c00105{letter-spacing:0.000000px;}
.ls2_c00105{letter-spacing:0.057840px;}
.ls3_c00105{letter-spacing:0.100440px;}
.ls4_c00105{letter-spacing:0.242040px;}
.ls13_c00105{letter-spacing:0.265680px;}
.ls7_c00105{letter-spacing:0.295200px;}
.ls16_c00105{letter-spacing:0.425088px;}
.ls1b_c00105{letter-spacing:0.438171px;}
.ls1a_c00105{letter-spacing:0.492942px;}
.ls9_c00105{letter-spacing:0.513648px;}
.ls8_c00105{letter-spacing:0.531360px;}
.ls14_c00105{letter-spacing:0.584496px;}
.lsa_c00105{letter-spacing:0.602485px;}
.ls1c_c00105{letter-spacing:0.690768px;}
.ls6_c00105{letter-spacing:0.712027px;}
.ls18_c00105{letter-spacing:0.743904px;}
.ls15_c00105{letter-spacing:0.797040px;}
.ls5_c00105{letter-spacing:2.184480px;}
.ls10_c00105{letter-spacing:5.009472px;}
.lsb_c00105{letter-spacing:5.136480px;}
.ls12_c00105{letter-spacing:5.149872px;}
.ls11_c00105{letter-spacing:5.335200px;}
.lsf_c00105{letter-spacing:5.406777px;}
.lse_c00105{letter-spacing:5.499398px;}
.ls19_c00105{letter-spacing:5.673744px;}
.ls1_c00105{letter-spacing:5.976000px;}
.ls0_c00105{letter-spacing:6.159301px;}
.lsc_c00105{letter-spacing:6.159920px;}
.ls17_c00105{letter-spacing:12.888432px;}
.sc__c00105{text-shadow:none;}
.sc1_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00105{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc1_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00105{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00105{word-spacing:-25.992000px;}
.ws9_c00105{word-spacing:-22.086864px;}
.ws0_c00105{word-spacing:-21.592374px;}
.ws3_c00105{word-spacing:-20.762352px;}
.ws1_c00105{word-spacing:-20.621952px;}
.ws4_c00105{word-spacing:-20.016000px;}
.ws7_c00105{word-spacing:-17.630284px;}
.ws8_c00105{word-spacing:-17.157024px;}
.ws5_c00105{word-spacing:-11.609280px;}
.ws6_c00105{word-spacing:-10.008000px;}
.wsa_c00105{word-spacing:0.000000px;}
._10_c00105{margin-left:-13.520160px;}
._f_c00105{margin-left:-12.339360px;}
._e_c00105{margin-left:-1.176120px;}
._0_c00105{width:1.120200px;}
._3_c00105{width:2.399400px;}
._7_c00105{width:3.457800px;}
._12_c00105{width:4.465080px;}
._8_c00105{width:5.532144px;}
._1_c00105{width:6.629928px;}
._b_c00105{width:8.346072px;}
._c_c00105{width:10.368000px;}
._11_c00105{width:11.806536px;}
._d_c00105{width:13.104000px;}
._5_c00105{width:14.400000px;}
._a_c00105{width:15.729541px;}
._4_c00105{width:18.432000px;}
._9_c00105{width:22.464000px;}
._2_c00105{width:30.096000px;}
._6_c00105{width:45.000000px;}
.fc0_c00105{color:rgb(0,0,0);}
.fs5_c00105{font-size:36.000000px;}
.fs4_c00105{font-size:41.760000px;}
.fs3_c00105{font-size:56.160000px;}
.fs2_c00105{font-size:57.888403px;}
.fs6_c00105{font-size:59.040000px;}
.fs8_c00105{font-size:60.000000px;}
.fs7_c00105{font-size:60.857039px;}
.fs0_c00105{font-size:72.000000px;}
.fs1_c00105{font-size:74.215901px;}
.y0_c00105{bottom:0.000000px;}
.y32_c00105{bottom:3.120150px;}
.y31_c00105{bottom:34.744500px;}
.y1_c00105{bottom:54.000000px;}
.y2f_c00105{bottom:55.481040px;}
.y30_c00105{bottom:55.485000px;}
.y2e_c00105{bottom:78.885000px;}
.y2d_c00105{bottom:90.405000px;}
.y2c_c00105{bottom:96.525000px;}
.y2b_c00105{bottom:107.686440px;}
.y2a_c00105{bottom:125.324640px;}
.y29_c00105{bottom:142.962840px;}
.y28_c00105{bottom:160.246800px;}
.y26_c00105{bottom:177.882840px;}
.y27_c00105{bottom:177.885000px;}
.y25_c00105{bottom:195.521040px;}
.y24_c00105{bottom:218.925000px;}
.y23_c00105{bottom:236.565000px;}
.y22_c00105{bottom:263.205000px;}
.y21_c00105{bottom:331.965000px;}
.y20_c00105{bottom:352.845000px;}
.y1f_c00105{bottom:388.845000px;}
.y1e_c00105{bottom:409.725000px;}
.y1d_c00105{bottom:430.965000px;}
.y1c_c00105{bottom:451.845000px;}
.y1b_c00105{bottom:487.845000px;}
.y1a_c00105{bottom:523.845000px;}
.y19_c00105{bottom:562.005000px;}
.y18_c00105{bottom:598.725000px;}
.y17_c00105{bottom:634.725000px;}
.y16_c00105{bottom:655.965000px;}
.y15_c00105{bottom:676.845000px;}
.y14_c00105{bottom:697.725000px;}
.y13_c00105{bottom:734.085000px;}
.y12_c00105{bottom:754.965000px;}
.y11_c00105{bottom:775.845000px;}
.y10_c00105{bottom:797.085000px;}
.yf_c00105{bottom:817.965000px;}
.ye_c00105{bottom:838.845000px;}
.yd_c00105{bottom:860.085000px;}
.yc_c00105{bottom:880.965000px;}
.yb_c00105{bottom:901.845000px;}
.ya_c00105{bottom:923.085000px;}
.y9_c00105{bottom:943.965000px;}
.y8_c00105{bottom:964.845000px;}
.y7_c00105{bottom:986.085000px;}
.y6_c00105{bottom:1006.965000px;}
.y5_c00105{bottom:1027.845000px;}
.y4_c00105{bottom:1049.085000px;}
.y3_c00105{bottom:1085.085000px;}
.y2_c00105{bottom:1138.365000px;}
.h9_c00105{height:19.255500px;}
.h6_c00105{height:32.616000px;}
.ha_c00105{height:46.320000px;}
.h8_c00105{height:46.981634px;}
.h7_c00105{height:53.490240px;}
.h4_c00105{height:57.294676px;}
.h3_c00105{height:65.232000px;}
.h5_c00105{height:68.074560px;}
.h2_c00105{height:1201.365000px;}
.h0_c00105{height:1262.835000px;}
.h1_c00105{height:1263.000000px;}
.w3_c00105{width:16.680000px;}
.w2_c00105{width:863.955000px;}
.w0_c00105{width:892.935000px;}
.w1_c00105{width:893.250000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:14.490000px;}
.x2_c00105{left:113.040150px;}
.xf_c00105{left:119.034000px;}
.x6_c00105{left:142.640550px;}
.x3_c00105{left:150.011700px;}
.x10_c00105{left:154.007100px;}
.x1a_c00105{left:181.898850px;}
.x1b_c00105{left:186.039900px;}
.x1f_c00105{left:188.061000px;}
.x5_c00105{left:192.395100px;}
.x13_c00105{left:206.811750px;}
.x4_c00105{left:220.480650px;}
.x20_c00105{left:233.900100px;}
.x1c_c00105{left:236.048550px;}
.x16_c00105{left:244.509600px;}
.x14_c00105{left:266.822700px;}
.x11_c00105{left:271.040850px;}
.x21_c00105{left:273.483750px;}
.x18_c00105{left:296.559000px;}
.x17_c00105{left:304.520550px;}
.x12_c00105{left:313.987800px;}
.xb_c00105{left:326.480700px;}
.x19_c00105{left:356.570100px;}
.x7_c00105{left:397.723050px;}
.x15_c00105{left:416.478150px;}
.x22_c00105{left:455.982450px;}
.x8_c00105{left:457.734000px;}
.xc_c00105{left:473.331300px;}
.x1d_c00105{left:490.216200px;}
.x23_c00105{left:493.921950px;}
.x9_c00105{left:503.975400px;}
.x1e_c00105{left:510.210600px;}
.x24_c00105{left:513.915900px;}
.xd_c00105{left:536.077500px;}
.xe_c00105{left:571.069050px;}
.xa_c00105{left:704.788350px;}
.x25_c00105{left:768.255000px;}
@media print{
.v2_c00105{vertical-align:-21.760000pt;}
.v0_c00105{vertical-align:0.000000pt;}
.v1_c00105{vertical-align:26.880000pt;}
.lsd_c00105{letter-spacing:0.000000pt;}
.ls2_c00105{letter-spacing:0.051413pt;}
.ls3_c00105{letter-spacing:0.089280pt;}
.ls4_c00105{letter-spacing:0.215147pt;}
.ls13_c00105{letter-spacing:0.236160pt;}
.ls7_c00105{letter-spacing:0.262400pt;}
.ls16_c00105{letter-spacing:0.377856pt;}
.ls1b_c00105{letter-spacing:0.389485pt;}
.ls1a_c00105{letter-spacing:0.438171pt;}
.ls9_c00105{letter-spacing:0.456576pt;}
.ls8_c00105{letter-spacing:0.472320pt;}
.ls14_c00105{letter-spacing:0.519552pt;}
.lsa_c00105{letter-spacing:0.535542pt;}
.ls1c_c00105{letter-spacing:0.614016pt;}
.ls6_c00105{letter-spacing:0.632913pt;}
.ls18_c00105{letter-spacing:0.661248pt;}
.ls15_c00105{letter-spacing:0.708480pt;}
.ls5_c00105{letter-spacing:1.941760pt;}
.ls10_c00105{letter-spacing:4.452864pt;}
.lsb_c00105{letter-spacing:4.565760pt;}
.ls12_c00105{letter-spacing:4.577664pt;}
.ls11_c00105{letter-spacing:4.742400pt;}
.lsf_c00105{letter-spacing:4.806024pt;}
.lse_c00105{letter-spacing:4.888354pt;}
.ls19_c00105{letter-spacing:5.043328pt;}
.ls1_c00105{letter-spacing:5.312000pt;}
.ls0_c00105{letter-spacing:5.474935pt;}
.lsc_c00105{letter-spacing:5.475484pt;}
.ls17_c00105{letter-spacing:11.456384pt;}
.ws2_c00105{word-spacing:-23.104000pt;}
.ws9_c00105{word-spacing:-19.632768pt;}
.ws0_c00105{word-spacing:-19.193222pt;}
.ws3_c00105{word-spacing:-18.455424pt;}
.ws1_c00105{word-spacing:-18.330624pt;}
.ws4_c00105{word-spacing:-17.792000pt;}
.ws7_c00105{word-spacing:-15.671364pt;}
.ws8_c00105{word-spacing:-15.250688pt;}
.ws5_c00105{word-spacing:-10.319360pt;}
.ws6_c00105{word-spacing:-8.896000pt;}
.wsa_c00105{word-spacing:0.000000pt;}
._10_c00105{margin-left:-12.017920pt;}
._f_c00105{margin-left:-10.968320pt;}
._e_c00105{margin-left:-1.045440pt;}
._0_c00105{width:0.995733pt;}
._3_c00105{width:2.132800pt;}
._7_c00105{width:3.073600pt;}
._12_c00105{width:3.968960pt;}
._8_c00105{width:4.917461pt;}
._1_c00105{width:5.893269pt;}
._b_c00105{width:7.418731pt;}
._c_c00105{width:9.216000pt;}
._11_c00105{width:10.494699pt;}
._d_c00105{width:11.648000pt;}
._5_c00105{width:12.800000pt;}
._a_c00105{width:13.981814pt;}
._4_c00105{width:16.384000pt;}
._9_c00105{width:19.968000pt;}
._2_c00105{width:26.752000pt;}
._6_c00105{width:40.000000pt;}
.fs5_c00105{font-size:32.000000pt;}
.fs4_c00105{font-size:37.120000pt;}
.fs3_c00105{font-size:49.920000pt;}
.fs2_c00105{font-size:51.456358pt;}
.fs6_c00105{font-size:52.480000pt;}
.fs8_c00105{font-size:53.333333pt;}
.fs7_c00105{font-size:54.095146pt;}
.fs0_c00105{font-size:64.000000pt;}
.fs1_c00105{font-size:65.969690pt;}
.y0_c00105{bottom:0.000000pt;}
.y32_c00105{bottom:2.773467pt;}
.y31_c00105{bottom:30.884000pt;}
.y1_c00105{bottom:48.000000pt;}
.y2f_c00105{bottom:49.316480pt;}
.y30_c00105{bottom:49.320000pt;}
.y2e_c00105{bottom:70.120000pt;}
.y2d_c00105{bottom:80.360000pt;}
.y2c_c00105{bottom:85.800000pt;}
.y2b_c00105{bottom:95.721280pt;}
.y2a_c00105{bottom:111.399680pt;}
.y29_c00105{bottom:127.078080pt;}
.y28_c00105{bottom:142.441600pt;}
.y26_c00105{bottom:158.118080pt;}
.y27_c00105{bottom:158.120000pt;}
.y25_c00105{bottom:173.796480pt;}
.y24_c00105{bottom:194.600000pt;}
.y23_c00105{bottom:210.280000pt;}
.y22_c00105{bottom:233.960000pt;}
.y21_c00105{bottom:295.080000pt;}
.y20_c00105{bottom:313.640000pt;}
.y1f_c00105{bottom:345.640000pt;}
.y1e_c00105{bottom:364.200000pt;}
.y1d_c00105{bottom:383.080000pt;}
.y1c_c00105{bottom:401.640000pt;}
.y1b_c00105{bottom:433.640000pt;}
.y1a_c00105{bottom:465.640000pt;}
.y19_c00105{bottom:499.560000pt;}
.y18_c00105{bottom:532.200000pt;}
.y17_c00105{bottom:564.200000pt;}
.y16_c00105{bottom:583.080000pt;}
.y15_c00105{bottom:601.640000pt;}
.y14_c00105{bottom:620.200000pt;}
.y13_c00105{bottom:652.520000pt;}
.y12_c00105{bottom:671.080000pt;}
.y11_c00105{bottom:689.640000pt;}
.y10_c00105{bottom:708.520000pt;}
.yf_c00105{bottom:727.080000pt;}
.ye_c00105{bottom:745.640000pt;}
.yd_c00105{bottom:764.520000pt;}
.yc_c00105{bottom:783.080000pt;}
.yb_c00105{bottom:801.640000pt;}
.ya_c00105{bottom:820.520000pt;}
.y9_c00105{bottom:839.080000pt;}
.y8_c00105{bottom:857.640000pt;}
.y7_c00105{bottom:876.520000pt;}
.y6_c00105{bottom:895.080000pt;}
.y5_c00105{bottom:913.640000pt;}
.y4_c00105{bottom:932.520000pt;}
.y3_c00105{bottom:964.520000pt;}
.y2_c00105{bottom:1011.880000pt;}
.h9_c00105{height:17.116000pt;}
.h6_c00105{height:28.992000pt;}
.ha_c00105{height:41.173333pt;}
.h8_c00105{height:41.761453pt;}
.h7_c00105{height:47.546880pt;}
.h4_c00105{height:50.928601pt;}
.h3_c00105{height:57.984000pt;}
.h5_c00105{height:60.510720pt;}
.h2_c00105{height:1067.880000pt;}
.h0_c00105{height:1122.520000pt;}
.h1_c00105{height:1122.666667pt;}
.w3_c00105{width:14.826667pt;}
.w2_c00105{width:767.960000pt;}
.w0_c00105{width:793.720000pt;}
.w1_c00105{width:794.000000pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:12.880000pt;}
.x2_c00105{left:100.480133pt;}
.xf_c00105{left:105.808000pt;}
.x6_c00105{left:126.791600pt;}
.x3_c00105{left:133.343733pt;}
.x10_c00105{left:136.895200pt;}
.x1a_c00105{left:161.687867pt;}
.x1b_c00105{left:165.368800pt;}
.x1f_c00105{left:167.165333pt;}
.x5_c00105{left:171.017867pt;}
.x13_c00105{left:183.832667pt;}
.x4_c00105{left:195.982800pt;}
.x20_c00105{left:207.911200pt;}
.x1c_c00105{left:209.820933pt;}
.x16_c00105{left:217.341867pt;}
.x14_c00105{left:237.175733pt;}
.x11_c00105{left:240.925200pt;}
.x21_c00105{left:243.096667pt;}
.x18_c00105{left:263.608000pt;}
.x17_c00105{left:270.684933pt;}
.x12_c00105{left:279.100267pt;}
.xb_c00105{left:290.205067pt;}
.x19_c00105{left:316.951200pt;}
.x7_c00105{left:353.531600pt;}
.x15_c00105{left:370.202800pt;}
.x22_c00105{left:405.317733pt;}
.x8_c00105{left:406.874667pt;}
.xc_c00105{left:420.738933pt;}
.x1d_c00105{left:435.747733pt;}
.x23_c00105{left:439.041733pt;}
.x9_c00105{left:447.978133pt;}
.x1e_c00105{left:453.520533pt;}
.x24_c00105{left:456.814133pt;}
.xd_c00105{left:476.513333pt;}
.xe_c00105{left:507.616933pt;}
.xa_c00105{left:626.478533pt;}
.x25_c00105{left:682.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_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_4e097ef26c08e02b9cc6eb6b.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.134000;font-style:normal;font-weight:normal;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_c5b0629fae90d2dd40ac39a8.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;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:ff3_c00106;src:url('chunks/assets/font_2fd87258c5d93e91cca0fc19.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_304819c9075bff775a03b00f.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:0.787000;font-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_c00106{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00106{vertical-align:-30.240000px;}
.v3_c00106{vertical-align:-24.480000px;}
.v0_c00106{vertical-align:0.000000px;}
.v1_c00106{vertical-align:30.240000px;}
.ls17_c00106{letter-spacing:-0.179568px;}
.ls14_c00106{letter-spacing:0.000000px;}
.ls5_c00106{letter-spacing:0.073800px;}
.ls2a_c00106{letter-spacing:0.144000px;}
.ls18_c00106{letter-spacing:0.265680px;}
.ls12_c00106{letter-spacing:0.273857px;}
.ls4_c00106{letter-spacing:0.281040px;}
.ls6_c00106{letter-spacing:0.295200px;}
.ls11_c00106{letter-spacing:0.318816px;}
.ls29_c00106{letter-spacing:0.328628px;}
.ls1c_c00106{letter-spacing:0.371952px;}
.ls3_c00106{letter-spacing:0.421440px;}
.ls20_c00106{letter-spacing:0.425088px;}
.ls1d_c00106{letter-spacing:0.438171px;}
.ls22_c00106{letter-spacing:0.478224px;}
.lsa_c00106{letter-spacing:0.492942px;}
.ls7_c00106{letter-spacing:0.531360px;}
.ls9_c00106{letter-spacing:0.602485px;}
.ls30_c00106{letter-spacing:0.690768px;}
.ls1b_c00106{letter-spacing:0.712027px;}
.ls1e_c00106{letter-spacing:0.743904px;}
.ls2_c00106{letter-spacing:0.764640px;}
.ls19_c00106{letter-spacing:0.766799px;}
.ls2f_c00106{letter-spacing:0.821570px;}
.ls8_c00106{letter-spacing:0.991970px;}
.ls25_c00106{letter-spacing:1.535040px;}
.ls2e_c00106{letter-spacing:2.343888px;}
.ls1f_c00106{letter-spacing:2.568240px;}
.ls31_c00106{letter-spacing:3.005136px;}
.lsd_c00106{letter-spacing:3.011040px;}
.ls2b_c00106{letter-spacing:4.481136px;}
.ls21_c00106{letter-spacing:5.106960px;}
.lsc_c00106{letter-spacing:5.248656px;}
.ls23_c00106{letter-spacing:5.295888px;}
.ls2d_c00106{letter-spacing:5.301792px;}
.ls10_c00106{letter-spacing:5.337216px;}
.ls26_c00106{letter-spacing:5.354928px;}
.lsb_c00106{letter-spacing:5.372640px;}
.ls32_c00106{letter-spacing:5.461200px;}
.ls2c_c00106{letter-spacing:5.514336px;}
.ls28_c00106{letter-spacing:5.673744px;}
.ls0_c00106{letter-spacing:5.976000px;}
.ls13_c00106{letter-spacing:6.159920px;}
.ls16_c00106{letter-spacing:6.530400px;}
.ls15_c00106{letter-spacing:6.832800px;}
.lse_c00106{letter-spacing:7.320960px;}
.lsf_c00106{letter-spacing:7.332768px;}
.ls1a_c00106{letter-spacing:8.041248px;}
.ls1_c00106{letter-spacing:12.960000px;}
.ls27_c00106{letter-spacing:18.225648px;}
.ls24_c00106{letter-spacing:18.444096px;}
.sc__c00106{text-shadow:none;}
.sc1_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00106{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc1_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00106{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb_c00106{word-spacing:-22.086864px;}
.wse_c00106{word-spacing:-21.927456px;}
.ws10_c00106{word-spacing:-21.874320px;}
.ws8_c00106{word-spacing:-21.768048px;}
.wsf_c00106{word-spacing:-21.714912px;}
.ws6_c00106{word-spacing:-21.709008px;}
.ws9_c00106{word-spacing:-17.910227px;}
.ws3_c00106{word-spacing:-17.685056px;}
.ws4_c00106{word-spacing:-17.630284px;}
.wsa_c00106{word-spacing:-17.411199px;}
.wsc_c00106{word-spacing:-17.246885px;}
.ws5_c00106{word-spacing:-16.944480px;}
.ws7_c00106{word-spacing:-16.731936px;}
.ws0_c00106{word-spacing:-11.609280px;}
.ws1_c00106{word-spacing:-11.429712px;}
.wsd_c00106{word-spacing:-10.152000px;}
.ws2_c00106{word-spacing:-10.008000px;}
.ws11_c00106{word-spacing:0.000000px;}
._15_c00106{margin-left:-18.507456px;}
._16_c00106{margin-left:-17.270784px;}
._11_c00106{margin-left:-8.442720px;}
._10_c00106{margin-left:-7.439040px;}
._12_c00106{margin-left:-6.376320px;}
._14_c00106{margin-left:-4.546080px;}
._13_c00106{margin-left:-2.988000px;}
._5_c00106{margin-left:-1.836000px;}
._4_c00106{width:1.728000px;}
._3_c00106{width:2.880000px;}
._a_c00106{width:4.032000px;}
._0_c00106{width:5.328000px;}
._c_c00106{width:6.552000px;}
._1_c00106{width:8.424000px;}
._7_c00106{width:10.008000px;}
._6_c00106{width:12.960000px;}
._e_c00106{width:13.968000px;}
._19_c00106{width:15.763680px;}
._2_c00106{width:17.136000px;}
._f_c00106{width:18.288000px;}
._18_c00106{width:19.778400px;}
._17_c00106{width:20.959200px;}
._d_c00106{width:23.400000px;}
._9_c00106{width:24.480000px;}
._b_c00106{width:25.776000px;}
._8_c00106{width:33.912000px;}
.fc0_c00106{color:rgb(0,0,0);}
.fs3_c00106{font-size:36.000000px;}
.fs2_c00106{font-size:41.760000px;}
.fs4_c00106{font-size:59.040000px;}
.fs6_c00106{font-size:60.000000px;}
.fs5_c00106{font-size:60.857039px;}
.fs0_c00106{font-size:72.000000px;}
.fs1_c00106{font-size:74.215901px;}
.y0_c00106{bottom:0.000000px;}
.y43_c00106{bottom:3.120150px;}
.y42_c00106{bottom:34.744500px;}
.y1_c00106{bottom:54.000000px;}
.y40_c00106{bottom:55.481040px;}
.y41_c00106{bottom:55.485000px;}
.y3f_c00106{bottom:72.765000px;}
.y3e_c00106{bottom:72.766080px;}
.y3d_c00106{bottom:90.404280px;}
.y3c_c00106{bottom:107.688240px;}
.y3b_c00106{bottom:125.326440px;}
.y3a_c00106{bottom:142.964640px;}
.y39_c00106{bottom:160.248600px;}
.y38_c00106{bottom:177.886800px;}
.y36_c00106{bottom:195.522840px;}
.y37_c00106{bottom:195.525000px;}
.y35_c00106{bottom:212.806800px;}
.y33_c00106{bottom:230.444640px;}
.y34_c00106{bottom:230.445000px;}
.y32_c00106{bottom:247.728600px;}
.y31_c00106{bottom:265.366800px;}
.y30_c00106{bottom:289.125000px;}
.y2f_c00106{bottom:300.285000px;}
.y2e_c00106{bottom:300.286800px;}
.y2c_c00106{bottom:317.922840px;}
.y2d_c00106{bottom:317.925000px;}
.y2b_c00106{bottom:335.561040px;}
.y2a_c00106{bottom:352.845000px;}
.y29_c00106{bottom:358.965000px;}
.y28_c00106{bottom:370.482840px;}
.y27_c00106{bottom:387.766800px;}
.y26_c00106{bottom:405.405000px;}
.y25_c00106{bottom:405.406800px;}
.y24_c00106{bottom:429.165000px;}
.y23_c00106{bottom:440.328600px;}
.y22_c00106{bottom:457.966800px;}
.y21_c00106{bottom:481.725000px;}
.y1f_c00106{bottom:492.882840px;}
.y20_c00106{bottom:492.885000px;}
.y1e_c00106{bottom:510.521040px;}
.y1d_c00106{bottom:527.805000px;}
.y1c_c00106{bottom:533.925000px;}
.y1b_c00106{bottom:545.445000px;}
.y1a_c00106{bottom:551.565000px;}
.y19_c00106{bottom:578.205000px;}
.y18_c00106{bottom:619.965000px;}
.y16_c00106{bottom:640.845000px;}
.y17_c00106{bottom:648.405000px;}
.y15_c00106{bottom:661.725000px;}
.y14_c00106{bottom:682.965000px;}
.y13_c00106{bottom:703.845000px;}
.y12_c00106{bottom:739.845000px;}
.y11_c00106{bottom:761.085000px;}
.y10_c00106{bottom:781.965000px;}
.yf_c00106{bottom:802.845000px;}
.ye_c00106{bottom:824.085000px;}
.yd_c00106{bottom:844.965000px;}
.yc_c00106{bottom:865.845000px;}
.yb_c00106{bottom:901.845000px;}
.ya_c00106{bottom:923.085000px;}
.y9_c00106{bottom:943.965000px;}
.y8_c00106{bottom:964.845000px;}
.y7_c00106{bottom:986.085000px;}
.y6_c00106{bottom:1006.965000px;}
.y5_c00106{bottom:1027.845000px;}
.y4_c00106{bottom:1063.845000px;}
.y3_c00106{bottom:1085.085000px;}
.y2_c00106{bottom:1138.365000px;}
.ha_c00106{height:19.255500px;}
.h7_c00106{height:32.616000px;}
.h6_c00106{height:37.834560px;}
.hb_c00106{height:46.320000px;}
.h8_c00106{height:46.981634px;}
.h9_c00106{height:53.490240px;}
.h4_c00106{height:57.294676px;}
.h3_c00106{height:65.232000px;}
.h5_c00106{height:68.074560px;}
.h2_c00106{height:1201.365000px;}
.h0_c00106{height:1262.835000px;}
.h1_c00106{height:1263.000000px;}
.w3_c00106{width:16.680000px;}
.w2_c00106{width:863.955000px;}
.w0_c00106{width:892.935000px;}
.w1_c00106{width:893.250000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:14.490000px;}
.x2_c00106{left:113.040150px;}
.xf_c00106{left:119.034000px;}
.x16_c00106{left:147.777150px;}
.x3_c00106{left:150.011700px;}
.xe_c00106{left:172.043400px;}
.x2b_c00106{left:178.033500px;}
.x10_c00106{left:194.021100px;}
.x17_c00106{left:197.785800px;}
.x4_c00106{left:220.480650px;}
.x2e_c00106{left:236.381400px;}
.x18_c00106{left:239.726100px;}
.x19_c00106{left:259.720050px;}
.xb_c00106{left:262.816050px;}
.xc_c00106{left:271.816050px;}
.x24_c00106{left:290.559450px;}
.x11_c00106{left:291.960000px;}
.x14_c00106{left:319.697700px;}
.x25_c00106{left:328.058700px;}
.x1e_c00106{left:334.360500px;}
.x26_c00106{left:338.888250px;}
.x15_c00106{left:368.041650px;}
.x1f_c00106{left:371.859750px;}
.x12_c00106{left:414.307200px;}
.x29_c00106{left:448.462950px;}
.x13_c00106{left:494.297550px;}
.x2a_c00106{left:514.296450px;}
.x5_c00106{left:517.345050px;}
.x6_c00106{left:526.345050px;}
.x20_c00106{left:534.817800px;}
.x7_c00106{left:545.631600px;}
.x8_c00106{left:556.629300px;}
.x9_c00106{left:566.776200px;}
.x1a_c00106{left:567.920700px;}
.x27_c00106{left:578.896050px;}
.x28_c00106{left:598.890000px;}
.x1b_c00106{left:608.964150px;}
.x21_c00106{left:619.835400px;}
.x22_c00106{left:633.489300px;}
.x1c_c00106{left:640.528950px;}
.xa_c00106{left:649.097100px;}
.x1d_c00106{left:677.203500px;}
.x23_c00106{left:683.817600px;}
.x2c_c00106{left:694.070100px;}
.x2d_c00106{left:715.831050px;}
.xd_c00106{left:720.366600px;}
.x2f_c00106{left:768.255000px;}
@media print{
.v2_c00106{vertical-align:-26.880000pt;}
.v3_c00106{vertical-align:-21.760000pt;}
.v0_c00106{vertical-align:0.000000pt;}
.v1_c00106{vertical-align:26.880000pt;}
.ls17_c00106{letter-spacing:-0.159616pt;}
.ls14_c00106{letter-spacing:0.000000pt;}
.ls5_c00106{letter-spacing:0.065600pt;}
.ls2a_c00106{letter-spacing:0.128000pt;}
.ls18_c00106{letter-spacing:0.236160pt;}
.ls12_c00106{letter-spacing:0.243428pt;}
.ls4_c00106{letter-spacing:0.249813pt;}
.ls6_c00106{letter-spacing:0.262400pt;}
.ls11_c00106{letter-spacing:0.283392pt;}
.ls29_c00106{letter-spacing:0.292114pt;}
.ls1c_c00106{letter-spacing:0.330624pt;}
.ls3_c00106{letter-spacing:0.374613pt;}
.ls20_c00106{letter-spacing:0.377856pt;}
.ls1d_c00106{letter-spacing:0.389485pt;}
.ls22_c00106{letter-spacing:0.425088pt;}
.lsa_c00106{letter-spacing:0.438171pt;}
.ls7_c00106{letter-spacing:0.472320pt;}
.ls9_c00106{letter-spacing:0.535542pt;}
.ls30_c00106{letter-spacing:0.614016pt;}
.ls1b_c00106{letter-spacing:0.632913pt;}
.ls1e_c00106{letter-spacing:0.661248pt;}
.ls2_c00106{letter-spacing:0.679680pt;}
.ls19_c00106{letter-spacing:0.681599pt;}
.ls2f_c00106{letter-spacing:0.730284pt;}
.ls8_c00106{letter-spacing:0.881751pt;}
.ls25_c00106{letter-spacing:1.364480pt;}
.ls2e_c00106{letter-spacing:2.083456pt;}
.ls1f_c00106{letter-spacing:2.282880pt;}
.ls31_c00106{letter-spacing:2.671232pt;}
.lsd_c00106{letter-spacing:2.676480pt;}
.ls2b_c00106{letter-spacing:3.983232pt;}
.ls21_c00106{letter-spacing:4.539520pt;}
.lsc_c00106{letter-spacing:4.665472pt;}
.ls23_c00106{letter-spacing:4.707456pt;}
.ls2d_c00106{letter-spacing:4.712704pt;}
.ls10_c00106{letter-spacing:4.744192pt;}
.ls26_c00106{letter-spacing:4.759936pt;}
.lsb_c00106{letter-spacing:4.775680pt;}
.ls32_c00106{letter-spacing:4.854400pt;}
.ls2c_c00106{letter-spacing:4.901632pt;}
.ls28_c00106{letter-spacing:5.043328pt;}
.ls0_c00106{letter-spacing:5.312000pt;}
.ls13_c00106{letter-spacing:5.475484pt;}
.ls16_c00106{letter-spacing:5.804800pt;}
.ls15_c00106{letter-spacing:6.073600pt;}
.lse_c00106{letter-spacing:6.507520pt;}
.lsf_c00106{letter-spacing:6.518016pt;}
.ls1a_c00106{letter-spacing:7.147776pt;}
.ls1_c00106{letter-spacing:11.520000pt;}
.ls27_c00106{letter-spacing:16.200576pt;}
.ls24_c00106{letter-spacing:16.394752pt;}
.wsb_c00106{word-spacing:-19.632768pt;}
.wse_c00106{word-spacing:-19.491072pt;}
.ws10_c00106{word-spacing:-19.443840pt;}
.ws8_c00106{word-spacing:-19.349376pt;}
.wsf_c00106{word-spacing:-19.302144pt;}
.ws6_c00106{word-spacing:-19.296896pt;}
.ws9_c00106{word-spacing:-15.920201pt;}
.ws3_c00106{word-spacing:-15.720049pt;}
.ws4_c00106{word-spacing:-15.671364pt;}
.wsa_c00106{word-spacing:-15.476621pt;}
.wsc_c00106{word-spacing:-15.330564pt;}
.ws5_c00106{word-spacing:-15.061760pt;}
.ws7_c00106{word-spacing:-14.872832pt;}
.ws0_c00106{word-spacing:-10.319360pt;}
.ws1_c00106{word-spacing:-10.159744pt;}
.wsd_c00106{word-spacing:-9.024000pt;}
.ws2_c00106{word-spacing:-8.896000pt;}
.ws11_c00106{word-spacing:0.000000pt;}
._15_c00106{margin-left:-16.451072pt;}
._16_c00106{margin-left:-15.351808pt;}
._11_c00106{margin-left:-7.504640pt;}
._10_c00106{margin-left:-6.612480pt;}
._12_c00106{margin-left:-5.667840pt;}
._14_c00106{margin-left:-4.040960pt;}
._13_c00106{margin-left:-2.656000pt;}
._5_c00106{margin-left:-1.632000pt;}
._4_c00106{width:1.536000pt;}
._3_c00106{width:2.560000pt;}
._a_c00106{width:3.584000pt;}
._0_c00106{width:4.736000pt;}
._c_c00106{width:5.824000pt;}
._1_c00106{width:7.488000pt;}
._7_c00106{width:8.896000pt;}
._6_c00106{width:11.520000pt;}
._e_c00106{width:12.416000pt;}
._19_c00106{width:14.012160pt;}
._2_c00106{width:15.232000pt;}
._f_c00106{width:16.256000pt;}
._18_c00106{width:17.580800pt;}
._17_c00106{width:18.630400pt;}
._d_c00106{width:20.800000pt;}
._9_c00106{width:21.760000pt;}
._b_c00106{width:22.912000pt;}
._8_c00106{width:30.144000pt;}
.fs3_c00106{font-size:32.000000pt;}
.fs2_c00106{font-size:37.120000pt;}
.fs4_c00106{font-size:52.480000pt;}
.fs6_c00106{font-size:53.333333pt;}
.fs5_c00106{font-size:54.095146pt;}
.fs0_c00106{font-size:64.000000pt;}
.fs1_c00106{font-size:65.969690pt;}
.y0_c00106{bottom:0.000000pt;}
.y43_c00106{bottom:2.773467pt;}
.y42_c00106{bottom:30.884000pt;}
.y1_c00106{bottom:48.000000pt;}
.y40_c00106{bottom:49.316480pt;}
.y41_c00106{bottom:49.320000pt;}
.y3f_c00106{bottom:64.680000pt;}
.y3e_c00106{bottom:64.680960pt;}
.y3d_c00106{bottom:80.359360pt;}
.y3c_c00106{bottom:95.722880pt;}
.y3b_c00106{bottom:111.401280pt;}
.y3a_c00106{bottom:127.079680pt;}
.y39_c00106{bottom:142.443200pt;}
.y38_c00106{bottom:158.121600pt;}
.y36_c00106{bottom:173.798080pt;}
.y37_c00106{bottom:173.800000pt;}
.y35_c00106{bottom:189.161600pt;}
.y33_c00106{bottom:204.839680pt;}
.y34_c00106{bottom:204.840000pt;}
.y32_c00106{bottom:220.203200pt;}
.y31_c00106{bottom:235.881600pt;}
.y30_c00106{bottom:257.000000pt;}
.y2f_c00106{bottom:266.920000pt;}
.y2e_c00106{bottom:266.921600pt;}
.y2c_c00106{bottom:282.598080pt;}
.y2d_c00106{bottom:282.600000pt;}
.y2b_c00106{bottom:298.276480pt;}
.y2a_c00106{bottom:313.640000pt;}
.y29_c00106{bottom:319.080000pt;}
.y28_c00106{bottom:329.318080pt;}
.y27_c00106{bottom:344.681600pt;}
.y26_c00106{bottom:360.360000pt;}
.y25_c00106{bottom:360.361600pt;}
.y24_c00106{bottom:381.480000pt;}
.y23_c00106{bottom:391.403200pt;}
.y22_c00106{bottom:407.081600pt;}
.y21_c00106{bottom:428.200000pt;}
.y1f_c00106{bottom:438.118080pt;}
.y20_c00106{bottom:438.120000pt;}
.y1e_c00106{bottom:453.796480pt;}
.y1d_c00106{bottom:469.160000pt;}
.y1c_c00106{bottom:474.600000pt;}
.y1b_c00106{bottom:484.840000pt;}
.y1a_c00106{bottom:490.280000pt;}
.y19_c00106{bottom:513.960000pt;}
.y18_c00106{bottom:551.080000pt;}
.y16_c00106{bottom:569.640000pt;}
.y17_c00106{bottom:576.360000pt;}
.y15_c00106{bottom:588.200000pt;}
.y14_c00106{bottom:607.080000pt;}
.y13_c00106{bottom:625.640000pt;}
.y12_c00106{bottom:657.640000pt;}
.y11_c00106{bottom:676.520000pt;}
.y10_c00106{bottom:695.080000pt;}
.yf_c00106{bottom:713.640000pt;}
.ye_c00106{bottom:732.520000pt;}
.yd_c00106{bottom:751.080000pt;}
.yc_c00106{bottom:769.640000pt;}
.yb_c00106{bottom:801.640000pt;}
.ya_c00106{bottom:820.520000pt;}
.y9_c00106{bottom:839.080000pt;}
.y8_c00106{bottom:857.640000pt;}
.y7_c00106{bottom:876.520000pt;}
.y6_c00106{bottom:895.080000pt;}
.y5_c00106{bottom:913.640000pt;}
.y4_c00106{bottom:945.640000pt;}
.y3_c00106{bottom:964.520000pt;}
.y2_c00106{bottom:1011.880000pt;}
.ha_c00106{height:17.116000pt;}
.h7_c00106{height:28.992000pt;}
.h6_c00106{height:33.630720pt;}
.hb_c00106{height:41.173333pt;}
.h8_c00106{height:41.761453pt;}
.h9_c00106{height:47.546880pt;}
.h4_c00106{height:50.928601pt;}
.h3_c00106{height:57.984000pt;}
.h5_c00106{height:60.510720pt;}
.h2_c00106{height:1067.880000pt;}
.h0_c00106{height:1122.520000pt;}
.h1_c00106{height:1122.666667pt;}
.w3_c00106{width:14.826667pt;}
.w2_c00106{width:767.960000pt;}
.w0_c00106{width:793.720000pt;}
.w1_c00106{width:794.000000pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:12.880000pt;}
.x2_c00106{left:100.480133pt;}
.xf_c00106{left:105.808000pt;}
.x16_c00106{left:131.357467pt;}
.x3_c00106{left:133.343733pt;}
.xe_c00106{left:152.927467pt;}
.x2b_c00106{left:158.252000pt;}
.x10_c00106{left:172.463200pt;}
.x17_c00106{left:175.809600pt;}
.x4_c00106{left:195.982800pt;}
.x2e_c00106{left:210.116800pt;}
.x18_c00106{left:213.089867pt;}
.x19_c00106{left:230.862267pt;}
.xb_c00106{left:233.614267pt;}
.xc_c00106{left:241.614267pt;}
.x24_c00106{left:258.275067pt;}
.x11_c00106{left:259.520000pt;}
.x14_c00106{left:284.175733pt;}
.x25_c00106{left:291.607733pt;}
.x1e_c00106{left:297.209333pt;}
.x26_c00106{left:301.234000pt;}
.x15_c00106{left:327.148133pt;}
.x1f_c00106{left:330.542000pt;}
.x12_c00106{left:368.273067pt;}
.x29_c00106{left:398.633733pt;}
.x13_c00106{left:439.375600pt;}
.x2a_c00106{left:457.152400pt;}
.x5_c00106{left:459.862267pt;}
.x6_c00106{left:467.862267pt;}
.x20_c00106{left:475.393600pt;}
.x7_c00106{left:485.005867pt;}
.x8_c00106{left:494.781600pt;}
.x9_c00106{left:503.801067pt;}
.x1a_c00106{left:504.818400pt;}
.x27_c00106{left:514.574267pt;}
.x28_c00106{left:532.346667pt;}
.x1b_c00106{left:541.301467pt;}
.x21_c00106{left:550.964800pt;}
.x22_c00106{left:563.101600pt;}
.x1c_c00106{left:569.359067pt;}
.xa_c00106{left:576.975200pt;}
.x1d_c00106{left:601.958667pt;}
.x23_c00106{left:607.837867pt;}
.x2c_c00106{left:616.951200pt;}
.x2d_c00106{left:636.294267pt;}
.xd_c00106{left:640.325867pt;}
.x2f_c00106{left:682.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_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_17ae1170f4208cd9ef009b8c.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.134000;font-style:normal;font-weight:normal;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_d4c65022e754fbddf21b6858.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;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:ff3_c00107;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00107;src:url('chunks/assets/font_753d9b35511d8420477eccec.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:0.787000;font-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_c00107{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00107{vertical-align:-24.480000px;}
.v0_c00107{vertical-align:0.000000px;}
.v1_c00107{vertical-align:30.240000px;}
.ls6_c00107{letter-spacing:-0.179568px;}
.ls5_c00107{letter-spacing:0.000000px;}
.ls8_c00107{letter-spacing:0.144000px;}
.ls9_c00107{letter-spacing:0.265680px;}
.ls1_c00107{letter-spacing:0.295200px;}
.ls10_c00107{letter-spacing:0.425088px;}
.lsd_c00107{letter-spacing:0.438171px;}
.lsc_c00107{letter-spacing:0.478224px;}
.ls2_c00107{letter-spacing:0.531360px;}
.lse_c00107{letter-spacing:0.690768px;}
.lsa_c00107{letter-spacing:0.766799px;}
.lsb_c00107{letter-spacing:1.853856px;}
.ls11_c00107{letter-spacing:4.953456px;}
.ls7_c00107{letter-spacing:5.430672px;}
.ls0_c00107{letter-spacing:5.970000px;}
.ls3_c00107{letter-spacing:5.976000px;}
.ls4_c00107{letter-spacing:6.159920px;}
.lsf_c00107{letter-spacing:7.067088px;}
.sc__c00107{text-shadow:none;}
.sc1_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00107{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc1_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00107{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00107{word-spacing:-21.043152px;}
.ws4_c00107{word-spacing:-17.685056px;}
.ws3_c00107{word-spacing:-16.944480px;}
.ws0_c00107{word-spacing:-11.429712px;}
.ws2_c00107{word-spacing:-10.152000px;}
.ws5_c00107{word-spacing:0.000000px;}
._11_c00107{margin-left:-7.394400px;}
._10_c00107{margin-left:-6.369120px;}
._12_c00107{margin-left:-4.472280px;}
._f_c00107{margin-left:-1.283400px;}
._b_c00107{width:1.690416px;}
._8_c00107{width:2.736000px;}
._4_c00107{width:4.608000px;}
._c_c00107{width:6.192000px;}
._0_c00107{width:7.848000px;}
._2_c00107{width:9.000000px;}
._1_c00107{width:10.224000px;}
._7_c00107{width:11.232000px;}
._6_c00107{width:13.752000px;}
._e_c00107{width:14.760000px;}
._d_c00107{width:17.496000px;}
._9_c00107{width:18.864000px;}
._5_c00107{width:21.024000px;}
._a_c00107{width:22.176000px;}
._3_c00107{width:27.360000px;}
.fc0_c00107{color:rgb(0,0,0);}
.fs4_c00107{font-size:36.000000px;}
.fs2_c00107{font-size:41.760000px;}
.fs3_c00107{font-size:56.160000px;}
.fs5_c00107{font-size:59.040000px;}
.fs7_c00107{font-size:60.000000px;}
.fs6_c00107{font-size:60.857039px;}
.fs0_c00107{font-size:72.000000px;}
.fs1_c00107{font-size:74.215901px;}
.y0_c00107{bottom:0.000000px;}
.y2f_c00107{bottom:3.120150px;}
.y2e_c00107{bottom:34.744500px;}
.y1_c00107{bottom:54.000000px;}
.y2d_c00107{bottom:55.482840px;}
.y2c_c00107{bottom:72.766800px;}
.y2b_c00107{bottom:96.525000px;}
.y2a_c00107{bottom:107.686800px;}
.y29_c00107{bottom:125.325000px;}
.y28_c00107{bottom:131.445000px;}
.y27_c00107{bottom:149.085000px;}
.y26_c00107{bottom:175.725000px;}
.y25_c00107{bottom:220.725000px;}
.y24_c00107{bottom:249.165000px;}
.y23_c00107{bottom:277.965000px;}
.y22_c00107{bottom:306.405000px;}
.y21_c00107{bottom:334.845000px;}
.y20_c00107{bottom:363.285000px;}
.y1f_c00107{bottom:391.725000px;}
.y1e_c00107{bottom:420.165000px;}
.y1d_c00107{bottom:441.405000px;}
.y1c_c00107{bottom:462.285000px;}
.y1b_c00107{bottom:483.525000px;}
.y1a_c00107{bottom:511.965000px;}
.y19_c00107{bottom:532.845000px;}
.y18_c00107{bottom:553.725000px;}
.y17_c00107{bottom:574.965000px;}
.y16_c00107{bottom:595.845000px;}
.y15_c00107{bottom:616.725000px;}
.y14_c00107{bottom:637.965000px;}
.y13_c00107{bottom:673.965000px;}
.y12_c00107{bottom:694.845000px;}
.y11_c00107{bottom:730.845000px;}
.y10_c00107{bottom:766.845000px;}
.yf_c00107{bottom:802.845000px;}
.ye_c00107{bottom:824.085000px;}
.yd_c00107{bottom:844.965000px;}
.yc_c00107{bottom:880.965000px;}
.yb_c00107{bottom:901.845000px;}
.ya_c00107{bottom:923.085000px;}
.y9_c00107{bottom:943.965000px;}
.y8_c00107{bottom:964.845000px;}
.y7_c00107{bottom:986.085000px;}
.y6_c00107{bottom:1022.085000px;}
.y5_c00107{bottom:1042.965000px;}
.y4_c00107{bottom:1063.845000px;}
.y3_c00107{bottom:1085.085000px;}
.y2_c00107{bottom:1138.365000px;}
.ha_c00107{height:19.255500px;}
.h7_c00107{height:32.616000px;}
.hb_c00107{height:46.320000px;}
.h8_c00107{height:46.981634px;}
.h6_c00107{height:52.031250px;}
.h9_c00107{height:53.490240px;}
.h4_c00107{height:57.294676px;}
.h3_c00107{height:65.232000px;}
.h5_c00107{height:68.074560px;}
.h2_c00107{height:1201.365000px;}
.h0_c00107{height:1262.835000px;}
.h1_c00107{height:1263.000000px;}
.w3_c00107{width:16.680000px;}
.w2_c00107{width:863.955000px;}
.w0_c00107{width:892.935000px;}
.w1_c00107{width:893.250000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:14.490000px;}
.x2_c00107{left:113.040150px;}
.x1b_c00107{left:127.615350px;}
.x11_c00107{left:140.046300px;}
.x15_c00107{left:148.031550px;}
.x3_c00107{left:150.011700px;}
.x17_c00107{left:153.035550px;}
.x14_c00107{left:155.033550px;}
.x12_c00107{left:167.040150px;}
.x1c_c00107{left:175.134150px;}
.x5_c00107{left:186.006600px;}
.x4_c00107{left:220.480650px;}
.x18_c00107{left:247.048800px;}
.x19_c00107{left:252.052800px;}
.x6_c00107{left:263.923050px;}
.x7_c00107{left:286.846350px;}
.x13_c00107{left:321.009450px;}
.xd_c00107{left:326.459400px;}
.xb_c00107{left:333.239100px;}
.xe_c00107{left:345.448950px;}
.x1a_c00107{left:348.045000px;}
.x16_c00107{left:353.049000px;}
.x8_c00107{left:355.762950px;}
.x9_c00107{left:361.756650px;}
.xa_c00107{left:379.716000px;}
.xc_c00107{left:408.226350px;}
.xf_c00107{left:521.585400px;}
.x10_c00107{left:546.265500px;}
.x1d_c00107{left:617.929650px;}
.x1e_c00107{left:638.321100px;}
.x1f_c00107{left:768.255000px;}
@media print{
.v2_c00107{vertical-align:-21.760000pt;}
.v0_c00107{vertical-align:0.000000pt;}
.v1_c00107{vertical-align:26.880000pt;}
.ls6_c00107{letter-spacing:-0.159616pt;}
.ls5_c00107{letter-spacing:0.000000pt;}
.ls8_c00107{letter-spacing:0.128000pt;}
.ls9_c00107{letter-spacing:0.236160pt;}
.ls1_c00107{letter-spacing:0.262400pt;}
.ls10_c00107{letter-spacing:0.377856pt;}
.lsd_c00107{letter-spacing:0.389485pt;}
.lsc_c00107{letter-spacing:0.425088pt;}
.ls2_c00107{letter-spacing:0.472320pt;}
.lse_c00107{letter-spacing:0.614016pt;}
.lsa_c00107{letter-spacing:0.681599pt;}
.lsb_c00107{letter-spacing:1.647872pt;}
.ls11_c00107{letter-spacing:4.403072pt;}
.ls7_c00107{letter-spacing:4.827264pt;}
.ls0_c00107{letter-spacing:5.306667pt;}
.ls3_c00107{letter-spacing:5.312000pt;}
.ls4_c00107{letter-spacing:5.475484pt;}
.lsf_c00107{letter-spacing:6.281856pt;}
.ws1_c00107{word-spacing:-18.705024pt;}
.ws4_c00107{word-spacing:-15.720049pt;}
.ws3_c00107{word-spacing:-15.061760pt;}
.ws0_c00107{word-spacing:-10.159744pt;}
.ws2_c00107{word-spacing:-9.024000pt;}
.ws5_c00107{word-spacing:0.000000pt;}
._11_c00107{margin-left:-6.572800pt;}
._10_c00107{margin-left:-5.661440pt;}
._12_c00107{margin-left:-3.975360pt;}
._f_c00107{margin-left:-1.140800pt;}
._b_c00107{width:1.502592pt;}
._8_c00107{width:2.432000pt;}
._4_c00107{width:4.096000pt;}
._c_c00107{width:5.504000pt;}
._0_c00107{width:6.976000pt;}
._2_c00107{width:8.000000pt;}
._1_c00107{width:9.088000pt;}
._7_c00107{width:9.984000pt;}
._6_c00107{width:12.224000pt;}
._e_c00107{width:13.120000pt;}
._d_c00107{width:15.552000pt;}
._9_c00107{width:16.768000pt;}
._5_c00107{width:18.688000pt;}
._a_c00107{width:19.712000pt;}
._3_c00107{width:24.320000pt;}
.fs4_c00107{font-size:32.000000pt;}
.fs2_c00107{font-size:37.120000pt;}
.fs3_c00107{font-size:49.920000pt;}
.fs5_c00107{font-size:52.480000pt;}
.fs7_c00107{font-size:53.333333pt;}
.fs6_c00107{font-size:54.095146pt;}
.fs0_c00107{font-size:64.000000pt;}
.fs1_c00107{font-size:65.969690pt;}
.y0_c00107{bottom:0.000000pt;}
.y2f_c00107{bottom:2.773467pt;}
.y2e_c00107{bottom:30.884000pt;}
.y1_c00107{bottom:48.000000pt;}
.y2d_c00107{bottom:49.318080pt;}
.y2c_c00107{bottom:64.681600pt;}
.y2b_c00107{bottom:85.800000pt;}
.y2a_c00107{bottom:95.721600pt;}
.y29_c00107{bottom:111.400000pt;}
.y28_c00107{bottom:116.840000pt;}
.y27_c00107{bottom:132.520000pt;}
.y26_c00107{bottom:156.200000pt;}
.y25_c00107{bottom:196.200000pt;}
.y24_c00107{bottom:221.480000pt;}
.y23_c00107{bottom:247.080000pt;}
.y22_c00107{bottom:272.360000pt;}
.y21_c00107{bottom:297.640000pt;}
.y20_c00107{bottom:322.920000pt;}
.y1f_c00107{bottom:348.200000pt;}
.y1e_c00107{bottom:373.480000pt;}
.y1d_c00107{bottom:392.360000pt;}
.y1c_c00107{bottom:410.920000pt;}
.y1b_c00107{bottom:429.800000pt;}
.y1a_c00107{bottom:455.080000pt;}
.y19_c00107{bottom:473.640000pt;}
.y18_c00107{bottom:492.200000pt;}
.y17_c00107{bottom:511.080000pt;}
.y16_c00107{bottom:529.640000pt;}
.y15_c00107{bottom:548.200000pt;}
.y14_c00107{bottom:567.080000pt;}
.y13_c00107{bottom:599.080000pt;}
.y12_c00107{bottom:617.640000pt;}
.y11_c00107{bottom:649.640000pt;}
.y10_c00107{bottom:681.640000pt;}
.yf_c00107{bottom:713.640000pt;}
.ye_c00107{bottom:732.520000pt;}
.yd_c00107{bottom:751.080000pt;}
.yc_c00107{bottom:783.080000pt;}
.yb_c00107{bottom:801.640000pt;}
.ya_c00107{bottom:820.520000pt;}
.y9_c00107{bottom:839.080000pt;}
.y8_c00107{bottom:857.640000pt;}
.y7_c00107{bottom:876.520000pt;}
.y6_c00107{bottom:908.520000pt;}
.y5_c00107{bottom:927.080000pt;}
.y4_c00107{bottom:945.640000pt;}
.y3_c00107{bottom:964.520000pt;}
.y2_c00107{bottom:1011.880000pt;}
.ha_c00107{height:17.116000pt;}
.h7_c00107{height:28.992000pt;}
.hb_c00107{height:41.173333pt;}
.h8_c00107{height:41.761453pt;}
.h6_c00107{height:46.250000pt;}
.h9_c00107{height:47.546880pt;}
.h4_c00107{height:50.928601pt;}
.h3_c00107{height:57.984000pt;}
.h5_c00107{height:60.510720pt;}
.h2_c00107{height:1067.880000pt;}
.h0_c00107{height:1122.520000pt;}
.h1_c00107{height:1122.666667pt;}
.w3_c00107{width:14.826667pt;}
.w2_c00107{width:767.960000pt;}
.w0_c00107{width:793.720000pt;}
.w1_c00107{width:794.000000pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:12.880000pt;}
.x2_c00107{left:100.480133pt;}
.x1b_c00107{left:113.435867pt;}
.x11_c00107{left:124.485600pt;}
.x15_c00107{left:131.583600pt;}
.x3_c00107{left:133.343733pt;}
.x17_c00107{left:136.031600pt;}
.x14_c00107{left:137.807600pt;}
.x12_c00107{left:148.480133pt;}
.x1c_c00107{left:155.674800pt;}
.x5_c00107{left:165.339200pt;}
.x4_c00107{left:195.982800pt;}
.x18_c00107{left:219.598933pt;}
.x19_c00107{left:224.046933pt;}
.x6_c00107{left:234.598267pt;}
.x7_c00107{left:254.974533pt;}
.x13_c00107{left:285.341733pt;}
.xd_c00107{left:290.186133pt;}
.xb_c00107{left:296.212533pt;}
.xe_c00107{left:307.065733pt;}
.x1a_c00107{left:309.373333pt;}
.x16_c00107{left:313.821333pt;}
.x8_c00107{left:316.233733pt;}
.x9_c00107{left:321.561467pt;}
.xa_c00107{left:337.525333pt;}
.xc_c00107{left:362.867867pt;}
.xf_c00107{left:463.631467pt;}
.x10_c00107{left:485.569333pt;}
.x1d_c00107{left:549.270800pt;}
.x1e_c00107{left:567.396533pt;}
.x1f_c00107{left:682.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_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_ad7f404b1d0cb18ce746471e.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.134000;font-style:normal;font-weight:normal;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_53f8bf6dbb3091951e74a98a.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;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:ff3_c00108;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_652384b3d7b8a59e9254e743.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00108;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff6_c00108{font-family:ff6_c00108;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00108;src:url('chunks/assets/font_05acaadf733469d911f2c096.woff2')format("woff");}.ff7_c00108{font-family:ff7_c00108;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00108;src:url('chunks/assets/font_7a1de03b9ab9d4a2941e80ad.woff2')format("woff");}.ff8_c00108{font-family:ff8_c00108;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00108;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff9_c00108{font-family:ff9_c00108;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00108;src:url('chunks/assets/font_0435058f82ab8191d032b0a4.woff2')format("woff");}.ffa_c00108{font-family:ffa_c00108;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00108{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00108{vertical-align:-24.480000px;}
.v0_c00108{vertical-align:0.000000px;}
.v1_c00108{vertical-align:30.240000px;}
.lsa_c00108{letter-spacing:-0.179568px;}
.ls8_c00108{letter-spacing:0.000000px;}
.ls3_c00108{letter-spacing:0.021600px;}
.lsd_c00108{letter-spacing:0.144000px;}
.ls11_c00108{letter-spacing:0.265680px;}
.ls6_c00108{letter-spacing:0.295200px;}
.ls10_c00108{letter-spacing:0.531360px;}
.lse_c00108{letter-spacing:2.763072px;}
.ls4_c00108{letter-spacing:3.240000px;}
.ls9_c00108{letter-spacing:5.430672px;}
.lsf_c00108{letter-spacing:5.514336px;}
.ls1_c00108{letter-spacing:5.976000px;}
.ls0_c00108{letter-spacing:5.978400px;}
.ls7_c00108{letter-spacing:6.159920px;}
.lsc_c00108{letter-spacing:7.028246px;}
.ls2_c00108{letter-spacing:7.050511px;}
.lsb_c00108{letter-spacing:10.123049px;}
.ls5_c00108{letter-spacing:54.864000px;}
.sc__c00108{text-shadow:none;}
.sc1_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00108{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc1_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00108{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00108{word-spacing:-21.927456px;}
.ws0_c00108{word-spacing:-21.043152px;}
.ws1_c00108{word-spacing:-11.429712px;}
.ws2_c00108{word-spacing:-10.152000px;}
.ws4_c00108{word-spacing:0.000000px;}
._6_c00108{margin-left:-7.005981px;}
._8_c00108{margin-left:-2.472480px;}
._0_c00108{margin-left:-1.179360px;}
._1_c00108{width:1.296000px;}
._7_c00108{width:3.240000px;}
._2_c00108{width:4.680000px;}
._3_c00108{width:6.480000px;}
._5_c00108{width:7.560000px;}
._4_c00108{width:9.792000px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs4_c00108{font-size:36.000000px;}
.fs3_c00108{font-size:41.760000px;}
.fs2_c00108{font-size:56.160000px;}
.fs5_c00108{font-size:59.040000px;}
.fs6_c00108{font-size:60.000000px;}
.fs0_c00108{font-size:72.000000px;}
.fs1_c00108{font-size:74.215901px;}
.y0_c00108{bottom:0.000000px;}
.y2b_c00108{bottom:3.120150px;}
.y2a_c00108{bottom:34.744500px;}
.y1_c00108{bottom:54.000000px;}
.y29_c00108{bottom:61.605000px;}
.y28_c00108{bottom:72.766800px;}
.y27_c00108{bottom:96.525000px;}
.y26_c00108{bottom:123.165000px;}
.y25_c00108{bottom:144.765000px;}
.y24_c00108{bottom:180.765000px;}
.y23_c00108{bottom:201.645000px;}
.y22_c00108{bottom:237.645000px;}
.y21_c00108{bottom:266.085000px;}
.y20_c00108{bottom:288.045000px;}
.y1f_c00108{bottom:316.125000px;}
.y1e_c00108{bottom:337.725000px;}
.y1d_c00108{bottom:365.805000px;}
.y1c_c00108{bottom:394.245000px;}
.y1b_c00108{bottom:416.205000px;}
.y1a_c00108{bottom:444.285000px;}
.y19_c00108{bottom:465.885000px;}
.y18_c00108{bottom:493.965000px;}
.y17_c00108{bottom:522.405000px;}
.y16_c00108{bottom:543.285000px;}
.y15_c00108{bottom:571.725000px;}
.y14_c00108{bottom:600.525000px;}
.y13_c00108{bottom:628.965000px;}
.y12_c00108{bottom:649.845000px;}
.y11_c00108{bottom:678.285000px;}
.y10_c00108{bottom:707.085000px;}
.yf_c00108{bottom:743.085000px;}
.ye_c00108{bottom:763.965000px;}
.yd_c00108{bottom:784.845000px;}
.yc_c00108{bottom:820.845000px;}
.yb_c00108{bottom:856.845000px;}
.ya_c00108{bottom:885.645000px;}
.y9_c00108{bottom:914.085000px;}
.y8_c00108{bottom:942.525000px;}
.y7_c00108{bottom:970.965000px;}
.y6_c00108{bottom:999.405000px;}
.y5_c00108{bottom:1027.845000px;}
.y4_c00108{bottom:1056.645000px;}
.y3_c00108{bottom:1085.085000px;}
.y2_c00108{bottom:1138.365000px;}
.hb_c00108{height:19.255500px;}
.h9_c00108{height:32.616000px;}
.hc_c00108{height:46.320000px;}
.h7_c00108{height:47.988281px;}
.h5_c00108{height:52.031250px;}
.ha_c00108{height:53.490240px;}
.h4_c00108{height:57.294676px;}
.h3_c00108{height:65.232000px;}
.h8_c00108{height:67.239607px;}
.h6_c00108{height:68.074560px;}
.h2_c00108{height:1201.365000px;}
.h0_c00108{height:1262.835000px;}
.h1_c00108{height:1263.000000px;}
.w3_c00108{width:16.680000px;}
.w2_c00108{width:863.955000px;}
.w0_c00108{width:892.935000px;}
.w1_c00108{width:893.250000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:14.490000px;}
.x2_c00108{left:113.040150px;}
.x7_c00108{left:140.039550px;}
.xa_c00108{left:148.031550px;}
.x3_c00108{left:150.011700px;}
.x6_c00108{left:153.035550px;}
.x5_c00108{left:155.033550px;}
.x13_c00108{left:157.488600px;}
.x8_c00108{left:167.040150px;}
.x1c_c00108{left:182.729400px;}
.x23_c00108{left:197.484300px;}
.x4_c00108{left:220.480650px;}
.x24_c00108{left:237.343800px;}
.xf_c00108{left:247.048800px;}
.x10_c00108{left:252.052800px;}
.x12_c00108{left:284.580000px;}
.x14_c00108{left:295.398600px;}
.xd_c00108{left:302.054850px;}
.xe_c00108{left:311.054850px;}
.x15_c00108{left:330.847050px;}
.x11_c00108{left:348.045000px;}
.xb_c00108{left:366.044700px;}
.x9_c00108{left:390.020100px;}
.xc_c00108{left:424.022100px;}
.x1d_c00108{left:545.378550px;}
.x1e_c00108{left:592.832100px;}
.x1f_c00108{left:597.332100px;}
.x16_c00108{left:632.583150px;}
.x25_c00108{left:640.927800px;}
.x20_c00108{left:642.055650px;}
.x21_c00108{left:653.767800px;}
.x17_c00108{left:688.504350px;}
.x22_c00108{left:694.513200px;}
.x18_c00108{left:699.959100px;}
.x19_c00108{left:728.405700px;}
.x1a_c00108{left:732.905700px;}
.x1b_c00108{left:750.390000px;}
.x26_c00108{left:768.255000px;}
@media print{
.v2_c00108{vertical-align:-21.760000pt;}
.v0_c00108{vertical-align:0.000000pt;}
.v1_c00108{vertical-align:26.880000pt;}
.lsa_c00108{letter-spacing:-0.159616pt;}
.ls8_c00108{letter-spacing:0.000000pt;}
.ls3_c00108{letter-spacing:0.019200pt;}
.lsd_c00108{letter-spacing:0.128000pt;}
.ls11_c00108{letter-spacing:0.236160pt;}
.ls6_c00108{letter-spacing:0.262400pt;}
.ls10_c00108{letter-spacing:0.472320pt;}
.lse_c00108{letter-spacing:2.456064pt;}
.ls4_c00108{letter-spacing:2.880000pt;}
.ls9_c00108{letter-spacing:4.827264pt;}
.lsf_c00108{letter-spacing:4.901632pt;}
.ls1_c00108{letter-spacing:5.312000pt;}
.ls0_c00108{letter-spacing:5.314133pt;}
.ls7_c00108{letter-spacing:5.475484pt;}
.lsc_c00108{letter-spacing:6.247330pt;}
.ls2_c00108{letter-spacing:6.267121pt;}
.lsb_c00108{letter-spacing:8.998266pt;}
.ls5_c00108{letter-spacing:48.768000pt;}
.ws3_c00108{word-spacing:-19.491072pt;}
.ws0_c00108{word-spacing:-18.705024pt;}
.ws1_c00108{word-spacing:-10.159744pt;}
.ws2_c00108{word-spacing:-9.024000pt;}
.ws4_c00108{word-spacing:0.000000pt;}
._6_c00108{margin-left:-6.227539pt;}
._8_c00108{margin-left:-2.197760pt;}
._0_c00108{margin-left:-1.048320pt;}
._1_c00108{width:1.152000pt;}
._7_c00108{width:2.880000pt;}
._2_c00108{width:4.160000pt;}
._3_c00108{width:5.760000pt;}
._5_c00108{width:6.720000pt;}
._4_c00108{width:8.704000pt;}
.fs4_c00108{font-size:32.000000pt;}
.fs3_c00108{font-size:37.120000pt;}
.fs2_c00108{font-size:49.920000pt;}
.fs5_c00108{font-size:52.480000pt;}
.fs6_c00108{font-size:53.333333pt;}
.fs0_c00108{font-size:64.000000pt;}
.fs1_c00108{font-size:65.969690pt;}
.y0_c00108{bottom:0.000000pt;}
.y2b_c00108{bottom:2.773467pt;}
.y2a_c00108{bottom:30.884000pt;}
.y1_c00108{bottom:48.000000pt;}
.y29_c00108{bottom:54.760000pt;}
.y28_c00108{bottom:64.681600pt;}
.y27_c00108{bottom:85.800000pt;}
.y26_c00108{bottom:109.480000pt;}
.y25_c00108{bottom:128.680000pt;}
.y24_c00108{bottom:160.680000pt;}
.y23_c00108{bottom:179.240000pt;}
.y22_c00108{bottom:211.240000pt;}
.y21_c00108{bottom:236.520000pt;}
.y20_c00108{bottom:256.040000pt;}
.y1f_c00108{bottom:281.000000pt;}
.y1e_c00108{bottom:300.200000pt;}
.y1d_c00108{bottom:325.160000pt;}
.y1c_c00108{bottom:350.440000pt;}
.y1b_c00108{bottom:369.960000pt;}
.y1a_c00108{bottom:394.920000pt;}
.y19_c00108{bottom:414.120000pt;}
.y18_c00108{bottom:439.080000pt;}
.y17_c00108{bottom:464.360000pt;}
.y16_c00108{bottom:482.920000pt;}
.y15_c00108{bottom:508.200000pt;}
.y14_c00108{bottom:533.800000pt;}
.y13_c00108{bottom:559.080000pt;}
.y12_c00108{bottom:577.640000pt;}
.y11_c00108{bottom:602.920000pt;}
.y10_c00108{bottom:628.520000pt;}
.yf_c00108{bottom:660.520000pt;}
.ye_c00108{bottom:679.080000pt;}
.yd_c00108{bottom:697.640000pt;}
.yc_c00108{bottom:729.640000pt;}
.yb_c00108{bottom:761.640000pt;}
.ya_c00108{bottom:787.240000pt;}
.y9_c00108{bottom:812.520000pt;}
.y8_c00108{bottom:837.800000pt;}
.y7_c00108{bottom:863.080000pt;}
.y6_c00108{bottom:888.360000pt;}
.y5_c00108{bottom:913.640000pt;}
.y4_c00108{bottom:939.240000pt;}
.y3_c00108{bottom:964.520000pt;}
.y2_c00108{bottom:1011.880000pt;}
.hb_c00108{height:17.116000pt;}
.h9_c00108{height:28.992000pt;}
.hc_c00108{height:41.173333pt;}
.h7_c00108{height:42.656250pt;}
.h5_c00108{height:46.250000pt;}
.ha_c00108{height:47.546880pt;}
.h4_c00108{height:50.928601pt;}
.h3_c00108{height:57.984000pt;}
.h8_c00108{height:59.768539pt;}
.h6_c00108{height:60.510720pt;}
.h2_c00108{height:1067.880000pt;}
.h0_c00108{height:1122.520000pt;}
.h1_c00108{height:1122.666667pt;}
.w3_c00108{width:14.826667pt;}
.w2_c00108{width:767.960000pt;}
.w0_c00108{width:793.720000pt;}
.w1_c00108{width:794.000000pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:12.880000pt;}
.x2_c00108{left:100.480133pt;}
.x7_c00108{left:124.479600pt;}
.xa_c00108{left:131.583600pt;}
.x3_c00108{left:133.343733pt;}
.x6_c00108{left:136.031600pt;}
.x5_c00108{left:137.807600pt;}
.x13_c00108{left:139.989867pt;}
.x8_c00108{left:148.480133pt;}
.x1c_c00108{left:162.426133pt;}
.x23_c00108{left:175.541600pt;}
.x4_c00108{left:195.982800pt;}
.x24_c00108{left:210.972267pt;}
.xf_c00108{left:219.598933pt;}
.x10_c00108{left:224.046933pt;}
.x12_c00108{left:252.960000pt;}
.x14_c00108{left:262.576533pt;}
.xd_c00108{left:268.493200pt;}
.xe_c00108{left:276.493200pt;}
.x15_c00108{left:294.086267pt;}
.x11_c00108{left:309.373333pt;}
.xb_c00108{left:325.373067pt;}
.x9_c00108{left:346.684533pt;}
.xc_c00108{left:376.908533pt;}
.x1d_c00108{left:484.780933pt;}
.x1e_c00108{left:526.961867pt;}
.x1f_c00108{left:530.961867pt;}
.x16_c00108{left:562.296133pt;}
.x25_c00108{left:569.713600pt;}
.x20_c00108{left:570.716133pt;}
.x21_c00108{left:581.126933pt;}
.x17_c00108{left:612.003867pt;}
.x22_c00108{left:617.345067pt;}
.x18_c00108{left:622.185867pt;}
.x19_c00108{left:647.471733pt;}
.x1a_c00108{left:651.471733pt;}
.x1b_c00108{left:667.013333pt;}
.x26_c00108{left:682.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_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_dad5f657e5e099127d760f27.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.134000;font-style:normal;font-weight:normal;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_45f6033649b8cd9de3a33e16.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;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:ff3_c00109;src:url('chunks/assets/font_2fd87258c5d93e91cca0fc19.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_9502b246c42844f2450d00f8.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00109;src:url('chunks/assets/font_6eedc6698ca464e28822cf3f.woff2')format("woff");}.ff6_c00109{font-family:ff6_c00109;line-height:0.787000;font-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_c00109{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00109{vertical-align:-24.480000px;}
.v0_c00109{vertical-align:0.000000px;}
.v1_c00109{vertical-align:30.240000px;}
.ls1e_c00109{letter-spacing:-0.179568px;}
.ls1d_c00109{letter-spacing:0.000000px;}
.ls3f_c00109{letter-spacing:0.144000px;}
.ls32_c00109{letter-spacing:0.242064px;}
.ls2_c00109{letter-spacing:0.265680px;}
.ls1a_c00109{letter-spacing:0.273857px;}
.ls1b_c00109{letter-spacing:0.295200px;}
.ls8_c00109{letter-spacing:0.318480px;}
.ls22_c00109{letter-spacing:0.318816px;}
.ls7_c00109{letter-spacing:0.319080px;}
.lsf_c00109{letter-spacing:0.328628px;}
.ls17_c00109{letter-spacing:0.345360px;}
.lsa_c00109{letter-spacing:0.345960px;}
.ls26_c00109{letter-spacing:0.425088px;}
.ls10_c00109{letter-spacing:0.438171px;}
.ls25_c00109{letter-spacing:0.478224px;}
.ls5_c00109{letter-spacing:0.492942px;}
.lse_c00109{letter-spacing:0.494773px;}
.lsb_c00109{letter-spacing:0.507744px;}
.ls15_c00109{letter-spacing:0.525456px;}
.ls6_c00109{letter-spacing:0.531360px;}
.ls18_c00109{letter-spacing:0.532560px;}
.lsc_c00109{letter-spacing:0.543168px;}
.ls33_c00109{letter-spacing:0.547713px;}
.ls12_c00109{letter-spacing:0.548950px;}
.ls16_c00109{letter-spacing:0.549072px;}
.ls19_c00109{letter-spacing:0.554976px;}
.lsd_c00109{letter-spacing:0.560880px;}
.ls38_c00109{letter-spacing:0.584496px;}
.ls2f_c00109{letter-spacing:0.602485px;}
.ls3a_c00109{letter-spacing:0.661248px;}
.ls39_c00109{letter-spacing:0.667152px;}
.ls30_c00109{letter-spacing:0.690768px;}
.ls27_c00109{letter-spacing:0.696672px;}
.ls9_c00109{letter-spacing:0.712027px;}
.ls11_c00109{letter-spacing:0.714452px;}
.ls3d_c00109{letter-spacing:0.718113px;}
.ls2a_c00109{letter-spacing:0.743904px;}
.ls2c_c00109{letter-spacing:0.766799px;}
.ls2e_c00109{letter-spacing:0.821570px;}
.ls41_c00109{letter-spacing:0.962352px;}
.ls29_c00109{letter-spacing:0.991970px;}
.ls37_c00109{letter-spacing:1.659024px;}
.ls40_c00109{letter-spacing:1.966032px;}
.ls36_c00109{letter-spacing:2.934288px;}
.ls4_c00109{letter-spacing:2.944680px;}
.ls21_c00109{letter-spacing:3.024000px;}
.ls3e_c00109{letter-spacing:4.044240px;}
.ls2d_c00109{letter-spacing:4.640544px;}
.ls42_c00109{letter-spacing:5.201424px;}
.ls24_c00109{letter-spacing:5.301792px;}
.ls3_c00109{letter-spacing:5.352840px;}
.ls13_c00109{letter-spacing:5.353440px;}
.ls23_c00109{letter-spacing:5.514336px;}
.ls28_c00109{letter-spacing:5.762304px;}
.ls0_c00109{letter-spacing:5.976000px;}
.ls43_c00109{letter-spacing:6.157872px;}
.ls1c_c00109{letter-spacing:6.159920px;}
.ls20_c00109{letter-spacing:8.791200px;}
.ls1f_c00109{letter-spacing:10.130400px;}
.ls2b_c00109{letter-spacing:12.811680px;}
.ls34_c00109{letter-spacing:14.110560px;}
.ls1_c00109{letter-spacing:15.912000px;}
.ls14_c00109{letter-spacing:17.710680px;}
.ls35_c00109{letter-spacing:17.712000px;}
.ls31_c00109{letter-spacing:20.144448px;}
.ls3b_c00109{letter-spacing:60.846624px;}
.ls3c_c00109{letter-spacing:62.719264px;}
.sc__c00109{text-shadow:none;}
.sc1_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00109{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc1_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00109{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00109{word-spacing:-21.927456px;}
.ws4_c00109{word-spacing:-21.714912px;}
.wsf_c00109{word-spacing:-17.910227px;}
.ws9_c00109{word-spacing:-17.739827px;}
.ws8_c00109{word-spacing:-17.685056px;}
.ws7_c00109{word-spacing:-17.630284px;}
.wsd_c00109{word-spacing:-17.465970px;}
.ws6_c00109{word-spacing:-17.411199px;}
.wsc_c00109{word-spacing:-17.246885px;}
.wsb_c00109{word-spacing:-17.109792px;}
.wsa_c00109{word-spacing:-17.103888px;}
.wse_c00109{word-spacing:-16.962192px;}
.ws2_c00109{word-spacing:-16.944480px;}
.ws5_c00109{word-spacing:-16.891344px;}
.ws1_c00109{word-spacing:-16.413120px;}
.ws0_c00109{word-spacing:-11.429712px;}
.ws10_c00109{word-spacing:-10.152000px;}
.ws11_c00109{word-spacing:0.000000px;}
._1e_c00109{margin-left:-61.891609px;}
._1d_c00109{margin-left:-60.338880px;}
._14_c00109{margin-left:-20.664000px;}
._13_c00109{margin-left:-19.601280px;}
._18_c00109{margin-left:-17.180640px;}
._17_c00109{margin-left:-13.761600px;}
._f_c00109{margin-left:-12.280320px;}
._2_c00109{margin-left:-10.324800px;}
._5_c00109{margin-left:-8.798400px;}
._e_c00109{margin-left:-6.376320px;}
._d_c00109{margin-left:-5.077440px;}
._1f_c00109{margin-left:-4.025472px;}
._8_c00109{margin-left:-3.024000px;}
._b_c00109{margin-left:-1.062720px;}
._3_c00109{width:1.296000px;}
._7_c00109{width:3.024000px;}
._a_c00109{width:4.263120px;}
._9_c00109{width:6.336000px;}
._11_c00109{width:7.632600px;}
._6_c00109{width:8.784000px;}
._1_c00109{width:10.152000px;}
._10_c00109{width:12.318240px;}
._15_c00109{width:13.804320px;}
._4_c00109{width:18.720000px;}
._1c_c00109{width:22.545255px;}
._c_c00109{width:27.276480px;}
._16_c00109{width:29.422100px;}
._0_c00109{width:37.800000px;}
._1b_c00109{width:40.973760px;}
._1a_c00109{width:42.154560px;}
._19_c00109{width:43.269240px;}
._12_c00109{width:51.878352px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs5_c00109{font-size:36.000000px;}
.fs2_c00109{font-size:41.760000px;}
.fs3_c00109{font-size:59.040000px;}
.fs6_c00109{font-size:60.000000px;}
.fs4_c00109{font-size:60.857039px;}
.fs0_c00109{font-size:72.000000px;}
.fs1_c00109{font-size:74.215901px;}
.y0_c00109{bottom:0.000000px;}
.y44_c00109{bottom:3.120150px;}
.y35_c00109{bottom:3.960000px;}
.y34_c00109{bottom:21.240000px;}
.y43_c00109{bottom:34.744500px;}
.y33_c00109{bottom:38.880000px;}
.y1_c00109{bottom:54.000000px;}
.y42_c00109{bottom:55.481040px;}
.y41_c00109{bottom:72.765000px;}
.y40_c00109{bottom:90.405000px;}
.y3f_c00109{bottom:96.525000px;}
.y3e_c00109{bottom:113.805000px;}
.y3d_c00109{bottom:125.326800px;}
.y3c_c00109{bottom:149.085000px;}
.y3b_c00109{bottom:175.725000px;}
.y39_c00109{bottom:201.285000px;}
.y38_c00109{bottom:201.645000px;}
.y3a_c00109{bottom:202.005000px;}
.y37_c00109{bottom:219.285000px;}
.y36_c00109{bottom:236.925000px;}
.y32_c00109{bottom:252.045000px;}
.y30_c00109{bottom:255.285000px;}
.y31_c00109{bottom:272.565000px;}
.y2f_c00109{bottom:272.925000px;}
.y2e_c00109{bottom:290.205000px;}
.y2d_c00109{bottom:308.565000px;}
.y2b_c00109{bottom:326.205000px;}
.y2c_c00109{bottom:343.125000px;}
.y2a_c00109{bottom:343.485000px;}
.y29_c00109{bottom:361.125000px;}
.y28_c00109{bottom:378.405000px;}
.y27_c00109{bottom:396.765000px;}
.y26_c00109{bottom:414.405000px;}
.y23_c00109{bottom:431.685000px;}
.y25_c00109{bottom:448.965000px;}
.y22_c00109{bottom:449.325000px;}
.y24_c00109{bottom:466.605000px;}
.y21_c00109{bottom:466.965000px;}
.y20_c00109{bottom:484.245000px;}
.y1f_c00109{bottom:502.605000px;}
.y1e_c00109{bottom:520.245000px;}
.y1d_c00109{bottom:537.525000px;}
.y1c_c00109{bottom:555.165000px;}
.y1b_c00109{bottom:572.805000px;}
.y1a_c00109{bottom:590.085000px;}
.y19_c00109{bottom:607.725000px;}
.y18_c00109{bottom:626.085000px;}
.y17_c00109{bottom:643.365000px;}
.y16_c00109{bottom:661.005000px;}
.y15_c00109{bottom:678.285000px;}
.y14_c00109{bottom:695.925000px;}
.y13_c00109{bottom:713.565000px;}
.y12_c00109{bottom:730.845000px;}
.y11_c00109{bottom:748.485000px;}
.y10_c00109{bottom:781.965000px;}
.yf_c00109{bottom:817.965000px;}
.ye_c00109{bottom:838.845000px;}
.yd_c00109{bottom:860.085000px;}
.yc_c00109{bottom:880.965000px;}
.yb_c00109{bottom:901.845000px;}
.ya_c00109{bottom:937.845000px;}
.y9_c00109{bottom:959.085000px;}
.y8_c00109{bottom:979.965000px;}
.y7_c00109{bottom:1000.845000px;}
.y6_c00109{bottom:1022.085000px;}
.y5_c00109{bottom:1042.965000px;}
.y4_c00109{bottom:1063.845000px;}
.y3_c00109{bottom:1085.085000px;}
.y2_c00109{bottom:1138.365000px;}
.hc_c00109{height:19.255500px;}
.hb_c00109{height:32.616000px;}
.h8_c00109{height:39.350391px;}
.hd_c00109{height:46.320000px;}
.h7_c00109{height:46.981634px;}
.ha_c00109{height:52.920000px;}
.h6_c00109{height:53.490240px;}
.h9_c00109{height:55.136477px;}
.h4_c00109{height:57.294676px;}
.h3_c00109{height:65.232000px;}
.h5_c00109{height:68.074560px;}
.h2_c00109{height:1201.365000px;}
.h0_c00109{height:1262.835000px;}
.h1_c00109{height:1263.000000px;}
.w7_c00109{width:16.680000px;}
.w3_c00109{width:45.000000px;}
.w4_c00109{width:163.800000px;}
.w5_c00109{width:180.000000px;}
.w6_c00109{width:261.720000px;}
.w2_c00109{width:863.955000px;}
.w0_c00109{width:892.935000px;}
.w1_c00109{width:893.250000px;}
.x0_c00109{left:0.000000px;}
.xd_c00109{left:7.920150px;}
.x36_c00109{left:11.729850px;}
.x1_c00109{left:14.490000px;}
.x37_c00109{left:16.724550px;}
.x1b_c00109{left:21.254550px;}
.x11_c00109{left:39.584400px;}
.x35_c00109{left:43.754400px;}
.x19_c00109{left:49.618200px;}
.x16_c00109{left:51.269100px;}
.x30_c00109{left:60.532800px;}
.x1c_c00109{left:61.931700px;}
.x21_c00109{left:63.358200px;}
.x22_c00109{left:70.858200px;}
.x2b_c00109{left:76.238850px;}
.x26_c00109{left:81.679950px;}
.x1a_c00109{left:87.132600px;}
.x14_c00109{left:91.108800px;}
.x38_c00109{left:93.417600px;}
.x24_c00109{left:97.076700px;}
.x39_c00109{left:101.757000px;}
.x34_c00109{left:106.241100px;}
.x2c_c00109{left:111.203250px;}
.x2_c00109{left:113.040150px;}
.x33_c00109{left:115.167750px;}
.xc_c00109{left:119.610000px;}
.x1d_c00109{left:122.930400px;}
.x15_c00109{left:126.943350px;}
.x12_c00109{left:140.551350px;}
.x3a_c00109{left:145.106100px;}
.x3e_c00109{left:148.874700px;}
.x3_c00109{left:150.011700px;}
.x3b_c00109{left:153.133650px;}
.x1e_c00109{left:158.764800px;}
.x29_c00109{left:163.594800px;}
.xe_c00109{left:165.330000px;}
.x23_c00109{left:168.644850px;}
.x7_c00109{left:171.053100px;}
.x1f_c00109{left:173.340750px;}
.x17_c00109{left:175.563300px;}
.x13_c00109{left:182.769300px;}
.x31_c00109{left:194.017050px;}
.x27_c00109{left:197.270100px;}
.x2a_c00109{left:206.943900px;}
.x20_c00109{left:208.305150px;}
.x18_c00109{left:210.527700px;}
.x2d_c00109{left:216.630600px;}
.x4_c00109{left:220.480650px;}
.x25_c00109{left:222.480450px;}
.x28_c00109{left:233.104650px;}
.x32_c00109{left:237.366150px;}
.x2f_c00109{left:249.165150px;}
.x2e_c00109{left:254.144850px;}
.xf_c00109{left:329.850000px;}
.x3f_c00109{left:333.840000px;}
.x40_c00109{left:346.334850px;}
.x41_c00109{left:372.620250px;}
.x42_c00109{left:395.945100px;}
.x3c_c00109{left:472.577250px;}
.x5_c00109{left:492.484800px;}
.x10_c00109{left:510.570000px;}
.x3d_c00109{left:514.656000px;}
.x8_c00109{left:531.424050px;}
.x6_c00109{left:552.495900px;}
.x43_c00109{left:559.156050px;}
.x9_c00109{left:589.437000px;}
.x44_c00109{left:630.469500px;}
.xa_c00109{left:658.177800px;}
.xb_c00109{left:702.924750px;}
.x45_c00109{left:768.255000px;}
@media print{
.v2_c00109{vertical-align:-21.760000pt;}
.v0_c00109{vertical-align:0.000000pt;}
.v1_c00109{vertical-align:26.880000pt;}
.ls1e_c00109{letter-spacing:-0.159616pt;}
.ls1d_c00109{letter-spacing:0.000000pt;}
.ls3f_c00109{letter-spacing:0.128000pt;}
.ls32_c00109{letter-spacing:0.215168pt;}
.ls2_c00109{letter-spacing:0.236160pt;}
.ls1a_c00109{letter-spacing:0.243428pt;}
.ls1b_c00109{letter-spacing:0.262400pt;}
.ls8_c00109{letter-spacing:0.283093pt;}
.ls22_c00109{letter-spacing:0.283392pt;}
.ls7_c00109{letter-spacing:0.283627pt;}
.lsf_c00109{letter-spacing:0.292114pt;}
.ls17_c00109{letter-spacing:0.306987pt;}
.lsa_c00109{letter-spacing:0.307520pt;}
.ls26_c00109{letter-spacing:0.377856pt;}
.ls10_c00109{letter-spacing:0.389485pt;}
.ls25_c00109{letter-spacing:0.425088pt;}
.ls5_c00109{letter-spacing:0.438171pt;}
.lse_c00109{letter-spacing:0.439798pt;}
.lsb_c00109{letter-spacing:0.451328pt;}
.ls15_c00109{letter-spacing:0.467072pt;}
.ls6_c00109{letter-spacing:0.472320pt;}
.ls18_c00109{letter-spacing:0.473387pt;}
.lsc_c00109{letter-spacing:0.482816pt;}
.ls33_c00109{letter-spacing:0.486856pt;}
.ls12_c00109{letter-spacing:0.487956pt;}
.ls16_c00109{letter-spacing:0.488064pt;}
.ls19_c00109{letter-spacing:0.493312pt;}
.lsd_c00109{letter-spacing:0.498560pt;}
.ls38_c00109{letter-spacing:0.519552pt;}
.ls2f_c00109{letter-spacing:0.535542pt;}
.ls3a_c00109{letter-spacing:0.587776pt;}
.ls39_c00109{letter-spacing:0.593024pt;}
.ls30_c00109{letter-spacing:0.614016pt;}
.ls27_c00109{letter-spacing:0.619264pt;}
.ls9_c00109{letter-spacing:0.632913pt;}
.ls11_c00109{letter-spacing:0.635068pt;}
.ls3d_c00109{letter-spacing:0.638323pt;}
.ls2a_c00109{letter-spacing:0.661248pt;}
.ls2c_c00109{letter-spacing:0.681599pt;}
.ls2e_c00109{letter-spacing:0.730284pt;}
.ls41_c00109{letter-spacing:0.855424pt;}
.ls29_c00109{letter-spacing:0.881751pt;}
.ls37_c00109{letter-spacing:1.474688pt;}
.ls40_c00109{letter-spacing:1.747584pt;}
.ls36_c00109{letter-spacing:2.608256pt;}
.ls4_c00109{letter-spacing:2.617493pt;}
.ls21_c00109{letter-spacing:2.688000pt;}
.ls3e_c00109{letter-spacing:3.594880pt;}
.ls2d_c00109{letter-spacing:4.124928pt;}
.ls42_c00109{letter-spacing:4.623488pt;}
.ls24_c00109{letter-spacing:4.712704pt;}
.ls3_c00109{letter-spacing:4.758080pt;}
.ls13_c00109{letter-spacing:4.758613pt;}
.ls23_c00109{letter-spacing:4.901632pt;}
.ls28_c00109{letter-spacing:5.122048pt;}
.ls0_c00109{letter-spacing:5.312000pt;}
.ls43_c00109{letter-spacing:5.473664pt;}
.ls1c_c00109{letter-spacing:5.475484pt;}
.ls20_c00109{letter-spacing:7.814400pt;}
.ls1f_c00109{letter-spacing:9.004800pt;}
.ls2b_c00109{letter-spacing:11.388160pt;}
.ls34_c00109{letter-spacing:12.542720pt;}
.ls1_c00109{letter-spacing:14.144000pt;}
.ls14_c00109{letter-spacing:15.742827pt;}
.ls35_c00109{letter-spacing:15.744000pt;}
.ls31_c00109{letter-spacing:17.906176pt;}
.ls3b_c00109{letter-spacing:54.085888pt;}
.ls3c_c00109{letter-spacing:55.750457pt;}
.ws3_c00109{word-spacing:-19.491072pt;}
.ws4_c00109{word-spacing:-19.302144pt;}
.wsf_c00109{word-spacing:-15.920201pt;}
.ws9_c00109{word-spacing:-15.768735pt;}
.ws8_c00109{word-spacing:-15.720049pt;}
.ws7_c00109{word-spacing:-15.671364pt;}
.wsd_c00109{word-spacing:-15.525307pt;}
.ws6_c00109{word-spacing:-15.476621pt;}
.wsc_c00109{word-spacing:-15.330564pt;}
.wsb_c00109{word-spacing:-15.208704pt;}
.wsa_c00109{word-spacing:-15.203456pt;}
.wse_c00109{word-spacing:-15.077504pt;}
.ws2_c00109{word-spacing:-15.061760pt;}
.ws5_c00109{word-spacing:-15.014528pt;}
.ws1_c00109{word-spacing:-14.589440pt;}
.ws0_c00109{word-spacing:-10.159744pt;}
.ws10_c00109{word-spacing:-9.024000pt;}
.ws11_c00109{word-spacing:0.000000pt;}
._1e_c00109{margin-left:-55.014763pt;}
._1d_c00109{margin-left:-53.634560pt;}
._14_c00109{margin-left:-18.368000pt;}
._13_c00109{margin-left:-17.423360pt;}
._18_c00109{margin-left:-15.271680pt;}
._17_c00109{margin-left:-12.232533pt;}
._f_c00109{margin-left:-10.915840pt;}
._2_c00109{margin-left:-9.177600pt;}
._5_c00109{margin-left:-7.820800pt;}
._e_c00109{margin-left:-5.667840pt;}
._d_c00109{margin-left:-4.513280pt;}
._1f_c00109{margin-left:-3.578197pt;}
._8_c00109{margin-left:-2.688000pt;}
._b_c00109{margin-left:-0.944640pt;}
._3_c00109{width:1.152000pt;}
._7_c00109{width:2.688000pt;}
._a_c00109{width:3.789440pt;}
._9_c00109{width:5.632000pt;}
._11_c00109{width:6.784533pt;}
._6_c00109{width:7.808000pt;}
._1_c00109{width:9.024000pt;}
._10_c00109{width:10.949547pt;}
._15_c00109{width:12.270507pt;}
._4_c00109{width:16.640000pt;}
._1c_c00109{width:20.040226pt;}
._c_c00109{width:24.245760pt;}
._16_c00109{width:26.152978pt;}
._0_c00109{width:33.600000pt;}
._1b_c00109{width:36.421120pt;}
._1a_c00109{width:37.470720pt;}
._19_c00109{width:38.461547pt;}
._12_c00109{width:46.114091pt;}
.fs5_c00109{font-size:32.000000pt;}
.fs2_c00109{font-size:37.120000pt;}
.fs3_c00109{font-size:52.480000pt;}
.fs6_c00109{font-size:53.333333pt;}
.fs4_c00109{font-size:54.095146pt;}
.fs0_c00109{font-size:64.000000pt;}
.fs1_c00109{font-size:65.969690pt;}
.y0_c00109{bottom:0.000000pt;}
.y44_c00109{bottom:2.773467pt;}
.y35_c00109{bottom:3.520000pt;}
.y34_c00109{bottom:18.880000pt;}
.y43_c00109{bottom:30.884000pt;}
.y33_c00109{bottom:34.560000pt;}
.y1_c00109{bottom:48.000000pt;}
.y42_c00109{bottom:49.316480pt;}
.y41_c00109{bottom:64.680000pt;}
.y40_c00109{bottom:80.360000pt;}
.y3f_c00109{bottom:85.800000pt;}
.y3e_c00109{bottom:101.160000pt;}
.y3d_c00109{bottom:111.401600pt;}
.y3c_c00109{bottom:132.520000pt;}
.y3b_c00109{bottom:156.200000pt;}
.y39_c00109{bottom:178.920000pt;}
.y38_c00109{bottom:179.240000pt;}
.y3a_c00109{bottom:179.560000pt;}
.y37_c00109{bottom:194.920000pt;}
.y36_c00109{bottom:210.600000pt;}
.y32_c00109{bottom:224.040000pt;}
.y30_c00109{bottom:226.920000pt;}
.y31_c00109{bottom:242.280000pt;}
.y2f_c00109{bottom:242.600000pt;}
.y2e_c00109{bottom:257.960000pt;}
.y2d_c00109{bottom:274.280000pt;}
.y2b_c00109{bottom:289.960000pt;}
.y2c_c00109{bottom:305.000000pt;}
.y2a_c00109{bottom:305.320000pt;}
.y29_c00109{bottom:321.000000pt;}
.y28_c00109{bottom:336.360000pt;}
.y27_c00109{bottom:352.680000pt;}
.y26_c00109{bottom:368.360000pt;}
.y23_c00109{bottom:383.720000pt;}
.y25_c00109{bottom:399.080000pt;}
.y22_c00109{bottom:399.400000pt;}
.y24_c00109{bottom:414.760000pt;}
.y21_c00109{bottom:415.080000pt;}
.y20_c00109{bottom:430.440000pt;}
.y1f_c00109{bottom:446.760000pt;}
.y1e_c00109{bottom:462.440000pt;}
.y1d_c00109{bottom:477.800000pt;}
.y1c_c00109{bottom:493.480000pt;}
.y1b_c00109{bottom:509.160000pt;}
.y1a_c00109{bottom:524.520000pt;}
.y19_c00109{bottom:540.200000pt;}
.y18_c00109{bottom:556.520000pt;}
.y17_c00109{bottom:571.880000pt;}
.y16_c00109{bottom:587.560000pt;}
.y15_c00109{bottom:602.920000pt;}
.y14_c00109{bottom:618.600000pt;}
.y13_c00109{bottom:634.280000pt;}
.y12_c00109{bottom:649.640000pt;}
.y11_c00109{bottom:665.320000pt;}
.y10_c00109{bottom:695.080000pt;}
.yf_c00109{bottom:727.080000pt;}
.ye_c00109{bottom:745.640000pt;}
.yd_c00109{bottom:764.520000pt;}
.yc_c00109{bottom:783.080000pt;}
.yb_c00109{bottom:801.640000pt;}
.ya_c00109{bottom:833.640000pt;}
.y9_c00109{bottom:852.520000pt;}
.y8_c00109{bottom:871.080000pt;}
.y7_c00109{bottom:889.640000pt;}
.y6_c00109{bottom:908.520000pt;}
.y5_c00109{bottom:927.080000pt;}
.y4_c00109{bottom:945.640000pt;}
.y3_c00109{bottom:964.520000pt;}
.y2_c00109{bottom:1011.880000pt;}
.hc_c00109{height:17.116000pt;}
.hb_c00109{height:28.992000pt;}
.h8_c00109{height:34.978125pt;}
.hd_c00109{height:41.173333pt;}
.h7_c00109{height:41.761453pt;}
.ha_c00109{height:47.040000pt;}
.h6_c00109{height:47.546880pt;}
.h9_c00109{height:49.010202pt;}
.h4_c00109{height:50.928601pt;}
.h3_c00109{height:57.984000pt;}
.h5_c00109{height:60.510720pt;}
.h2_c00109{height:1067.880000pt;}
.h0_c00109{height:1122.520000pt;}
.h1_c00109{height:1122.666667pt;}
.w7_c00109{width:14.826667pt;}
.w3_c00109{width:40.000000pt;}
.w4_c00109{width:145.600000pt;}
.w5_c00109{width:160.000000pt;}
.w6_c00109{width:232.640000pt;}
.w2_c00109{width:767.960000pt;}
.w0_c00109{width:793.720000pt;}
.w1_c00109{width:794.000000pt;}
.x0_c00109{left:0.000000pt;}
.xd_c00109{left:7.040133pt;}
.x36_c00109{left:10.426533pt;}
.x1_c00109{left:12.880000pt;}
.x37_c00109{left:14.866267pt;}
.x1b_c00109{left:18.892933pt;}
.x11_c00109{left:35.186133pt;}
.x35_c00109{left:38.892800pt;}
.x19_c00109{left:44.105067pt;}
.x16_c00109{left:45.572533pt;}
.x30_c00109{left:53.806933pt;}
.x1c_c00109{left:55.050400pt;}
.x21_c00109{left:56.318400pt;}
.x22_c00109{left:62.985067pt;}
.x2b_c00109{left:67.767867pt;}
.x26_c00109{left:72.604400pt;}
.x1a_c00109{left:77.451200pt;}
.x14_c00109{left:80.985600pt;}
.x38_c00109{left:83.037867pt;}
.x24_c00109{left:86.290400pt;}
.x39_c00109{left:90.450667pt;}
.x34_c00109{left:94.436533pt;}
.x2c_c00109{left:98.847333pt;}
.x2_c00109{left:100.480133pt;}
.x33_c00109{left:102.371333pt;}
.xc_c00109{left:106.320000pt;}
.x1d_c00109{left:109.271467pt;}
.x15_c00109{left:112.838533pt;}
.x12_c00109{left:124.934533pt;}
.x3a_c00109{left:128.983200pt;}
.x3e_c00109{left:132.333067pt;}
.x3_c00109{left:133.343733pt;}
.x3b_c00109{left:136.118800pt;}
.x1e_c00109{left:141.124267pt;}
.x29_c00109{left:145.417600pt;}
.xe_c00109{left:146.960000pt;}
.x23_c00109{left:149.906533pt;}
.x7_c00109{left:152.047200pt;}
.x1f_c00109{left:154.080667pt;}
.x17_c00109{left:156.056267pt;}
.x13_c00109{left:162.461600pt;}
.x31_c00109{left:172.459600pt;}
.x27_c00109{left:175.351200pt;}
.x2a_c00109{left:183.950133pt;}
.x20_c00109{left:185.160133pt;}
.x18_c00109{left:187.135733pt;}
.x2d_c00109{left:192.560533pt;}
.x4_c00109{left:195.982800pt;}
.x25_c00109{left:197.760400pt;}
.x28_c00109{left:207.204133pt;}
.x32_c00109{left:210.992133pt;}
.x2f_c00109{left:221.480133pt;}
.x2e_c00109{left:225.906533pt;}
.xf_c00109{left:293.200000pt;}
.x3f_c00109{left:296.746667pt;}
.x40_c00109{left:307.853200pt;}
.x41_c00109{left:331.218000pt;}
.x42_c00109{left:351.951200pt;}
.x3c_c00109{left:420.068667pt;}
.x5_c00109{left:437.764267pt;}
.x10_c00109{left:453.840000pt;}
.x3d_c00109{left:457.472000pt;}
.x8_c00109{left:472.376933pt;}
.x6_c00109{left:491.107467pt;}
.x43_c00109{left:497.027600pt;}
.x9_c00109{left:523.944000pt;}
.x44_c00109{left:560.417333pt;}
.xa_c00109{left:585.046933pt;}
.xb_c00109{left:624.822000pt;}
.x45_c00109{left:682.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_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_23cc58bf6709c0ce4e170411.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.134000;font-style:normal;font-weight:normal;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_2d51832d7f557dc089ab219b.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;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:ff3_c00110;src:url('chunks/assets/font_4d6d669c59a47034c5ad76d7.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:0.666504;font-style:normal;font-weight:normal;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_652384b3d7b8a59e9254e743.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:0.787000;font-style:normal;font-weight:normal;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_f94a9847f73589f635e55e1e.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00110{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00110{vertical-align:-24.480000px;}
.v0_c00110{vertical-align:0.000000px;}
.v1_c00110{vertical-align:30.240000px;}
.ls21_c00110{letter-spacing:-0.179568px;}
.ls13_c00110{letter-spacing:0.000000px;}
.ls24_c00110{letter-spacing:0.144000px;}
.ls10_c00110{letter-spacing:0.265680px;}
.ls4_c00110{letter-spacing:0.295200px;}
.lsa_c00110{letter-spacing:0.301104px;}
.ls2e_c00110{letter-spacing:0.318816px;}
.ls6_c00110{letter-spacing:0.354240px;}
.ls19_c00110{letter-spacing:0.371952px;}
.ls26_c00110{letter-spacing:0.425088px;}
.ls11_c00110{letter-spacing:0.438171px;}
.ls2d_c00110{letter-spacing:0.492942px;}
.ls2_c00110{letter-spacing:0.501840px;}
.ls5_c00110{letter-spacing:0.519552px;}
.ls7_c00110{letter-spacing:0.525456px;}
.ls0_c00110{letter-spacing:0.531360px;}
.ls3_c00110{letter-spacing:0.549072px;}
.ls1f_c00110{letter-spacing:0.584496px;}
.ls1c_c00110{letter-spacing:0.690768px;}
.ls15_c00110{letter-spacing:0.696672px;}
.ls1_c00110{letter-spacing:0.712027px;}
.ls17_c00110{letter-spacing:0.743904px;}
.ls1d_c00110{letter-spacing:0.766799px;}
.ls2b_c00110{letter-spacing:0.797040px;}
.lsb_c00110{letter-spacing:0.821570px;}
.ls16_c00110{letter-spacing:0.962352px;}
.ls9_c00110{letter-spacing:0.991970px;}
.ls29_c00110{letter-spacing:1.960128px;}
.ls28_c00110{letter-spacing:2.509200px;}
.ls18_c00110{letter-spacing:3.471552px;}
.ls22_c00110{letter-spacing:4.142592px;}
.ls1b_c00110{letter-spacing:5.278176px;}
.ls1a_c00110{letter-spacing:5.284080px;}
.lsf_c00110{letter-spacing:5.372640px;}
.ls20_c00110{letter-spacing:5.430672px;}
.ls23_c00110{letter-spacing:5.464800px;}
.lse_c00110{letter-spacing:5.472000px;}
.ls27_c00110{letter-spacing:5.514336px;}
.ls2a_c00110{letter-spacing:5.945328px;}
.lsc_c00110{letter-spacing:5.975400px;}
.lsd_c00110{letter-spacing:5.976000px;}
.ls8_c00110{letter-spacing:6.022080px;}
.ls12_c00110{letter-spacing:6.159920px;}
.ls25_c00110{letter-spacing:6.411744px;}
.ls2c_c00110{letter-spacing:7.858224px;}
.ls1e_c00110{letter-spacing:9.204336px;}
.ls14_c00110{letter-spacing:21.391249px;}
.sc__c00110{text-shadow:none;}
.sc1_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00110{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc1_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00110{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00110{word-spacing:-25.992000px;}
.wsd_c00110{word-spacing:-21.927456px;}
.ws7_c00110{word-spacing:-21.043152px;}
.ws8_c00110{word-spacing:-20.016000px;}
.ws4_c00110{word-spacing:-17.910227px;}
.ws6_c00110{word-spacing:-17.739827px;}
.ws5_c00110{word-spacing:-17.685056px;}
.ws1_c00110{word-spacing:-17.630284px;}
.wse_c00110{word-spacing:-17.411199px;}
.ws3_c00110{word-spacing:-17.375472px;}
.ws2_c00110{word-spacing:-16.962192px;}
.ws0_c00110{word-spacing:-16.944480px;}
.wsb_c00110{word-spacing:-15.751872px;}
.ws9_c00110{word-spacing:-11.429712px;}
.wsc_c00110{word-spacing:-10.152000px;}
.wsf_c00110{word-spacing:0.000000px;}
._1_c00110{margin-left:-20.569679px;}
._c_c00110{margin-left:-9.800640px;}
._b_c00110{margin-left:-8.442720px;}
._1a_c00110{margin-left:-6.812712px;}
._18_c00110{margin-left:-5.790024px;}
._9_c00110{margin-left:-4.605120px;}
._6_c00110{margin-left:-3.601440px;}
._5_c00110{margin-left:-2.302560px;}
._2_c00110{margin-left:-1.298880px;}
._4_c00110{width:1.771200px;}
._3_c00110{width:2.774880px;}
._a_c00110{width:4.014720px;}
._7_c00110{width:5.254560px;}
._8_c00110{width:6.352704px;}
._10_c00110{width:7.371072px;}
._d_c00110{width:8.407296px;}
._e_c00110{width:9.880704px;}
._13_c00110{width:11.520000px;}
._15_c00110{width:13.720776px;}
._14_c00110{width:14.991612px;}
._19_c00110{width:15.993552px;}
._11_c00110{width:17.568000px;}
._0_c00110{width:19.955520px;}
._f_c00110{width:21.168000px;}
._16_c00110{width:22.464000px;}
._12_c00110{width:28.080000px;}
._17_c00110{width:43.848000px;}
.fc0_c00110{color:rgb(0,0,0);}
.fs6_c00110{font-size:36.000000px;}
.fs5_c00110{font-size:41.760000px;}
.fs4_c00110{font-size:56.160000px;}
.fs2_c00110{font-size:59.040000px;}
.fs7_c00110{font-size:60.000000px;}
.fs3_c00110{font-size:60.857039px;}
.fs0_c00110{font-size:72.000000px;}
.fs1_c00110{font-size:74.215901px;}
.y0_c00110{bottom:0.000000px;}
.y38_c00110{bottom:3.120150px;}
.y37_c00110{bottom:34.744500px;}
.y1_c00110{bottom:54.000000px;}
.y35_c00110{bottom:55.481040px;}
.y36_c00110{bottom:55.485000px;}
.y34_c00110{bottom:72.765000px;}
.y33_c00110{bottom:78.885000px;}
.y32_c00110{bottom:90.405000px;}
.y31_c00110{bottom:96.525000px;}
.y30_c00110{bottom:113.805000px;}
.y2f_c00110{bottom:125.326800px;}
.y2e_c00110{bottom:149.085000px;}
.y2d_c00110{bottom:166.365000px;}
.y2c_c00110{bottom:177.886800px;}
.y2b_c00110{bottom:201.645000px;}
.y2a_c00110{bottom:212.802840px;}
.y29_c00110{bottom:230.441040px;}
.y28_c00110{bottom:253.845000px;}
.y27_c00110{bottom:280.485000px;}
.y26_c00110{bottom:304.965000px;}
.y25_c00110{bottom:325.845000px;}
.y24_c00110{bottom:346.725000px;}
.y23_c00110{bottom:367.965000px;}
.y22_c00110{bottom:388.845000px;}
.y21_c00110{bottom:409.725000px;}
.y20_c00110{bottom:430.965000px;}
.y1f_c00110{bottom:451.845000px;}
.y1e_c00110{bottom:487.845000px;}
.y1d_c00110{bottom:508.725000px;}
.y1c_c00110{bottom:529.965000px;}
.y1b_c00110{bottom:550.845000px;}
.y1a_c00110{bottom:571.725000px;}
.y19_c00110{bottom:592.965000px;}
.y18_c00110{bottom:613.845000px;}
.y17_c00110{bottom:634.725000px;}
.y16_c00110{bottom:655.965000px;}
.y15_c00110{bottom:676.845000px;}
.y14_c00110{bottom:712.845000px;}
.y13_c00110{bottom:734.085000px;}
.y12_c00110{bottom:754.965000px;}
.y11_c00110{bottom:775.845000px;}
.y10_c00110{bottom:797.085000px;}
.yf_c00110{bottom:817.965000px;}
.ye_c00110{bottom:838.845000px;}
.yd_c00110{bottom:874.845000px;}
.yc_c00110{bottom:910.845000px;}
.yb_c00110{bottom:931.722840px;}
.ya_c00110{bottom:949.361040px;}
.y9_c00110{bottom:966.645000px;}
.y8_c00110{bottom:999.045000px;}
.y7_c00110{bottom:1016.685000px;}
.y6_c00110{bottom:1034.320890px;}
.y5_c00110{bottom:1051.604850px;}
.y4_c00110{bottom:1069.965000px;}
.y3_c00110{bottom:1087.604850px;}
.y2_c00110{bottom:1138.365000px;}
.h9_c00110{height:19.255500px;}
.h8_c00110{height:32.616000px;}
.ha_c00110{height:46.320000px;}
.h6_c00110{height:46.981634px;}
.h5_c00110{height:53.490240px;}
.h4_c00110{height:57.294676px;}
.h3_c00110{height:65.232000px;}
.h7_c00110{height:68.074560px;}
.h2_c00110{height:1201.365000px;}
.h0_c00110{height:1262.835000px;}
.h1_c00110{height:1263.000000px;}
.w5_c00110{width:16.680000px;}
.w3_c00110{width:45.000000px;}
.w4_c00110{width:261.720000px;}
.w2_c00110{width:863.955000px;}
.w0_c00110{width:892.935000px;}
.w1_c00110{width:893.250000px;}
.x0_c00110{left:0.000000px;}
.x6_c00110{left:7.920150px;}
.x1_c00110{left:14.490000px;}
.x2_c00110{left:113.040150px;}
.x5_c00110{left:119.610000px;}
.x8_c00110{left:125.556150px;}
.x1e_c00110{left:127.217700px;}
.x13_c00110{left:133.034550px;}
.x3_c00110{left:150.011700px;}
.xe_c00110{left:156.389250px;}
.x16_c00110{left:159.448200px;}
.x9_c00110{left:160.520400px;}
.x1f_c00110{left:170.566800px;}
.xa_c00110{left:207.339750px;}
.x4_c00110{left:220.480650px;}
.xf_c00110{left:223.931400px;}
.xb_c00110{left:254.144850px;}
.x10_c00110{left:259.750800px;}
.x15_c00110{left:321.358200px;}
.x19_c00110{left:327.282750px;}
.x22_c00110{left:392.314800px;}
.x23_c00110{left:407.314050px;}
.x1c_c00110{left:427.557450px;}
.x1d_c00110{left:474.996900px;}
.xc_c00110{left:486.109500px;}
.x20_c00110{left:504.551550px;}
.x7_c00110{left:510.570000px;}
.xd_c00110{left:521.944050px;}
.x11_c00110{left:533.205750px;}
.x21_c00110{left:538.720350px;}
.x1a_c00110{left:564.006900px;}
.x17_c00110{left:567.541950px;}
.x12_c00110{left:572.339700px;}
.x1b_c00110{left:575.004600px;}
.x18_c00110{left:609.517350px;}
.x14_c00110{left:662.182650px;}
.x24_c00110{left:768.255000px;}
@media print{
.v2_c00110{vertical-align:-21.760000pt;}
.v0_c00110{vertical-align:0.000000pt;}
.v1_c00110{vertical-align:26.880000pt;}
.ls21_c00110{letter-spacing:-0.159616pt;}
.ls13_c00110{letter-spacing:0.000000pt;}
.ls24_c00110{letter-spacing:0.128000pt;}
.ls10_c00110{letter-spacing:0.236160pt;}
.ls4_c00110{letter-spacing:0.262400pt;}
.lsa_c00110{letter-spacing:0.267648pt;}
.ls2e_c00110{letter-spacing:0.283392pt;}
.ls6_c00110{letter-spacing:0.314880pt;}
.ls19_c00110{letter-spacing:0.330624pt;}
.ls26_c00110{letter-spacing:0.377856pt;}
.ls11_c00110{letter-spacing:0.389485pt;}
.ls2d_c00110{letter-spacing:0.438171pt;}
.ls2_c00110{letter-spacing:0.446080pt;}
.ls5_c00110{letter-spacing:0.461824pt;}
.ls7_c00110{letter-spacing:0.467072pt;}
.ls0_c00110{letter-spacing:0.472320pt;}
.ls3_c00110{letter-spacing:0.488064pt;}
.ls1f_c00110{letter-spacing:0.519552pt;}
.ls1c_c00110{letter-spacing:0.614016pt;}
.ls15_c00110{letter-spacing:0.619264pt;}
.ls1_c00110{letter-spacing:0.632913pt;}
.ls17_c00110{letter-spacing:0.661248pt;}
.ls1d_c00110{letter-spacing:0.681599pt;}
.ls2b_c00110{letter-spacing:0.708480pt;}
.lsb_c00110{letter-spacing:0.730284pt;}
.ls16_c00110{letter-spacing:0.855424pt;}
.ls9_c00110{letter-spacing:0.881751pt;}
.ls29_c00110{letter-spacing:1.742336pt;}
.ls28_c00110{letter-spacing:2.230400pt;}
.ls18_c00110{letter-spacing:3.085824pt;}
.ls22_c00110{letter-spacing:3.682304pt;}
.ls1b_c00110{letter-spacing:4.691712pt;}
.ls1a_c00110{letter-spacing:4.696960pt;}
.lsf_c00110{letter-spacing:4.775680pt;}
.ls20_c00110{letter-spacing:4.827264pt;}
.ls23_c00110{letter-spacing:4.857600pt;}
.lse_c00110{letter-spacing:4.864000pt;}
.ls27_c00110{letter-spacing:4.901632pt;}
.ls2a_c00110{letter-spacing:5.284736pt;}
.lsc_c00110{letter-spacing:5.311467pt;}
.lsd_c00110{letter-spacing:5.312000pt;}
.ls8_c00110{letter-spacing:5.352960pt;}
.ls12_c00110{letter-spacing:5.475484pt;}
.ls25_c00110{letter-spacing:5.699328pt;}
.ls2c_c00110{letter-spacing:6.985088pt;}
.ls1e_c00110{letter-spacing:8.181632pt;}
.ls14_c00110{letter-spacing:19.014444pt;}
.wsa_c00110{word-spacing:-23.104000pt;}
.wsd_c00110{word-spacing:-19.491072pt;}
.ws7_c00110{word-spacing:-18.705024pt;}
.ws8_c00110{word-spacing:-17.792000pt;}
.ws4_c00110{word-spacing:-15.920201pt;}
.ws6_c00110{word-spacing:-15.768735pt;}
.ws5_c00110{word-spacing:-15.720049pt;}
.ws1_c00110{word-spacing:-15.671364pt;}
.wse_c00110{word-spacing:-15.476621pt;}
.ws3_c00110{word-spacing:-15.444864pt;}
.ws2_c00110{word-spacing:-15.077504pt;}
.ws0_c00110{word-spacing:-15.061760pt;}
.wsb_c00110{word-spacing:-14.001664pt;}
.ws9_c00110{word-spacing:-10.159744pt;}
.wsc_c00110{word-spacing:-9.024000pt;}
.wsf_c00110{word-spacing:0.000000pt;}
._1_c00110{margin-left:-18.284159pt;}
._c_c00110{margin-left:-8.711680pt;}
._b_c00110{margin-left:-7.504640pt;}
._1a_c00110{margin-left:-6.055744pt;}
._18_c00110{margin-left:-5.146688pt;}
._9_c00110{margin-left:-4.093440pt;}
._6_c00110{margin-left:-3.201280pt;}
._5_c00110{margin-left:-2.046720pt;}
._2_c00110{margin-left:-1.154560pt;}
._4_c00110{width:1.574400pt;}
._3_c00110{width:2.466560pt;}
._a_c00110{width:3.568640pt;}
._7_c00110{width:4.670720pt;}
._8_c00110{width:5.646848pt;}
._10_c00110{width:6.552064pt;}
._d_c00110{width:7.473152pt;}
._e_c00110{width:8.782848pt;}
._13_c00110{width:10.240000pt;}
._15_c00110{width:12.196245pt;}
._14_c00110{width:13.325877pt;}
._19_c00110{width:14.216490pt;}
._11_c00110{width:15.616000pt;}
._0_c00110{width:17.738240pt;}
._f_c00110{width:18.816000pt;}
._16_c00110{width:19.968000pt;}
._12_c00110{width:24.960000pt;}
._17_c00110{width:38.976000pt;}
.fs6_c00110{font-size:32.000000pt;}
.fs5_c00110{font-size:37.120000pt;}
.fs4_c00110{font-size:49.920000pt;}
.fs2_c00110{font-size:52.480000pt;}
.fs7_c00110{font-size:53.333333pt;}
.fs3_c00110{font-size:54.095146pt;}
.fs0_c00110{font-size:64.000000pt;}
.fs1_c00110{font-size:65.969690pt;}
.y0_c00110{bottom:0.000000pt;}
.y38_c00110{bottom:2.773467pt;}
.y37_c00110{bottom:30.884000pt;}
.y1_c00110{bottom:48.000000pt;}
.y35_c00110{bottom:49.316480pt;}
.y36_c00110{bottom:49.320000pt;}
.y34_c00110{bottom:64.680000pt;}
.y33_c00110{bottom:70.120000pt;}
.y32_c00110{bottom:80.360000pt;}
.y31_c00110{bottom:85.800000pt;}
.y30_c00110{bottom:101.160000pt;}
.y2f_c00110{bottom:111.401600pt;}
.y2e_c00110{bottom:132.520000pt;}
.y2d_c00110{bottom:147.880000pt;}
.y2c_c00110{bottom:158.121600pt;}
.y2b_c00110{bottom:179.240000pt;}
.y2a_c00110{bottom:189.158080pt;}
.y29_c00110{bottom:204.836480pt;}
.y28_c00110{bottom:225.640000pt;}
.y27_c00110{bottom:249.320000pt;}
.y26_c00110{bottom:271.080000pt;}
.y25_c00110{bottom:289.640000pt;}
.y24_c00110{bottom:308.200000pt;}
.y23_c00110{bottom:327.080000pt;}
.y22_c00110{bottom:345.640000pt;}
.y21_c00110{bottom:364.200000pt;}
.y20_c00110{bottom:383.080000pt;}
.y1f_c00110{bottom:401.640000pt;}
.y1e_c00110{bottom:433.640000pt;}
.y1d_c00110{bottom:452.200000pt;}
.y1c_c00110{bottom:471.080000pt;}
.y1b_c00110{bottom:489.640000pt;}
.y1a_c00110{bottom:508.200000pt;}
.y19_c00110{bottom:527.080000pt;}
.y18_c00110{bottom:545.640000pt;}
.y17_c00110{bottom:564.200000pt;}
.y16_c00110{bottom:583.080000pt;}
.y15_c00110{bottom:601.640000pt;}
.y14_c00110{bottom:633.640000pt;}
.y13_c00110{bottom:652.520000pt;}
.y12_c00110{bottom:671.080000pt;}
.y11_c00110{bottom:689.640000pt;}
.y10_c00110{bottom:708.520000pt;}
.yf_c00110{bottom:727.080000pt;}
.ye_c00110{bottom:745.640000pt;}
.yd_c00110{bottom:777.640000pt;}
.yc_c00110{bottom:809.640000pt;}
.yb_c00110{bottom:828.198080pt;}
.ya_c00110{bottom:843.876480pt;}
.y9_c00110{bottom:859.240000pt;}
.y8_c00110{bottom:888.040000pt;}
.y7_c00110{bottom:903.720000pt;}
.y6_c00110{bottom:919.396347pt;}
.y5_c00110{bottom:934.759867pt;}
.y4_c00110{bottom:951.080000pt;}
.y3_c00110{bottom:966.759867pt;}
.y2_c00110{bottom:1011.880000pt;}
.h9_c00110{height:17.116000pt;}
.h8_c00110{height:28.992000pt;}
.ha_c00110{height:41.173333pt;}
.h6_c00110{height:41.761453pt;}
.h5_c00110{height:47.546880pt;}
.h4_c00110{height:50.928601pt;}
.h3_c00110{height:57.984000pt;}
.h7_c00110{height:60.510720pt;}
.h2_c00110{height:1067.880000pt;}
.h0_c00110{height:1122.520000pt;}
.h1_c00110{height:1122.666667pt;}
.w5_c00110{width:14.826667pt;}
.w3_c00110{width:40.000000pt;}
.w4_c00110{width:232.640000pt;}
.w2_c00110{width:767.960000pt;}
.w0_c00110{width:793.720000pt;}
.w1_c00110{width:794.000000pt;}
.x0_c00110{left:0.000000pt;}
.x6_c00110{left:7.040133pt;}
.x1_c00110{left:12.880000pt;}
.x2_c00110{left:100.480133pt;}
.x5_c00110{left:106.320000pt;}
.x8_c00110{left:111.605467pt;}
.x1e_c00110{left:113.082400pt;}
.x13_c00110{left:118.252933pt;}
.x3_c00110{left:133.343733pt;}
.xe_c00110{left:139.012667pt;}
.x16_c00110{left:141.731733pt;}
.x9_c00110{left:142.684800pt;}
.x1f_c00110{left:151.614933pt;}
.xa_c00110{left:184.302000pt;}
.x4_c00110{left:195.982800pt;}
.xf_c00110{left:199.050133pt;}
.xb_c00110{left:225.906533pt;}
.x10_c00110{left:230.889600pt;}
.x15_c00110{left:285.651733pt;}
.x19_c00110{left:290.918000pt;}
.x22_c00110{left:348.724267pt;}
.x23_c00110{left:362.056933pt;}
.x1c_c00110{left:380.051067pt;}
.x1d_c00110{left:422.219467pt;}
.xc_c00110{left:432.097333pt;}
.x20_c00110{left:448.490267pt;}
.x7_c00110{left:453.840000pt;}
.xd_c00110{left:463.950267pt;}
.x11_c00110{left:473.960667pt;}
.x21_c00110{left:478.862533pt;}
.x1a_c00110{left:501.339467pt;}
.x17_c00110{left:504.481733pt;}
.x12_c00110{left:508.746400pt;}
.x1b_c00110{left:511.115200pt;}
.x18_c00110{left:541.793200pt;}
.x14_c00110{left:588.606800pt;}
.x24_c00110{left:682.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_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_4c244dcca39726083e4b6218.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.134000;font-style:normal;font-weight:normal;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_0ec8d510f244ee30e6e7b0bc.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;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:ff3_c00111;src:url('chunks/assets/font_1cf7ce01e9b89690125415cf.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:0.787000;font-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_c00111{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v1_c00111{vertical-align:-30.240000px;}
.v3_c00111{vertical-align:-24.480000px;}
.v0_c00111{vertical-align:0.000000px;}
.v2_c00111{vertical-align:30.240000px;}
.ls5_c00111{letter-spacing:-0.179568px;}
.ls4_c00111{letter-spacing:0.000000px;}
.ls8_c00111{letter-spacing:0.144000px;}
.ls9_c00111{letter-spacing:0.265680px;}
.ls1_c00111{letter-spacing:0.531360px;}
.lsa_c00111{letter-spacing:0.766799px;}
.lsb_c00111{letter-spacing:4.947552px;}
.ls7_c00111{letter-spacing:5.335200px;}
.ls2_c00111{letter-spacing:5.976000px;}
.ls0_c00111{letter-spacing:6.006600px;}
.ls3_c00111{letter-spacing:6.159920px;}
.ls6_c00111{letter-spacing:29.368800px;}
.sc__c00111{text-shadow:none;}
.sc1_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00111{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc1_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00111{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00111{word-spacing:-20.947680px;}
.ws3_c00111{word-spacing:-17.685056px;}
.ws0_c00111{word-spacing:-11.429712px;}
.ws2_c00111{word-spacing:-10.152000px;}
.ws4_c00111{word-spacing:0.000000px;}
._8_c00111{margin-left:-29.361600px;}
._c_c00111{margin-left:-4.538880px;}
._d_c00111{margin-left:-3.487392px;}
._e_c00111{margin-left:-1.003680px;}
._1_c00111{width:1.113239px;}
._9_c00111{width:2.592000px;}
._4_c00111{width:4.248000px;}
._a_c00111{width:5.256000px;}
._2_c00111{width:6.264000px;}
._0_c00111{width:7.704000px;}
._5_c00111{width:10.440000px;}
._b_c00111{width:18.864000px;}
._6_c00111{width:21.024000px;}
._3_c00111{width:24.552000px;}
._7_c00111{width:29.376000px;}
.fc0_c00111{color:rgb(0,0,0);}
.fs4_c00111{font-size:36.000000px;}
.fs2_c00111{font-size:41.760000px;}
.fs3_c00111{font-size:56.160000px;}
.fs5_c00111{font-size:59.040000px;}
.fs7_c00111{font-size:60.000000px;}
.fs6_c00111{font-size:60.857039px;}
.fs0_c00111{font-size:72.000000px;}
.fs1_c00111{font-size:74.215901px;}
.y0_c00111{bottom:0.000000px;}
.y25_c00111{bottom:3.120150px;}
.y24_c00111{bottom:34.744500px;}
.y1_c00111{bottom:54.000000px;}
.y23_c00111{bottom:55.481040px;}
.y22_c00111{bottom:78.885000px;}
.y21_c00111{bottom:90.405000px;}
.y20_c00111{bottom:96.525000px;}
.y1f_c00111{bottom:107.685000px;}
.y1e_c00111{bottom:113.805000px;}
.y1d_c00111{bottom:140.445000px;}
.y1c_c00111{bottom:460.845000px;}
.y1b_c00111{bottom:496.845000px;}
.y1a_c00111{bottom:532.845000px;}
.y19_c00111{bottom:553.725000px;}
.y18_c00111{bottom:574.965000px;}
.y17_c00111{bottom:595.845000px;}
.y16_c00111{bottom:631.845000px;}
.y15_c00111{bottom:667.845000px;}
.y14_c00111{bottom:703.845000px;}
.y13_c00111{bottom:725.085000px;}
.y12_c00111{bottom:745.965000px;}
.y11_c00111{bottom:766.845000px;}
.y10_c00111{bottom:788.085000px;}
.yf_c00111{bottom:808.965000px;}
.ye_c00111{bottom:829.845000px;}
.yd_c00111{bottom:865.845000px;}
.yc_c00111{bottom:887.085000px;}
.ya_c00111{bottom:907.965000px;}
.yb_c00111{bottom:915.525000px;}
.y9_c00111{bottom:928.845000px;}
.y8_c00111{bottom:964.845000px;}
.y7_c00111{bottom:986.085000px;}
.y6_c00111{bottom:1006.965000px;}
.y5_c00111{bottom:1027.845000px;}
.y4_c00111{bottom:1063.845000px;}
.y3_c00111{bottom:1085.085000px;}
.y2_c00111{bottom:1138.365000px;}
.ha_c00111{height:19.255500px;}
.h7_c00111{height:32.616000px;}
.h5_c00111{height:37.834560px;}
.hb_c00111{height:46.320000px;}
.h8_c00111{height:46.981634px;}
.h9_c00111{height:53.490240px;}
.h4_c00111{height:57.294676px;}
.h3_c00111{height:65.232000px;}
.h6_c00111{height:68.074560px;}
.h2_c00111{height:1201.365000px;}
.h0_c00111{height:1262.835000px;}
.h1_c00111{height:1263.000000px;}
.w3_c00111{width:16.680000px;}
.w2_c00111{width:863.955000px;}
.w0_c00111{width:892.935000px;}
.w1_c00111{width:893.250000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:14.490000px;}
.x2_c00111{left:113.040150px;}
.x18_c00111{left:127.217700px;}
.x3_c00111{left:150.011700px;}
.x4_c00111{left:220.480650px;}
.x17_c00111{left:278.082600px;}
.xd_c00111{left:290.547300px;}
.x6_c00111{left:293.665200px;}
.x7_c00111{left:358.751250px;}
.x8_c00111{left:369.820350px;}
.xe_c00111{left:380.886150px;}
.x5_c00111{left:413.870400px;}
.x9_c00111{left:428.011200px;}
.xf_c00111{left:440.697150px;}
.x13_c00111{left:499.080000px;}
.x10_c00111{left:503.696400px;}
.x14_c00111{left:548.057400px;}
.xa_c00111{left:549.325950px;}
.x15_c00111{left:558.065100px;}
.x11_c00111{left:593.202750px;}
.x16_c00111{left:609.040350px;}
.xb_c00111{left:644.470800px;}
.x12_c00111{left:651.215700px;}
.xc_c00111{left:714.600000px;}
.x19_c00111{left:768.255000px;}
@media print{
.v1_c00111{vertical-align:-26.880000pt;}
.v3_c00111{vertical-align:-21.760000pt;}
.v0_c00111{vertical-align:0.000000pt;}
.v2_c00111{vertical-align:26.880000pt;}
.ls5_c00111{letter-spacing:-0.159616pt;}
.ls4_c00111{letter-spacing:0.000000pt;}
.ls8_c00111{letter-spacing:0.128000pt;}
.ls9_c00111{letter-spacing:0.236160pt;}
.ls1_c00111{letter-spacing:0.472320pt;}
.lsa_c00111{letter-spacing:0.681599pt;}
.lsb_c00111{letter-spacing:4.397824pt;}
.ls7_c00111{letter-spacing:4.742400pt;}
.ls2_c00111{letter-spacing:5.312000pt;}
.ls0_c00111{letter-spacing:5.339200pt;}
.ls3_c00111{letter-spacing:5.475484pt;}
.ls6_c00111{letter-spacing:26.105600pt;}
.ws1_c00111{word-spacing:-18.620160pt;}
.ws3_c00111{word-spacing:-15.720049pt;}
.ws0_c00111{word-spacing:-10.159744pt;}
.ws2_c00111{word-spacing:-9.024000pt;}
.ws4_c00111{word-spacing:0.000000pt;}
._8_c00111{margin-left:-26.099200pt;}
._c_c00111{margin-left:-4.034560pt;}
._d_c00111{margin-left:-3.099904pt;}
._e_c00111{margin-left:-0.892160pt;}
._1_c00111{width:0.989545pt;}
._9_c00111{width:2.304000pt;}
._4_c00111{width:3.776000pt;}
._a_c00111{width:4.672000pt;}
._2_c00111{width:5.568000pt;}
._0_c00111{width:6.848000pt;}
._5_c00111{width:9.280000pt;}
._b_c00111{width:16.768000pt;}
._6_c00111{width:18.688000pt;}
._3_c00111{width:21.824000pt;}
._7_c00111{width:26.112000pt;}
.fs4_c00111{font-size:32.000000pt;}
.fs2_c00111{font-size:37.120000pt;}
.fs3_c00111{font-size:49.920000pt;}
.fs5_c00111{font-size:52.480000pt;}
.fs7_c00111{font-size:53.333333pt;}
.fs6_c00111{font-size:54.095146pt;}
.fs0_c00111{font-size:64.000000pt;}
.fs1_c00111{font-size:65.969690pt;}
.y0_c00111{bottom:0.000000pt;}
.y25_c00111{bottom:2.773467pt;}
.y24_c00111{bottom:30.884000pt;}
.y1_c00111{bottom:48.000000pt;}
.y23_c00111{bottom:49.316480pt;}
.y22_c00111{bottom:70.120000pt;}
.y21_c00111{bottom:80.360000pt;}
.y20_c00111{bottom:85.800000pt;}
.y1f_c00111{bottom:95.720000pt;}
.y1e_c00111{bottom:101.160000pt;}
.y1d_c00111{bottom:124.840000pt;}
.y1c_c00111{bottom:409.640000pt;}
.y1b_c00111{bottom:441.640000pt;}
.y1a_c00111{bottom:473.640000pt;}
.y19_c00111{bottom:492.200000pt;}
.y18_c00111{bottom:511.080000pt;}
.y17_c00111{bottom:529.640000pt;}
.y16_c00111{bottom:561.640000pt;}
.y15_c00111{bottom:593.640000pt;}
.y14_c00111{bottom:625.640000pt;}
.y13_c00111{bottom:644.520000pt;}
.y12_c00111{bottom:663.080000pt;}
.y11_c00111{bottom:681.640000pt;}
.y10_c00111{bottom:700.520000pt;}
.yf_c00111{bottom:719.080000pt;}
.ye_c00111{bottom:737.640000pt;}
.yd_c00111{bottom:769.640000pt;}
.yc_c00111{bottom:788.520000pt;}
.ya_c00111{bottom:807.080000pt;}
.yb_c00111{bottom:813.800000pt;}
.y9_c00111{bottom:825.640000pt;}
.y8_c00111{bottom:857.640000pt;}
.y7_c00111{bottom:876.520000pt;}
.y6_c00111{bottom:895.080000pt;}
.y5_c00111{bottom:913.640000pt;}
.y4_c00111{bottom:945.640000pt;}
.y3_c00111{bottom:964.520000pt;}
.y2_c00111{bottom:1011.880000pt;}
.ha_c00111{height:17.116000pt;}
.h7_c00111{height:28.992000pt;}
.h5_c00111{height:33.630720pt;}
.hb_c00111{height:41.173333pt;}
.h8_c00111{height:41.761453pt;}
.h9_c00111{height:47.546880pt;}
.h4_c00111{height:50.928601pt;}
.h3_c00111{height:57.984000pt;}
.h6_c00111{height:60.510720pt;}
.h2_c00111{height:1067.880000pt;}
.h0_c00111{height:1122.520000pt;}
.h1_c00111{height:1122.666667pt;}
.w3_c00111{width:14.826667pt;}
.w2_c00111{width:767.960000pt;}
.w0_c00111{width:793.720000pt;}
.w1_c00111{width:794.000000pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:12.880000pt;}
.x2_c00111{left:100.480133pt;}
.x18_c00111{left:113.082400pt;}
.x3_c00111{left:133.343733pt;}
.x4_c00111{left:195.982800pt;}
.x17_c00111{left:247.184533pt;}
.xd_c00111{left:258.264267pt;}
.x6_c00111{left:261.035733pt;}
.x7_c00111{left:318.890000pt;}
.x8_c00111{left:328.729200pt;}
.xe_c00111{left:338.565467pt;}
.x5_c00111{left:367.884800pt;}
.x9_c00111{left:380.454400pt;}
.xf_c00111{left:391.730800pt;}
.x13_c00111{left:443.626667pt;}
.x10_c00111{left:447.730133pt;}
.x14_c00111{left:487.162133pt;}
.xa_c00111{left:488.289733pt;}
.x15_c00111{left:496.057867pt;}
.x11_c00111{left:527.291333pt;}
.x16_c00111{left:541.369200pt;}
.xb_c00111{left:572.862933pt;}
.x12_c00111{left:578.858400pt;}
.xc_c00111{left:635.200000pt;}
.x19_c00111{left:682.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_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_712f70cf897ebf2e10eda82b.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;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_c00112;src:url('chunks/assets/font_4db87268db045ec78226d7a5.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:0.787000;font-style:normal;font-weight:normal;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_568ca3b93883d1f6b8f9ae7b.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:0.787000;font-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_c00112{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00112{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls4_c00112{letter-spacing:0.000000px;}
.ls6_c00112{letter-spacing:0.202464px;}
.ls9_c00112{letter-spacing:0.239760px;}
.ls5_c00112{letter-spacing:0.362304px;}
.ls0_c00112{letter-spacing:0.399600px;}
.ls1_c00112{letter-spacing:0.399720px;}
.ls7_c00112{letter-spacing:0.532722px;}
.ls8_c00112{letter-spacing:0.559440px;}
.ls2_c00112{letter-spacing:5.976000px;}
.ls3_c00112{letter-spacing:6.159920px;}
.sc__c00112{text-shadow:none;}
.sc1_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00112{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc1_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00112{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00112{word-spacing:-15.800417px;}
.ws0_c00112{word-spacing:-15.211440px;}
.ws2_c00112{word-spacing:0.000000px;}
._1_c00112{margin-left:-1.098395px;}
._0_c00112{width:1.003464px;}
.fc1_c00112{color:transparent;}
.fc0_c00112{color:rgb(0,0,0);}
.fs2_c00112{font-size:53.280000px;}
.fs3_c00112{font-size:54.919767px;}
.fs4_c00112{font-size:60.000000px;}
.fs0_c00112{font-size:72.000000px;}
.fs1_c00112{font-size:74.215901px;}
.y21_c00112{bottom:-12.960000px;}
.y0_c00112{bottom:0.000000px;}
.y26_c00112{bottom:3.120150px;}
.y23_c00112{bottom:14.400000px;}
.y20_c00112{bottom:22.680000px;}
.y25_c00112{bottom:34.744500px;}
.y1_c00112{bottom:54.000000px;}
.y1e_c00112{bottom:112.725000px;}
.y1f_c00112{bottom:131.445000px;}
.y1d_c00112{bottom:148.725000px;}
.y1c_c00112{bottom:184.725000px;}
.y1b_c00112{bottom:220.725000px;}
.y1a_c00112{bottom:256.725000px;}
.y19_c00112{bottom:292.725000px;}
.y18_c00112{bottom:328.725000px;}
.y17_c00112{bottom:364.725000px;}
.y16_c00112{bottom:400.725000px;}
.y15_c00112{bottom:436.725000px;}
.y14_c00112{bottom:472.725000px;}
.y24_c00112{bottom:508.365000px;}
.y13_c00112{bottom:509.085000px;}
.y12_c00112{bottom:545.085000px;}
.y11_c00112{bottom:581.085000px;}
.y10_c00112{bottom:617.085000px;}
.yf_c00112{bottom:653.085000px;}
.ye_c00112{bottom:689.085000px;}
.yd_c00112{bottom:725.085000px;}
.yc_c00112{bottom:761.085000px;}
.yb_c00112{bottom:797.085000px;}
.y22_c00112{bottom:830.925000px;}
.ya_c00112{bottom:833.085000px;}
.y9_c00112{bottom:869.085000px;}
.y8_c00112{bottom:905.085000px;}
.y7_c00112{bottom:941.085000px;}
.y6_c00112{bottom:977.085000px;}
.y5_c00112{bottom:1013.085000px;}
.y4_c00112{bottom:1049.085000px;}
.y3_c00112{bottom:1085.085000px;}
.y2_c00112{bottom:1138.365000px;}
.h9_c00112{height:19.255500px;}
.h8_c00112{height:27.000000px;}
.h5_c00112{height:35.280000px;}
.h6_c00112{height:41.132160px;}
.h7_c00112{height:42.398060px;}
.ha_c00112{height:46.320000px;}
.h3_c00112{height:55.584000px;}
.h4_c00112{height:57.294676px;}
.h2_c00112{height:1201.365000px;}
.h0_c00112{height:1262.835000px;}
.h1_c00112{height:1263.000000px;}
.w6_c00112{width:25.020000px;}
.w5_c00112{width:598.680000px;}
.w4_c00112{width:627.840000px;}
.w3_c00112{width:654.480000px;}
.w2_c00112{width:863.955000px;}
.w0_c00112{width:892.935000px;}
.w1_c00112{width:893.250000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:14.490000px;}
.xd_c00112{left:22.996800px;}
.x6_c00112{left:28.259250px;}
.x2_c00112{left:113.040150px;}
.xa_c00112{left:123.210000px;}
.x5_c00112{left:124.650000px;}
.xc_c00112{left:126.450000px;}
.xe_c00112{left:131.035200px;}
.x7_c00112{left:136.297800px;}
.x3_c00112{left:150.011700px;}
.xb_c00112{left:171.858750px;}
.xf_c00112{left:176.043300px;}
.x8_c00112{left:185.058750px;}
.x4_c00112{left:220.480650px;}
.x9_c00112{left:327.014850px;}
.x10_c00112{left:759.915000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls4_c00112{letter-spacing:0.000000pt;}
.ls6_c00112{letter-spacing:0.179968pt;}
.ls9_c00112{letter-spacing:0.213120pt;}
.ls5_c00112{letter-spacing:0.322048pt;}
.ls0_c00112{letter-spacing:0.355200pt;}
.ls1_c00112{letter-spacing:0.355307pt;}
.ls7_c00112{letter-spacing:0.473530pt;}
.ls8_c00112{letter-spacing:0.497280pt;}
.ls2_c00112{letter-spacing:5.312000pt;}
.ls3_c00112{letter-spacing:5.475484pt;}
.ws1_c00112{word-spacing:-14.044815pt;}
.ws0_c00112{word-spacing:-13.521280pt;}
.ws2_c00112{word-spacing:0.000000pt;}
._1_c00112{margin-left:-0.976351pt;}
._0_c00112{width:0.891968pt;}
.fs2_c00112{font-size:47.360000pt;}
.fs3_c00112{font-size:48.817571pt;}
.fs4_c00112{font-size:53.333333pt;}
.fs0_c00112{font-size:64.000000pt;}
.fs1_c00112{font-size:65.969690pt;}
.y21_c00112{bottom:-11.520000pt;}
.y0_c00112{bottom:0.000000pt;}
.y26_c00112{bottom:2.773467pt;}
.y23_c00112{bottom:12.800000pt;}
.y20_c00112{bottom:20.160000pt;}
.y25_c00112{bottom:30.884000pt;}
.y1_c00112{bottom:48.000000pt;}
.y1e_c00112{bottom:100.200000pt;}
.y1f_c00112{bottom:116.840000pt;}
.y1d_c00112{bottom:132.200000pt;}
.y1c_c00112{bottom:164.200000pt;}
.y1b_c00112{bottom:196.200000pt;}
.y1a_c00112{bottom:228.200000pt;}
.y19_c00112{bottom:260.200000pt;}
.y18_c00112{bottom:292.200000pt;}
.y17_c00112{bottom:324.200000pt;}
.y16_c00112{bottom:356.200000pt;}
.y15_c00112{bottom:388.200000pt;}
.y14_c00112{bottom:420.200000pt;}
.y24_c00112{bottom:451.880000pt;}
.y13_c00112{bottom:452.520000pt;}
.y12_c00112{bottom:484.520000pt;}
.y11_c00112{bottom:516.520000pt;}
.y10_c00112{bottom:548.520000pt;}
.yf_c00112{bottom:580.520000pt;}
.ye_c00112{bottom:612.520000pt;}
.yd_c00112{bottom:644.520000pt;}
.yc_c00112{bottom:676.520000pt;}
.yb_c00112{bottom:708.520000pt;}
.y22_c00112{bottom:738.600000pt;}
.ya_c00112{bottom:740.520000pt;}
.y9_c00112{bottom:772.520000pt;}
.y8_c00112{bottom:804.520000pt;}
.y7_c00112{bottom:836.520000pt;}
.y6_c00112{bottom:868.520000pt;}
.y5_c00112{bottom:900.520000pt;}
.y4_c00112{bottom:932.520000pt;}
.y3_c00112{bottom:964.520000pt;}
.y2_c00112{bottom:1011.880000pt;}
.h9_c00112{height:17.116000pt;}
.h8_c00112{height:24.000000pt;}
.h5_c00112{height:31.360000pt;}
.h6_c00112{height:36.561920pt;}
.h7_c00112{height:37.687165pt;}
.ha_c00112{height:41.173333pt;}
.h3_c00112{height:49.408000pt;}
.h4_c00112{height:50.928601pt;}
.h2_c00112{height:1067.880000pt;}
.h0_c00112{height:1122.520000pt;}
.h1_c00112{height:1122.666667pt;}
.w6_c00112{width:22.240000pt;}
.w5_c00112{width:532.160000pt;}
.w4_c00112{width:558.080000pt;}
.w3_c00112{width:581.760000pt;}
.w2_c00112{width:767.960000pt;}
.w0_c00112{width:793.720000pt;}
.w1_c00112{width:794.000000pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:12.880000pt;}
.xd_c00112{left:20.441600pt;}
.x6_c00112{left:25.119333pt;}
.x2_c00112{left:100.480133pt;}
.xa_c00112{left:109.520000pt;}
.x5_c00112{left:110.800000pt;}
.xc_c00112{left:112.400000pt;}
.xe_c00112{left:116.475733pt;}
.x7_c00112{left:121.153600pt;}
.x3_c00112{left:133.343733pt;}
.xb_c00112{left:152.763333pt;}
.xf_c00112{left:156.482933pt;}
.x8_c00112{left:164.496667pt;}
.x4_c00112{left:195.982800pt;}
.x9_c00112{left:290.679867pt;}
.x10_c00112{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02a820ba16cb9c6a07b49b7a.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;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_c00113;src:url('chunks/assets/font_4db87268db045ec78226d7a5.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:0.787000;font-style:normal;font-weight:normal;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_568ca3b93883d1f6b8f9ae7b.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:0.787000;font-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_c00113{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00113{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls5_c00113{letter-spacing:0.000000px;}
.ls6_c00113{letter-spacing:0.202464px;}
.ls2_c00113{letter-spacing:0.238560px;}
.lsa_c00113{letter-spacing:0.239760px;}
.ls8_c00113{letter-spacing:0.319680px;}
.ls0_c00113{letter-spacing:0.399600px;}
.ls1_c00113{letter-spacing:0.399720px;}
.ls7_c00113{letter-spacing:0.532722px;}
.ls9_c00113{letter-spacing:0.559440px;}
.ls3_c00113{letter-spacing:5.976000px;}
.ls4_c00113{letter-spacing:6.159920px;}
.sc__c00113{text-shadow:none;}
.sc2_c00113{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00113{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc2_c00113{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00113{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00113{word-spacing:-15.800417px;}
.ws0_c00113{word-spacing:-15.211440px;}
.ws2_c00113{word-spacing:0.000000px;}
._0_c00113{margin-left:-1.098395px;}
._1_c00113{width:1.078560px;}
.fc2_c00113{color:transparent;}
.fc1_c00113{color:rgb(79,129,189);}
.fc0_c00113{color:rgb(0,0,0);}
.fs2_c00113{font-size:53.280000px;}
.fs3_c00113{font-size:54.919767px;}
.fs4_c00113{font-size:60.000000px;}
.fs0_c00113{font-size:72.000000px;}
.fs1_c00113{font-size:74.215901px;}
.y25_c00113{bottom:-16.560000px;}
.y0_c00113{bottom:0.000000px;}
.y29_c00113{bottom:3.120150px;}
.y22_c00113{bottom:10.440000px;}
.y24_c00113{bottom:14.400000px;}
.y28_c00113{bottom:34.744500px;}
.y27_c00113{bottom:41.040000px;}
.y21_c00113{bottom:41.400000px;}
.y1_c00113{bottom:54.000000px;}
.y20_c00113{bottom:76.365000px;}
.y1f_c00113{bottom:76.725000px;}
.y1e_c00113{bottom:112.725000px;}
.y1d_c00113{bottom:148.725000px;}
.y1c_c00113{bottom:184.725000px;}
.y1b_c00113{bottom:220.725000px;}
.y1a_c00113{bottom:256.725000px;}
.y19_c00113{bottom:292.725000px;}
.y18_c00113{bottom:328.725000px;}
.y17_c00113{bottom:364.725000px;}
.y16_c00113{bottom:400.725000px;}
.y15_c00113{bottom:436.725000px;}
.y23_c00113{bottom:454.365000px;}
.y14_c00113{bottom:472.725000px;}
.y13_c00113{bottom:509.085000px;}
.y12_c00113{bottom:545.085000px;}
.y11_c00113{bottom:581.085000px;}
.y10_c00113{bottom:617.085000px;}
.yf_c00113{bottom:653.085000px;}
.ye_c00113{bottom:689.085000px;}
.yd_c00113{bottom:725.085000px;}
.yc_c00113{bottom:761.085000px;}
.y26_c00113{bottom:778.725000px;}
.yb_c00113{bottom:797.085000px;}
.ya_c00113{bottom:833.085000px;}
.y9_c00113{bottom:869.085000px;}
.y8_c00113{bottom:905.085000px;}
.y7_c00113{bottom:941.085000px;}
.y6_c00113{bottom:977.085000px;}
.y5_c00113{bottom:1013.085000px;}
.y4_c00113{bottom:1049.085000px;}
.y3_c00113{bottom:1085.085000px;}
.y2_c00113{bottom:1138.365000px;}
.ha_c00113{height:19.255500px;}
.h8_c00113{height:27.000000px;}
.h6_c00113{height:41.132160px;}
.h7_c00113{height:42.398060px;}
.hb_c00113{height:46.320000px;}
.h9_c00113{height:53.640000px;}
.h5_c00113{height:54.000000px;}
.h3_c00113{height:55.584000px;}
.h4_c00113{height:57.294676px;}
.h2_c00113{height:1201.365000px;}
.h0_c00113{height:1262.835000px;}
.h1_c00113{height:1263.000000px;}
.w6_c00113{width:25.020000px;}
.w4_c00113{width:598.680000px;}
.w5_c00113{width:600.120000px;}
.w3_c00113{width:654.840000px;}
.w2_c00113{width:863.955000px;}
.w0_c00113{width:892.935000px;}
.w1_c00113{width:893.250000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:14.490000px;}
.xb_c00113{left:19.308300px;}
.xf_c00113{left:23.574000px;}
.x6_c00113{left:34.076250px;}
.x2_c00113{left:113.040150px;}
.x5_c00113{left:124.290000px;}
.xc_c00113{left:127.346700px;}
.x10_c00113{left:131.612550px;}
.x7_c00113{left:142.114650px;}
.x3_c00113{left:150.011700px;}
.xa_c00113{left:153.450000px;}
.xd_c00113{left:172.354800px;}
.x11_c00113{left:176.620500px;}
.x8_c00113{left:190.875600px;}
.x4_c00113{left:220.480650px;}
.xe_c00113{left:299.475000px;}
.x9_c00113{left:327.202350px;}
.x12_c00113{left:759.915000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls5_c00113{letter-spacing:0.000000pt;}
.ls6_c00113{letter-spacing:0.179968pt;}
.ls2_c00113{letter-spacing:0.212053pt;}
.lsa_c00113{letter-spacing:0.213120pt;}
.ls8_c00113{letter-spacing:0.284160pt;}
.ls0_c00113{letter-spacing:0.355200pt;}
.ls1_c00113{letter-spacing:0.355307pt;}
.ls7_c00113{letter-spacing:0.473530pt;}
.ls9_c00113{letter-spacing:0.497280pt;}
.ls3_c00113{letter-spacing:5.312000pt;}
.ls4_c00113{letter-spacing:5.475484pt;}
.ws1_c00113{word-spacing:-14.044815pt;}
.ws0_c00113{word-spacing:-13.521280pt;}
.ws2_c00113{word-spacing:0.000000pt;}
._0_c00113{margin-left:-0.976351pt;}
._1_c00113{width:0.958720pt;}
.fs2_c00113{font-size:47.360000pt;}
.fs3_c00113{font-size:48.817571pt;}
.fs4_c00113{font-size:53.333333pt;}
.fs0_c00113{font-size:64.000000pt;}
.fs1_c00113{font-size:65.969690pt;}
.y25_c00113{bottom:-14.720000pt;}
.y0_c00113{bottom:0.000000pt;}
.y29_c00113{bottom:2.773467pt;}
.y22_c00113{bottom:9.280000pt;}
.y24_c00113{bottom:12.800000pt;}
.y28_c00113{bottom:30.884000pt;}
.y27_c00113{bottom:36.480000pt;}
.y21_c00113{bottom:36.800000pt;}
.y1_c00113{bottom:48.000000pt;}
.y20_c00113{bottom:67.880000pt;}
.y1f_c00113{bottom:68.200000pt;}
.y1e_c00113{bottom:100.200000pt;}
.y1d_c00113{bottom:132.200000pt;}
.y1c_c00113{bottom:164.200000pt;}
.y1b_c00113{bottom:196.200000pt;}
.y1a_c00113{bottom:228.200000pt;}
.y19_c00113{bottom:260.200000pt;}
.y18_c00113{bottom:292.200000pt;}
.y17_c00113{bottom:324.200000pt;}
.y16_c00113{bottom:356.200000pt;}
.y15_c00113{bottom:388.200000pt;}
.y23_c00113{bottom:403.880000pt;}
.y14_c00113{bottom:420.200000pt;}
.y13_c00113{bottom:452.520000pt;}
.y12_c00113{bottom:484.520000pt;}
.y11_c00113{bottom:516.520000pt;}
.y10_c00113{bottom:548.520000pt;}
.yf_c00113{bottom:580.520000pt;}
.ye_c00113{bottom:612.520000pt;}
.yd_c00113{bottom:644.520000pt;}
.yc_c00113{bottom:676.520000pt;}
.y26_c00113{bottom:692.200000pt;}
.yb_c00113{bottom:708.520000pt;}
.ya_c00113{bottom:740.520000pt;}
.y9_c00113{bottom:772.520000pt;}
.y8_c00113{bottom:804.520000pt;}
.y7_c00113{bottom:836.520000pt;}
.y6_c00113{bottom:868.520000pt;}
.y5_c00113{bottom:900.520000pt;}
.y4_c00113{bottom:932.520000pt;}
.y3_c00113{bottom:964.520000pt;}
.y2_c00113{bottom:1011.880000pt;}
.ha_c00113{height:17.116000pt;}
.h8_c00113{height:24.000000pt;}
.h6_c00113{height:36.561920pt;}
.h7_c00113{height:37.687165pt;}
.hb_c00113{height:41.173333pt;}
.h9_c00113{height:47.680000pt;}
.h5_c00113{height:48.000000pt;}
.h3_c00113{height:49.408000pt;}
.h4_c00113{height:50.928601pt;}
.h2_c00113{height:1067.880000pt;}
.h0_c00113{height:1122.520000pt;}
.h1_c00113{height:1122.666667pt;}
.w6_c00113{width:22.240000pt;}
.w4_c00113{width:532.160000pt;}
.w5_c00113{width:533.440000pt;}
.w3_c00113{width:582.080000pt;}
.w2_c00113{width:767.960000pt;}
.w0_c00113{width:793.720000pt;}
.w1_c00113{width:794.000000pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:12.880000pt;}
.xb_c00113{left:17.162933pt;}
.xf_c00113{left:20.954667pt;}
.x6_c00113{left:30.290000pt;}
.x2_c00113{left:100.480133pt;}
.x5_c00113{left:110.480000pt;}
.xc_c00113{left:113.197067pt;}
.x10_c00113{left:116.988933pt;}
.x7_c00113{left:126.324133pt;}
.x3_c00113{left:133.343733pt;}
.xa_c00113{left:136.400000pt;}
.xd_c00113{left:153.204267pt;}
.x11_c00113{left:156.996000pt;}
.x8_c00113{left:169.667200pt;}
.x4_c00113{left:195.982800pt;}
.xe_c00113{left:266.200000pt;}
.x9_c00113{left:290.846533pt;}
.x12_c00113{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd6da1766f5dee129588ed26.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;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_c00114;src:url('chunks/assets/font_2fdec30d86e35cec87803e2b.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:0.787000;font-style:normal;font-weight:normal;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_59301a1f3a012e98c91a90a6.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:0.787000;font-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_c00114{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00114{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls3_c00114{letter-spacing:0.000000px;}
.ls4_c00114{letter-spacing:0.202464px;}
.ls8_c00114{letter-spacing:0.239760px;}
.ls6_c00114{letter-spacing:0.319680px;}
.ls0_c00114{letter-spacing:0.399600px;}
.ls5_c00114{letter-spacing:0.532722px;}
.ls7_c00114{letter-spacing:0.559440px;}
.ls1_c00114{letter-spacing:5.976000px;}
.ls2_c00114{letter-spacing:6.159920px;}
.sc__c00114{text-shadow:none;}
.sc1_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00114{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc1_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00114{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00114{word-spacing:-15.211440px;}
.ws1_c00114{word-spacing:0.000000px;}
._0_c00114{margin-left:-1.098395px;}
._1_c00114{width:1.078560px;}
.fc1_c00114{color:transparent;}
.fc0_c00114{color:rgb(0,0,0);}
.fs2_c00114{font-size:53.280000px;}
.fs3_c00114{font-size:54.919767px;}
.fs4_c00114{font-size:60.000000px;}
.fs0_c00114{font-size:72.000000px;}
.fs1_c00114{font-size:74.215901px;}
.y0_c00114{bottom:0.000000px;}
.y28_c00114{bottom:3.120150px;}
.y22_c00114{bottom:10.440000px;}
.y24_c00114{bottom:25.560000px;}
.y27_c00114{bottom:34.744500px;}
.y26_c00114{bottom:41.040000px;}
.y21_c00114{bottom:41.400000px;}
.y1_c00114{bottom:54.000000px;}
.y1f_c00114{bottom:76.725000px;}
.y20_c00114{bottom:94.365000px;}
.y1e_c00114{bottom:112.725000px;}
.y1d_c00114{bottom:148.725000px;}
.y1c_c00114{bottom:184.725000px;}
.y1b_c00114{bottom:220.725000px;}
.y1a_c00114{bottom:256.725000px;}
.y19_c00114{bottom:292.725000px;}
.y18_c00114{bottom:328.725000px;}
.y17_c00114{bottom:364.725000px;}
.y16_c00114{bottom:400.725000px;}
.y25_c00114{bottom:418.365000px;}
.y15_c00114{bottom:436.725000px;}
.y14_c00114{bottom:472.725000px;}
.y13_c00114{bottom:509.085000px;}
.y12_c00114{bottom:545.085000px;}
.y11_c00114{bottom:581.085000px;}
.y10_c00114{bottom:617.085000px;}
.yf_c00114{bottom:653.085000px;}
.ye_c00114{bottom:689.085000px;}
.yd_c00114{bottom:725.085000px;}
.yc_c00114{bottom:761.085000px;}
.y23_c00114{bottom:769.365000px;}
.yb_c00114{bottom:797.085000px;}
.ya_c00114{bottom:833.085000px;}
.y9_c00114{bottom:869.085000px;}
.y8_c00114{bottom:905.085000px;}
.y7_c00114{bottom:941.085000px;}
.y6_c00114{bottom:977.085000px;}
.y5_c00114{bottom:1013.085000px;}
.y4_c00114{bottom:1049.085000px;}
.y3_c00114{bottom:1085.085000px;}
.y2_c00114{bottom:1138.365000px;}
.h9_c00114{height:19.255500px;}
.h6_c00114{height:41.132160px;}
.h7_c00114{height:42.398060px;}
.ha_c00114{height:46.320000px;}
.h8_c00114{height:53.640000px;}
.h5_c00114{height:54.000000px;}
.h3_c00114{height:55.584000px;}
.h4_c00114{height:57.294676px;}
.h2_c00114{height:1201.365000px;}
.h0_c00114{height:1262.835000px;}
.h1_c00114{height:1263.000000px;}
.w6_c00114{width:25.020000px;}
.w3_c00114{width:601.920000px;}
.w5_c00114{width:625.680000px;}
.w4_c00114{width:654.480000px;}
.w2_c00114{width:863.955000px;}
.w0_c00114{width:892.935000px;}
.w1_c00114{width:893.250000px;}
.x0_c00114{left:0.000000px;}
.x5_c00114{left:3.599850px;}
.x9_c00114{left:11.593350px;}
.x1_c00114{left:14.490000px;}
.xf_c00114{left:15.923400px;}
.x6_c00114{left:111.638250px;}
.x2_c00114{left:113.040150px;}
.xa_c00114{left:119.631750px;}
.x10_c00114{left:123.961950px;}
.x8_c00114{left:126.090000px;}
.x3_c00114{left:150.011700px;}
.x7_c00114{left:160.399200px;}
.xb_c00114{left:168.392850px;}
.x11_c00114{left:172.722900px;}
.x4_c00114{left:220.480650px;}
.xe_c00114{left:237.545850px;}
.xc_c00114{left:352.934550px;}
.xd_c00114{left:364.179750px;}
.x12_c00114{left:759.915000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls3_c00114{letter-spacing:0.000000pt;}
.ls4_c00114{letter-spacing:0.179968pt;}
.ls8_c00114{letter-spacing:0.213120pt;}
.ls6_c00114{letter-spacing:0.284160pt;}
.ls0_c00114{letter-spacing:0.355200pt;}
.ls5_c00114{letter-spacing:0.473530pt;}
.ls7_c00114{letter-spacing:0.497280pt;}
.ls1_c00114{letter-spacing:5.312000pt;}
.ls2_c00114{letter-spacing:5.475484pt;}
.ws0_c00114{word-spacing:-13.521280pt;}
.ws1_c00114{word-spacing:0.000000pt;}
._0_c00114{margin-left:-0.976351pt;}
._1_c00114{width:0.958720pt;}
.fs2_c00114{font-size:47.360000pt;}
.fs3_c00114{font-size:48.817571pt;}
.fs4_c00114{font-size:53.333333pt;}
.fs0_c00114{font-size:64.000000pt;}
.fs1_c00114{font-size:65.969690pt;}
.y0_c00114{bottom:0.000000pt;}
.y28_c00114{bottom:2.773467pt;}
.y22_c00114{bottom:9.280000pt;}
.y24_c00114{bottom:22.720000pt;}
.y27_c00114{bottom:30.884000pt;}
.y26_c00114{bottom:36.480000pt;}
.y21_c00114{bottom:36.800000pt;}
.y1_c00114{bottom:48.000000pt;}
.y1f_c00114{bottom:68.200000pt;}
.y20_c00114{bottom:83.880000pt;}
.y1e_c00114{bottom:100.200000pt;}
.y1d_c00114{bottom:132.200000pt;}
.y1c_c00114{bottom:164.200000pt;}
.y1b_c00114{bottom:196.200000pt;}
.y1a_c00114{bottom:228.200000pt;}
.y19_c00114{bottom:260.200000pt;}
.y18_c00114{bottom:292.200000pt;}
.y17_c00114{bottom:324.200000pt;}
.y16_c00114{bottom:356.200000pt;}
.y25_c00114{bottom:371.880000pt;}
.y15_c00114{bottom:388.200000pt;}
.y14_c00114{bottom:420.200000pt;}
.y13_c00114{bottom:452.520000pt;}
.y12_c00114{bottom:484.520000pt;}
.y11_c00114{bottom:516.520000pt;}
.y10_c00114{bottom:548.520000pt;}
.yf_c00114{bottom:580.520000pt;}
.ye_c00114{bottom:612.520000pt;}
.yd_c00114{bottom:644.520000pt;}
.yc_c00114{bottom:676.520000pt;}
.y23_c00114{bottom:683.880000pt;}
.yb_c00114{bottom:708.520000pt;}
.ya_c00114{bottom:740.520000pt;}
.y9_c00114{bottom:772.520000pt;}
.y8_c00114{bottom:804.520000pt;}
.y7_c00114{bottom:836.520000pt;}
.y6_c00114{bottom:868.520000pt;}
.y5_c00114{bottom:900.520000pt;}
.y4_c00114{bottom:932.520000pt;}
.y3_c00114{bottom:964.520000pt;}
.y2_c00114{bottom:1011.880000pt;}
.h9_c00114{height:17.116000pt;}
.h6_c00114{height:36.561920pt;}
.h7_c00114{height:37.687165pt;}
.ha_c00114{height:41.173333pt;}
.h8_c00114{height:47.680000pt;}
.h5_c00114{height:48.000000pt;}
.h3_c00114{height:49.408000pt;}
.h4_c00114{height:50.928601pt;}
.h2_c00114{height:1067.880000pt;}
.h0_c00114{height:1122.520000pt;}
.h1_c00114{height:1122.666667pt;}
.w6_c00114{width:22.240000pt;}
.w3_c00114{width:535.040000pt;}
.w5_c00114{width:556.160000pt;}
.w4_c00114{width:581.760000pt;}
.w2_c00114{width:767.960000pt;}
.w0_c00114{width:793.720000pt;}
.w1_c00114{width:794.000000pt;}
.x0_c00114{left:0.000000pt;}
.x5_c00114{left:3.199867pt;}
.x9_c00114{left:10.305200pt;}
.x1_c00114{left:12.880000pt;}
.xf_c00114{left:14.154133pt;}
.x6_c00114{left:99.234000pt;}
.x2_c00114{left:100.480133pt;}
.xa_c00114{left:106.339333pt;}
.x10_c00114{left:110.188400pt;}
.x8_c00114{left:112.080000pt;}
.x3_c00114{left:133.343733pt;}
.x7_c00114{left:142.577067pt;}
.xb_c00114{left:149.682533pt;}
.x11_c00114{left:153.531467pt;}
.x4_c00114{left:195.982800pt;}
.xe_c00114{left:211.151867pt;}
.xc_c00114{left:313.719600pt;}
.xd_c00114{left:323.715333pt;}
.x12_c00114{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50989d20f1e4d1cbfd2e97ae.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;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_c00115;src:url('chunks/assets/font_4db87268db045ec78226d7a5.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:0.787000;font-style:normal;font-weight:normal;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_02f13c712827b698b0e624d5.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:0.787000;font-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_c00115{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00115{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls5_c00115{letter-spacing:0.000000px;}
.ls7_c00115{letter-spacing:0.202464px;}
.ls1_c00115{letter-spacing:0.238560px;}
.lsa_c00115{letter-spacing:0.239760px;}
.ls9_c00115{letter-spacing:0.319680px;}
.ls2_c00115{letter-spacing:0.388944px;}
.ls6_c00115{letter-spacing:0.399600px;}
.ls0_c00115{letter-spacing:0.399720px;}
.ls8_c00115{letter-spacing:0.532722px;}
.ls3_c00115{letter-spacing:5.976000px;}
.ls4_c00115{letter-spacing:6.159920px;}
.sc__c00115{text-shadow:none;}
.sc1_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00115{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc1_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00115{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00115{word-spacing:-15.800417px;}
.ws1_c00115{word-spacing:-15.211440px;}
.ws3_c00115{word-spacing:-15.200784px;}
.ws2_c00115{word-spacing:-15.051600px;}
.ws4_c00115{word-spacing:0.000000px;}
._0_c00115{margin-left:-1.098395px;}
._1_c00115{width:1.065600px;}
.fc1_c00115{color:transparent;}
.fc0_c00115{color:rgb(0,0,0);}
.fs2_c00115{font-size:53.280000px;}
.fs3_c00115{font-size:54.919767px;}
.fs4_c00115{font-size:60.000000px;}
.fs0_c00115{font-size:72.000000px;}
.fs1_c00115{font-size:74.215901px;}
.y0_c00115{bottom:0.000000px;}
.y26_c00115{bottom:3.120150px;}
.y24_c00115{bottom:25.560000px;}
.y25_c00115{bottom:34.744500px;}
.y20_c00115{bottom:41.040000px;}
.y23_c00115{bottom:41.400000px;}
.y1_c00115{bottom:54.000000px;}
.y1e_c00115{bottom:112.725000px;}
.y22_c00115{bottom:130.365000px;}
.y1d_c00115{bottom:148.725000px;}
.y1c_c00115{bottom:184.725000px;}
.y1b_c00115{bottom:220.725000px;}
.y1a_c00115{bottom:256.725000px;}
.y19_c00115{bottom:292.725000px;}
.y18_c00115{bottom:328.725000px;}
.y17_c00115{bottom:364.725000px;}
.y16_c00115{bottom:400.725000px;}
.y15_c00115{bottom:436.725000px;}
.y14_c00115{bottom:472.725000px;}
.y21_c00115{bottom:481.365000px;}
.y13_c00115{bottom:509.085000px;}
.y12_c00115{bottom:545.085000px;}
.y11_c00115{bottom:581.085000px;}
.y10_c00115{bottom:617.085000px;}
.yf_c00115{bottom:653.085000px;}
.ye_c00115{bottom:689.085000px;}
.yd_c00115{bottom:725.085000px;}
.yc_c00115{bottom:761.085000px;}
.yb_c00115{bottom:797.085000px;}
.y1f_c00115{bottom:805.365000px;}
.ya_c00115{bottom:833.085000px;}
.y9_c00115{bottom:869.085000px;}
.y8_c00115{bottom:905.085000px;}
.y7_c00115{bottom:941.085000px;}
.y6_c00115{bottom:977.085000px;}
.y5_c00115{bottom:1013.085000px;}
.y4_c00115{bottom:1049.085000px;}
.y3_c00115{bottom:1085.085000px;}
.y2_c00115{bottom:1138.365000px;}
.h8_c00115{height:19.255500px;}
.h6_c00115{height:41.132160px;}
.h7_c00115{height:42.398060px;}
.h9_c00115{height:46.320000px;}
.h5_c00115{height:54.000000px;}
.h3_c00115{height:55.584000px;}
.h4_c00115{height:57.294676px;}
.h2_c00115{height:1201.365000px;}
.h0_c00115{height:1262.835000px;}
.h1_c00115{height:1263.000000px;}
.w6_c00115{width:25.020000px;}
.w4_c00115{width:602.640000px;}
.w5_c00115{width:622.440000px;}
.w3_c00115{width:622.800000px;}
.w2_c00115{width:863.955000px;}
.w0_c00115{width:892.935000px;}
.w1_c00115{width:893.250000px;}
.x0_c00115{left:0.000000px;}
.x6_c00115{left:3.240000px;}
.x1_c00115{left:14.490000px;}
.xb_c00115{left:93.934650px;}
.x2_c00115{left:113.040150px;}
.x7_c00115{left:118.784250px;}
.x9_c00115{left:122.490000px;}
.x5_c00115{left:129.690000px;}
.x3_c00115{left:150.011700px;}
.x8_c00115{left:163.792350px;}
.xa_c00115{left:167.905200px;}
.xc_c00115{left:209.478900px;}
.x4_c00115{left:220.480650px;}
.xd_c00115{left:254.487000px;}
.xe_c00115{left:759.915000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls5_c00115{letter-spacing:0.000000pt;}
.ls7_c00115{letter-spacing:0.179968pt;}
.ls1_c00115{letter-spacing:0.212053pt;}
.lsa_c00115{letter-spacing:0.213120pt;}
.ls9_c00115{letter-spacing:0.284160pt;}
.ls2_c00115{letter-spacing:0.345728pt;}
.ls6_c00115{letter-spacing:0.355200pt;}
.ls0_c00115{letter-spacing:0.355307pt;}
.ls8_c00115{letter-spacing:0.473530pt;}
.ls3_c00115{letter-spacing:5.312000pt;}
.ls4_c00115{letter-spacing:5.475484pt;}
.ws0_c00115{word-spacing:-14.044815pt;}
.ws1_c00115{word-spacing:-13.521280pt;}
.ws3_c00115{word-spacing:-13.511808pt;}
.ws2_c00115{word-spacing:-13.379200pt;}
.ws4_c00115{word-spacing:0.000000pt;}
._0_c00115{margin-left:-0.976351pt;}
._1_c00115{width:0.947200pt;}
.fs2_c00115{font-size:47.360000pt;}
.fs3_c00115{font-size:48.817571pt;}
.fs4_c00115{font-size:53.333333pt;}
.fs0_c00115{font-size:64.000000pt;}
.fs1_c00115{font-size:65.969690pt;}
.y0_c00115{bottom:0.000000pt;}
.y26_c00115{bottom:2.773467pt;}
.y24_c00115{bottom:22.720000pt;}
.y25_c00115{bottom:30.884000pt;}
.y20_c00115{bottom:36.480000pt;}
.y23_c00115{bottom:36.800000pt;}
.y1_c00115{bottom:48.000000pt;}
.y1e_c00115{bottom:100.200000pt;}
.y22_c00115{bottom:115.880000pt;}
.y1d_c00115{bottom:132.200000pt;}
.y1c_c00115{bottom:164.200000pt;}
.y1b_c00115{bottom:196.200000pt;}
.y1a_c00115{bottom:228.200000pt;}
.y19_c00115{bottom:260.200000pt;}
.y18_c00115{bottom:292.200000pt;}
.y17_c00115{bottom:324.200000pt;}
.y16_c00115{bottom:356.200000pt;}
.y15_c00115{bottom:388.200000pt;}
.y14_c00115{bottom:420.200000pt;}
.y21_c00115{bottom:427.880000pt;}
.y13_c00115{bottom:452.520000pt;}
.y12_c00115{bottom:484.520000pt;}
.y11_c00115{bottom:516.520000pt;}
.y10_c00115{bottom:548.520000pt;}
.yf_c00115{bottom:580.520000pt;}
.ye_c00115{bottom:612.520000pt;}
.yd_c00115{bottom:644.520000pt;}
.yc_c00115{bottom:676.520000pt;}
.yb_c00115{bottom:708.520000pt;}
.y1f_c00115{bottom:715.880000pt;}
.ya_c00115{bottom:740.520000pt;}
.y9_c00115{bottom:772.520000pt;}
.y8_c00115{bottom:804.520000pt;}
.y7_c00115{bottom:836.520000pt;}
.y6_c00115{bottom:868.520000pt;}
.y5_c00115{bottom:900.520000pt;}
.y4_c00115{bottom:932.520000pt;}
.y3_c00115{bottom:964.520000pt;}
.y2_c00115{bottom:1011.880000pt;}
.h8_c00115{height:17.116000pt;}
.h6_c00115{height:36.561920pt;}
.h7_c00115{height:37.687165pt;}
.h9_c00115{height:41.173333pt;}
.h5_c00115{height:48.000000pt;}
.h3_c00115{height:49.408000pt;}
.h4_c00115{height:50.928601pt;}
.h2_c00115{height:1067.880000pt;}
.h0_c00115{height:1122.520000pt;}
.h1_c00115{height:1122.666667pt;}
.w6_c00115{width:22.240000pt;}
.w4_c00115{width:535.680000pt;}
.w5_c00115{width:553.280000pt;}
.w3_c00115{width:553.600000pt;}
.w2_c00115{width:767.960000pt;}
.w0_c00115{width:793.720000pt;}
.w1_c00115{width:794.000000pt;}
.x0_c00115{left:0.000000pt;}
.x6_c00115{left:2.880000pt;}
.x1_c00115{left:12.880000pt;}
.xb_c00115{left:83.497467pt;}
.x2_c00115{left:100.480133pt;}
.x7_c00115{left:105.586000pt;}
.x9_c00115{left:108.880000pt;}
.x5_c00115{left:115.280000pt;}
.x3_c00115{left:133.343733pt;}
.x8_c00115{left:145.593200pt;}
.xa_c00115{left:149.249067pt;}
.xc_c00115{left:186.203467pt;}
.x4_c00115{left:195.982800pt;}
.xd_c00115{left:226.210667pt;}
.xe_c00115{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9056f463e5eb48b8b7e261fa.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;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_c00116;src:url('chunks/assets/font_4db87268db045ec78226d7a5.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:0.787000;font-style:normal;font-weight:normal;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_ac7ffd12f13bb842c085b2b6.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:0.787000;font-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_c00116{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00116{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00116{letter-spacing:0.000000px;}
.ls4_c00116{letter-spacing:0.202464px;}
.ls7_c00116{letter-spacing:0.239760px;}
.ls6_c00116{letter-spacing:0.319680px;}
.ls3_c00116{letter-spacing:0.399600px;}
.ls5_c00116{letter-spacing:0.532722px;}
.ls0_c00116{letter-spacing:5.976000px;}
.ls1_c00116{letter-spacing:6.159920px;}
.sc__c00116{text-shadow:none;}
.sc1_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00116{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc1_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00116{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00116{word-spacing:-15.800417px;}
.ws1_c00116{word-spacing:-15.211440px;}
.ws2_c00116{word-spacing:-15.051600px;}
.ws3_c00116{word-spacing:0.000000px;}
._0_c00116{margin-left:-1.098395px;}
._1_c00116{width:1.065600px;}
.fc1_c00116{color:transparent;}
.fc0_c00116{color:rgb(0,0,0);}
.fs2_c00116{font-size:53.280000px;}
.fs3_c00116{font-size:54.919767px;}
.fs4_c00116{font-size:60.000000px;}
.fs0_c00116{font-size:72.000000px;}
.fs1_c00116{font-size:74.215901px;}
.y0_c00116{bottom:0.000000px;}
.y22_c00116{bottom:3.120150px;}
.y1f_c00116{bottom:26.325000px;}
.y21_c00116{bottom:34.744500px;}
.y1e_c00116{bottom:41.040000px;}
.y1_c00116{bottom:54.000000px;}
.y1c_c00116{bottom:184.725000px;}
.y1b_c00116{bottom:220.725000px;}
.y1a_c00116{bottom:256.725000px;}
.y19_c00116{bottom:292.725000px;}
.y18_c00116{bottom:328.725000px;}
.y17_c00116{bottom:364.725000px;}
.y1d_c00116{bottom:391.365000px;}
.y16_c00116{bottom:400.725000px;}
.y15_c00116{bottom:436.725000px;}
.y14_c00116{bottom:472.725000px;}
.y13_c00116{bottom:509.085000px;}
.y12_c00116{bottom:545.085000px;}
.y11_c00116{bottom:581.085000px;}
.y10_c00116{bottom:617.085000px;}
.yf_c00116{bottom:653.085000px;}
.ye_c00116{bottom:689.085000px;}
.yd_c00116{bottom:725.085000px;}
.y20_c00116{bottom:742.365000px;}
.yc_c00116{bottom:761.085000px;}
.yb_c00116{bottom:797.085000px;}
.ya_c00116{bottom:833.085000px;}
.y9_c00116{bottom:869.085000px;}
.y8_c00116{bottom:905.085000px;}
.y7_c00116{bottom:941.085000px;}
.y6_c00116{bottom:977.085000px;}
.y5_c00116{bottom:1013.085000px;}
.y4_c00116{bottom:1049.085000px;}
.y3_c00116{bottom:1085.085000px;}
.y2_c00116{bottom:1138.365000px;}
.h9_c00116{height:19.255500px;}
.h8_c00116{height:38.925000px;}
.h6_c00116{height:41.132160px;}
.h7_c00116{height:42.398060px;}
.ha_c00116{height:46.320000px;}
.h5_c00116{height:54.000000px;}
.h3_c00116{height:55.584000px;}
.h4_c00116{height:57.294676px;}
.h2_c00116{height:1201.365000px;}
.h0_c00116{height:1262.835000px;}
.h1_c00116{height:1263.000000px;}
.w5_c00116{width:25.020000px;}
.w3_c00116{width:601.200000px;}
.w4_c00116{width:628.560000px;}
.w2_c00116{width:863.955000px;}
.w0_c00116{width:892.935000px;}
.w1_c00116{width:893.250000px;}
.x0_c00116{left:0.000000px;}
.x8_c00116{left:3.240150px;}
.x1_c00116{left:14.490000px;}
.xc_c00116{left:29.759700px;}
.x2_c00116{left:113.040150px;}
.x9_c00116{left:122.537400px;}
.xb_c00116{left:123.570000px;}
.x6_c00116{left:131.017350px;}
.xd_c00116{left:145.304100px;}
.x3_c00116{left:150.011700px;}
.x5_c00116{left:151.650000px;}
.xa_c00116{left:171.298350px;}
.x7_c00116{left:176.025450px;}
.xe_c00116{left:190.312050px;}
.x4_c00116{left:220.480650px;}
.xf_c00116{left:759.915000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls2_c00116{letter-spacing:0.000000pt;}
.ls4_c00116{letter-spacing:0.179968pt;}
.ls7_c00116{letter-spacing:0.213120pt;}
.ls6_c00116{letter-spacing:0.284160pt;}
.ls3_c00116{letter-spacing:0.355200pt;}
.ls5_c00116{letter-spacing:0.473530pt;}
.ls0_c00116{letter-spacing:5.312000pt;}
.ls1_c00116{letter-spacing:5.475484pt;}
.ws0_c00116{word-spacing:-14.044815pt;}
.ws1_c00116{word-spacing:-13.521280pt;}
.ws2_c00116{word-spacing:-13.379200pt;}
.ws3_c00116{word-spacing:0.000000pt;}
._0_c00116{margin-left:-0.976351pt;}
._1_c00116{width:0.947200pt;}
.fs2_c00116{font-size:47.360000pt;}
.fs3_c00116{font-size:48.817571pt;}
.fs4_c00116{font-size:53.333333pt;}
.fs0_c00116{font-size:64.000000pt;}
.fs1_c00116{font-size:65.969690pt;}
.y0_c00116{bottom:0.000000pt;}
.y22_c00116{bottom:2.773467pt;}
.y1f_c00116{bottom:23.400000pt;}
.y21_c00116{bottom:30.884000pt;}
.y1e_c00116{bottom:36.480000pt;}
.y1_c00116{bottom:48.000000pt;}
.y1c_c00116{bottom:164.200000pt;}
.y1b_c00116{bottom:196.200000pt;}
.y1a_c00116{bottom:228.200000pt;}
.y19_c00116{bottom:260.200000pt;}
.y18_c00116{bottom:292.200000pt;}
.y17_c00116{bottom:324.200000pt;}
.y1d_c00116{bottom:347.880000pt;}
.y16_c00116{bottom:356.200000pt;}
.y15_c00116{bottom:388.200000pt;}
.y14_c00116{bottom:420.200000pt;}
.y13_c00116{bottom:452.520000pt;}
.y12_c00116{bottom:484.520000pt;}
.y11_c00116{bottom:516.520000pt;}
.y10_c00116{bottom:548.520000pt;}
.yf_c00116{bottom:580.520000pt;}
.ye_c00116{bottom:612.520000pt;}
.yd_c00116{bottom:644.520000pt;}
.y20_c00116{bottom:659.880000pt;}
.yc_c00116{bottom:676.520000pt;}
.yb_c00116{bottom:708.520000pt;}
.ya_c00116{bottom:740.520000pt;}
.y9_c00116{bottom:772.520000pt;}
.y8_c00116{bottom:804.520000pt;}
.y7_c00116{bottom:836.520000pt;}
.y6_c00116{bottom:868.520000pt;}
.y5_c00116{bottom:900.520000pt;}
.y4_c00116{bottom:932.520000pt;}
.y3_c00116{bottom:964.520000pt;}
.y2_c00116{bottom:1011.880000pt;}
.h9_c00116{height:17.116000pt;}
.h8_c00116{height:34.600000pt;}
.h6_c00116{height:36.561920pt;}
.h7_c00116{height:37.687165pt;}
.ha_c00116{height:41.173333pt;}
.h5_c00116{height:48.000000pt;}
.h3_c00116{height:49.408000pt;}
.h4_c00116{height:50.928601pt;}
.h2_c00116{height:1067.880000pt;}
.h0_c00116{height:1122.520000pt;}
.h1_c00116{height:1122.666667pt;}
.w5_c00116{width:22.240000pt;}
.w3_c00116{width:534.400000pt;}
.w4_c00116{width:558.720000pt;}
.w2_c00116{width:767.960000pt;}
.w0_c00116{width:793.720000pt;}
.w1_c00116{width:794.000000pt;}
.x0_c00116{left:0.000000pt;}
.x8_c00116{left:2.880133pt;}
.x1_c00116{left:12.880000pt;}
.xc_c00116{left:26.453067pt;}
.x2_c00116{left:100.480133pt;}
.x9_c00116{left:108.922133pt;}
.xb_c00116{left:109.840000pt;}
.x6_c00116{left:116.459867pt;}
.xd_c00116{left:129.159200pt;}
.x3_c00116{left:133.343733pt;}
.x5_c00116{left:134.800000pt;}
.xa_c00116{left:152.265200pt;}
.x7_c00116{left:156.467067pt;}
.xe_c00116{left:169.166267pt;}
.x4_c00116{left:195.982800pt;}
.xf_c00116{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d40e1750bd2981e937617be9.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.134000;font-style:normal;font-weight:normal;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_ef9aa2a5c1cac0f344164c9a.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;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:ff3_c00117;src:url('chunks/assets/font_8194133ff60fb143a73b04df.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_f958cfa700770ed1ed8a030b.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:0.787000;font-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_c00117{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00117{vertical-align:-30.240000px;}
.v3_c00117{vertical-align:-24.480000px;}
.v0_c00117{vertical-align:0.000000px;}
.v1_c00117{vertical-align:30.240000px;}
.lse_c00117{letter-spacing:0.000000px;}
.ls3_c00117{letter-spacing:0.234840px;}
.ls6_c00117{letter-spacing:0.236160px;}
.ls7_c00117{letter-spacing:0.265680px;}
.ls1f_c00117{letter-spacing:0.273857px;}
.lsc_c00117{letter-spacing:0.283392px;}
.ls16_c00117{letter-spacing:0.318816px;}
.lsd_c00117{letter-spacing:0.324720px;}
.ls1b_c00117{letter-spacing:0.425088px;}
.ls18_c00117{letter-spacing:0.438171px;}
.ls13_c00117{letter-spacing:0.478224px;}
.ls4_c00117{letter-spacing:0.488040px;}
.ls1d_c00117{letter-spacing:0.492942px;}
.ls9_c00117{letter-spacing:0.531360px;}
.ls12_c00117{letter-spacing:0.532800px;}
.ls20_c00117{letter-spacing:0.547713px;}
.lsb_c00117{letter-spacing:0.549072px;}
.ls21_c00117{letter-spacing:0.584496px;}
.ls1e_c00117{letter-spacing:0.602485px;}
.ls19_c00117{letter-spacing:0.690768px;}
.ls1c_c00117{letter-spacing:0.712027px;}
.ls14_c00117{letter-spacing:0.766799px;}
.ls5_c00117{letter-spacing:0.784440px;}
.ls15_c00117{letter-spacing:0.821570px;}
.lsa_c00117{letter-spacing:0.851999px;}
.ls11_c00117{letter-spacing:5.149872px;}
.ls10_c00117{letter-spacing:5.335200px;}
.ls1_c00117{letter-spacing:5.406777px;}
.lsf_c00117{letter-spacing:5.430672px;}
.ls17_c00117{letter-spacing:5.768208px;}
.ls2_c00117{letter-spacing:5.976000px;}
.ls0_c00117{letter-spacing:6.159920px;}
.ls1a_c00117{letter-spacing:14.057424px;}
.ls8_c00117{letter-spacing:14.490061px;}
.sc__c00117{text-shadow:none;}
.sc1_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00117{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc1_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00117{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00117{word-spacing:-25.992000px;}
.ws0_c00117{word-spacing:-21.499753px;}
.ws1_c00117{word-spacing:-21.043152px;}
.ws3_c00117{word-spacing:-20.762352px;}
.ws5_c00117{word-spacing:-20.016000px;}
.ws7_c00117{word-spacing:-17.685056px;}
.ws8_c00117{word-spacing:-17.411199px;}
.ws9_c00117{word-spacing:-16.962192px;}
.wsa_c00117{word-spacing:-16.944480px;}
.ws4_c00117{word-spacing:-11.609280px;}
.ws6_c00117{word-spacing:-10.008000px;}
.wsb_c00117{word-spacing:0.000000px;}
._12_c00117{margin-left:-14.523840px;}
._11_c00117{margin-left:-13.343040px;}
._10_c00117{margin-left:-5.313600px;}
._f_c00117{margin-left:-1.015200px;}
._1_c00117{width:1.132200px;}
._3_c00117{width:2.376000px;}
._e_c00117{width:4.320000px;}
._9_c00117{width:6.539400px;}
._6_c00117{width:7.776000px;}
._4_c00117{width:9.144000px;}
._b_c00117{width:10.224000px;}
._7_c00117{width:11.808000px;}
._5_c00117{width:13.176000px;}
._2_c00117{width:14.256000px;}
._8_c00117{width:15.480000px;}
._d_c00117{width:18.576000px;}
._0_c00117{width:21.744000px;}
._a_c00117{width:30.528000px;}
._c_c00117{width:32.112000px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs5_c00117{font-size:36.000000px;}
.fs4_c00117{font-size:41.760000px;}
.fs3_c00117{font-size:56.160000px;}
.fs2_c00117{font-size:57.888403px;}
.fs6_c00117{font-size:59.040000px;}
.fs8_c00117{font-size:60.000000px;}
.fs7_c00117{font-size:60.857039px;}
.fs0_c00117{font-size:72.000000px;}
.fs1_c00117{font-size:74.215901px;}
.y0_c00117{bottom:0.000000px;}
.y3_c00117{bottom:2.565000px;}
.y38_c00117{bottom:3.120150px;}
.y37_c00117{bottom:34.744500px;}
.y1_c00117{bottom:54.000000px;}
.y36_c00117{bottom:55.485000px;}
.y35_c00117{bottom:61.605000px;}
.y34_c00117{bottom:78.885000px;}
.y33_c00117{bottom:90.401040px;}
.y32_c00117{bottom:107.685000px;}
.y31_c00117{bottom:107.686800px;}
.y30_c00117{bottom:125.325000px;}
.y2f_c00117{bottom:125.326800px;}
.y2e_c00117{bottom:142.965000px;}
.y2d_c00117{bottom:149.085000px;}
.y2c_c00117{bottom:160.601040px;}
.y2b_c00117{bottom:177.885000px;}
.y2a_c00117{bottom:184.005000px;}
.y29_c00117{bottom:195.525000px;}
.y28_c00117{bottom:201.645000px;}
.y27_c00117{bottom:212.805000px;}
.y26_c00117{bottom:218.925000px;}
.y25_c00117{bottom:245.565000px;}
.y24_c00117{bottom:294.165000px;}
.y23_c00117{bottom:315.405000px;}
.y22_c00117{bottom:336.285000px;}
.y21_c00117{bottom:357.165000px;}
.y20_c00117{bottom:393.165000px;}
.y1f_c00117{bottom:414.405000px;}
.y1e_c00117{bottom:435.285000px;}
.y1d_c00117{bottom:456.525000px;}
.y1c_c00117{bottom:492.525000px;}
.y1b_c00117{bottom:513.405000px;}
.y1a_c00117{bottom:534.285000px;}
.y19_c00117{bottom:555.525000px;}
.y18_c00117{bottom:576.405000px;}
.y17_c00117{bottom:597.285000px;}
.y16_c00117{bottom:618.525000px;}
.y15_c00117{bottom:639.405000px;}
.y14_c00117{bottom:675.405000px;}
.y13_c00117{bottom:696.285000px;}
.y12_c00117{bottom:717.525000px;}
.y10_c00117{bottom:753.525000px;}
.y11_c00117{bottom:761.085000px;}
.yf_c00117{bottom:789.525000px;}
.ye_c00117{bottom:827.685000px;}
.yd_c00117{bottom:865.845000px;}
.yc_c00117{bottom:901.845000px;}
.yb_c00117{bottom:923.085000px;}
.ya_c00117{bottom:943.965000px;}
.y9_c00117{bottom:964.845000px;}
.y8_c00117{bottom:986.085000px;}
.y7_c00117{bottom:1006.965000px;}
.y6_c00117{bottom:1027.845000px;}
.y5_c00117{bottom:1049.085000px;}
.y4_c00117{bottom:1085.085000px;}
.y2_c00117{bottom:1138.365000px;}
.hb_c00117{height:19.255500px;}
.h7_c00117{height:32.616000px;}
.h6_c00117{height:37.834560px;}
.ha_c00117{height:39.350391px;}
.hc_c00117{height:46.320000px;}
.h8_c00117{height:46.981634px;}
.h9_c00117{height:53.490240px;}
.h4_c00117{height:57.294676px;}
.h3_c00117{height:65.232000px;}
.h5_c00117{height:68.074560px;}
.h2_c00117{height:1201.365000px;}
.h0_c00117{height:1262.835000px;}
.h1_c00117{height:1263.000000px;}
.w3_c00117{width:25.020000px;}
.w2_c00117{width:863.955000px;}
.w0_c00117{width:892.935000px;}
.w1_c00117{width:893.250000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:14.490000px;}
.x2_c00117{left:113.040150px;}
.x3_c00117{left:150.011700px;}
.x12_c00117{left:155.571900px;}
.x1a_c00117{left:168.028500px;}
.x1b_c00117{left:183.028200px;}
.x5_c00117{left:185.315850px;}
.x13_c00117{left:188.900700px;}
.x1c_c00117{left:193.209600px;}
.x4_c00117{left:216.989100px;}
.x6_c00117{left:234.357000px;}
.x1d_c00117{left:235.910550px;}
.x8_c00117{left:245.912100px;}
.x14_c00117{left:254.909250px;}
.x10_c00117{left:269.733450px;}
.x7_c00117{left:294.368100px;}
.xb_c00117{left:303.120000px;}
.x11_c00117{left:308.072400px;}
.x1e_c00117{left:314.283000px;}
.x1f_c00117{left:323.639250px;}
.x9_c00117{left:342.930150px;}
.xa_c00117{left:416.478150px;}
.x24_c00117{left:468.146400px;}
.x25_c00117{left:536.513250px;}
.x20_c00117{left:539.792400px;}
.xe_c00117{left:550.029000px;}
.x22_c00117{left:569.772600px;}
.x23_c00117{left:592.729650px;}
.x15_c00117{left:605.471100px;}
.xf_c00117{left:608.041950px;}
.x21_c00117{left:610.192350px;}
.x16_c00117{left:636.413100px;}
.x17_c00117{left:640.163100px;}
.xc_c00117{left:653.630100px;}
.x18_c00117{left:664.430400px;}
.x19_c00117{left:699.556950px;}
.xd_c00117{left:711.643050px;}
.x26_c00117{left:759.915000px;}
@media print{
.v2_c00117{vertical-align:-26.880000pt;}
.v3_c00117{vertical-align:-21.760000pt;}
.v0_c00117{vertical-align:0.000000pt;}
.v1_c00117{vertical-align:26.880000pt;}
.lse_c00117{letter-spacing:0.000000pt;}
.ls3_c00117{letter-spacing:0.208747pt;}
.ls6_c00117{letter-spacing:0.209920pt;}
.ls7_c00117{letter-spacing:0.236160pt;}
.ls1f_c00117{letter-spacing:0.243428pt;}
.lsc_c00117{letter-spacing:0.251904pt;}
.ls16_c00117{letter-spacing:0.283392pt;}
.lsd_c00117{letter-spacing:0.288640pt;}
.ls1b_c00117{letter-spacing:0.377856pt;}
.ls18_c00117{letter-spacing:0.389485pt;}
.ls13_c00117{letter-spacing:0.425088pt;}
.ls4_c00117{letter-spacing:0.433813pt;}
.ls1d_c00117{letter-spacing:0.438171pt;}
.ls9_c00117{letter-spacing:0.472320pt;}
.ls12_c00117{letter-spacing:0.473600pt;}
.ls20_c00117{letter-spacing:0.486856pt;}
.lsb_c00117{letter-spacing:0.488064pt;}
.ls21_c00117{letter-spacing:0.519552pt;}
.ls1e_c00117{letter-spacing:0.535542pt;}
.ls19_c00117{letter-spacing:0.614016pt;}
.ls1c_c00117{letter-spacing:0.632913pt;}
.ls14_c00117{letter-spacing:0.681599pt;}
.ls5_c00117{letter-spacing:0.697280pt;}
.ls15_c00117{letter-spacing:0.730284pt;}
.lsa_c00117{letter-spacing:0.757332pt;}
.ls11_c00117{letter-spacing:4.577664pt;}
.ls10_c00117{letter-spacing:4.742400pt;}
.ls1_c00117{letter-spacing:4.806024pt;}
.lsf_c00117{letter-spacing:4.827264pt;}
.ls17_c00117{letter-spacing:5.127296pt;}
.ls2_c00117{letter-spacing:5.312000pt;}
.ls0_c00117{letter-spacing:5.475484pt;}
.ls1a_c00117{letter-spacing:12.495488pt;}
.ls8_c00117{letter-spacing:12.880054pt;}
.ws2_c00117{word-spacing:-23.104000pt;}
.ws0_c00117{word-spacing:-19.110891pt;}
.ws1_c00117{word-spacing:-18.705024pt;}
.ws3_c00117{word-spacing:-18.455424pt;}
.ws5_c00117{word-spacing:-17.792000pt;}
.ws7_c00117{word-spacing:-15.720049pt;}
.ws8_c00117{word-spacing:-15.476621pt;}
.ws9_c00117{word-spacing:-15.077504pt;}
.wsa_c00117{word-spacing:-15.061760pt;}
.ws4_c00117{word-spacing:-10.319360pt;}
.ws6_c00117{word-spacing:-8.896000pt;}
.wsb_c00117{word-spacing:0.000000pt;}
._12_c00117{margin-left:-12.910080pt;}
._11_c00117{margin-left:-11.860480pt;}
._10_c00117{margin-left:-4.723200pt;}
._f_c00117{margin-left:-0.902400pt;}
._1_c00117{width:1.006400pt;}
._3_c00117{width:2.112000pt;}
._e_c00117{width:3.840000pt;}
._9_c00117{width:5.812800pt;}
._6_c00117{width:6.912000pt;}
._4_c00117{width:8.128000pt;}
._b_c00117{width:9.088000pt;}
._7_c00117{width:10.496000pt;}
._5_c00117{width:11.712000pt;}
._2_c00117{width:12.672000pt;}
._8_c00117{width:13.760000pt;}
._d_c00117{width:16.512000pt;}
._0_c00117{width:19.328000pt;}
._a_c00117{width:27.136000pt;}
._c_c00117{width:28.544000pt;}
.fs5_c00117{font-size:32.000000pt;}
.fs4_c00117{font-size:37.120000pt;}
.fs3_c00117{font-size:49.920000pt;}
.fs2_c00117{font-size:51.456358pt;}
.fs6_c00117{font-size:52.480000pt;}
.fs8_c00117{font-size:53.333333pt;}
.fs7_c00117{font-size:54.095146pt;}
.fs0_c00117{font-size:64.000000pt;}
.fs1_c00117{font-size:65.969690pt;}
.y0_c00117{bottom:0.000000pt;}
.y3_c00117{bottom:2.280000pt;}
.y38_c00117{bottom:2.773467pt;}
.y37_c00117{bottom:30.884000pt;}
.y1_c00117{bottom:48.000000pt;}
.y36_c00117{bottom:49.320000pt;}
.y35_c00117{bottom:54.760000pt;}
.y34_c00117{bottom:70.120000pt;}
.y33_c00117{bottom:80.356480pt;}
.y32_c00117{bottom:95.720000pt;}
.y31_c00117{bottom:95.721600pt;}
.y30_c00117{bottom:111.400000pt;}
.y2f_c00117{bottom:111.401600pt;}
.y2e_c00117{bottom:127.080000pt;}
.y2d_c00117{bottom:132.520000pt;}
.y2c_c00117{bottom:142.756480pt;}
.y2b_c00117{bottom:158.120000pt;}
.y2a_c00117{bottom:163.560000pt;}
.y29_c00117{bottom:173.800000pt;}
.y28_c00117{bottom:179.240000pt;}
.y27_c00117{bottom:189.160000pt;}
.y26_c00117{bottom:194.600000pt;}
.y25_c00117{bottom:218.280000pt;}
.y24_c00117{bottom:261.480000pt;}
.y23_c00117{bottom:280.360000pt;}
.y22_c00117{bottom:298.920000pt;}
.y21_c00117{bottom:317.480000pt;}
.y20_c00117{bottom:349.480000pt;}
.y1f_c00117{bottom:368.360000pt;}
.y1e_c00117{bottom:386.920000pt;}
.y1d_c00117{bottom:405.800000pt;}
.y1c_c00117{bottom:437.800000pt;}
.y1b_c00117{bottom:456.360000pt;}
.y1a_c00117{bottom:474.920000pt;}
.y19_c00117{bottom:493.800000pt;}
.y18_c00117{bottom:512.360000pt;}
.y17_c00117{bottom:530.920000pt;}
.y16_c00117{bottom:549.800000pt;}
.y15_c00117{bottom:568.360000pt;}
.y14_c00117{bottom:600.360000pt;}
.y13_c00117{bottom:618.920000pt;}
.y12_c00117{bottom:637.800000pt;}
.y10_c00117{bottom:669.800000pt;}
.y11_c00117{bottom:676.520000pt;}
.yf_c00117{bottom:701.800000pt;}
.ye_c00117{bottom:735.720000pt;}
.yd_c00117{bottom:769.640000pt;}
.yc_c00117{bottom:801.640000pt;}
.yb_c00117{bottom:820.520000pt;}
.ya_c00117{bottom:839.080000pt;}
.y9_c00117{bottom:857.640000pt;}
.y8_c00117{bottom:876.520000pt;}
.y7_c00117{bottom:895.080000pt;}
.y6_c00117{bottom:913.640000pt;}
.y5_c00117{bottom:932.520000pt;}
.y4_c00117{bottom:964.520000pt;}
.y2_c00117{bottom:1011.880000pt;}
.hb_c00117{height:17.116000pt;}
.h7_c00117{height:28.992000pt;}
.h6_c00117{height:33.630720pt;}
.ha_c00117{height:34.978125pt;}
.hc_c00117{height:41.173333pt;}
.h8_c00117{height:41.761453pt;}
.h9_c00117{height:47.546880pt;}
.h4_c00117{height:50.928601pt;}
.h3_c00117{height:57.984000pt;}
.h5_c00117{height:60.510720pt;}
.h2_c00117{height:1067.880000pt;}
.h0_c00117{height:1122.520000pt;}
.h1_c00117{height:1122.666667pt;}
.w3_c00117{width:22.240000pt;}
.w2_c00117{width:767.960000pt;}
.w0_c00117{width:793.720000pt;}
.w1_c00117{width:794.000000pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:12.880000pt;}
.x2_c00117{left:100.480133pt;}
.x3_c00117{left:133.343733pt;}
.x12_c00117{left:138.286133pt;}
.x1a_c00117{left:149.358667pt;}
.x1b_c00117{left:162.691733pt;}
.x5_c00117{left:164.725200pt;}
.x13_c00117{left:167.911733pt;}
.x1c_c00117{left:171.741867pt;}
.x4_c00117{left:192.879200pt;}
.x6_c00117{left:208.317333pt;}
.x1d_c00117{left:209.698267pt;}
.x8_c00117{left:218.588533pt;}
.x14_c00117{left:226.586000pt;}
.x10_c00117{left:239.763067pt;}
.x7_c00117{left:261.660533pt;}
.xb_c00117{left:269.440000pt;}
.x11_c00117{left:273.842133pt;}
.x1e_c00117{left:279.362667pt;}
.x1f_c00117{left:287.679333pt;}
.x9_c00117{left:304.826800pt;}
.xa_c00117{left:370.202800pt;}
.x24_c00117{left:416.130133pt;}
.x25_c00117{left:476.900667pt;}
.x20_c00117{left:479.815467pt;}
.xe_c00117{left:488.914667pt;}
.x22_c00117{left:506.464533pt;}
.x23_c00117{left:526.870800pt;}
.x15_c00117{left:538.196533pt;}
.xf_c00117{left:540.481733pt;}
.x21_c00117{left:542.393200pt;}
.x16_c00117{left:565.700533pt;}
.x17_c00117{left:569.033867pt;}
.xc_c00117{left:581.004533pt;}
.x18_c00117{left:590.604800pt;}
.x19_c00117{left:621.828400pt;}
.xd_c00117{left:632.571600pt;}
.x26_c00117{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_770c33e46674910bc9907a83.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.134000;font-style:normal;font-weight:normal;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_a584f7ff4938cd4423d2851d.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;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:ff3_c00118;src:url('chunks/assets/font_0a6586d2af740ec56e9cd7ee.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_99abf19949a2acbab6ef5f5f.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:0.787000;font-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_c00118{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00118{vertical-align:-31.170679px;}
.v3_c00118{vertical-align:-24.480000px;}
.v0_c00118{vertical-align:0.000000px;}
.v1_c00118{vertical-align:31.170679px;}
.ls14_c00118{letter-spacing:-0.185094px;}
.ls15_c00118{letter-spacing:-0.179568px;}
.ls11_c00118{letter-spacing:0.000000px;}
.ls28_c00118{letter-spacing:0.144000px;}
.ls5_c00118{letter-spacing:0.213600px;}
.ls2f_c00118{letter-spacing:0.242064px;}
.ls1f_c00118{letter-spacing:0.265680px;}
.lsc_c00118{letter-spacing:0.283392px;}
.ls6_c00118{letter-spacing:0.292114px;}
.ls7_c00118{letter-spacing:0.295200px;}
.ls1d_c00118{letter-spacing:0.318816px;}
.lse_c00118{letter-spacing:0.324720px;}
.ls25_c00118{letter-spacing:0.328628px;}
.ls2b_c00118{letter-spacing:0.371952px;}
.ls19_c00118{letter-spacing:0.388800px;}
.ls22_c00118{letter-spacing:0.425088px;}
.lsd_c00118{letter-spacing:0.438171px;}
.ls26_c00118{letter-spacing:0.478224px;}
.lsa_c00118{letter-spacing:0.492942px;}
.ls8_c00118{letter-spacing:0.531360px;}
.lsb_c00118{letter-spacing:0.547713px;}
.ls2e_c00118{letter-spacing:0.596304px;}
.ls21_c00118{letter-spacing:0.602485px;}
.ls3_c00118{letter-spacing:0.628800px;}
.ls2d_c00118{letter-spacing:0.637632px;}
.ls31_c00118{letter-spacing:0.690768px;}
.ls1c_c00118{letter-spacing:0.712027px;}
.ls9_c00118{letter-spacing:0.730284px;}
.ls1a_c00118{letter-spacing:0.766799px;}
.ls24_c00118{letter-spacing:0.797040px;}
.ls1e_c00118{letter-spacing:0.821570px;}
.ls2a_c00118{letter-spacing:0.991970px;}
.ls30_c00118{letter-spacing:1.263456px;}
.ls32_c00118{letter-spacing:1.617696px;}
.ls16_c00118{letter-spacing:2.606400px;}
.ls27_c00118{letter-spacing:5.295888px;}
.ls18_c00118{letter-spacing:5.430672px;}
.ls1b_c00118{letter-spacing:5.567472px;}
.lsf_c00118{letter-spacing:5.976000px;}
.ls4_c00118{letter-spacing:5.990400px;}
.ls10_c00118{letter-spacing:6.159920px;}
.ls2_c00118{letter-spacing:7.322883px;}
.ls1_c00118{letter-spacing:7.457090px;}
.ls13_c00118{letter-spacing:7.531200px;}
.ls12_c00118{letter-spacing:7.538400px;}
.ls17_c00118{letter-spacing:7.646400px;}
.ls29_c00118{letter-spacing:8.206560px;}
.ls0_c00118{letter-spacing:8.551156px;}
.ls23_c00118{letter-spacing:10.892880px;}
.ls2c_c00118{letter-spacing:12.823488px;}
.ls20_c00118{letter-spacing:13.171824px;}
.sc__c00118{text-shadow:none;}
.sc1_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00118{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc1_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00118{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00118{word-spacing:-21.709008px;}
.ws3_c00118{word-spacing:-21.043152px;}
.ws0_c00118{word-spacing:-20.632021px;}
.wsc_c00118{word-spacing:-17.910227px;}
.ws5_c00118{word-spacing:-17.685056px;}
.ws6_c00118{word-spacing:-17.630284px;}
.ws7_c00118{word-spacing:-17.520742px;}
.ws8_c00118{word-spacing:-17.465970px;}
.wsd_c00118{word-spacing:-17.411199px;}
.ws10_c00118{word-spacing:-17.356428px;}
.ws9_c00118{word-spacing:-17.210371px;}
.wsf_c00118{word-spacing:-16.944480px;}
.wse_c00118{word-spacing:-16.708320px;}
.ws2_c00118{word-spacing:-11.429712px;}
.wsb_c00118{word-spacing:-10.152000px;}
.ws4_c00118{word-spacing:-10.008000px;}
.ws1_c00118{word-spacing:-2.823396px;}
.ws11_c00118{word-spacing:0.000000px;}
._12_c00118{margin-left:-13.697280px;}
._11_c00118{margin-left:-12.634560px;}
._13_c00118{margin-left:-11.630880px;}
._14_c00118{margin-left:-10.391040px;}
._1_c00118{margin-left:-8.419176px;}
._3_c00118{margin-left:-7.347993px;}
._e_c00118{margin-left:-6.081120px;}
._d_c00118{margin-left:-5.018400px;}
._9_c00118{margin-left:-2.620800px;}
._10_c00118{margin-left:-1.095427px;}
._7_c00118{width:1.008000px;}
._0_c00118{width:2.736000px;}
._c_c00118{width:3.896016px;}
._8_c00118{width:5.472000px;}
._b_c00118{width:6.783679px;}
._2_c00118{width:7.792670px;}
._a_c00118{width:9.631330px;}
._f_c00118{width:10.745280px;}
._5_c00118{width:12.096000px;}
._15_c00118{width:13.410720px;}
._4_c00118{width:16.416000px;}
._6_c00118{width:17.496000px;}
.fc0_c00118{color:rgb(0,0,0);}
.fs5_c00118{font-size:36.000000px;}
.fs3_c00118{font-size:41.760000px;}
.fs2_c00118{font-size:43.045223px;}
.fs4_c00118{font-size:56.160000px;}
.fs6_c00118{font-size:59.040000px;}
.fs8_c00118{font-size:60.000000px;}
.fs7_c00118{font-size:60.857039px;}
.fs0_c00118{font-size:72.000000px;}
.fs1_c00118{font-size:74.215901px;}
.y0_c00118{bottom:0.000000px;}
.y3_c00118{bottom:2.565000px;}
.y47_c00118{bottom:3.120150px;}
.y46_c00118{bottom:34.744500px;}
.y1_c00118{bottom:54.000000px;}
.y45_c00118{bottom:55.481040px;}
.y44_c00118{bottom:78.885000px;}
.y43_c00118{bottom:90.405000px;}
.y42_c00118{bottom:96.525000px;}
.y41_c00118{bottom:113.805000px;}
.y40_c00118{bottom:125.325000px;}
.y3f_c00118{bottom:131.445000px;}
.y3e_c00118{bottom:142.965000px;}
.y3d_c00118{bottom:149.085000px;}
.y3c_c00118{bottom:160.245000px;}
.y3b_c00118{bottom:160.246800px;}
.y3a_c00118{bottom:177.885000px;}
.y39_c00118{bottom:184.005000px;}
.y37_c00118{bottom:195.521040px;}
.y38_c00118{bottom:195.525000px;}
.y35_c00118{bottom:212.797800px;}
.y36_c00118{bottom:212.805000px;}
.y33_c00118{bottom:230.797800px;}
.y34_c00118{bottom:230.805000px;}
.y32_c00118{bottom:248.805000px;}
.y31_c00118{bottom:254.925000px;}
.y30_c00118{bottom:266.086800px;}
.y2f_c00118{bottom:283.725000px;}
.y2e_c00118{bottom:283.726800px;}
.y2d_c00118{bottom:301.365000px;}
.y2c_c00118{bottom:307.485000px;}
.y2b_c00118{bottom:318.645000px;}
.y2a_c00118{bottom:318.646800px;}
.y29_c00118{bottom:336.285000px;}
.y28_c00118{bottom:336.286800px;}
.y26_c00118{bottom:353.921040px;}
.y27_c00118{bottom:353.925000px;}
.y25_c00118{bottom:371.205000px;}
.y24_c00118{bottom:377.325000px;}
.y23_c00118{bottom:388.845000px;}
.y22_c00118{bottom:394.965000px;}
.y21_c00118{bottom:406.125000px;}
.y20_c00118{bottom:406.126800px;}
.y1f_c00118{bottom:423.765000px;}
.y1e_c00118{bottom:423.766800px;}
.y1d_c00118{bottom:441.405000px;}
.y1c_c00118{bottom:447.525000px;}
.y1b_c00118{bottom:474.165000px;}
.y1a_c00118{bottom:517.365000px;}
.y19_c00118{bottom:538.605000px;}
.y18_c00118{bottom:559.485000px;}
.y17_c00118{bottom:580.365000px;}
.y16_c00118{bottom:601.605000px;}
.y15_c00118{bottom:637.605000px;}
.y14_c00118{bottom:673.605000px;}
.y13_c00118{bottom:709.605000px;}
.y12_c00118{bottom:745.605000px;}
.y11_c00118{bottom:781.605000px;}
.y10_c00118{bottom:802.485000px;}
.yf_c00118{bottom:823.365000px;}
.ye_c00118{bottom:844.605000px;}
.yd_c00118{bottom:866.205000px;}
.yc_c00118{bottom:887.085000px;}
.yb_c00118{bottom:923.085000px;}
.ya_c00118{bottom:943.965000px;}
.y9_c00118{bottom:979.965000px;}
.y8_c00118{bottom:1000.845000px;}
.y7_c00118{bottom:1022.085000px;}
.y6_c00118{bottom:1042.965000px;}
.y5_c00118{bottom:1063.845000px;}
.y4_c00118{bottom:1085.085000px;}
.y2_c00118{bottom:1138.365000px;}
.hd_c00118{height:19.255500px;}
.h8_c00118{height:32.616000px;}
.hc_c00118{height:39.350391px;}
.he_c00118{height:46.320000px;}
.h9_c00118{height:46.981634px;}
.ha_c00118{height:53.490240px;}
.hb_c00118{height:55.136477px;}
.h4_c00118{height:57.294676px;}
.h5_c00118{height:64.401590px;}
.h3_c00118{height:65.232000px;}
.h7_c00118{height:67.239607px;}
.h6_c00118{height:68.074560px;}
.h2_c00118{height:1201.365000px;}
.h0_c00118{height:1262.835000px;}
.h1_c00118{height:1263.000000px;}
.w3_c00118{width:25.020000px;}
.w2_c00118{width:863.955000px;}
.w0_c00118{width:892.935000px;}
.w1_c00118{width:893.250000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:14.490000px;}
.x2_c00118{left:113.040150px;}
.x10_c00118{left:119.034000px;}
.x7_c00118{left:122.040150px;}
.x24_c00118{left:123.539850px;}
.x2a_c00118{left:125.440800px;}
.x40_c00118{left:127.310250px;}
.x38_c00118{left:129.203550px;}
.x1e_c00118{left:136.141800px;}
.x42_c00118{left:145.723050px;}
.x3_c00118{left:150.011700px;}
.x12_c00118{left:165.059250px;}
.x25_c00118{left:166.888950px;}
.x2b_c00118{left:168.789900px;}
.x17_c00118{left:171.053100px;}
.x39_c00118{left:172.552800px;}
.x1f_c00118{left:175.129350px;}
.x36_c00118{left:182.218200px;}
.x18_c00118{left:183.961650px;}
.x11_c00118{left:191.068800px;}
.x37_c00118{left:195.552600px;}
.x32_c00118{left:198.145050px;}
.x19_c00118{left:202.951200px;}
.x43_c00118{left:206.487300px;}
.x44_c00118{left:215.733750px;}
.x4_c00118{left:216.989100px;}
.x20_c00118{left:232.798500px;}
.x4e_c00118{left:244.706550px;}
.x4f_c00118{left:253.870950px;}
.x8_c00118{left:259.677900px;}
.x45_c00118{left:260.732700px;}
.x21_c00118{left:264.802050px;}
.x9_c00118{left:275.566050px;}
.x2c_c00118{left:282.075450px;}
.x22_c00118{left:284.005350px;}
.x3e_c00118{left:285.802050px;}
.x1a_c00118{left:319.047000px;}
.x2e_c00118{left:330.406800px;}
.x52_c00118{left:334.765500px;}
.x2d_c00118{left:337.093500px;}
.x1b_c00118{left:343.040400px;}
.x23_c00118{left:347.022600px;}
.x33_c00118{left:356.896050px;}
.x2f_c00118{left:362.251800px;}
.x34_c00118{left:366.096300px;}
.x13_c00118{left:385.081800px;}
.x3f_c00118{left:390.195150px;}
.x27_c00118{left:405.886950px;}
.xa_c00118{left:409.171800px;}
.xb_c00118{left:425.059650px;}
.x4a_c00118{left:433.226850px;}
.x50_c00118{left:436.417650px;}
.x3a_c00118{left:447.590700px;}
.x4b_c00118{left:453.006150px;}
.x51_c00118{left:456.411600px;}
.x4c_c00118{left:461.115900px;}
.x26_c00118{left:471.042450px;}
.x3b_c00118{left:511.239600px;}
.x28_c00118{left:525.117150px;}
.x4d_c00118{left:531.592500px;}
.x3c_c00118{left:546.569100px;}
.x1c_c00118{left:553.839150px;}
.xc_c00118{left:565.438800px;}
.x3d_c00118{left:568.548750px;}
.xd_c00118{left:589.005900px;}
.x35_c00118{left:608.125500px;}
.x1d_c00118{left:611.851950px;}
.x30_c00118{left:613.216500px;}
.x14_c00118{left:639.651150px;}
.x5_c00118{left:644.839950px;}
.x31_c00118{left:654.074700px;}
.xe_c00118{left:656.840400px;}
.xf_c00118{left:665.840400px;}
.x15_c00118{left:678.638700px;}
.x29_c00118{left:679.782000px;}
.x41_c00118{left:688.800600px;}
.x46_c00118{left:704.402700px;}
.x16_c00118{left:705.408750px;}
.x47_c00118{left:723.654000px;}
.x48_c00118{left:735.405300px;}
.x49_c00118{left:746.220300px;}
.x6_c00118{left:750.390000px;}
.x53_c00118{left:759.915000px;}
@media print{
.v2_c00118{vertical-align:-27.707270pt;}
.v3_c00118{vertical-align:-21.760000pt;}
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:27.707270pt;}
.ls14_c00118{letter-spacing:-0.164528pt;}
.ls15_c00118{letter-spacing:-0.159616pt;}
.ls11_c00118{letter-spacing:0.000000pt;}
.ls28_c00118{letter-spacing:0.128000pt;}
.ls5_c00118{letter-spacing:0.189867pt;}
.ls2f_c00118{letter-spacing:0.215168pt;}
.ls1f_c00118{letter-spacing:0.236160pt;}
.lsc_c00118{letter-spacing:0.251904pt;}
.ls6_c00118{letter-spacing:0.259657pt;}
.ls7_c00118{letter-spacing:0.262400pt;}
.ls1d_c00118{letter-spacing:0.283392pt;}
.lse_c00118{letter-spacing:0.288640pt;}
.ls25_c00118{letter-spacing:0.292114pt;}
.ls2b_c00118{letter-spacing:0.330624pt;}
.ls19_c00118{letter-spacing:0.345600pt;}
.ls22_c00118{letter-spacing:0.377856pt;}
.lsd_c00118{letter-spacing:0.389485pt;}
.ls26_c00118{letter-spacing:0.425088pt;}
.lsa_c00118{letter-spacing:0.438171pt;}
.ls8_c00118{letter-spacing:0.472320pt;}
.lsb_c00118{letter-spacing:0.486856pt;}
.ls2e_c00118{letter-spacing:0.530048pt;}
.ls21_c00118{letter-spacing:0.535542pt;}
.ls3_c00118{letter-spacing:0.558933pt;}
.ls2d_c00118{letter-spacing:0.566784pt;}
.ls31_c00118{letter-spacing:0.614016pt;}
.ls1c_c00118{letter-spacing:0.632913pt;}
.ls9_c00118{letter-spacing:0.649142pt;}
.ls1a_c00118{letter-spacing:0.681599pt;}
.ls24_c00118{letter-spacing:0.708480pt;}
.ls1e_c00118{letter-spacing:0.730284pt;}
.ls2a_c00118{letter-spacing:0.881751pt;}
.ls30_c00118{letter-spacing:1.123072pt;}
.ls32_c00118{letter-spacing:1.437952pt;}
.ls16_c00118{letter-spacing:2.316800pt;}
.ls27_c00118{letter-spacing:4.707456pt;}
.ls18_c00118{letter-spacing:4.827264pt;}
.ls1b_c00118{letter-spacing:4.948864pt;}
.lsf_c00118{letter-spacing:5.312000pt;}
.ls4_c00118{letter-spacing:5.324800pt;}
.ls10_c00118{letter-spacing:5.475484pt;}
.ls2_c00118{letter-spacing:6.509229pt;}
.ls1_c00118{letter-spacing:6.628525pt;}
.ls13_c00118{letter-spacing:6.694400pt;}
.ls12_c00118{letter-spacing:6.700800pt;}
.ls17_c00118{letter-spacing:6.796800pt;}
.ls29_c00118{letter-spacing:7.294720pt;}
.ls0_c00118{letter-spacing:7.601028pt;}
.ls23_c00118{letter-spacing:9.682560pt;}
.ls2c_c00118{letter-spacing:11.398656pt;}
.ls20_c00118{letter-spacing:11.708288pt;}
.wsa_c00118{word-spacing:-19.296896pt;}
.ws3_c00118{word-spacing:-18.705024pt;}
.ws0_c00118{word-spacing:-18.339574pt;}
.wsc_c00118{word-spacing:-15.920201pt;}
.ws5_c00118{word-spacing:-15.720049pt;}
.ws6_c00118{word-spacing:-15.671364pt;}
.ws7_c00118{word-spacing:-15.573992pt;}
.ws8_c00118{word-spacing:-15.525307pt;}
.wsd_c00118{word-spacing:-15.476621pt;}
.ws10_c00118{word-spacing:-15.427936pt;}
.ws9_c00118{word-spacing:-15.298107pt;}
.wsf_c00118{word-spacing:-15.061760pt;}
.wse_c00118{word-spacing:-14.851840pt;}
.ws2_c00118{word-spacing:-10.159744pt;}
.wsb_c00118{word-spacing:-9.024000pt;}
.ws4_c00118{word-spacing:-8.896000pt;}
.ws1_c00118{word-spacing:-2.509685pt;}
.ws11_c00118{word-spacing:0.000000pt;}
._12_c00118{margin-left:-12.175360pt;}
._11_c00118{margin-left:-11.230720pt;}
._13_c00118{margin-left:-10.338560pt;}
._14_c00118{margin-left:-9.236480pt;}
._1_c00118{margin-left:-7.483712pt;}
._3_c00118{margin-left:-6.531549pt;}
._e_c00118{margin-left:-5.405440pt;}
._d_c00118{margin-left:-4.460800pt;}
._9_c00118{margin-left:-2.329600pt;}
._10_c00118{margin-left:-0.973713pt;}
._7_c00118{width:0.896000pt;}
._0_c00118{width:2.432000pt;}
._c_c00118{width:3.463125pt;}
._8_c00118{width:4.864000pt;}
._b_c00118{width:6.029937pt;}
._2_c00118{width:6.926817pt;}
._a_c00118{width:8.561183pt;}
._f_c00118{width:9.551360pt;}
._5_c00118{width:10.752000pt;}
._15_c00118{width:11.920640pt;}
._4_c00118{width:14.592000pt;}
._6_c00118{width:15.552000pt;}
.fs5_c00118{font-size:32.000000pt;}
.fs3_c00118{font-size:37.120000pt;}
.fs2_c00118{font-size:38.262420pt;}
.fs4_c00118{font-size:49.920000pt;}
.fs6_c00118{font-size:52.480000pt;}
.fs8_c00118{font-size:53.333333pt;}
.fs7_c00118{font-size:54.095146pt;}
.fs0_c00118{font-size:64.000000pt;}
.fs1_c00118{font-size:65.969690pt;}
.y0_c00118{bottom:0.000000pt;}
.y3_c00118{bottom:2.280000pt;}
.y47_c00118{bottom:2.773467pt;}
.y46_c00118{bottom:30.884000pt;}
.y1_c00118{bottom:48.000000pt;}
.y45_c00118{bottom:49.316480pt;}
.y44_c00118{bottom:70.120000pt;}
.y43_c00118{bottom:80.360000pt;}
.y42_c00118{bottom:85.800000pt;}
.y41_c00118{bottom:101.160000pt;}
.y40_c00118{bottom:111.400000pt;}
.y3f_c00118{bottom:116.840000pt;}
.y3e_c00118{bottom:127.080000pt;}
.y3d_c00118{bottom:132.520000pt;}
.y3c_c00118{bottom:142.440000pt;}
.y3b_c00118{bottom:142.441600pt;}
.y3a_c00118{bottom:158.120000pt;}
.y39_c00118{bottom:163.560000pt;}
.y37_c00118{bottom:173.796480pt;}
.y38_c00118{bottom:173.800000pt;}
.y35_c00118{bottom:189.153600pt;}
.y36_c00118{bottom:189.160000pt;}
.y33_c00118{bottom:205.153600pt;}
.y34_c00118{bottom:205.160000pt;}
.y32_c00118{bottom:221.160000pt;}
.y31_c00118{bottom:226.600000pt;}
.y30_c00118{bottom:236.521600pt;}
.y2f_c00118{bottom:252.200000pt;}
.y2e_c00118{bottom:252.201600pt;}
.y2d_c00118{bottom:267.880000pt;}
.y2c_c00118{bottom:273.320000pt;}
.y2b_c00118{bottom:283.240000pt;}
.y2a_c00118{bottom:283.241600pt;}
.y29_c00118{bottom:298.920000pt;}
.y28_c00118{bottom:298.921600pt;}
.y26_c00118{bottom:314.596480pt;}
.y27_c00118{bottom:314.600000pt;}
.y25_c00118{bottom:329.960000pt;}
.y24_c00118{bottom:335.400000pt;}
.y23_c00118{bottom:345.640000pt;}
.y22_c00118{bottom:351.080000pt;}
.y21_c00118{bottom:361.000000pt;}
.y20_c00118{bottom:361.001600pt;}
.y1f_c00118{bottom:376.680000pt;}
.y1e_c00118{bottom:376.681600pt;}
.y1d_c00118{bottom:392.360000pt;}
.y1c_c00118{bottom:397.800000pt;}
.y1b_c00118{bottom:421.480000pt;}
.y1a_c00118{bottom:459.880000pt;}
.y19_c00118{bottom:478.760000pt;}
.y18_c00118{bottom:497.320000pt;}
.y17_c00118{bottom:515.880000pt;}
.y16_c00118{bottom:534.760000pt;}
.y15_c00118{bottom:566.760000pt;}
.y14_c00118{bottom:598.760000pt;}
.y13_c00118{bottom:630.760000pt;}
.y12_c00118{bottom:662.760000pt;}
.y11_c00118{bottom:694.760000pt;}
.y10_c00118{bottom:713.320000pt;}
.yf_c00118{bottom:731.880000pt;}
.ye_c00118{bottom:750.760000pt;}
.yd_c00118{bottom:769.960000pt;}
.yc_c00118{bottom:788.520000pt;}
.yb_c00118{bottom:820.520000pt;}
.ya_c00118{bottom:839.080000pt;}
.y9_c00118{bottom:871.080000pt;}
.y8_c00118{bottom:889.640000pt;}
.y7_c00118{bottom:908.520000pt;}
.y6_c00118{bottom:927.080000pt;}
.y5_c00118{bottom:945.640000pt;}
.y4_c00118{bottom:964.520000pt;}
.y2_c00118{bottom:1011.880000pt;}
.hd_c00118{height:17.116000pt;}
.h8_c00118{height:28.992000pt;}
.hc_c00118{height:34.978125pt;}
.he_c00118{height:41.173333pt;}
.h9_c00118{height:41.761453pt;}
.ha_c00118{height:47.546880pt;}
.hb_c00118{height:49.010202pt;}
.h4_c00118{height:50.928601pt;}
.h5_c00118{height:57.245858pt;}
.h3_c00118{height:57.984000pt;}
.h7_c00118{height:59.768539pt;}
.h6_c00118{height:60.510720pt;}
.h2_c00118{height:1067.880000pt;}
.h0_c00118{height:1122.520000pt;}
.h1_c00118{height:1122.666667pt;}
.w3_c00118{width:22.240000pt;}
.w2_c00118{width:767.960000pt;}
.w0_c00118{width:793.720000pt;}
.w1_c00118{width:794.000000pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:12.880000pt;}
.x2_c00118{left:100.480133pt;}
.x10_c00118{left:105.808000pt;}
.x7_c00118{left:108.480133pt;}
.x24_c00118{left:109.813200pt;}
.x2a_c00118{left:111.502933pt;}
.x40_c00118{left:113.164667pt;}
.x38_c00118{left:114.847600pt;}
.x1e_c00118{left:121.014933pt;}
.x42_c00118{left:129.531600pt;}
.x3_c00118{left:133.343733pt;}
.x12_c00118{left:146.719333pt;}
.x25_c00118{left:148.345733pt;}
.x2b_c00118{left:150.035467pt;}
.x17_c00118{left:152.047200pt;}
.x39_c00118{left:153.380267pt;}
.x1f_c00118{left:155.670533pt;}
.x36_c00118{left:161.971733pt;}
.x18_c00118{left:163.521467pt;}
.x11_c00118{left:169.838933pt;}
.x37_c00118{left:173.824533pt;}
.x32_c00118{left:176.128933pt;}
.x19_c00118{left:180.401067pt;}
.x43_c00118{left:183.544267pt;}
.x44_c00118{left:191.763333pt;}
.x4_c00118{left:192.879200pt;}
.x20_c00118{left:206.932000pt;}
.x4e_c00118{left:217.516933pt;}
.x4f_c00118{left:225.663067pt;}
.x8_c00118{left:230.824800pt;}
.x45_c00118{left:231.762400pt;}
.x21_c00118{left:235.379600pt;}
.x9_c00118{left:244.947600pt;}
.x2c_c00118{left:250.733733pt;}
.x22_c00118{left:252.449200pt;}
.x3e_c00118{left:254.046267pt;}
.x1a_c00118{left:283.597333pt;}
.x2e_c00118{left:293.694933pt;}
.x52_c00118{left:297.569333pt;}
.x2d_c00118{left:299.638667pt;}
.x1b_c00118{left:304.924800pt;}
.x23_c00118{left:308.464533pt;}
.x33_c00118{left:317.240933pt;}
.x2f_c00118{left:322.001600pt;}
.x34_c00118{left:325.418933pt;}
.x13_c00118{left:342.294933pt;}
.x3f_c00118{left:346.840133pt;}
.x27_c00118{left:360.788400pt;}
.xa_c00118{left:363.708267pt;}
.xb_c00118{left:377.830800pt;}
.x4a_c00118{left:385.090533pt;}
.x50_c00118{left:387.926800pt;}
.x3a_c00118{left:397.858400pt;}
.x4b_c00118{left:402.672133pt;}
.x51_c00118{left:405.699200pt;}
.x4c_c00118{left:409.880800pt;}
.x26_c00118{left:418.704400pt;}
.x3b_c00118{left:454.435200pt;}
.x28_c00118{left:466.770800pt;}
.x4d_c00118{left:472.526667pt;}
.x3c_c00118{left:485.839200pt;}
.x1c_c00118{left:492.301467pt;}
.xc_c00118{left:502.612267pt;}
.x3d_c00118{left:505.376667pt;}
.xd_c00118{left:523.560800pt;}
.x35_c00118{left:540.556000pt;}
.x1d_c00118{left:543.868400pt;}
.x30_c00118{left:545.081333pt;}
.x14_c00118{left:568.578800pt;}
.x5_c00118{left:573.191067pt;}
.x31_c00118{left:581.399733pt;}
.xe_c00118{left:583.858133pt;}
.xf_c00118{left:591.858133pt;}
.x15_c00118{left:603.234400pt;}
.x29_c00118{left:604.250667pt;}
.x41_c00118{left:612.267200pt;}
.x46_c00118{left:626.135733pt;}
.x16_c00118{left:627.030000pt;}
.x47_c00118{left:643.248000pt;}
.x48_c00118{left:653.693600pt;}
.x49_c00118{left:663.306933pt;}
.x6_c00118{left:667.013333pt;}
.x53_c00118{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_baa7b1e71da0925405af96c7.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.134000;font-style:normal;font-weight:normal;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_b6d305af5a9e81e6d491cd98.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;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:ff3_c00119;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00119;src:url('chunks/assets/font_bfdce420a09a9ac3e08bf48d.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:0.787000;font-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_c00119{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00119{vertical-align:-24.480000px;}
.v0_c00119{vertical-align:0.000000px;}
.v1_c00119{vertical-align:30.240000px;}
.ls5_c00119{letter-spacing:-0.179568px;}
.ls4_c00119{letter-spacing:0.000000px;}
.lsb_c00119{letter-spacing:0.144000px;}
.ls7_c00119{letter-spacing:0.265680px;}
.ls1_c00119{letter-spacing:0.283392px;}
.ls9_c00119{letter-spacing:0.438171px;}
.ls0_c00119{letter-spacing:0.531360px;}
.lsc_c00119{letter-spacing:0.690768px;}
.ls6_c00119{letter-spacing:0.766799px;}
.lsa_c00119{letter-spacing:0.962352px;}
.ls2_c00119{letter-spacing:5.976000px;}
.ls3_c00119{letter-spacing:6.159920px;}
.ls8_c00119{letter-spacing:7.297344px;}
.sc__c00119{text-shadow:none;}
.sc1_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00119{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc1_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00119{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00119{word-spacing:-17.685056px;}
.ws3_c00119{word-spacing:-16.944480px;}
.ws0_c00119{word-spacing:-11.429712px;}
.ws2_c00119{word-spacing:-10.152000px;}
.ws4_c00119{word-spacing:0.000000px;}
._8_c00119{margin-left:-7.781040px;}
._7_c00119{margin-left:-5.916240px;}
._5_c00119{margin-left:-1.006200px;}
._3_c00119{width:1.944000px;}
._4_c00119{width:4.320000px;}
._6_c00119{width:6.494400px;}
._1_c00119{width:7.776000px;}
._0_c00119{width:12.168000px;}
._2_c00119{width:13.248000px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs5_c00119{font-size:36.000000px;}
.fs2_c00119{font-size:41.760000px;}
.fs3_c00119{font-size:59.040000px;}
.fs6_c00119{font-size:60.000000px;}
.fs4_c00119{font-size:60.857039px;}
.fs0_c00119{font-size:72.000000px;}
.fs1_c00119{font-size:74.215901px;}
.y0_c00119{bottom:0.000000px;}
.y3_c00119{bottom:2.565000px;}
.y27_c00119{bottom:3.120150px;}
.y26_c00119{bottom:34.744500px;}
.y1_c00119{bottom:54.000000px;}
.y25_c00119{bottom:55.485000px;}
.y24_c00119{bottom:61.605000px;}
.y23_c00119{bottom:72.765000px;}
.y22_c00119{bottom:72.766800px;}
.y21_c00119{bottom:90.405000px;}
.y20_c00119{bottom:123.165000px;}
.y1f_c00119{bottom:217.845000px;}
.y1e_c00119{bottom:253.845000px;}
.y1d_c00119{bottom:289.845000px;}
.y1c_c00119{bottom:310.725000px;}
.y1b_c00119{bottom:346.725000px;}
.y1a_c00119{bottom:382.725000px;}
.y19_c00119{bottom:418.725000px;}
.y18_c00119{bottom:439.965000px;}
.y17_c00119{bottom:475.965000px;}
.y16_c00119{bottom:511.965000px;}
.y15_c00119{bottom:547.965000px;}
.y14_c00119{bottom:568.845000px;}
.y13_c00119{bottom:604.845000px;}
.y12_c00119{bottom:640.845000px;}
.y11_c00119{bottom:676.845000px;}
.y10_c00119{bottom:698.085000px;}
.yf_c00119{bottom:734.085000px;}
.ye_c00119{bottom:770.085000px;}
.yd_c00119{bottom:806.085000px;}
.yc_c00119{bottom:826.965000px;}
.yb_c00119{bottom:862.965000px;}
.ya_c00119{bottom:898.965000px;}
.y9_c00119{bottom:934.965000px;}
.y8_c00119{bottom:970.965000px;}
.y7_c00119{bottom:1006.965000px;}
.y6_c00119{bottom:1042.965000px;}
.y5_c00119{bottom:1063.845000px;}
.y4_c00119{bottom:1085.085000px;}
.y2_c00119{bottom:1138.365000px;}
.ha_c00119{height:19.255500px;}
.h9_c00119{height:32.616000px;}
.hb_c00119{height:46.320000px;}
.h8_c00119{height:46.981634px;}
.h6_c00119{height:52.031250px;}
.h7_c00119{height:53.490240px;}
.h4_c00119{height:57.294676px;}
.h3_c00119{height:65.232000px;}
.h5_c00119{height:68.074560px;}
.h2_c00119{height:1201.365000px;}
.h0_c00119{height:1262.835000px;}
.h1_c00119{height:1263.000000px;}
.w3_c00119{width:25.020000px;}
.w2_c00119{width:863.955000px;}
.w0_c00119{width:892.935000px;}
.w1_c00119{width:893.250000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:14.490000px;}
.x2_c00119{left:113.040150px;}
.x7_c00119{left:148.031550px;}
.x3_c00119{left:150.011700px;}
.x8_c00119{left:153.516750px;}
.x5_c00119{left:155.634300px;}
.x6_c00119{left:182.640000px;}
.x9_c00119{left:191.614050px;}
.x4_c00119{left:216.989100px;}
.xa_c00119{left:234.963150px;}
.xd_c00119{left:424.763700px;}
.xe_c00119{left:444.757650px;}
.xb_c00119{left:488.942400px;}
.xc_c00119{left:508.936500px;}
.xf_c00119{left:759.915000px;}
@media print{
.v2_c00119{vertical-align:-21.760000pt;}
.v0_c00119{vertical-align:0.000000pt;}
.v1_c00119{vertical-align:26.880000pt;}
.ls5_c00119{letter-spacing:-0.159616pt;}
.ls4_c00119{letter-spacing:0.000000pt;}
.lsb_c00119{letter-spacing:0.128000pt;}
.ls7_c00119{letter-spacing:0.236160pt;}
.ls1_c00119{letter-spacing:0.251904pt;}
.ls9_c00119{letter-spacing:0.389485pt;}
.ls0_c00119{letter-spacing:0.472320pt;}
.lsc_c00119{letter-spacing:0.614016pt;}
.ls6_c00119{letter-spacing:0.681599pt;}
.lsa_c00119{letter-spacing:0.855424pt;}
.ls2_c00119{letter-spacing:5.312000pt;}
.ls3_c00119{letter-spacing:5.475484pt;}
.ls8_c00119{letter-spacing:6.486528pt;}
.ws1_c00119{word-spacing:-15.720049pt;}
.ws3_c00119{word-spacing:-15.061760pt;}
.ws0_c00119{word-spacing:-10.159744pt;}
.ws2_c00119{word-spacing:-9.024000pt;}
.ws4_c00119{word-spacing:0.000000pt;}
._8_c00119{margin-left:-6.916480pt;}
._7_c00119{margin-left:-5.258880pt;}
._5_c00119{margin-left:-0.894400pt;}
._3_c00119{width:1.728000pt;}
._4_c00119{width:3.840000pt;}
._6_c00119{width:5.772800pt;}
._1_c00119{width:6.912000pt;}
._0_c00119{width:10.816000pt;}
._2_c00119{width:11.776000pt;}
.fs5_c00119{font-size:32.000000pt;}
.fs2_c00119{font-size:37.120000pt;}
.fs3_c00119{font-size:52.480000pt;}
.fs6_c00119{font-size:53.333333pt;}
.fs4_c00119{font-size:54.095146pt;}
.fs0_c00119{font-size:64.000000pt;}
.fs1_c00119{font-size:65.969690pt;}
.y0_c00119{bottom:0.000000pt;}
.y3_c00119{bottom:2.280000pt;}
.y27_c00119{bottom:2.773467pt;}
.y26_c00119{bottom:30.884000pt;}
.y1_c00119{bottom:48.000000pt;}
.y25_c00119{bottom:49.320000pt;}
.y24_c00119{bottom:54.760000pt;}
.y23_c00119{bottom:64.680000pt;}
.y22_c00119{bottom:64.681600pt;}
.y21_c00119{bottom:80.360000pt;}
.y20_c00119{bottom:109.480000pt;}
.y1f_c00119{bottom:193.640000pt;}
.y1e_c00119{bottom:225.640000pt;}
.y1d_c00119{bottom:257.640000pt;}
.y1c_c00119{bottom:276.200000pt;}
.y1b_c00119{bottom:308.200000pt;}
.y1a_c00119{bottom:340.200000pt;}
.y19_c00119{bottom:372.200000pt;}
.y18_c00119{bottom:391.080000pt;}
.y17_c00119{bottom:423.080000pt;}
.y16_c00119{bottom:455.080000pt;}
.y15_c00119{bottom:487.080000pt;}
.y14_c00119{bottom:505.640000pt;}
.y13_c00119{bottom:537.640000pt;}
.y12_c00119{bottom:569.640000pt;}
.y11_c00119{bottom:601.640000pt;}
.y10_c00119{bottom:620.520000pt;}
.yf_c00119{bottom:652.520000pt;}
.ye_c00119{bottom:684.520000pt;}
.yd_c00119{bottom:716.520000pt;}
.yc_c00119{bottom:735.080000pt;}
.yb_c00119{bottom:767.080000pt;}
.ya_c00119{bottom:799.080000pt;}
.y9_c00119{bottom:831.080000pt;}
.y8_c00119{bottom:863.080000pt;}
.y7_c00119{bottom:895.080000pt;}
.y6_c00119{bottom:927.080000pt;}
.y5_c00119{bottom:945.640000pt;}
.y4_c00119{bottom:964.520000pt;}
.y2_c00119{bottom:1011.880000pt;}
.ha_c00119{height:17.116000pt;}
.h9_c00119{height:28.992000pt;}
.hb_c00119{height:41.173333pt;}
.h8_c00119{height:41.761453pt;}
.h6_c00119{height:46.250000pt;}
.h7_c00119{height:47.546880pt;}
.h4_c00119{height:50.928601pt;}
.h3_c00119{height:57.984000pt;}
.h5_c00119{height:60.510720pt;}
.h2_c00119{height:1067.880000pt;}
.h0_c00119{height:1122.520000pt;}
.h1_c00119{height:1122.666667pt;}
.w3_c00119{width:22.240000pt;}
.w2_c00119{width:767.960000pt;}
.w0_c00119{width:793.720000pt;}
.w1_c00119{width:794.000000pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:12.880000pt;}
.x2_c00119{left:100.480133pt;}
.x7_c00119{left:131.583600pt;}
.x3_c00119{left:133.343733pt;}
.x8_c00119{left:136.459333pt;}
.x5_c00119{left:138.341600pt;}
.x6_c00119{left:162.346667pt;}
.x9_c00119{left:170.323600pt;}
.x4_c00119{left:192.879200pt;}
.xa_c00119{left:208.856133pt;}
.xd_c00119{left:377.567733pt;}
.xe_c00119{left:395.340133pt;}
.xb_c00119{left:434.615467pt;}
.xc_c00119{left:452.388000pt;}
.xf_c00119{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a5d0ee0804b4f0ede0dd5d14.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.134000;font-style:normal;font-weight:normal;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_653ed14661571986b52675b4.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;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:ff3_c00120;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00120;src:url('chunks/assets/font_071f91e631aa89ec15a2c704.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:0.787000;font-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_c00120{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00120{vertical-align:-24.480000px;}
.v0_c00120{vertical-align:0.000000px;}
.v1_c00120{vertical-align:30.240000px;}
.ls7_c00120{letter-spacing:-0.179568px;}
.ls5_c00120{letter-spacing:0.000000px;}
.lsa_c00120{letter-spacing:0.144000px;}
.lsb_c00120{letter-spacing:0.265680px;}
.ls2_c00120{letter-spacing:0.295200px;}
.ls10_c00120{letter-spacing:0.318816px;}
.lsf_c00120{letter-spacing:0.425088px;}
.ls11_c00120{letter-spacing:0.478224px;}
.lsd_c00120{letter-spacing:0.531360px;}
.lse_c00120{letter-spacing:0.584496px;}
.ls1_c00120{letter-spacing:0.821570px;}
.lsc_c00120{letter-spacing:4.811760px;}
.ls6_c00120{letter-spacing:5.430672px;}
.ls3_c00120{letter-spacing:5.976000px;}
.ls0_c00120{letter-spacing:5.997600px;}
.ls4_c00120{letter-spacing:6.159920px;}
.ls9_c00120{letter-spacing:8.071200px;}
.ls8_c00120{letter-spacing:20.700000px;}
.sc__c00120{text-shadow:none;}
.sc1_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00120{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc1_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00120{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00120{word-spacing:-21.043152px;}
.ws1_c00120{word-spacing:-20.016000px;}
.ws4_c00120{word-spacing:-17.739827px;}
.ws2_c00120{word-spacing:-11.429712px;}
.ws3_c00120{word-spacing:-10.152000px;}
.ws5_c00120{word-spacing:0.000000px;}
._c_c00120{margin-left:-20.664000px;}
._12_c00120{margin-left:-4.420800px;}
._4_c00120{margin-left:-1.179360px;}
._2_c00120{width:1.944000px;}
._8_c00120{width:2.952000px;}
._a_c00120{width:4.824000px;}
._f_c00120{width:6.336000px;}
._3_c00120{width:7.776000px;}
._10_c00120{width:8.928000px;}
._11_c00120{width:9.936000px;}
._9_c00120{width:11.232000px;}
._0_c00120{width:13.752000px;}
._7_c00120{width:14.760000px;}
._1_c00120{width:16.056000px;}
._6_c00120{width:17.496000px;}
._b_c00120{width:21.312000px;}
._e_c00120{width:23.040000px;}
._5_c00120{width:25.416000px;}
._d_c00120{width:29.880000px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs4_c00120{font-size:36.000000px;}
.fs3_c00120{font-size:41.760000px;}
.fs2_c00120{font-size:56.160000px;}
.fs5_c00120{font-size:59.040000px;}
.fs7_c00120{font-size:60.000000px;}
.fs6_c00120{font-size:60.857039px;}
.fs0_c00120{font-size:72.000000px;}
.fs1_c00120{font-size:74.215901px;}
.y0_c00120{bottom:0.000000px;}
.y3_c00120{bottom:2.565000px;}
.y2d_c00120{bottom:3.120150px;}
.y2c_c00120{bottom:34.744500px;}
.y1_c00120{bottom:54.000000px;}
.y2b_c00120{bottom:55.478880px;}
.y2a_c00120{bottom:72.762840px;}
.y29_c00120{bottom:90.401040px;}
.y28_c00120{bottom:107.685000px;}
.y27_c00120{bottom:113.805000px;}
.y26_c00120{bottom:131.445000px;}
.y25_c00120{bottom:158.085000px;}
.y24_c00120{bottom:232.965000px;}
.y23_c00120{bottom:268.965000px;}
.y22_c00120{bottom:289.845000px;}
.y21_c00120{bottom:310.725000px;}
.y20_c00120{bottom:331.965000px;}
.y1f_c00120{bottom:367.965000px;}
.y1e_c00120{bottom:388.845000px;}
.y1d_c00120{bottom:409.725000px;}
.y1c_c00120{bottom:430.965000px;}
.y1b_c00120{bottom:451.845000px;}
.y1a_c00120{bottom:472.725000px;}
.y19_c00120{bottom:493.965000px;}
.y18_c00120{bottom:514.845000px;}
.y17_c00120{bottom:550.845000px;}
.y16_c00120{bottom:571.725000px;}
.y15_c00120{bottom:592.965000px;}
.y14_c00120{bottom:613.845000px;}
.y13_c00120{bottom:635.085000px;}
.y12_c00120{bottom:655.965000px;}
.y11_c00120{bottom:691.965000px;}
.y10_c00120{bottom:727.965000px;}
.yf_c00120{bottom:763.965000px;}
.ye_c00120{bottom:784.845000px;}
.yd_c00120{bottom:820.845000px;}
.yc_c00120{bottom:856.845000px;}
.yb_c00120{bottom:892.845000px;}
.ya_c00120{bottom:914.085000px;}
.y9_c00120{bottom:934.965000px;}
.y8_c00120{bottom:970.965000px;}
.y7_c00120{bottom:1006.965000px;}
.y6_c00120{bottom:1042.965000px;}
.y5_c00120{bottom:1063.845000px;}
.y4_c00120{bottom:1085.085000px;}
.y2_c00120{bottom:1138.365000px;}
.ha_c00120{height:19.255500px;}
.h7_c00120{height:32.616000px;}
.hb_c00120{height:46.320000px;}
.h8_c00120{height:46.981634px;}
.h5_c00120{height:52.031250px;}
.h9_c00120{height:53.490240px;}
.h4_c00120{height:57.294676px;}
.h3_c00120{height:65.232000px;}
.h6_c00120{height:68.074560px;}
.h2_c00120{height:1201.365000px;}
.h0_c00120{height:1262.835000px;}
.h1_c00120{height:1263.000000px;}
.w3_c00120{width:25.020000px;}
.w2_c00120{width:863.955000px;}
.w0_c00120{width:892.935000px;}
.w1_c00120{width:893.250000px;}
.x0_c00120{left:0.000000px;}
.x1_c00120{left:14.490000px;}
.x2_c00120{left:113.040150px;}
.x5_c00120{left:148.031550px;}
.x3_c00120{left:150.011700px;}
.x8_c00120{left:153.516750px;}
.x6_c00120{left:155.645550px;}
.x7_c00120{left:182.640000px;}
.x11_c00120{left:207.024600px;}
.x4_c00120{left:216.989100px;}
.x12_c00120{left:242.844000px;}
.xd_c00120{left:278.580300px;}
.xf_c00120{left:386.193300px;}
.xe_c00120{left:451.604400px;}
.x10_c00120{left:478.282800px;}
.xb_c00120{left:481.291650px;}
.xc_c00120{left:558.502050px;}
.x9_c00120{left:592.014450px;}
.xa_c00120{left:650.027250px;}
.x13_c00120{left:759.915000px;}
@media print{
.v2_c00120{vertical-align:-21.760000pt;}
.v0_c00120{vertical-align:0.000000pt;}
.v1_c00120{vertical-align:26.880000pt;}
.ls7_c00120{letter-spacing:-0.159616pt;}
.ls5_c00120{letter-spacing:0.000000pt;}
.lsa_c00120{letter-spacing:0.128000pt;}
.lsb_c00120{letter-spacing:0.236160pt;}
.ls2_c00120{letter-spacing:0.262400pt;}
.ls10_c00120{letter-spacing:0.283392pt;}
.lsf_c00120{letter-spacing:0.377856pt;}
.ls11_c00120{letter-spacing:0.425088pt;}
.lsd_c00120{letter-spacing:0.472320pt;}
.lse_c00120{letter-spacing:0.519552pt;}
.ls1_c00120{letter-spacing:0.730284pt;}
.lsc_c00120{letter-spacing:4.277120pt;}
.ls6_c00120{letter-spacing:4.827264pt;}
.ls3_c00120{letter-spacing:5.312000pt;}
.ls0_c00120{letter-spacing:5.331200pt;}
.ls4_c00120{letter-spacing:5.475484pt;}
.ls9_c00120{letter-spacing:7.174400pt;}
.ls8_c00120{letter-spacing:18.400000pt;}
.ws0_c00120{word-spacing:-18.705024pt;}
.ws1_c00120{word-spacing:-17.792000pt;}
.ws4_c00120{word-spacing:-15.768735pt;}
.ws2_c00120{word-spacing:-10.159744pt;}
.ws3_c00120{word-spacing:-9.024000pt;}
.ws5_c00120{word-spacing:0.000000pt;}
._c_c00120{margin-left:-18.368000pt;}
._12_c00120{margin-left:-3.929600pt;}
._4_c00120{margin-left:-1.048320pt;}
._2_c00120{width:1.728000pt;}
._8_c00120{width:2.624000pt;}
._a_c00120{width:4.288000pt;}
._f_c00120{width:5.632000pt;}
._3_c00120{width:6.912000pt;}
._10_c00120{width:7.936000pt;}
._11_c00120{width:8.832000pt;}
._9_c00120{width:9.984000pt;}
._0_c00120{width:12.224000pt;}
._7_c00120{width:13.120000pt;}
._1_c00120{width:14.272000pt;}
._6_c00120{width:15.552000pt;}
._b_c00120{width:18.944000pt;}
._e_c00120{width:20.480000pt;}
._5_c00120{width:22.592000pt;}
._d_c00120{width:26.560000pt;}
.fs4_c00120{font-size:32.000000pt;}
.fs3_c00120{font-size:37.120000pt;}
.fs2_c00120{font-size:49.920000pt;}
.fs5_c00120{font-size:52.480000pt;}
.fs7_c00120{font-size:53.333333pt;}
.fs6_c00120{font-size:54.095146pt;}
.fs0_c00120{font-size:64.000000pt;}
.fs1_c00120{font-size:65.969690pt;}
.y0_c00120{bottom:0.000000pt;}
.y3_c00120{bottom:2.280000pt;}
.y2d_c00120{bottom:2.773467pt;}
.y2c_c00120{bottom:30.884000pt;}
.y1_c00120{bottom:48.000000pt;}
.y2b_c00120{bottom:49.314560pt;}
.y2a_c00120{bottom:64.678080pt;}
.y29_c00120{bottom:80.356480pt;}
.y28_c00120{bottom:95.720000pt;}
.y27_c00120{bottom:101.160000pt;}
.y26_c00120{bottom:116.840000pt;}
.y25_c00120{bottom:140.520000pt;}
.y24_c00120{bottom:207.080000pt;}
.y23_c00120{bottom:239.080000pt;}
.y22_c00120{bottom:257.640000pt;}
.y21_c00120{bottom:276.200000pt;}
.y20_c00120{bottom:295.080000pt;}
.y1f_c00120{bottom:327.080000pt;}
.y1e_c00120{bottom:345.640000pt;}
.y1d_c00120{bottom:364.200000pt;}
.y1c_c00120{bottom:383.080000pt;}
.y1b_c00120{bottom:401.640000pt;}
.y1a_c00120{bottom:420.200000pt;}
.y19_c00120{bottom:439.080000pt;}
.y18_c00120{bottom:457.640000pt;}
.y17_c00120{bottom:489.640000pt;}
.y16_c00120{bottom:508.200000pt;}
.y15_c00120{bottom:527.080000pt;}
.y14_c00120{bottom:545.640000pt;}
.y13_c00120{bottom:564.520000pt;}
.y12_c00120{bottom:583.080000pt;}
.y11_c00120{bottom:615.080000pt;}
.y10_c00120{bottom:647.080000pt;}
.yf_c00120{bottom:679.080000pt;}
.ye_c00120{bottom:697.640000pt;}
.yd_c00120{bottom:729.640000pt;}
.yc_c00120{bottom:761.640000pt;}
.yb_c00120{bottom:793.640000pt;}
.ya_c00120{bottom:812.520000pt;}
.y9_c00120{bottom:831.080000pt;}
.y8_c00120{bottom:863.080000pt;}
.y7_c00120{bottom:895.080000pt;}
.y6_c00120{bottom:927.080000pt;}
.y5_c00120{bottom:945.640000pt;}
.y4_c00120{bottom:964.520000pt;}
.y2_c00120{bottom:1011.880000pt;}
.ha_c00120{height:17.116000pt;}
.h7_c00120{height:28.992000pt;}
.hb_c00120{height:41.173333pt;}
.h8_c00120{height:41.761453pt;}
.h5_c00120{height:46.250000pt;}
.h9_c00120{height:47.546880pt;}
.h4_c00120{height:50.928601pt;}
.h3_c00120{height:57.984000pt;}
.h6_c00120{height:60.510720pt;}
.h2_c00120{height:1067.880000pt;}
.h0_c00120{height:1122.520000pt;}
.h1_c00120{height:1122.666667pt;}
.w3_c00120{width:22.240000pt;}
.w2_c00120{width:767.960000pt;}
.w0_c00120{width:793.720000pt;}
.w1_c00120{width:794.000000pt;}
.x0_c00120{left:0.000000pt;}
.x1_c00120{left:12.880000pt;}
.x2_c00120{left:100.480133pt;}
.x5_c00120{left:131.583600pt;}
.x3_c00120{left:133.343733pt;}
.x8_c00120{left:136.459333pt;}
.x6_c00120{left:138.351600pt;}
.x7_c00120{left:162.346667pt;}
.x11_c00120{left:184.021867pt;}
.x4_c00120{left:192.879200pt;}
.x12_c00120{left:215.861333pt;}
.xd_c00120{left:247.626933pt;}
.xf_c00120{left:343.282933pt;}
.xe_c00120{left:401.426133pt;}
.x10_c00120{left:425.140267pt;}
.xb_c00120{left:427.814800pt;}
.xc_c00120{left:496.446267pt;}
.x9_c00120{left:526.235067pt;}
.xa_c00120{left:577.802000pt;}
.x13_c00120{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_07bf46e29b6945d16ee28ef3.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.134000;font-style:normal;font-weight:normal;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_d0c2b548aee12183dd650fca.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;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:ff3_c00121;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_6354ddfe92e719de62be2bb9.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00121{vertical-align:-24.480000px;}
.v0_c00121{vertical-align:0.000000px;}
.v1_c00121{vertical-align:30.240000px;}
.ls4_c00121{letter-spacing:-0.179568px;}
.ls3_c00121{letter-spacing:0.000000px;}
.ls5_c00121{letter-spacing:0.144000px;}
.ls7_c00121{letter-spacing:0.318816px;}
.ls1_c00121{letter-spacing:5.976000px;}
.ls2_c00121{letter-spacing:6.159920px;}
.ls6_c00121{letter-spacing:21.130416px;}
.ls0_c00121{letter-spacing:54.864000px;}
.sc__c00121{text-shadow:none;}
.sc1_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00121{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc1_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00121{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00121{word-spacing:-16.731936px;}
.ws0_c00121{word-spacing:-11.429712px;}
.ws1_c00121{word-spacing:-10.152000px;}
.ws3_c00121{word-spacing:0.000000px;}
._2_c00121{margin-left:-20.715840px;}
._3_c00121{margin-left:-19.611360px;}
._1_c00121{margin-left:-1.043400px;}
._4_c00121{width:1.062720px;}
._0_c00121{width:4.320000px;}
.fc0_c00121{color:rgb(0,0,0);}
.fs3_c00121{font-size:36.000000px;}
.fs2_c00121{font-size:41.760000px;}
.fs4_c00121{font-size:59.040000px;}
.fs5_c00121{font-size:60.000000px;}
.fs0_c00121{font-size:72.000000px;}
.fs1_c00121{font-size:74.215901px;}
.y0_c00121{bottom:0.000000px;}
.y3_c00121{bottom:2.565000px;}
.ya_c00121{bottom:3.120150px;}
.y9_c00121{bottom:34.744500px;}
.y1_c00121{bottom:54.000000px;}
.y8_c00121{bottom:55.481040px;}
.y7_c00121{bottom:78.885000px;}
.y6_c00121{bottom:105.525000px;}
.y5_c00121{bottom:1063.845000px;}
.y4_c00121{bottom:1085.085000px;}
.y2_c00121{bottom:1138.365000px;}
.h8_c00121{height:19.255500px;}
.h6_c00121{height:32.616000px;}
.h9_c00121{height:46.320000px;}
.h7_c00121{height:53.490240px;}
.h4_c00121{height:57.294676px;}
.h3_c00121{height:65.232000px;}
.h5_c00121{height:68.074560px;}
.h2_c00121{height:1201.365000px;}
.h0_c00121{height:1262.835000px;}
.h1_c00121{height:1263.000000px;}
.w3_c00121{width:25.020000px;}
.w2_c00121{width:863.955000px;}
.w0_c00121{width:892.935000px;}
.w1_c00121{width:893.250000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:14.490000px;}
.x2_c00121{left:113.040150px;}
.x5_c00121{left:140.039100px;}
.x3_c00121{left:150.011700px;}
.x4_c00121{left:216.989100px;}
.x6_c00121{left:759.915000px;}
@media print{
.v2_c00121{vertical-align:-21.760000pt;}
.v0_c00121{vertical-align:0.000000pt;}
.v1_c00121{vertical-align:26.880000pt;}
.ls4_c00121{letter-spacing:-0.159616pt;}
.ls3_c00121{letter-spacing:0.000000pt;}
.ls5_c00121{letter-spacing:0.128000pt;}
.ls7_c00121{letter-spacing:0.283392pt;}
.ls1_c00121{letter-spacing:5.312000pt;}
.ls2_c00121{letter-spacing:5.475484pt;}
.ls6_c00121{letter-spacing:18.782592pt;}
.ls0_c00121{letter-spacing:48.768000pt;}
.ws2_c00121{word-spacing:-14.872832pt;}
.ws0_c00121{word-spacing:-10.159744pt;}
.ws1_c00121{word-spacing:-9.024000pt;}
.ws3_c00121{word-spacing:0.000000pt;}
._2_c00121{margin-left:-18.414080pt;}
._3_c00121{margin-left:-17.432320pt;}
._1_c00121{margin-left:-0.927467pt;}
._4_c00121{width:0.944640pt;}
._0_c00121{width:3.840000pt;}
.fs3_c00121{font-size:32.000000pt;}
.fs2_c00121{font-size:37.120000pt;}
.fs4_c00121{font-size:52.480000pt;}
.fs5_c00121{font-size:53.333333pt;}
.fs0_c00121{font-size:64.000000pt;}
.fs1_c00121{font-size:65.969690pt;}
.y0_c00121{bottom:0.000000pt;}
.y3_c00121{bottom:2.280000pt;}
.ya_c00121{bottom:2.773467pt;}
.y9_c00121{bottom:30.884000pt;}
.y1_c00121{bottom:48.000000pt;}
.y8_c00121{bottom:49.316480pt;}
.y7_c00121{bottom:70.120000pt;}
.y6_c00121{bottom:93.800000pt;}
.y5_c00121{bottom:945.640000pt;}
.y4_c00121{bottom:964.520000pt;}
.y2_c00121{bottom:1011.880000pt;}
.h8_c00121{height:17.116000pt;}
.h6_c00121{height:28.992000pt;}
.h9_c00121{height:41.173333pt;}
.h7_c00121{height:47.546880pt;}
.h4_c00121{height:50.928601pt;}
.h3_c00121{height:57.984000pt;}
.h5_c00121{height:60.510720pt;}
.h2_c00121{height:1067.880000pt;}
.h0_c00121{height:1122.520000pt;}
.h1_c00121{height:1122.666667pt;}
.w3_c00121{width:22.240000pt;}
.w2_c00121{width:767.960000pt;}
.w0_c00121{width:793.720000pt;}
.w1_c00121{width:794.000000pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:12.880000pt;}
.x2_c00121{left:100.480133pt;}
.x5_c00121{left:124.479200pt;}
.x3_c00121{left:133.343733pt;}
.x4_c00121{left:192.879200pt;}
.x6_c00121{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a545b7a46d93b97f75f4165b.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_0069d99a22dbabfd9de2850c.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;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:ff3_c00122;src:url('chunks/assets/font_c36b2344f67f88c65c251671.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_568ca3b93883d1f6b8f9ae7b.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00122{vertical-align:-24.480000px;}
.v0_c00122{vertical-align:0.000000px;}
.v1_c00122{vertical-align:30.240000px;}
.ls13_c00122{letter-spacing:-0.179568px;}
.ls12_c00122{letter-spacing:0.000000px;}
.ls24_c00122{letter-spacing:0.144000px;}
.ls1_c00122{letter-spacing:0.265080px;}
.ls2_c00122{letter-spacing:0.265680px;}
.lsf_c00122{letter-spacing:0.295200px;}
.ls7_c00122{letter-spacing:0.318480px;}
.lsb_c00122{letter-spacing:0.319080px;}
.ls25_c00122{letter-spacing:0.438171px;}
.ls3_c00122{letter-spacing:0.492942px;}
.ls8_c00122{letter-spacing:0.507744px;}
.ls4_c00122{letter-spacing:0.531360px;}
.lsc_c00122{letter-spacing:0.537264px;}
.ls10_c00122{letter-spacing:0.543168px;}
.ls9_c00122{letter-spacing:0.549072px;}
.lse_c00122{letter-spacing:0.560880px;}
.ls27_c00122{letter-spacing:0.584496px;}
.ls1e_c00122{letter-spacing:0.655344px;}
.ls16_c00122{letter-spacing:0.690768px;}
.ls17_c00122{letter-spacing:0.696672px;}
.ls6_c00122{letter-spacing:0.712027px;}
.ls26_c00122{letter-spacing:0.743904px;}
.ls1b_c00122{letter-spacing:0.766799px;}
.ls14_c00122{letter-spacing:0.821570px;}
.ls5_c00122{letter-spacing:0.991970px;}
.ls15_c00122{letter-spacing:5.248656px;}
.lsd_c00122{letter-spacing:5.353440px;}
.ls1f_c00122{letter-spacing:5.514336px;}
.ls0_c00122{letter-spacing:5.976000px;}
.ls11_c00122{letter-spacing:6.159920px;}
.ls1c_c00122{letter-spacing:6.411744px;}
.ls28_c00122{letter-spacing:6.689232px;}
.ls23_c00122{letter-spacing:7.875936px;}
.ls18_c00122{letter-spacing:7.958592px;}
.ls1a_c00122{letter-spacing:9.003600px;}
.ls19_c00122{letter-spacing:17.735616px;}
.ls1d_c00122{letter-spacing:22.464720px;}
.lsa_c00122{letter-spacing:27.766512px;}
.ls22_c00122{letter-spacing:88.955568px;}
.ls20_c00122{letter-spacing:98.945136px;}
.ls21_c00122{letter-spacing:101.990312px;}
.sc__c00122{text-shadow:none;}
.sc1_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00122{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc1_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00122{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00122{word-spacing:-21.927456px;}
.ws3_c00122{word-spacing:-21.661776px;}
.ws1_c00122{word-spacing:-20.016000px;}
.ws6_c00122{word-spacing:-17.910227px;}
.ws2_c00122{word-spacing:-17.739827px;}
.ws8_c00122{word-spacing:-17.685056px;}
.ws7_c00122{word-spacing:-17.630284px;}
.ws4_c00122{word-spacing:-17.411199px;}
.wsc_c00122{word-spacing:-17.157024px;}
.wsd_c00122{word-spacing:-16.997616px;}
.ws9_c00122{word-spacing:-16.962192px;}
.wse_c00122{word-spacing:-16.956288px;}
.ws5_c00122{word-spacing:-16.944480px;}
.ws0_c00122{word-spacing:-11.429712px;}
.wsb_c00122{word-spacing:-10.152000px;}
.wsf_c00122{word-spacing:0.000000px;}
._1b_c00122{margin-left:-101.266113px;}
._1a_c00122{margin-left:-99.423360px;}
._19_c00122{margin-left:-98.242560px;}
._1c_c00122{margin-left:-88.806816px;}
._14_c00122{margin-left:-27.453600px;}
._15_c00122{margin-left:-21.962880px;}
._10_c00122{margin-left:-17.416800px;}
._11_c00122{margin-left:-16.413120px;}
._f_c00122{margin-left:-8.560800px;}
._e_c00122{margin-left:-7.261920px;}
._12_c00122{margin-left:-5.904000px;}
._d_c00122{margin-left:-1.156284px;}
._c_c00122{width:1.122288px;}
._0_c00122{width:2.160000px;}
._2_c00122{width:3.312000px;}
._3_c00122{width:4.350816px;}
._5_c00122{width:6.161184px;}
._8_c00122{width:7.395264px;}
._1_c00122{width:9.288000px;}
._4_c00122{width:10.440000px;}
._b_c00122{width:18.288000px;}
._16_c00122{width:21.184320px;}
._7_c00122{width:23.112000px;}
._a_c00122{width:24.696000px;}
._6_c00122{width:26.352000px;}
._13_c00122{width:27.387324px;}
._17_c00122{width:33.936744px;}
._9_c00122{width:39.384000px;}
._18_c00122{width:41.032800px;}
._1d_c00122{width:292.695804px;}
.fc0_c00122{color:rgb(0,0,0);}
.fs5_c00122{font-size:36.000000px;}
.fs2_c00122{font-size:41.760000px;}
.fs3_c00122{font-size:59.040000px;}
.fs6_c00122{font-size:60.000000px;}
.fs4_c00122{font-size:60.857039px;}
.fs0_c00122{font-size:72.000000px;}
.fs1_c00122{font-size:74.215901px;}
.y0_c00122{bottom:0.000000px;}
.y3_c00122{bottom:2.565000px;}
.y3e_c00122{bottom:3.120150px;}
.y2e_c00122{bottom:3.600000px;}
.y2d_c00122{bottom:20.880000px;}
.y3d_c00122{bottom:34.744500px;}
.y2c_c00122{bottom:38.520000px;}
.y1_c00122{bottom:54.000000px;}
.y3c_c00122{bottom:55.481040px;}
.y2b_c00122{bottom:56.160000px;}
.y2a_c00122{bottom:73.440000px;}
.y3b_c00122{bottom:78.885000px;}
.y3a_c00122{bottom:90.405000px;}
.y29_c00122{bottom:91.080000px;}
.y39_c00122{bottom:96.525000px;}
.y28_c00122{bottom:108.360000px;}
.y38_c00122{bottom:113.805000px;}
.y37_c00122{bottom:131.445000px;}
.y36_c00122{bottom:142.965000px;}
.y35_c00122{bottom:149.085000px;}
.y34_c00122{bottom:166.365000px;}
.y33_c00122{bottom:193.005000px;}
.y32_c00122{bottom:266.085000px;}
.y27_c00122{bottom:281.565000px;}
.y31_c00122{bottom:283.725000px;}
.y30_c00122{bottom:301.005000px;}
.y2f_c00122{bottom:318.645000px;}
.y26_c00122{bottom:335.925000px;}
.y25_c00122{bottom:354.285000px;}
.y24_c00122{bottom:371.925000px;}
.y23_c00122{bottom:389.205000px;}
.y22_c00122{bottom:406.845000px;}
.y21_c00122{bottom:424.485000px;}
.y20_c00122{bottom:441.765000px;}
.y1f_c00122{bottom:459.405000px;}
.y1e_c00122{bottom:477.045000px;}
.y1d_c00122{bottom:494.325000px;}
.y1c_c00122{bottom:511.965000px;}
.y1b_c00122{bottom:529.245000px;}
.y1a_c00122{bottom:562.725000px;}
.y19_c00122{bottom:583.965000px;}
.y18_c00122{bottom:604.845000px;}
.y17_c00122{bottom:625.725000px;}
.y16_c00122{bottom:646.965000px;}
.y15_c00122{bottom:667.845000px;}
.y14_c00122{bottom:689.085000px;}
.y13_c00122{bottom:709.965000px;}
.y12_c00122{bottom:745.965000px;}
.y11_c00122{bottom:766.845000px;}
.y10_c00122{bottom:788.085000px;}
.yf_c00122{bottom:808.965000px;}
.ye_c00122{bottom:829.845000px;}
.yd_c00122{bottom:851.085000px;}
.yc_c00122{bottom:871.965000px;}
.yb_c00122{bottom:892.845000px;}
.ya_c00122{bottom:928.845000px;}
.y9_c00122{bottom:950.085000px;}
.y8_c00122{bottom:970.965000px;}
.y7_c00122{bottom:1006.965000px;}
.y6_c00122{bottom:1027.845000px;}
.y5_c00122{bottom:1049.085000px;}
.y4_c00122{bottom:1085.085000px;}
.y2_c00122{bottom:1138.365000px;}
.ha_c00122{height:19.255500px;}
.h9_c00122{height:32.616000px;}
.hb_c00122{height:46.320000px;}
.h7_c00122{height:46.981634px;}
.h6_c00122{height:53.490240px;}
.h4_c00122{height:57.294676px;}
.h3_c00122{height:65.232000px;}
.h5_c00122{height:68.074560px;}
.h8_c00122{height:122.400000px;}
.h2_c00122{height:1201.365000px;}
.h0_c00122{height:1262.835000px;}
.h1_c00122{height:1263.000000px;}
.w7_c00122{width:25.020000px;}
.w3_c00122{width:39.600000px;}
.w4_c00122{width:87.120000px;}
.w5_c00122{width:209.160000px;}
.w6_c00122{width:315.000000px;}
.w2_c00122{width:863.955000px;}
.w0_c00122{width:892.935000px;}
.w1_c00122{width:893.250000px;}
.x0_c00122{left:0.000000px;}
.x17_c00122{left:7.920150px;}
.x1_c00122{left:14.490000px;}
.x30_c00122{left:24.239100px;}
.x22_c00122{left:43.394400px;}
.x1e_c00122{left:45.286650px;}
.x26_c00122{left:49.243950px;}
.x23_c00122{left:50.909100px;}
.x19_c00122{left:55.903500px;}
.x31_c00122{left:59.203350px;}
.x28_c00122{left:73.961700px;}
.x1f_c00122{left:81.961200px;}
.x32_c00122{left:105.071250px;}
.x29_c00122{left:109.796250px;}
.x2_c00122{left:113.040150px;}
.x16_c00122{left:119.610000px;}
.x36_c00122{left:127.217700px;}
.x2c_c00122{left:133.446900px;}
.xf_c00122{left:138.470550px;}
.x5_c00122{left:140.039100px;}
.x24_c00122{left:147.399150px;}
.x2a_c00122{left:148.789200px;}
.x3_c00122{left:150.011700px;}
.x18_c00122{left:159.930000px;}
.x37_c00122{left:163.892250px;}
.x20_c00122{left:169.237350px;}
.x10_c00122{left:178.894800px;}
.x25_c00122{left:182.363400px;}
.x2e_c00122{left:190.167750px;}
.x2b_c00122{left:192.138300px;}
.x2d_c00122{left:197.250300px;}
.x11_c00122{left:202.756350px;}
.x21_c00122{left:205.071750px;}
.x1c_c00122{left:213.732000px;}
.x4_c00122{left:216.989100px;}
.x2f_c00122{left:233.516850px;}
.x1d_c00122{left:245.396400px;}
.x1a_c00122{left:247.770000px;}
.x27_c00122{left:254.486400px;}
.x33_c00122{left:257.262750px;}
.x34_c00122{left:277.256850px;}
.x14_c00122{left:280.443150px;}
.x15_c00122{left:290.230950px;}
.x9_c00122{left:295.688250px;}
.xa_c00122{left:310.681950px;}
.x12_c00122{left:443.857200px;}
.x1b_c00122{left:457.650000px;}
.x13_c00122{left:462.108750px;}
.xb_c00122{left:470.453250px;}
.xc_c00122{left:485.447100px;}
.x6_c00122{left:488.100300px;}
.x7_c00122{left:503.094000px;}
.x35_c00122{left:508.984200px;}
.x8_c00122{left:541.109550px;}
.xd_c00122{left:585.230400px;}
.xe_c00122{left:654.832350px;}
.x38_c00122{left:759.915000px;}
@media print{
.v2_c00122{vertical-align:-21.760000pt;}
.v0_c00122{vertical-align:0.000000pt;}
.v1_c00122{vertical-align:26.880000pt;}
.ls13_c00122{letter-spacing:-0.159616pt;}
.ls12_c00122{letter-spacing:0.000000pt;}
.ls24_c00122{letter-spacing:0.128000pt;}
.ls1_c00122{letter-spacing:0.235627pt;}
.ls2_c00122{letter-spacing:0.236160pt;}
.lsf_c00122{letter-spacing:0.262400pt;}
.ls7_c00122{letter-spacing:0.283093pt;}
.lsb_c00122{letter-spacing:0.283627pt;}
.ls25_c00122{letter-spacing:0.389485pt;}
.ls3_c00122{letter-spacing:0.438171pt;}
.ls8_c00122{letter-spacing:0.451328pt;}
.ls4_c00122{letter-spacing:0.472320pt;}
.lsc_c00122{letter-spacing:0.477568pt;}
.ls10_c00122{letter-spacing:0.482816pt;}
.ls9_c00122{letter-spacing:0.488064pt;}
.lse_c00122{letter-spacing:0.498560pt;}
.ls27_c00122{letter-spacing:0.519552pt;}
.ls1e_c00122{letter-spacing:0.582528pt;}
.ls16_c00122{letter-spacing:0.614016pt;}
.ls17_c00122{letter-spacing:0.619264pt;}
.ls6_c00122{letter-spacing:0.632913pt;}
.ls26_c00122{letter-spacing:0.661248pt;}
.ls1b_c00122{letter-spacing:0.681599pt;}
.ls14_c00122{letter-spacing:0.730284pt;}
.ls5_c00122{letter-spacing:0.881751pt;}
.ls15_c00122{letter-spacing:4.665472pt;}
.lsd_c00122{letter-spacing:4.758613pt;}
.ls1f_c00122{letter-spacing:4.901632pt;}
.ls0_c00122{letter-spacing:5.312000pt;}
.ls11_c00122{letter-spacing:5.475484pt;}
.ls1c_c00122{letter-spacing:5.699328pt;}
.ls28_c00122{letter-spacing:5.945984pt;}
.ls23_c00122{letter-spacing:7.000832pt;}
.ls18_c00122{letter-spacing:7.074304pt;}
.ls1a_c00122{letter-spacing:8.003200pt;}
.ls19_c00122{letter-spacing:15.764992pt;}
.ls1d_c00122{letter-spacing:19.968640pt;}
.lsa_c00122{letter-spacing:24.681344pt;}
.ls22_c00122{letter-spacing:79.071616pt;}
.ls20_c00122{letter-spacing:87.951232pt;}
.ls21_c00122{letter-spacing:90.658055pt;}
.wsa_c00122{word-spacing:-19.491072pt;}
.ws3_c00122{word-spacing:-19.254912pt;}
.ws1_c00122{word-spacing:-17.792000pt;}
.ws6_c00122{word-spacing:-15.920201pt;}
.ws2_c00122{word-spacing:-15.768735pt;}
.ws8_c00122{word-spacing:-15.720049pt;}
.ws7_c00122{word-spacing:-15.671364pt;}
.ws4_c00122{word-spacing:-15.476621pt;}
.wsc_c00122{word-spacing:-15.250688pt;}
.wsd_c00122{word-spacing:-15.108992pt;}
.ws9_c00122{word-spacing:-15.077504pt;}
.wse_c00122{word-spacing:-15.072256pt;}
.ws5_c00122{word-spacing:-15.061760pt;}
.ws0_c00122{word-spacing:-10.159744pt;}
.wsb_c00122{word-spacing:-9.024000pt;}
.wsf_c00122{word-spacing:0.000000pt;}
._1b_c00122{margin-left:-90.014323pt;}
._1a_c00122{margin-left:-88.376320pt;}
._19_c00122{margin-left:-87.326720pt;}
._1c_c00122{margin-left:-78.939392pt;}
._14_c00122{margin-left:-24.403200pt;}
._15_c00122{margin-left:-19.522560pt;}
._10_c00122{margin-left:-15.481600pt;}
._11_c00122{margin-left:-14.589440pt;}
._f_c00122{margin-left:-7.609600pt;}
._e_c00122{margin-left:-6.455040pt;}
._12_c00122{margin-left:-5.248000pt;}
._d_c00122{margin-left:-1.027808pt;}
._c_c00122{width:0.997589pt;}
._0_c00122{width:1.920000pt;}
._2_c00122{width:2.944000pt;}
._3_c00122{width:3.867392pt;}
._5_c00122{width:5.476608pt;}
._8_c00122{width:6.573568pt;}
._1_c00122{width:8.256000pt;}
._4_c00122{width:9.280000pt;}
._b_c00122{width:16.256000pt;}
._16_c00122{width:18.830507pt;}
._7_c00122{width:20.544000pt;}
._a_c00122{width:21.952000pt;}
._6_c00122{width:23.424000pt;}
._13_c00122{width:24.344288pt;}
._17_c00122{width:30.165995pt;}
._9_c00122{width:35.008000pt;}
._18_c00122{width:36.473600pt;}
._1d_c00122{width:260.174048pt;}
.fs5_c00122{font-size:32.000000pt;}
.fs2_c00122{font-size:37.120000pt;}
.fs3_c00122{font-size:52.480000pt;}
.fs6_c00122{font-size:53.333333pt;}
.fs4_c00122{font-size:54.095146pt;}
.fs0_c00122{font-size:64.000000pt;}
.fs1_c00122{font-size:65.969690pt;}
.y0_c00122{bottom:0.000000pt;}
.y3_c00122{bottom:2.280000pt;}
.y3e_c00122{bottom:2.773467pt;}
.y2e_c00122{bottom:3.200000pt;}
.y2d_c00122{bottom:18.560000pt;}
.y3d_c00122{bottom:30.884000pt;}
.y2c_c00122{bottom:34.240000pt;}
.y1_c00122{bottom:48.000000pt;}
.y3c_c00122{bottom:49.316480pt;}
.y2b_c00122{bottom:49.920000pt;}
.y2a_c00122{bottom:65.280000pt;}
.y3b_c00122{bottom:70.120000pt;}
.y3a_c00122{bottom:80.360000pt;}
.y29_c00122{bottom:80.960000pt;}
.y39_c00122{bottom:85.800000pt;}
.y28_c00122{bottom:96.320000pt;}
.y38_c00122{bottom:101.160000pt;}
.y37_c00122{bottom:116.840000pt;}
.y36_c00122{bottom:127.080000pt;}
.y35_c00122{bottom:132.520000pt;}
.y34_c00122{bottom:147.880000pt;}
.y33_c00122{bottom:171.560000pt;}
.y32_c00122{bottom:236.520000pt;}
.y27_c00122{bottom:250.280000pt;}
.y31_c00122{bottom:252.200000pt;}
.y30_c00122{bottom:267.560000pt;}
.y2f_c00122{bottom:283.240000pt;}
.y26_c00122{bottom:298.600000pt;}
.y25_c00122{bottom:314.920000pt;}
.y24_c00122{bottom:330.600000pt;}
.y23_c00122{bottom:345.960000pt;}
.y22_c00122{bottom:361.640000pt;}
.y21_c00122{bottom:377.320000pt;}
.y20_c00122{bottom:392.680000pt;}
.y1f_c00122{bottom:408.360000pt;}
.y1e_c00122{bottom:424.040000pt;}
.y1d_c00122{bottom:439.400000pt;}
.y1c_c00122{bottom:455.080000pt;}
.y1b_c00122{bottom:470.440000pt;}
.y1a_c00122{bottom:500.200000pt;}
.y19_c00122{bottom:519.080000pt;}
.y18_c00122{bottom:537.640000pt;}
.y17_c00122{bottom:556.200000pt;}
.y16_c00122{bottom:575.080000pt;}
.y15_c00122{bottom:593.640000pt;}
.y14_c00122{bottom:612.520000pt;}
.y13_c00122{bottom:631.080000pt;}
.y12_c00122{bottom:663.080000pt;}
.y11_c00122{bottom:681.640000pt;}
.y10_c00122{bottom:700.520000pt;}
.yf_c00122{bottom:719.080000pt;}
.ye_c00122{bottom:737.640000pt;}
.yd_c00122{bottom:756.520000pt;}
.yc_c00122{bottom:775.080000pt;}
.yb_c00122{bottom:793.640000pt;}
.ya_c00122{bottom:825.640000pt;}
.y9_c00122{bottom:844.520000pt;}
.y8_c00122{bottom:863.080000pt;}
.y7_c00122{bottom:895.080000pt;}
.y6_c00122{bottom:913.640000pt;}
.y5_c00122{bottom:932.520000pt;}
.y4_c00122{bottom:964.520000pt;}
.y2_c00122{bottom:1011.880000pt;}
.ha_c00122{height:17.116000pt;}
.h9_c00122{height:28.992000pt;}
.hb_c00122{height:41.173333pt;}
.h7_c00122{height:41.761453pt;}
.h6_c00122{height:47.546880pt;}
.h4_c00122{height:50.928601pt;}
.h3_c00122{height:57.984000pt;}
.h5_c00122{height:60.510720pt;}
.h8_c00122{height:108.800000pt;}
.h2_c00122{height:1067.880000pt;}
.h0_c00122{height:1122.520000pt;}
.h1_c00122{height:1122.666667pt;}
.w7_c00122{width:22.240000pt;}
.w3_c00122{width:35.200000pt;}
.w4_c00122{width:77.440000pt;}
.w5_c00122{width:185.920000pt;}
.w6_c00122{width:280.000000pt;}
.w2_c00122{width:767.960000pt;}
.w0_c00122{width:793.720000pt;}
.w1_c00122{width:794.000000pt;}
.x0_c00122{left:0.000000pt;}
.x17_c00122{left:7.040133pt;}
.x1_c00122{left:12.880000pt;}
.x30_c00122{left:21.545867pt;}
.x22_c00122{left:38.572800pt;}
.x1e_c00122{left:40.254800pt;}
.x26_c00122{left:43.772400pt;}
.x23_c00122{left:45.252533pt;}
.x19_c00122{left:49.692000pt;}
.x31_c00122{left:52.625200pt;}
.x28_c00122{left:65.743733pt;}
.x1f_c00122{left:72.854400pt;}
.x32_c00122{left:93.396667pt;}
.x29_c00122{left:97.596667pt;}
.x2_c00122{left:100.480133pt;}
.x16_c00122{left:106.320000pt;}
.x36_c00122{left:113.082400pt;}
.x2c_c00122{left:118.619467pt;}
.xf_c00122{left:123.084933pt;}
.x5_c00122{left:124.479200pt;}
.x24_c00122{left:131.021467pt;}
.x2a_c00122{left:132.257067pt;}
.x3_c00122{left:133.343733pt;}
.x18_c00122{left:142.160000pt;}
.x37_c00122{left:145.682000pt;}
.x20_c00122{left:150.433200pt;}
.x10_c00122{left:159.017600pt;}
.x25_c00122{left:162.100800pt;}
.x2e_c00122{left:169.038000pt;}
.x2b_c00122{left:170.789600pt;}
.x2d_c00122{left:175.333600pt;}
.x11_c00122{left:180.227867pt;}
.x21_c00122{left:182.286000pt;}
.x1c_c00122{left:189.984000pt;}
.x4_c00122{left:192.879200pt;}
.x2f_c00122{left:207.570533pt;}
.x1d_c00122{left:218.130133pt;}
.x1a_c00122{left:220.240000pt;}
.x27_c00122{left:226.210133pt;}
.x33_c00122{left:228.678000pt;}
.x34_c00122{left:246.450533pt;}
.x14_c00122{left:249.282800pt;}
.x15_c00122{left:257.983067pt;}
.x9_c00122{left:262.834000pt;}
.xa_c00122{left:276.161733pt;}
.x12_c00122{left:394.539733pt;}
.x1b_c00122{left:406.800000pt;}
.x13_c00122{left:410.763333pt;}
.xb_c00122{left:418.180667pt;}
.xc_c00122{left:431.508533pt;}
.x6_c00122{left:433.866933pt;}
.x7_c00122{left:447.194667pt;}
.x35_c00122{left:452.430400pt;}
.x8_c00122{left:480.986267pt;}
.xd_c00122{left:520.204800pt;}
.xe_c00122{left:582.073200pt;}
.x38_c00122{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_44e97545e8ac735982f7c713.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_11a7e42aff37839099c8ef23.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;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:ff3_c00123;src:url('chunks/assets/font_6c48cae942a993b9b6a3e7f4.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_8cf02a0af8c843dfd1f2f549.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls10_c00123{letter-spacing:0.000000px;}
.ls12_c00123{letter-spacing:0.265680px;}
.lsd_c00123{letter-spacing:0.266280px;}
.ls23_c00123{letter-spacing:0.273857px;}
.ls6_c00123{letter-spacing:0.318480px;}
.ls15_c00123{letter-spacing:0.318816px;}
.ls1_c00123{letter-spacing:0.319080px;}
.ls8_c00123{letter-spacing:0.328628px;}
.ls3_c00123{letter-spacing:0.492942px;}
.ls7_c00123{letter-spacing:0.501840px;}
.ls4_c00123{letter-spacing:0.531360px;}
.ls5_c00123{letter-spacing:0.549072px;}
.ls9_c00123{letter-spacing:0.560880px;}
.ls16_c00123{letter-spacing:0.690768px;}
.ls17_c00123{letter-spacing:0.696672px;}
.ls2_c00123{letter-spacing:0.712027px;}
.ls1b_c00123{letter-spacing:0.766799px;}
.ls21_c00123{letter-spacing:0.797040px;}
.ls13_c00123{letter-spacing:0.821570px;}
.ls2a_c00123{letter-spacing:0.962352px;}
.ls19_c00123{letter-spacing:0.991970px;}
.ls20_c00123{letter-spacing:1.901088px;}
.ls24_c00123{letter-spacing:1.959597px;}
.ls1a_c00123{letter-spacing:2.751264px;}
.ls29_c00123{letter-spacing:3.973392px;}
.ls1e_c00123{letter-spacing:3.985200px;}
.ls14_c00123{letter-spacing:5.248656px;}
.lsb_c00123{letter-spacing:5.299080px;}
.ls1f_c00123{letter-spacing:5.301792px;}
.lsa_c00123{letter-spacing:5.352840px;}
.ls0_c00123{letter-spacing:5.353440px;}
.ls11_c00123{letter-spacing:5.354928px;}
.ls26_c00123{letter-spacing:5.402160px;}
.ls1d_c00123{letter-spacing:5.467104px;}
.lsc_c00123{letter-spacing:5.514336px;}
.ls27_c00123{letter-spacing:5.726880px;}
.lse_c00123{letter-spacing:5.976000px;}
.ls1c_c00123{letter-spacing:6.069312px;}
.lsf_c00123{letter-spacing:6.159920px;}
.ls28_c00123{letter-spacing:12.321648px;}
.ls18_c00123{letter-spacing:12.534192px;}
.ls22_c00123{letter-spacing:16.909056px;}
.ls25_c00123{letter-spacing:20.338422px;}
.sc__c00123{text-shadow:none;}
.sc1_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00123{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc1_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00123{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsd_c00123{word-spacing:-22.140000px;}
.ws2_c00123{word-spacing:-21.927456px;}
.wsc_c00123{word-spacing:-21.815280px;}
.ws0_c00123{word-spacing:-21.768048px;}
.ws9_c00123{word-spacing:-21.714912px;}
.ws8_c00123{word-spacing:-21.661776px;}
.ws1_c00123{word-spacing:-17.739827px;}
.ws6_c00123{word-spacing:-17.685056px;}
.ws3_c00123{word-spacing:-17.630284px;}
.ws5_c00123{word-spacing:-17.411199px;}
.wse_c00123{word-spacing:-17.375472px;}
.wsb_c00123{word-spacing:-17.246885px;}
.ws7_c00123{word-spacing:-16.962192px;}
.wsa_c00123{word-spacing:-16.944480px;}
.ws4_c00123{word-spacing:-16.731936px;}
.wsf_c00123{word-spacing:0.000000px;}
._14_c00123{margin-left:-19.595967px;}
._12_c00123{margin-left:-17.475840px;}
._11_c00123{margin-left:-16.354080px;}
._5_c00123{margin-left:-12.929760px;}
._4_c00123{margin-left:-11.867040px;}
._16_c00123{margin-left:-10.863360px;}
._9_c00123{margin-left:-5.549760px;}
._c_c00123{margin-left:-4.546080px;}
._8_c00123{margin-left:-3.247200px;}
._7_c00123{margin-left:-2.243520px;}
._1_c00123{margin-left:-1.156284px;}
._0_c00123{width:1.091208px;}
._6_c00123{width:2.420640px;}
._d_c00123{width:4.014720px;}
._2_c00123{width:5.510040px;}
._3_c00123{width:11.311164px;}
._f_c00123{width:14.641920px;}
._10_c00123{width:15.645600px;}
._13_c00123{width:19.188000px;}
._b_c00123{width:34.927164px;}
._a_c00123{width:36.722880px;}
._15_c00123{width:277.614480px;}
._e_c00123{width:292.695804px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs2_c00123{font-size:59.040000px;}
.fs4_c00123{font-size:60.000000px;}
.fs3_c00123{font-size:60.857039px;}
.fs0_c00123{font-size:72.000000px;}
.fs1_c00123{font-size:74.215901px;}
.y0_c00123{bottom:0.000000px;}
.y3_c00123{bottom:2.565000px;}
.y34_c00123{bottom:3.120150px;}
.y33_c00123{bottom:34.744500px;}
.y1_c00123{bottom:54.000000px;}
.y32_c00123{bottom:308.205000px;}
.y31_c00123{bottom:329.445000px;}
.y30_c00123{bottom:347.085000px;}
.y2f_c00123{bottom:364.725000px;}
.y2e_c00123{bottom:382.005000px;}
.y2d_c00123{bottom:399.645000px;}
.y2c_c00123{bottom:416.925000px;}
.y2b_c00123{bottom:434.565000px;}
.y2a_c00123{bottom:452.205000px;}
.y29_c00123{bottom:469.485000px;}
.y28_c00123{bottom:487.845000px;}
.y27_c00123{bottom:505.485000px;}
.y26_c00123{bottom:522.765000px;}
.y25_c00123{bottom:540.405000px;}
.y24_c00123{bottom:558.045000px;}
.y23_c00123{bottom:575.325000px;}
.y22_c00123{bottom:593.685000px;}
.y21_c00123{bottom:610.965000px;}
.y20_c00123{bottom:628.605000px;}
.y1f_c00123{bottom:646.245000px;}
.y1e_c00123{bottom:663.525000px;}
.y1d_c00123{bottom:681.165000px;}
.y1c_c00123{bottom:699.525000px;}
.y1b_c00123{bottom:716.805000px;}
.y1a_c00123{bottom:734.445000px;}
.y19_c00123{bottom:752.085000px;}
.y18_c00123{bottom:769.365000px;}
.y17_c00123{bottom:787.005000px;}
.y16_c00123{bottom:805.365000px;}
.y15_c00123{bottom:822.645000px;}
.y14_c00123{bottom:840.285000px;}
.y13_c00123{bottom:857.565000px;}
.y12_c00123{bottom:875.205000px;}
.y11_c00123{bottom:892.845000px;}
.y10_c00123{bottom:910.845000px;}
.yf_c00123{bottom:928.485000px;}
.ye_c00123{bottom:946.125000px;}
.yd_c00123{bottom:963.405000px;}
.yc_c00123{bottom:981.045000px;}
.yb_c00123{bottom:999.405000px;}
.ya_c00123{bottom:1016.685000px;}
.y9_c00123{bottom:1034.325000px;}
.y7_c00123{bottom:1035.045000px;}
.y8_c00123{bottom:1051.604850px;}
.y6_c00123{bottom:1052.325000px;}
.y5_c00123{bottom:1069.245000px;}
.y4_c00123{bottom:1087.604850px;}
.y2_c00123{bottom:1138.365000px;}
.h8_c00123{height:19.255500px;}
.h7_c00123{height:45.578880px;}
.h9_c00123{height:46.320000px;}
.h6_c00123{height:46.981634px;}
.h5_c00123{height:53.490240px;}
.h4_c00123{height:57.294676px;}
.h3_c00123{height:65.232000px;}
.h2_c00123{height:1201.365000px;}
.h0_c00123{height:1262.835000px;}
.h1_c00123{height:1263.000000px;}
.w7_c00123{width:25.020000px;}
.w4_c00123{width:39.600000px;}
.w5_c00123{width:87.120000px;}
.w3_c00123{width:209.160000px;}
.w6_c00123{width:315.000000px;}
.w2_c00123{width:863.955000px;}
.w0_c00123{width:892.935000px;}
.w1_c00123{width:893.250000px;}
.x0_c00123{left:0.000000px;}
.x6_c00123{left:7.920000px;}
.x26_c00123{left:12.554700px;}
.x1_c00123{left:14.490000px;}
.x27_c00123{left:42.524400px;}
.xe_c00123{left:49.026450px;}
.x9_c00123{left:72.462900px;}
.x25_c00123{left:76.737300px;}
.x1a_c00123{left:78.052350px;}
.x2f_c00123{left:85.195200px;}
.x2a_c00123{left:88.392300px;}
.x15_c00123{left:90.942150px;}
.x1b_c00123{left:92.786100px;}
.xa_c00123{left:107.427300px;}
.x24_c00123{left:110.921850px;}
.x2_c00123{left:113.040150px;}
.x7_c00123{left:119.610000px;}
.x28_c00123{left:125.102400px;}
.xf_c00123{left:128.611650px;}
.x22_c00123{left:129.680400px;}
.x11_c00123{left:132.808200px;}
.x29_c00123{left:134.017350px;}
.x1c_c00123{left:136.135200px;}
.x16_c00123{left:142.450950px;}
.x3_c00123{left:150.011700px;}
.x1f_c00123{left:153.901350px;}
.x21_c00123{left:156.106500px;}
.x8_c00123{left:159.930000px;}
.x2b_c00123{left:161.415900px;}
.x10_c00123{left:164.446200px;}
.x23_c00123{left:173.029350px;}
.xc_c00123{left:175.019400px;}
.x12_c00123{left:176.157150px;}
.x17_c00123{left:185.800050px;}
.x30_c00123{left:186.983550px;}
.x2c_c00123{left:197.250300px;}
.x2d_c00123{left:199.685250px;}
.x20_c00123{left:201.420150px;}
.xd_c00123{left:206.683800px;}
.x4_c00123{left:216.989100px;}
.x31_c00123{left:221.947950px;}
.x1d_c00123{left:229.593000px;}
.x2e_c00123{left:240.941100px;}
.x5_c00123{left:247.770000px;}
.x18_c00123{left:252.313050px;}
.x1e_c00123{left:264.557250px;}
.x32_c00123{left:269.670600px;}
.x13_c00123{left:272.220600px;}
.x19_c00123{left:302.205300px;}
.x14_c00123{left:307.185000px;}
.xb_c00123{left:457.650000px;}
.x33_c00123{left:759.915000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls10_c00123{letter-spacing:0.000000pt;}
.ls12_c00123{letter-spacing:0.236160pt;}
.lsd_c00123{letter-spacing:0.236693pt;}
.ls23_c00123{letter-spacing:0.243428pt;}
.ls6_c00123{letter-spacing:0.283093pt;}
.ls15_c00123{letter-spacing:0.283392pt;}
.ls1_c00123{letter-spacing:0.283627pt;}
.ls8_c00123{letter-spacing:0.292114pt;}
.ls3_c00123{letter-spacing:0.438171pt;}
.ls7_c00123{letter-spacing:0.446080pt;}
.ls4_c00123{letter-spacing:0.472320pt;}
.ls5_c00123{letter-spacing:0.488064pt;}
.ls9_c00123{letter-spacing:0.498560pt;}
.ls16_c00123{letter-spacing:0.614016pt;}
.ls17_c00123{letter-spacing:0.619264pt;}
.ls2_c00123{letter-spacing:0.632913pt;}
.ls1b_c00123{letter-spacing:0.681599pt;}
.ls21_c00123{letter-spacing:0.708480pt;}
.ls13_c00123{letter-spacing:0.730284pt;}
.ls2a_c00123{letter-spacing:0.855424pt;}
.ls19_c00123{letter-spacing:0.881751pt;}
.ls20_c00123{letter-spacing:1.689856pt;}
.ls24_c00123{letter-spacing:1.741864pt;}
.ls1a_c00123{letter-spacing:2.445568pt;}
.ls29_c00123{letter-spacing:3.531904pt;}
.ls1e_c00123{letter-spacing:3.542400pt;}
.ls14_c00123{letter-spacing:4.665472pt;}
.lsb_c00123{letter-spacing:4.710293pt;}
.ls1f_c00123{letter-spacing:4.712704pt;}
.lsa_c00123{letter-spacing:4.758080pt;}
.ls0_c00123{letter-spacing:4.758613pt;}
.ls11_c00123{letter-spacing:4.759936pt;}
.ls26_c00123{letter-spacing:4.801920pt;}
.ls1d_c00123{letter-spacing:4.859648pt;}
.lsc_c00123{letter-spacing:4.901632pt;}
.ls27_c00123{letter-spacing:5.090560pt;}
.lse_c00123{letter-spacing:5.312000pt;}
.ls1c_c00123{letter-spacing:5.394944pt;}
.lsf_c00123{letter-spacing:5.475484pt;}
.ls28_c00123{letter-spacing:10.952576pt;}
.ls18_c00123{letter-spacing:11.141504pt;}
.ls22_c00123{letter-spacing:15.030272pt;}
.ls25_c00123{letter-spacing:18.078598pt;}
.wsd_c00123{word-spacing:-19.680000pt;}
.ws2_c00123{word-spacing:-19.491072pt;}
.wsc_c00123{word-spacing:-19.391360pt;}
.ws0_c00123{word-spacing:-19.349376pt;}
.ws9_c00123{word-spacing:-19.302144pt;}
.ws8_c00123{word-spacing:-19.254912pt;}
.ws1_c00123{word-spacing:-15.768735pt;}
.ws6_c00123{word-spacing:-15.720049pt;}
.ws3_c00123{word-spacing:-15.671364pt;}
.ws5_c00123{word-spacing:-15.476621pt;}
.wse_c00123{word-spacing:-15.444864pt;}
.wsb_c00123{word-spacing:-15.330564pt;}
.ws7_c00123{word-spacing:-15.077504pt;}
.wsa_c00123{word-spacing:-15.061760pt;}
.ws4_c00123{word-spacing:-14.872832pt;}
.wsf_c00123{word-spacing:0.000000pt;}
._14_c00123{margin-left:-17.418637pt;}
._12_c00123{margin-left:-15.534080pt;}
._11_c00123{margin-left:-14.536960pt;}
._5_c00123{margin-left:-11.493120pt;}
._4_c00123{margin-left:-10.548480pt;}
._16_c00123{margin-left:-9.656320pt;}
._9_c00123{margin-left:-4.933120pt;}
._c_c00123{margin-left:-4.040960pt;}
._8_c00123{margin-left:-2.886400pt;}
._7_c00123{margin-left:-1.994240pt;}
._1_c00123{margin-left:-1.027808pt;}
._0_c00123{width:0.969963pt;}
._6_c00123{width:2.151680pt;}
._d_c00123{width:3.568640pt;}
._2_c00123{width:4.897813pt;}
._3_c00123{width:10.054368pt;}
._f_c00123{width:13.015040pt;}
._10_c00123{width:13.907200pt;}
._13_c00123{width:17.056000pt;}
._b_c00123{width:31.046368pt;}
._a_c00123{width:32.642560pt;}
._15_c00123{width:246.768427pt;}
._e_c00123{width:260.174048pt;}
.fs2_c00123{font-size:52.480000pt;}
.fs4_c00123{font-size:53.333333pt;}
.fs3_c00123{font-size:54.095146pt;}
.fs0_c00123{font-size:64.000000pt;}
.fs1_c00123{font-size:65.969690pt;}
.y0_c00123{bottom:0.000000pt;}
.y3_c00123{bottom:2.280000pt;}
.y34_c00123{bottom:2.773467pt;}
.y33_c00123{bottom:30.884000pt;}
.y1_c00123{bottom:48.000000pt;}
.y32_c00123{bottom:273.960000pt;}
.y31_c00123{bottom:292.840000pt;}
.y30_c00123{bottom:308.520000pt;}
.y2f_c00123{bottom:324.200000pt;}
.y2e_c00123{bottom:339.560000pt;}
.y2d_c00123{bottom:355.240000pt;}
.y2c_c00123{bottom:370.600000pt;}
.y2b_c00123{bottom:386.280000pt;}
.y2a_c00123{bottom:401.960000pt;}
.y29_c00123{bottom:417.320000pt;}
.y28_c00123{bottom:433.640000pt;}
.y27_c00123{bottom:449.320000pt;}
.y26_c00123{bottom:464.680000pt;}
.y25_c00123{bottom:480.360000pt;}
.y24_c00123{bottom:496.040000pt;}
.y23_c00123{bottom:511.400000pt;}
.y22_c00123{bottom:527.720000pt;}
.y21_c00123{bottom:543.080000pt;}
.y20_c00123{bottom:558.760000pt;}
.y1f_c00123{bottom:574.440000pt;}
.y1e_c00123{bottom:589.800000pt;}
.y1d_c00123{bottom:605.480000pt;}
.y1c_c00123{bottom:621.800000pt;}
.y1b_c00123{bottom:637.160000pt;}
.y1a_c00123{bottom:652.840000pt;}
.y19_c00123{bottom:668.520000pt;}
.y18_c00123{bottom:683.880000pt;}
.y17_c00123{bottom:699.560000pt;}
.y16_c00123{bottom:715.880000pt;}
.y15_c00123{bottom:731.240000pt;}
.y14_c00123{bottom:746.920000pt;}
.y13_c00123{bottom:762.280000pt;}
.y12_c00123{bottom:777.960000pt;}
.y11_c00123{bottom:793.640000pt;}
.y10_c00123{bottom:809.640000pt;}
.yf_c00123{bottom:825.320000pt;}
.ye_c00123{bottom:841.000000pt;}
.yd_c00123{bottom:856.360000pt;}
.yc_c00123{bottom:872.040000pt;}
.yb_c00123{bottom:888.360000pt;}
.ya_c00123{bottom:903.720000pt;}
.y9_c00123{bottom:919.400000pt;}
.y7_c00123{bottom:920.040000pt;}
.y8_c00123{bottom:934.759867pt;}
.y6_c00123{bottom:935.400000pt;}
.y5_c00123{bottom:950.440000pt;}
.y4_c00123{bottom:966.759867pt;}
.y2_c00123{bottom:1011.880000pt;}
.h8_c00123{height:17.116000pt;}
.h7_c00123{height:40.514560pt;}
.h9_c00123{height:41.173333pt;}
.h6_c00123{height:41.761453pt;}
.h5_c00123{height:47.546880pt;}
.h4_c00123{height:50.928601pt;}
.h3_c00123{height:57.984000pt;}
.h2_c00123{height:1067.880000pt;}
.h0_c00123{height:1122.520000pt;}
.h1_c00123{height:1122.666667pt;}
.w7_c00123{width:22.240000pt;}
.w4_c00123{width:35.200000pt;}
.w5_c00123{width:77.440000pt;}
.w3_c00123{width:185.920000pt;}
.w6_c00123{width:280.000000pt;}
.w2_c00123{width:767.960000pt;}
.w0_c00123{width:793.720000pt;}
.w1_c00123{width:794.000000pt;}
.x0_c00123{left:0.000000pt;}
.x6_c00123{left:7.040000pt;}
.x26_c00123{left:11.159733pt;}
.x1_c00123{left:12.880000pt;}
.x27_c00123{left:37.799467pt;}
.xe_c00123{left:43.579067pt;}
.x9_c00123{left:64.411467pt;}
.x25_c00123{left:68.210933pt;}
.x1a_c00123{left:69.379867pt;}
.x2f_c00123{left:75.729067pt;}
.x2a_c00123{left:78.570933pt;}
.x15_c00123{left:80.837467pt;}
.x1b_c00123{left:82.476533pt;}
.xa_c00123{left:95.490933pt;}
.x24_c00123{left:98.597200pt;}
.x2_c00123{left:100.480133pt;}
.x7_c00123{left:106.320000pt;}
.x28_c00123{left:111.202133pt;}
.xf_c00123{left:114.321467pt;}
.x22_c00123{left:115.271467pt;}
.x11_c00123{left:118.051733pt;}
.x29_c00123{left:119.126533pt;}
.x1c_c00123{left:121.009067pt;}
.x16_c00123{left:126.623067pt;}
.x3_c00123{left:133.343733pt;}
.x1f_c00123{left:136.801200pt;}
.x21_c00123{left:138.761333pt;}
.x8_c00123{left:142.160000pt;}
.x2b_c00123{left:143.480800pt;}
.x10_c00123{left:146.174400pt;}
.x23_c00123{left:153.803867pt;}
.xc_c00123{left:155.572800pt;}
.x12_c00123{left:156.584133pt;}
.x17_c00123{left:165.155600pt;}
.x30_c00123{left:166.207600pt;}
.x2c_c00123{left:175.333600pt;}
.x2d_c00123{left:177.498000pt;}
.x20_c00123{left:179.040133pt;}
.xd_c00123{left:183.718933pt;}
.x4_c00123{left:192.879200pt;}
.x31_c00123{left:197.287067pt;}
.x1d_c00123{left:204.082667pt;}
.x2e_c00123{left:214.169867pt;}
.x5_c00123{left:220.240000pt;}
.x18_c00123{left:224.278267pt;}
.x1e_c00123{left:235.162000pt;}
.x32_c00123{left:239.707200pt;}
.x13_c00123{left:241.973867pt;}
.x19_c00123{left:268.626933pt;}
.x14_c00123{left:273.053333pt;}
.xb_c00123{left:406.800000pt;}
.x33_c00123{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a2fbf66ee5fa78b0e45fb08.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.134000;font-style:normal;font-weight:normal;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_6f8027cf428bcb2b4ce2780a.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;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:ff3_c00124;src:url('chunks/assets/font_2080da50f040036cab06cfe4.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_07ec3065cc0540324bab7fb2.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_c6c3566481afa035ab9d824b.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls16_c00124{letter-spacing:0.000000px;}
.lsd_c00124{letter-spacing:0.265080px;}
.lsb_c00124{letter-spacing:0.265680px;}
.ls2_c00124{letter-spacing:0.266280px;}
.ls18_c00124{letter-spacing:0.273857px;}
.ls12_c00124{letter-spacing:0.295200px;}
.ls11_c00124{letter-spacing:0.307008px;}
.ls8_c00124{letter-spacing:0.318480px;}
.ls20_c00124{letter-spacing:0.318816px;}
.ls1_c00124{letter-spacing:0.319080px;}
.ls13_c00124{letter-spacing:0.366048px;}
.lse_c00124{letter-spacing:0.492942px;}
.ls6_c00124{letter-spacing:0.531360px;}
.ls7_c00124{letter-spacing:0.549072px;}
.lsc_c00124{letter-spacing:0.560880px;}
.ls32_c00124{letter-spacing:0.584496px;}
.ls30_c00124{letter-spacing:0.661248px;}
.ls1d_c00124{letter-spacing:0.690768px;}
.ls1e_c00124{letter-spacing:0.696672px;}
.ls3_c00124{letter-spacing:0.712027px;}
.ls31_c00124{letter-spacing:0.743904px;}
.ls1b_c00124{letter-spacing:0.766799px;}
.ls17_c00124{letter-spacing:0.821570px;}
.ls33_c00124{letter-spacing:0.962352px;}
.ls1f_c00124{letter-spacing:0.991970px;}
.ls2f_c00124{letter-spacing:2.131344px;}
.ls2d_c00124{letter-spacing:3.778560px;}
.ls22_c00124{letter-spacing:3.973392px;}
.ls10_c00124{letter-spacing:5.245680px;}
.ls23_c00124{letter-spacing:5.248656px;}
.ls0_c00124{letter-spacing:5.299080px;}
.ls19_c00124{letter-spacing:5.301792px;}
.ls4_c00124{letter-spacing:5.352840px;}
.ls5_c00124{letter-spacing:5.353440px;}
.ls24_c00124{letter-spacing:5.354928px;}
.ls1c_c00124{letter-spacing:5.402160px;}
.ls2c_c00124{letter-spacing:5.461200px;}
.lsa_c00124{letter-spacing:5.465160px;}
.lsf_c00124{letter-spacing:5.513160px;}
.ls9_c00124{letter-spacing:5.514336px;}
.ls1a_c00124{letter-spacing:5.726880px;}
.ls14_c00124{letter-spacing:5.976000px;}
.ls15_c00124{letter-spacing:6.159920px;}
.ls28_c00124{letter-spacing:6.689232px;}
.ls21_c00124{letter-spacing:12.321648px;}
.ls2e_c00124{letter-spacing:12.616848px;}
.ls27_c00124{letter-spacing:12.740832px;}
.ls2b_c00124{letter-spacing:13.738608px;}
.ls2a_c00124{letter-spacing:17.611632px;}
.ls29_c00124{letter-spacing:31.917024px;}
.ls25_c00124{letter-spacing:34.686000px;}
.ls26_c00124{letter-spacing:34.863120px;}
.sc__c00124{text-shadow:none;}
.sc1_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00124{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc1_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00124{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00124{word-spacing:-22.140000px;}
.ws9_c00124{word-spacing:-21.927456px;}
.wsc_c00124{word-spacing:-21.874320px;}
.ws6_c00124{word-spacing:-21.815280px;}
.wsa_c00124{word-spacing:-21.768048px;}
.ws3_c00124{word-spacing:-21.714912px;}
.ws8_c00124{word-spacing:-21.661776px;}
.ws1_c00124{word-spacing:-17.739827px;}
.ws4_c00124{word-spacing:-17.685056px;}
.ws5_c00124{word-spacing:-17.630284px;}
.wsd_c00124{word-spacing:-17.411199px;}
.wsf_c00124{word-spacing:-17.157024px;}
.wsb_c00124{word-spacing:-17.103888px;}
.ws7_c00124{word-spacing:-16.962192px;}
.ws0_c00124{word-spacing:-16.944480px;}
.wse_c00124{word-spacing:-16.731936px;}
.ws10_c00124{word-spacing:0.000000px;}
._17_c00124{margin-left:-31.409280px;}
._b_c00124{margin-left:-29.426040px;}
._c_c00124{margin-left:-28.395720px;}
._19_c00124{margin-left:-18.125280px;}
._18_c00124{margin-left:-17.062560px;}
._1b_c00124{margin-left:-13.874400px;}
._5_c00124{margin-left:-12.811680px;}
._4_c00124{margin-left:-11.808000px;}
._6_c00124{margin-left:-10.799160px;}
._12_c00124{margin-left:-7.202880px;}
._11_c00124{margin-left:-6.140160px;}
._8_c00124{margin-left:-4.487040px;}
._7_c00124{margin-left:-3.424320px;}
._1e_c00124{margin-left:-2.327076px;}
._0_c00124{margin-left:-1.156284px;}
._1_c00124{width:1.003680px;}
._20_c00124{width:2.420640px;}
._9_c00124{width:3.424320px;}
._13_c00124{width:4.596768px;}
._10_c00124{width:5.667840px;}
._21_c00124{width:7.557120px;}
._22_c00124{width:9.859680px;}
._f_c00124{width:11.252124px;}
._1d_c00124{width:12.280320px;}
._2_c00124{width:14.853564px;}
._3_c00124{width:16.070028px;}
._1f_c00124{width:28.491804px;}
._15_c00124{width:30.263004px;}
._16_c00124{width:31.350240px;}
._14_c00124{width:33.864444px;}
._e_c00124{width:36.107964px;}
._a_c00124{width:41.078501px;}
._d_c00124{width:57.833760px;}
._1a_c00124{width:85.747568px;}
._1c_c00124{width:171.581544px;}
.fc0_c00124{color:rgb(0,0,0);}
.fs2_c00124{font-size:59.040000px;}
.fs4_c00124{font-size:60.000000px;}
.fs3_c00124{font-size:60.857039px;}
.fs0_c00124{font-size:72.000000px;}
.fs1_c00124{font-size:74.215901px;}
.y0_c00124{bottom:0.000000px;}
.y3_c00124{bottom:2.565000px;}
.y3d_c00124{bottom:3.120150px;}
.y3c_c00124{bottom:34.744500px;}
.y1_c00124{bottom:54.000000px;}
.y3b_c00124{bottom:138.282480px;}
.y3a_c00124{bottom:155.566440px;}
.y39_c00124{bottom:173.204640px;}
.y38_c00124{bottom:190.488600px;}
.y37_c00124{bottom:208.126800px;}
.y36_c00124{bottom:225.765000px;}
.y35_c00124{bottom:258.165000px;}
.y34_c00124{bottom:258.166800px;}
.y33_c00124{bottom:275.805000px;}
.y32_c00124{bottom:308.565000px;}
.y31_c00124{bottom:329.805000px;}
.y30_c00124{bottom:347.445000px;}
.y2f_c00124{bottom:365.805000px;}
.y2e_c00124{bottom:383.085000px;}
.y2d_c00124{bottom:400.725000px;}
.y2c_c00124{bottom:418.365000px;}
.y2b_c00124{bottom:435.645000px;}
.y2a_c00124{bottom:454.005000px;}
.y29_c00124{bottom:471.645000px;}
.y28_c00124{bottom:488.925000px;}
.y27_c00124{bottom:506.565000px;}
.y26_c00124{bottom:523.845000px;}
.y25_c00124{bottom:542.205000px;}
.y24_c00124{bottom:559.845000px;}
.y23_c00124{bottom:577.125000px;}
.y22_c00124{bottom:594.765000px;}
.y21_c00124{bottom:612.405000px;}
.y20_c00124{bottom:629.685000px;}
.y1f_c00124{bottom:647.325000px;}
.y1b_c00124{bottom:665.685000px;}
.y1a_c00124{bottom:682.965000px;}
.y1e_c00124{bottom:699.885000px;}
.y19_c00124{bottom:700.605000px;}
.y1d_c00124{bottom:717.525000px;}
.y18_c00124{bottom:717.885000px;}
.y1c_c00124{bottom:734.805000px;}
.y17_c00124{bottom:735.525000px;}
.y16_c00124{bottom:752.445000px;}
.y15_c00124{bottom:770.085000px;}
.y14_c00124{bottom:788.085000px;}
.y13_c00124{bottom:805.725000px;}
.y12_c00124{bottom:823.365000px;}
.y11_c00124{bottom:840.645000px;}
.y10_c00124{bottom:858.285000px;}
.yf_c00124{bottom:875.565000px;}
.ye_c00124{bottom:893.205000px;}
.yd_c00124{bottom:910.845000px;}
.yc_c00124{bottom:928.845000px;}
.yb_c00124{bottom:946.485000px;}
.ya_c00124{bottom:964.125000px;}
.y9_c00124{bottom:981.405000px;}
.y8_c00124{bottom:999.045000px;}
.y7_c00124{bottom:1016.685000px;}
.y6_c00124{bottom:1033.965000px;}
.y5_c00124{bottom:1051.604850px;}
.y4_c00124{bottom:1085.085000px;}
.y2_c00124{bottom:1138.365000px;}
.h8_c00124{height:19.255500px;}
.h7_c00124{height:45.578880px;}
.h9_c00124{height:46.320000px;}
.h6_c00124{height:46.981634px;}
.h5_c00124{height:53.490240px;}
.h4_c00124{height:57.294676px;}
.h3_c00124{height:65.232000px;}
.h2_c00124{height:1201.365000px;}
.h0_c00124{height:1262.835000px;}
.h1_c00124{height:1263.000000px;}
.w7_c00124{width:25.020000px;}
.w3_c00124{width:39.600000px;}
.w4_c00124{width:87.120000px;}
.w5_c00124{width:209.160000px;}
.w6_c00124{width:315.000000px;}
.w2_c00124{width:863.955000px;}
.w0_c00124{width:892.935000px;}
.w1_c00124{width:893.250000px;}
.x0_c00124{left:0.000000px;}
.x6_c00124{left:7.920150px;}
.x16_c00124{left:12.554700px;}
.x1_c00124{left:14.490000px;}
.x34_c00124{left:32.578800px;}
.x10_c00124{left:41.846100px;}
.xf_c00124{left:43.394400px;}
.x20_c00124{left:49.258200px;}
.x17_c00124{left:60.898200px;}
.x35_c00124{left:67.543050px;}
.x15_c00124{left:76.737300px;}
.x1c_c00124{left:79.560000px;}
.x2e_c00124{left:82.077750px;}
.x11_c00124{left:85.195200px;}
.x29_c00124{left:87.611850px;}
.x21_c00124{left:90.942150px;}
.x2b_c00124{left:97.170000px;}
.x39_c00124{left:104.345850px;}
.x26_c00124{left:110.039250px;}
.x2_c00124{left:113.040150px;}
.x5_c00124{left:119.610000px;}
.x1d_c00124{left:122.909100px;}
.x2f_c00124{left:125.426850px;}
.x23_c00124{left:127.511400px;}
.x2a_c00124{left:129.295800px;}
.x43_c00124{left:133.034550px;}
.x3_c00124{left:150.011700px;}
.x36_c00124{left:151.764750px;}
.x9_c00124{left:153.901350px;}
.x22_c00124{left:155.366100px;}
.x2c_c00124{left:157.384500px;}
.x7_c00124{left:159.930000px;}
.xb_c00124{left:161.415900px;}
.x31_c00124{left:164.113350px;}
.x19_c00124{left:166.455750px;}
.x2d_c00124{left:168.429900px;}
.x12_c00124{left:186.983550px;}
.x37_c00124{left:193.448550px;}
.x32_c00124{left:194.474700px;}
.xa_c00124{left:197.250300px;}
.xd_c00124{left:199.685250px;}
.x18_c00124{left:201.420150px;}
.x30_c00124{left:215.820900px;}
.x4_c00124{left:216.989100px;}
.x1a_c00124{left:219.244500px;}
.x13_c00124{left:221.947950px;}
.x1e_c00124{left:228.091050px;}
.x33_c00124{left:237.823950px;}
.xe_c00124{left:240.941100px;}
.x24_c00124{left:246.758700px;}
.x8_c00124{left:247.770000px;}
.x1b_c00124{left:255.079050px;}
.x1f_c00124{left:263.055450px;}
.x14_c00124{left:269.670600px;}
.x27_c00124{left:272.220600px;}
.x25_c00124{left:282.593250px;}
.x3a_c00124{left:295.664850px;}
.x38_c00124{left:302.205300px;}
.x28_c00124{left:307.185000px;}
.x3b_c00124{left:337.110750px;}
.x3e_c00124{left:359.016300px;}
.x3f_c00124{left:393.980700px;}
.x40_c00124{left:414.829500px;}
.x41_c00124{left:418.999050px;}
.xc_c00124{left:457.650000px;}
.x42_c00124{left:482.371500px;}
.x3c_c00124{left:483.945900px;}
.x3d_c00124{left:519.780450px;}
.x44_c00124{left:759.915000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls16_c00124{letter-spacing:0.000000pt;}
.lsd_c00124{letter-spacing:0.235627pt;}
.lsb_c00124{letter-spacing:0.236160pt;}
.ls2_c00124{letter-spacing:0.236693pt;}
.ls18_c00124{letter-spacing:0.243428pt;}
.ls12_c00124{letter-spacing:0.262400pt;}
.ls11_c00124{letter-spacing:0.272896pt;}
.ls8_c00124{letter-spacing:0.283093pt;}
.ls20_c00124{letter-spacing:0.283392pt;}
.ls1_c00124{letter-spacing:0.283627pt;}
.ls13_c00124{letter-spacing:0.325376pt;}
.lse_c00124{letter-spacing:0.438171pt;}
.ls6_c00124{letter-spacing:0.472320pt;}
.ls7_c00124{letter-spacing:0.488064pt;}
.lsc_c00124{letter-spacing:0.498560pt;}
.ls32_c00124{letter-spacing:0.519552pt;}
.ls30_c00124{letter-spacing:0.587776pt;}
.ls1d_c00124{letter-spacing:0.614016pt;}
.ls1e_c00124{letter-spacing:0.619264pt;}
.ls3_c00124{letter-spacing:0.632913pt;}
.ls31_c00124{letter-spacing:0.661248pt;}
.ls1b_c00124{letter-spacing:0.681599pt;}
.ls17_c00124{letter-spacing:0.730284pt;}
.ls33_c00124{letter-spacing:0.855424pt;}
.ls1f_c00124{letter-spacing:0.881751pt;}
.ls2f_c00124{letter-spacing:1.894528pt;}
.ls2d_c00124{letter-spacing:3.358720pt;}
.ls22_c00124{letter-spacing:3.531904pt;}
.ls10_c00124{letter-spacing:4.662827pt;}
.ls23_c00124{letter-spacing:4.665472pt;}
.ls0_c00124{letter-spacing:4.710293pt;}
.ls19_c00124{letter-spacing:4.712704pt;}
.ls4_c00124{letter-spacing:4.758080pt;}
.ls5_c00124{letter-spacing:4.758613pt;}
.ls24_c00124{letter-spacing:4.759936pt;}
.ls1c_c00124{letter-spacing:4.801920pt;}
.ls2c_c00124{letter-spacing:4.854400pt;}
.lsa_c00124{letter-spacing:4.857920pt;}
.lsf_c00124{letter-spacing:4.900587pt;}
.ls9_c00124{letter-spacing:4.901632pt;}
.ls1a_c00124{letter-spacing:5.090560pt;}
.ls14_c00124{letter-spacing:5.312000pt;}
.ls15_c00124{letter-spacing:5.475484pt;}
.ls28_c00124{letter-spacing:5.945984pt;}
.ls21_c00124{letter-spacing:10.952576pt;}
.ls2e_c00124{letter-spacing:11.214976pt;}
.ls27_c00124{letter-spacing:11.325184pt;}
.ls2b_c00124{letter-spacing:12.212096pt;}
.ls2a_c00124{letter-spacing:15.654784pt;}
.ls29_c00124{letter-spacing:28.370688pt;}
.ls25_c00124{letter-spacing:30.832000pt;}
.ls26_c00124{letter-spacing:30.989440pt;}
.ws2_c00124{word-spacing:-19.680000pt;}
.ws9_c00124{word-spacing:-19.491072pt;}
.wsc_c00124{word-spacing:-19.443840pt;}
.ws6_c00124{word-spacing:-19.391360pt;}
.wsa_c00124{word-spacing:-19.349376pt;}
.ws3_c00124{word-spacing:-19.302144pt;}
.ws8_c00124{word-spacing:-19.254912pt;}
.ws1_c00124{word-spacing:-15.768735pt;}
.ws4_c00124{word-spacing:-15.720049pt;}
.ws5_c00124{word-spacing:-15.671364pt;}
.wsd_c00124{word-spacing:-15.476621pt;}
.wsf_c00124{word-spacing:-15.250688pt;}
.wsb_c00124{word-spacing:-15.203456pt;}
.ws7_c00124{word-spacing:-15.077504pt;}
.ws0_c00124{word-spacing:-15.061760pt;}
.wse_c00124{word-spacing:-14.872832pt;}
.ws10_c00124{word-spacing:0.000000pt;}
._17_c00124{margin-left:-27.919360pt;}
._b_c00124{margin-left:-26.156480pt;}
._c_c00124{margin-left:-25.240640pt;}
._19_c00124{margin-left:-16.111360pt;}
._18_c00124{margin-left:-15.166720pt;}
._1b_c00124{margin-left:-12.332800pt;}
._5_c00124{margin-left:-11.388160pt;}
._4_c00124{margin-left:-10.496000pt;}
._6_c00124{margin-left:-9.599253pt;}
._12_c00124{margin-left:-6.402560pt;}
._11_c00124{margin-left:-5.457920pt;}
._8_c00124{margin-left:-3.988480pt;}
._7_c00124{margin-left:-3.043840pt;}
._1e_c00124{margin-left:-2.068512pt;}
._0_c00124{margin-left:-1.027808pt;}
._1_c00124{width:0.892160pt;}
._20_c00124{width:2.151680pt;}
._9_c00124{width:3.043840pt;}
._13_c00124{width:4.086016pt;}
._10_c00124{width:5.038080pt;}
._21_c00124{width:6.717440pt;}
._22_c00124{width:8.764160pt;}
._f_c00124{width:10.001888pt;}
._1d_c00124{width:10.915840pt;}
._2_c00124{width:13.203168pt;}
._3_c00124{width:14.284469pt;}
._1f_c00124{width:25.326048pt;}
._15_c00124{width:26.900448pt;}
._16_c00124{width:27.866880pt;}
._14_c00124{width:30.101728pt;}
._e_c00124{width:32.095968pt;}
._a_c00124{width:36.514223pt;}
._d_c00124{width:51.407787pt;}
._1a_c00124{width:76.220060pt;}
._1c_c00124{width:152.516928pt;}
.fs2_c00124{font-size:52.480000pt;}
.fs4_c00124{font-size:53.333333pt;}
.fs3_c00124{font-size:54.095146pt;}
.fs0_c00124{font-size:64.000000pt;}
.fs1_c00124{font-size:65.969690pt;}
.y0_c00124{bottom:0.000000pt;}
.y3_c00124{bottom:2.280000pt;}
.y3d_c00124{bottom:2.773467pt;}
.y3c_c00124{bottom:30.884000pt;}
.y1_c00124{bottom:48.000000pt;}
.y3b_c00124{bottom:122.917760pt;}
.y3a_c00124{bottom:138.281280pt;}
.y39_c00124{bottom:153.959680pt;}
.y38_c00124{bottom:169.323200pt;}
.y37_c00124{bottom:185.001600pt;}
.y36_c00124{bottom:200.680000pt;}
.y35_c00124{bottom:229.480000pt;}
.y34_c00124{bottom:229.481600pt;}
.y33_c00124{bottom:245.160000pt;}
.y32_c00124{bottom:274.280000pt;}
.y31_c00124{bottom:293.160000pt;}
.y30_c00124{bottom:308.840000pt;}
.y2f_c00124{bottom:325.160000pt;}
.y2e_c00124{bottom:340.520000pt;}
.y2d_c00124{bottom:356.200000pt;}
.y2c_c00124{bottom:371.880000pt;}
.y2b_c00124{bottom:387.240000pt;}
.y2a_c00124{bottom:403.560000pt;}
.y29_c00124{bottom:419.240000pt;}
.y28_c00124{bottom:434.600000pt;}
.y27_c00124{bottom:450.280000pt;}
.y26_c00124{bottom:465.640000pt;}
.y25_c00124{bottom:481.960000pt;}
.y24_c00124{bottom:497.640000pt;}
.y23_c00124{bottom:513.000000pt;}
.y22_c00124{bottom:528.680000pt;}
.y21_c00124{bottom:544.360000pt;}
.y20_c00124{bottom:559.720000pt;}
.y1f_c00124{bottom:575.400000pt;}
.y1b_c00124{bottom:591.720000pt;}
.y1a_c00124{bottom:607.080000pt;}
.y1e_c00124{bottom:622.120000pt;}
.y19_c00124{bottom:622.760000pt;}
.y1d_c00124{bottom:637.800000pt;}
.y18_c00124{bottom:638.120000pt;}
.y1c_c00124{bottom:653.160000pt;}
.y17_c00124{bottom:653.800000pt;}
.y16_c00124{bottom:668.840000pt;}
.y15_c00124{bottom:684.520000pt;}
.y14_c00124{bottom:700.520000pt;}
.y13_c00124{bottom:716.200000pt;}
.y12_c00124{bottom:731.880000pt;}
.y11_c00124{bottom:747.240000pt;}
.y10_c00124{bottom:762.920000pt;}
.yf_c00124{bottom:778.280000pt;}
.ye_c00124{bottom:793.960000pt;}
.yd_c00124{bottom:809.640000pt;}
.yc_c00124{bottom:825.640000pt;}
.yb_c00124{bottom:841.320000pt;}
.ya_c00124{bottom:857.000000pt;}
.y9_c00124{bottom:872.360000pt;}
.y8_c00124{bottom:888.040000pt;}
.y7_c00124{bottom:903.720000pt;}
.y6_c00124{bottom:919.080000pt;}
.y5_c00124{bottom:934.759867pt;}
.y4_c00124{bottom:964.520000pt;}
.y2_c00124{bottom:1011.880000pt;}
.h8_c00124{height:17.116000pt;}
.h7_c00124{height:40.514560pt;}
.h9_c00124{height:41.173333pt;}
.h6_c00124{height:41.761453pt;}
.h5_c00124{height:47.546880pt;}
.h4_c00124{height:50.928601pt;}
.h3_c00124{height:57.984000pt;}
.h2_c00124{height:1067.880000pt;}
.h0_c00124{height:1122.520000pt;}
.h1_c00124{height:1122.666667pt;}
.w7_c00124{width:22.240000pt;}
.w3_c00124{width:35.200000pt;}
.w4_c00124{width:77.440000pt;}
.w5_c00124{width:185.920000pt;}
.w6_c00124{width:280.000000pt;}
.w2_c00124{width:767.960000pt;}
.w0_c00124{width:793.720000pt;}
.w1_c00124{width:794.000000pt;}
.x0_c00124{left:0.000000pt;}
.x6_c00124{left:7.040133pt;}
.x16_c00124{left:11.159733pt;}
.x1_c00124{left:12.880000pt;}
.x34_c00124{left:28.958933pt;}
.x10_c00124{left:37.196533pt;}
.xf_c00124{left:38.572800pt;}
.x20_c00124{left:43.785067pt;}
.x17_c00124{left:54.131733pt;}
.x35_c00124{left:60.038267pt;}
.x15_c00124{left:68.210933pt;}
.x1c_c00124{left:70.720000pt;}
.x2e_c00124{left:72.958000pt;}
.x11_c00124{left:75.729067pt;}
.x29_c00124{left:77.877200pt;}
.x21_c00124{left:80.837467pt;}
.x2b_c00124{left:86.373333pt;}
.x39_c00124{left:92.751867pt;}
.x26_c00124{left:97.812667pt;}
.x2_c00124{left:100.480133pt;}
.x5_c00124{left:106.320000pt;}
.x1d_c00124{left:109.252533pt;}
.x2f_c00124{left:111.490533pt;}
.x23_c00124{left:113.343467pt;}
.x2a_c00124{left:114.929600pt;}
.x43_c00124{left:118.252933pt;}
.x3_c00124{left:133.343733pt;}
.x36_c00124{left:134.902000pt;}
.x9_c00124{left:136.801200pt;}
.x22_c00124{left:138.103200pt;}
.x2c_c00124{left:139.897333pt;}
.x7_c00124{left:142.160000pt;}
.xb_c00124{left:143.480800pt;}
.x31_c00124{left:145.878533pt;}
.x19_c00124{left:147.960667pt;}
.x2d_c00124{left:149.715467pt;}
.x12_c00124{left:166.207600pt;}
.x37_c00124{left:171.954267pt;}
.x32_c00124{left:172.866400pt;}
.xa_c00124{left:175.333600pt;}
.xd_c00124{left:177.498000pt;}
.x18_c00124{left:179.040133pt;}
.x30_c00124{left:191.840800pt;}
.x4_c00124{left:192.879200pt;}
.x1a_c00124{left:194.884000pt;}
.x13_c00124{left:197.287067pt;}
.x1e_c00124{left:202.747600pt;}
.x33_c00124{left:211.399067pt;}
.xe_c00124{left:214.169867pt;}
.x24_c00124{left:219.341067pt;}
.x8_c00124{left:220.240000pt;}
.x1b_c00124{left:226.736933pt;}
.x1f_c00124{left:233.827067pt;}
.x14_c00124{left:239.707200pt;}
.x27_c00124{left:241.973867pt;}
.x25_c00124{left:251.194000pt;}
.x3a_c00124{left:262.813200pt;}
.x38_c00124{left:268.626933pt;}
.x28_c00124{left:273.053333pt;}
.x3b_c00124{left:299.654000pt;}
.x3e_c00124{left:319.125600pt;}
.x3f_c00124{left:350.205067pt;}
.x40_c00124{left:368.737333pt;}
.x41_c00124{left:372.443600pt;}
.xc_c00124{left:406.800000pt;}
.x42_c00124{left:428.774667pt;}
.x3c_c00124{left:430.174133pt;}
.x3d_c00124{left:462.027067pt;}
.x44_c00124{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52a83d189e0c6dbe4317a293.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.134000;font-style:normal;font-weight:normal;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_de44a61b65801942e52eff0a.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;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:ff3_c00125;src:url('chunks/assets/font_c36b2344f67f88c65c251671.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_1a79a6f5486b983abc761ff1.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00125{vertical-align:-24.480000px;}
.v0_c00125{vertical-align:0.000000px;}
.v1_c00125{vertical-align:30.240000px;}
.ls9_c00125{letter-spacing:-0.179568px;}
.ls7_c00125{letter-spacing:0.000000px;}
.lsc_c00125{letter-spacing:0.144000px;}
.lse_c00125{letter-spacing:0.265680px;}
.ls3_c00125{letter-spacing:0.318816px;}
.ls5_c00125{letter-spacing:0.324720px;}
.ls14_c00125{letter-spacing:0.371952px;}
.ls12_c00125{letter-spacing:0.383399px;}
.ls10_c00125{letter-spacing:0.478224px;}
.ls4_c00125{letter-spacing:0.531360px;}
.ls2_c00125{letter-spacing:0.547713px;}
.lsf_c00125{letter-spacing:0.584496px;}
.ls11_c00125{letter-spacing:0.602485px;}
.ls13_c00125{letter-spacing:0.821570px;}
.ls8_c00125{letter-spacing:5.430672px;}
.ls1_c00125{letter-spacing:5.976000px;}
.ls0_c00125{letter-spacing:5.979600px;}
.ls6_c00125{letter-spacing:6.159920px;}
.lsd_c00125{letter-spacing:11.176272px;}
.lsb_c00125{letter-spacing:21.204000px;}
.lsa_c00125{letter-spacing:27.698400px;}
.sc__c00125{text-shadow:none;}
.sc1_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00125{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc1_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00125{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00125{word-spacing:-21.043152px;}
.ws2_c00125{word-spacing:-20.016000px;}
.ws4_c00125{word-spacing:-16.944480px;}
.ws1_c00125{word-spacing:-11.429712px;}
.ws3_c00125{word-spacing:-10.152000px;}
.ws5_c00125{word-spacing:0.000000px;}
._6_c00125{margin-left:-27.676800px;}
._8_c00125{margin-left:-21.168000px;}
._f_c00125{margin-left:-10.797120px;}
._10_c00125{margin-left:-9.695520px;}
._11_c00125{margin-left:-1.140480px;}
._1_c00125{width:1.008000px;}
._2_c00125{width:3.024000px;}
._9_c00125{width:4.032000px;}
._d_c00125{width:7.201968px;}
._c_c00125{width:8.495016px;}
._b_c00125{width:10.440000px;}
._a_c00125{width:12.024000px;}
._e_c00125{width:13.320000px;}
._3_c00125{width:14.400000px;}
._12_c00125{width:16.309686px;}
._0_c00125{width:19.008000px;}
._7_c00125{width:21.168000px;}
._5_c00125{width:27.720000px;}
._4_c00125{width:35.424000px;}
.fc0_c00125{color:rgb(0,0,0);}
.fs4_c00125{font-size:36.000000px;}
.fs3_c00125{font-size:41.760000px;}
.fs2_c00125{font-size:56.160000px;}
.fs5_c00125{font-size:59.040000px;}
.fs7_c00125{font-size:60.000000px;}
.fs6_c00125{font-size:60.857039px;}
.fs0_c00125{font-size:72.000000px;}
.fs1_c00125{font-size:74.215901px;}
.y0_c00125{bottom:0.000000px;}
.y3_c00125{bottom:2.565000px;}
.y34_c00125{bottom:3.120150px;}
.y33_c00125{bottom:34.744500px;}
.y1_c00125{bottom:54.000000px;}
.y32_c00125{bottom:61.605000px;}
.y31_c00125{bottom:78.885000px;}
.y30_c00125{bottom:96.525000px;}
.y2f_c00125{bottom:107.686800px;}
.y2e_c00125{bottom:125.325000px;}
.y2d_c00125{bottom:125.326800px;}
.y2c_c00125{bottom:142.965000px;}
.y2b_c00125{bottom:149.085000px;}
.y2a_c00125{bottom:160.245000px;}
.y29_c00125{bottom:177.885000px;}
.y28_c00125{bottom:177.886800px;}
.y27_c00125{bottom:195.525000px;}
.y26_c00125{bottom:201.645000px;}
.y25_c00125{bottom:228.285000px;}
.y24_c00125{bottom:277.965000px;}
.y23_c00125{bottom:298.845000px;}
.y22_c00125{bottom:334.845000px;}
.y21_c00125{bottom:355.725000px;}
.y20_c00125{bottom:376.965000px;}
.y1f_c00125{bottom:397.845000px;}
.y1e_c00125{bottom:418.725000px;}
.y1d_c00125{bottom:439.965000px;}
.y1c_c00125{bottom:475.965000px;}
.y1b_c00125{bottom:496.845000px;}
.y1a_c00125{bottom:517.725000px;}
.y19_c00125{bottom:538.965000px;}
.y18_c00125{bottom:559.845000px;}
.y17_c00125{bottom:595.845000px;}
.y16_c00125{bottom:616.725000px;}
.y15_c00125{bottom:637.965000px;}
.y14_c00125{bottom:673.965000px;}
.y13_c00125{bottom:694.845000px;}
.y12_c00125{bottom:730.845000px;}
.y11_c00125{bottom:752.085000px;}
.y10_c00125{bottom:772.965000px;}
.yf_c00125{bottom:808.965000px;}
.ye_c00125{bottom:829.845000px;}
.yd_c00125{bottom:851.085000px;}
.yc_c00125{bottom:871.965000px;}
.yb_c00125{bottom:892.845000px;}
.ya_c00125{bottom:914.085000px;}
.y9_c00125{bottom:934.965000px;}
.y8_c00125{bottom:955.845000px;}
.y7_c00125{bottom:991.845000px;}
.y6_c00125{bottom:1013.085000px;}
.y5_c00125{bottom:1049.085000px;}
.y4_c00125{bottom:1085.085000px;}
.y2_c00125{bottom:1138.365000px;}
.h9_c00125{height:19.255500px;}
.h6_c00125{height:32.616000px;}
.ha_c00125{height:46.320000px;}
.h7_c00125{height:46.981634px;}
.h8_c00125{height:53.490240px;}
.h4_c00125{height:57.294676px;}
.h3_c00125{height:65.232000px;}
.h5_c00125{height:68.074560px;}
.h2_c00125{height:1201.365000px;}
.h0_c00125{height:1262.835000px;}
.h1_c00125{height:1263.000000px;}
.w3_c00125{width:25.020000px;}
.w2_c00125{width:863.955000px;}
.w0_c00125{width:892.935000px;}
.w1_c00125{width:893.250000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:14.490000px;}
.x2_c00125{left:113.040150px;}
.x1e_c00125{left:131.214900px;}
.x3_c00125{left:150.011700px;}
.xc_c00125{left:151.055400px;}
.x17_c00125{left:171.053100px;}
.x1d_c00125{left:191.397600px;}
.x1a_c00125{left:196.018500px;}
.x5_c00125{left:198.147600px;}
.x1b_c00125{left:200.668950px;}
.x1c_c00125{left:205.663650px;}
.x4_c00125{left:216.989100px;}
.x6_c00125{left:264.170250px;}
.x7_c00125{left:327.740850px;}
.x18_c00125{left:367.381650px;}
.x8_c00125{left:424.416900px;}
.xd_c00125{left:456.804150px;}
.x1f_c00125{left:463.365900px;}
.x19_c00125{left:466.765500px;}
.x9_c00125{left:482.429700px;}
.xe_c00125{left:514.817100px;}
.x14_c00125{left:538.024950px;}
.x15_c00125{left:564.899400px;}
.x16_c00125{left:579.768300px;}
.xf_c00125{left:660.219000px;}
.x11_c00125{left:688.381050px;}
.xa_c00125{left:692.377050px;}
.x12_c00125{left:698.388750px;}
.x10_c00125{left:718.231950px;}
.x13_c00125{left:745.386150px;}
.xb_c00125{left:750.390000px;}
.x20_c00125{left:759.915000px;}
@media print{
.v2_c00125{vertical-align:-21.760000pt;}
.v0_c00125{vertical-align:0.000000pt;}
.v1_c00125{vertical-align:26.880000pt;}
.ls9_c00125{letter-spacing:-0.159616pt;}
.ls7_c00125{letter-spacing:0.000000pt;}
.lsc_c00125{letter-spacing:0.128000pt;}
.lse_c00125{letter-spacing:0.236160pt;}
.ls3_c00125{letter-spacing:0.283392pt;}
.ls5_c00125{letter-spacing:0.288640pt;}
.ls14_c00125{letter-spacing:0.330624pt;}
.ls12_c00125{letter-spacing:0.340799pt;}
.ls10_c00125{letter-spacing:0.425088pt;}
.ls4_c00125{letter-spacing:0.472320pt;}
.ls2_c00125{letter-spacing:0.486856pt;}
.lsf_c00125{letter-spacing:0.519552pt;}
.ls11_c00125{letter-spacing:0.535542pt;}
.ls13_c00125{letter-spacing:0.730284pt;}
.ls8_c00125{letter-spacing:4.827264pt;}
.ls1_c00125{letter-spacing:5.312000pt;}
.ls0_c00125{letter-spacing:5.315200pt;}
.ls6_c00125{letter-spacing:5.475484pt;}
.lsd_c00125{letter-spacing:9.934464pt;}
.lsb_c00125{letter-spacing:18.848000pt;}
.lsa_c00125{letter-spacing:24.620800pt;}
.ws0_c00125{word-spacing:-18.705024pt;}
.ws2_c00125{word-spacing:-17.792000pt;}
.ws4_c00125{word-spacing:-15.061760pt;}
.ws1_c00125{word-spacing:-10.159744pt;}
.ws3_c00125{word-spacing:-9.024000pt;}
.ws5_c00125{word-spacing:0.000000pt;}
._6_c00125{margin-left:-24.601600pt;}
._8_c00125{margin-left:-18.816000pt;}
._f_c00125{margin-left:-9.597440pt;}
._10_c00125{margin-left:-8.618240pt;}
._11_c00125{margin-left:-1.013760pt;}
._1_c00125{width:0.896000pt;}
._2_c00125{width:2.688000pt;}
._9_c00125{width:3.584000pt;}
._d_c00125{width:6.401749pt;}
._c_c00125{width:7.551125pt;}
._b_c00125{width:9.280000pt;}
._a_c00125{width:10.688000pt;}
._e_c00125{width:11.840000pt;}
._3_c00125{width:12.800000pt;}
._12_c00125{width:14.497499pt;}
._0_c00125{width:16.896000pt;}
._7_c00125{width:18.816000pt;}
._5_c00125{width:24.640000pt;}
._4_c00125{width:31.488000pt;}
.fs4_c00125{font-size:32.000000pt;}
.fs3_c00125{font-size:37.120000pt;}
.fs2_c00125{font-size:49.920000pt;}
.fs5_c00125{font-size:52.480000pt;}
.fs7_c00125{font-size:53.333333pt;}
.fs6_c00125{font-size:54.095146pt;}
.fs0_c00125{font-size:64.000000pt;}
.fs1_c00125{font-size:65.969690pt;}
.y0_c00125{bottom:0.000000pt;}
.y3_c00125{bottom:2.280000pt;}
.y34_c00125{bottom:2.773467pt;}
.y33_c00125{bottom:30.884000pt;}
.y1_c00125{bottom:48.000000pt;}
.y32_c00125{bottom:54.760000pt;}
.y31_c00125{bottom:70.120000pt;}
.y30_c00125{bottom:85.800000pt;}
.y2f_c00125{bottom:95.721600pt;}
.y2e_c00125{bottom:111.400000pt;}
.y2d_c00125{bottom:111.401600pt;}
.y2c_c00125{bottom:127.080000pt;}
.y2b_c00125{bottom:132.520000pt;}
.y2a_c00125{bottom:142.440000pt;}
.y29_c00125{bottom:158.120000pt;}
.y28_c00125{bottom:158.121600pt;}
.y27_c00125{bottom:173.800000pt;}
.y26_c00125{bottom:179.240000pt;}
.y25_c00125{bottom:202.920000pt;}
.y24_c00125{bottom:247.080000pt;}
.y23_c00125{bottom:265.640000pt;}
.y22_c00125{bottom:297.640000pt;}
.y21_c00125{bottom:316.200000pt;}
.y20_c00125{bottom:335.080000pt;}
.y1f_c00125{bottom:353.640000pt;}
.y1e_c00125{bottom:372.200000pt;}
.y1d_c00125{bottom:391.080000pt;}
.y1c_c00125{bottom:423.080000pt;}
.y1b_c00125{bottom:441.640000pt;}
.y1a_c00125{bottom:460.200000pt;}
.y19_c00125{bottom:479.080000pt;}
.y18_c00125{bottom:497.640000pt;}
.y17_c00125{bottom:529.640000pt;}
.y16_c00125{bottom:548.200000pt;}
.y15_c00125{bottom:567.080000pt;}
.y14_c00125{bottom:599.080000pt;}
.y13_c00125{bottom:617.640000pt;}
.y12_c00125{bottom:649.640000pt;}
.y11_c00125{bottom:668.520000pt;}
.y10_c00125{bottom:687.080000pt;}
.yf_c00125{bottom:719.080000pt;}
.ye_c00125{bottom:737.640000pt;}
.yd_c00125{bottom:756.520000pt;}
.yc_c00125{bottom:775.080000pt;}
.yb_c00125{bottom:793.640000pt;}
.ya_c00125{bottom:812.520000pt;}
.y9_c00125{bottom:831.080000pt;}
.y8_c00125{bottom:849.640000pt;}
.y7_c00125{bottom:881.640000pt;}
.y6_c00125{bottom:900.520000pt;}
.y5_c00125{bottom:932.520000pt;}
.y4_c00125{bottom:964.520000pt;}
.y2_c00125{bottom:1011.880000pt;}
.h9_c00125{height:17.116000pt;}
.h6_c00125{height:28.992000pt;}
.ha_c00125{height:41.173333pt;}
.h7_c00125{height:41.761453pt;}
.h8_c00125{height:47.546880pt;}
.h4_c00125{height:50.928601pt;}
.h3_c00125{height:57.984000pt;}
.h5_c00125{height:60.510720pt;}
.h2_c00125{height:1067.880000pt;}
.h0_c00125{height:1122.520000pt;}
.h1_c00125{height:1122.666667pt;}
.w3_c00125{width:22.240000pt;}
.w2_c00125{width:767.960000pt;}
.w0_c00125{width:793.720000pt;}
.w1_c00125{width:794.000000pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:12.880000pt;}
.x2_c00125{left:100.480133pt;}
.x1e_c00125{left:116.635467pt;}
.x3_c00125{left:133.343733pt;}
.xc_c00125{left:134.271467pt;}
.x17_c00125{left:152.047200pt;}
.x1d_c00125{left:170.131200pt;}
.x1a_c00125{left:174.238667pt;}
.x5_c00125{left:176.131200pt;}
.x1b_c00125{left:178.372400pt;}
.x1c_c00125{left:182.812133pt;}
.x4_c00125{left:192.879200pt;}
.x6_c00125{left:234.818000pt;}
.x7_c00125{left:291.325200pt;}
.x18_c00125{left:326.561467pt;}
.x8_c00125{left:377.259467pt;}
.xd_c00125{left:406.048133pt;}
.x1f_c00125{left:411.880800pt;}
.x19_c00125{left:414.902667pt;}
.x9_c00125{left:428.826400pt;}
.xe_c00125{left:457.615200pt;}
.x14_c00125{left:478.244400pt;}
.x15_c00125{left:502.132800pt;}
.x16_c00125{left:515.349600pt;}
.xf_c00125{left:586.861333pt;}
.x11_c00125{left:611.894267pt;}
.xa_c00125{left:615.446267pt;}
.x12_c00125{left:620.790000pt;}
.x10_c00125{left:638.428400pt;}
.x13_c00125{left:662.565467pt;}
.xb_c00125{left:667.013333pt;}
.x20_c00125{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1cab56eae4e054f03a62b98c.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.134000;font-style:normal;font-weight:normal;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_45e69762e1be6fd626b9aee4.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;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:ff3_c00126;src:url('chunks/assets/font_883dd07cf8fe6d51a121c35a.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_6c48cae942a993b9b6a3e7f4.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_8194133ff60fb143a73b04df.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00126;src:url('chunks/assets/font_18b943f5f66760fb5846460a.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:0.787000;font-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_c00126{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00126{vertical-align:-24.480000px;}
.v0_c00126{vertical-align:0.000000px;}
.v1_c00126{vertical-align:30.240000px;}
.ls1c_c00126{letter-spacing:-0.179568px;}
.ls1a_c00126{letter-spacing:0.000000px;}
.ls1e_c00126{letter-spacing:0.144000px;}
.lsb_c00126{letter-spacing:0.236160px;}
.ls16_c00126{letter-spacing:0.265680px;}
.lsf_c00126{letter-spacing:0.273857px;}
.ls17_c00126{letter-spacing:0.283392px;}
.lsc_c00126{letter-spacing:0.295200px;}
.ls21_c00126{letter-spacing:0.318816px;}
.ls30_c00126{letter-spacing:0.342432px;}
.ls26_c00126{letter-spacing:0.425088px;}
.ls11_c00126{letter-spacing:0.438171px;}
.ls20_c00126{letter-spacing:0.478224px;}
.lse_c00126{letter-spacing:0.492942px;}
.ls18_c00126{letter-spacing:0.531360px;}
.ls8_c00126{letter-spacing:0.547713px;}
.ls2e_c00126{letter-spacing:0.584496px;}
.ls37_c00126{letter-spacing:0.690768px;}
.lsa_c00126{letter-spacing:0.712027px;}
.ls29_c00126{letter-spacing:0.718113px;}
.ls2d_c00126{letter-spacing:0.821570px;}
.ls2c_c00126{letter-spacing:0.873792px;}
.ls2a_c00126{letter-spacing:0.962352px;}
.ls7_c00126{letter-spacing:0.991970px;}
.ls27_c00126{letter-spacing:1.168992px;}
.ls22_c00126{letter-spacing:1.977840px;}
.ls28_c00126{letter-spacing:2.001456px;}
.ls25_c00126{letter-spacing:4.363056px;}
.ls13_c00126{letter-spacing:5.248656px;}
.ls3_c00126{letter-spacing:5.254560px;}
.ls12_c00126{letter-spacing:5.272272px;}
.ls2f_c00126{letter-spacing:5.295888px;}
.ls36_c00126{letter-spacing:5.301792px;}
.ls6_c00126{letter-spacing:5.313600px;}
.ls14_c00126{letter-spacing:5.337216px;}
.ls2b_c00126{letter-spacing:5.354928px;}
.ls2_c00126{letter-spacing:5.372640px;}
.ls33_c00126{letter-spacing:5.402160px;}
.ls4_c00126{letter-spacing:5.431680px;}
.ls24_c00126{letter-spacing:5.461200px;}
.ls15_c00126{letter-spacing:5.514336px;}
.ls1_c00126{letter-spacing:5.734200px;}
.lsd_c00126{letter-spacing:5.844960px;}
.ls0_c00126{letter-spacing:5.976000px;}
.ls10_c00126{letter-spacing:6.022080px;}
.ls1d_c00126{letter-spacing:6.098400px;}
.ls19_c00126{letter-spacing:6.159920px;}
.ls32_c00126{letter-spacing:9.145296px;}
.ls31_c00126{letter-spacing:9.151200px;}
.ls23_c00126{letter-spacing:9.664848px;}
.ls34_c00126{letter-spacing:11.288448px;}
.ls1b_c00126{letter-spacing:13.176000px;}
.ls35_c00126{letter-spacing:13.189536px;}
.ls5_c00126{letter-spacing:14.641920px;}
.ls9_c00126{letter-spacing:14.700960px;}
.ls1f_c00126{letter-spacing:15.214608px;}
.sc__c00126{text-shadow:none;}
.sc1_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00126{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc1_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00126{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00126{word-spacing:-25.992000px;}
.ws3_c00126{word-spacing:-21.927456px;}
.ws5_c00126{word-spacing:-21.874320px;}
.ws11_c00126{word-spacing:-21.815280px;}
.wsc_c00126{word-spacing:-21.768048px;}
.ws12_c00126{word-spacing:-21.714912px;}
.wse_c00126{word-spacing:-21.709008px;}
.ws4_c00126{word-spacing:-21.661776px;}
.ws6_c00126{word-spacing:-17.910227px;}
.wsb_c00126{word-spacing:-17.630284px;}
.ws8_c00126{word-spacing:-17.465970px;}
.wsd_c00126{word-spacing:-17.411199px;}
.ws7_c00126{word-spacing:-17.356428px;}
.ws13_c00126{word-spacing:-16.944480px;}
.ws10_c00126{word-spacing:-16.891344px;}
.ws9_c00126{word-spacing:-16.838208px;}
.wsf_c00126{word-spacing:-16.731936px;}
.wsa_c00126{word-spacing:-16.678800px;}
.ws1_c00126{word-spacing:-11.429712px;}
.ws2_c00126{word-spacing:-10.152000px;}
.ws14_c00126{word-spacing:0.000000px;}
._9_c00126{margin-left:-14.929920px;}
._1_c00126{margin-left:-13.176000px;}
._13_c00126{margin-left:-12.006720px;}
._12_c00126{margin-left:-10.974240px;}
._b_c00126{margin-left:-9.292918px;}
._11_c00126{margin-left:-7.805044px;}
._d_c00126{margin-left:-4.073760px;}
._e_c00126{margin-left:-2.952000px;}
._8_c00126{margin-left:-1.865642px;}
._2_c00126{width:1.235232px;}
._3_c00126{width:3.096000px;}
._c_c00126{width:4.124992px;}
._6_c00126{width:5.178242px;}
._5_c00126{width:6.308352px;}
._a_c00126{width:9.151200px;}
._10_c00126{width:12.148926px;}
._0_c00126{width:13.176000px;}
._7_c00126{width:16.416000px;}
._f_c00126{width:22.553280px;}
._4_c00126{width:27.216000px;}
.fc0_c00126{color:rgb(0,0,0);}
.fs3_c00126{font-size:36.000000px;}
.fs2_c00126{font-size:41.760000px;}
.fs4_c00126{font-size:59.040000px;}
.fs6_c00126{font-size:60.000000px;}
.fs5_c00126{font-size:60.857039px;}
.fs0_c00126{font-size:72.000000px;}
.fs1_c00126{font-size:74.215901px;}
.y0_c00126{bottom:0.000000px;}
.y3_c00126{bottom:2.565000px;}
.y3d_c00126{bottom:3.120150px;}
.y3c_c00126{bottom:34.744500px;}
.y1_c00126{bottom:54.000000px;}
.y3b_c00126{bottom:55.485000px;}
.y3a_c00126{bottom:61.605000px;}
.y39_c00126{bottom:72.766800px;}
.y38_c00126{bottom:90.405000px;}
.y37_c00126{bottom:96.525000px;}
.y36_c00126{bottom:107.685000px;}
.y35_c00126{bottom:107.686800px;}
.y34_c00126{bottom:131.445000px;}
.y33_c00126{bottom:142.965000px;}
.y32_c00126{bottom:149.085000px;}
.y31_c00126{bottom:160.246800px;}
.y30_c00126{bottom:177.885000px;}
.y2f_c00126{bottom:177.886800px;}
.y2d_c00126{bottom:195.521040px;}
.y2e_c00126{bottom:195.525000px;}
.y2c_c00126{bottom:218.925000px;}
.y2b_c00126{bottom:230.445000px;}
.y2a_c00126{bottom:254.205000px;}
.y29_c00126{bottom:265.365000px;}
.y28_c00126{bottom:271.485000px;}
.y26_c00126{bottom:283.002840px;}
.y27_c00126{bottom:283.005000px;}
.y25_c00126{bottom:300.641040px;}
.y24_c00126{bottom:317.925000px;}
.y23_c00126{bottom:317.926800px;}
.y21_c00126{bottom:335.561040px;}
.y22_c00126{bottom:335.565000px;}
.y20_c00126{bottom:352.845000px;}
.y1f_c00126{bottom:352.846800px;}
.y1e_c00126{bottom:376.605000px;}
.y1d_c00126{bottom:388.121040px;}
.y1c_c00126{bottom:405.405000px;}
.y1b_c00126{bottom:405.406440px;}
.y1a_c00126{bottom:423.044640px;}
.y19_c00126{bottom:440.682840px;}
.y18_c00126{bottom:457.966800px;}
.y17_c00126{bottom:481.725000px;}
.y16_c00126{bottom:508.365000px;}
.y15_c00126{bottom:547.965000px;}
.y14_c00126{bottom:568.845000px;}
.y13_c00126{bottom:604.845000px;}
.y12_c00126{bottom:640.845000px;}
.y11_c00126{bottom:662.085000px;}
.y10_c00126{bottom:682.965000px;}
.yf_c00126{bottom:703.845000px;}
.ye_c00126{bottom:739.845000px;}
.yd_c00126{bottom:775.845000px;}
.yc_c00126{bottom:811.845000px;}
.yb_c00126{bottom:847.845000px;}
.ya_c00126{bottom:883.845000px;}
.y9_c00126{bottom:919.845000px;}
.y8_c00126{bottom:955.845000px;}
.y7_c00126{bottom:991.845000px;}
.y6_c00126{bottom:1027.845000px;}
.y5_c00126{bottom:1063.845000px;}
.y4_c00126{bottom:1085.085000px;}
.y2_c00126{bottom:1138.365000px;}
.ha_c00126{height:19.255500px;}
.h6_c00126{height:32.616000px;}
.h9_c00126{height:39.350391px;}
.hb_c00126{height:46.320000px;}
.h8_c00126{height:46.981634px;}
.h7_c00126{height:53.490240px;}
.h4_c00126{height:57.294676px;}
.h3_c00126{height:65.232000px;}
.h5_c00126{height:68.074560px;}
.h2_c00126{height:1201.365000px;}
.h0_c00126{height:1262.835000px;}
.h1_c00126{height:1263.000000px;}
.w3_c00126{width:25.020000px;}
.w2_c00126{width:863.955000px;}
.w0_c00126{width:892.935000px;}
.w1_c00126{width:893.250000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:14.490000px;}
.x2_c00126{left:113.040150px;}
.xc_c00126{left:118.034850px;}
.x30_c00126{left:127.217700px;}
.x3_c00126{left:150.011700px;}
.xd_c00126{left:154.709400px;}
.x20_c00126{left:158.039400px;}
.x14_c00126{left:168.910800px;}
.x5_c00126{left:176.056950px;}
.xa_c00126{left:180.169200px;}
.x31_c00126{left:187.230750px;}
.x15_c00126{left:193.885200px;}
.x28_c00126{left:198.057450px;}
.x4_c00126{left:216.989100px;}
.x29_c00126{left:267.506850px;}
.x21_c00126{left:284.724600px;}
.x12_c00126{left:286.264500px;}
.x9_c00126{left:308.662650px;}
.xb_c00126{left:314.738550px;}
.x13_c00126{left:317.825250px;}
.x22_c00126{left:333.893100px;}
.x23_c00126{left:337.643250px;}
.x24_c00126{left:357.622500px;}
.x8_c00126{left:362.065800px;}
.x25_c00126{left:366.786900px;}
.x6_c00126{left:372.074700px;}
.x1a_c00126{left:375.873000px;}
.x7_c00126{left:378.572400px;}
.x26_c00126{left:386.781000px;}
.x1c_c00126{left:415.609800px;}
.x16_c00126{left:423.186750px;}
.x32_c00126{left:438.112800px;}
.x1d_c00126{left:456.454050px;}
.x33_c00126{left:458.106750px;}
.x2c_c00126{left:485.536650px;}
.x1b_c00126{left:532.449450px;}
.x27_c00126{left:544.455300px;}
.x2d_c00126{left:548.025450px;}
.xe_c00126{left:561.246150px;}
.x1e_c00126{left:597.617100px;}
.x2a_c00126{left:603.600150px;}
.x2b_c00126{left:623.594550px;}
.x2e_c00126{left:624.886650px;}
.xf_c00126{left:627.904500px;}
.x1f_c00126{left:634.291650px;}
.x17_c00126{left:642.849900px;}
.x2f_c00126{left:661.561200px;}
.x18_c00126{left:668.721000px;}
.x10_c00126{left:675.805350px;}
.x19_c00126{left:698.298750px;}
.x11_c00126{left:713.333550px;}
.x34_c00126{left:759.915000px;}
@media print{
.v2_c00126{vertical-align:-21.760000pt;}
.v0_c00126{vertical-align:0.000000pt;}
.v1_c00126{vertical-align:26.880000pt;}
.ls1c_c00126{letter-spacing:-0.159616pt;}
.ls1a_c00126{letter-spacing:0.000000pt;}
.ls1e_c00126{letter-spacing:0.128000pt;}
.lsb_c00126{letter-spacing:0.209920pt;}
.ls16_c00126{letter-spacing:0.236160pt;}
.lsf_c00126{letter-spacing:0.243428pt;}
.ls17_c00126{letter-spacing:0.251904pt;}
.lsc_c00126{letter-spacing:0.262400pt;}
.ls21_c00126{letter-spacing:0.283392pt;}
.ls30_c00126{letter-spacing:0.304384pt;}
.ls26_c00126{letter-spacing:0.377856pt;}
.ls11_c00126{letter-spacing:0.389485pt;}
.ls20_c00126{letter-spacing:0.425088pt;}
.lse_c00126{letter-spacing:0.438171pt;}
.ls18_c00126{letter-spacing:0.472320pt;}
.ls8_c00126{letter-spacing:0.486856pt;}
.ls2e_c00126{letter-spacing:0.519552pt;}
.ls37_c00126{letter-spacing:0.614016pt;}
.lsa_c00126{letter-spacing:0.632913pt;}
.ls29_c00126{letter-spacing:0.638323pt;}
.ls2d_c00126{letter-spacing:0.730284pt;}
.ls2c_c00126{letter-spacing:0.776704pt;}
.ls2a_c00126{letter-spacing:0.855424pt;}
.ls7_c00126{letter-spacing:0.881751pt;}
.ls27_c00126{letter-spacing:1.039104pt;}
.ls22_c00126{letter-spacing:1.758080pt;}
.ls28_c00126{letter-spacing:1.779072pt;}
.ls25_c00126{letter-spacing:3.878272pt;}
.ls13_c00126{letter-spacing:4.665472pt;}
.ls3_c00126{letter-spacing:4.670720pt;}
.ls12_c00126{letter-spacing:4.686464pt;}
.ls2f_c00126{letter-spacing:4.707456pt;}
.ls36_c00126{letter-spacing:4.712704pt;}
.ls6_c00126{letter-spacing:4.723200pt;}
.ls14_c00126{letter-spacing:4.744192pt;}
.ls2b_c00126{letter-spacing:4.759936pt;}
.ls2_c00126{letter-spacing:4.775680pt;}
.ls33_c00126{letter-spacing:4.801920pt;}
.ls4_c00126{letter-spacing:4.828160pt;}
.ls24_c00126{letter-spacing:4.854400pt;}
.ls15_c00126{letter-spacing:4.901632pt;}
.ls1_c00126{letter-spacing:5.097067pt;}
.lsd_c00126{letter-spacing:5.195520pt;}
.ls0_c00126{letter-spacing:5.312000pt;}
.ls10_c00126{letter-spacing:5.352960pt;}
.ls1d_c00126{letter-spacing:5.420800pt;}
.ls19_c00126{letter-spacing:5.475484pt;}
.ls32_c00126{letter-spacing:8.129152pt;}
.ls31_c00126{letter-spacing:8.134400pt;}
.ls23_c00126{letter-spacing:8.590976pt;}
.ls34_c00126{letter-spacing:10.034176pt;}
.ls1b_c00126{letter-spacing:11.712000pt;}
.ls35_c00126{letter-spacing:11.724032pt;}
.ls5_c00126{letter-spacing:13.015040pt;}
.ls9_c00126{letter-spacing:13.067520pt;}
.ls1f_c00126{letter-spacing:13.524096pt;}
.ws0_c00126{word-spacing:-23.104000pt;}
.ws3_c00126{word-spacing:-19.491072pt;}
.ws5_c00126{word-spacing:-19.443840pt;}
.ws11_c00126{word-spacing:-19.391360pt;}
.wsc_c00126{word-spacing:-19.349376pt;}
.ws12_c00126{word-spacing:-19.302144pt;}
.wse_c00126{word-spacing:-19.296896pt;}
.ws4_c00126{word-spacing:-19.254912pt;}
.ws6_c00126{word-spacing:-15.920201pt;}
.wsb_c00126{word-spacing:-15.671364pt;}
.ws8_c00126{word-spacing:-15.525307pt;}
.wsd_c00126{word-spacing:-15.476621pt;}
.ws7_c00126{word-spacing:-15.427936pt;}
.ws13_c00126{word-spacing:-15.061760pt;}
.ws10_c00126{word-spacing:-15.014528pt;}
.ws9_c00126{word-spacing:-14.967296pt;}
.wsf_c00126{word-spacing:-14.872832pt;}
.wsa_c00126{word-spacing:-14.825600pt;}
.ws1_c00126{word-spacing:-10.159744pt;}
.ws2_c00126{word-spacing:-9.024000pt;}
.ws14_c00126{word-spacing:0.000000pt;}
._9_c00126{margin-left:-13.271040pt;}
._1_c00126{margin-left:-11.712000pt;}
._13_c00126{margin-left:-10.672640pt;}
._12_c00126{margin-left:-9.754880pt;}
._b_c00126{margin-left:-8.260372pt;}
._11_c00126{margin-left:-6.937817pt;}
._d_c00126{margin-left:-3.621120pt;}
._e_c00126{margin-left:-2.624000pt;}
._8_c00126{margin-left:-1.658348pt;}
._2_c00126{width:1.097984pt;}
._3_c00126{width:2.752000pt;}
._c_c00126{width:3.666660pt;}
._6_c00126{width:4.602882pt;}
._5_c00126{width:5.607424pt;}
._a_c00126{width:8.134400pt;}
._10_c00126{width:10.799045pt;}
._0_c00126{width:11.712000pt;}
._7_c00126{width:14.592000pt;}
._f_c00126{width:20.047360pt;}
._4_c00126{width:24.192000pt;}
.fs3_c00126{font-size:32.000000pt;}
.fs2_c00126{font-size:37.120000pt;}
.fs4_c00126{font-size:52.480000pt;}
.fs6_c00126{font-size:53.333333pt;}
.fs5_c00126{font-size:54.095146pt;}
.fs0_c00126{font-size:64.000000pt;}
.fs1_c00126{font-size:65.969690pt;}
.y0_c00126{bottom:0.000000pt;}
.y3_c00126{bottom:2.280000pt;}
.y3d_c00126{bottom:2.773467pt;}
.y3c_c00126{bottom:30.884000pt;}
.y1_c00126{bottom:48.000000pt;}
.y3b_c00126{bottom:49.320000pt;}
.y3a_c00126{bottom:54.760000pt;}
.y39_c00126{bottom:64.681600pt;}
.y38_c00126{bottom:80.360000pt;}
.y37_c00126{bottom:85.800000pt;}
.y36_c00126{bottom:95.720000pt;}
.y35_c00126{bottom:95.721600pt;}
.y34_c00126{bottom:116.840000pt;}
.y33_c00126{bottom:127.080000pt;}
.y32_c00126{bottom:132.520000pt;}
.y31_c00126{bottom:142.441600pt;}
.y30_c00126{bottom:158.120000pt;}
.y2f_c00126{bottom:158.121600pt;}
.y2d_c00126{bottom:173.796480pt;}
.y2e_c00126{bottom:173.800000pt;}
.y2c_c00126{bottom:194.600000pt;}
.y2b_c00126{bottom:204.840000pt;}
.y2a_c00126{bottom:225.960000pt;}
.y29_c00126{bottom:235.880000pt;}
.y28_c00126{bottom:241.320000pt;}
.y26_c00126{bottom:251.558080pt;}
.y27_c00126{bottom:251.560000pt;}
.y25_c00126{bottom:267.236480pt;}
.y24_c00126{bottom:282.600000pt;}
.y23_c00126{bottom:282.601600pt;}
.y21_c00126{bottom:298.276480pt;}
.y22_c00126{bottom:298.280000pt;}
.y20_c00126{bottom:313.640000pt;}
.y1f_c00126{bottom:313.641600pt;}
.y1e_c00126{bottom:334.760000pt;}
.y1d_c00126{bottom:344.996480pt;}
.y1c_c00126{bottom:360.360000pt;}
.y1b_c00126{bottom:360.361280pt;}
.y1a_c00126{bottom:376.039680pt;}
.y19_c00126{bottom:391.718080pt;}
.y18_c00126{bottom:407.081600pt;}
.y17_c00126{bottom:428.200000pt;}
.y16_c00126{bottom:451.880000pt;}
.y15_c00126{bottom:487.080000pt;}
.y14_c00126{bottom:505.640000pt;}
.y13_c00126{bottom:537.640000pt;}
.y12_c00126{bottom:569.640000pt;}
.y11_c00126{bottom:588.520000pt;}
.y10_c00126{bottom:607.080000pt;}
.yf_c00126{bottom:625.640000pt;}
.ye_c00126{bottom:657.640000pt;}
.yd_c00126{bottom:689.640000pt;}
.yc_c00126{bottom:721.640000pt;}
.yb_c00126{bottom:753.640000pt;}
.ya_c00126{bottom:785.640000pt;}
.y9_c00126{bottom:817.640000pt;}
.y8_c00126{bottom:849.640000pt;}
.y7_c00126{bottom:881.640000pt;}
.y6_c00126{bottom:913.640000pt;}
.y5_c00126{bottom:945.640000pt;}
.y4_c00126{bottom:964.520000pt;}
.y2_c00126{bottom:1011.880000pt;}
.ha_c00126{height:17.116000pt;}
.h6_c00126{height:28.992000pt;}
.h9_c00126{height:34.978125pt;}
.hb_c00126{height:41.173333pt;}
.h8_c00126{height:41.761453pt;}
.h7_c00126{height:47.546880pt;}
.h4_c00126{height:50.928601pt;}
.h3_c00126{height:57.984000pt;}
.h5_c00126{height:60.510720pt;}
.h2_c00126{height:1067.880000pt;}
.h0_c00126{height:1122.520000pt;}
.h1_c00126{height:1122.666667pt;}
.w3_c00126{width:22.240000pt;}
.w2_c00126{width:767.960000pt;}
.w0_c00126{width:793.720000pt;}
.w1_c00126{width:794.000000pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:12.880000pt;}
.x2_c00126{left:100.480133pt;}
.xc_c00126{left:104.919867pt;}
.x30_c00126{left:113.082400pt;}
.x3_c00126{left:133.343733pt;}
.xd_c00126{left:137.519467pt;}
.x20_c00126{left:140.479467pt;}
.x14_c00126{left:150.142933pt;}
.x5_c00126{left:156.495067pt;}
.xa_c00126{left:160.150400pt;}
.x31_c00126{left:166.427333pt;}
.x15_c00126{left:172.342400pt;}
.x28_c00126{left:176.051067pt;}
.x4_c00126{left:192.879200pt;}
.x29_c00126{left:237.783867pt;}
.x21_c00126{left:253.088533pt;}
.x12_c00126{left:254.457333pt;}
.x9_c00126{left:274.366800pt;}
.xb_c00126{left:279.767600pt;}
.x13_c00126{left:282.511333pt;}
.x22_c00126{left:296.793867pt;}
.x23_c00126{left:300.127333pt;}
.x24_c00126{left:317.886667pt;}
.x8_c00126{left:321.836267pt;}
.x25_c00126{left:326.032800pt;}
.x6_c00126{left:330.733067pt;}
.x1a_c00126{left:334.109333pt;}
.x7_c00126{left:336.508800pt;}
.x26_c00126{left:343.805333pt;}
.x1c_c00126{left:369.430933pt;}
.x16_c00126{left:376.166000pt;}
.x32_c00126{left:389.433600pt;}
.x1d_c00126{left:405.736933pt;}
.x33_c00126{left:407.206000pt;}
.x2c_c00126{left:431.588133pt;}
.x1b_c00126{left:473.288400pt;}
.x27_c00126{left:483.960267pt;}
.x2d_c00126{left:487.133733pt;}
.xe_c00126{left:498.885467pt;}
.x1e_c00126{left:531.215200pt;}
.x2a_c00126{left:536.533467pt;}
.x2b_c00126{left:554.306267pt;}
.x2e_c00126{left:555.454800pt;}
.xf_c00126{left:558.137333pt;}
.x1f_c00126{left:563.814800pt;}
.x17_c00126{left:571.422133pt;}
.x2f_c00126{left:588.054400pt;}
.x18_c00126{left:594.418667pt;}
.x10_c00126{left:600.715867pt;}
.x19_c00126{left:620.710000pt;}
.x11_c00126{left:634.074267pt;}
.x34_c00126{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d043ec9e403e1902598c33b5.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_cf1cda4805a898d108d2cd7a.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;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:ff3_c00127;src:url('chunks/assets/font_bf3246366c326a41bfde03d9.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_66cf448c17cfc6e9f5c1d0d9.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:0.727051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00127;src:url('chunks/assets/font_fdb184932610b7249a66a128.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00127{vertical-align:-24.480000px;}
.v0_c00127{vertical-align:0.000000px;}
.v1_c00127{vertical-align:30.240000px;}
.ls1a_c00127{letter-spacing:-0.179568px;}
.ls19_c00127{letter-spacing:0.000000px;}
.ls1b_c00127{letter-spacing:0.144000px;}
.lsc_c00127{letter-spacing:0.236160px;}
.ls4_c00127{letter-spacing:0.265680px;}
.ls17_c00127{letter-spacing:0.283392px;}
.lsf_c00127{letter-spacing:0.295200px;}
.lsb_c00127{letter-spacing:0.318816px;}
.ls11_c00127{letter-spacing:0.354240px;}
.ls2d_c00127{letter-spacing:0.371952px;}
.ls12_c00127{letter-spacing:0.413280px;}
.ls21_c00127{letter-spacing:0.425088px;}
.ls28_c00127{letter-spacing:0.438171px;}
.ls20_c00127{letter-spacing:0.492942px;}
.ls5_c00127{letter-spacing:0.517285px;}
.ls6_c00127{letter-spacing:0.531360px;}
.ls1f_c00127{letter-spacing:0.547713px;}
.ls23_c00127{letter-spacing:0.584496px;}
.ls2a_c00127{letter-spacing:0.602485px;}
.ls2e_c00127{letter-spacing:0.690768px;}
.ls3_c00127{letter-spacing:0.712027px;}
.ls2b_c00127{letter-spacing:0.766799px;}
.ls1c_c00127{letter-spacing:0.821570px;}
.ls16_c00127{letter-spacing:0.991970px;}
.ls27_c00127{letter-spacing:1.895184px;}
.ls9_c00127{letter-spacing:3.129120px;}
.ls1d_c00127{letter-spacing:3.648672px;}
.ls13_c00127{letter-spacing:4.014720px;}
.ls10_c00127{letter-spacing:4.073760px;}
.ls26_c00127{letter-spacing:4.103280px;}
.lsd_c00127{letter-spacing:5.248656px;}
.ls1e_c00127{letter-spacing:5.301792px;}
.ls7_c00127{letter-spacing:5.313600px;}
.lse_c00127{letter-spacing:5.337216px;}
.ls25_c00127{letter-spacing:5.354928px;}
.ls2_c00127{letter-spacing:5.367600px;}
.ls15_c00127{letter-spacing:5.372640px;}
.lsa_c00127{letter-spacing:5.490720px;}
.ls8_c00127{letter-spacing:5.514336px;}
.ls24_c00127{letter-spacing:5.726880px;}
.ls0_c00127{letter-spacing:5.976000px;}
.ls18_c00127{letter-spacing:6.159920px;}
.ls1_c00127{letter-spacing:6.264000px;}
.ls22_c00127{letter-spacing:7.852320px;}
.ls29_c00127{letter-spacing:8.425008px;}
.ls14_c00127{letter-spacing:8.442720px;}
.ls30_c00127{letter-spacing:10.857456px;}
.ls2c_c00127{letter-spacing:11.973312px;}
.ls2f_c00127{letter-spacing:17.239680px;}
.sc__c00127{text-shadow:none;}
.sc1_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00127{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc1_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00127{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00127{word-spacing:-25.992000px;}
.wsc_c00127{word-spacing:-22.140000px;}
.ws7_c00127{word-spacing:-21.927456px;}
.ws9_c00127{word-spacing:-21.903840px;}
.wsd_c00127{word-spacing:-21.768048px;}
.ws6_c00127{word-spacing:-21.714912px;}
.wsb_c00127{word-spacing:-21.661776px;}
.ws11_c00127{word-spacing:-17.910227px;}
.ws4_c00127{word-spacing:-17.739827px;}
.wsf_c00127{word-spacing:-17.685056px;}
.ws3_c00127{word-spacing:-17.630284px;}
.ws10_c00127{word-spacing:-17.520742px;}
.ws5_c00127{word-spacing:-17.435542px;}
.ws8_c00127{word-spacing:-17.411199px;}
.wse_c00127{word-spacing:-16.997616px;}
.ws13_c00127{word-spacing:-16.944480px;}
.wsa_c00127{word-spacing:-16.838208px;}
.ws12_c00127{word-spacing:-16.731936px;}
.ws1_c00127{word-spacing:-11.429712px;}
.ws2_c00127{word-spacing:-10.152000px;}
.ws14_c00127{word-spacing:0.000000px;}
._10_c00127{margin-left:-16.819200px;}
._11_c00127{margin-left:-15.805440px;}
._e_c00127{margin-left:-12.516480px;}
._d_c00127{margin-left:-11.453760px;}
._13_c00127{margin-left:-10.332000px;}
._b_c00127{margin-left:-8.934948px;}
._8_c00127{margin-left:-7.608960px;}
._9_c00127{margin-left:-6.575040px;}
._a_c00127{margin-left:-4.487040px;}
._6_c00127{margin-left:-3.476160px;}
._7_c00127{margin-left:-2.383200px;}
._5_c00127{margin-left:-1.156284px;}
._0_c00127{width:1.226232px;}
._3_c00127{width:3.096000px;}
._4_c00127{width:4.320000px;}
._2_c00127{width:7.560000px;}
._c_c00127{width:8.914430px;}
._12_c00127{width:10.442482px;}
._f_c00127{width:11.689920px;}
._1_c00127{width:13.104000px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs3_c00127{font-size:36.000000px;}
.fs2_c00127{font-size:41.760000px;}
.fs4_c00127{font-size:59.040000px;}
.fs6_c00127{font-size:60.000000px;}
.fs5_c00127{font-size:60.857039px;}
.fs0_c00127{font-size:72.000000px;}
.fs1_c00127{font-size:74.215901px;}
.y0_c00127{bottom:0.000000px;}
.y3_c00127{bottom:2.565000px;}
.y3e_c00127{bottom:3.120150px;}
.y3d_c00127{bottom:34.744500px;}
.y1_c00127{bottom:54.000000px;}
.y3b_c00127{bottom:55.481040px;}
.y3c_c00127{bottom:55.485000px;}
.y3a_c00127{bottom:72.765000px;}
.y39_c00127{bottom:72.766800px;}
.y38_c00127{bottom:96.525000px;}
.y37_c00127{bottom:107.685000px;}
.y36_c00127{bottom:113.805000px;}
.y35_c00127{bottom:125.325000px;}
.y34_c00127{bottom:131.445000px;}
.y33_c00127{bottom:142.962840px;}
.y32_c00127{bottom:160.246800px;}
.y31_c00127{bottom:177.885000px;}
.y30_c00127{bottom:201.645000px;}
.y2f_c00127{bottom:212.805000px;}
.y2e_c00127{bottom:212.806800px;}
.y2d_c00127{bottom:230.445000px;}
.y2c_c00127{bottom:236.565000px;}
.y2b_c00127{bottom:247.717800px;}
.y2a_c00127{bottom:265.725000px;}
.y29_c00127{bottom:265.726800px;}
.y28_c00127{bottom:283.365000px;}
.y27_c00127{bottom:289.485000px;}
.y26_c00127{bottom:307.125000px;}
.y25_c00127{bottom:318.641040px;}
.y24_c00127{bottom:342.045000px;}
.y23_c00127{bottom:353.566800px;}
.y22_c00127{bottom:371.205000px;}
.y21_c00127{bottom:377.325000px;}
.y20_c00127{bottom:388.485000px;}
.y1f_c00127{bottom:388.486800px;}
.y1e_c00127{bottom:406.125000px;}
.y1d_c00127{bottom:412.245000px;}
.y1c_c00127{bottom:423.405000px;}
.y1b_c00127{bottom:429.525000px;}
.y1a_c00127{bottom:456.165000px;}
.y19_c00127{bottom:484.965000px;}
.y18_c00127{bottom:520.965000px;}
.y17_c00127{bottom:556.965000px;}
.y16_c00127{bottom:592.965000px;}
.y15_c00127{bottom:613.845000px;}
.y14_c00127{bottom:649.845000px;}
.y13_c00127{bottom:685.845000px;}
.y12_c00127{bottom:707.085000px;}
.y11_c00127{bottom:727.965000px;}
.y10_c00127{bottom:748.845000px;}
.yf_c00127{bottom:770.085000px;}
.ye_c00127{bottom:806.085000px;}
.yd_c00127{bottom:842.085000px;}
.yc_c00127{bottom:878.085000px;}
.yb_c00127{bottom:914.085000px;}
.ya_c00127{bottom:934.965000px;}
.y9_c00127{bottom:955.845000px;}
.y8_c00127{bottom:991.845000px;}
.y7_c00127{bottom:1027.845000px;}
.y5_c00127{bottom:1049.085000px;}
.y6_c00127{bottom:1056.645000px;}
.y4_c00127{bottom:1085.085000px;}
.y2_c00127{bottom:1138.365000px;}
.ha_c00127{height:19.255500px;}
.h7_c00127{height:32.616000px;}
.h5_c00127{height:37.834560px;}
.hb_c00127{height:46.320000px;}
.h8_c00127{height:46.981634px;}
.h9_c00127{height:53.490240px;}
.h4_c00127{height:57.294676px;}
.h3_c00127{height:65.232000px;}
.h6_c00127{height:68.074560px;}
.h2_c00127{height:1201.365000px;}
.h0_c00127{height:1262.835000px;}
.h1_c00127{height:1263.000000px;}
.w3_c00127{width:25.020000px;}
.w2_c00127{width:863.955000px;}
.w0_c00127{width:892.935000px;}
.w1_c00127{width:893.250000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:14.490000px;}
.x2_c00127{left:113.040150px;}
.x13_c00127{left:119.034000px;}
.x16_c00127{left:127.217700px;}
.x3_c00127{left:150.011700px;}
.x34_c00127{left:158.879100px;}
.x14_c00127{left:162.035100px;}
.x17_c00127{left:163.052100px;}
.x5_c00127{left:173.160000px;}
.x10_c00127{left:176.056950px;}
.xe_c00127{left:178.072950px;}
.x2a_c00127{left:180.149100px;}
.x6_c00127{left:184.744650px;}
.xc_c00127{left:187.342500px;}
.x7_c00127{left:189.748500px;}
.x8_c00127{left:195.742350px;}
.xf_c00127{left:204.064500px;}
.xd_c00127{left:207.340200px;}
.x29_c00127{left:208.857750px;}
.x9_c00127{left:215.740050px;}
.x4_c00127{left:216.989100px;}
.xa_c00127{left:221.733750px;}
.x2b_c00127{left:223.498200px;}
.xb_c00127{left:226.737600px;}
.x32_c00127{left:242.218950px;}
.x1b_c00127{left:291.071700px;}
.x15_c00127{left:324.050550px;}
.x11_c00127{left:392.035800px;}
.x1e_c00127{left:424.759650px;}
.x2c_c00127{left:426.105000px;}
.x12_c00127{left:435.036900px;}
.x30_c00127{left:438.112800px;}
.x28_c00127{left:446.289900px;}
.x2d_c00127{left:456.944100px;}
.x31_c00127{left:458.106750px;}
.x1f_c00127{left:481.457100px;}
.x20_c00127{left:490.621650px;}
.x21_c00127{left:519.765750px;}
.x18_c00127{left:560.599050px;}
.x2e_c00127{left:597.389250px;}
.x33_c00127{left:603.966000px;}
.x19_c00127{left:608.942550px;}
.x1a_c00127{left:624.781800px;}
.x2f_c00127{left:634.063800px;}
.x26_c00127{left:651.831000px;}
.x22_c00127{left:674.796750px;}
.x1c_c00127{left:677.010750px;}
.x27_c00127{left:693.633900px;}
.x23_c00127{left:694.791150px;}
.x24_c00127{left:699.678600px;}
.x1d_c00127{left:718.700700px;}
.x25_c00127{left:741.240600px;}
.x35_c00127{left:759.915000px;}
@media print{
.v2_c00127{vertical-align:-21.760000pt;}
.v0_c00127{vertical-align:0.000000pt;}
.v1_c00127{vertical-align:26.880000pt;}
.ls1a_c00127{letter-spacing:-0.159616pt;}
.ls19_c00127{letter-spacing:0.000000pt;}
.ls1b_c00127{letter-spacing:0.128000pt;}
.lsc_c00127{letter-spacing:0.209920pt;}
.ls4_c00127{letter-spacing:0.236160pt;}
.ls17_c00127{letter-spacing:0.251904pt;}
.lsf_c00127{letter-spacing:0.262400pt;}
.lsb_c00127{letter-spacing:0.283392pt;}
.ls11_c00127{letter-spacing:0.314880pt;}
.ls2d_c00127{letter-spacing:0.330624pt;}
.ls12_c00127{letter-spacing:0.367360pt;}
.ls21_c00127{letter-spacing:0.377856pt;}
.ls28_c00127{letter-spacing:0.389485pt;}
.ls20_c00127{letter-spacing:0.438171pt;}
.ls5_c00127{letter-spacing:0.459809pt;}
.ls6_c00127{letter-spacing:0.472320pt;}
.ls1f_c00127{letter-spacing:0.486856pt;}
.ls23_c00127{letter-spacing:0.519552pt;}
.ls2a_c00127{letter-spacing:0.535542pt;}
.ls2e_c00127{letter-spacing:0.614016pt;}
.ls3_c00127{letter-spacing:0.632913pt;}
.ls2b_c00127{letter-spacing:0.681599pt;}
.ls1c_c00127{letter-spacing:0.730284pt;}
.ls16_c00127{letter-spacing:0.881751pt;}
.ls27_c00127{letter-spacing:1.684608pt;}
.ls9_c00127{letter-spacing:2.781440pt;}
.ls1d_c00127{letter-spacing:3.243264pt;}
.ls13_c00127{letter-spacing:3.568640pt;}
.ls10_c00127{letter-spacing:3.621120pt;}
.ls26_c00127{letter-spacing:3.647360pt;}
.lsd_c00127{letter-spacing:4.665472pt;}
.ls1e_c00127{letter-spacing:4.712704pt;}
.ls7_c00127{letter-spacing:4.723200pt;}
.lse_c00127{letter-spacing:4.744192pt;}
.ls25_c00127{letter-spacing:4.759936pt;}
.ls2_c00127{letter-spacing:4.771200pt;}
.ls15_c00127{letter-spacing:4.775680pt;}
.lsa_c00127{letter-spacing:4.880640pt;}
.ls8_c00127{letter-spacing:4.901632pt;}
.ls24_c00127{letter-spacing:5.090560pt;}
.ls0_c00127{letter-spacing:5.312000pt;}
.ls18_c00127{letter-spacing:5.475484pt;}
.ls1_c00127{letter-spacing:5.568000pt;}
.ls22_c00127{letter-spacing:6.979840pt;}
.ls29_c00127{letter-spacing:7.488896pt;}
.ls14_c00127{letter-spacing:7.504640pt;}
.ls30_c00127{letter-spacing:9.651072pt;}
.ls2c_c00127{letter-spacing:10.642944pt;}
.ls2f_c00127{letter-spacing:15.324160pt;}
.ws0_c00127{word-spacing:-23.104000pt;}
.wsc_c00127{word-spacing:-19.680000pt;}
.ws7_c00127{word-spacing:-19.491072pt;}
.ws9_c00127{word-spacing:-19.470080pt;}
.wsd_c00127{word-spacing:-19.349376pt;}
.ws6_c00127{word-spacing:-19.302144pt;}
.wsb_c00127{word-spacing:-19.254912pt;}
.ws11_c00127{word-spacing:-15.920201pt;}
.ws4_c00127{word-spacing:-15.768735pt;}
.wsf_c00127{word-spacing:-15.720049pt;}
.ws3_c00127{word-spacing:-15.671364pt;}
.ws10_c00127{word-spacing:-15.573992pt;}
.ws5_c00127{word-spacing:-15.498259pt;}
.ws8_c00127{word-spacing:-15.476621pt;}
.wse_c00127{word-spacing:-15.108992pt;}
.ws13_c00127{word-spacing:-15.061760pt;}
.wsa_c00127{word-spacing:-14.967296pt;}
.ws12_c00127{word-spacing:-14.872832pt;}
.ws1_c00127{word-spacing:-10.159744pt;}
.ws2_c00127{word-spacing:-9.024000pt;}
.ws14_c00127{word-spacing:0.000000pt;}
._10_c00127{margin-left:-14.950400pt;}
._11_c00127{margin-left:-14.049280pt;}
._e_c00127{margin-left:-11.125760pt;}
._d_c00127{margin-left:-10.181120pt;}
._13_c00127{margin-left:-9.184000pt;}
._b_c00127{margin-left:-7.942176pt;}
._8_c00127{margin-left:-6.763520pt;}
._9_c00127{margin-left:-5.844480pt;}
._a_c00127{margin-left:-3.988480pt;}
._6_c00127{margin-left:-3.089920pt;}
._7_c00127{margin-left:-2.118400pt;}
._5_c00127{margin-left:-1.027808pt;}
._0_c00127{width:1.089984pt;}
._3_c00127{width:2.752000pt;}
._4_c00127{width:3.840000pt;}
._2_c00127{width:6.720000pt;}
._c_c00127{width:7.923938pt;}
._12_c00127{width:9.282206pt;}
._f_c00127{width:10.391040pt;}
._1_c00127{width:11.648000pt;}
.fs3_c00127{font-size:32.000000pt;}
.fs2_c00127{font-size:37.120000pt;}
.fs4_c00127{font-size:52.480000pt;}
.fs6_c00127{font-size:53.333333pt;}
.fs5_c00127{font-size:54.095146pt;}
.fs0_c00127{font-size:64.000000pt;}
.fs1_c00127{font-size:65.969690pt;}
.y0_c00127{bottom:0.000000pt;}
.y3_c00127{bottom:2.280000pt;}
.y3e_c00127{bottom:2.773467pt;}
.y3d_c00127{bottom:30.884000pt;}
.y1_c00127{bottom:48.000000pt;}
.y3b_c00127{bottom:49.316480pt;}
.y3c_c00127{bottom:49.320000pt;}
.y3a_c00127{bottom:64.680000pt;}
.y39_c00127{bottom:64.681600pt;}
.y38_c00127{bottom:85.800000pt;}
.y37_c00127{bottom:95.720000pt;}
.y36_c00127{bottom:101.160000pt;}
.y35_c00127{bottom:111.400000pt;}
.y34_c00127{bottom:116.840000pt;}
.y33_c00127{bottom:127.078080pt;}
.y32_c00127{bottom:142.441600pt;}
.y31_c00127{bottom:158.120000pt;}
.y30_c00127{bottom:179.240000pt;}
.y2f_c00127{bottom:189.160000pt;}
.y2e_c00127{bottom:189.161600pt;}
.y2d_c00127{bottom:204.840000pt;}
.y2c_c00127{bottom:210.280000pt;}
.y2b_c00127{bottom:220.193600pt;}
.y2a_c00127{bottom:236.200000pt;}
.y29_c00127{bottom:236.201600pt;}
.y28_c00127{bottom:251.880000pt;}
.y27_c00127{bottom:257.320000pt;}
.y26_c00127{bottom:273.000000pt;}
.y25_c00127{bottom:283.236480pt;}
.y24_c00127{bottom:304.040000pt;}
.y23_c00127{bottom:314.281600pt;}
.y22_c00127{bottom:329.960000pt;}
.y21_c00127{bottom:335.400000pt;}
.y20_c00127{bottom:345.320000pt;}
.y1f_c00127{bottom:345.321600pt;}
.y1e_c00127{bottom:361.000000pt;}
.y1d_c00127{bottom:366.440000pt;}
.y1c_c00127{bottom:376.360000pt;}
.y1b_c00127{bottom:381.800000pt;}
.y1a_c00127{bottom:405.480000pt;}
.y19_c00127{bottom:431.080000pt;}
.y18_c00127{bottom:463.080000pt;}
.y17_c00127{bottom:495.080000pt;}
.y16_c00127{bottom:527.080000pt;}
.y15_c00127{bottom:545.640000pt;}
.y14_c00127{bottom:577.640000pt;}
.y13_c00127{bottom:609.640000pt;}
.y12_c00127{bottom:628.520000pt;}
.y11_c00127{bottom:647.080000pt;}
.y10_c00127{bottom:665.640000pt;}
.yf_c00127{bottom:684.520000pt;}
.ye_c00127{bottom:716.520000pt;}
.yd_c00127{bottom:748.520000pt;}
.yc_c00127{bottom:780.520000pt;}
.yb_c00127{bottom:812.520000pt;}
.ya_c00127{bottom:831.080000pt;}
.y9_c00127{bottom:849.640000pt;}
.y8_c00127{bottom:881.640000pt;}
.y7_c00127{bottom:913.640000pt;}
.y5_c00127{bottom:932.520000pt;}
.y6_c00127{bottom:939.240000pt;}
.y4_c00127{bottom:964.520000pt;}
.y2_c00127{bottom:1011.880000pt;}
.ha_c00127{height:17.116000pt;}
.h7_c00127{height:28.992000pt;}
.h5_c00127{height:33.630720pt;}
.hb_c00127{height:41.173333pt;}
.h8_c00127{height:41.761453pt;}
.h9_c00127{height:47.546880pt;}
.h4_c00127{height:50.928601pt;}
.h3_c00127{height:57.984000pt;}
.h6_c00127{height:60.510720pt;}
.h2_c00127{height:1067.880000pt;}
.h0_c00127{height:1122.520000pt;}
.h1_c00127{height:1122.666667pt;}
.w3_c00127{width:22.240000pt;}
.w2_c00127{width:767.960000pt;}
.w0_c00127{width:793.720000pt;}
.w1_c00127{width:794.000000pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:12.880000pt;}
.x2_c00127{left:100.480133pt;}
.x13_c00127{left:105.808000pt;}
.x16_c00127{left:113.082400pt;}
.x3_c00127{left:133.343733pt;}
.x34_c00127{left:141.225867pt;}
.x14_c00127{left:144.031200pt;}
.x17_c00127{left:144.935200pt;}
.x5_c00127{left:153.920000pt;}
.x10_c00127{left:156.495067pt;}
.xe_c00127{left:158.287067pt;}
.x2a_c00127{left:160.132533pt;}
.x6_c00127{left:164.217467pt;}
.xc_c00127{left:166.526667pt;}
.x7_c00127{left:168.665333pt;}
.x8_c00127{left:173.993200pt;}
.xf_c00127{left:181.390667pt;}
.xd_c00127{left:184.302400pt;}
.x29_c00127{left:185.651333pt;}
.x9_c00127{left:191.768933pt;}
.x4_c00127{left:192.879200pt;}
.xa_c00127{left:197.096667pt;}
.x2b_c00127{left:198.665067pt;}
.xb_c00127{left:201.544533pt;}
.x32_c00127{left:215.305733pt;}
.x1b_c00127{left:258.730400pt;}
.x15_c00127{left:288.044933pt;}
.x11_c00127{left:348.476267pt;}
.x1e_c00127{left:377.564133pt;}
.x2c_c00127{left:378.760000pt;}
.x12_c00127{left:386.699467pt;}
.x30_c00127{left:389.433600pt;}
.x28_c00127{left:396.702133pt;}
.x2d_c00127{left:406.172533pt;}
.x31_c00127{left:407.206000pt;}
.x1f_c00127{left:427.961867pt;}
.x20_c00127{left:436.108133pt;}
.x21_c00127{left:462.014000pt;}
.x18_c00127{left:498.310267pt;}
.x2e_c00127{left:531.012667pt;}
.x33_c00127{left:536.858667pt;}
.x19_c00127{left:541.282267pt;}
.x1a_c00127{left:555.361600pt;}
.x2f_c00127{left:563.612267pt;}
.x26_c00127{left:579.405333pt;}
.x22_c00127{left:599.819333pt;}
.x1c_c00127{left:601.787333pt;}
.x27_c00127{left:616.563467pt;}
.x23_c00127{left:617.592133pt;}
.x24_c00127{left:621.936533pt;}
.x1d_c00127{left:638.845067pt;}
.x25_c00127{left:658.880533pt;}
.x35_c00127{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_12f3c0a96d4818f6347283af.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.134000;font-style:normal;font-weight:normal;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_e8f2735bd6276e0ce94483cb.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;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:ff3_c00128;src:url('chunks/assets/font_efd97a76a79f55ee800f25b9.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00128{vertical-align:-30.240000px;}
.v3_c00128{vertical-align:-24.480000px;}
.v0_c00128{vertical-align:0.000000px;}
.v1_c00128{vertical-align:30.240000px;}
.ls8_c00128{letter-spacing:-0.179568px;}
.ls7_c00128{letter-spacing:0.000000px;}
.ls9_c00128{letter-spacing:0.144000px;}
.lsb_c00128{letter-spacing:0.265680px;}
.ls0_c00128{letter-spacing:0.283392px;}
.ls3_c00128{letter-spacing:0.295200px;}
.ls12_c00128{letter-spacing:0.371952px;}
.lsf_c00128{letter-spacing:0.425088px;}
.lsc_c00128{letter-spacing:0.438171px;}
.ls10_c00128{letter-spacing:0.478224px;}
.ls1_c00128{letter-spacing:0.531360px;}
.ls4_c00128{letter-spacing:0.554976px;}
.ls11_c00128{letter-spacing:0.584496px;}
.ls13_c00128{letter-spacing:0.667152px;}
.lsd_c00128{letter-spacing:0.690768px;}
.lsa_c00128{letter-spacing:0.712027px;}
.ls14_c00128{letter-spacing:0.797040px;}
.lse_c00128{letter-spacing:1.777104px;}
.ls2_c00128{letter-spacing:1.800720px;}
.ls5_c00128{letter-spacing:5.976000px;}
.ls6_c00128{letter-spacing:6.159920px;}
.sc__c00128{text-shadow:none;}
.sc1_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00128{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc1_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00128{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00128{word-spacing:-16.968096px;}
.ws2_c00128{word-spacing:-16.944480px;}
.ws0_c00128{word-spacing:-11.429712px;}
.ws1_c00128{word-spacing:-10.152000px;}
.ws4_c00128{word-spacing:0.000000px;}
._11_c00128{margin-left:-1.217141px;}
._1_c00128{width:1.258416px;}
._0_c00128{width:3.096000px;}
._a_c00128{width:4.248000px;}
._8_c00128{width:5.544000px;}
._9_c00128{width:6.552000px;}
._5_c00128{width:7.776000px;}
._c_c00128{width:8.928000px;}
._7_c00128{width:9.936000px;}
._d_c00128{width:11.376000px;}
._b_c00128{width:13.680000px;}
._f_c00128{width:14.832000px;}
._6_c00128{width:16.488000px;}
._e_c00128{width:17.640000px;}
._10_c00128{width:18.792000px;}
._12_c00128{width:27.903221px;}
._4_c00128{width:35.208000px;}
._2_c00128{width:50.616000px;}
._3_c00128{width:638.784000px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs3_c00128{font-size:36.000000px;}
.fs2_c00128{font-size:41.760000px;}
.fs4_c00128{font-size:59.040000px;}
.fs6_c00128{font-size:60.000000px;}
.fs5_c00128{font-size:60.857039px;}
.fs0_c00128{font-size:72.000000px;}
.fs1_c00128{font-size:74.215901px;}
.y0_c00128{bottom:0.000000px;}
.y3_c00128{bottom:2.565000px;}
.y31_c00128{bottom:3.120150px;}
.y30_c00128{bottom:34.744500px;}
.y1_c00128{bottom:54.000000px;}
.y2f_c00128{bottom:61.605000px;}
.y2e_c00128{bottom:72.762840px;}
.y2d_c00128{bottom:90.401040px;}
.y2c_c00128{bottom:113.805000px;}
.y2b_c00128{bottom:125.326800px;}
.y2a_c00128{bottom:149.085000px;}
.y29_c00128{bottom:160.245000px;}
.y28_c00128{bottom:166.365000px;}
.y27_c00128{bottom:193.005000px;}
.y26_c00128{bottom:301.725000px;}
.y25_c00128{bottom:322.965000px;}
.y24_c00128{bottom:343.845000px;}
.y23_c00128{bottom:364.725000px;}
.y22_c00128{bottom:385.965000px;}
.y21_c00128{bottom:421.965000px;}
.y20_c00128{bottom:442.845000px;}
.y1f_c00128{bottom:463.725000px;}
.y1e_c00128{bottom:499.725000px;}
.y1d_c00128{bottom:520.965000px;}
.y1c_c00128{bottom:541.845000px;}
.y1b_c00128{bottom:577.845000px;}
.y1a_c00128{bottom:598.725000px;}
.y19_c00128{bottom:619.965000px;}
.y18_c00128{bottom:640.845000px;}
.y17_c00128{bottom:661.725000px;}
.y16_c00128{bottom:682.965000px;}
.y15_c00128{bottom:703.845000px;}
.y14_c00128{bottom:725.085000px;}
.y13_c00128{bottom:761.085000px;}
.y12_c00128{bottom:781.965000px;}
.y11_c00128{bottom:802.845000px;}
.y10_c00128{bottom:824.085000px;}
.yf_c00128{bottom:844.965000px;}
.ye_c00128{bottom:865.845000px;}
.yd_c00128{bottom:887.085000px;}
.yc_c00128{bottom:907.965000px;}
.yb_c00128{bottom:928.845000px;}
.ya_c00128{bottom:950.085000px;}
.y9_c00128{bottom:970.965000px;}
.y8_c00128{bottom:991.845000px;}
.y6_c00128{bottom:1027.845000px;}
.y7_c00128{bottom:1035.405000px;}
.y5_c00128{bottom:1063.845000px;}
.y4_c00128{bottom:1085.085000px;}
.y2_c00128{bottom:1138.365000px;}
.ha_c00128{height:19.255500px;}
.h7_c00128{height:32.616000px;}
.h6_c00128{height:37.834560px;}
.hb_c00128{height:46.320000px;}
.h8_c00128{height:46.981634px;}
.h9_c00128{height:53.490240px;}
.h4_c00128{height:57.294676px;}
.h3_c00128{height:65.232000px;}
.h5_c00128{height:68.074560px;}
.h2_c00128{height:1201.365000px;}
.h0_c00128{height:1262.835000px;}
.h1_c00128{height:1263.000000px;}
.w3_c00128{width:25.020000px;}
.w2_c00128{width:863.955000px;}
.w0_c00128{width:892.935000px;}
.w1_c00128{width:893.250000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:14.490000px;}
.x2_c00128{left:113.040150px;}
.x11_c00128{left:127.217700px;}
.x3_c00128{left:150.011700px;}
.x12_c00128{left:187.230750px;}
.xf_c00128{left:211.178850px;}
.x4_c00128{left:216.989100px;}
.x10_c00128{left:230.737500px;}
.x6_c00128{left:313.920000px;}
.x5_c00128{left:347.749800px;}
.x7_c00128{left:395.215650px;}
.x13_c00128{left:438.112800px;}
.x9_c00128{left:453.602700px;}
.x14_c00128{left:458.106750px;}
.x8_c00128{left:461.260950px;}
.xa_c00128{left:505.621950px;}
.xb_c00128{left:651.180900px;}
.xc_c00128{left:666.174750px;}
.xd_c00128{left:693.998700px;}
.xe_c00128{left:706.994400px;}
.x15_c00128{left:759.915000px;}
@media print{
.v2_c00128{vertical-align:-26.880000pt;}
.v3_c00128{vertical-align:-21.760000pt;}
.v0_c00128{vertical-align:0.000000pt;}
.v1_c00128{vertical-align:26.880000pt;}
.ls8_c00128{letter-spacing:-0.159616pt;}
.ls7_c00128{letter-spacing:0.000000pt;}
.ls9_c00128{letter-spacing:0.128000pt;}
.lsb_c00128{letter-spacing:0.236160pt;}
.ls0_c00128{letter-spacing:0.251904pt;}
.ls3_c00128{letter-spacing:0.262400pt;}
.ls12_c00128{letter-spacing:0.330624pt;}
.lsf_c00128{letter-spacing:0.377856pt;}
.lsc_c00128{letter-spacing:0.389485pt;}
.ls10_c00128{letter-spacing:0.425088pt;}
.ls1_c00128{letter-spacing:0.472320pt;}
.ls4_c00128{letter-spacing:0.493312pt;}
.ls11_c00128{letter-spacing:0.519552pt;}
.ls13_c00128{letter-spacing:0.593024pt;}
.lsd_c00128{letter-spacing:0.614016pt;}
.lsa_c00128{letter-spacing:0.632913pt;}
.ls14_c00128{letter-spacing:0.708480pt;}
.lse_c00128{letter-spacing:1.579648pt;}
.ls2_c00128{letter-spacing:1.600640pt;}
.ls5_c00128{letter-spacing:5.312000pt;}
.ls6_c00128{letter-spacing:5.475484pt;}
.ws3_c00128{word-spacing:-15.082752pt;}
.ws2_c00128{word-spacing:-15.061760pt;}
.ws0_c00128{word-spacing:-10.159744pt;}
.ws1_c00128{word-spacing:-9.024000pt;}
.ws4_c00128{word-spacing:0.000000pt;}
._11_c00128{margin-left:-1.081903pt;}
._1_c00128{width:1.118592pt;}
._0_c00128{width:2.752000pt;}
._a_c00128{width:3.776000pt;}
._8_c00128{width:4.928000pt;}
._9_c00128{width:5.824000pt;}
._5_c00128{width:6.912000pt;}
._c_c00128{width:7.936000pt;}
._7_c00128{width:8.832000pt;}
._d_c00128{width:10.112000pt;}
._b_c00128{width:12.160000pt;}
._f_c00128{width:13.184000pt;}
._6_c00128{width:14.656000pt;}
._e_c00128{width:15.680000pt;}
._10_c00128{width:16.704000pt;}
._12_c00128{width:24.802863pt;}
._4_c00128{width:31.296000pt;}
._2_c00128{width:44.992000pt;}
._3_c00128{width:567.808000pt;}
.fs3_c00128{font-size:32.000000pt;}
.fs2_c00128{font-size:37.120000pt;}
.fs4_c00128{font-size:52.480000pt;}
.fs6_c00128{font-size:53.333333pt;}
.fs5_c00128{font-size:54.095146pt;}
.fs0_c00128{font-size:64.000000pt;}
.fs1_c00128{font-size:65.969690pt;}
.y0_c00128{bottom:0.000000pt;}
.y3_c00128{bottom:2.280000pt;}
.y31_c00128{bottom:2.773467pt;}
.y30_c00128{bottom:30.884000pt;}
.y1_c00128{bottom:48.000000pt;}
.y2f_c00128{bottom:54.760000pt;}
.y2e_c00128{bottom:64.678080pt;}
.y2d_c00128{bottom:80.356480pt;}
.y2c_c00128{bottom:101.160000pt;}
.y2b_c00128{bottom:111.401600pt;}
.y2a_c00128{bottom:132.520000pt;}
.y29_c00128{bottom:142.440000pt;}
.y28_c00128{bottom:147.880000pt;}
.y27_c00128{bottom:171.560000pt;}
.y26_c00128{bottom:268.200000pt;}
.y25_c00128{bottom:287.080000pt;}
.y24_c00128{bottom:305.640000pt;}
.y23_c00128{bottom:324.200000pt;}
.y22_c00128{bottom:343.080000pt;}
.y21_c00128{bottom:375.080000pt;}
.y20_c00128{bottom:393.640000pt;}
.y1f_c00128{bottom:412.200000pt;}
.y1e_c00128{bottom:444.200000pt;}
.y1d_c00128{bottom:463.080000pt;}
.y1c_c00128{bottom:481.640000pt;}
.y1b_c00128{bottom:513.640000pt;}
.y1a_c00128{bottom:532.200000pt;}
.y19_c00128{bottom:551.080000pt;}
.y18_c00128{bottom:569.640000pt;}
.y17_c00128{bottom:588.200000pt;}
.y16_c00128{bottom:607.080000pt;}
.y15_c00128{bottom:625.640000pt;}
.y14_c00128{bottom:644.520000pt;}
.y13_c00128{bottom:676.520000pt;}
.y12_c00128{bottom:695.080000pt;}
.y11_c00128{bottom:713.640000pt;}
.y10_c00128{bottom:732.520000pt;}
.yf_c00128{bottom:751.080000pt;}
.ye_c00128{bottom:769.640000pt;}
.yd_c00128{bottom:788.520000pt;}
.yc_c00128{bottom:807.080000pt;}
.yb_c00128{bottom:825.640000pt;}
.ya_c00128{bottom:844.520000pt;}
.y9_c00128{bottom:863.080000pt;}
.y8_c00128{bottom:881.640000pt;}
.y6_c00128{bottom:913.640000pt;}
.y7_c00128{bottom:920.360000pt;}
.y5_c00128{bottom:945.640000pt;}
.y4_c00128{bottom:964.520000pt;}
.y2_c00128{bottom:1011.880000pt;}
.ha_c00128{height:17.116000pt;}
.h7_c00128{height:28.992000pt;}
.h6_c00128{height:33.630720pt;}
.hb_c00128{height:41.173333pt;}
.h8_c00128{height:41.761453pt;}
.h9_c00128{height:47.546880pt;}
.h4_c00128{height:50.928601pt;}
.h3_c00128{height:57.984000pt;}
.h5_c00128{height:60.510720pt;}
.h2_c00128{height:1067.880000pt;}
.h0_c00128{height:1122.520000pt;}
.h1_c00128{height:1122.666667pt;}
.w3_c00128{width:22.240000pt;}
.w2_c00128{width:767.960000pt;}
.w0_c00128{width:793.720000pt;}
.w1_c00128{width:794.000000pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:12.880000pt;}
.x2_c00128{left:100.480133pt;}
.x11_c00128{left:113.082400pt;}
.x3_c00128{left:133.343733pt;}
.x12_c00128{left:166.427333pt;}
.xf_c00128{left:187.714533pt;}
.x4_c00128{left:192.879200pt;}
.x10_c00128{left:205.100000pt;}
.x6_c00128{left:279.040000pt;}
.x5_c00128{left:309.110933pt;}
.x7_c00128{left:351.302800pt;}
.x13_c00128{left:389.433600pt;}
.x9_c00128{left:403.202400pt;}
.x14_c00128{left:407.206000pt;}
.x8_c00128{left:410.009733pt;}
.xa_c00128{left:449.441733pt;}
.xb_c00128{left:578.827467pt;}
.xc_c00128{left:592.155333pt;}
.xd_c00128{left:616.887733pt;}
.xe_c00128{left:628.439467pt;}
.x15_c00128{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c63a487205ee7b1b9f4b60c3.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.134000;font-style:normal;font-weight:normal;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_001b9ae5e410069245c5e5a7.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;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:ff3_c00129;src:url('chunks/assets/font_b73e6455cded7c4883563d3a.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_3cdca110a77f1202a9b0114b.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:0.787000;font-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_c00129{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00129{vertical-align:-24.480000px;}
.v0_c00129{vertical-align:0.000000px;}
.v1_c00129{vertical-align:30.240000px;}
.ls8_c00129{letter-spacing:-0.179568px;}
.ls7_c00129{letter-spacing:0.000000px;}
.lsa_c00129{letter-spacing:0.144000px;}
.ls12_c00129{letter-spacing:0.202464px;}
.ls15_c00129{letter-spacing:0.239760px;}
.lsb_c00129{letter-spacing:0.265680px;}
.ls10_c00129{letter-spacing:0.318816px;}
.ls13_c00129{letter-spacing:0.319680px;}
.ls14_c00129{letter-spacing:0.399600px;}
.lsd_c00129{letter-spacing:0.425088px;}
.ls5_c00129{letter-spacing:0.438120px;}
.ls11_c00129{letter-spacing:0.559440px;}
.lsf_c00129{letter-spacing:0.991970px;}
.lsc_c00129{letter-spacing:1.747584px;}
.lse_c00129{letter-spacing:5.514336px;}
.ls3_c00129{letter-spacing:5.832000px;}
.ls1_c00129{letter-spacing:5.954400px;}
.ls0_c00129{letter-spacing:5.976000px;}
.ls4_c00129{letter-spacing:6.066600px;}
.ls6_c00129{letter-spacing:6.159920px;}
.ls2_c00129{letter-spacing:9.216000px;}
.ls9_c00129{letter-spacing:18.302400px;}
.sc__c00129{text-shadow:none;}
.sc1_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00129{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc1_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00129{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00129{word-spacing:-25.992000px;}
.ws3_c00129{word-spacing:-21.927456px;}
.ws4_c00129{word-spacing:-15.211440px;}
.ws5_c00129{word-spacing:-15.051600px;}
.ws0_c00129{word-spacing:-11.429712px;}
.ws2_c00129{word-spacing:-10.152000px;}
.ws6_c00129{word-spacing:0.000000px;}
._10_c00129{margin-left:-18.316800px;}
._11_c00129{margin-left:-1.527840px;}
._5_c00129{width:1.016016px;}
._7_c00129{width:2.232000px;}
._4_c00129{width:3.240000px;}
._6_c00129{width:4.248000px;}
._e_c00129{width:5.328000px;}
._b_c00129{width:6.912000px;}
._a_c00129{width:8.064000px;}
._1_c00129{width:9.072000px;}
._0_c00129{width:13.752000px;}
._9_c00129{width:15.048000px;}
._f_c00129{width:17.136000px;}
._c_c00129{width:19.008000px;}
._3_c00129{width:24.120000px;}
._2_c00129{width:28.080000px;}
._8_c00129{width:33.480000px;}
._d_c00129{width:55.152000px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs3_c00129{font-size:36.000000px;}
.fs2_c00129{font-size:41.760000px;}
.fs6_c00129{font-size:53.280000px;}
.fs4_c00129{font-size:59.040000px;}
.fs7_c00129{font-size:60.000000px;}
.fs5_c00129{font-size:60.857039px;}
.fs0_c00129{font-size:72.000000px;}
.fs1_c00129{font-size:74.215901px;}
.y0_c00129{bottom:0.000000px;}
.y3_c00129{bottom:2.565000px;}
.y33_c00129{bottom:3.120150px;}
.y31_c00129{bottom:22.680000px;}
.y32_c00129{bottom:34.744500px;}
.y30_c00129{bottom:38.160000px;}
.y1_c00129{bottom:54.000000px;}
.y2d_c00129{bottom:55.485000px;}
.y2f_c00129{bottom:69.840000px;}
.y2c_c00129{bottom:72.765000px;}
.y2b_c00129{bottom:78.885000px;}
.y2a_c00129{bottom:96.525000px;}
.y29_c00129{bottom:123.165000px;}
.y28_c00129{bottom:163.845000px;}
.y27_c00129{bottom:184.725000px;}
.y26_c00129{bottom:205.965000px;}
.y25_c00129{bottom:226.845000px;}
.y24_c00129{bottom:247.725000px;}
.y23_c00129{bottom:283.725000px;}
.y22_c00129{bottom:304.965000px;}
.y21_c00129{bottom:325.845000px;}
.y20_c00129{bottom:346.725000px;}
.y1f_c00129{bottom:367.965000px;}
.y1e_c00129{bottom:388.845000px;}
.y1d_c00129{bottom:409.725000px;}
.y1c_c00129{bottom:445.725000px;}
.y1b_c00129{bottom:466.965000px;}
.y1a_c00129{bottom:487.845000px;}
.y19_c00129{bottom:508.725000px;}
.y18_c00129{bottom:529.965000px;}
.y17_c00129{bottom:550.845000px;}
.y16_c00129{bottom:571.725000px;}
.y15_c00129{bottom:607.725000px;}
.y14_c00129{bottom:628.965000px;}
.y13_c00129{bottom:664.965000px;}
.y12_c00129{bottom:685.845000px;}
.y11_c00129{bottom:707.085000px;}
.y10_c00129{bottom:727.965000px;}
.yf_c00129{bottom:748.845000px;}
.ye_c00129{bottom:770.085000px;}
.yd_c00129{bottom:790.965000px;}
.yc_c00129{bottom:811.845000px;}
.yb_c00129{bottom:833.085000px;}
.ya_c00129{bottom:869.085000px;}
.y9_c00129{bottom:905.085000px;}
.y8_c00129{bottom:941.085000px;}
.y7_c00129{bottom:977.085000px;}
.y2e_c00129{bottom:979.245000px;}
.y6_c00129{bottom:1013.085000px;}
.y5_c00129{bottom:1049.085000px;}
.y4_c00129{bottom:1085.085000px;}
.y2_c00129{bottom:1138.365000px;}
.hb_c00129{height:19.255500px;}
.h6_c00129{height:32.616000px;}
.hc_c00129{height:46.320000px;}
.h7_c00129{height:46.981634px;}
.ha_c00129{height:48.271680px;}
.h8_c00129{height:53.490240px;}
.h4_c00129{height:57.294676px;}
.h3_c00129{height:65.232000px;}
.h5_c00129{height:68.074560px;}
.h9_c00129{height:82.440000px;}
.h2_c00129{height:1201.365000px;}
.h0_c00129{height:1262.835000px;}
.h1_c00129{height:1263.000000px;}
.w4_c00129{width:25.020000px;}
.w3_c00129{width:114.840000px;}
.w2_c00129{width:863.955000px;}
.w0_c00129{width:892.935000px;}
.w1_c00129{width:893.250000px;}
.x0_c00129{left:0.000000px;}
.xe_c00129{left:6.551400px;}
.x1_c00129{left:14.490000px;}
.xf_c00129{left:21.570150px;}
.x10_c00129{left:23.446650px;}
.x11_c00129{left:34.711950px;}
.x2_c00129{left:113.040150px;}
.x3_c00129{left:150.011700px;}
.xb_c00129{left:171.053100px;}
.x4_c00129{left:216.989100px;}
.x7_c00129{left:440.192100px;}
.xd_c00129{left:502.290000px;}
.x8_c00129{left:519.758400px;}
.x5_c00129{left:643.718250px;}
.x9_c00129{left:647.604150px;}
.x6_c00129{left:678.727650px;}
.xa_c00129{left:686.591700px;}
.xc_c00129{left:713.715450px;}
.x12_c00129{left:759.915000px;}
@media print{
.v2_c00129{vertical-align:-21.760000pt;}
.v0_c00129{vertical-align:0.000000pt;}
.v1_c00129{vertical-align:26.880000pt;}
.ls8_c00129{letter-spacing:-0.159616pt;}
.ls7_c00129{letter-spacing:0.000000pt;}
.lsa_c00129{letter-spacing:0.128000pt;}
.ls12_c00129{letter-spacing:0.179968pt;}
.ls15_c00129{letter-spacing:0.213120pt;}
.lsb_c00129{letter-spacing:0.236160pt;}
.ls10_c00129{letter-spacing:0.283392pt;}
.ls13_c00129{letter-spacing:0.284160pt;}
.ls14_c00129{letter-spacing:0.355200pt;}
.lsd_c00129{letter-spacing:0.377856pt;}
.ls5_c00129{letter-spacing:0.389440pt;}
.ls11_c00129{letter-spacing:0.497280pt;}
.lsf_c00129{letter-spacing:0.881751pt;}
.lsc_c00129{letter-spacing:1.553408pt;}
.lse_c00129{letter-spacing:4.901632pt;}
.ls3_c00129{letter-spacing:5.184000pt;}
.ls1_c00129{letter-spacing:5.292800pt;}
.ls0_c00129{letter-spacing:5.312000pt;}
.ls4_c00129{letter-spacing:5.392533pt;}
.ls6_c00129{letter-spacing:5.475484pt;}
.ls2_c00129{letter-spacing:8.192000pt;}
.ls9_c00129{letter-spacing:16.268800pt;}
.ws1_c00129{word-spacing:-23.104000pt;}
.ws3_c00129{word-spacing:-19.491072pt;}
.ws4_c00129{word-spacing:-13.521280pt;}
.ws5_c00129{word-spacing:-13.379200pt;}
.ws0_c00129{word-spacing:-10.159744pt;}
.ws2_c00129{word-spacing:-9.024000pt;}
.ws6_c00129{word-spacing:0.000000pt;}
._10_c00129{margin-left:-16.281600pt;}
._11_c00129{margin-left:-1.358080pt;}
._5_c00129{width:0.903125pt;}
._7_c00129{width:1.984000pt;}
._4_c00129{width:2.880000pt;}
._6_c00129{width:3.776000pt;}
._e_c00129{width:4.736000pt;}
._b_c00129{width:6.144000pt;}
._a_c00129{width:7.168000pt;}
._1_c00129{width:8.064000pt;}
._0_c00129{width:12.224000pt;}
._9_c00129{width:13.376000pt;}
._f_c00129{width:15.232000pt;}
._c_c00129{width:16.896000pt;}
._3_c00129{width:21.440000pt;}
._2_c00129{width:24.960000pt;}
._8_c00129{width:29.760000pt;}
._d_c00129{width:49.024000pt;}
.fs3_c00129{font-size:32.000000pt;}
.fs2_c00129{font-size:37.120000pt;}
.fs6_c00129{font-size:47.360000pt;}
.fs4_c00129{font-size:52.480000pt;}
.fs7_c00129{font-size:53.333333pt;}
.fs5_c00129{font-size:54.095146pt;}
.fs0_c00129{font-size:64.000000pt;}
.fs1_c00129{font-size:65.969690pt;}
.y0_c00129{bottom:0.000000pt;}
.y3_c00129{bottom:2.280000pt;}
.y33_c00129{bottom:2.773467pt;}
.y31_c00129{bottom:20.160000pt;}
.y32_c00129{bottom:30.884000pt;}
.y30_c00129{bottom:33.920000pt;}
.y1_c00129{bottom:48.000000pt;}
.y2d_c00129{bottom:49.320000pt;}
.y2f_c00129{bottom:62.080000pt;}
.y2c_c00129{bottom:64.680000pt;}
.y2b_c00129{bottom:70.120000pt;}
.y2a_c00129{bottom:85.800000pt;}
.y29_c00129{bottom:109.480000pt;}
.y28_c00129{bottom:145.640000pt;}
.y27_c00129{bottom:164.200000pt;}
.y26_c00129{bottom:183.080000pt;}
.y25_c00129{bottom:201.640000pt;}
.y24_c00129{bottom:220.200000pt;}
.y23_c00129{bottom:252.200000pt;}
.y22_c00129{bottom:271.080000pt;}
.y21_c00129{bottom:289.640000pt;}
.y20_c00129{bottom:308.200000pt;}
.y1f_c00129{bottom:327.080000pt;}
.y1e_c00129{bottom:345.640000pt;}
.y1d_c00129{bottom:364.200000pt;}
.y1c_c00129{bottom:396.200000pt;}
.y1b_c00129{bottom:415.080000pt;}
.y1a_c00129{bottom:433.640000pt;}
.y19_c00129{bottom:452.200000pt;}
.y18_c00129{bottom:471.080000pt;}
.y17_c00129{bottom:489.640000pt;}
.y16_c00129{bottom:508.200000pt;}
.y15_c00129{bottom:540.200000pt;}
.y14_c00129{bottom:559.080000pt;}
.y13_c00129{bottom:591.080000pt;}
.y12_c00129{bottom:609.640000pt;}
.y11_c00129{bottom:628.520000pt;}
.y10_c00129{bottom:647.080000pt;}
.yf_c00129{bottom:665.640000pt;}
.ye_c00129{bottom:684.520000pt;}
.yd_c00129{bottom:703.080000pt;}
.yc_c00129{bottom:721.640000pt;}
.yb_c00129{bottom:740.520000pt;}
.ya_c00129{bottom:772.520000pt;}
.y9_c00129{bottom:804.520000pt;}
.y8_c00129{bottom:836.520000pt;}
.y7_c00129{bottom:868.520000pt;}
.y2e_c00129{bottom:870.440000pt;}
.y6_c00129{bottom:900.520000pt;}
.y5_c00129{bottom:932.520000pt;}
.y4_c00129{bottom:964.520000pt;}
.y2_c00129{bottom:1011.880000pt;}
.hb_c00129{height:17.116000pt;}
.h6_c00129{height:28.992000pt;}
.hc_c00129{height:41.173333pt;}
.h7_c00129{height:41.761453pt;}
.ha_c00129{height:42.908160pt;}
.h8_c00129{height:47.546880pt;}
.h4_c00129{height:50.928601pt;}
.h3_c00129{height:57.984000pt;}
.h5_c00129{height:60.510720pt;}
.h9_c00129{height:73.280000pt;}
.h2_c00129{height:1067.880000pt;}
.h0_c00129{height:1122.520000pt;}
.h1_c00129{height:1122.666667pt;}
.w4_c00129{width:22.240000pt;}
.w3_c00129{width:102.080000pt;}
.w2_c00129{width:767.960000pt;}
.w0_c00129{width:793.720000pt;}
.w1_c00129{width:794.000000pt;}
.x0_c00129{left:0.000000pt;}
.xe_c00129{left:5.823467pt;}
.x1_c00129{left:12.880000pt;}
.xf_c00129{left:19.173467pt;}
.x10_c00129{left:20.841467pt;}
.x11_c00129{left:30.855067pt;}
.x2_c00129{left:100.480133pt;}
.x3_c00129{left:133.343733pt;}
.xb_c00129{left:152.047200pt;}
.x4_c00129{left:192.879200pt;}
.x7_c00129{left:391.281867pt;}
.xd_c00129{left:446.480000pt;}
.x8_c00129{left:462.007467pt;}
.x5_c00129{left:572.194000pt;}
.x9_c00129{left:575.648133pt;}
.x6_c00129{left:603.313467pt;}
.xa_c00129{left:610.303733pt;}
.xc_c00129{left:634.413733pt;}
.x12_c00129{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d025e158d9602fac82c8b9d.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.134000;font-style:normal;font-weight:normal;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_b5163a999feb36a49122ff2a.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;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:ff3_c00130;src:url('chunks/assets/font_9dfa439570c32a2671ab6b89.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:0.787000;font-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_c00130{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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:-30.240000px;}
.v3_c00130{vertical-align:-24.480000px;}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:30.240000px;}
.ls8_c00130{letter-spacing:-0.179568px;}
.ls6_c00130{letter-spacing:0.000000px;}
.ls9_c00130{letter-spacing:0.144000px;}
.lsa_c00130{letter-spacing:0.265680px;}
.ls2_c00130{letter-spacing:0.295200px;}
.ls1_c00130{letter-spacing:0.354240px;}
.ls3_c00130{letter-spacing:0.531360px;}
.lsb_c00130{letter-spacing:0.766799px;}
.ls7_c00130{letter-spacing:5.335200px;}
.ls4_c00130{letter-spacing:5.976000px;}
.ls0_c00130{letter-spacing:5.979600px;}
.ls5_c00130{letter-spacing:6.159920px;}
.sc__c00130{text-shadow:none;}
.sc1_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00130{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc1_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00130{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00130{word-spacing:-20.947680px;}
.ws1_c00130{word-spacing:-20.016000px;}
.ws4_c00130{word-spacing:-17.685056px;}
.ws5_c00130{word-spacing:-16.944480px;}
.ws2_c00130{word-spacing:-11.429712px;}
.ws3_c00130{word-spacing:-10.152000px;}
.ws6_c00130{word-spacing:0.000000px;}
._5_c00130{margin-left:-1.022112px;}
._3_c00130{width:1.341216px;}
._4_c00130{width:4.320000px;}
._2_c00130{width:9.288000px;}
._1_c00130{width:23.207784px;}
._0_c00130{width:24.456216px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs4_c00130{font-size:36.000000px;}
.fs3_c00130{font-size:41.760000px;}
.fs2_c00130{font-size:56.160000px;}
.fs5_c00130{font-size:59.040000px;}
.fs7_c00130{font-size:60.000000px;}
.fs6_c00130{font-size:60.857039px;}
.fs0_c00130{font-size:72.000000px;}
.fs1_c00130{font-size:74.215901px;}
.y0_c00130{bottom:0.000000px;}
.y3_c00130{bottom:2.565000px;}
.y11_c00130{bottom:3.120150px;}
.y10_c00130{bottom:34.744500px;}
.y1_c00130{bottom:54.000000px;}
.yf_c00130{bottom:55.485000px;}
.ye_c00130{bottom:61.605000px;}
.yd_c00130{bottom:78.885000px;}
.yc_c00130{bottom:105.525000px;}
.yb_c00130{bottom:898.965000px;}
.ya_c00130{bottom:934.965000px;}
.y8_c00130{bottom:970.965000px;}
.y9_c00130{bottom:978.525000px;}
.y7_c00130{bottom:991.845000px;}
.y6_c00130{bottom:1013.085000px;}
.y5_c00130{bottom:1049.085000px;}
.y4_c00130{bottom:1085.085000px;}
.y2_c00130{bottom:1138.365000px;}
.ha_c00130{height:19.255500px;}
.h7_c00130{height:32.616000px;}
.h6_c00130{height:37.834560px;}
.hb_c00130{height:46.320000px;}
.h8_c00130{height:46.981634px;}
.h9_c00130{height:53.490240px;}
.h4_c00130{height:57.294676px;}
.h3_c00130{height:65.232000px;}
.h5_c00130{height:68.074560px;}
.h2_c00130{height:1201.365000px;}
.h0_c00130{height:1262.835000px;}
.h1_c00130{height:1263.000000px;}
.w3_c00130{width:25.020000px;}
.w2_c00130{width:863.955000px;}
.w0_c00130{width:892.935000px;}
.w1_c00130{width:893.250000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:14.490000px;}
.x2_c00130{left:113.040150px;}
.x8_c00130{left:127.217700px;}
.x3_c00130{left:150.011700px;}
.x7_c00130{left:164.880000px;}
.x9_c00130{left:170.566800px;}
.x4_c00130{left:216.989100px;}
.x5_c00130{left:691.060500px;}
.x6_c00130{left:734.061750px;}
.xa_c00130{left:759.915000px;}
@media print{
.v2_c00130{vertical-align:-26.880000pt;}
.v3_c00130{vertical-align:-21.760000pt;}
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:26.880000pt;}
.ls8_c00130{letter-spacing:-0.159616pt;}
.ls6_c00130{letter-spacing:0.000000pt;}
.ls9_c00130{letter-spacing:0.128000pt;}
.lsa_c00130{letter-spacing:0.236160pt;}
.ls2_c00130{letter-spacing:0.262400pt;}
.ls1_c00130{letter-spacing:0.314880pt;}
.ls3_c00130{letter-spacing:0.472320pt;}
.lsb_c00130{letter-spacing:0.681599pt;}
.ls7_c00130{letter-spacing:4.742400pt;}
.ls4_c00130{letter-spacing:5.312000pt;}
.ls0_c00130{letter-spacing:5.315200pt;}
.ls5_c00130{letter-spacing:5.475484pt;}
.ws0_c00130{word-spacing:-18.620160pt;}
.ws1_c00130{word-spacing:-17.792000pt;}
.ws4_c00130{word-spacing:-15.720049pt;}
.ws5_c00130{word-spacing:-15.061760pt;}
.ws2_c00130{word-spacing:-10.159744pt;}
.ws3_c00130{word-spacing:-9.024000pt;}
.ws6_c00130{word-spacing:0.000000pt;}
._5_c00130{margin-left:-0.908544pt;}
._3_c00130{width:1.192192pt;}
._4_c00130{width:3.840000pt;}
._2_c00130{width:8.256000pt;}
._1_c00130{width:20.629141pt;}
._0_c00130{width:21.738859pt;}
.fs4_c00130{font-size:32.000000pt;}
.fs3_c00130{font-size:37.120000pt;}
.fs2_c00130{font-size:49.920000pt;}
.fs5_c00130{font-size:52.480000pt;}
.fs7_c00130{font-size:53.333333pt;}
.fs6_c00130{font-size:54.095146pt;}
.fs0_c00130{font-size:64.000000pt;}
.fs1_c00130{font-size:65.969690pt;}
.y0_c00130{bottom:0.000000pt;}
.y3_c00130{bottom:2.280000pt;}
.y11_c00130{bottom:2.773467pt;}
.y10_c00130{bottom:30.884000pt;}
.y1_c00130{bottom:48.000000pt;}
.yf_c00130{bottom:49.320000pt;}
.ye_c00130{bottom:54.760000pt;}
.yd_c00130{bottom:70.120000pt;}
.yc_c00130{bottom:93.800000pt;}
.yb_c00130{bottom:799.080000pt;}
.ya_c00130{bottom:831.080000pt;}
.y8_c00130{bottom:863.080000pt;}
.y9_c00130{bottom:869.800000pt;}
.y7_c00130{bottom:881.640000pt;}
.y6_c00130{bottom:900.520000pt;}
.y5_c00130{bottom:932.520000pt;}
.y4_c00130{bottom:964.520000pt;}
.y2_c00130{bottom:1011.880000pt;}
.ha_c00130{height:17.116000pt;}
.h7_c00130{height:28.992000pt;}
.h6_c00130{height:33.630720pt;}
.hb_c00130{height:41.173333pt;}
.h8_c00130{height:41.761453pt;}
.h9_c00130{height:47.546880pt;}
.h4_c00130{height:50.928601pt;}
.h3_c00130{height:57.984000pt;}
.h5_c00130{height:60.510720pt;}
.h2_c00130{height:1067.880000pt;}
.h0_c00130{height:1122.520000pt;}
.h1_c00130{height:1122.666667pt;}
.w3_c00130{width:22.240000pt;}
.w2_c00130{width:767.960000pt;}
.w0_c00130{width:793.720000pt;}
.w1_c00130{width:794.000000pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:12.880000pt;}
.x2_c00130{left:100.480133pt;}
.x8_c00130{left:113.082400pt;}
.x3_c00130{left:133.343733pt;}
.x7_c00130{left:146.560000pt;}
.x9_c00130{left:151.614933pt;}
.x4_c00130{left:192.879200pt;}
.x5_c00130{left:614.276000pt;}
.x6_c00130{left:652.499333pt;}
.xa_c00130{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3680f0b000846221e342533.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;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_c00131;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:0.787000;font-style:normal;font-weight:normal;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_85fbef2148fd4b3f87844a75.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:0.787000;font-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_c00131{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls2_c00131{letter-spacing:0.000000px;}
.ls4_c00131{letter-spacing:0.202464px;}
.ls3_c00131{letter-spacing:0.399600px;}
.ls5_c00131{letter-spacing:0.559440px;}
.ls0_c00131{letter-spacing:5.976000px;}
.ls1_c00131{letter-spacing:6.159920px;}
.sc__c00131{text-shadow:none;}
.sc1_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00131{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc1_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00131{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00131{word-spacing:0.000000px;}
._1_c00131{margin-left:-1.304208px;}
._0_c00131{width:1.333800px;}
.fc1_c00131{color:transparent;}
.fc0_c00131{color:rgb(0,0,0);}
.fs2_c00131{font-size:53.280000px;}
.fs3_c00131{font-size:60.000000px;}
.fs0_c00131{font-size:72.000000px;}
.fs1_c00131{font-size:74.215901px;}
.y0_c00131{bottom:0.000000px;}
.y26_c00131{bottom:3.120150px;}
.y24_c00131{bottom:10.440000px;}
.y25_c00131{bottom:34.744500px;}
.y21_c00131{bottom:39.960000px;}
.y23_c00131{bottom:41.400000px;}
.y1_c00131{bottom:54.000000px;}
.y1f_c00131{bottom:76.725000px;}
.y1e_c00131{bottom:112.725000px;}
.y1d_c00131{bottom:148.725000px;}
.y20_c00131{bottom:184.365000px;}
.y1c_c00131{bottom:184.725000px;}
.y1b_c00131{bottom:220.725000px;}
.y1a_c00131{bottom:256.725000px;}
.y19_c00131{bottom:292.725000px;}
.y18_c00131{bottom:328.725000px;}
.y17_c00131{bottom:364.725000px;}
.y16_c00131{bottom:400.725000px;}
.y15_c00131{bottom:436.725000px;}
.y14_c00131{bottom:472.725000px;}
.y13_c00131{bottom:509.085000px;}
.y12_c00131{bottom:545.085000px;}
.y11_c00131{bottom:581.085000px;}
.y10_c00131{bottom:617.085000px;}
.yf_c00131{bottom:653.085000px;}
.y22_c00131{bottom:670.365000px;}
.ye_c00131{bottom:689.085000px;}
.yd_c00131{bottom:725.085000px;}
.yc_c00131{bottom:761.085000px;}
.yb_c00131{bottom:797.085000px;}
.ya_c00131{bottom:833.085000px;}
.y9_c00131{bottom:869.085000px;}
.y8_c00131{bottom:905.085000px;}
.y7_c00131{bottom:941.085000px;}
.y6_c00131{bottom:977.085000px;}
.y5_c00131{bottom:1013.085000px;}
.y4_c00131{bottom:1049.085000px;}
.y3_c00131{bottom:1085.085000px;}
.y2_c00131{bottom:1138.365000px;}
.h8_c00131{height:19.255500px;}
.h6_c00131{height:41.132160px;}
.h9_c00131{height:46.320000px;}
.h5_c00131{height:52.560000px;}
.h7_c00131{height:54.000000px;}
.h3_c00131{height:55.584000px;}
.h4_c00131{height:57.294676px;}
.h2_c00131{height:1201.365000px;}
.h0_c00131{height:1262.835000px;}
.h1_c00131{height:1263.000000px;}
.w5_c00131{width:25.020000px;}
.w4_c00131{width:683.640000px;}
.w3_c00131{width:706.320000px;}
.w2_c00131{width:863.955000px;}
.w0_c00131{width:892.935000px;}
.w1_c00131{width:893.250000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:14.490000px;}
.x7_c00131{left:74.423250px;}
.x6_c00131{left:93.329250px;}
.x2_c00131{left:113.040150px;}
.x5_c00131{left:123.210000px;}
.x3_c00131{left:150.011700px;}
.x4_c00131{left:216.989100px;}
.x8_c00131{left:341.677350px;}
.x9_c00131{left:759.915000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls2_c00131{letter-spacing:0.000000pt;}
.ls4_c00131{letter-spacing:0.179968pt;}
.ls3_c00131{letter-spacing:0.355200pt;}
.ls5_c00131{letter-spacing:0.497280pt;}
.ls0_c00131{letter-spacing:5.312000pt;}
.ls1_c00131{letter-spacing:5.475484pt;}
.ws0_c00131{word-spacing:0.000000pt;}
._1_c00131{margin-left:-1.159296pt;}
._0_c00131{width:1.185600pt;}
.fs2_c00131{font-size:47.360000pt;}
.fs3_c00131{font-size:53.333333pt;}
.fs0_c00131{font-size:64.000000pt;}
.fs1_c00131{font-size:65.969690pt;}
.y0_c00131{bottom:0.000000pt;}
.y26_c00131{bottom:2.773467pt;}
.y24_c00131{bottom:9.280000pt;}
.y25_c00131{bottom:30.884000pt;}
.y21_c00131{bottom:35.520000pt;}
.y23_c00131{bottom:36.800000pt;}
.y1_c00131{bottom:48.000000pt;}
.y1f_c00131{bottom:68.200000pt;}
.y1e_c00131{bottom:100.200000pt;}
.y1d_c00131{bottom:132.200000pt;}
.y20_c00131{bottom:163.880000pt;}
.y1c_c00131{bottom:164.200000pt;}
.y1b_c00131{bottom:196.200000pt;}
.y1a_c00131{bottom:228.200000pt;}
.y19_c00131{bottom:260.200000pt;}
.y18_c00131{bottom:292.200000pt;}
.y17_c00131{bottom:324.200000pt;}
.y16_c00131{bottom:356.200000pt;}
.y15_c00131{bottom:388.200000pt;}
.y14_c00131{bottom:420.200000pt;}
.y13_c00131{bottom:452.520000pt;}
.y12_c00131{bottom:484.520000pt;}
.y11_c00131{bottom:516.520000pt;}
.y10_c00131{bottom:548.520000pt;}
.yf_c00131{bottom:580.520000pt;}
.y22_c00131{bottom:595.880000pt;}
.ye_c00131{bottom:612.520000pt;}
.yd_c00131{bottom:644.520000pt;}
.yc_c00131{bottom:676.520000pt;}
.yb_c00131{bottom:708.520000pt;}
.ya_c00131{bottom:740.520000pt;}
.y9_c00131{bottom:772.520000pt;}
.y8_c00131{bottom:804.520000pt;}
.y7_c00131{bottom:836.520000pt;}
.y6_c00131{bottom:868.520000pt;}
.y5_c00131{bottom:900.520000pt;}
.y4_c00131{bottom:932.520000pt;}
.y3_c00131{bottom:964.520000pt;}
.y2_c00131{bottom:1011.880000pt;}
.h8_c00131{height:17.116000pt;}
.h6_c00131{height:36.561920pt;}
.h9_c00131{height:41.173333pt;}
.h5_c00131{height:46.720000pt;}
.h7_c00131{height:48.000000pt;}
.h3_c00131{height:49.408000pt;}
.h4_c00131{height:50.928601pt;}
.h2_c00131{height:1067.880000pt;}
.h0_c00131{height:1122.520000pt;}
.h1_c00131{height:1122.666667pt;}
.w5_c00131{width:22.240000pt;}
.w4_c00131{width:607.680000pt;}
.w3_c00131{width:627.840000pt;}
.w2_c00131{width:767.960000pt;}
.w0_c00131{width:793.720000pt;}
.w1_c00131{width:794.000000pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:12.880000pt;}
.x7_c00131{left:66.154000pt;}
.x6_c00131{left:82.959333pt;}
.x2_c00131{left:100.480133pt;}
.x5_c00131{left:109.520000pt;}
.x3_c00131{left:133.343733pt;}
.x4_c00131{left:192.879200pt;}
.x8_c00131{left:303.713200pt;}
.x9_c00131{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be948881b4562f54bd44eab5.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;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_c00132;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:0.787000;font-style:normal;font-weight:normal;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_59301a1f3a012e98c91a90a6.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:0.787000;font-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_c00132{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls3_c00132{letter-spacing:0.000000px;}
.ls4_c00132{letter-spacing:0.202464px;}
.ls0_c00132{letter-spacing:0.399600px;}
.ls5_c00132{letter-spacing:0.516816px;}
.ls6_c00132{letter-spacing:0.559440px;}
.ls1_c00132{letter-spacing:5.976000px;}
.ls2_c00132{letter-spacing:6.159920px;}
.sc__c00132{text-shadow:none;}
.sc1_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00132{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc1_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00132{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00132{word-spacing:-15.211440px;}
.ws1_c00132{word-spacing:0.000000px;}
._1_c00132{margin-left:-1.199352px;}
._0_c00132{width:1.333800px;}
.fc1_c00132{color:transparent;}
.fc0_c00132{color:rgb(0,0,0);}
.fs2_c00132{font-size:53.280000px;}
.fs3_c00132{font-size:60.000000px;}
.fs0_c00132{font-size:72.000000px;}
.fs1_c00132{font-size:74.215901px;}
.y0_c00132{bottom:0.000000px;}
.y26_c00132{bottom:3.120150px;}
.y25_c00132{bottom:34.744500px;}
.y23_c00132{bottom:40.680000px;}
.y21_c00132{bottom:41.040000px;}
.y1_c00132{bottom:54.000000px;}
.y1f_c00132{bottom:76.725000px;}
.y20_c00132{bottom:103.365000px;}
.y1e_c00132{bottom:112.725000px;}
.y1d_c00132{bottom:148.725000px;}
.y1c_c00132{bottom:184.725000px;}
.y1b_c00132{bottom:220.725000px;}
.y1a_c00132{bottom:256.725000px;}
.y19_c00132{bottom:292.725000px;}
.y18_c00132{bottom:328.725000px;}
.y17_c00132{bottom:364.725000px;}
.y16_c00132{bottom:400.725000px;}
.y15_c00132{bottom:436.725000px;}
.y22_c00132{bottom:455.085000px;}
.y14_c00132{bottom:472.725000px;}
.y13_c00132{bottom:509.085000px;}
.y12_c00132{bottom:545.085000px;}
.y11_c00132{bottom:581.085000px;}
.y10_c00132{bottom:617.085000px;}
.yf_c00132{bottom:653.085000px;}
.ye_c00132{bottom:689.085000px;}
.yd_c00132{bottom:725.085000px;}
.yc_c00132{bottom:761.085000px;}
.yb_c00132{bottom:797.085000px;}
.y24_c00132{bottom:805.365000px;}
.ya_c00132{bottom:833.085000px;}
.y9_c00132{bottom:869.085000px;}
.y8_c00132{bottom:905.085000px;}
.y7_c00132{bottom:941.085000px;}
.y6_c00132{bottom:977.085000px;}
.y5_c00132{bottom:1013.085000px;}
.y4_c00132{bottom:1049.085000px;}
.y3_c00132{bottom:1085.085000px;}
.y2_c00132{bottom:1138.365000px;}
.h8_c00132{height:19.255500px;}
.h6_c00132{height:41.132160px;}
.h9_c00132{height:46.320000px;}
.h7_c00132{height:53.280000px;}
.h5_c00132{height:54.000000px;}
.h3_c00132{height:55.584000px;}
.h4_c00132{height:57.294676px;}
.h2_c00132{height:1201.365000px;}
.h0_c00132{height:1262.835000px;}
.h1_c00132{height:1263.000000px;}
.w6_c00132{width:25.020000px;}
.w5_c00132{width:601.920000px;}
.w4_c00132{width:608.760000px;}
.w3_c00132{width:654.840000px;}
.w2_c00132{width:863.955000px;}
.w0_c00132{width:892.935000px;}
.w1_c00132{width:893.250000px;}
.x0_c00132{left:0.000000px;}
.x1_c00132{left:14.490000px;}
.xa_c00132{left:33.548250px;}
.x8_c00132{left:40.826550px;}
.x6_c00132{left:63.701550px;}
.x2_c00132{left:113.040150px;}
.x7_c00132{left:117.090000px;}
.x9_c00132{left:123.210000px;}
.x5_c00132{left:124.290000px;}
.x3_c00132{left:150.011700px;}
.x4_c00132{left:216.989100px;}
.xb_c00132{left:759.915000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls3_c00132{letter-spacing:0.000000pt;}
.ls4_c00132{letter-spacing:0.179968pt;}
.ls0_c00132{letter-spacing:0.355200pt;}
.ls5_c00132{letter-spacing:0.459392pt;}
.ls6_c00132{letter-spacing:0.497280pt;}
.ls1_c00132{letter-spacing:5.312000pt;}
.ls2_c00132{letter-spacing:5.475484pt;}
.ws0_c00132{word-spacing:-13.521280pt;}
.ws1_c00132{word-spacing:0.000000pt;}
._1_c00132{margin-left:-1.066091pt;}
._0_c00132{width:1.185600pt;}
.fs2_c00132{font-size:47.360000pt;}
.fs3_c00132{font-size:53.333333pt;}
.fs0_c00132{font-size:64.000000pt;}
.fs1_c00132{font-size:65.969690pt;}
.y0_c00132{bottom:0.000000pt;}
.y26_c00132{bottom:2.773467pt;}
.y25_c00132{bottom:30.884000pt;}
.y23_c00132{bottom:36.160000pt;}
.y21_c00132{bottom:36.480000pt;}
.y1_c00132{bottom:48.000000pt;}
.y1f_c00132{bottom:68.200000pt;}
.y20_c00132{bottom:91.880000pt;}
.y1e_c00132{bottom:100.200000pt;}
.y1d_c00132{bottom:132.200000pt;}
.y1c_c00132{bottom:164.200000pt;}
.y1b_c00132{bottom:196.200000pt;}
.y1a_c00132{bottom:228.200000pt;}
.y19_c00132{bottom:260.200000pt;}
.y18_c00132{bottom:292.200000pt;}
.y17_c00132{bottom:324.200000pt;}
.y16_c00132{bottom:356.200000pt;}
.y15_c00132{bottom:388.200000pt;}
.y22_c00132{bottom:404.520000pt;}
.y14_c00132{bottom:420.200000pt;}
.y13_c00132{bottom:452.520000pt;}
.y12_c00132{bottom:484.520000pt;}
.y11_c00132{bottom:516.520000pt;}
.y10_c00132{bottom:548.520000pt;}
.yf_c00132{bottom:580.520000pt;}
.ye_c00132{bottom:612.520000pt;}
.yd_c00132{bottom:644.520000pt;}
.yc_c00132{bottom:676.520000pt;}
.yb_c00132{bottom:708.520000pt;}
.y24_c00132{bottom:715.880000pt;}
.ya_c00132{bottom:740.520000pt;}
.y9_c00132{bottom:772.520000pt;}
.y8_c00132{bottom:804.520000pt;}
.y7_c00132{bottom:836.520000pt;}
.y6_c00132{bottom:868.520000pt;}
.y5_c00132{bottom:900.520000pt;}
.y4_c00132{bottom:932.520000pt;}
.y3_c00132{bottom:964.520000pt;}
.y2_c00132{bottom:1011.880000pt;}
.h8_c00132{height:17.116000pt;}
.h6_c00132{height:36.561920pt;}
.h9_c00132{height:41.173333pt;}
.h7_c00132{height:47.360000pt;}
.h5_c00132{height:48.000000pt;}
.h3_c00132{height:49.408000pt;}
.h4_c00132{height:50.928601pt;}
.h2_c00132{height:1067.880000pt;}
.h0_c00132{height:1122.520000pt;}
.h1_c00132{height:1122.666667pt;}
.w6_c00132{width:22.240000pt;}
.w5_c00132{width:535.040000pt;}
.w4_c00132{width:541.120000pt;}
.w3_c00132{width:582.080000pt;}
.w2_c00132{width:767.960000pt;}
.w0_c00132{width:793.720000pt;}
.w1_c00132{width:794.000000pt;}
.x0_c00132{left:0.000000pt;}
.x1_c00132{left:12.880000pt;}
.xa_c00132{left:29.820667pt;}
.x8_c00132{left:36.290267pt;}
.x6_c00132{left:56.623600pt;}
.x2_c00132{left:100.480133pt;}
.x7_c00132{left:104.080000pt;}
.x9_c00132{left:109.520000pt;}
.x5_c00132{left:110.480000pt;}
.x3_c00132{left:133.343733pt;}
.x4_c00132{left:192.879200pt;}
.xb_c00132{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_abe84f9c642fdad9b438aece.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;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_c00133;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:0.787000;font-style:normal;font-weight:normal;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_c6c3566481afa035ab9d824b.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:0.787000;font-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_c00133{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls6_c00133{letter-spacing:0.000000px;}
.ls1_c00133{letter-spacing:0.202464px;}
.ls2_c00133{letter-spacing:0.239160px;}
.ls8_c00133{letter-spacing:0.239760px;}
.ls3_c00133{letter-spacing:0.399600px;}
.ls0_c00133{letter-spacing:0.399720px;}
.ls7_c00133{letter-spacing:0.559440px;}
.ls4_c00133{letter-spacing:5.976000px;}
.ls5_c00133{letter-spacing:6.159920px;}
.sc__c00133{text-shadow:none;}
.sc1_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00133{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc1_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00133{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00133{word-spacing:-15.211440px;}
.ws1_c00133{word-spacing:0.000000px;}
._1_c00133{margin-left:-1.045992px;}
._0_c00133{width:1.333680px;}
.fc1_c00133{color:transparent;}
.fc0_c00133{color:rgb(0,0,0);}
.fs2_c00133{font-size:53.280000px;}
.fs3_c00133{font-size:60.000000px;}
.fs0_c00133{font-size:72.000000px;}
.fs1_c00133{font-size:74.215901px;}
.y0_c00133{bottom:0.000000px;}
.y26_c00133{bottom:3.120150px;}
.y25_c00133{bottom:34.744500px;}
.y24_c00133{bottom:40.680000px;}
.y21_c00133{bottom:41.040000px;}
.y1_c00133{bottom:54.000000px;}
.y1f_c00133{bottom:76.725000px;}
.y20_c00133{bottom:103.365000px;}
.y1e_c00133{bottom:112.725000px;}
.y1d_c00133{bottom:148.725000px;}
.y1c_c00133{bottom:184.725000px;}
.y1b_c00133{bottom:220.725000px;}
.y1a_c00133{bottom:256.725000px;}
.y19_c00133{bottom:292.725000px;}
.y18_c00133{bottom:328.725000px;}
.y17_c00133{bottom:364.725000px;}
.y16_c00133{bottom:400.725000px;}
.y22_c00133{bottom:427.365000px;}
.y15_c00133{bottom:436.725000px;}
.y14_c00133{bottom:472.725000px;}
.y13_c00133{bottom:509.085000px;}
.y12_c00133{bottom:545.085000px;}
.y11_c00133{bottom:581.085000px;}
.y10_c00133{bottom:617.085000px;}
.yf_c00133{bottom:653.085000px;}
.ye_c00133{bottom:689.085000px;}
.yd_c00133{bottom:725.085000px;}
.y23_c00133{bottom:751.365000px;}
.yc_c00133{bottom:761.085000px;}
.yb_c00133{bottom:797.085000px;}
.ya_c00133{bottom:833.085000px;}
.y9_c00133{bottom:869.085000px;}
.y8_c00133{bottom:905.085000px;}
.y7_c00133{bottom:941.085000px;}
.y6_c00133{bottom:977.085000px;}
.y5_c00133{bottom:1013.085000px;}
.y4_c00133{bottom:1049.085000px;}
.y3_c00133{bottom:1085.085000px;}
.y2_c00133{bottom:1138.365000px;}
.h8_c00133{height:19.255500px;}
.h6_c00133{height:41.132160px;}
.h9_c00133{height:46.320000px;}
.h7_c00133{height:53.280000px;}
.h5_c00133{height:54.000000px;}
.h3_c00133{height:55.584000px;}
.h4_c00133{height:57.294676px;}
.h2_c00133{height:1201.365000px;}
.h0_c00133{height:1262.835000px;}
.h1_c00133{height:1263.000000px;}
.w6_c00133{width:25.020000px;}
.w5_c00133{width:594.720000px;}
.w3_c00133{width:627.840000px;}
.w4_c00133{width:655.920000px;}
.w2_c00133{width:863.955000px;}
.w0_c00133{width:892.935000px;}
.w1_c00133{width:893.250000px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:14.490000px;}
.x8_c00133{left:22.863900px;}
.xa_c00133{left:36.529950px;}
.x6_c00133{left:59.752350px;}
.x2_c00133{left:113.040150px;}
.x7_c00133{left:123.210000px;}
.x5_c00133{left:124.290000px;}
.x9_c00133{left:130.410000px;}
.x3_c00133{left:150.011700px;}
.x4_c00133{left:216.989100px;}
.xb_c00133{left:759.915000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls6_c00133{letter-spacing:0.000000pt;}
.ls1_c00133{letter-spacing:0.179968pt;}
.ls2_c00133{letter-spacing:0.212587pt;}
.ls8_c00133{letter-spacing:0.213120pt;}
.ls3_c00133{letter-spacing:0.355200pt;}
.ls0_c00133{letter-spacing:0.355307pt;}
.ls7_c00133{letter-spacing:0.497280pt;}
.ls4_c00133{letter-spacing:5.312000pt;}
.ls5_c00133{letter-spacing:5.475484pt;}
.ws0_c00133{word-spacing:-13.521280pt;}
.ws1_c00133{word-spacing:0.000000pt;}
._1_c00133{margin-left:-0.929771pt;}
._0_c00133{width:1.185493pt;}
.fs2_c00133{font-size:47.360000pt;}
.fs3_c00133{font-size:53.333333pt;}
.fs0_c00133{font-size:64.000000pt;}
.fs1_c00133{font-size:65.969690pt;}
.y0_c00133{bottom:0.000000pt;}
.y26_c00133{bottom:2.773467pt;}
.y25_c00133{bottom:30.884000pt;}
.y24_c00133{bottom:36.160000pt;}
.y21_c00133{bottom:36.480000pt;}
.y1_c00133{bottom:48.000000pt;}
.y1f_c00133{bottom:68.200000pt;}
.y20_c00133{bottom:91.880000pt;}
.y1e_c00133{bottom:100.200000pt;}
.y1d_c00133{bottom:132.200000pt;}
.y1c_c00133{bottom:164.200000pt;}
.y1b_c00133{bottom:196.200000pt;}
.y1a_c00133{bottom:228.200000pt;}
.y19_c00133{bottom:260.200000pt;}
.y18_c00133{bottom:292.200000pt;}
.y17_c00133{bottom:324.200000pt;}
.y16_c00133{bottom:356.200000pt;}
.y22_c00133{bottom:379.880000pt;}
.y15_c00133{bottom:388.200000pt;}
.y14_c00133{bottom:420.200000pt;}
.y13_c00133{bottom:452.520000pt;}
.y12_c00133{bottom:484.520000pt;}
.y11_c00133{bottom:516.520000pt;}
.y10_c00133{bottom:548.520000pt;}
.yf_c00133{bottom:580.520000pt;}
.ye_c00133{bottom:612.520000pt;}
.yd_c00133{bottom:644.520000pt;}
.y23_c00133{bottom:667.880000pt;}
.yc_c00133{bottom:676.520000pt;}
.yb_c00133{bottom:708.520000pt;}
.ya_c00133{bottom:740.520000pt;}
.y9_c00133{bottom:772.520000pt;}
.y8_c00133{bottom:804.520000pt;}
.y7_c00133{bottom:836.520000pt;}
.y6_c00133{bottom:868.520000pt;}
.y5_c00133{bottom:900.520000pt;}
.y4_c00133{bottom:932.520000pt;}
.y3_c00133{bottom:964.520000pt;}
.y2_c00133{bottom:1011.880000pt;}
.h8_c00133{height:17.116000pt;}
.h6_c00133{height:36.561920pt;}
.h9_c00133{height:41.173333pt;}
.h7_c00133{height:47.360000pt;}
.h5_c00133{height:48.000000pt;}
.h3_c00133{height:49.408000pt;}
.h4_c00133{height:50.928601pt;}
.h2_c00133{height:1067.880000pt;}
.h0_c00133{height:1122.520000pt;}
.h1_c00133{height:1122.666667pt;}
.w6_c00133{width:22.240000pt;}
.w5_c00133{width:528.640000pt;}
.w3_c00133{width:558.080000pt;}
.w4_c00133{width:583.040000pt;}
.w2_c00133{width:767.960000pt;}
.w0_c00133{width:793.720000pt;}
.w1_c00133{width:794.000000pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:12.880000pt;}
.x8_c00133{left:20.323467pt;}
.xa_c00133{left:32.471067pt;}
.x6_c00133{left:53.113200pt;}
.x2_c00133{left:100.480133pt;}
.x7_c00133{left:109.520000pt;}
.x5_c00133{left:110.480000pt;}
.x9_c00133{left:115.920000pt;}
.x3_c00133{left:133.343733pt;}
.x4_c00133{left:192.879200pt;}
.xb_c00133{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86506d4056388438ab1cd43e.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;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_c00134;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:0.787000;font-style:normal;font-weight:normal;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_c6c3566481afa035ab9d824b.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:0.787000;font-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_c00134{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls4_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:0.202464px;}
.ls5_c00134{letter-spacing:0.399600px;}
.ls1_c00134{letter-spacing:0.399720px;}
.ls6_c00134{letter-spacing:0.559440px;}
.ls2_c00134{letter-spacing:5.976000px;}
.ls3_c00134{letter-spacing:6.159920px;}
.sc__c00134{text-shadow:none;}
.sc1_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00134{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc1_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00134{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00134{word-spacing:-15.211440px;}
.ws1_c00134{word-spacing:0.000000px;}
._0_c00134{margin-left:-1.046472px;}
._1_c00134{width:1.333680px;}
.fc1_c00134{color:transparent;}
.fc0_c00134{color:rgb(0,0,0);}
.fs2_c00134{font-size:53.280000px;}
.fs3_c00134{font-size:60.000000px;}
.fs0_c00134{font-size:72.000000px;}
.fs1_c00134{font-size:74.215901px;}
.y0_c00134{bottom:0.000000px;}
.y26_c00134{bottom:3.120150px;}
.y25_c00134{bottom:34.744500px;}
.y24_c00134{bottom:40.320000px;}
.y21_c00134{bottom:41.040000px;}
.y1_c00134{bottom:54.000000px;}
.y20_c00134{bottom:76.365000px;}
.y1f_c00134{bottom:76.725000px;}
.y1e_c00134{bottom:112.725000px;}
.y1d_c00134{bottom:148.725000px;}
.y1c_c00134{bottom:184.725000px;}
.y1b_c00134{bottom:220.725000px;}
.y1a_c00134{bottom:256.725000px;}
.y19_c00134{bottom:292.725000px;}
.y18_c00134{bottom:328.725000px;}
.y17_c00134{bottom:364.725000px;}
.y16_c00134{bottom:400.725000px;}
.y22_c00134{bottom:427.365000px;}
.y15_c00134{bottom:436.725000px;}
.y14_c00134{bottom:472.725000px;}
.y13_c00134{bottom:509.085000px;}
.y12_c00134{bottom:545.085000px;}
.y11_c00134{bottom:581.085000px;}
.y10_c00134{bottom:617.085000px;}
.yf_c00134{bottom:653.085000px;}
.ye_c00134{bottom:689.085000px;}
.yd_c00134{bottom:725.085000px;}
.yc_c00134{bottom:761.085000px;}
.y23_c00134{bottom:778.365000px;}
.yb_c00134{bottom:797.085000px;}
.ya_c00134{bottom:833.085000px;}
.y9_c00134{bottom:869.085000px;}
.y8_c00134{bottom:905.085000px;}
.y7_c00134{bottom:941.085000px;}
.y6_c00134{bottom:977.085000px;}
.y5_c00134{bottom:1013.085000px;}
.y4_c00134{bottom:1049.085000px;}
.y3_c00134{bottom:1085.085000px;}
.y2_c00134{bottom:1138.365000px;}
.h8_c00134{height:19.255500px;}
.h6_c00134{height:41.132160px;}
.h9_c00134{height:46.320000px;}
.h7_c00134{height:52.920000px;}
.h5_c00134{height:54.000000px;}
.h3_c00134{height:55.584000px;}
.h4_c00134{height:57.294676px;}
.h2_c00134{height:1201.365000px;}
.h0_c00134{height:1262.835000px;}
.h1_c00134{height:1263.000000px;}
.w6_c00134{width:25.020000px;}
.w4_c00134{width:586.440000px;}
.w3_c00134{width:601.920000px;}
.w5_c00134{width:654.840000px;}
.w2_c00134{width:863.955000px;}
.w0_c00134{width:892.935000px;}
.w1_c00134{width:893.250000px;}
.x0_c00134{left:0.000000px;}
.x9_c00134{left:9.114900px;}
.x1_c00134{left:14.490000px;}
.x8_c00134{left:24.194400px;}
.x6_c00134{left:27.919050px;}
.x2_c00134{left:113.040150px;}
.x5_c00134{left:124.290000px;}
.x7_c00134{left:140.490000px;}
.x3_c00134{left:150.011700px;}
.x4_c00134{left:216.989100px;}
.xa_c00134{left:759.915000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls4_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:0.179968pt;}
.ls5_c00134{letter-spacing:0.355200pt;}
.ls1_c00134{letter-spacing:0.355307pt;}
.ls6_c00134{letter-spacing:0.497280pt;}
.ls2_c00134{letter-spacing:5.312000pt;}
.ls3_c00134{letter-spacing:5.475484pt;}
.ws0_c00134{word-spacing:-13.521280pt;}
.ws1_c00134{word-spacing:0.000000pt;}
._0_c00134{margin-left:-0.930197pt;}
._1_c00134{width:1.185493pt;}
.fs2_c00134{font-size:47.360000pt;}
.fs3_c00134{font-size:53.333333pt;}
.fs0_c00134{font-size:64.000000pt;}
.fs1_c00134{font-size:65.969690pt;}
.y0_c00134{bottom:0.000000pt;}
.y26_c00134{bottom:2.773467pt;}
.y25_c00134{bottom:30.884000pt;}
.y24_c00134{bottom:35.840000pt;}
.y21_c00134{bottom:36.480000pt;}
.y1_c00134{bottom:48.000000pt;}
.y20_c00134{bottom:67.880000pt;}
.y1f_c00134{bottom:68.200000pt;}
.y1e_c00134{bottom:100.200000pt;}
.y1d_c00134{bottom:132.200000pt;}
.y1c_c00134{bottom:164.200000pt;}
.y1b_c00134{bottom:196.200000pt;}
.y1a_c00134{bottom:228.200000pt;}
.y19_c00134{bottom:260.200000pt;}
.y18_c00134{bottom:292.200000pt;}
.y17_c00134{bottom:324.200000pt;}
.y16_c00134{bottom:356.200000pt;}
.y22_c00134{bottom:379.880000pt;}
.y15_c00134{bottom:388.200000pt;}
.y14_c00134{bottom:420.200000pt;}
.y13_c00134{bottom:452.520000pt;}
.y12_c00134{bottom:484.520000pt;}
.y11_c00134{bottom:516.520000pt;}
.y10_c00134{bottom:548.520000pt;}
.yf_c00134{bottom:580.520000pt;}
.ye_c00134{bottom:612.520000pt;}
.yd_c00134{bottom:644.520000pt;}
.yc_c00134{bottom:676.520000pt;}
.y23_c00134{bottom:691.880000pt;}
.yb_c00134{bottom:708.520000pt;}
.ya_c00134{bottom:740.520000pt;}
.y9_c00134{bottom:772.520000pt;}
.y8_c00134{bottom:804.520000pt;}
.y7_c00134{bottom:836.520000pt;}
.y6_c00134{bottom:868.520000pt;}
.y5_c00134{bottom:900.520000pt;}
.y4_c00134{bottom:932.520000pt;}
.y3_c00134{bottom:964.520000pt;}
.y2_c00134{bottom:1011.880000pt;}
.h8_c00134{height:17.116000pt;}
.h6_c00134{height:36.561920pt;}
.h9_c00134{height:41.173333pt;}
.h7_c00134{height:47.040000pt;}
.h5_c00134{height:48.000000pt;}
.h3_c00134{height:49.408000pt;}
.h4_c00134{height:50.928601pt;}
.h2_c00134{height:1067.880000pt;}
.h0_c00134{height:1122.520000pt;}
.h1_c00134{height:1122.666667pt;}
.w6_c00134{width:22.240000pt;}
.w4_c00134{width:521.280000pt;}
.w3_c00134{width:535.040000pt;}
.w5_c00134{width:582.080000pt;}
.w2_c00134{width:767.960000pt;}
.w0_c00134{width:793.720000pt;}
.w1_c00134{width:794.000000pt;}
.x0_c00134{left:0.000000pt;}
.x9_c00134{left:8.102133pt;}
.x1_c00134{left:12.880000pt;}
.x8_c00134{left:21.506133pt;}
.x6_c00134{left:24.816933pt;}
.x2_c00134{left:100.480133pt;}
.x5_c00134{left:110.480000pt;}
.x7_c00134{left:124.880000pt;}
.x3_c00134{left:133.343733pt;}
.x4_c00134{left:192.879200pt;}
.xa_c00134{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f366fffe03d3e86857acb714.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;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_c00135;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:0.787000;font-style:normal;font-weight:normal;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_a4ab2c0003cce8e28002abf5.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:0.787000;font-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_c00135{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls3_c00135{letter-spacing:0.000000px;}
.ls0_c00135{letter-spacing:0.202464px;}
.ls4_c00135{letter-spacing:0.399600px;}
.ls5_c00135{letter-spacing:0.559440px;}
.ls7_c00135{letter-spacing:0.596736px;}
.ls6_c00135{letter-spacing:0.719280px;}
.ls1_c00135{letter-spacing:5.976000px;}
.ls2_c00135{letter-spacing:6.159920px;}
.sc__c00135{text-shadow:none;}
.sc1_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00135{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc1_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00135{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00135{word-spacing:-15.531120px;}
.ws1_c00135{word-spacing:-15.408576px;}
.ws2_c00135{word-spacing:0.000000px;}
._0_c00135{margin-left:-1.046472px;}
.fc0_c00135{color:rgb(0,0,0);}
.fs2_c00135{font-size:53.280000px;}
.fs3_c00135{font-size:60.000000px;}
.fs0_c00135{font-size:72.000000px;}
.fs1_c00135{font-size:74.215901px;}
.y0_c00135{bottom:0.000000px;}
.y27_c00135{bottom:3.120150px;}
.y20_c00135{bottom:14.400000px;}
.y25_c00135{bottom:25.560000px;}
.y26_c00135{bottom:34.744500px;}
.y22_c00135{bottom:41.040000px;}
.y24_c00135{bottom:41.400000px;}
.y1_c00135{bottom:54.000000px;}
.y1e_c00135{bottom:112.725000px;}
.y1d_c00135{bottom:148.725000px;}
.y1f_c00135{bottom:184.365000px;}
.y1c_c00135{bottom:184.725000px;}
.y1b_c00135{bottom:220.725000px;}
.y1a_c00135{bottom:256.725000px;}
.y19_c00135{bottom:292.725000px;}
.y18_c00135{bottom:328.725000px;}
.y17_c00135{bottom:364.725000px;}
.y16_c00135{bottom:400.725000px;}
.y15_c00135{bottom:436.725000px;}
.y21_c00135{bottom:454.365000px;}
.y14_c00135{bottom:472.725000px;}
.y13_c00135{bottom:509.085000px;}
.y12_c00135{bottom:545.085000px;}
.y11_c00135{bottom:581.085000px;}
.y10_c00135{bottom:617.085000px;}
.yf_c00135{bottom:653.085000px;}
.ye_c00135{bottom:689.085000px;}
.yd_c00135{bottom:725.085000px;}
.yc_c00135{bottom:761.085000px;}
.y23_c00135{bottom:782.685000px;}
.yb_c00135{bottom:797.085000px;}
.ya_c00135{bottom:833.085000px;}
.y9_c00135{bottom:869.085000px;}
.y8_c00135{bottom:905.085000px;}
.y7_c00135{bottom:941.085000px;}
.y6_c00135{bottom:977.085000px;}
.y5_c00135{bottom:1013.085000px;}
.y4_c00135{bottom:1049.085000px;}
.y3_c00135{bottom:1085.085000px;}
.y2_c00135{bottom:1138.365000px;}
.h8_c00135{height:19.255500px;}
.h5_c00135{height:27.000000px;}
.h6_c00135{height:41.132160px;}
.h9_c00135{height:46.320000px;}
.h7_c00135{height:54.000000px;}
.h3_c00135{height:55.584000px;}
.h4_c00135{height:57.294676px;}
.h2_c00135{height:1201.365000px;}
.h0_c00135{height:1262.835000px;}
.h1_c00135{height:1263.000000px;}
.w6_c00135{width:25.020000px;}
.w5_c00135{width:546.840000px;}
.w3_c00135{width:556.200000px;}
.w4_c00135{width:573.840000px;}
.w2_c00135{width:863.955000px;}
.w0_c00135{width:892.935000px;}
.w1_c00135{width:893.250000px;}
.x0_c00135{left:0.000000px;}
.x5_c00135{left:8.909100px;}
.x7_c00135{left:10.295550px;}
.x1_c00135{left:14.490000px;}
.x2_c00135{left:113.040150px;}
.x3_c00135{left:150.011700px;}
.x6_c00135{left:151.290000px;}
.x8_c00135{left:214.694700px;}
.x4_c00135{left:216.989100px;}
.x9_c00135{left:759.915000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls3_c00135{letter-spacing:0.000000pt;}
.ls0_c00135{letter-spacing:0.179968pt;}
.ls4_c00135{letter-spacing:0.355200pt;}
.ls5_c00135{letter-spacing:0.497280pt;}
.ls7_c00135{letter-spacing:0.530432pt;}
.ls6_c00135{letter-spacing:0.639360pt;}
.ls1_c00135{letter-spacing:5.312000pt;}
.ls2_c00135{letter-spacing:5.475484pt;}
.ws0_c00135{word-spacing:-13.805440pt;}
.ws1_c00135{word-spacing:-13.696512pt;}
.ws2_c00135{word-spacing:0.000000pt;}
._0_c00135{margin-left:-0.930197pt;}
.fs2_c00135{font-size:47.360000pt;}
.fs3_c00135{font-size:53.333333pt;}
.fs0_c00135{font-size:64.000000pt;}
.fs1_c00135{font-size:65.969690pt;}
.y0_c00135{bottom:0.000000pt;}
.y27_c00135{bottom:2.773467pt;}
.y20_c00135{bottom:12.800000pt;}
.y25_c00135{bottom:22.720000pt;}
.y26_c00135{bottom:30.884000pt;}
.y22_c00135{bottom:36.480000pt;}
.y24_c00135{bottom:36.800000pt;}
.y1_c00135{bottom:48.000000pt;}
.y1e_c00135{bottom:100.200000pt;}
.y1d_c00135{bottom:132.200000pt;}
.y1f_c00135{bottom:163.880000pt;}
.y1c_c00135{bottom:164.200000pt;}
.y1b_c00135{bottom:196.200000pt;}
.y1a_c00135{bottom:228.200000pt;}
.y19_c00135{bottom:260.200000pt;}
.y18_c00135{bottom:292.200000pt;}
.y17_c00135{bottom:324.200000pt;}
.y16_c00135{bottom:356.200000pt;}
.y15_c00135{bottom:388.200000pt;}
.y21_c00135{bottom:403.880000pt;}
.y14_c00135{bottom:420.200000pt;}
.y13_c00135{bottom:452.520000pt;}
.y12_c00135{bottom:484.520000pt;}
.y11_c00135{bottom:516.520000pt;}
.y10_c00135{bottom:548.520000pt;}
.yf_c00135{bottom:580.520000pt;}
.ye_c00135{bottom:612.520000pt;}
.yd_c00135{bottom:644.520000pt;}
.yc_c00135{bottom:676.520000pt;}
.y23_c00135{bottom:695.720000pt;}
.yb_c00135{bottom:708.520000pt;}
.ya_c00135{bottom:740.520000pt;}
.y9_c00135{bottom:772.520000pt;}
.y8_c00135{bottom:804.520000pt;}
.y7_c00135{bottom:836.520000pt;}
.y6_c00135{bottom:868.520000pt;}
.y5_c00135{bottom:900.520000pt;}
.y4_c00135{bottom:932.520000pt;}
.y3_c00135{bottom:964.520000pt;}
.y2_c00135{bottom:1011.880000pt;}
.h8_c00135{height:17.116000pt;}
.h5_c00135{height:24.000000pt;}
.h6_c00135{height:36.561920pt;}
.h9_c00135{height:41.173333pt;}
.h7_c00135{height:48.000000pt;}
.h3_c00135{height:49.408000pt;}
.h4_c00135{height:50.928601pt;}
.h2_c00135{height:1067.880000pt;}
.h0_c00135{height:1122.520000pt;}
.h1_c00135{height:1122.666667pt;}
.w6_c00135{width:22.240000pt;}
.w5_c00135{width:486.080000pt;}
.w3_c00135{width:494.400000pt;}
.w4_c00135{width:510.080000pt;}
.w2_c00135{width:767.960000pt;}
.w0_c00135{width:793.720000pt;}
.w1_c00135{width:794.000000pt;}
.x0_c00135{left:0.000000pt;}
.x5_c00135{left:7.919200pt;}
.x7_c00135{left:9.151600pt;}
.x1_c00135{left:12.880000pt;}
.x2_c00135{left:100.480133pt;}
.x3_c00135{left:133.343733pt;}
.x6_c00135{left:134.480000pt;}
.x8_c00135{left:190.839733pt;}
.x4_c00135{left:192.879200pt;}
.x9_c00135{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c7b2fb001593028ef786e04.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;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_c00136;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:0.787000;font-style:normal;font-weight:normal;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_e51098372bf5b015a2eaf212.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:0.787000;font-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_c00136{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls4_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:0.202464px;}
.ls6_c00136{letter-spacing:0.239760px;}
.ls1_c00136{letter-spacing:0.399600px;}
.ls5_c00136{letter-spacing:0.559440px;}
.ls2_c00136{letter-spacing:5.976000px;}
.ls3_c00136{letter-spacing:6.159920px;}
.sc__c00136{text-shadow:none;}
.sc1_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00136{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc1_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00136{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00136{word-spacing:-15.211440px;}
.ws1_c00136{word-spacing:0.000000px;}
._0_c00136{margin-left:-1.046472px;}
.fc1_c00136{color:transparent;}
.fc0_c00136{color:rgb(0,0,0);}
.fs2_c00136{font-size:53.280000px;}
.fs3_c00136{font-size:60.000000px;}
.fs0_c00136{font-size:72.000000px;}
.fs1_c00136{font-size:74.215901px;}
.y0_c00136{bottom:0.000000px;}
.y27_c00136{bottom:3.120150px;}
.y25_c00136{bottom:16.200000px;}
.y21_c00136{bottom:32.040000px;}
.y26_c00136{bottom:34.744500px;}
.y23_c00136{bottom:41.040000px;}
.y1_c00136{bottom:54.000000px;}
.y1f_c00136{bottom:76.725000px;}
.y20_c00136{bottom:103.365000px;}
.y1e_c00136{bottom:112.725000px;}
.y1d_c00136{bottom:148.725000px;}
.y1c_c00136{bottom:184.725000px;}
.y1b_c00136{bottom:220.725000px;}
.y1a_c00136{bottom:256.725000px;}
.y19_c00136{bottom:292.725000px;}
.y18_c00136{bottom:328.725000px;}
.y17_c00136{bottom:364.725000px;}
.y16_c00136{bottom:400.725000px;}
.y22_c00136{bottom:434.925000px;}
.y15_c00136{bottom:436.725000px;}
.y14_c00136{bottom:472.725000px;}
.y13_c00136{bottom:509.085000px;}
.y12_c00136{bottom:545.085000px;}
.y11_c00136{bottom:581.085000px;}
.y10_c00136{bottom:617.085000px;}
.yf_c00136{bottom:653.085000px;}
.ye_c00136{bottom:689.085000px;}
.yd_c00136{bottom:725.085000px;}
.yc_c00136{bottom:761.085000px;}
.yb_c00136{bottom:797.085000px;}
.y24_c00136{bottom:802.125000px;}
.ya_c00136{bottom:833.085000px;}
.y9_c00136{bottom:869.085000px;}
.y8_c00136{bottom:905.085000px;}
.y7_c00136{bottom:941.085000px;}
.y6_c00136{bottom:977.085000px;}
.y5_c00136{bottom:1013.085000px;}
.y4_c00136{bottom:1049.085000px;}
.y3_c00136{bottom:1085.085000px;}
.y2_c00136{bottom:1138.365000px;}
.h9_c00136{height:19.255500px;}
.h8_c00136{height:28.800000px;}
.h6_c00136{height:41.132160px;}
.h5_c00136{height:45.000000px;}
.ha_c00136{height:46.320000px;}
.h7_c00136{height:54.000000px;}
.h3_c00136{height:55.584000px;}
.h4_c00136{height:57.294676px;}
.h2_c00136{height:1201.365000px;}
.h0_c00136{height:1262.835000px;}
.h1_c00136{height:1263.000000px;}
.w6_c00136{width:25.020000px;}
.w4_c00136{width:601.920000px;}
.w5_c00136{width:605.520000px;}
.w3_c00136{width:605.880000px;}
.w2_c00136{width:863.955000px;}
.w0_c00136{width:892.935000px;}
.w1_c00136{width:893.250000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:14.490000px;}
.x8_c00136{left:31.671900px;}
.x9_c00136{left:33.757050px;}
.x6_c00136{left:37.697550px;}
.x2_c00136{left:113.040150px;}
.x5_c00136{left:119.970000px;}
.x7_c00136{left:127.170000px;}
.x3_c00136{left:150.011700px;}
.x4_c00136{left:216.989100px;}
.xa_c00136{left:759.915000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls4_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:0.179968pt;}
.ls6_c00136{letter-spacing:0.213120pt;}
.ls1_c00136{letter-spacing:0.355200pt;}
.ls5_c00136{letter-spacing:0.497280pt;}
.ls2_c00136{letter-spacing:5.312000pt;}
.ls3_c00136{letter-spacing:5.475484pt;}
.ws0_c00136{word-spacing:-13.521280pt;}
.ws1_c00136{word-spacing:0.000000pt;}
._0_c00136{margin-left:-0.930197pt;}
.fs2_c00136{font-size:47.360000pt;}
.fs3_c00136{font-size:53.333333pt;}
.fs0_c00136{font-size:64.000000pt;}
.fs1_c00136{font-size:65.969690pt;}
.y0_c00136{bottom:0.000000pt;}
.y27_c00136{bottom:2.773467pt;}
.y25_c00136{bottom:14.400000pt;}
.y21_c00136{bottom:28.480000pt;}
.y26_c00136{bottom:30.884000pt;}
.y23_c00136{bottom:36.480000pt;}
.y1_c00136{bottom:48.000000pt;}
.y1f_c00136{bottom:68.200000pt;}
.y20_c00136{bottom:91.880000pt;}
.y1e_c00136{bottom:100.200000pt;}
.y1d_c00136{bottom:132.200000pt;}
.y1c_c00136{bottom:164.200000pt;}
.y1b_c00136{bottom:196.200000pt;}
.y1a_c00136{bottom:228.200000pt;}
.y19_c00136{bottom:260.200000pt;}
.y18_c00136{bottom:292.200000pt;}
.y17_c00136{bottom:324.200000pt;}
.y16_c00136{bottom:356.200000pt;}
.y22_c00136{bottom:386.600000pt;}
.y15_c00136{bottom:388.200000pt;}
.y14_c00136{bottom:420.200000pt;}
.y13_c00136{bottom:452.520000pt;}
.y12_c00136{bottom:484.520000pt;}
.y11_c00136{bottom:516.520000pt;}
.y10_c00136{bottom:548.520000pt;}
.yf_c00136{bottom:580.520000pt;}
.ye_c00136{bottom:612.520000pt;}
.yd_c00136{bottom:644.520000pt;}
.yc_c00136{bottom:676.520000pt;}
.yb_c00136{bottom:708.520000pt;}
.y24_c00136{bottom:713.000000pt;}
.ya_c00136{bottom:740.520000pt;}
.y9_c00136{bottom:772.520000pt;}
.y8_c00136{bottom:804.520000pt;}
.y7_c00136{bottom:836.520000pt;}
.y6_c00136{bottom:868.520000pt;}
.y5_c00136{bottom:900.520000pt;}
.y4_c00136{bottom:932.520000pt;}
.y3_c00136{bottom:964.520000pt;}
.y2_c00136{bottom:1011.880000pt;}
.h9_c00136{height:17.116000pt;}
.h8_c00136{height:25.600000pt;}
.h6_c00136{height:36.561920pt;}
.h5_c00136{height:40.000000pt;}
.ha_c00136{height:41.173333pt;}
.h7_c00136{height:48.000000pt;}
.h3_c00136{height:49.408000pt;}
.h4_c00136{height:50.928601pt;}
.h2_c00136{height:1067.880000pt;}
.h0_c00136{height:1122.520000pt;}
.h1_c00136{height:1122.666667pt;}
.w6_c00136{width:22.240000pt;}
.w4_c00136{width:535.040000pt;}
.w5_c00136{width:538.240000pt;}
.w3_c00136{width:538.560000pt;}
.w2_c00136{width:767.960000pt;}
.w0_c00136{width:793.720000pt;}
.w1_c00136{width:794.000000pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:12.880000pt;}
.x8_c00136{left:28.152800pt;}
.x9_c00136{left:30.006267pt;}
.x6_c00136{left:33.508933pt;}
.x2_c00136{left:100.480133pt;}
.x5_c00136{left:106.640000pt;}
.x7_c00136{left:113.040000pt;}
.x3_c00136{left:133.343733pt;}
.x4_c00136{left:192.879200pt;}
.xa_c00136{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8cb16446113f8cd82cc83b46.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;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_c00137;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_3f3eaca42ca8f318eade56a6.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls5_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:0.202464px;}
.ls2_c00137{letter-spacing:0.238560px;}
.ls8_c00137{letter-spacing:0.239760px;}
.ls1_c00137{letter-spacing:0.399600px;}
.ls6_c00137{letter-spacing:0.559440px;}
.ls7_c00137{letter-spacing:0.719280px;}
.ls3_c00137{letter-spacing:5.976000px;}
.ls4_c00137{letter-spacing:6.159920px;}
.sc__c00137{text-shadow:none;}
.sc1_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00137{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc1_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00137{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00137{word-spacing:-15.531120px;}
.ws1_c00137{word-spacing:-15.211440px;}
.ws2_c00137{word-spacing:0.000000px;}
._0_c00137{margin-left:-1.046472px;}
.fc1_c00137{color:transparent;}
.fc0_c00137{color:rgb(0,0,0);}
.fs2_c00137{font-size:53.280000px;}
.fs3_c00137{font-size:60.000000px;}
.fs0_c00137{font-size:72.000000px;}
.fs1_c00137{font-size:74.215901px;}
.y0_c00137{bottom:0.000000px;}
.y26_c00137{bottom:3.120150px;}
.y25_c00137{bottom:34.744500px;}
.y21_c00137{bottom:40.680000px;}
.y23_c00137{bottom:41.040000px;}
.y1_c00137{bottom:54.000000px;}
.y1f_c00137{bottom:76.725000px;}
.y20_c00137{bottom:95.085000px;}
.y1e_c00137{bottom:112.725000px;}
.y1d_c00137{bottom:148.725000px;}
.y1c_c00137{bottom:184.725000px;}
.y1b_c00137{bottom:220.725000px;}
.y1a_c00137{bottom:256.725000px;}
.y19_c00137{bottom:292.725000px;}
.y18_c00137{bottom:328.725000px;}
.y17_c00137{bottom:364.725000px;}
.y16_c00137{bottom:400.725000px;}
.y15_c00137{bottom:436.725000px;}
.y22_c00137{bottom:442.485000px;}
.y14_c00137{bottom:472.725000px;}
.y13_c00137{bottom:509.085000px;}
.y12_c00137{bottom:545.085000px;}
.y11_c00137{bottom:581.085000px;}
.y10_c00137{bottom:617.085000px;}
.yf_c00137{bottom:653.085000px;}
.ye_c00137{bottom:689.085000px;}
.yd_c00137{bottom:725.085000px;}
.yc_c00137{bottom:761.085000px;}
.y24_c00137{bottom:769.365000px;}
.yb_c00137{bottom:797.085000px;}
.ya_c00137{bottom:833.085000px;}
.y9_c00137{bottom:869.085000px;}
.y8_c00137{bottom:905.085000px;}
.y7_c00137{bottom:941.085000px;}
.y6_c00137{bottom:977.085000px;}
.y5_c00137{bottom:1013.085000px;}
.y4_c00137{bottom:1049.085000px;}
.y3_c00137{bottom:1085.085000px;}
.y2_c00137{bottom:1138.365000px;}
.h8_c00137{height:19.255500px;}
.h6_c00137{height:41.132160px;}
.h9_c00137{height:46.320000px;}
.h5_c00137{height:53.280000px;}
.h7_c00137{height:54.000000px;}
.h3_c00137{height:55.584000px;}
.h4_c00137{height:57.294676px;}
.h2_c00137{height:1201.365000px;}
.h0_c00137{height:1262.835000px;}
.h1_c00137{height:1263.000000px;}
.w6_c00137{width:25.020000px;}
.w4_c00137{width:573.480000px;}
.w3_c00137{width:654.840000px;}
.w5_c00137{width:655.560000px;}
.w2_c00137{width:863.955000px;}
.w0_c00137{width:892.935000px;}
.w1_c00137{width:893.250000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:14.490000px;}
.x8_c00137{left:16.458300px;}
.x9_c00137{left:51.703800px;}
.x6_c00137{left:56.958600px;}
.x2_c00137{left:113.040150px;}
.x5_c00137{left:124.290000px;}
.x7_c00137{left:146.610000px;}
.x3_c00137{left:150.011700px;}
.x4_c00137{left:216.989100px;}
.xa_c00137{left:759.915000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls5_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:0.179968pt;}
.ls2_c00137{letter-spacing:0.212053pt;}
.ls8_c00137{letter-spacing:0.213120pt;}
.ls1_c00137{letter-spacing:0.355200pt;}
.ls6_c00137{letter-spacing:0.497280pt;}
.ls7_c00137{letter-spacing:0.639360pt;}
.ls3_c00137{letter-spacing:5.312000pt;}
.ls4_c00137{letter-spacing:5.475484pt;}
.ws0_c00137{word-spacing:-13.805440pt;}
.ws1_c00137{word-spacing:-13.521280pt;}
.ws2_c00137{word-spacing:0.000000pt;}
._0_c00137{margin-left:-0.930197pt;}
.fs2_c00137{font-size:47.360000pt;}
.fs3_c00137{font-size:53.333333pt;}
.fs0_c00137{font-size:64.000000pt;}
.fs1_c00137{font-size:65.969690pt;}
.y0_c00137{bottom:0.000000pt;}
.y26_c00137{bottom:2.773467pt;}
.y25_c00137{bottom:30.884000pt;}
.y21_c00137{bottom:36.160000pt;}
.y23_c00137{bottom:36.480000pt;}
.y1_c00137{bottom:48.000000pt;}
.y1f_c00137{bottom:68.200000pt;}
.y20_c00137{bottom:84.520000pt;}
.y1e_c00137{bottom:100.200000pt;}
.y1d_c00137{bottom:132.200000pt;}
.y1c_c00137{bottom:164.200000pt;}
.y1b_c00137{bottom:196.200000pt;}
.y1a_c00137{bottom:228.200000pt;}
.y19_c00137{bottom:260.200000pt;}
.y18_c00137{bottom:292.200000pt;}
.y17_c00137{bottom:324.200000pt;}
.y16_c00137{bottom:356.200000pt;}
.y15_c00137{bottom:388.200000pt;}
.y22_c00137{bottom:393.320000pt;}
.y14_c00137{bottom:420.200000pt;}
.y13_c00137{bottom:452.520000pt;}
.y12_c00137{bottom:484.520000pt;}
.y11_c00137{bottom:516.520000pt;}
.y10_c00137{bottom:548.520000pt;}
.yf_c00137{bottom:580.520000pt;}
.ye_c00137{bottom:612.520000pt;}
.yd_c00137{bottom:644.520000pt;}
.yc_c00137{bottom:676.520000pt;}
.y24_c00137{bottom:683.880000pt;}
.yb_c00137{bottom:708.520000pt;}
.ya_c00137{bottom:740.520000pt;}
.y9_c00137{bottom:772.520000pt;}
.y8_c00137{bottom:804.520000pt;}
.y7_c00137{bottom:836.520000pt;}
.y6_c00137{bottom:868.520000pt;}
.y5_c00137{bottom:900.520000pt;}
.y4_c00137{bottom:932.520000pt;}
.y3_c00137{bottom:964.520000pt;}
.y2_c00137{bottom:1011.880000pt;}
.h8_c00137{height:17.116000pt;}
.h6_c00137{height:36.561920pt;}
.h9_c00137{height:41.173333pt;}
.h5_c00137{height:47.360000pt;}
.h7_c00137{height:48.000000pt;}
.h3_c00137{height:49.408000pt;}
.h4_c00137{height:50.928601pt;}
.h2_c00137{height:1067.880000pt;}
.h0_c00137{height:1122.520000pt;}
.h1_c00137{height:1122.666667pt;}
.w6_c00137{width:22.240000pt;}
.w4_c00137{width:509.760000pt;}
.w3_c00137{width:582.080000pt;}
.w5_c00137{width:582.720000pt;}
.w2_c00137{width:767.960000pt;}
.w0_c00137{width:793.720000pt;}
.w1_c00137{width:794.000000pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:12.880000pt;}
.x8_c00137{left:14.629600pt;}
.x9_c00137{left:45.958933pt;}
.x6_c00137{left:50.629867pt;}
.x2_c00137{left:100.480133pt;}
.x5_c00137{left:110.480000pt;}
.x7_c00137{left:130.320000pt;}
.x3_c00137{left:133.343733pt;}
.x4_c00137{left:192.879200pt;}
.xa_c00137{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0513d120e58b59e960d0ff0d.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;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_c00138;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:0.787000;font-style:normal;font-weight:normal;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_159307c5700e277a785f3d52.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:0.787000;font-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_c00138{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls3_c00138{letter-spacing:0.000000px;}
.ls0_c00138{letter-spacing:0.202464px;}
.ls4_c00138{letter-spacing:0.399600px;}
.ls5_c00138{letter-spacing:0.559440px;}
.ls1_c00138{letter-spacing:5.976000px;}
.ls2_c00138{letter-spacing:6.159920px;}
.sc__c00138{text-shadow:none;}
.sc1_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00138{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc1_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00138{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00138{word-spacing:0.000000px;}
._0_c00138{margin-left:-1.046472px;}
._1_c00138{width:1.168776px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs2_c00138{font-size:53.280000px;}
.fs3_c00138{font-size:60.000000px;}
.fs0_c00138{font-size:72.000000px;}
.fs1_c00138{font-size:74.215901px;}
.y0_c00138{bottom:0.000000px;}
.y25_c00138{bottom:3.120150px;}
.y24_c00138{bottom:34.744500px;}
.y23_c00138{bottom:39.600000px;}
.y20_c00138{bottom:41.040000px;}
.y1_c00138{bottom:54.000000px;}
.y1e_c00138{bottom:112.725000px;}
.y1f_c00138{bottom:130.365000px;}
.y1d_c00138{bottom:148.725000px;}
.y1c_c00138{bottom:184.725000px;}
.y1b_c00138{bottom:220.725000px;}
.y1a_c00138{bottom:256.725000px;}
.y19_c00138{bottom:292.725000px;}
.y18_c00138{bottom:328.725000px;}
.y17_c00138{bottom:364.725000px;}
.y16_c00138{bottom:400.725000px;}
.y15_c00138{bottom:436.725000px;}
.y21_c00138{bottom:454.365000px;}
.y14_c00138{bottom:472.725000px;}
.y13_c00138{bottom:509.085000px;}
.y12_c00138{bottom:545.085000px;}
.y11_c00138{bottom:581.085000px;}
.y10_c00138{bottom:617.085000px;}
.yf_c00138{bottom:653.085000px;}
.ye_c00138{bottom:689.085000px;}
.yd_c00138{bottom:725.085000px;}
.yc_c00138{bottom:761.085000px;}
.y22_c00138{bottom:778.365000px;}
.yb_c00138{bottom:797.085000px;}
.ya_c00138{bottom:833.085000px;}
.y9_c00138{bottom:869.085000px;}
.y8_c00138{bottom:905.085000px;}
.y7_c00138{bottom:941.085000px;}
.y6_c00138{bottom:977.085000px;}
.y5_c00138{bottom:1013.085000px;}
.y4_c00138{bottom:1049.085000px;}
.y3_c00138{bottom:1085.085000px;}
.y2_c00138{bottom:1138.365000px;}
.h8_c00138{height:19.255500px;}
.h6_c00138{height:41.132160px;}
.h9_c00138{height:46.320000px;}
.h7_c00138{height:52.200000px;}
.h5_c00138{height:54.000000px;}
.h3_c00138{height:55.584000px;}
.h4_c00138{height:57.294676px;}
.h2_c00138{height:1201.365000px;}
.h0_c00138{height:1262.835000px;}
.h1_c00138{height:1263.000000px;}
.w6_c00138{width:25.020000px;}
.w5_c00138{width:588.240000px;}
.w4_c00138{width:624.240000px;}
.w3_c00138{width:654.840000px;}
.w2_c00138{width:863.955000px;}
.w0_c00138{width:892.935000px;}
.w1_c00138{width:893.250000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:14.490000px;}
.xa_c00138{left:19.980450px;}
.x8_c00138{left:42.809400px;}
.x6_c00138{left:58.072200px;}
.x2_c00138{left:113.040150px;}
.x5_c00138{left:124.290000px;}
.x7_c00138{left:130.770000px;}
.x3_c00138{left:150.011700px;}
.x9_c00138{left:151.290000px;}
.x4_c00138{left:216.989100px;}
.xb_c00138{left:759.915000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls3_c00138{letter-spacing:0.000000pt;}
.ls0_c00138{letter-spacing:0.179968pt;}
.ls4_c00138{letter-spacing:0.355200pt;}
.ls5_c00138{letter-spacing:0.497280pt;}
.ls1_c00138{letter-spacing:5.312000pt;}
.ls2_c00138{letter-spacing:5.475484pt;}
.ws0_c00138{word-spacing:0.000000pt;}
._0_c00138{margin-left:-0.930197pt;}
._1_c00138{width:1.038912pt;}
.fs2_c00138{font-size:47.360000pt;}
.fs3_c00138{font-size:53.333333pt;}
.fs0_c00138{font-size:64.000000pt;}
.fs1_c00138{font-size:65.969690pt;}
.y0_c00138{bottom:0.000000pt;}
.y25_c00138{bottom:2.773467pt;}
.y24_c00138{bottom:30.884000pt;}
.y23_c00138{bottom:35.200000pt;}
.y20_c00138{bottom:36.480000pt;}
.y1_c00138{bottom:48.000000pt;}
.y1e_c00138{bottom:100.200000pt;}
.y1f_c00138{bottom:115.880000pt;}
.y1d_c00138{bottom:132.200000pt;}
.y1c_c00138{bottom:164.200000pt;}
.y1b_c00138{bottom:196.200000pt;}
.y1a_c00138{bottom:228.200000pt;}
.y19_c00138{bottom:260.200000pt;}
.y18_c00138{bottom:292.200000pt;}
.y17_c00138{bottom:324.200000pt;}
.y16_c00138{bottom:356.200000pt;}
.y15_c00138{bottom:388.200000pt;}
.y21_c00138{bottom:403.880000pt;}
.y14_c00138{bottom:420.200000pt;}
.y13_c00138{bottom:452.520000pt;}
.y12_c00138{bottom:484.520000pt;}
.y11_c00138{bottom:516.520000pt;}
.y10_c00138{bottom:548.520000pt;}
.yf_c00138{bottom:580.520000pt;}
.ye_c00138{bottom:612.520000pt;}
.yd_c00138{bottom:644.520000pt;}
.yc_c00138{bottom:676.520000pt;}
.y22_c00138{bottom:691.880000pt;}
.yb_c00138{bottom:708.520000pt;}
.ya_c00138{bottom:740.520000pt;}
.y9_c00138{bottom:772.520000pt;}
.y8_c00138{bottom:804.520000pt;}
.y7_c00138{bottom:836.520000pt;}
.y6_c00138{bottom:868.520000pt;}
.y5_c00138{bottom:900.520000pt;}
.y4_c00138{bottom:932.520000pt;}
.y3_c00138{bottom:964.520000pt;}
.y2_c00138{bottom:1011.880000pt;}
.h8_c00138{height:17.116000pt;}
.h6_c00138{height:36.561920pt;}
.h9_c00138{height:41.173333pt;}
.h7_c00138{height:46.400000pt;}
.h5_c00138{height:48.000000pt;}
.h3_c00138{height:49.408000pt;}
.h4_c00138{height:50.928601pt;}
.h2_c00138{height:1067.880000pt;}
.h0_c00138{height:1122.520000pt;}
.h1_c00138{height:1122.666667pt;}
.w6_c00138{width:22.240000pt;}
.w5_c00138{width:522.880000pt;}
.w4_c00138{width:554.880000pt;}
.w3_c00138{width:582.080000pt;}
.w2_c00138{width:767.960000pt;}
.w0_c00138{width:793.720000pt;}
.w1_c00138{width:794.000000pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:12.880000pt;}
.xa_c00138{left:17.760400pt;}
.x8_c00138{left:38.052800pt;}
.x6_c00138{left:51.619733pt;}
.x2_c00138{left:100.480133pt;}
.x5_c00138{left:110.480000pt;}
.x7_c00138{left:116.240000pt;}
.x3_c00138{left:133.343733pt;}
.x9_c00138{left:134.480000pt;}
.x4_c00138{left:192.879200pt;}
.xb_c00138{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51454c8594d01baeb3a4a8a3.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;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_c00139;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_4ecbfa878a66289fd8602f24.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls3_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:0.202464px;}
.ls4_c00139{letter-spacing:0.399600px;}
.ls5_c00139{letter-spacing:0.559440px;}
.ls1_c00139{letter-spacing:5.976000px;}
.ls2_c00139{letter-spacing:6.159920px;}
.sc__c00139{text-shadow:none;}
.sc1_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00139{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc1_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00139{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00139{word-spacing:0.000000px;}
._0_c00139{margin-left:-1.046472px;}
._1_c00139{width:1.168776px;}
.fc1_c00139{color:transparent;}
.fc0_c00139{color:rgb(0,0,0);}
.fs2_c00139{font-size:53.280000px;}
.fs3_c00139{font-size:60.000000px;}
.fs0_c00139{font-size:72.000000px;}
.fs1_c00139{font-size:74.215901px;}
.y0_c00139{bottom:0.000000px;}
.y27_c00139{bottom:3.120150px;}
.y25_c00139{bottom:18.360000px;}
.y23_c00139{bottom:25.200000px;}
.y26_c00139{bottom:34.744500px;}
.y21_c00139{bottom:41.040000px;}
.y1_c00139{bottom:54.000000px;}
.y1f_c00139{bottom:76.725000px;}
.y1e_c00139{bottom:112.725000px;}
.y20_c00139{bottom:130.365000px;}
.y1d_c00139{bottom:148.725000px;}
.y1c_c00139{bottom:184.725000px;}
.y1b_c00139{bottom:220.725000px;}
.y1a_c00139{bottom:256.725000px;}
.y19_c00139{bottom:292.725000px;}
.y18_c00139{bottom:328.725000px;}
.y17_c00139{bottom:364.725000px;}
.y16_c00139{bottom:400.725000px;}
.y15_c00139{bottom:436.725000px;}
.y22_c00139{bottom:469.485000px;}
.y14_c00139{bottom:472.725000px;}
.y13_c00139{bottom:509.085000px;}
.y12_c00139{bottom:545.085000px;}
.y11_c00139{bottom:581.085000px;}
.y10_c00139{bottom:617.085000px;}
.yf_c00139{bottom:653.085000px;}
.ye_c00139{bottom:689.085000px;}
.yd_c00139{bottom:725.085000px;}
.yc_c00139{bottom:761.085000px;}
.yb_c00139{bottom:797.085000px;}
.y24_c00139{bottom:827.325000px;}
.ya_c00139{bottom:833.085000px;}
.y9_c00139{bottom:869.085000px;}
.y8_c00139{bottom:905.085000px;}
.y7_c00139{bottom:941.085000px;}
.y6_c00139{bottom:977.085000px;}
.y5_c00139{bottom:1013.085000px;}
.y4_c00139{bottom:1049.085000px;}
.y3_c00139{bottom:1085.085000px;}
.y2_c00139{bottom:1138.365000px;}
.h9_c00139{height:19.255500px;}
.h8_c00139{height:30.960000px;}
.h7_c00139{height:37.800000px;}
.h6_c00139{height:41.132160px;}
.ha_c00139{height:46.320000px;}
.h5_c00139{height:54.000000px;}
.h3_c00139{height:55.584000px;}
.h4_c00139{height:57.294676px;}
.h2_c00139{height:1201.365000px;}
.h0_c00139{height:1262.835000px;}
.h1_c00139{height:1263.000000px;}
.w6_c00139{width:25.020000px;}
.w4_c00139{width:600.120000px;}
.w3_c00139{width:627.840000px;}
.w5_c00139{width:628.920000px;}
.w2_c00139{width:863.955000px;}
.w0_c00139{width:892.935000px;}
.w1_c00139{width:893.250000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:14.490000px;}
.x8_c00139{left:38.487900px;}
.x6_c00139{left:46.448700px;}
.xa_c00139{left:49.666950px;}
.x2_c00139{left:113.040150px;}
.x9_c00139{left:123.210000px;}
.x5_c00139{left:124.290000px;}
.x3_c00139{left:150.011700px;}
.x7_c00139{left:152.010000px;}
.x4_c00139{left:216.989100px;}
.xb_c00139{left:759.915000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls3_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:0.179968pt;}
.ls4_c00139{letter-spacing:0.355200pt;}
.ls5_c00139{letter-spacing:0.497280pt;}
.ls1_c00139{letter-spacing:5.312000pt;}
.ls2_c00139{letter-spacing:5.475484pt;}
.ws0_c00139{word-spacing:0.000000pt;}
._0_c00139{margin-left:-0.930197pt;}
._1_c00139{width:1.038912pt;}
.fs2_c00139{font-size:47.360000pt;}
.fs3_c00139{font-size:53.333333pt;}
.fs0_c00139{font-size:64.000000pt;}
.fs1_c00139{font-size:65.969690pt;}
.y0_c00139{bottom:0.000000pt;}
.y27_c00139{bottom:2.773467pt;}
.y25_c00139{bottom:16.320000pt;}
.y23_c00139{bottom:22.400000pt;}
.y26_c00139{bottom:30.884000pt;}
.y21_c00139{bottom:36.480000pt;}
.y1_c00139{bottom:48.000000pt;}
.y1f_c00139{bottom:68.200000pt;}
.y1e_c00139{bottom:100.200000pt;}
.y20_c00139{bottom:115.880000pt;}
.y1d_c00139{bottom:132.200000pt;}
.y1c_c00139{bottom:164.200000pt;}
.y1b_c00139{bottom:196.200000pt;}
.y1a_c00139{bottom:228.200000pt;}
.y19_c00139{bottom:260.200000pt;}
.y18_c00139{bottom:292.200000pt;}
.y17_c00139{bottom:324.200000pt;}
.y16_c00139{bottom:356.200000pt;}
.y15_c00139{bottom:388.200000pt;}
.y22_c00139{bottom:417.320000pt;}
.y14_c00139{bottom:420.200000pt;}
.y13_c00139{bottom:452.520000pt;}
.y12_c00139{bottom:484.520000pt;}
.y11_c00139{bottom:516.520000pt;}
.y10_c00139{bottom:548.520000pt;}
.yf_c00139{bottom:580.520000pt;}
.ye_c00139{bottom:612.520000pt;}
.yd_c00139{bottom:644.520000pt;}
.yc_c00139{bottom:676.520000pt;}
.yb_c00139{bottom:708.520000pt;}
.y24_c00139{bottom:735.400000pt;}
.ya_c00139{bottom:740.520000pt;}
.y9_c00139{bottom:772.520000pt;}
.y8_c00139{bottom:804.520000pt;}
.y7_c00139{bottom:836.520000pt;}
.y6_c00139{bottom:868.520000pt;}
.y5_c00139{bottom:900.520000pt;}
.y4_c00139{bottom:932.520000pt;}
.y3_c00139{bottom:964.520000pt;}
.y2_c00139{bottom:1011.880000pt;}
.h9_c00139{height:17.116000pt;}
.h8_c00139{height:27.520000pt;}
.h7_c00139{height:33.600000pt;}
.h6_c00139{height:36.561920pt;}
.ha_c00139{height:41.173333pt;}
.h5_c00139{height:48.000000pt;}
.h3_c00139{height:49.408000pt;}
.h4_c00139{height:50.928601pt;}
.h2_c00139{height:1067.880000pt;}
.h0_c00139{height:1122.520000pt;}
.h1_c00139{height:1122.666667pt;}
.w6_c00139{width:22.240000pt;}
.w4_c00139{width:533.440000pt;}
.w3_c00139{width:558.080000pt;}
.w5_c00139{width:559.040000pt;}
.w2_c00139{width:767.960000pt;}
.w0_c00139{width:793.720000pt;}
.w1_c00139{width:794.000000pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:12.880000pt;}
.x8_c00139{left:34.211467pt;}
.x6_c00139{left:41.287733pt;}
.xa_c00139{left:44.148400pt;}
.x2_c00139{left:100.480133pt;}
.x9_c00139{left:109.520000pt;}
.x5_c00139{left:110.480000pt;}
.x3_c00139{left:133.343733pt;}
.x7_c00139{left:135.120000pt;}
.x4_c00139{left:192.879200pt;}
.xb_c00139{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0207685ecb91f9eb7181c36.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;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_c00140;src:url('chunks/assets/font_2f24e7dee3c306fd6f3b5bb8.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_da9fda8f10ee96e8040dfaaa.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls9_c00140{letter-spacing:0.000000px;}
.ls1_c00140{letter-spacing:0.200160px;}
.ls4_c00140{letter-spacing:0.202464px;}
.ls3_c00140{letter-spacing:0.238560px;}
.ls6_c00140{letter-spacing:0.239160px;}
.lsc_c00140{letter-spacing:0.239760px;}
.lsa_c00140{letter-spacing:0.282384px;}
.ls0_c00140{letter-spacing:0.399600px;}
.ls5_c00140{letter-spacing:0.399720px;}
.ls2_c00140{letter-spacing:0.415584px;}
.lsb_c00140{letter-spacing:0.559440px;}
.ls7_c00140{letter-spacing:5.976000px;}
.ls8_c00140{letter-spacing:6.159920px;}
.sc__c00140{text-shadow:none;}
.sc1_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00140{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc1_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00140{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00140{word-spacing:-15.211440px;}
.ws1_c00140{word-spacing:-15.094224px;}
.ws2_c00140{word-spacing:0.000000px;}
._0_c00140{margin-left:-1.118880px;}
._1_c00140{width:1.172760px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs2_c00140{font-size:53.280000px;}
.fs3_c00140{font-size:60.000000px;}
.fs0_c00140{font-size:72.000000px;}
.fs1_c00140{font-size:74.215901px;}
.y0_c00140{bottom:0.000000px;}
.y23_c00140{bottom:3.120150px;}
.y1d_c00140{bottom:25.560000px;}
.y22_c00140{bottom:34.744500px;}
.y21_c00140{bottom:41.040000px;}
.y1c_c00140{bottom:41.400000px;}
.y1f_c00140{bottom:41.760000px;}
.y1_c00140{bottom:54.000000px;}
.y1b_c00140{bottom:130.365000px;}
.y1a_c00140{bottom:256.725000px;}
.y19_c00140{bottom:292.725000px;}
.y18_c00140{bottom:328.725000px;}
.y17_c00140{bottom:364.725000px;}
.y16_c00140{bottom:400.725000px;}
.y15_c00140{bottom:436.725000px;}
.y14_c00140{bottom:472.725000px;}
.y1e_c00140{bottom:481.005000px;}
.y13_c00140{bottom:509.085000px;}
.y12_c00140{bottom:545.085000px;}
.y11_c00140{bottom:581.085000px;}
.y10_c00140{bottom:617.085000px;}
.yf_c00140{bottom:653.085000px;}
.ye_c00140{bottom:689.085000px;}
.yd_c00140{bottom:725.085000px;}
.yc_c00140{bottom:761.085000px;}
.yb_c00140{bottom:797.085000px;}
.y20_c00140{bottom:805.365000px;}
.ya_c00140{bottom:833.085000px;}
.y9_c00140{bottom:869.085000px;}
.y8_c00140{bottom:905.085000px;}
.y7_c00140{bottom:941.085000px;}
.y6_c00140{bottom:977.085000px;}
.y5_c00140{bottom:1013.085000px;}
.y4_c00140{bottom:1049.085000px;}
.y3_c00140{bottom:1085.085000px;}
.y2_c00140{bottom:1138.365000px;}
.h8_c00140{height:19.255500px;}
.h6_c00140{height:41.132160px;}
.h9_c00140{height:46.320000px;}
.h5_c00140{height:54.000000px;}
.h7_c00140{height:54.360000px;}
.h3_c00140{height:55.584000px;}
.h4_c00140{height:57.294676px;}
.h2_c00140{height:1201.365000px;}
.h0_c00140{height:1262.835000px;}
.h1_c00140{height:1263.000000px;}
.w6_c00140{width:25.020000px;}
.w3_c00140{width:601.560000px;}
.w5_c00140{width:612.000000px;}
.w4_c00140{width:654.840000px;}
.w2_c00140{width:863.955000px;}
.w0_c00140{width:892.935000px;}
.w1_c00140{width:893.250000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:14.490000px;}
.x6_c00140{left:35.031300px;}
.xb_c00140{left:36.696900px;}
.x9_c00140{left:54.319200px;}
.x2_c00140{left:113.040150px;}
.x8_c00140{left:124.290000px;}
.xa_c00140{left:140.130000px;}
.x3_c00140{left:150.011700px;}
.x5_c00140{left:151.290000px;}
.x4_c00140{left:216.989100px;}
.x7_c00140{left:251.802900px;}
.xc_c00140{left:759.915000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls9_c00140{letter-spacing:0.000000pt;}
.ls1_c00140{letter-spacing:0.177920pt;}
.ls4_c00140{letter-spacing:0.179968pt;}
.ls3_c00140{letter-spacing:0.212053pt;}
.ls6_c00140{letter-spacing:0.212587pt;}
.lsc_c00140{letter-spacing:0.213120pt;}
.lsa_c00140{letter-spacing:0.251008pt;}
.ls0_c00140{letter-spacing:0.355200pt;}
.ls5_c00140{letter-spacing:0.355307pt;}
.ls2_c00140{letter-spacing:0.369408pt;}
.lsb_c00140{letter-spacing:0.497280pt;}
.ls7_c00140{letter-spacing:5.312000pt;}
.ls8_c00140{letter-spacing:5.475484pt;}
.ws0_c00140{word-spacing:-13.521280pt;}
.ws1_c00140{word-spacing:-13.417088pt;}
.ws2_c00140{word-spacing:0.000000pt;}
._0_c00140{margin-left:-0.994560pt;}
._1_c00140{width:1.042453pt;}
.fs2_c00140{font-size:47.360000pt;}
.fs3_c00140{font-size:53.333333pt;}
.fs0_c00140{font-size:64.000000pt;}
.fs1_c00140{font-size:65.969690pt;}
.y0_c00140{bottom:0.000000pt;}
.y23_c00140{bottom:2.773467pt;}
.y1d_c00140{bottom:22.720000pt;}
.y22_c00140{bottom:30.884000pt;}
.y21_c00140{bottom:36.480000pt;}
.y1c_c00140{bottom:36.800000pt;}
.y1f_c00140{bottom:37.120000pt;}
.y1_c00140{bottom:48.000000pt;}
.y1b_c00140{bottom:115.880000pt;}
.y1a_c00140{bottom:228.200000pt;}
.y19_c00140{bottom:260.200000pt;}
.y18_c00140{bottom:292.200000pt;}
.y17_c00140{bottom:324.200000pt;}
.y16_c00140{bottom:356.200000pt;}
.y15_c00140{bottom:388.200000pt;}
.y14_c00140{bottom:420.200000pt;}
.y1e_c00140{bottom:427.560000pt;}
.y13_c00140{bottom:452.520000pt;}
.y12_c00140{bottom:484.520000pt;}
.y11_c00140{bottom:516.520000pt;}
.y10_c00140{bottom:548.520000pt;}
.yf_c00140{bottom:580.520000pt;}
.ye_c00140{bottom:612.520000pt;}
.yd_c00140{bottom:644.520000pt;}
.yc_c00140{bottom:676.520000pt;}
.yb_c00140{bottom:708.520000pt;}
.y20_c00140{bottom:715.880000pt;}
.ya_c00140{bottom:740.520000pt;}
.y9_c00140{bottom:772.520000pt;}
.y8_c00140{bottom:804.520000pt;}
.y7_c00140{bottom:836.520000pt;}
.y6_c00140{bottom:868.520000pt;}
.y5_c00140{bottom:900.520000pt;}
.y4_c00140{bottom:932.520000pt;}
.y3_c00140{bottom:964.520000pt;}
.y2_c00140{bottom:1011.880000pt;}
.h8_c00140{height:17.116000pt;}
.h6_c00140{height:36.561920pt;}
.h9_c00140{height:41.173333pt;}
.h5_c00140{height:48.000000pt;}
.h7_c00140{height:48.320000pt;}
.h3_c00140{height:49.408000pt;}
.h4_c00140{height:50.928601pt;}
.h2_c00140{height:1067.880000pt;}
.h0_c00140{height:1122.520000pt;}
.h1_c00140{height:1122.666667pt;}
.w6_c00140{width:22.240000pt;}
.w3_c00140{width:534.720000pt;}
.w5_c00140{width:544.000000pt;}
.w4_c00140{width:582.080000pt;}
.w2_c00140{width:767.960000pt;}
.w0_c00140{width:793.720000pt;}
.w1_c00140{width:794.000000pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:12.880000pt;}
.x6_c00140{left:31.138933pt;}
.xb_c00140{left:32.619467pt;}
.x9_c00140{left:48.283733pt;}
.x2_c00140{left:100.480133pt;}
.x8_c00140{left:110.480000pt;}
.xa_c00140{left:124.560000pt;}
.x3_c00140{left:133.343733pt;}
.x5_c00140{left:134.480000pt;}
.x4_c00140{left:192.879200pt;}
.x7_c00140{left:223.824800pt;}
.xc_c00140{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b6e262a9963742a18297a47.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_3fc2d152eeda87bdab1f7ccb.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;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:ff3_c00141;src:url('chunks/assets/font_40e4047e555c5d0a3328f81f.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00141{vertical-align:-30.240000px;}
.v3_c00141{vertical-align:-24.480000px;}
.v0_c00141{vertical-align:0.000000px;}
.v1_c00141{vertical-align:30.240000px;}
.lsc_c00141{letter-spacing:0.000000px;}
.ls4_c00141{letter-spacing:0.027840px;}
.ls10_c00141{letter-spacing:0.265680px;}
.ls12_c00141{letter-spacing:0.318816px;}
.ls13_c00141{letter-spacing:0.425088px;}
.ls9_c00141{letter-spacing:0.438171px;}
.lsb_c00141{letter-spacing:0.513648px;}
.ls8_c00141{letter-spacing:0.531360px;}
.ls6_c00141{letter-spacing:0.707040px;}
.lsa_c00141{letter-spacing:0.712027px;}
.ls5_c00141{letter-spacing:0.770640px;}
.lsd_c00141{letter-spacing:5.245344px;}
.ls2_c00141{letter-spacing:5.313840px;}
.ls1_c00141{letter-spacing:5.406777px;}
.lse_c00141{letter-spacing:5.430672px;}
.ls3_c00141{letter-spacing:5.976000px;}
.ls7_c00141{letter-spacing:6.005400px;}
.ls0_c00141{letter-spacing:6.159920px;}
.lsf_c00141{letter-spacing:10.728000px;}
.ls11_c00141{letter-spacing:11.571840px;}
.sc__c00141{text-shadow:none;}
.sc1_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00141{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc1_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00141{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00141{word-spacing:-21.499753px;}
.ws2_c00141{word-spacing:-21.043152px;}
.ws1_c00141{word-spacing:-20.016000px;}
.ws5_c00141{word-spacing:-17.630284px;}
.ws3_c00141{word-spacing:-11.609280px;}
.ws4_c00141{word-spacing:-10.008000px;}
.ws6_c00141{word-spacing:0.000000px;}
._e_c00141{margin-left:-11.800800px;}
._a_c00141{margin-left:-10.728000px;}
._d_c00141{margin-left:-1.001400px;}
._5_c00141{width:1.296000px;}
._0_c00141{width:3.024000px;}
._c_c00141{width:4.320000px;}
._f_c00141{width:5.631600px;}
._4_c00141{width:7.056000px;}
._8_c00141{width:8.208000px;}
._9_c00141{width:10.728000px;}
._b_c00141{width:12.096000px;}
._7_c00141{width:14.112000px;}
._1_c00141{width:15.264000px;}
._2_c00141{width:17.064000px;}
._6_c00141{width:18.144000px;}
._3_c00141{width:41.904000px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs5_c00141{font-size:36.000000px;}
.fs4_c00141{font-size:41.760000px;}
.fs3_c00141{font-size:56.160000px;}
.fs2_c00141{font-size:57.888403px;}
.fs6_c00141{font-size:59.040000px;}
.fs8_c00141{font-size:60.000000px;}
.fs7_c00141{font-size:60.857039px;}
.fs0_c00141{font-size:72.000000px;}
.fs1_c00141{font-size:74.215901px;}
.y0_c00141{bottom:0.000000px;}
.y2e_c00141{bottom:3.120150px;}
.y2d_c00141{bottom:34.744500px;}
.y1_c00141{bottom:54.000000px;}
.y2b_c00141{bottom:55.481040px;}
.y2c_c00141{bottom:55.485000px;}
.y2a_c00141{bottom:72.765000px;}
.y29_c00141{bottom:72.766800px;}
.y28_c00141{bottom:96.525000px;}
.y27_c00141{bottom:113.805000px;}
.y26_c00141{bottom:131.445000px;}
.y25_c00141{bottom:149.085000px;}
.y24_c00141{bottom:175.725000px;}
.y23_c00141{bottom:220.725000px;}
.y22_c00141{bottom:249.165000px;}
.y21_c00141{bottom:277.965000px;}
.y20_c00141{bottom:298.845000px;}
.y1f_c00141{bottom:327.285000px;}
.y1e_c00141{bottom:355.725000px;}
.y1d_c00141{bottom:376.965000px;}
.y1c_c00141{bottom:412.965000px;}
.y1b_c00141{bottom:448.965000px;}
.y1a_c00141{bottom:484.965000px;}
.y19_c00141{bottom:520.965000px;}
.y18_c00141{bottom:556.965000px;}
.y16_c00141{bottom:577.845000px;}
.y17_c00141{bottom:585.405000px;}
.y15_c00141{bottom:598.725000px;}
.y14_c00141{bottom:619.965000px;}
.y13_c00141{bottom:640.845000px;}
.y12_c00141{bottom:676.845000px;}
.y11_c00141{bottom:698.085000px;}
.y10_c00141{bottom:718.965000px;}
.yf_c00141{bottom:739.845000px;}
.ye_c00141{bottom:761.085000px;}
.yd_c00141{bottom:781.965000px;}
.yc_c00141{bottom:802.845000px;}
.yb_c00141{bottom:824.085000px;}
.ya_c00141{bottom:860.085000px;}
.y9_c00141{bottom:896.085000px;}
.y8_c00141{bottom:934.245000px;}
.y7_c00141{bottom:970.965000px;}
.y6_c00141{bottom:1006.965000px;}
.y5_c00141{bottom:1027.845000px;}
.y4_c00141{bottom:1049.085000px;}
.y3_c00141{bottom:1085.085000px;}
.y2_c00141{bottom:1138.365000px;}
.ha_c00141{height:19.255500px;}
.h7_c00141{height:32.616000px;}
.h6_c00141{height:37.834560px;}
.hb_c00141{height:46.320000px;}
.h9_c00141{height:46.981634px;}
.h8_c00141{height:53.490240px;}
.h4_c00141{height:57.294676px;}
.h3_c00141{height:65.232000px;}
.h5_c00141{height:68.074560px;}
.h2_c00141{height:1201.365000px;}
.h0_c00141{height:1262.835000px;}
.h1_c00141{height:1263.000000px;}
.w3_c00141{width:25.020000px;}
.w2_c00141{width:863.955000px;}
.w0_c00141{width:892.935000px;}
.w1_c00141{width:893.250000px;}
.x0_c00141{left:0.000000px;}
.x1_c00141{left:14.490000px;}
.x2_c00141{left:113.040150px;}
.x1e_c00141{left:140.549250px;}
.x3_c00141{left:150.011700px;}
.x5_c00141{left:160.329300px;}
.x9_c00141{left:172.024950px;}
.x1f_c00141{left:173.038650px;}
.x4_c00141{left:194.975100px;}
.xa_c00141{left:211.012650px;}
.x11_c00141{left:235.268250px;}
.xd_c00141{left:243.964650px;}
.x6_c00141{left:247.048050px;}
.x7_c00141{left:286.035600px;}
.x12_c00141{left:293.281050px;}
.xe_c00141{left:301.977450px;}
.x1a_c00141{left:304.070100px;}
.x14_c00141{left:319.047000px;}
.x1b_c00141{left:320.769300px;}
.x20_c00141{left:340.567350px;}
.x15_c00141{left:348.044250px;}
.x21_c00141{left:351.397050px;}
.x18_c00141{left:355.135950px;}
.x19_c00141{left:413.148900px;}
.x8_c00141{left:416.478150px;}
.x1c_c00141{left:440.090400px;}
.x13_c00141{left:456.120000px;}
.xf_c00141{left:468.206850px;}
.x1d_c00141{left:475.924800px;}
.x10_c00141{left:507.194400px;}
.x22_c00141{left:549.779700px;}
.x16_c00141{left:552.143550px;}
.x23_c00141{left:569.773650px;}
.x17_c00141{left:594.100650px;}
.xb_c00141{left:608.050050px;}
.xc_c00141{left:666.063000px;}
.x24_c00141{left:674.829750px;}
.x25_c00141{left:759.915000px;}
@media print{
.v2_c00141{vertical-align:-26.880000pt;}
.v3_c00141{vertical-align:-21.760000pt;}
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:26.880000pt;}
.lsc_c00141{letter-spacing:0.000000pt;}
.ls4_c00141{letter-spacing:0.024747pt;}
.ls10_c00141{letter-spacing:0.236160pt;}
.ls12_c00141{letter-spacing:0.283392pt;}
.ls13_c00141{letter-spacing:0.377856pt;}
.ls9_c00141{letter-spacing:0.389485pt;}
.lsb_c00141{letter-spacing:0.456576pt;}
.ls8_c00141{letter-spacing:0.472320pt;}
.ls6_c00141{letter-spacing:0.628480pt;}
.lsa_c00141{letter-spacing:0.632913pt;}
.ls5_c00141{letter-spacing:0.685013pt;}
.lsd_c00141{letter-spacing:4.662528pt;}
.ls2_c00141{letter-spacing:4.723413pt;}
.ls1_c00141{letter-spacing:4.806024pt;}
.lse_c00141{letter-spacing:4.827264pt;}
.ls3_c00141{letter-spacing:5.312000pt;}
.ls7_c00141{letter-spacing:5.338133pt;}
.ls0_c00141{letter-spacing:5.475484pt;}
.lsf_c00141{letter-spacing:9.536000pt;}
.ls11_c00141{letter-spacing:10.286080pt;}
.ws0_c00141{word-spacing:-19.110891pt;}
.ws2_c00141{word-spacing:-18.705024pt;}
.ws1_c00141{word-spacing:-17.792000pt;}
.ws5_c00141{word-spacing:-15.671364pt;}
.ws3_c00141{word-spacing:-10.319360pt;}
.ws4_c00141{word-spacing:-8.896000pt;}
.ws6_c00141{word-spacing:0.000000pt;}
._e_c00141{margin-left:-10.489600pt;}
._a_c00141{margin-left:-9.536000pt;}
._d_c00141{margin-left:-0.890133pt;}
._5_c00141{width:1.152000pt;}
._0_c00141{width:2.688000pt;}
._c_c00141{width:3.840000pt;}
._f_c00141{width:5.005867pt;}
._4_c00141{width:6.272000pt;}
._8_c00141{width:7.296000pt;}
._9_c00141{width:9.536000pt;}
._b_c00141{width:10.752000pt;}
._7_c00141{width:12.544000pt;}
._1_c00141{width:13.568000pt;}
._2_c00141{width:15.168000pt;}
._6_c00141{width:16.128000pt;}
._3_c00141{width:37.248000pt;}
.fs5_c00141{font-size:32.000000pt;}
.fs4_c00141{font-size:37.120000pt;}
.fs3_c00141{font-size:49.920000pt;}
.fs2_c00141{font-size:51.456358pt;}
.fs6_c00141{font-size:52.480000pt;}
.fs8_c00141{font-size:53.333333pt;}
.fs7_c00141{font-size:54.095146pt;}
.fs0_c00141{font-size:64.000000pt;}
.fs1_c00141{font-size:65.969690pt;}
.y0_c00141{bottom:0.000000pt;}
.y2e_c00141{bottom:2.773467pt;}
.y2d_c00141{bottom:30.884000pt;}
.y1_c00141{bottom:48.000000pt;}
.y2b_c00141{bottom:49.316480pt;}
.y2c_c00141{bottom:49.320000pt;}
.y2a_c00141{bottom:64.680000pt;}
.y29_c00141{bottom:64.681600pt;}
.y28_c00141{bottom:85.800000pt;}
.y27_c00141{bottom:101.160000pt;}
.y26_c00141{bottom:116.840000pt;}
.y25_c00141{bottom:132.520000pt;}
.y24_c00141{bottom:156.200000pt;}
.y23_c00141{bottom:196.200000pt;}
.y22_c00141{bottom:221.480000pt;}
.y21_c00141{bottom:247.080000pt;}
.y20_c00141{bottom:265.640000pt;}
.y1f_c00141{bottom:290.920000pt;}
.y1e_c00141{bottom:316.200000pt;}
.y1d_c00141{bottom:335.080000pt;}
.y1c_c00141{bottom:367.080000pt;}
.y1b_c00141{bottom:399.080000pt;}
.y1a_c00141{bottom:431.080000pt;}
.y19_c00141{bottom:463.080000pt;}
.y18_c00141{bottom:495.080000pt;}
.y16_c00141{bottom:513.640000pt;}
.y17_c00141{bottom:520.360000pt;}
.y15_c00141{bottom:532.200000pt;}
.y14_c00141{bottom:551.080000pt;}
.y13_c00141{bottom:569.640000pt;}
.y12_c00141{bottom:601.640000pt;}
.y11_c00141{bottom:620.520000pt;}
.y10_c00141{bottom:639.080000pt;}
.yf_c00141{bottom:657.640000pt;}
.ye_c00141{bottom:676.520000pt;}
.yd_c00141{bottom:695.080000pt;}
.yc_c00141{bottom:713.640000pt;}
.yb_c00141{bottom:732.520000pt;}
.ya_c00141{bottom:764.520000pt;}
.y9_c00141{bottom:796.520000pt;}
.y8_c00141{bottom:830.440000pt;}
.y7_c00141{bottom:863.080000pt;}
.y6_c00141{bottom:895.080000pt;}
.y5_c00141{bottom:913.640000pt;}
.y4_c00141{bottom:932.520000pt;}
.y3_c00141{bottom:964.520000pt;}
.y2_c00141{bottom:1011.880000pt;}
.ha_c00141{height:17.116000pt;}
.h7_c00141{height:28.992000pt;}
.h6_c00141{height:33.630720pt;}
.hb_c00141{height:41.173333pt;}
.h9_c00141{height:41.761453pt;}
.h8_c00141{height:47.546880pt;}
.h4_c00141{height:50.928601pt;}
.h3_c00141{height:57.984000pt;}
.h5_c00141{height:60.510720pt;}
.h2_c00141{height:1067.880000pt;}
.h0_c00141{height:1122.520000pt;}
.h1_c00141{height:1122.666667pt;}
.w3_c00141{width:22.240000pt;}
.w2_c00141{width:767.960000pt;}
.w0_c00141{width:793.720000pt;}
.w1_c00141{width:794.000000pt;}
.x0_c00141{left:0.000000pt;}
.x1_c00141{left:12.880000pt;}
.x2_c00141{left:100.480133pt;}
.x1e_c00141{left:124.932667pt;}
.x3_c00141{left:133.343733pt;}
.x5_c00141{left:142.514933pt;}
.x9_c00141{left:152.911067pt;}
.x1f_c00141{left:153.812133pt;}
.x4_c00141{left:173.311200pt;}
.xa_c00141{left:187.566800pt;}
.x11_c00141{left:209.127333pt;}
.xd_c00141{left:216.857467pt;}
.x6_c00141{left:219.598267pt;}
.x7_c00141{left:254.253867pt;}
.x12_c00141{left:260.694267pt;}
.xe_c00141{left:268.424400pt;}
.x1a_c00141{left:270.284533pt;}
.x14_c00141{left:283.597333pt;}
.x1b_c00141{left:285.128267pt;}
.x20_c00141{left:302.726533pt;}
.x15_c00141{left:309.372667pt;}
.x21_c00141{left:312.352933pt;}
.x18_c00141{left:315.676400pt;}
.x19_c00141{left:367.243467pt;}
.x8_c00141{left:370.202800pt;}
.x1c_c00141{left:391.191467pt;}
.x13_c00141{left:405.440000pt;}
.xf_c00141{left:416.183867pt;}
.x1d_c00141{left:423.044267pt;}
.x10_c00141{left:450.839467pt;}
.x22_c00141{left:488.693067pt;}
.x16_c00141{left:490.794267pt;}
.x23_c00141{left:506.465467pt;}
.x17_c00141{left:528.089467pt;}
.xb_c00141{left:540.488933pt;}
.xc_c00141{left:592.056000pt;}
.x24_c00141{left:599.848667pt;}
.x25_c00141{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0c36413cf1dcad245df644d8.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_708793952f89690a0bae585e.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;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:ff3_c00142;src:url('chunks/assets/font_1cc6d99e75cc0ecc814b74e6.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_02f13c712827b698b0e624d5.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00142{vertical-align:-30.240000px;}
.v3_c00142{vertical-align:-24.480000px;}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:30.240000px;}
.ls5_c00142{letter-spacing:0.000000px;}
.ls7_c00142{letter-spacing:0.265680px;}
.ls1_c00142{letter-spacing:0.441240px;}
.ls6_c00142{letter-spacing:5.430672px;}
.ls0_c00142{letter-spacing:5.976000px;}
.ls4_c00142{letter-spacing:6.159920px;}
.ls2_c00142{letter-spacing:10.728000px;}
.ls3_c00142{letter-spacing:18.288000px;}
.sc__c00142{text-shadow:none;}
.sc1_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00142{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc1_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00142{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00142{word-spacing:-21.043152px;}
.ws1_c00142{word-spacing:-20.016000px;}
.ws2_c00142{word-spacing:-10.008000px;}
.ws3_c00142{word-spacing:0.000000px;}
._a_c00142{margin-left:-18.288000px;}
._3_c00142{margin-left:-1.179360px;}
._2_c00142{width:1.152000px;}
._7_c00142{width:4.752000px;}
._1_c00142{width:7.272000px;}
._5_c00142{width:8.640000px;}
._4_c00142{width:9.936000px;}
._6_c00142{width:11.070960px;}
._0_c00142{width:12.096000px;}
._b_c00142{width:14.472000px;}
._9_c00142{width:18.288000px;}
._8_c00142{width:30.528000px;}
.fc0_c00142{color:rgb(0,0,0);}
.fs4_c00142{font-size:36.000000px;}
.fs3_c00142{font-size:41.760000px;}
.fs2_c00142{font-size:56.160000px;}
.fs5_c00142{font-size:59.040000px;}
.fs6_c00142{font-size:60.000000px;}
.fs0_c00142{font-size:72.000000px;}
.fs1_c00142{font-size:74.215901px;}
.y0_c00142{bottom:0.000000px;}
.y28_c00142{bottom:3.120150px;}
.y27_c00142{bottom:34.744500px;}
.y1_c00142{bottom:54.000000px;}
.y26_c00142{bottom:61.605000px;}
.y25_c00142{bottom:78.885000px;}
.y24_c00142{bottom:105.525000px;}
.y23_c00142{bottom:210.285000px;}
.y22_c00142{bottom:231.165000px;}
.y21_c00142{bottom:267.165000px;}
.y20_c00142{bottom:303.165000px;}
.y1f_c00142{bottom:339.165000px;}
.y1e_c00142{bottom:360.405000px;}
.y1d_c00142{bottom:381.285000px;}
.y1c_c00142{bottom:417.285000px;}
.y1b_c00142{bottom:453.285000px;}
.y1a_c00142{bottom:489.285000px;}
.y19_c00142{bottom:510.525000px;}
.y18_c00142{bottom:531.405000px;}
.y17_c00142{bottom:567.405000px;}
.y16_c00142{bottom:603.405000px;}
.y15_c00142{bottom:639.405000px;}
.y14_c00142{bottom:660.285000px;}
.y13_c00142{bottom:681.525000px;}
.y12_c00142{bottom:702.405000px;}
.y11_c00142{bottom:723.285000px;}
.y10_c00142{bottom:744.525000px;}
.yf_c00142{bottom:765.405000px;}
.ye_c00142{bottom:786.285000px;}
.yd_c00142{bottom:822.285000px;}
.yc_c00142{bottom:858.285000px;}
.yb_c00142{bottom:887.085000px;}
.ya_c00142{bottom:907.965000px;}
.y9_c00142{bottom:936.405000px;}
.y8_c00142{bottom:957.645000px;}
.y7_c00142{bottom:986.085000px;}
.y6_c00142{bottom:1014.525000px;}
.y5_c00142{bottom:1035.405000px;}
.y4_c00142{bottom:1063.845000px;}
.y3_c00142{bottom:1085.085000px;}
.y2_c00142{bottom:1138.365000px;}
.h7_c00142{height:19.255500px;}
.h6_c00142{height:32.616000px;}
.h8_c00142{height:46.320000px;}
.h4_c00142{height:57.294676px;}
.h3_c00142{height:65.232000px;}
.h5_c00142{height:68.074560px;}
.h2_c00142{height:1201.365000px;}
.h0_c00142{height:1262.835000px;}
.h1_c00142{height:1263.000000px;}
.w3_c00142{width:25.020000px;}
.w2_c00142{width:863.955000px;}
.w0_c00142{width:892.935000px;}
.w1_c00142{width:893.250000px;}
.x0_c00142{left:0.000000px;}
.x1_c00142{left:14.490000px;}
.x2_c00142{left:113.040150px;}
.x3_c00142{left:150.011700px;}
.x8_c00142{left:153.116400px;}
.x5_c00142{left:154.852350px;}
.x7_c00142{left:158.058900px;}
.x10_c00142{left:160.663650px;}
.x6_c00142{left:193.048800px;}
.x4_c00142{left:194.975100px;}
.x11_c00142{left:197.896800px;}
.x12_c00142{left:206.026650px;}
.x16_c00142{left:256.084050px;}
.xc_c00142{left:356.682150px;}
.x14_c00142{left:360.650400px;}
.x15_c00142{left:412.615350px;}
.xd_c00142{left:414.695100px;}
.xb_c00142{left:425.083350px;}
.x9_c00142{left:510.905250px;}
.xa_c00142{left:562.870200px;}
.xe_c00142{left:578.941800px;}
.xf_c00142{left:636.954600px;}
.x13_c00142{left:676.017000px;}
.x17_c00142{left:759.915000px;}
@media print{
.v2_c00142{vertical-align:-26.880000pt;}
.v3_c00142{vertical-align:-21.760000pt;}
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:26.880000pt;}
.ls5_c00142{letter-spacing:0.000000pt;}
.ls7_c00142{letter-spacing:0.236160pt;}
.ls1_c00142{letter-spacing:0.392213pt;}
.ls6_c00142{letter-spacing:4.827264pt;}
.ls0_c00142{letter-spacing:5.312000pt;}
.ls4_c00142{letter-spacing:5.475484pt;}
.ls2_c00142{letter-spacing:9.536000pt;}
.ls3_c00142{letter-spacing:16.256000pt;}
.ws0_c00142{word-spacing:-18.705024pt;}
.ws1_c00142{word-spacing:-17.792000pt;}
.ws2_c00142{word-spacing:-8.896000pt;}
.ws3_c00142{word-spacing:0.000000pt;}
._a_c00142{margin-left:-16.256000pt;}
._3_c00142{margin-left:-1.048320pt;}
._2_c00142{width:1.024000pt;}
._7_c00142{width:4.224000pt;}
._1_c00142{width:6.464000pt;}
._5_c00142{width:7.680000pt;}
._4_c00142{width:8.832000pt;}
._6_c00142{width:9.840853pt;}
._0_c00142{width:10.752000pt;}
._b_c00142{width:12.864000pt;}
._9_c00142{width:16.256000pt;}
._8_c00142{width:27.136000pt;}
.fs4_c00142{font-size:32.000000pt;}
.fs3_c00142{font-size:37.120000pt;}
.fs2_c00142{font-size:49.920000pt;}
.fs5_c00142{font-size:52.480000pt;}
.fs6_c00142{font-size:53.333333pt;}
.fs0_c00142{font-size:64.000000pt;}
.fs1_c00142{font-size:65.969690pt;}
.y0_c00142{bottom:0.000000pt;}
.y28_c00142{bottom:2.773467pt;}
.y27_c00142{bottom:30.884000pt;}
.y1_c00142{bottom:48.000000pt;}
.y26_c00142{bottom:54.760000pt;}
.y25_c00142{bottom:70.120000pt;}
.y24_c00142{bottom:93.800000pt;}
.y23_c00142{bottom:186.920000pt;}
.y22_c00142{bottom:205.480000pt;}
.y21_c00142{bottom:237.480000pt;}
.y20_c00142{bottom:269.480000pt;}
.y1f_c00142{bottom:301.480000pt;}
.y1e_c00142{bottom:320.360000pt;}
.y1d_c00142{bottom:338.920000pt;}
.y1c_c00142{bottom:370.920000pt;}
.y1b_c00142{bottom:402.920000pt;}
.y1a_c00142{bottom:434.920000pt;}
.y19_c00142{bottom:453.800000pt;}
.y18_c00142{bottom:472.360000pt;}
.y17_c00142{bottom:504.360000pt;}
.y16_c00142{bottom:536.360000pt;}
.y15_c00142{bottom:568.360000pt;}
.y14_c00142{bottom:586.920000pt;}
.y13_c00142{bottom:605.800000pt;}
.y12_c00142{bottom:624.360000pt;}
.y11_c00142{bottom:642.920000pt;}
.y10_c00142{bottom:661.800000pt;}
.yf_c00142{bottom:680.360000pt;}
.ye_c00142{bottom:698.920000pt;}
.yd_c00142{bottom:730.920000pt;}
.yc_c00142{bottom:762.920000pt;}
.yb_c00142{bottom:788.520000pt;}
.ya_c00142{bottom:807.080000pt;}
.y9_c00142{bottom:832.360000pt;}
.y8_c00142{bottom:851.240000pt;}
.y7_c00142{bottom:876.520000pt;}
.y6_c00142{bottom:901.800000pt;}
.y5_c00142{bottom:920.360000pt;}
.y4_c00142{bottom:945.640000pt;}
.y3_c00142{bottom:964.520000pt;}
.y2_c00142{bottom:1011.880000pt;}
.h7_c00142{height:17.116000pt;}
.h6_c00142{height:28.992000pt;}
.h8_c00142{height:41.173333pt;}
.h4_c00142{height:50.928601pt;}
.h3_c00142{height:57.984000pt;}
.h5_c00142{height:60.510720pt;}
.h2_c00142{height:1067.880000pt;}
.h0_c00142{height:1122.520000pt;}
.h1_c00142{height:1122.666667pt;}
.w3_c00142{width:22.240000pt;}
.w2_c00142{width:767.960000pt;}
.w0_c00142{width:793.720000pt;}
.w1_c00142{width:794.000000pt;}
.x0_c00142{left:0.000000pt;}
.x1_c00142{left:12.880000pt;}
.x2_c00142{left:100.480133pt;}
.x3_c00142{left:133.343733pt;}
.x8_c00142{left:136.103467pt;}
.x5_c00142{left:137.646533pt;}
.x7_c00142{left:140.496800pt;}
.x10_c00142{left:142.812133pt;}
.x6_c00142{left:171.598933pt;}
.x4_c00142{left:173.311200pt;}
.x11_c00142{left:175.908267pt;}
.x12_c00142{left:183.134800pt;}
.x16_c00142{left:227.630267pt;}
.xc_c00142{left:317.050800pt;}
.x14_c00142{left:320.578133pt;}
.x15_c00142{left:366.769200pt;}
.xd_c00142{left:368.617867pt;}
.xb_c00142{left:377.851867pt;}
.x9_c00142{left:454.138000pt;}
.xa_c00142{left:500.329067pt;}
.xe_c00142{left:514.614933pt;}
.xf_c00142{left:566.181867pt;}
.x13_c00142{left:600.904000pt;}
.x17_c00142{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d55580947a51bc72438dccec.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.134000;font-style:normal;font-weight:normal;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_2d3665c08b3800d540140271.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;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:ff3_c00143;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_5b4ee43cd0d18d8c360d1e94.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00143;src:url('chunks/assets/font_07ec3065cc0540324bab7fb2.woff2')format("woff");}.ff6_c00143{font-family:ff6_c00143;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00143;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff7_c00143{font-family:ff7_c00143;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00143;src:url('chunks/assets/font_1a79a6f5486b983abc761ff1.woff2')format("woff");}.ff8_c00143{font-family:ff8_c00143;line-height:0.787000;font-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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00143{vertical-align:-24.480000px;}
.v0_c00143{vertical-align:0.000000px;}
.v1_c00143{vertical-align:30.240000px;}
.ls17_c00143{letter-spacing:-0.179568px;}
.ls15_c00143{letter-spacing:0.000000px;}
.ls27_c00143{letter-spacing:0.144000px;}
.lsc_c00143{letter-spacing:0.240000px;}
.ls9_c00143{letter-spacing:0.265680px;}
.ls1a_c00143{letter-spacing:0.273857px;}
.lse_c00143{letter-spacing:0.318480px;}
.ls19_c00143{letter-spacing:0.318816px;}
.ls7_c00143{letter-spacing:0.319080px;}
.ls4_c00143{letter-spacing:0.421440px;}
.lsa_c00143{letter-spacing:0.425088px;}
.ls26_c00143{letter-spacing:0.478224px;}
.ls1f_c00143{letter-spacing:0.492942px;}
.ls10_c00143{letter-spacing:0.513648px;}
.lsf_c00143{letter-spacing:0.531360px;}
.ls13_c00143{letter-spacing:0.549072px;}
.ls1c_c00143{letter-spacing:0.690768px;}
.ls2_c00143{letter-spacing:0.691440px;}
.ls1e_c00143{letter-spacing:0.696672px;}
.ls12_c00143{letter-spacing:0.712027px;}
.ls1d_c00143{letter-spacing:0.743904px;}
.ls21_c00143{letter-spacing:0.766799px;}
.ls23_c00143{letter-spacing:0.821570px;}
.ls11_c00143{letter-spacing:0.991970px;}
.ls18_c00143{letter-spacing:1.670400px;}
.ls22_c00143{letter-spacing:4.947552px;}
.ls8_c00143{letter-spacing:5.246280px;}
.ls1b_c00143{letter-spacing:5.248656px;}
.ls5_c00143{letter-spacing:5.299080px;}
.lsd_c00143{letter-spacing:5.353440px;}
.lsb_c00143{letter-spacing:5.465160px;}
.ls6_c00143{letter-spacing:5.514336px;}
.ls1_c00143{letter-spacing:5.976000px;}
.ls14_c00143{letter-spacing:6.159920px;}
.ls25_c00143{letter-spacing:8.295120px;}
.ls24_c00143{letter-spacing:8.301024px;}
.ls20_c00143{letter-spacing:10.450080px;}
.ls16_c00143{letter-spacing:12.549600px;}
.ls3_c00143{letter-spacing:17.424000px;}
.ls0_c00143{letter-spacing:54.864000px;}
.sc__c00143{text-shadow:none;}
.sc1_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00143{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc1_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00143{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00143{word-spacing:-21.927456px;}
.ws5_c00143{word-spacing:-17.910227px;}
.wsa_c00143{word-spacing:-17.739827px;}
.ws6_c00143{word-spacing:-17.685056px;}
.ws3_c00143{word-spacing:-17.630284px;}
.ws9_c00143{word-spacing:-17.192114px;}
.ws7_c00143{word-spacing:-16.962192px;}
.ws2_c00143{word-spacing:-16.944480px;}
.ws0_c00143{word-spacing:-11.609280px;}
.ws1_c00143{word-spacing:-11.429712px;}
.wsb_c00143{word-spacing:-10.152000px;}
.ws8_c00143{word-spacing:-10.008000px;}
.wsc_c00143{word-spacing:0.000000px;}
._6_c00143{margin-left:-17.424000px;}
._3_c00143{margin-left:-12.571200px;}
._11_c00143{margin-left:-10.154880px;}
._12_c00143{margin-left:-9.092160px;}
._14_c00143{margin-left:-7.793280px;}
._13_c00143{margin-left:-4.428000px;}
._e_c00143{margin-left:-1.108800px;}
._4_c00143{width:1.224000px;}
._8_c00143{width:2.448000px;}
._c_c00143{width:4.104000px;}
._d_c00143{width:5.184000px;}
._0_c00143{width:6.192000px;}
._9_c00143{width:7.776000px;}
._a_c00143{width:8.784000px;}
._5_c00143{width:9.936000px;}
._1_c00143{width:10.944000px;}
._2_c00143{width:12.528000px;}
._b_c00143{width:14.832000px;}
._f_c00143{width:15.912000px;}
._7_c00143{width:17.424000px;}
._10_c00143{width:18.648000px;}
.fc0_c00143{color:rgb(0,0,0);}
.fs5_c00143{font-size:36.000000px;}
.fs2_c00143{font-size:41.760000px;}
.fs3_c00143{font-size:59.040000px;}
.fs6_c00143{font-size:60.000000px;}
.fs4_c00143{font-size:60.857039px;}
.fs0_c00143{font-size:72.000000px;}
.fs1_c00143{font-size:74.215901px;}
.y0_c00143{bottom:0.000000px;}
.y30_c00143{bottom:3.120150px;}
.y2f_c00143{bottom:34.744500px;}
.y1_c00143{bottom:54.000000px;}
.y2e_c00143{bottom:61.605000px;}
.y2d_c00143{bottom:78.885000px;}
.y2c_c00143{bottom:90.405000px;}
.y2b_c00143{bottom:107.685000px;}
.y2a_c00143{bottom:113.805000px;}
.y29_c00143{bottom:125.325000px;}
.y28_c00143{bottom:131.445000px;}
.y27_c00143{bottom:158.085000px;}
.y26_c00143{bottom:246.285000px;}
.y25_c00143{bottom:263.925000px;}
.y24_c00143{bottom:281.205000px;}
.y23_c00143{bottom:298.845000px;}
.y22_c00143{bottom:316.485000px;}
.y21_c00143{bottom:349.965000px;}
.y20_c00143{bottom:385.965000px;}
.y1f_c00143{bottom:406.845000px;}
.y1e_c00143{bottom:427.725000px;}
.y1d_c00143{bottom:448.965000px;}
.y1c_c00143{bottom:469.845000px;}
.y1b_c00143{bottom:490.725000px;}
.y1a_c00143{bottom:511.965000px;}
.y19_c00143{bottom:532.845000px;}
.y18_c00143{bottom:553.725000px;}
.y17_c00143{bottom:574.965000px;}
.y16_c00143{bottom:595.845000px;}
.y15_c00143{bottom:616.725000px;}
.y14_c00143{bottom:652.725000px;}
.y13_c00143{bottom:673.965000px;}
.y12_c00143{bottom:694.845000px;}
.y11_c00143{bottom:716.085000px;}
.y10_c00143{bottom:736.965000px;}
.yf_c00143{bottom:757.845000px;}
.ye_c00143{bottom:779.085000px;}
.yd_c00143{bottom:799.965000px;}
.yc_c00143{bottom:835.965000px;}
.yb_c00143{bottom:856.845000px;}
.ya_c00143{bottom:878.085000px;}
.y9_c00143{bottom:898.965000px;}
.y8_c00143{bottom:934.965000px;}
.y7_c00143{bottom:955.845000px;}
.y6_c00143{bottom:991.845000px;}
.y5_c00143{bottom:1013.085000px;}
.y4_c00143{bottom:1049.085000px;}
.y3_c00143{bottom:1085.085000px;}
.y2_c00143{bottom:1138.365000px;}
.h9_c00143{height:19.255500px;}
.h8_c00143{height:32.616000px;}
.ha_c00143{height:46.320000px;}
.h7_c00143{height:46.981634px;}
.h6_c00143{height:53.490240px;}
.h4_c00143{height:57.294676px;}
.h3_c00143{height:65.232000px;}
.h5_c00143{height:68.074560px;}
.h2_c00143{height:1201.365000px;}
.h0_c00143{height:1262.835000px;}
.h1_c00143{height:1263.000000px;}
.w7_c00143{width:25.020000px;}
.w3_c00143{width:50.760000px;}
.w4_c00143{width:68.040000px;}
.w6_c00143{width:259.200000px;}
.w5_c00143{width:272.880000px;}
.w2_c00143{width:863.955000px;}
.w0_c00143{width:892.935000px;}
.w1_c00143{width:893.250000px;}
.x0_c00143{left:0.000000px;}
.x2a_c00143{left:7.920150px;}
.x1_c00143{left:14.490000px;}
.x35_c00143{left:42.884250px;}
.x30_c00143{left:78.049950px;}
.x2d_c00143{left:87.058200px;}
.x36_c00143{left:88.752150px;}
.x2_c00143{left:113.040150px;}
.x31_c00143{left:114.724500px;}
.x29_c00143{left:119.610000px;}
.x38_c00143{left:122.213700px;}
.x22_c00143{left:124.037850px;}
.x34_c00143{left:127.260000px;}
.x37_c00143{left:130.436100px;}
.x5_c00143{left:140.037600px;}
.x39_c00143{left:146.377800px;}
.x3_c00143{left:150.011700px;}
.x3b_c00143{left:161.383650px;}
.x2b_c00143{left:171.090000px;}
.x23_c00143{left:179.230950px;}
.x24_c00143{left:185.206800px;}
.x4_c00143{left:194.975100px;}
.x32_c00143{left:196.534950px;}
.x2f_c00143{left:219.930450px;}
.x8_c00143{left:223.381350px;}
.x33_c00143{left:232.369500px;}
.x2c_c00143{left:239.850000px;}
.x19_c00143{left:252.757650px;}
.x9_c00143{left:288.550800px;}
.x1a_c00143{left:291.745200px;}
.x10_c00143{left:303.562500px;}
.x11_c00143{left:317.952000px;}
.x12_c00143{left:338.334900px;}
.x1f_c00143{left:350.139000px;}
.x1b_c00143{left:373.802100px;}
.x1c_c00143{left:384.799800px;}
.x27_c00143{left:393.046950px;}
.xa_c00143{left:395.127300px;}
.x15_c00143{left:421.603650px;}
.xb_c00143{left:434.114850px;}
.x28_c00143{left:442.023900px;}
.xc_c00143{left:462.391050px;}
.x16_c00143{left:472.614600px;}
.xd_c00143{left:505.392300px;}
.x17_c00143{left:508.056900px;}
.x20_c00143{left:510.274650px;}
.x2e_c00143{left:513.450000px;}
.x18_c00143{left:519.054600px;}
.x21_c00143{left:569.677050px;}
.x13_c00143{left:573.873000px;}
.x14_c00143{left:586.868850px;}
.x1d_c00143{left:593.967300px;}
.x6_c00143{left:602.488050px;}
.x1e_c00143{left:604.965150px;}
.x3a_c00143{left:610.975650px;}
.x25_c00143{left:639.954300px;}
.x7_c00143{left:660.501000px;}
.x26_c00143{left:691.973550px;}
.xe_c00143{left:698.821650px;}
.xf_c00143{left:711.799500px;}
.x3c_c00143{left:759.915000px;}
@media print{
.v2_c00143{vertical-align:-21.760000pt;}
.v0_c00143{vertical-align:0.000000pt;}
.v1_c00143{vertical-align:26.880000pt;}
.ls17_c00143{letter-spacing:-0.159616pt;}
.ls15_c00143{letter-spacing:0.000000pt;}
.ls27_c00143{letter-spacing:0.128000pt;}
.lsc_c00143{letter-spacing:0.213333pt;}
.ls9_c00143{letter-spacing:0.236160pt;}
.ls1a_c00143{letter-spacing:0.243428pt;}
.lse_c00143{letter-spacing:0.283093pt;}
.ls19_c00143{letter-spacing:0.283392pt;}
.ls7_c00143{letter-spacing:0.283627pt;}
.ls4_c00143{letter-spacing:0.374613pt;}
.lsa_c00143{letter-spacing:0.377856pt;}
.ls26_c00143{letter-spacing:0.425088pt;}
.ls1f_c00143{letter-spacing:0.438171pt;}
.ls10_c00143{letter-spacing:0.456576pt;}
.lsf_c00143{letter-spacing:0.472320pt;}
.ls13_c00143{letter-spacing:0.488064pt;}
.ls1c_c00143{letter-spacing:0.614016pt;}
.ls2_c00143{letter-spacing:0.614613pt;}
.ls1e_c00143{letter-spacing:0.619264pt;}
.ls12_c00143{letter-spacing:0.632913pt;}
.ls1d_c00143{letter-spacing:0.661248pt;}
.ls21_c00143{letter-spacing:0.681599pt;}
.ls23_c00143{letter-spacing:0.730284pt;}
.ls11_c00143{letter-spacing:0.881751pt;}
.ls18_c00143{letter-spacing:1.484800pt;}
.ls22_c00143{letter-spacing:4.397824pt;}
.ls8_c00143{letter-spacing:4.663360pt;}
.ls1b_c00143{letter-spacing:4.665472pt;}
.ls5_c00143{letter-spacing:4.710293pt;}
.lsd_c00143{letter-spacing:4.758613pt;}
.lsb_c00143{letter-spacing:4.857920pt;}
.ls6_c00143{letter-spacing:4.901632pt;}
.ls1_c00143{letter-spacing:5.312000pt;}
.ls14_c00143{letter-spacing:5.475484pt;}
.ls25_c00143{letter-spacing:7.373440pt;}
.ls24_c00143{letter-spacing:7.378688pt;}
.ls20_c00143{letter-spacing:9.288960pt;}
.ls16_c00143{letter-spacing:11.155200pt;}
.ls3_c00143{letter-spacing:15.488000pt;}
.ls0_c00143{letter-spacing:48.768000pt;}
.ws4_c00143{word-spacing:-19.491072pt;}
.ws5_c00143{word-spacing:-15.920201pt;}
.wsa_c00143{word-spacing:-15.768735pt;}
.ws6_c00143{word-spacing:-15.720049pt;}
.ws3_c00143{word-spacing:-15.671364pt;}
.ws9_c00143{word-spacing:-15.281879pt;}
.ws7_c00143{word-spacing:-15.077504pt;}
.ws2_c00143{word-spacing:-15.061760pt;}
.ws0_c00143{word-spacing:-10.319360pt;}
.ws1_c00143{word-spacing:-10.159744pt;}
.wsb_c00143{word-spacing:-9.024000pt;}
.ws8_c00143{word-spacing:-8.896000pt;}
.wsc_c00143{word-spacing:0.000000pt;}
._6_c00143{margin-left:-15.488000pt;}
._3_c00143{margin-left:-11.174400pt;}
._11_c00143{margin-left:-9.026560pt;}
._12_c00143{margin-left:-8.081920pt;}
._14_c00143{margin-left:-6.927360pt;}
._13_c00143{margin-left:-3.936000pt;}
._e_c00143{margin-left:-0.985600pt;}
._4_c00143{width:1.088000pt;}
._8_c00143{width:2.176000pt;}
._c_c00143{width:3.648000pt;}
._d_c00143{width:4.608000pt;}
._0_c00143{width:5.504000pt;}
._9_c00143{width:6.912000pt;}
._a_c00143{width:7.808000pt;}
._5_c00143{width:8.832000pt;}
._1_c00143{width:9.728000pt;}
._2_c00143{width:11.136000pt;}
._b_c00143{width:13.184000pt;}
._f_c00143{width:14.144000pt;}
._7_c00143{width:15.488000pt;}
._10_c00143{width:16.576000pt;}
.fs5_c00143{font-size:32.000000pt;}
.fs2_c00143{font-size:37.120000pt;}
.fs3_c00143{font-size:52.480000pt;}
.fs6_c00143{font-size:53.333333pt;}
.fs4_c00143{font-size:54.095146pt;}
.fs0_c00143{font-size:64.000000pt;}
.fs1_c00143{font-size:65.969690pt;}
.y0_c00143{bottom:0.000000pt;}
.y30_c00143{bottom:2.773467pt;}
.y2f_c00143{bottom:30.884000pt;}
.y1_c00143{bottom:48.000000pt;}
.y2e_c00143{bottom:54.760000pt;}
.y2d_c00143{bottom:70.120000pt;}
.y2c_c00143{bottom:80.360000pt;}
.y2b_c00143{bottom:95.720000pt;}
.y2a_c00143{bottom:101.160000pt;}
.y29_c00143{bottom:111.400000pt;}
.y28_c00143{bottom:116.840000pt;}
.y27_c00143{bottom:140.520000pt;}
.y26_c00143{bottom:218.920000pt;}
.y25_c00143{bottom:234.600000pt;}
.y24_c00143{bottom:249.960000pt;}
.y23_c00143{bottom:265.640000pt;}
.y22_c00143{bottom:281.320000pt;}
.y21_c00143{bottom:311.080000pt;}
.y20_c00143{bottom:343.080000pt;}
.y1f_c00143{bottom:361.640000pt;}
.y1e_c00143{bottom:380.200000pt;}
.y1d_c00143{bottom:399.080000pt;}
.y1c_c00143{bottom:417.640000pt;}
.y1b_c00143{bottom:436.200000pt;}
.y1a_c00143{bottom:455.080000pt;}
.y19_c00143{bottom:473.640000pt;}
.y18_c00143{bottom:492.200000pt;}
.y17_c00143{bottom:511.080000pt;}
.y16_c00143{bottom:529.640000pt;}
.y15_c00143{bottom:548.200000pt;}
.y14_c00143{bottom:580.200000pt;}
.y13_c00143{bottom:599.080000pt;}
.y12_c00143{bottom:617.640000pt;}
.y11_c00143{bottom:636.520000pt;}
.y10_c00143{bottom:655.080000pt;}
.yf_c00143{bottom:673.640000pt;}
.ye_c00143{bottom:692.520000pt;}
.yd_c00143{bottom:711.080000pt;}
.yc_c00143{bottom:743.080000pt;}
.yb_c00143{bottom:761.640000pt;}
.ya_c00143{bottom:780.520000pt;}
.y9_c00143{bottom:799.080000pt;}
.y8_c00143{bottom:831.080000pt;}
.y7_c00143{bottom:849.640000pt;}
.y6_c00143{bottom:881.640000pt;}
.y5_c00143{bottom:900.520000pt;}
.y4_c00143{bottom:932.520000pt;}
.y3_c00143{bottom:964.520000pt;}
.y2_c00143{bottom:1011.880000pt;}
.h9_c00143{height:17.116000pt;}
.h8_c00143{height:28.992000pt;}
.ha_c00143{height:41.173333pt;}
.h7_c00143{height:41.761453pt;}
.h6_c00143{height:47.546880pt;}
.h4_c00143{height:50.928601pt;}
.h3_c00143{height:57.984000pt;}
.h5_c00143{height:60.510720pt;}
.h2_c00143{height:1067.880000pt;}
.h0_c00143{height:1122.520000pt;}
.h1_c00143{height:1122.666667pt;}
.w7_c00143{width:22.240000pt;}
.w3_c00143{width:45.120000pt;}
.w4_c00143{width:60.480000pt;}
.w6_c00143{width:230.400000pt;}
.w5_c00143{width:242.560000pt;}
.w2_c00143{width:767.960000pt;}
.w0_c00143{width:793.720000pt;}
.w1_c00143{width:794.000000pt;}
.x0_c00143{left:0.000000pt;}
.x2a_c00143{left:7.040133pt;}
.x1_c00143{left:12.880000pt;}
.x35_c00143{left:38.119333pt;}
.x30_c00143{left:69.377733pt;}
.x2d_c00143{left:77.385067pt;}
.x36_c00143{left:78.890800pt;}
.x2_c00143{left:100.480133pt;}
.x31_c00143{left:101.977333pt;}
.x29_c00143{left:106.320000pt;}
.x38_c00143{left:108.634400pt;}
.x22_c00143{left:110.255867pt;}
.x34_c00143{left:113.120000pt;}
.x37_c00143{left:115.943200pt;}
.x5_c00143{left:124.477867pt;}
.x39_c00143{left:130.113600pt;}
.x3_c00143{left:133.343733pt;}
.x3b_c00143{left:143.452133pt;}
.x2b_c00143{left:152.080000pt;}
.x23_c00143{left:159.316400pt;}
.x24_c00143{left:164.628267pt;}
.x4_c00143{left:173.311200pt;}
.x32_c00143{left:174.697733pt;}
.x2f_c00143{left:195.493733pt;}
.x8_c00143{left:198.561200pt;}
.x33_c00143{left:206.550667pt;}
.x2c_c00143{left:213.200000pt;}
.x19_c00143{left:224.673467pt;}
.x9_c00143{left:256.489600pt;}
.x1a_c00143{left:259.329067pt;}
.x10_c00143{left:269.833333pt;}
.x11_c00143{left:282.624000pt;}
.x12_c00143{left:300.742133pt;}
.x1f_c00143{left:311.234667pt;}
.x1b_c00143{left:332.268533pt;}
.x1c_c00143{left:342.044267pt;}
.x27_c00143{left:349.375067pt;}
.xa_c00143{left:351.224267pt;}
.x15_c00143{left:374.758800pt;}
.xb_c00143{left:385.879867pt;}
.x28_c00143{left:392.910133pt;}
.xc_c00143{left:411.014267pt;}
.x16_c00143{left:420.101867pt;}
.xd_c00143{left:449.237600pt;}
.x17_c00143{left:451.606133pt;}
.x20_c00143{left:453.577467pt;}
.x2e_c00143{left:456.400000pt;}
.x18_c00143{left:461.381867pt;}
.x21_c00143{left:506.379600pt;}
.x13_c00143{left:510.109333pt;}
.x14_c00143{left:521.661200pt;}
.x1d_c00143{left:527.970933pt;}
.x6_c00143{left:535.544933pt;}
.x1e_c00143{left:537.746800pt;}
.x3a_c00143{left:543.089467pt;}
.x25_c00143{left:568.848267pt;}
.x7_c00143{left:587.112000pt;}
.x26_c00143{left:615.087600pt;}
.xe_c00143{left:621.174800pt;}
.xf_c00143{left:632.710667pt;}
.x3c_c00143{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5c19b3da07227fd9f2c9ba39.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.134000;font-style:normal;font-weight:normal;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_bfbcd51796fdb1659ae75ddf.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;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:ff3_c00144;src:url('chunks/assets/font_5b4ee43cd0d18d8c360d1e94.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00144;src:url('chunks/assets/font_07ec3065cc0540324bab7fb2.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00144;src:url('chunks/assets/font_b131612d9fd077b47c94937a.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00144;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff6_c00144{font-family:ff6_c00144;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00144;src:url('chunks/assets/font_a4ab2c0003cce8e28002abf5.woff2')format("woff");}.ff7_c00144{font-family:ff7_c00144;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00144{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00144{vertical-align:-24.480000px;}
.v0_c00144{vertical-align:0.000000px;}
.v1_c00144{vertical-align:30.240000px;}
.ls2f_c00144{letter-spacing:-0.179568px;}
.ls1d_c00144{letter-spacing:0.000000px;}
.ls30_c00144{letter-spacing:0.144000px;}
.ls5_c00144{letter-spacing:0.265680px;}
.ls36_c00144{letter-spacing:0.273857px;}
.lse_c00144{letter-spacing:0.295200px;}
.ls1b_c00144{letter-spacing:0.304285px;}
.ls10_c00144{letter-spacing:0.312912px;}
.ls8_c00144{letter-spacing:0.318480px;}
.ls26_c00144{letter-spacing:0.318816px;}
.ls2_c00144{letter-spacing:0.319080px;}
.ls21_c00144{letter-spacing:0.425088px;}
.ls4_c00144{letter-spacing:0.425640px;}
.ls32_c00144{letter-spacing:0.478224px;}
.lsc_c00144{letter-spacing:0.494773px;}
.lsf_c00144{letter-spacing:0.531360px;}
.ls27_c00144{letter-spacing:0.547713px;}
.lsb_c00144{letter-spacing:0.549072px;}
.lsd_c00144{letter-spacing:0.560880px;}
.ls39_c00144{letter-spacing:0.584496px;}
.ls29_c00144{letter-spacing:0.637632px;}
.ls22_c00144{letter-spacing:0.690768px;}
.ls2a_c00144{letter-spacing:0.696672px;}
.lsa_c00144{letter-spacing:0.712027px;}
.ls23_c00144{letter-spacing:0.743904px;}
.ls28_c00144{letter-spacing:0.766799px;}
.ls25_c00144{letter-spacing:0.821570px;}
.ls17_c00144{letter-spacing:0.944640px;}
.ls9_c00144{letter-spacing:0.991970px;}
.ls2d_c00144{letter-spacing:2.450160px;}
.ls11_c00144{letter-spacing:2.479680px;}
.ls2c_c00144{letter-spacing:3.465648px;}
.ls24_c00144{letter-spacing:4.941648px;}
.ls3_c00144{letter-spacing:5.246280px;}
.ls20_c00144{letter-spacing:5.248656px;}
.ls0_c00144{letter-spacing:5.299680px;}
.ls15_c00144{letter-spacing:5.313600px;}
.ls7_c00144{letter-spacing:5.352840px;}
.ls1f_c00144{letter-spacing:5.354928px;}
.ls18_c00144{letter-spacing:5.372640px;}
.ls2e_c00144{letter-spacing:5.430672px;}
.ls6_c00144{letter-spacing:5.465160px;}
.ls14_c00144{letter-spacing:5.490720px;}
.ls1_c00144{letter-spacing:5.514336px;}
.ls1e_c00144{letter-spacing:5.726880px;}
.ls1a_c00144{letter-spacing:5.963040px;}
.ls12_c00144{letter-spacing:5.975400px;}
.ls13_c00144{letter-spacing:5.976000px;}
.ls1c_c00144{letter-spacing:6.159920px;}
.ls35_c00144{letter-spacing:7.315056px;}
.ls31_c00144{letter-spacing:10.639008px;}
.ls19_c00144{letter-spacing:12.280320px;}
.ls34_c00144{letter-spacing:12.298032px;}
.ls2b_c00144{letter-spacing:12.357072px;}
.ls38_c00144{letter-spacing:13.939344px;}
.ls37_c00144{letter-spacing:13.945248px;}
.ls16_c00144{letter-spacing:19.483200px;}
.ls33_c00144{letter-spacing:19.500912px;}
.sc__c00144{text-shadow:none;}
.sc1_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00144{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc1_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00144{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00144{word-spacing:-22.140000px;}
.ws3_c00144{word-spacing:-21.927456px;}
.wsd_c00144{word-spacing:-21.903840px;}
.ws8_c00144{word-spacing:-21.043152px;}
.ws5_c00144{word-spacing:-17.910227px;}
.wsb_c00144{word-spacing:-17.739827px;}
.ws7_c00144{word-spacing:-17.685056px;}
.ws1_c00144{word-spacing:-17.630284px;}
.wsc_c00144{word-spacing:-17.465970px;}
.ws4_c00144{word-spacing:-17.103888px;}
.ws6_c00144{word-spacing:-16.962192px;}
.ws0_c00144{word-spacing:-16.944480px;}
.ws9_c00144{word-spacing:-11.429712px;}
.wsa_c00144{word-spacing:-10.152000px;}
.wse_c00144{word-spacing:0.000000px;}
._12_c00144{margin-left:-19.121760px;}
._13_c00144{margin-left:-18.079200px;}
._16_c00144{margin-left:-14.228640px;}
._6_c00144{margin-left:-12.870720px;}
._5_c00144{margin-left:-11.689920px;}
._10_c00144{margin-left:-10.265760px;}
._11_c00144{margin-left:-9.223200px;}
._14_c00144{margin-left:-7.182720px;}
._15_c00144{margin-left:-5.846400px;}
._2_c00144{margin-left:-4.605120px;}
._7_c00144{margin-left:-2.952000px;}
._0_c00144{margin-left:-1.182600px;}
._1_c00144{width:1.129104px;}
._8_c00144{width:2.727648px;}
._9_c00144{width:3.943872px;}
._d_c00144{width:5.400000px;}
._e_c00144{width:6.480000px;}
._a_c00144{width:8.031240px;}
._4_c00144{width:11.158560px;}
._3_c00144{width:12.280320px;}
._c_c00144{width:15.552000px;}
._b_c00144{width:17.136000px;}
._f_c00144{width:18.479759px;}
.fc0_c00144{color:rgb(0,0,0);}
.fs6_c00144{font-size:36.000000px;}
.fs5_c00144{font-size:41.760000px;}
.fs4_c00144{font-size:56.160000px;}
.fs2_c00144{font-size:59.040000px;}
.fs7_c00144{font-size:60.000000px;}
.fs3_c00144{font-size:60.857039px;}
.fs0_c00144{font-size:72.000000px;}
.fs1_c00144{font-size:74.215901px;}
.y0_c00144{bottom:0.000000px;}
.y39_c00144{bottom:3.120150px;}
.y38_c00144{bottom:34.744500px;}
.y1_c00144{bottom:54.000000px;}
.y36_c00144{bottom:55.481040px;}
.y37_c00144{bottom:55.485000px;}
.y35_c00144{bottom:72.765000px;}
.y34_c00144{bottom:72.775440px;}
.y33_c00144{bottom:91.491120px;}
.y32_c00144{bottom:109.129320px;}
.y31_c00144{bottom:133.965000px;}
.y30_c00144{bottom:145.485000px;}
.y2f_c00144{bottom:151.605000px;}
.y2e_c00144{bottom:163.125000px;}
.y2d_c00144{bottom:169.245000px;}
.y2c_c00144{bottom:180.406800px;}
.y2b_c00144{bottom:204.165000px;}
.y2a_c00144{bottom:230.805000px;}
.y29_c00144{bottom:289.125000px;}
.y28_c00144{bottom:310.365000px;}
.y27_c00144{bottom:331.245000px;}
.y26_c00144{bottom:367.245000px;}
.y25_c00144{bottom:388.125000px;}
.y24_c00144{bottom:424.125000px;}
.y23_c00144{bottom:445.365000px;}
.y22_c00144{bottom:466.245000px;}
.y21_c00144{bottom:487.125000px;}
.y20_c00144{bottom:508.365000px;}
.y1f_c00144{bottom:529.245000px;}
.y1e_c00144{bottom:565.245000px;}
.y1d_c00144{bottom:586.125000px;}
.y1c_c00144{bottom:607.365000px;}
.y1b_c00144{bottom:628.245000px;}
.y1a_c00144{bottom:664.245000px;}
.y19_c00144{bottom:700.245000px;}
.y18_c00144{bottom:735.884640px;}
.y17_c00144{bottom:753.522840px;}
.y16_c00144{bottom:771.161040px;}
.y15_c00144{bottom:788.445000px;}
.y13_c00144{bottom:821.201040px;}
.y14_c00144{bottom:821.205000px;}
.y12_c00144{bottom:838.485000px;}
.y11_c00144{bottom:838.486800px;}
.yf_c00144{bottom:856.121040px;}
.y10_c00144{bottom:856.125000px;}
.ye_c00144{bottom:873.405000px;}
.yd_c00144{bottom:906.165000px;}
.yc_c00144{bottom:927.764850px;}
.yb_c00144{bottom:928.125000px;}
.ya_c00144{bottom:945.764850px;}
.y9_c00144{bottom:963.405000px;}
.y8_c00144{bottom:981.405000px;}
.y7_c00144{bottom:999.045000px;}
.y6_c00144{bottom:1016.685000px;}
.y5_c00144{bottom:1033.965000px;}
.y4_c00144{bottom:1051.604850px;}
.y3_c00144{bottom:1085.085000px;}
.y2_c00144{bottom:1138.365000px;}
.ha_c00144{height:19.255500px;}
.h9_c00144{height:32.616000px;}
.hb_c00144{height:46.320000px;}
.h6_c00144{height:46.981634px;}
.h5_c00144{height:53.490240px;}
.h7_c00144{height:55.136477px;}
.h4_c00144{height:57.294676px;}
.h3_c00144{height:65.232000px;}
.h8_c00144{height:68.074560px;}
.h2_c00144{height:1201.365000px;}
.h0_c00144{height:1262.835000px;}
.h1_c00144{height:1263.000000px;}
.w7_c00144{width:25.020000px;}
.w3_c00144{width:50.760000px;}
.w4_c00144{width:68.040000px;}
.w6_c00144{width:259.200000px;}
.w5_c00144{width:272.880000px;}
.w2_c00144{width:863.955000px;}
.w0_c00144{width:892.935000px;}
.w1_c00144{width:893.250000px;}
.x0_c00144{left:0.000000px;}
.x6_c00144{left:7.920150px;}
.x11_c00144{left:12.914850px;}
.x1_c00144{left:14.490000px;}
.xe_c00144{left:42.884250px;}
.xb_c00144{left:44.594400px;}
.x19_c00144{left:46.692750px;}
.x1a_c00144{left:81.657150px;}
.x9_c00144{left:87.058200px;}
.xf_c00144{left:88.752150px;}
.x12_c00144{left:98.742600px;}
.x13_c00144{left:107.081850px;}
.x2_c00144{left:113.040150px;}
.x5_c00144{left:119.610000px;}
.xc_c00144{left:122.274000px;}
.x1b_c00144{left:127.525050px;}
.x10_c00144{left:130.436100px;}
.x25_c00144{left:133.034550px;}
.x14_c00144{left:147.070650px;}
.x3_c00144{left:150.011700px;}
.x15_c00144{left:155.410050px;}
.xd_c00144{left:158.108400px;}
.x31_c00144{left:159.707100px;}
.x34_c00144{left:164.802300px;}
.x1c_c00144{left:169.209000px;}
.x7_c00144{left:171.090000px;}
.x32_c00144{left:175.546500px;}
.x16_c00144{left:191.244450px;}
.x4_c00144{left:194.975100px;}
.x17_c00144{left:199.583850px;}
.x2e_c00144{left:202.528200px;}
.x1f_c00144{left:212.196900px;}
.x33_c00144{left:223.890000px;}
.x8_c00144{left:239.850000px;}
.x18_c00144{left:244.537650px;}
.x20_c00144{left:248.031300px;}
.x23_c00144{left:252.279750px;}
.x35_c00144{left:259.735800px;}
.x24_c00144{left:287.244150px;}
.x27_c00144{left:302.037150px;}
.x26_c00144{left:303.103350px;}
.x28_c00144{left:337.624500px;}
.x29_c00144{left:376.612050px;}
.x21_c00144{left:449.619900px;}
.x22_c00144{left:492.969000px;}
.xa_c00144{left:513.450000px;}
.x2c_c00144{left:527.104500px;}
.x2d_c00144{left:585.117600px;}
.x2a_c00144{left:600.535800px;}
.x1d_c00144{left:611.823150px;}
.x1e_c00144{left:648.497700px;}
.x2b_c00144{left:658.548750px;}
.x2f_c00144{left:666.369150px;}
.x30_c00144{left:720.350100px;}
.x36_c00144{left:759.915000px;}
@media print{
.v2_c00144{vertical-align:-21.760000pt;}
.v0_c00144{vertical-align:0.000000pt;}
.v1_c00144{vertical-align:26.880000pt;}
.ls2f_c00144{letter-spacing:-0.159616pt;}
.ls1d_c00144{letter-spacing:0.000000pt;}
.ls30_c00144{letter-spacing:0.128000pt;}
.ls5_c00144{letter-spacing:0.236160pt;}
.ls36_c00144{letter-spacing:0.243428pt;}
.lse_c00144{letter-spacing:0.262400pt;}
.ls1b_c00144{letter-spacing:0.270476pt;}
.ls10_c00144{letter-spacing:0.278144pt;}
.ls8_c00144{letter-spacing:0.283093pt;}
.ls26_c00144{letter-spacing:0.283392pt;}
.ls2_c00144{letter-spacing:0.283627pt;}
.ls21_c00144{letter-spacing:0.377856pt;}
.ls4_c00144{letter-spacing:0.378347pt;}
.ls32_c00144{letter-spacing:0.425088pt;}
.lsc_c00144{letter-spacing:0.439798pt;}
.lsf_c00144{letter-spacing:0.472320pt;}
.ls27_c00144{letter-spacing:0.486856pt;}
.lsb_c00144{letter-spacing:0.488064pt;}
.lsd_c00144{letter-spacing:0.498560pt;}
.ls39_c00144{letter-spacing:0.519552pt;}
.ls29_c00144{letter-spacing:0.566784pt;}
.ls22_c00144{letter-spacing:0.614016pt;}
.ls2a_c00144{letter-spacing:0.619264pt;}
.lsa_c00144{letter-spacing:0.632913pt;}
.ls23_c00144{letter-spacing:0.661248pt;}
.ls28_c00144{letter-spacing:0.681599pt;}
.ls25_c00144{letter-spacing:0.730284pt;}
.ls17_c00144{letter-spacing:0.839680pt;}
.ls9_c00144{letter-spacing:0.881751pt;}
.ls2d_c00144{letter-spacing:2.177920pt;}
.ls11_c00144{letter-spacing:2.204160pt;}
.ls2c_c00144{letter-spacing:3.080576pt;}
.ls24_c00144{letter-spacing:4.392576pt;}
.ls3_c00144{letter-spacing:4.663360pt;}
.ls20_c00144{letter-spacing:4.665472pt;}
.ls0_c00144{letter-spacing:4.710827pt;}
.ls15_c00144{letter-spacing:4.723200pt;}
.ls7_c00144{letter-spacing:4.758080pt;}
.ls1f_c00144{letter-spacing:4.759936pt;}
.ls18_c00144{letter-spacing:4.775680pt;}
.ls2e_c00144{letter-spacing:4.827264pt;}
.ls6_c00144{letter-spacing:4.857920pt;}
.ls14_c00144{letter-spacing:4.880640pt;}
.ls1_c00144{letter-spacing:4.901632pt;}
.ls1e_c00144{letter-spacing:5.090560pt;}
.ls1a_c00144{letter-spacing:5.300480pt;}
.ls12_c00144{letter-spacing:5.311467pt;}
.ls13_c00144{letter-spacing:5.312000pt;}
.ls1c_c00144{letter-spacing:5.475484pt;}
.ls35_c00144{letter-spacing:6.502272pt;}
.ls31_c00144{letter-spacing:9.456896pt;}
.ls19_c00144{letter-spacing:10.915840pt;}
.ls34_c00144{letter-spacing:10.931584pt;}
.ls2b_c00144{letter-spacing:10.984064pt;}
.ls38_c00144{letter-spacing:12.390528pt;}
.ls37_c00144{letter-spacing:12.395776pt;}
.ls16_c00144{letter-spacing:17.318400pt;}
.ls33_c00144{letter-spacing:17.334144pt;}
.ws2_c00144{word-spacing:-19.680000pt;}
.ws3_c00144{word-spacing:-19.491072pt;}
.wsd_c00144{word-spacing:-19.470080pt;}
.ws8_c00144{word-spacing:-18.705024pt;}
.ws5_c00144{word-spacing:-15.920201pt;}
.wsb_c00144{word-spacing:-15.768735pt;}
.ws7_c00144{word-spacing:-15.720049pt;}
.ws1_c00144{word-spacing:-15.671364pt;}
.wsc_c00144{word-spacing:-15.525307pt;}
.ws4_c00144{word-spacing:-15.203456pt;}
.ws6_c00144{word-spacing:-15.077504pt;}
.ws0_c00144{word-spacing:-15.061760pt;}
.ws9_c00144{word-spacing:-10.159744pt;}
.wsa_c00144{word-spacing:-9.024000pt;}
.wse_c00144{word-spacing:0.000000pt;}
._12_c00144{margin-left:-16.997120pt;}
._13_c00144{margin-left:-16.070400pt;}
._16_c00144{margin-left:-12.647680pt;}
._6_c00144{margin-left:-11.440640pt;}
._5_c00144{margin-left:-10.391040pt;}
._10_c00144{margin-left:-9.125120pt;}
._11_c00144{margin-left:-8.198400pt;}
._14_c00144{margin-left:-6.384640pt;}
._15_c00144{margin-left:-5.196800pt;}
._2_c00144{margin-left:-4.093440pt;}
._7_c00144{margin-left:-2.624000pt;}
._0_c00144{margin-left:-1.051200pt;}
._1_c00144{width:1.003648pt;}
._8_c00144{width:2.424576pt;}
._9_c00144{width:3.505664pt;}
._d_c00144{width:4.800000pt;}
._e_c00144{width:5.760000pt;}
._a_c00144{width:7.138880pt;}
._4_c00144{width:9.918720pt;}
._3_c00144{width:10.915840pt;}
._c_c00144{width:13.824000pt;}
._b_c00144{width:15.232000pt;}
._f_c00144{width:16.426453pt;}
.fs6_c00144{font-size:32.000000pt;}
.fs5_c00144{font-size:37.120000pt;}
.fs4_c00144{font-size:49.920000pt;}
.fs2_c00144{font-size:52.480000pt;}
.fs7_c00144{font-size:53.333333pt;}
.fs3_c00144{font-size:54.095146pt;}
.fs0_c00144{font-size:64.000000pt;}
.fs1_c00144{font-size:65.969690pt;}
.y0_c00144{bottom:0.000000pt;}
.y39_c00144{bottom:2.773467pt;}
.y38_c00144{bottom:30.884000pt;}
.y1_c00144{bottom:48.000000pt;}
.y36_c00144{bottom:49.316480pt;}
.y37_c00144{bottom:49.320000pt;}
.y35_c00144{bottom:64.680000pt;}
.y34_c00144{bottom:64.689280pt;}
.y33_c00144{bottom:81.325440pt;}
.y32_c00144{bottom:97.003840pt;}
.y31_c00144{bottom:119.080000pt;}
.y30_c00144{bottom:129.320000pt;}
.y2f_c00144{bottom:134.760000pt;}
.y2e_c00144{bottom:145.000000pt;}
.y2d_c00144{bottom:150.440000pt;}
.y2c_c00144{bottom:160.361600pt;}
.y2b_c00144{bottom:181.480000pt;}
.y2a_c00144{bottom:205.160000pt;}
.y29_c00144{bottom:257.000000pt;}
.y28_c00144{bottom:275.880000pt;}
.y27_c00144{bottom:294.440000pt;}
.y26_c00144{bottom:326.440000pt;}
.y25_c00144{bottom:345.000000pt;}
.y24_c00144{bottom:377.000000pt;}
.y23_c00144{bottom:395.880000pt;}
.y22_c00144{bottom:414.440000pt;}
.y21_c00144{bottom:433.000000pt;}
.y20_c00144{bottom:451.880000pt;}
.y1f_c00144{bottom:470.440000pt;}
.y1e_c00144{bottom:502.440000pt;}
.y1d_c00144{bottom:521.000000pt;}
.y1c_c00144{bottom:539.880000pt;}
.y1b_c00144{bottom:558.440000pt;}
.y1a_c00144{bottom:590.440000pt;}
.y19_c00144{bottom:622.440000pt;}
.y18_c00144{bottom:654.119680pt;}
.y17_c00144{bottom:669.798080pt;}
.y16_c00144{bottom:685.476480pt;}
.y15_c00144{bottom:700.840000pt;}
.y13_c00144{bottom:729.956480pt;}
.y14_c00144{bottom:729.960000pt;}
.y12_c00144{bottom:745.320000pt;}
.y11_c00144{bottom:745.321600pt;}
.yf_c00144{bottom:760.996480pt;}
.y10_c00144{bottom:761.000000pt;}
.ye_c00144{bottom:776.360000pt;}
.yd_c00144{bottom:805.480000pt;}
.yc_c00144{bottom:824.679867pt;}
.yb_c00144{bottom:825.000000pt;}
.ya_c00144{bottom:840.679867pt;}
.y9_c00144{bottom:856.360000pt;}
.y8_c00144{bottom:872.360000pt;}
.y7_c00144{bottom:888.040000pt;}
.y6_c00144{bottom:903.720000pt;}
.y5_c00144{bottom:919.080000pt;}
.y4_c00144{bottom:934.759867pt;}
.y3_c00144{bottom:964.520000pt;}
.y2_c00144{bottom:1011.880000pt;}
.ha_c00144{height:17.116000pt;}
.h9_c00144{height:28.992000pt;}
.hb_c00144{height:41.173333pt;}
.h6_c00144{height:41.761453pt;}
.h5_c00144{height:47.546880pt;}
.h7_c00144{height:49.010202pt;}
.h4_c00144{height:50.928601pt;}
.h3_c00144{height:57.984000pt;}
.h8_c00144{height:60.510720pt;}
.h2_c00144{height:1067.880000pt;}
.h0_c00144{height:1122.520000pt;}
.h1_c00144{height:1122.666667pt;}
.w7_c00144{width:22.240000pt;}
.w3_c00144{width:45.120000pt;}
.w4_c00144{width:60.480000pt;}
.w6_c00144{width:230.400000pt;}
.w5_c00144{width:242.560000pt;}
.w2_c00144{width:767.960000pt;}
.w0_c00144{width:793.720000pt;}
.w1_c00144{width:794.000000pt;}
.x0_c00144{left:0.000000pt;}
.x6_c00144{left:7.040133pt;}
.x11_c00144{left:11.479867pt;}
.x1_c00144{left:12.880000pt;}
.xe_c00144{left:38.119333pt;}
.xb_c00144{left:39.639467pt;}
.x19_c00144{left:41.504667pt;}
.x1a_c00144{left:72.584133pt;}
.x9_c00144{left:77.385067pt;}
.xf_c00144{left:78.890800pt;}
.x12_c00144{left:87.771200pt;}
.x13_c00144{left:95.183867pt;}
.x2_c00144{left:100.480133pt;}
.x5_c00144{left:106.320000pt;}
.xc_c00144{left:108.688000pt;}
.x1b_c00144{left:113.355600pt;}
.x10_c00144{left:115.943200pt;}
.x25_c00144{left:118.252933pt;}
.x14_c00144{left:130.729467pt;}
.x3_c00144{left:133.343733pt;}
.x15_c00144{left:138.142267pt;}
.xd_c00144{left:140.540800pt;}
.x31_c00144{left:141.961867pt;}
.x34_c00144{left:146.490933pt;}
.x1c_c00144{left:150.408000pt;}
.x7_c00144{left:152.080000pt;}
.x32_c00144{left:156.041333pt;}
.x16_c00144{left:169.995067pt;}
.x4_c00144{left:173.311200pt;}
.x17_c00144{left:177.407867pt;}
.x2e_c00144{left:180.025067pt;}
.x1f_c00144{left:188.619467pt;}
.x33_c00144{left:199.013333pt;}
.x8_c00144{left:213.200000pt;}
.x18_c00144{left:217.366800pt;}
.x20_c00144{left:220.472267pt;}
.x23_c00144{left:224.248667pt;}
.x35_c00144{left:230.876267pt;}
.x24_c00144{left:255.328133pt;}
.x27_c00144{left:268.477467pt;}
.x26_c00144{left:269.425200pt;}
.x28_c00144{left:300.110667pt;}
.x29_c00144{left:334.766267pt;}
.x21_c00144{left:399.662133pt;}
.x22_c00144{left:438.194667pt;}
.xa_c00144{left:456.400000pt;}
.x2c_c00144{left:468.537333pt;}
.x2d_c00144{left:520.104533pt;}
.x2a_c00144{left:533.809600pt;}
.x1d_c00144{left:543.842800pt;}
.x1e_c00144{left:576.442400pt;}
.x2b_c00144{left:585.376667pt;}
.x2f_c00144{left:592.328133pt;}
.x30_c00144{left:640.311200pt;}
.x36_c00144{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5dc77b407b75b85b24483016.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.134000;font-style:normal;font-weight:normal;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_58d9d98f74aa2cd093537d05.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;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:ff3_c00145;src:url('chunks/assets/font_1d2a4df630dca9e59e7422b7.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00145;src:url('chunks/assets/font_1a79a6f5486b983abc761ff1.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00145{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00145{vertical-align:-24.480000px;}
.v0_c00145{vertical-align:0.000000px;}
.v1_c00145{vertical-align:30.240000px;}
.lsa_c00145{letter-spacing:-0.179568px;}
.ls9_c00145{letter-spacing:0.000000px;}
.lsd_c00145{letter-spacing:0.144000px;}
.ls4_c00145{letter-spacing:0.236160px;}
.ls18_c00145{letter-spacing:0.265680px;}
.ls13_c00145{letter-spacing:0.318816px;}
.ls7_c00145{letter-spacing:0.354240px;}
.ls1a_c00145{letter-spacing:0.425088px;}
.lsf_c00145{letter-spacing:0.438171px;}
.lse_c00145{letter-spacing:0.478224px;}
.ls14_c00145{letter-spacing:0.531360px;}
.ls3_c00145{letter-spacing:0.584640px;}
.ls16_c00145{letter-spacing:0.690768px;}
.ls17_c00145{letter-spacing:0.766799px;}
.ls12_c00145{letter-spacing:0.991970px;}
.ls6_c00145{letter-spacing:3.542400px;}
.lsb_c00145{letter-spacing:5.011200px;}
.ls10_c00145{letter-spacing:5.295888px;}
.ls15_c00145{letter-spacing:5.301792px;}
.lsc_c00145{letter-spacing:5.335200px;}
.ls5_c00145{letter-spacing:5.372640px;}
.ls1_c00145{letter-spacing:5.975400px;}
.ls2_c00145{letter-spacing:5.976000px;}
.ls8_c00145{letter-spacing:6.159920px;}
.ls0_c00145{letter-spacing:6.190200px;}
.ls11_c00145{letter-spacing:9.062640px;}
.ls19_c00145{letter-spacing:9.505440px;}
.sc__c00145{text-shadow:none;}
.sc1_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00145{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc1_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00145{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00145{word-spacing:-21.714912px;}
.ws3_c00145{word-spacing:-21.709008px;}
.ws1_c00145{word-spacing:-20.947680px;}
.ws5_c00145{word-spacing:-17.685056px;}
.ws6_c00145{word-spacing:-16.944480px;}
.ws0_c00145{word-spacing:-11.429712px;}
.ws2_c00145{word-spacing:-10.152000px;}
.ws7_c00145{word-spacing:0.000000px;}
._11_c00145{margin-left:-9.866880px;}
._f_c00145{margin-left:-8.789760px;}
._10_c00145{margin-left:-7.482240px;}
._a_c00145{margin-left:-4.982400px;}
._e_c00145{margin-left:-1.173600px;}
._3_c00145{width:1.368000px;}
._0_c00145{width:2.376000px;}
._9_c00145{width:4.176000px;}
._1_c00145{width:5.184000px;}
._2_c00145{width:6.264000px;}
._4_c00145{width:7.560000px;}
._6_c00145{width:8.640000px;}
._c_c00145{width:10.297628px;}
._8_c00145{width:11.351457px;}
._7_c00145{width:12.468271px;}
._5_c00145{width:18.144000px;}
._b_c00145{width:23.328000px;}
._d_c00145{width:28.512000px;}
.fc0_c00145{color:rgb(0,0,0);}
.fs4_c00145{font-size:36.000000px;}
.fs2_c00145{font-size:41.760000px;}
.fs3_c00145{font-size:56.160000px;}
.fs5_c00145{font-size:59.040000px;}
.fs7_c00145{font-size:60.000000px;}
.fs6_c00145{font-size:60.857039px;}
.fs0_c00145{font-size:72.000000px;}
.fs1_c00145{font-size:74.215901px;}
.y0_c00145{bottom:0.000000px;}
.y2d_c00145{bottom:3.120150px;}
.y2c_c00145{bottom:34.744500px;}
.y1_c00145{bottom:54.000000px;}
.y2b_c00145{bottom:55.481040px;}
.y2a_c00145{bottom:78.885000px;}
.y29_c00145{bottom:96.525000px;}
.y28_c00145{bottom:107.686800px;}
.y27_c00145{bottom:125.325000px;}
.y26_c00145{bottom:131.445000px;}
.y24_c00145{bottom:142.961040px;}
.y25_c00145{bottom:142.965000px;}
.y23_c00145{bottom:160.245000px;}
.y22_c00145{bottom:166.365000px;}
.y21_c00145{bottom:177.885000px;}
.y20_c00145{bottom:184.005000px;}
.y1f_c00145{bottom:210.645000px;}
.y1e_c00145{bottom:427.725000px;}
.y1d_c00145{bottom:463.725000px;}
.y1c_c00145{bottom:484.965000px;}
.y1b_c00145{bottom:505.845000px;}
.y1a_c00145{bottom:526.725000px;}
.y19_c00145{bottom:547.965000px;}
.y18_c00145{bottom:568.845000px;}
.y17_c00145{bottom:604.845000px;}
.y16_c00145{bottom:640.845000px;}
.y15_c00145{bottom:676.845000px;}
.y14_c00145{bottom:697.725000px;}
.y13_c00145{bottom:718.965000px;}
.y12_c00145{bottom:754.965000px;}
.y11_c00145{bottom:775.845000px;}
.y10_c00145{bottom:797.085000px;}
.yf_c00145{bottom:817.965000px;}
.ye_c00145{bottom:838.845000px;}
.yd_c00145{bottom:874.845000px;}
.yc_c00145{bottom:896.085000px;}
.yb_c00145{bottom:916.965000px;}
.ya_c00145{bottom:937.845000px;}
.y9_c00145{bottom:959.085000px;}
.y8_c00145{bottom:979.965000px;}
.y7_c00145{bottom:1000.845000px;}
.y6_c00145{bottom:1022.085000px;}
.y5_c00145{bottom:1042.965000px;}
.y4_c00145{bottom:1063.845000px;}
.y3_c00145{bottom:1085.085000px;}
.y2_c00145{bottom:1138.365000px;}
.h9_c00145{height:19.255500px;}
.h6_c00145{height:32.616000px;}
.ha_c00145{height:46.320000px;}
.h7_c00145{height:46.981634px;}
.h8_c00145{height:53.490240px;}
.h4_c00145{height:57.294676px;}
.h3_c00145{height:65.232000px;}
.h5_c00145{height:68.074560px;}
.h2_c00145{height:1201.365000px;}
.h0_c00145{height:1262.835000px;}
.h1_c00145{height:1263.000000px;}
.w3_c00145{width:25.020000px;}
.w2_c00145{width:863.955000px;}
.w0_c00145{width:892.935000px;}
.w1_c00145{width:893.250000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:14.490000px;}
.x2_c00145{left:113.040150px;}
.x3_c00145{left:150.011700px;}
.x5_c00145{left:167.419950px;}
.x4_c00145{left:194.975100px;}
.xd_c00145{left:235.055100px;}
.x6_c00145{left:245.448450px;}
.xe_c00145{left:253.097100px;}
.x1e_c00145{left:258.898350px;}
.x1f_c00145{left:278.892300px;}
.x14_c00145{left:292.687500px;}
.x7_c00145{left:301.145100px;}
.xf_c00145{left:307.078200px;}
.xb_c00145{left:309.470250px;}
.x15_c00145{left:337.338450px;}
.x1c_c00145{left:355.314000px;}
.x8_c00145{left:360.148350px;}
.xc_c00145{left:367.483200px;}
.x18_c00145{left:380.101650px;}
.x1d_c00145{left:420.328800px;}
.x1a_c00145{left:428.935200px;}
.x19_c00145{left:438.114600px;}
.x1b_c00145{left:467.922750px;}
.x10_c00145{left:489.623550px;}
.x11_c00145{left:528.611250px;}
.x12_c00145{left:550.126800px;}
.x22_c00145{left:563.430600px;}
.x16_c00145{left:587.052300px;}
.x20_c00145{left:595.768800px;}
.x13_c00145{left:608.139750px;}
.x17_c00145{left:626.039700px;}
.x23_c00145{left:628.293000px;}
.x9_c00145{left:637.309200px;}
.x21_c00145{left:638.812200px;}
.x24_c00145{left:671.642250px;}
.xa_c00145{left:686.347050px;}
.x25_c00145{left:759.915000px;}
@media print{
.v2_c00145{vertical-align:-21.760000pt;}
.v0_c00145{vertical-align:0.000000pt;}
.v1_c00145{vertical-align:26.880000pt;}
.lsa_c00145{letter-spacing:-0.159616pt;}
.ls9_c00145{letter-spacing:0.000000pt;}
.lsd_c00145{letter-spacing:0.128000pt;}
.ls4_c00145{letter-spacing:0.209920pt;}
.ls18_c00145{letter-spacing:0.236160pt;}
.ls13_c00145{letter-spacing:0.283392pt;}
.ls7_c00145{letter-spacing:0.314880pt;}
.ls1a_c00145{letter-spacing:0.377856pt;}
.lsf_c00145{letter-spacing:0.389485pt;}
.lse_c00145{letter-spacing:0.425088pt;}
.ls14_c00145{letter-spacing:0.472320pt;}
.ls3_c00145{letter-spacing:0.519680pt;}
.ls16_c00145{letter-spacing:0.614016pt;}
.ls17_c00145{letter-spacing:0.681599pt;}
.ls12_c00145{letter-spacing:0.881751pt;}
.ls6_c00145{letter-spacing:3.148800pt;}
.lsb_c00145{letter-spacing:4.454400pt;}
.ls10_c00145{letter-spacing:4.707456pt;}
.ls15_c00145{letter-spacing:4.712704pt;}
.lsc_c00145{letter-spacing:4.742400pt;}
.ls5_c00145{letter-spacing:4.775680pt;}
.ls1_c00145{letter-spacing:5.311467pt;}
.ls2_c00145{letter-spacing:5.312000pt;}
.ls8_c00145{letter-spacing:5.475484pt;}
.ls0_c00145{letter-spacing:5.502400pt;}
.ls11_c00145{letter-spacing:8.055680pt;}
.ls19_c00145{letter-spacing:8.449280pt;}
.ws4_c00145{word-spacing:-19.302144pt;}
.ws3_c00145{word-spacing:-19.296896pt;}
.ws1_c00145{word-spacing:-18.620160pt;}
.ws5_c00145{word-spacing:-15.720049pt;}
.ws6_c00145{word-spacing:-15.061760pt;}
.ws0_c00145{word-spacing:-10.159744pt;}
.ws2_c00145{word-spacing:-9.024000pt;}
.ws7_c00145{word-spacing:0.000000pt;}
._11_c00145{margin-left:-8.770560pt;}
._f_c00145{margin-left:-7.813120pt;}
._10_c00145{margin-left:-6.650880pt;}
._a_c00145{margin-left:-4.428800pt;}
._e_c00145{margin-left:-1.043200pt;}
._3_c00145{width:1.216000pt;}
._0_c00145{width:2.112000pt;}
._9_c00145{width:3.712000pt;}
._1_c00145{width:4.608000pt;}
._2_c00145{width:5.568000pt;}
._4_c00145{width:6.720000pt;}
._6_c00145{width:7.680000pt;}
._c_c00145{width:9.153448pt;}
._8_c00145{width:10.090184pt;}
._7_c00145{width:11.082908pt;}
._5_c00145{width:16.128000pt;}
._b_c00145{width:20.736000pt;}
._d_c00145{width:25.344000pt;}
.fs4_c00145{font-size:32.000000pt;}
.fs2_c00145{font-size:37.120000pt;}
.fs3_c00145{font-size:49.920000pt;}
.fs5_c00145{font-size:52.480000pt;}
.fs7_c00145{font-size:53.333333pt;}
.fs6_c00145{font-size:54.095146pt;}
.fs0_c00145{font-size:64.000000pt;}
.fs1_c00145{font-size:65.969690pt;}
.y0_c00145{bottom:0.000000pt;}
.y2d_c00145{bottom:2.773467pt;}
.y2c_c00145{bottom:30.884000pt;}
.y1_c00145{bottom:48.000000pt;}
.y2b_c00145{bottom:49.316480pt;}
.y2a_c00145{bottom:70.120000pt;}
.y29_c00145{bottom:85.800000pt;}
.y28_c00145{bottom:95.721600pt;}
.y27_c00145{bottom:111.400000pt;}
.y26_c00145{bottom:116.840000pt;}
.y24_c00145{bottom:127.076480pt;}
.y25_c00145{bottom:127.080000pt;}
.y23_c00145{bottom:142.440000pt;}
.y22_c00145{bottom:147.880000pt;}
.y21_c00145{bottom:158.120000pt;}
.y20_c00145{bottom:163.560000pt;}
.y1f_c00145{bottom:187.240000pt;}
.y1e_c00145{bottom:380.200000pt;}
.y1d_c00145{bottom:412.200000pt;}
.y1c_c00145{bottom:431.080000pt;}
.y1b_c00145{bottom:449.640000pt;}
.y1a_c00145{bottom:468.200000pt;}
.y19_c00145{bottom:487.080000pt;}
.y18_c00145{bottom:505.640000pt;}
.y17_c00145{bottom:537.640000pt;}
.y16_c00145{bottom:569.640000pt;}
.y15_c00145{bottom:601.640000pt;}
.y14_c00145{bottom:620.200000pt;}
.y13_c00145{bottom:639.080000pt;}
.y12_c00145{bottom:671.080000pt;}
.y11_c00145{bottom:689.640000pt;}
.y10_c00145{bottom:708.520000pt;}
.yf_c00145{bottom:727.080000pt;}
.ye_c00145{bottom:745.640000pt;}
.yd_c00145{bottom:777.640000pt;}
.yc_c00145{bottom:796.520000pt;}
.yb_c00145{bottom:815.080000pt;}
.ya_c00145{bottom:833.640000pt;}
.y9_c00145{bottom:852.520000pt;}
.y8_c00145{bottom:871.080000pt;}
.y7_c00145{bottom:889.640000pt;}
.y6_c00145{bottom:908.520000pt;}
.y5_c00145{bottom:927.080000pt;}
.y4_c00145{bottom:945.640000pt;}
.y3_c00145{bottom:964.520000pt;}
.y2_c00145{bottom:1011.880000pt;}
.h9_c00145{height:17.116000pt;}
.h6_c00145{height:28.992000pt;}
.ha_c00145{height:41.173333pt;}
.h7_c00145{height:41.761453pt;}
.h8_c00145{height:47.546880pt;}
.h4_c00145{height:50.928601pt;}
.h3_c00145{height:57.984000pt;}
.h5_c00145{height:60.510720pt;}
.h2_c00145{height:1067.880000pt;}
.h0_c00145{height:1122.520000pt;}
.h1_c00145{height:1122.666667pt;}
.w3_c00145{width:22.240000pt;}
.w2_c00145{width:767.960000pt;}
.w0_c00145{width:793.720000pt;}
.w1_c00145{width:794.000000pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:12.880000pt;}
.x2_c00145{left:100.480133pt;}
.x3_c00145{left:133.343733pt;}
.x5_c00145{left:148.817733pt;}
.x4_c00145{left:173.311200pt;}
.xd_c00145{left:208.937867pt;}
.x6_c00145{left:218.176400pt;}
.xe_c00145{left:224.975200pt;}
.x1e_c00145{left:230.131867pt;}
.x1f_c00145{left:247.904267pt;}
.x14_c00145{left:260.166667pt;}
.x7_c00145{left:267.684533pt;}
.xf_c00145{left:272.958400pt;}
.xb_c00145{left:275.084667pt;}
.x15_c00145{left:299.856400pt;}
.x1c_c00145{left:315.834667pt;}
.x8_c00145{left:320.131867pt;}
.xc_c00145{left:326.651733pt;}
.x18_c00145{left:337.868133pt;}
.x1d_c00145{left:373.625600pt;}
.x1a_c00145{left:381.275733pt;}
.x19_c00145{left:389.435200pt;}
.x1b_c00145{left:415.931333pt;}
.x10_c00145{left:435.220933pt;}
.x11_c00145{left:469.876667pt;}
.x12_c00145{left:489.001600pt;}
.x22_c00145{left:500.827200pt;}
.x16_c00145{left:521.824267pt;}
.x20_c00145{left:529.572267pt;}
.x13_c00145{left:540.568667pt;}
.x17_c00145{left:556.479733pt;}
.x23_c00145{left:558.482667pt;}
.x9_c00145{left:566.497067pt;}
.x21_c00145{left:567.833067pt;}
.x24_c00145{left:597.015333pt;}
.xa_c00145{left:610.086267pt;}
.x25_c00145{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_355652794c10d459496091d4.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;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_c00146;src:url('chunks/assets/font_d7efa6e418c0608f6ea6b58b.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_f1da68be808a857de242e78b.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:0.787000;font-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_c00146{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00146{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls5_c00146{letter-spacing:0.000000px;}
.ls9_c00146{letter-spacing:0.202464px;}
.lsa_c00146{letter-spacing:0.208695px;}
.ls2_c00146{letter-spacing:0.238560px;}
.ls0_c00146{letter-spacing:0.239160px;}
.lsb_c00146{letter-spacing:0.239760px;}
.ls1_c00146{letter-spacing:0.245902px;}
.ls8_c00146{letter-spacing:0.319680px;}
.ls6_c00146{letter-spacing:0.399600px;}
.lsd_c00146{letter-spacing:0.436896px;}
.lsc_c00146{letter-spacing:0.516816px;}
.ls7_c00146{letter-spacing:0.532722px;}
.ls3_c00146{letter-spacing:5.976000px;}
.ls4_c00146{letter-spacing:6.159920px;}
.sc__c00146{text-shadow:none;}
.sc1_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00146{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc1_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00146{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00146{word-spacing:-15.211440px;}
.ws1_c00146{word-spacing:-15.051600px;}
.ws2_c00146{word-spacing:0.000000px;}
._0_c00146{margin-left:-1.118880px;}
._1_c00146{width:1.117560px;}
.fc1_c00146{color:transparent;}
.fc0_c00146{color:rgb(0,0,0);}
.fs2_c00146{font-size:53.280000px;}
.fs3_c00146{font-size:54.919767px;}
.fs4_c00146{font-size:60.000000px;}
.fs0_c00146{font-size:72.000000px;}
.fs1_c00146{font-size:74.215901px;}
.y0_c00146{bottom:0.000000px;}
.yc_c00146{bottom:3.120150px;}
.y7_c00146{bottom:20.925000px;}
.ya_c00146{bottom:25.560000px;}
.yb_c00146{bottom:34.744500px;}
.y6_c00146{bottom:36.765000px;}
.y5_c00146{bottom:39.600000px;}
.y9_c00146{bottom:41.400000px;}
.y1_c00146{bottom:54.000000px;}
.y8_c00146{bottom:427.365000px;}
.y4_c00146{bottom:778.365000px;}
.y3_c00146{bottom:1085.085000px;}
.y2_c00146{bottom:1138.365000px;}
.ha_c00146{height:19.255500px;}
.h6_c00146{height:41.132160px;}
.h7_c00146{height:42.398060px;}
.hb_c00146{height:46.320000px;}
.h8_c00146{height:49.365000px;}
.h5_c00146{height:52.200000px;}
.h9_c00146{height:54.000000px;}
.h3_c00146{height:55.584000px;}
.h4_c00146{height:57.294676px;}
.h2_c00146{height:1201.365000px;}
.h0_c00146{height:1262.835000px;}
.h1_c00146{height:1263.000000px;}
.w6_c00146{width:25.020000px;}
.w3_c00146{width:651.960000px;}
.w4_c00146{width:655.200000px;}
.w5_c00146{width:656.280000px;}
.w2_c00146{width:863.955000px;}
.w0_c00146{width:892.935000px;}
.w1_c00146{width:893.250000px;}
.x0_c00146{left:0.000000px;}
.xf_c00146{left:12.909600px;}
.x1_c00146{left:14.490000px;}
.x7_c00146{left:65.230800px;}
.x2_c00146{left:113.040150px;}
.x10_c00146{left:123.216300px;}
.xa_c00146{left:124.290000px;}
.x6_c00146{left:128.250000px;}
.x3_c00146{left:150.011700px;}
.xe_c00146{left:155.330550px;}
.xb_c00146{left:159.413400px;}
.x8_c00146{left:175.537500px;}
.x4_c00146{left:194.975100px;}
.x9_c00146{left:208.530900px;}
.xc_c00146{left:315.498000px;}
.xd_c00146{left:400.249050px;}
.x5_c00146{left:422.225100px;}
.x11_c00146{left:759.915000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls5_c00146{letter-spacing:0.000000pt;}
.ls9_c00146{letter-spacing:0.179968pt;}
.lsa_c00146{letter-spacing:0.185507pt;}
.ls2_c00146{letter-spacing:0.212053pt;}
.ls0_c00146{letter-spacing:0.212587pt;}
.lsb_c00146{letter-spacing:0.213120pt;}
.ls1_c00146{letter-spacing:0.218580pt;}
.ls8_c00146{letter-spacing:0.284160pt;}
.ls6_c00146{letter-spacing:0.355200pt;}
.lsd_c00146{letter-spacing:0.388352pt;}
.lsc_c00146{letter-spacing:0.459392pt;}
.ls7_c00146{letter-spacing:0.473530pt;}
.ls3_c00146{letter-spacing:5.312000pt;}
.ls4_c00146{letter-spacing:5.475484pt;}
.ws0_c00146{word-spacing:-13.521280pt;}
.ws1_c00146{word-spacing:-13.379200pt;}
.ws2_c00146{word-spacing:0.000000pt;}
._0_c00146{margin-left:-0.994560pt;}
._1_c00146{width:0.993387pt;}
.fs2_c00146{font-size:47.360000pt;}
.fs3_c00146{font-size:48.817571pt;}
.fs4_c00146{font-size:53.333333pt;}
.fs0_c00146{font-size:64.000000pt;}
.fs1_c00146{font-size:65.969690pt;}
.y0_c00146{bottom:0.000000pt;}
.yc_c00146{bottom:2.773467pt;}
.y7_c00146{bottom:18.600000pt;}
.ya_c00146{bottom:22.720000pt;}
.yb_c00146{bottom:30.884000pt;}
.y6_c00146{bottom:32.680000pt;}
.y5_c00146{bottom:35.200000pt;}
.y9_c00146{bottom:36.800000pt;}
.y1_c00146{bottom:48.000000pt;}
.y8_c00146{bottom:379.880000pt;}
.y4_c00146{bottom:691.880000pt;}
.y3_c00146{bottom:964.520000pt;}
.y2_c00146{bottom:1011.880000pt;}
.ha_c00146{height:17.116000pt;}
.h6_c00146{height:36.561920pt;}
.h7_c00146{height:37.687165pt;}
.hb_c00146{height:41.173333pt;}
.h8_c00146{height:43.880000pt;}
.h5_c00146{height:46.400000pt;}
.h9_c00146{height:48.000000pt;}
.h3_c00146{height:49.408000pt;}
.h4_c00146{height:50.928601pt;}
.h2_c00146{height:1067.880000pt;}
.h0_c00146{height:1122.520000pt;}
.h1_c00146{height:1122.666667pt;}
.w6_c00146{width:22.240000pt;}
.w3_c00146{width:579.520000pt;}
.w4_c00146{width:582.400000pt;}
.w5_c00146{width:583.360000pt;}
.w2_c00146{width:767.960000pt;}
.w0_c00146{width:793.720000pt;}
.w1_c00146{width:794.000000pt;}
.x0_c00146{left:0.000000pt;}
.xf_c00146{left:11.475200pt;}
.x1_c00146{left:12.880000pt;}
.x7_c00146{left:57.982933pt;}
.x2_c00146{left:100.480133pt;}
.x10_c00146{left:109.525600pt;}
.xa_c00146{left:110.480000pt;}
.x6_c00146{left:114.000000pt;}
.x3_c00146{left:133.343733pt;}
.xe_c00146{left:138.071600pt;}
.xb_c00146{left:141.700800pt;}
.x8_c00146{left:156.033333pt;}
.x4_c00146{left:173.311200pt;}
.x9_c00146{left:185.360800pt;}
.xc_c00146{left:280.442667pt;}
.xd_c00146{left:355.776933pt;}
.x5_c00146{left:375.311200pt;}
.x11_c00146{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf969ac8f73ce06827743509.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_d60f88e6e3dec2b32a7020e9.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_5514d6b199dcee78098db924.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.000200;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00147;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00147;src:url('chunks/assets/font_4cf6278ea4bda3d0a0ab5e8d.woff2')format("woff");}.ff6_c00147{font-family:ff6_c00147;line-height:0.787000;font-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_c00147{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00147{vertical-align:-30.240000px;}
.v2_c00147{vertical-align:-24.480000px;}
.v0_c00147{vertical-align:0.000000px;}
.v1_c00147{vertical-align:30.240000px;}
.ls10_c00147{letter-spacing:0.000000px;}
.lsb_c00147{letter-spacing:0.133440px;}
.lse_c00147{letter-spacing:0.236160px;}
.ls1c_c00147{letter-spacing:0.242064px;}
.ls14_c00147{letter-spacing:0.265680px;}
.ls6_c00147{letter-spacing:0.271440px;}
.lsc_c00147{letter-spacing:0.295200px;}
.ls8_c00147{letter-spacing:0.324720px;}
.ls1b_c00147{letter-spacing:0.328628px;}
.ls4_c00147{letter-spacing:0.394440px;}
.ls1d_c00147{letter-spacing:0.425088px;}
.ls17_c00147{letter-spacing:0.438171px;}
.lsd_c00147{letter-spacing:0.492942px;}
.lsa_c00147{letter-spacing:0.531360px;}
.ls19_c00147{letter-spacing:0.584496px;}
.ls7_c00147{letter-spacing:0.616440px;}
.ls16_c00147{letter-spacing:0.690768px;}
.ls5_c00147{letter-spacing:0.717840px;}
.ls15_c00147{letter-spacing:0.743904px;}
.ls1e_c00147{letter-spacing:0.797040px;}
.ls18_c00147{letter-spacing:4.348800px;}
.ls1a_c00147{letter-spacing:4.611024px;}
.ls9_c00147{letter-spacing:4.723200px;}
.ls11_c00147{letter-spacing:5.245344px;}
.ls12_c00147{letter-spacing:5.335200px;}
.ls13_c00147{letter-spacing:5.430672px;}
.ls1_c00147{letter-spacing:5.499398px;}
.ls3_c00147{letter-spacing:5.975400px;}
.ls2_c00147{letter-spacing:5.976000px;}
.ls0_c00147{letter-spacing:6.159301px;}
.lsf_c00147{letter-spacing:6.159920px;}
.sc__c00147{text-shadow:none;}
.sc1_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00147{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc1_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00147{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00147{word-spacing:-25.992000px;}
.ws0_c00147{word-spacing:-21.592374px;}
.ws3_c00147{word-spacing:-21.043152px;}
.ws2_c00147{word-spacing:-20.857824px;}
.ws4_c00147{word-spacing:-20.016000px;}
.ws8_c00147{word-spacing:-17.411199px;}
.ws7_c00147{word-spacing:-16.997616px;}
.ws5_c00147{word-spacing:-11.609280px;}
.ws6_c00147{word-spacing:-10.008000px;}
.ws9_c00147{word-spacing:0.000000px;}
._14_c00147{margin-left:-4.599312px;}
._15_c00147{margin-left:-3.258816px;}
._13_c00147{margin-left:-1.248480px;}
._5_c00147{width:1.008000px;}
._12_c00147{width:2.088000px;}
._f_c00147{width:4.104000px;}
._0_c00147{width:5.976000px;}
._4_c00147{width:7.056000px;}
._11_c00147{width:8.102400px;}
._c_c00147{width:9.144000px;}
._d_c00147{width:10.152000px;}
._16_c00147{width:11.229120px;}
._6_c00147{width:12.240000px;}
._3_c00147{width:14.112000px;}
._1_c00147{width:16.056000px;}
._b_c00147{width:18.864000px;}
._10_c00147{width:21.240000px;}
._2_c00147{width:22.752000px;}
._7_c00147{width:28.584000px;}
._8_c00147{width:30.528000px;}
._9_c00147{width:34.272000px;}
._a_c00147{width:35.326769px;}
._e_c00147{width:48.096000px;}
.fc1_c00147{color:rgb(38,38,38);}
.fc0_c00147{color:rgb(0,0,0);}
.fs5_c00147{font-size:36.000000px;}
.fs4_c00147{font-size:41.760000px;}
.fs3_c00147{font-size:56.160000px;}
.fs2_c00147{font-size:57.888403px;}
.fs6_c00147{font-size:59.040000px;}
.fs8_c00147{font-size:60.000000px;}
.fs7_c00147{font-size:60.857039px;}
.fs0_c00147{font-size:72.000000px;}
.fs1_c00147{font-size:74.215901px;}
.y0_c00147{bottom:0.000000px;}
.y34_c00147{bottom:3.120150px;}
.y33_c00147{bottom:34.744500px;}
.y1_c00147{bottom:54.000000px;}
.y32_c00147{bottom:55.481040px;}
.y31_c00147{bottom:72.765000px;}
.y30_c00147{bottom:72.766800px;}
.y2f_c00147{bottom:90.405000px;}
.y2e_c00147{bottom:97.965000px;}
.y2d_c00147{bottom:111.645000px;}
.y2c_c00147{bottom:119.205000px;}
.y2b_c00147{bottom:138.285000px;}
.y2a_c00147{bottom:149.806800px;}
.y29_c00147{bottom:173.565000px;}
.y28_c00147{bottom:190.845000px;}
.y27_c00147{bottom:217.485000px;}
.y26_c00147{bottom:268.245000px;}
.y25_c00147{bottom:289.125000px;}
.y24_c00147{bottom:310.005000px;}
.y23_c00147{bottom:331.245000px;}
.y22_c00147{bottom:352.125000px;}
.y21_c00147{bottom:373.725000px;}
.y20_c00147{bottom:394.605000px;}
.y1f_c00147{bottom:415.125000px;}
.y1e_c00147{bottom:436.365000px;}
.y1d_c00147{bottom:457.245000px;}
.y1c_c00147{bottom:478.485000px;}
.y1b_c00147{bottom:499.365000px;}
.y1a_c00147{bottom:535.365000px;}
.y19_c00147{bottom:556.245000px;}
.y18_c00147{bottom:579.285000px;}
.y17_c00147{bottom:601.965000px;}
.y16_c00147{bottom:622.485000px;}
.y15_c00147{bottom:643.725000px;}
.y14_c00147{bottom:679.725000px;}
.y13_c00147{bottom:700.605000px;}
.y12_c00147{bottom:721.485000px;}
.y11_c00147{bottom:742.725000px;}
.y10_c00147{bottom:763.605000px;}
.yf_c00147{bottom:784.845000px;}
.ye_c00147{bottom:805.725000px;}
.yd_c00147{bottom:841.725000px;}
.yc_c00147{bottom:862.605000px;}
.yb_c00147{bottom:883.845000px;}
.ya_c00147{bottom:919.845000px;}
.y9_c00147{bottom:942.525000px;}
.y8_c00147{bottom:965.205000px;}
.y7_c00147{bottom:986.085000px;}
.y6_c00147{bottom:1006.965000px;}
.y5_c00147{bottom:1027.845000px;}
.y4_c00147{bottom:1049.085000px;}
.y3_c00147{bottom:1085.085000px;}
.y2_c00147{bottom:1138.365000px;}
.hb_c00147{height:19.255500px;}
.h6_c00147{height:32.616000px;}
.h8_c00147{height:37.834560px;}
.ha_c00147{height:39.350391px;}
.hc_c00147{height:46.320000px;}
.h7_c00147{height:53.490240px;}
.h9_c00147{height:55.136477px;}
.h3_c00147{height:65.232000px;}
.h4_c00147{height:67.239607px;}
.h5_c00147{height:68.074560px;}
.h2_c00147{height:1201.365000px;}
.h0_c00147{height:1262.835000px;}
.h1_c00147{height:1263.000000px;}
.w3_c00147{width:25.020000px;}
.w2_c00147{width:863.955000px;}
.w0_c00147{width:892.935000px;}
.w1_c00147{width:893.250000px;}
.x0_c00147{left:0.000000px;}
.x1_c00147{left:14.490000px;}
.x2_c00147{left:113.040150px;}
.x15_c00147{left:144.073650px;}
.x3_c00147{left:161.513700px;}
.x5_c00147{left:185.178600px;}
.x16_c00147{left:198.073200px;}
.x1d_c00147{left:201.040650px;}
.xa_c00147{left:219.658500px;}
.x4_c00147{left:225.970050px;}
.x6_c00147{left:230.326500px;}
.x21_c00147{left:241.863600px;}
.x1e_c00147{left:255.040350px;}
.x22_c00147{left:272.919000px;}
.x23_c00147{left:281.505600px;}
.x24_c00147{left:300.675300px;}
.x25_c00147{left:310.101150px;}
.x13_c00147{left:312.515550px;}
.xb_c00147{left:318.848550px;}
.x7_c00147{left:322.287150px;}
.x8_c00147{left:334.436700px;}
.x14_c00147{left:366.515250px;}
.x9_c00147{left:388.436250px;}
.x26_c00147{left:401.979900px;}
.x27_c00147{left:410.566350px;}
.xe_c00147{left:419.467500px;}
.x1b_c00147{left:445.165950px;}
.x11_c00147{left:447.863100px;}
.x28_c00147{left:465.555150px;}
.x1c_c00147{left:499.891500px;}
.x1f_c00147{left:517.273350px;}
.x12_c00147{left:527.890050px;}
.x20_c00147{left:537.267300px;}
.xc_c00147{left:544.636500px;}
.x17_c00147{left:560.664900px;}
.xd_c00147{left:598.636200px;}
.x29_c00147{left:610.159500px;}
.xf_c00147{left:621.206550px;}
.x18_c00147{left:650.744400px;}
.x2a_c00147{left:655.158750px;}
.x10_c00147{left:694.213200px;}
.x19_c00147{left:696.390450px;}
.x1a_c00147{left:750.390000px;}
.x2b_c00147{left:759.915000px;}
@media print{
.v3_c00147{vertical-align:-26.880000pt;}
.v2_c00147{vertical-align:-21.760000pt;}
.v0_c00147{vertical-align:0.000000pt;}
.v1_c00147{vertical-align:26.880000pt;}
.ls10_c00147{letter-spacing:0.000000pt;}
.lsb_c00147{letter-spacing:0.118613pt;}
.lse_c00147{letter-spacing:0.209920pt;}
.ls1c_c00147{letter-spacing:0.215168pt;}
.ls14_c00147{letter-spacing:0.236160pt;}
.ls6_c00147{letter-spacing:0.241280pt;}
.lsc_c00147{letter-spacing:0.262400pt;}
.ls8_c00147{letter-spacing:0.288640pt;}
.ls1b_c00147{letter-spacing:0.292114pt;}
.ls4_c00147{letter-spacing:0.350613pt;}
.ls1d_c00147{letter-spacing:0.377856pt;}
.ls17_c00147{letter-spacing:0.389485pt;}
.lsd_c00147{letter-spacing:0.438171pt;}
.lsa_c00147{letter-spacing:0.472320pt;}
.ls19_c00147{letter-spacing:0.519552pt;}
.ls7_c00147{letter-spacing:0.547947pt;}
.ls16_c00147{letter-spacing:0.614016pt;}
.ls5_c00147{letter-spacing:0.638080pt;}
.ls15_c00147{letter-spacing:0.661248pt;}
.ls1e_c00147{letter-spacing:0.708480pt;}
.ls18_c00147{letter-spacing:3.865600pt;}
.ls1a_c00147{letter-spacing:4.098688pt;}
.ls9_c00147{letter-spacing:4.198400pt;}
.ls11_c00147{letter-spacing:4.662528pt;}
.ls12_c00147{letter-spacing:4.742400pt;}
.ls13_c00147{letter-spacing:4.827264pt;}
.ls1_c00147{letter-spacing:4.888354pt;}
.ls3_c00147{letter-spacing:5.311467pt;}
.ls2_c00147{letter-spacing:5.312000pt;}
.ls0_c00147{letter-spacing:5.474935pt;}
.lsf_c00147{letter-spacing:5.475484pt;}
.ws1_c00147{word-spacing:-23.104000pt;}
.ws0_c00147{word-spacing:-19.193222pt;}
.ws3_c00147{word-spacing:-18.705024pt;}
.ws2_c00147{word-spacing:-18.540288pt;}
.ws4_c00147{word-spacing:-17.792000pt;}
.ws8_c00147{word-spacing:-15.476621pt;}
.ws7_c00147{word-spacing:-15.108992pt;}
.ws5_c00147{word-spacing:-10.319360pt;}
.ws6_c00147{word-spacing:-8.896000pt;}
.ws9_c00147{word-spacing:0.000000pt;}
._14_c00147{margin-left:-4.088277pt;}
._15_c00147{margin-left:-2.896725pt;}
._13_c00147{margin-left:-1.109760pt;}
._5_c00147{width:0.896000pt;}
._12_c00147{width:1.856000pt;}
._f_c00147{width:3.648000pt;}
._0_c00147{width:5.312000pt;}
._4_c00147{width:6.272000pt;}
._11_c00147{width:7.202133pt;}
._c_c00147{width:8.128000pt;}
._d_c00147{width:9.024000pt;}
._16_c00147{width:9.981440pt;}
._6_c00147{width:10.880000pt;}
._3_c00147{width:12.544000pt;}
._1_c00147{width:14.272000pt;}
._b_c00147{width:16.768000pt;}
._10_c00147{width:18.880000pt;}
._2_c00147{width:20.224000pt;}
._7_c00147{width:25.408000pt;}
._8_c00147{width:27.136000pt;}
._9_c00147{width:30.464000pt;}
._a_c00147{width:31.401572pt;}
._e_c00147{width:42.752000pt;}
.fs5_c00147{font-size:32.000000pt;}
.fs4_c00147{font-size:37.120000pt;}
.fs3_c00147{font-size:49.920000pt;}
.fs2_c00147{font-size:51.456358pt;}
.fs6_c00147{font-size:52.480000pt;}
.fs8_c00147{font-size:53.333333pt;}
.fs7_c00147{font-size:54.095146pt;}
.fs0_c00147{font-size:64.000000pt;}
.fs1_c00147{font-size:65.969690pt;}
.y0_c00147{bottom:0.000000pt;}
.y34_c00147{bottom:2.773467pt;}
.y33_c00147{bottom:30.884000pt;}
.y1_c00147{bottom:48.000000pt;}
.y32_c00147{bottom:49.316480pt;}
.y31_c00147{bottom:64.680000pt;}
.y30_c00147{bottom:64.681600pt;}
.y2f_c00147{bottom:80.360000pt;}
.y2e_c00147{bottom:87.080000pt;}
.y2d_c00147{bottom:99.240000pt;}
.y2c_c00147{bottom:105.960000pt;}
.y2b_c00147{bottom:122.920000pt;}
.y2a_c00147{bottom:133.161600pt;}
.y29_c00147{bottom:154.280000pt;}
.y28_c00147{bottom:169.640000pt;}
.y27_c00147{bottom:193.320000pt;}
.y26_c00147{bottom:238.440000pt;}
.y25_c00147{bottom:257.000000pt;}
.y24_c00147{bottom:275.560000pt;}
.y23_c00147{bottom:294.440000pt;}
.y22_c00147{bottom:313.000000pt;}
.y21_c00147{bottom:332.200000pt;}
.y20_c00147{bottom:350.760000pt;}
.y1f_c00147{bottom:369.000000pt;}
.y1e_c00147{bottom:387.880000pt;}
.y1d_c00147{bottom:406.440000pt;}
.y1c_c00147{bottom:425.320000pt;}
.y1b_c00147{bottom:443.880000pt;}
.y1a_c00147{bottom:475.880000pt;}
.y19_c00147{bottom:494.440000pt;}
.y18_c00147{bottom:514.920000pt;}
.y17_c00147{bottom:535.080000pt;}
.y16_c00147{bottom:553.320000pt;}
.y15_c00147{bottom:572.200000pt;}
.y14_c00147{bottom:604.200000pt;}
.y13_c00147{bottom:622.760000pt;}
.y12_c00147{bottom:641.320000pt;}
.y11_c00147{bottom:660.200000pt;}
.y10_c00147{bottom:678.760000pt;}
.yf_c00147{bottom:697.640000pt;}
.ye_c00147{bottom:716.200000pt;}
.yd_c00147{bottom:748.200000pt;}
.yc_c00147{bottom:766.760000pt;}
.yb_c00147{bottom:785.640000pt;}
.ya_c00147{bottom:817.640000pt;}
.y9_c00147{bottom:837.800000pt;}
.y8_c00147{bottom:857.960000pt;}
.y7_c00147{bottom:876.520000pt;}
.y6_c00147{bottom:895.080000pt;}
.y5_c00147{bottom:913.640000pt;}
.y4_c00147{bottom:932.520000pt;}
.y3_c00147{bottom:964.520000pt;}
.y2_c00147{bottom:1011.880000pt;}
.hb_c00147{height:17.116000pt;}
.h6_c00147{height:28.992000pt;}
.h8_c00147{height:33.630720pt;}
.ha_c00147{height:34.978125pt;}
.hc_c00147{height:41.173333pt;}
.h7_c00147{height:47.546880pt;}
.h9_c00147{height:49.010202pt;}
.h3_c00147{height:57.984000pt;}
.h4_c00147{height:59.768539pt;}
.h5_c00147{height:60.510720pt;}
.h2_c00147{height:1067.880000pt;}
.h0_c00147{height:1122.520000pt;}
.h1_c00147{height:1122.666667pt;}
.w3_c00147{width:22.240000pt;}
.w2_c00147{width:767.960000pt;}
.w0_c00147{width:793.720000pt;}
.w1_c00147{width:794.000000pt;}
.x0_c00147{left:0.000000pt;}
.x1_c00147{left:12.880000pt;}
.x2_c00147{left:100.480133pt;}
.x15_c00147{left:128.065467pt;}
.x3_c00147{left:143.567733pt;}
.x5_c00147{left:164.603200pt;}
.x16_c00147{left:176.065067pt;}
.x1d_c00147{left:178.702800pt;}
.xa_c00147{left:195.252000pt;}
.x4_c00147{left:200.862267pt;}
.x6_c00147{left:204.734667pt;}
.x21_c00147{left:214.989867pt;}
.x1e_c00147{left:226.702533pt;}
.x22_c00147{left:242.594667pt;}
.x23_c00147{left:250.227200pt;}
.x24_c00147{left:267.266933pt;}
.x25_c00147{left:275.645467pt;}
.x13_c00147{left:277.791600pt;}
.xb_c00147{left:283.420933pt;}
.x7_c00147{left:286.477467pt;}
.x8_c00147{left:297.277067pt;}
.x14_c00147{left:325.791333pt;}
.x9_c00147{left:345.276667pt;}
.x26_c00147{left:357.315467pt;}
.x27_c00147{left:364.947867pt;}
.xe_c00147{left:372.860000pt;}
.x1b_c00147{left:395.703067pt;}
.x11_c00147{left:398.100533pt;}
.x28_c00147{left:413.826800pt;}
.x1c_c00147{left:444.348000pt;}
.x1f_c00147{left:459.798533pt;}
.x12_c00147{left:469.235600pt;}
.x20_c00147{left:477.570933pt;}
.xc_c00147{left:484.121333pt;}
.x17_c00147{left:498.368800pt;}
.xd_c00147{left:532.121067pt;}
.x29_c00147{left:542.364000pt;}
.xf_c00147{left:552.183600pt;}
.x18_c00147{left:578.439467pt;}
.x2a_c00147{left:582.363333pt;}
.x10_c00147{left:617.078400pt;}
.x19_c00147{left:619.013733pt;}
.x1a_c00147{left:667.013333pt;}
.x2b_c00147{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_090939d554454ecc0ac606f1.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.134000;font-style:normal;font-weight:normal;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_c65fa285cb2bd8244c1be1ea.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00148;src:url('chunks/assets/font_28898f5b4b0f4e9e89060424.woff2')format("woff");}.ff5_c00148{font-family:ff5_c00148;line-height:0.787000;font-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_c00148{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00148{vertical-align:-24.480000px;}
.v0_c00148{vertical-align:0.000000px;}
.v1_c00148{vertical-align:30.240000px;}
.ls9_c00148{letter-spacing:-0.179568px;}
.ls8_c00148{letter-spacing:0.000000px;}
.ls19_c00148{letter-spacing:0.144000px;}
.ls15_c00148{letter-spacing:0.242064px;}
.ls5_c00148{letter-spacing:0.265680px;}
.ls18_c00148{letter-spacing:0.273857px;}
.ls2_c00148{letter-spacing:0.295200px;}
.lsc_c00148{letter-spacing:0.318816px;}
.ls14_c00148{letter-spacing:0.328628px;}
.ls11_c00148{letter-spacing:0.371952px;}
.ls0_c00148{letter-spacing:0.421440px;}
.lsd_c00148{letter-spacing:0.425088px;}
.ls10_c00148{letter-spacing:0.438171px;}
.ls1_c00148{letter-spacing:0.492942px;}
.ls3_c00148{letter-spacing:0.531360px;}
.ls17_c00148{letter-spacing:0.547713px;}
.ls1c_c00148{letter-spacing:0.584496px;}
.ls12_c00148{letter-spacing:0.602485px;}
.lsb_c00148{letter-spacing:0.690768px;}
.lsf_c00148{letter-spacing:0.712027px;}
.ls13_c00148{letter-spacing:0.766799px;}
.lse_c00148{letter-spacing:0.797040px;}
.ls4_c00148{letter-spacing:0.821570px;}
.ls16_c00148{letter-spacing:1.871568px;}
.lsa_c00148{letter-spacing:2.426400px;}
.ls6_c00148{letter-spacing:5.976000px;}
.ls7_c00148{letter-spacing:6.159920px;}
.ls1a_c00148{letter-spacing:7.078896px;}
.ls1d_c00148{letter-spacing:9.824256px;}
.ls1b_c00148{letter-spacing:10.644912px;}
.sc__c00148{text-shadow:none;}
.sc1_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00148{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc1_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00148{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00148{word-spacing:-20.016000px;}
.ws5_c00148{word-spacing:-17.739827px;}
.ws7_c00148{word-spacing:-17.685056px;}
.ws3_c00148{word-spacing:-17.630284px;}
.ws4_c00148{word-spacing:-17.520742px;}
.ws8_c00148{word-spacing:-17.411199px;}
.wsd_c00148{word-spacing:-17.356428px;}
.ws9_c00148{word-spacing:-17.103888px;}
.wsb_c00148{word-spacing:-16.944480px;}
.wsa_c00148{word-spacing:-16.838208px;}
.ws0_c00148{word-spacing:-11.609280px;}
.ws2_c00148{word-spacing:-11.429712px;}
.wsc_c00148{word-spacing:-10.152000px;}
.ws6_c00148{word-spacing:-10.008000px;}
.wse_c00148{word-spacing:0.000000px;}
._12_c00148{margin-left:-10.265760px;}
._13_c00148{margin-left:-9.185760px;}
._10_c00148{margin-left:-6.841440px;}
._11_c00148{margin-left:-5.703840px;}
._f_c00148{margin-left:-2.409456px;}
._a_c00148{margin-left:-1.369200px;}
._5_c00148{width:1.224000px;}
._9_c00148{width:2.448000px;}
._b_c00148{width:3.660480px;}
._6_c00148{width:4.680000px;}
._0_c00148{width:5.976000px;}
._8_c00148{width:6.984000px;}
._e_c00148{width:8.690160px;}
._1_c00148{width:9.864000px;}
._4_c00148{width:10.872000px;}
._2_c00148{width:12.096000px;}
._3_c00148{width:15.048000px;}
._7_c00148{width:16.416000px;}
._c_c00148{width:18.113472px;}
._d_c00148{width:20.148480px;}
.fc0_c00148{color:rgb(0,0,0);}
.fs5_c00148{font-size:36.000000px;}
.fs2_c00148{font-size:41.760000px;}
.fs3_c00148{font-size:59.040000px;}
.fs6_c00148{font-size:60.000000px;}
.fs4_c00148{font-size:60.857039px;}
.fs0_c00148{font-size:72.000000px;}
.fs1_c00148{font-size:74.215901px;}
.y0_c00148{bottom:0.000000px;}
.y40_c00148{bottom:3.120150px;}
.y3f_c00148{bottom:34.744500px;}
.y1_c00148{bottom:54.000000px;}
.y3e_c00148{bottom:55.481040px;}
.y3c_c00148{bottom:72.764640px;}
.y3d_c00148{bottom:72.765000px;}
.y3b_c00148{bottom:90.402840px;}
.y3a_c00148{bottom:107.686800px;}
.y39_c00148{bottom:125.325000px;}
.y38_c00148{bottom:125.326800px;}
.y37_c00148{bottom:149.085000px;}
.y36_c00148{bottom:166.365000px;}
.y35_c00148{bottom:177.886800px;}
.y34_c00148{bottom:195.525000px;}
.y33_c00148{bottom:201.645000px;}
.y32_c00148{bottom:218.925000px;}
.y30_c00148{bottom:230.441040px;}
.y31_c00148{bottom:230.445000px;}
.y2f_c00148{bottom:247.725000px;}
.y2e_c00148{bottom:247.726800px;}
.y2d_c00148{bottom:265.365000px;}
.y2c_c00148{bottom:271.485000px;}
.y2b_c00148{bottom:283.005000px;}
.y2a_c00148{bottom:289.125000px;}
.y29_c00148{bottom:300.285000px;}
.y28_c00148{bottom:300.288600px;}
.y27_c00148{bottom:317.926800px;}
.y25_c00148{bottom:335.561040px;}
.y26_c00148{bottom:335.565000px;}
.y24_c00148{bottom:352.845000px;}
.y23_c00148{bottom:370.485000px;}
.y22_c00148{bottom:376.605000px;}
.y20_c00148{bottom:388.122480px;}
.y21_c00148{bottom:388.125000px;}
.y1f_c00148{bottom:405.406440px;}
.y1e_c00148{bottom:423.044640px;}
.y1d_c00148{bottom:440.682840px;}
.y1c_c00148{bottom:457.966800px;}
.y1a_c00148{bottom:475.601040px;}
.y1b_c00148{bottom:475.605000px;}
.y19_c00148{bottom:492.885000px;}
.y18_c00148{bottom:492.886800px;}
.y17_c00148{bottom:510.525000px;}
.y16_c00148{bottom:543.285000px;}
.y15_c00148{bottom:612.405000px;}
.y14_c00148{bottom:633.285000px;}
.y13_c00148{bottom:654.165000px;}
.y12_c00148{bottom:675.405000px;}
.y11_c00148{bottom:696.285000px;}
.y10_c00148{bottom:717.165000px;}
.yf_c00148{bottom:753.165000px;}
.ye_c00148{bottom:789.165000px;}
.yd_c00148{bottom:827.685000px;}
.yc_c00148{bottom:864.405000px;}
.yb_c00148{bottom:900.405000px;}
.ya_c00148{bottom:921.285000px;}
.y9_c00148{bottom:942.165000px;}
.y8_c00148{bottom:963.405000px;}
.y7_c00148{bottom:999.405000px;}
.y6_c00148{bottom:1020.285000px;}
.y5_c00148{bottom:1041.525000px;}
.y4_c00148{bottom:1062.405000px;}
.y3_c00148{bottom:1085.445000px;}
.y2_c00148{bottom:1138.365000px;}
.ha_c00148{height:19.255500px;}
.h8_c00148{height:32.616000px;}
.h9_c00148{height:39.350391px;}
.hb_c00148{height:46.320000px;}
.h6_c00148{height:53.490240px;}
.h7_c00148{height:55.136477px;}
.h3_c00148{height:65.232000px;}
.h4_c00148{height:67.239607px;}
.h5_c00148{height:68.074560px;}
.h2_c00148{height:1201.365000px;}
.h0_c00148{height:1262.835000px;}
.h1_c00148{height:1263.000000px;}
.w3_c00148{width:25.020000px;}
.w2_c00148{width:863.955000px;}
.w0_c00148{width:892.935000px;}
.w1_c00148{width:893.250000px;}
.x0_c00148{left:0.000000px;}
.x1_c00148{left:14.490000px;}
.x2_c00148{left:113.040150px;}
.x28_c00148{left:118.044000px;}
.x1d_c00148{left:120.942300px;}
.x1e_c00148{left:140.112000px;}
.x29_c00148{left:142.315350px;}
.x1f_c00148{left:148.853400px;}
.x26_c00148{left:155.571900px;}
.x3_c00148{left:161.513700px;}
.x27_c00148{left:184.731150px;}
.x7_c00148{left:215.586150px;}
.x4_c00148{left:225.970050px;}
.x20_c00148{left:240.047550px;}
.x21_c00148{left:247.949700px;}
.xc_c00148{left:267.028200px;}
.x8_c00148{left:269.585850px;}
.x30_c00148{left:271.375050px;}
.xe_c00148{left:279.258150px;}
.x24_c00148{left:298.884150px;}
.x22_c00148{left:302.938500px;}
.x5_c00148{left:310.363050px;}
.x14_c00148{left:312.203550px;}
.x15_c00148{left:332.197650px;}
.x1a_c00148{left:339.786600px;}
.x23_c00148{left:345.648600px;}
.x2a_c00148{left:349.618950px;}
.xf_c00148{left:351.900450px;}
.x2e_c00148{left:358.459350px;}
.x2f_c00148{left:364.038150px;}
.x16_c00148{left:366.396600px;}
.x9_c00148{left:379.950750px;}
.x1b_c00148{left:383.135700px;}
.xb_c00148{left:410.727150px;}
.xd_c00148{left:417.992400px;}
.x6_c00148{left:427.788600px;}
.x17_c00148{left:429.710100px;}
.x2b_c00148{left:438.868650px;}
.x25_c00148{left:448.834650px;}
.x12_c00148{left:460.149900px;}
.xa_c00148{left:471.911400px;}
.x18_c00148{left:498.887250px;}
.x13_c00148{left:507.639000px;}
.x10_c00148{left:538.341000px;}
.x19_c00148{left:546.361350px;}
.x2c_c00148{left:550.876050px;}
.x11_c00148{left:588.743100px;}
.x33_c00148{left:598.103700px;}
.x31_c00148{left:602.302650px;}
.x2d_c00148{left:612.554850px;}
.x32_c00148{left:647.302050px;}
.x34_c00148{left:664.762200px;}
.x35_c00148{left:671.322150px;}
.x1c_c00148{left:724.590900px;}
.x36_c00148{left:759.915000px;}
@media print{
.v2_c00148{vertical-align:-21.760000pt;}
.v0_c00148{vertical-align:0.000000pt;}
.v1_c00148{vertical-align:26.880000pt;}
.ls9_c00148{letter-spacing:-0.159616pt;}
.ls8_c00148{letter-spacing:0.000000pt;}
.ls19_c00148{letter-spacing:0.128000pt;}
.ls15_c00148{letter-spacing:0.215168pt;}
.ls5_c00148{letter-spacing:0.236160pt;}
.ls18_c00148{letter-spacing:0.243428pt;}
.ls2_c00148{letter-spacing:0.262400pt;}
.lsc_c00148{letter-spacing:0.283392pt;}
.ls14_c00148{letter-spacing:0.292114pt;}
.ls11_c00148{letter-spacing:0.330624pt;}
.ls0_c00148{letter-spacing:0.374613pt;}
.lsd_c00148{letter-spacing:0.377856pt;}
.ls10_c00148{letter-spacing:0.389485pt;}
.ls1_c00148{letter-spacing:0.438171pt;}
.ls3_c00148{letter-spacing:0.472320pt;}
.ls17_c00148{letter-spacing:0.486856pt;}
.ls1c_c00148{letter-spacing:0.519552pt;}
.ls12_c00148{letter-spacing:0.535542pt;}
.lsb_c00148{letter-spacing:0.614016pt;}
.lsf_c00148{letter-spacing:0.632913pt;}
.ls13_c00148{letter-spacing:0.681599pt;}
.lse_c00148{letter-spacing:0.708480pt;}
.ls4_c00148{letter-spacing:0.730284pt;}
.ls16_c00148{letter-spacing:1.663616pt;}
.lsa_c00148{letter-spacing:2.156800pt;}
.ls6_c00148{letter-spacing:5.312000pt;}
.ls7_c00148{letter-spacing:5.475484pt;}
.ls1a_c00148{letter-spacing:6.292352pt;}
.ls1d_c00148{letter-spacing:8.732672pt;}
.ls1b_c00148{letter-spacing:9.462144pt;}
.ws1_c00148{word-spacing:-17.792000pt;}
.ws5_c00148{word-spacing:-15.768735pt;}
.ws7_c00148{word-spacing:-15.720049pt;}
.ws3_c00148{word-spacing:-15.671364pt;}
.ws4_c00148{word-spacing:-15.573992pt;}
.ws8_c00148{word-spacing:-15.476621pt;}
.wsd_c00148{word-spacing:-15.427936pt;}
.ws9_c00148{word-spacing:-15.203456pt;}
.wsb_c00148{word-spacing:-15.061760pt;}
.wsa_c00148{word-spacing:-14.967296pt;}
.ws0_c00148{word-spacing:-10.319360pt;}
.ws2_c00148{word-spacing:-10.159744pt;}
.wsc_c00148{word-spacing:-9.024000pt;}
.ws6_c00148{word-spacing:-8.896000pt;}
.wse_c00148{word-spacing:0.000000pt;}
._12_c00148{margin-left:-9.125120pt;}
._13_c00148{margin-left:-8.165120pt;}
._10_c00148{margin-left:-6.081280pt;}
._11_c00148{margin-left:-5.070080pt;}
._f_c00148{margin-left:-2.141739pt;}
._a_c00148{margin-left:-1.217067pt;}
._5_c00148{width:1.088000pt;}
._9_c00148{width:2.176000pt;}
._b_c00148{width:3.253760pt;}
._6_c00148{width:4.160000pt;}
._0_c00148{width:5.312000pt;}
._8_c00148{width:6.208000pt;}
._e_c00148{width:7.724587pt;}
._1_c00148{width:8.768000pt;}
._4_c00148{width:9.664000pt;}
._2_c00148{width:10.752000pt;}
._3_c00148{width:13.376000pt;}
._7_c00148{width:14.592000pt;}
._c_c00148{width:16.100864pt;}
._d_c00148{width:17.909760pt;}
.fs5_c00148{font-size:32.000000pt;}
.fs2_c00148{font-size:37.120000pt;}
.fs3_c00148{font-size:52.480000pt;}
.fs6_c00148{font-size:53.333333pt;}
.fs4_c00148{font-size:54.095146pt;}
.fs0_c00148{font-size:64.000000pt;}
.fs1_c00148{font-size:65.969690pt;}
.y0_c00148{bottom:0.000000pt;}
.y40_c00148{bottom:2.773467pt;}
.y3f_c00148{bottom:30.884000pt;}
.y1_c00148{bottom:48.000000pt;}
.y3e_c00148{bottom:49.316480pt;}
.y3c_c00148{bottom:64.679680pt;}
.y3d_c00148{bottom:64.680000pt;}
.y3b_c00148{bottom:80.358080pt;}
.y3a_c00148{bottom:95.721600pt;}
.y39_c00148{bottom:111.400000pt;}
.y38_c00148{bottom:111.401600pt;}
.y37_c00148{bottom:132.520000pt;}
.y36_c00148{bottom:147.880000pt;}
.y35_c00148{bottom:158.121600pt;}
.y34_c00148{bottom:173.800000pt;}
.y33_c00148{bottom:179.240000pt;}
.y32_c00148{bottom:194.600000pt;}
.y30_c00148{bottom:204.836480pt;}
.y31_c00148{bottom:204.840000pt;}
.y2f_c00148{bottom:220.200000pt;}
.y2e_c00148{bottom:220.201600pt;}
.y2d_c00148{bottom:235.880000pt;}
.y2c_c00148{bottom:241.320000pt;}
.y2b_c00148{bottom:251.560000pt;}
.y2a_c00148{bottom:257.000000pt;}
.y29_c00148{bottom:266.920000pt;}
.y28_c00148{bottom:266.923200pt;}
.y27_c00148{bottom:282.601600pt;}
.y25_c00148{bottom:298.276480pt;}
.y26_c00148{bottom:298.280000pt;}
.y24_c00148{bottom:313.640000pt;}
.y23_c00148{bottom:329.320000pt;}
.y22_c00148{bottom:334.760000pt;}
.y20_c00148{bottom:344.997760pt;}
.y21_c00148{bottom:345.000000pt;}
.y1f_c00148{bottom:360.361280pt;}
.y1e_c00148{bottom:376.039680pt;}
.y1d_c00148{bottom:391.718080pt;}
.y1c_c00148{bottom:407.081600pt;}
.y1a_c00148{bottom:422.756480pt;}
.y1b_c00148{bottom:422.760000pt;}
.y19_c00148{bottom:438.120000pt;}
.y18_c00148{bottom:438.121600pt;}
.y17_c00148{bottom:453.800000pt;}
.y16_c00148{bottom:482.920000pt;}
.y15_c00148{bottom:544.360000pt;}
.y14_c00148{bottom:562.920000pt;}
.y13_c00148{bottom:581.480000pt;}
.y12_c00148{bottom:600.360000pt;}
.y11_c00148{bottom:618.920000pt;}
.y10_c00148{bottom:637.480000pt;}
.yf_c00148{bottom:669.480000pt;}
.ye_c00148{bottom:701.480000pt;}
.yd_c00148{bottom:735.720000pt;}
.yc_c00148{bottom:768.360000pt;}
.yb_c00148{bottom:800.360000pt;}
.ya_c00148{bottom:818.920000pt;}
.y9_c00148{bottom:837.480000pt;}
.y8_c00148{bottom:856.360000pt;}
.y7_c00148{bottom:888.360000pt;}
.y6_c00148{bottom:906.920000pt;}
.y5_c00148{bottom:925.800000pt;}
.y4_c00148{bottom:944.360000pt;}
.y3_c00148{bottom:964.840000pt;}
.y2_c00148{bottom:1011.880000pt;}
.ha_c00148{height:17.116000pt;}
.h8_c00148{height:28.992000pt;}
.h9_c00148{height:34.978125pt;}
.hb_c00148{height:41.173333pt;}
.h6_c00148{height:47.546880pt;}
.h7_c00148{height:49.010202pt;}
.h3_c00148{height:57.984000pt;}
.h4_c00148{height:59.768539pt;}
.h5_c00148{height:60.510720pt;}
.h2_c00148{height:1067.880000pt;}
.h0_c00148{height:1122.520000pt;}
.h1_c00148{height:1122.666667pt;}
.w3_c00148{width:22.240000pt;}
.w2_c00148{width:767.960000pt;}
.w0_c00148{width:793.720000pt;}
.w1_c00148{width:794.000000pt;}
.x0_c00148{left:0.000000pt;}
.x1_c00148{left:12.880000pt;}
.x2_c00148{left:100.480133pt;}
.x28_c00148{left:104.928000pt;}
.x1d_c00148{left:107.504267pt;}
.x1e_c00148{left:124.544000pt;}
.x29_c00148{left:126.502533pt;}
.x1f_c00148{left:132.314133pt;}
.x26_c00148{left:138.286133pt;}
.x3_c00148{left:143.567733pt;}
.x27_c00148{left:164.205467pt;}
.x7_c00148{left:191.632133pt;}
.x4_c00148{left:200.862267pt;}
.x20_c00148{left:213.375600pt;}
.x21_c00148{left:220.399733pt;}
.xc_c00148{left:237.358400pt;}
.x8_c00148{left:239.631867pt;}
.x30_c00148{left:241.222267pt;}
.xe_c00148{left:248.229467pt;}
.x24_c00148{left:265.674800pt;}
.x22_c00148{left:269.278667pt;}
.x5_c00148{left:275.878267pt;}
.x14_c00148{left:277.514267pt;}
.x15_c00148{left:295.286800pt;}
.x1a_c00148{left:302.032533pt;}
.x23_c00148{left:307.243200pt;}
.x2a_c00148{left:310.772400pt;}
.xf_c00148{left:312.800400pt;}
.x2e_c00148{left:318.630533pt;}
.x2f_c00148{left:323.589467pt;}
.x16_c00148{left:325.685867pt;}
.x9_c00148{left:337.734000pt;}
.x1b_c00148{left:340.565067pt;}
.xb_c00148{left:365.090800pt;}
.xd_c00148{left:371.548800pt;}
.x6_c00148{left:380.256533pt;}
.x17_c00148{left:381.964533pt;}
.x2b_c00148{left:390.105467pt;}
.x25_c00148{left:398.964133pt;}
.x12_c00148{left:409.022133pt;}
.xa_c00148{left:419.476800pt;}
.x18_c00148{left:443.455333pt;}
.x13_c00148{left:451.234667pt;}
.x10_c00148{left:478.525333pt;}
.x19_c00148{left:485.654533pt;}
.x2c_c00148{left:489.667600pt;}
.x11_c00148{left:523.327200pt;}
.x33_c00148{left:531.647733pt;}
.x31_c00148{left:535.380133pt;}
.x2d_c00148{left:544.493200pt;}
.x32_c00148{left:575.379600pt;}
.x34_c00148{left:590.899733pt;}
.x35_c00148{left:596.730800pt;}
.x1c_c00148{left:644.080800pt;}
.x36_c00148{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06be108a1e4f17f49a27c79f.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.134000;font-style:normal;font-weight:normal;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_3306cc7d3e45fddf0d5d2cfc.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_de4d51812148bda9e5b0c2a3.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:0.709000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00149;src:url('chunks/assets/font_64ab0bd56ea405104dc49ffc.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:0.787000;font-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_c00149{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00149{vertical-align:-24.480000px;}
.v0_c00149{vertical-align:0.000000px;}
.v1_c00149{vertical-align:30.240000px;}
.ls9_c00149{letter-spacing:-0.179568px;}
.ls8_c00149{letter-spacing:0.000000px;}
.lse_c00149{letter-spacing:0.144000px;}
.lsf_c00149{letter-spacing:0.265680px;}
.ls3_c00149{letter-spacing:0.324720px;}
.ls2_c00149{letter-spacing:0.354240px;}
.ls4_c00149{letter-spacing:0.531360px;}
.ls5_c00149{letter-spacing:0.537264px;}
.lsd_c00149{letter-spacing:0.712800px;}
.ls11_c00149{letter-spacing:0.743904px;}
.ls1_c00149{letter-spacing:0.991970px;}
.lsc_c00149{letter-spacing:3.535200px;}
.ls12_c00149{letter-spacing:5.514336px;}
.ls6_c00149{letter-spacing:5.976000px;}
.ls7_c00149{letter-spacing:6.159920px;}
.ls0_c00149{letter-spacing:6.336000px;}
.ls10_c00149{letter-spacing:11.985120px;}
.lsb_c00149{letter-spacing:12.592800px;}
.lsa_c00149{letter-spacing:68.378400px;}
.sc__c00149{text-shadow:none;}
.sc1_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00149{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc1_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00149{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00149{word-spacing:-21.927456px;}
.ws1_c00149{word-spacing:-20.016000px;}
.ws3_c00149{word-spacing:-17.910227px;}
.ws4_c00149{word-spacing:-16.944480px;}
.ws0_c00149{word-spacing:-11.429712px;}
.ws2_c00149{word-spacing:-10.152000px;}
.ws6_c00149{word-spacing:0.000000px;}
._d_c00149{margin-left:-62.524800px;}
._11_c00149{margin-left:-12.284184px;}
._13_c00149{margin-left:-10.734216px;}
._12_c00149{margin-left:-3.542400px;}
._14_c00149{margin-left:-1.003680px;}
._a_c00149{width:1.080000px;}
._9_c00149{width:2.088000px;}
._5_c00149{width:3.888000px;}
._0_c00149{width:5.976000px;}
._3_c00149{width:7.560000px;}
._4_c00149{width:9.432000px;}
._f_c00149{width:10.440000px;}
._10_c00149{width:11.808000px;}
._e_c00149{width:13.392000px;}
._6_c00149{width:16.560000px;}
._2_c00149{width:17.640000px;}
._1_c00149{width:21.600000px;}
._b_c00149{width:23.760000px;}
._7_c00149{width:27.072000px;}
._8_c00149{width:28.224000px;}
._c_c00149{width:62.424000px;}
.fc0_c00149{color:rgb(0,0,0);}
.fs3_c00149{font-size:36.000000px;}
.fs2_c00149{font-size:41.760000px;}
.fs4_c00149{font-size:59.040000px;}
.fs6_c00149{font-size:60.000000px;}
.fs5_c00149{font-size:60.857039px;}
.fs0_c00149{font-size:72.000000px;}
.fs1_c00149{font-size:74.215901px;}
.y0_c00149{bottom:0.000000px;}
.y34_c00149{bottom:3.120150px;}
.y33_c00149{bottom:34.744500px;}
.y1_c00149{bottom:54.000000px;}
.y32_c00149{bottom:61.605000px;}
.y31_c00149{bottom:78.885000px;}
.y30_c00149{bottom:96.525000px;}
.y2f_c00149{bottom:113.805000px;}
.y2e_c00149{bottom:131.445000px;}
.y2d_c00149{bottom:149.085000px;}
.y2c_c00149{bottom:166.365000px;}
.y2b_c00149{bottom:177.886800px;}
.y2a_c00149{bottom:201.645000px;}
.y29_c00149{bottom:212.805000px;}
.y28_c00149{bottom:218.925000px;}
.y27_c00149{bottom:245.565000px;}
.y26_c00149{bottom:286.605000px;}
.y25_c00149{bottom:307.485000px;}
.y24_c00149{bottom:328.365000px;}
.y23_c00149{bottom:349.605000px;}
.y22_c00149{bottom:370.485000px;}
.y21_c00149{bottom:391.725000px;}
.y20_c00149{bottom:412.605000px;}
.y1f_c00149{bottom:448.605000px;}
.y1e_c00149{bottom:469.485000px;}
.y1d_c00149{bottom:490.725000px;}
.y1c_c00149{bottom:511.605000px;}
.y1b_c00149{bottom:532.485000px;}
.y1a_c00149{bottom:553.725000px;}
.y19_c00149{bottom:574.605000px;}
.y18_c00149{bottom:595.485000px;}
.y17_c00149{bottom:616.725000px;}
.y16_c00149{bottom:637.605000px;}
.y15_c00149{bottom:658.485000px;}
.y14_c00149{bottom:679.725000px;}
.y13_c00149{bottom:715.725000px;}
.y12_c00149{bottom:736.605000px;}
.y11_c00149{bottom:757.485000px;}
.y10_c00149{bottom:778.725000px;}
.yf_c00149{bottom:799.605000px;}
.ye_c00149{bottom:835.605000px;}
.yd_c00149{bottom:856.845000px;}
.yc_c00149{bottom:877.725000px;}
.yb_c00149{bottom:898.605000px;}
.ya_c00149{bottom:921.645000px;}
.y9_c00149{bottom:944.325000px;}
.y8_c00149{bottom:964.845000px;}
.y7_c00149{bottom:986.085000px;}
.y6_c00149{bottom:1006.965000px;}
.y5_c00149{bottom:1027.845000px;}
.y4_c00149{bottom:1063.845000px;}
.y3_c00149{bottom:1085.085000px;}
.y2_c00149{bottom:1138.365000px;}
.h9_c00149{height:19.255500px;}
.h6_c00149{height:32.616000px;}
.ha_c00149{height:46.320000px;}
.h8_c00149{height:53.490240px;}
.h7_c00149{height:55.136477px;}
.h3_c00149{height:65.232000px;}
.h4_c00149{height:67.239607px;}
.h5_c00149{height:68.074560px;}
.h2_c00149{height:1201.365000px;}
.h0_c00149{height:1262.835000px;}
.h1_c00149{height:1263.000000px;}
.w3_c00149{width:25.020000px;}
.w2_c00149{width:863.955000px;}
.w0_c00149{width:892.935000px;}
.w1_c00149{width:893.250000px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:14.490000px;}
.x2_c00149{left:113.040150px;}
.x5_c00149{left:119.034000px;}
.x7_c00149{left:126.035850px;}
.xb_c00149{left:127.217700px;}
.x3_c00149{left:161.513700px;}
.xc_c00149{left:163.892250px;}
.x6_c00149{left:207.429150px;}
.x4_c00149{left:225.970050px;}
.x8_c00149{left:307.595550px;}
.x9_c00149{left:488.663100px;}
.xa_c00149{left:533.858700px;}
.xd_c00149{left:759.915000px;}
@media print{
.v2_c00149{vertical-align:-21.760000pt;}
.v0_c00149{vertical-align:0.000000pt;}
.v1_c00149{vertical-align:26.880000pt;}
.ls9_c00149{letter-spacing:-0.159616pt;}
.ls8_c00149{letter-spacing:0.000000pt;}
.lse_c00149{letter-spacing:0.128000pt;}
.lsf_c00149{letter-spacing:0.236160pt;}
.ls3_c00149{letter-spacing:0.288640pt;}
.ls2_c00149{letter-spacing:0.314880pt;}
.ls4_c00149{letter-spacing:0.472320pt;}
.ls5_c00149{letter-spacing:0.477568pt;}
.lsd_c00149{letter-spacing:0.633600pt;}
.ls11_c00149{letter-spacing:0.661248pt;}
.ls1_c00149{letter-spacing:0.881751pt;}
.lsc_c00149{letter-spacing:3.142400pt;}
.ls12_c00149{letter-spacing:4.901632pt;}
.ls6_c00149{letter-spacing:5.312000pt;}
.ls7_c00149{letter-spacing:5.475484pt;}
.ls0_c00149{letter-spacing:5.632000pt;}
.ls10_c00149{letter-spacing:10.653440pt;}
.lsb_c00149{letter-spacing:11.193600pt;}
.lsa_c00149{letter-spacing:60.780800pt;}
.ws5_c00149{word-spacing:-19.491072pt;}
.ws1_c00149{word-spacing:-17.792000pt;}
.ws3_c00149{word-spacing:-15.920201pt;}
.ws4_c00149{word-spacing:-15.061760pt;}
.ws0_c00149{word-spacing:-10.159744pt;}
.ws2_c00149{word-spacing:-9.024000pt;}
.ws6_c00149{word-spacing:0.000000pt;}
._d_c00149{margin-left:-55.577600pt;}
._11_c00149{margin-left:-10.919275pt;}
._13_c00149{margin-left:-9.541525pt;}
._12_c00149{margin-left:-3.148800pt;}
._14_c00149{margin-left:-0.892160pt;}
._a_c00149{width:0.960000pt;}
._9_c00149{width:1.856000pt;}
._5_c00149{width:3.456000pt;}
._0_c00149{width:5.312000pt;}
._3_c00149{width:6.720000pt;}
._4_c00149{width:8.384000pt;}
._f_c00149{width:9.280000pt;}
._10_c00149{width:10.496000pt;}
._e_c00149{width:11.904000pt;}
._6_c00149{width:14.720000pt;}
._2_c00149{width:15.680000pt;}
._1_c00149{width:19.200000pt;}
._b_c00149{width:21.120000pt;}
._7_c00149{width:24.064000pt;}
._8_c00149{width:25.088000pt;}
._c_c00149{width:55.488000pt;}
.fs3_c00149{font-size:32.000000pt;}
.fs2_c00149{font-size:37.120000pt;}
.fs4_c00149{font-size:52.480000pt;}
.fs6_c00149{font-size:53.333333pt;}
.fs5_c00149{font-size:54.095146pt;}
.fs0_c00149{font-size:64.000000pt;}
.fs1_c00149{font-size:65.969690pt;}
.y0_c00149{bottom:0.000000pt;}
.y34_c00149{bottom:2.773467pt;}
.y33_c00149{bottom:30.884000pt;}
.y1_c00149{bottom:48.000000pt;}
.y32_c00149{bottom:54.760000pt;}
.y31_c00149{bottom:70.120000pt;}
.y30_c00149{bottom:85.800000pt;}
.y2f_c00149{bottom:101.160000pt;}
.y2e_c00149{bottom:116.840000pt;}
.y2d_c00149{bottom:132.520000pt;}
.y2c_c00149{bottom:147.880000pt;}
.y2b_c00149{bottom:158.121600pt;}
.y2a_c00149{bottom:179.240000pt;}
.y29_c00149{bottom:189.160000pt;}
.y28_c00149{bottom:194.600000pt;}
.y27_c00149{bottom:218.280000pt;}
.y26_c00149{bottom:254.760000pt;}
.y25_c00149{bottom:273.320000pt;}
.y24_c00149{bottom:291.880000pt;}
.y23_c00149{bottom:310.760000pt;}
.y22_c00149{bottom:329.320000pt;}
.y21_c00149{bottom:348.200000pt;}
.y20_c00149{bottom:366.760000pt;}
.y1f_c00149{bottom:398.760000pt;}
.y1e_c00149{bottom:417.320000pt;}
.y1d_c00149{bottom:436.200000pt;}
.y1c_c00149{bottom:454.760000pt;}
.y1b_c00149{bottom:473.320000pt;}
.y1a_c00149{bottom:492.200000pt;}
.y19_c00149{bottom:510.760000pt;}
.y18_c00149{bottom:529.320000pt;}
.y17_c00149{bottom:548.200000pt;}
.y16_c00149{bottom:566.760000pt;}
.y15_c00149{bottom:585.320000pt;}
.y14_c00149{bottom:604.200000pt;}
.y13_c00149{bottom:636.200000pt;}
.y12_c00149{bottom:654.760000pt;}
.y11_c00149{bottom:673.320000pt;}
.y10_c00149{bottom:692.200000pt;}
.yf_c00149{bottom:710.760000pt;}
.ye_c00149{bottom:742.760000pt;}
.yd_c00149{bottom:761.640000pt;}
.yc_c00149{bottom:780.200000pt;}
.yb_c00149{bottom:798.760000pt;}
.ya_c00149{bottom:819.240000pt;}
.y9_c00149{bottom:839.400000pt;}
.y8_c00149{bottom:857.640000pt;}
.y7_c00149{bottom:876.520000pt;}
.y6_c00149{bottom:895.080000pt;}
.y5_c00149{bottom:913.640000pt;}
.y4_c00149{bottom:945.640000pt;}
.y3_c00149{bottom:964.520000pt;}
.y2_c00149{bottom:1011.880000pt;}
.h9_c00149{height:17.116000pt;}
.h6_c00149{height:28.992000pt;}
.ha_c00149{height:41.173333pt;}
.h8_c00149{height:47.546880pt;}
.h7_c00149{height:49.010202pt;}
.h3_c00149{height:57.984000pt;}
.h4_c00149{height:59.768539pt;}
.h5_c00149{height:60.510720pt;}
.h2_c00149{height:1067.880000pt;}
.h0_c00149{height:1122.520000pt;}
.h1_c00149{height:1122.666667pt;}
.w3_c00149{width:22.240000pt;}
.w2_c00149{width:767.960000pt;}
.w0_c00149{width:793.720000pt;}
.w1_c00149{width:794.000000pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:12.880000pt;}
.x2_c00149{left:100.480133pt;}
.x5_c00149{left:105.808000pt;}
.x7_c00149{left:112.031867pt;}
.xb_c00149{left:113.082400pt;}
.x3_c00149{left:143.567733pt;}
.xc_c00149{left:145.682000pt;}
.x6_c00149{left:184.381467pt;}
.x4_c00149{left:200.862267pt;}
.x8_c00149{left:273.418267pt;}
.x9_c00149{left:434.367200pt;}
.xa_c00149{left:474.541067pt;}
.xd_c00149{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13fd2f3a696e365549af05b2.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.134000;font-style:normal;font-weight:normal;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_f1b3e66d3349c44c6652b0e4.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00150;src:url('chunks/assets/font_cd3e59e764e8cce53ea501a0.woff2')format("woff");}.ff6_c00150{font-family:ff6_c00150;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00150{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00150{vertical-align:-30.240000px;}
.v3_c00150{vertical-align:-24.480000px;}
.v0_c00150{vertical-align:0.000000px;}
.v1_c00150{vertical-align:30.240000px;}
.ls9_c00150{letter-spacing:-0.179568px;}
.ls7_c00150{letter-spacing:0.000000px;}
.lsb_c00150{letter-spacing:0.144000px;}
.ls3_c00150{letter-spacing:0.265680px;}
.ls2_c00150{letter-spacing:0.295200px;}
.ls4_c00150{letter-spacing:0.531360px;}
.ls5_c00150{letter-spacing:0.547713px;}
.lse_c00150{letter-spacing:0.602485px;}
.ls1_c00150{letter-spacing:0.712027px;}
.lsf_c00150{letter-spacing:0.718113px;}
.lsa_c00150{letter-spacing:1.418400px;}
.ls0_c00150{letter-spacing:5.976000px;}
.lsc_c00150{letter-spacing:6.039792px;}
.ls6_c00150{letter-spacing:6.159920px;}
.lsd_c00150{letter-spacing:12.658176px;}
.ls8_c00150{letter-spacing:16.394400px;}
.sc__c00150{text-shadow:none;}
.sc1_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00150{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc1_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00150{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00150{word-spacing:-20.016000px;}
.ws5_c00150{word-spacing:-17.636370px;}
.ws3_c00150{word-spacing:-17.520742px;}
.ws4_c00150{word-spacing:-17.465970px;}
.ws0_c00150{word-spacing:-11.429712px;}
.ws2_c00150{word-spacing:-10.152000px;}
.ws6_c00150{word-spacing:0.000000px;}
._6_c00150{margin-left:-16.444800px;}
._13_c00150{margin-left:-12.391200px;}
._14_c00150{margin-left:-11.113920px;}
._11_c00150{margin-left:-5.719680px;}
._12_c00150{margin-left:-4.648320px;}
._a_c00150{margin-left:-1.468800px;}
._9_c00150{width:1.440000px;}
._3_c00150{width:2.664000px;}
._10_c00150{width:3.672000px;}
._b_c00150{width:4.680000px;}
._0_c00150{width:5.976000px;}
._c_c00150{width:8.208000px;}
._2_c00150{width:9.360000px;}
._d_c00150{width:10.440000px;}
._f_c00150{width:11.541816px;}
._8_c00150{width:13.032000px;}
._7_c00150{width:14.544000px;}
._5_c00150{width:16.416000px;}
._4_c00150{width:18.792000px;}
._1_c00150{width:24.480000px;}
._e_c00150{width:25.992000px;}
.fc0_c00150{color:rgb(0,0,0);}
.fs3_c00150{font-size:36.000000px;}
.fs2_c00150{font-size:41.760000px;}
.fs4_c00150{font-size:59.040000px;}
.fs6_c00150{font-size:60.000000px;}
.fs5_c00150{font-size:60.857039px;}
.fs0_c00150{font-size:72.000000px;}
.fs1_c00150{font-size:74.215901px;}
.y0_c00150{bottom:0.000000px;}
.y34_c00150{bottom:3.120150px;}
.y33_c00150{bottom:34.744500px;}
.y1_c00150{bottom:54.000000px;}
.y32_c00150{bottom:55.485000px;}
.y31_c00150{bottom:61.605000px;}
.y30_c00150{bottom:78.885000px;}
.y2f_c00150{bottom:96.525000px;}
.y2e_c00150{bottom:113.805000px;}
.y2d_c00150{bottom:125.325000px;}
.y2c_c00150{bottom:125.326800px;}
.y2b_c00150{bottom:149.085000px;}
.y2a_c00150{bottom:160.246800px;}
.y29_c00150{bottom:177.885000px;}
.y28_c00150{bottom:184.005000px;}
.y27_c00150{bottom:210.645000px;}
.y26_c00150{bottom:290.925000px;}
.y25_c00150{bottom:312.165000px;}
.y24_c00150{bottom:348.165000px;}
.y23_c00150{bottom:369.405000px;}
.y22_c00150{bottom:392.085000px;}
.y21_c00150{bottom:412.965000px;}
.y20_c00150{bottom:433.845000px;}
.y1f_c00150{bottom:454.725000px;}
.y1e_c00150{bottom:475.965000px;}
.y1d_c00150{bottom:496.845000px;}
.y1c_c00150{bottom:532.845000px;}
.y1b_c00150{bottom:553.725000px;}
.y1a_c00150{bottom:574.965000px;}
.y19_c00150{bottom:595.845000px;}
.y18_c00150{bottom:616.725000px;}
.y16_c00150{bottom:637.965000px;}
.y17_c00150{bottom:645.525000px;}
.y15_c00150{bottom:658.845000px;}
.y14_c00150{bottom:679.725000px;}
.y13_c00150{bottom:715.725000px;}
.y12_c00150{bottom:736.965000px;}
.y11_c00150{bottom:757.845000px;}
.y10_c00150{bottom:793.845000px;}
.yf_c00150{bottom:815.085000px;}
.ye_c00150{bottom:835.965000px;}
.yd_c00150{bottom:856.845000px;}
.yc_c00150{bottom:878.085000px;}
.yb_c00150{bottom:898.965000px;}
.ya_c00150{bottom:919.845000px;}
.y9_c00150{bottom:941.085000px;}
.y8_c00150{bottom:977.085000px;}
.y7_c00150{bottom:1001.205000px;}
.y6_c00150{bottom:1022.085000px;}
.y5_c00150{bottom:1042.965000px;}
.y4_c00150{bottom:1063.845000px;}
.y3_c00150{bottom:1085.085000px;}
.y2_c00150{bottom:1138.365000px;}
.hb_c00150{height:19.255500px;}
.h8_c00150{height:32.616000px;}
.h6_c00150{height:37.834560px;}
.hc_c00150{height:46.320000px;}
.h7_c00150{height:47.988281px;}
.ha_c00150{height:53.490240px;}
.h9_c00150{height:55.136477px;}
.h3_c00150{height:65.232000px;}
.h4_c00150{height:67.239607px;}
.h5_c00150{height:68.074560px;}
.h2_c00150{height:1201.365000px;}
.h0_c00150{height:1262.835000px;}
.h1_c00150{height:1263.000000px;}
.w3_c00150{width:25.020000px;}
.w2_c00150{width:863.955000px;}
.w0_c00150{width:892.935000px;}
.w1_c00150{width:893.250000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:14.490000px;}
.x2_c00150{left:113.040150px;}
.x3_c00150{left:161.513700px;}
.xe_c00150{left:163.900200px;}
.x8_c00150{left:167.039400px;}
.xf_c00150{left:176.878050px;}
.x27_c00150{left:199.218000px;}
.x10_c00150{left:203.611500px;}
.x21_c00150{left:208.560000px;}
.x11_c00150{left:212.611500px;}
.x28_c00150{left:217.305600px;}
.x36_c00150{left:220.544700px;}
.x4_c00150{left:225.970050px;}
.x29_c00150{left:231.309450px;}
.x37_c00150{left:264.703500px;}
.x33_c00150{left:273.054900px;}
.x22_c00150{left:276.839700px;}
.x34_c00150{left:283.869900px;}
.x9_c00150{left:290.021100px;}
.x35_c00150{left:299.709150px;}
.x1f_c00150{left:305.589150px;}
.x20_c00150{left:314.589150px;}
.xa_c00150{left:339.136650px;}
.x2c_c00150{left:341.429400px;}
.x12_c00150{left:361.045200px;}
.x2d_c00150{left:362.678100px;}
.x31_c00150{left:368.794200px;}
.x13_c00150{left:374.022900px;}
.x2e_c00150{left:383.945100px;}
.x14_c00150{left:397.820700px;}
.x32_c00150{left:409.371150px;}
.x15_c00150{left:411.824700px;}
.x38_c00150{left:443.873250px;}
.x5_c00150{left:487.686450px;}
.x23_c00150{left:495.855450px;}
.x16_c00150{left:498.046200px;}
.x6_c00150{left:500.682150px;}
.x17_c00150{left:511.023900px;}
.x2a_c00150{left:528.031200px;}
.x24_c00150{left:537.831000px;}
.x2b_c00150{left:541.008900px;}
.x1d_c00150{left:565.032000px;}
.x2f_c00150{left:595.537800px;}
.x1e_c00150{left:614.045250px;}
.x1a_c00150{left:617.443800px;}
.x18_c00150{left:634.892250px;}
.x30_c00150{left:649.554900px;}
.x1b_c00150{left:666.360000px;}
.x25_c00150{left:670.660800px;}
.x26_c00150{left:683.638500px;}
.xc_c00150{left:705.372750px;}
.x7_c00150{left:709.386450px;}
.xb_c00150{left:716.388450px;}
.x1c_c00150{left:729.384150px;}
.xd_c00150{left:745.386150px;}
.x19_c00150{left:750.390000px;}
.x39_c00150{left:759.915000px;}
@media print{
.v2_c00150{vertical-align:-26.880000pt;}
.v3_c00150{vertical-align:-21.760000pt;}
.v0_c00150{vertical-align:0.000000pt;}
.v1_c00150{vertical-align:26.880000pt;}
.ls9_c00150{letter-spacing:-0.159616pt;}
.ls7_c00150{letter-spacing:0.000000pt;}
.lsb_c00150{letter-spacing:0.128000pt;}
.ls3_c00150{letter-spacing:0.236160pt;}
.ls2_c00150{letter-spacing:0.262400pt;}
.ls4_c00150{letter-spacing:0.472320pt;}
.ls5_c00150{letter-spacing:0.486856pt;}
.lse_c00150{letter-spacing:0.535542pt;}
.ls1_c00150{letter-spacing:0.632913pt;}
.lsf_c00150{letter-spacing:0.638323pt;}
.lsa_c00150{letter-spacing:1.260800pt;}
.ls0_c00150{letter-spacing:5.312000pt;}
.lsc_c00150{letter-spacing:5.368704pt;}
.ls6_c00150{letter-spacing:5.475484pt;}
.lsd_c00150{letter-spacing:11.251712pt;}
.ls8_c00150{letter-spacing:14.572800pt;}
.ws1_c00150{word-spacing:-17.792000pt;}
.ws5_c00150{word-spacing:-15.676773pt;}
.ws3_c00150{word-spacing:-15.573992pt;}
.ws4_c00150{word-spacing:-15.525307pt;}
.ws0_c00150{word-spacing:-10.159744pt;}
.ws2_c00150{word-spacing:-9.024000pt;}
.ws6_c00150{word-spacing:0.000000pt;}
._6_c00150{margin-left:-14.617600pt;}
._13_c00150{margin-left:-11.014400pt;}
._14_c00150{margin-left:-9.879040pt;}
._11_c00150{margin-left:-5.084160pt;}
._12_c00150{margin-left:-4.131840pt;}
._a_c00150{margin-left:-1.305600pt;}
._9_c00150{width:1.280000pt;}
._3_c00150{width:2.368000pt;}
._10_c00150{width:3.264000pt;}
._b_c00150{width:4.160000pt;}
._0_c00150{width:5.312000pt;}
._c_c00150{width:7.296000pt;}
._2_c00150{width:8.320000pt;}
._d_c00150{width:9.280000pt;}
._f_c00150{width:10.259392pt;}
._8_c00150{width:11.584000pt;}
._7_c00150{width:12.928000pt;}
._5_c00150{width:14.592000pt;}
._4_c00150{width:16.704000pt;}
._1_c00150{width:21.760000pt;}
._e_c00150{width:23.104000pt;}
.fs3_c00150{font-size:32.000000pt;}
.fs2_c00150{font-size:37.120000pt;}
.fs4_c00150{font-size:52.480000pt;}
.fs6_c00150{font-size:53.333333pt;}
.fs5_c00150{font-size:54.095146pt;}
.fs0_c00150{font-size:64.000000pt;}
.fs1_c00150{font-size:65.969690pt;}
.y0_c00150{bottom:0.000000pt;}
.y34_c00150{bottom:2.773467pt;}
.y33_c00150{bottom:30.884000pt;}
.y1_c00150{bottom:48.000000pt;}
.y32_c00150{bottom:49.320000pt;}
.y31_c00150{bottom:54.760000pt;}
.y30_c00150{bottom:70.120000pt;}
.y2f_c00150{bottom:85.800000pt;}
.y2e_c00150{bottom:101.160000pt;}
.y2d_c00150{bottom:111.400000pt;}
.y2c_c00150{bottom:111.401600pt;}
.y2b_c00150{bottom:132.520000pt;}
.y2a_c00150{bottom:142.441600pt;}
.y29_c00150{bottom:158.120000pt;}
.y28_c00150{bottom:163.560000pt;}
.y27_c00150{bottom:187.240000pt;}
.y26_c00150{bottom:258.600000pt;}
.y25_c00150{bottom:277.480000pt;}
.y24_c00150{bottom:309.480000pt;}
.y23_c00150{bottom:328.360000pt;}
.y22_c00150{bottom:348.520000pt;}
.y21_c00150{bottom:367.080000pt;}
.y20_c00150{bottom:385.640000pt;}
.y1f_c00150{bottom:404.200000pt;}
.y1e_c00150{bottom:423.080000pt;}
.y1d_c00150{bottom:441.640000pt;}
.y1c_c00150{bottom:473.640000pt;}
.y1b_c00150{bottom:492.200000pt;}
.y1a_c00150{bottom:511.080000pt;}
.y19_c00150{bottom:529.640000pt;}
.y18_c00150{bottom:548.200000pt;}
.y16_c00150{bottom:567.080000pt;}
.y17_c00150{bottom:573.800000pt;}
.y15_c00150{bottom:585.640000pt;}
.y14_c00150{bottom:604.200000pt;}
.y13_c00150{bottom:636.200000pt;}
.y12_c00150{bottom:655.080000pt;}
.y11_c00150{bottom:673.640000pt;}
.y10_c00150{bottom:705.640000pt;}
.yf_c00150{bottom:724.520000pt;}
.ye_c00150{bottom:743.080000pt;}
.yd_c00150{bottom:761.640000pt;}
.yc_c00150{bottom:780.520000pt;}
.yb_c00150{bottom:799.080000pt;}
.ya_c00150{bottom:817.640000pt;}
.y9_c00150{bottom:836.520000pt;}
.y8_c00150{bottom:868.520000pt;}
.y7_c00150{bottom:889.960000pt;}
.y6_c00150{bottom:908.520000pt;}
.y5_c00150{bottom:927.080000pt;}
.y4_c00150{bottom:945.640000pt;}
.y3_c00150{bottom:964.520000pt;}
.y2_c00150{bottom:1011.880000pt;}
.hb_c00150{height:17.116000pt;}
.h8_c00150{height:28.992000pt;}
.h6_c00150{height:33.630720pt;}
.hc_c00150{height:41.173333pt;}
.h7_c00150{height:42.656250pt;}
.ha_c00150{height:47.546880pt;}
.h9_c00150{height:49.010202pt;}
.h3_c00150{height:57.984000pt;}
.h4_c00150{height:59.768539pt;}
.h5_c00150{height:60.510720pt;}
.h2_c00150{height:1067.880000pt;}
.h0_c00150{height:1122.520000pt;}
.h1_c00150{height:1122.666667pt;}
.w3_c00150{width:22.240000pt;}
.w2_c00150{width:767.960000pt;}
.w0_c00150{width:793.720000pt;}
.w1_c00150{width:794.000000pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:12.880000pt;}
.x2_c00150{left:100.480133pt;}
.x3_c00150{left:143.567733pt;}
.xe_c00150{left:145.689067pt;}
.x8_c00150{left:148.479467pt;}
.xf_c00150{left:157.224933pt;}
.x27_c00150{left:177.082667pt;}
.x10_c00150{left:180.988000pt;}
.x21_c00150{left:185.386667pt;}
.x11_c00150{left:188.988000pt;}
.x28_c00150{left:193.160533pt;}
.x36_c00150{left:196.039733pt;}
.x4_c00150{left:200.862267pt;}
.x29_c00150{left:205.608400pt;}
.x37_c00150{left:235.292000pt;}
.x33_c00150{left:242.715467pt;}
.x22_c00150{left:246.079733pt;}
.x34_c00150{left:252.328800pt;}
.x9_c00150{left:257.796533pt;}
.x35_c00150{left:266.408133pt;}
.x1f_c00150{left:271.634800pt;}
.x20_c00150{left:279.634800pt;}
.xa_c00150{left:301.454800pt;}
.x2c_c00150{left:303.492800pt;}
.x12_c00150{left:320.929067pt;}
.x2d_c00150{left:322.380533pt;}
.x31_c00150{left:327.817067pt;}
.x13_c00150{left:332.464800pt;}
.x2e_c00150{left:341.284533pt;}
.x14_c00150{left:353.618400pt;}
.x32_c00150{left:363.885467pt;}
.x15_c00150{left:366.066400pt;}
.x38_c00150{left:394.554000pt;}
.x5_c00150{left:433.499067pt;}
.x23_c00150{left:440.760400pt;}
.x16_c00150{left:442.707733pt;}
.x6_c00150{left:445.050800pt;}
.x17_c00150{left:454.243467pt;}
.x2a_c00150{left:469.361067pt;}
.x24_c00150{left:478.072000pt;}
.x2b_c00150{left:480.896800pt;}
.x1d_c00150{left:502.250667pt;}
.x2f_c00150{left:529.366933pt;}
.x1e_c00150{left:545.818000pt;}
.x1a_c00150{left:548.838933pt;}
.x18_c00150{left:564.348667pt;}
.x30_c00150{left:577.382133pt;}
.x1b_c00150{left:592.320000pt;}
.x25_c00150{left:596.142933pt;}
.x26_c00150{left:607.678667pt;}
.xc_c00150{left:626.998000pt;}
.x7_c00150{left:630.565733pt;}
.xb_c00150{left:636.789733pt;}
.x1c_c00150{left:648.341467pt;}
.xd_c00150{left:662.565467pt;}
.x19_c00150{left:667.013333pt;}
.x39_c00150{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_05614d351be2a7ab9527eb14.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.134000;font-style:normal;font-weight:normal;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_457470bfa8a6d55f1e6a6aa4.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_5105a9c239c2ff456c29bb93.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_e4867bb30708f0b7f4cafb3a.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:0.787000;font-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_c00151{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00151{vertical-align:-24.480000px;}
.v0_c00151{vertical-align:0.000000px;}
.v1_c00151{vertical-align:30.240000px;}
.ls6_c00151{letter-spacing:-0.179568px;}
.ls5_c00151{letter-spacing:0.000000px;}
.lsa_c00151{letter-spacing:0.144000px;}
.ls3_c00151{letter-spacing:0.236160px;}
.lsb_c00151{letter-spacing:0.265680px;}
.ls2_c00151{letter-spacing:0.318816px;}
.ls12_c00151{letter-spacing:0.371952px;}
.ls14_c00151{letter-spacing:0.438171px;}
.ls13_c00151{letter-spacing:0.478224px;}
.lsf_c00151{letter-spacing:0.492942px;}
.lsd_c00151{letter-spacing:0.531360px;}
.ls11_c00151{letter-spacing:0.766799px;}
.ls15_c00151{letter-spacing:0.962352px;}
.ls10_c00151{letter-spacing:1.245744px;}
.lsc_c00151{letter-spacing:2.444256px;}
.lse_c00151{letter-spacing:2.585952px;}
.ls9_c00151{letter-spacing:5.430672px;}
.ls1_c00151{letter-spacing:5.975400px;}
.ls0_c00151{letter-spacing:5.976000px;}
.ls4_c00151{letter-spacing:6.159920px;}
.ls8_c00151{letter-spacing:16.293600px;}
.ls7_c00151{letter-spacing:19.951200px;}
.sc__c00151{text-shadow:none;}
.sc1_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00151{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc1_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00151{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00151{word-spacing:-21.043152px;}
.ws2_c00151{word-spacing:-20.016000px;}
.ws4_c00151{word-spacing:-16.731936px;}
.ws0_c00151{word-spacing:-11.429712px;}
.ws3_c00151{word-spacing:-10.152000px;}
.ws5_c00151{word-spacing:0.000000px;}
._4_c00151{margin-left:-20.102400px;}
._a_c00151{margin-left:-16.315200px;}
._10_c00151{margin-left:-2.177280px;}
._11_c00151{margin-left:-1.097280px;}
._6_c00151{width:1.008000px;}
._7_c00151{width:3.024000px;}
._1_c00151{width:4.176000px;}
._0_c00151{width:5.976000px;}
._b_c00151{width:7.416000px;}
._8_c00151{width:8.424000px;}
._e_c00151{width:9.576000px;}
._f_c00151{width:13.608000px;}
._c_c00151{width:14.760000px;}
._5_c00151{width:16.056000px;}
._9_c00151{width:17.136000px;}
._2_c00151{width:18.864000px;}
._3_c00151{width:19.944000px;}
._d_c00151{width:21.328200px;}
.fc0_c00151{color:rgb(0,0,0);}
.fs4_c00151{font-size:36.000000px;}
.fs2_c00151{font-size:41.760000px;}
.fs3_c00151{font-size:56.160000px;}
.fs5_c00151{font-size:59.040000px;}
.fs7_c00151{font-size:60.000000px;}
.fs6_c00151{font-size:60.857039px;}
.fs0_c00151{font-size:72.000000px;}
.fs1_c00151{font-size:74.215901px;}
.y0_c00151{bottom:0.000000px;}
.y2f_c00151{bottom:3.120150px;}
.y2e_c00151{bottom:34.744500px;}
.y1_c00151{bottom:54.000000px;}
.y2d_c00151{bottom:55.485000px;}
.y2c_c00151{bottom:61.605000px;}
.y2b_c00151{bottom:72.765000px;}
.y2a_c00151{bottom:78.885000px;}
.y29_c00151{bottom:90.401040px;}
.y28_c00151{bottom:113.805000px;}
.y27_c00151{bottom:125.326800px;}
.y25_c00151{bottom:142.961040px;}
.y26_c00151{bottom:142.965000px;}
.y24_c00151{bottom:166.365000px;}
.y23_c00151{bottom:184.005000px;}
.y22_c00151{bottom:210.645000px;}
.y21_c00151{bottom:252.405000px;}
.y20_c00151{bottom:280.845000px;}
.y1f_c00151{bottom:309.285000px;}
.y1e_c00151{bottom:345.285000px;}
.y1d_c00151{bottom:366.525000px;}
.y1c_c00151{bottom:402.525000px;}
.y1b_c00151{bottom:438.525000px;}
.y1a_c00151{bottom:474.525000px;}
.y19_c00151{bottom:510.525000px;}
.y18_c00151{bottom:546.525000px;}
.y17_c00151{bottom:574.965000px;}
.y16_c00151{bottom:595.845000px;}
.y15_c00151{bottom:616.725000px;}
.y14_c00151{bottom:652.725000px;}
.y13_c00151{bottom:673.965000px;}
.y12_c00151{bottom:709.965000px;}
.y11_c00151{bottom:745.965000px;}
.y10_c00151{bottom:781.965000px;}
.yf_c00151{bottom:817.965000px;}
.ye_c00151{bottom:838.845000px;}
.yd_c00151{bottom:860.085000px;}
.yc_c00151{bottom:880.965000px;}
.yb_c00151{bottom:901.845000px;}
.ya_c00151{bottom:923.085000px;}
.y9_c00151{bottom:943.965000px;}
.y8_c00151{bottom:964.845000px;}
.y7_c00151{bottom:986.085000px;}
.y6_c00151{bottom:1006.965000px;}
.y5_c00151{bottom:1027.845000px;}
.y4_c00151{bottom:1063.845000px;}
.y3_c00151{bottom:1085.085000px;}
.y2_c00151{bottom:1138.365000px;}
.h9_c00151{height:19.255500px;}
.h6_c00151{height:32.616000px;}
.ha_c00151{height:46.320000px;}
.h7_c00151{height:53.490240px;}
.h8_c00151{height:55.136477px;}
.h3_c00151{height:65.232000px;}
.h4_c00151{height:67.239607px;}
.h5_c00151{height:68.074560px;}
.h2_c00151{height:1201.365000px;}
.h0_c00151{height:1262.835000px;}
.h1_c00151{height:1263.000000px;}
.w3_c00151{width:25.020000px;}
.w2_c00151{width:863.955000px;}
.w0_c00151{width:892.935000px;}
.w1_c00151{width:893.250000px;}
.x0_c00151{left:0.000000px;}
.x1_c00151{left:14.490000px;}
.x2_c00151{left:113.040150px;}
.x11_c00151{left:148.891800px;}
.xe_c00151{left:150.029700px;}
.xc_c00151{left:153.035550px;}
.xb_c00151{left:155.033550px;}
.xd_c00151{left:156.574200px;}
.x3_c00151{left:161.513700px;}
.x5_c00151{left:172.068300px;}
.x12_c00151{left:196.410600px;}
.x4_c00151{left:225.970050px;}
.xa_c00151{left:319.047000px;}
.xf_c00151{left:344.641800px;}
.x13_c00151{left:412.297500px;}
.x10_c00151{left:420.234750px;}
.x14_c00151{left:432.291450px;}
.x6_c00151{left:574.695600px;}
.x7_c00151{left:632.708400px;}
.x8_c00151{left:711.402450px;}
.x9_c00151{left:750.390000px;}
.x15_c00151{left:759.915000px;}
@media print{
.v2_c00151{vertical-align:-21.760000pt;}
.v0_c00151{vertical-align:0.000000pt;}
.v1_c00151{vertical-align:26.880000pt;}
.ls6_c00151{letter-spacing:-0.159616pt;}
.ls5_c00151{letter-spacing:0.000000pt;}
.lsa_c00151{letter-spacing:0.128000pt;}
.ls3_c00151{letter-spacing:0.209920pt;}
.lsb_c00151{letter-spacing:0.236160pt;}
.ls2_c00151{letter-spacing:0.283392pt;}
.ls12_c00151{letter-spacing:0.330624pt;}
.ls14_c00151{letter-spacing:0.389485pt;}
.ls13_c00151{letter-spacing:0.425088pt;}
.lsf_c00151{letter-spacing:0.438171pt;}
.lsd_c00151{letter-spacing:0.472320pt;}
.ls11_c00151{letter-spacing:0.681599pt;}
.ls15_c00151{letter-spacing:0.855424pt;}
.ls10_c00151{letter-spacing:1.107328pt;}
.lsc_c00151{letter-spacing:2.172672pt;}
.lse_c00151{letter-spacing:2.298624pt;}
.ls9_c00151{letter-spacing:4.827264pt;}
.ls1_c00151{letter-spacing:5.311467pt;}
.ls0_c00151{letter-spacing:5.312000pt;}
.ls4_c00151{letter-spacing:5.475484pt;}
.ls8_c00151{letter-spacing:14.483200pt;}
.ls7_c00151{letter-spacing:17.734400pt;}
.ws1_c00151{word-spacing:-18.705024pt;}
.ws2_c00151{word-spacing:-17.792000pt;}
.ws4_c00151{word-spacing:-14.872832pt;}
.ws0_c00151{word-spacing:-10.159744pt;}
.ws3_c00151{word-spacing:-9.024000pt;}
.ws5_c00151{word-spacing:0.000000pt;}
._4_c00151{margin-left:-17.868800pt;}
._a_c00151{margin-left:-14.502400pt;}
._10_c00151{margin-left:-1.935360pt;}
._11_c00151{margin-left:-0.975360pt;}
._6_c00151{width:0.896000pt;}
._7_c00151{width:2.688000pt;}
._1_c00151{width:3.712000pt;}
._0_c00151{width:5.312000pt;}
._b_c00151{width:6.592000pt;}
._8_c00151{width:7.488000pt;}
._e_c00151{width:8.512000pt;}
._f_c00151{width:12.096000pt;}
._c_c00151{width:13.120000pt;}
._5_c00151{width:14.272000pt;}
._9_c00151{width:15.232000pt;}
._2_c00151{width:16.768000pt;}
._3_c00151{width:17.728000pt;}
._d_c00151{width:18.958400pt;}
.fs4_c00151{font-size:32.000000pt;}
.fs2_c00151{font-size:37.120000pt;}
.fs3_c00151{font-size:49.920000pt;}
.fs5_c00151{font-size:52.480000pt;}
.fs7_c00151{font-size:53.333333pt;}
.fs6_c00151{font-size:54.095146pt;}
.fs0_c00151{font-size:64.000000pt;}
.fs1_c00151{font-size:65.969690pt;}
.y0_c00151{bottom:0.000000pt;}
.y2f_c00151{bottom:2.773467pt;}
.y2e_c00151{bottom:30.884000pt;}
.y1_c00151{bottom:48.000000pt;}
.y2d_c00151{bottom:49.320000pt;}
.y2c_c00151{bottom:54.760000pt;}
.y2b_c00151{bottom:64.680000pt;}
.y2a_c00151{bottom:70.120000pt;}
.y29_c00151{bottom:80.356480pt;}
.y28_c00151{bottom:101.160000pt;}
.y27_c00151{bottom:111.401600pt;}
.y25_c00151{bottom:127.076480pt;}
.y26_c00151{bottom:127.080000pt;}
.y24_c00151{bottom:147.880000pt;}
.y23_c00151{bottom:163.560000pt;}
.y22_c00151{bottom:187.240000pt;}
.y21_c00151{bottom:224.360000pt;}
.y20_c00151{bottom:249.640000pt;}
.y1f_c00151{bottom:274.920000pt;}
.y1e_c00151{bottom:306.920000pt;}
.y1d_c00151{bottom:325.800000pt;}
.y1c_c00151{bottom:357.800000pt;}
.y1b_c00151{bottom:389.800000pt;}
.y1a_c00151{bottom:421.800000pt;}
.y19_c00151{bottom:453.800000pt;}
.y18_c00151{bottom:485.800000pt;}
.y17_c00151{bottom:511.080000pt;}
.y16_c00151{bottom:529.640000pt;}
.y15_c00151{bottom:548.200000pt;}
.y14_c00151{bottom:580.200000pt;}
.y13_c00151{bottom:599.080000pt;}
.y12_c00151{bottom:631.080000pt;}
.y11_c00151{bottom:663.080000pt;}
.y10_c00151{bottom:695.080000pt;}
.yf_c00151{bottom:727.080000pt;}
.ye_c00151{bottom:745.640000pt;}
.yd_c00151{bottom:764.520000pt;}
.yc_c00151{bottom:783.080000pt;}
.yb_c00151{bottom:801.640000pt;}
.ya_c00151{bottom:820.520000pt;}
.y9_c00151{bottom:839.080000pt;}
.y8_c00151{bottom:857.640000pt;}
.y7_c00151{bottom:876.520000pt;}
.y6_c00151{bottom:895.080000pt;}
.y5_c00151{bottom:913.640000pt;}
.y4_c00151{bottom:945.640000pt;}
.y3_c00151{bottom:964.520000pt;}
.y2_c00151{bottom:1011.880000pt;}
.h9_c00151{height:17.116000pt;}
.h6_c00151{height:28.992000pt;}
.ha_c00151{height:41.173333pt;}
.h7_c00151{height:47.546880pt;}
.h8_c00151{height:49.010202pt;}
.h3_c00151{height:57.984000pt;}
.h4_c00151{height:59.768539pt;}
.h5_c00151{height:60.510720pt;}
.h2_c00151{height:1067.880000pt;}
.h0_c00151{height:1122.520000pt;}
.h1_c00151{height:1122.666667pt;}
.w3_c00151{width:22.240000pt;}
.w2_c00151{width:767.960000pt;}
.w0_c00151{width:793.720000pt;}
.w1_c00151{width:794.000000pt;}
.x0_c00151{left:0.000000pt;}
.x1_c00151{left:12.880000pt;}
.x2_c00151{left:100.480133pt;}
.x11_c00151{left:132.348267pt;}
.xe_c00151{left:133.359733pt;}
.xc_c00151{left:136.031600pt;}
.xb_c00151{left:137.807600pt;}
.xd_c00151{left:139.177067pt;}
.x3_c00151{left:143.567733pt;}
.x5_c00151{left:152.949600pt;}
.x12_c00151{left:174.587200pt;}
.x4_c00151{left:200.862267pt;}
.xa_c00151{left:283.597333pt;}
.xf_c00151{left:306.348267pt;}
.x13_c00151{left:366.486667pt;}
.x10_c00151{left:373.542000pt;}
.x14_c00151{left:384.259067pt;}
.x6_c00151{left:510.840533pt;}
.x7_c00151{left:562.407467pt;}
.x8_c00151{left:632.357733pt;}
.x9_c00151{left:667.013333pt;}
.x15_c00151{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a43afdf0d0b37c5cf9397d0.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.134000;font-style:normal;font-weight:normal;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_7cbd52457df6879986dd9eeb.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_ac7ffd12f13bb842c085b2b6.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00152{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00152{vertical-align:-24.480000px;}
.v0_c00152{vertical-align:0.000000px;}
.v1_c00152{vertical-align:30.240000px;}
.lsb_c00152{letter-spacing:-0.179568px;}
.lsa_c00152{letter-spacing:0.000000px;}
.lsd_c00152{letter-spacing:0.144000px;}
.ls13_c00152{letter-spacing:0.265680px;}
.ls24_c00152{letter-spacing:0.273857px;}
.ls4_c00152{letter-spacing:0.289296px;}
.ls2_c00152{letter-spacing:0.295200px;}
.lsf_c00152{letter-spacing:0.318816px;}
.ls11_c00152{letter-spacing:0.371952px;}
.ls1b_c00152{letter-spacing:0.425088px;}
.ls14_c00152{letter-spacing:0.438171px;}
.ls16_c00152{letter-spacing:0.478224px;}
.ls3_c00152{letter-spacing:0.492942px;}
.ls0_c00152{letter-spacing:0.508800px;}
.ls15_c00152{letter-spacing:0.531360px;}
.ls6_c00152{letter-spacing:0.543168px;}
.ls23_c00152{letter-spacing:0.547713px;}
.ls5_c00152{letter-spacing:0.565970px;}
.ls21_c00152{letter-spacing:0.584496px;}
.ls1d_c00152{letter-spacing:0.602485px;}
.ls1e_c00152{letter-spacing:0.690768px;}
.ls19_c00152{letter-spacing:0.766799px;}
.ls10_c00152{letter-spacing:0.797040px;}
.ls20_c00152{letter-spacing:0.962352px;}
.ls17_c00152{letter-spacing:0.991970px;}
.ls1f_c00152{letter-spacing:2.845728px;}
.ls12_c00152{letter-spacing:2.916576px;}
.lse_c00152{letter-spacing:3.725424px;}
.ls22_c00152{letter-spacing:4.947552px;}
.ls7_c00152{letter-spacing:4.959360px;}
.lsc_c00152{letter-spacing:5.430672px;}
.ls8_c00152{letter-spacing:5.976000px;}
.ls1_c00152{letter-spacing:6.007800px;}
.ls9_c00152{letter-spacing:6.159920px;}
.ls1c_c00152{letter-spacing:10.154880px;}
.ls1a_c00152{letter-spacing:14.423472px;}
.ls18_c00152{letter-spacing:17.588016px;}
.sc__c00152{text-shadow:none;}
.sc1_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00152{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc1_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00152{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00152{word-spacing:-21.043152px;}
.ws5_c00152{word-spacing:-17.910227px;}
.ws6_c00152{word-spacing:-17.685056px;}
.ws7_c00152{word-spacing:-17.484227px;}
.ws3_c00152{word-spacing:-17.411199px;}
.ws8_c00152{word-spacing:-17.375472px;}
.ws9_c00152{word-spacing:-16.997616px;}
.ws4_c00152{word-spacing:-16.785072px;}
.ws0_c00152{word-spacing:-11.429712px;}
.ws2_c00152{word-spacing:-10.152000px;}
.wsa_c00152{word-spacing:0.000000px;}
._9_c00152{margin-left:-17.180640px;}
._a_c00152{margin-left:-14.103360px;}
._b_c00152{margin-left:-13.076640px;}
._d_c00152{margin-left:-10.438272px;}
._e_c00152{margin-left:-8.926848px;}
._f_c00152{margin-left:-4.645152px;}
._5_c00152{margin-left:-3.535200px;}
._6_c00152{margin-left:-2.324160px;}
._1_c00152{margin-left:-1.179360px;}
._7_c00152{width:1.167840px;}
._8_c00152{width:2.597760px;}
._4_c00152{width:4.320000px;}
._0_c00152{width:5.976000px;}
._3_c00152{width:7.056000px;}
._10_c00152{width:8.845696px;}
._c_c00152{width:10.154880px;}
._2_c00152{width:16.128000px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs4_c00152{font-size:36.000000px;}
.fs2_c00152{font-size:41.760000px;}
.fs3_c00152{font-size:56.160000px;}
.fs5_c00152{font-size:59.040000px;}
.fs7_c00152{font-size:60.000000px;}
.fs6_c00152{font-size:60.857039px;}
.fs0_c00152{font-size:72.000000px;}
.fs1_c00152{font-size:74.215901px;}
.y0_c00152{bottom:0.000000px;}
.y36_c00152{bottom:3.120150px;}
.y35_c00152{bottom:34.744500px;}
.y1_c00152{bottom:54.000000px;}
.y34_c00152{bottom:55.478880px;}
.y33_c00152{bottom:72.762840px;}
.y32_c00152{bottom:90.401040px;}
.y31_c00152{bottom:107.685000px;}
.y30_c00152{bottom:107.686800px;}
.y2f_c00152{bottom:131.445000px;}
.y2e_c00152{bottom:142.965000px;}
.y2c_c00152{bottom:160.244640px;}
.y2d_c00152{bottom:160.245000px;}
.y2b_c00152{bottom:177.882840px;}
.y2a_c00152{bottom:195.521040px;}
.y28_c00152{bottom:212.804640px;}
.y29_c00152{bottom:212.805000px;}
.y27_c00152{bottom:230.442840px;}
.y26_c00152{bottom:247.726800px;}
.y25_c00152{bottom:271.485000px;}
.y24_c00152{bottom:283.001040px;}
.y23_c00152{bottom:300.285000px;}
.y22_c00152{bottom:300.286800px;}
.y21_c00152{bottom:317.925000px;}
.y20_c00152{bottom:317.926800px;}
.y1e_c00152{bottom:335.561040px;}
.y1f_c00152{bottom:335.565000px;}
.y1c_c00152{bottom:352.842840px;}
.y1d_c00152{bottom:352.845000px;}
.y1b_c00152{bottom:370.481040px;}
.y1a_c00152{bottom:393.885000px;}
.y19_c00152{bottom:420.525000px;}
.y18_c00152{bottom:448.965000px;}
.y17_c00152{bottom:469.845000px;}
.y16_c00152{bottom:505.845000px;}
.y15_c00152{bottom:541.845000px;}
.y14_c00152{bottom:577.845000px;}
.y13_c00152{bottom:606.285000px;}
.y12_c00152{bottom:635.085000px;}
.y11_c00152{bottom:663.525000px;}
.y10_c00152{bottom:691.965000px;}
.yf_c00152{bottom:720.405000px;}
.ye_c00152{bottom:748.845000px;}
.yd_c00152{bottom:777.285000px;}
.yc_c00152{bottom:806.085000px;}
.yb_c00152{bottom:834.525000px;}
.ya_c00152{bottom:862.965000px;}
.y9_c00152{bottom:891.405000px;}
.y8_c00152{bottom:919.845000px;}
.y7_c00152{bottom:955.845000px;}
.y6_c00152{bottom:984.645000px;}
.y5_c00152{bottom:1020.645000px;}
.y4_c00152{bottom:1056.645000px;}
.y3_c00152{bottom:1085.085000px;}
.y2_c00152{bottom:1138.365000px;}
.h9_c00152{height:19.255500px;}
.h6_c00152{height:32.616000px;}
.ha_c00152{height:46.320000px;}
.h7_c00152{height:53.490240px;}
.h8_c00152{height:55.136477px;}
.h3_c00152{height:65.232000px;}
.h4_c00152{height:67.239607px;}
.h5_c00152{height:68.074560px;}
.h2_c00152{height:1201.365000px;}
.h0_c00152{height:1262.835000px;}
.h1_c00152{height:1263.000000px;}
.w3_c00152{width:25.020000px;}
.w2_c00152{width:863.955000px;}
.w0_c00152{width:892.935000px;}
.w1_c00152{width:893.250000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:14.490000px;}
.x2_c00152{left:113.040150px;}
.x6_c00152{left:148.031550px;}
.x5_c00152{left:150.029700px;}
.x7_c00152{left:153.035550px;}
.x8_c00152{left:155.033550px;}
.x19_c00152{left:158.039400px;}
.x3_c00152{left:161.513700px;}
.x17_c00152{left:162.687300px;}
.x12_c00152{left:173.949750px;}
.x18_c00152{left:215.215950px;}
.x9_c00152{left:218.068800px;}
.x4_c00152{left:225.970050px;}
.x1a_c00152{left:419.720250px;}
.x1b_c00152{left:439.714200px;}
.xc_c00152{left:470.634600px;}
.xd_c00152{left:490.947900px;}
.x1c_c00152{left:524.951250px;}
.x10_c00152{left:527.557650px;}
.xe_c00152{left:548.857950px;}
.x13_c00152{left:563.547000px;}
.x11_c00152{left:570.906750px;}
.xf_c00152{left:601.356750px;}
.x14_c00152{left:656.961600px;}
.x15_c00152{left:661.956300px;}
.xa_c00152{left:680.564250px;}
.x16_c00152{left:697.826250px;}
.xb_c00152{left:725.563500px;}
.x1d_c00152{left:759.915000px;}
@media print{
.v2_c00152{vertical-align:-21.760000pt;}
.v0_c00152{vertical-align:0.000000pt;}
.v1_c00152{vertical-align:26.880000pt;}
.lsb_c00152{letter-spacing:-0.159616pt;}
.lsa_c00152{letter-spacing:0.000000pt;}
.lsd_c00152{letter-spacing:0.128000pt;}
.ls13_c00152{letter-spacing:0.236160pt;}
.ls24_c00152{letter-spacing:0.243428pt;}
.ls4_c00152{letter-spacing:0.257152pt;}
.ls2_c00152{letter-spacing:0.262400pt;}
.lsf_c00152{letter-spacing:0.283392pt;}
.ls11_c00152{letter-spacing:0.330624pt;}
.ls1b_c00152{letter-spacing:0.377856pt;}
.ls14_c00152{letter-spacing:0.389485pt;}
.ls16_c00152{letter-spacing:0.425088pt;}
.ls3_c00152{letter-spacing:0.438171pt;}
.ls0_c00152{letter-spacing:0.452267pt;}
.ls15_c00152{letter-spacing:0.472320pt;}
.ls6_c00152{letter-spacing:0.482816pt;}
.ls23_c00152{letter-spacing:0.486856pt;}
.ls5_c00152{letter-spacing:0.503085pt;}
.ls21_c00152{letter-spacing:0.519552pt;}
.ls1d_c00152{letter-spacing:0.535542pt;}
.ls1e_c00152{letter-spacing:0.614016pt;}
.ls19_c00152{letter-spacing:0.681599pt;}
.ls10_c00152{letter-spacing:0.708480pt;}
.ls20_c00152{letter-spacing:0.855424pt;}
.ls17_c00152{letter-spacing:0.881751pt;}
.ls1f_c00152{letter-spacing:2.529536pt;}
.ls12_c00152{letter-spacing:2.592512pt;}
.lse_c00152{letter-spacing:3.311488pt;}
.ls22_c00152{letter-spacing:4.397824pt;}
.ls7_c00152{letter-spacing:4.408320pt;}
.lsc_c00152{letter-spacing:4.827264pt;}
.ls8_c00152{letter-spacing:5.312000pt;}
.ls1_c00152{letter-spacing:5.340267pt;}
.ls9_c00152{letter-spacing:5.475484pt;}
.ls1c_c00152{letter-spacing:9.026560pt;}
.ls1a_c00152{letter-spacing:12.820864pt;}
.ls18_c00152{letter-spacing:15.633792pt;}
.ws1_c00152{word-spacing:-18.705024pt;}
.ws5_c00152{word-spacing:-15.920201pt;}
.ws6_c00152{word-spacing:-15.720049pt;}
.ws7_c00152{word-spacing:-15.541535pt;}
.ws3_c00152{word-spacing:-15.476621pt;}
.ws8_c00152{word-spacing:-15.444864pt;}
.ws9_c00152{word-spacing:-15.108992pt;}
.ws4_c00152{word-spacing:-14.920064pt;}
.ws0_c00152{word-spacing:-10.159744pt;}
.ws2_c00152{word-spacing:-9.024000pt;}
.wsa_c00152{word-spacing:0.000000pt;}
._9_c00152{margin-left:-15.271680pt;}
._a_c00152{margin-left:-12.536320pt;}
._b_c00152{margin-left:-11.623680pt;}
._d_c00152{margin-left:-9.278464pt;}
._e_c00152{margin-left:-7.934976pt;}
._f_c00152{margin-left:-4.129024pt;}
._5_c00152{margin-left:-3.142400pt;}
._6_c00152{margin-left:-2.065920pt;}
._1_c00152{margin-left:-1.048320pt;}
._7_c00152{width:1.038080pt;}
._8_c00152{width:2.309120pt;}
._4_c00152{width:3.840000pt;}
._0_c00152{width:5.312000pt;}
._3_c00152{width:6.272000pt;}
._10_c00152{width:7.862841pt;}
._c_c00152{width:9.026560pt;}
._2_c00152{width:14.336000pt;}
.fs4_c00152{font-size:32.000000pt;}
.fs2_c00152{font-size:37.120000pt;}
.fs3_c00152{font-size:49.920000pt;}
.fs5_c00152{font-size:52.480000pt;}
.fs7_c00152{font-size:53.333333pt;}
.fs6_c00152{font-size:54.095146pt;}
.fs0_c00152{font-size:64.000000pt;}
.fs1_c00152{font-size:65.969690pt;}
.y0_c00152{bottom:0.000000pt;}
.y36_c00152{bottom:2.773467pt;}
.y35_c00152{bottom:30.884000pt;}
.y1_c00152{bottom:48.000000pt;}
.y34_c00152{bottom:49.314560pt;}
.y33_c00152{bottom:64.678080pt;}
.y32_c00152{bottom:80.356480pt;}
.y31_c00152{bottom:95.720000pt;}
.y30_c00152{bottom:95.721600pt;}
.y2f_c00152{bottom:116.840000pt;}
.y2e_c00152{bottom:127.080000pt;}
.y2c_c00152{bottom:142.439680pt;}
.y2d_c00152{bottom:142.440000pt;}
.y2b_c00152{bottom:158.118080pt;}
.y2a_c00152{bottom:173.796480pt;}
.y28_c00152{bottom:189.159680pt;}
.y29_c00152{bottom:189.160000pt;}
.y27_c00152{bottom:204.838080pt;}
.y26_c00152{bottom:220.201600pt;}
.y25_c00152{bottom:241.320000pt;}
.y24_c00152{bottom:251.556480pt;}
.y23_c00152{bottom:266.920000pt;}
.y22_c00152{bottom:266.921600pt;}
.y21_c00152{bottom:282.600000pt;}
.y20_c00152{bottom:282.601600pt;}
.y1e_c00152{bottom:298.276480pt;}
.y1f_c00152{bottom:298.280000pt;}
.y1c_c00152{bottom:313.638080pt;}
.y1d_c00152{bottom:313.640000pt;}
.y1b_c00152{bottom:329.316480pt;}
.y1a_c00152{bottom:350.120000pt;}
.y19_c00152{bottom:373.800000pt;}
.y18_c00152{bottom:399.080000pt;}
.y17_c00152{bottom:417.640000pt;}
.y16_c00152{bottom:449.640000pt;}
.y15_c00152{bottom:481.640000pt;}
.y14_c00152{bottom:513.640000pt;}
.y13_c00152{bottom:538.920000pt;}
.y12_c00152{bottom:564.520000pt;}
.y11_c00152{bottom:589.800000pt;}
.y10_c00152{bottom:615.080000pt;}
.yf_c00152{bottom:640.360000pt;}
.ye_c00152{bottom:665.640000pt;}
.yd_c00152{bottom:690.920000pt;}
.yc_c00152{bottom:716.520000pt;}
.yb_c00152{bottom:741.800000pt;}
.ya_c00152{bottom:767.080000pt;}
.y9_c00152{bottom:792.360000pt;}
.y8_c00152{bottom:817.640000pt;}
.y7_c00152{bottom:849.640000pt;}
.y6_c00152{bottom:875.240000pt;}
.y5_c00152{bottom:907.240000pt;}
.y4_c00152{bottom:939.240000pt;}
.y3_c00152{bottom:964.520000pt;}
.y2_c00152{bottom:1011.880000pt;}
.h9_c00152{height:17.116000pt;}
.h6_c00152{height:28.992000pt;}
.ha_c00152{height:41.173333pt;}
.h7_c00152{height:47.546880pt;}
.h8_c00152{height:49.010202pt;}
.h3_c00152{height:57.984000pt;}
.h4_c00152{height:59.768539pt;}
.h5_c00152{height:60.510720pt;}
.h2_c00152{height:1067.880000pt;}
.h0_c00152{height:1122.520000pt;}
.h1_c00152{height:1122.666667pt;}
.w3_c00152{width:22.240000pt;}
.w2_c00152{width:767.960000pt;}
.w0_c00152{width:793.720000pt;}
.w1_c00152{width:794.000000pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:12.880000pt;}
.x2_c00152{left:100.480133pt;}
.x6_c00152{left:131.583600pt;}
.x5_c00152{left:133.359733pt;}
.x7_c00152{left:136.031600pt;}
.x8_c00152{left:137.807600pt;}
.x19_c00152{left:140.479467pt;}
.x3_c00152{left:143.567733pt;}
.x17_c00152{left:144.610933pt;}
.x12_c00152{left:154.622000pt;}
.x18_c00152{left:191.303067pt;}
.x9_c00152{left:193.838933pt;}
.x4_c00152{left:200.862267pt;}
.x1a_c00152{left:373.084667pt;}
.x1b_c00152{left:390.857067pt;}
.xc_c00152{left:418.341867pt;}
.xd_c00152{left:436.398133pt;}
.x1c_c00152{left:466.623333pt;}
.x10_c00152{left:468.940133pt;}
.xe_c00152{left:487.873733pt;}
.x13_c00152{left:500.930667pt;}
.x11_c00152{left:507.472667pt;}
.xf_c00152{left:534.539333pt;}
.x14_c00152{left:583.965867pt;}
.x15_c00152{left:588.405600pt;}
.xa_c00152{left:604.946000pt;}
.x16_c00152{left:620.290000pt;}
.xb_c00152{left:644.945333pt;}
.x1d_c00152{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a1001633c42458f1fa27657.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.134000;font-style:normal;font-weight:normal;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_d3615734366ee74cff25089d.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_948bf1ae371c70a6a343e16c.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_18b943f5f66760fb5846460a.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:0.787000;font-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_c00153{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00153{vertical-align:-24.480000px;}
.v0_c00153{vertical-align:0.000000px;}
.v1_c00153{vertical-align:30.240000px;}
.ls5_c00153{letter-spacing:-0.179568px;}
.ls4_c00153{letter-spacing:0.000000px;}
.lsc_c00153{letter-spacing:0.144000px;}
.ls7_c00153{letter-spacing:0.273857px;}
.ls8_c00153{letter-spacing:0.328628px;}
.lsa_c00153{letter-spacing:0.383399px;}
.lse_c00153{letter-spacing:0.438171px;}
.ls1_c00153{letter-spacing:0.486856px;}
.ls6_c00153{letter-spacing:0.492942px;}
.ls0_c00153{letter-spacing:0.547713px;}
.ls9_c00153{letter-spacing:0.821570px;}
.lsf_c00153{letter-spacing:0.962352px;}
.lsb_c00153{letter-spacing:4.339107px;}
.ls2_c00153{letter-spacing:5.976000px;}
.ls3_c00153{letter-spacing:6.159920px;}
.lsd_c00153{letter-spacing:18.148896px;}
.sc__c00153{text-shadow:none;}
.sc1_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00153{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc1_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00153{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00153{word-spacing:-17.192114px;}
.ws0_c00153{word-spacing:-11.429712px;}
.ws2_c00153{word-spacing:-10.152000px;}
.ws3_c00153{word-spacing:0.000000px;}
._d_c00153{margin-left:-17.940960px;}
._e_c00153{margin-left:-16.848000px;}
._c_c00153{margin-left:-3.929138px;}
._b_c00153{margin-left:-1.149600px;}
._6_c00153{width:1.008000px;}
._a_c00153{width:3.168000px;}
._7_c00153{width:4.464000px;}
._0_c00153{width:5.976000px;}
._3_c00153{width:7.488000px;}
._5_c00153{width:10.224000px;}
._1_c00153{width:12.096000px;}
._2_c00153{width:13.104000px;}
._4_c00153{width:14.184000px;}
._9_c00153{width:18.144000px;}
._8_c00153{width:23.328000px;}
.fc0_c00153{color:rgb(0,0,0);}
.fs5_c00153{font-size:36.000000px;}
.fs2_c00153{font-size:41.760000px;}
.fs4_c00153{font-size:59.040000px;}
.fs6_c00153{font-size:60.000000px;}
.fs3_c00153{font-size:60.857039px;}
.fs0_c00153{font-size:72.000000px;}
.fs1_c00153{font-size:74.215901px;}
.y0_c00153{bottom:0.000000px;}
.y2e_c00153{bottom:3.120150px;}
.y2d_c00153{bottom:34.744500px;}
.y1_c00153{bottom:54.000000px;}
.y2c_c00153{bottom:55.485000px;}
.y2b_c00153{bottom:72.765000px;}
.y2a_c00153{bottom:78.885000px;}
.y28_c00153{bottom:90.404280px;}
.y29_c00153{bottom:90.405000px;}
.y27_c00153{bottom:107.688240px;}
.y26_c00153{bottom:125.326440px;}
.y25_c00153{bottom:142.964640px;}
.y24_c00153{bottom:160.248600px;}
.y23_c00153{bottom:177.886800px;}
.y22_c00153{bottom:195.525000px;}
.y21_c00153{bottom:228.285000px;}
.y20_c00153{bottom:250.245000px;}
.y1f_c00153{bottom:286.245000px;}
.y1e_c00153{bottom:308.205000px;}
.y1d_c00153{bottom:343.845000px;}
.y1c_c00153{bottom:379.845000px;}
.y1b_c00153{bottom:400.725000px;}
.y1a_c00153{bottom:436.725000px;}
.y19_c00153{bottom:457.965000px;}
.y18_c00153{bottom:493.965000px;}
.y17_c00153{bottom:529.965000px;}
.y16_c00153{bottom:550.845000px;}
.y15_c00153{bottom:586.845000px;}
.y14_c00153{bottom:622.845000px;}
.y13_c00153{bottom:658.845000px;}
.y12_c00153{bottom:680.085000px;}
.y11_c00153{bottom:716.085000px;}
.y10_c00153{bottom:736.965000px;}
.yf_c00153{bottom:772.965000px;}
.ye_c00153{bottom:808.965000px;}
.yd_c00153{bottom:829.845000px;}
.yc_c00153{bottom:851.085000px;}
.yb_c00153{bottom:871.965000px;}
.ya_c00153{bottom:892.845000px;}
.y9_c00153{bottom:928.845000px;}
.y8_c00153{bottom:964.845000px;}
.y7_c00153{bottom:1000.845000px;}
.y6_c00153{bottom:1022.085000px;}
.y5_c00153{bottom:1042.965000px;}
.y4_c00153{bottom:1063.845000px;}
.y3_c00153{bottom:1085.085000px;}
.y2_c00153{bottom:1138.365000px;}
.h9_c00153{height:19.255500px;}
.h8_c00153{height:32.616000px;}
.ha_c00153{height:46.320000px;}
.h7_c00153{height:53.490240px;}
.h6_c00153{height:55.136477px;}
.h3_c00153{height:65.232000px;}
.h4_c00153{height:67.239607px;}
.h5_c00153{height:68.074560px;}
.h2_c00153{height:1201.365000px;}
.h0_c00153{height:1262.835000px;}
.h1_c00153{height:1263.000000px;}
.w3_c00153{width:25.020000px;}
.w2_c00153{width:863.955000px;}
.w0_c00153{width:892.935000px;}
.w1_c00153{width:893.250000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:14.490000px;}
.x2_c00153{left:113.040150px;}
.xd_c00153{left:145.025700px;}
.x6_c00153{left:148.031550px;}
.xb_c00153{left:150.029700px;}
.x5_c00153{left:155.033550px;}
.xf_c00153{left:157.803900px;}
.xc_c00153{left:158.863800px;}
.x3_c00153{left:161.513700px;}
.x13_c00153{left:172.242600px;}
.x9_c00153{left:183.040950px;}
.xa_c00153{left:196.018800px;}
.x4_c00153{left:225.970050px;}
.x11_c00153{left:231.931350px;}
.xe_c00153{left:247.030200px;}
.x12_c00153{left:267.930600px;}
.x10_c00153{left:275.019300px;}
.x7_c00153{left:279.850650px;}
.x8_c00153{left:292.828500px;}
.x14_c00153{left:734.565750px;}
.x15_c00153{left:759.915000px;}
@media print{
.v2_c00153{vertical-align:-21.760000pt;}
.v0_c00153{vertical-align:0.000000pt;}
.v1_c00153{vertical-align:26.880000pt;}
.ls5_c00153{letter-spacing:-0.159616pt;}
.ls4_c00153{letter-spacing:0.000000pt;}
.lsc_c00153{letter-spacing:0.128000pt;}
.ls7_c00153{letter-spacing:0.243428pt;}
.ls8_c00153{letter-spacing:0.292114pt;}
.lsa_c00153{letter-spacing:0.340799pt;}
.lse_c00153{letter-spacing:0.389485pt;}
.ls1_c00153{letter-spacing:0.432761pt;}
.ls6_c00153{letter-spacing:0.438171pt;}
.ls0_c00153{letter-spacing:0.486856pt;}
.ls9_c00153{letter-spacing:0.730284pt;}
.lsf_c00153{letter-spacing:0.855424pt;}
.lsb_c00153{letter-spacing:3.856984pt;}
.ls2_c00153{letter-spacing:5.312000pt;}
.ls3_c00153{letter-spacing:5.475484pt;}
.lsd_c00153{letter-spacing:16.132352pt;}
.ws1_c00153{word-spacing:-15.281879pt;}
.ws0_c00153{word-spacing:-10.159744pt;}
.ws2_c00153{word-spacing:-9.024000pt;}
.ws3_c00153{word-spacing:0.000000pt;}
._d_c00153{margin-left:-15.947520pt;}
._e_c00153{margin-left:-14.976000pt;}
._c_c00153{margin-left:-3.492567pt;}
._b_c00153{margin-left:-1.021867pt;}
._6_c00153{width:0.896000pt;}
._a_c00153{width:2.816000pt;}
._7_c00153{width:3.968000pt;}
._0_c00153{width:5.312000pt;}
._3_c00153{width:6.656000pt;}
._5_c00153{width:9.088000pt;}
._1_c00153{width:10.752000pt;}
._2_c00153{width:11.648000pt;}
._4_c00153{width:12.608000pt;}
._9_c00153{width:16.128000pt;}
._8_c00153{width:20.736000pt;}
.fs5_c00153{font-size:32.000000pt;}
.fs2_c00153{font-size:37.120000pt;}
.fs4_c00153{font-size:52.480000pt;}
.fs6_c00153{font-size:53.333333pt;}
.fs3_c00153{font-size:54.095146pt;}
.fs0_c00153{font-size:64.000000pt;}
.fs1_c00153{font-size:65.969690pt;}
.y0_c00153{bottom:0.000000pt;}
.y2e_c00153{bottom:2.773467pt;}
.y2d_c00153{bottom:30.884000pt;}
.y1_c00153{bottom:48.000000pt;}
.y2c_c00153{bottom:49.320000pt;}
.y2b_c00153{bottom:64.680000pt;}
.y2a_c00153{bottom:70.120000pt;}
.y28_c00153{bottom:80.359360pt;}
.y29_c00153{bottom:80.360000pt;}
.y27_c00153{bottom:95.722880pt;}
.y26_c00153{bottom:111.401280pt;}
.y25_c00153{bottom:127.079680pt;}
.y24_c00153{bottom:142.443200pt;}
.y23_c00153{bottom:158.121600pt;}
.y22_c00153{bottom:173.800000pt;}
.y21_c00153{bottom:202.920000pt;}
.y20_c00153{bottom:222.440000pt;}
.y1f_c00153{bottom:254.440000pt;}
.y1e_c00153{bottom:273.960000pt;}
.y1d_c00153{bottom:305.640000pt;}
.y1c_c00153{bottom:337.640000pt;}
.y1b_c00153{bottom:356.200000pt;}
.y1a_c00153{bottom:388.200000pt;}
.y19_c00153{bottom:407.080000pt;}
.y18_c00153{bottom:439.080000pt;}
.y17_c00153{bottom:471.080000pt;}
.y16_c00153{bottom:489.640000pt;}
.y15_c00153{bottom:521.640000pt;}
.y14_c00153{bottom:553.640000pt;}
.y13_c00153{bottom:585.640000pt;}
.y12_c00153{bottom:604.520000pt;}
.y11_c00153{bottom:636.520000pt;}
.y10_c00153{bottom:655.080000pt;}
.yf_c00153{bottom:687.080000pt;}
.ye_c00153{bottom:719.080000pt;}
.yd_c00153{bottom:737.640000pt;}
.yc_c00153{bottom:756.520000pt;}
.yb_c00153{bottom:775.080000pt;}
.ya_c00153{bottom:793.640000pt;}
.y9_c00153{bottom:825.640000pt;}
.y8_c00153{bottom:857.640000pt;}
.y7_c00153{bottom:889.640000pt;}
.y6_c00153{bottom:908.520000pt;}
.y5_c00153{bottom:927.080000pt;}
.y4_c00153{bottom:945.640000pt;}
.y3_c00153{bottom:964.520000pt;}
.y2_c00153{bottom:1011.880000pt;}
.h9_c00153{height:17.116000pt;}
.h8_c00153{height:28.992000pt;}
.ha_c00153{height:41.173333pt;}
.h7_c00153{height:47.546880pt;}
.h6_c00153{height:49.010202pt;}
.h3_c00153{height:57.984000pt;}
.h4_c00153{height:59.768539pt;}
.h5_c00153{height:60.510720pt;}
.h2_c00153{height:1067.880000pt;}
.h0_c00153{height:1122.520000pt;}
.h1_c00153{height:1122.666667pt;}
.w3_c00153{width:22.240000pt;}
.w2_c00153{width:767.960000pt;}
.w0_c00153{width:793.720000pt;}
.w1_c00153{width:794.000000pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:12.880000pt;}
.x2_c00153{left:100.480133pt;}
.xd_c00153{left:128.911733pt;}
.x6_c00153{left:131.583600pt;}
.xb_c00153{left:133.359733pt;}
.x5_c00153{left:137.807600pt;}
.xf_c00153{left:140.270133pt;}
.xc_c00153{left:141.212267pt;}
.x3_c00153{left:143.567733pt;}
.x13_c00153{left:153.104533pt;}
.x9_c00153{left:162.703067pt;}
.xa_c00153{left:174.238933pt;}
.x4_c00153{left:200.862267pt;}
.x11_c00153{left:206.161200pt;}
.xe_c00153{left:219.582400pt;}
.x12_c00153{left:238.160533pt;}
.x10_c00153{left:244.461600pt;}
.x7_c00153{left:248.756133pt;}
.x8_c00153{left:260.292000pt;}
.x14_c00153{left:652.947333pt;}
.x15_c00153{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f1a448516367db2caa91d28.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.134000;font-style:normal;font-weight:normal;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_3f189d4ed52716bde36a568a.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00154;src:url('chunks/assets/font_953ec163cf7ac45ee5ea20e3.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00154;src:url('chunks/assets/font_c3bb41f178e11720281d1af3.woff2')format("woff");}.ff7_c00154{font-family:ff7_c00154;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00154;src:url('chunks/assets/font_e51098372bf5b015a2eaf212.woff2')format("woff");}.ff8_c00154{font-family:ff8_c00154;line-height:0.787000;font-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_c00154{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00154{vertical-align:-24.480000px;}
.v0_c00154{vertical-align:0.000000px;}
.v2_c00154{vertical-align:24.480000px;}
.v1_c00154{vertical-align:30.240000px;}
.ls17_c00154{letter-spacing:-0.179568px;}
.ls16_c00154{letter-spacing:0.000000px;}
.ls27_c00154{letter-spacing:0.144000px;}
.ls22_c00154{letter-spacing:0.242064px;}
.ls9_c00154{letter-spacing:0.265680px;}
.ls2c_c00154{letter-spacing:0.273857px;}
.ls11_c00154{letter-spacing:0.295200px;}
.ls8_c00154{letter-spacing:0.318480px;}
.ls18_c00154{letter-spacing:0.318816px;}
.lsd_c00154{letter-spacing:0.349680px;}
.ls13_c00154{letter-spacing:0.354240px;}
.ls2a_c00154{letter-spacing:0.371952px;}
.ls32_c00154{letter-spacing:0.425088px;}
.ls33_c00154{letter-spacing:0.438171px;}
.ls1b_c00154{letter-spacing:0.478224px;}
.ls10_c00154{letter-spacing:0.492942px;}
.lsf_c00154{letter-spacing:0.513648px;}
.ls4_c00154{letter-spacing:0.531360px;}
.ls2e_c00154{letter-spacing:0.547713px;}
.ls5_c00154{letter-spacing:0.549072px;}
.ls25_c00154{letter-spacing:0.584496px;}
.ls31_c00154{letter-spacing:0.637632px;}
.ls1f_c00154{letter-spacing:0.690768px;}
.ls1e_c00154{letter-spacing:0.696672px;}
.ls2_c00154{letter-spacing:0.712027px;}
.ls23_c00154{letter-spacing:0.743904px;}
.ls19_c00154{letter-spacing:0.766799px;}
.ls1d_c00154{letter-spacing:0.797040px;}
.ls21_c00154{letter-spacing:0.821570px;}
.ls30_c00154{letter-spacing:0.937198px;}
.ls1a_c00154{letter-spacing:0.962352px;}
.lsb_c00154{letter-spacing:0.991970px;}
.lse_c00154{letter-spacing:1.301280px;}
.ls20_c00154{letter-spacing:2.261232px;}
.ls3_c00154{letter-spacing:2.526912px;}
.ls26_c00154{letter-spacing:5.248656px;}
.ls1_c00154{letter-spacing:5.299080px;}
.ls29_c00154{letter-spacing:5.301792px;}
.ls6_c00154{letter-spacing:5.513160px;}
.ls7_c00154{letter-spacing:5.514336px;}
.ls12_c00154{letter-spacing:5.667840px;}
.lsc_c00154{letter-spacing:5.671920px;}
.ls28_c00154{letter-spacing:5.780016px;}
.ls14_c00154{letter-spacing:5.976000px;}
.ls15_c00154{letter-spacing:6.159920px;}
.ls2d_c00154{letter-spacing:6.394032px;}
.ls1c_c00154{letter-spacing:6.931296px;}
.ls2b_c00154{letter-spacing:16.383600px;}
.ls2f_c00154{letter-spacing:30.511872px;}
.ls0_c00154{letter-spacing:54.864000px;}
.ls24_c00154{letter-spacing:96.813792px;}
.lsa_c00154{letter-spacing:100.176480px;}
.sc__c00154{text-shadow:none;}
.sc1_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00154{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc1_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00154{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00154{word-spacing:-21.927456px;}
.ws9_c00154{word-spacing:-21.714912px;}
.ws6_c00154{word-spacing:-17.910227px;}
.wsa_c00154{word-spacing:-17.739827px;}
.ws2_c00154{word-spacing:-17.685056px;}
.ws3_c00154{word-spacing:-17.630284px;}
.wsb_c00154{word-spacing:-17.411199px;}
.ws5_c00154{word-spacing:-16.962192px;}
.ws4_c00154{word-spacing:-16.944480px;}
.ws7_c00154{word-spacing:-16.731936px;}
.ws0_c00154{word-spacing:-11.429712px;}
.ws8_c00154{word-spacing:-10.152000px;}
.wsc_c00154{word-spacing:0.000000px;}
._f_c00154{margin-left:-92.305056px;}
._e_c00154{margin-left:-91.275840px;}
._1e_c00154{margin-left:-30.110400px;}
._1f_c00154{margin-left:-29.106720px;}
._1b_c00154{margin-left:-15.881760px;}
._b_c00154{margin-left:-7.625448px;}
._a_c00154{margin-left:-6.137064px;}
._1c_c00154{margin-left:-5.029776px;}
._c_c00154{margin-left:-2.674872px;}
._9_c00154{margin-left:-1.357920px;}
._3_c00154{width:1.307616px;}
._21_c00154{width:2.529984px;}
._5_c00154{width:3.744000px;}
._4_c00154{width:4.824000px;}
._0_c00154{width:5.976000px;}
._8_c00154{width:7.056000px;}
._2_c00154{width:8.640000px;}
._6_c00154{width:9.792000px;}
._15_c00154{width:11.045616px;}
._7_c00154{width:14.256000px;}
._1_c00154{width:18.864000px;}
._1a_c00154{width:21.136320px;}
._1d_c00154{width:29.697120px;}
._20_c00154{width:30.869184px;}
._10_c00154{width:35.727432px;}
._11_c00154{width:37.477584px;}
._16_c00154{width:61.283520px;}
._17_c00154{width:62.918712px;}
._19_c00154{width:64.235520px;}
._18_c00154{width:82.309200px;}
._d_c00154{width:94.401552px;}
._13_c00154{width:120.394080px;}
._14_c00154{width:121.563360px;}
._12_c00154{width:173.607480px;}
.fc0_c00154{color:rgb(0,0,0);}
.fs5_c00154{font-size:36.000000px;}
.fs2_c00154{font-size:41.760000px;}
.fs3_c00154{font-size:59.040000px;}
.fs6_c00154{font-size:60.000000px;}
.fs4_c00154{font-size:60.857039px;}
.fs0_c00154{font-size:72.000000px;}
.fs1_c00154{font-size:74.215901px;}
.y0_c00154{bottom:0.000000px;}
.y3b_c00154{bottom:3.120150px;}
.y3a_c00154{bottom:34.744500px;}
.y1_c00154{bottom:54.000000px;}
.y39_c00154{bottom:61.605000px;}
.y38_c00154{bottom:78.885000px;}
.y37_c00154{bottom:90.405000px;}
.y36_c00154{bottom:96.525000px;}
.y34_c00154{bottom:108.041040px;}
.y35_c00154{bottom:108.045000px;}
.y33_c00154{bottom:125.325000px;}
.y32_c00154{bottom:125.326800px;}
.y31_c00154{bottom:142.965000px;}
.y30_c00154{bottom:142.966800px;}
.y2f_c00154{bottom:160.605000px;}
.y2e_c00154{bottom:177.886800px;}
.y2c_c00154{bottom:195.521040px;}
.y2d_c00154{bottom:195.525000px;}
.y2b_c00154{bottom:212.805000px;}
.y2a_c00154{bottom:218.925000px;}
.y29_c00154{bottom:230.445000px;}
.y28_c00154{bottom:236.565000px;}
.y27_c00154{bottom:263.205000px;}
.y26_c00154{bottom:294.525000px;}
.y25_c00154{bottom:311.805000px;}
.y24_c00154{bottom:329.445000px;}
.y23_c00154{bottom:347.085000px;}
.y22_c00154{bottom:364.725000px;}
.y21_c00154{bottom:382.005000px;}
.y20_c00154{bottom:399.645000px;}
.y1f_c00154{bottom:417.285000px;}
.y1e_c00154{bottom:434.565000px;}
.y1d_c00154{bottom:452.205000px;}
.y1c_c00154{bottom:469.485000px;}
.y1b_c00154{bottom:487.125000px;}
.y1a_c00154{bottom:505.485000px;}
.y19_c00154{bottom:522.765000px;}
.y18_c00154{bottom:540.405000px;}
.y17_c00154{bottom:558.045000px;}
.y16_c00154{bottom:575.325000px;}
.y15_c00154{bottom:592.965000px;}
.y14_c00154{bottom:610.245000px;}
.y13_c00154{bottom:644.085000px;}
.y12_c00154{bottom:680.085000px;}
.y11_c00154{bottom:700.965000px;}
.y10_c00154{bottom:721.845000px;}
.yf_c00154{bottom:743.085000px;}
.ye_c00154{bottom:763.965000px;}
.yd_c00154{bottom:784.845000px;}
.yc_c00154{bottom:806.085000px;}
.yb_c00154{bottom:842.085000px;}
.ya_c00154{bottom:878.085000px;}
.y9_c00154{bottom:898.965000px;}
.y8_c00154{bottom:934.965000px;}
.y7_c00154{bottom:970.965000px;}
.y6_c00154{bottom:991.845000px;}
.y5_c00154{bottom:1027.845000px;}
.y4_c00154{bottom:1049.085000px;}
.y3_c00154{bottom:1085.085000px;}
.y2_c00154{bottom:1138.365000px;}
.hb_c00154{height:19.255500px;}
.ha_c00154{height:32.616000px;}
.h8_c00154{height:39.350391px;}
.hc_c00154{height:46.320000px;}
.h6_c00154{height:53.490240px;}
.h7_c00154{height:55.136477px;}
.h9_c00154{height:57.096000px;}
.h3_c00154{height:65.232000px;}
.h4_c00154{height:67.239607px;}
.h5_c00154{height:68.074560px;}
.h2_c00154{height:1201.365000px;}
.h0_c00154{height:1262.835000px;}
.h1_c00154{height:1263.000000px;}
.w7_c00154{width:25.020000px;}
.w3_c00154{width:50.760000px;}
.w4_c00154{width:105.120000px;}
.w6_c00154{width:244.440000px;}
.w5_c00154{width:250.560000px;}
.w2_c00154{width:863.955000px;}
.w0_c00154{width:892.935000px;}
.w1_c00154{width:893.250000px;}
.x0_c00154{left:0.000000px;}
.x11_c00154{left:7.920150px;}
.x2f_c00154{left:12.089700px;}
.x1_c00154{left:14.490000px;}
.x15_c00154{left:35.068650px;}
.x16_c00154{left:45.883650px;}
.x25_c00154{left:49.603950px;}
.x2a_c00154{left:50.909100px;}
.x17_c00154{left:54.222900px;}
.x30_c00154{left:55.438800px;}
.x26_c00154{left:57.088500px;}
.x27_c00154{left:64.588500px;}
.x2e_c00154{left:80.426400px;}
.x2c_c00154{left:86.590200px;}
.x14_c00154{left:95.037450px;}
.x18_c00154{left:97.572000px;}
.x1f_c00154{left:102.323700px;}
.x20_c00154{left:107.058750px;}
.x2_c00154{left:113.040150px;}
.x28_c00154{left:115.860300px;}
.x10_c00154{left:119.610000px;}
.x2d_c00154{left:127.732500px;}
.x23_c00154{left:131.259900px;}
.x1a_c00154{left:133.224150px;}
.xd_c00154{left:140.037600px;}
.x6_c00154{left:148.031550px;}
.x29_c00154{left:152.534850px;}
.x5_c00154{left:159.885900px;}
.x3_c00154{left:161.513700px;}
.x3e_c00154{left:163.052100px;}
.x31_c00154{left:164.393550px;}
.x1b_c00154{left:169.137750px;}
.x12_c00154{left:171.090000px;}
.x24_c00154{left:172.296000px;}
.x2b_c00154{left:174.772350px;}
.x1c_c00154{left:179.563050px;}
.x21_c00154{left:189.226200px;}
.x32_c00154{left:207.556200px;}
.x3a_c00154{left:213.003600px;}
.x1d_c00154{left:215.397600px;}
.x4_c00154{left:225.970050px;}
.x22_c00154{left:232.575300px;}
.x1e_c00154{left:236.745150px;}
.x3b_c00154{left:261.874200px;}
.x7_c00154{left:268.529250px;}
.x35_c00154{left:272.512200px;}
.x3f_c00154{left:274.361550px;}
.x13_c00154{left:276.930000px;}
.x8_c00154{left:288.673500px;}
.x37_c00154{left:293.265300px;}
.x40_c00154{left:294.355500px;}
.x9_c00154{left:304.839900px;}
.xa_c00154{left:313.839900px;}
.x38_c00154{left:334.934700px;}
.x36_c00154{left:348.953550px;}
.x3c_c00154{left:362.212200px;}
.xe_c00154{left:365.132100px;}
.xf_c00154{left:376.129800px;}
.x33_c00154{left:394.764300px;}
.x3d_c00154{left:407.211600px;}
.x34_c00154{left:423.922800px;}
.x19_c00154{left:528.210000px;}
.xb_c00154{left:596.002500px;}
.xc_c00154{left:671.207550px;}
.x39_c00154{left:714.016500px;}
.x41_c00154{left:759.915000px;}
@media print{
.v3_c00154{vertical-align:-21.760000pt;}
.v0_c00154{vertical-align:0.000000pt;}
.v2_c00154{vertical-align:21.760000pt;}
.v1_c00154{vertical-align:26.880000pt;}
.ls17_c00154{letter-spacing:-0.159616pt;}
.ls16_c00154{letter-spacing:0.000000pt;}
.ls27_c00154{letter-spacing:0.128000pt;}
.ls22_c00154{letter-spacing:0.215168pt;}
.ls9_c00154{letter-spacing:0.236160pt;}
.ls2c_c00154{letter-spacing:0.243428pt;}
.ls11_c00154{letter-spacing:0.262400pt;}
.ls8_c00154{letter-spacing:0.283093pt;}
.ls18_c00154{letter-spacing:0.283392pt;}
.lsd_c00154{letter-spacing:0.310827pt;}
.ls13_c00154{letter-spacing:0.314880pt;}
.ls2a_c00154{letter-spacing:0.330624pt;}
.ls32_c00154{letter-spacing:0.377856pt;}
.ls33_c00154{letter-spacing:0.389485pt;}
.ls1b_c00154{letter-spacing:0.425088pt;}
.ls10_c00154{letter-spacing:0.438171pt;}
.lsf_c00154{letter-spacing:0.456576pt;}
.ls4_c00154{letter-spacing:0.472320pt;}
.ls2e_c00154{letter-spacing:0.486856pt;}
.ls5_c00154{letter-spacing:0.488064pt;}
.ls25_c00154{letter-spacing:0.519552pt;}
.ls31_c00154{letter-spacing:0.566784pt;}
.ls1f_c00154{letter-spacing:0.614016pt;}
.ls1e_c00154{letter-spacing:0.619264pt;}
.ls2_c00154{letter-spacing:0.632913pt;}
.ls23_c00154{letter-spacing:0.661248pt;}
.ls19_c00154{letter-spacing:0.681599pt;}
.ls1d_c00154{letter-spacing:0.708480pt;}
.ls21_c00154{letter-spacing:0.730284pt;}
.ls30_c00154{letter-spacing:0.833065pt;}
.ls1a_c00154{letter-spacing:0.855424pt;}
.lsb_c00154{letter-spacing:0.881751pt;}
.lse_c00154{letter-spacing:1.156693pt;}
.ls20_c00154{letter-spacing:2.009984pt;}
.ls3_c00154{letter-spacing:2.246144pt;}
.ls26_c00154{letter-spacing:4.665472pt;}
.ls1_c00154{letter-spacing:4.710293pt;}
.ls29_c00154{letter-spacing:4.712704pt;}
.ls6_c00154{letter-spacing:4.900587pt;}
.ls7_c00154{letter-spacing:4.901632pt;}
.ls12_c00154{letter-spacing:5.038080pt;}
.lsc_c00154{letter-spacing:5.041707pt;}
.ls28_c00154{letter-spacing:5.137792pt;}
.ls14_c00154{letter-spacing:5.312000pt;}
.ls15_c00154{letter-spacing:5.475484pt;}
.ls2d_c00154{letter-spacing:5.683584pt;}
.ls1c_c00154{letter-spacing:6.161152pt;}
.ls2b_c00154{letter-spacing:14.563200pt;}
.ls2f_c00154{letter-spacing:27.121664pt;}
.ls0_c00154{letter-spacing:48.768000pt;}
.ls24_c00154{letter-spacing:86.056704pt;}
.lsa_c00154{letter-spacing:89.045760pt;}
.ws1_c00154{word-spacing:-19.491072pt;}
.ws9_c00154{word-spacing:-19.302144pt;}
.ws6_c00154{word-spacing:-15.920201pt;}
.wsa_c00154{word-spacing:-15.768735pt;}
.ws2_c00154{word-spacing:-15.720049pt;}
.ws3_c00154{word-spacing:-15.671364pt;}
.wsb_c00154{word-spacing:-15.476621pt;}
.ws5_c00154{word-spacing:-15.077504pt;}
.ws4_c00154{word-spacing:-15.061760pt;}
.ws7_c00154{word-spacing:-14.872832pt;}
.ws0_c00154{word-spacing:-10.159744pt;}
.ws8_c00154{word-spacing:-9.024000pt;}
.wsc_c00154{word-spacing:0.000000pt;}
._f_c00154{margin-left:-82.048939pt;}
._e_c00154{margin-left:-81.134080pt;}
._1e_c00154{margin-left:-26.764800pt;}
._1f_c00154{margin-left:-25.872640pt;}
._1b_c00154{margin-left:-14.117120pt;}
._b_c00154{margin-left:-6.778176pt;}
._a_c00154{margin-left:-5.455168pt;}
._1c_c00154{margin-left:-4.470912pt;}
._c_c00154{margin-left:-2.377664pt;}
._9_c00154{margin-left:-1.207040pt;}
._3_c00154{width:1.162325pt;}
._21_c00154{width:2.248875pt;}
._5_c00154{width:3.328000pt;}
._4_c00154{width:4.288000pt;}
._0_c00154{width:5.312000pt;}
._8_c00154{width:6.272000pt;}
._2_c00154{width:7.680000pt;}
._6_c00154{width:8.704000pt;}
._15_c00154{width:9.818325pt;}
._7_c00154{width:12.672000pt;}
._1_c00154{width:16.768000pt;}
._1a_c00154{width:18.787840pt;}
._1d_c00154{width:26.397440pt;}
._20_c00154{width:27.439275pt;}
._10_c00154{width:31.757717pt;}
._11_c00154{width:33.313408pt;}
._16_c00154{width:54.474240pt;}
._17_c00154{width:55.927744pt;}
._19_c00154{width:57.098240pt;}
._18_c00154{width:73.163733pt;}
._d_c00154{width:83.912491pt;}
._13_c00154{width:107.016960pt;}
._14_c00154{width:108.056320pt;}
._12_c00154{width:154.317760pt;}
.fs5_c00154{font-size:32.000000pt;}
.fs2_c00154{font-size:37.120000pt;}
.fs3_c00154{font-size:52.480000pt;}
.fs6_c00154{font-size:53.333333pt;}
.fs4_c00154{font-size:54.095146pt;}
.fs0_c00154{font-size:64.000000pt;}
.fs1_c00154{font-size:65.969690pt;}
.y0_c00154{bottom:0.000000pt;}
.y3b_c00154{bottom:2.773467pt;}
.y3a_c00154{bottom:30.884000pt;}
.y1_c00154{bottom:48.000000pt;}
.y39_c00154{bottom:54.760000pt;}
.y38_c00154{bottom:70.120000pt;}
.y37_c00154{bottom:80.360000pt;}
.y36_c00154{bottom:85.800000pt;}
.y34_c00154{bottom:96.036480pt;}
.y35_c00154{bottom:96.040000pt;}
.y33_c00154{bottom:111.400000pt;}
.y32_c00154{bottom:111.401600pt;}
.y31_c00154{bottom:127.080000pt;}
.y30_c00154{bottom:127.081600pt;}
.y2f_c00154{bottom:142.760000pt;}
.y2e_c00154{bottom:158.121600pt;}
.y2c_c00154{bottom:173.796480pt;}
.y2d_c00154{bottom:173.800000pt;}
.y2b_c00154{bottom:189.160000pt;}
.y2a_c00154{bottom:194.600000pt;}
.y29_c00154{bottom:204.840000pt;}
.y28_c00154{bottom:210.280000pt;}
.y27_c00154{bottom:233.960000pt;}
.y26_c00154{bottom:261.800000pt;}
.y25_c00154{bottom:277.160000pt;}
.y24_c00154{bottom:292.840000pt;}
.y23_c00154{bottom:308.520000pt;}
.y22_c00154{bottom:324.200000pt;}
.y21_c00154{bottom:339.560000pt;}
.y20_c00154{bottom:355.240000pt;}
.y1f_c00154{bottom:370.920000pt;}
.y1e_c00154{bottom:386.280000pt;}
.y1d_c00154{bottom:401.960000pt;}
.y1c_c00154{bottom:417.320000pt;}
.y1b_c00154{bottom:433.000000pt;}
.y1a_c00154{bottom:449.320000pt;}
.y19_c00154{bottom:464.680000pt;}
.y18_c00154{bottom:480.360000pt;}
.y17_c00154{bottom:496.040000pt;}
.y16_c00154{bottom:511.400000pt;}
.y15_c00154{bottom:527.080000pt;}
.y14_c00154{bottom:542.440000pt;}
.y13_c00154{bottom:572.520000pt;}
.y12_c00154{bottom:604.520000pt;}
.y11_c00154{bottom:623.080000pt;}
.y10_c00154{bottom:641.640000pt;}
.yf_c00154{bottom:660.520000pt;}
.ye_c00154{bottom:679.080000pt;}
.yd_c00154{bottom:697.640000pt;}
.yc_c00154{bottom:716.520000pt;}
.yb_c00154{bottom:748.520000pt;}
.ya_c00154{bottom:780.520000pt;}
.y9_c00154{bottom:799.080000pt;}
.y8_c00154{bottom:831.080000pt;}
.y7_c00154{bottom:863.080000pt;}
.y6_c00154{bottom:881.640000pt;}
.y5_c00154{bottom:913.640000pt;}
.y4_c00154{bottom:932.520000pt;}
.y3_c00154{bottom:964.520000pt;}
.y2_c00154{bottom:1011.880000pt;}
.hb_c00154{height:17.116000pt;}
.ha_c00154{height:28.992000pt;}
.h8_c00154{height:34.978125pt;}
.hc_c00154{height:41.173333pt;}
.h6_c00154{height:47.546880pt;}
.h7_c00154{height:49.010202pt;}
.h9_c00154{height:50.752000pt;}
.h3_c00154{height:57.984000pt;}
.h4_c00154{height:59.768539pt;}
.h5_c00154{height:60.510720pt;}
.h2_c00154{height:1067.880000pt;}
.h0_c00154{height:1122.520000pt;}
.h1_c00154{height:1122.666667pt;}
.w7_c00154{width:22.240000pt;}
.w3_c00154{width:45.120000pt;}
.w4_c00154{width:93.440000pt;}
.w6_c00154{width:217.280000pt;}
.w5_c00154{width:222.720000pt;}
.w2_c00154{width:767.960000pt;}
.w0_c00154{width:793.720000pt;}
.w1_c00154{width:794.000000pt;}
.x0_c00154{left:0.000000pt;}
.x11_c00154{left:7.040133pt;}
.x2f_c00154{left:10.746400pt;}
.x1_c00154{left:12.880000pt;}
.x15_c00154{left:31.172133pt;}
.x16_c00154{left:40.785467pt;}
.x25_c00154{left:44.092400pt;}
.x2a_c00154{left:45.252533pt;}
.x17_c00154{left:48.198133pt;}
.x30_c00154{left:49.278933pt;}
.x26_c00154{left:50.745333pt;}
.x27_c00154{left:57.412000pt;}
.x2e_c00154{left:71.490133pt;}
.x2c_c00154{left:76.969067pt;}
.x14_c00154{left:84.477733pt;}
.x18_c00154{left:86.730667pt;}
.x1f_c00154{left:90.954400pt;}
.x20_c00154{left:95.163333pt;}
.x2_c00154{left:100.480133pt;}
.x28_c00154{left:102.986933pt;}
.x10_c00154{left:106.320000pt;}
.x2d_c00154{left:113.540000pt;}
.x23_c00154{left:116.675467pt;}
.x1a_c00154{left:118.421467pt;}
.xd_c00154{left:124.477867pt;}
.x6_c00154{left:131.583600pt;}
.x29_c00154{left:135.586533pt;}
.x5_c00154{left:142.120800pt;}
.x3_c00154{left:143.567733pt;}
.x3e_c00154{left:144.935200pt;}
.x31_c00154{left:146.127600pt;}
.x1b_c00154{left:150.344667pt;}
.x12_c00154{left:152.080000pt;}
.x24_c00154{left:153.152000pt;}
.x2b_c00154{left:155.353200pt;}
.x1c_c00154{left:159.611600pt;}
.x21_c00154{left:168.201067pt;}
.x32_c00154{left:184.494400pt;}
.x3a_c00154{left:189.336533pt;}
.x1d_c00154{left:191.464533pt;}
.x4_c00154{left:200.862267pt;}
.x22_c00154{left:206.733600pt;}
.x1e_c00154{left:210.440133pt;}
.x3b_c00154{left:232.777067pt;}
.x7_c00154{left:238.692667pt;}
.x35_c00154{left:242.233067pt;}
.x3f_c00154{left:243.876933pt;}
.x13_c00154{left:246.160000pt;}
.x8_c00154{left:256.598667pt;}
.x37_c00154{left:260.680267pt;}
.x40_c00154{left:261.649333pt;}
.x9_c00154{left:270.968800pt;}
.xa_c00154{left:278.968800pt;}
.x38_c00154{left:297.719733pt;}
.x36_c00154{left:310.180933pt;}
.x3c_c00154{left:321.966400pt;}
.xe_c00154{left:324.561867pt;}
.xf_c00154{left:334.337600pt;}
.x33_c00154{left:350.901600pt;}
.x3d_c00154{left:361.965867pt;}
.x34_c00154{left:376.820267pt;}
.x19_c00154{left:469.520000pt;}
.xb_c00154{left:529.780000pt;}
.xc_c00154{left:596.628933pt;}
.x39_c00154{left:634.681333pt;}
.x41_c00154{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67949488eea1a526bcaf3573.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.134000;font-style:normal;font-weight:normal;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_cbc38d41ec96ddae1f80c9d6.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_1c5e9a78e4e194d618f527b0.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00155;src:url('chunks/assets/font_c3bb41f178e11720281d1af3.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00155;src:url('chunks/assets/font_841ed42bb466aaa143dea215.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00155;src:url('chunks/assets/font_f1da68be808a857de242e78b.woff2')format("woff");}.ff7_c00155{font-family:ff7_c00155;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00155{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls11_c00155{letter-spacing:0.000000px;}
.ls13_c00155{letter-spacing:0.242064px;}
.ls3_c00155{letter-spacing:0.265680px;}
.lse_c00155{letter-spacing:0.273857px;}
.ls1_c00155{letter-spacing:0.318480px;}
.ls17_c00155{letter-spacing:0.318816px;}
.ls20_c00155{letter-spacing:0.328628px;}
.ls5_c00155{letter-spacing:0.349080px;}
.ls1d_c00155{letter-spacing:0.371952px;}
.lsa_c00155{letter-spacing:0.384315px;}
.ls26_c00155{letter-spacing:0.478224px;}
.lsb_c00155{letter-spacing:0.492942px;}
.ls8_c00155{letter-spacing:0.531360px;}
.lsc_c00155{letter-spacing:0.547713px;}
.lsd_c00155{letter-spacing:0.549072px;}
.ls9_c00155{letter-spacing:0.560880px;}
.ls16_c00155{letter-spacing:0.584496px;}
.ls21_c00155{letter-spacing:0.690768px;}
.ls7_c00155{letter-spacing:0.712027px;}
.ls15_c00155{letter-spacing:0.743904px;}
.ls22_c00155{letter-spacing:0.761616px;}
.ls18_c00155{letter-spacing:0.766799px;}
.ls23_c00155{letter-spacing:0.797040px;}
.ls12_c00155{letter-spacing:0.821570px;}
.ls1c_c00155{letter-spacing:0.962352px;}
.ls2_c00155{letter-spacing:0.991970px;}
.ls19_c00155{letter-spacing:5.248656px;}
.ls1b_c00155{letter-spacing:5.301792px;}
.ls6_c00155{letter-spacing:5.513160px;}
.ls0_c00155{letter-spacing:5.514336px;}
.ls4_c00155{letter-spacing:5.671920px;}
.ls1a_c00155{letter-spacing:5.780016px;}
.lsf_c00155{letter-spacing:5.976000px;}
.ls10_c00155{letter-spacing:6.159920px;}
.ls1f_c00155{letter-spacing:6.931296px;}
.ls24_c00155{letter-spacing:6.943104px;}
.ls27_c00155{letter-spacing:8.814672px;}
.ls1e_c00155{letter-spacing:10.261152px;}
.ls25_c00155{letter-spacing:21.372480px;}
.ls14_c00155{letter-spacing:96.813792px;}
.sc__c00155{text-shadow:none;}
.sc1_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00155{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc1_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00155{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00155{word-spacing:-21.927456px;}
.ws4_c00155{word-spacing:-21.714912px;}
.ws1_c00155{word-spacing:-17.910227px;}
.ws6_c00155{word-spacing:-17.739827px;}
.ws3_c00155{word-spacing:-17.685056px;}
.ws5_c00155{word-spacing:-17.630284px;}
.ws8_c00155{word-spacing:-17.411199px;}
.ws7_c00155{word-spacing:-17.246885px;}
.wsa_c00155{word-spacing:-16.962192px;}
.wsb_c00155{word-spacing:-16.944480px;}
.ws2_c00155{word-spacing:-16.731936px;}
.ws9_c00155{word-spacing:-0.772884px;}
.wsc_c00155{word-spacing:0.000000px;}
._6_c00155{margin-left:-92.305056px;}
._5_c00155{margin-left:-91.275840px;}
._1a_c00155{margin-left:-21.903840px;}
._19_c00155{margin-left:-20.841120px;}
._11_c00155{margin-left:-9.741600px;}
._1c_c00155{margin-left:-8.619840px;}
._13_c00155{margin-left:-7.498080px;}
._12_c00155{margin-left:-6.376320px;}
._1_c00155{margin-left:-1.095427px;}
._3_c00155{width:1.298880px;}
._f_c00155{width:4.841067px;}
._0_c00155{width:5.976000px;}
._10_c00155{width:9.151200px;}
._b_c00155{width:10.783123px;}
._14_c00155{width:13.936262px;}
._16_c00155{width:30.346560px;}
._7_c00155{width:35.464939px;}
._17_c00155{width:40.442400px;}
._c_c00155{width:61.283520px;}
._d_c00155{width:62.918712px;}
._1d_c00155{width:79.290720px;}
._2_c00155{width:96.763152px;}
._4_c00155{width:97.770240px;}
._e_c00155{width:102.325200px;}
._15_c00155{width:117.393228px;}
._9_c00155{width:120.394080px;}
._a_c00155{width:121.563360px;}
._18_c00155{width:137.106139px;}
._1b_c00155{width:152.146080px;}
._8_c00155{width:173.607480px;}
.fc0_c00155{color:rgb(0,0,0);}
.fs2_c00155{font-size:59.040000px;}
.fs4_c00155{font-size:60.000000px;}
.fs3_c00155{font-size:60.857039px;}
.fs0_c00155{font-size:72.000000px;}
.fs1_c00155{font-size:74.215901px;}
.y0_c00155{bottom:0.000000px;}
.y46_c00155{bottom:3.120150px;}
.y45_c00155{bottom:34.744500px;}
.y1_c00155{bottom:54.000000px;}
.y44_c00155{bottom:68.085000px;}
.y43_c00155{bottom:85.725000px;}
.y42_c00155{bottom:103.365000px;}
.y41_c00155{bottom:121.005000px;}
.y40_c00155{bottom:138.285000px;}
.y3f_c00155{bottom:155.925000px;}
.y3e_c00155{bottom:173.565000px;}
.y3d_c00155{bottom:190.845000px;}
.y3c_c00155{bottom:208.485000px;}
.y3b_c00155{bottom:225.765000px;}
.y3a_c00155{bottom:243.405000px;}
.y37_c00155{bottom:261.765000px;}
.y36_c00155{bottom:279.045000px;}
.y35_c00155{bottom:296.685000px;}
.y34_c00155{bottom:314.325000px;}
.y33_c00155{bottom:331.965000px;}
.y32_c00155{bottom:349.245000px;}
.y31_c00155{bottom:366.885000px;}
.y30_c00155{bottom:384.165000px;}
.y39_c00155{bottom:384.525000px;}
.y2f_c00155{bottom:401.805000px;}
.y2e_c00155{bottom:419.445000px;}
.y2d_c00155{bottom:436.725000px;}
.y38_c00155{bottom:437.085000px;}
.y2c_c00155{bottom:454.365000px;}
.y2a_c00155{bottom:472.725000px;}
.y29_c00155{bottom:490.365000px;}
.y28_c00155{bottom:508.005000px;}
.y27_c00155{bottom:525.285000px;}
.y26_c00155{bottom:542.925000px;}
.y25_c00155{bottom:560.205000px;}
.y24_c00155{bottom:577.845000px;}
.y23_c00155{bottom:595.485000px;}
.y22_c00155{bottom:612.765000px;}
.y2b_c00155{bottom:613.125000px;}
.y21_c00155{bottom:630.405000px;}
.y20_c00155{bottom:648.045000px;}
.y1f_c00155{bottom:665.685000px;}
.y1e_c00155{bottom:683.685000px;}
.y1d_c00155{bottom:701.325000px;}
.y19_c00155{bottom:718.245000px;}
.y1c_c00155{bottom:718.965000px;}
.y18_c00155{bottom:735.885000px;}
.y1b_c00155{bottom:736.605000px;}
.y17_c00155{bottom:753.525000px;}
.y1a_c00155{bottom:753.885000px;}
.y16_c00155{bottom:771.525000px;}
.y15_c00155{bottom:788.805000px;}
.y14_c00155{bottom:806.445000px;}
.y13_c00155{bottom:824.085000px;}
.y12_c00155{bottom:841.365000px;}
.y11_c00155{bottom:859.005000px;}
.y10_c00155{bottom:876.645000px;}
.ye_c00155{bottom:894.645000px;}
.yd_c00155{bottom:912.285000px;}
.yc_c00155{bottom:929.925000px;}
.yb_c00155{bottom:947.205000px;}
.ya_c00155{bottom:964.845000px;}
.y9_c00155{bottom:982.485000px;}
.y8_c00155{bottom:999.764850px;}
.y7_c00155{bottom:1017.405000px;}
.y6_c00155{bottom:1035.045000px;}
.y5_c00155{bottom:1052.325000px;}
.yf_c00155{bottom:1052.685000px;}
.y4_c00155{bottom:1069.965000px;}
.y3_c00155{bottom:1087.604850px;}
.y2_c00155{bottom:1138.365000px;}
.h8_c00155{height:19.255500px;}
.h7_c00155{height:39.350391px;}
.h9_c00155{height:46.320000px;}
.h5_c00155{height:53.490240px;}
.h6_c00155{height:55.136477px;}
.h3_c00155{height:65.232000px;}
.h4_c00155{height:67.239607px;}
.h2_c00155{height:1201.365000px;}
.h0_c00155{height:1262.835000px;}
.h1_c00155{height:1263.000000px;}
.w7_c00155{width:25.020000px;}
.w3_c00155{width:50.760000px;}
.w4_c00155{width:105.120000px;}
.w6_c00155{width:244.440000px;}
.w5_c00155{width:250.560000px;}
.w2_c00155{width:863.955000px;}
.w0_c00155{width:892.935000px;}
.w1_c00155{width:893.250000px;}
.x0_c00155{left:0.000000px;}
.x6_c00155{left:7.920150px;}
.x1_c00155{left:14.490000px;}
.x15_c00155{left:26.265300px;}
.x29_c00155{left:40.690350px;}
.x1d_c00155{left:43.754400px;}
.x19_c00155{left:45.434250px;}
.x1a_c00155{left:48.763350px;}
.x11_c00155{left:50.909100px;}
.x1e_c00155{left:55.725750px;}
.x16_c00155{left:69.614550px;}
.x2f_c00155{left:81.281550px;}
.x9_c00155{left:82.557750px;}
.x2a_c00155{left:84.039600px;}
.x2b_c00155{left:85.048050px;}
.x1f_c00155{left:86.217600px;}
.x2e_c00155{left:88.491150px;}
.x1c_c00155{left:93.225150px;}
.x1b_c00155{left:97.394700px;}
.x22_c00155{left:106.395900px;}
.x2_c00155{left:113.040150px;}
.xf_c00155{left:115.860300px;}
.x5_c00155{left:119.610000px;}
.x2c_c00155{left:121.721850px;}
.x30_c00155{left:122.965500px;}
.x14_c00155{left:125.452500px;}
.x25_c00155{left:126.731700px;}
.x28_c00155{left:127.942350px;}
.xa_c00155{left:141.715950px;}
.x31_c00155{left:143.252850px;}
.x26_c00155{left:145.466250px;}
.x12_c00155{left:147.521400px;}
.xb_c00155{left:149.215800px;}
.x10_c00155{left:152.534850px;}
.x23_c00155{left:155.701200px;}
.x27_c00155{left:157.135950px;}
.x3_c00155{left:161.513700px;}
.xc_c00155{left:164.200500px;}
.x17_c00155{left:166.756350px;}
.xd_c00155{left:167.950500px;}
.x7_c00155{left:171.090000px;}
.x20_c00155{left:176.593500px;}
.xe_c00155{left:179.620200px;}
.x2d_c00155{left:187.539450px;}
.x24_c00155{left:199.230750px;}
.x18_c00155{left:207.556200px;}
.x21_c00155{left:219.942600px;}
.x4_c00155{left:225.970050px;}
.x8_c00155{left:276.930000px;}
.x13_c00155{left:528.210000px;}
.x32_c00155{left:759.915000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls11_c00155{letter-spacing:0.000000pt;}
.ls13_c00155{letter-spacing:0.215168pt;}
.ls3_c00155{letter-spacing:0.236160pt;}
.lse_c00155{letter-spacing:0.243428pt;}
.ls1_c00155{letter-spacing:0.283093pt;}
.ls17_c00155{letter-spacing:0.283392pt;}
.ls20_c00155{letter-spacing:0.292114pt;}
.ls5_c00155{letter-spacing:0.310293pt;}
.ls1d_c00155{letter-spacing:0.330624pt;}
.lsa_c00155{letter-spacing:0.341613pt;}
.ls26_c00155{letter-spacing:0.425088pt;}
.lsb_c00155{letter-spacing:0.438171pt;}
.ls8_c00155{letter-spacing:0.472320pt;}
.lsc_c00155{letter-spacing:0.486856pt;}
.lsd_c00155{letter-spacing:0.488064pt;}
.ls9_c00155{letter-spacing:0.498560pt;}
.ls16_c00155{letter-spacing:0.519552pt;}
.ls21_c00155{letter-spacing:0.614016pt;}
.ls7_c00155{letter-spacing:0.632913pt;}
.ls15_c00155{letter-spacing:0.661248pt;}
.ls22_c00155{letter-spacing:0.676992pt;}
.ls18_c00155{letter-spacing:0.681599pt;}
.ls23_c00155{letter-spacing:0.708480pt;}
.ls12_c00155{letter-spacing:0.730284pt;}
.ls1c_c00155{letter-spacing:0.855424pt;}
.ls2_c00155{letter-spacing:0.881751pt;}
.ls19_c00155{letter-spacing:4.665472pt;}
.ls1b_c00155{letter-spacing:4.712704pt;}
.ls6_c00155{letter-spacing:4.900587pt;}
.ls0_c00155{letter-spacing:4.901632pt;}
.ls4_c00155{letter-spacing:5.041707pt;}
.ls1a_c00155{letter-spacing:5.137792pt;}
.lsf_c00155{letter-spacing:5.312000pt;}
.ls10_c00155{letter-spacing:5.475484pt;}
.ls1f_c00155{letter-spacing:6.161152pt;}
.ls24_c00155{letter-spacing:6.171648pt;}
.ls27_c00155{letter-spacing:7.835264pt;}
.ls1e_c00155{letter-spacing:9.121024pt;}
.ls25_c00155{letter-spacing:18.997760pt;}
.ls14_c00155{letter-spacing:86.056704pt;}
.ws0_c00155{word-spacing:-19.491072pt;}
.ws4_c00155{word-spacing:-19.302144pt;}
.ws1_c00155{word-spacing:-15.920201pt;}
.ws6_c00155{word-spacing:-15.768735pt;}
.ws3_c00155{word-spacing:-15.720049pt;}
.ws5_c00155{word-spacing:-15.671364pt;}
.ws8_c00155{word-spacing:-15.476621pt;}
.ws7_c00155{word-spacing:-15.330564pt;}
.wsa_c00155{word-spacing:-15.077504pt;}
.wsb_c00155{word-spacing:-15.061760pt;}
.ws2_c00155{word-spacing:-14.872832pt;}
.ws9_c00155{word-spacing:-0.687008pt;}
.wsc_c00155{word-spacing:0.000000pt;}
._6_c00155{margin-left:-82.048939pt;}
._5_c00155{margin-left:-81.134080pt;}
._1a_c00155{margin-left:-19.470080pt;}
._19_c00155{margin-left:-18.525440pt;}
._11_c00155{margin-left:-8.659200pt;}
._1c_c00155{margin-left:-7.662080pt;}
._13_c00155{margin-left:-6.664960pt;}
._12_c00155{margin-left:-5.667840pt;}
._1_c00155{margin-left:-0.973713pt;}
._3_c00155{width:1.154560pt;}
._f_c00155{width:4.303170pt;}
._0_c00155{width:5.312000pt;}
._10_c00155{width:8.134400pt;}
._b_c00155{width:9.584998pt;}
._14_c00155{width:12.387788pt;}
._16_c00155{width:26.974720pt;}
._7_c00155{width:31.524390pt;}
._17_c00155{width:35.948800pt;}
._c_c00155{width:54.474240pt;}
._d_c00155{width:55.927744pt;}
._1d_c00155{width:70.480640pt;}
._2_c00155{width:86.011691pt;}
._4_c00155{width:86.906880pt;}
._e_c00155{width:90.955733pt;}
._15_c00155{width:104.349536pt;}
._9_c00155{width:107.016960pt;}
._a_c00155{width:108.056320pt;}
._18_c00155{width:121.872123pt;}
._1b_c00155{width:135.240960pt;}
._8_c00155{width:154.317760pt;}
.fs2_c00155{font-size:52.480000pt;}
.fs4_c00155{font-size:53.333333pt;}
.fs3_c00155{font-size:54.095146pt;}
.fs0_c00155{font-size:64.000000pt;}
.fs1_c00155{font-size:65.969690pt;}
.y0_c00155{bottom:0.000000pt;}
.y46_c00155{bottom:2.773467pt;}
.y45_c00155{bottom:30.884000pt;}
.y1_c00155{bottom:48.000000pt;}
.y44_c00155{bottom:60.520000pt;}
.y43_c00155{bottom:76.200000pt;}
.y42_c00155{bottom:91.880000pt;}
.y41_c00155{bottom:107.560000pt;}
.y40_c00155{bottom:122.920000pt;}
.y3f_c00155{bottom:138.600000pt;}
.y3e_c00155{bottom:154.280000pt;}
.y3d_c00155{bottom:169.640000pt;}
.y3c_c00155{bottom:185.320000pt;}
.y3b_c00155{bottom:200.680000pt;}
.y3a_c00155{bottom:216.360000pt;}
.y37_c00155{bottom:232.680000pt;}
.y36_c00155{bottom:248.040000pt;}
.y35_c00155{bottom:263.720000pt;}
.y34_c00155{bottom:279.400000pt;}
.y33_c00155{bottom:295.080000pt;}
.y32_c00155{bottom:310.440000pt;}
.y31_c00155{bottom:326.120000pt;}
.y30_c00155{bottom:341.480000pt;}
.y39_c00155{bottom:341.800000pt;}
.y2f_c00155{bottom:357.160000pt;}
.y2e_c00155{bottom:372.840000pt;}
.y2d_c00155{bottom:388.200000pt;}
.y38_c00155{bottom:388.520000pt;}
.y2c_c00155{bottom:403.880000pt;}
.y2a_c00155{bottom:420.200000pt;}
.y29_c00155{bottom:435.880000pt;}
.y28_c00155{bottom:451.560000pt;}
.y27_c00155{bottom:466.920000pt;}
.y26_c00155{bottom:482.600000pt;}
.y25_c00155{bottom:497.960000pt;}
.y24_c00155{bottom:513.640000pt;}
.y23_c00155{bottom:529.320000pt;}
.y22_c00155{bottom:544.680000pt;}
.y2b_c00155{bottom:545.000000pt;}
.y21_c00155{bottom:560.360000pt;}
.y20_c00155{bottom:576.040000pt;}
.y1f_c00155{bottom:591.720000pt;}
.y1e_c00155{bottom:607.720000pt;}
.y1d_c00155{bottom:623.400000pt;}
.y19_c00155{bottom:638.440000pt;}
.y1c_c00155{bottom:639.080000pt;}
.y18_c00155{bottom:654.120000pt;}
.y1b_c00155{bottom:654.760000pt;}
.y17_c00155{bottom:669.800000pt;}
.y1a_c00155{bottom:670.120000pt;}
.y16_c00155{bottom:685.800000pt;}
.y15_c00155{bottom:701.160000pt;}
.y14_c00155{bottom:716.840000pt;}
.y13_c00155{bottom:732.520000pt;}
.y12_c00155{bottom:747.880000pt;}
.y11_c00155{bottom:763.560000pt;}
.y10_c00155{bottom:779.240000pt;}
.ye_c00155{bottom:795.240000pt;}
.yd_c00155{bottom:810.920000pt;}
.yc_c00155{bottom:826.600000pt;}
.yb_c00155{bottom:841.960000pt;}
.ya_c00155{bottom:857.640000pt;}
.y9_c00155{bottom:873.320000pt;}
.y8_c00155{bottom:888.679867pt;}
.y7_c00155{bottom:904.360000pt;}
.y6_c00155{bottom:920.040000pt;}
.y5_c00155{bottom:935.400000pt;}
.yf_c00155{bottom:935.720000pt;}
.y4_c00155{bottom:951.080000pt;}
.y3_c00155{bottom:966.759867pt;}
.y2_c00155{bottom:1011.880000pt;}
.h8_c00155{height:17.116000pt;}
.h7_c00155{height:34.978125pt;}
.h9_c00155{height:41.173333pt;}
.h5_c00155{height:47.546880pt;}
.h6_c00155{height:49.010202pt;}
.h3_c00155{height:57.984000pt;}
.h4_c00155{height:59.768539pt;}
.h2_c00155{height:1067.880000pt;}
.h0_c00155{height:1122.520000pt;}
.h1_c00155{height:1122.666667pt;}
.w7_c00155{width:22.240000pt;}
.w3_c00155{width:45.120000pt;}
.w4_c00155{width:93.440000pt;}
.w6_c00155{width:217.280000pt;}
.w5_c00155{width:222.720000pt;}
.w2_c00155{width:767.960000pt;}
.w0_c00155{width:793.720000pt;}
.w1_c00155{width:794.000000pt;}
.x0_c00155{left:0.000000pt;}
.x6_c00155{left:7.040133pt;}
.x1_c00155{left:12.880000pt;}
.x15_c00155{left:23.346933pt;}
.x29_c00155{left:36.169200pt;}
.x1d_c00155{left:38.892800pt;}
.x19_c00155{left:40.386000pt;}
.x1a_c00155{left:43.345200pt;}
.x11_c00155{left:45.252533pt;}
.x1e_c00155{left:49.534000pt;}
.x16_c00155{left:61.879600pt;}
.x2f_c00155{left:72.250267pt;}
.x9_c00155{left:73.384667pt;}
.x2a_c00155{left:74.701867pt;}
.x2b_c00155{left:75.598267pt;}
.x1f_c00155{left:76.637867pt;}
.x2e_c00155{left:78.658800pt;}
.x1c_c00155{left:82.866800pt;}
.x1b_c00155{left:86.573067pt;}
.x22_c00155{left:94.574133pt;}
.x2_c00155{left:100.480133pt;}
.xf_c00155{left:102.986933pt;}
.x5_c00155{left:106.320000pt;}
.x2c_c00155{left:108.197200pt;}
.x30_c00155{left:109.302667pt;}
.x14_c00155{left:111.513333pt;}
.x25_c00155{left:112.650400pt;}
.x28_c00155{left:113.726533pt;}
.xa_c00155{left:125.969733pt;}
.x31_c00155{left:127.335867pt;}
.x26_c00155{left:129.303333pt;}
.x12_c00155{left:131.130133pt;}
.xb_c00155{left:132.636267pt;}
.x10_c00155{left:135.586533pt;}
.x23_c00155{left:138.401067pt;}
.x27_c00155{left:139.676400pt;}
.x3_c00155{left:143.567733pt;}
.xc_c00155{left:145.956000pt;}
.x17_c00155{left:148.227867pt;}
.xd_c00155{left:149.289333pt;}
.x7_c00155{left:152.080000pt;}
.x20_c00155{left:156.972000pt;}
.xe_c00155{left:159.662400pt;}
.x2d_c00155{left:166.701733pt;}
.x24_c00155{left:177.094000pt;}
.x18_c00155{left:184.494400pt;}
.x21_c00155{left:195.504533pt;}
.x4_c00155{left:200.862267pt;}
.x8_c00155{left:246.160000pt;}
.x13_c00155{left:469.520000pt;}
.x32_c00155{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a56cea7f987b5702f1b4e55.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.134000;font-style:normal;font-weight:normal;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_06395295eae80153d7857878.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_18b943f5f66760fb5846460a.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:0.787000;font-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_c00156{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls3_c00156{letter-spacing:0.000000px;}
.ls5_c00156{letter-spacing:0.265680px;}
.ls0_c00156{letter-spacing:0.318480px;}
.ls4_c00156{letter-spacing:5.301792px;}
.ls1_c00156{letter-spacing:5.976000px;}
.ls2_c00156{letter-spacing:6.159920px;}
.sc__c00156{text-shadow:none;}
.sc1_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00156{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc1_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00156{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00156{word-spacing:-21.714912px;}
.ws1_c00156{word-spacing:0.000000px;}
._1_c00156{width:1.121760px;}
._0_c00156{width:5.976000px;}
.fc0_c00156{color:rgb(0,0,0);}
.fs2_c00156{font-size:59.040000px;}
.fs3_c00156{font-size:60.000000px;}
.fs0_c00156{font-size:72.000000px;}
.fs1_c00156{font-size:74.215901px;}
.y0_c00156{bottom:0.000000px;}
.y5_c00156{bottom:3.120150px;}
.y4_c00156{bottom:34.744500px;}
.y1_c00156{bottom:54.000000px;}
.y3_c00156{bottom:1087.604850px;}
.y2_c00156{bottom:1138.365000px;}
.h6_c00156{height:19.255500px;}
.h7_c00156{height:46.320000px;}
.h5_c00156{height:53.490240px;}
.h3_c00156{height:65.232000px;}
.h4_c00156{height:67.239607px;}
.h2_c00156{height:1201.365000px;}
.h0_c00156{height:1262.835000px;}
.h1_c00156{height:1263.000000px;}
.w4_c00156{width:25.020000px;}
.w3_c00156{width:250.560000px;}
.w2_c00156{width:863.955000px;}
.w0_c00156{width:892.935000px;}
.w1_c00156{width:893.250000px;}
.x0_c00156{left:0.000000px;}
.x6_c00156{left:7.560000px;}
.x1_c00156{left:14.490000px;}
.x2_c00156{left:113.040150px;}
.x3_c00156{left:161.513700px;}
.x4_c00156{left:225.970050px;}
.x5_c00156{left:276.930000px;}
.x7_c00156{left:759.915000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls3_c00156{letter-spacing:0.000000pt;}
.ls5_c00156{letter-spacing:0.236160pt;}
.ls0_c00156{letter-spacing:0.283093pt;}
.ls4_c00156{letter-spacing:4.712704pt;}
.ls1_c00156{letter-spacing:5.312000pt;}
.ls2_c00156{letter-spacing:5.475484pt;}
.ws0_c00156{word-spacing:-19.302144pt;}
.ws1_c00156{word-spacing:0.000000pt;}
._1_c00156{width:0.997120pt;}
._0_c00156{width:5.312000pt;}
.fs2_c00156{font-size:52.480000pt;}
.fs3_c00156{font-size:53.333333pt;}
.fs0_c00156{font-size:64.000000pt;}
.fs1_c00156{font-size:65.969690pt;}
.y0_c00156{bottom:0.000000pt;}
.y5_c00156{bottom:2.773467pt;}
.y4_c00156{bottom:30.884000pt;}
.y1_c00156{bottom:48.000000pt;}
.y3_c00156{bottom:966.759867pt;}
.y2_c00156{bottom:1011.880000pt;}
.h6_c00156{height:17.116000pt;}
.h7_c00156{height:41.173333pt;}
.h5_c00156{height:47.546880pt;}
.h3_c00156{height:57.984000pt;}
.h4_c00156{height:59.768539pt;}
.h2_c00156{height:1067.880000pt;}
.h0_c00156{height:1122.520000pt;}
.h1_c00156{height:1122.666667pt;}
.w4_c00156{width:22.240000pt;}
.w3_c00156{width:222.720000pt;}
.w2_c00156{width:767.960000pt;}
.w0_c00156{width:793.720000pt;}
.w1_c00156{width:794.000000pt;}
.x0_c00156{left:0.000000pt;}
.x6_c00156{left:6.720000pt;}
.x1_c00156{left:12.880000pt;}
.x2_c00156{left:100.480133pt;}
.x3_c00156{left:143.567733pt;}
.x4_c00156{left:200.862267pt;}
.x5_c00156{left:246.160000pt;}
.x7_c00156{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_621084a230e7412153712586.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.134000;font-style:normal;font-weight:normal;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_282cdb2eb630197852ec8eed.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_416ec22544b95ea76fc4b8de.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_c3bb41f178e11720281d1af3.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00157;src:url('chunks/assets/font_f2e4428ff28c3ba007346edd.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00157;src:url('chunks/assets/font_90f8bc983d0abcb5d8a0b9e2.woff2')format("woff");}.ff7_c00157{font-family:ff7_c00157;line-height:0.787000;font-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_c00157{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls15_c00157{letter-spacing:0.000000px;}
.ls17_c00157{letter-spacing:0.242064px;}
.ls2_c00157{letter-spacing:0.265680px;}
.ls27_c00157{letter-spacing:0.273857px;}
.ls6_c00157{letter-spacing:0.318480px;}
.ls1b_c00157{letter-spacing:0.318816px;}
.ls24_c00157{letter-spacing:0.328628px;}
.ls4_c00157{letter-spacing:0.349080px;}
.ls21_c00157{letter-spacing:0.371952px;}
.ls16_c00157{letter-spacing:0.492942px;}
.ls11_c00157{letter-spacing:0.494773px;}
.ls8_c00157{letter-spacing:0.531360px;}
.ls10_c00157{letter-spacing:0.547713px;}
.lsf_c00157{letter-spacing:0.548950px;}
.ls9_c00157{letter-spacing:0.549072px;}
.ls12_c00157{letter-spacing:0.560880px;}
.ls1a_c00157{letter-spacing:0.584496px;}
.ls29_c00157{letter-spacing:0.602485px;}
.lsc_c00157{letter-spacing:0.603994px;}
.lsa_c00157{letter-spacing:0.658419px;}
.ls20_c00157{letter-spacing:0.690768px;}
.ls25_c00157{letter-spacing:0.696672px;}
.ls7_c00157{letter-spacing:0.712027px;}
.lse_c00157{letter-spacing:0.713462px;}
.lsb_c00157{letter-spacing:0.715441px;}
.ls19_c00157{letter-spacing:0.743904px;}
.ls1c_c00157{letter-spacing:0.766799px;}
.ls23_c00157{letter-spacing:0.821570px;}
.ls1_c00157{letter-spacing:0.991970px;}
.ls2a_c00157{letter-spacing:1.381536px;}
.ls22_c00157{letter-spacing:3.657508px;}
.ls28_c00157{letter-spacing:4.191840px;}
.ls1d_c00157{letter-spacing:5.248656px;}
.ls1f_c00157{letter-spacing:5.301792px;}
.ls5_c00157{letter-spacing:5.513160px;}
.ls0_c00157{letter-spacing:5.514336px;}
.ls3_c00157{letter-spacing:5.671920px;}
.ls1e_c00157{letter-spacing:5.780016px;}
.ls13_c00157{letter-spacing:5.976000px;}
.ls14_c00157{letter-spacing:6.159920px;}
.ls26_c00157{letter-spacing:8.814672px;}
.ls2b_c00157{letter-spacing:19.158480px;}
.ls18_c00157{letter-spacing:96.813792px;}
.lsd_c00157{letter-spacing:211.113068px;}
.sc__c00157{text-shadow:none;}
.sc1_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00157{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc1_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00157{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00157{word-spacing:-21.927456px;}
.ws4_c00157{word-spacing:-21.714912px;}
.ws1_c00157{word-spacing:-17.910227px;}
.ws8_c00157{word-spacing:-17.739827px;}
.ws3_c00157{word-spacing:-17.685056px;}
.ws5_c00157{word-spacing:-17.630284px;}
.wsb_c00157{word-spacing:-17.520742px;}
.ws9_c00157{word-spacing:-17.411199px;}
.ws7_c00157{word-spacing:-17.246885px;}
.ws6_c00157{word-spacing:-16.962192px;}
.wsa_c00157{word-spacing:-16.944480px;}
.ws2_c00157{word-spacing:-16.731936px;}
.wsc_c00157{word-spacing:0.000000px;}
._13_c00157{margin-left:-210.869640px;}
._5_c00157{margin-left:-92.305056px;}
._4_c00157{margin-left:-91.275840px;}
._21_c00157{margin-left:-18.656640px;}
._18_c00157{margin-left:-9.328320px;}
._17_c00157{margin-left:-8.265600px;}
._1e_c00157{margin-left:-4.695022px;}
._12_c00157{margin-left:-2.921138px;}
._6_c00157{margin-left:-1.003680px;}
._1_c00157{width:1.062720px;}
._11_c00157{width:2.538720px;}
._1d_c00157{width:4.487040px;}
._0_c00157{width:5.976000px;}
._16_c00157{width:8.206560px;}
._10_c00157{width:9.377088px;}
._c_c00157{width:10.691376px;}
._1c_c00157{width:15.291360px;}
._7_c00157{width:35.373192px;}
._8_c00157{width:36.769104px;}
._1a_c00157{width:55.014763px;}
._d_c00157{width:61.283520px;}
._e_c00157{width:62.918712px;}
._1b_c00157{width:64.017288px;}
._19_c00157{width:79.290720px;}
._14_c00157{width:96.763152px;}
._15_c00157{width:98.006400px;}
._20_c00157{width:99.783360px;}
._f_c00157{width:102.325200px;}
._2_c00157{width:106.740912px;}
._3_c00157{width:107.984160px;}
._a_c00157{width:120.394080px;}
._b_c00157{width:121.563360px;}
._1f_c00157{width:137.014392px;}
._9_c00157{width:173.607480px;}
.fc0_c00157{color:rgb(0,0,0);}
.fs2_c00157{font-size:59.040000px;}
.fs4_c00157{font-size:60.000000px;}
.fs3_c00157{font-size:60.857039px;}
.fs0_c00157{font-size:72.000000px;}
.fs1_c00157{font-size:74.215901px;}
.y0_c00157{bottom:0.000000px;}
.y3a_c00157{bottom:3.120150px;}
.y39_c00157{bottom:34.744500px;}
.y1_c00157{bottom:54.000000px;}
.y38_c00157{bottom:208.485000px;}
.y37_c00157{bottom:226.125000px;}
.y36_c00157{bottom:243.765000px;}
.y35_c00157{bottom:261.045000px;}
.y34_c00157{bottom:278.685000px;}
.y33_c00157{bottom:296.325000px;}
.y32_c00157{bottom:313.605000px;}
.y31_c00157{bottom:331.245000px;}
.y30_c00157{bottom:348.525000px;}
.y2f_c00157{bottom:366.165000px;}
.y2e_c00157{bottom:383.805000px;}
.y2d_c00157{bottom:401.805000px;}
.y2c_c00157{bottom:419.445000px;}
.y2b_c00157{bottom:437.085000px;}
.y2a_c00157{bottom:454.725000px;}
.y29_c00157{bottom:472.005000px;}
.y28_c00157{bottom:489.645000px;}
.y27_c00157{bottom:507.285000px;}
.y26_c00157{bottom:524.565000px;}
.y25_c00157{bottom:542.205000px;}
.y24_c00157{bottom:559.485000px;}
.y23_c00157{bottom:577.125000px;}
.y22_c00157{bottom:594.765000px;}
.y21_c00157{bottom:612.765000px;}
.y20_c00157{bottom:630.405000px;}
.y1f_c00157{bottom:648.045000px;}
.y1e_c00157{bottom:665.685000px;}
.y1d_c00157{bottom:682.965000px;}
.y1c_c00157{bottom:700.605000px;}
.y1b_c00157{bottom:717.885000px;}
.y16_c00157{bottom:734.805000px;}
.y1a_c00157{bottom:735.525000px;}
.y15_c00157{bottom:752.445000px;}
.y19_c00157{bottom:753.165000px;}
.y14_c00157{bottom:769.725000px;}
.y18_c00157{bottom:770.445000px;}
.y13_c00157{bottom:787.725000px;}
.y17_c00157{bottom:788.085000px;}
.y12_c00157{bottom:805.725000px;}
.y11_c00157{bottom:823.725000px;}
.y10_c00157{bottom:841.365000px;}
.yf_c00157{bottom:859.005000px;}
.ye_c00157{bottom:876.645000px;}
.yd_c00157{bottom:893.925000px;}
.yc_c00157{bottom:911.565000px;}
.yb_c00157{bottom:928.845000px;}
.ya_c00157{bottom:946.485000px;}
.y9_c00157{bottom:964.125000px;}
.y8_c00157{bottom:981.405000px;}
.y7_c00157{bottom:999.045000px;}
.y6_c00157{bottom:1016.685000px;}
.y5_c00157{bottom:1033.965000px;}
.y4_c00157{bottom:1051.604850px;}
.y3_c00157{bottom:1085.085000px;}
.y2_c00157{bottom:1138.365000px;}
.h8_c00157{height:19.255500px;}
.h7_c00157{height:39.350391px;}
.h9_c00157{height:46.320000px;}
.h5_c00157{height:53.490240px;}
.h6_c00157{height:55.136477px;}
.h3_c00157{height:65.232000px;}
.h4_c00157{height:67.239607px;}
.h2_c00157{height:1201.365000px;}
.h0_c00157{height:1262.835000px;}
.h1_c00157{height:1263.000000px;}
.w7_c00157{width:25.020000px;}
.w3_c00157{width:50.760000px;}
.w4_c00157{width:105.120000px;}
.w6_c00157{width:244.440000px;}
.w5_c00157{width:250.560000px;}
.w2_c00157{width:863.955000px;}
.w0_c00157{width:892.935000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x6_c00157{left:7.920150px;}
.xb_c00157{left:12.554700px;}
.x1_c00157{left:14.490000px;}
.x2c_c00157{left:37.933800px;}
.x2f_c00157{left:41.278500px;}
.x8_c00157{left:44.593800px;}
.x29_c00157{left:47.054100px;}
.x22_c00157{left:48.764100px;}
.x11_c00157{left:50.909100px;}
.x9_c00157{left:52.093650px;}
.x1b_c00157{left:53.758200px;}
.x23_c00157{left:55.438650px;}
.x24_c00157{left:60.433050px;}
.xc_c00157{left:65.053200px;}
.xd_c00157{left:77.562600px;}
.x30_c00157{left:78.792750px;}
.x2a_c00157{left:80.412600px;}
.x1f_c00157{left:86.715750px;}
.x1c_c00157{left:88.722450px;}
.x27_c00157{left:96.488100px;}
.x12_c00157{left:99.177600px;}
.x18_c00157{left:108.063600px;}
.x2_c00157{left:113.040150px;}
.xf_c00157{left:115.860300px;}
.x2b_c00157{left:117.926850px;}
.x5_c00157{left:119.610000px;}
.xe_c00157{left:129.221100px;}
.x2d_c00157{left:132.112650px;}
.x28_c00157{left:139.837200px;}
.x1d_c00157{left:143.252850px;}
.x20_c00157{left:145.861050px;}
.x10_c00157{left:152.534850px;}
.x19_c00157{left:156.535050px;}
.x3_c00157{left:161.513700px;}
.x16_c00157{left:166.734750px;}
.x2e_c00157{left:167.947200px;}
.x7_c00157{left:171.090000px;}
.x25_c00157{left:174.772350px;}
.x1e_c00157{left:186.602100px;}
.x14_c00157{left:196.740900px;}
.x1a_c00157{left:199.230750px;}
.x26_c00157{left:200.910600px;}
.x17_c00157{left:215.074950px;}
.x4_c00157{left:225.970050px;}
.x15_c00157{left:232.575300px;}
.x21_c00157{left:236.745150px;}
.xa_c00157{left:276.930000px;}
.x13_c00157{left:528.210000px;}
.x31_c00157{left:759.915000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls15_c00157{letter-spacing:0.000000pt;}
.ls17_c00157{letter-spacing:0.215168pt;}
.ls2_c00157{letter-spacing:0.236160pt;}
.ls27_c00157{letter-spacing:0.243428pt;}
.ls6_c00157{letter-spacing:0.283093pt;}
.ls1b_c00157{letter-spacing:0.283392pt;}
.ls24_c00157{letter-spacing:0.292114pt;}
.ls4_c00157{letter-spacing:0.310293pt;}
.ls21_c00157{letter-spacing:0.330624pt;}
.ls16_c00157{letter-spacing:0.438171pt;}
.ls11_c00157{letter-spacing:0.439798pt;}
.ls8_c00157{letter-spacing:0.472320pt;}
.ls10_c00157{letter-spacing:0.486856pt;}
.lsf_c00157{letter-spacing:0.487956pt;}
.ls9_c00157{letter-spacing:0.488064pt;}
.ls12_c00157{letter-spacing:0.498560pt;}
.ls1a_c00157{letter-spacing:0.519552pt;}
.ls29_c00157{letter-spacing:0.535542pt;}
.lsc_c00157{letter-spacing:0.536883pt;}
.lsa_c00157{letter-spacing:0.585261pt;}
.ls20_c00157{letter-spacing:0.614016pt;}
.ls25_c00157{letter-spacing:0.619264pt;}
.ls7_c00157{letter-spacing:0.632913pt;}
.lse_c00157{letter-spacing:0.634189pt;}
.lsb_c00157{letter-spacing:0.635948pt;}
.ls19_c00157{letter-spacing:0.661248pt;}
.ls1c_c00157{letter-spacing:0.681599pt;}
.ls23_c00157{letter-spacing:0.730284pt;}
.ls1_c00157{letter-spacing:0.881751pt;}
.ls2a_c00157{letter-spacing:1.228032pt;}
.ls22_c00157{letter-spacing:3.251118pt;}
.ls28_c00157{letter-spacing:3.726080pt;}
.ls1d_c00157{letter-spacing:4.665472pt;}
.ls1f_c00157{letter-spacing:4.712704pt;}
.ls5_c00157{letter-spacing:4.900587pt;}
.ls0_c00157{letter-spacing:4.901632pt;}
.ls3_c00157{letter-spacing:5.041707pt;}
.ls1e_c00157{letter-spacing:5.137792pt;}
.ls13_c00157{letter-spacing:5.312000pt;}
.ls14_c00157{letter-spacing:5.475484pt;}
.ls26_c00157{letter-spacing:7.835264pt;}
.ls2b_c00157{letter-spacing:17.029760pt;}
.ls18_c00157{letter-spacing:86.056704pt;}
.lsd_c00157{letter-spacing:187.656061pt;}
.ws0_c00157{word-spacing:-19.491072pt;}
.ws4_c00157{word-spacing:-19.302144pt;}
.ws1_c00157{word-spacing:-15.920201pt;}
.ws8_c00157{word-spacing:-15.768735pt;}
.ws3_c00157{word-spacing:-15.720049pt;}
.ws5_c00157{word-spacing:-15.671364pt;}
.wsb_c00157{word-spacing:-15.573992pt;}
.ws9_c00157{word-spacing:-15.476621pt;}
.ws7_c00157{word-spacing:-15.330564pt;}
.ws6_c00157{word-spacing:-15.077504pt;}
.wsa_c00157{word-spacing:-15.061760pt;}
.ws2_c00157{word-spacing:-14.872832pt;}
.wsc_c00157{word-spacing:0.000000pt;}
._13_c00157{margin-left:-187.439680pt;}
._5_c00157{margin-left:-82.048939pt;}
._4_c00157{margin-left:-81.134080pt;}
._21_c00157{margin-left:-16.583680pt;}
._18_c00157{margin-left:-8.291840pt;}
._17_c00157{margin-left:-7.347200pt;}
._1e_c00157{margin-left:-4.173353pt;}
._12_c00157{margin-left:-2.596567pt;}
._6_c00157{margin-left:-0.892160pt;}
._1_c00157{width:0.944640pt;}
._11_c00157{width:2.256640pt;}
._1d_c00157{width:3.988480pt;}
._0_c00157{width:5.312000pt;}
._16_c00157{width:7.294720pt;}
._10_c00157{width:8.335189pt;}
._c_c00157{width:9.503445pt;}
._1c_c00157{width:13.592320pt;}
._7_c00157{width:31.442837pt;}
._8_c00157{width:32.683648pt;}
._1a_c00157{width:48.902012pt;}
._d_c00157{width:54.474240pt;}
._e_c00157{width:55.927744pt;}
._1b_c00157{width:56.904256pt;}
._19_c00157{width:70.480640pt;}
._14_c00157{width:86.011691pt;}
._15_c00157{width:87.116800pt;}
._20_c00157{width:88.696320pt;}
._f_c00157{width:90.955733pt;}
._2_c00157{width:94.880811pt;}
._3_c00157{width:95.985920pt;}
._a_c00157{width:107.016960pt;}
._b_c00157{width:108.056320pt;}
._1f_c00157{width:121.790571pt;}
._9_c00157{width:154.317760pt;}
.fs2_c00157{font-size:52.480000pt;}
.fs4_c00157{font-size:53.333333pt;}
.fs3_c00157{font-size:54.095146pt;}
.fs0_c00157{font-size:64.000000pt;}
.fs1_c00157{font-size:65.969690pt;}
.y0_c00157{bottom:0.000000pt;}
.y3a_c00157{bottom:2.773467pt;}
.y39_c00157{bottom:30.884000pt;}
.y1_c00157{bottom:48.000000pt;}
.y38_c00157{bottom:185.320000pt;}
.y37_c00157{bottom:201.000000pt;}
.y36_c00157{bottom:216.680000pt;}
.y35_c00157{bottom:232.040000pt;}
.y34_c00157{bottom:247.720000pt;}
.y33_c00157{bottom:263.400000pt;}
.y32_c00157{bottom:278.760000pt;}
.y31_c00157{bottom:294.440000pt;}
.y30_c00157{bottom:309.800000pt;}
.y2f_c00157{bottom:325.480000pt;}
.y2e_c00157{bottom:341.160000pt;}
.y2d_c00157{bottom:357.160000pt;}
.y2c_c00157{bottom:372.840000pt;}
.y2b_c00157{bottom:388.520000pt;}
.y2a_c00157{bottom:404.200000pt;}
.y29_c00157{bottom:419.560000pt;}
.y28_c00157{bottom:435.240000pt;}
.y27_c00157{bottom:450.920000pt;}
.y26_c00157{bottom:466.280000pt;}
.y25_c00157{bottom:481.960000pt;}
.y24_c00157{bottom:497.320000pt;}
.y23_c00157{bottom:513.000000pt;}
.y22_c00157{bottom:528.680000pt;}
.y21_c00157{bottom:544.680000pt;}
.y20_c00157{bottom:560.360000pt;}
.y1f_c00157{bottom:576.040000pt;}
.y1e_c00157{bottom:591.720000pt;}
.y1d_c00157{bottom:607.080000pt;}
.y1c_c00157{bottom:622.760000pt;}
.y1b_c00157{bottom:638.120000pt;}
.y16_c00157{bottom:653.160000pt;}
.y1a_c00157{bottom:653.800000pt;}
.y15_c00157{bottom:668.840000pt;}
.y19_c00157{bottom:669.480000pt;}
.y14_c00157{bottom:684.200000pt;}
.y18_c00157{bottom:684.840000pt;}
.y13_c00157{bottom:700.200000pt;}
.y17_c00157{bottom:700.520000pt;}
.y12_c00157{bottom:716.200000pt;}
.y11_c00157{bottom:732.200000pt;}
.y10_c00157{bottom:747.880000pt;}
.yf_c00157{bottom:763.560000pt;}
.ye_c00157{bottom:779.240000pt;}
.yd_c00157{bottom:794.600000pt;}
.yc_c00157{bottom:810.280000pt;}
.yb_c00157{bottom:825.640000pt;}
.ya_c00157{bottom:841.320000pt;}
.y9_c00157{bottom:857.000000pt;}
.y8_c00157{bottom:872.360000pt;}
.y7_c00157{bottom:888.040000pt;}
.y6_c00157{bottom:903.720000pt;}
.y5_c00157{bottom:919.080000pt;}
.y4_c00157{bottom:934.759867pt;}
.y3_c00157{bottom:964.520000pt;}
.y2_c00157{bottom:1011.880000pt;}
.h8_c00157{height:17.116000pt;}
.h7_c00157{height:34.978125pt;}
.h9_c00157{height:41.173333pt;}
.h5_c00157{height:47.546880pt;}
.h6_c00157{height:49.010202pt;}
.h3_c00157{height:57.984000pt;}
.h4_c00157{height:59.768539pt;}
.h2_c00157{height:1067.880000pt;}
.h0_c00157{height:1122.520000pt;}
.h1_c00157{height:1122.666667pt;}
.w7_c00157{width:22.240000pt;}
.w3_c00157{width:45.120000pt;}
.w4_c00157{width:93.440000pt;}
.w6_c00157{width:217.280000pt;}
.w5_c00157{width:222.720000pt;}
.w2_c00157{width:767.960000pt;}
.w0_c00157{width:793.720000pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x6_c00157{left:7.040133pt;}
.xb_c00157{left:11.159733pt;}
.x1_c00157{left:12.880000pt;}
.x2c_c00157{left:33.718933pt;}
.x2f_c00157{left:36.692000pt;}
.x8_c00157{left:39.638933pt;}
.x29_c00157{left:41.825867pt;}
.x22_c00157{left:43.345867pt;}
.x11_c00157{left:45.252533pt;}
.x9_c00157{left:46.305467pt;}
.x1b_c00157{left:47.785067pt;}
.x23_c00157{left:49.278800pt;}
.x24_c00157{left:53.718267pt;}
.xc_c00157{left:57.825067pt;}
.xd_c00157{left:68.944533pt;}
.x30_c00157{left:70.038000pt;}
.x2a_c00157{left:71.477867pt;}
.x1f_c00157{left:77.080667pt;}
.x1c_c00157{left:78.864400pt;}
.x27_c00157{left:85.767200pt;}
.x12_c00157{left:88.157867pt;}
.x18_c00157{left:96.056533pt;}
.x2_c00157{left:100.480133pt;}
.xf_c00157{left:102.986933pt;}
.x2b_c00157{left:104.823867pt;}
.x5_c00157{left:106.320000pt;}
.xe_c00157{left:114.863200pt;}
.x2d_c00157{left:117.433467pt;}
.x28_c00157{left:124.299733pt;}
.x1d_c00157{left:127.335867pt;}
.x20_c00157{left:129.654267pt;}
.x10_c00157{left:135.586533pt;}
.x19_c00157{left:139.142267pt;}
.x3_c00157{left:143.567733pt;}
.x16_c00157{left:148.208667pt;}
.x2e_c00157{left:149.286400pt;}
.x7_c00157{left:152.080000pt;}
.x25_c00157{left:155.353200pt;}
.x1e_c00157{left:165.868533pt;}
.x14_c00157{left:174.880800pt;}
.x1a_c00157{left:177.094000pt;}
.x26_c00157{left:178.587200pt;}
.x17_c00157{left:191.177733pt;}
.x4_c00157{left:200.862267pt;}
.x15_c00157{left:206.733600pt;}
.x21_c00157{left:210.440133pt;}
.xa_c00157{left:246.160000pt;}
.x13_c00157{left:469.520000pt;}
.x31_c00157{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b3d83adf80c8c89f4c8c2c99.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.134000;font-style:normal;font-weight:normal;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_58027973eb1a8df18e000365.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_9bdc71772ca9cd0e440d0b3d.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_08ddd55d09acdb30d699ff2f.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_ce9ceecb9bcb21c7c28bcc87.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00158;src:url('chunks/assets/font_c7d08c17201e9ea66830b4a0.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;line-height:0.787000;font-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_c00158{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.v1_c00158{vertical-align:24.495240px;}
.ls15_c00158{letter-spacing:0.000000px;}
.lsc_c00158{letter-spacing:0.236160px;}
.ls3_c00158{letter-spacing:0.265680px;}
.lsd_c00158{letter-spacing:0.295200px;}
.ls5_c00158{letter-spacing:0.318480px;}
.ls1a_c00158{letter-spacing:0.318816px;}
.ls19_c00158{letter-spacing:0.328628px;}
.ls10_c00158{letter-spacing:0.330624px;}
.ls9_c00158{letter-spacing:0.349680px;}
.ls22_c00158{letter-spacing:0.371952px;}
.ls26_c00158{letter-spacing:0.425088px;}
.ls1c_c00158{letter-spacing:0.492942px;}
.ls0_c00158{letter-spacing:0.494773px;}
.ls2_c00158{letter-spacing:0.531360px;}
.ls16_c00158{letter-spacing:0.547713px;}
.lse_c00158{letter-spacing:0.549072px;}
.lsb_c00158{letter-spacing:0.560880px;}
.ls1b_c00158{letter-spacing:0.584496px;}
.ls28_c00158{letter-spacing:0.637632px;}
.ls23_c00158{letter-spacing:0.690768px;}
.ls17_c00158{letter-spacing:0.696672px;}
.ls1_c00158{letter-spacing:0.712027px;}
.ls18_c00158{letter-spacing:0.743904px;}
.ls1d_c00158{letter-spacing:0.766799px;}
.ls25_c00158{letter-spacing:0.821570px;}
.ls21_c00158{letter-spacing:0.962352px;}
.ls7_c00158{letter-spacing:0.991970px;}
.ls11_c00158{letter-spacing:2.361600px;}
.lsf_c00158{letter-spacing:5.077440px;}
.ls1e_c00158{letter-spacing:5.248656px;}
.ls20_c00158{letter-spacing:5.301792px;}
.ls29_c00158{letter-spacing:5.430672px;}
.lsa_c00158{letter-spacing:5.513160px;}
.ls6_c00158{letter-spacing:5.514336px;}
.ls4_c00158{letter-spacing:5.543856px;}
.ls8_c00158{letter-spacing:5.671920px;}
.ls1f_c00158{letter-spacing:5.780016px;}
.ls12_c00158{letter-spacing:5.975400px;}
.ls13_c00158{letter-spacing:5.976000px;}
.ls14_c00158{letter-spacing:6.159920px;}
.ls27_c00158{letter-spacing:12.061872px;}
.ls24_c00158{letter-spacing:14.281776px;}
.sc__c00158{text-shadow:none;}
.sc1_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00158{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc1_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00158{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00158{word-spacing:-21.927456px;}
.ws7_c00158{word-spacing:-21.714912px;}
.wsc_c00158{word-spacing:-21.043152px;}
.ws5_c00158{word-spacing:-17.910227px;}
.ws8_c00158{word-spacing:-17.739827px;}
.ws6_c00158{word-spacing:-17.685056px;}
.ws1_c00158{word-spacing:-17.630284px;}
.ws2_c00158{word-spacing:-17.465970px;}
.wsb_c00158{word-spacing:-17.375472px;}
.ws9_c00158{word-spacing:-17.157024px;}
.ws0_c00158{word-spacing:-16.944480px;}
.ws3_c00158{word-spacing:-16.731936px;}
.wsa_c00158{word-spacing:-10.008000px;}
.wsd_c00158{word-spacing:0.000000px;}
._14_c00158{margin-left:-13.756320px;}
._16_c00158{margin-left:-11.743824px;}
._17_c00158{margin-left:-10.658016px;}
._1_c00158{margin-left:-1.298880px;}
._7_c00158{width:1.298880px;}
._1a_c00158{width:2.692224px;}
._18_c00158{width:3.695904px;}
._10_c00158{width:4.782240px;}
._0_c00158{width:5.976000px;}
._19_c00158{width:6.986880px;}
._b_c00158{width:8.463528px;}
._c_c00158{width:9.469848px;}
._f_c00158{width:10.986576px;}
._15_c00158{width:12.111408px;}
._13_c00158{width:13.461120px;}
._1b_c00158{width:21.745259px;}
._11_c00158{width:40.436400px;}
._9_c00158{width:47.827080px;}
._a_c00158{width:49.781058px;}
._4_c00158{width:56.796480px;}
._d_c00158{width:59.921640px;}
._e_c00158{width:61.022760px;}
._12_c00158{width:64.176480px;}
._3_c00158{width:71.202736px;}
._5_c00158{width:73.504800px;}
._2_c00158{width:83.010240px;}
._6_c00158{width:96.763152px;}
._8_c00158{width:97.770240px;}
.fc1_c00158{color:rgb(38,38,38);}
.fc0_c00158{color:rgb(0,0,0);}
.fs4_c00158{font-size:36.000000px;}
.fs5_c00158{font-size:56.160000px;}
.fs2_c00158{font-size:59.040000px;}
.fs6_c00158{font-size:60.000000px;}
.fs3_c00158{font-size:60.857039px;}
.fs0_c00158{font-size:72.000000px;}
.fs1_c00158{font-size:74.215901px;}
.y0_c00158{bottom:0.000000px;}
.y3e_c00158{bottom:3.120150px;}
.y3d_c00158{bottom:34.744500px;}
.y1_c00158{bottom:54.000000px;}
.y3c_c00158{bottom:67.005000px;}
.y3b_c00158{bottom:88.245000px;}
.y3a_c00158{bottom:109.125000px;}
.y39_c00158{bottom:130.005000px;}
.y38_c00158{bottom:151.245000px;}
.y37_c00158{bottom:172.125000px;}
.y36_c00158{bottom:208.125000px;}
.y35_c00158{bottom:229.005000px;}
.y34_c00158{bottom:250.245000px;}
.y33_c00158{bottom:271.125000px;}
.y32_c00158{bottom:307.125000px;}
.y31_c00158{bottom:328.365000px;}
.y30_c00158{bottom:349.245000px;}
.y2f_c00158{bottom:370.125000px;}
.y2e_c00158{bottom:391.365000px;}
.y2d_c00158{bottom:427.365000px;}
.y2c_c00158{bottom:448.245000px;}
.y2b_c00158{bottom:469.125000px;}
.y2a_c00158{bottom:490.365000px;}
.y29_c00158{bottom:511.245000px;}
.y28_c00158{bottom:532.125000px;}
.y27_c00158{bottom:553.365000px;}
.y26_c00158{bottom:574.245000px;}
.y25_c00158{bottom:610.245000px;}
.y24_c00158{bottom:646.245000px;}
.y23_c00158{bottom:667.122480px;}
.y22_c00158{bottom:684.406440px;}
.y21_c00158{bottom:702.044640px;}
.y20_c00158{bottom:719.682840px;}
.y1f_c00158{bottom:736.966800px;}
.y1e_c00158{bottom:754.605000px;}
.y1d_c00158{bottom:787.005000px;}
.y1c_c00158{bottom:787.006800px;}
.y1a_c00158{bottom:804.641040px;}
.y1b_c00158{bottom:804.645000px;}
.y19_c00158{bottom:821.925000px;}
.y18_c00158{bottom:854.685000px;}
.y17_c00158{bottom:876.285000px;}
.yd_c00158{bottom:893.565000px;}
.y16_c00158{bottom:893.925000px;}
.yc_c00158{bottom:911.205000px;}
.y15_c00158{bottom:911.565000px;}
.yb_c00158{bottom:928.485000px;}
.y14_c00158{bottom:928.845000px;}
.ya_c00158{bottom:946.125000px;}
.y13_c00158{bottom:946.485000px;}
.y9_c00158{bottom:963.764850px;}
.y12_c00158{bottom:964.125000px;}
.y8_c00158{bottom:981.045000px;}
.y11_c00158{bottom:981.405000px;}
.y7_c00158{bottom:998.685000px;}
.y10_c00158{bottom:999.045000px;}
.y6_c00158{bottom:1015.965000px;}
.yf_c00158{bottom:1016.685000px;}
.y5_c00158{bottom:1033.604850px;}
.ye_c00158{bottom:1033.965000px;}
.y4_c00158{bottom:1051.604850px;}
.y3_c00158{bottom:1085.085000px;}
.y2_c00158{bottom:1138.365000px;}
.h8_c00158{height:19.255500px;}
.h9_c00158{height:46.320000px;}
.h5_c00158{height:53.490240px;}
.h6_c00158{height:55.136477px;}
.h7_c00158{height:57.111240px;}
.h3_c00158{height:65.232000px;}
.h4_c00158{height:67.239607px;}
.h2_c00158{height:1201.365000px;}
.h0_c00158{height:1262.835000px;}
.h1_c00158{height:1263.000000px;}
.w7_c00158{width:25.020000px;}
.w3_c00158{width:50.760000px;}
.w4_c00158{width:105.120000px;}
.w6_c00158{width:244.440000px;}
.w5_c00158{width:250.560000px;}
.w2_c00158{width:863.955000px;}
.w0_c00158{width:892.935000px;}
.w1_c00158{width:893.250000px;}
.x0_c00158{left:0.000000px;}
.x6_c00158{left:7.920150px;}
.x8_c00158{left:12.914700px;}
.x1_c00158{left:14.490000px;}
.x14_c00158{left:20.054700px;}
.x1d_c00158{left:32.938800px;}
.xe_c00158{left:34.214250px;}
.x15_c00158{left:38.503650px;}
.x9_c00158{left:50.428500px;}
.xa_c00158{left:68.220600px;}
.x1e_c00158{left:72.072900px;}
.xc_c00158{left:77.097900px;}
.x16_c00158{left:81.852900px;}
.xb_c00158{left:93.225150px;}
.x1f_c00158{left:105.431400px;}
.x2_c00158{left:113.040150px;}
.x1b_c00158{left:114.920250px;}
.x5_c00158{left:119.610000px;}
.x2d_c00158{left:133.034550px;}
.xf_c00158{left:141.899700px;}
.x20_c00158{left:142.945650px;}
.x1c_c00158{left:158.269350px;}
.x3_c00158{left:161.513700px;}
.x7_c00158{left:171.090000px;}
.x18_c00158{left:174.772350px;}
.x3e_c00158{left:177.551100px;}
.x10_c00158{left:181.552650px;}
.x3a_c00158{left:195.552300px;}
.x19_c00158{left:200.910600px;}
.x11_c00158{left:202.065600px;}
.x38_c00158{left:211.753050px;}
.x2f_c00158{left:220.088700px;}
.x4_c00158{left:225.970050px;}
.x46_c00158{left:229.122750px;}
.x13_c00158{left:232.094850px;}
.x1a_c00158{left:236.745150px;}
.x12_c00158{left:238.740150px;}
.x3b_c00158{left:253.565100px;}
.x41_c00158{left:254.631300px;}
.x2e_c00158{left:257.254050px;}
.x42_c00158{left:259.791900px;}
.x37_c00158{left:263.592450px;}
.x39_c00158{left:265.752300px;}
.x43_c00158{left:268.791900px;}
.xd_c00158{left:276.930000px;}
.x44_c00158{left:280.739850px;}
.x3f_c00158{left:287.997450px;}
.x30_c00158{left:310.144050px;}
.x3c_c00158{left:336.208050px;}
.x23_c00158{left:337.356000px;}
.x45_c00158{left:359.737050px;}
.x3d_c00158{left:361.041900px;}
.x40_c00158{left:366.044250px;}
.x24_c00158{left:373.190550px;}
.x25_c00158{left:395.545950px;}
.x31_c00158{left:398.237550px;}
.x26_c00158{left:401.222100px;}
.x29_c00158{left:406.504350px;}
.x21_c00158{left:421.299000px;}
.x2a_c00158{left:445.638450px;}
.x49_c00158{left:458.444850px;}
.x22_c00158{left:465.091950px;}
.x36_c00158{left:502.139700px;}
.x2b_c00158{left:509.010900px;}
.x4a_c00158{left:521.461650px;}
.x17_c00158{left:528.210000px;}
.x2c_c00158{left:546.525150px;}
.x32_c00158{left:569.310000px;}
.x27_c00158{left:572.506050px;}
.x33_c00158{left:579.336900px;}
.x34_c00158{left:610.417950px;}
.x28_c00158{left:615.855150px;}
.x35_c00158{left:623.395800px;}
.x47_c00158{left:678.451950px;}
.x48_c00158{left:728.454750px;}
.x4b_c00158{left:759.915000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.v1_c00158{vertical-align:21.773547pt;}
.ls15_c00158{letter-spacing:0.000000pt;}
.lsc_c00158{letter-spacing:0.209920pt;}
.ls3_c00158{letter-spacing:0.236160pt;}
.lsd_c00158{letter-spacing:0.262400pt;}
.ls5_c00158{letter-spacing:0.283093pt;}
.ls1a_c00158{letter-spacing:0.283392pt;}
.ls19_c00158{letter-spacing:0.292114pt;}
.ls10_c00158{letter-spacing:0.293888pt;}
.ls9_c00158{letter-spacing:0.310827pt;}
.ls22_c00158{letter-spacing:0.330624pt;}
.ls26_c00158{letter-spacing:0.377856pt;}
.ls1c_c00158{letter-spacing:0.438171pt;}
.ls0_c00158{letter-spacing:0.439798pt;}
.ls2_c00158{letter-spacing:0.472320pt;}
.ls16_c00158{letter-spacing:0.486856pt;}
.lse_c00158{letter-spacing:0.488064pt;}
.lsb_c00158{letter-spacing:0.498560pt;}
.ls1b_c00158{letter-spacing:0.519552pt;}
.ls28_c00158{letter-spacing:0.566784pt;}
.ls23_c00158{letter-spacing:0.614016pt;}
.ls17_c00158{letter-spacing:0.619264pt;}
.ls1_c00158{letter-spacing:0.632913pt;}
.ls18_c00158{letter-spacing:0.661248pt;}
.ls1d_c00158{letter-spacing:0.681599pt;}
.ls25_c00158{letter-spacing:0.730284pt;}
.ls21_c00158{letter-spacing:0.855424pt;}
.ls7_c00158{letter-spacing:0.881751pt;}
.ls11_c00158{letter-spacing:2.099200pt;}
.lsf_c00158{letter-spacing:4.513280pt;}
.ls1e_c00158{letter-spacing:4.665472pt;}
.ls20_c00158{letter-spacing:4.712704pt;}
.ls29_c00158{letter-spacing:4.827264pt;}
.lsa_c00158{letter-spacing:4.900587pt;}
.ls6_c00158{letter-spacing:4.901632pt;}
.ls4_c00158{letter-spacing:4.927872pt;}
.ls8_c00158{letter-spacing:5.041707pt;}
.ls1f_c00158{letter-spacing:5.137792pt;}
.ls12_c00158{letter-spacing:5.311467pt;}
.ls13_c00158{letter-spacing:5.312000pt;}
.ls14_c00158{letter-spacing:5.475484pt;}
.ls27_c00158{letter-spacing:10.721664pt;}
.ls24_c00158{letter-spacing:12.694912pt;}
.ws4_c00158{word-spacing:-19.491072pt;}
.ws7_c00158{word-spacing:-19.302144pt;}
.wsc_c00158{word-spacing:-18.705024pt;}
.ws5_c00158{word-spacing:-15.920201pt;}
.ws8_c00158{word-spacing:-15.768735pt;}
.ws6_c00158{word-spacing:-15.720049pt;}
.ws1_c00158{word-spacing:-15.671364pt;}
.ws2_c00158{word-spacing:-15.525307pt;}
.wsb_c00158{word-spacing:-15.444864pt;}
.ws9_c00158{word-spacing:-15.250688pt;}
.ws0_c00158{word-spacing:-15.061760pt;}
.ws3_c00158{word-spacing:-14.872832pt;}
.wsa_c00158{word-spacing:-8.896000pt;}
.wsd_c00158{word-spacing:0.000000pt;}
._14_c00158{margin-left:-12.227840pt;}
._16_c00158{margin-left:-10.438955pt;}
._17_c00158{margin-left:-9.473792pt;}
._1_c00158{margin-left:-1.154560pt;}
._7_c00158{width:1.154560pt;}
._1a_c00158{width:2.393088pt;}
._18_c00158{width:3.285248pt;}
._10_c00158{width:4.250880pt;}
._0_c00158{width:5.312000pt;}
._19_c00158{width:6.210560pt;}
._b_c00158{width:7.523136pt;}
._c_c00158{width:8.417643pt;}
._f_c00158{width:9.765845pt;}
._15_c00158{width:10.765696pt;}
._13_c00158{width:11.965440pt;}
._1b_c00158{width:19.329119pt;}
._11_c00158{width:35.943467pt;}
._9_c00158{width:42.512960pt;}
._a_c00158{width:44.249829pt;}
._4_c00158{width:50.485760pt;}
._d_c00158{width:53.263680pt;}
._e_c00158{width:54.242453pt;}
._12_c00158{width:57.045760pt;}
._3_c00158{width:63.291321pt;}
._5_c00158{width:65.337600pt;}
._2_c00158{width:73.786880pt;}
._6_c00158{width:86.011691pt;}
._8_c00158{width:86.906880pt;}
.fs4_c00158{font-size:32.000000pt;}
.fs5_c00158{font-size:49.920000pt;}
.fs2_c00158{font-size:52.480000pt;}
.fs6_c00158{font-size:53.333333pt;}
.fs3_c00158{font-size:54.095146pt;}
.fs0_c00158{font-size:64.000000pt;}
.fs1_c00158{font-size:65.969690pt;}
.y0_c00158{bottom:0.000000pt;}
.y3e_c00158{bottom:2.773467pt;}
.y3d_c00158{bottom:30.884000pt;}
.y1_c00158{bottom:48.000000pt;}
.y3c_c00158{bottom:59.560000pt;}
.y3b_c00158{bottom:78.440000pt;}
.y3a_c00158{bottom:97.000000pt;}
.y39_c00158{bottom:115.560000pt;}
.y38_c00158{bottom:134.440000pt;}
.y37_c00158{bottom:153.000000pt;}
.y36_c00158{bottom:185.000000pt;}
.y35_c00158{bottom:203.560000pt;}
.y34_c00158{bottom:222.440000pt;}
.y33_c00158{bottom:241.000000pt;}
.y32_c00158{bottom:273.000000pt;}
.y31_c00158{bottom:291.880000pt;}
.y30_c00158{bottom:310.440000pt;}
.y2f_c00158{bottom:329.000000pt;}
.y2e_c00158{bottom:347.880000pt;}
.y2d_c00158{bottom:379.880000pt;}
.y2c_c00158{bottom:398.440000pt;}
.y2b_c00158{bottom:417.000000pt;}
.y2a_c00158{bottom:435.880000pt;}
.y29_c00158{bottom:454.440000pt;}
.y28_c00158{bottom:473.000000pt;}
.y27_c00158{bottom:491.880000pt;}
.y26_c00158{bottom:510.440000pt;}
.y25_c00158{bottom:542.440000pt;}
.y24_c00158{bottom:574.440000pt;}
.y23_c00158{bottom:592.997760pt;}
.y22_c00158{bottom:608.361280pt;}
.y21_c00158{bottom:624.039680pt;}
.y20_c00158{bottom:639.718080pt;}
.y1f_c00158{bottom:655.081600pt;}
.y1e_c00158{bottom:670.760000pt;}
.y1d_c00158{bottom:699.560000pt;}
.y1c_c00158{bottom:699.561600pt;}
.y1a_c00158{bottom:715.236480pt;}
.y1b_c00158{bottom:715.240000pt;}
.y19_c00158{bottom:730.600000pt;}
.y18_c00158{bottom:759.720000pt;}
.y17_c00158{bottom:778.920000pt;}
.yd_c00158{bottom:794.280000pt;}
.y16_c00158{bottom:794.600000pt;}
.yc_c00158{bottom:809.960000pt;}
.y15_c00158{bottom:810.280000pt;}
.yb_c00158{bottom:825.320000pt;}
.y14_c00158{bottom:825.640000pt;}
.ya_c00158{bottom:841.000000pt;}
.y13_c00158{bottom:841.320000pt;}
.y9_c00158{bottom:856.679867pt;}
.y12_c00158{bottom:857.000000pt;}
.y8_c00158{bottom:872.040000pt;}
.y11_c00158{bottom:872.360000pt;}
.y7_c00158{bottom:887.720000pt;}
.y10_c00158{bottom:888.040000pt;}
.y6_c00158{bottom:903.080000pt;}
.yf_c00158{bottom:903.720000pt;}
.y5_c00158{bottom:918.759867pt;}
.ye_c00158{bottom:919.080000pt;}
.y4_c00158{bottom:934.759867pt;}
.y3_c00158{bottom:964.520000pt;}
.y2_c00158{bottom:1011.880000pt;}
.h8_c00158{height:17.116000pt;}
.h9_c00158{height:41.173333pt;}
.h5_c00158{height:47.546880pt;}
.h6_c00158{height:49.010202pt;}
.h7_c00158{height:50.765547pt;}
.h3_c00158{height:57.984000pt;}
.h4_c00158{height:59.768539pt;}
.h2_c00158{height:1067.880000pt;}
.h0_c00158{height:1122.520000pt;}
.h1_c00158{height:1122.666667pt;}
.w7_c00158{width:22.240000pt;}
.w3_c00158{width:45.120000pt;}
.w4_c00158{width:93.440000pt;}
.w6_c00158{width:217.280000pt;}
.w5_c00158{width:222.720000pt;}
.w2_c00158{width:767.960000pt;}
.w0_c00158{width:793.720000pt;}
.w1_c00158{width:794.000000pt;}
.x0_c00158{left:0.000000pt;}
.x6_c00158{left:7.040133pt;}
.x8_c00158{left:11.479733pt;}
.x1_c00158{left:12.880000pt;}
.x14_c00158{left:17.826400pt;}
.x1d_c00158{left:29.278933pt;}
.xe_c00158{left:30.412667pt;}
.x15_c00158{left:34.225467pt;}
.x9_c00158{left:44.825333pt;}
.xa_c00158{left:60.640533pt;}
.x1e_c00158{left:64.064800pt;}
.xc_c00158{left:68.531467pt;}
.x16_c00158{left:72.758133pt;}
.xb_c00158{left:82.866800pt;}
.x1f_c00158{left:93.716800pt;}
.x2_c00158{left:100.480133pt;}
.x1b_c00158{left:102.151333pt;}
.x5_c00158{left:106.320000pt;}
.x2d_c00158{left:118.252933pt;}
.xf_c00158{left:126.133067pt;}
.x20_c00158{left:127.062800pt;}
.x1c_c00158{left:140.683867pt;}
.x3_c00158{left:143.567733pt;}
.x7_c00158{left:152.080000pt;}
.x18_c00158{left:155.353200pt;}
.x3e_c00158{left:157.823200pt;}
.x10_c00158{left:161.380133pt;}
.x3a_c00158{left:173.824267pt;}
.x19_c00158{left:178.587200pt;}
.x11_c00158{left:179.613867pt;}
.x38_c00158{left:188.224933pt;}
.x2f_c00158{left:195.634400pt;}
.x4_c00158{left:200.862267pt;}
.x46_c00158{left:203.664667pt;}
.x13_c00158{left:206.306533pt;}
.x1a_c00158{left:210.440133pt;}
.x12_c00158{left:212.213467pt;}
.x3b_c00158{left:225.391200pt;}
.x41_c00158{left:226.338933pt;}
.x2e_c00158{left:228.670267pt;}
.x42_c00158{left:230.926133pt;}
.x37_c00158{left:234.304400pt;}
.x39_c00158{left:236.224267pt;}
.x43_c00158{left:238.926133pt;}
.xd_c00158{left:246.160000pt;}
.x44_c00158{left:249.546533pt;}
.x3f_c00158{left:255.997733pt;}
.x30_c00158{left:275.683600pt;}
.x3c_c00158{left:298.851600pt;}
.x23_c00158{left:299.872000pt;}
.x45_c00158{left:319.766267pt;}
.x3d_c00158{left:320.926133pt;}
.x40_c00158{left:325.372667pt;}
.x24_c00158{left:331.724933pt;}
.x25_c00158{left:351.596400pt;}
.x31_c00158{left:353.988933pt;}
.x26_c00158{left:356.641867pt;}
.x29_c00158{left:361.337200pt;}
.x21_c00158{left:374.488000pt;}
.x2a_c00158{left:396.123067pt;}
.x49_c00158{left:407.506533pt;}
.x22_c00158{left:413.415067pt;}
.x36_c00158{left:446.346400pt;}
.x2b_c00158{left:452.454133pt;}
.x4a_c00158{left:463.521467pt;}
.x17_c00158{left:469.520000pt;}
.x2c_c00158{left:485.800133pt;}
.x32_c00158{left:506.053333pt;}
.x27_c00158{left:508.894267pt;}
.x33_c00158{left:514.966133pt;}
.x34_c00158{left:542.593733pt;}
.x28_c00158{left:547.426800pt;}
.x35_c00158{left:554.129600pt;}
.x47_c00158{left:603.068400pt;}
.x48_c00158{left:647.515333pt;}
.x4b_c00158{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ca67e8e509f2b926afec8144.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.134000;font-style:normal;font-weight:normal;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_24f185019cfdc0ac104a5398.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_948bf1ae371c70a6a343e16c.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00159;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00159;src:url('chunks/assets/font_c43edf3256e811427a5d56c8.woff2')format("woff");}.ff6_c00159{font-family:ff6_c00159;line-height:0.787000;font-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_c00159{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00159{vertical-align:-24.480000px;}
.v0_c00159{vertical-align:0.000000px;}
.v1_c00159{vertical-align:30.240000px;}
.ls4_c00159{letter-spacing:-0.179568px;}
.ls3_c00159{letter-spacing:0.000000px;}
.ls6_c00159{letter-spacing:0.144000px;}
.ls9_c00159{letter-spacing:0.265680px;}
.ls8_c00159{letter-spacing:0.531360px;}
.ls7_c00159{letter-spacing:0.712027px;}
.ls5_c00159{letter-spacing:2.469600px;}
.ls1_c00159{letter-spacing:5.976000px;}
.ls2_c00159{letter-spacing:6.159920px;}
.ls0_c00159{letter-spacing:24.480000px;}
.sc__c00159{text-shadow:none;}
.sc1_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00159{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc1_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00159{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00159{word-spacing:-11.429712px;}
.ws1_c00159{word-spacing:-10.152000px;}
.ws2_c00159{word-spacing:0.000000px;}
._a_c00159{margin-left:-2.491200px;}
._10_c00159{margin-left:-1.074000px;}
._4_c00159{width:1.080000px;}
._1_c00159{width:2.880000px;}
._5_c00159{width:4.392000px;}
._0_c00159{width:5.976000px;}
._7_c00159{width:7.272000px;}
._e_c00159{width:8.568000px;}
._9_c00159{width:10.944000px;}
._b_c00159{width:12.839351px;}
._c_c00159{width:14.664649px;}
._6_c00159{width:16.128000px;}
._3_c00159{width:17.934513px;}
._2_c00159{width:19.073487px;}
._8_c00159{width:25.704000px;}
._d_c00159{width:28.276258px;}
._f_c00159{width:47.736000px;}
.fc0_c00159{color:rgb(0,0,0);}
.fs3_c00159{font-size:36.000000px;}
.fs2_c00159{font-size:41.760000px;}
.fs4_c00159{font-size:59.040000px;}
.fs6_c00159{font-size:60.000000px;}
.fs5_c00159{font-size:60.857039px;}
.fs0_c00159{font-size:72.000000px;}
.fs1_c00159{font-size:74.215901px;}
.y0_c00159{bottom:0.000000px;}
.y32_c00159{bottom:3.120150px;}
.y31_c00159{bottom:34.744500px;}
.y1_c00159{bottom:54.000000px;}
.y30_c00159{bottom:61.605000px;}
.y2f_c00159{bottom:78.885000px;}
.y2e_c00159{bottom:90.405000px;}
.y2d_c00159{bottom:96.525000px;}
.y2c_c00159{bottom:123.165000px;}
.y2b_c00159{bottom:167.445000px;}
.y2a_c00159{bottom:190.485000px;}
.y29_c00159{bottom:211.005000px;}
.y28_c00159{bottom:232.965000px;}
.y27_c00159{bottom:253.485000px;}
.y26_c00159{bottom:274.725000px;}
.y25_c00159{bottom:295.605000px;}
.y24_c00159{bottom:316.485000px;}
.y23_c00159{bottom:352.485000px;}
.y22_c00159{bottom:374.085000px;}
.y21_c00159{bottom:394.965000px;}
.y20_c00159{bottom:415.845000px;}
.y1f_c00159{bottom:436.725000px;}
.y1e_c00159{bottom:457.965000px;}
.y1d_c00159{bottom:478.845000px;}
.y1c_c00159{bottom:499.725000px;}
.y1b_c00159{bottom:520.965000px;}
.y1a_c00159{bottom:541.845000px;}
.y19_c00159{bottom:562.725000px;}
.y18_c00159{bottom:583.965000px;}
.y17_c00159{bottom:619.965000px;}
.y16_c00159{bottom:640.845000px;}
.y15_c00159{bottom:661.725000px;}
.y14_c00159{bottom:682.965000px;}
.y13_c00159{bottom:703.845000px;}
.y12_c00159{bottom:725.085000px;}
.y11_c00159{bottom:745.965000px;}
.y10_c00159{bottom:781.965000px;}
.yf_c00159{bottom:802.845000px;}
.ye_c00159{bottom:824.085000px;}
.yd_c00159{bottom:860.085000px;}
.yc_c00159{bottom:880.965000px;}
.yb_c00159{bottom:901.845000px;}
.ya_c00159{bottom:923.085000px;}
.y9_c00159{bottom:943.965000px;}
.y8_c00159{bottom:964.845000px;}
.y7_c00159{bottom:986.085000px;}
.y6_c00159{bottom:1006.965000px;}
.y5_c00159{bottom:1027.845000px;}
.y4_c00159{bottom:1063.845000px;}
.y3_c00159{bottom:1085.085000px;}
.y2_c00159{bottom:1138.365000px;}
.ha_c00159{height:19.255500px;}
.h7_c00159{height:32.616000px;}
.hb_c00159{height:46.320000px;}
.h6_c00159{height:47.988281px;}
.h9_c00159{height:53.490240px;}
.h8_c00159{height:55.136477px;}
.h3_c00159{height:65.232000px;}
.h4_c00159{height:67.239607px;}
.h5_c00159{height:68.074560px;}
.h2_c00159{height:1201.365000px;}
.h0_c00159{height:1262.835000px;}
.h1_c00159{height:1263.000000px;}
.w3_c00159{width:25.020000px;}
.w2_c00159{width:863.955000px;}
.w0_c00159{width:892.935000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x1_c00159{left:14.490000px;}
.x2_c00159{left:113.040150px;}
.x3c_c00159{left:127.217700px;}
.x30_c00159{left:133.500750px;}
.x3a_c00159{left:139.032000px;}
.x2a_c00159{left:152.045700px;}
.x3_c00159{left:161.513700px;}
.x34_c00159{left:167.163900px;}
.x11_c00159{left:172.043400px;}
.x2e_c00159{left:175.323450px;}
.x2f_c00159{left:197.942100px;}
.x7_c00159{left:206.008350px;}
.x3b_c00159{left:219.022650px;}
.x35_c00159{left:220.155000px;}
.x37_c00159{left:221.262750px;}
.x4_c00159{left:225.970050px;}
.x31_c00159{left:227.976150px;}
.x2c_c00159{left:229.138200px;}
.x8_c00159{left:233.007900px;}
.x38_c00159{left:234.240600px;}
.x26_c00159{left:259.263750px;}
.x1f_c00159{left:260.456100px;}
.x24_c00159{left:266.898600px;}
.x1c_c00159{left:268.061700px;}
.x14_c00159{left:270.187800px;}
.xd_c00159{left:271.923750px;}
.x36_c00159{left:284.710350px;}
.x2d_c00159{left:290.157300px;}
.x18_c00159{left:303.063750px;}
.x22_c00159{left:305.809200px;}
.x12_c00159{left:318.595050px;}
.x19_c00159{left:321.045450px;}
.x25_c00159{left:324.911550px;}
.x32_c00159{left:328.345500px;}
.x15_c00159{left:332.214900px;}
.x1a_c00159{left:335.049300px;}
.x1b_c00159{left:349.053150px;}
.x23_c00159{left:350.808750px;}
.x33_c00159{left:378.348300px;}
.x13_c00159{left:379.473600px;}
.x2b_c00159{left:415.887750px;}
.x9_c00159{left:428.016750px;}
.x1d_c00159{left:432.460350px;}
.x1e_c00159{left:445.438050px;}
.xa_c00159{left:486.029700px;}
.xe_c00159{left:492.755550px;}
.xb_c00159{left:497.027250px;}
.xc_c00159{left:548.038650px;}
.x27_c00159{left:586.185750px;}
.x5_c00159{left:591.213150px;}
.x6_c00159{left:596.932950px;}
.x16_c00159{left:602.225400px;}
.xf_c00159{left:608.839500px;}
.x17_c00159{left:629.225100px;}
.x20_c00159{left:662.056650px;}
.x21_c00159{left:706.066050px;}
.x39_c00159{left:709.386900px;}
.x28_c00159{left:718.386450px;}
.x10_c00159{left:720.366600px;}
.x29_c00159{left:745.386150px;}
.x3d_c00159{left:759.915000px;}
@media print{
.v2_c00159{vertical-align:-21.760000pt;}
.v0_c00159{vertical-align:0.000000pt;}
.v1_c00159{vertical-align:26.880000pt;}
.ls4_c00159{letter-spacing:-0.159616pt;}
.ls3_c00159{letter-spacing:0.000000pt;}
.ls6_c00159{letter-spacing:0.128000pt;}
.ls9_c00159{letter-spacing:0.236160pt;}
.ls8_c00159{letter-spacing:0.472320pt;}
.ls7_c00159{letter-spacing:0.632913pt;}
.ls5_c00159{letter-spacing:2.195200pt;}
.ls1_c00159{letter-spacing:5.312000pt;}
.ls2_c00159{letter-spacing:5.475484pt;}
.ls0_c00159{letter-spacing:21.760000pt;}
.ws0_c00159{word-spacing:-10.159744pt;}
.ws1_c00159{word-spacing:-9.024000pt;}
.ws2_c00159{word-spacing:0.000000pt;}
._a_c00159{margin-left:-2.214400pt;}
._10_c00159{margin-left:-0.954667pt;}
._4_c00159{width:0.960000pt;}
._1_c00159{width:2.560000pt;}
._5_c00159{width:3.904000pt;}
._0_c00159{width:5.312000pt;}
._7_c00159{width:6.464000pt;}
._e_c00159{width:7.616000pt;}
._9_c00159{width:9.728000pt;}
._b_c00159{width:11.412756pt;}
._c_c00159{width:13.035244pt;}
._6_c00159{width:14.336000pt;}
._3_c00159{width:15.941790pt;}
._2_c00159{width:16.954210pt;}
._8_c00159{width:22.848000pt;}
._d_c00159{width:25.134452pt;}
._f_c00159{width:42.432000pt;}
.fs3_c00159{font-size:32.000000pt;}
.fs2_c00159{font-size:37.120000pt;}
.fs4_c00159{font-size:52.480000pt;}
.fs6_c00159{font-size:53.333333pt;}
.fs5_c00159{font-size:54.095146pt;}
.fs0_c00159{font-size:64.000000pt;}
.fs1_c00159{font-size:65.969690pt;}
.y0_c00159{bottom:0.000000pt;}
.y32_c00159{bottom:2.773467pt;}
.y31_c00159{bottom:30.884000pt;}
.y1_c00159{bottom:48.000000pt;}
.y30_c00159{bottom:54.760000pt;}
.y2f_c00159{bottom:70.120000pt;}
.y2e_c00159{bottom:80.360000pt;}
.y2d_c00159{bottom:85.800000pt;}
.y2c_c00159{bottom:109.480000pt;}
.y2b_c00159{bottom:148.840000pt;}
.y2a_c00159{bottom:169.320000pt;}
.y29_c00159{bottom:187.560000pt;}
.y28_c00159{bottom:207.080000pt;}
.y27_c00159{bottom:225.320000pt;}
.y26_c00159{bottom:244.200000pt;}
.y25_c00159{bottom:262.760000pt;}
.y24_c00159{bottom:281.320000pt;}
.y23_c00159{bottom:313.320000pt;}
.y22_c00159{bottom:332.520000pt;}
.y21_c00159{bottom:351.080000pt;}
.y20_c00159{bottom:369.640000pt;}
.y1f_c00159{bottom:388.200000pt;}
.y1e_c00159{bottom:407.080000pt;}
.y1d_c00159{bottom:425.640000pt;}
.y1c_c00159{bottom:444.200000pt;}
.y1b_c00159{bottom:463.080000pt;}
.y1a_c00159{bottom:481.640000pt;}
.y19_c00159{bottom:500.200000pt;}
.y18_c00159{bottom:519.080000pt;}
.y17_c00159{bottom:551.080000pt;}
.y16_c00159{bottom:569.640000pt;}
.y15_c00159{bottom:588.200000pt;}
.y14_c00159{bottom:607.080000pt;}
.y13_c00159{bottom:625.640000pt;}
.y12_c00159{bottom:644.520000pt;}
.y11_c00159{bottom:663.080000pt;}
.y10_c00159{bottom:695.080000pt;}
.yf_c00159{bottom:713.640000pt;}
.ye_c00159{bottom:732.520000pt;}
.yd_c00159{bottom:764.520000pt;}
.yc_c00159{bottom:783.080000pt;}
.yb_c00159{bottom:801.640000pt;}
.ya_c00159{bottom:820.520000pt;}
.y9_c00159{bottom:839.080000pt;}
.y8_c00159{bottom:857.640000pt;}
.y7_c00159{bottom:876.520000pt;}
.y6_c00159{bottom:895.080000pt;}
.y5_c00159{bottom:913.640000pt;}
.y4_c00159{bottom:945.640000pt;}
.y3_c00159{bottom:964.520000pt;}
.y2_c00159{bottom:1011.880000pt;}
.ha_c00159{height:17.116000pt;}
.h7_c00159{height:28.992000pt;}
.hb_c00159{height:41.173333pt;}
.h6_c00159{height:42.656250pt;}
.h9_c00159{height:47.546880pt;}
.h8_c00159{height:49.010202pt;}
.h3_c00159{height:57.984000pt;}
.h4_c00159{height:59.768539pt;}
.h5_c00159{height:60.510720pt;}
.h2_c00159{height:1067.880000pt;}
.h0_c00159{height:1122.520000pt;}
.h1_c00159{height:1122.666667pt;}
.w3_c00159{width:22.240000pt;}
.w2_c00159{width:767.960000pt;}
.w0_c00159{width:793.720000pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x1_c00159{left:12.880000pt;}
.x2_c00159{left:100.480133pt;}
.x3c_c00159{left:113.082400pt;}
.x30_c00159{left:118.667333pt;}
.x3a_c00159{left:123.584000pt;}
.x2a_c00159{left:135.151733pt;}
.x3_c00159{left:143.567733pt;}
.x34_c00159{left:148.590133pt;}
.x11_c00159{left:152.927467pt;}
.x2e_c00159{left:155.843067pt;}
.x2f_c00159{left:175.948533pt;}
.x7_c00159{left:183.118533pt;}
.x3b_c00159{left:194.686800pt;}
.x35_c00159{left:195.693333pt;}
.x37_c00159{left:196.678000pt;}
.x4_c00159{left:200.862267pt;}
.x31_c00159{left:202.645467pt;}
.x2c_c00159{left:203.678400pt;}
.x8_c00159{left:207.118133pt;}
.x38_c00159{left:208.213867pt;}
.x26_c00159{left:230.456667pt;}
.x1f_c00159{left:231.516533pt;}
.x24_c00159{left:237.243200pt;}
.x1c_c00159{left:238.277067pt;}
.x14_c00159{left:240.166933pt;}
.xd_c00159{left:241.710000pt;}
.x36_c00159{left:253.075867pt;}
.x2d_c00159{left:257.917600pt;}
.x18_c00159{left:269.390000pt;}
.x22_c00159{left:271.830400pt;}
.x12_c00159{left:283.195600pt;}
.x19_c00159{left:285.373733pt;}
.x25_c00159{left:288.810267pt;}
.x32_c00159{left:291.862667pt;}
.x15_c00159{left:295.302133pt;}
.x1a_c00159{left:297.821600pt;}
.x1b_c00159{left:310.269467pt;}
.x23_c00159{left:311.830000pt;}
.x33_c00159{left:336.309600pt;}
.x13_c00159{left:337.309867pt;}
.x2b_c00159{left:369.678000pt;}
.x9_c00159{left:380.459333pt;}
.x1d_c00159{left:384.409200pt;}
.x1e_c00159{left:395.944933pt;}
.xa_c00159{left:432.026400pt;}
.xe_c00159{left:438.004933pt;}
.xb_c00159{left:441.802000pt;}
.xc_c00159{left:487.145467pt;}
.x27_c00159{left:521.054000pt;}
.x5_c00159{left:525.522800pt;}
.x6_c00159{left:530.607067pt;}
.x16_c00159{left:535.311467pt;}
.xf_c00159{left:541.190667pt;}
.x17_c00159{left:559.311200pt;}
.x20_c00159{left:588.494800pt;}
.x21_c00159{left:627.614267pt;}
.x39_c00159{left:630.566133pt;}
.x28_c00159{left:638.565733pt;}
.x10_c00159{left:640.325867pt;}
.x29_c00159{left:662.565467pt;}
.x3d_c00159{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7393300c85c9c820163a256d.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_36c17ae1e089afdb544b1d5b.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_3b6d3796f6b1cebcff03f929.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:0.787000;font-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_c00160{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00160{vertical-align:-24.480000px;}
.v0_c00160{vertical-align:0.000000px;}
.v1_c00160{vertical-align:30.240000px;}
.ls5_c00160{letter-spacing:-0.179568px;}
.ls3_c00160{letter-spacing:0.000000px;}
.ls7_c00160{letter-spacing:0.144000px;}
.ls9_c00160{letter-spacing:0.531360px;}
.ls8_c00160{letter-spacing:0.712027px;}
.ls6_c00160{letter-spacing:5.335200px;}
.ls0_c00160{letter-spacing:5.975400px;}
.ls1_c00160{letter-spacing:5.976000px;}
.ls2_c00160{letter-spacing:6.159920px;}
.ls4_c00160{letter-spacing:17.301600px;}
.sc__c00160{text-shadow:none;}
.sc1_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00160{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc1_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00160{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00160{word-spacing:-20.947680px;}
.ws0_c00160{word-spacing:-11.429712px;}
.ws2_c00160{word-spacing:-10.152000px;}
.ws3_c00160{word-spacing:0.000000px;}
._d_c00160{margin-left:-1.360602px;}
._6_c00160{width:1.008000px;}
._a_c00160{width:2.592000px;}
._9_c00160{width:4.675602px;}
._0_c00160{width:5.976000px;}
._2_c00160{width:7.071276px;}
._1_c00160{width:8.312181px;}
._5_c00160{width:9.511638px;}
._b_c00160{width:10.648362px;}
._7_c00160{width:12.096000px;}
._8_c00160{width:14.904000px;}
._3_c00160{width:17.208000px;}
._4_c00160{width:18.720000px;}
._c_c00160{width:24.840000px;}
.fc0_c00160{color:rgb(0,0,0);}
.fs4_c00160{font-size:36.000000px;}
.fs2_c00160{font-size:41.760000px;}
.fs3_c00160{font-size:56.160000px;}
.fs5_c00160{font-size:59.040000px;}
.fs7_c00160{font-size:60.000000px;}
.fs6_c00160{font-size:60.857039px;}
.fs0_c00160{font-size:72.000000px;}
.fs1_c00160{font-size:74.215901px;}
.y0_c00160{bottom:0.000000px;}
.y24_c00160{bottom:3.120150px;}
.y23_c00160{bottom:34.744500px;}
.y1_c00160{bottom:54.000000px;}
.y22_c00160{bottom:55.485000px;}
.y21_c00160{bottom:61.605000px;}
.y20_c00160{bottom:88.245000px;}
.y1f_c00160{bottom:406.845000px;}
.y1e_c00160{bottom:442.845000px;}
.y1d_c00160{bottom:478.845000px;}
.y1c_c00160{bottom:514.845000px;}
.y1b_c00160{bottom:535.725000px;}
.y1a_c00160{bottom:556.965000px;}
.y19_c00160{bottom:577.845000px;}
.y18_c00160{bottom:598.725000px;}
.y17_c00160{bottom:634.725000px;}
.y16_c00160{bottom:655.965000px;}
.y15_c00160{bottom:676.845000px;}
.y14_c00160{bottom:697.725000px;}
.y13_c00160{bottom:718.965000px;}
.y12_c00160{bottom:739.845000px;}
.y11_c00160{bottom:761.085000px;}
.y10_c00160{bottom:781.965000px;}
.yf_c00160{bottom:817.965000px;}
.ye_c00160{bottom:838.845000px;}
.yd_c00160{bottom:860.085000px;}
.yc_c00160{bottom:880.965000px;}
.yb_c00160{bottom:901.845000px;}
.ya_c00160{bottom:923.085000px;}
.y9_c00160{bottom:959.085000px;}
.y8_c00160{bottom:979.965000px;}
.y7_c00160{bottom:1000.845000px;}
.y6_c00160{bottom:1022.085000px;}
.y5_c00160{bottom:1042.965000px;}
.y4_c00160{bottom:1063.845000px;}
.y3_c00160{bottom:1085.085000px;}
.y2_c00160{bottom:1138.365000px;}
.h9_c00160{height:19.255500px;}
.h6_c00160{height:32.616000px;}
.ha_c00160{height:46.320000px;}
.h8_c00160{height:53.490240px;}
.h7_c00160{height:55.136477px;}
.h3_c00160{height:65.232000px;}
.h4_c00160{height:67.239607px;}
.h5_c00160{height:68.074560px;}
.h2_c00160{height:1201.365000px;}
.h0_c00160{height:1262.835000px;}
.h1_c00160{height:1263.000000px;}
.w3_c00160{width:25.020000px;}
.w2_c00160{width:863.955000px;}
.w0_c00160{width:892.935000px;}
.w1_c00160{width:893.250000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:14.490000px;}
.x2_c00160{left:113.040150px;}
.x2b_c00160{left:127.217700px;}
.x2c_c00160{left:151.381650px;}
.x3_c00160{left:161.513700px;}
.x23_c00160{left:167.057400px;}
.x1e_c00160{left:178.037100px;}
.x1f_c00160{left:184.171500px;}
.xd_c00160{left:219.386400px;}
.x4_c00160{left:225.970050px;}
.x11_c00160{left:230.629050px;}
.x5_c00160{left:252.083850px;}
.x13_c00160{left:258.108750px;}
.xe_c00160{left:259.417650px;}
.x20_c00160{left:265.310700px;}
.x12_c00160{left:295.444350px;}
.x6_c00160{left:324.672000px;}
.x18_c00160{left:359.002350px;}
.x21_c00160{left:364.729650px;}
.x14_c00160{left:406.210650px;}
.x19_c00160{left:412.011450px;}
.x2a_c00160{left:418.153950px;}
.x15_c00160{left:458.229900px;}
.x1c_c00160{left:462.243450px;}
.x22_c00160{left:481.849650px;}
.x7_c00160{left:494.103150px;}
.x1d_c00160{left:524.270550px;}
.x1a_c00160{left:526.212150px;}
.x26_c00160{left:557.348550px;}
.x8_c00160{left:570.134100px;}
.x24_c00160{left:579.399900px;}
.xf_c00160{left:583.842300px;}
.x1b_c00160{left:589.228950px;}
.x9_c00160{left:590.704500px;}
.x27_c00160{left:599.305650px;}
.x25_c00160{left:602.883150px;}
.xa_c00160{left:629.709900px;}
.xb_c00160{left:645.032550px;}
.x10_c00160{left:648.040350px;}
.xc_c00160{left:684.384900px;}
.x16_c00160{left:730.392300px;}
.x28_c00160{left:737.394300px;}
.x17_c00160{left:745.386150px;}
.x29_c00160{left:750.390000px;}
.x2d_c00160{left:759.915000px;}
@media print{
.v2_c00160{vertical-align:-21.760000pt;}
.v0_c00160{vertical-align:0.000000pt;}
.v1_c00160{vertical-align:26.880000pt;}
.ls5_c00160{letter-spacing:-0.159616pt;}
.ls3_c00160{letter-spacing:0.000000pt;}
.ls7_c00160{letter-spacing:0.128000pt;}
.ls9_c00160{letter-spacing:0.472320pt;}
.ls8_c00160{letter-spacing:0.632913pt;}
.ls6_c00160{letter-spacing:4.742400pt;}
.ls0_c00160{letter-spacing:5.311467pt;}
.ls1_c00160{letter-spacing:5.312000pt;}
.ls2_c00160{letter-spacing:5.475484pt;}
.ls4_c00160{letter-spacing:15.379200pt;}
.ws1_c00160{word-spacing:-18.620160pt;}
.ws0_c00160{word-spacing:-10.159744pt;}
.ws2_c00160{word-spacing:-9.024000pt;}
.ws3_c00160{word-spacing:0.000000pt;}
._d_c00160{margin-left:-1.209424pt;}
._6_c00160{width:0.896000pt;}
._a_c00160{width:2.304000pt;}
._9_c00160{width:4.156090pt;}
._0_c00160{width:5.312000pt;}
._2_c00160{width:6.285579pt;}
._1_c00160{width:7.388605pt;}
._5_c00160{width:8.454789pt;}
._b_c00160{width:9.465211pt;}
._7_c00160{width:10.752000pt;}
._8_c00160{width:13.248000pt;}
._3_c00160{width:15.296000pt;}
._4_c00160{width:16.640000pt;}
._c_c00160{width:22.080000pt;}
.fs4_c00160{font-size:32.000000pt;}
.fs2_c00160{font-size:37.120000pt;}
.fs3_c00160{font-size:49.920000pt;}
.fs5_c00160{font-size:52.480000pt;}
.fs7_c00160{font-size:53.333333pt;}
.fs6_c00160{font-size:54.095146pt;}
.fs0_c00160{font-size:64.000000pt;}
.fs1_c00160{font-size:65.969690pt;}
.y0_c00160{bottom:0.000000pt;}
.y24_c00160{bottom:2.773467pt;}
.y23_c00160{bottom:30.884000pt;}
.y1_c00160{bottom:48.000000pt;}
.y22_c00160{bottom:49.320000pt;}
.y21_c00160{bottom:54.760000pt;}
.y20_c00160{bottom:78.440000pt;}
.y1f_c00160{bottom:361.640000pt;}
.y1e_c00160{bottom:393.640000pt;}
.y1d_c00160{bottom:425.640000pt;}
.y1c_c00160{bottom:457.640000pt;}
.y1b_c00160{bottom:476.200000pt;}
.y1a_c00160{bottom:495.080000pt;}
.y19_c00160{bottom:513.640000pt;}
.y18_c00160{bottom:532.200000pt;}
.y17_c00160{bottom:564.200000pt;}
.y16_c00160{bottom:583.080000pt;}
.y15_c00160{bottom:601.640000pt;}
.y14_c00160{bottom:620.200000pt;}
.y13_c00160{bottom:639.080000pt;}
.y12_c00160{bottom:657.640000pt;}
.y11_c00160{bottom:676.520000pt;}
.y10_c00160{bottom:695.080000pt;}
.yf_c00160{bottom:727.080000pt;}
.ye_c00160{bottom:745.640000pt;}
.yd_c00160{bottom:764.520000pt;}
.yc_c00160{bottom:783.080000pt;}
.yb_c00160{bottom:801.640000pt;}
.ya_c00160{bottom:820.520000pt;}
.y9_c00160{bottom:852.520000pt;}
.y8_c00160{bottom:871.080000pt;}
.y7_c00160{bottom:889.640000pt;}
.y6_c00160{bottom:908.520000pt;}
.y5_c00160{bottom:927.080000pt;}
.y4_c00160{bottom:945.640000pt;}
.y3_c00160{bottom:964.520000pt;}
.y2_c00160{bottom:1011.880000pt;}
.h9_c00160{height:17.116000pt;}
.h6_c00160{height:28.992000pt;}
.ha_c00160{height:41.173333pt;}
.h8_c00160{height:47.546880pt;}
.h7_c00160{height:49.010202pt;}
.h3_c00160{height:57.984000pt;}
.h4_c00160{height:59.768539pt;}
.h5_c00160{height:60.510720pt;}
.h2_c00160{height:1067.880000pt;}
.h0_c00160{height:1122.520000pt;}
.h1_c00160{height:1122.666667pt;}
.w3_c00160{width:22.240000pt;}
.w2_c00160{width:767.960000pt;}
.w0_c00160{width:793.720000pt;}
.w1_c00160{width:794.000000pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:12.880000pt;}
.x2_c00160{left:100.480133pt;}
.x2b_c00160{left:113.082400pt;}
.x2c_c00160{left:134.561467pt;}
.x3_c00160{left:143.567733pt;}
.x23_c00160{left:148.495467pt;}
.x1e_c00160{left:158.255200pt;}
.x1f_c00160{left:163.708000pt;}
.xd_c00160{left:195.010133pt;}
.x4_c00160{left:200.862267pt;}
.x11_c00160{left:205.003600pt;}
.x5_c00160{left:224.074533pt;}
.x13_c00160{left:229.430000pt;}
.xe_c00160{left:230.593467pt;}
.x20_c00160{left:235.831733pt;}
.x12_c00160{left:262.617200pt;}
.x6_c00160{left:288.597333pt;}
.x18_c00160{left:319.113200pt;}
.x21_c00160{left:324.204133pt;}
.x14_c00160{left:361.076133pt;}
.x19_c00160{left:366.232400pt;}
.x2a_c00160{left:371.692400pt;}
.x15_c00160{left:407.315467pt;}
.x1c_c00160{left:410.883067pt;}
.x22_c00160{left:428.310800pt;}
.x7_c00160{left:439.202800pt;}
.x1d_c00160{left:466.018267pt;}
.x1a_c00160{left:467.744133pt;}
.x26_c00160{left:495.420933pt;}
.x8_c00160{left:506.785867pt;}
.x24_c00160{left:515.022133pt;}
.xf_c00160{left:518.970933pt;}
.x1b_c00160{left:523.759067pt;}
.x9_c00160{left:525.070667pt;}
.x27_c00160{left:532.716133pt;}
.x25_c00160{left:535.896133pt;}
.xa_c00160{left:559.742133pt;}
.xb_c00160{left:573.362267pt;}
.x10_c00160{left:576.035867pt;}
.xc_c00160{left:608.342133pt;}
.x16_c00160{left:649.237600pt;}
.x28_c00160{left:655.461600pt;}
.x17_c00160{left:662.565467pt;}
.x29_c00160{left:667.013333pt;}
.x2d_c00160{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1fdce42b2dffa058eb30742c.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;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_c00161;src:url('chunks/assets/font_d31ba401a46d35232e8577f5.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_23253bf163a0d721a8e72756.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:0.787000;font-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_c00161{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls3_c00161{letter-spacing:0.000000px;}
.ls5_c00161{letter-spacing:0.202464px;}
.ls7_c00161{letter-spacing:0.239760px;}
.ls4_c00161{letter-spacing:0.399600px;}
.ls0_c00161{letter-spacing:0.401040px;}
.ls6_c00161{letter-spacing:0.436896px;}
.ls1_c00161{letter-spacing:5.976000px;}
.ls2_c00161{letter-spacing:6.159920px;}
.sc__c00161{text-shadow:none;}
.sc1_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00161{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc1_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00161{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00161{word-spacing:-15.051600px;}
.ws1_c00161{word-spacing:0.000000px;}
._1_c00161{margin-left:-1.118880px;}
._2_c00161{width:1.081080px;}
._0_c00161{width:5.976000px;}
.fc0_c00161{color:rgb(0,0,0);}
.fs2_c00161{font-size:53.280000px;}
.fs3_c00161{font-size:60.000000px;}
.fs0_c00161{font-size:72.000000px;}
.fs1_c00161{font-size:74.215901px;}
.y0_c00161{bottom:0.000000px;}
.y28_c00161{bottom:3.120150px;}
.y21_c00161{bottom:14.399850px;}
.y23_c00161{bottom:14.400000px;}
.y26_c00161{bottom:18.720000px;}
.y25_c00161{bottom:34.560000px;}
.y27_c00161{bottom:34.744500px;}
.y1_c00161{bottom:54.000000px;}
.y1f_c00161{bottom:76.725000px;}
.y1e_c00161{bottom:112.725000px;}
.y24_c00161{bottom:130.365000px;}
.y1d_c00161{bottom:148.725000px;}
.y1c_c00161{bottom:184.725000px;}
.y1b_c00161{bottom:220.725000px;}
.y1a_c00161{bottom:256.725000px;}
.y19_c00161{bottom:292.725000px;}
.y18_c00161{bottom:328.725000px;}
.y17_c00161{bottom:364.725000px;}
.y16_c00161{bottom:400.725000px;}
.y15_c00161{bottom:436.725000px;}
.y14_c00161{bottom:472.725000px;}
.y22_c00161{bottom:481.365000px;}
.y13_c00161{bottom:509.085000px;}
.y12_c00161{bottom:545.085000px;}
.y11_c00161{bottom:581.085000px;}
.y10_c00161{bottom:617.085000px;}
.yf_c00161{bottom:653.085000px;}
.ye_c00161{bottom:689.085000px;}
.yd_c00161{bottom:725.085000px;}
.yc_c00161{bottom:761.085000px;}
.yb_c00161{bottom:797.085000px;}
.y20_c00161{bottom:832.365000px;}
.ya_c00161{bottom:833.085000px;}
.y9_c00161{bottom:869.085000px;}
.y8_c00161{bottom:905.085000px;}
.y7_c00161{bottom:941.085000px;}
.y6_c00161{bottom:977.085000px;}
.y5_c00161{bottom:1013.085000px;}
.y4_c00161{bottom:1049.085000px;}
.y3_c00161{bottom:1085.085000px;}
.y2_c00161{bottom:1138.365000px;}
.h8_c00161{height:19.255500px;}
.h5_c00161{height:27.000000px;}
.h6_c00161{height:41.132160px;}
.h9_c00161{height:46.320000px;}
.h7_c00161{height:47.160000px;}
.h3_c00161{height:55.584000px;}
.h4_c00161{height:57.294676px;}
.h2_c00161{height:1201.365000px;}
.h0_c00161{height:1262.835000px;}
.h1_c00161{height:1263.000000px;}
.w6_c00161{width:25.020000px;}
.w4_c00161{width:566.280000px;}
.w5_c00161{width:572.040000px;}
.w3_c00161{width:573.840000px;}
.w2_c00161{width:863.955000px;}
.w0_c00161{width:892.935000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:14.490000px;}
.x8_c00161{left:39.412050px;}
.x6_c00161{left:43.236900px;}
.xa_c00161{left:102.023250px;}
.x9_c00161{left:105.026850px;}
.x2_c00161{left:113.040150px;}
.x5_c00161{left:154.530000px;}
.x7_c00161{left:157.410000px;}
.x3_c00161{left:161.513700px;}
.x4_c00161{left:225.970050px;}
.xb_c00161{left:759.915000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls3_c00161{letter-spacing:0.000000pt;}
.ls5_c00161{letter-spacing:0.179968pt;}
.ls7_c00161{letter-spacing:0.213120pt;}
.ls4_c00161{letter-spacing:0.355200pt;}
.ls0_c00161{letter-spacing:0.356480pt;}
.ls6_c00161{letter-spacing:0.388352pt;}
.ls1_c00161{letter-spacing:5.312000pt;}
.ls2_c00161{letter-spacing:5.475484pt;}
.ws0_c00161{word-spacing:-13.379200pt;}
.ws1_c00161{word-spacing:0.000000pt;}
._1_c00161{margin-left:-0.994560pt;}
._2_c00161{width:0.960960pt;}
._0_c00161{width:5.312000pt;}
.fs2_c00161{font-size:47.360000pt;}
.fs3_c00161{font-size:53.333333pt;}
.fs0_c00161{font-size:64.000000pt;}
.fs1_c00161{font-size:65.969690pt;}
.y0_c00161{bottom:0.000000pt;}
.y28_c00161{bottom:2.773467pt;}
.y21_c00161{bottom:12.799867pt;}
.y23_c00161{bottom:12.800000pt;}
.y26_c00161{bottom:16.640000pt;}
.y25_c00161{bottom:30.720000pt;}
.y27_c00161{bottom:30.884000pt;}
.y1_c00161{bottom:48.000000pt;}
.y1f_c00161{bottom:68.200000pt;}
.y1e_c00161{bottom:100.200000pt;}
.y24_c00161{bottom:115.880000pt;}
.y1d_c00161{bottom:132.200000pt;}
.y1c_c00161{bottom:164.200000pt;}
.y1b_c00161{bottom:196.200000pt;}
.y1a_c00161{bottom:228.200000pt;}
.y19_c00161{bottom:260.200000pt;}
.y18_c00161{bottom:292.200000pt;}
.y17_c00161{bottom:324.200000pt;}
.y16_c00161{bottom:356.200000pt;}
.y15_c00161{bottom:388.200000pt;}
.y14_c00161{bottom:420.200000pt;}
.y22_c00161{bottom:427.880000pt;}
.y13_c00161{bottom:452.520000pt;}
.y12_c00161{bottom:484.520000pt;}
.y11_c00161{bottom:516.520000pt;}
.y10_c00161{bottom:548.520000pt;}
.yf_c00161{bottom:580.520000pt;}
.ye_c00161{bottom:612.520000pt;}
.yd_c00161{bottom:644.520000pt;}
.yc_c00161{bottom:676.520000pt;}
.yb_c00161{bottom:708.520000pt;}
.y20_c00161{bottom:739.880000pt;}
.ya_c00161{bottom:740.520000pt;}
.y9_c00161{bottom:772.520000pt;}
.y8_c00161{bottom:804.520000pt;}
.y7_c00161{bottom:836.520000pt;}
.y6_c00161{bottom:868.520000pt;}
.y5_c00161{bottom:900.520000pt;}
.y4_c00161{bottom:932.520000pt;}
.y3_c00161{bottom:964.520000pt;}
.y2_c00161{bottom:1011.880000pt;}
.h8_c00161{height:17.116000pt;}
.h5_c00161{height:24.000000pt;}
.h6_c00161{height:36.561920pt;}
.h9_c00161{height:41.173333pt;}
.h7_c00161{height:41.920000pt;}
.h3_c00161{height:49.408000pt;}
.h4_c00161{height:50.928601pt;}
.h2_c00161{height:1067.880000pt;}
.h0_c00161{height:1122.520000pt;}
.h1_c00161{height:1122.666667pt;}
.w6_c00161{width:22.240000pt;}
.w4_c00161{width:503.360000pt;}
.w5_c00161{width:508.480000pt;}
.w3_c00161{width:510.080000pt;}
.w2_c00161{width:767.960000pt;}
.w0_c00161{width:793.720000pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:12.880000pt;}
.x8_c00161{left:35.032933pt;}
.x6_c00161{left:38.432800pt;}
.xa_c00161{left:90.687333pt;}
.x9_c00161{left:93.357200pt;}
.x2_c00161{left:100.480133pt;}
.x5_c00161{left:137.360000pt;}
.x7_c00161{left:139.920000pt;}
.x3_c00161{left:143.567733pt;}
.x4_c00161{left:200.862267pt;}
.xb_c00161{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce282c730461d562a974397d.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;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_c00162;src:url('chunks/assets/font_ec03b70ca8045338e1322a00.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_f958cfa700770ed1ed8a030b.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:0.787000;font-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_c00162{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00162{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00162{letter-spacing:0.000000px;}
.ls4_c00162{letter-spacing:0.202464px;}
.ls6_c00162{letter-spacing:0.282384px;}
.ls3_c00162{letter-spacing:0.399600px;}
.ls5_c00162{letter-spacing:0.719280px;}
.ls0_c00162{letter-spacing:5.976000px;}
.ls1_c00162{letter-spacing:6.159920px;}
.sc__c00162{text-shadow:none;}
.sc1_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00162{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc1_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00162{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00162{word-spacing:0.000000px;}
._1_c00162{margin-left:-1.118880px;}
._2_c00162{width:1.011360px;}
._0_c00162{width:5.976000px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs2_c00162{font-size:53.280000px;}
.fs3_c00162{font-size:54.919767px;}
.fs4_c00162{font-size:60.000000px;}
.fs0_c00162{font-size:72.000000px;}
.fs1_c00162{font-size:74.215901px;}
.y0_c00162{bottom:0.000000px;}
.y25_c00162{bottom:3.120150px;}
.y20_c00162{bottom:25.560000px;}
.y23_c00162{bottom:25.920000px;}
.y24_c00162{bottom:34.744500px;}
.y1_c00162{bottom:54.000000px;}
.y1e_c00162{bottom:112.725000px;}
.y22_c00162{bottom:136.845000px;}
.y1d_c00162{bottom:148.725000px;}
.y1c_c00162{bottom:184.725000px;}
.y1b_c00162{bottom:220.725000px;}
.y1a_c00162{bottom:256.725000px;}
.y19_c00162{bottom:292.725000px;}
.y18_c00162{bottom:328.725000px;}
.y17_c00162{bottom:364.725000px;}
.y16_c00162{bottom:400.725000px;}
.y15_c00162{bottom:436.725000px;}
.y21_c00162{bottom:470.205000px;}
.y14_c00162{bottom:472.725000px;}
.y13_c00162{bottom:509.085000px;}
.y12_c00162{bottom:545.085000px;}
.y11_c00162{bottom:581.085000px;}
.y10_c00162{bottom:617.085000px;}
.yf_c00162{bottom:653.085000px;}
.ye_c00162{bottom:689.085000px;}
.yd_c00162{bottom:725.085000px;}
.yc_c00162{bottom:761.085000px;}
.y1f_c00162{bottom:785.565000px;}
.yb_c00162{bottom:797.085000px;}
.ya_c00162{bottom:833.085000px;}
.y9_c00162{bottom:869.085000px;}
.y8_c00162{bottom:905.085000px;}
.y7_c00162{bottom:941.085000px;}
.y6_c00162{bottom:977.085000px;}
.y5_c00162{bottom:1013.085000px;}
.y4_c00162{bottom:1049.085000px;}
.y3_c00162{bottom:1085.085000px;}
.y2_c00162{bottom:1138.365000px;}
.h9_c00162{height:19.255500px;}
.h5_c00162{height:38.160000px;}
.h8_c00162{height:38.520000px;}
.h6_c00162{height:41.132160px;}
.h7_c00162{height:42.398060px;}
.ha_c00162{height:46.320000px;}
.h3_c00162{height:55.584000px;}
.h4_c00162{height:57.294676px;}
.h2_c00162{height:1201.365000px;}
.h0_c00162{height:1262.835000px;}
.h1_c00162{height:1263.000000px;}
.w4_c00162{width:25.020000px;}
.w3_c00162{width:560.160000px;}
.w2_c00162{width:863.955000px;}
.w0_c00162{width:892.935000px;}
.w1_c00162{width:893.250000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:14.490000px;}
.x2_c00162{left:113.040150px;}
.x6_c00162{left:120.891600px;}
.x5_c00162{left:151.650000px;}
.x9_c00162{left:158.490000px;}
.x8_c00162{left:159.570000px;}
.x3_c00162{left:161.513700px;}
.x4_c00162{left:225.970050px;}
.x7_c00162{left:439.013250px;}
.xa_c00162{left:545.521350px;}
.xb_c00162{left:759.915000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls2_c00162{letter-spacing:0.000000pt;}
.ls4_c00162{letter-spacing:0.179968pt;}
.ls6_c00162{letter-spacing:0.251008pt;}
.ls3_c00162{letter-spacing:0.355200pt;}
.ls5_c00162{letter-spacing:0.639360pt;}
.ls0_c00162{letter-spacing:5.312000pt;}
.ls1_c00162{letter-spacing:5.475484pt;}
.ws0_c00162{word-spacing:0.000000pt;}
._1_c00162{margin-left:-0.994560pt;}
._2_c00162{width:0.898987pt;}
._0_c00162{width:5.312000pt;}
.fs2_c00162{font-size:47.360000pt;}
.fs3_c00162{font-size:48.817571pt;}
.fs4_c00162{font-size:53.333333pt;}
.fs0_c00162{font-size:64.000000pt;}
.fs1_c00162{font-size:65.969690pt;}
.y0_c00162{bottom:0.000000pt;}
.y25_c00162{bottom:2.773467pt;}
.y20_c00162{bottom:22.720000pt;}
.y23_c00162{bottom:23.040000pt;}
.y24_c00162{bottom:30.884000pt;}
.y1_c00162{bottom:48.000000pt;}
.y1e_c00162{bottom:100.200000pt;}
.y22_c00162{bottom:121.640000pt;}
.y1d_c00162{bottom:132.200000pt;}
.y1c_c00162{bottom:164.200000pt;}
.y1b_c00162{bottom:196.200000pt;}
.y1a_c00162{bottom:228.200000pt;}
.y19_c00162{bottom:260.200000pt;}
.y18_c00162{bottom:292.200000pt;}
.y17_c00162{bottom:324.200000pt;}
.y16_c00162{bottom:356.200000pt;}
.y15_c00162{bottom:388.200000pt;}
.y21_c00162{bottom:417.960000pt;}
.y14_c00162{bottom:420.200000pt;}
.y13_c00162{bottom:452.520000pt;}
.y12_c00162{bottom:484.520000pt;}
.y11_c00162{bottom:516.520000pt;}
.y10_c00162{bottom:548.520000pt;}
.yf_c00162{bottom:580.520000pt;}
.ye_c00162{bottom:612.520000pt;}
.yd_c00162{bottom:644.520000pt;}
.yc_c00162{bottom:676.520000pt;}
.y1f_c00162{bottom:698.280000pt;}
.yb_c00162{bottom:708.520000pt;}
.ya_c00162{bottom:740.520000pt;}
.y9_c00162{bottom:772.520000pt;}
.y8_c00162{bottom:804.520000pt;}
.y7_c00162{bottom:836.520000pt;}
.y6_c00162{bottom:868.520000pt;}
.y5_c00162{bottom:900.520000pt;}
.y4_c00162{bottom:932.520000pt;}
.y3_c00162{bottom:964.520000pt;}
.y2_c00162{bottom:1011.880000pt;}
.h9_c00162{height:17.116000pt;}
.h5_c00162{height:33.920000pt;}
.h8_c00162{height:34.240000pt;}
.h6_c00162{height:36.561920pt;}
.h7_c00162{height:37.687165pt;}
.ha_c00162{height:41.173333pt;}
.h3_c00162{height:49.408000pt;}
.h4_c00162{height:50.928601pt;}
.h2_c00162{height:1067.880000pt;}
.h0_c00162{height:1122.520000pt;}
.h1_c00162{height:1122.666667pt;}
.w4_c00162{width:22.240000pt;}
.w3_c00162{width:497.920000pt;}
.w2_c00162{width:767.960000pt;}
.w0_c00162{width:793.720000pt;}
.w1_c00162{width:794.000000pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:12.880000pt;}
.x2_c00162{left:100.480133pt;}
.x6_c00162{left:107.459200pt;}
.x5_c00162{left:134.800000pt;}
.x9_c00162{left:140.880000pt;}
.x8_c00162{left:141.840000pt;}
.x3_c00162{left:143.567733pt;}
.x4_c00162{left:200.862267pt;}
.x7_c00162{left:390.234000pt;}
.xa_c00162{left:484.907867pt;}
.xb_c00162{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e471a6a827a79af8db666184.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;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_c00163;src:url('chunks/assets/font_d31ba401a46d35232e8577f5.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:0.787000;font-style:normal;font-weight:normal;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_fdb184932610b7249a66a128.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:0.787000;font-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_c00163{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls4_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:0.200160px;}
.ls5_c00163{letter-spacing:0.202464px;}
.ls6_c00163{letter-spacing:0.239760px;}
.ls1_c00163{letter-spacing:0.399600px;}
.ls7_c00163{letter-spacing:0.559440px;}
.ls8_c00163{letter-spacing:0.676656px;}
.ls2_c00163{letter-spacing:5.976000px;}
.ls3_c00163{letter-spacing:6.159920px;}
.sc__c00163{text-shadow:none;}
.sc1_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00163{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc1_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00163{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00163{word-spacing:-15.488496px;}
.ws0_c00163{word-spacing:-15.051600px;}
.ws2_c00163{word-spacing:0.000000px;}
._1_c00163{margin-left:-1.118880px;}
._2_c00163{width:1.253880px;}
._0_c00163{width:5.976000px;}
.fc0_c00163{color:rgb(0,0,0);}
.fs2_c00163{font-size:53.280000px;}
.fs3_c00163{font-size:60.000000px;}
.fs0_c00163{font-size:72.000000px;}
.fs1_c00163{font-size:74.215901px;}
.y0_c00163{bottom:0.000000px;}
.y29_c00163{bottom:3.120150px;}
.y21_c00163{bottom:15.840000px;}
.y23_c00163{bottom:21.240000px;}
.y20_c00163{bottom:31.680000px;}
.y28_c00163{bottom:34.744500px;}
.y27_c00163{bottom:37.080000px;}
.y26_c00163{bottom:52.560000px;}
.y1_c00163{bottom:54.000000px;}
.y25_c00163{bottom:68.400000px;}
.y1e_c00163{bottom:112.725000px;}
.y1d_c00163{bottom:148.725000px;}
.y22_c00163{bottom:157.365000px;}
.y1c_c00163{bottom:184.725000px;}
.y1b_c00163{bottom:220.725000px;}
.y1a_c00163{bottom:256.725000px;}
.y19_c00163{bottom:292.725000px;}
.y18_c00163{bottom:328.725000px;}
.y17_c00163{bottom:364.725000px;}
.y16_c00163{bottom:400.725000px;}
.y15_c00163{bottom:436.725000px;}
.y1f_c00163{bottom:454.365000px;}
.y14_c00163{bottom:472.725000px;}
.y13_c00163{bottom:509.085000px;}
.y12_c00163{bottom:545.085000px;}
.y11_c00163{bottom:581.085000px;}
.y10_c00163{bottom:617.085000px;}
.yf_c00163{bottom:653.085000px;}
.ye_c00163{bottom:689.085000px;}
.yd_c00163{bottom:725.085000px;}
.yc_c00163{bottom:761.085000px;}
.yb_c00163{bottom:797.085000px;}
.y24_c00163{bottom:804.645000px;}
.ya_c00163{bottom:833.085000px;}
.y9_c00163{bottom:869.085000px;}
.y8_c00163{bottom:905.085000px;}
.y7_c00163{bottom:941.085000px;}
.y6_c00163{bottom:977.085000px;}
.y5_c00163{bottom:1013.085000px;}
.y4_c00163{bottom:1049.085000px;}
.y3_c00163{bottom:1085.085000px;}
.y2_c00163{bottom:1138.365000px;}
.h9_c00163{height:19.255500px;}
.h7_c00163{height:33.840000px;}
.h6_c00163{height:41.132160px;}
.h5_c00163{height:44.280000px;}
.ha_c00163{height:46.320000px;}
.h3_c00163{height:55.584000px;}
.h4_c00163{height:57.294676px;}
.h8_c00163{height:81.000000px;}
.h2_c00163{height:1201.365000px;}
.h0_c00163{height:1262.835000px;}
.h1_c00163{height:1263.000000px;}
.w6_c00163{width:25.020000px;}
.w3_c00163{width:546.480000px;}
.w5_c00163{width:573.480000px;}
.w4_c00163{width:632.520000px;}
.w2_c00163{width:863.955000px;}
.w0_c00163{width:892.935000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.xc_c00163{left:5.670300px;}
.x1_c00163{left:14.490000px;}
.xa_c00163{left:21.384450px;}
.x7_c00163{left:88.876050px;}
.x6_c00163{left:109.496550px;}
.x2_c00163{left:113.040150px;}
.x8_c00163{left:127.890000px;}
.x5_c00163{left:151.650000px;}
.x9_c00163{left:156.658950px;}
.x3_c00163{left:161.513700px;}
.xd_c00163{left:177.792000px;}
.x4_c00163{left:225.970050px;}
.xb_c00163{left:243.022650px;}
.xe_c00163{left:759.915000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls4_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:0.177920pt;}
.ls5_c00163{letter-spacing:0.179968pt;}
.ls6_c00163{letter-spacing:0.213120pt;}
.ls1_c00163{letter-spacing:0.355200pt;}
.ls7_c00163{letter-spacing:0.497280pt;}
.ls8_c00163{letter-spacing:0.601472pt;}
.ls2_c00163{letter-spacing:5.312000pt;}
.ls3_c00163{letter-spacing:5.475484pt;}
.ws1_c00163{word-spacing:-13.767552pt;}
.ws0_c00163{word-spacing:-13.379200pt;}
.ws2_c00163{word-spacing:0.000000pt;}
._1_c00163{margin-left:-0.994560pt;}
._2_c00163{width:1.114560pt;}
._0_c00163{width:5.312000pt;}
.fs2_c00163{font-size:47.360000pt;}
.fs3_c00163{font-size:53.333333pt;}
.fs0_c00163{font-size:64.000000pt;}
.fs1_c00163{font-size:65.969690pt;}
.y0_c00163{bottom:0.000000pt;}
.y29_c00163{bottom:2.773467pt;}
.y21_c00163{bottom:14.080000pt;}
.y23_c00163{bottom:18.880000pt;}
.y20_c00163{bottom:28.160000pt;}
.y28_c00163{bottom:30.884000pt;}
.y27_c00163{bottom:32.960000pt;}
.y26_c00163{bottom:46.720000pt;}
.y1_c00163{bottom:48.000000pt;}
.y25_c00163{bottom:60.800000pt;}
.y1e_c00163{bottom:100.200000pt;}
.y1d_c00163{bottom:132.200000pt;}
.y22_c00163{bottom:139.880000pt;}
.y1c_c00163{bottom:164.200000pt;}
.y1b_c00163{bottom:196.200000pt;}
.y1a_c00163{bottom:228.200000pt;}
.y19_c00163{bottom:260.200000pt;}
.y18_c00163{bottom:292.200000pt;}
.y17_c00163{bottom:324.200000pt;}
.y16_c00163{bottom:356.200000pt;}
.y15_c00163{bottom:388.200000pt;}
.y1f_c00163{bottom:403.880000pt;}
.y14_c00163{bottom:420.200000pt;}
.y13_c00163{bottom:452.520000pt;}
.y12_c00163{bottom:484.520000pt;}
.y11_c00163{bottom:516.520000pt;}
.y10_c00163{bottom:548.520000pt;}
.yf_c00163{bottom:580.520000pt;}
.ye_c00163{bottom:612.520000pt;}
.yd_c00163{bottom:644.520000pt;}
.yc_c00163{bottom:676.520000pt;}
.yb_c00163{bottom:708.520000pt;}
.y24_c00163{bottom:715.240000pt;}
.ya_c00163{bottom:740.520000pt;}
.y9_c00163{bottom:772.520000pt;}
.y8_c00163{bottom:804.520000pt;}
.y7_c00163{bottom:836.520000pt;}
.y6_c00163{bottom:868.520000pt;}
.y5_c00163{bottom:900.520000pt;}
.y4_c00163{bottom:932.520000pt;}
.y3_c00163{bottom:964.520000pt;}
.y2_c00163{bottom:1011.880000pt;}
.h9_c00163{height:17.116000pt;}
.h7_c00163{height:30.080000pt;}
.h6_c00163{height:36.561920pt;}
.h5_c00163{height:39.360000pt;}
.ha_c00163{height:41.173333pt;}
.h3_c00163{height:49.408000pt;}
.h4_c00163{height:50.928601pt;}
.h8_c00163{height:72.000000pt;}
.h2_c00163{height:1067.880000pt;}
.h0_c00163{height:1122.520000pt;}
.h1_c00163{height:1122.666667pt;}
.w6_c00163{width:22.240000pt;}
.w3_c00163{width:485.760000pt;}
.w5_c00163{width:509.760000pt;}
.w4_c00163{width:562.240000pt;}
.w2_c00163{width:767.960000pt;}
.w0_c00163{width:793.720000pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.xc_c00163{left:5.040267pt;}
.x1_c00163{left:12.880000pt;}
.xa_c00163{left:19.008400pt;}
.x7_c00163{left:79.000933pt;}
.x6_c00163{left:97.330267pt;}
.x2_c00163{left:100.480133pt;}
.x8_c00163{left:113.680000pt;}
.x5_c00163{left:134.800000pt;}
.x9_c00163{left:139.252400pt;}
.x3_c00163{left:143.567733pt;}
.xd_c00163{left:158.037333pt;}
.x4_c00163{left:200.862267pt;}
.xb_c00163{left:216.020133pt;}
.xe_c00163{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b7d991f2b77b1b69bf7ecac8.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;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_c00164;src:url('chunks/assets/font_d31ba401a46d35232e8577f5.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_3f3eaca42ca8f318eade56a6.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00164{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls2_c00164{letter-spacing:0.000000px;}
.ls4_c00164{letter-spacing:0.202464px;}
.ls5_c00164{letter-spacing:0.239760px;}
.ls3_c00164{letter-spacing:0.399600px;}
.ls6_c00164{letter-spacing:0.436896px;}
.ls7_c00164{letter-spacing:0.719280px;}
.ls0_c00164{letter-spacing:5.976000px;}
.ls1_c00164{letter-spacing:6.159920px;}
.sc__c00164{text-shadow:none;}
.sc1_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00164{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc1_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00164{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00164{word-spacing:-15.211440px;}
.ws1_c00164{word-spacing:-15.051600px;}
.ws2_c00164{word-spacing:0.000000px;}
._2_c00164{margin-left:-1.118880px;}
._1_c00164{width:1.053600px;}
._0_c00164{width:5.976000px;}
.fc1_c00164{color:transparent;}
.fc0_c00164{color:rgb(0,0,0);}
.fs2_c00164{font-size:53.280000px;}
.fs3_c00164{font-size:60.000000px;}
.fs0_c00164{font-size:72.000000px;}
.fs1_c00164{font-size:74.215901px;}
.y0_c00164{bottom:0.000000px;}
.y29_c00164{bottom:3.120150px;}
.y25_c00164{bottom:18.720000px;}
.y27_c00164{bottom:21.600000px;}
.y22_c00164{bottom:25.560000px;}
.y24_c00164{bottom:34.560000px;}
.y28_c00164{bottom:34.744500px;}
.y21_c00164{bottom:41.400000px;}
.y1_c00164{bottom:54.000000px;}
.y1f_c00164{bottom:76.725000px;}
.y23_c00164{bottom:103.365000px;}
.y1e_c00164{bottom:112.725000px;}
.y1d_c00164{bottom:148.725000px;}
.y1c_c00164{bottom:184.725000px;}
.y1b_c00164{bottom:220.725000px;}
.y1a_c00164{bottom:256.725000px;}
.y19_c00164{bottom:292.725000px;}
.y18_c00164{bottom:328.725000px;}
.y17_c00164{bottom:364.725000px;}
.y16_c00164{bottom:400.725000px;}
.y15_c00164{bottom:436.725000px;}
.y20_c00164{bottom:454.365000px;}
.y14_c00164{bottom:472.725000px;}
.y13_c00164{bottom:509.085000px;}
.y12_c00164{bottom:545.085000px;}
.y11_c00164{bottom:581.085000px;}
.y10_c00164{bottom:617.085000px;}
.yf_c00164{bottom:653.085000px;}
.ye_c00164{bottom:689.085000px;}
.yd_c00164{bottom:725.085000px;}
.yc_c00164{bottom:761.085000px;}
.yb_c00164{bottom:797.085000px;}
.y26_c00164{bottom:805.365000px;}
.ya_c00164{bottom:833.085000px;}
.y9_c00164{bottom:869.085000px;}
.y8_c00164{bottom:905.085000px;}
.y7_c00164{bottom:941.085000px;}
.y6_c00164{bottom:977.085000px;}
.y5_c00164{bottom:1013.085000px;}
.y4_c00164{bottom:1049.085000px;}
.y3_c00164{bottom:1085.085000px;}
.y2_c00164{bottom:1138.365000px;}
.h9_c00164{height:19.255500px;}
.h8_c00164{height:34.200000px;}
.h6_c00164{height:41.132160px;}
.ha_c00164{height:46.320000px;}
.h7_c00164{height:47.160000px;}
.h5_c00164{height:54.000000px;}
.h3_c00164{height:55.584000px;}
.h4_c00164{height:57.294676px;}
.h2_c00164{height:1201.365000px;}
.h0_c00164{height:1262.835000px;}
.h1_c00164{height:1263.000000px;}
.w6_c00164{width:25.020000px;}
.w3_c00164{width:595.800000px;}
.w5_c00164{width:601.920000px;}
.w4_c00164{width:654.840000px;}
.w2_c00164{width:863.955000px;}
.w0_c00164{width:892.935000px;}
.w1_c00164{width:893.250000px;}
.x0_c00164{left:0.000000px;}
.x1_c00164{left:14.490000px;}
.x2_c00164{left:113.040150px;}
.xa_c00164{left:123.210000px;}
.x7_c00164{left:124.290000px;}
.x5_c00164{left:129.330000px;}
.x6_c00164{left:130.666050px;}
.x9_c00164{left:139.272900px;}
.xb_c00164{left:140.483550px;}
.x8_c00164{left:145.266600px;}
.x3_c00164{left:161.513700px;}
.x4_c00164{left:225.970050px;}
.xc_c00164{left:759.915000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls2_c00164{letter-spacing:0.000000pt;}
.ls4_c00164{letter-spacing:0.179968pt;}
.ls5_c00164{letter-spacing:0.213120pt;}
.ls3_c00164{letter-spacing:0.355200pt;}
.ls6_c00164{letter-spacing:0.388352pt;}
.ls7_c00164{letter-spacing:0.639360pt;}
.ls0_c00164{letter-spacing:5.312000pt;}
.ls1_c00164{letter-spacing:5.475484pt;}
.ws0_c00164{word-spacing:-13.521280pt;}
.ws1_c00164{word-spacing:-13.379200pt;}
.ws2_c00164{word-spacing:0.000000pt;}
._2_c00164{margin-left:-0.994560pt;}
._1_c00164{width:0.936533pt;}
._0_c00164{width:5.312000pt;}
.fs2_c00164{font-size:47.360000pt;}
.fs3_c00164{font-size:53.333333pt;}
.fs0_c00164{font-size:64.000000pt;}
.fs1_c00164{font-size:65.969690pt;}
.y0_c00164{bottom:0.000000pt;}
.y29_c00164{bottom:2.773467pt;}
.y25_c00164{bottom:16.640000pt;}
.y27_c00164{bottom:19.200000pt;}
.y22_c00164{bottom:22.720000pt;}
.y24_c00164{bottom:30.720000pt;}
.y28_c00164{bottom:30.884000pt;}
.y21_c00164{bottom:36.800000pt;}
.y1_c00164{bottom:48.000000pt;}
.y1f_c00164{bottom:68.200000pt;}
.y23_c00164{bottom:91.880000pt;}
.y1e_c00164{bottom:100.200000pt;}
.y1d_c00164{bottom:132.200000pt;}
.y1c_c00164{bottom:164.200000pt;}
.y1b_c00164{bottom:196.200000pt;}
.y1a_c00164{bottom:228.200000pt;}
.y19_c00164{bottom:260.200000pt;}
.y18_c00164{bottom:292.200000pt;}
.y17_c00164{bottom:324.200000pt;}
.y16_c00164{bottom:356.200000pt;}
.y15_c00164{bottom:388.200000pt;}
.y20_c00164{bottom:403.880000pt;}
.y14_c00164{bottom:420.200000pt;}
.y13_c00164{bottom:452.520000pt;}
.y12_c00164{bottom:484.520000pt;}
.y11_c00164{bottom:516.520000pt;}
.y10_c00164{bottom:548.520000pt;}
.yf_c00164{bottom:580.520000pt;}
.ye_c00164{bottom:612.520000pt;}
.yd_c00164{bottom:644.520000pt;}
.yc_c00164{bottom:676.520000pt;}
.yb_c00164{bottom:708.520000pt;}
.y26_c00164{bottom:715.880000pt;}
.ya_c00164{bottom:740.520000pt;}
.y9_c00164{bottom:772.520000pt;}
.y8_c00164{bottom:804.520000pt;}
.y7_c00164{bottom:836.520000pt;}
.y6_c00164{bottom:868.520000pt;}
.y5_c00164{bottom:900.520000pt;}
.y4_c00164{bottom:932.520000pt;}
.y3_c00164{bottom:964.520000pt;}
.y2_c00164{bottom:1011.880000pt;}
.h9_c00164{height:17.116000pt;}
.h8_c00164{height:30.400000pt;}
.h6_c00164{height:36.561920pt;}
.ha_c00164{height:41.173333pt;}
.h7_c00164{height:41.920000pt;}
.h5_c00164{height:48.000000pt;}
.h3_c00164{height:49.408000pt;}
.h4_c00164{height:50.928601pt;}
.h2_c00164{height:1067.880000pt;}
.h0_c00164{height:1122.520000pt;}
.h1_c00164{height:1122.666667pt;}
.w6_c00164{width:22.240000pt;}
.w3_c00164{width:529.600000pt;}
.w5_c00164{width:535.040000pt;}
.w4_c00164{width:582.080000pt;}
.w2_c00164{width:767.960000pt;}
.w0_c00164{width:793.720000pt;}
.w1_c00164{width:794.000000pt;}
.x0_c00164{left:0.000000pt;}
.x1_c00164{left:12.880000pt;}
.x2_c00164{left:100.480133pt;}
.xa_c00164{left:109.520000pt;}
.x7_c00164{left:110.480000pt;}
.x5_c00164{left:114.960000pt;}
.x6_c00164{left:116.147600pt;}
.x9_c00164{left:123.798133pt;}
.xb_c00164{left:124.874267pt;}
.x8_c00164{left:129.125867pt;}
.x3_c00164{left:143.567733pt;}
.x4_c00164{left:200.862267pt;}
.xc_c00164{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7a89ebc70be2d6106177a4da.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;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_c00165;src:url('chunks/assets/font_d31ba401a46d35232e8577f5.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:0.787000;font-style:normal;font-weight:normal;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_4cf6278ea4bda3d0a0ab5e8d.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:0.787000;font-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_c00165{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls3_c00165{letter-spacing:0.000000px;}
.ls5_c00165{letter-spacing:0.202464px;}
.ls7_c00165{letter-spacing:0.318816px;}
.ls4_c00165{letter-spacing:0.399600px;}
.ls0_c00165{letter-spacing:0.560880px;}
.ls6_c00165{letter-spacing:0.584496px;}
.ls1_c00165{letter-spacing:5.976000px;}
.ls2_c00165{letter-spacing:6.159920px;}
.sc__c00165{text-shadow:none;}
.sc1_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00165{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc1_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00165{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00165{word-spacing:-16.974000px;}
.ws0_c00165{word-spacing:-16.731936px;}
.ws2_c00165{word-spacing:0.000000px;}
._1_c00165{margin-left:-1.118880px;}
._2_c00165{width:1.180800px;}
._0_c00165{width:5.976000px;}
.fc1_c00165{color:transparent;}
.fc0_c00165{color:rgb(0,0,0);}
.fs2_c00165{font-size:53.280000px;}
.fs3_c00165{font-size:59.040000px;}
.fs4_c00165{font-size:60.000000px;}
.fs0_c00165{font-size:72.000000px;}
.fs1_c00165{font-size:74.215901px;}
.y0_c00165{bottom:0.000000px;}
.y25_c00165{bottom:3.120150px;}
.y21_c00165{bottom:13.320000px;}
.y20_c00165{bottom:30.960000px;}
.y23_c00165{bottom:34.560000px;}
.y24_c00165{bottom:34.744500px;}
.y1_c00165{bottom:54.000000px;}
.y1e_c00165{bottom:112.725000px;}
.y1d_c00165{bottom:148.725000px;}
.y1c_c00165{bottom:184.725000px;}
.y1b_c00165{bottom:220.725000px;}
.y1a_c00165{bottom:256.725000px;}
.y19_c00165{bottom:292.725000px;}
.y1f_c00165{bottom:328.365000px;}
.y18_c00165{bottom:328.725000px;}
.y17_c00165{bottom:364.725000px;}
.y16_c00165{bottom:400.725000px;}
.y15_c00165{bottom:436.725000px;}
.y14_c00165{bottom:472.725000px;}
.y13_c00165{bottom:509.085000px;}
.y12_c00165{bottom:545.085000px;}
.y11_c00165{bottom:581.085000px;}
.y10_c00165{bottom:617.085000px;}
.yf_c00165{bottom:653.085000px;}
.ye_c00165{bottom:689.085000px;}
.yd_c00165{bottom:725.085000px;}
.yc_c00165{bottom:761.085000px;}
.y22_c00165{bottom:785.205000px;}
.yb_c00165{bottom:797.085000px;}
.ya_c00165{bottom:833.085000px;}
.y9_c00165{bottom:869.085000px;}
.y8_c00165{bottom:905.085000px;}
.y7_c00165{bottom:941.085000px;}
.y6_c00165{bottom:977.085000px;}
.y5_c00165{bottom:1013.085000px;}
.y4_c00165{bottom:1049.085000px;}
.y3_c00165{bottom:1085.085000px;}
.y2_c00165{bottom:1138.365000px;}
.h9_c00165{height:19.255500px;}
.h8_c00165{height:41.132160px;}
.h5_c00165{height:45.000000px;}
.h6_c00165{height:45.578880px;}
.ha_c00165{height:46.320000px;}
.h7_c00165{height:47.160000px;}
.h3_c00165{height:55.584000px;}
.h4_c00165{height:57.294676px;}
.h2_c00165{height:1201.365000px;}
.h0_c00165{height:1262.835000px;}
.h1_c00165{height:1263.000000px;}
.w5_c00165{width:25.020000px;}
.w4_c00165{width:644.400000px;}
.w3_c00165{width:648.720000px;}
.w2_c00165{width:863.955000px;}
.w0_c00165{width:892.935000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:14.490000px;}
.x2_c00165{left:113.040150px;}
.x7_c00165{left:119.564700px;}
.x5_c00165{left:127.170000px;}
.x8_c00165{left:130.050000px;}
.x6_c00165{left:148.141350px;}
.x9_c00165{left:160.240800px;}
.x3_c00165{left:161.513700px;}
.x4_c00165{left:225.970050px;}
.xa_c00165{left:759.915000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls3_c00165{letter-spacing:0.000000pt;}
.ls5_c00165{letter-spacing:0.179968pt;}
.ls7_c00165{letter-spacing:0.283392pt;}
.ls4_c00165{letter-spacing:0.355200pt;}
.ls0_c00165{letter-spacing:0.498560pt;}
.ls6_c00165{letter-spacing:0.519552pt;}
.ls1_c00165{letter-spacing:5.312000pt;}
.ls2_c00165{letter-spacing:5.475484pt;}
.ws1_c00165{word-spacing:-15.088000pt;}
.ws0_c00165{word-spacing:-14.872832pt;}
.ws2_c00165{word-spacing:0.000000pt;}
._1_c00165{margin-left:-0.994560pt;}
._2_c00165{width:1.049600pt;}
._0_c00165{width:5.312000pt;}
.fs2_c00165{font-size:47.360000pt;}
.fs3_c00165{font-size:52.480000pt;}
.fs4_c00165{font-size:53.333333pt;}
.fs0_c00165{font-size:64.000000pt;}
.fs1_c00165{font-size:65.969690pt;}
.y0_c00165{bottom:0.000000pt;}
.y25_c00165{bottom:2.773467pt;}
.y21_c00165{bottom:11.840000pt;}
.y20_c00165{bottom:27.520000pt;}
.y23_c00165{bottom:30.720000pt;}
.y24_c00165{bottom:30.884000pt;}
.y1_c00165{bottom:48.000000pt;}
.y1e_c00165{bottom:100.200000pt;}
.y1d_c00165{bottom:132.200000pt;}
.y1c_c00165{bottom:164.200000pt;}
.y1b_c00165{bottom:196.200000pt;}
.y1a_c00165{bottom:228.200000pt;}
.y19_c00165{bottom:260.200000pt;}
.y1f_c00165{bottom:291.880000pt;}
.y18_c00165{bottom:292.200000pt;}
.y17_c00165{bottom:324.200000pt;}
.y16_c00165{bottom:356.200000pt;}
.y15_c00165{bottom:388.200000pt;}
.y14_c00165{bottom:420.200000pt;}
.y13_c00165{bottom:452.520000pt;}
.y12_c00165{bottom:484.520000pt;}
.y11_c00165{bottom:516.520000pt;}
.y10_c00165{bottom:548.520000pt;}
.yf_c00165{bottom:580.520000pt;}
.ye_c00165{bottom:612.520000pt;}
.yd_c00165{bottom:644.520000pt;}
.yc_c00165{bottom:676.520000pt;}
.y22_c00165{bottom:697.960000pt;}
.yb_c00165{bottom:708.520000pt;}
.ya_c00165{bottom:740.520000pt;}
.y9_c00165{bottom:772.520000pt;}
.y8_c00165{bottom:804.520000pt;}
.y7_c00165{bottom:836.520000pt;}
.y6_c00165{bottom:868.520000pt;}
.y5_c00165{bottom:900.520000pt;}
.y4_c00165{bottom:932.520000pt;}
.y3_c00165{bottom:964.520000pt;}
.y2_c00165{bottom:1011.880000pt;}
.h9_c00165{height:17.116000pt;}
.h8_c00165{height:36.561920pt;}
.h5_c00165{height:40.000000pt;}
.h6_c00165{height:40.514560pt;}
.ha_c00165{height:41.173333pt;}
.h7_c00165{height:41.920000pt;}
.h3_c00165{height:49.408000pt;}
.h4_c00165{height:50.928601pt;}
.h2_c00165{height:1067.880000pt;}
.h0_c00165{height:1122.520000pt;}
.h1_c00165{height:1122.666667pt;}
.w5_c00165{width:22.240000pt;}
.w4_c00165{width:572.800000pt;}
.w3_c00165{width:576.640000pt;}
.w2_c00165{width:767.960000pt;}
.w0_c00165{width:793.720000pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:12.880000pt;}
.x2_c00165{left:100.480133pt;}
.x7_c00165{left:106.279733pt;}
.x5_c00165{left:113.040000pt;}
.x8_c00165{left:115.600000pt;}
.x6_c00165{left:131.681200pt;}
.x9_c00165{left:142.436267pt;}
.x3_c00165{left:143.567733pt;}
.x4_c00165{left:200.862267pt;}
.xa_c00165{left:675.480000pt;}
}





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




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_035df1ee9e80a283c25aca17.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.134000;font-style:normal;font-weight:normal;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_8d614d260df7fbe417fb4171.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;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:ff3_c00167;src:url('chunks/assets/font_fdb184932610b7249a66a128.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:0.787000;font-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_c00167{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00167{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00167{vertical-align:-24.480000px;}
.v0_c00167{vertical-align:0.000000px;}
.v1_c00167{vertical-align:30.240000px;}
.ls4_c00167{letter-spacing:0.000000px;}
.ls7_c00167{letter-spacing:0.202464px;}
.ls9_c00167{letter-spacing:0.239760px;}
.ls5_c00167{letter-spacing:0.265680px;}
.ls0_c00167{letter-spacing:0.324240px;}
.ls6_c00167{letter-spacing:0.399600px;}
.ls1_c00167{letter-spacing:0.399720px;}
.ls8_c00167{letter-spacing:0.494278px;}
.lsa_c00167{letter-spacing:0.719280px;}
.ls2_c00167{letter-spacing:5.976000px;}
.ls3_c00167{letter-spacing:6.159920px;}
.sc__c00167{text-shadow:none;}
.sc1_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00167{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc1_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00167{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00167{word-spacing:-15.761973px;}
.ws2_c00167{word-spacing:-15.531120px;}
.ws0_c00167{word-spacing:-10.008000px;}
.ws3_c00167{word-spacing:0.000000px;}
._f_c00167{margin-left:-1.440720px;}
._b_c00167{width:1.080000px;}
._a_c00167{width:2.304000px;}
._d_c00167{width:3.816000px;}
._0_c00167{width:4.896000px;}
._1_c00167{width:6.048000px;}
._3_c00167{width:7.056000px;}
._4_c00167{width:8.136000px;}
._e_c00167{width:12.096000px;}
._6_c00167{width:15.480000px;}
._2_c00167{width:16.488000px;}
._5_c00167{width:17.640000px;}
._c_c00167{width:21.312000px;}
._8_c00167{width:24.075514px;}
._7_c00167{width:25.604486px;}
._9_c00167{width:28.872000px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs3_c00167{font-size:36.000000px;}
.fs2_c00167{font-size:41.760000px;}
.fs5_c00167{font-size:53.280000px;}
.fs6_c00167{font-size:54.919767px;}
.fs4_c00167{font-size:59.040000px;}
.fs7_c00167{font-size:60.000000px;}
.fs0_c00167{font-size:72.000000px;}
.fs1_c00167{font-size:74.215901px;}
.y0_c00167{bottom:0.000000px;}
.y2c_c00167{bottom:3.120150px;}
.y2a_c00167{bottom:25.560000px;}
.y2b_c00167{bottom:34.744500px;}
.y29_c00167{bottom:41.040000px;}
.y1_c00167{bottom:54.000000px;}
.y27_c00167{bottom:61.605000px;}
.y26_c00167{bottom:88.245000px;}
.y25_c00167{bottom:175.725000px;}
.y24_c00167{bottom:211.725000px;}
.y28_c00167{bottom:220.365000px;}
.y23_c00167{bottom:247.725000px;}
.y22_c00167{bottom:283.725000px;}
.y21_c00167{bottom:319.725000px;}
.y20_c00167{bottom:355.725000px;}
.y1f_c00167{bottom:391.725000px;}
.y1e_c00167{bottom:427.725000px;}
.y1d_c00167{bottom:463.725000px;}
.y1c_c00167{bottom:499.725000px;}
.y1b_c00167{bottom:535.725000px;}
.y1a_c00167{bottom:571.725000px;}
.y19_c00167{bottom:592.965000px;}
.y18_c00167{bottom:613.845000px;}
.y17_c00167{bottom:634.725000px;}
.y16_c00167{bottom:655.965000px;}
.y15_c00167{bottom:676.845000px;}
.y14_c00167{bottom:697.725000px;}
.y13_c00167{bottom:718.965000px;}
.y12_c00167{bottom:739.845000px;}
.y11_c00167{bottom:775.845000px;}
.y10_c00167{bottom:797.085000px;}
.yf_c00167{bottom:817.965000px;}
.ye_c00167{bottom:838.845000px;}
.yd_c00167{bottom:860.085000px;}
.yc_c00167{bottom:880.965000px;}
.yb_c00167{bottom:901.845000px;}
.ya_c00167{bottom:923.085000px;}
.y9_c00167{bottom:943.965000px;}
.y8_c00167{bottom:964.845000px;}
.y7_c00167{bottom:1000.845000px;}
.y6_c00167{bottom:1022.085000px;}
.y5_c00167{bottom:1042.965000px;}
.y4_c00167{bottom:1063.845000px;}
.y3_c00167{bottom:1085.085000px;}
.y2_c00167{bottom:1138.365000px;}
.ha_c00167{height:19.255500px;}
.h6_c00167{height:32.616000px;}
.h9_c00167{height:42.398060px;}
.hb_c00167{height:46.320000px;}
.h8_c00167{height:48.271680px;}
.h7_c00167{height:53.640000px;}
.h4_c00167{height:57.294676px;}
.h3_c00167{height:65.232000px;}
.h5_c00167{height:68.074560px;}
.h2_c00167{height:1201.365000px;}
.h0_c00167{height:1262.835000px;}
.h1_c00167{height:1263.000000px;}
.w4_c00167{width:25.020000px;}
.w3_c00167{width:600.840000px;}
.w2_c00167{width:863.955000px;}
.w0_c00167{width:892.935000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:14.490000px;}
.x10_c00167{left:19.623750px;}
.x2_c00167{left:113.040150px;}
.xf_c00167{left:124.290000px;}
.x11_c00167{left:180.203550px;}
.x12_c00167{left:230.436300px;}
.x13_c00167{left:278.083350px;}
.x4_c00167{left:351.668400px;}
.x7_c00167{left:389.065800px;}
.x9_c00167{left:390.740100px;}
.x5_c00167{left:411.618450px;}
.x8_c00167{left:439.086900px;}
.xa_c00167{left:459.822900px;}
.x6_c00167{left:462.224550px;}
.xb_c00167{left:484.081800px;}
.xc_c00167{left:592.904250px;}
.xd_c00167{left:620.579550px;}
.x3_c00167{left:627.219300px;}
.xe_c00167{left:745.386150px;}
.x14_c00167{left:759.915000px;}
@media print{
.v2_c00167{vertical-align:-21.760000pt;}
.v0_c00167{vertical-align:0.000000pt;}
.v1_c00167{vertical-align:26.880000pt;}
.ls4_c00167{letter-spacing:0.000000pt;}
.ls7_c00167{letter-spacing:0.179968pt;}
.ls9_c00167{letter-spacing:0.213120pt;}
.ls5_c00167{letter-spacing:0.236160pt;}
.ls0_c00167{letter-spacing:0.288213pt;}
.ls6_c00167{letter-spacing:0.355200pt;}
.ls1_c00167{letter-spacing:0.355307pt;}
.ls8_c00167{letter-spacing:0.439358pt;}
.lsa_c00167{letter-spacing:0.639360pt;}
.ls2_c00167{letter-spacing:5.312000pt;}
.ls3_c00167{letter-spacing:5.475484pt;}
.ws1_c00167{word-spacing:-14.010643pt;}
.ws2_c00167{word-spacing:-13.805440pt;}
.ws0_c00167{word-spacing:-8.896000pt;}
.ws3_c00167{word-spacing:0.000000pt;}
._f_c00167{margin-left:-1.280640pt;}
._b_c00167{width:0.960000pt;}
._a_c00167{width:2.048000pt;}
._d_c00167{width:3.392000pt;}
._0_c00167{width:4.352000pt;}
._1_c00167{width:5.376000pt;}
._3_c00167{width:6.272000pt;}
._4_c00167{width:7.232000pt;}
._e_c00167{width:10.752000pt;}
._6_c00167{width:13.760000pt;}
._2_c00167{width:14.656000pt;}
._5_c00167{width:15.680000pt;}
._c_c00167{width:18.944000pt;}
._8_c00167{width:21.400457pt;}
._7_c00167{width:22.759543pt;}
._9_c00167{width:25.664000pt;}
.fs3_c00167{font-size:32.000000pt;}
.fs2_c00167{font-size:37.120000pt;}
.fs5_c00167{font-size:47.360000pt;}
.fs6_c00167{font-size:48.817571pt;}
.fs4_c00167{font-size:52.480000pt;}
.fs7_c00167{font-size:53.333333pt;}
.fs0_c00167{font-size:64.000000pt;}
.fs1_c00167{font-size:65.969690pt;}
.y0_c00167{bottom:0.000000pt;}
.y2c_c00167{bottom:2.773467pt;}
.y2a_c00167{bottom:22.720000pt;}
.y2b_c00167{bottom:30.884000pt;}
.y29_c00167{bottom:36.480000pt;}
.y1_c00167{bottom:48.000000pt;}
.y27_c00167{bottom:54.760000pt;}
.y26_c00167{bottom:78.440000pt;}
.y25_c00167{bottom:156.200000pt;}
.y24_c00167{bottom:188.200000pt;}
.y28_c00167{bottom:195.880000pt;}
.y23_c00167{bottom:220.200000pt;}
.y22_c00167{bottom:252.200000pt;}
.y21_c00167{bottom:284.200000pt;}
.y20_c00167{bottom:316.200000pt;}
.y1f_c00167{bottom:348.200000pt;}
.y1e_c00167{bottom:380.200000pt;}
.y1d_c00167{bottom:412.200000pt;}
.y1c_c00167{bottom:444.200000pt;}
.y1b_c00167{bottom:476.200000pt;}
.y1a_c00167{bottom:508.200000pt;}
.y19_c00167{bottom:527.080000pt;}
.y18_c00167{bottom:545.640000pt;}
.y17_c00167{bottom:564.200000pt;}
.y16_c00167{bottom:583.080000pt;}
.y15_c00167{bottom:601.640000pt;}
.y14_c00167{bottom:620.200000pt;}
.y13_c00167{bottom:639.080000pt;}
.y12_c00167{bottom:657.640000pt;}
.y11_c00167{bottom:689.640000pt;}
.y10_c00167{bottom:708.520000pt;}
.yf_c00167{bottom:727.080000pt;}
.ye_c00167{bottom:745.640000pt;}
.yd_c00167{bottom:764.520000pt;}
.yc_c00167{bottom:783.080000pt;}
.yb_c00167{bottom:801.640000pt;}
.ya_c00167{bottom:820.520000pt;}
.y9_c00167{bottom:839.080000pt;}
.y8_c00167{bottom:857.640000pt;}
.y7_c00167{bottom:889.640000pt;}
.y6_c00167{bottom:908.520000pt;}
.y5_c00167{bottom:927.080000pt;}
.y4_c00167{bottom:945.640000pt;}
.y3_c00167{bottom:964.520000pt;}
.y2_c00167{bottom:1011.880000pt;}
.ha_c00167{height:17.116000pt;}
.h6_c00167{height:28.992000pt;}
.h9_c00167{height:37.687165pt;}
.hb_c00167{height:41.173333pt;}
.h8_c00167{height:42.908160pt;}
.h7_c00167{height:47.680000pt;}
.h4_c00167{height:50.928601pt;}
.h3_c00167{height:57.984000pt;}
.h5_c00167{height:60.510720pt;}
.h2_c00167{height:1067.880000pt;}
.h0_c00167{height:1122.520000pt;}
.h1_c00167{height:1122.666667pt;}
.w4_c00167{width:22.240000pt;}
.w3_c00167{width:534.080000pt;}
.w2_c00167{width:767.960000pt;}
.w0_c00167{width:793.720000pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:12.880000pt;}
.x10_c00167{left:17.443333pt;}
.x2_c00167{left:100.480133pt;}
.xf_c00167{left:110.480000pt;}
.x11_c00167{left:160.180933pt;}
.x12_c00167{left:204.832267pt;}
.x13_c00167{left:247.185200pt;}
.x4_c00167{left:312.594133pt;}
.x7_c00167{left:345.836267pt;}
.x9_c00167{left:347.324533pt;}
.x5_c00167{left:365.883067pt;}
.x8_c00167{left:390.299467pt;}
.xa_c00167{left:408.731467pt;}
.x6_c00167{left:410.866267pt;}
.xb_c00167{left:430.294933pt;}
.xc_c00167{left:527.026000pt;}
.xd_c00167{left:551.626267pt;}
.x3_c00167{left:557.528267pt;}
.xe_c00167{left:662.565467pt;}
.x14_c00167{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a19320934d18cb27eb6f3713.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.134000;font-style:normal;font-weight:normal;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_eb64d521cbf822f8b1cfbb0b.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;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:ff3_c00168;src:url('chunks/assets/font_61532629081481a4727b9568.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:0.787000;font-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_c00168{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00168{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls6_c00168{letter-spacing:0.000000px;}
.ls7_c00168{letter-spacing:0.202464px;}
.ls1_c00168{letter-spacing:0.238560px;}
.lsb_c00168{letter-spacing:0.239760px;}
.ls9_c00168{letter-spacing:0.319680px;}
.ls2_c00168{letter-spacing:0.399600px;}
.ls0_c00168{letter-spacing:0.399720px;}
.ls3_c00168{letter-spacing:0.400320px;}
.lsa_c00168{letter-spacing:0.436896px;}
.lsc_c00168{letter-spacing:0.494278px;}
.ls8_c00168{letter-spacing:4.880448px;}
.ls4_c00168{letter-spacing:5.976000px;}
.ls5_c00168{letter-spacing:6.159920px;}
.sc__c00168{text-shadow:none;}
.sc1_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00168{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc1_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00168{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00168{word-spacing:-15.761973px;}
.ws0_c00168{word-spacing:-15.211440px;}
.ws1_c00168{word-spacing:-15.051600px;}
.ws3_c00168{word-spacing:0.000000px;}
._1_c00168{margin-left:-1.077240px;}
._0_c00168{width:1.014000px;}
.fc0_c00168{color:rgb(0,0,0);}
.fs2_c00168{font-size:53.280000px;}
.fs3_c00168{font-size:54.919767px;}
.fs4_c00168{font-size:60.000000px;}
.fs0_c00168{font-size:72.000000px;}
.fs1_c00168{font-size:74.215901px;}
.y0_c00168{bottom:0.000000px;}
.y22_c00168{bottom:3.120150px;}
.y1f_c00168{bottom:19.080000px;}
.y1e_c00168{bottom:34.560000px;}
.y21_c00168{bottom:34.744500px;}
.y1_c00168{bottom:54.000000px;}
.y1c_c00168{bottom:121.725000px;}
.y1b_c00168{bottom:157.725000px;}
.y1d_c00168{bottom:171.405000px;}
.y1a_c00168{bottom:193.725000px;}
.y19_c00168{bottom:229.725000px;}
.y18_c00168{bottom:265.725000px;}
.y17_c00168{bottom:301.725000px;}
.y16_c00168{bottom:337.725000px;}
.y15_c00168{bottom:373.725000px;}
.y14_c00168{bottom:409.725000px;}
.y20_c00168{bottom:490.365000px;}
.y13_c00168{bottom:509.085000px;}
.y12_c00168{bottom:545.085000px;}
.y11_c00168{bottom:581.085000px;}
.y10_c00168{bottom:617.085000px;}
.yf_c00168{bottom:653.085000px;}
.ye_c00168{bottom:689.085000px;}
.yd_c00168{bottom:725.085000px;}
.yc_c00168{bottom:761.085000px;}
.yb_c00168{bottom:797.085000px;}
.ya_c00168{bottom:833.085000px;}
.y9_c00168{bottom:869.085000px;}
.y8_c00168{bottom:905.085000px;}
.y7_c00168{bottom:941.085000px;}
.y6_c00168{bottom:977.085000px;}
.y5_c00168{bottom:1013.085000px;}
.y4_c00168{bottom:1049.085000px;}
.y3_c00168{bottom:1085.085000px;}
.y2_c00168{bottom:1138.365000px;}
.h8_c00168{height:19.255500px;}
.h7_c00168{height:42.398060px;}
.h9_c00168{height:46.320000px;}
.h5_c00168{height:47.160000px;}
.h6_c00168{height:48.271680px;}
.h4_c00168{height:57.294676px;}
.h3_c00168{height:65.232000px;}
.h2_c00168{height:1201.365000px;}
.h0_c00168{height:1262.835000px;}
.h1_c00168{height:1263.000000px;}
.w5_c00168{width:25.020000px;}
.w3_c00168{width:597.600000px;}
.w4_c00168{width:634.680000px;}
.w2_c00168{width:863.955000px;}
.w0_c00168{width:892.935000px;}
.w1_c00168{width:893.250000px;}
.x0_c00168{left:0.000000px;}
.x8_c00168{left:12.652950px;}
.x1_c00168{left:14.490000px;}
.x5_c00168{left:35.016150px;}
.x2_c00168{left:113.040150px;}
.x6_c00168{left:114.698100px;}
.x7_c00168{left:124.290000px;}
.x4_c00168{left:154.530000px;}
.x9_c00168{left:173.232750px;}
.xa_c00168{left:223.465500px;}
.x3_c00168{left:627.219300px;}
.xb_c00168{left:759.915000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls6_c00168{letter-spacing:0.000000pt;}
.ls7_c00168{letter-spacing:0.179968pt;}
.ls1_c00168{letter-spacing:0.212053pt;}
.lsb_c00168{letter-spacing:0.213120pt;}
.ls9_c00168{letter-spacing:0.284160pt;}
.ls2_c00168{letter-spacing:0.355200pt;}
.ls0_c00168{letter-spacing:0.355307pt;}
.ls3_c00168{letter-spacing:0.355840pt;}
.lsa_c00168{letter-spacing:0.388352pt;}
.lsc_c00168{letter-spacing:0.439358pt;}
.ls8_c00168{letter-spacing:4.338176pt;}
.ls4_c00168{letter-spacing:5.312000pt;}
.ls5_c00168{letter-spacing:5.475484pt;}
.ws2_c00168{word-spacing:-14.010643pt;}
.ws0_c00168{word-spacing:-13.521280pt;}
.ws1_c00168{word-spacing:-13.379200pt;}
.ws3_c00168{word-spacing:0.000000pt;}
._1_c00168{margin-left:-0.957547pt;}
._0_c00168{width:0.901333pt;}
.fs2_c00168{font-size:47.360000pt;}
.fs3_c00168{font-size:48.817571pt;}
.fs4_c00168{font-size:53.333333pt;}
.fs0_c00168{font-size:64.000000pt;}
.fs1_c00168{font-size:65.969690pt;}
.y0_c00168{bottom:0.000000pt;}
.y22_c00168{bottom:2.773467pt;}
.y1f_c00168{bottom:16.960000pt;}
.y1e_c00168{bottom:30.720000pt;}
.y21_c00168{bottom:30.884000pt;}
.y1_c00168{bottom:48.000000pt;}
.y1c_c00168{bottom:108.200000pt;}
.y1b_c00168{bottom:140.200000pt;}
.y1d_c00168{bottom:152.360000pt;}
.y1a_c00168{bottom:172.200000pt;}
.y19_c00168{bottom:204.200000pt;}
.y18_c00168{bottom:236.200000pt;}
.y17_c00168{bottom:268.200000pt;}
.y16_c00168{bottom:300.200000pt;}
.y15_c00168{bottom:332.200000pt;}
.y14_c00168{bottom:364.200000pt;}
.y20_c00168{bottom:435.880000pt;}
.y13_c00168{bottom:452.520000pt;}
.y12_c00168{bottom:484.520000pt;}
.y11_c00168{bottom:516.520000pt;}
.y10_c00168{bottom:548.520000pt;}
.yf_c00168{bottom:580.520000pt;}
.ye_c00168{bottom:612.520000pt;}
.yd_c00168{bottom:644.520000pt;}
.yc_c00168{bottom:676.520000pt;}
.yb_c00168{bottom:708.520000pt;}
.ya_c00168{bottom:740.520000pt;}
.y9_c00168{bottom:772.520000pt;}
.y8_c00168{bottom:804.520000pt;}
.y7_c00168{bottom:836.520000pt;}
.y6_c00168{bottom:868.520000pt;}
.y5_c00168{bottom:900.520000pt;}
.y4_c00168{bottom:932.520000pt;}
.y3_c00168{bottom:964.520000pt;}
.y2_c00168{bottom:1011.880000pt;}
.h8_c00168{height:17.116000pt;}
.h7_c00168{height:37.687165pt;}
.h9_c00168{height:41.173333pt;}
.h5_c00168{height:41.920000pt;}
.h6_c00168{height:42.908160pt;}
.h4_c00168{height:50.928601pt;}
.h3_c00168{height:57.984000pt;}
.h2_c00168{height:1067.880000pt;}
.h0_c00168{height:1122.520000pt;}
.h1_c00168{height:1122.666667pt;}
.w5_c00168{width:22.240000pt;}
.w3_c00168{width:531.200000pt;}
.w4_c00168{width:564.160000pt;}
.w2_c00168{width:767.960000pt;}
.w0_c00168{width:793.720000pt;}
.w1_c00168{width:794.000000pt;}
.x0_c00168{left:0.000000pt;}
.x8_c00168{left:11.247067pt;}
.x1_c00168{left:12.880000pt;}
.x5_c00168{left:31.125467pt;}
.x2_c00168{left:100.480133pt;}
.x6_c00168{left:101.953867pt;}
.x7_c00168{left:110.480000pt;}
.x4_c00168{left:137.360000pt;}
.x9_c00168{left:153.984667pt;}
.xa_c00168{left:198.636000pt;}
.x3_c00168{left:557.528267pt;}
.xb_c00168{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8fbfc5ae7ad53cdfc907f964.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.134000;font-style:normal;font-weight:normal;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_39e3b4e5882bff5042d72101.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;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:ff3_c00169;src:url('chunks/assets/font_15c9ab2a21e8f38b451df68d.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:0.787000;font-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_c00169{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls6_c00169{letter-spacing:0.000000px;}
.ls3_c00169{letter-spacing:0.200160px;}
.ls7_c00169{letter-spacing:0.202464px;}
.ls1_c00169{letter-spacing:0.238560px;}
.lsa_c00169{letter-spacing:0.239760px;}
.ls9_c00169{letter-spacing:0.319680px;}
.ls2_c00169{letter-spacing:0.399600px;}
.ls0_c00169{letter-spacing:0.399720px;}
.lsb_c00169{letter-spacing:0.436896px;}
.ls8_c00169{letter-spacing:4.880448px;}
.ls4_c00169{letter-spacing:5.976000px;}
.ls5_c00169{letter-spacing:6.159920px;}
.sc__c00169{text-shadow:none;}
.sc1_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00169{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc1_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00169{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00169{word-spacing:-15.211440px;}
.ws1_c00169{word-spacing:-15.051600px;}
.ws2_c00169{word-spacing:0.000000px;}
._1_c00169{margin-left:-1.197960px;}
._0_c00169{width:1.014000px;}
.fc0_c00169{color:rgb(0,0,0);}
.fs2_c00169{font-size:53.280000px;}
.fs3_c00169{font-size:60.000000px;}
.fs0_c00169{font-size:72.000000px;}
.fs1_c00169{font-size:74.215901px;}
.y0_c00169{bottom:0.000000px;}
.y29_c00169{bottom:3.120150px;}
.y22_c00169{bottom:18.720000px;}
.y27_c00169{bottom:25.560000px;}
.y24_c00169{bottom:34.559850px;}
.y21_c00169{bottom:34.560000px;}
.y28_c00169{bottom:34.744500px;}
.y26_c00169{bottom:41.400000px;}
.y1_c00169{bottom:54.000000px;}
.y1f_c00169{bottom:76.725000px;}
.y1e_c00169{bottom:112.725000px;}
.y25_c00169{bottom:114.885000px;}
.y1d_c00169{bottom:148.725000px;}
.y1c_c00169{bottom:184.725000px;}
.y1b_c00169{bottom:220.725000px;}
.y1a_c00169{bottom:256.725000px;}
.y19_c00169{bottom:292.725000px;}
.y18_c00169{bottom:328.725000px;}
.y17_c00169{bottom:364.725000px;}
.y16_c00169{bottom:400.725000px;}
.y15_c00169{bottom:436.725000px;}
.y20_c00169{bottom:469.125000px;}
.y14_c00169{bottom:472.725000px;}
.y13_c00169{bottom:509.085000px;}
.y12_c00169{bottom:545.085000px;}
.y11_c00169{bottom:581.085000px;}
.y10_c00169{bottom:617.085000px;}
.yf_c00169{bottom:653.085000px;}
.ye_c00169{bottom:689.085000px;}
.yd_c00169{bottom:725.085000px;}
.yc_c00169{bottom:761.085000px;}
.yb_c00169{bottom:797.085000px;}
.y23_c00169{bottom:821.205000px;}
.ya_c00169{bottom:833.085000px;}
.y9_c00169{bottom:869.085000px;}
.y8_c00169{bottom:905.085000px;}
.y7_c00169{bottom:941.085000px;}
.y6_c00169{bottom:977.085000px;}
.y5_c00169{bottom:1013.085000px;}
.y4_c00169{bottom:1049.085000px;}
.y3_c00169{bottom:1085.085000px;}
.y2_c00169{bottom:1138.365000px;}
.h8_c00169{height:19.255500px;}
.h9_c00169{height:46.320000px;}
.h5_c00169{height:47.160000px;}
.h6_c00169{height:48.271680px;}
.h7_c00169{height:54.000000px;}
.h4_c00169{height:57.294676px;}
.h3_c00169{height:65.232000px;}
.h2_c00169{height:1201.365000px;}
.h0_c00169{height:1262.835000px;}
.h1_c00169{height:1263.000000px;}
.w6_c00169{width:25.020000px;}
.w4_c00169{width:597.240000px;}
.w3_c00169{width:597.600000px;}
.w5_c00169{width:664.560000px;}
.w2_c00169{width:863.955000px;}
.w0_c00169{width:892.935000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:14.490000px;}
.x8_c00169{left:36.532800px;}
.x9_c00169{left:64.120650px;}
.x5_c00169{left:102.143250px;}
.x2_c00169{left:113.040150px;}
.x6_c00169{left:118.450950px;}
.x7_c00169{left:151.290000px;}
.x4_c00169{left:157.410000px;}
.x3_c00169{left:627.219300px;}
.xa_c00169{left:759.915000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls6_c00169{letter-spacing:0.000000pt;}
.ls3_c00169{letter-spacing:0.177920pt;}
.ls7_c00169{letter-spacing:0.179968pt;}
.ls1_c00169{letter-spacing:0.212053pt;}
.lsa_c00169{letter-spacing:0.213120pt;}
.ls9_c00169{letter-spacing:0.284160pt;}
.ls2_c00169{letter-spacing:0.355200pt;}
.ls0_c00169{letter-spacing:0.355307pt;}
.lsb_c00169{letter-spacing:0.388352pt;}
.ls8_c00169{letter-spacing:4.338176pt;}
.ls4_c00169{letter-spacing:5.312000pt;}
.ls5_c00169{letter-spacing:5.475484pt;}
.ws0_c00169{word-spacing:-13.521280pt;}
.ws1_c00169{word-spacing:-13.379200pt;}
.ws2_c00169{word-spacing:0.000000pt;}
._1_c00169{margin-left:-1.064853pt;}
._0_c00169{width:0.901333pt;}
.fs2_c00169{font-size:47.360000pt;}
.fs3_c00169{font-size:53.333333pt;}
.fs0_c00169{font-size:64.000000pt;}
.fs1_c00169{font-size:65.969690pt;}
.y0_c00169{bottom:0.000000pt;}
.y29_c00169{bottom:2.773467pt;}
.y22_c00169{bottom:16.640000pt;}
.y27_c00169{bottom:22.720000pt;}
.y24_c00169{bottom:30.719867pt;}
.y21_c00169{bottom:30.720000pt;}
.y28_c00169{bottom:30.884000pt;}
.y26_c00169{bottom:36.800000pt;}
.y1_c00169{bottom:48.000000pt;}
.y1f_c00169{bottom:68.200000pt;}
.y1e_c00169{bottom:100.200000pt;}
.y25_c00169{bottom:102.120000pt;}
.y1d_c00169{bottom:132.200000pt;}
.y1c_c00169{bottom:164.200000pt;}
.y1b_c00169{bottom:196.200000pt;}
.y1a_c00169{bottom:228.200000pt;}
.y19_c00169{bottom:260.200000pt;}
.y18_c00169{bottom:292.200000pt;}
.y17_c00169{bottom:324.200000pt;}
.y16_c00169{bottom:356.200000pt;}
.y15_c00169{bottom:388.200000pt;}
.y20_c00169{bottom:417.000000pt;}
.y14_c00169{bottom:420.200000pt;}
.y13_c00169{bottom:452.520000pt;}
.y12_c00169{bottom:484.520000pt;}
.y11_c00169{bottom:516.520000pt;}
.y10_c00169{bottom:548.520000pt;}
.yf_c00169{bottom:580.520000pt;}
.ye_c00169{bottom:612.520000pt;}
.yd_c00169{bottom:644.520000pt;}
.yc_c00169{bottom:676.520000pt;}
.yb_c00169{bottom:708.520000pt;}
.y23_c00169{bottom:729.960000pt;}
.ya_c00169{bottom:740.520000pt;}
.y9_c00169{bottom:772.520000pt;}
.y8_c00169{bottom:804.520000pt;}
.y7_c00169{bottom:836.520000pt;}
.y6_c00169{bottom:868.520000pt;}
.y5_c00169{bottom:900.520000pt;}
.y4_c00169{bottom:932.520000pt;}
.y3_c00169{bottom:964.520000pt;}
.y2_c00169{bottom:1011.880000pt;}
.h8_c00169{height:17.116000pt;}
.h9_c00169{height:41.173333pt;}
.h5_c00169{height:41.920000pt;}
.h6_c00169{height:42.908160pt;}
.h7_c00169{height:48.000000pt;}
.h4_c00169{height:50.928601pt;}
.h3_c00169{height:57.984000pt;}
.h2_c00169{height:1067.880000pt;}
.h0_c00169{height:1122.520000pt;}
.h1_c00169{height:1122.666667pt;}
.w6_c00169{width:22.240000pt;}
.w4_c00169{width:530.880000pt;}
.w3_c00169{width:531.200000pt;}
.w5_c00169{width:590.720000pt;}
.w2_c00169{width:767.960000pt;}
.w0_c00169{width:793.720000pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:12.880000pt;}
.x8_c00169{left:32.473600pt;}
.x9_c00169{left:56.996133pt;}
.x5_c00169{left:90.794000pt;}
.x2_c00169{left:100.480133pt;}
.x6_c00169{left:105.289733pt;}
.x7_c00169{left:134.480000pt;}
.x4_c00169{left:139.920000pt;}
.x3_c00169{left:557.528267pt;}
.xa_c00169{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_653baa69597a279878dabc54.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.134000;font-style:normal;font-weight:normal;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_39e3b4e5882bff5042d72101.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;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:ff3_c00170;src:url('chunks/assets/font_31c6de5e90f308cd3f789587.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:0.787000;font-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_c00170{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls8_c00170{letter-spacing:0.000000px;}
.ls5_c00170{letter-spacing:0.199560px;}
.ls1_c00170{letter-spacing:0.200160px;}
.ls9_c00170{letter-spacing:0.202464px;}
.ls4_c00170{letter-spacing:0.238560px;}
.lsd_c00170{letter-spacing:0.239760px;}
.lsb_c00170{letter-spacing:0.319680px;}
.ls2_c00170{letter-spacing:0.399600px;}
.ls0_c00170{letter-spacing:0.399720px;}
.lsc_c00170{letter-spacing:0.436896px;}
.ls3_c00170{letter-spacing:4.680960px;}
.lsa_c00170{letter-spacing:4.880448px;}
.ls6_c00170{letter-spacing:5.976000px;}
.ls7_c00170{letter-spacing:6.159920px;}
.sc__c00170{text-shadow:none;}
.sc1_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00170{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc1_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00170{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00170{word-spacing:-19.692288px;}
.ws0_c00170{word-spacing:-15.211440px;}
.ws1_c00170{word-spacing:-15.051600px;}
.ws3_c00170{word-spacing:0.000000px;}
._1_c00170{margin-left:-1.009680px;}
._0_c00170{width:1.014000px;}
.fc1_c00170{color:transparent;}
.fc0_c00170{color:rgb(0,0,0);}
.fs2_c00170{font-size:53.280000px;}
.fs3_c00170{font-size:60.000000px;}
.fs0_c00170{font-size:72.000000px;}
.fs1_c00170{font-size:74.215901px;}
.y0_c00170{bottom:0.000000px;}
.y28_c00170{bottom:3.120150px;}
.y26_c00170{bottom:12.960000px;}
.y21_c00170{bottom:25.560000px;}
.y23_c00170{bottom:25.920000px;}
.y25_c00170{bottom:28.800000px;}
.y27_c00170{bottom:34.744500px;}
.y20_c00170{bottom:41.399850px;}
.y22_c00170{bottom:41.400000px;}
.y1_c00170{bottom:54.000000px;}
.y1e_c00170{bottom:112.725000px;}
.y1d_c00170{bottom:148.725000px;}
.y1c_c00170{bottom:184.725000px;}
.y24_c00170{bottom:196.965000px;}
.y1b_c00170{bottom:220.725000px;}
.y1a_c00170{bottom:256.725000px;}
.y19_c00170{bottom:292.725000px;}
.y18_c00170{bottom:328.725000px;}
.y17_c00170{bottom:364.725000px;}
.y16_c00170{bottom:400.725000px;}
.y15_c00170{bottom:436.725000px;}
.y14_c00170{bottom:472.725000px;}
.y13_c00170{bottom:509.085000px;}
.y12_c00170{bottom:545.085000px;}
.y11_c00170{bottom:581.085000px;}
.y10_c00170{bottom:617.085000px;}
.yf_c00170{bottom:653.085000px;}
.ye_c00170{bottom:689.085000px;}
.yd_c00170{bottom:725.085000px;}
.yc_c00170{bottom:761.085000px;}
.yb_c00170{bottom:797.085000px;}
.y1f_c00170{bottom:832.365000px;}
.ya_c00170{bottom:833.085000px;}
.y9_c00170{bottom:869.085000px;}
.y8_c00170{bottom:905.085000px;}
.y7_c00170{bottom:941.085000px;}
.y6_c00170{bottom:977.085000px;}
.y5_c00170{bottom:1013.085000px;}
.y4_c00170{bottom:1049.085000px;}
.y3_c00170{bottom:1085.085000px;}
.y2_c00170{bottom:1138.365000px;}
.h8_c00170{height:19.255500px;}
.h7_c00170{height:41.400000px;}
.h9_c00170{height:46.320000px;}
.h6_c00170{height:48.271680px;}
.h5_c00170{height:54.000000px;}
.h4_c00170{height:57.294676px;}
.h3_c00170{height:65.232000px;}
.h2_c00170{height:1201.365000px;}
.h0_c00170{height:1262.835000px;}
.h1_c00170{height:1263.000000px;}
.w6_c00170{width:25.020000px;}
.w3_c00170{width:520.920000px;}
.w5_c00170{width:594.360000px;}
.w4_c00170{width:600.480000px;}
.w2_c00170{width:863.955000px;}
.w0_c00170{width:892.935000px;}
.w1_c00170{width:893.250000px;}
.x0_c00170{left:0.000000px;}
.xb_c00170{left:10.508100px;}
.x5_c00170{left:12.589200px;}
.x1_c00170{left:14.490000px;}
.x8_c00170{left:31.099050px;}
.x6_c00170{left:56.800800px;}
.x7_c00170{left:83.250000px;}
.x9_c00170{left:86.490000px;}
.xa_c00170{left:99.942600px;}
.x2_c00170{left:113.040150px;}
.x4_c00170{left:123.210000px;}
.x3_c00170{left:627.219300px;}
.xc_c00170{left:759.915000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls8_c00170{letter-spacing:0.000000pt;}
.ls5_c00170{letter-spacing:0.177387pt;}
.ls1_c00170{letter-spacing:0.177920pt;}
.ls9_c00170{letter-spacing:0.179968pt;}
.ls4_c00170{letter-spacing:0.212053pt;}
.lsd_c00170{letter-spacing:0.213120pt;}
.lsb_c00170{letter-spacing:0.284160pt;}
.ls2_c00170{letter-spacing:0.355200pt;}
.ls0_c00170{letter-spacing:0.355307pt;}
.lsc_c00170{letter-spacing:0.388352pt;}
.ls3_c00170{letter-spacing:4.160853pt;}
.lsa_c00170{letter-spacing:4.338176pt;}
.ls6_c00170{letter-spacing:5.312000pt;}
.ls7_c00170{letter-spacing:5.475484pt;}
.ws2_c00170{word-spacing:-17.504256pt;}
.ws0_c00170{word-spacing:-13.521280pt;}
.ws1_c00170{word-spacing:-13.379200pt;}
.ws3_c00170{word-spacing:0.000000pt;}
._1_c00170{margin-left:-0.897493pt;}
._0_c00170{width:0.901333pt;}
.fs2_c00170{font-size:47.360000pt;}
.fs3_c00170{font-size:53.333333pt;}
.fs0_c00170{font-size:64.000000pt;}
.fs1_c00170{font-size:65.969690pt;}
.y0_c00170{bottom:0.000000pt;}
.y28_c00170{bottom:2.773467pt;}
.y26_c00170{bottom:11.520000pt;}
.y21_c00170{bottom:22.720000pt;}
.y23_c00170{bottom:23.040000pt;}
.y25_c00170{bottom:25.600000pt;}
.y27_c00170{bottom:30.884000pt;}
.y20_c00170{bottom:36.799867pt;}
.y22_c00170{bottom:36.800000pt;}
.y1_c00170{bottom:48.000000pt;}
.y1e_c00170{bottom:100.200000pt;}
.y1d_c00170{bottom:132.200000pt;}
.y1c_c00170{bottom:164.200000pt;}
.y24_c00170{bottom:175.080000pt;}
.y1b_c00170{bottom:196.200000pt;}
.y1a_c00170{bottom:228.200000pt;}
.y19_c00170{bottom:260.200000pt;}
.y18_c00170{bottom:292.200000pt;}
.y17_c00170{bottom:324.200000pt;}
.y16_c00170{bottom:356.200000pt;}
.y15_c00170{bottom:388.200000pt;}
.y14_c00170{bottom:420.200000pt;}
.y13_c00170{bottom:452.520000pt;}
.y12_c00170{bottom:484.520000pt;}
.y11_c00170{bottom:516.520000pt;}
.y10_c00170{bottom:548.520000pt;}
.yf_c00170{bottom:580.520000pt;}
.ye_c00170{bottom:612.520000pt;}
.yd_c00170{bottom:644.520000pt;}
.yc_c00170{bottom:676.520000pt;}
.yb_c00170{bottom:708.520000pt;}
.y1f_c00170{bottom:739.880000pt;}
.ya_c00170{bottom:740.520000pt;}
.y9_c00170{bottom:772.520000pt;}
.y8_c00170{bottom:804.520000pt;}
.y7_c00170{bottom:836.520000pt;}
.y6_c00170{bottom:868.520000pt;}
.y5_c00170{bottom:900.520000pt;}
.y4_c00170{bottom:932.520000pt;}
.y3_c00170{bottom:964.520000pt;}
.y2_c00170{bottom:1011.880000pt;}
.h8_c00170{height:17.116000pt;}
.h7_c00170{height:36.800000pt;}
.h9_c00170{height:41.173333pt;}
.h6_c00170{height:42.908160pt;}
.h5_c00170{height:48.000000pt;}
.h4_c00170{height:50.928601pt;}
.h3_c00170{height:57.984000pt;}
.h2_c00170{height:1067.880000pt;}
.h0_c00170{height:1122.520000pt;}
.h1_c00170{height:1122.666667pt;}
.w6_c00170{width:22.240000pt;}
.w3_c00170{width:463.040000pt;}
.w5_c00170{width:528.320000pt;}
.w4_c00170{width:533.760000pt;}
.w2_c00170{width:767.960000pt;}
.w0_c00170{width:793.720000pt;}
.w1_c00170{width:794.000000pt;}
.x0_c00170{left:0.000000pt;}
.xb_c00170{left:9.340533pt;}
.x5_c00170{left:11.190400pt;}
.x1_c00170{left:12.880000pt;}
.x8_c00170{left:27.643600pt;}
.x6_c00170{left:50.489600pt;}
.x7_c00170{left:74.000000pt;}
.x9_c00170{left:76.880000pt;}
.xa_c00170{left:88.837867pt;}
.x2_c00170{left:100.480133pt;}
.x4_c00170{left:109.520000pt;}
.x3_c00170{left:557.528267pt;}
.xc_c00170{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d10406ea93e4f3b70dd23775.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.134000;font-style:normal;font-weight:normal;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_39e3b4e5882bff5042d72101.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;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:ff3_c00171;src:url('chunks/assets/font_98bb55d0a3f7789f5e0c202a.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:0.787000;font-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_c00171{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls8_c00171{letter-spacing:0.000000px;}
.ls1_c00171{letter-spacing:0.199560px;}
.ls5_c00171{letter-spacing:0.200160px;}
.ls9_c00171{letter-spacing:0.202464px;}
.ls2_c00171{letter-spacing:0.238560px;}
.ls4_c00171{letter-spacing:0.239160px;}
.lsc_c00171{letter-spacing:0.239760px;}
.lsb_c00171{letter-spacing:0.319680px;}
.ls3_c00171{letter-spacing:0.399600px;}
.lsd_c00171{letter-spacing:0.436896px;}
.ls0_c00171{letter-spacing:4.680960px;}
.lsa_c00171{letter-spacing:4.880448px;}
.ls6_c00171{letter-spacing:5.976000px;}
.ls7_c00171{letter-spacing:6.159920px;}
.sc__c00171{text-shadow:none;}
.sc1_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00171{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc1_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00171{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00171{word-spacing:-19.692288px;}
.ws1_c00171{word-spacing:-15.211440px;}
.ws2_c00171{word-spacing:-15.051600px;}
.ws3_c00171{word-spacing:0.000000px;}
._1_c00171{margin-left:-1.010976px;}
._0_c00171{width:1.014240px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs2_c00171{font-size:53.280000px;}
.fs3_c00171{font-size:60.000000px;}
.fs0_c00171{font-size:72.000000px;}
.fs1_c00171{font-size:74.215901px;}
.y0_c00171{bottom:0.000000px;}
.y29_c00171{bottom:3.120150px;}
.y21_c00171{bottom:12.960000px;}
.y27_c00171{bottom:24.120000px;}
.y24_c00171{bottom:28.440000px;}
.y20_c00171{bottom:28.800000px;}
.y28_c00171{bottom:34.744500px;}
.y26_c00171{bottom:39.960000px;}
.y23_c00171{bottom:44.280000px;}
.y1_c00171{bottom:54.000000px;}
.y1e_c00171{bottom:112.725000px;}
.y1d_c00171{bottom:148.725000px;}
.y25_c00171{bottom:157.365000px;}
.y1c_c00171{bottom:184.725000px;}
.y1b_c00171{bottom:220.725000px;}
.y1a_c00171{bottom:256.725000px;}
.y19_c00171{bottom:292.725000px;}
.y18_c00171{bottom:328.725000px;}
.y17_c00171{bottom:364.725000px;}
.y16_c00171{bottom:400.725000px;}
.y15_c00171{bottom:436.725000px;}
.y14_c00171{bottom:472.725000px;}
.y22_c00171{bottom:481.365000px;}
.y13_c00171{bottom:509.085000px;}
.y12_c00171{bottom:545.085000px;}
.y11_c00171{bottom:581.085000px;}
.y10_c00171{bottom:617.085000px;}
.yf_c00171{bottom:653.085000px;}
.ye_c00171{bottom:689.085000px;}
.yd_c00171{bottom:725.085000px;}
.yc_c00171{bottom:761.085000px;}
.yb_c00171{bottom:797.085000px;}
.y1f_c00171{bottom:813.285000px;}
.ya_c00171{bottom:833.085000px;}
.y9_c00171{bottom:869.085000px;}
.y8_c00171{bottom:905.085000px;}
.y7_c00171{bottom:941.085000px;}
.y6_c00171{bottom:977.085000px;}
.y5_c00171{bottom:1013.085000px;}
.y4_c00171{bottom:1049.085000px;}
.y3_c00171{bottom:1085.085000px;}
.y2_c00171{bottom:1138.365000px;}
.h9_c00171{height:19.255500px;}
.h5_c00171{height:41.400000px;}
.ha_c00171{height:46.320000px;}
.h6_c00171{height:48.271680px;}
.h8_c00171{height:52.560000px;}
.h7_c00171{height:56.880000px;}
.h4_c00171{height:57.294676px;}
.h3_c00171{height:65.232000px;}
.h2_c00171{height:1201.365000px;}
.h0_c00171{height:1262.835000px;}
.h1_c00171{height:1263.000000px;}
.w5_c00171{width:25.020000px;}
.w4_c00171{width:547.920000px;}
.w3_c00171{width:594.720000px;}
.w2_c00171{width:863.955000px;}
.w0_c00171{width:892.935000px;}
.w1_c00171{width:893.250000px;}
.x0_c00171{left:0.000000px;}
.x5_c00171{left:3.599850px;}
.x9_c00171{left:5.448150px;}
.x1_c00171{left:14.490000px;}
.x7_c00171{left:76.692600px;}
.x8_c00171{left:89.625750px;}
.x2_c00171{left:113.040150px;}
.x6_c00171{left:150.210000px;}
.x4_c00171{left:157.410000px;}
.x3_c00171{left:627.219300px;}
.xa_c00171{left:759.915000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls8_c00171{letter-spacing:0.000000pt;}
.ls1_c00171{letter-spacing:0.177387pt;}
.ls5_c00171{letter-spacing:0.177920pt;}
.ls9_c00171{letter-spacing:0.179968pt;}
.ls2_c00171{letter-spacing:0.212053pt;}
.ls4_c00171{letter-spacing:0.212587pt;}
.lsc_c00171{letter-spacing:0.213120pt;}
.lsb_c00171{letter-spacing:0.284160pt;}
.ls3_c00171{letter-spacing:0.355200pt;}
.lsd_c00171{letter-spacing:0.388352pt;}
.ls0_c00171{letter-spacing:4.160853pt;}
.lsa_c00171{letter-spacing:4.338176pt;}
.ls6_c00171{letter-spacing:5.312000pt;}
.ls7_c00171{letter-spacing:5.475484pt;}
.ws0_c00171{word-spacing:-17.504256pt;}
.ws1_c00171{word-spacing:-13.521280pt;}
.ws2_c00171{word-spacing:-13.379200pt;}
.ws3_c00171{word-spacing:0.000000pt;}
._1_c00171{margin-left:-0.898645pt;}
._0_c00171{width:0.901547pt;}
.fs2_c00171{font-size:47.360000pt;}
.fs3_c00171{font-size:53.333333pt;}
.fs0_c00171{font-size:64.000000pt;}
.fs1_c00171{font-size:65.969690pt;}
.y0_c00171{bottom:0.000000pt;}
.y29_c00171{bottom:2.773467pt;}
.y21_c00171{bottom:11.520000pt;}
.y27_c00171{bottom:21.440000pt;}
.y24_c00171{bottom:25.280000pt;}
.y20_c00171{bottom:25.600000pt;}
.y28_c00171{bottom:30.884000pt;}
.y26_c00171{bottom:35.520000pt;}
.y23_c00171{bottom:39.360000pt;}
.y1_c00171{bottom:48.000000pt;}
.y1e_c00171{bottom:100.200000pt;}
.y1d_c00171{bottom:132.200000pt;}
.y25_c00171{bottom:139.880000pt;}
.y1c_c00171{bottom:164.200000pt;}
.y1b_c00171{bottom:196.200000pt;}
.y1a_c00171{bottom:228.200000pt;}
.y19_c00171{bottom:260.200000pt;}
.y18_c00171{bottom:292.200000pt;}
.y17_c00171{bottom:324.200000pt;}
.y16_c00171{bottom:356.200000pt;}
.y15_c00171{bottom:388.200000pt;}
.y14_c00171{bottom:420.200000pt;}
.y22_c00171{bottom:427.880000pt;}
.y13_c00171{bottom:452.520000pt;}
.y12_c00171{bottom:484.520000pt;}
.y11_c00171{bottom:516.520000pt;}
.y10_c00171{bottom:548.520000pt;}
.yf_c00171{bottom:580.520000pt;}
.ye_c00171{bottom:612.520000pt;}
.yd_c00171{bottom:644.520000pt;}
.yc_c00171{bottom:676.520000pt;}
.yb_c00171{bottom:708.520000pt;}
.y1f_c00171{bottom:722.920000pt;}
.ya_c00171{bottom:740.520000pt;}
.y9_c00171{bottom:772.520000pt;}
.y8_c00171{bottom:804.520000pt;}
.y7_c00171{bottom:836.520000pt;}
.y6_c00171{bottom:868.520000pt;}
.y5_c00171{bottom:900.520000pt;}
.y4_c00171{bottom:932.520000pt;}
.y3_c00171{bottom:964.520000pt;}
.y2_c00171{bottom:1011.880000pt;}
.h9_c00171{height:17.116000pt;}
.h5_c00171{height:36.800000pt;}
.ha_c00171{height:41.173333pt;}
.h6_c00171{height:42.908160pt;}
.h8_c00171{height:46.720000pt;}
.h7_c00171{height:50.560000pt;}
.h4_c00171{height:50.928601pt;}
.h3_c00171{height:57.984000pt;}
.h2_c00171{height:1067.880000pt;}
.h0_c00171{height:1122.520000pt;}
.h1_c00171{height:1122.666667pt;}
.w5_c00171{width:22.240000pt;}
.w4_c00171{width:487.040000pt;}
.w3_c00171{width:528.640000pt;}
.w2_c00171{width:767.960000pt;}
.w0_c00171{width:793.720000pt;}
.w1_c00171{width:794.000000pt;}
.x0_c00171{left:0.000000pt;}
.x5_c00171{left:3.199867pt;}
.x9_c00171{left:4.842800pt;}
.x1_c00171{left:12.880000pt;}
.x7_c00171{left:68.171200pt;}
.x8_c00171{left:79.667333pt;}
.x2_c00171{left:100.480133pt;}
.x6_c00171{left:133.520000pt;}
.x4_c00171{left:139.920000pt;}
.x3_c00171{left:557.528267pt;}
.xa_c00171{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d10406ea93e4f3b70dd23775.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.134000;font-style:normal;font-weight:normal;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_39e3b4e5882bff5042d72101.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;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:ff3_c00172;src:url('chunks/assets/font_99abf19949a2acbab6ef5f5f.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:0.787000;font-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_c00172{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls5_c00172{letter-spacing:0.000000px;}
.ls6_c00172{letter-spacing:0.202464px;}
.ls0_c00172{letter-spacing:0.238560px;}
.ls2_c00172{letter-spacing:0.239160px;}
.ls9_c00172{letter-spacing:0.239760px;}
.ls8_c00172{letter-spacing:0.319680px;}
.ls1_c00172{letter-spacing:0.399600px;}
.lsa_c00172{letter-spacing:0.436896px;}
.ls7_c00172{letter-spacing:4.880448px;}
.ls3_c00172{letter-spacing:5.976000px;}
.ls4_c00172{letter-spacing:6.159920px;}
.sc__c00172{text-shadow:none;}
.sc1_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00172{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc1_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00172{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00172{word-spacing:-15.211440px;}
.ws0_c00172{word-spacing:-15.051600px;}
.ws2_c00172{word-spacing:0.000000px;}
._1_c00172{margin-left:-1.065600px;}
._0_c00172{width:1.014240px;}
.fc1_c00172{color:transparent;}
.fc0_c00172{color:rgb(0,0,0);}
.fs2_c00172{font-size:53.280000px;}
.fs3_c00172{font-size:60.000000px;}
.fs0_c00172{font-size:72.000000px;}
.fs1_c00172{font-size:74.215901px;}
.y0_c00172{bottom:0.000000px;}
.y1f_c00172{bottom:3.120150px;}
.y1d_c00172{bottom:18.720000px;}
.y1a_c00172{bottom:19.080000px;}
.y1c_c00172{bottom:34.560000px;}
.y1e_c00172{bottom:34.744500px;}
.y19_c00172{bottom:34.920000px;}
.y1_c00172{bottom:54.000000px;}
.y1b_c00172{bottom:308.205000px;}
.y17_c00172{bottom:322.965000px;}
.y16_c00172{bottom:358.965000px;}
.y15_c00172{bottom:394.965000px;}
.y14_c00172{bottom:430.965000px;}
.y13_c00172{bottom:466.965000px;}
.y12_c00172{bottom:502.965000px;}
.y11_c00172{bottom:538.965000px;}
.y10_c00172{bottom:574.965000px;}
.yf_c00172{bottom:610.965000px;}
.y18_c00172{bottom:685.125000px;}
.ye_c00172{bottom:689.085000px;}
.yd_c00172{bottom:725.085000px;}
.yc_c00172{bottom:761.085000px;}
.yb_c00172{bottom:797.085000px;}
.ya_c00172{bottom:833.085000px;}
.y9_c00172{bottom:869.085000px;}
.y8_c00172{bottom:905.085000px;}
.y7_c00172{bottom:941.085000px;}
.y6_c00172{bottom:977.085000px;}
.y5_c00172{bottom:1013.085000px;}
.y4_c00172{bottom:1049.085000px;}
.y3_c00172{bottom:1085.085000px;}
.y2_c00172{bottom:1138.365000px;}
.h8_c00172{height:19.255500px;}
.h9_c00172{height:46.320000px;}
.h7_c00172{height:47.160000px;}
.h5_c00172{height:47.520000px;}
.h6_c00172{height:48.271680px;}
.h4_c00172{height:57.294676px;}
.h3_c00172{height:65.232000px;}
.h2_c00172{height:1201.365000px;}
.h0_c00172{height:1262.835000px;}
.h1_c00172{height:1263.000000px;}
.w4_c00172{width:25.020000px;}
.w3_c00172{width:648.360000px;}
.w2_c00172{width:863.955000px;}
.w0_c00172{width:892.935000px;}
.w1_c00172{width:893.250000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:14.490000px;}
.x5_c00172{left:55.623000px;}
.x2_c00172{left:113.040150px;}
.x8_c00172{left:119.746650px;}
.x4_c00172{left:123.570000px;}
.x7_c00172{left:130.770000px;}
.x6_c00172{left:139.800600px;}
.x9_c00172{left:141.677100px;}
.x3_c00172{left:627.219300px;}
.xa_c00172{left:759.915000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls5_c00172{letter-spacing:0.000000pt;}
.ls6_c00172{letter-spacing:0.179968pt;}
.ls0_c00172{letter-spacing:0.212053pt;}
.ls2_c00172{letter-spacing:0.212587pt;}
.ls9_c00172{letter-spacing:0.213120pt;}
.ls8_c00172{letter-spacing:0.284160pt;}
.ls1_c00172{letter-spacing:0.355200pt;}
.lsa_c00172{letter-spacing:0.388352pt;}
.ls7_c00172{letter-spacing:4.338176pt;}
.ls3_c00172{letter-spacing:5.312000pt;}
.ls4_c00172{letter-spacing:5.475484pt;}
.ws1_c00172{word-spacing:-13.521280pt;}
.ws0_c00172{word-spacing:-13.379200pt;}
.ws2_c00172{word-spacing:0.000000pt;}
._1_c00172{margin-left:-0.947200pt;}
._0_c00172{width:0.901547pt;}
.fs2_c00172{font-size:47.360000pt;}
.fs3_c00172{font-size:53.333333pt;}
.fs0_c00172{font-size:64.000000pt;}
.fs1_c00172{font-size:65.969690pt;}
.y0_c00172{bottom:0.000000pt;}
.y1f_c00172{bottom:2.773467pt;}
.y1d_c00172{bottom:16.640000pt;}
.y1a_c00172{bottom:16.960000pt;}
.y1c_c00172{bottom:30.720000pt;}
.y1e_c00172{bottom:30.884000pt;}
.y19_c00172{bottom:31.040000pt;}
.y1_c00172{bottom:48.000000pt;}
.y1b_c00172{bottom:273.960000pt;}
.y17_c00172{bottom:287.080000pt;}
.y16_c00172{bottom:319.080000pt;}
.y15_c00172{bottom:351.080000pt;}
.y14_c00172{bottom:383.080000pt;}
.y13_c00172{bottom:415.080000pt;}
.y12_c00172{bottom:447.080000pt;}
.y11_c00172{bottom:479.080000pt;}
.y10_c00172{bottom:511.080000pt;}
.yf_c00172{bottom:543.080000pt;}
.y18_c00172{bottom:609.000000pt;}
.ye_c00172{bottom:612.520000pt;}
.yd_c00172{bottom:644.520000pt;}
.yc_c00172{bottom:676.520000pt;}
.yb_c00172{bottom:708.520000pt;}
.ya_c00172{bottom:740.520000pt;}
.y9_c00172{bottom:772.520000pt;}
.y8_c00172{bottom:804.520000pt;}
.y7_c00172{bottom:836.520000pt;}
.y6_c00172{bottom:868.520000pt;}
.y5_c00172{bottom:900.520000pt;}
.y4_c00172{bottom:932.520000pt;}
.y3_c00172{bottom:964.520000pt;}
.y2_c00172{bottom:1011.880000pt;}
.h8_c00172{height:17.116000pt;}
.h9_c00172{height:41.173333pt;}
.h7_c00172{height:41.920000pt;}
.h5_c00172{height:42.240000pt;}
.h6_c00172{height:42.908160pt;}
.h4_c00172{height:50.928601pt;}
.h3_c00172{height:57.984000pt;}
.h2_c00172{height:1067.880000pt;}
.h0_c00172{height:1122.520000pt;}
.h1_c00172{height:1122.666667pt;}
.w4_c00172{width:22.240000pt;}
.w3_c00172{width:576.320000pt;}
.w2_c00172{width:767.960000pt;}
.w0_c00172{width:793.720000pt;}
.w1_c00172{width:794.000000pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:12.880000pt;}
.x5_c00172{left:49.442667pt;}
.x2_c00172{left:100.480133pt;}
.x8_c00172{left:106.441467pt;}
.x4_c00172{left:109.840000pt;}
.x7_c00172{left:116.240000pt;}
.x6_c00172{left:124.267200pt;}
.x9_c00172{left:125.935200pt;}
.x3_c00172{left:557.528267pt;}
.xa_c00172{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_efd97a76a79f55ee800f25b9.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:0.000000px;}
.fc1_c00173{color:transparent;}
.fc0_c00173{color:rgb(0,0,0);}
.fs0_c00173{font-size:60.000000px;}
.y0_c00173{bottom:0.000000px;}
.y2_c00173{bottom:3.120150px;}
.y1_c00173{bottom:34.744500px;}
.h2_c00173{height:19.255500px;}
.h3_c00173{height:46.320000px;}
.h0_c00173{height:1262.835000px;}
.h1_c00173{height:1263.000000px;}
.w2_c00173{width:25.020000px;}
.w0_c00173{width:892.920000px;}
.w1_c00173{width:893.250000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:759.900000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws0_c00173{word-spacing:0.000000pt;}
.fs0_c00173{font-size:53.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.y2_c00173{bottom:2.773467pt;}
.y1_c00173{bottom:30.884000pt;}
.h2_c00173{height:17.116000pt;}
.h3_c00173{height:41.173333pt;}
.h0_c00173{height:1122.520000pt;}
.h1_c00173{height:1122.666667pt;}
.w2_c00173{width:22.240000pt;}
.w0_c00173{width:793.706667pt;}
.w1_c00173{width:794.000000pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:675.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:0.772000;font-style:normal;font-weight:normal;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_159307c5700e277a785f3d52.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.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;}
}
.ws0_c00174{word-spacing:0.000000px;}
.fc0_c00174{color:rgb(0,0,0);}
.fs1_c00174{font-size:60.000000px;}
.fs0_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y4_c00174{bottom:3.120150px;}
.y3_c00174{bottom:34.744500px;}
.y1_c00174{bottom:54.000000px;}
.y2_c00174{bottom:1085.085000px;}
.h4_c00174{height:19.255500px;}
.h5_c00174{height:46.320000px;}
.h3_c00174{height:55.584000px;}
.h2_c00174{height:1201.365000px;}
.h0_c00174{height:1262.835000px;}
.h1_c00174{height:1263.000000px;}
.w3_c00174{width:25.020000px;}
.w2_c00174{width:863.955000px;}
.w0_c00174{width:892.935000px;}
.w1_c00174{width:893.250000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:14.490000px;}
.x2_c00174{left:113.040150px;}
.x3_c00174{left:759.915000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:0.000000pt;}
.fs1_c00174{font-size:53.333333pt;}
.fs0_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y4_c00174{bottom:2.773467pt;}
.y3_c00174{bottom:30.884000pt;}
.y1_c00174{bottom:48.000000pt;}
.y2_c00174{bottom:964.520000pt;}
.h4_c00174{height:17.116000pt;}
.h5_c00174{height:41.173333pt;}
.h3_c00174{height:49.408000pt;}
.h2_c00174{height:1067.880000pt;}
.h0_c00174{height:1122.520000pt;}
.h1_c00174{height:1122.666667pt;}
.w3_c00174{width:22.240000pt;}
.w2_c00174{width:767.960000pt;}
.w0_c00174{width:793.720000pt;}
.w1_c00174{width:794.000000pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:12.880000pt;}
.x2_c00174{left:100.480133pt;}
.x3_c00174{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4614dd3da66a2a44116c1bc3.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.134000;font-style:normal;font-weight:normal;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_61d2a94975206adc9bc61d71.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;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:ff3_c00175;src:url('chunks/assets/font_28898f5b4b0f4e9e89060424.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:0.787000;font-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_c00175{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00175{vertical-align:-24.480000px;}
.v0_c00175{vertical-align:0.000000px;}
.v1_c00175{vertical-align:30.240000px;}
.lsd_c00175{letter-spacing:0.000000px;}
.ls3_c00175{letter-spacing:0.018840px;}
.ls9_c00175{letter-spacing:0.236160px;}
.lsa_c00175{letter-spacing:0.265680px;}
.ls6_c00175{letter-spacing:0.295200px;}
.ls13_c00175{letter-spacing:0.438171px;}
.ls7_c00175{letter-spacing:0.531360px;}
.lsb_c00175{letter-spacing:0.547713px;}
.ls4_c00175{letter-spacing:0.702240px;}
.ls12_c00175{letter-spacing:0.712027px;}
.ls11_c00175{letter-spacing:0.743904px;}
.ls14_c00175{letter-spacing:0.797040px;}
.ls15_c00175{letter-spacing:0.821570px;}
.ls8_c00175{letter-spacing:0.944640px;}
.ls10_c00175{letter-spacing:1.512000px;}
.lse_c00175{letter-spacing:5.245344px;}
.ls2_c00175{letter-spacing:5.313840px;}
.lsf_c00175{letter-spacing:5.430672px;}
.ls1_c00175{letter-spacing:5.499398px;}
.lsc_c00175{letter-spacing:5.976000px;}
.ls5_c00175{letter-spacing:5.990400px;}
.ls0_c00175{letter-spacing:6.159920px;}
.sc__c00175{text-shadow:none;}
.sc1_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00175{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc1_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00175{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00175{word-spacing:-21.592374px;}
.ws4_c00175{word-spacing:-21.043152px;}
.ws3_c00175{word-spacing:-20.632021px;}
.ws2_c00175{word-spacing:-20.016000px;}
.ws6_c00175{word-spacing:-17.630284px;}
.ws7_c00175{word-spacing:-17.465970px;}
.ws1_c00175{word-spacing:-11.609280px;}
.ws5_c00175{word-spacing:-10.008000px;}
.ws8_c00175{word-spacing:0.000000px;}
._8_c00175{margin-left:-8.515038px;}
._d_c00175{margin-left:-1.261320px;}
._7_c00175{width:1.102440px;}
._9_c00175{width:2.403120px;}
._1_c00175{width:3.744000px;}
._3_c00175{width:5.112000px;}
._5_c00175{width:6.624000px;}
._a_c00175{width:8.115000px;}
._4_c00175{width:9.504000px;}
._0_c00175{width:11.088000px;}
._2_c00175{width:12.168000px;}
._c_c00175{width:14.256000px;}
._b_c00175{width:21.312000px;}
._6_c00175{width:23.760000px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs6_c00175{font-size:36.000000px;}
.fs4_c00175{font-size:41.760000px;}
.fs5_c00175{font-size:43.045223px;}
.fs3_c00175{font-size:56.160000px;}
.fs2_c00175{font-size:57.888403px;}
.fs7_c00175{font-size:59.040000px;}
.fs9_c00175{font-size:60.000000px;}
.fs8_c00175{font-size:60.857039px;}
.fs0_c00175{font-size:72.000000px;}
.fs1_c00175{font-size:74.215901px;}
.y0_c00175{bottom:0.000000px;}
.y2e_c00175{bottom:3.120150px;}
.y2d_c00175{bottom:34.744500px;}
.y1_c00175{bottom:54.000000px;}
.y2c_c00175{bottom:61.605000px;}
.y2b_c00175{bottom:72.765000px;}
.y2a_c00175{bottom:78.885000px;}
.y29_c00175{bottom:90.405000px;}
.y28_c00175{bottom:96.525000px;}
.y27_c00175{bottom:113.805000px;}
.y26_c00175{bottom:131.445000px;}
.y25_c00175{bottom:149.085000px;}
.y24_c00175{bottom:160.245000px;}
.y23_c00175{bottom:166.365000px;}
.y22_c00175{bottom:193.005000px;}
.y21_c00175{bottom:241.965000px;}
.y20_c00175{bottom:277.965000px;}
.y1f_c00175{bottom:313.965000px;}
.y1e_c00175{bottom:334.845000px;}
.y1d_c00175{bottom:355.725000px;}
.y1c_c00175{bottom:376.965000px;}
.y1b_c00175{bottom:397.845000px;}
.y1a_c00175{bottom:418.725000px;}
.y19_c00175{bottom:454.725000px;}
.y18_c00175{bottom:475.965000px;}
.y17_c00175{bottom:511.965000px;}
.y16_c00175{bottom:547.965000px;}
.y15_c00175{bottom:583.965000px;}
.y14_c00175{bottom:619.965000px;}
.y13_c00175{bottom:640.845000px;}
.y12_c00175{bottom:662.085000px;}
.y11_c00175{bottom:698.085000px;}
.y10_c00175{bottom:718.965000px;}
.yf_c00175{bottom:739.845000px;}
.ye_c00175{bottom:775.845000px;}
.yd_c00175{bottom:797.085000px;}
.yc_c00175{bottom:833.085000px;}
.yb_c00175{bottom:871.245000px;}
.ya_c00175{bottom:907.965000px;}
.y9_c00175{bottom:943.965000px;}
.y8_c00175{bottom:964.845000px;}
.y7_c00175{bottom:986.085000px;}
.y6_c00175{bottom:1006.965000px;}
.y5_c00175{bottom:1027.845000px;}
.y4_c00175{bottom:1049.085000px;}
.y3_c00175{bottom:1085.085000px;}
.y2_c00175{bottom:1138.365000px;}
.ha_c00175{height:19.255500px;}
.h7_c00175{height:32.616000px;}
.hb_c00175{height:46.320000px;}
.h8_c00175{height:46.981634px;}
.h9_c00175{height:53.490240px;}
.h4_c00175{height:57.294676px;}
.h6_c00175{height:64.401590px;}
.h3_c00175{height:65.232000px;}
.h5_c00175{height:68.074560px;}
.h2_c00175{height:1201.365000px;}
.h0_c00175{height:1262.835000px;}
.h1_c00175{height:1263.000000px;}
.w3_c00175{width:25.020000px;}
.w2_c00175{width:863.955000px;}
.w0_c00175{width:892.935000px;}
.w1_c00175{width:893.250000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:14.490000px;}
.x2_c00175{left:113.040150px;}
.x19_c00175{left:122.213700px;}
.x1a_c00175{left:147.218250px;}
.x14_c00175{left:153.035550px;}
.x13_c00175{left:155.033550px;}
.x5_c00175{left:158.747700px;}
.x3_c00175{left:162.521550px;}
.x9_c00175{left:175.346550px;}
.x1b_c00175{left:193.085850px;}
.x4_c00175{left:204.478650px;}
.xa_c00175{left:211.328250px;}
.x1c_c00175{left:218.929650px;}
.x6_c00175{left:305.854950px;}
.xf_c00175{left:319.047000px;}
.x7_c00175{left:341.836650px;}
.x10_c00175{left:343.040400px;}
.x16_c00175{left:348.916650px;}
.x11_c00175{left:361.285350px;}
.x17_c00175{left:378.901200px;}
.x18_c00175{left:387.240600px;}
.x12_c00175{left:397.267050px;}
.xd_c00175{left:408.109200px;}
.x8_c00175{left:410.223300px;}
.xe_c00175{left:454.932450px;}
.xb_c00175{left:529.953750px;}
.xc_c00175{left:705.224850px;}
.x15_c00175{left:729.047550px;}
.x1d_c00175{left:759.915000px;}
@media print{
.v2_c00175{vertical-align:-21.760000pt;}
.v0_c00175{vertical-align:0.000000pt;}
.v1_c00175{vertical-align:26.880000pt;}
.lsd_c00175{letter-spacing:0.000000pt;}
.ls3_c00175{letter-spacing:0.016747pt;}
.ls9_c00175{letter-spacing:0.209920pt;}
.lsa_c00175{letter-spacing:0.236160pt;}
.ls6_c00175{letter-spacing:0.262400pt;}
.ls13_c00175{letter-spacing:0.389485pt;}
.ls7_c00175{letter-spacing:0.472320pt;}
.lsb_c00175{letter-spacing:0.486856pt;}
.ls4_c00175{letter-spacing:0.624213pt;}
.ls12_c00175{letter-spacing:0.632913pt;}
.ls11_c00175{letter-spacing:0.661248pt;}
.ls14_c00175{letter-spacing:0.708480pt;}
.ls15_c00175{letter-spacing:0.730284pt;}
.ls8_c00175{letter-spacing:0.839680pt;}
.ls10_c00175{letter-spacing:1.344000pt;}
.lse_c00175{letter-spacing:4.662528pt;}
.ls2_c00175{letter-spacing:4.723413pt;}
.lsf_c00175{letter-spacing:4.827264pt;}
.ls1_c00175{letter-spacing:4.888354pt;}
.lsc_c00175{letter-spacing:5.312000pt;}
.ls5_c00175{letter-spacing:5.324800pt;}
.ls0_c00175{letter-spacing:5.475484pt;}
.ws0_c00175{word-spacing:-19.193222pt;}
.ws4_c00175{word-spacing:-18.705024pt;}
.ws3_c00175{word-spacing:-18.339574pt;}
.ws2_c00175{word-spacing:-17.792000pt;}
.ws6_c00175{word-spacing:-15.671364pt;}
.ws7_c00175{word-spacing:-15.525307pt;}
.ws1_c00175{word-spacing:-10.319360pt;}
.ws5_c00175{word-spacing:-8.896000pt;}
.ws8_c00175{word-spacing:0.000000pt;}
._8_c00175{margin-left:-7.568922pt;}
._d_c00175{margin-left:-1.121173pt;}
._7_c00175{width:0.979947pt;}
._9_c00175{width:2.136107pt;}
._1_c00175{width:3.328000pt;}
._3_c00175{width:4.544000pt;}
._5_c00175{width:5.888000pt;}
._a_c00175{width:7.213333pt;}
._4_c00175{width:8.448000pt;}
._0_c00175{width:9.856000pt;}
._2_c00175{width:10.816000pt;}
._c_c00175{width:12.672000pt;}
._b_c00175{width:18.944000pt;}
._6_c00175{width:21.120000pt;}
.fs6_c00175{font-size:32.000000pt;}
.fs4_c00175{font-size:37.120000pt;}
.fs5_c00175{font-size:38.262420pt;}
.fs3_c00175{font-size:49.920000pt;}
.fs2_c00175{font-size:51.456358pt;}
.fs7_c00175{font-size:52.480000pt;}
.fs9_c00175{font-size:53.333333pt;}
.fs8_c00175{font-size:54.095146pt;}
.fs0_c00175{font-size:64.000000pt;}
.fs1_c00175{font-size:65.969690pt;}
.y0_c00175{bottom:0.000000pt;}
.y2e_c00175{bottom:2.773467pt;}
.y2d_c00175{bottom:30.884000pt;}
.y1_c00175{bottom:48.000000pt;}
.y2c_c00175{bottom:54.760000pt;}
.y2b_c00175{bottom:64.680000pt;}
.y2a_c00175{bottom:70.120000pt;}
.y29_c00175{bottom:80.360000pt;}
.y28_c00175{bottom:85.800000pt;}
.y27_c00175{bottom:101.160000pt;}
.y26_c00175{bottom:116.840000pt;}
.y25_c00175{bottom:132.520000pt;}
.y24_c00175{bottom:142.440000pt;}
.y23_c00175{bottom:147.880000pt;}
.y22_c00175{bottom:171.560000pt;}
.y21_c00175{bottom:215.080000pt;}
.y20_c00175{bottom:247.080000pt;}
.y1f_c00175{bottom:279.080000pt;}
.y1e_c00175{bottom:297.640000pt;}
.y1d_c00175{bottom:316.200000pt;}
.y1c_c00175{bottom:335.080000pt;}
.y1b_c00175{bottom:353.640000pt;}
.y1a_c00175{bottom:372.200000pt;}
.y19_c00175{bottom:404.200000pt;}
.y18_c00175{bottom:423.080000pt;}
.y17_c00175{bottom:455.080000pt;}
.y16_c00175{bottom:487.080000pt;}
.y15_c00175{bottom:519.080000pt;}
.y14_c00175{bottom:551.080000pt;}
.y13_c00175{bottom:569.640000pt;}
.y12_c00175{bottom:588.520000pt;}
.y11_c00175{bottom:620.520000pt;}
.y10_c00175{bottom:639.080000pt;}
.yf_c00175{bottom:657.640000pt;}
.ye_c00175{bottom:689.640000pt;}
.yd_c00175{bottom:708.520000pt;}
.yc_c00175{bottom:740.520000pt;}
.yb_c00175{bottom:774.440000pt;}
.ya_c00175{bottom:807.080000pt;}
.y9_c00175{bottom:839.080000pt;}
.y8_c00175{bottom:857.640000pt;}
.y7_c00175{bottom:876.520000pt;}
.y6_c00175{bottom:895.080000pt;}
.y5_c00175{bottom:913.640000pt;}
.y4_c00175{bottom:932.520000pt;}
.y3_c00175{bottom:964.520000pt;}
.y2_c00175{bottom:1011.880000pt;}
.ha_c00175{height:17.116000pt;}
.h7_c00175{height:28.992000pt;}
.hb_c00175{height:41.173333pt;}
.h8_c00175{height:41.761453pt;}
.h9_c00175{height:47.546880pt;}
.h4_c00175{height:50.928601pt;}
.h6_c00175{height:57.245858pt;}
.h3_c00175{height:57.984000pt;}
.h5_c00175{height:60.510720pt;}
.h2_c00175{height:1067.880000pt;}
.h0_c00175{height:1122.520000pt;}
.h1_c00175{height:1122.666667pt;}
.w3_c00175{width:22.240000pt;}
.w2_c00175{width:767.960000pt;}
.w0_c00175{width:793.720000pt;}
.w1_c00175{width:794.000000pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:12.880000pt;}
.x2_c00175{left:100.480133pt;}
.x19_c00175{left:108.634400pt;}
.x1a_c00175{left:130.860667pt;}
.x14_c00175{left:136.031600pt;}
.x13_c00175{left:137.807600pt;}
.x5_c00175{left:141.109067pt;}
.x3_c00175{left:144.463600pt;}
.x9_c00175{left:155.863600pt;}
.x1b_c00175{left:171.631867pt;}
.x4_c00175{left:181.758800pt;}
.xa_c00175{left:187.847333pt;}
.x1c_c00175{left:194.604133pt;}
.x6_c00175{left:271.871067pt;}
.xf_c00175{left:283.597333pt;}
.x7_c00175{left:303.854800pt;}
.x10_c00175{left:304.924800pt;}
.x16_c00175{left:310.148133pt;}
.x11_c00175{left:321.142533pt;}
.x17_c00175{left:336.801067pt;}
.x18_c00175{left:344.213867pt;}
.x12_c00175{left:353.126267pt;}
.xd_c00175{left:362.763733pt;}
.x8_c00175{left:364.642933pt;}
.xe_c00175{left:404.384400pt;}
.xb_c00175{left:471.070000pt;}
.xc_c00175{left:626.866533pt;}
.x15_c00175{left:648.042267pt;}
.x1d_c00175{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2a4378007aacd423b69a0010.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.134000;font-style:normal;font-weight:normal;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_37de6ac21270a94e041ec9e4.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;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:ff3_c00176;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_63adf85dc3b3f4fc5e080d05.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;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:ff6_c00176;src:url('chunks/assets/font_4ade788d8960109d9720105e.woff2')format("woff");}.ff6_c00176{font-family:ff6_c00176;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00176;src:url('chunks/assets/font_c7d08c17201e9ea66830b4a0.woff2')format("woff");}.ff7_c00176{font-family:ff7_c00176;line-height:0.787000;font-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_c00176{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00176{vertical-align:-24.480000px;}
.v0_c00176{vertical-align:0.000000px;}
.v2_c00176{vertical-align:24.480000px;}
.v1_c00176{vertical-align:30.240000px;}
.ls15_c00176{letter-spacing:0.000000px;}
.ls13_c00176{letter-spacing:0.236160px;}
.lsb_c00176{letter-spacing:0.265680px;}
.ls4_c00176{letter-spacing:0.273857px;}
.ls11_c00176{letter-spacing:0.295200px;}
.ls1d_c00176{letter-spacing:0.312912px;}
.lsc_c00176{letter-spacing:0.318480px;}
.lse_c00176{letter-spacing:0.319080px;}
.ls27_c00176{letter-spacing:0.371952px;}
.ls5_c00176{letter-spacing:0.383399px;}
.ls24_c00176{letter-spacing:0.478224px;}
.ls10_c00176{letter-spacing:0.531360px;}
.lsd_c00176{letter-spacing:0.532560px;}
.ls20_c00176{letter-spacing:0.584496px;}
.ls7_c00176{letter-spacing:0.649800px;}
.ls1c_c00176{letter-spacing:0.690768px;}
.ls1e_c00176{letter-spacing:0.696672px;}
.lsf_c00176{letter-spacing:0.712027px;}
.ls3_c00176{letter-spacing:0.713462px;}
.ls1f_c00176{letter-spacing:0.743904px;}
.ls21_c00176{letter-spacing:0.766799px;}
.ls25_c00176{letter-spacing:0.797040px;}
.ls12_c00176{letter-spacing:0.821570px;}
.ls23_c00176{letter-spacing:0.962352px;}
.ls22_c00176{letter-spacing:2.845728px;}
.ls17_c00176{letter-spacing:2.988000px;}
.ls26_c00176{letter-spacing:4.481136px;}
.lsa_c00176{letter-spacing:5.245680px;}
.ls6_c00176{letter-spacing:5.246280px;}
.ls8_c00176{letter-spacing:5.299080px;}
.ls19_c00176{letter-spacing:5.301792px;}
.ls9_c00176{letter-spacing:5.353440px;}
.ls18_c00176{letter-spacing:5.354928px;}
.ls16_c00176{letter-spacing:5.430672px;}
.ls1b_c00176{letter-spacing:5.514336px;}
.ls1a_c00176{letter-spacing:5.726880px;}
.ls2_c00176{letter-spacing:5.976000px;}
.ls0_c00176{letter-spacing:5.982000px;}
.ls14_c00176{letter-spacing:6.159920px;}
.ls1_c00176{letter-spacing:54.864000px;}
.sc__c00176{text-shadow:none;}
.sc1_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00176{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc1_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00176{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6_c00176{word-spacing:-22.140000px;}
.ws7_c00176{word-spacing:-21.927456px;}
.ws4_c00176{word-spacing:-21.768048px;}
.ws5_c00176{word-spacing:-21.714912px;}
.ws0_c00176{word-spacing:-21.043152px;}
.ws9_c00176{word-spacing:-17.685056px;}
.wsa_c00176{word-spacing:-17.630284px;}
.ws2_c00176{word-spacing:-17.301656px;}
.ws8_c00176{word-spacing:-17.103888px;}
.wsc_c00176{word-spacing:-16.997616px;}
.wsb_c00176{word-spacing:-16.944480px;}
.ws3_c00176{word-spacing:-16.413120px;}
.ws1_c00176{word-spacing:-11.609280px;}
.wsd_c00176{word-spacing:-10.008000px;}
.wse_c00176{word-spacing:0.000000px;}
._c_c00176{margin-left:-4.959360px;}
._b_c00176{margin-left:-3.955680px;}
._a_c00176{margin-left:-2.932704px;}
._0_c00176{margin-left:-1.179360px;}
._2_c00176{width:1.152000px;}
._5_c00176{width:2.728200px;}
._3_c00176{width:4.464000px;}
._6_c00176{width:5.976000px;}
._8_c00176{width:6.984000px;}
._9_c00176{width:9.288000px;}
._4_c00176{width:17.928000px;}
._1_c00176{width:18.936000px;}
._7_c00176{width:23.328000px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs6_c00176{font-size:36.000000px;}
.fs3_c00176{font-size:41.760000px;}
.fs2_c00176{font-size:56.160000px;}
.fs4_c00176{font-size:59.040000px;}
.fs7_c00176{font-size:60.000000px;}
.fs5_c00176{font-size:60.857039px;}
.fs0_c00176{font-size:72.000000px;}
.fs1_c00176{font-size:74.215901px;}
.y0_c00176{bottom:0.000000px;}
.y31_c00176{bottom:3.120150px;}
.y30_c00176{bottom:34.744500px;}
.y1_c00176{bottom:54.000000px;}
.y2f_c00176{bottom:55.845000px;}
.y2e_c00176{bottom:61.965000px;}
.y2d_c00176{bottom:73.126800px;}
.y2c_c00176{bottom:96.885000px;}
.y2b_c00176{bottom:123.525000px;}
.y2a_c00176{bottom:196.245000px;}
.y29_c00176{bottom:196.246800px;}
.y27_c00176{bottom:213.881040px;}
.y28_c00176{bottom:213.885000px;}
.y26_c00176{bottom:231.165000px;}
.y25_c00176{bottom:263.925000px;}
.y21_c00176{bottom:285.885000px;}
.y20_c00176{bottom:303.525000px;}
.y24_c00176{bottom:308.925000px;}
.y1f_c00176{bottom:323.325000px;}
.y23_c00176{bottom:326.205000px;}
.y1e_c00176{bottom:343.485000px;}
.y22_c00176{bottom:343.845000px;}
.y1d_c00176{bottom:361.485000px;}
.y1c_c00176{bottom:394.965000px;}
.y1b_c00176{bottom:430.965000px;}
.y1a_c00176{bottom:451.845000px;}
.y19_c00176{bottom:472.725000px;}
.y18_c00176{bottom:493.965000px;}
.y17_c00176{bottom:529.965000px;}
.y16_c00176{bottom:550.845000px;}
.y15_c00176{bottom:571.725000px;}
.y14_c00176{bottom:592.965000px;}
.y13_c00176{bottom:628.965000px;}
.y12_c00176{bottom:649.845000px;}
.y11_c00176{bottom:671.085000px;}
.y10_c00176{bottom:707.085000px;}
.yf_c00176{bottom:743.085000px;}
.ye_c00176{bottom:763.965000px;}
.yd_c00176{bottom:799.965000px;}
.yc_c00176{bottom:835.965000px;}
.yb_c00176{bottom:856.845000px;}
.ya_c00176{bottom:878.085000px;}
.y9_c00176{bottom:914.085000px;}
.y8_c00176{bottom:934.965000px;}
.y7_c00176{bottom:955.845000px;}
.y6_c00176{bottom:977.085000px;}
.y5_c00176{bottom:1013.085000px;}
.y4_c00176{bottom:1049.085000px;}
.y3_c00176{bottom:1085.085000px;}
.y2_c00176{bottom:1138.365000px;}
.hb_c00176{height:19.255500px;}
.ha_c00176{height:32.616000px;}
.h9_c00176{height:45.578880px;}
.hc_c00176{height:46.320000px;}
.h7_c00176{height:46.981634px;}
.h6_c00176{height:53.490240px;}
.h8_c00176{height:57.096000px;}
.h4_c00176{height:57.294676px;}
.h3_c00176{height:65.232000px;}
.h5_c00176{height:68.074560px;}
.h2_c00176{height:1201.365000px;}
.h0_c00176{height:1262.835000px;}
.h1_c00176{height:1263.000000px;}
.w7_c00176{width:25.020000px;}
.w3_c00176{width:28.800000px;}
.w4_c00176{width:105.480000px;}
.w5_c00176{width:201.600000px;}
.w6_c00176{width:309.240000px;}
.w2_c00176{width:863.955000px;}
.w0_c00176{width:892.935000px;}
.w1_c00176{width:893.250000px;}
.x0_c00176{left:0.000000px;}
.x13_c00176{left:7.920150px;}
.x1_c00176{left:14.490000px;}
.x1b_c00176{left:50.909100px;}
.x16_c00176{left:66.238500px;}
.x17_c00176{left:105.372600px;}
.x2_c00176{left:113.040150px;}
.x12_c00176{left:119.610000px;}
.x9_c00176{left:140.037600px;}
.x19_c00176{left:144.234300px;}
.x14_c00176{left:149.130000px;}
.x7_c00176{left:154.148100px;}
.x5_c00176{left:159.977850px;}
.x3_c00176{left:162.521550px;}
.x1c_c00176{left:180.614550px;}
.x1a_c00176{left:188.408100px;}
.x1f_c00176{left:194.706600px;}
.x4_c00176{left:204.478650px;}
.x20_c00176{left:238.055700px;}
.x15_c00176{left:255.330000px;}
.x8_c00176{left:276.099600px;}
.xe_c00176{left:292.065300px;}
.xf_c00176{left:301.065300px;}
.xa_c00176{left:353.494950px;}
.xb_c00176{left:366.472800px;}
.x6_c00176{left:387.085650px;}
.x18_c00176{left:457.650000px;}
.x1d_c00176{left:521.983800px;}
.x1e_c00176{left:556.948200px;}
.xc_c00176{left:605.421000px;}
.xd_c00176{left:624.910050px;}
.x10_c00176{left:672.603900px;}
.x11_c00176{left:745.386150px;}
.x21_c00176{left:759.915000px;}
@media print{
.v3_c00176{vertical-align:-21.760000pt;}
.v0_c00176{vertical-align:0.000000pt;}
.v2_c00176{vertical-align:21.760000pt;}
.v1_c00176{vertical-align:26.880000pt;}
.ls15_c00176{letter-spacing:0.000000pt;}
.ls13_c00176{letter-spacing:0.209920pt;}
.lsb_c00176{letter-spacing:0.236160pt;}
.ls4_c00176{letter-spacing:0.243428pt;}
.ls11_c00176{letter-spacing:0.262400pt;}
.ls1d_c00176{letter-spacing:0.278144pt;}
.lsc_c00176{letter-spacing:0.283093pt;}
.lse_c00176{letter-spacing:0.283627pt;}
.ls27_c00176{letter-spacing:0.330624pt;}
.ls5_c00176{letter-spacing:0.340799pt;}
.ls24_c00176{letter-spacing:0.425088pt;}
.ls10_c00176{letter-spacing:0.472320pt;}
.lsd_c00176{letter-spacing:0.473387pt;}
.ls20_c00176{letter-spacing:0.519552pt;}
.ls7_c00176{letter-spacing:0.577600pt;}
.ls1c_c00176{letter-spacing:0.614016pt;}
.ls1e_c00176{letter-spacing:0.619264pt;}
.lsf_c00176{letter-spacing:0.632913pt;}
.ls3_c00176{letter-spacing:0.634189pt;}
.ls1f_c00176{letter-spacing:0.661248pt;}
.ls21_c00176{letter-spacing:0.681599pt;}
.ls25_c00176{letter-spacing:0.708480pt;}
.ls12_c00176{letter-spacing:0.730284pt;}
.ls23_c00176{letter-spacing:0.855424pt;}
.ls22_c00176{letter-spacing:2.529536pt;}
.ls17_c00176{letter-spacing:2.656000pt;}
.ls26_c00176{letter-spacing:3.983232pt;}
.lsa_c00176{letter-spacing:4.662827pt;}
.ls6_c00176{letter-spacing:4.663360pt;}
.ls8_c00176{letter-spacing:4.710293pt;}
.ls19_c00176{letter-spacing:4.712704pt;}
.ls9_c00176{letter-spacing:4.758613pt;}
.ls18_c00176{letter-spacing:4.759936pt;}
.ls16_c00176{letter-spacing:4.827264pt;}
.ls1b_c00176{letter-spacing:4.901632pt;}
.ls1a_c00176{letter-spacing:5.090560pt;}
.ls2_c00176{letter-spacing:5.312000pt;}
.ls0_c00176{letter-spacing:5.317333pt;}
.ls14_c00176{letter-spacing:5.475484pt;}
.ls1_c00176{letter-spacing:48.768000pt;}
.ws6_c00176{word-spacing:-19.680000pt;}
.ws7_c00176{word-spacing:-19.491072pt;}
.ws4_c00176{word-spacing:-19.349376pt;}
.ws5_c00176{word-spacing:-19.302144pt;}
.ws0_c00176{word-spacing:-18.705024pt;}
.ws9_c00176{word-spacing:-15.720049pt;}
.wsa_c00176{word-spacing:-15.671364pt;}
.ws2_c00176{word-spacing:-15.379250pt;}
.ws8_c00176{word-spacing:-15.203456pt;}
.wsc_c00176{word-spacing:-15.108992pt;}
.wsb_c00176{word-spacing:-15.061760pt;}
.ws3_c00176{word-spacing:-14.589440pt;}
.ws1_c00176{word-spacing:-10.319360pt;}
.wsd_c00176{word-spacing:-8.896000pt;}
.wse_c00176{word-spacing:0.000000pt;}
._c_c00176{margin-left:-4.408320pt;}
._b_c00176{margin-left:-3.516160pt;}
._a_c00176{margin-left:-2.606848pt;}
._0_c00176{margin-left:-1.048320pt;}
._2_c00176{width:1.024000pt;}
._5_c00176{width:2.425067pt;}
._3_c00176{width:3.968000pt;}
._6_c00176{width:5.312000pt;}
._8_c00176{width:6.208000pt;}
._9_c00176{width:8.256000pt;}
._4_c00176{width:15.936000pt;}
._1_c00176{width:16.832000pt;}
._7_c00176{width:20.736000pt;}
.fs6_c00176{font-size:32.000000pt;}
.fs3_c00176{font-size:37.120000pt;}
.fs2_c00176{font-size:49.920000pt;}
.fs4_c00176{font-size:52.480000pt;}
.fs7_c00176{font-size:53.333333pt;}
.fs5_c00176{font-size:54.095146pt;}
.fs0_c00176{font-size:64.000000pt;}
.fs1_c00176{font-size:65.969690pt;}
.y0_c00176{bottom:0.000000pt;}
.y31_c00176{bottom:2.773467pt;}
.y30_c00176{bottom:30.884000pt;}
.y1_c00176{bottom:48.000000pt;}
.y2f_c00176{bottom:49.640000pt;}
.y2e_c00176{bottom:55.080000pt;}
.y2d_c00176{bottom:65.001600pt;}
.y2c_c00176{bottom:86.120000pt;}
.y2b_c00176{bottom:109.800000pt;}
.y2a_c00176{bottom:174.440000pt;}
.y29_c00176{bottom:174.441600pt;}
.y27_c00176{bottom:190.116480pt;}
.y28_c00176{bottom:190.120000pt;}
.y26_c00176{bottom:205.480000pt;}
.y25_c00176{bottom:234.600000pt;}
.y21_c00176{bottom:254.120000pt;}
.y20_c00176{bottom:269.800000pt;}
.y24_c00176{bottom:274.600000pt;}
.y1f_c00176{bottom:287.400000pt;}
.y23_c00176{bottom:289.960000pt;}
.y1e_c00176{bottom:305.320000pt;}
.y22_c00176{bottom:305.640000pt;}
.y1d_c00176{bottom:321.320000pt;}
.y1c_c00176{bottom:351.080000pt;}
.y1b_c00176{bottom:383.080000pt;}
.y1a_c00176{bottom:401.640000pt;}
.y19_c00176{bottom:420.200000pt;}
.y18_c00176{bottom:439.080000pt;}
.y17_c00176{bottom:471.080000pt;}
.y16_c00176{bottom:489.640000pt;}
.y15_c00176{bottom:508.200000pt;}
.y14_c00176{bottom:527.080000pt;}
.y13_c00176{bottom:559.080000pt;}
.y12_c00176{bottom:577.640000pt;}
.y11_c00176{bottom:596.520000pt;}
.y10_c00176{bottom:628.520000pt;}
.yf_c00176{bottom:660.520000pt;}
.ye_c00176{bottom:679.080000pt;}
.yd_c00176{bottom:711.080000pt;}
.yc_c00176{bottom:743.080000pt;}
.yb_c00176{bottom:761.640000pt;}
.ya_c00176{bottom:780.520000pt;}
.y9_c00176{bottom:812.520000pt;}
.y8_c00176{bottom:831.080000pt;}
.y7_c00176{bottom:849.640000pt;}
.y6_c00176{bottom:868.520000pt;}
.y5_c00176{bottom:900.520000pt;}
.y4_c00176{bottom:932.520000pt;}
.y3_c00176{bottom:964.520000pt;}
.y2_c00176{bottom:1011.880000pt;}
.hb_c00176{height:17.116000pt;}
.ha_c00176{height:28.992000pt;}
.h9_c00176{height:40.514560pt;}
.hc_c00176{height:41.173333pt;}
.h7_c00176{height:41.761453pt;}
.h6_c00176{height:47.546880pt;}
.h8_c00176{height:50.752000pt;}
.h4_c00176{height:50.928601pt;}
.h3_c00176{height:57.984000pt;}
.h5_c00176{height:60.510720pt;}
.h2_c00176{height:1067.880000pt;}
.h0_c00176{height:1122.520000pt;}
.h1_c00176{height:1122.666667pt;}
.w7_c00176{width:22.240000pt;}
.w3_c00176{width:25.600000pt;}
.w4_c00176{width:93.760000pt;}
.w5_c00176{width:179.200000pt;}
.w6_c00176{width:274.880000pt;}
.w2_c00176{width:767.960000pt;}
.w0_c00176{width:793.720000pt;}
.w1_c00176{width:794.000000pt;}
.x0_c00176{left:0.000000pt;}
.x13_c00176{left:7.040133pt;}
.x1_c00176{left:12.880000pt;}
.x1b_c00176{left:45.252533pt;}
.x16_c00176{left:58.878667pt;}
.x17_c00176{left:93.664533pt;}
.x2_c00176{left:100.480133pt;}
.x12_c00176{left:106.320000pt;}
.x9_c00176{left:124.477867pt;}
.x19_c00176{left:128.208267pt;}
.x14_c00176{left:132.560000pt;}
.x7_c00176{left:137.020533pt;}
.x5_c00176{left:142.202533pt;}
.x3_c00176{left:144.463600pt;}
.x1c_c00176{left:160.546267pt;}
.x1a_c00176{left:167.473867pt;}
.x1f_c00176{left:173.072533pt;}
.x4_c00176{left:181.758800pt;}
.x20_c00176{left:211.605067pt;}
.x15_c00176{left:226.960000pt;}
.x8_c00176{left:245.421867pt;}
.xe_c00176{left:259.613600pt;}
.xf_c00176{left:267.613600pt;}
.xa_c00176{left:314.217733pt;}
.xb_c00176{left:325.753600pt;}
.x6_c00176{left:344.076133pt;}
.x18_c00176{left:406.800000pt;}
.x1d_c00176{left:463.985600pt;}
.x1e_c00176{left:495.065067pt;}
.xc_c00176{left:538.152000pt;}
.xd_c00176{left:555.475600pt;}
.x10_c00176{left:597.870133pt;}
.x11_c00176{left:662.565467pt;}
.x21_c00176{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_556cf6bc3cc8f3097b2600fa.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.134000;font-style:normal;font-weight:normal;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_9efb4d55a4a5c364bfcaf3a2.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;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:ff3_c00177;src:url('chunks/assets/font_f556683f754e128daae7bab8.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;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:ff4_c00177;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;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:ff5_c00177;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00177;src:url('chunks/assets/font_61532629081481a4727b9568.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:0.787000;font-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_c00177{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00177{vertical-align:-24.480000px;}
.v0_c00177{vertical-align:0.000000px;}
.v1_c00177{vertical-align:30.240000px;}
.ls11_c00177{letter-spacing:-0.179568px;}
.lsb_c00177{letter-spacing:0.000000px;}
.ls14_c00177{letter-spacing:0.144000px;}
.lsc_c00177{letter-spacing:0.265680px;}
.ls1_c00177{letter-spacing:0.289296px;}
.ls2_c00177{letter-spacing:0.295200px;}
.ls4_c00177{letter-spacing:0.354240px;}
.ls19_c00177{letter-spacing:0.425088px;}
.ls3_c00177{letter-spacing:0.531360px;}
.ls17_c00177{letter-spacing:0.637632px;}
.lsd_c00177{letter-spacing:0.690768px;}
.ls0_c00177{letter-spacing:0.712027px;}
.lse_c00177{letter-spacing:0.743904px;}
.ls18_c00177{letter-spacing:0.797040px;}
.lsf_c00177{letter-spacing:0.962352px;}
.ls15_c00177{letter-spacing:1.599984px;}
.ls16_c00177{letter-spacing:4.699584px;}
.ls1a_c00177{letter-spacing:4.988880px;}
.ls10_c00177{letter-spacing:5.430672px;}
.ls5_c00177{letter-spacing:5.975400px;}
.ls9_c00177{letter-spacing:5.976000px;}
.lsa_c00177{letter-spacing:6.159920px;}
.ls13_c00177{letter-spacing:7.178400px;}
.ls7_c00177{letter-spacing:9.102120px;}
.ls6_c00177{letter-spacing:16.992000px;}
.ls12_c00177{letter-spacing:17.892000px;}
.ls8_c00177{letter-spacing:55.008000px;}
.sc__c00177{text-shadow:none;}
.sc1_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00177{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc1_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00177{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00177{word-spacing:-21.043152px;}
.ws0_c00177{word-spacing:-17.630284px;}
.ws1_c00177{word-spacing:-16.944480px;}
.ws5_c00177{word-spacing:-16.838208px;}
.ws3_c00177{word-spacing:-11.429712px;}
.ws4_c00177{word-spacing:-10.152000px;}
.ws6_c00177{word-spacing:0.000000px;}
._10_c00177{margin-left:-5.158080px;}
._f_c00177{margin-left:-4.053600px;}
._e_c00177{margin-left:-2.177280px;}
._2_c00177{margin-left:-1.121760px;}
._5_c00177{width:1.062720px;}
._d_c00177{width:2.736000px;}
._8_c00177{width:4.006080px;}
._3_c00177{width:5.785920px;}
._4_c00177{width:6.925392px;}
._a_c00177{width:9.000000px;}
._9_c00177{width:11.016000px;}
._1_c00177{width:12.929760px;}
._0_c00177{width:14.287680px;}
._6_c00177{width:15.376320px;}
._c_c00177{width:17.496000px;}
._b_c00177{width:18.792000px;}
._7_c00177{width:32.472000px;}
.fc0_c00177{color:rgb(0,0,0);}
.fs6_c00177{font-size:36.000000px;}
.fs5_c00177{font-size:41.760000px;}
.fs4_c00177{font-size:56.160000px;}
.fs3_c00177{font-size:59.040000px;}
.fs7_c00177{font-size:60.000000px;}
.fs2_c00177{font-size:60.857039px;}
.fs0_c00177{font-size:72.000000px;}
.fs1_c00177{font-size:74.215901px;}
.y0_c00177{bottom:0.000000px;}
.y2a_c00177{bottom:3.120150px;}
.y29_c00177{bottom:34.744500px;}
.y1_c00177{bottom:54.000000px;}
.y28_c00177{bottom:55.481040px;}
.y27_c00177{bottom:78.885000px;}
.y26_c00177{bottom:90.400680px;}
.y25_c00177{bottom:107.684640px;}
.y24_c00177{bottom:125.322840px;}
.y23_c00177{bottom:142.961040px;}
.y22_c00177{bottom:166.365000px;}
.y21_c00177{bottom:184.005000px;}
.y20_c00177{bottom:210.645000px;}
.y1f_c00177{bottom:424.485000px;}
.y1e_c00177{bottom:445.365000px;}
.y1d_c00177{bottom:466.245000px;}
.y1c_c00177{bottom:487.485000px;}
.y1b_c00177{bottom:508.365000px;}
.y1a_c00177{bottom:529.245000px;}
.y19_c00177{bottom:550.485000px;}
.y18_c00177{bottom:571.365000px;}
.y17_c00177{bottom:592.605000px;}
.y16_c00177{bottom:628.605000px;}
.y15_c00177{bottom:649.485000px;}
.y14_c00177{bottom:685.485000px;}
.y13_c00177{bottom:706.365000px;}
.y12_c00177{bottom:727.605000px;}
.y11_c00177{bottom:748.485000px;}
.y10_c00177{bottom:784.485000px;}
.yf_c00177{bottom:805.365000px;}
.ye_c00177{bottom:826.605000px;}
.yd_c00177{bottom:848.205000px;}
.yc_c00177{bottom:869.085000px;}
.yb_c00177{bottom:889.965000px;}
.ya_c00177{bottom:910.845000px;}
.y9_c00177{bottom:932.085000px;}
.y8_c00177{bottom:952.965000px;}
.y7_c00177{bottom:988.965000px;}
.y6_c00177{bottom:1024.965000px;}
.y5_c00177{bottom:1053.402840px;}
.y4_c00177{bottom:1070.686800px;}
.y3_c00177{bottom:1088.325000px;}
.y2_c00177{bottom:1138.365000px;}
.h9_c00177{height:19.255500px;}
.h8_c00177{height:32.616000px;}
.ha_c00177{height:46.320000px;}
.h5_c00177{height:46.981634px;}
.h6_c00177{height:53.490240px;}
.h4_c00177{height:57.294676px;}
.h3_c00177{height:65.232000px;}
.h7_c00177{height:68.074560px;}
.h2_c00177{height:1201.365000px;}
.h0_c00177{height:1262.835000px;}
.h1_c00177{height:1263.000000px;}
.w3_c00177{width:25.020000px;}
.w2_c00177{width:863.955000px;}
.w0_c00177{width:892.935000px;}
.w1_c00177{width:893.250000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:14.490000px;}
.x2_c00177{left:113.040150px;}
.x5_c00177{left:133.034550px;}
.xa_c00177{left:136.043700px;}
.xe_c00177{left:140.036550px;}
.x3_c00177{left:162.521550px;}
.xf_c00177{left:167.036550px;}
.x6_c00177{left:168.469050px;}
.x4_c00177{left:204.478650px;}
.x7_c00177{left:213.166650px;}
.xb_c00177{left:230.073900px;}
.x12_c00177{left:241.522650px;}
.x10_c00177{left:258.514500px;}
.x13_c00177{left:282.525900px;}
.xc_c00177{left:306.050850px;}
.x11_c00177{left:310.533600px;}
.x19_c00177{left:312.208800px;}
.x1a_c00177{left:342.214200px;}
.xd_c00177{left:344.066550px;}
.x14_c00177{left:345.525150px;}
.x1b_c00177{left:355.007400px;}
.x21_c00177{left:373.082550px;}
.x15_c00177{left:390.506100px;}
.x1c_c00177{left:396.010650px;}
.x22_c00177{left:433.075500px;}
.x1f_c00177{left:465.726900px;}
.x16_c00177{left:468.499050px;}
.x20_c00177{left:503.742600px;}
.x17_c00177{left:506.514750px;}
.x8_c00177{left:518.351400px;}
.x1d_c00177{left:545.998200px;}
.x9_c00177{left:556.367100px;}
.x18_c00177{left:561.521850px;}
.x23_c00177{left:580.079250px;}
.x1e_c00177{left:647.800350px;}
.x24_c00177{left:690.093750px;}
.x25_c00177{left:759.915000px;}
@media print{
.v2_c00177{vertical-align:-21.760000pt;}
.v0_c00177{vertical-align:0.000000pt;}
.v1_c00177{vertical-align:26.880000pt;}
.ls11_c00177{letter-spacing:-0.159616pt;}
.lsb_c00177{letter-spacing:0.000000pt;}
.ls14_c00177{letter-spacing:0.128000pt;}
.lsc_c00177{letter-spacing:0.236160pt;}
.ls1_c00177{letter-spacing:0.257152pt;}
.ls2_c00177{letter-spacing:0.262400pt;}
.ls4_c00177{letter-spacing:0.314880pt;}
.ls19_c00177{letter-spacing:0.377856pt;}
.ls3_c00177{letter-spacing:0.472320pt;}
.ls17_c00177{letter-spacing:0.566784pt;}
.lsd_c00177{letter-spacing:0.614016pt;}
.ls0_c00177{letter-spacing:0.632913pt;}
.lse_c00177{letter-spacing:0.661248pt;}
.ls18_c00177{letter-spacing:0.708480pt;}
.lsf_c00177{letter-spacing:0.855424pt;}
.ls15_c00177{letter-spacing:1.422208pt;}
.ls16_c00177{letter-spacing:4.177408pt;}
.ls1a_c00177{letter-spacing:4.434560pt;}
.ls10_c00177{letter-spacing:4.827264pt;}
.ls5_c00177{letter-spacing:5.311467pt;}
.ls9_c00177{letter-spacing:5.312000pt;}
.lsa_c00177{letter-spacing:5.475484pt;}
.ls13_c00177{letter-spacing:6.380800pt;}
.ls7_c00177{letter-spacing:8.090773pt;}
.ls6_c00177{letter-spacing:15.104000pt;}
.ls12_c00177{letter-spacing:15.904000pt;}
.ls8_c00177{letter-spacing:48.896000pt;}
.ws2_c00177{word-spacing:-18.705024pt;}
.ws0_c00177{word-spacing:-15.671364pt;}
.ws1_c00177{word-spacing:-15.061760pt;}
.ws5_c00177{word-spacing:-14.967296pt;}
.ws3_c00177{word-spacing:-10.159744pt;}
.ws4_c00177{word-spacing:-9.024000pt;}
.ws6_c00177{word-spacing:0.000000pt;}
._10_c00177{margin-left:-4.584960pt;}
._f_c00177{margin-left:-3.603200pt;}
._e_c00177{margin-left:-1.935360pt;}
._2_c00177{margin-left:-0.997120pt;}
._5_c00177{width:0.944640pt;}
._d_c00177{width:2.432000pt;}
._8_c00177{width:3.560960pt;}
._3_c00177{width:5.143040pt;}
._4_c00177{width:6.155904pt;}
._a_c00177{width:8.000000pt;}
._9_c00177{width:9.792000pt;}
._1_c00177{width:11.493120pt;}
._0_c00177{width:12.700160pt;}
._6_c00177{width:13.667840pt;}
._c_c00177{width:15.552000pt;}
._b_c00177{width:16.704000pt;}
._7_c00177{width:28.864000pt;}
.fs6_c00177{font-size:32.000000pt;}
.fs5_c00177{font-size:37.120000pt;}
.fs4_c00177{font-size:49.920000pt;}
.fs3_c00177{font-size:52.480000pt;}
.fs7_c00177{font-size:53.333333pt;}
.fs2_c00177{font-size:54.095146pt;}
.fs0_c00177{font-size:64.000000pt;}
.fs1_c00177{font-size:65.969690pt;}
.y0_c00177{bottom:0.000000pt;}
.y2a_c00177{bottom:2.773467pt;}
.y29_c00177{bottom:30.884000pt;}
.y1_c00177{bottom:48.000000pt;}
.y28_c00177{bottom:49.316480pt;}
.y27_c00177{bottom:70.120000pt;}
.y26_c00177{bottom:80.356160pt;}
.y25_c00177{bottom:95.719680pt;}
.y24_c00177{bottom:111.398080pt;}
.y23_c00177{bottom:127.076480pt;}
.y22_c00177{bottom:147.880000pt;}
.y21_c00177{bottom:163.560000pt;}
.y20_c00177{bottom:187.240000pt;}
.y1f_c00177{bottom:377.320000pt;}
.y1e_c00177{bottom:395.880000pt;}
.y1d_c00177{bottom:414.440000pt;}
.y1c_c00177{bottom:433.320000pt;}
.y1b_c00177{bottom:451.880000pt;}
.y1a_c00177{bottom:470.440000pt;}
.y19_c00177{bottom:489.320000pt;}
.y18_c00177{bottom:507.880000pt;}
.y17_c00177{bottom:526.760000pt;}
.y16_c00177{bottom:558.760000pt;}
.y15_c00177{bottom:577.320000pt;}
.y14_c00177{bottom:609.320000pt;}
.y13_c00177{bottom:627.880000pt;}
.y12_c00177{bottom:646.760000pt;}
.y11_c00177{bottom:665.320000pt;}
.y10_c00177{bottom:697.320000pt;}
.yf_c00177{bottom:715.880000pt;}
.ye_c00177{bottom:734.760000pt;}
.yd_c00177{bottom:753.960000pt;}
.yc_c00177{bottom:772.520000pt;}
.yb_c00177{bottom:791.080000pt;}
.ya_c00177{bottom:809.640000pt;}
.y9_c00177{bottom:828.520000pt;}
.y8_c00177{bottom:847.080000pt;}
.y7_c00177{bottom:879.080000pt;}
.y6_c00177{bottom:911.080000pt;}
.y5_c00177{bottom:936.358080pt;}
.y4_c00177{bottom:951.721600pt;}
.y3_c00177{bottom:967.400000pt;}
.y2_c00177{bottom:1011.880000pt;}
.h9_c00177{height:17.116000pt;}
.h8_c00177{height:28.992000pt;}
.ha_c00177{height:41.173333pt;}
.h5_c00177{height:41.761453pt;}
.h6_c00177{height:47.546880pt;}
.h4_c00177{height:50.928601pt;}
.h3_c00177{height:57.984000pt;}
.h7_c00177{height:60.510720pt;}
.h2_c00177{height:1067.880000pt;}
.h0_c00177{height:1122.520000pt;}
.h1_c00177{height:1122.666667pt;}
.w3_c00177{width:22.240000pt;}
.w2_c00177{width:767.960000pt;}
.w0_c00177{width:793.720000pt;}
.w1_c00177{width:794.000000pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:12.880000pt;}
.x2_c00177{left:100.480133pt;}
.x5_c00177{left:118.252933pt;}
.xa_c00177{left:120.927733pt;}
.xe_c00177{left:124.476933pt;}
.x3_c00177{left:144.463600pt;}
.xf_c00177{left:148.476933pt;}
.x6_c00177{left:149.750267pt;}
.x4_c00177{left:181.758800pt;}
.x7_c00177{left:189.481467pt;}
.xb_c00177{left:204.510133pt;}
.x12_c00177{left:214.686800pt;}
.x10_c00177{left:229.790667pt;}
.x13_c00177{left:251.134133pt;}
.xc_c00177{left:272.045200pt;}
.x11_c00177{left:276.029867pt;}
.x19_c00177{left:277.518933pt;}
.x1a_c00177{left:304.190400pt;}
.xd_c00177{left:305.836933pt;}
.x14_c00177{left:307.133467pt;}
.x1b_c00177{left:315.562133pt;}
.x21_c00177{left:331.628933pt;}
.x15_c00177{left:347.116533pt;}
.x1c_c00177{left:352.009467pt;}
.x22_c00177{left:384.956000pt;}
.x1f_c00177{left:413.979467pt;}
.x16_c00177{left:416.443600pt;}
.x20_c00177{left:447.771200pt;}
.x17_c00177{left:450.235333pt;}
.x8_c00177{left:460.756800pt;}
.x1d_c00177{left:485.331733pt;}
.x9_c00177{left:494.548533pt;}
.x18_c00177{left:499.130533pt;}
.x23_c00177{left:515.626000pt;}
.x1e_c00177{left:575.822533pt;}
.x24_c00177{left:613.416667pt;}
.x25_c00177{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fb94f17727f3d1d6dcbf0fa2.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.134000;font-style:normal;font-weight:normal;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_1c341dfca7b0b8986252b9ac.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;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:ff3_c00178;src:url('chunks/assets/font_efd97a76a79f55ee800f25b9.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00178{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00178{vertical-align:-24.480000px;}
.v0_c00178{vertical-align:0.000000px;}
.v1_c00178{vertical-align:24.480600px;}
.ls8_c00178{letter-spacing:0.000000px;}
.lsd_c00178{letter-spacing:0.144000px;}
.ls12_c00178{letter-spacing:0.265680px;}
.ls1_c00178{letter-spacing:0.318480px;}
.lsf_c00178{letter-spacing:0.318816px;}
.ls3_c00178{letter-spacing:0.319080px;}
.ls13_c00178{letter-spacing:0.371952px;}
.ls4_c00178{letter-spacing:0.425088px;}
.ls14_c00178{letter-spacing:0.478224px;}
.ls2_c00178{letter-spacing:0.531360px;}
.ls11_c00178{letter-spacing:0.584496px;}
.ls15_c00178{letter-spacing:0.690768px;}
.lsa_c00178{letter-spacing:3.024000px;}
.ls5_c00178{letter-spacing:3.306240px;}
.ls10_c00178{letter-spacing:5.248656px;}
.lse_c00178{letter-spacing:5.402160px;}
.ls9_c00178{letter-spacing:5.461200px;}
.ls0_c00178{letter-spacing:5.514336px;}
.lsc_c00178{letter-spacing:5.567472px;}
.lsb_c00178{letter-spacing:5.939424px;}
.ls6_c00178{letter-spacing:5.976000px;}
.ls7_c00178{letter-spacing:6.159920px;}
.ls16_c00178{letter-spacing:10.396944px;}
.sc__c00178{text-shadow:none;}
.sc1_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00178{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc1_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00178{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00178{word-spacing:-22.352544px;}
.ws0_c00178{word-spacing:-21.874320px;}
.ws4_c00178{word-spacing:-21.815280px;}
.ws7_c00178{word-spacing:-16.944480px;}
.ws5_c00178{word-spacing:-16.731936px;}
.ws6_c00178{word-spacing:-16.678800px;}
.ws1_c00178{word-spacing:-13.032000px;}
.ws3_c00178{word-spacing:-10.152000px;}
.ws8_c00178{word-spacing:0.000000px;}
._12_c00178{margin-left:-9.734400px;}
._1_c00178{margin-left:-1.280136px;}
._2_c00178{width:1.121760px;}
._8_c00178{width:2.420640px;}
._c_c00178{width:3.877896px;}
._0_c00178{width:5.670960px;}
._5_c00178{width:7.439040px;}
._6_c00178{width:8.974080px;}
._13_c00178{width:10.170000px;}
._11_c00178{width:11.217600px;}
._e_c00178{width:12.752640px;}
._3_c00178{width:14.110560px;}
._4_c00178{width:41.859360px;}
._d_c00178{width:42.981120px;}
._a_c00178{width:60.811200px;}
._f_c00178{width:77.342400px;}
._b_c00178{width:78.700320px;}
._7_c00178{width:97.238880px;}
._10_c00178{width:110.267976px;}
._9_c00178{width:159.821280px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs3_c00178{font-size:36.000000px;}
.fs2_c00178{font-size:59.040000px;}
.fs4_c00178{font-size:60.000000px;}
.fs0_c00178{font-size:72.000000px;}
.fs1_c00178{font-size:74.215901px;}
.y0_c00178{bottom:0.000000px;}
.y2f_c00178{bottom:3.120150px;}
.y2e_c00178{bottom:34.744500px;}
.y1_c00178{bottom:54.000000px;}
.y2d_c00178{bottom:55.480680px;}
.y2c_c00178{bottom:72.764640px;}
.y2b_c00178{bottom:90.402840px;}
.y2a_c00178{bottom:107.686800px;}
.y29_c00178{bottom:131.445000px;}
.y28_c00178{bottom:149.085000px;}
.y27_c00178{bottom:160.248600px;}
.y26_c00178{bottom:177.886800px;}
.y25_c00178{bottom:201.645000px;}
.y24_c00178{bottom:228.285000px;}
.y23_c00178{bottom:516.285000px;}
.y22_c00178{bottom:537.885000px;}
.y21_c00178{bottom:555.165000px;}
.y20_c00178{bottom:572.805000px;}
.y1f_c00178{bottom:590.085000px;}
.y1e_c00178{bottom:607.725000px;}
.y18_c00178{bottom:624.645000px;}
.y1d_c00178{bottom:625.365000px;}
.y17_c00178{bottom:638.685000px;}
.y1c_c00178{bottom:642.645000px;}
.y1b_c00178{bottom:660.285000px;}
.y1a_c00178{bottom:677.925000px;}
.y19_c00178{bottom:695.205000px;}
.y16_c00178{bottom:712.845000px;}
.y15_c00178{bottom:730.125000px;}
.y14_c00178{bottom:748.485000px;}
.y13_c00178{bottom:762.885000px;}
.y12_c00178{bottom:811.845000px;}
.y11_c00178{bottom:829.485000px;}
.yc_c00178{bottom:847.845000px;}
.yb_c00178{bottom:861.885000px;}
.y10_c00178{bottom:865.485000px;}
.yf_c00178{bottom:883.125000px;}
.ye_c00178{bottom:900.405000px;}
.yd_c00178{bottom:918.045000px;}
.ya_c00178{bottom:935.685000px;}
.y9_c00178{bottom:952.965000px;}
.y7_c00178{bottom:982.125000px;}
.y6_c00178{bottom:982.845000px;}
.y8_c00178{bottom:988.245000px;}
.y4_c00178{bottom:1000.485000px;}
.y5_c00178{bottom:1051.604850px;}
.y3_c00178{bottom:1085.085000px;}
.y2_c00178{bottom:1138.365000px;}
.h9_c00178{height:19.255500px;}
.h8_c00178{height:32.616000px;}
.ha_c00178{height:46.320000px;}
.h5_c00178{height:53.490240px;}
.h7_c00178{height:57.096000px;}
.h6_c00178{height:57.096600px;}
.h4_c00178{height:57.294676px;}
.h3_c00178{height:65.232000px;}
.h2_c00178{height:1201.365000px;}
.h0_c00178{height:1262.835000px;}
.h1_c00178{height:1263.000000px;}
.w8_c00178{width:25.020000px;}
.w4_c00178{width:105.480000px;}
.w5_c00178{width:125.640000px;}
.w3_c00178{width:150.840000px;}
.w7_c00178{width:156.600000px;}
.w6_c00178{width:157.320000px;}
.w2_c00178{width:863.955000px;}
.w0_c00178{width:892.935000px;}
.w1_c00178{width:893.250000px;}
.x0_c00178{left:0.000000px;}
.x8_c00178{left:7.559850px;}
.x1_c00178{left:14.490000px;}
.x11_c00178{left:58.920150px;}
.x10_c00178{left:67.920150px;}
.x12_c00178{left:88.920150px;}
.x9_c00178{left:97.593150px;}
.xb_c00178{left:103.560000px;}
.x2_c00178{left:113.040150px;}
.x5_c00178{left:119.610000px;}
.xf_c00178{left:121.560150px;}
.xd_c00178{left:130.560000px;}
.x6_c00178{left:142.920150px;}
.x3_c00178{left:162.521550px;}
.x4_c00178{left:204.478650px;}
.x7_c00178{left:271.170000px;}
.xa_c00178{left:377.370000px;}
.xc_c00178{left:503.730000px;}
.xe_c00178{left:661.770000px;}
.x13_c00178{left:759.915000px;}
@media print{
.v2_c00178{vertical-align:-21.760000pt;}
.v0_c00178{vertical-align:0.000000pt;}
.v1_c00178{vertical-align:21.760533pt;}
.ls8_c00178{letter-spacing:0.000000pt;}
.lsd_c00178{letter-spacing:0.128000pt;}
.ls12_c00178{letter-spacing:0.236160pt;}
.ls1_c00178{letter-spacing:0.283093pt;}
.lsf_c00178{letter-spacing:0.283392pt;}
.ls3_c00178{letter-spacing:0.283627pt;}
.ls13_c00178{letter-spacing:0.330624pt;}
.ls4_c00178{letter-spacing:0.377856pt;}
.ls14_c00178{letter-spacing:0.425088pt;}
.ls2_c00178{letter-spacing:0.472320pt;}
.ls11_c00178{letter-spacing:0.519552pt;}
.ls15_c00178{letter-spacing:0.614016pt;}
.lsa_c00178{letter-spacing:2.688000pt;}
.ls5_c00178{letter-spacing:2.938880pt;}
.ls10_c00178{letter-spacing:4.665472pt;}
.lse_c00178{letter-spacing:4.801920pt;}
.ls9_c00178{letter-spacing:4.854400pt;}
.ls0_c00178{letter-spacing:4.901632pt;}
.lsc_c00178{letter-spacing:4.948864pt;}
.lsb_c00178{letter-spacing:5.279488pt;}
.ls6_c00178{letter-spacing:5.312000pt;}
.ls7_c00178{letter-spacing:5.475484pt;}
.ls16_c00178{letter-spacing:9.241728pt;}
.ws2_c00178{word-spacing:-19.868928pt;}
.ws0_c00178{word-spacing:-19.443840pt;}
.ws4_c00178{word-spacing:-19.391360pt;}
.ws7_c00178{word-spacing:-15.061760pt;}
.ws5_c00178{word-spacing:-14.872832pt;}
.ws6_c00178{word-spacing:-14.825600pt;}
.ws1_c00178{word-spacing:-11.584000pt;}
.ws3_c00178{word-spacing:-9.024000pt;}
.ws8_c00178{word-spacing:0.000000pt;}
._12_c00178{margin-left:-8.652800pt;}
._1_c00178{margin-left:-1.137899pt;}
._2_c00178{width:0.997120pt;}
._8_c00178{width:2.151680pt;}
._c_c00178{width:3.447019pt;}
._0_c00178{width:5.040853pt;}
._5_c00178{width:6.612480pt;}
._6_c00178{width:7.976960pt;}
._13_c00178{width:9.040000pt;}
._11_c00178{width:9.971200pt;}
._e_c00178{width:11.335680pt;}
._3_c00178{width:12.542720pt;}
._4_c00178{width:37.208320pt;}
._d_c00178{width:38.205440pt;}
._a_c00178{width:54.054400pt;}
._f_c00178{width:68.748800pt;}
._b_c00178{width:69.955840pt;}
._7_c00178{width:86.434560pt;}
._10_c00178{width:98.015979pt;}
._9_c00178{width:142.063360pt;}
.fs3_c00178{font-size:32.000000pt;}
.fs2_c00178{font-size:52.480000pt;}
.fs4_c00178{font-size:53.333333pt;}
.fs0_c00178{font-size:64.000000pt;}
.fs1_c00178{font-size:65.969690pt;}
.y0_c00178{bottom:0.000000pt;}
.y2f_c00178{bottom:2.773467pt;}
.y2e_c00178{bottom:30.884000pt;}
.y1_c00178{bottom:48.000000pt;}
.y2d_c00178{bottom:49.316160pt;}
.y2c_c00178{bottom:64.679680pt;}
.y2b_c00178{bottom:80.358080pt;}
.y2a_c00178{bottom:95.721600pt;}
.y29_c00178{bottom:116.840000pt;}
.y28_c00178{bottom:132.520000pt;}
.y27_c00178{bottom:142.443200pt;}
.y26_c00178{bottom:158.121600pt;}
.y25_c00178{bottom:179.240000pt;}
.y24_c00178{bottom:202.920000pt;}
.y23_c00178{bottom:458.920000pt;}
.y22_c00178{bottom:478.120000pt;}
.y21_c00178{bottom:493.480000pt;}
.y20_c00178{bottom:509.160000pt;}
.y1f_c00178{bottom:524.520000pt;}
.y1e_c00178{bottom:540.200000pt;}
.y18_c00178{bottom:555.240000pt;}
.y1d_c00178{bottom:555.880000pt;}
.y17_c00178{bottom:567.720000pt;}
.y1c_c00178{bottom:571.240000pt;}
.y1b_c00178{bottom:586.920000pt;}
.y1a_c00178{bottom:602.600000pt;}
.y19_c00178{bottom:617.960000pt;}
.y16_c00178{bottom:633.640000pt;}
.y15_c00178{bottom:649.000000pt;}
.y14_c00178{bottom:665.320000pt;}
.y13_c00178{bottom:678.120000pt;}
.y12_c00178{bottom:721.640000pt;}
.y11_c00178{bottom:737.320000pt;}
.yc_c00178{bottom:753.640000pt;}
.yb_c00178{bottom:766.120000pt;}
.y10_c00178{bottom:769.320000pt;}
.yf_c00178{bottom:785.000000pt;}
.ye_c00178{bottom:800.360000pt;}
.yd_c00178{bottom:816.040000pt;}
.ya_c00178{bottom:831.720000pt;}
.y9_c00178{bottom:847.080000pt;}
.y7_c00178{bottom:873.000000pt;}
.y6_c00178{bottom:873.640000pt;}
.y8_c00178{bottom:878.440000pt;}
.y4_c00178{bottom:889.320000pt;}
.y5_c00178{bottom:934.759867pt;}
.y3_c00178{bottom:964.520000pt;}
.y2_c00178{bottom:1011.880000pt;}
.h9_c00178{height:17.116000pt;}
.h8_c00178{height:28.992000pt;}
.ha_c00178{height:41.173333pt;}
.h5_c00178{height:47.546880pt;}
.h7_c00178{height:50.752000pt;}
.h6_c00178{height:50.752533pt;}
.h4_c00178{height:50.928601pt;}
.h3_c00178{height:57.984000pt;}
.h2_c00178{height:1067.880000pt;}
.h0_c00178{height:1122.520000pt;}
.h1_c00178{height:1122.666667pt;}
.w8_c00178{width:22.240000pt;}
.w4_c00178{width:93.760000pt;}
.w5_c00178{width:111.680000pt;}
.w3_c00178{width:134.080000pt;}
.w7_c00178{width:139.200000pt;}
.w6_c00178{width:139.840000pt;}
.w2_c00178{width:767.960000pt;}
.w0_c00178{width:793.720000pt;}
.w1_c00178{width:794.000000pt;}
.x0_c00178{left:0.000000pt;}
.x8_c00178{left:6.719867pt;}
.x1_c00178{left:12.880000pt;}
.x11_c00178{left:52.373467pt;}
.x10_c00178{left:60.373467pt;}
.x12_c00178{left:79.040133pt;}
.x9_c00178{left:86.749467pt;}
.xb_c00178{left:92.053333pt;}
.x2_c00178{left:100.480133pt;}
.x5_c00178{left:106.320000pt;}
.xf_c00178{left:108.053467pt;}
.xd_c00178{left:116.053333pt;}
.x6_c00178{left:127.040133pt;}
.x3_c00178{left:144.463600pt;}
.x4_c00178{left:181.758800pt;}
.x7_c00178{left:241.040000pt;}
.xa_c00178{left:335.440000pt;}
.xc_c00178{left:447.760000pt;}
.xe_c00178{left:588.240000pt;}
.x13_c00178{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_31bed54b3a7a638ac5db5b34.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.134000;font-style:normal;font-weight:normal;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_1c341dfca7b0b8986252b9ac.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;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:ff3_c00179;src:url('chunks/assets/font_0a5331e6ea1bfda1fc6f43a6.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;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:ff4_c00179;src:url('chunks/assets/font_32324145334ad4e58b63250a.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:0.787000;font-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_c00179{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00179{vertical-align:-24.480000px;}
.v0_c00179{vertical-align:0.000000px;}
.v1_c00179{vertical-align:30.240000px;}
.ls16_c00179{letter-spacing:-0.179568px;}
.ls8_c00179{letter-spacing:0.000000px;}
.ls17_c00179{letter-spacing:0.144000px;}
.lsf_c00179{letter-spacing:0.265680px;}
.lsd_c00179{letter-spacing:0.318816px;}
.ls4_c00179{letter-spacing:0.319080px;}
.ls5_c00179{letter-spacing:0.354240px;}
.ls14_c00179{letter-spacing:0.371952px;}
.ls13_c00179{letter-spacing:0.425088px;}
.ls11_c00179{letter-spacing:0.478224px;}
.ls2_c00179{letter-spacing:0.531360px;}
.lse_c00179{letter-spacing:0.584496px;}
.ls12_c00179{letter-spacing:0.637632px;}
.ls10_c00179{letter-spacing:0.797040px;}
.ls1_c00179{letter-spacing:5.352840px;}
.lsc_c00179{letter-spacing:5.402160px;}
.ls9_c00179{letter-spacing:5.461200px;}
.ls3_c00179{letter-spacing:5.512560px;}
.ls0_c00179{letter-spacing:5.514336px;}
.lsb_c00179{letter-spacing:5.567472px;}
.lsa_c00179{letter-spacing:5.939424px;}
.ls6_c00179{letter-spacing:5.976000px;}
.ls7_c00179{letter-spacing:6.159920px;}
.ls15_c00179{letter-spacing:15.768000px;}
.sc__c00179{text-shadow:none;}
.sc1_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00179{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc1_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00179{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00179{word-spacing:-22.352544px;}
.ws0_c00179{word-spacing:-21.874320px;}
.ws2_c00179{word-spacing:-21.815280px;}
.ws7_c00179{word-spacing:-20.016000px;}
.ws5_c00179{word-spacing:-16.944480px;}
.ws4_c00179{word-spacing:-16.891344px;}
.ws6_c00179{word-spacing:-16.838208px;}
.ws3_c00179{word-spacing:-16.678800px;}
.ws8_c00179{word-spacing:-11.429712px;}
.ws9_c00179{word-spacing:-10.152000px;}
.wsa_c00179{word-spacing:0.000000px;}
._8_c00179{margin-left:-15.768000px;}
._1_c00179{margin-left:-1.280136px;}
._2_c00179{width:1.121760px;}
._6_c00179{width:2.736000px;}
._a_c00179{width:4.176000px;}
._0_c00179{width:5.670960px;}
._9_c00179{width:8.640000px;}
._b_c00179{width:14.616000px;}
._7_c00179{width:15.768000px;}
._5_c00179{width:76.397760px;}
._4_c00179{width:150.138720px;}
._3_c00179{width:168.145920px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs4_c00179{font-size:36.000000px;}
.fs3_c00179{font-size:41.760000px;}
.fs2_c00179{font-size:59.040000px;}
.fs5_c00179{font-size:60.000000px;}
.fs0_c00179{font-size:72.000000px;}
.fs1_c00179{font-size:74.215901px;}
.y0_c00179{bottom:0.000000px;}
.y33_c00179{bottom:3.120150px;}
.y32_c00179{bottom:34.744500px;}
.y1_c00179{bottom:54.000000px;}
.y31_c00179{bottom:61.605000px;}
.y30_c00179{bottom:88.245000px;}
.y2f_c00179{bottom:133.605000px;}
.y2e_c00179{bottom:154.845000px;}
.y2d_c00179{bottom:175.725000px;}
.y2c_c00179{bottom:196.605000px;}
.y2b_c00179{bottom:217.845000px;}
.y2a_c00179{bottom:238.725000px;}
.y29_c00179{bottom:259.605000px;}
.y28_c00179{bottom:295.605000px;}
.y27_c00179{bottom:331.605000px;}
.y25_c00179{bottom:349.965000px;}
.y26_c00179{bottom:379.845000px;}
.y24_c00179{bottom:397.485000px;}
.y23_c00179{bottom:415.125000px;}
.y1d_c00179{bottom:433.125000px;}
.y1c_c00179{bottom:447.525000px;}
.y22_c00179{bottom:462.645000px;}
.y21_c00179{bottom:480.285000px;}
.y20_c00179{bottom:497.925000px;}
.y1f_c00179{bottom:515.205000px;}
.y1e_c00179{bottom:532.845000px;}
.y1b_c00179{bottom:550.125000px;}
.y1a_c00179{bottom:567.765000px;}
.y19_c00179{bottom:586.125000px;}
.y18_c00179{bottom:600.165000px;}
.y17_c00179{bottom:699.885000px;}
.y16_c00179{bottom:717.525000px;}
.y15_c00179{bottom:732.645000px;}
.y14_c00179{bottom:782.685000px;}
.y13_c00179{bottom:800.325000px;}
.ye_c00179{bottom:818.685000px;}
.yd_c00179{bottom:832.725000px;}
.y12_c00179{bottom:849.645000px;}
.y11_c00179{bottom:867.285000px;}
.y10_c00179{bottom:884.925000px;}
.yf_c00179{bottom:902.205000px;}
.yc_c00179{bottom:919.845000px;}
.yb_c00179{bottom:937.125000px;}
.y8_c00179{bottom:952.245000px;}
.ya_c00179{bottom:955.125000px;}
.y9_c00179{bottom:961.604850px;}
.y7_c00179{bottom:961.965000px;}
.y5_c00179{bottom:967.005000px;}
.y6_c00179{bottom:1015.604850px;}
.y4_c00179{bottom:1049.085000px;}
.y3_c00179{bottom:1085.085000px;}
.y2_c00179{bottom:1138.365000px;}
.h8_c00179{height:19.255500px;}
.h7_c00179{height:32.616000px;}
.h9_c00179{height:46.320000px;}
.h5_c00179{height:53.490240px;}
.h4_c00179{height:57.294676px;}
.h3_c00179{height:65.232000px;}
.h6_c00179{height:68.074560px;}
.h2_c00179{height:1201.365000px;}
.h0_c00179{height:1262.835000px;}
.h1_c00179{height:1263.000000px;}
.w8_c00179{width:25.020000px;}
.w4_c00179{width:110.520000px;}
.w5_c00179{width:110.880000px;}
.w6_c00179{width:127.080000px;}
.w7_c00179{width:169.560000px;}
.w3_c00179{width:177.840000px;}
.w2_c00179{width:863.955000px;}
.w0_c00179{width:892.935000px;}
.w1_c00179{width:893.250000px;}
.x0_c00179{left:0.000000px;}
.x8_c00179{left:7.559850px;}
.x1_c00179{left:14.490000px;}
.x11_c00179{left:40.920150px;}
.xf_c00179{left:46.920150px;}
.x10_c00179{left:61.920150px;}
.xb_c00179{left:70.560000px;}
.xe_c00179{left:73.920150px;}
.x9_c00179{left:91.559850px;}
.x2_c00179{left:113.040150px;}
.x5_c00179{left:119.610000px;}
.x3_c00179{left:162.521550px;}
.x6_c00179{left:169.920150px;}
.x12_c00179{left:193.915650px;}
.x4_c00179{left:204.478650px;}
.x13_c00179{left:229.897350px;}
.x14_c00179{left:245.121450px;}
.x15_c00179{left:281.103150px;}
.x7_c00179{left:298.170000px;}
.xa_c00179{left:409.410000px;}
.xc_c00179{left:521.010000px;}
.xd_c00179{left:648.810000px;}
.x16_c00179{left:759.915000px;}
@media print{
.v2_c00179{vertical-align:-21.760000pt;}
.v0_c00179{vertical-align:0.000000pt;}
.v1_c00179{vertical-align:26.880000pt;}
.ls16_c00179{letter-spacing:-0.159616pt;}
.ls8_c00179{letter-spacing:0.000000pt;}
.ls17_c00179{letter-spacing:0.128000pt;}
.lsf_c00179{letter-spacing:0.236160pt;}
.lsd_c00179{letter-spacing:0.283392pt;}
.ls4_c00179{letter-spacing:0.283627pt;}
.ls5_c00179{letter-spacing:0.314880pt;}
.ls14_c00179{letter-spacing:0.330624pt;}
.ls13_c00179{letter-spacing:0.377856pt;}
.ls11_c00179{letter-spacing:0.425088pt;}
.ls2_c00179{letter-spacing:0.472320pt;}
.lse_c00179{letter-spacing:0.519552pt;}
.ls12_c00179{letter-spacing:0.566784pt;}
.ls10_c00179{letter-spacing:0.708480pt;}
.ls1_c00179{letter-spacing:4.758080pt;}
.lsc_c00179{letter-spacing:4.801920pt;}
.ls9_c00179{letter-spacing:4.854400pt;}
.ls3_c00179{letter-spacing:4.900053pt;}
.ls0_c00179{letter-spacing:4.901632pt;}
.lsb_c00179{letter-spacing:4.948864pt;}
.lsa_c00179{letter-spacing:5.279488pt;}
.ls6_c00179{letter-spacing:5.312000pt;}
.ls7_c00179{letter-spacing:5.475484pt;}
.ls15_c00179{letter-spacing:14.016000pt;}
.ws1_c00179{word-spacing:-19.868928pt;}
.ws0_c00179{word-spacing:-19.443840pt;}
.ws2_c00179{word-spacing:-19.391360pt;}
.ws7_c00179{word-spacing:-17.792000pt;}
.ws5_c00179{word-spacing:-15.061760pt;}
.ws4_c00179{word-spacing:-15.014528pt;}
.ws6_c00179{word-spacing:-14.967296pt;}
.ws3_c00179{word-spacing:-14.825600pt;}
.ws8_c00179{word-spacing:-10.159744pt;}
.ws9_c00179{word-spacing:-9.024000pt;}
.wsa_c00179{word-spacing:0.000000pt;}
._8_c00179{margin-left:-14.016000pt;}
._1_c00179{margin-left:-1.137899pt;}
._2_c00179{width:0.997120pt;}
._6_c00179{width:2.432000pt;}
._a_c00179{width:3.712000pt;}
._0_c00179{width:5.040853pt;}
._9_c00179{width:7.680000pt;}
._b_c00179{width:12.992000pt;}
._7_c00179{width:14.016000pt;}
._5_c00179{width:67.909120pt;}
._4_c00179{width:133.456640pt;}
._3_c00179{width:149.463040pt;}
.fs4_c00179{font-size:32.000000pt;}
.fs3_c00179{font-size:37.120000pt;}
.fs2_c00179{font-size:52.480000pt;}
.fs5_c00179{font-size:53.333333pt;}
.fs0_c00179{font-size:64.000000pt;}
.fs1_c00179{font-size:65.969690pt;}
.y0_c00179{bottom:0.000000pt;}
.y33_c00179{bottom:2.773467pt;}
.y32_c00179{bottom:30.884000pt;}
.y1_c00179{bottom:48.000000pt;}
.y31_c00179{bottom:54.760000pt;}
.y30_c00179{bottom:78.440000pt;}
.y2f_c00179{bottom:118.760000pt;}
.y2e_c00179{bottom:137.640000pt;}
.y2d_c00179{bottom:156.200000pt;}
.y2c_c00179{bottom:174.760000pt;}
.y2b_c00179{bottom:193.640000pt;}
.y2a_c00179{bottom:212.200000pt;}
.y29_c00179{bottom:230.760000pt;}
.y28_c00179{bottom:262.760000pt;}
.y27_c00179{bottom:294.760000pt;}
.y25_c00179{bottom:311.080000pt;}
.y26_c00179{bottom:337.640000pt;}
.y24_c00179{bottom:353.320000pt;}
.y23_c00179{bottom:369.000000pt;}
.y1d_c00179{bottom:385.000000pt;}
.y1c_c00179{bottom:397.800000pt;}
.y22_c00179{bottom:411.240000pt;}
.y21_c00179{bottom:426.920000pt;}
.y20_c00179{bottom:442.600000pt;}
.y1f_c00179{bottom:457.960000pt;}
.y1e_c00179{bottom:473.640000pt;}
.y1b_c00179{bottom:489.000000pt;}
.y1a_c00179{bottom:504.680000pt;}
.y19_c00179{bottom:521.000000pt;}
.y18_c00179{bottom:533.480000pt;}
.y17_c00179{bottom:622.120000pt;}
.y16_c00179{bottom:637.800000pt;}
.y15_c00179{bottom:651.240000pt;}
.y14_c00179{bottom:695.720000pt;}
.y13_c00179{bottom:711.400000pt;}
.ye_c00179{bottom:727.720000pt;}
.yd_c00179{bottom:740.200000pt;}
.y12_c00179{bottom:755.240000pt;}
.y11_c00179{bottom:770.920000pt;}
.y10_c00179{bottom:786.600000pt;}
.yf_c00179{bottom:801.960000pt;}
.yc_c00179{bottom:817.640000pt;}
.yb_c00179{bottom:833.000000pt;}
.y8_c00179{bottom:846.440000pt;}
.ya_c00179{bottom:849.000000pt;}
.y9_c00179{bottom:854.759867pt;}
.y7_c00179{bottom:855.080000pt;}
.y5_c00179{bottom:859.560000pt;}
.y6_c00179{bottom:902.759867pt;}
.y4_c00179{bottom:932.520000pt;}
.y3_c00179{bottom:964.520000pt;}
.y2_c00179{bottom:1011.880000pt;}
.h8_c00179{height:17.116000pt;}
.h7_c00179{height:28.992000pt;}
.h9_c00179{height:41.173333pt;}
.h5_c00179{height:47.546880pt;}
.h4_c00179{height:50.928601pt;}
.h3_c00179{height:57.984000pt;}
.h6_c00179{height:60.510720pt;}
.h2_c00179{height:1067.880000pt;}
.h0_c00179{height:1122.520000pt;}
.h1_c00179{height:1122.666667pt;}
.w8_c00179{width:22.240000pt;}
.w4_c00179{width:98.240000pt;}
.w5_c00179{width:98.560000pt;}
.w6_c00179{width:112.960000pt;}
.w7_c00179{width:150.720000pt;}
.w3_c00179{width:158.080000pt;}
.w2_c00179{width:767.960000pt;}
.w0_c00179{width:793.720000pt;}
.w1_c00179{width:794.000000pt;}
.x0_c00179{left:0.000000pt;}
.x8_c00179{left:6.719867pt;}
.x1_c00179{left:12.880000pt;}
.x11_c00179{left:36.373467pt;}
.xf_c00179{left:41.706800pt;}
.x10_c00179{left:55.040133pt;}
.xb_c00179{left:62.720000pt;}
.xe_c00179{left:65.706800pt;}
.x9_c00179{left:81.386533pt;}
.x2_c00179{left:100.480133pt;}
.x5_c00179{left:106.320000pt;}
.x3_c00179{left:144.463600pt;}
.x6_c00179{left:151.040133pt;}
.x12_c00179{left:172.369467pt;}
.x4_c00179{left:181.758800pt;}
.x13_c00179{left:204.353200pt;}
.x14_c00179{left:217.885733pt;}
.x15_c00179{left:249.869467pt;}
.x7_c00179{left:265.040000pt;}
.xa_c00179{left:363.920000pt;}
.xc_c00179{left:463.120000pt;}
.xd_c00179{left:576.720000pt;}
.x16_c00179{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_34d2c1181ce13ce52235c035.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.134000;font-style:normal;font-weight:normal;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_b9f5df9c70e28f20bd8e10f3.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;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:ff3_c00180;src:url('chunks/assets/font_4fc35b9f1b57e263dbb9532d.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:0.787000;font-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_c00180{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00180{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00180{vertical-align:-24.480000px;}
.v0_c00180{vertical-align:0.000000px;}
.v1_c00180{vertical-align:30.240000px;}
.ls7_c00180{letter-spacing:-0.179568px;}
.ls5_c00180{letter-spacing:0.000000px;}
.ls8_c00180{letter-spacing:0.144000px;}
.lse_c00180{letter-spacing:0.202464px;}
.ls10_c00180{letter-spacing:0.239760px;}
.lsa_c00180{letter-spacing:0.265680px;}
.ls2_c00180{letter-spacing:0.295200px;}
.lsc_c00180{letter-spacing:0.399600px;}
.ls3_c00180{letter-spacing:0.531360px;}
.lsd_c00180{letter-spacing:0.532722px;}
.lsf_c00180{letter-spacing:0.576658px;}
.lsb_c00180{letter-spacing:0.766799px;}
.ls6_c00180{letter-spacing:5.335200px;}
.ls1_c00180{letter-spacing:5.923200px;}
.ls0_c00180{letter-spacing:5.976000px;}
.ls4_c00180{letter-spacing:6.159920px;}
.ls9_c00180{letter-spacing:8.118000px;}
.sc__c00180{text-shadow:none;}
.sc1_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00180{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc1_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00180{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00180{word-spacing:-20.947680px;}
.ws3_c00180{word-spacing:-17.685056px;}
.ws5_c00180{word-spacing:-15.844353px;}
.ws4_c00180{word-spacing:-15.800417px;}
.ws6_c00180{word-spacing:-15.051600px;}
.ws1_c00180{word-spacing:-11.429712px;}
.ws2_c00180{word-spacing:-10.152000px;}
.ws7_c00180{word-spacing:0.000000px;}
._8_c00180{margin-left:-7.904160px;}
._9_c00180{margin-left:-6.818400px;}
._7_c00180{margin-left:-1.020000px;}
._4_c00180{width:1.152000px;}
._3_c00180{width:2.232000px;}
._6_c00180{width:4.320000px;}
._5_c00180{width:6.768000px;}
._2_c00180{width:8.784000px;}
._0_c00180{width:13.968000px;}
._1_c00180{width:22.608000px;}
.fc0_c00180{color:rgb(0,0,0);}
.fs4_c00180{font-size:36.000000px;}
.fs3_c00180{font-size:41.760000px;}
.fs7_c00180{font-size:53.280000px;}
.fs8_c00180{font-size:54.919767px;}
.fs2_c00180{font-size:56.160000px;}
.fs5_c00180{font-size:59.040000px;}
.fs9_c00180{font-size:60.000000px;}
.fs6_c00180{font-size:60.857039px;}
.fs0_c00180{font-size:72.000000px;}
.fs1_c00180{font-size:74.215901px;}
.y0_c00180{bottom:0.000000px;}
.y24_c00180{bottom:3.120150px;}
.y22_c00180{bottom:14.400000px;}
.y23_c00180{bottom:34.744500px;}
.y1_c00180{bottom:54.000000px;}
.y20_c00180{bottom:61.605000px;}
.y1f_c00180{bottom:72.765000px;}
.y1e_c00180{bottom:72.766800px;}
.y1d_c00180{bottom:96.525000px;}
.y1c_c00180{bottom:123.165000px;}
.y1b_c00180{bottom:310.725000px;}
.y1a_c00180{bottom:346.725000px;}
.y21_c00180{bottom:373.365000px;}
.y19_c00180{bottom:382.725000px;}
.y18_c00180{bottom:418.725000px;}
.y17_c00180{bottom:454.725000px;}
.y16_c00180{bottom:490.725000px;}
.y15_c00180{bottom:526.725000px;}
.y14_c00180{bottom:562.725000px;}
.y13_c00180{bottom:599.085000px;}
.y12_c00180{bottom:635.085000px;}
.y11_c00180{bottom:671.085000px;}
.y10_c00180{bottom:707.085000px;}
.yf_c00180{bottom:743.085000px;}
.ye_c00180{bottom:779.085000px;}
.yd_c00180{bottom:815.085000px;}
.yc_c00180{bottom:835.965000px;}
.yb_c00180{bottom:871.965000px;}
.ya_c00180{bottom:907.965000px;}
.y9_c00180{bottom:943.965000px;}
.y8_c00180{bottom:964.845000px;}
.y7_c00180{bottom:986.085000px;}
.y6_c00180{bottom:1006.965000px;}
.y5_c00180{bottom:1027.845000px;}
.y4_c00180{bottom:1063.845000px;}
.y3_c00180{bottom:1085.085000px;}
.y2_c00180{bottom:1138.365000px;}
.hc_c00180{height:19.255500px;}
.h9_c00180{height:27.000000px;}
.h6_c00180{height:32.616000px;}
.hb_c00180{height:42.398060px;}
.hd_c00180{height:46.320000px;}
.h8_c00180{height:46.981634px;}
.ha_c00180{height:48.271680px;}
.h7_c00180{height:53.490240px;}
.h4_c00180{height:57.294676px;}
.h3_c00180{height:65.232000px;}
.h5_c00180{height:68.074560px;}
.h2_c00180{height:1201.365000px;}
.h0_c00180{height:1262.835000px;}
.h1_c00180{height:1263.000000px;}
.w4_c00180{width:25.020000px;}
.w3_c00180{width:398.160000px;}
.w2_c00180{width:863.955000px;}
.w0_c00180{width:892.935000px;}
.w1_c00180{width:893.250000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:14.490000px;}
.xa_c00180{left:51.126300px;}
.x2_c00180{left:113.040150px;}
.xb_c00180{left:161.433150px;}
.x3_c00180{left:162.521550px;}
.xc_c00180{left:188.419200px;}
.x4_c00180{left:204.478650px;}
.x7_c00180{left:239.770050px;}
.x9_c00180{left:248.490000px;}
.x8_c00180{left:283.119150px;}
.xd_c00180{left:299.440800px;}
.x5_c00180{left:328.046250px;}
.xe_c00180{left:338.455050px;}
.x6_c00180{left:406.093200px;}
.xf_c00180{left:759.915000px;}
@media print{
.v2_c00180{vertical-align:-21.760000pt;}
.v0_c00180{vertical-align:0.000000pt;}
.v1_c00180{vertical-align:26.880000pt;}
.ls7_c00180{letter-spacing:-0.159616pt;}
.ls5_c00180{letter-spacing:0.000000pt;}
.ls8_c00180{letter-spacing:0.128000pt;}
.lse_c00180{letter-spacing:0.179968pt;}
.ls10_c00180{letter-spacing:0.213120pt;}
.lsa_c00180{letter-spacing:0.236160pt;}
.ls2_c00180{letter-spacing:0.262400pt;}
.lsc_c00180{letter-spacing:0.355200pt;}
.ls3_c00180{letter-spacing:0.472320pt;}
.lsd_c00180{letter-spacing:0.473530pt;}
.lsf_c00180{letter-spacing:0.512584pt;}
.lsb_c00180{letter-spacing:0.681599pt;}
.ls6_c00180{letter-spacing:4.742400pt;}
.ls1_c00180{letter-spacing:5.265067pt;}
.ls0_c00180{letter-spacing:5.312000pt;}
.ls4_c00180{letter-spacing:5.475484pt;}
.ls9_c00180{letter-spacing:7.216000pt;}
.ws0_c00180{word-spacing:-18.620160pt;}
.ws3_c00180{word-spacing:-15.720049pt;}
.ws5_c00180{word-spacing:-14.083869pt;}
.ws4_c00180{word-spacing:-14.044815pt;}
.ws6_c00180{word-spacing:-13.379200pt;}
.ws1_c00180{word-spacing:-10.159744pt;}
.ws2_c00180{word-spacing:-9.024000pt;}
.ws7_c00180{word-spacing:0.000000pt;}
._8_c00180{margin-left:-7.025920pt;}
._9_c00180{margin-left:-6.060800pt;}
._7_c00180{margin-left:-0.906667pt;}
._4_c00180{width:1.024000pt;}
._3_c00180{width:1.984000pt;}
._6_c00180{width:3.840000pt;}
._5_c00180{width:6.016000pt;}
._2_c00180{width:7.808000pt;}
._0_c00180{width:12.416000pt;}
._1_c00180{width:20.096000pt;}
.fs4_c00180{font-size:32.000000pt;}
.fs3_c00180{font-size:37.120000pt;}
.fs7_c00180{font-size:47.360000pt;}
.fs8_c00180{font-size:48.817571pt;}
.fs2_c00180{font-size:49.920000pt;}
.fs5_c00180{font-size:52.480000pt;}
.fs9_c00180{font-size:53.333333pt;}
.fs6_c00180{font-size:54.095146pt;}
.fs0_c00180{font-size:64.000000pt;}
.fs1_c00180{font-size:65.969690pt;}
.y0_c00180{bottom:0.000000pt;}
.y24_c00180{bottom:2.773467pt;}
.y22_c00180{bottom:12.800000pt;}
.y23_c00180{bottom:30.884000pt;}
.y1_c00180{bottom:48.000000pt;}
.y20_c00180{bottom:54.760000pt;}
.y1f_c00180{bottom:64.680000pt;}
.y1e_c00180{bottom:64.681600pt;}
.y1d_c00180{bottom:85.800000pt;}
.y1c_c00180{bottom:109.480000pt;}
.y1b_c00180{bottom:276.200000pt;}
.y1a_c00180{bottom:308.200000pt;}
.y21_c00180{bottom:331.880000pt;}
.y19_c00180{bottom:340.200000pt;}
.y18_c00180{bottom:372.200000pt;}
.y17_c00180{bottom:404.200000pt;}
.y16_c00180{bottom:436.200000pt;}
.y15_c00180{bottom:468.200000pt;}
.y14_c00180{bottom:500.200000pt;}
.y13_c00180{bottom:532.520000pt;}
.y12_c00180{bottom:564.520000pt;}
.y11_c00180{bottom:596.520000pt;}
.y10_c00180{bottom:628.520000pt;}
.yf_c00180{bottom:660.520000pt;}
.ye_c00180{bottom:692.520000pt;}
.yd_c00180{bottom:724.520000pt;}
.yc_c00180{bottom:743.080000pt;}
.yb_c00180{bottom:775.080000pt;}
.ya_c00180{bottom:807.080000pt;}
.y9_c00180{bottom:839.080000pt;}
.y8_c00180{bottom:857.640000pt;}
.y7_c00180{bottom:876.520000pt;}
.y6_c00180{bottom:895.080000pt;}
.y5_c00180{bottom:913.640000pt;}
.y4_c00180{bottom:945.640000pt;}
.y3_c00180{bottom:964.520000pt;}
.y2_c00180{bottom:1011.880000pt;}
.hc_c00180{height:17.116000pt;}
.h9_c00180{height:24.000000pt;}
.h6_c00180{height:28.992000pt;}
.hb_c00180{height:37.687165pt;}
.hd_c00180{height:41.173333pt;}
.h8_c00180{height:41.761453pt;}
.ha_c00180{height:42.908160pt;}
.h7_c00180{height:47.546880pt;}
.h4_c00180{height:50.928601pt;}
.h3_c00180{height:57.984000pt;}
.h5_c00180{height:60.510720pt;}
.h2_c00180{height:1067.880000pt;}
.h0_c00180{height:1122.520000pt;}
.h1_c00180{height:1122.666667pt;}
.w4_c00180{width:22.240000pt;}
.w3_c00180{width:353.920000pt;}
.w2_c00180{width:767.960000pt;}
.w0_c00180{width:793.720000pt;}
.w1_c00180{width:794.000000pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:12.880000pt;}
.xa_c00180{left:45.445600pt;}
.x2_c00180{left:100.480133pt;}
.xb_c00180{left:143.496133pt;}
.x3_c00180{left:144.463600pt;}
.xc_c00180{left:167.483733pt;}
.x4_c00180{left:181.758800pt;}
.x7_c00180{left:213.128933pt;}
.x9_c00180{left:220.880000pt;}
.x8_c00180{left:251.661467pt;}
.xd_c00180{left:266.169600pt;}
.x5_c00180{left:291.596667pt;}
.xe_c00180{left:300.848933pt;}
.x6_c00180{left:360.971733pt;}
.xf_c00180{left:675.480000pt;}
}





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

.ir_c00181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00181;src:url('chunks/assets/font_ef2cb97cf536a37a53b8d6b2.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.134000;font-style:normal;font-weight:normal;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_b0b442ebdb42e158ebcde358.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;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:ff3_c00181;src:url('chunks/assets/font_dcfbca5359436ac69885060a.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00181{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00181{vertical-align:-24.480000px;}
.v0_c00181{vertical-align:0.000000px;}
.v1_c00181{vertical-align:30.240000px;}
.lsc_c00181{letter-spacing:0.000000px;}
.ls11_c00181{letter-spacing:0.265680px;}
.lsa_c00181{letter-spacing:0.273857px;}
.ls8_c00181{letter-spacing:0.295200px;}
.ls18_c00181{letter-spacing:0.318816px;}
.ls15_c00181{letter-spacing:0.328628px;}
.ls9_c00181{letter-spacing:0.438171px;}
.ls12_c00181{letter-spacing:0.531360px;}
.ls1d_c00181{letter-spacing:0.547713px;}
.ls16_c00181{letter-spacing:0.584496px;}
.ls1c_c00181{letter-spacing:0.602485px;}
.ls1a_c00181{letter-spacing:0.637632px;}
.ls19_c00181{letter-spacing:0.657256px;}
.ls6_c00181{letter-spacing:0.681240px;}
.ls1e_c00181{letter-spacing:0.696672px;}
.ls10_c00181{letter-spacing:0.712027px;}
.ls14_c00181{letter-spacing:0.821570px;}
.lse_c00181{letter-spacing:5.245344px;}
.ls3_c00181{letter-spacing:5.314440px;}
.lsd_c00181{letter-spacing:5.406777px;}
.lsf_c00181{letter-spacing:5.430672px;}
.ls1_c00181{letter-spacing:5.499398px;}
.ls17_c00181{letter-spacing:5.567472px;}
.ls4_c00181{letter-spacing:5.976000px;}
.ls5_c00181{letter-spacing:5.991000px;}
.ls0_c00181{letter-spacing:6.158683px;}
.ls2_c00181{letter-spacing:6.159301px;}
.lsb_c00181{letter-spacing:6.159920px;}
.ls7_c00181{letter-spacing:6.860448px;}
.ls13_c00181{letter-spacing:7.261920px;}
.ls1b_c00181{letter-spacing:11.589552px;}
.sc__c00181{text-shadow:none;}
.sc1_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00181{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc1_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00181{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00181{word-spacing:-21.980592px;}
.ws0_c00181{word-spacing:-21.499753px;}
.ws2_c00181{word-spacing:-21.043152px;}
.ws4_c00181{word-spacing:-17.630284px;}
.ws6_c00181{word-spacing:-17.575513px;}
.ws8_c00181{word-spacing:-17.520742px;}
.ws7_c00181{word-spacing:-17.356428px;}
.ws9_c00181{word-spacing:-16.731936px;}
.ws1_c00181{word-spacing:-11.609280px;}
.ws3_c00181{word-spacing:-10.008000px;}
.wsa_c00181{word-spacing:0.000000px;}
._e_c00181{margin-left:-12.221280px;}
._d_c00181{margin-left:-11.099520px;}
._f_c00181{margin-left:-10.036800px;}
._a_c00181{margin-left:-7.498080px;}
._9_c00181{margin-left:-6.258240px;}
._8_c00181{margin-left:-1.003200px;}
._4_c00181{width:1.008000px;}
._5_c00181{width:2.160000px;}
._c_c00181{width:3.177600px;}
._7_c00181{width:4.320000px;}
._1_c00181{width:5.760000px;}
._b_c00181{width:7.283520px;}
._6_c00181{width:10.440000px;}
._2_c00181{width:13.104000px;}
._3_c00181{width:14.803800px;}
._0_c00181{width:27.360000px;}
.fc0_c00181{color:rgb(0,0,0);}
.fs5_c00181{font-size:36.000000px;}
.fs4_c00181{font-size:41.760000px;}
.fs3_c00181{font-size:56.160000px;}
.fs2_c00181{font-size:57.888403px;}
.fs6_c00181{font-size:59.040000px;}
.fs8_c00181{font-size:60.000000px;}
.fs7_c00181{font-size:60.857039px;}
.fs0_c00181{font-size:72.000000px;}
.fs1_c00181{font-size:74.215901px;}
.y0_c00181{bottom:0.000000px;}
.y2f_c00181{bottom:3.120150px;}
.y2e_c00181{bottom:34.744500px;}
.y1_c00181{bottom:54.000000px;}
.y2c_c00181{bottom:55.481040px;}
.y2d_c00181{bottom:55.485000px;}
.y2b_c00181{bottom:72.765000px;}
.y2a_c00181{bottom:78.885000px;}
.y29_c00181{bottom:90.401040px;}
.y28_c00181{bottom:107.685000px;}
.y27_c00181{bottom:107.688600px;}
.y26_c00181{bottom:125.326800px;}
.y24_c00181{bottom:142.961040px;}
.y25_c00181{bottom:142.965000px;}
.y23_c00181{bottom:160.245000px;}
.y22_c00181{bottom:160.246800px;}
.y21_c00181{bottom:177.885000px;}
.y20_c00181{bottom:184.005000px;}
.y1f_c00181{bottom:210.645000px;}
.y1e_c00181{bottom:258.165000px;}
.y1d_c00181{bottom:279.405000px;}
.y1c_c00181{bottom:315.405000px;}
.y1b_c00181{bottom:336.285000px;}
.y1a_c00181{bottom:372.285000px;}
.y19_c00181{bottom:408.285000px;}
.y18_c00181{bottom:429.525000px;}
.y17_c00181{bottom:465.525000px;}
.y16_c00181{bottom:486.405000px;}
.y15_c00181{bottom:522.405000px;}
.y14_c00181{bottom:558.405000px;}
.y13_c00181{bottom:579.285000px;}
.y12_c00181{bottom:600.525000px;}
.y11_c00181{bottom:621.405000px;}
.y10_c00181{bottom:657.405000px;}
.yf_c00181{bottom:693.405000px;}
.ye_c00181{bottom:729.405000px;}
.yd_c00181{bottom:765.405000px;}
.yc_c00181{bottom:801.405000px;}
.yb_c00181{bottom:822.285000px;}
.ya_c00181{bottom:843.525000px;}
.y9_c00181{bottom:879.525000px;}
.y8_c00181{bottom:915.525000px;}
.y7_c00181{bottom:953.685000px;}
.y6_c00181{bottom:991.845000px;}
.y5_c00181{bottom:1027.845000px;}
.y4_c00181{bottom:1049.085000px;}
.y3_c00181{bottom:1085.085000px;}
.y2_c00181{bottom:1138.365000px;}
.h9_c00181{height:19.255500px;}
.h6_c00181{height:32.616000px;}
.ha_c00181{height:46.320000px;}
.h7_c00181{height:46.981634px;}
.h8_c00181{height:53.490240px;}
.h4_c00181{height:57.294676px;}
.h3_c00181{height:65.232000px;}
.h5_c00181{height:68.074560px;}
.h2_c00181{height:1201.365000px;}
.h0_c00181{height:1262.835000px;}
.h1_c00181{height:1263.000000px;}
.w3_c00181{width:25.020000px;}
.w2_c00181{width:863.955000px;}
.w0_c00181{width:892.935000px;}
.w1_c00181{width:893.250000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:14.490000px;}
.x2_c00181{left:113.040150px;}
.xf_c00181{left:143.027700px;}
.xd_c00181{left:150.029700px;}
.x3_c00181{left:162.521550px;}
.x7_c00181{left:172.024950px;}
.x15_c00181{left:183.295950px;}
.x5_c00181{left:239.079000px;}
.x21_c00181{left:250.218450px;}
.x8_c00181{left:254.032050px;}
.x10_c00181{left:255.076200px;}
.xe_c00181{left:260.913900px;}
.x16_c00181{left:264.158550px;}
.x22_c00181{left:266.042700px;}
.x17_c00181{left:275.072400px;}
.x4_c00181{left:280.455000px;}
.x9_c00181{left:292.237800px;}
.x18_c00181{left:300.076950px;}
.xb_c00181{left:319.047000px;}
.xc_c00181{left:348.044250px;}
.x19_c00181{left:351.192600px;}
.xa_c00181{left:374.244900px;}
.x1b_c00181{left:391.290150px;}
.x1a_c00181{left:399.574950px;}
.x6_c00181{left:410.223300px;}
.x1c_c00181{left:425.537850px;}
.x25_c00181{left:433.924500px;}
.x11_c00181{left:476.267550px;}
.x1d_c00181{left:487.372950px;}
.x12_c00181{left:521.266800px;}
.x26_c00181{left:541.426050px;}
.x1e_c00181{left:555.711150px;}
.x23_c00181{left:573.984750px;}
.x13_c00181{left:598.717800px;}
.x24_c00181{left:618.997950px;}
.x27_c00181{left:634.797750px;}
.x28_c00181{left:649.797000px;}
.x1f_c00181{left:653.537100px;}
.x29_c00181{left:704.785050px;}
.x2a_c00181{left:717.294450px;}
.x20_c00181{left:733.628250px;}
.x14_c00181{left:737.071950px;}
.x2b_c00181{left:759.915000px;}
@media print{
.v2_c00181{vertical-align:-21.760000pt;}
.v0_c00181{vertical-align:0.000000pt;}
.v1_c00181{vertical-align:26.880000pt;}
.lsc_c00181{letter-spacing:0.000000pt;}
.ls11_c00181{letter-spacing:0.236160pt;}
.lsa_c00181{letter-spacing:0.243428pt;}
.ls8_c00181{letter-spacing:0.262400pt;}
.ls18_c00181{letter-spacing:0.283392pt;}
.ls15_c00181{letter-spacing:0.292114pt;}
.ls9_c00181{letter-spacing:0.389485pt;}
.ls12_c00181{letter-spacing:0.472320pt;}
.ls1d_c00181{letter-spacing:0.486856pt;}
.ls16_c00181{letter-spacing:0.519552pt;}
.ls1c_c00181{letter-spacing:0.535542pt;}
.ls1a_c00181{letter-spacing:0.566784pt;}
.ls19_c00181{letter-spacing:0.584228pt;}
.ls6_c00181{letter-spacing:0.605547pt;}
.ls1e_c00181{letter-spacing:0.619264pt;}
.ls10_c00181{letter-spacing:0.632913pt;}
.ls14_c00181{letter-spacing:0.730284pt;}
.lse_c00181{letter-spacing:4.662528pt;}
.ls3_c00181{letter-spacing:4.723947pt;}
.lsd_c00181{letter-spacing:4.806024pt;}
.lsf_c00181{letter-spacing:4.827264pt;}
.ls1_c00181{letter-spacing:4.888354pt;}
.ls17_c00181{letter-spacing:4.948864pt;}
.ls4_c00181{letter-spacing:5.312000pt;}
.ls5_c00181{letter-spacing:5.325333pt;}
.ls0_c00181{letter-spacing:5.474385pt;}
.ls2_c00181{letter-spacing:5.474935pt;}
.lsb_c00181{letter-spacing:5.475484pt;}
.ls7_c00181{letter-spacing:6.098176pt;}
.ls13_c00181{letter-spacing:6.455040pt;}
.ls1b_c00181{letter-spacing:10.301824pt;}
.ws5_c00181{word-spacing:-19.538304pt;}
.ws0_c00181{word-spacing:-19.110891pt;}
.ws2_c00181{word-spacing:-18.705024pt;}
.ws4_c00181{word-spacing:-15.671364pt;}
.ws6_c00181{word-spacing:-15.622678pt;}
.ws8_c00181{word-spacing:-15.573992pt;}
.ws7_c00181{word-spacing:-15.427936pt;}
.ws9_c00181{word-spacing:-14.872832pt;}
.ws1_c00181{word-spacing:-10.319360pt;}
.ws3_c00181{word-spacing:-8.896000pt;}
.wsa_c00181{word-spacing:0.000000pt;}
._e_c00181{margin-left:-10.863360pt;}
._d_c00181{margin-left:-9.866240pt;}
._f_c00181{margin-left:-8.921600pt;}
._a_c00181{margin-left:-6.664960pt;}
._9_c00181{margin-left:-5.562880pt;}
._8_c00181{margin-left:-0.891733pt;}
._4_c00181{width:0.896000pt;}
._5_c00181{width:1.920000pt;}
._c_c00181{width:2.824533pt;}
._7_c00181{width:3.840000pt;}
._1_c00181{width:5.120000pt;}
._b_c00181{width:6.474240pt;}
._6_c00181{width:9.280000pt;}
._2_c00181{width:11.648000pt;}
._3_c00181{width:13.158933pt;}
._0_c00181{width:24.320000pt;}
.fs5_c00181{font-size:32.000000pt;}
.fs4_c00181{font-size:37.120000pt;}
.fs3_c00181{font-size:49.920000pt;}
.fs2_c00181{font-size:51.456358pt;}
.fs6_c00181{font-size:52.480000pt;}
.fs8_c00181{font-size:53.333333pt;}
.fs7_c00181{font-size:54.095146pt;}
.fs0_c00181{font-size:64.000000pt;}
.fs1_c00181{font-size:65.969690pt;}
.y0_c00181{bottom:0.000000pt;}
.y2f_c00181{bottom:2.773467pt;}
.y2e_c00181{bottom:30.884000pt;}
.y1_c00181{bottom:48.000000pt;}
.y2c_c00181{bottom:49.316480pt;}
.y2d_c00181{bottom:49.320000pt;}
.y2b_c00181{bottom:64.680000pt;}
.y2a_c00181{bottom:70.120000pt;}
.y29_c00181{bottom:80.356480pt;}
.y28_c00181{bottom:95.720000pt;}
.y27_c00181{bottom:95.723200pt;}
.y26_c00181{bottom:111.401600pt;}
.y24_c00181{bottom:127.076480pt;}
.y25_c00181{bottom:127.080000pt;}
.y23_c00181{bottom:142.440000pt;}
.y22_c00181{bottom:142.441600pt;}
.y21_c00181{bottom:158.120000pt;}
.y20_c00181{bottom:163.560000pt;}
.y1f_c00181{bottom:187.240000pt;}
.y1e_c00181{bottom:229.480000pt;}
.y1d_c00181{bottom:248.360000pt;}
.y1c_c00181{bottom:280.360000pt;}
.y1b_c00181{bottom:298.920000pt;}
.y1a_c00181{bottom:330.920000pt;}
.y19_c00181{bottom:362.920000pt;}
.y18_c00181{bottom:381.800000pt;}
.y17_c00181{bottom:413.800000pt;}
.y16_c00181{bottom:432.360000pt;}
.y15_c00181{bottom:464.360000pt;}
.y14_c00181{bottom:496.360000pt;}
.y13_c00181{bottom:514.920000pt;}
.y12_c00181{bottom:533.800000pt;}
.y11_c00181{bottom:552.360000pt;}
.y10_c00181{bottom:584.360000pt;}
.yf_c00181{bottom:616.360000pt;}
.ye_c00181{bottom:648.360000pt;}
.yd_c00181{bottom:680.360000pt;}
.yc_c00181{bottom:712.360000pt;}
.yb_c00181{bottom:730.920000pt;}
.ya_c00181{bottom:749.800000pt;}
.y9_c00181{bottom:781.800000pt;}
.y8_c00181{bottom:813.800000pt;}
.y7_c00181{bottom:847.720000pt;}
.y6_c00181{bottom:881.640000pt;}
.y5_c00181{bottom:913.640000pt;}
.y4_c00181{bottom:932.520000pt;}
.y3_c00181{bottom:964.520000pt;}
.y2_c00181{bottom:1011.880000pt;}
.h9_c00181{height:17.116000pt;}
.h6_c00181{height:28.992000pt;}
.ha_c00181{height:41.173333pt;}
.h7_c00181{height:41.761453pt;}
.h8_c00181{height:47.546880pt;}
.h4_c00181{height:50.928601pt;}
.h3_c00181{height:57.984000pt;}
.h5_c00181{height:60.510720pt;}
.h2_c00181{height:1067.880000pt;}
.h0_c00181{height:1122.520000pt;}
.h1_c00181{height:1122.666667pt;}
.w3_c00181{width:22.240000pt;}
.w2_c00181{width:767.960000pt;}
.w0_c00181{width:793.720000pt;}
.w1_c00181{width:794.000000pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:12.880000pt;}
.x2_c00181{left:100.480133pt;}
.xf_c00181{left:127.135733pt;}
.xd_c00181{left:133.359733pt;}
.x3_c00181{left:144.463600pt;}
.x7_c00181{left:152.911067pt;}
.x15_c00181{left:162.929733pt;}
.x5_c00181{left:212.514667pt;}
.x21_c00181{left:222.416400pt;}
.x8_c00181{left:225.806267pt;}
.x10_c00181{left:226.734400pt;}
.xe_c00181{left:231.923467pt;}
.x16_c00181{left:234.807600pt;}
.x22_c00181{left:236.482400pt;}
.x17_c00181{left:244.508800pt;}
.x4_c00181{left:249.293333pt;}
.x9_c00181{left:259.766933pt;}
.x18_c00181{left:266.735067pt;}
.xb_c00181{left:283.597333pt;}
.xc_c00181{left:309.372667pt;}
.x19_c00181{left:312.171200pt;}
.xa_c00181{left:332.662133pt;}
.x1b_c00181{left:347.813467pt;}
.x1a_c00181{left:355.177733pt;}
.x6_c00181{left:364.642933pt;}
.x1c_c00181{left:378.255867pt;}
.x25_c00181{left:385.710667pt;}
.x11_c00181{left:423.348933pt;}
.x1d_c00181{left:433.220400pt;}
.x12_c00181{left:463.348267pt;}
.x26_c00181{left:481.267600pt;}
.x1e_c00181{left:493.965467pt;}
.x23_c00181{left:510.208667pt;}
.x13_c00181{left:532.193600pt;}
.x24_c00181{left:550.220400pt;}
.x27_c00181{left:564.264667pt;}
.x28_c00181{left:577.597333pt;}
.x1f_c00181{left:580.921867pt;}
.x29_c00181{left:626.475600pt;}
.x2a_c00181{left:637.595067pt;}
.x20_c00181{left:652.114000pt;}
.x14_c00181{left:655.175067pt;}
.x2b_c00181{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_44810484bbc4ab6646b4fe91.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.134000;font-style:normal;font-weight:normal;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_ed5144c97fdb4fbd13762e37.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;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:ff3_c00182;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_bfdce420a09a9ac3e08bf48d.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:0.787000;font-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_c00182{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00182{vertical-align:-30.240000px;}
.v3_c00182{vertical-align:-24.480000px;}
.v0_c00182{vertical-align:0.000000px;}
.v1_c00182{vertical-align:30.240000px;}
.lsa_c00182{letter-spacing:0.000000px;}
.ls3_c00182{letter-spacing:0.030240px;}
.ls1_c00182{letter-spacing:0.173040px;}
.lsd_c00182{letter-spacing:0.265680px;}
.ls5_c00182{letter-spacing:0.291240px;}
.ls4_c00182{letter-spacing:0.305640px;}
.lsf_c00182{letter-spacing:0.318816px;}
.ls6_c00182{letter-spacing:0.324720px;}
.ls14_c00182{letter-spacing:0.531360px;}
.ls12_c00182{letter-spacing:0.584496px;}
.ls7_c00182{letter-spacing:0.712027px;}
.ls10_c00182{letter-spacing:0.821570px;}
.ls15_c00182{letter-spacing:4.162320px;}
.lse_c00182{letter-spacing:5.295888px;}
.ls11_c00182{letter-spacing:5.325408px;}
.lsc_c00182{letter-spacing:5.331312px;}
.lsb_c00182{letter-spacing:5.430672px;}
.ls8_c00182{letter-spacing:5.976000px;}
.ls0_c00182{letter-spacing:5.988600px;}
.ls9_c00182{letter-spacing:6.159920px;}
.ls13_c00182{letter-spacing:16.413120px;}
.ls2_c00182{letter-spacing:54.864000px;}
.sc__c00182{text-shadow:none;}
.sc1_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00182{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc1_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00182{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00182{word-spacing:-21.709008px;}
.ws0_c00182{word-spacing:-21.043152px;}
.ws3_c00182{word-spacing:-17.739827px;}
.ws5_c00182{word-spacing:-17.630284px;}
.ws4_c00182{word-spacing:-16.678800px;}
.ws1_c00182{word-spacing:-10.008000px;}
.ws6_c00182{word-spacing:0.000000px;}
._10_c00182{margin-left:-16.826400px;}
._f_c00182{margin-left:-15.822720px;}
._e_c00182{margin-left:-5.726880px;}
._d_c00182{margin-left:-4.723200px;}
._11_c00182{margin-left:-3.483360px;}
._0_c00182{margin-left:-1.179360px;}
._3_c00182{width:1.152000px;}
._7_c00182{width:3.024000px;}
._1_c00182{width:4.392000px;}
._4_c00182{width:6.120000px;}
._8_c00182{width:8.759400px;}
._2_c00182{width:9.864000px;}
._5_c00182{width:11.592000px;}
._b_c00182{width:13.320000px;}
._a_c00182{width:14.400000px;}
._6_c00182{width:18.216000px;}
._c_c00182{width:26.784000px;}
._9_c00182{width:28.656000px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs4_c00182{font-size:36.000000px;}
.fs3_c00182{font-size:41.760000px;}
.fs2_c00182{font-size:56.160000px;}
.fs5_c00182{font-size:59.040000px;}
.fs7_c00182{font-size:60.000000px;}
.fs6_c00182{font-size:60.857039px;}
.fs0_c00182{font-size:72.000000px;}
.fs1_c00182{font-size:74.215901px;}
.y0_c00182{bottom:0.000000px;}
.y2c_c00182{bottom:3.120150px;}
.y2b_c00182{bottom:34.744500px;}
.y1_c00182{bottom:54.000000px;}
.y2a_c00182{bottom:55.485000px;}
.y29_c00182{bottom:61.605000px;}
.y28_c00182{bottom:72.766800px;}
.y27_c00182{bottom:96.525000px;}
.y26_c00182{bottom:113.805000px;}
.y25_c00182{bottom:125.326800px;}
.y24_c00182{bottom:149.085000px;}
.y23_c00182{bottom:160.246800px;}
.y22_c00182{bottom:177.885000px;}
.y21_c00182{bottom:184.005000px;}
.y20_c00182{bottom:210.645000px;}
.y1f_c00182{bottom:367.965000px;}
.y1e_c00182{bottom:388.845000px;}
.y1d_c00182{bottom:409.725000px;}
.y1c_c00182{bottom:430.965000px;}
.y1b_c00182{bottom:451.845000px;}
.y1a_c00182{bottom:487.845000px;}
.y19_c00182{bottom:508.725000px;}
.y18_c00182{bottom:529.965000px;}
.y17_c00182{bottom:550.845000px;}
.y16_c00182{bottom:586.845000px;}
.y15_c00182{bottom:607.725000px;}
.y14_c00182{bottom:628.965000px;}
.y13_c00182{bottom:649.845000px;}
.y12_c00182{bottom:671.085000px;}
.y10_c00182{bottom:707.085000px;}
.y11_c00182{bottom:714.645000px;}
.yf_c00182{bottom:727.965000px;}
.ye_c00182{bottom:748.845000px;}
.yd_c00182{bottom:784.845000px;}
.yc_c00182{bottom:806.085000px;}
.yb_c00182{bottom:842.085000px;}
.ya_c00182{bottom:878.085000px;}
.y9_c00182{bottom:898.965000px;}
.y8_c00182{bottom:919.845000px;}
.y7_c00182{bottom:941.085000px;}
.y6_c00182{bottom:977.085000px;}
.y5_c00182{bottom:1013.085000px;}
.y4_c00182{bottom:1049.085000px;}
.y3_c00182{bottom:1085.085000px;}
.y2_c00182{bottom:1138.365000px;}
.ha_c00182{height:19.255500px;}
.h7_c00182{height:32.616000px;}
.h6_c00182{height:37.834560px;}
.hb_c00182{height:46.320000px;}
.h8_c00182{height:46.981634px;}
.h9_c00182{height:53.490240px;}
.h4_c00182{height:57.294676px;}
.h3_c00182{height:65.232000px;}
.h5_c00182{height:68.074560px;}
.h2_c00182{height:1201.365000px;}
.h0_c00182{height:1262.835000px;}
.h1_c00182{height:1263.000000px;}
.w3_c00182{width:25.020000px;}
.w2_c00182{width:863.955000px;}
.w0_c00182{width:892.935000px;}
.w1_c00182{width:893.250000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:14.490000px;}
.x2_c00182{left:113.040150px;}
.x14_c00182{left:122.213700px;}
.x6_c00182{left:140.037600px;}
.x15_c00182{left:142.208100px;}
.x5_c00182{left:155.033550px;}
.x3_c00182{left:162.521550px;}
.x10_c00182{left:193.067100px;}
.x11_c00182{left:207.071100px;}
.x9_c00182{left:210.393750px;}
.xb_c00182{left:216.070650px;}
.xa_c00182{left:221.391300px;}
.x4_c00182{left:280.455000px;}
.xc_c00182{left:291.647400px;}
.xd_c00182{left:304.643100px;}
.xe_c00182{left:342.440100px;}
.xf_c00182{left:361.833600px;}
.x7_c00182{left:486.155700px;}
.x8_c00182{left:592.200000px;}
.x12_c00182{left:662.052300px;}
.x13_c00182{left:710.395800px;}
.x16_c00182{left:759.915000px;}
@media print{
.v2_c00182{vertical-align:-26.880000pt;}
.v3_c00182{vertical-align:-21.760000pt;}
.v0_c00182{vertical-align:0.000000pt;}
.v1_c00182{vertical-align:26.880000pt;}
.lsa_c00182{letter-spacing:0.000000pt;}
.ls3_c00182{letter-spacing:0.026880pt;}
.ls1_c00182{letter-spacing:0.153813pt;}
.lsd_c00182{letter-spacing:0.236160pt;}
.ls5_c00182{letter-spacing:0.258880pt;}
.ls4_c00182{letter-spacing:0.271680pt;}
.lsf_c00182{letter-spacing:0.283392pt;}
.ls6_c00182{letter-spacing:0.288640pt;}
.ls14_c00182{letter-spacing:0.472320pt;}
.ls12_c00182{letter-spacing:0.519552pt;}
.ls7_c00182{letter-spacing:0.632913pt;}
.ls10_c00182{letter-spacing:0.730284pt;}
.ls15_c00182{letter-spacing:3.699840pt;}
.lse_c00182{letter-spacing:4.707456pt;}
.ls11_c00182{letter-spacing:4.733696pt;}
.lsc_c00182{letter-spacing:4.738944pt;}
.lsb_c00182{letter-spacing:4.827264pt;}
.ls8_c00182{letter-spacing:5.312000pt;}
.ls0_c00182{letter-spacing:5.323200pt;}
.ls9_c00182{letter-spacing:5.475484pt;}
.ls13_c00182{letter-spacing:14.589440pt;}
.ls2_c00182{letter-spacing:48.768000pt;}
.ws2_c00182{word-spacing:-19.296896pt;}
.ws0_c00182{word-spacing:-18.705024pt;}
.ws3_c00182{word-spacing:-15.768735pt;}
.ws5_c00182{word-spacing:-15.671364pt;}
.ws4_c00182{word-spacing:-14.825600pt;}
.ws1_c00182{word-spacing:-8.896000pt;}
.ws6_c00182{word-spacing:0.000000pt;}
._10_c00182{margin-left:-14.956800pt;}
._f_c00182{margin-left:-14.064640pt;}
._e_c00182{margin-left:-5.090560pt;}
._d_c00182{margin-left:-4.198400pt;}
._11_c00182{margin-left:-3.096320pt;}
._0_c00182{margin-left:-1.048320pt;}
._3_c00182{width:1.024000pt;}
._7_c00182{width:2.688000pt;}
._1_c00182{width:3.904000pt;}
._4_c00182{width:5.440000pt;}
._8_c00182{width:7.786133pt;}
._2_c00182{width:8.768000pt;}
._5_c00182{width:10.304000pt;}
._b_c00182{width:11.840000pt;}
._a_c00182{width:12.800000pt;}
._6_c00182{width:16.192000pt;}
._c_c00182{width:23.808000pt;}
._9_c00182{width:25.472000pt;}
.fs4_c00182{font-size:32.000000pt;}
.fs3_c00182{font-size:37.120000pt;}
.fs2_c00182{font-size:49.920000pt;}
.fs5_c00182{font-size:52.480000pt;}
.fs7_c00182{font-size:53.333333pt;}
.fs6_c00182{font-size:54.095146pt;}
.fs0_c00182{font-size:64.000000pt;}
.fs1_c00182{font-size:65.969690pt;}
.y0_c00182{bottom:0.000000pt;}
.y2c_c00182{bottom:2.773467pt;}
.y2b_c00182{bottom:30.884000pt;}
.y1_c00182{bottom:48.000000pt;}
.y2a_c00182{bottom:49.320000pt;}
.y29_c00182{bottom:54.760000pt;}
.y28_c00182{bottom:64.681600pt;}
.y27_c00182{bottom:85.800000pt;}
.y26_c00182{bottom:101.160000pt;}
.y25_c00182{bottom:111.401600pt;}
.y24_c00182{bottom:132.520000pt;}
.y23_c00182{bottom:142.441600pt;}
.y22_c00182{bottom:158.120000pt;}
.y21_c00182{bottom:163.560000pt;}
.y20_c00182{bottom:187.240000pt;}
.y1f_c00182{bottom:327.080000pt;}
.y1e_c00182{bottom:345.640000pt;}
.y1d_c00182{bottom:364.200000pt;}
.y1c_c00182{bottom:383.080000pt;}
.y1b_c00182{bottom:401.640000pt;}
.y1a_c00182{bottom:433.640000pt;}
.y19_c00182{bottom:452.200000pt;}
.y18_c00182{bottom:471.080000pt;}
.y17_c00182{bottom:489.640000pt;}
.y16_c00182{bottom:521.640000pt;}
.y15_c00182{bottom:540.200000pt;}
.y14_c00182{bottom:559.080000pt;}
.y13_c00182{bottom:577.640000pt;}
.y12_c00182{bottom:596.520000pt;}
.y10_c00182{bottom:628.520000pt;}
.y11_c00182{bottom:635.240000pt;}
.yf_c00182{bottom:647.080000pt;}
.ye_c00182{bottom:665.640000pt;}
.yd_c00182{bottom:697.640000pt;}
.yc_c00182{bottom:716.520000pt;}
.yb_c00182{bottom:748.520000pt;}
.ya_c00182{bottom:780.520000pt;}
.y9_c00182{bottom:799.080000pt;}
.y8_c00182{bottom:817.640000pt;}
.y7_c00182{bottom:836.520000pt;}
.y6_c00182{bottom:868.520000pt;}
.y5_c00182{bottom:900.520000pt;}
.y4_c00182{bottom:932.520000pt;}
.y3_c00182{bottom:964.520000pt;}
.y2_c00182{bottom:1011.880000pt;}
.ha_c00182{height:17.116000pt;}
.h7_c00182{height:28.992000pt;}
.h6_c00182{height:33.630720pt;}
.hb_c00182{height:41.173333pt;}
.h8_c00182{height:41.761453pt;}
.h9_c00182{height:47.546880pt;}
.h4_c00182{height:50.928601pt;}
.h3_c00182{height:57.984000pt;}
.h5_c00182{height:60.510720pt;}
.h2_c00182{height:1067.880000pt;}
.h0_c00182{height:1122.520000pt;}
.h1_c00182{height:1122.666667pt;}
.w3_c00182{width:22.240000pt;}
.w2_c00182{width:767.960000pt;}
.w0_c00182{width:793.720000pt;}
.w1_c00182{width:794.000000pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:12.880000pt;}
.x2_c00182{left:100.480133pt;}
.x14_c00182{left:108.634400pt;}
.x6_c00182{left:124.477867pt;}
.x15_c00182{left:126.407200pt;}
.x5_c00182{left:137.807600pt;}
.x3_c00182{left:144.463600pt;}
.x10_c00182{left:171.615200pt;}
.x11_c00182{left:184.063200pt;}
.x9_c00182{left:187.016667pt;}
.xb_c00182{left:192.062800pt;}
.xa_c00182{left:196.792267pt;}
.x4_c00182{left:249.293333pt;}
.xc_c00182{left:259.242133pt;}
.xd_c00182{left:270.793867pt;}
.xe_c00182{left:304.391200pt;}
.xf_c00182{left:321.629867pt;}
.x7_c00182{left:432.138400pt;}
.x8_c00182{left:526.400000pt;}
.x12_c00182{left:588.490933pt;}
.x13_c00182{left:631.462933pt;}
.x16_c00182{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aa26dbd5118c6a21e55d1c50.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.134000;font-style:normal;font-weight:normal;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_f9940c9794f3abfd7f16c557.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;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:ff3_c00183;src:url('chunks/assets/font_66b7d33e94e3222486a1e68f.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_d472156aabdb711cdef7db63.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00183;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff6_c00183{font-family:ff6_c00183;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00183;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff7_c00183{font-family:ff7_c00183;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00183;src:url('chunks/assets/font_3cdca110a77f1202a9b0114b.woff2')format("woff");}.ff8_c00183{font-family:ff8_c00183;line-height:0.787000;font-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_c00183{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00183{vertical-align:-24.480000px;}
.v0_c00183{vertical-align:0.000000px;}
.v1_c00183{vertical-align:30.240000px;}
.ls3d_c00183{letter-spacing:-0.179568px;}
.ls25_c00183{letter-spacing:0.000000px;}
.ls1_c00183{letter-spacing:0.035400px;}
.lsf_c00183{letter-spacing:0.036000px;}
.ls42_c00183{letter-spacing:0.144000px;}
.ls20_c00183{letter-spacing:0.236160px;}
.ls40_c00183{letter-spacing:0.242064px;}
.ls1b_c00183{letter-spacing:0.265680px;}
.ls9_c00183{letter-spacing:0.279000px;}
.ls15_c00183{letter-spacing:0.283392px;}
.ls16_c00183{letter-spacing:0.295200px;}
.ls47_c00183{letter-spacing:0.318816px;}
.ls17_c00183{letter-spacing:0.324720px;}
.ls44_c00183{letter-spacing:0.328628px;}
.ls14_c00183{letter-spacing:0.330480px;}
.ls1d_c00183{letter-spacing:0.354240px;}
.ls23_c00183{letter-spacing:0.363600px;}
.ls49_c00183{letter-spacing:0.371952px;}
.ls41_c00183{letter-spacing:0.383399px;}
.lsb_c00183{letter-spacing:0.398400px;}
.ls11_c00183{letter-spacing:0.399000px;}
.ls45_c00183{letter-spacing:0.438171px;}
.ls8_c00183{letter-spacing:0.453600px;}
.ls1f_c00183{letter-spacing:0.478224px;}
.ls19_c00183{letter-spacing:0.531360px;}
.ls36_c00183{letter-spacing:0.584496px;}
.lsc_c00183{letter-spacing:0.621187px;}
.ls7_c00183{letter-spacing:0.641520px;}
.ls3f_c00183{letter-spacing:0.657256px;}
.lsd_c00183{letter-spacing:0.667440px;}
.ls3a_c00183{letter-spacing:0.690768px;}
.ls12_c00183{letter-spacing:0.693360px;}
.ls35_c00183{letter-spacing:0.696672px;}
.ls1a_c00183{letter-spacing:0.712027px;}
.ls33_c00183{letter-spacing:0.732240px;}
.ls37_c00183{letter-spacing:0.743904px;}
.ls39_c00183{letter-spacing:0.766799px;}
.ls22_c00183{letter-spacing:0.773040px;}
.ls32_c00183{letter-spacing:0.797040px;}
.ls18_c00183{letter-spacing:0.821570px;}
.ls2d_c00183{letter-spacing:0.868320px;}
.lsa_c00183{letter-spacing:0.888364px;}
.lse_c00183{letter-spacing:0.895044px;}
.ls2c_c00183{letter-spacing:0.933120px;}
.ls30_c00183{letter-spacing:0.961838px;}
.ls38_c00183{letter-spacing:0.962352px;}
.ls2a_c00183{letter-spacing:0.997920px;}
.ls2f_c00183{letter-spacing:1.198800px;}
.ls3e_c00183{letter-spacing:1.411056px;}
.ls3b_c00183{letter-spacing:1.812528px;}
.ls1e_c00183{letter-spacing:1.830240px;}
.ls3_c00183{letter-spacing:2.987040px;}
.ls48_c00183{letter-spacing:3.270816px;}
.ls43_c00183{letter-spacing:3.536496px;}
.ls3c_c00183{letter-spacing:5.430672px;}
.ls46_c00183{letter-spacing:5.567472px;}
.ls26_c00183{letter-spacing:5.812560px;}
.ls4_c00183{letter-spacing:5.877000px;}
.ls13_c00183{letter-spacing:5.877600px;}
.ls28_c00183{letter-spacing:5.942160px;}
.ls5_c00183{letter-spacing:5.944200px;}
.ls0_c00183{letter-spacing:5.974200px;}
.ls10_c00183{letter-spacing:5.974800px;}
.ls21_c00183{letter-spacing:5.975400px;}
.ls2_c00183{letter-spacing:5.976000px;}
.ls27_c00183{letter-spacing:6.078240px;}
.ls29_c00183{letter-spacing:6.143040px;}
.ls24_c00183{letter-spacing:6.159920px;}
.ls2b_c00183{letter-spacing:6.272640px;}
.ls34_c00183{letter-spacing:9.324720px;}
.ls31_c00183{letter-spacing:10.562400px;}
.ls1c_c00183{letter-spacing:12.339360px;}
.ls2e_c00183{letter-spacing:13.316400px;}
.ls6_c00183{letter-spacing:33.945000px;}
.sc__c00183{text-shadow:none;}
.sc1_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00183{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc1_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00183{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00183{word-spacing:-25.992000px;}
.ws3_c00183{word-spacing:-24.092640px;}
.ws2_c00183{word-spacing:-23.826960px;}
.ws15_c00183{word-spacing:-21.980592px;}
.wsf_c00183{word-spacing:-21.043152px;}
.ws1_c00183{word-spacing:-20.016000px;}
.ws9_c00183{word-spacing:-19.530657px;}
.ws8_c00183{word-spacing:-19.463862px;}
.ws5_c00183{word-spacing:-19.457183px;}
.ws7_c00183{word-spacing:-19.190006px;}
.wsb_c00183{word-spacing:-19.012320px;}
.ws6_c00183{word-spacing:-18.947520px;}
.wsa_c00183{word-spacing:-18.681840px;}
.ws4_c00183{word-spacing:-18.014400px;}
.wse_c00183{word-spacing:-17.685056px;}
.wsc_c00183{word-spacing:-17.630284px;}
.ws12_c00183{word-spacing:-17.301656px;}
.ws14_c00183{word-spacing:-17.246885px;}
.wsd_c00183{word-spacing:-16.944480px;}
.ws16_c00183{word-spacing:-16.731936px;}
.ws10_c00183{word-spacing:-11.429712px;}
.ws13_c00183{word-spacing:-10.152000px;}
.ws11_c00183{word-spacing:-10.008000px;}
.ws17_c00183{word-spacing:0.000000px;}
._6_c00183{margin-left:-13.543200px;}
._5_c00183{margin-left:-12.441600px;}
._9_c00183{margin-left:-9.914400px;}
._10_c00183{margin-left:-8.683200px;}
._1a_c00183{margin-left:-3.919944px;}
._13_c00183{margin-left:-2.331096px;}
._4_c00183{margin-left:-1.236840px;}
._2_c00183{width:1.108680px;}
._3_c00183{width:2.658000px;}
._15_c00183{width:4.300200px;}
._0_c00183{width:5.973600px;}
._19_c00183{width:7.562400px;}
._a_c00183{width:9.207240px;}
._11_c00183{width:11.090520px;}
._12_c00183{width:12.324744px;}
._b_c00183{width:16.005600px;}
._f_c00183{width:17.177640px;}
._14_c00183{width:18.288000px;}
._e_c00183{width:21.065640px;}
._8_c00183{width:22.696920px;}
._18_c00183{width:29.016000px;}
._17_c00183{width:30.888000px;}
._7_c00183{width:32.140800px;}
._1_c00183{width:33.624120px;}
._c_c00183{width:34.945320px;}
._d_c00183{width:36.086040px;}
._16_c00183{width:43.704000px;}
.fc0_c00183{color:rgb(0,0,0);}
.fs8_c00183{font-size:36.000000px;}
.fs2_c00183{font-size:41.760000px;}
.fs7_c00183{font-size:56.160000px;}
.fs5_c00183{font-size:59.040000px;}
.fs9_c00183{font-size:60.000000px;}
.fs6_c00183{font-size:60.857039px;}
.fs3_c00183{font-size:64.800000px;}
.fs4_c00183{font-size:66.794311px;}
.fs0_c00183{font-size:72.000000px;}
.fs1_c00183{font-size:74.215901px;}
.y0_c00183{bottom:0.000000px;}
.y4f_c00183{bottom:3.120150px;}
.y4e_c00183{bottom:34.744500px;}
.y1_c00183{bottom:54.000000px;}
.y4d_c00183{bottom:55.481040px;}
.y4c_c00183{bottom:72.765000px;}
.y4b_c00183{bottom:72.766800px;}
.y4a_c00183{bottom:96.525000px;}
.y49_c00183{bottom:107.685000px;}
.y48_c00183{bottom:125.325000px;}
.y47_c00183{bottom:131.445000px;}
.y46_c00183{bottom:142.966800px;}
.y45_c00183{bottom:160.605000px;}
.y44_c00183{bottom:166.725000px;}
.y43_c00183{bottom:177.885000px;}
.y42_c00183{bottom:184.005000px;}
.y41_c00183{bottom:210.645000px;}
.y40_c00183{bottom:242.325000px;}
.y3f_c00183{bottom:263.205000px;}
.y3e_c00183{bottom:284.445000px;}
.y3d_c00183{bottom:305.325000px;}
.y3c_c00183{bottom:326.205000px;}
.y3b_c00183{bottom:362.205000px;}
.y3a_c00183{bottom:383.445000px;}
.y39_c00183{bottom:404.325000px;}
.y38_c00183{bottom:425.205000px;}
.y37_c00183{bottom:446.445000px;}
.y36_c00183{bottom:482.445000px;}
.y35_c00183{bottom:518.445000px;}
.y34_c00183{bottom:546.522840px;}
.y33_c00183{bottom:564.161040px;}
.y32_c00183{bottom:581.445000px;}
.y31_c00183{bottom:614.205000px;}
.y30_c00183{bottom:631.485000px;}
.y2f_c00183{bottom:631.486800px;}
.y2e_c00183{bottom:649.125000px;}
.y2d_c00183{bottom:649.126800px;}
.y2c_c00183{bottom:666.765000px;}
.y2b_c00183{bottom:699.525000px;}
.y2a_c00183{bottom:721.125000px;}
.y24_c00183{bottom:731.205000px;}
.y29_c00183{bottom:740.565000px;}
.y23_c00183{bottom:752.805000px;}
.y28_c00183{bottom:759.645000px;}
.y1f_c00183{bottom:773.685000px;}
.y22_c00183{bottom:774.765000px;}
.y27_c00183{bottom:779.085000px;}
.y21_c00183{bottom:794.205000px;}
.y1e_c00183{bottom:794.565000px;}
.y26_c00183{bottom:798.165000px;}
.y1d_c00183{bottom:815.805000px;}
.y20_c00183{bottom:816.165000px;}
.y25_c00183{bottom:817.605000px;}
.y1c_c00183{bottom:837.405000px;}
.y16_c00183{bottom:851.445000px;}
.y1b_c00183{bottom:856.845000px;}
.y18_c00183{bottom:871.965000px;}
.y15_c00183{bottom:872.325000px;}
.y1a_c00183{bottom:875.925000px;}
.y14_c00183{bottom:893.565000px;}
.y17_c00183{bottom:893.925000px;}
.y19_c00183{bottom:895.365000px;}
.y13_c00183{bottom:915.165000px;}
.y12_c00183{bottom:934.605000px;}
.y11_c00183{bottom:953.685000px;}
.yb_c00183{bottom:962.325000px;}
.y10_c00183{bottom:973.125000px;}
.ya_c00183{bottom:983.925000px;}
.yf_c00183{bottom:992.205000px;}
.y9_c00183{bottom:1005.885000px;}
.y6_c00183{bottom:1006.245000px;}
.ye_c00183{bottom:1011.645000px;}
.y8_c00183{bottom:1026.764850px;}
.y5_c00183{bottom:1027.125000px;}
.yd_c00183{bottom:1030.725000px;}
.y4_c00183{bottom:1048.365000px;}
.y7_c00183{bottom:1048.725000px;}
.yc_c00183{bottom:1050.165000px;}
.y3_c00183{bottom:1085.085000px;}
.y2_c00183{bottom:1138.365000px;}
.hd_c00183{height:19.255500px;}
.hb_c00183{height:32.616000px;}
.hc_c00183{height:39.350391px;}
.he_c00183{height:46.320000px;}
.ha_c00183{height:46.981634px;}
.h8_c00183{height:47.988281px;}
.h7_c00183{height:51.565208px;}
.h9_c00183{height:53.490240px;}
.h4_c00183{height:57.294676px;}
.h6_c00183{height:58.708800px;}
.h3_c00183{height:65.232000px;}
.h5_c00183{height:68.074560px;}
.h2_c00183{height:1201.365000px;}
.h0_c00183{height:1262.835000px;}
.h1_c00183{height:1263.000000px;}
.w7_c00183{width:25.020000px;}
.w4_c00183{width:31.320000px;}
.w3_c00183{width:60.840000px;}
.w6_c00183{width:251.280000px;}
.w5_c00183{width:307.440000px;}
.w2_c00183{width:863.955000px;}
.w0_c00183{width:892.935000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
.x6_c00183{left:7.920150px;}
.x1_c00183{left:14.490000px;}
.xd_c00183{left:42.391050px;}
.x12_c00183{left:46.812300px;}
.x1e_c00183{left:50.607750px;}
.x17_c00183{left:88.900200px;}
.x13_c00183{left:94.496550px;}
.x18_c00183{left:97.900200px;}
.x10_c00183{left:100.295850px;}
.x2_c00183{left:113.040150px;}
.x5_c00183{left:119.610000px;}
.xe_c00183{left:120.679650px;}
.x2f_c00183{left:122.213700px;}
.xf_c00183{left:133.465800px;}
.x11_c00183{left:139.713750px;}
.x1d_c00183{left:141.335700px;}
.x25_c00183{left:152.174250px;}
.x9_c00183{left:156.903000px;}
.x2c_c00183{left:160.019550px;}
.x3_c00183{left:162.521550px;}
.x19_c00183{left:166.911150px;}
.x1b_c00183{left:176.625600px;}
.x7_c00183{left:181.170000px;}
.x1a_c00183{left:186.207150px;}
.x15_c00183{left:195.750600px;}
.x14_c00183{left:204.973950px;}
.x26_c00183{left:207.207300px;}
.x27_c00183{left:211.377000px;}
.x8_c00183{left:213.210000px;}
.x1c_c00183{left:216.043500px;}
.xa_c00183{left:223.315350px;}
.x16_c00183{left:243.435000px;}
.xb_c00183{left:261.776400px;}
.x4_c00183{left:280.455000px;}
.x38_c00183{left:302.483250px;}
.x33_c00183{left:304.653450px;}
.x39_c00183{left:324.824700px;}
.x34_c00183{left:339.662100px;}
.x28_c00183{left:350.016000px;}
.x1f_c00183{left:393.597000px;}
.x29_c00183{left:412.804350px;}
.x23_c00183{left:431.318100px;}
.x20_c00183{left:434.004300px;}
.x24_c00183{left:474.667200px;}
.x2a_c00183{left:493.381650px;}
.xc_c00183{left:521.370000px;}
.x2b_c00183{left:544.182450px;}
.x30_c00183{left:560.418450px;}
.x31_c00183{left:568.204050px;}
.x32_c00183{left:608.208300px;}
.x35_c00183{left:618.755100px;}
.x2d_c00183{left:648.685800px;}
.x21_c00183{left:693.288600px;}
.x36_c00183{left:724.584300px;}
.x22_c00183{left:729.123000px;}
.x37_c00183{left:734.565750px;}
.x2e_c00183{left:750.390000px;}
.x3a_c00183{left:759.915000px;}
@media print{
.v2_c00183{vertical-align:-21.760000pt;}
.v0_c00183{vertical-align:0.000000pt;}
.v1_c00183{vertical-align:26.880000pt;}
.ls3d_c00183{letter-spacing:-0.159616pt;}
.ls25_c00183{letter-spacing:0.000000pt;}
.ls1_c00183{letter-spacing:0.031467pt;}
.lsf_c00183{letter-spacing:0.032000pt;}
.ls42_c00183{letter-spacing:0.128000pt;}
.ls20_c00183{letter-spacing:0.209920pt;}
.ls40_c00183{letter-spacing:0.215168pt;}
.ls1b_c00183{letter-spacing:0.236160pt;}
.ls9_c00183{letter-spacing:0.248000pt;}
.ls15_c00183{letter-spacing:0.251904pt;}
.ls16_c00183{letter-spacing:0.262400pt;}
.ls47_c00183{letter-spacing:0.283392pt;}
.ls17_c00183{letter-spacing:0.288640pt;}
.ls44_c00183{letter-spacing:0.292114pt;}
.ls14_c00183{letter-spacing:0.293760pt;}
.ls1d_c00183{letter-spacing:0.314880pt;}
.ls23_c00183{letter-spacing:0.323200pt;}
.ls49_c00183{letter-spacing:0.330624pt;}
.ls41_c00183{letter-spacing:0.340799pt;}
.lsb_c00183{letter-spacing:0.354133pt;}
.ls11_c00183{letter-spacing:0.354667pt;}
.ls45_c00183{letter-spacing:0.389485pt;}
.ls8_c00183{letter-spacing:0.403200pt;}
.ls1f_c00183{letter-spacing:0.425088pt;}
.ls19_c00183{letter-spacing:0.472320pt;}
.ls36_c00183{letter-spacing:0.519552pt;}
.lsc_c00183{letter-spacing:0.552166pt;}
.ls7_c00183{letter-spacing:0.570240pt;}
.ls3f_c00183{letter-spacing:0.584228pt;}
.lsd_c00183{letter-spacing:0.593280pt;}
.ls3a_c00183{letter-spacing:0.614016pt;}
.ls12_c00183{letter-spacing:0.616320pt;}
.ls35_c00183{letter-spacing:0.619264pt;}
.ls1a_c00183{letter-spacing:0.632913pt;}
.ls33_c00183{letter-spacing:0.650880pt;}
.ls37_c00183{letter-spacing:0.661248pt;}
.ls39_c00183{letter-spacing:0.681599pt;}
.ls22_c00183{letter-spacing:0.687147pt;}
.ls32_c00183{letter-spacing:0.708480pt;}
.ls18_c00183{letter-spacing:0.730284pt;}
.ls2d_c00183{letter-spacing:0.771840pt;}
.lsa_c00183{letter-spacing:0.789657pt;}
.lse_c00183{letter-spacing:0.795594pt;}
.ls2c_c00183{letter-spacing:0.829440pt;}
.ls30_c00183{letter-spacing:0.854967pt;}
.ls38_c00183{letter-spacing:0.855424pt;}
.ls2a_c00183{letter-spacing:0.887040pt;}
.ls2f_c00183{letter-spacing:1.065600pt;}
.ls3e_c00183{letter-spacing:1.254272pt;}
.ls3b_c00183{letter-spacing:1.611136pt;}
.ls1e_c00183{letter-spacing:1.626880pt;}
.ls3_c00183{letter-spacing:2.655147pt;}
.ls48_c00183{letter-spacing:2.907392pt;}
.ls43_c00183{letter-spacing:3.143552pt;}
.ls3c_c00183{letter-spacing:4.827264pt;}
.ls46_c00183{letter-spacing:4.948864pt;}
.ls26_c00183{letter-spacing:5.166720pt;}
.ls4_c00183{letter-spacing:5.224000pt;}
.ls13_c00183{letter-spacing:5.224533pt;}
.ls28_c00183{letter-spacing:5.281920pt;}
.ls5_c00183{letter-spacing:5.283733pt;}
.ls0_c00183{letter-spacing:5.310400pt;}
.ls10_c00183{letter-spacing:5.310933pt;}
.ls21_c00183{letter-spacing:5.311467pt;}
.ls2_c00183{letter-spacing:5.312000pt;}
.ls27_c00183{letter-spacing:5.402880pt;}
.ls29_c00183{letter-spacing:5.460480pt;}
.ls24_c00183{letter-spacing:5.475484pt;}
.ls2b_c00183{letter-spacing:5.575680pt;}
.ls34_c00183{letter-spacing:8.288640pt;}
.ls31_c00183{letter-spacing:9.388800pt;}
.ls1c_c00183{letter-spacing:10.968320pt;}
.ls2e_c00183{letter-spacing:11.836800pt;}
.ls6_c00183{letter-spacing:30.173333pt;}
.ws0_c00183{word-spacing:-23.104000pt;}
.ws3_c00183{word-spacing:-21.415680pt;}
.ws2_c00183{word-spacing:-21.179520pt;}
.ws15_c00183{word-spacing:-19.538304pt;}
.wsf_c00183{word-spacing:-18.705024pt;}
.ws1_c00183{word-spacing:-17.792000pt;}
.ws9_c00183{word-spacing:-17.360584pt;}
.ws8_c00183{word-spacing:-17.301211pt;}
.ws5_c00183{word-spacing:-17.295274pt;}
.ws7_c00183{word-spacing:-17.057783pt;}
.wsb_c00183{word-spacing:-16.899840pt;}
.ws6_c00183{word-spacing:-16.842240pt;}
.wsa_c00183{word-spacing:-16.606080pt;}
.ws4_c00183{word-spacing:-16.012800pt;}
.wse_c00183{word-spacing:-15.720049pt;}
.wsc_c00183{word-spacing:-15.671364pt;}
.ws12_c00183{word-spacing:-15.379250pt;}
.ws14_c00183{word-spacing:-15.330564pt;}
.wsd_c00183{word-spacing:-15.061760pt;}
.ws16_c00183{word-spacing:-14.872832pt;}
.ws10_c00183{word-spacing:-10.159744pt;}
.ws13_c00183{word-spacing:-9.024000pt;}
.ws11_c00183{word-spacing:-8.896000pt;}
.ws17_c00183{word-spacing:0.000000pt;}
._6_c00183{margin-left:-12.038400pt;}
._5_c00183{margin-left:-11.059200pt;}
._9_c00183{margin-left:-8.812800pt;}
._10_c00183{margin-left:-7.718400pt;}
._1a_c00183{margin-left:-3.484395pt;}
._13_c00183{margin-left:-2.072085pt;}
._4_c00183{margin-left:-1.099413pt;}
._2_c00183{width:0.985493pt;}
._3_c00183{width:2.362667pt;}
._15_c00183{width:3.822400pt;}
._0_c00183{width:5.309867pt;}
._19_c00183{width:6.722133pt;}
._a_c00183{width:8.184213pt;}
._11_c00183{width:9.858240pt;}
._12_c00183{width:10.955328pt;}
._b_c00183{width:14.227200pt;}
._f_c00183{width:15.269013pt;}
._14_c00183{width:16.256000pt;}
._e_c00183{width:18.725013pt;}
._8_c00183{width:20.175040pt;}
._18_c00183{width:25.792000pt;}
._17_c00183{width:27.456000pt;}
._7_c00183{width:28.569600pt;}
._1_c00183{width:29.888107pt;}
._c_c00183{width:31.062507pt;}
._d_c00183{width:32.076480pt;}
._16_c00183{width:38.848000pt;}
.fs8_c00183{font-size:32.000000pt;}
.fs2_c00183{font-size:37.120000pt;}
.fs7_c00183{font-size:49.920000pt;}
.fs5_c00183{font-size:52.480000pt;}
.fs9_c00183{font-size:53.333333pt;}
.fs6_c00183{font-size:54.095146pt;}
.fs3_c00183{font-size:57.600000pt;}
.fs4_c00183{font-size:59.372721pt;}
.fs0_c00183{font-size:64.000000pt;}
.fs1_c00183{font-size:65.969690pt;}
.y0_c00183{bottom:0.000000pt;}
.y4f_c00183{bottom:2.773467pt;}
.y4e_c00183{bottom:30.884000pt;}
.y1_c00183{bottom:48.000000pt;}
.y4d_c00183{bottom:49.316480pt;}
.y4c_c00183{bottom:64.680000pt;}
.y4b_c00183{bottom:64.681600pt;}
.y4a_c00183{bottom:85.800000pt;}
.y49_c00183{bottom:95.720000pt;}
.y48_c00183{bottom:111.400000pt;}
.y47_c00183{bottom:116.840000pt;}
.y46_c00183{bottom:127.081600pt;}
.y45_c00183{bottom:142.760000pt;}
.y44_c00183{bottom:148.200000pt;}
.y43_c00183{bottom:158.120000pt;}
.y42_c00183{bottom:163.560000pt;}
.y41_c00183{bottom:187.240000pt;}
.y40_c00183{bottom:215.400000pt;}
.y3f_c00183{bottom:233.960000pt;}
.y3e_c00183{bottom:252.840000pt;}
.y3d_c00183{bottom:271.400000pt;}
.y3c_c00183{bottom:289.960000pt;}
.y3b_c00183{bottom:321.960000pt;}
.y3a_c00183{bottom:340.840000pt;}
.y39_c00183{bottom:359.400000pt;}
.y38_c00183{bottom:377.960000pt;}
.y37_c00183{bottom:396.840000pt;}
.y36_c00183{bottom:428.840000pt;}
.y35_c00183{bottom:460.840000pt;}
.y34_c00183{bottom:485.798080pt;}
.y33_c00183{bottom:501.476480pt;}
.y32_c00183{bottom:516.840000pt;}
.y31_c00183{bottom:545.960000pt;}
.y30_c00183{bottom:561.320000pt;}
.y2f_c00183{bottom:561.321600pt;}
.y2e_c00183{bottom:577.000000pt;}
.y2d_c00183{bottom:577.001600pt;}
.y2c_c00183{bottom:592.680000pt;}
.y2b_c00183{bottom:621.800000pt;}
.y2a_c00183{bottom:641.000000pt;}
.y24_c00183{bottom:649.960000pt;}
.y29_c00183{bottom:658.280000pt;}
.y23_c00183{bottom:669.160000pt;}
.y28_c00183{bottom:675.240000pt;}
.y1f_c00183{bottom:687.720000pt;}
.y22_c00183{bottom:688.680000pt;}
.y27_c00183{bottom:692.520000pt;}
.y21_c00183{bottom:705.960000pt;}
.y1e_c00183{bottom:706.280000pt;}
.y26_c00183{bottom:709.480000pt;}
.y1d_c00183{bottom:725.160000pt;}
.y20_c00183{bottom:725.480000pt;}
.y25_c00183{bottom:726.760000pt;}
.y1c_c00183{bottom:744.360000pt;}
.y16_c00183{bottom:756.840000pt;}
.y1b_c00183{bottom:761.640000pt;}
.y18_c00183{bottom:775.080000pt;}
.y15_c00183{bottom:775.400000pt;}
.y1a_c00183{bottom:778.600000pt;}
.y14_c00183{bottom:794.280000pt;}
.y17_c00183{bottom:794.600000pt;}
.y19_c00183{bottom:795.880000pt;}
.y13_c00183{bottom:813.480000pt;}
.y12_c00183{bottom:830.760000pt;}
.y11_c00183{bottom:847.720000pt;}
.yb_c00183{bottom:855.400000pt;}
.y10_c00183{bottom:865.000000pt;}
.ya_c00183{bottom:874.600000pt;}
.yf_c00183{bottom:881.960000pt;}
.y9_c00183{bottom:894.120000pt;}
.y6_c00183{bottom:894.440000pt;}
.ye_c00183{bottom:899.240000pt;}
.y8_c00183{bottom:912.679867pt;}
.y5_c00183{bottom:913.000000pt;}
.yd_c00183{bottom:916.200000pt;}
.y4_c00183{bottom:931.880000pt;}
.y7_c00183{bottom:932.200000pt;}
.yc_c00183{bottom:933.480000pt;}
.y3_c00183{bottom:964.520000pt;}
.y2_c00183{bottom:1011.880000pt;}
.hd_c00183{height:17.116000pt;}
.hb_c00183{height:28.992000pt;}
.hc_c00183{height:34.978125pt;}
.he_c00183{height:41.173333pt;}
.ha_c00183{height:41.761453pt;}
.h8_c00183{height:42.656250pt;}
.h7_c00183{height:45.835741pt;}
.h9_c00183{height:47.546880pt;}
.h4_c00183{height:50.928601pt;}
.h6_c00183{height:52.185600pt;}
.h3_c00183{height:57.984000pt;}
.h5_c00183{height:60.510720pt;}
.h2_c00183{height:1067.880000pt;}
.h0_c00183{height:1122.520000pt;}
.h1_c00183{height:1122.666667pt;}
.w7_c00183{width:22.240000pt;}
.w4_c00183{width:27.840000pt;}
.w3_c00183{width:54.080000pt;}
.w6_c00183{width:223.360000pt;}
.w5_c00183{width:273.280000pt;}
.w2_c00183{width:767.960000pt;}
.w0_c00183{width:793.720000pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{left:0.000000pt;}
.x6_c00183{left:7.040133pt;}
.x1_c00183{left:12.880000pt;}
.xd_c00183{left:37.680933pt;}
.x12_c00183{left:41.610933pt;}
.x1e_c00183{left:44.984667pt;}
.x17_c00183{left:79.022400pt;}
.x13_c00183{left:83.996933pt;}
.x18_c00183{left:87.022400pt;}
.x10_c00183{left:89.151867pt;}
.x2_c00183{left:100.480133pt;}
.x5_c00183{left:106.320000pt;}
.xe_c00183{left:107.270800pt;}
.x2f_c00183{left:108.634400pt;}
.xf_c00183{left:118.636267pt;}
.x11_c00183{left:124.190000pt;}
.x1d_c00183{left:125.631733pt;}
.x25_c00183{left:135.266000pt;}
.x9_c00183{left:139.469333pt;}
.x2c_c00183{left:142.239600pt;}
.x3_c00183{left:144.463600pt;}
.x19_c00183{left:148.365467pt;}
.x1b_c00183{left:157.000533pt;}
.x7_c00183{left:161.040000pt;}
.x1a_c00183{left:165.517467pt;}
.x15_c00183{left:174.000533pt;}
.x14_c00183{left:182.199067pt;}
.x26_c00183{left:184.184267pt;}
.x27_c00183{left:187.890667pt;}
.x8_c00183{left:189.520000pt;}
.x1c_c00183{left:192.038667pt;}
.xa_c00183{left:198.502533pt;}
.x16_c00183{left:216.386667pt;}
.xb_c00183{left:232.690133pt;}
.x4_c00183{left:249.293333pt;}
.x38_c00183{left:268.874000pt;}
.x33_c00183{left:270.803067pt;}
.x39_c00183{left:288.733067pt;}
.x34_c00183{left:301.921867pt;}
.x28_c00183{left:311.125333pt;}
.x1f_c00183{left:349.864000pt;}
.x29_c00183{left:366.937200pt;}
.x23_c00183{left:383.393867pt;}
.x20_c00183{left:385.781600pt;}
.x24_c00183{left:421.926400pt;}
.x2a_c00183{left:438.561467pt;}
.xc_c00183{left:463.440000pt;}
.x2b_c00183{left:483.717733pt;}
.x30_c00183{left:498.149733pt;}
.x31_c00183{left:505.070267pt;}
.x32_c00183{left:540.629600pt;}
.x35_c00183{left:550.004533pt;}
.x2d_c00183{left:576.609600pt;}
.x21_c00183{left:616.256533pt;}
.x36_c00183{left:644.074933pt;}
.x22_c00183{left:648.109333pt;}
.x37_c00183{left:652.947333pt;}
.x2e_c00183{left:667.013333pt;}
.x3a_c00183{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de8ccdb737b8719cf2193658.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.134000;font-style:normal;font-weight:normal;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_ce702816dc59afc0d0e93bba.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;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:ff3_c00184;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_4ecbfa878a66289fd8602f24.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:0.787000;font-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_c00184{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.lse_c00184{letter-spacing:0.000000px;}
.ls19_c00184{letter-spacing:0.265680px;}
.ls18_c00184{letter-spacing:0.273857px;}
.ls8_c00184{letter-spacing:0.318480px;}
.ls13_c00184{letter-spacing:0.318816px;}
.ls6_c00184{letter-spacing:0.319080px;}
.ls15_c00184{letter-spacing:0.425088px;}
.ls2_c00184{letter-spacing:0.531360px;}
.ls4_c00184{letter-spacing:0.543168px;}
.ls3_c00184{letter-spacing:0.560880px;}
.ls14_c00184{letter-spacing:0.584496px;}
.ls17_c00184{letter-spacing:0.637632px;}
.ls16_c00184{letter-spacing:0.712027px;}
.ls1_c00184{letter-spacing:5.299080px;}
.ls5_c00184{letter-spacing:5.352840px;}
.lsa_c00184{letter-spacing:5.353440px;}
.ls12_c00184{letter-spacing:5.402160px;}
.ls9_c00184{letter-spacing:5.405040px;}
.lsf_c00184{letter-spacing:5.461200px;}
.ls7_c00184{letter-spacing:5.513160px;}
.ls0_c00184{letter-spacing:5.514336px;}
.ls11_c00184{letter-spacing:5.567472px;}
.lsb_c00184{letter-spacing:5.683825px;}
.ls10_c00184{letter-spacing:5.939424px;}
.lsc_c00184{letter-spacing:5.976000px;}
.lsd_c00184{letter-spacing:6.159920px;}
.sc__c00184{text-shadow:none;}
.sc1_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00184{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc1_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00184{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00184{word-spacing:-22.352544px;}
.ws0_c00184{word-spacing:-21.874320px;}
.ws2_c00184{word-spacing:-21.815280px;}
.ws4_c00184{word-spacing:-17.192114px;}
.ws3_c00184{word-spacing:-16.944480px;}
.ws6_c00184{word-spacing:-16.838208px;}
.ws5_c00184{word-spacing:-16.678800px;}
.ws7_c00184{word-spacing:0.000000px;}
._8_c00184{margin-left:-1.280136px;}
._3_c00184{width:1.944000px;}
._7_c00184{width:3.240000px;}
._2_c00184{width:4.752000px;}
._b_c00184{width:6.022080px;}
._c_c00184{width:7.533072px;}
._1_c00184{width:11.664000px;}
._0_c00184{width:13.392000px;}
._5_c00184{width:16.776000px;}
._6_c00184{width:18.216000px;}
._4_c00184{width:22.464000px;}
._a_c00184{width:24.501600px;}
._9_c00184{width:48.530880px;}
.fc0_c00184{color:rgb(0,0,0);}
.fs2_c00184{font-size:59.040000px;}
.fs4_c00184{font-size:60.000000px;}
.fs3_c00184{font-size:60.857039px;}
.fs0_c00184{font-size:72.000000px;}
.fs1_c00184{font-size:74.215901px;}
.y0_c00184{bottom:0.000000px;}
.y2b_c00184{bottom:3.120150px;}
.y2a_c00184{bottom:34.744500px;}
.y1_c00184{bottom:54.000000px;}
.y29_c00184{bottom:184.005000px;}
.y28_c00184{bottom:198.405000px;}
.y27_c00184{bottom:241.245000px;}
.y26_c00184{bottom:258.525000px;}
.y25_c00184{bottom:276.885000px;}
.y24_c00184{bottom:291.285000px;}
.y23_c00184{bottom:358.245000px;}
.y22_c00184{bottom:375.885000px;}
.y21_c00184{bottom:394.245000px;}
.y20_c00184{bottom:408.645000px;}
.y1f_c00184{bottom:469.125000px;}
.y1e_c00184{bottom:486.765000px;}
.y1d_c00184{bottom:504.765000px;}
.y1c_c00184{bottom:519.165000px;}
.y1b_c00184{bottom:581.085000px;}
.y1a_c00184{bottom:598.725000px;}
.y18_c00184{bottom:619.605000px;}
.y17_c00184{bottom:633.645000px;}
.y19_c00184{bottom:675.765000px;}
.y16_c00184{bottom:693.405000px;}
.y15_c00184{bottom:711.045000px;}
.y14_c00184{bottom:725.805000px;}
.yf_c00184{bottom:745.605000px;}
.y13_c00184{bottom:760.365000px;}
.y12_c00184{bottom:761.085000px;}
.y11_c00184{bottom:761.445000px;}
.y10_c00184{bottom:790.605000px;}
.ye_c00184{bottom:824.085000px;}
.yd_c00184{bottom:844.965000px;}
.yc_c00184{bottom:865.845000px;}
.yb_c00184{bottom:887.085000px;}
.ya_c00184{bottom:923.085000px;}
.y9_c00184{bottom:943.965000px;}
.y8_c00184{bottom:979.965000px;}
.y7_c00184{bottom:1000.845000px;}
.y6_c00184{bottom:1022.085000px;}
.y5_c00184{bottom:1042.965000px;}
.y4_c00184{bottom:1063.845000px;}
.y3_c00184{bottom:1085.085000px;}
.y2_c00184{bottom:1138.365000px;}
.h7_c00184{height:19.255500px;}
.h8_c00184{height:46.320000px;}
.h6_c00184{height:46.981634px;}
.h5_c00184{height:53.490240px;}
.h4_c00184{height:57.294676px;}
.h3_c00184{height:65.232000px;}
.h2_c00184{height:1201.365000px;}
.h0_c00184{height:1262.835000px;}
.h1_c00184{height:1263.000000px;}
.w8_c00184{width:25.020000px;}
.w4_c00184{width:123.480000px;}
.w5_c00184{width:126.360000px;}
.w7_c00184{width:150.480000px;}
.w6_c00184{width:168.480000px;}
.w3_c00184{width:175.680000px;}
.w2_c00184{width:863.955000px;}
.w0_c00184{width:892.935000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x11_c00184{left:7.560000px;}
.x1_c00184{left:14.490000px;}
.x1a_c00184{left:26.729250px;}
.x1b_c00184{left:37.559250px;}
.x27_c00184{left:42.119550px;}
.x22_c00184{left:44.519700px;}
.x25_c00184{left:46.919850px;}
.x1c_c00184{left:50.068650px;}
.x1d_c00184{left:54.238350px;}
.x19_c00184{left:56.519700px;}
.x24_c00184{left:60.418500px;}
.x23_c00184{left:79.227900px;}
.xe_c00184{left:108.810000px;}
.x2_c00184{left:113.040150px;}
.x12_c00184{left:115.560000px;}
.x14_c00184{left:118.634850px;}
.x20_c00184{left:120.460950px;}
.x21_c00184{left:124.630800px;}
.x1e_c00184{left:127.901400px;}
.x26_c00184{left:137.501250px;}
.x1f_c00184{left:138.731250px;}
.x18_c00184{left:142.920150px;}
.x16_c00184{left:160.920000px;}
.x3_c00184{left:162.521550px;}
.xf_c00184{left:167.797950px;}
.xb_c00184{left:192.040950px;}
.xc_c00184{left:212.056650px;}
.x5_c00184{left:217.188750px;}
.x4_c00184{left:280.455000px;}
.x10_c00184{left:285.210000px;}
.x6_c00184{left:315.579750px;}
.x7_c00184{left:339.573150px;}
.xd_c00184{left:344.066850px;}
.x13_c00184{left:409.410000px;}
.x15_c00184{left:536.490000px;}
.x8_c00184{left:630.005550px;}
.xa_c00184{left:702.384600px;}
.x17_c00184{left:705.690000px;}
.x9_c00184{left:731.201250px;}
.x28_c00184{left:759.915000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.lse_c00184{letter-spacing:0.000000pt;}
.ls19_c00184{letter-spacing:0.236160pt;}
.ls18_c00184{letter-spacing:0.243428pt;}
.ls8_c00184{letter-spacing:0.283093pt;}
.ls13_c00184{letter-spacing:0.283392pt;}
.ls6_c00184{letter-spacing:0.283627pt;}
.ls15_c00184{letter-spacing:0.377856pt;}
.ls2_c00184{letter-spacing:0.472320pt;}
.ls4_c00184{letter-spacing:0.482816pt;}
.ls3_c00184{letter-spacing:0.498560pt;}
.ls14_c00184{letter-spacing:0.519552pt;}
.ls17_c00184{letter-spacing:0.566784pt;}
.ls16_c00184{letter-spacing:0.632913pt;}
.ls1_c00184{letter-spacing:4.710293pt;}
.ls5_c00184{letter-spacing:4.758080pt;}
.lsa_c00184{letter-spacing:4.758613pt;}
.ls12_c00184{letter-spacing:4.801920pt;}
.ls9_c00184{letter-spacing:4.804480pt;}
.lsf_c00184{letter-spacing:4.854400pt;}
.ls7_c00184{letter-spacing:4.900587pt;}
.ls0_c00184{letter-spacing:4.901632pt;}
.ls11_c00184{letter-spacing:4.948864pt;}
.lsb_c00184{letter-spacing:5.052289pt;}
.ls10_c00184{letter-spacing:5.279488pt;}
.lsc_c00184{letter-spacing:5.312000pt;}
.lsd_c00184{letter-spacing:5.475484pt;}
.ws1_c00184{word-spacing:-19.868928pt;}
.ws0_c00184{word-spacing:-19.443840pt;}
.ws2_c00184{word-spacing:-19.391360pt;}
.ws4_c00184{word-spacing:-15.281879pt;}
.ws3_c00184{word-spacing:-15.061760pt;}
.ws6_c00184{word-spacing:-14.967296pt;}
.ws5_c00184{word-spacing:-14.825600pt;}
.ws7_c00184{word-spacing:0.000000pt;}
._8_c00184{margin-left:-1.137899pt;}
._3_c00184{width:1.728000pt;}
._7_c00184{width:2.880000pt;}
._2_c00184{width:4.224000pt;}
._b_c00184{width:5.352960pt;}
._c_c00184{width:6.696064pt;}
._1_c00184{width:10.368000pt;}
._0_c00184{width:11.904000pt;}
._5_c00184{width:14.912000pt;}
._6_c00184{width:16.192000pt;}
._4_c00184{width:19.968000pt;}
._a_c00184{width:21.779200pt;}
._9_c00184{width:43.138560pt;}
.fs2_c00184{font-size:52.480000pt;}
.fs4_c00184{font-size:53.333333pt;}
.fs3_c00184{font-size:54.095146pt;}
.fs0_c00184{font-size:64.000000pt;}
.fs1_c00184{font-size:65.969690pt;}
.y0_c00184{bottom:0.000000pt;}
.y2b_c00184{bottom:2.773467pt;}
.y2a_c00184{bottom:30.884000pt;}
.y1_c00184{bottom:48.000000pt;}
.y29_c00184{bottom:163.560000pt;}
.y28_c00184{bottom:176.360000pt;}
.y27_c00184{bottom:214.440000pt;}
.y26_c00184{bottom:229.800000pt;}
.y25_c00184{bottom:246.120000pt;}
.y24_c00184{bottom:258.920000pt;}
.y23_c00184{bottom:318.440000pt;}
.y22_c00184{bottom:334.120000pt;}
.y21_c00184{bottom:350.440000pt;}
.y20_c00184{bottom:363.240000pt;}
.y1f_c00184{bottom:417.000000pt;}
.y1e_c00184{bottom:432.680000pt;}
.y1d_c00184{bottom:448.680000pt;}
.y1c_c00184{bottom:461.480000pt;}
.y1b_c00184{bottom:516.520000pt;}
.y1a_c00184{bottom:532.200000pt;}
.y18_c00184{bottom:550.760000pt;}
.y17_c00184{bottom:563.240000pt;}
.y19_c00184{bottom:600.680000pt;}
.y16_c00184{bottom:616.360000pt;}
.y15_c00184{bottom:632.040000pt;}
.y14_c00184{bottom:645.160000pt;}
.yf_c00184{bottom:662.760000pt;}
.y13_c00184{bottom:675.880000pt;}
.y12_c00184{bottom:676.520000pt;}
.y11_c00184{bottom:676.840000pt;}
.y10_c00184{bottom:702.760000pt;}
.ye_c00184{bottom:732.520000pt;}
.yd_c00184{bottom:751.080000pt;}
.yc_c00184{bottom:769.640000pt;}
.yb_c00184{bottom:788.520000pt;}
.ya_c00184{bottom:820.520000pt;}
.y9_c00184{bottom:839.080000pt;}
.y8_c00184{bottom:871.080000pt;}
.y7_c00184{bottom:889.640000pt;}
.y6_c00184{bottom:908.520000pt;}
.y5_c00184{bottom:927.080000pt;}
.y4_c00184{bottom:945.640000pt;}
.y3_c00184{bottom:964.520000pt;}
.y2_c00184{bottom:1011.880000pt;}
.h7_c00184{height:17.116000pt;}
.h8_c00184{height:41.173333pt;}
.h6_c00184{height:41.761453pt;}
.h5_c00184{height:47.546880pt;}
.h4_c00184{height:50.928601pt;}
.h3_c00184{height:57.984000pt;}
.h2_c00184{height:1067.880000pt;}
.h0_c00184{height:1122.520000pt;}
.h1_c00184{height:1122.666667pt;}
.w8_c00184{width:22.240000pt;}
.w4_c00184{width:109.760000pt;}
.w5_c00184{width:112.320000pt;}
.w7_c00184{width:133.760000pt;}
.w6_c00184{width:149.760000pt;}
.w3_c00184{width:156.160000pt;}
.w2_c00184{width:767.960000pt;}
.w0_c00184{width:793.720000pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x11_c00184{left:6.720000pt;}
.x1_c00184{left:12.880000pt;}
.x1a_c00184{left:23.759333pt;}
.x1b_c00184{left:33.386000pt;}
.x27_c00184{left:37.439600pt;}
.x22_c00184{left:39.573067pt;}
.x25_c00184{left:41.706533pt;}
.x1c_c00184{left:44.505467pt;}
.x1d_c00184{left:48.211867pt;}
.x19_c00184{left:50.239733pt;}
.x24_c00184{left:53.705333pt;}
.x23_c00184{left:70.424800pt;}
.xe_c00184{left:96.720000pt;}
.x2_c00184{left:100.480133pt;}
.x12_c00184{left:102.720000pt;}
.x14_c00184{left:105.453200pt;}
.x20_c00184{left:107.076400pt;}
.x21_c00184{left:110.782933pt;}
.x1e_c00184{left:113.690133pt;}
.x26_c00184{left:122.223333pt;}
.x1f_c00184{left:123.316667pt;}
.x18_c00184{left:127.040133pt;}
.x16_c00184{left:143.040000pt;}
.x3_c00184{left:144.463600pt;}
.xf_c00184{left:149.153733pt;}
.xb_c00184{left:170.703067pt;}
.xc_c00184{left:188.494800pt;}
.x5_c00184{left:193.056667pt;}
.x4_c00184{left:249.293333pt;}
.x10_c00184{left:253.520000pt;}
.x6_c00184{left:280.515333pt;}
.x7_c00184{left:301.842800pt;}
.xd_c00184{left:305.837200pt;}
.x13_c00184{left:363.920000pt;}
.x15_c00184{left:476.880000pt;}
.x8_c00184{left:560.004933pt;}
.xa_c00184{left:624.341867pt;}
.x17_c00184{left:627.280000pt;}
.x9_c00184{left:649.956667pt;}
.x28_c00184{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0b69a7314e8c71c6f5246eb.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.134000;font-style:normal;font-weight:normal;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_04607dc2c0ade8230d96169f.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;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:ff3_c00185;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00185{font-family:ff4_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:ff5_c00185;src:url('chunks/assets/font_64ab0bd56ea405104dc49ffc.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:0.787000;font-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_c00185{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls6_c00185{letter-spacing:0.000000px;}
.lse_c00185{letter-spacing:0.265680px;}
.ls1_c00185{letter-spacing:0.318480px;}
.lsa_c00185{letter-spacing:0.318816px;}
.lsc_c00185{letter-spacing:0.371952px;}
.ls11_c00185{letter-spacing:0.425088px;}
.lsf_c00185{letter-spacing:0.478224px;}
.ls2_c00185{letter-spacing:0.531360px;}
.lsb_c00185{letter-spacing:0.584496px;}
.ls9_c00185{letter-spacing:0.637632px;}
.lsd_c00185{letter-spacing:0.712027px;}
.ls10_c00185{letter-spacing:2.030976px;}
.ls8_c00185{letter-spacing:5.402160px;}
.ls0_c00185{letter-spacing:5.513160px;}
.ls7_c00185{letter-spacing:5.567472px;}
.ls4_c00185{letter-spacing:5.976000px;}
.ls5_c00185{letter-spacing:6.159920px;}
.ls12_c00185{letter-spacing:6.559200px;}
.ls3_c00185{letter-spacing:55.008000px;}
.sc__c00185{text-shadow:none;}
.sc1_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00185{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc1_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00185{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00185{word-spacing:-21.815280px;}
.ws1_c00185{word-spacing:-16.944480px;}
.ws4_c00185{word-spacing:-16.838208px;}
.ws2_c00185{word-spacing:-16.785072px;}
.ws3_c00185{word-spacing:-16.678800px;}
.ws5_c00185{word-spacing:0.000000px;}
._a_c00185{margin-left:-2.175912px;}
._0_c00185{margin-left:-1.121760px;}
._7_c00185{width:1.180800px;}
._9_c00185{width:2.184480px;}
._1f_c00185{width:3.384000px;}
._4_c00185{width:4.800120px;}
._1_c00185{width:5.904000px;}
._5_c00185{width:7.675200px;}
._8_c00185{width:8.796960px;}
._b_c00185{width:11.276640px;}
._d_c00185{width:15.822720px;}
._2_c00185{width:19.955520px;}
._3_c00185{width:26.272800px;}
._12_c00185{width:29.933280px;}
._1e_c00185{width:31.122720px;}
._e_c00185{width:39.379680px;}
._14_c00185{width:40.619520px;}
._c_c00185{width:45.047520px;}
._18_c00185{width:58.154400px;}
._13_c00185{width:67.600800px;}
._1d_c00185{width:70.729920px;}
._11_c00185{width:77.460480px;}
._f_c00185{width:93.696480px;}
._17_c00185{width:105.681600px;}
._1c_c00185{width:118.257120px;}
._15_c00185{width:121.858560px;}
._1a_c00185{width:134.493120px;}
._6_c00185{width:148.308480px;}
._19_c00185{width:171.393120px;}
._10_c00185{width:199.673280px;}
._16_c00185{width:227.894400px;}
._1b_c00185{width:240.469920px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs2_c00185{font-size:59.040000px;}
.fs4_c00185{font-size:60.000000px;}
.fs3_c00185{font-size:60.857039px;}
.fs0_c00185{font-size:72.000000px;}
.fs1_c00185{font-size:74.215901px;}
.y0_c00185{bottom:0.000000px;}
.y34_c00185{bottom:3.120150px;}
.y33_c00185{bottom:34.744500px;}
.y1_c00185{bottom:54.000000px;}
.y32_c00185{bottom:72.765000px;}
.y31_c00185{bottom:93.645000px;}
.y30_c00185{bottom:114.525000px;}
.y2f_c00185{bottom:135.765000px;}
.y2e_c00185{bottom:156.645000px;}
.y2d_c00185{bottom:177.885000px;}
.y2c_c00185{bottom:198.765000px;}
.y2b_c00185{bottom:234.765000px;}
.y2a_c00185{bottom:270.765000px;}
.y29_c00185{bottom:291.645000px;}
.y28_c00185{bottom:312.885000px;}
.y27_c00185{bottom:348.885000px;}
.y26_c00185{bottom:369.765000px;}
.y25_c00185{bottom:405.765000px;}
.y24_c00185{bottom:427.365000px;}
.y1f_c00185{bottom:434.925000px;}
.y23_c00185{bottom:444.645000px;}
.y1e_c00185{bottom:448.965000px;}
.y22_c00185{bottom:462.285000px;}
.y21_c00185{bottom:479.925000px;}
.y20_c00185{bottom:497.205000px;}
.y1d_c00185{bottom:514.845000px;}
.y1c_c00185{bottom:532.485000px;}
.y1b_c00185{bottom:550.485000px;}
.y1a_c00185{bottom:568.125000px;}
.y19_c00185{bottom:585.765000px;}
.y14_c00185{bottom:591.885000px;}
.y18_c00185{bottom:603.045000px;}
.y13_c00185{bottom:606.285000px;}
.y17_c00185{bottom:620.685000px;}
.y16_c00185{bottom:637.965000px;}
.y15_c00185{bottom:655.605000px;}
.y12_c00185{bottom:673.245000px;}
.y11_c00185{bottom:690.525000px;}
.y10_c00185{bottom:708.885000px;}
.yf_c00185{bottom:726.525000px;}
.ye_c00185{bottom:743.805000px;}
.yd_c00185{bottom:758.205000px;}
.yc_c00185{bottom:825.165000px;}
.yb_c00185{bottom:842.445000px;}
.ya_c00185{bottom:860.805000px;}
.y9_c00185{bottom:875.205000px;}
.y8_c00185{bottom:938.205000px;}
.y7_c00185{bottom:955.845000px;}
.y6_c00185{bottom:970.965000px;}
.y5_c00185{bottom:1033.965000px;}
.y4_c00185{bottom:1051.604850px;}
.y3_c00185{bottom:1085.085000px;}
.y2_c00185{bottom:1138.365000px;}
.h7_c00185{height:19.255500px;}
.h8_c00185{height:46.320000px;}
.h6_c00185{height:46.981634px;}
.h5_c00185{height:53.490240px;}
.h4_c00185{height:57.294676px;}
.h3_c00185{height:65.232000px;}
.h2_c00185{height:1201.365000px;}
.h0_c00185{height:1262.835000px;}
.h1_c00185{height:1263.000000px;}
.w7_c00185{width:25.020000px;}
.w4_c00185{width:115.560000px;}
.w6_c00185{width:122.760000px;}
.w5_c00185{width:125.640000px;}
.w3_c00185{width:144.360000px;}
.w2_c00185{width:863.955000px;}
.w0_c00185{width:892.935000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.x6_c00185{left:7.559850px;}
.x1_c00185{left:14.490000px;}
.xd_c00185{left:26.729100px;}
.x10_c00185{left:34.838100px;}
.xb_c00185{left:41.759550px;}
.x7_c00185{left:46.559850px;}
.xc_c00185{left:49.559850px;}
.x11_c00185{left:57.586500px;}
.x12_c00185{left:65.759550px;}
.xe_c00185{left:99.237000px;}
.xf_c00185{left:103.406700px;}
.x2_c00185{left:113.040150px;}
.x5_c00185{left:136.170000px;}
.x13_c00185{left:140.022150px;}
.x3_c00185{left:162.521550px;}
.x1f_c00185{left:183.059700px;}
.x16_c00185{left:214.929900px;}
.x17_c00185{left:233.919450px;}
.x20_c00185{left:254.590650px;}
.x4_c00185{left:280.455000px;}
.x21_c00185{left:299.571450px;}
.x1a_c00185{left:316.749450px;}
.x14_c00185{left:321.770100px;}
.x15_c00185{left:351.775650px;}
.x22_c00185{left:366.468000px;}
.x1b_c00185{left:376.742400px;}
.x8_c00185{left:397.530000px;}
.x23_c00185{left:445.304100px;}
.x24_c00185{left:465.890250px;}
.x25_c00185{left:484.879650px;}
.x26_c00185{left:490.672800px;}
.x1c_c00185{left:508.811250px;}
.x9_c00185{left:523.890000px;}
.x27_c00185{left:526.654500px;}
.x18_c00185{left:543.108000px;}
.x19_c00185{left:584.111550px;}
.x1d_c00185{left:609.090450px;}
.xa_c00185{left:647.370000px;}
.x1e_c00185{left:649.103700px;}
.x28_c00185{left:759.915000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls6_c00185{letter-spacing:0.000000pt;}
.lse_c00185{letter-spacing:0.236160pt;}
.ls1_c00185{letter-spacing:0.283093pt;}
.lsa_c00185{letter-spacing:0.283392pt;}
.lsc_c00185{letter-spacing:0.330624pt;}
.ls11_c00185{letter-spacing:0.377856pt;}
.lsf_c00185{letter-spacing:0.425088pt;}
.ls2_c00185{letter-spacing:0.472320pt;}
.lsb_c00185{letter-spacing:0.519552pt;}
.ls9_c00185{letter-spacing:0.566784pt;}
.lsd_c00185{letter-spacing:0.632913pt;}
.ls10_c00185{letter-spacing:1.805312pt;}
.ls8_c00185{letter-spacing:4.801920pt;}
.ls0_c00185{letter-spacing:4.900587pt;}
.ls7_c00185{letter-spacing:4.948864pt;}
.ls4_c00185{letter-spacing:5.312000pt;}
.ls5_c00185{letter-spacing:5.475484pt;}
.ls12_c00185{letter-spacing:5.830400pt;}
.ls3_c00185{letter-spacing:48.896000pt;}
.ws0_c00185{word-spacing:-19.391360pt;}
.ws1_c00185{word-spacing:-15.061760pt;}
.ws4_c00185{word-spacing:-14.967296pt;}
.ws2_c00185{word-spacing:-14.920064pt;}
.ws3_c00185{word-spacing:-14.825600pt;}
.ws5_c00185{word-spacing:0.000000pt;}
._a_c00185{margin-left:-1.934144pt;}
._0_c00185{margin-left:-0.997120pt;}
._7_c00185{width:1.049600pt;}
._9_c00185{width:1.941760pt;}
._1f_c00185{width:3.008000pt;}
._4_c00185{width:4.266773pt;}
._1_c00185{width:5.248000pt;}
._5_c00185{width:6.822400pt;}
._8_c00185{width:7.819520pt;}
._b_c00185{width:10.023680pt;}
._d_c00185{width:14.064640pt;}
._2_c00185{width:17.738240pt;}
._3_c00185{width:23.353600pt;}
._12_c00185{width:26.607360pt;}
._1e_c00185{width:27.664640pt;}
._e_c00185{width:35.004160pt;}
._14_c00185{width:36.106240pt;}
._c_c00185{width:40.042240pt;}
._18_c00185{width:51.692800pt;}
._13_c00185{width:60.089600pt;}
._1d_c00185{width:62.871040pt;}
._11_c00185{width:68.853760pt;}
._f_c00185{width:83.285760pt;}
._17_c00185{width:93.939200pt;}
._1c_c00185{width:105.117440pt;}
._15_c00185{width:108.318720pt;}
._1a_c00185{width:119.549440pt;}
._6_c00185{width:131.829760pt;}
._19_c00185{width:152.349440pt;}
._10_c00185{width:177.487360pt;}
._16_c00185{width:202.572800pt;}
._1b_c00185{width:213.751040pt;}
.fs2_c00185{font-size:52.480000pt;}
.fs4_c00185{font-size:53.333333pt;}
.fs3_c00185{font-size:54.095146pt;}
.fs0_c00185{font-size:64.000000pt;}
.fs1_c00185{font-size:65.969690pt;}
.y0_c00185{bottom:0.000000pt;}
.y34_c00185{bottom:2.773467pt;}
.y33_c00185{bottom:30.884000pt;}
.y1_c00185{bottom:48.000000pt;}
.y32_c00185{bottom:64.680000pt;}
.y31_c00185{bottom:83.240000pt;}
.y30_c00185{bottom:101.800000pt;}
.y2f_c00185{bottom:120.680000pt;}
.y2e_c00185{bottom:139.240000pt;}
.y2d_c00185{bottom:158.120000pt;}
.y2c_c00185{bottom:176.680000pt;}
.y2b_c00185{bottom:208.680000pt;}
.y2a_c00185{bottom:240.680000pt;}
.y29_c00185{bottom:259.240000pt;}
.y28_c00185{bottom:278.120000pt;}
.y27_c00185{bottom:310.120000pt;}
.y26_c00185{bottom:328.680000pt;}
.y25_c00185{bottom:360.680000pt;}
.y24_c00185{bottom:379.880000pt;}
.y1f_c00185{bottom:386.600000pt;}
.y23_c00185{bottom:395.240000pt;}
.y1e_c00185{bottom:399.080000pt;}
.y22_c00185{bottom:410.920000pt;}
.y21_c00185{bottom:426.600000pt;}
.y20_c00185{bottom:441.960000pt;}
.y1d_c00185{bottom:457.640000pt;}
.y1c_c00185{bottom:473.320000pt;}
.y1b_c00185{bottom:489.320000pt;}
.y1a_c00185{bottom:505.000000pt;}
.y19_c00185{bottom:520.680000pt;}
.y14_c00185{bottom:526.120000pt;}
.y18_c00185{bottom:536.040000pt;}
.y13_c00185{bottom:538.920000pt;}
.y17_c00185{bottom:551.720000pt;}
.y16_c00185{bottom:567.080000pt;}
.y15_c00185{bottom:582.760000pt;}
.y12_c00185{bottom:598.440000pt;}
.y11_c00185{bottom:613.800000pt;}
.y10_c00185{bottom:630.120000pt;}
.yf_c00185{bottom:645.800000pt;}
.ye_c00185{bottom:661.160000pt;}
.yd_c00185{bottom:673.960000pt;}
.yc_c00185{bottom:733.480000pt;}
.yb_c00185{bottom:748.840000pt;}
.ya_c00185{bottom:765.160000pt;}
.y9_c00185{bottom:777.960000pt;}
.y8_c00185{bottom:833.960000pt;}
.y7_c00185{bottom:849.640000pt;}
.y6_c00185{bottom:863.080000pt;}
.y5_c00185{bottom:919.080000pt;}
.y4_c00185{bottom:934.759867pt;}
.y3_c00185{bottom:964.520000pt;}
.y2_c00185{bottom:1011.880000pt;}
.h7_c00185{height:17.116000pt;}
.h8_c00185{height:41.173333pt;}
.h6_c00185{height:41.761453pt;}
.h5_c00185{height:47.546880pt;}
.h4_c00185{height:50.928601pt;}
.h3_c00185{height:57.984000pt;}
.h2_c00185{height:1067.880000pt;}
.h0_c00185{height:1122.520000pt;}
.h1_c00185{height:1122.666667pt;}
.w7_c00185{width:22.240000pt;}
.w4_c00185{width:102.720000pt;}
.w6_c00185{width:109.120000pt;}
.w5_c00185{width:111.680000pt;}
.w3_c00185{width:128.320000pt;}
.w2_c00185{width:767.960000pt;}
.w0_c00185{width:793.720000pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.x6_c00185{left:6.719867pt;}
.x1_c00185{left:12.880000pt;}
.xd_c00185{left:23.759200pt;}
.x10_c00185{left:30.967200pt;}
.xb_c00185{left:37.119600pt;}
.x7_c00185{left:41.386533pt;}
.xc_c00185{left:44.053200pt;}
.x11_c00185{left:51.188000pt;}
.x12_c00185{left:58.452933pt;}
.xe_c00185{left:88.210667pt;}
.xf_c00185{left:91.917067pt;}
.x2_c00185{left:100.480133pt;}
.x5_c00185{left:121.040000pt;}
.x13_c00185{left:124.464133pt;}
.x3_c00185{left:144.463600pt;}
.x1f_c00185{left:162.719733pt;}
.x16_c00185{left:191.048800pt;}
.x17_c00185{left:207.928400pt;}
.x20_c00185{left:226.302800pt;}
.x4_c00185{left:249.293333pt;}
.x21_c00185{left:266.285733pt;}
.x1a_c00185{left:281.555067pt;}
.x14_c00185{left:286.017867pt;}
.x15_c00185{left:312.689467pt;}
.x22_c00185{left:325.749333pt;}
.x1b_c00185{left:334.882133pt;}
.x8_c00185{left:353.360000pt;}
.x23_c00185{left:395.825867pt;}
.x24_c00185{left:414.124667pt;}
.x25_c00185{left:431.004133pt;}
.x26_c00185{left:436.153600pt;}
.x1c_c00185{left:452.276667pt;}
.x9_c00185{left:465.680000pt;}
.x27_c00185{left:468.137333pt;}
.x18_c00185{left:482.762667pt;}
.x19_c00185{left:519.210267pt;}
.x1d_c00185{left:541.413733pt;}
.xa_c00185{left:575.440000pt;}
.x1e_c00185{left:576.981067pt;}
.x28_c00185{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_963ab3abf44177a35575184d.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.134000;font-style:normal;font-weight:normal;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_345bd6006a49eb782e173097.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;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:ff3_c00186;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_66b7d33e94e3222486a1e68f.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_c43edf3256e811427a5d56c8.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:0.787000;font-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_c00186{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00186{vertical-align:-24.480000px;}
.v0_c00186{vertical-align:0.000000px;}
.v1_c00186{vertical-align:30.240000px;}
.lsd_c00186{letter-spacing:-0.179568px;}
.ls6_c00186{letter-spacing:0.000000px;}
.ls8_c00186{letter-spacing:0.093600px;}
.ls11_c00186{letter-spacing:0.144000px;}
.ls15_c00186{letter-spacing:0.265680px;}
.ls14_c00186{letter-spacing:0.531360px;}
.ls16_c00186{letter-spacing:0.766799px;}
.ls13_c00186{letter-spacing:0.797040px;}
.ls12_c00186{letter-spacing:2.355696px;}
.lsb_c00186{letter-spacing:3.571200px;}
.ls10_c00186{letter-spacing:5.335200px;}
.ls1_c00186{letter-spacing:5.976000px;}
.ls4_c00186{letter-spacing:5.993400px;}
.lsa_c00186{letter-spacing:6.120000px;}
.ls5_c00186{letter-spacing:6.159920px;}
.lsc_c00186{letter-spacing:6.624000px;}
.lse_c00186{letter-spacing:6.717600px;}
.ls2_c00186{letter-spacing:6.768000px;}
.ls7_c00186{letter-spacing:6.775200px;}
.ls3_c00186{letter-spacing:13.248000px;}
.lsf_c00186{letter-spacing:14.774400px;}
.ls9_c00186{letter-spacing:20.210400px;}
.ls0_c00186{letter-spacing:55.008000px;}
.sc__c00186{text-shadow:none;}
.sc1_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00186{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc1_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00186{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00186{word-spacing:-20.947680px;}
.ws4_c00186{word-spacing:-17.685056px;}
.ws3_c00186{word-spacing:-16.944480px;}
.ws0_c00186{word-spacing:-11.429712px;}
.ws2_c00186{word-spacing:-10.152000px;}
.ws5_c00186{word-spacing:0.000000px;}
._8_c00186{margin-left:-20.188800px;}
._10_c00186{margin-left:-14.788800px;}
._f_c00186{margin-left:-13.248000px;}
._6_c00186{margin-left:-6.768000px;}
._d_c00186{margin-left:-3.542400px;}
._11_c00186{margin-left:-2.059200px;}
._12_c00186{margin-left:-1.003104px;}
._2_c00186{width:1.944000px;}
._a_c00186{width:3.384000px;}
._4_c00186{width:5.256000px;}
._5_c00186{width:6.768000px;}
._7_c00186{width:8.352000px;}
._1_c00186{width:9.792000px;}
._3_c00186{width:12.960000px;}
._e_c00186{width:14.040000px;}
._b_c00186{width:15.120000px;}
._0_c00186{width:16.416000px;}
._c_c00186{width:17.496000px;}
._9_c00186{width:21.096000px;}
.fc0_c00186{color:rgb(0,0,0);}
.fs4_c00186{font-size:36.000000px;}
.fs2_c00186{font-size:41.760000px;}
.fs3_c00186{font-size:56.160000px;}
.fs5_c00186{font-size:59.040000px;}
.fs7_c00186{font-size:60.000000px;}
.fs6_c00186{font-size:60.857039px;}
.fs0_c00186{font-size:72.000000px;}
.fs1_c00186{font-size:74.215901px;}
.y0_c00186{bottom:0.000000px;}
.y32_c00186{bottom:3.120150px;}
.y31_c00186{bottom:34.744500px;}
.y1_c00186{bottom:54.000000px;}
.y30_c00186{bottom:55.485000px;}
.y2f_c00186{bottom:61.605000px;}
.y2e_c00186{bottom:72.766800px;}
.y2d_c00186{bottom:96.525000px;}
.y2c_c00186{bottom:123.165000px;}
.y2b_c00186{bottom:168.525000px;}
.y2a_c00186{bottom:204.525000px;}
.y29_c00186{bottom:240.525000px;}
.y28_c00186{bottom:276.525000px;}
.y27_c00186{bottom:312.525000px;}
.y26_c00186{bottom:333.405000px;}
.y25_c00186{bottom:354.285000px;}
.y24_c00186{bottom:375.525000px;}
.y23_c00186{bottom:396.405000px;}
.y22_c00186{bottom:432.405000px;}
.y21_c00186{bottom:453.645000px;}
.y20_c00186{bottom:474.525000px;}
.y1f_c00186{bottom:495.405000px;}
.y1e_c00186{bottom:516.645000px;}
.y1d_c00186{bottom:537.525000px;}
.y1c_c00186{bottom:558.405000px;}
.y1b_c00186{bottom:579.645000px;}
.y1a_c00186{bottom:600.525000px;}
.y19_c00186{bottom:621.405000px;}
.y18_c00186{bottom:642.645000px;}
.y17_c00186{bottom:663.525000px;}
.y16_c00186{bottom:684.405000px;}
.y15_c00186{bottom:705.645000px;}
.y14_c00186{bottom:726.525000px;}
.y13_c00186{bottom:747.405000px;}
.y12_c00186{bottom:768.645000px;}
.y11_c00186{bottom:789.525000px;}
.y10_c00186{bottom:810.405000px;}
.yf_c00186{bottom:832.365000px;}
.ye_c00186{bottom:853.965000px;}
.yd_c00186{bottom:874.485000px;}
.yc_c00186{bottom:895.365000px;}
.yb_c00186{bottom:916.605000px;}
.ya_c00186{bottom:937.485000px;}
.y9_c00186{bottom:959.445000px;}
.y8_c00186{bottom:979.965000px;}
.y7_c00186{bottom:1000.845000px;}
.y6_c00186{bottom:1022.085000px;}
.y5_c00186{bottom:1042.965000px;}
.y4_c00186{bottom:1063.845000px;}
.y3_c00186{bottom:1085.085000px;}
.y2_c00186{bottom:1138.365000px;}
.h9_c00186{height:19.255500px;}
.h6_c00186{height:32.616000px;}
.ha_c00186{height:46.320000px;}
.h8_c00186{height:46.981634px;}
.h7_c00186{height:53.490240px;}
.h4_c00186{height:57.294676px;}
.h3_c00186{height:65.232000px;}
.h5_c00186{height:68.074560px;}
.h2_c00186{height:1201.365000px;}
.h0_c00186{height:1262.835000px;}
.h1_c00186{height:1263.000000px;}
.w3_c00186{width:25.020000px;}
.w2_c00186{width:863.955000px;}
.w0_c00186{width:892.935000px;}
.w1_c00186{width:893.250000px;}
.x0_c00186{left:0.000000px;}
.x1_c00186{left:14.490000px;}
.x2_c00186{left:113.040150px;}
.x5_c00186{left:140.037000px;}
.x17_c00186{left:146.034000px;}
.x3_c00186{left:162.521550px;}
.x30_c00186{left:163.936500px;}
.x43_c00186{left:166.738050px;}
.x27_c00186{left:174.041700px;}
.x18_c00186{left:191.033250px;}
.x10_c00186{left:194.338950px;}
.x3e_c00186{left:200.033250px;}
.x46_c00186{left:205.540950px;}
.x31_c00186{left:208.917450px;}
.x44_c00186{left:211.737300px;}
.x3d_c00186{left:220.638000px;}
.x11_c00186{left:228.340500px;}
.x1d_c00186{left:236.764500px;}
.x28_c00186{left:244.594500px;}
.x47_c00186{left:250.540350px;}
.x19_c00186{left:254.032500px;}
.x4c_c00186{left:266.472600px;}
.x1e_c00186{left:277.767750px;}
.x4_c00186{left:280.455000px;}
.x14_c00186{left:284.802300px;}
.x29_c00186{left:289.593750px;}
.xa_c00186{left:290.847600px;}
.x2e_c00186{left:292.047750px;}
.x45_c00186{left:301.803150px;}
.x1a_c00186{left:314.025450px;}
.x3a_c00186{left:319.047300px;}
.x6_c00186{left:336.494700px;}
.x15_c00186{left:342.797550px;}
.xb_c00186{left:348.843000px;}
.x48_c00186{left:353.552850px;}
.x2a_c00186{left:360.146550px;}
.x7_c00186{left:366.500250px;}
.x4b_c00186{left:372.715950px;}
.x21_c00186{left:383.557950px;}
.x2f_c00186{left:392.054400px;}
.x41_c00186{left:396.377100px;}
.x2b_c00186{left:400.159800px;}
.x1b_c00186{left:402.202500px;}
.x3b_c00186{left:405.411600px;}
.x42_c00186{left:407.374950px;}
.x49_c00186{left:416.552100px;}
.x3c_c00186{left:418.407300px;}
.x22_c00186{left:446.557200px;}
.x4a_c00186{left:450.553650px;}
.x1c_c00186{left:462.195600px;}
.x36_c00186{left:466.118850px;}
.x12_c00186{left:490.532250px;}
.x32_c00186{left:497.538900px;}
.x37_c00186{left:507.122250px;}
.x38_c00186{left:513.778950px;}
.x13_c00186{left:530.545500px;}
.x33_c00186{left:538.542150px;}
.x3f_c00186{left:559.450200px;}
.x39_c00186{left:567.778200px;}
.xe_c00186{left:586.890450px;}
.xc_c00186{left:598.407000px;}
.x40_c00186{left:600.453300px;}
.x23_c00186{left:606.055350px;}
.x2c_c00186{left:608.847000px;}
.x16_c00186{left:626.921250px;}
.xd_c00186{left:637.412100px;}
.x1f_c00186{left:638.882100px;}
.x2d_c00186{left:642.848550px;}
.x24_c00186{left:644.070900px;}
.x25_c00186{left:655.740900px;}
.x20_c00186{left:683.881350px;}
.x26_c00186{left:691.722600px;}
.xf_c00186{left:700.386900px;}
.x8_c00186{left:704.382900px;}
.x34_c00186{left:716.388450px;}
.x9_c00186{left:745.386150px;}
.x35_c00186{left:750.390000px;}
.x4d_c00186{left:759.915000px;}
@media print{
.v2_c00186{vertical-align:-21.760000pt;}
.v0_c00186{vertical-align:0.000000pt;}
.v1_c00186{vertical-align:26.880000pt;}
.lsd_c00186{letter-spacing:-0.159616pt;}
.ls6_c00186{letter-spacing:0.000000pt;}
.ls8_c00186{letter-spacing:0.083200pt;}
.ls11_c00186{letter-spacing:0.128000pt;}
.ls15_c00186{letter-spacing:0.236160pt;}
.ls14_c00186{letter-spacing:0.472320pt;}
.ls16_c00186{letter-spacing:0.681599pt;}
.ls13_c00186{letter-spacing:0.708480pt;}
.ls12_c00186{letter-spacing:2.093952pt;}
.lsb_c00186{letter-spacing:3.174400pt;}
.ls10_c00186{letter-spacing:4.742400pt;}
.ls1_c00186{letter-spacing:5.312000pt;}
.ls4_c00186{letter-spacing:5.327467pt;}
.lsa_c00186{letter-spacing:5.440000pt;}
.ls5_c00186{letter-spacing:5.475484pt;}
.lsc_c00186{letter-spacing:5.888000pt;}
.lse_c00186{letter-spacing:5.971200pt;}
.ls2_c00186{letter-spacing:6.016000pt;}
.ls7_c00186{letter-spacing:6.022400pt;}
.ls3_c00186{letter-spacing:11.776000pt;}
.lsf_c00186{letter-spacing:13.132800pt;}
.ls9_c00186{letter-spacing:17.964800pt;}
.ls0_c00186{letter-spacing:48.896000pt;}
.ws1_c00186{word-spacing:-18.620160pt;}
.ws4_c00186{word-spacing:-15.720049pt;}
.ws3_c00186{word-spacing:-15.061760pt;}
.ws0_c00186{word-spacing:-10.159744pt;}
.ws2_c00186{word-spacing:-9.024000pt;}
.ws5_c00186{word-spacing:0.000000pt;}
._8_c00186{margin-left:-17.945600pt;}
._10_c00186{margin-left:-13.145600pt;}
._f_c00186{margin-left:-11.776000pt;}
._6_c00186{margin-left:-6.016000pt;}
._d_c00186{margin-left:-3.148800pt;}
._11_c00186{margin-left:-1.830400pt;}
._12_c00186{margin-left:-0.891648pt;}
._2_c00186{width:1.728000pt;}
._a_c00186{width:3.008000pt;}
._4_c00186{width:4.672000pt;}
._5_c00186{width:6.016000pt;}
._7_c00186{width:7.424000pt;}
._1_c00186{width:8.704000pt;}
._3_c00186{width:11.520000pt;}
._e_c00186{width:12.480000pt;}
._b_c00186{width:13.440000pt;}
._0_c00186{width:14.592000pt;}
._c_c00186{width:15.552000pt;}
._9_c00186{width:18.752000pt;}
.fs4_c00186{font-size:32.000000pt;}
.fs2_c00186{font-size:37.120000pt;}
.fs3_c00186{font-size:49.920000pt;}
.fs5_c00186{font-size:52.480000pt;}
.fs7_c00186{font-size:53.333333pt;}
.fs6_c00186{font-size:54.095146pt;}
.fs0_c00186{font-size:64.000000pt;}
.fs1_c00186{font-size:65.969690pt;}
.y0_c00186{bottom:0.000000pt;}
.y32_c00186{bottom:2.773467pt;}
.y31_c00186{bottom:30.884000pt;}
.y1_c00186{bottom:48.000000pt;}
.y30_c00186{bottom:49.320000pt;}
.y2f_c00186{bottom:54.760000pt;}
.y2e_c00186{bottom:64.681600pt;}
.y2d_c00186{bottom:85.800000pt;}
.y2c_c00186{bottom:109.480000pt;}
.y2b_c00186{bottom:149.800000pt;}
.y2a_c00186{bottom:181.800000pt;}
.y29_c00186{bottom:213.800000pt;}
.y28_c00186{bottom:245.800000pt;}
.y27_c00186{bottom:277.800000pt;}
.y26_c00186{bottom:296.360000pt;}
.y25_c00186{bottom:314.920000pt;}
.y24_c00186{bottom:333.800000pt;}
.y23_c00186{bottom:352.360000pt;}
.y22_c00186{bottom:384.360000pt;}
.y21_c00186{bottom:403.240000pt;}
.y20_c00186{bottom:421.800000pt;}
.y1f_c00186{bottom:440.360000pt;}
.y1e_c00186{bottom:459.240000pt;}
.y1d_c00186{bottom:477.800000pt;}
.y1c_c00186{bottom:496.360000pt;}
.y1b_c00186{bottom:515.240000pt;}
.y1a_c00186{bottom:533.800000pt;}
.y19_c00186{bottom:552.360000pt;}
.y18_c00186{bottom:571.240000pt;}
.y17_c00186{bottom:589.800000pt;}
.y16_c00186{bottom:608.360000pt;}
.y15_c00186{bottom:627.240000pt;}
.y14_c00186{bottom:645.800000pt;}
.y13_c00186{bottom:664.360000pt;}
.y12_c00186{bottom:683.240000pt;}
.y11_c00186{bottom:701.800000pt;}
.y10_c00186{bottom:720.360000pt;}
.yf_c00186{bottom:739.880000pt;}
.ye_c00186{bottom:759.080000pt;}
.yd_c00186{bottom:777.320000pt;}
.yc_c00186{bottom:795.880000pt;}
.yb_c00186{bottom:814.760000pt;}
.ya_c00186{bottom:833.320000pt;}
.y9_c00186{bottom:852.840000pt;}
.y8_c00186{bottom:871.080000pt;}
.y7_c00186{bottom:889.640000pt;}
.y6_c00186{bottom:908.520000pt;}
.y5_c00186{bottom:927.080000pt;}
.y4_c00186{bottom:945.640000pt;}
.y3_c00186{bottom:964.520000pt;}
.y2_c00186{bottom:1011.880000pt;}
.h9_c00186{height:17.116000pt;}
.h6_c00186{height:28.992000pt;}
.ha_c00186{height:41.173333pt;}
.h8_c00186{height:41.761453pt;}
.h7_c00186{height:47.546880pt;}
.h4_c00186{height:50.928601pt;}
.h3_c00186{height:57.984000pt;}
.h5_c00186{height:60.510720pt;}
.h2_c00186{height:1067.880000pt;}
.h0_c00186{height:1122.520000pt;}
.h1_c00186{height:1122.666667pt;}
.w3_c00186{width:22.240000pt;}
.w2_c00186{width:767.960000pt;}
.w0_c00186{width:793.720000pt;}
.w1_c00186{width:794.000000pt;}
.x0_c00186{left:0.000000pt;}
.x1_c00186{left:12.880000pt;}
.x2_c00186{left:100.480133pt;}
.x5_c00186{left:124.477333pt;}
.x17_c00186{left:129.808000pt;}
.x3_c00186{left:144.463600pt;}
.x30_c00186{left:145.721333pt;}
.x43_c00186{left:148.211600pt;}
.x27_c00186{left:154.703733pt;}
.x18_c00186{left:169.807333pt;}
.x10_c00186{left:172.745733pt;}
.x3e_c00186{left:177.807333pt;}
.x46_c00186{left:182.703067pt;}
.x31_c00186{left:185.704400pt;}
.x44_c00186{left:188.210933pt;}
.x3d_c00186{left:196.122667pt;}
.x11_c00186{left:202.969333pt;}
.x1d_c00186{left:210.457333pt;}
.x28_c00186{left:217.417333pt;}
.x47_c00186{left:222.702533pt;}
.x19_c00186{left:225.806667pt;}
.x4c_c00186{left:236.864533pt;}
.x1e_c00186{left:246.904667pt;}
.x4_c00186{left:249.293333pt;}
.x14_c00186{left:253.157600pt;}
.x29_c00186{left:257.416667pt;}
.xa_c00186{left:258.531200pt;}
.x2e_c00186{left:259.598000pt;}
.x45_c00186{left:268.269467pt;}
.x1a_c00186{left:279.133733pt;}
.x3a_c00186{left:283.597600pt;}
.x6_c00186{left:299.106400pt;}
.x15_c00186{left:304.708933pt;}
.xb_c00186{left:310.082667pt;}
.x48_c00186{left:314.269200pt;}
.x2a_c00186{left:320.130267pt;}
.x7_c00186{left:325.778000pt;}
.x4b_c00186{left:331.303067pt;}
.x21_c00186{left:340.940400pt;}
.x2f_c00186{left:348.492800pt;}
.x41_c00186{left:352.335200pt;}
.x2b_c00186{left:355.697600pt;}
.x1b_c00186{left:357.513333pt;}
.x3b_c00186{left:360.365867pt;}
.x42_c00186{left:362.111067pt;}
.x49_c00186{left:370.268533pt;}
.x3c_c00186{left:371.917600pt;}
.x22_c00186{left:396.939733pt;}
.x4a_c00186{left:400.492133pt;}
.x1c_c00186{left:410.840533pt;}
.x36_c00186{left:414.327867pt;}
.x12_c00186{left:436.028667pt;}
.x32_c00186{left:442.256800pt;}
.x37_c00186{left:450.775333pt;}
.x38_c00186{left:456.692400pt;}
.x13_c00186{left:471.596000pt;}
.x33_c00186{left:478.704133pt;}
.x3f_c00186{left:497.289067pt;}
.x39_c00186{left:504.691733pt;}
.xe_c00186{left:521.680400pt;}
.xc_c00186{left:531.917333pt;}
.x40_c00186{left:533.736267pt;}
.x23_c00186{left:538.715867pt;}
.x2c_c00186{left:541.197333pt;}
.x16_c00186{left:557.263333pt;}
.xd_c00186{left:566.588533pt;}
.x1f_c00186{left:567.895200pt;}
.x2d_c00186{left:571.420933pt;}
.x24_c00186{left:572.507467pt;}
.x25_c00186{left:582.880800pt;}
.x20_c00186{left:607.894533pt;}
.x26_c00186{left:614.864533pt;}
.xf_c00186{left:622.566133pt;}
.x8_c00186{left:626.118133pt;}
.x34_c00186{left:636.789733pt;}
.x9_c00186{left:662.565467pt;}
.x35_c00186{left:667.013333pt;}
.x4d_c00186{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_31e320be26cb5cab45eb371b.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;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_c00187;src:url('chunks/assets/font_8328faa0c7e0e555a2a1b5fd.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;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:ff3_c00187;src:url('chunks/assets/font_15c9ab2a21e8f38b451df68d.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:0.787000;font-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_c00187{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00187{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls2_c00187{letter-spacing:0.000000px;}
.ls5_c00187{letter-spacing:0.202464px;}
.ls7_c00187{letter-spacing:0.239760px;}
.ls3_c00187{letter-spacing:0.399600px;}
.ls4_c00187{letter-spacing:0.494278px;}
.ls6_c00187{letter-spacing:0.576658px;}
.ls0_c00187{letter-spacing:5.976000px;}
.ls1_c00187{letter-spacing:6.159920px;}
.sc__c00187{text-shadow:none;}
.sc1_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00187{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc1_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00187{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00187{word-spacing:-15.844353px;}
.ws0_c00187{word-spacing:-15.211440px;}
.ws1_c00187{word-spacing:-15.051600px;}
.ws3_c00187{word-spacing:0.000000px;}
._0_c00187{margin-left:-1.118880px;}
._1_c00187{width:1.012320px;}
.fc0_c00187{color:rgb(0,0,0);}
.fs2_c00187{font-size:53.280000px;}
.fs3_c00187{font-size:54.919767px;}
.fs4_c00187{font-size:60.000000px;}
.fs0_c00187{font-size:72.000000px;}
.fs1_c00187{font-size:74.215901px;}
.y0_c00187{bottom:0.000000px;}
.y27_c00187{bottom:3.120150px;}
.y24_c00187{bottom:12.240000px;}
.y21_c00187{bottom:14.400000px;}
.y23_c00187{bottom:27.720000px;}
.y26_c00187{bottom:34.744500px;}
.y1_c00187{bottom:54.000000px;}
.y1f_c00187{bottom:76.725000px;}
.y1e_c00187{bottom:112.725000px;}
.y20_c00187{bottom:130.365000px;}
.y1d_c00187{bottom:148.725000px;}
.y1c_c00187{bottom:184.725000px;}
.y1b_c00187{bottom:220.725000px;}
.y1a_c00187{bottom:256.725000px;}
.y19_c00187{bottom:292.725000px;}
.y18_c00187{bottom:328.725000px;}
.y17_c00187{bottom:364.725000px;}
.y16_c00187{bottom:400.725000px;}
.y15_c00187{bottom:436.725000px;}
.y25_c00187{bottom:454.365000px;}
.y14_c00187{bottom:472.725000px;}
.y13_c00187{bottom:509.085000px;}
.y12_c00187{bottom:545.085000px;}
.y11_c00187{bottom:581.085000px;}
.y10_c00187{bottom:617.085000px;}
.yf_c00187{bottom:653.085000px;}
.ye_c00187{bottom:689.085000px;}
.yd_c00187{bottom:725.085000px;}
.yc_c00187{bottom:761.085000px;}
.yb_c00187{bottom:797.085000px;}
.y22_c00187{bottom:805.365000px;}
.ya_c00187{bottom:833.085000px;}
.y9_c00187{bottom:869.085000px;}
.y8_c00187{bottom:905.085000px;}
.y7_c00187{bottom:941.085000px;}
.y6_c00187{bottom:977.085000px;}
.y5_c00187{bottom:1013.085000px;}
.y4_c00187{bottom:1049.085000px;}
.y3_c00187{bottom:1085.085000px;}
.y2_c00187{bottom:1138.365000px;}
.h9_c00187{height:19.255500px;}
.h5_c00187{height:27.000000px;}
.h8_c00187{height:40.320000px;}
.h6_c00187{height:41.132160px;}
.h7_c00187{height:42.398060px;}
.ha_c00187{height:46.320000px;}
.h3_c00187{height:55.584000px;}
.h4_c00187{height:57.294676px;}
.h2_c00187{height:1201.365000px;}
.h0_c00187{height:1262.835000px;}
.h1_c00187{height:1263.000000px;}
.w5_c00187{width:25.020000px;}
.w4_c00187{width:599.040000px;}
.w3_c00187{width:628.920000px;}
.w2_c00187{width:863.955000px;}
.w0_c00187{width:892.935000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x6_c00187{left:5.421750px;}
.x1_c00187{left:14.490000px;}
.xc_c00187{left:23.032050px;}
.x2_c00187{left:113.040150px;}
.x7_c00187{left:115.728450px;}
.x10_c00187{left:127.297050px;}
.xd_c00187{left:133.338750px;}
.x5_c00187{left:150.210000px;}
.xb_c00187{left:151.290000px;}
.x3_c00187{left:162.521550px;}
.x8_c00187{left:185.481750px;}
.xe_c00187{left:203.092050px;}
.x11_c00187{left:237.603750px;}
.xf_c00187{left:243.556950px;}
.x4_c00187{left:280.455000px;}
.x12_c00187{left:307.357050px;}
.x9_c00187{left:361.018800px;}
.x13_c00187{left:428.111850px;}
.xa_c00187{left:447.997500px;}
.x14_c00187{left:759.915000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls2_c00187{letter-spacing:0.000000pt;}
.ls5_c00187{letter-spacing:0.179968pt;}
.ls7_c00187{letter-spacing:0.213120pt;}
.ls3_c00187{letter-spacing:0.355200pt;}
.ls4_c00187{letter-spacing:0.439358pt;}
.ls6_c00187{letter-spacing:0.512584pt;}
.ls0_c00187{letter-spacing:5.312000pt;}
.ls1_c00187{letter-spacing:5.475484pt;}
.ws2_c00187{word-spacing:-14.083869pt;}
.ws0_c00187{word-spacing:-13.521280pt;}
.ws1_c00187{word-spacing:-13.379200pt;}
.ws3_c00187{word-spacing:0.000000pt;}
._0_c00187{margin-left:-0.994560pt;}
._1_c00187{width:0.899840pt;}
.fs2_c00187{font-size:47.360000pt;}
.fs3_c00187{font-size:48.817571pt;}
.fs4_c00187{font-size:53.333333pt;}
.fs0_c00187{font-size:64.000000pt;}
.fs1_c00187{font-size:65.969690pt;}
.y0_c00187{bottom:0.000000pt;}
.y27_c00187{bottom:2.773467pt;}
.y24_c00187{bottom:10.880000pt;}
.y21_c00187{bottom:12.800000pt;}
.y23_c00187{bottom:24.640000pt;}
.y26_c00187{bottom:30.884000pt;}
.y1_c00187{bottom:48.000000pt;}
.y1f_c00187{bottom:68.200000pt;}
.y1e_c00187{bottom:100.200000pt;}
.y20_c00187{bottom:115.880000pt;}
.y1d_c00187{bottom:132.200000pt;}
.y1c_c00187{bottom:164.200000pt;}
.y1b_c00187{bottom:196.200000pt;}
.y1a_c00187{bottom:228.200000pt;}
.y19_c00187{bottom:260.200000pt;}
.y18_c00187{bottom:292.200000pt;}
.y17_c00187{bottom:324.200000pt;}
.y16_c00187{bottom:356.200000pt;}
.y15_c00187{bottom:388.200000pt;}
.y25_c00187{bottom:403.880000pt;}
.y14_c00187{bottom:420.200000pt;}
.y13_c00187{bottom:452.520000pt;}
.y12_c00187{bottom:484.520000pt;}
.y11_c00187{bottom:516.520000pt;}
.y10_c00187{bottom:548.520000pt;}
.yf_c00187{bottom:580.520000pt;}
.ye_c00187{bottom:612.520000pt;}
.yd_c00187{bottom:644.520000pt;}
.yc_c00187{bottom:676.520000pt;}
.yb_c00187{bottom:708.520000pt;}
.y22_c00187{bottom:715.880000pt;}
.ya_c00187{bottom:740.520000pt;}
.y9_c00187{bottom:772.520000pt;}
.y8_c00187{bottom:804.520000pt;}
.y7_c00187{bottom:836.520000pt;}
.y6_c00187{bottom:868.520000pt;}
.y5_c00187{bottom:900.520000pt;}
.y4_c00187{bottom:932.520000pt;}
.y3_c00187{bottom:964.520000pt;}
.y2_c00187{bottom:1011.880000pt;}
.h9_c00187{height:17.116000pt;}
.h5_c00187{height:24.000000pt;}
.h8_c00187{height:35.840000pt;}
.h6_c00187{height:36.561920pt;}
.h7_c00187{height:37.687165pt;}
.ha_c00187{height:41.173333pt;}
.h3_c00187{height:49.408000pt;}
.h4_c00187{height:50.928601pt;}
.h2_c00187{height:1067.880000pt;}
.h0_c00187{height:1122.520000pt;}
.h1_c00187{height:1122.666667pt;}
.w5_c00187{width:22.240000pt;}
.w4_c00187{width:532.480000pt;}
.w3_c00187{width:559.040000pt;}
.w2_c00187{width:767.960000pt;}
.w0_c00187{width:793.720000pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x6_c00187{left:4.819333pt;}
.x1_c00187{left:12.880000pt;}
.xc_c00187{left:20.472933pt;}
.x2_c00187{left:100.480133pt;}
.x7_c00187{left:102.869733pt;}
.x10_c00187{left:113.152933pt;}
.xd_c00187{left:118.523333pt;}
.x5_c00187{left:133.520000pt;}
.xb_c00187{left:134.480000pt;}
.x3_c00187{left:144.463600pt;}
.x8_c00187{left:164.872667pt;}
.xe_c00187{left:180.526267pt;}
.x11_c00187{left:211.203333pt;}
.xf_c00187{left:216.495067pt;}
.x4_c00187{left:249.293333pt;}
.x12_c00187{left:273.206267pt;}
.x9_c00187{left:320.905600pt;}
.x13_c00187{left:380.543867pt;}
.xa_c00187{left:398.220000pt;}
.x14_c00187{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd07a6c59cb6a34d28b8da4b.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.134000;font-style:normal;font-weight:normal;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_2ba8276fdbfbe7cf77750f6b.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;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:ff3_c00188;src:url('chunks/assets/font_32324145334ad4e58b63250a.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:0.787000;font-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_c00188{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00188{vertical-align:-30.240000px;}
.v3_c00188{vertical-align:-24.480000px;}
.v0_c00188{vertical-align:0.000000px;}
.v1_c00188{vertical-align:30.240000px;}
.lsa_c00188{letter-spacing:0.000000px;}
.ls4_c00188{letter-spacing:0.222840px;}
.ls10_c00188{letter-spacing:0.265680px;}
.ls11_c00188{letter-spacing:0.273857px;}
.ls8_c00188{letter-spacing:0.295200px;}
.ls12_c00188{letter-spacing:0.318816px;}
.ls13_c00188{letter-spacing:0.425088px;}
.ls1c_c00188{letter-spacing:0.438171px;}
.ls7_c00188{letter-spacing:0.478224px;}
.ls18_c00188{letter-spacing:0.492942px;}
.ls19_c00188{letter-spacing:0.531360px;}
.ls1e_c00188{letter-spacing:0.584496px;}
.ls3_c00188{letter-spacing:0.632040px;}
.ls1b_c00188{letter-spacing:0.696672px;}
.ls1a_c00188{letter-spacing:0.712027px;}
.ls14_c00188{letter-spacing:0.718113px;}
.ls15_c00188{letter-spacing:0.743904px;}
.ls16_c00188{letter-spacing:0.766799px;}
.ls6_c00188{letter-spacing:0.777840px;}
.ls1f_c00188{letter-spacing:0.797040px;}
.lsf_c00188{letter-spacing:0.821570px;}
.lse_c00188{letter-spacing:2.822112px;}
.ls17_c00188{letter-spacing:2.875248px;}
.lsc_c00188{letter-spacing:5.245344px;}
.ls1_c00188{letter-spacing:5.313840px;}
.lsb_c00188{letter-spacing:5.406777px;}
.lsd_c00188{letter-spacing:5.430672px;}
.ls2_c00188{letter-spacing:5.976000px;}
.ls5_c00188{letter-spacing:5.991000px;}
.ls0_c00188{letter-spacing:6.159301px;}
.ls9_c00188{letter-spacing:6.159920px;}
.ls1d_c00188{letter-spacing:10.627200px;}
.sc__c00188{text-shadow:none;}
.sc1_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00188{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc1_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00188{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00188{word-spacing:-21.499753px;}
.ws3_c00188{word-spacing:-21.043152px;}
.ws2_c00188{word-spacing:-20.632021px;}
.ws4_c00188{word-spacing:-20.016000px;}
.ws6_c00188{word-spacing:-17.739827px;}
.ws8_c00188{word-spacing:-17.411199px;}
.ws7_c00188{word-spacing:-16.731936px;}
.ws1_c00188{word-spacing:-11.609280px;}
.ws5_c00188{word-spacing:-10.008000px;}
.ws9_c00188{word-spacing:0.000000px;}
._13_c00188{margin-left:-11.040480px;}
._12_c00188{margin-left:-9.859680px;}
._b_c00188{margin-left:-8.184159px;}
._f_c00188{margin-left:-3.306240px;}
._e_c00188{margin-left:-2.302560px;}
._11_c00188{margin-left:-1.121760px;}
._10_c00188{width:1.236960px;}
._7_c00188{width:2.304000px;}
._c_c00188{width:3.672000px;}
._3_c00188{width:4.968000px;}
._1_c00188{width:5.976000px;}
._2_c00188{width:7.776000px;}
._8_c00188{width:9.072000px;}
._9_c00188{width:11.304000px;}
._4_c00188{width:14.400000px;}
._14_c00188{width:15.527520px;}
._5_c00188{width:16.704000px;}
._0_c00188{width:18.288000px;}
._d_c00188{width:21.528000px;}
._a_c00188{width:24.912000px;}
._6_c00188{width:68.184000px;}
.fc0_c00188{color:rgb(0,0,0);}
.fs6_c00188{font-size:36.000000px;}
.fs4_c00188{font-size:41.760000px;}
.fs5_c00188{font-size:43.045223px;}
.fs3_c00188{font-size:56.160000px;}
.fs2_c00188{font-size:57.888403px;}
.fs7_c00188{font-size:59.040000px;}
.fs9_c00188{font-size:60.000000px;}
.fs8_c00188{font-size:60.857039px;}
.fs0_c00188{font-size:72.000000px;}
.fs1_c00188{font-size:74.215901px;}
.y0_c00188{bottom:0.000000px;}
.y33_c00188{bottom:3.120150px;}
.y32_c00188{bottom:34.744500px;}
.y1_c00188{bottom:54.000000px;}
.y31_c00188{bottom:55.482840px;}
.y30_c00188{bottom:72.766800px;}
.y2f_c00188{bottom:96.525000px;}
.y2e_c00188{bottom:107.685000px;}
.y2d_c00188{bottom:113.805000px;}
.y2c_c00188{bottom:125.325000px;}
.y2b_c00188{bottom:142.965000px;}
.y2a_c00188{bottom:149.085000px;}
.y29_c00188{bottom:160.245000px;}
.y28_c00188{bottom:166.365000px;}
.y27_c00188{bottom:184.005000px;}
.y26_c00188{bottom:201.645000px;}
.y25_c00188{bottom:212.805000px;}
.y24_c00188{bottom:212.806800px;}
.y23_c00188{bottom:230.445000px;}
.y22_c00188{bottom:236.565000px;}
.y21_c00188{bottom:263.205000px;}
.y20_c00188{bottom:297.405000px;}
.y1f_c00188{bottom:333.405000px;}
.y1e_c00188{bottom:354.285000px;}
.y1d_c00188{bottom:390.285000px;}
.y1c_c00188{bottom:426.285000px;}
.y1b_c00188{bottom:462.285000px;}
.y1a_c00188{bottom:498.285000px;}
.y19_c00188{bottom:534.285000px;}
.y18_c00188{bottom:570.285000px;}
.y17_c00188{bottom:591.525000px;}
.y15_c00188{bottom:612.405000px;}
.y16_c00188{bottom:619.965000px;}
.y14_c00188{bottom:633.285000px;}
.y13_c00188{bottom:654.525000px;}
.y12_c00188{bottom:675.405000px;}
.y11_c00188{bottom:696.285000px;}
.y10_c00188{bottom:717.525000px;}
.yf_c00188{bottom:738.405000px;}
.ye_c00188{bottom:774.405000px;}
.yd_c00188{bottom:810.405000px;}
.yc_c00188{bottom:848.925000px;}
.yb_c00188{bottom:887.085000px;}
.ya_c00188{bottom:923.085000px;}
.y9_c00188{bottom:943.965000px;}
.y8_c00188{bottom:964.845000px;}
.y7_c00188{bottom:986.085000px;}
.y6_c00188{bottom:1006.965000px;}
.y5_c00188{bottom:1027.845000px;}
.y4_c00188{bottom:1049.085000px;}
.y3_c00188{bottom:1085.085000px;}
.y2_c00188{bottom:1138.365000px;}
.hb_c00188{height:19.255500px;}
.h8_c00188{height:32.616000px;}
.h7_c00188{height:37.834560px;}
.hc_c00188{height:46.320000px;}
.h9_c00188{height:46.981634px;}
.ha_c00188{height:53.490240px;}
.h4_c00188{height:57.294676px;}
.h6_c00188{height:64.401590px;}
.h3_c00188{height:65.232000px;}
.h5_c00188{height:68.074560px;}
.h2_c00188{height:1201.365000px;}
.h0_c00188{height:1262.835000px;}
.h1_c00188{height:1263.000000px;}
.w3_c00188{width:25.020000px;}
.w2_c00188{width:863.955000px;}
.w0_c00188{width:892.935000px;}
.w1_c00188{width:893.250000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:14.490000px;}
.x2_c00188{left:113.040150px;}
.x24_c00188{left:137.204250px;}
.x15_c00188{left:153.035550px;}
.x14_c00188{left:160.425300px;}
.x3_c00188{left:162.521550px;}
.x6_c00188{left:172.024950px;}
.x4_c00188{left:210.994650px;}
.x7_c00188{left:218.032050px;}
.x10_c00188{left:230.092500px;}
.x1e_c00188{left:243.094050px;}
.x25_c00188{left:272.209350px;}
.x11_c00188{left:284.091450px;}
.x26_c00188{left:292.203300px;}
.x12_c00188{left:319.047000px;}
.x1f_c00188{left:329.746950px;}
.x20_c00188{left:337.819350px;}
.x13_c00188{left:348.044250px;}
.x21_c00188{left:360.318600px;}
.x16_c00188{left:382.393800px;}
.xa_c00188{left:401.278950px;}
.x5_c00188{left:410.223300px;}
.x17_c00188{left:411.553050px;}
.xb_c00188{left:476.091000px;}
.xc_c00188{left:507.565350px;}
.x1a_c00188{left:546.434700px;}
.x1b_c00188{left:603.103350px;}
.xd_c00188{left:622.800000px;}
.x1c_c00188{left:628.932450px;}
.x1d_c00188{left:637.271850px;}
.x18_c00188{left:644.503800px;}
.x19_c00188{left:653.482200px;}
.x22_c00188{left:659.724900px;}
.xe_c00188{left:679.225050px;}
.x8_c00188{left:685.012950px;}
.xf_c00188{left:690.222600px;}
.x23_c00188{left:701.221050px;}
.x9_c00188{left:735.396300px;}
.x27_c00188{left:759.915000px;}
@media print{
.v2_c00188{vertical-align:-26.880000pt;}
.v3_c00188{vertical-align:-21.760000pt;}
.v0_c00188{vertical-align:0.000000pt;}
.v1_c00188{vertical-align:26.880000pt;}
.lsa_c00188{letter-spacing:0.000000pt;}
.ls4_c00188{letter-spacing:0.198080pt;}
.ls10_c00188{letter-spacing:0.236160pt;}
.ls11_c00188{letter-spacing:0.243428pt;}
.ls8_c00188{letter-spacing:0.262400pt;}
.ls12_c00188{letter-spacing:0.283392pt;}
.ls13_c00188{letter-spacing:0.377856pt;}
.ls1c_c00188{letter-spacing:0.389485pt;}
.ls7_c00188{letter-spacing:0.425088pt;}
.ls18_c00188{letter-spacing:0.438171pt;}
.ls19_c00188{letter-spacing:0.472320pt;}
.ls1e_c00188{letter-spacing:0.519552pt;}
.ls3_c00188{letter-spacing:0.561813pt;}
.ls1b_c00188{letter-spacing:0.619264pt;}
.ls1a_c00188{letter-spacing:0.632913pt;}
.ls14_c00188{letter-spacing:0.638323pt;}
.ls15_c00188{letter-spacing:0.661248pt;}
.ls16_c00188{letter-spacing:0.681599pt;}
.ls6_c00188{letter-spacing:0.691413pt;}
.ls1f_c00188{letter-spacing:0.708480pt;}
.lsf_c00188{letter-spacing:0.730284pt;}
.lse_c00188{letter-spacing:2.508544pt;}
.ls17_c00188{letter-spacing:2.555776pt;}
.lsc_c00188{letter-spacing:4.662528pt;}
.ls1_c00188{letter-spacing:4.723413pt;}
.lsb_c00188{letter-spacing:4.806024pt;}
.lsd_c00188{letter-spacing:4.827264pt;}
.ls2_c00188{letter-spacing:5.312000pt;}
.ls5_c00188{letter-spacing:5.325333pt;}
.ls0_c00188{letter-spacing:5.474935pt;}
.ls9_c00188{letter-spacing:5.475484pt;}
.ls1d_c00188{letter-spacing:9.446400pt;}
.ws0_c00188{word-spacing:-19.110891pt;}
.ws3_c00188{word-spacing:-18.705024pt;}
.ws2_c00188{word-spacing:-18.339574pt;}
.ws4_c00188{word-spacing:-17.792000pt;}
.ws6_c00188{word-spacing:-15.768735pt;}
.ws8_c00188{word-spacing:-15.476621pt;}
.ws7_c00188{word-spacing:-14.872832pt;}
.ws1_c00188{word-spacing:-10.319360pt;}
.ws5_c00188{word-spacing:-8.896000pt;}
.ws9_c00188{word-spacing:0.000000pt;}
._13_c00188{margin-left:-9.813760pt;}
._12_c00188{margin-left:-8.764160pt;}
._b_c00188{margin-left:-7.274808pt;}
._f_c00188{margin-left:-2.938880pt;}
._e_c00188{margin-left:-2.046720pt;}
._11_c00188{margin-left:-0.997120pt;}
._10_c00188{width:1.099520pt;}
._7_c00188{width:2.048000pt;}
._c_c00188{width:3.264000pt;}
._3_c00188{width:4.416000pt;}
._1_c00188{width:5.312000pt;}
._2_c00188{width:6.912000pt;}
._8_c00188{width:8.064000pt;}
._9_c00188{width:10.048000pt;}
._4_c00188{width:12.800000pt;}
._14_c00188{width:13.802240pt;}
._5_c00188{width:14.848000pt;}
._0_c00188{width:16.256000pt;}
._d_c00188{width:19.136000pt;}
._a_c00188{width:22.144000pt;}
._6_c00188{width:60.608000pt;}
.fs6_c00188{font-size:32.000000pt;}
.fs4_c00188{font-size:37.120000pt;}
.fs5_c00188{font-size:38.262420pt;}
.fs3_c00188{font-size:49.920000pt;}
.fs2_c00188{font-size:51.456358pt;}
.fs7_c00188{font-size:52.480000pt;}
.fs9_c00188{font-size:53.333333pt;}
.fs8_c00188{font-size:54.095146pt;}
.fs0_c00188{font-size:64.000000pt;}
.fs1_c00188{font-size:65.969690pt;}
.y0_c00188{bottom:0.000000pt;}
.y33_c00188{bottom:2.773467pt;}
.y32_c00188{bottom:30.884000pt;}
.y1_c00188{bottom:48.000000pt;}
.y31_c00188{bottom:49.318080pt;}
.y30_c00188{bottom:64.681600pt;}
.y2f_c00188{bottom:85.800000pt;}
.y2e_c00188{bottom:95.720000pt;}
.y2d_c00188{bottom:101.160000pt;}
.y2c_c00188{bottom:111.400000pt;}
.y2b_c00188{bottom:127.080000pt;}
.y2a_c00188{bottom:132.520000pt;}
.y29_c00188{bottom:142.440000pt;}
.y28_c00188{bottom:147.880000pt;}
.y27_c00188{bottom:163.560000pt;}
.y26_c00188{bottom:179.240000pt;}
.y25_c00188{bottom:189.160000pt;}
.y24_c00188{bottom:189.161600pt;}
.y23_c00188{bottom:204.840000pt;}
.y22_c00188{bottom:210.280000pt;}
.y21_c00188{bottom:233.960000pt;}
.y20_c00188{bottom:264.360000pt;}
.y1f_c00188{bottom:296.360000pt;}
.y1e_c00188{bottom:314.920000pt;}
.y1d_c00188{bottom:346.920000pt;}
.y1c_c00188{bottom:378.920000pt;}
.y1b_c00188{bottom:410.920000pt;}
.y1a_c00188{bottom:442.920000pt;}
.y19_c00188{bottom:474.920000pt;}
.y18_c00188{bottom:506.920000pt;}
.y17_c00188{bottom:525.800000pt;}
.y15_c00188{bottom:544.360000pt;}
.y16_c00188{bottom:551.080000pt;}
.y14_c00188{bottom:562.920000pt;}
.y13_c00188{bottom:581.800000pt;}
.y12_c00188{bottom:600.360000pt;}
.y11_c00188{bottom:618.920000pt;}
.y10_c00188{bottom:637.800000pt;}
.yf_c00188{bottom:656.360000pt;}
.ye_c00188{bottom:688.360000pt;}
.yd_c00188{bottom:720.360000pt;}
.yc_c00188{bottom:754.600000pt;}
.yb_c00188{bottom:788.520000pt;}
.ya_c00188{bottom:820.520000pt;}
.y9_c00188{bottom:839.080000pt;}
.y8_c00188{bottom:857.640000pt;}
.y7_c00188{bottom:876.520000pt;}
.y6_c00188{bottom:895.080000pt;}
.y5_c00188{bottom:913.640000pt;}
.y4_c00188{bottom:932.520000pt;}
.y3_c00188{bottom:964.520000pt;}
.y2_c00188{bottom:1011.880000pt;}
.hb_c00188{height:17.116000pt;}
.h8_c00188{height:28.992000pt;}
.h7_c00188{height:33.630720pt;}
.hc_c00188{height:41.173333pt;}
.h9_c00188{height:41.761453pt;}
.ha_c00188{height:47.546880pt;}
.h4_c00188{height:50.928601pt;}
.h6_c00188{height:57.245858pt;}
.h3_c00188{height:57.984000pt;}
.h5_c00188{height:60.510720pt;}
.h2_c00188{height:1067.880000pt;}
.h0_c00188{height:1122.520000pt;}
.h1_c00188{height:1122.666667pt;}
.w3_c00188{width:22.240000pt;}
.w2_c00188{width:767.960000pt;}
.w0_c00188{width:793.720000pt;}
.w1_c00188{width:794.000000pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:12.880000pt;}
.x2_c00188{left:100.480133pt;}
.x24_c00188{left:121.959333pt;}
.x15_c00188{left:136.031600pt;}
.x14_c00188{left:142.600267pt;}
.x3_c00188{left:144.463600pt;}
.x6_c00188{left:152.911067pt;}
.x4_c00188{left:187.550800pt;}
.x7_c00188{left:193.806267pt;}
.x10_c00188{left:204.526667pt;}
.x1e_c00188{left:216.083600pt;}
.x25_c00188{left:241.963867pt;}
.x11_c00188{left:252.525733pt;}
.x26_c00188{left:259.736267pt;}
.x12_c00188{left:283.597333pt;}
.x1f_c00188{left:293.108400pt;}
.x20_c00188{left:300.283867pt;}
.x13_c00188{left:309.372667pt;}
.x21_c00188{left:320.283200pt;}
.x16_c00188{left:339.905600pt;}
.xa_c00188{left:356.692400pt;}
.x5_c00188{left:364.642933pt;}
.x17_c00188{left:365.824933pt;}
.xb_c00188{left:423.192000pt;}
.xc_c00188{left:451.169200pt;}
.x1a_c00188{left:485.719733pt;}
.x1b_c00188{left:536.091867pt;}
.xd_c00188{left:553.600000pt;}
.x1c_c00188{left:559.051067pt;}
.x1d_c00188{left:566.463867pt;}
.x18_c00188{left:572.892267pt;}
.x19_c00188{left:580.873067pt;}
.x22_c00188{left:586.422133pt;}
.xe_c00188{left:603.755600pt;}
.x8_c00188{left:608.900400pt;}
.xf_c00188{left:613.531200pt;}
.x23_c00188{left:623.307600pt;}
.x9_c00188{left:653.685600pt;}
.x27_c00188{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_78c365480948a7702ccd4d18.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.134000;font-style:normal;font-weight:normal;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_cc2ce19e8a771bc88631070d.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;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:ff3_c00189;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00189;src:url('chunks/assets/font_ff4224010b4fb32562758cd6.woff2')format("woff");}.ff6_c00189{font-family:ff6_c00189;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00189;src:url('chunks/assets/font_3cdca110a77f1202a9b0114b.woff2')format("woff");}.ff7_c00189{font-family:ff7_c00189;line-height:0.787000;font-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_c00189{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00189{vertical-align:-24.480000px;}
.v0_c00189{vertical-align:0.000000px;}
.v2_c00189{vertical-align:24.480000px;}
.v1_c00189{vertical-align:30.240000px;}
.ls10_c00189{letter-spacing:0.000000px;}
.ls13_c00189{letter-spacing:0.144000px;}
.ls9_c00189{letter-spacing:0.265680px;}
.lsb_c00189{letter-spacing:0.295200px;}
.lsd_c00189{letter-spacing:0.301104px;}
.ls3_c00189{letter-spacing:0.318480px;}
.ls24_c00189{letter-spacing:0.318816px;}
.ls8_c00189{letter-spacing:0.319080px;}
.ls25_c00189{letter-spacing:0.371952px;}
.ls23_c00189{letter-spacing:0.425088px;}
.ls20_c00189{letter-spacing:0.478224px;}
.ls7_c00189{letter-spacing:0.492942px;}
.lsa_c00189{letter-spacing:0.531360px;}
.ls1f_c00189{letter-spacing:0.584496px;}
.ls19_c00189{letter-spacing:0.690768px;}
.ls1a_c00189{letter-spacing:0.696672px;}
.ls6_c00189{letter-spacing:0.712027px;}
.ls14_c00189{letter-spacing:0.718113px;}
.ls1c_c00189{letter-spacing:0.743904px;}
.ls1e_c00189{letter-spacing:0.766799px;}
.ls16_c00189{letter-spacing:0.797040px;}
.lsc_c00189{letter-spacing:0.821570px;}
.ls1d_c00189{letter-spacing:0.962352px;}
.ls1b_c00189{letter-spacing:5.295888px;}
.ls2_c00189{letter-spacing:5.353440px;}
.ls11_c00189{letter-spacing:5.430672px;}
.ls15_c00189{letter-spacing:5.461200px;}
.ls5_c00189{letter-spacing:5.513160px;}
.ls17_c00189{letter-spacing:5.514336px;}
.ls4_c00189{letter-spacing:5.726280px;}
.ls12_c00189{letter-spacing:5.726880px;}
.ls18_c00189{letter-spacing:5.939424px;}
.lse_c00189{letter-spacing:5.976000px;}
.ls0_c00189{letter-spacing:5.982000px;}
.lsf_c00189{letter-spacing:6.159920px;}
.ls21_c00189{letter-spacing:6.370416px;}
.ls22_c00189{letter-spacing:16.436736px;}
.ls1_c00189{letter-spacing:54.864000px;}
.sc__c00189{text-shadow:none;}
.sc1_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00189{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc1_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00189{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00189{word-spacing:-22.352544px;}
.ws2_c00189{word-spacing:-22.140000px;}
.ws6_c00189{word-spacing:-21.874320px;}
.ws0_c00189{word-spacing:-21.043152px;}
.wsa_c00189{word-spacing:-17.685056px;}
.ws5_c00189{word-spacing:-17.636370px;}
.ws8_c00189{word-spacing:-17.630284px;}
.ws9_c00189{word-spacing:-17.411199px;}
.wsc_c00189{word-spacing:-17.103888px;}
.wsb_c00189{word-spacing:-16.944480px;}
.ws3_c00189{word-spacing:-16.413120px;}
.ws1_c00189{word-spacing:-11.609280px;}
.ws4_c00189{word-spacing:-10.152000px;}
.wsd_c00189{word-spacing:-10.008000px;}
.wse_c00189{word-spacing:0.000000px;}
._10_c00189{margin-left:-16.885440px;}
._f_c00189{margin-left:-15.881760px;}
._11_c00189{margin-left:-14.700960px;}
._a_c00189{margin-left:-5.904000px;}
._9_c00189{margin-left:-4.605120px;}
._0_c00189{margin-left:-1.179360px;}
._4_c00189{width:1.152000px;}
._5_c00189{width:2.592000px;}
._e_c00189{width:3.763920px;}
._7_c00189{width:4.817640px;}
._b_c00189{width:5.948400px;}
._c_c00189{width:7.453680px;}
._d_c00189{width:9.326880px;}
._3_c00189{width:11.088000px;}
._1_c00189{width:13.320000px;}
._12_c00189{width:15.621984px;}
._6_c00189{width:21.024000px;}
._2_c00189{width:22.104000px;}
._8_c00189{width:43.691280px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs5_c00189{font-size:36.000000px;}
.fs3_c00189{font-size:41.760000px;}
.fs2_c00189{font-size:56.160000px;}
.fs4_c00189{font-size:59.040000px;}
.fs7_c00189{font-size:60.000000px;}
.fs6_c00189{font-size:60.857039px;}
.fs0_c00189{font-size:72.000000px;}
.fs1_c00189{font-size:74.215901px;}
.y0_c00189{bottom:0.000000px;}
.y33_c00189{bottom:3.120150px;}
.y32_c00189{bottom:34.744500px;}
.y1_c00189{bottom:54.000000px;}
.y31_c00189{bottom:55.485000px;}
.y30_c00189{bottom:61.605000px;}
.y2f_c00189{bottom:72.766440px;}
.y2e_c00189{bottom:90.404640px;}
.y2d_c00189{bottom:107.688600px;}
.y2c_c00189{bottom:125.326800px;}
.y2b_c00189{bottom:149.085000px;}
.y2a_c00189{bottom:160.246800px;}
.y29_c00189{bottom:184.005000px;}
.y28_c00189{bottom:210.645000px;}
.y27_c00189{bottom:264.646800px;}
.y26_c00189{bottom:282.285000px;}
.y24_c00189{bottom:307.481040px;}
.y25_c00189{bottom:307.485000px;}
.y23_c00189{bottom:324.765000px;}
.y22_c00189{bottom:342.405000px;}
.y21_c00189{bottom:374.805000px;}
.y1c_c00189{bottom:393.165000px;}
.y20_c00189{bottom:396.405000px;}
.y1b_c00189{bottom:411.165000px;}
.y1f_c00189{bottom:414.045000px;}
.y1a_c00189{bottom:430.965000px;}
.y1e_c00189{bottom:431.325000px;}
.y19_c00189{bottom:448.605000px;}
.y1d_c00189{bottom:448.965000px;}
.y18_c00189{bottom:466.245000px;}
.y17_c00189{bottom:499.725000px;}
.y16_c00189{bottom:535.725000px;}
.y15_c00189{bottom:556.965000px;}
.y14_c00189{bottom:592.965000px;}
.y13_c00189{bottom:613.845000px;}
.y12_c00189{bottom:635.085000px;}
.y11_c00189{bottom:655.965000px;}
.y10_c00189{bottom:691.965000px;}
.yf_c00189{bottom:712.845000px;}
.ye_c00189{bottom:734.085000px;}
.yd_c00189{bottom:770.085000px;}
.yc_c00189{bottom:806.085000px;}
.yb_c00189{bottom:826.965000px;}
.ya_c00189{bottom:862.965000px;}
.y9_c00189{bottom:898.965000px;}
.y8_c00189{bottom:919.845000px;}
.y7_c00189{bottom:941.085000px;}
.y6_c00189{bottom:977.085000px;}
.y5_c00189{bottom:1013.085000px;}
.y4_c00189{bottom:1049.085000px;}
.y3_c00189{bottom:1085.085000px;}
.y2_c00189{bottom:1138.365000px;}
.ha_c00189{height:19.255500px;}
.h9_c00189{height:32.616000px;}
.hb_c00189{height:46.320000px;}
.h8_c00189{height:46.981634px;}
.h6_c00189{height:53.490240px;}
.h7_c00189{height:57.096000px;}
.h4_c00189{height:57.294676px;}
.h3_c00189{height:65.232000px;}
.h5_c00189{height:68.074560px;}
.h2_c00189{height:1201.365000px;}
.h0_c00189{height:1262.835000px;}
.h1_c00189{height:1263.000000px;}
.w6_c00189{width:25.020000px;}
.w3_c00189{width:39.600000px;}
.w4_c00189{width:260.640000px;}
.w5_c00189{width:327.600000px;}
.w2_c00189{width:863.955000px;}
.w0_c00189{width:892.935000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.xa_c00189{left:7.920150px;}
.x1_c00189{left:14.490000px;}
.x14_c00189{left:55.548300px;}
.x15_c00189{left:59.768550px;}
.xd_c00189{left:73.798350px;}
.x18_c00189{left:79.691400px;}
.xc_c00189{left:84.240900px;}
.xe_c00189{left:108.762750px;}
.x2_c00189{left:113.040150px;}
.x19_c00189{left:114.655800px;}
.x8_c00189{left:119.034000px;}
.x1d_c00189{left:127.217700px;}
.x1c_c00189{left:133.034550px;}
.x7_c00189{left:140.037600px;}
.x5_c00189{left:155.033550px;}
.x6_c00189{left:156.362850px;}
.xb_c00189{left:159.930000px;}
.x3_c00189{left:162.521550px;}
.x1e_c00189{left:170.566800px;}
.x10_c00189{left:193.046550px;}
.x9_c00189{left:202.228650px;}
.x4_c00189{left:210.994650px;}
.x11_c00189{left:224.710950px;}
.x12_c00189{left:226.477950px;}
.x16_c00189{left:255.536850px;}
.x13_c00189{left:262.312500px;}
.x1a_c00189{left:280.208100px;}
.x17_c00189{left:298.885950px;}
.x1b_c00189{left:315.172500px;}
.xf_c00189{left:421.290000px;}
.x1f_c00189{left:759.915000px;}
@media print{
.v3_c00189{vertical-align:-21.760000pt;}
.v0_c00189{vertical-align:0.000000pt;}
.v2_c00189{vertical-align:21.760000pt;}
.v1_c00189{vertical-align:26.880000pt;}
.ls10_c00189{letter-spacing:0.000000pt;}
.ls13_c00189{letter-spacing:0.128000pt;}
.ls9_c00189{letter-spacing:0.236160pt;}
.lsb_c00189{letter-spacing:0.262400pt;}
.lsd_c00189{letter-spacing:0.267648pt;}
.ls3_c00189{letter-spacing:0.283093pt;}
.ls24_c00189{letter-spacing:0.283392pt;}
.ls8_c00189{letter-spacing:0.283627pt;}
.ls25_c00189{letter-spacing:0.330624pt;}
.ls23_c00189{letter-spacing:0.377856pt;}
.ls20_c00189{letter-spacing:0.425088pt;}
.ls7_c00189{letter-spacing:0.438171pt;}
.lsa_c00189{letter-spacing:0.472320pt;}
.ls1f_c00189{letter-spacing:0.519552pt;}
.ls19_c00189{letter-spacing:0.614016pt;}
.ls1a_c00189{letter-spacing:0.619264pt;}
.ls6_c00189{letter-spacing:0.632913pt;}
.ls14_c00189{letter-spacing:0.638323pt;}
.ls1c_c00189{letter-spacing:0.661248pt;}
.ls1e_c00189{letter-spacing:0.681599pt;}
.ls16_c00189{letter-spacing:0.708480pt;}
.lsc_c00189{letter-spacing:0.730284pt;}
.ls1d_c00189{letter-spacing:0.855424pt;}
.ls1b_c00189{letter-spacing:4.707456pt;}
.ls2_c00189{letter-spacing:4.758613pt;}
.ls11_c00189{letter-spacing:4.827264pt;}
.ls15_c00189{letter-spacing:4.854400pt;}
.ls5_c00189{letter-spacing:4.900587pt;}
.ls17_c00189{letter-spacing:4.901632pt;}
.ls4_c00189{letter-spacing:5.090027pt;}
.ls12_c00189{letter-spacing:5.090560pt;}
.ls18_c00189{letter-spacing:5.279488pt;}
.lse_c00189{letter-spacing:5.312000pt;}
.ls0_c00189{letter-spacing:5.317333pt;}
.lsf_c00189{letter-spacing:5.475484pt;}
.ls21_c00189{letter-spacing:5.662592pt;}
.ls22_c00189{letter-spacing:14.610432pt;}
.ls1_c00189{letter-spacing:48.768000pt;}
.ws7_c00189{word-spacing:-19.868928pt;}
.ws2_c00189{word-spacing:-19.680000pt;}
.ws6_c00189{word-spacing:-19.443840pt;}
.ws0_c00189{word-spacing:-18.705024pt;}
.wsa_c00189{word-spacing:-15.720049pt;}
.ws5_c00189{word-spacing:-15.676773pt;}
.ws8_c00189{word-spacing:-15.671364pt;}
.ws9_c00189{word-spacing:-15.476621pt;}
.wsc_c00189{word-spacing:-15.203456pt;}
.wsb_c00189{word-spacing:-15.061760pt;}
.ws3_c00189{word-spacing:-14.589440pt;}
.ws1_c00189{word-spacing:-10.319360pt;}
.ws4_c00189{word-spacing:-9.024000pt;}
.wsd_c00189{word-spacing:-8.896000pt;}
.wse_c00189{word-spacing:0.000000pt;}
._10_c00189{margin-left:-15.009280pt;}
._f_c00189{margin-left:-14.117120pt;}
._11_c00189{margin-left:-13.067520pt;}
._a_c00189{margin-left:-5.248000pt;}
._9_c00189{margin-left:-4.093440pt;}
._0_c00189{margin-left:-1.048320pt;}
._4_c00189{width:1.024000pt;}
._5_c00189{width:2.304000pt;}
._e_c00189{width:3.345707pt;}
._7_c00189{width:4.282347pt;}
._b_c00189{width:5.287467pt;}
._c_c00189{width:6.625493pt;}
._d_c00189{width:8.290560pt;}
._3_c00189{width:9.856000pt;}
._1_c00189{width:11.840000pt;}
._12_c00189{width:13.886208pt;}
._6_c00189{width:18.688000pt;}
._2_c00189{width:19.648000pt;}
._8_c00189{width:38.836693pt;}
.fs5_c00189{font-size:32.000000pt;}
.fs3_c00189{font-size:37.120000pt;}
.fs2_c00189{font-size:49.920000pt;}
.fs4_c00189{font-size:52.480000pt;}
.fs7_c00189{font-size:53.333333pt;}
.fs6_c00189{font-size:54.095146pt;}
.fs0_c00189{font-size:64.000000pt;}
.fs1_c00189{font-size:65.969690pt;}
.y0_c00189{bottom:0.000000pt;}
.y33_c00189{bottom:2.773467pt;}
.y32_c00189{bottom:30.884000pt;}
.y1_c00189{bottom:48.000000pt;}
.y31_c00189{bottom:49.320000pt;}
.y30_c00189{bottom:54.760000pt;}
.y2f_c00189{bottom:64.681280pt;}
.y2e_c00189{bottom:80.359680pt;}
.y2d_c00189{bottom:95.723200pt;}
.y2c_c00189{bottom:111.401600pt;}
.y2b_c00189{bottom:132.520000pt;}
.y2a_c00189{bottom:142.441600pt;}
.y29_c00189{bottom:163.560000pt;}
.y28_c00189{bottom:187.240000pt;}
.y27_c00189{bottom:235.241600pt;}
.y26_c00189{bottom:250.920000pt;}
.y24_c00189{bottom:273.316480pt;}
.y25_c00189{bottom:273.320000pt;}
.y23_c00189{bottom:288.680000pt;}
.y22_c00189{bottom:304.360000pt;}
.y21_c00189{bottom:333.160000pt;}
.y1c_c00189{bottom:349.480000pt;}
.y20_c00189{bottom:352.360000pt;}
.y1b_c00189{bottom:365.480000pt;}
.y1f_c00189{bottom:368.040000pt;}
.y1a_c00189{bottom:383.080000pt;}
.y1e_c00189{bottom:383.400000pt;}
.y19_c00189{bottom:398.760000pt;}
.y1d_c00189{bottom:399.080000pt;}
.y18_c00189{bottom:414.440000pt;}
.y17_c00189{bottom:444.200000pt;}
.y16_c00189{bottom:476.200000pt;}
.y15_c00189{bottom:495.080000pt;}
.y14_c00189{bottom:527.080000pt;}
.y13_c00189{bottom:545.640000pt;}
.y12_c00189{bottom:564.520000pt;}
.y11_c00189{bottom:583.080000pt;}
.y10_c00189{bottom:615.080000pt;}
.yf_c00189{bottom:633.640000pt;}
.ye_c00189{bottom:652.520000pt;}
.yd_c00189{bottom:684.520000pt;}
.yc_c00189{bottom:716.520000pt;}
.yb_c00189{bottom:735.080000pt;}
.ya_c00189{bottom:767.080000pt;}
.y9_c00189{bottom:799.080000pt;}
.y8_c00189{bottom:817.640000pt;}
.y7_c00189{bottom:836.520000pt;}
.y6_c00189{bottom:868.520000pt;}
.y5_c00189{bottom:900.520000pt;}
.y4_c00189{bottom:932.520000pt;}
.y3_c00189{bottom:964.520000pt;}
.y2_c00189{bottom:1011.880000pt;}
.ha_c00189{height:17.116000pt;}
.h9_c00189{height:28.992000pt;}
.hb_c00189{height:41.173333pt;}
.h8_c00189{height:41.761453pt;}
.h6_c00189{height:47.546880pt;}
.h7_c00189{height:50.752000pt;}
.h4_c00189{height:50.928601pt;}
.h3_c00189{height:57.984000pt;}
.h5_c00189{height:60.510720pt;}
.h2_c00189{height:1067.880000pt;}
.h0_c00189{height:1122.520000pt;}
.h1_c00189{height:1122.666667pt;}
.w6_c00189{width:22.240000pt;}
.w3_c00189{width:35.200000pt;}
.w4_c00189{width:231.680000pt;}
.w5_c00189{width:291.200000pt;}
.w2_c00189{width:767.960000pt;}
.w0_c00189{width:793.720000pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.xa_c00189{left:7.040133pt;}
.x1_c00189{left:12.880000pt;}
.x14_c00189{left:49.376267pt;}
.x15_c00189{left:53.127600pt;}
.xd_c00189{left:65.598533pt;}
.x18_c00189{left:70.836800pt;}
.xc_c00189{left:74.880800pt;}
.xe_c00189{left:96.678000pt;}
.x2_c00189{left:100.480133pt;}
.x19_c00189{left:101.916267pt;}
.x8_c00189{left:105.808000pt;}
.x1d_c00189{left:113.082400pt;}
.x1c_c00189{left:118.252933pt;}
.x7_c00189{left:124.477867pt;}
.x5_c00189{left:137.807600pt;}
.x6_c00189{left:138.989200pt;}
.xb_c00189{left:142.160000pt;}
.x3_c00189{left:144.463600pt;}
.x1e_c00189{left:151.614933pt;}
.x10_c00189{left:171.596933pt;}
.x9_c00189{left:179.758800pt;}
.x4_c00189{left:187.550800pt;}
.x11_c00189{left:199.743067pt;}
.x12_c00189{left:201.313733pt;}
.x16_c00189{left:227.143867pt;}
.x13_c00189{left:233.166667pt;}
.x1a_c00189{left:249.073867pt;}
.x17_c00189{left:265.676400pt;}
.x1b_c00189{left:280.153333pt;}
.xf_c00189{left:374.480000pt;}
.x1f_c00189{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7530ba066a23cead37612659.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.134000;font-style:normal;font-weight:normal;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_d73d0963e179505d9d7a7367.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;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:ff3_c00190;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_6820b374001767d029a3239c.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:0.787000;font-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_c00190{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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:-24.480000px;}
.v0_c00190{vertical-align:0.000000px;}
.v1_c00190{vertical-align:24.480000px;}
.lsf_c00190{letter-spacing:0.000000px;}
.ls12_c00190{letter-spacing:0.144000px;}
.ls1e_c00190{letter-spacing:0.148432px;}
.ls19_c00190{letter-spacing:0.265680px;}
.ls1f_c00190{letter-spacing:0.273857px;}
.ls8_c00190{letter-spacing:0.318480px;}
.ls1c_c00190{letter-spacing:0.318816px;}
.ls4_c00190{letter-spacing:0.319080px;}
.ls21_c00190{letter-spacing:0.371952px;}
.ls1b_c00190{letter-spacing:0.425088px;}
.ls22_c00190{letter-spacing:0.438171px;}
.ls1a_c00190{letter-spacing:0.478224px;}
.lsc_c00190{letter-spacing:0.501840px;}
.lsb_c00190{letter-spacing:0.531360px;}
.ls17_c00190{letter-spacing:0.584496px;}
.ls20_c00190{letter-spacing:0.602485px;}
.ls1d_c00190{letter-spacing:0.637632px;}
.ls18_c00190{letter-spacing:0.690768px;}
.lsa_c00190{letter-spacing:5.245680px;}
.ls3_c00190{letter-spacing:5.352840px;}
.ls6_c00190{letter-spacing:5.353440px;}
.ls16_c00190{letter-spacing:5.402160px;}
.ls5_c00190{letter-spacing:5.405040px;}
.ls9_c00190{letter-spacing:5.405640px;}
.ls10_c00190{letter-spacing:5.430672px;}
.ls2_c00190{letter-spacing:5.458800px;}
.ls11_c00190{letter-spacing:5.461200px;}
.ls7_c00190{letter-spacing:5.513160px;}
.ls13_c00190{letter-spacing:5.514336px;}
.ls1_c00190{letter-spacing:5.543856px;}
.ls15_c00190{letter-spacing:5.567472px;}
.ls14_c00190{letter-spacing:5.939424px;}
.ls0_c00190{letter-spacing:5.975400px;}
.lsd_c00190{letter-spacing:5.976000px;}
.lse_c00190{letter-spacing:6.159920px;}
.ls23_c00190{letter-spacing:9.227952px;}
.ls24_c00190{letter-spacing:10.780704px;}
.sc__c00190{text-shadow:none;}
.sc1_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00190{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc1_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00190{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00190{word-spacing:-22.352544px;}
.ws3_c00190{word-spacing:-21.927456px;}
.ws1_c00190{word-spacing:-21.874320px;}
.ws5_c00190{word-spacing:-21.815280px;}
.ws0_c00190{word-spacing:-21.043152px;}
.ws8_c00190{word-spacing:-17.192114px;}
.ws9_c00190{word-spacing:-16.944480px;}
.ws7_c00190{word-spacing:-16.918257px;}
.wsa_c00190{word-spacing:-16.785072px;}
.wsb_c00190{word-spacing:-16.731936px;}
.ws6_c00190{word-spacing:-16.678800px;}
.ws2_c00190{word-spacing:-10.152000px;}
.wsc_c00190{word-spacing:0.000000px;}
._9_c00190{margin-left:-10.383840px;}
._7_c00190{margin-left:-8.789760px;}
._8_c00190{margin-left:-7.649280px;}
._5_c00190{margin-left:-5.538485px;}
._3_c00190{margin-left:-1.158336px;}
._4_c00190{width:1.062720px;}
._6_c00190{width:4.320000px;}
._2_c00190{width:5.670960px;}
._0_c00190{width:7.344000px;}
._b_c00190{width:10.073376px;}
._a_c00190{width:11.210112px;}
._1_c00190{width:15.480000px;}
.fc0_c00190{color:rgb(0,0,0);}
.fs5_c00190{font-size:36.000000px;}
.fs7_c00190{font-size:37.107951px;}
.fs3_c00190{font-size:56.160000px;}
.fs4_c00190{font-size:59.040000px;}
.fs8_c00190{font-size:60.000000px;}
.fs6_c00190{font-size:60.857039px;}
.fs2_c00190{font-size:64.800000px;}
.fs0_c00190{font-size:72.000000px;}
.fs1_c00190{font-size:74.215901px;}
.y0_c00190{bottom:0.000000px;}
.y32_c00190{bottom:3.120150px;}
.y31_c00190{bottom:34.744500px;}
.y1_c00190{bottom:54.000000px;}
.y30_c00190{bottom:55.485000px;}
.y2f_c00190{bottom:61.605000px;}
.y2e_c00190{bottom:72.765000px;}
.y2d_c00190{bottom:72.766800px;}
.y2c_c00190{bottom:96.525000px;}
.y2b_c00190{bottom:107.686800px;}
.y2a_c00190{bottom:131.445000px;}
.y29_c00190{bottom:158.085000px;}
.y28_c00190{bottom:224.685000px;}
.y27_c00190{bottom:246.285000px;}
.y26_c00190{bottom:260.325000px;}
.y25_c00190{bottom:307.845000px;}
.y24_c00190{bottom:325.485000px;}
.y23_c00190{bottom:343.485000px;}
.y22_c00190{bottom:357.885000px;}
.y21_c00190{bottom:419.085000px;}
.y20_c00190{bottom:436.725000px;}
.y1e_c00190{bottom:455.085000px;}
.y1d_c00190{bottom:469.125000px;}
.y1f_c00190{bottom:510.525000px;}
.y1c_c00190{bottom:528.165000px;}
.y1b_c00190{bottom:545.445000px;}
.y1a_c00190{bottom:563.805000px;}
.y19_c00190{bottom:578.205000px;}
.y18_c00190{bottom:644.445000px;}
.y17_c00190{bottom:662.085000px;}
.y16_c00190{bottom:680.445000px;}
.y15_c00190{bottom:694.485000px;}
.y14_c00190{bottom:762.165000px;}
.y13_c00190{bottom:779.805000px;}
.y10_c00190{bottom:794.565000px;}
.y12_c00190{bottom:814.365000px;}
.y11_c00190{bottom:832.005000px;}
.yf_c00190{bottom:849.645000px;}
.ye_c00190{bottom:866.925000px;}
.yd_c00190{bottom:881.685000px;}
.yb_c00190{bottom:893.925000px;}
.y8_c00190{bottom:900.764850px;}
.ya_c00190{bottom:904.005000px;}
.yc_c00190{bottom:907.245000px;}
.y9_c00190{bottom:939.285000px;}
.y7_c00190{bottom:972.765000px;}
.y6_c00190{bottom:993.645000px;}
.y5_c00190{bottom:1014.885000px;}
.y4_c00190{bottom:1050.885000px;}
.y3_c00190{bottom:1086.885000px;}
.y2_c00190{bottom:1138.365000px;}
.hb_c00190{height:19.255500px;}
.ha_c00190{height:32.616000px;}
.hc_c00190{height:46.320000px;}
.h9_c00190{height:46.981634px;}
.h6_c00190{height:53.490240px;}
.h8_c00190{height:53.880744px;}
.h7_c00190{height:57.096000px;}
.h4_c00190{height:57.294676px;}
.h5_c00190{height:58.708800px;}
.h3_c00190{height:65.232000px;}
.h2_c00190{height:1201.365000px;}
.h0_c00190{height:1262.835000px;}
.h1_c00190{height:1263.000000px;}
.w8_c00190{width:25.020000px;}
.w4_c00190{width:133.560000px;}
.w5_c00190{width:146.520000px;}
.w6_c00190{width:149.760000px;}
.w3_c00190{width:162.720000px;}
.w7_c00190{width:169.920000px;}
.w2_c00190{width:863.955000px;}
.w0_c00190{width:892.935000px;}
.w1_c00190{width:893.250000px;}
.x0_c00190{left:0.000000px;}
.x8_c00190{left:7.560000px;}
.x1_c00190{left:14.490000px;}
.x11_c00190{left:18.390000px;}
.x14_c00190{left:20.894400px;}
.x12_c00190{left:32.567400px;}
.xf_c00190{left:46.920000px;}
.x10_c00190{left:55.920000px;}
.x13_c00190{left:60.058350px;}
.x5_c00190{left:95.850000px;}
.x15_c00190{left:107.067300px;}
.x2_c00190{left:113.040150px;}
.xa_c00190{left:115.920000px;}
.xe_c00190{left:127.920000px;}
.xc_c00190{left:130.559850px;}
.x6_c00190{left:154.920000px;}
.x3_c00190{left:162.521550px;}
.x4_c00190{left:210.994650px;}
.x7_c00190{left:259.290000px;}
.x9_c00190{left:393.570000px;}
.x16_c00190{left:467.208150px;}
.x17_c00190{left:476.373000px;}
.xb_c00190{left:540.810000px;}
.x18_c00190{left:620.641050px;}
.xd_c00190{left:691.290000px;}
.x19_c00190{left:759.915000px;}
@media print{
.v2_c00190{vertical-align:-21.760000pt;}
.v0_c00190{vertical-align:0.000000pt;}
.v1_c00190{vertical-align:21.760000pt;}
.lsf_c00190{letter-spacing:0.000000pt;}
.ls12_c00190{letter-spacing:0.128000pt;}
.ls1e_c00190{letter-spacing:0.131939pt;}
.ls19_c00190{letter-spacing:0.236160pt;}
.ls1f_c00190{letter-spacing:0.243428pt;}
.ls8_c00190{letter-spacing:0.283093pt;}
.ls1c_c00190{letter-spacing:0.283392pt;}
.ls4_c00190{letter-spacing:0.283627pt;}
.ls21_c00190{letter-spacing:0.330624pt;}
.ls1b_c00190{letter-spacing:0.377856pt;}
.ls22_c00190{letter-spacing:0.389485pt;}
.ls1a_c00190{letter-spacing:0.425088pt;}
.lsc_c00190{letter-spacing:0.446080pt;}
.lsb_c00190{letter-spacing:0.472320pt;}
.ls17_c00190{letter-spacing:0.519552pt;}
.ls20_c00190{letter-spacing:0.535542pt;}
.ls1d_c00190{letter-spacing:0.566784pt;}
.ls18_c00190{letter-spacing:0.614016pt;}
.lsa_c00190{letter-spacing:4.662827pt;}
.ls3_c00190{letter-spacing:4.758080pt;}
.ls6_c00190{letter-spacing:4.758613pt;}
.ls16_c00190{letter-spacing:4.801920pt;}
.ls5_c00190{letter-spacing:4.804480pt;}
.ls9_c00190{letter-spacing:4.805013pt;}
.ls10_c00190{letter-spacing:4.827264pt;}
.ls2_c00190{letter-spacing:4.852267pt;}
.ls11_c00190{letter-spacing:4.854400pt;}
.ls7_c00190{letter-spacing:4.900587pt;}
.ls13_c00190{letter-spacing:4.901632pt;}
.ls1_c00190{letter-spacing:4.927872pt;}
.ls15_c00190{letter-spacing:4.948864pt;}
.ls14_c00190{letter-spacing:5.279488pt;}
.ls0_c00190{letter-spacing:5.311467pt;}
.lsd_c00190{letter-spacing:5.312000pt;}
.lse_c00190{letter-spacing:5.475484pt;}
.ls23_c00190{letter-spacing:8.202624pt;}
.ls24_c00190{letter-spacing:9.582848pt;}
.ws4_c00190{word-spacing:-19.868928pt;}
.ws3_c00190{word-spacing:-19.491072pt;}
.ws1_c00190{word-spacing:-19.443840pt;}
.ws5_c00190{word-spacing:-19.391360pt;}
.ws0_c00190{word-spacing:-18.705024pt;}
.ws8_c00190{word-spacing:-15.281879pt;}
.ws9_c00190{word-spacing:-15.061760pt;}
.ws7_c00190{word-spacing:-15.038451pt;}
.wsa_c00190{word-spacing:-14.920064pt;}
.wsb_c00190{word-spacing:-14.872832pt;}
.ws6_c00190{word-spacing:-14.825600pt;}
.ws2_c00190{word-spacing:-9.024000pt;}
.wsc_c00190{word-spacing:0.000000pt;}
._9_c00190{margin-left:-9.230080pt;}
._7_c00190{margin-left:-7.813120pt;}
._8_c00190{margin-left:-6.799360pt;}
._5_c00190{margin-left:-4.923098pt;}
._3_c00190{margin-left:-1.029632pt;}
._4_c00190{width:0.944640pt;}
._6_c00190{width:3.840000pt;}
._2_c00190{width:5.040853pt;}
._0_c00190{width:6.528000pt;}
._b_c00190{width:8.954112pt;}
._a_c00190{width:9.964544pt;}
._1_c00190{width:13.760000pt;}
.fs5_c00190{font-size:32.000000pt;}
.fs7_c00190{font-size:32.984845pt;}
.fs3_c00190{font-size:49.920000pt;}
.fs4_c00190{font-size:52.480000pt;}
.fs8_c00190{font-size:53.333333pt;}
.fs6_c00190{font-size:54.095146pt;}
.fs2_c00190{font-size:57.600000pt;}
.fs0_c00190{font-size:64.000000pt;}
.fs1_c00190{font-size:65.969690pt;}
.y0_c00190{bottom:0.000000pt;}
.y32_c00190{bottom:2.773467pt;}
.y31_c00190{bottom:30.884000pt;}
.y1_c00190{bottom:48.000000pt;}
.y30_c00190{bottom:49.320000pt;}
.y2f_c00190{bottom:54.760000pt;}
.y2e_c00190{bottom:64.680000pt;}
.y2d_c00190{bottom:64.681600pt;}
.y2c_c00190{bottom:85.800000pt;}
.y2b_c00190{bottom:95.721600pt;}
.y2a_c00190{bottom:116.840000pt;}
.y29_c00190{bottom:140.520000pt;}
.y28_c00190{bottom:199.720000pt;}
.y27_c00190{bottom:218.920000pt;}
.y26_c00190{bottom:231.400000pt;}
.y25_c00190{bottom:273.640000pt;}
.y24_c00190{bottom:289.320000pt;}
.y23_c00190{bottom:305.320000pt;}
.y22_c00190{bottom:318.120000pt;}
.y21_c00190{bottom:372.520000pt;}
.y20_c00190{bottom:388.200000pt;}
.y1e_c00190{bottom:404.520000pt;}
.y1d_c00190{bottom:417.000000pt;}
.y1f_c00190{bottom:453.800000pt;}
.y1c_c00190{bottom:469.480000pt;}
.y1b_c00190{bottom:484.840000pt;}
.y1a_c00190{bottom:501.160000pt;}
.y19_c00190{bottom:513.960000pt;}
.y18_c00190{bottom:572.840000pt;}
.y17_c00190{bottom:588.520000pt;}
.y16_c00190{bottom:604.840000pt;}
.y15_c00190{bottom:617.320000pt;}
.y14_c00190{bottom:677.480000pt;}
.y13_c00190{bottom:693.160000pt;}
.y10_c00190{bottom:706.280000pt;}
.y12_c00190{bottom:723.880000pt;}
.y11_c00190{bottom:739.560000pt;}
.yf_c00190{bottom:755.240000pt;}
.ye_c00190{bottom:770.600000pt;}
.yd_c00190{bottom:783.720000pt;}
.yb_c00190{bottom:794.600000pt;}
.y8_c00190{bottom:800.679867pt;}
.ya_c00190{bottom:803.560000pt;}
.yc_c00190{bottom:806.440000pt;}
.y9_c00190{bottom:834.920000pt;}
.y7_c00190{bottom:864.680000pt;}
.y6_c00190{bottom:883.240000pt;}
.y5_c00190{bottom:902.120000pt;}
.y4_c00190{bottom:934.120000pt;}
.y3_c00190{bottom:966.120000pt;}
.y2_c00190{bottom:1011.880000pt;}
.hb_c00190{height:17.116000pt;}
.ha_c00190{height:28.992000pt;}
.hc_c00190{height:41.173333pt;}
.h9_c00190{height:41.761453pt;}
.h6_c00190{height:47.546880pt;}
.h8_c00190{height:47.893995pt;}
.h7_c00190{height:50.752000pt;}
.h4_c00190{height:50.928601pt;}
.h5_c00190{height:52.185600pt;}
.h3_c00190{height:57.984000pt;}
.h2_c00190{height:1067.880000pt;}
.h0_c00190{height:1122.520000pt;}
.h1_c00190{height:1122.666667pt;}
.w8_c00190{width:22.240000pt;}
.w4_c00190{width:118.720000pt;}
.w5_c00190{width:130.240000pt;}
.w6_c00190{width:133.120000pt;}
.w3_c00190{width:144.640000pt;}
.w7_c00190{width:151.040000pt;}
.w2_c00190{width:767.960000pt;}
.w0_c00190{width:793.720000pt;}
.w1_c00190{width:794.000000pt;}
.x0_c00190{left:0.000000pt;}
.x8_c00190{left:6.720000pt;}
.x1_c00190{left:12.880000pt;}
.x11_c00190{left:16.346667pt;}
.x14_c00190{left:18.572800pt;}
.x12_c00190{left:28.948800pt;}
.xf_c00190{left:41.706667pt;}
.x10_c00190{left:49.706667pt;}
.x13_c00190{left:53.385200pt;}
.x5_c00190{left:85.200000pt;}
.x15_c00190{left:95.170933pt;}
.x2_c00190{left:100.480133pt;}
.xa_c00190{left:103.040000pt;}
.xe_c00190{left:113.706667pt;}
.xc_c00190{left:116.053200pt;}
.x6_c00190{left:137.706667pt;}
.x3_c00190{left:144.463600pt;}
.x4_c00190{left:187.550800pt;}
.x7_c00190{left:230.480000pt;}
.x9_c00190{left:349.840000pt;}
.x16_c00190{left:415.296133pt;}
.x17_c00190{left:423.442667pt;}
.xb_c00190{left:480.720000pt;}
.x18_c00190{left:551.680933pt;}
.xd_c00190{left:614.480000pt;}
.x19_c00190{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f0e2e1aed888cb48dd19ac4.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.134000;font-style:normal;font-weight:normal;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_302e907e7dad14957deec3de.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;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:ff3_c00191;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00191;src:url('chunks/assets/font_d4e36dfd5df15b9dd88343a3.woff2')format("woff");}.ff6_c00191{font-family:ff6_c00191;line-height:0.787000;font-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_c00191{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00191{vertical-align:-24.480000px;}
.v0_c00191{vertical-align:0.000000px;}
.v1_c00191{vertical-align:30.240000px;}
.ls6_c00191{letter-spacing:-0.179568px;}
.ls5_c00191{letter-spacing:0.000000px;}
.ls0_c00191{letter-spacing:0.005400px;}
.lse_c00191{letter-spacing:0.144000px;}
.lsf_c00191{letter-spacing:0.265680px;}
.ls10_c00191{letter-spacing:0.766799px;}
.ls7_c00191{letter-spacing:0.777600px;}
.lsb_c00191{letter-spacing:1.778400px;}
.lsc_c00191{letter-spacing:5.227200px;}
.lsd_c00191{letter-spacing:5.335200px;}
.ls8_c00191{letter-spacing:5.522400px;}
.ls2_c00191{letter-spacing:5.976000px;}
.ls3_c00191{letter-spacing:5.978400px;}
.ls4_c00191{letter-spacing:6.159920px;}
.ls9_c00191{letter-spacing:18.655200px;}
.lsa_c00191{letter-spacing:19.598400px;}
.ls1_c00191{letter-spacing:55.008000px;}
.sc__c00191{text-shadow:none;}
.sc1_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00191{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc1_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00191{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00191{word-spacing:-20.947680px;}
.ws3_c00191{word-spacing:-17.685056px;}
.ws0_c00191{word-spacing:-11.429712px;}
.ws2_c00191{word-spacing:-10.152000px;}
.ws4_c00191{word-spacing:0.000000px;}
._7_c00191{margin-left:-18.662400px;}
._5_c00191{margin-left:-5.500800px;}
._8_c00191{margin-left:-1.756800px;}
._3_c00191{width:1.584000px;}
._9_c00191{width:2.592000px;}
._4_c00191{width:4.176000px;}
._0_c00191{width:5.328000px;}
._2_c00191{width:6.552000px;}
._1_c00191{width:16.128000px;}
._6_c00191{width:18.648000px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs4_c00191{font-size:36.000000px;}
.fs2_c00191{font-size:41.760000px;}
.fs3_c00191{font-size:56.160000px;}
.fs5_c00191{font-size:59.040000px;}
.fs7_c00191{font-size:60.000000px;}
.fs6_c00191{font-size:60.857039px;}
.fs0_c00191{font-size:72.000000px;}
.fs1_c00191{font-size:74.215901px;}
.y0_c00191{bottom:0.000000px;}
.y1e_c00191{bottom:3.120150px;}
.y1d_c00191{bottom:34.744500px;}
.y1_c00191{bottom:54.000000px;}
.y1c_c00191{bottom:55.485000px;}
.y1b_c00191{bottom:61.605000px;}
.y1a_c00191{bottom:78.885000px;}
.y19_c00191{bottom:105.525000px;}
.y18_c00191{bottom:553.365000px;}
.y17_c00191{bottom:589.365000px;}
.y16_c00191{bottom:625.365000px;}
.y15_c00191{bottom:661.365000px;}
.y14_c00191{bottom:697.365000px;}
.y13_c00191{bottom:718.605000px;}
.y12_c00191{bottom:739.485000px;}
.y11_c00191{bottom:760.365000px;}
.y10_c00191{bottom:781.605000px;}
.yf_c00191{bottom:803.205000px;}
.ye_c00191{bottom:824.085000px;}
.yd_c00191{bottom:844.965000px;}
.yc_c00191{bottom:865.845000px;}
.yb_c00191{bottom:887.085000px;}
.ya_c00191{bottom:907.965000px;}
.y9_c00191{bottom:928.845000px;}
.y8_c00191{bottom:950.085000px;}
.y7_c00191{bottom:986.085000px;}
.y6_c00191{bottom:1006.965000px;}
.y5_c00191{bottom:1027.845000px;}
.y4_c00191{bottom:1063.845000px;}
.y3_c00191{bottom:1085.085000px;}
.y2_c00191{bottom:1138.365000px;}
.h9_c00191{height:19.255500px;}
.h6_c00191{height:32.616000px;}
.ha_c00191{height:46.320000px;}
.h7_c00191{height:46.981634px;}
.h8_c00191{height:53.490240px;}
.h4_c00191{height:57.294676px;}
.h3_c00191{height:65.232000px;}
.h5_c00191{height:68.074560px;}
.h2_c00191{height:1201.365000px;}
.h0_c00191{height:1262.835000px;}
.h1_c00191{height:1263.000000px;}
.w3_c00191{width:25.020000px;}
.w2_c00191{width:863.955000px;}
.w0_c00191{width:892.935000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:14.490000px;}
.x2_c00191{left:113.040150px;}
.x1f_c00191{left:127.217700px;}
.x5_c00191{left:140.041650px;}
.x3_c00191{left:162.521550px;}
.x8_c00191{left:167.046600px;}
.x20_c00191{left:170.566800px;}
.x4_c00191{left:210.994650px;}
.x9_c00191{left:242.026950px;}
.x15_c00191{left:252.832350px;}
.xa_c00191{left:255.022650px;}
.xb_c00191{left:288.034050px;}
.xd_c00191{left:337.047750px;}
.xc_c00191{left:348.027150px;}
.x1a_c00191{left:349.894800px;}
.x16_c00191{left:357.737850px;}
.xf_c00191{left:377.352900px;}
.x6_c00191{left:383.233950px;}
.x1c_c00191{left:394.222350px;}
.xe_c00191{left:397.022850px;}
.x18_c00191{left:432.013500px;}
.x10_c00191{left:435.348300px;}
.x11_c00191{left:446.736750px;}
.x7_c00191{left:448.602600px;}
.x1b_c00191{left:474.783300px;}
.x1d_c00191{left:485.564550px;}
.x19_c00191{left:495.012750px;}
.x13_c00191{left:547.416450px;}
.x12_c00191{left:573.498000px;}
.x1e_c00191{left:612.179400px;}
.x14_c00191{left:680.746200px;}
.x17_c00191{left:690.397050px;}
.x21_c00191{left:759.915000px;}
@media print{
.v2_c00191{vertical-align:-21.760000pt;}
.v0_c00191{vertical-align:0.000000pt;}
.v1_c00191{vertical-align:26.880000pt;}
.ls6_c00191{letter-spacing:-0.159616pt;}
.ls5_c00191{letter-spacing:0.000000pt;}
.ls0_c00191{letter-spacing:0.004800pt;}
.lse_c00191{letter-spacing:0.128000pt;}
.lsf_c00191{letter-spacing:0.236160pt;}
.ls10_c00191{letter-spacing:0.681599pt;}
.ls7_c00191{letter-spacing:0.691200pt;}
.lsb_c00191{letter-spacing:1.580800pt;}
.lsc_c00191{letter-spacing:4.646400pt;}
.lsd_c00191{letter-spacing:4.742400pt;}
.ls8_c00191{letter-spacing:4.908800pt;}
.ls2_c00191{letter-spacing:5.312000pt;}
.ls3_c00191{letter-spacing:5.314133pt;}
.ls4_c00191{letter-spacing:5.475484pt;}
.ls9_c00191{letter-spacing:16.582400pt;}
.lsa_c00191{letter-spacing:17.420800pt;}
.ls1_c00191{letter-spacing:48.896000pt;}
.ws1_c00191{word-spacing:-18.620160pt;}
.ws3_c00191{word-spacing:-15.720049pt;}
.ws0_c00191{word-spacing:-10.159744pt;}
.ws2_c00191{word-spacing:-9.024000pt;}
.ws4_c00191{word-spacing:0.000000pt;}
._7_c00191{margin-left:-16.588800pt;}
._5_c00191{margin-left:-4.889600pt;}
._8_c00191{margin-left:-1.561600pt;}
._3_c00191{width:1.408000pt;}
._9_c00191{width:2.304000pt;}
._4_c00191{width:3.712000pt;}
._0_c00191{width:4.736000pt;}
._2_c00191{width:5.824000pt;}
._1_c00191{width:14.336000pt;}
._6_c00191{width:16.576000pt;}
.fs4_c00191{font-size:32.000000pt;}
.fs2_c00191{font-size:37.120000pt;}
.fs3_c00191{font-size:49.920000pt;}
.fs5_c00191{font-size:52.480000pt;}
.fs7_c00191{font-size:53.333333pt;}
.fs6_c00191{font-size:54.095146pt;}
.fs0_c00191{font-size:64.000000pt;}
.fs1_c00191{font-size:65.969690pt;}
.y0_c00191{bottom:0.000000pt;}
.y1e_c00191{bottom:2.773467pt;}
.y1d_c00191{bottom:30.884000pt;}
.y1_c00191{bottom:48.000000pt;}
.y1c_c00191{bottom:49.320000pt;}
.y1b_c00191{bottom:54.760000pt;}
.y1a_c00191{bottom:70.120000pt;}
.y19_c00191{bottom:93.800000pt;}
.y18_c00191{bottom:491.880000pt;}
.y17_c00191{bottom:523.880000pt;}
.y16_c00191{bottom:555.880000pt;}
.y15_c00191{bottom:587.880000pt;}
.y14_c00191{bottom:619.880000pt;}
.y13_c00191{bottom:638.760000pt;}
.y12_c00191{bottom:657.320000pt;}
.y11_c00191{bottom:675.880000pt;}
.y10_c00191{bottom:694.760000pt;}
.yf_c00191{bottom:713.960000pt;}
.ye_c00191{bottom:732.520000pt;}
.yd_c00191{bottom:751.080000pt;}
.yc_c00191{bottom:769.640000pt;}
.yb_c00191{bottom:788.520000pt;}
.ya_c00191{bottom:807.080000pt;}
.y9_c00191{bottom:825.640000pt;}
.y8_c00191{bottom:844.520000pt;}
.y7_c00191{bottom:876.520000pt;}
.y6_c00191{bottom:895.080000pt;}
.y5_c00191{bottom:913.640000pt;}
.y4_c00191{bottom:945.640000pt;}
.y3_c00191{bottom:964.520000pt;}
.y2_c00191{bottom:1011.880000pt;}
.h9_c00191{height:17.116000pt;}
.h6_c00191{height:28.992000pt;}
.ha_c00191{height:41.173333pt;}
.h7_c00191{height:41.761453pt;}
.h8_c00191{height:47.546880pt;}
.h4_c00191{height:50.928601pt;}
.h3_c00191{height:57.984000pt;}
.h5_c00191{height:60.510720pt;}
.h2_c00191{height:1067.880000pt;}
.h0_c00191{height:1122.520000pt;}
.h1_c00191{height:1122.666667pt;}
.w3_c00191{width:22.240000pt;}
.w2_c00191{width:767.960000pt;}
.w0_c00191{width:793.720000pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:12.880000pt;}
.x2_c00191{left:100.480133pt;}
.x1f_c00191{left:113.082400pt;}
.x5_c00191{left:124.481467pt;}
.x3_c00191{left:144.463600pt;}
.x8_c00191{left:148.485867pt;}
.x20_c00191{left:151.614933pt;}
.x4_c00191{left:187.550800pt;}
.x9_c00191{left:215.135067pt;}
.x15_c00191{left:224.739867pt;}
.xa_c00191{left:226.686800pt;}
.xb_c00191{left:256.030267pt;}
.xd_c00191{left:299.598000pt;}
.xc_c00191{left:309.357467pt;}
.x1a_c00191{left:311.017600pt;}
.x16_c00191{left:317.989200pt;}
.xf_c00191{left:335.424800pt;}
.x6_c00191{left:340.652400pt;}
.x1c_c00191{left:350.419867pt;}
.xe_c00191{left:352.909200pt;}
.x18_c00191{left:384.012000pt;}
.x10_c00191{left:386.976267pt;}
.x11_c00191{left:397.099333pt;}
.x7_c00191{left:398.757867pt;}
.x1b_c00191{left:422.029600pt;}
.x1d_c00191{left:431.612933pt;}
.x19_c00191{left:440.011333pt;}
.x13_c00191{left:486.592400pt;}
.x12_c00191{left:509.776000pt;}
.x1e_c00191{left:544.159467pt;}
.x14_c00191{left:605.107733pt;}
.x17_c00191{left:613.686267pt;}
.x21_c00191{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fcc46be17c452561bdd71a28.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;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_c00192;src:url('chunks/assets/font_ac548e2a621cb3bea86dc668.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:0.787000;font-style:normal;font-weight:normal;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_071f91e631aa89ec15a2c704.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:0.787000;font-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_c00192{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00192{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls3_c00192{letter-spacing:0.000000px;}
.ls5_c00192{letter-spacing:0.202464px;}
.ls0_c00192{letter-spacing:0.239160px;}
.ls4_c00192{letter-spacing:0.399600px;}
.ls6_c00192{letter-spacing:0.538214px;}
.ls1_c00192{letter-spacing:5.976000px;}
.ls2_c00192{letter-spacing:6.159920px;}
.sc__c00192{text-shadow:none;}
.sc1_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00192{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc1_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00192{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00192{word-spacing:-15.805909px;}
.ws1_c00192{word-spacing:-15.211440px;}
.ws2_c00192{word-spacing:0.000000px;}
._1_c00192{margin-left:-1.012320px;}
._0_c00192{width:1.014120px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs2_c00192{font-size:53.280000px;}
.fs3_c00192{font-size:54.919767px;}
.fs4_c00192{font-size:60.000000px;}
.fs0_c00192{font-size:72.000000px;}
.fs1_c00192{font-size:74.215901px;}
.y0_c00192{bottom:0.000000px;}
.y24_c00192{bottom:3.120150px;}
.y20_c00192{bottom:17.640000px;}
.y1f_c00192{bottom:33.480000px;}
.y22_c00192{bottom:34.560000px;}
.y23_c00192{bottom:34.744500px;}
.y1_c00192{bottom:54.000000px;}
.y1d_c00192{bottom:85.725000px;}
.y1c_c00192{bottom:121.725000px;}
.y1b_c00192{bottom:157.725000px;}
.y1a_c00192{bottom:193.725000px;}
.y21_c00192{bottom:211.365000px;}
.y19_c00192{bottom:229.725000px;}
.y18_c00192{bottom:265.725000px;}
.y17_c00192{bottom:301.725000px;}
.y16_c00192{bottom:337.725000px;}
.y15_c00192{bottom:373.725000px;}
.y14_c00192{bottom:409.725000px;}
.y13_c00192{bottom:445.725000px;}
.y12_c00192{bottom:481.725000px;}
.y11_c00192{bottom:517.725000px;}
.y10_c00192{bottom:554.085000px;}
.yf_c00192{bottom:590.085000px;}
.ye_c00192{bottom:626.085000px;}
.yd_c00192{bottom:662.085000px;}
.yc_c00192{bottom:698.085000px;}
.y1e_c00192{bottom:778.365000px;}
.yb_c00192{bottom:797.085000px;}
.ya_c00192{bottom:833.085000px;}
.y9_c00192{bottom:869.085000px;}
.y8_c00192{bottom:905.085000px;}
.y7_c00192{bottom:941.085000px;}
.y6_c00192{bottom:977.085000px;}
.y5_c00192{bottom:1013.085000px;}
.y4_c00192{bottom:1049.085000px;}
.y3_c00192{bottom:1085.085000px;}
.y2_c00192{bottom:1138.365000px;}
.h9_c00192{height:19.255500px;}
.h6_c00192{height:41.132160px;}
.h7_c00192{height:42.398060px;}
.h5_c00192{height:46.080000px;}
.ha_c00192{height:46.320000px;}
.h8_c00192{height:47.160000px;}
.h3_c00192{height:55.584000px;}
.h4_c00192{height:57.294676px;}
.h2_c00192{height:1201.365000px;}
.h0_c00192{height:1262.835000px;}
.h1_c00192{height:1263.000000px;}
.w5_c00192{width:25.020000px;}
.w3_c00192{width:648.720000px;}
.w4_c00192{width:670.320000px;}
.w2_c00192{width:863.955000px;}
.w0_c00192{width:892.935000px;}
.w1_c00192{width:893.250000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:14.490000px;}
.x9_c00192{left:80.397450px;}
.xb_c00192{left:102.434850px;}
.x2_c00192{left:113.040150px;}
.x5_c00192{left:124.290000px;}
.xa_c00192{left:127.530000px;}
.x3_c00192{left:162.521550px;}
.x6_c00192{left:169.272900px;}
.x4_c00192{left:210.994650px;}
.x7_c00192{left:279.579600px;}
.x8_c00192{left:310.331850px;}
.xc_c00192{left:759.915000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls3_c00192{letter-spacing:0.000000pt;}
.ls5_c00192{letter-spacing:0.179968pt;}
.ls0_c00192{letter-spacing:0.212587pt;}
.ls4_c00192{letter-spacing:0.355200pt;}
.ls6_c00192{letter-spacing:0.478412pt;}
.ls1_c00192{letter-spacing:5.312000pt;}
.ls2_c00192{letter-spacing:5.475484pt;}
.ws0_c00192{word-spacing:-14.049697pt;}
.ws1_c00192{word-spacing:-13.521280pt;}
.ws2_c00192{word-spacing:0.000000pt;}
._1_c00192{margin-left:-0.899840pt;}
._0_c00192{width:0.901440pt;}
.fs2_c00192{font-size:47.360000pt;}
.fs3_c00192{font-size:48.817571pt;}
.fs4_c00192{font-size:53.333333pt;}
.fs0_c00192{font-size:64.000000pt;}
.fs1_c00192{font-size:65.969690pt;}
.y0_c00192{bottom:0.000000pt;}
.y24_c00192{bottom:2.773467pt;}
.y20_c00192{bottom:15.680000pt;}
.y1f_c00192{bottom:29.760000pt;}
.y22_c00192{bottom:30.720000pt;}
.y23_c00192{bottom:30.884000pt;}
.y1_c00192{bottom:48.000000pt;}
.y1d_c00192{bottom:76.200000pt;}
.y1c_c00192{bottom:108.200000pt;}
.y1b_c00192{bottom:140.200000pt;}
.y1a_c00192{bottom:172.200000pt;}
.y21_c00192{bottom:187.880000pt;}
.y19_c00192{bottom:204.200000pt;}
.y18_c00192{bottom:236.200000pt;}
.y17_c00192{bottom:268.200000pt;}
.y16_c00192{bottom:300.200000pt;}
.y15_c00192{bottom:332.200000pt;}
.y14_c00192{bottom:364.200000pt;}
.y13_c00192{bottom:396.200000pt;}
.y12_c00192{bottom:428.200000pt;}
.y11_c00192{bottom:460.200000pt;}
.y10_c00192{bottom:492.520000pt;}
.yf_c00192{bottom:524.520000pt;}
.ye_c00192{bottom:556.520000pt;}
.yd_c00192{bottom:588.520000pt;}
.yc_c00192{bottom:620.520000pt;}
.y1e_c00192{bottom:691.880000pt;}
.yb_c00192{bottom:708.520000pt;}
.ya_c00192{bottom:740.520000pt;}
.y9_c00192{bottom:772.520000pt;}
.y8_c00192{bottom:804.520000pt;}
.y7_c00192{bottom:836.520000pt;}
.y6_c00192{bottom:868.520000pt;}
.y5_c00192{bottom:900.520000pt;}
.y4_c00192{bottom:932.520000pt;}
.y3_c00192{bottom:964.520000pt;}
.y2_c00192{bottom:1011.880000pt;}
.h9_c00192{height:17.116000pt;}
.h6_c00192{height:36.561920pt;}
.h7_c00192{height:37.687165pt;}
.h5_c00192{height:40.960000pt;}
.ha_c00192{height:41.173333pt;}
.h8_c00192{height:41.920000pt;}
.h3_c00192{height:49.408000pt;}
.h4_c00192{height:50.928601pt;}
.h2_c00192{height:1067.880000pt;}
.h0_c00192{height:1122.520000pt;}
.h1_c00192{height:1122.666667pt;}
.w5_c00192{width:22.240000pt;}
.w3_c00192{width:576.640000pt;}
.w4_c00192{width:595.840000pt;}
.w2_c00192{width:767.960000pt;}
.w0_c00192{width:793.720000pt;}
.w1_c00192{width:794.000000pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:12.880000pt;}
.x9_c00192{left:71.464400pt;}
.xb_c00192{left:91.053200pt;}
.x2_c00192{left:100.480133pt;}
.x5_c00192{left:110.480000pt;}
.xa_c00192{left:113.360000pt;}
.x3_c00192{left:144.463600pt;}
.x6_c00192{left:150.464800pt;}
.x4_c00192{left:187.550800pt;}
.x7_c00192{left:248.515200pt;}
.x8_c00192{left:275.850533pt;}
.xc_c00192{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2fee1ee7dea4de2f1981b945.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;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_c00193;src:url('chunks/assets/font_6228ce97fde3db9c83a310c7.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:0.787000;font-style:normal;font-weight:normal;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_9dfa439570c32a2671ab6b89.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:0.787000;font-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_c00193{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00193{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls2_c00193{letter-spacing:0.000000px;}
.ls4_c00193{letter-spacing:0.202464px;}
.ls8_c00193{letter-spacing:0.239760px;}
.ls7_c00193{letter-spacing:0.319680px;}
.ls6_c00193{letter-spacing:0.329519px;}
.ls9_c00193{letter-spacing:0.362304px;}
.ls3_c00193{letter-spacing:0.399600px;}
.ls5_c00193{letter-spacing:0.538214px;}
.ls0_c00193{letter-spacing:5.976000px;}
.ls1_c00193{letter-spacing:6.159920px;}
.sc__c00193{text-shadow:none;}
.sc1_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00193{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc1_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00193{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00193{word-spacing:-15.805909px;}
.ws2_c00193{word-spacing:-15.174144px;}
.ws1_c00193{word-spacing:-15.051600px;}
.ws3_c00193{word-spacing:0.000000px;}
._0_c00193{width:1.014120px;}
.fc1_c00193{color:transparent;}
.fc0_c00193{color:rgb(0,0,0);}
.fs2_c00193{font-size:53.280000px;}
.fs3_c00193{font-size:54.919767px;}
.fs4_c00193{font-size:60.000000px;}
.fs0_c00193{font-size:72.000000px;}
.fs1_c00193{font-size:74.215901px;}
.y0_c00193{bottom:0.000000px;}
.y24_c00193{bottom:3.120150px;}
.y20_c00193{bottom:17.280000px;}
.y1f_c00193{bottom:33.120000px;}
.y22_c00193{bottom:34.560000px;}
.y23_c00193{bottom:34.744500px;}
.y1_c00193{bottom:54.000000px;}
.y1d_c00193{bottom:148.725000px;}
.y1c_c00193{bottom:184.725000px;}
.y1e_c00193{bottom:192.645000px;}
.y1b_c00193{bottom:220.725000px;}
.y1a_c00193{bottom:256.725000px;}
.y19_c00193{bottom:292.725000px;}
.y18_c00193{bottom:328.725000px;}
.y17_c00193{bottom:364.725000px;}
.y16_c00193{bottom:400.725000px;}
.y15_c00193{bottom:436.725000px;}
.y14_c00193{bottom:472.725000px;}
.y13_c00193{bottom:509.085000px;}
.y12_c00193{bottom:545.085000px;}
.y11_c00193{bottom:581.085000px;}
.y10_c00193{bottom:617.085000px;}
.yf_c00193{bottom:653.085000px;}
.ye_c00193{bottom:689.085000px;}
.y21_c00193{bottom:724.365000px;}
.yd_c00193{bottom:725.085000px;}
.yc_c00193{bottom:761.085000px;}
.yb_c00193{bottom:797.085000px;}
.ya_c00193{bottom:833.085000px;}
.y9_c00193{bottom:869.085000px;}
.y8_c00193{bottom:905.085000px;}
.y7_c00193{bottom:941.085000px;}
.y6_c00193{bottom:977.085000px;}
.y5_c00193{bottom:1013.085000px;}
.y4_c00193{bottom:1049.085000px;}
.y3_c00193{bottom:1085.085000px;}
.y2_c00193{bottom:1138.365000px;}
.h9_c00193{height:19.255500px;}
.h6_c00193{height:41.132160px;}
.h7_c00193{height:42.398060px;}
.h5_c00193{height:45.720000px;}
.ha_c00193{height:46.320000px;}
.h8_c00193{height:47.160000px;}
.h3_c00193{height:55.584000px;}
.h4_c00193{height:57.294676px;}
.h2_c00193{height:1201.365000px;}
.h0_c00193{height:1262.835000px;}
.h1_c00193{height:1263.000000px;}
.w5_c00193{width:25.020000px;}
.w4_c00193{width:643.320000px;}
.w3_c00193{width:652.320000px;}
.w2_c00193{width:863.955000px;}
.w0_c00193{width:892.935000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x6_c00193{left:8.378100px;}
.x1_c00193{left:14.490000px;}
.xd_c00193{left:88.897500px;}
.x2_c00193{left:113.040150px;}
.x7_c00193{left:118.684800px;}
.x5_c00193{left:124.290000px;}
.xc_c00193{left:127.530000px;}
.x8_c00193{left:149.437050px;}
.x3_c00193{left:162.521550px;}
.x4_c00193{left:210.994650px;}
.xb_c00193{left:284.028750px;}
.x9_c00193{left:296.476200px;}
.xa_c00193{left:306.222900px;}
.xe_c00193{left:759.915000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls2_c00193{letter-spacing:0.000000pt;}
.ls4_c00193{letter-spacing:0.179968pt;}
.ls8_c00193{letter-spacing:0.213120pt;}
.ls7_c00193{letter-spacing:0.284160pt;}
.ls6_c00193{letter-spacing:0.292905pt;}
.ls9_c00193{letter-spacing:0.322048pt;}
.ls3_c00193{letter-spacing:0.355200pt;}
.ls5_c00193{letter-spacing:0.478412pt;}
.ls0_c00193{letter-spacing:5.312000pt;}
.ls1_c00193{letter-spacing:5.475484pt;}
.ws0_c00193{word-spacing:-14.049697pt;}
.ws2_c00193{word-spacing:-13.488128pt;}
.ws1_c00193{word-spacing:-13.379200pt;}
.ws3_c00193{word-spacing:0.000000pt;}
._0_c00193{width:0.901440pt;}
.fs2_c00193{font-size:47.360000pt;}
.fs3_c00193{font-size:48.817571pt;}
.fs4_c00193{font-size:53.333333pt;}
.fs0_c00193{font-size:64.000000pt;}
.fs1_c00193{font-size:65.969690pt;}
.y0_c00193{bottom:0.000000pt;}
.y24_c00193{bottom:2.773467pt;}
.y20_c00193{bottom:15.360000pt;}
.y1f_c00193{bottom:29.440000pt;}
.y22_c00193{bottom:30.720000pt;}
.y23_c00193{bottom:30.884000pt;}
.y1_c00193{bottom:48.000000pt;}
.y1d_c00193{bottom:132.200000pt;}
.y1c_c00193{bottom:164.200000pt;}
.y1e_c00193{bottom:171.240000pt;}
.y1b_c00193{bottom:196.200000pt;}
.y1a_c00193{bottom:228.200000pt;}
.y19_c00193{bottom:260.200000pt;}
.y18_c00193{bottom:292.200000pt;}
.y17_c00193{bottom:324.200000pt;}
.y16_c00193{bottom:356.200000pt;}
.y15_c00193{bottom:388.200000pt;}
.y14_c00193{bottom:420.200000pt;}
.y13_c00193{bottom:452.520000pt;}
.y12_c00193{bottom:484.520000pt;}
.y11_c00193{bottom:516.520000pt;}
.y10_c00193{bottom:548.520000pt;}
.yf_c00193{bottom:580.520000pt;}
.ye_c00193{bottom:612.520000pt;}
.y21_c00193{bottom:643.880000pt;}
.yd_c00193{bottom:644.520000pt;}
.yc_c00193{bottom:676.520000pt;}
.yb_c00193{bottom:708.520000pt;}
.ya_c00193{bottom:740.520000pt;}
.y9_c00193{bottom:772.520000pt;}
.y8_c00193{bottom:804.520000pt;}
.y7_c00193{bottom:836.520000pt;}
.y6_c00193{bottom:868.520000pt;}
.y5_c00193{bottom:900.520000pt;}
.y4_c00193{bottom:932.520000pt;}
.y3_c00193{bottom:964.520000pt;}
.y2_c00193{bottom:1011.880000pt;}
.h9_c00193{height:17.116000pt;}
.h6_c00193{height:36.561920pt;}
.h7_c00193{height:37.687165pt;}
.h5_c00193{height:40.640000pt;}
.ha_c00193{height:41.173333pt;}
.h8_c00193{height:41.920000pt;}
.h3_c00193{height:49.408000pt;}
.h4_c00193{height:50.928601pt;}
.h2_c00193{height:1067.880000pt;}
.h0_c00193{height:1122.520000pt;}
.h1_c00193{height:1122.666667pt;}
.w5_c00193{width:22.240000pt;}
.w4_c00193{width:571.840000pt;}
.w3_c00193{width:579.840000pt;}
.w2_c00193{width:767.960000pt;}
.w0_c00193{width:793.720000pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x6_c00193{left:7.447200pt;}
.x1_c00193{left:12.880000pt;}
.xd_c00193{left:79.020000pt;}
.x2_c00193{left:100.480133pt;}
.x7_c00193{left:105.497600pt;}
.x5_c00193{left:110.480000pt;}
.xc_c00193{left:113.360000pt;}
.x8_c00193{left:132.832933pt;}
.x3_c00193{left:144.463600pt;}
.x4_c00193{left:187.550800pt;}
.xb_c00193{left:252.470000pt;}
.x9_c00193{left:263.534400pt;}
.xa_c00193{left:272.198133pt;}
.xe_c00193{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3cd57879a3e550eea0e7c84d.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_dbfb738ce5bd5d52003f8c1b.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;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:ff3_c00194;src:url('chunks/assets/font_b131612d9fd077b47c94937a.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_da9fda8f10ee96e8040dfaaa.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:0.787000;font-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_c00194{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00194{vertical-align:-30.240000px;}
.v3_c00194{vertical-align:-24.480000px;}
.v0_c00194{vertical-align:0.000000px;}
.v1_c00194{vertical-align:30.240000px;}
.lsc_c00194{letter-spacing:0.000000px;}
.ls4_c00194{letter-spacing:0.184440px;}
.ls11_c00194{letter-spacing:0.265680px;}
.ls7_c00194{letter-spacing:0.295200px;}
.ls12_c00194{letter-spacing:0.318816px;}
.ls13_c00194{letter-spacing:0.328628px;}
.ls2_c00194{letter-spacing:0.338640px;}
.ls9_c00194{letter-spacing:0.438171px;}
.ls8_c00194{letter-spacing:0.501840px;}
.lsa_c00194{letter-spacing:0.531360px;}
.ls14_c00194{letter-spacing:0.690768px;}
.ls6_c00194{letter-spacing:0.712027px;}
.ls15_c00194{letter-spacing:0.766799px;}
.ls17_c00194{letter-spacing:0.797040px;}
.ls18_c00194{letter-spacing:3.489264px;}
.ls16_c00194{letter-spacing:3.796272px;}
.lsf_c00194{letter-spacing:5.245344px;}
.ls1_c00194{letter-spacing:5.313840px;}
.lsd_c00194{letter-spacing:5.354677px;}
.ls10_c00194{letter-spacing:5.430672px;}
.lse_c00194{letter-spacing:5.499398px;}
.ls5_c00194{letter-spacing:5.973600px;}
.lsb_c00194{letter-spacing:5.976000px;}
.ls3_c00194{letter-spacing:5.991000px;}
.ls0_c00194{letter-spacing:6.159920px;}
.ls19_c00194{letter-spacing:14.571072px;}
.sc__c00194{text-shadow:none;}
.sc1_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00194{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc1_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00194{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00194{word-spacing:-21.447653px;}
.ws3_c00194{word-spacing:-21.043152px;}
.ws2_c00194{word-spacing:-20.016000px;}
.ws7_c00194{word-spacing:-17.685056px;}
.ws5_c00194{word-spacing:-17.630284px;}
.ws8_c00194{word-spacing:-17.356428px;}
.ws6_c00194{word-spacing:-17.246885px;}
.ws9_c00194{word-spacing:-16.944480px;}
.ws1_c00194{word-spacing:-11.609280px;}
.ws4_c00194{word-spacing:-10.008000px;}
.wsa_c00194{word-spacing:0.000000px;}
._d_c00194{margin-left:-15.055200px;}
._c_c00194{margin-left:-13.992480px;}
._a_c00194{margin-left:-4.368960px;}
._9_c00194{margin-left:-3.188160px;}
._b_c00194{margin-left:-2.185920px;}
._8_c00194{margin-left:-1.179360px;}
._7_c00194{width:1.584000px;}
._4_c00194{width:2.664000px;}
._5_c00194{width:4.104000px;}
._0_c00194{width:6.422880px;}
._3_c00194{width:8.424000px;}
._1_c00194{width:9.792000px;}
._2_c00194{width:16.344000px;}
._6_c00194{width:17.496000px;}
.fc0_c00194{color:rgb(0,0,0);}
.fs5_c00194{font-size:36.000000px;}
.fs4_c00194{font-size:41.760000px;}
.fs3_c00194{font-size:56.160000px;}
.fs2_c00194{font-size:57.888403px;}
.fs6_c00194{font-size:59.040000px;}
.fs8_c00194{font-size:60.000000px;}
.fs7_c00194{font-size:60.857039px;}
.fs0_c00194{font-size:72.000000px;}
.fs1_c00194{font-size:74.215901px;}
.y0_c00194{bottom:0.000000px;}
.y2e_c00194{bottom:3.120150px;}
.y2d_c00194{bottom:34.744500px;}
.y1_c00194{bottom:54.000000px;}
.y2c_c00194{bottom:55.481040px;}
.y2b_c00194{bottom:78.885000px;}
.y2a_c00194{bottom:90.401040px;}
.y29_c00194{bottom:107.685000px;}
.y28_c00194{bottom:107.686800px;}
.y27_c00194{bottom:131.445000px;}
.y26_c00194{bottom:149.085000px;}
.y25_c00194{bottom:160.245000px;}
.y24_c00194{bottom:166.365000px;}
.y23_c00194{bottom:177.885000px;}
.y22_c00194{bottom:184.005000px;}
.y21_c00194{bottom:195.525000px;}
.y20_c00194{bottom:201.645000px;}
.y1f_c00194{bottom:228.285000px;}
.y1e_c00194{bottom:263.925000px;}
.y1d_c00194{bottom:299.925000px;}
.y1c_c00194{bottom:335.925000px;}
.y1b_c00194{bottom:371.925000px;}
.y1a_c00194{bottom:407.925000px;}
.y19_c00194{bottom:443.925000px;}
.y18_c00194{bottom:479.925000px;}
.y17_c00194{bottom:515.925000px;}
.y16_c00194{bottom:551.925000px;}
.y15_c00194{bottom:587.925000px;}
.y14_c00194{bottom:623.925000px;}
.y12_c00194{bottom:659.925000px;}
.y13_c00194{bottom:667.485000px;}
.y11_c00194{bottom:681.885000px;}
.y10_c00194{bottom:717.525000px;}
.yf_c00194{bottom:738.405000px;}
.ye_c00194{bottom:759.285000px;}
.yd_c00194{bottom:780.525000px;}
.yc_c00194{bottom:801.405000px;}
.yb_c00194{bottom:822.285000px;}
.ya_c00194{bottom:843.525000px;}
.y9_c00194{bottom:879.525000px;}
.y8_c00194{bottom:915.525000px;}
.y7_c00194{bottom:953.685000px;}
.y6_c00194{bottom:991.845000px;}
.y5_c00194{bottom:1027.845000px;}
.y4_c00194{bottom:1049.085000px;}
.y3_c00194{bottom:1085.085000px;}
.y2_c00194{bottom:1138.365000px;}
.hb_c00194{height:19.255500px;}
.h8_c00194{height:32.616000px;}
.h7_c00194{height:37.834560px;}
.hc_c00194{height:46.320000px;}
.h9_c00194{height:46.981634px;}
.ha_c00194{height:53.490240px;}
.h4_c00194{height:57.294676px;}
.h3_c00194{height:65.232000px;}
.h6_c00194{height:67.239607px;}
.h5_c00194{height:68.074560px;}
.h2_c00194{height:1201.365000px;}
.h0_c00194{height:1262.835000px;}
.h1_c00194{height:1263.000000px;}
.w3_c00194{width:25.020000px;}
.w2_c00194{width:863.955000px;}
.w0_c00194{width:892.935000px;}
.w1_c00194{width:893.250000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:14.490000px;}
.x2_c00194{left:113.040150px;}
.xc_c00194{left:123.120000px;}
.x10_c00194{left:153.035550px;}
.xf_c00194{left:155.033550px;}
.x3_c00194{left:162.521550px;}
.x17_c00194{left:165.562800px;}
.x5_c00194{left:169.159050px;}
.x7_c00194{left:172.024950px;}
.x11_c00194{left:199.746450px;}
.x4_c00194{left:216.466950px;}
.x8_c00194{left:222.009900px;}
.x12_c00194{left:234.710850px;}
.xd_c00194{left:319.047000px;}
.xe_c00194{left:348.044250px;}
.x18_c00194{left:354.603450px;}
.x19_c00194{left:370.427850px;}
.x6_c00194{left:410.223300px;}
.x13_c00194{left:417.269100px;}
.x14_c00194{left:454.752750px;}
.x15_c00194{left:463.092000px;}
.x16_c00194{left:483.086100px;}
.x9_c00194{left:518.578800px;}
.xa_c00194{left:581.577750px;}
.xb_c00194{left:742.398150px;}
.x1a_c00194{left:759.915000px;}
@media print{
.v2_c00194{vertical-align:-26.880000pt;}
.v3_c00194{vertical-align:-21.760000pt;}
.v0_c00194{vertical-align:0.000000pt;}
.v1_c00194{vertical-align:26.880000pt;}
.lsc_c00194{letter-spacing:0.000000pt;}
.ls4_c00194{letter-spacing:0.163947pt;}
.ls11_c00194{letter-spacing:0.236160pt;}
.ls7_c00194{letter-spacing:0.262400pt;}
.ls12_c00194{letter-spacing:0.283392pt;}
.ls13_c00194{letter-spacing:0.292114pt;}
.ls2_c00194{letter-spacing:0.301013pt;}
.ls9_c00194{letter-spacing:0.389485pt;}
.ls8_c00194{letter-spacing:0.446080pt;}
.lsa_c00194{letter-spacing:0.472320pt;}
.ls14_c00194{letter-spacing:0.614016pt;}
.ls6_c00194{letter-spacing:0.632913pt;}
.ls15_c00194{letter-spacing:0.681599pt;}
.ls17_c00194{letter-spacing:0.708480pt;}
.ls18_c00194{letter-spacing:3.101568pt;}
.ls16_c00194{letter-spacing:3.374464pt;}
.lsf_c00194{letter-spacing:4.662528pt;}
.ls1_c00194{letter-spacing:4.723413pt;}
.lsd_c00194{letter-spacing:4.759713pt;}
.ls10_c00194{letter-spacing:4.827264pt;}
.lse_c00194{letter-spacing:4.888354pt;}
.ls5_c00194{letter-spacing:5.309867pt;}
.lsb_c00194{letter-spacing:5.312000pt;}
.ls3_c00194{letter-spacing:5.325333pt;}
.ls0_c00194{letter-spacing:5.475484pt;}
.ls19_c00194{letter-spacing:12.952064pt;}
.ws0_c00194{word-spacing:-19.064581pt;}
.ws3_c00194{word-spacing:-18.705024pt;}
.ws2_c00194{word-spacing:-17.792000pt;}
.ws7_c00194{word-spacing:-15.720049pt;}
.ws5_c00194{word-spacing:-15.671364pt;}
.ws8_c00194{word-spacing:-15.427936pt;}
.ws6_c00194{word-spacing:-15.330564pt;}
.ws9_c00194{word-spacing:-15.061760pt;}
.ws1_c00194{word-spacing:-10.319360pt;}
.ws4_c00194{word-spacing:-8.896000pt;}
.wsa_c00194{word-spacing:0.000000pt;}
._d_c00194{margin-left:-13.382400pt;}
._c_c00194{margin-left:-12.437760pt;}
._a_c00194{margin-left:-3.883520pt;}
._9_c00194{margin-left:-2.833920pt;}
._b_c00194{margin-left:-1.943040pt;}
._8_c00194{margin-left:-1.048320pt;}
._7_c00194{width:1.408000pt;}
._4_c00194{width:2.368000pt;}
._5_c00194{width:3.648000pt;}
._0_c00194{width:5.709227pt;}
._3_c00194{width:7.488000pt;}
._1_c00194{width:8.704000pt;}
._2_c00194{width:14.528000pt;}
._6_c00194{width:15.552000pt;}
.fs5_c00194{font-size:32.000000pt;}
.fs4_c00194{font-size:37.120000pt;}
.fs3_c00194{font-size:49.920000pt;}
.fs2_c00194{font-size:51.456358pt;}
.fs6_c00194{font-size:52.480000pt;}
.fs8_c00194{font-size:53.333333pt;}
.fs7_c00194{font-size:54.095146pt;}
.fs0_c00194{font-size:64.000000pt;}
.fs1_c00194{font-size:65.969690pt;}
.y0_c00194{bottom:0.000000pt;}
.y2e_c00194{bottom:2.773467pt;}
.y2d_c00194{bottom:30.884000pt;}
.y1_c00194{bottom:48.000000pt;}
.y2c_c00194{bottom:49.316480pt;}
.y2b_c00194{bottom:70.120000pt;}
.y2a_c00194{bottom:80.356480pt;}
.y29_c00194{bottom:95.720000pt;}
.y28_c00194{bottom:95.721600pt;}
.y27_c00194{bottom:116.840000pt;}
.y26_c00194{bottom:132.520000pt;}
.y25_c00194{bottom:142.440000pt;}
.y24_c00194{bottom:147.880000pt;}
.y23_c00194{bottom:158.120000pt;}
.y22_c00194{bottom:163.560000pt;}
.y21_c00194{bottom:173.800000pt;}
.y20_c00194{bottom:179.240000pt;}
.y1f_c00194{bottom:202.920000pt;}
.y1e_c00194{bottom:234.600000pt;}
.y1d_c00194{bottom:266.600000pt;}
.y1c_c00194{bottom:298.600000pt;}
.y1b_c00194{bottom:330.600000pt;}
.y1a_c00194{bottom:362.600000pt;}
.y19_c00194{bottom:394.600000pt;}
.y18_c00194{bottom:426.600000pt;}
.y17_c00194{bottom:458.600000pt;}
.y16_c00194{bottom:490.600000pt;}
.y15_c00194{bottom:522.600000pt;}
.y14_c00194{bottom:554.600000pt;}
.y12_c00194{bottom:586.600000pt;}
.y13_c00194{bottom:593.320000pt;}
.y11_c00194{bottom:606.120000pt;}
.y10_c00194{bottom:637.800000pt;}
.yf_c00194{bottom:656.360000pt;}
.ye_c00194{bottom:674.920000pt;}
.yd_c00194{bottom:693.800000pt;}
.yc_c00194{bottom:712.360000pt;}
.yb_c00194{bottom:730.920000pt;}
.ya_c00194{bottom:749.800000pt;}
.y9_c00194{bottom:781.800000pt;}
.y8_c00194{bottom:813.800000pt;}
.y7_c00194{bottom:847.720000pt;}
.y6_c00194{bottom:881.640000pt;}
.y5_c00194{bottom:913.640000pt;}
.y4_c00194{bottom:932.520000pt;}
.y3_c00194{bottom:964.520000pt;}
.y2_c00194{bottom:1011.880000pt;}
.hb_c00194{height:17.116000pt;}
.h8_c00194{height:28.992000pt;}
.h7_c00194{height:33.630720pt;}
.hc_c00194{height:41.173333pt;}
.h9_c00194{height:41.761453pt;}
.ha_c00194{height:47.546880pt;}
.h4_c00194{height:50.928601pt;}
.h3_c00194{height:57.984000pt;}
.h6_c00194{height:59.768539pt;}
.h5_c00194{height:60.510720pt;}
.h2_c00194{height:1067.880000pt;}
.h0_c00194{height:1122.520000pt;}
.h1_c00194{height:1122.666667pt;}
.w3_c00194{width:22.240000pt;}
.w2_c00194{width:767.960000pt;}
.w0_c00194{width:793.720000pt;}
.w1_c00194{width:794.000000pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:12.880000pt;}
.x2_c00194{left:100.480133pt;}
.xc_c00194{left:109.440000pt;}
.x10_c00194{left:136.031600pt;}
.xf_c00194{left:137.807600pt;}
.x3_c00194{left:144.463600pt;}
.x17_c00194{left:147.166933pt;}
.x5_c00194{left:150.363600pt;}
.x7_c00194{left:152.911067pt;}
.x11_c00194{left:177.552400pt;}
.x4_c00194{left:192.415067pt;}
.x8_c00194{left:197.342133pt;}
.x12_c00194{left:208.631867pt;}
.xd_c00194{left:283.597333pt;}
.xe_c00194{left:309.372667pt;}
.x18_c00194{left:315.203067pt;}
.x19_c00194{left:329.269200pt;}
.x6_c00194{left:364.642933pt;}
.x13_c00194{left:370.905867pt;}
.x14_c00194{left:404.224667pt;}
.x15_c00194{left:411.637333pt;}
.x16_c00194{left:429.409867pt;}
.x9_c00194{left:460.958933pt;}
.xa_c00194{left:516.958000pt;}
.xb_c00194{left:659.909467pt;}
.x1a_c00194{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_18a12450455726d62579ecee.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.134000;font-style:normal;font-weight:normal;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_9e560b28f6ce7df9dfdd6b29.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;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:ff3_c00195;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_4e59d6bcb5ef96bec7087ffe.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00195;src:url('chunks/assets/font_bac2b2f1548afb60d1104770.woff2')format("woff");}.ff6_c00195{font-family:ff6_c00195;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00195;src:url('chunks/assets/font_cd3e59e764e8cce53ea501a0.woff2')format("woff");}.ff7_c00195{font-family:ff7_c00195;line-height:0.787000;font-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_c00195{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00195{vertical-align:-24.480000px;}
.v0_c00195{vertical-align:0.000000px;}
.v2_c00195{vertical-align:27.360000px;}
.v1_c00195{vertical-align:30.240000px;}
.ls19_c00195{letter-spacing:-0.179568px;}
.ls27_c00195{letter-spacing:-0.015552px;}
.ls18_c00195{letter-spacing:0.000000px;}
.ls31_c00195{letter-spacing:0.144000px;}
.ls15_c00195{letter-spacing:0.236160px;}
.ls2a_c00195{letter-spacing:0.265680px;}
.ls1_c00195{letter-spacing:0.273240px;}
.ls11_c00195{letter-spacing:0.295200px;}
.ls33_c00195{letter-spacing:0.318816px;}
.ls30_c00195{letter-spacing:0.328628px;}
.ls1c_c00195{letter-spacing:0.330480px;}
.ls24_c00195{letter-spacing:0.336960px;}
.ls16_c00195{letter-spacing:0.354240px;}
.ls35_c00195{letter-spacing:0.371952px;}
.ls0_c00195{letter-spacing:0.372240px;}
.ls6_c00195{letter-spacing:0.399000px;}
.ls21_c00195{letter-spacing:0.401760px;}
.ls1a_c00195{letter-spacing:0.407445px;}
.ls2d_c00195{letter-spacing:0.478224px;}
.ls12_c00195{letter-spacing:0.531360px;}
.ls2b_c00195{letter-spacing:0.584496px;}
.lsb_c00195{letter-spacing:0.635040px;}
.ls10_c00195{letter-spacing:0.654480px;}
.ls3_c00195{letter-spacing:0.660840px;}
.lsf_c00195{letter-spacing:0.667440px;}
.ls2e_c00195{letter-spacing:0.690768px;}
.ls28_c00195{letter-spacing:0.696672px;}
.ls14_c00195{letter-spacing:0.712027px;}
.ls37_c00195{letter-spacing:0.726192px;}
.ls23_c00195{letter-spacing:0.732240px;}
.ls2f_c00195{letter-spacing:0.743904px;}
.ls34_c00195{letter-spacing:0.766799px;}
.ls13_c00195{letter-spacing:0.821570px;}
.ls22_c00195{letter-spacing:0.868320px;}
.lsd_c00195{letter-spacing:0.888364px;}
.lse_c00195{letter-spacing:0.895044px;}
.ls2c_c00195{letter-spacing:0.962352px;}
.ls1f_c00195{letter-spacing:0.997920px;}
.ls1d_c00195{letter-spacing:1.198800px;}
.ls29_c00195{letter-spacing:2.686320px;}
.ls32_c00195{letter-spacing:2.869344px;}
.ls26_c00195{letter-spacing:5.034960px;}
.ls25_c00195{letter-spacing:5.189918px;}
.lsc_c00195{letter-spacing:5.811000px;}
.ls1e_c00195{letter-spacing:5.812560px;}
.lsa_c00195{letter-spacing:5.877000px;}
.ls8_c00195{letter-spacing:5.944200px;}
.ls4_c00195{letter-spacing:5.975400px;}
.ls5_c00195{letter-spacing:5.976000px;}
.ls7_c00195{letter-spacing:6.076800px;}
.ls9_c00195{letter-spacing:6.077400px;}
.ls1b_c00195{letter-spacing:6.143040px;}
.ls17_c00195{letter-spacing:6.159920px;}
.ls20_c00195{letter-spacing:6.674400px;}
.ls36_c00195{letter-spacing:8.838288px;}
.ls2_c00195{letter-spacing:54.864000px;}
.sc__c00195{text-shadow:none;}
.sc1_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00195{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc1_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00195{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00195{word-spacing:-25.992000px;}
.ws9_c00195{word-spacing:-24.688800px;}
.ws5_c00195{word-spacing:-24.157440px;}
.ws7_c00195{word-spacing:-23.826960px;}
.ws0_c00195{word-spacing:-20.016000px;}
.wsc_c00195{word-spacing:-19.463862px;}
.wsa_c00195{word-spacing:-19.457183px;}
.ws6_c00195{word-spacing:-19.213200px;}
.ws8_c00195{word-spacing:-19.012320px;}
.ws2_c00195{word-spacing:-18.976264px;}
.wsb_c00195{word-spacing:-18.416160px;}
.ws14_c00195{word-spacing:-17.685056px;}
.wsf_c00195{word-spacing:-17.630284px;}
.ws12_c00195{word-spacing:-17.246885px;}
.wse_c00195{word-spacing:-17.109792px;}
.ws10_c00195{word-spacing:-16.944480px;}
.ws15_c00195{word-spacing:-16.785072px;}
.ws1_c00195{word-spacing:-11.429712px;}
.wsd_c00195{word-spacing:-10.793088px;}
.ws13_c00195{word-spacing:-10.152000px;}
.ws11_c00195{word-spacing:-10.008000px;}
.ws3_c00195{word-spacing:-6.048000px;}
.ws16_c00195{word-spacing:0.000000px;}
._12_c00195{margin-left:-8.612640px;}
._13_c00195{margin-left:-7.593120px;}
._d_c00195{margin-left:-4.208042px;}
._e_c00195{margin-left:-2.322720px;}
._8_c00195{margin-left:-1.101600px;}
._0_c00195{width:1.009800px;}
._f_c00195{width:2.623680px;}
._c_c00195{width:3.628800px;}
._3_c00195{width:5.184000px;}
._10_c00195{width:7.231320px;}
._9_c00195{width:9.397200px;}
._11_c00195{width:10.745280px;}
._1_c00195{width:11.808000px;}
._4_c00195{width:15.192000px;}
._6_c00195{width:16.344000px;}
._5_c00195{width:17.496000px;}
._2_c00195{width:18.648000px;}
._b_c00195{width:21.189600px;}
._a_c00195{width:40.836480px;}
._7_c00195{width:110.681640px;}
.fc0_c00195{color:rgb(0,0,0);}
.fs8_c00195{font-size:36.000000px;}
.fs5_c00195{font-size:38.880000px;}
.fs2_c00195{font-size:41.760000px;}
.fs6_c00195{font-size:59.040000px;}
.fs9_c00195{font-size:60.000000px;}
.fs7_c00195{font-size:60.857039px;}
.fs3_c00195{font-size:64.800000px;}
.fs4_c00195{font-size:66.794311px;}
.fs0_c00195{font-size:72.000000px;}
.fs1_c00195{font-size:74.215901px;}
.y0_c00195{bottom:0.000000px;}
.y36_c00195{bottom:3.120150px;}
.y35_c00195{bottom:34.744500px;}
.y1_c00195{bottom:54.000000px;}
.y34_c00195{bottom:55.481040px;}
.y33_c00195{bottom:72.765000px;}
.y32_c00195{bottom:96.525000px;}
.y31_c00195{bottom:107.686800px;}
.y30_c00195{bottom:125.325000px;}
.y2f_c00195{bottom:131.445000px;}
.y2e_c00195{bottom:142.962840px;}
.y2d_c00195{bottom:160.246800px;}
.y2c_c00195{bottom:184.005000px;}
.y2b_c00195{bottom:201.645000px;}
.y2a_c00195{bottom:218.925000px;}
.y29_c00195{bottom:230.445000px;}
.y28_c00195{bottom:236.565000px;}
.y27_c00195{bottom:263.205000px;}
.y26_c00195{bottom:406.122840px;}
.y25_c00195{bottom:423.406800px;}
.y24_c00195{bottom:441.045000px;}
.y23_c00195{bottom:465.885000px;}
.y22_c00195{bottom:465.886800px;}
.y21_c00195{bottom:483.525000px;}
.y20_c00195{bottom:483.526800px;}
.y1f_c00195{bottom:501.165000px;}
.y1e_c00195{bottom:533.925000px;}
.y19_c00195{bottom:555.525000px;}
.y18_c00195{bottom:577.125000px;}
.y1d_c00195{bottom:582.885000px;}
.y17_c00195{bottom:599.085000px;}
.y1c_c00195{bottom:602.325000px;}
.y16_c00195{bottom:619.245000px;}
.y1b_c00195{bottom:621.405000px;}
.y15_c00195{bottom:638.685000px;}
.y1a_c00195{bottom:640.845000px;}
.y14_c00195{bottom:658.485000px;}
.y13_c00195{bottom:659.925000px;}
.y12_c00195{bottom:694.845000px;}
.y11_c00195{bottom:730.845000px;}
.y10_c00195{bottom:752.085000px;}
.yf_c00195{bottom:772.965000px;}
.ye_c00195{bottom:793.845000px;}
.yd_c00195{bottom:815.085000px;}
.yc_c00195{bottom:851.085000px;}
.yb_c00195{bottom:871.965000px;}
.ya_c00195{bottom:892.845000px;}
.y9_c00195{bottom:928.845000px;}
.y8_c00195{bottom:950.085000px;}
.y7_c00195{bottom:986.085000px;}
.y6_c00195{bottom:1022.085000px;}
.y5_c00195{bottom:1042.965000px;}
.y4_c00195{bottom:1063.845000px;}
.y3_c00195{bottom:1085.085000px;}
.y2_c00195{bottom:1138.365000px;}
.hc_c00195{height:19.255500px;}
.hb_c00195{height:32.616000px;}
.hd_c00195{height:46.320000px;}
.ha_c00195{height:46.981634px;}
.h7_c00195{height:51.565208px;}
.h9_c00195{height:53.490240px;}
.h4_c00195{height:57.294676px;}
.h6_c00195{height:58.708800px;}
.h8_c00195{height:62.585280px;}
.h3_c00195{height:65.232000px;}
.h5_c00195{height:68.074560px;}
.h2_c00195{height:1201.365000px;}
.h0_c00195{height:1262.835000px;}
.h1_c00195{height:1263.000000px;}
.w7_c00195{width:25.020000px;}
.w3_c00195{width:39.600000px;}
.w4_c00195{width:73.440000px;}
.w5_c00195{width:222.840000px;}
.w6_c00195{width:309.240000px;}
.w2_c00195{width:863.955000px;}
.w0_c00195{width:892.935000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.xa_c00195{left:7.920150px;}
.x1_c00195{left:14.490000px;}
.xd_c00195{left:46.380750px;}
.x13_c00195{left:94.711200px;}
.x2_c00195{left:113.040150px;}
.x9_c00195{left:119.610000px;}
.x1c_c00195{left:129.906750px;}
.x14_c00195{left:133.172100px;}
.x6_c00195{left:140.037600px;}
.x5_c00195{left:148.031550px;}
.xf_c00195{left:150.602700px;}
.xb_c00195{left:159.930000px;}
.x3_c00195{left:162.521550px;}
.x1d_c00195{left:173.255850px;}
.x15_c00195{left:181.381350px;}
.x10_c00195{left:190.020600px;}
.x4_c00195{left:216.466950px;}
.x11_c00195{left:228.514500px;}
.xc_c00195{left:234.090000px;}
.x12_c00195{left:281.961450px;}
.x7_c00195{left:289.139700px;}
.x8_c00195{left:299.147400px;}
.x18_c00195{left:345.231000px;}
.x19_c00195{left:380.195400px;}
.x1e_c00195{left:406.892550px;}
.x16_c00195{left:418.142100px;}
.x1f_c00195{left:450.241650px;}
.x17_c00195{left:453.976650px;}
.xe_c00195{left:457.650000px;}
.x1a_c00195{left:556.420500px;}
.x1b_c00195{left:593.904000px;}
.x20_c00195{left:714.555450px;}
.x21_c00195{left:750.390000px;}
.x22_c00195{left:759.915000px;}
@media print{
.v3_c00195{vertical-align:-21.760000pt;}
.v0_c00195{vertical-align:0.000000pt;}
.v2_c00195{vertical-align:24.320000pt;}
.v1_c00195{vertical-align:26.880000pt;}
.ls19_c00195{letter-spacing:-0.159616pt;}
.ls27_c00195{letter-spacing:-0.013824pt;}
.ls18_c00195{letter-spacing:0.000000pt;}
.ls31_c00195{letter-spacing:0.128000pt;}
.ls15_c00195{letter-spacing:0.209920pt;}
.ls2a_c00195{letter-spacing:0.236160pt;}
.ls1_c00195{letter-spacing:0.242880pt;}
.ls11_c00195{letter-spacing:0.262400pt;}
.ls33_c00195{letter-spacing:0.283392pt;}
.ls30_c00195{letter-spacing:0.292114pt;}
.ls1c_c00195{letter-spacing:0.293760pt;}
.ls24_c00195{letter-spacing:0.299520pt;}
.ls16_c00195{letter-spacing:0.314880pt;}
.ls35_c00195{letter-spacing:0.330624pt;}
.ls0_c00195{letter-spacing:0.330880pt;}
.ls6_c00195{letter-spacing:0.354667pt;}
.ls21_c00195{letter-spacing:0.357120pt;}
.ls1a_c00195{letter-spacing:0.362174pt;}
.ls2d_c00195{letter-spacing:0.425088pt;}
.ls12_c00195{letter-spacing:0.472320pt;}
.ls2b_c00195{letter-spacing:0.519552pt;}
.lsb_c00195{letter-spacing:0.564480pt;}
.ls10_c00195{letter-spacing:0.581760pt;}
.ls3_c00195{letter-spacing:0.587413pt;}
.lsf_c00195{letter-spacing:0.593280pt;}
.ls2e_c00195{letter-spacing:0.614016pt;}
.ls28_c00195{letter-spacing:0.619264pt;}
.ls14_c00195{letter-spacing:0.632913pt;}
.ls37_c00195{letter-spacing:0.645504pt;}
.ls23_c00195{letter-spacing:0.650880pt;}
.ls2f_c00195{letter-spacing:0.661248pt;}
.ls34_c00195{letter-spacing:0.681599pt;}
.ls13_c00195{letter-spacing:0.730284pt;}
.ls22_c00195{letter-spacing:0.771840pt;}
.lsd_c00195{letter-spacing:0.789657pt;}
.lse_c00195{letter-spacing:0.795594pt;}
.ls2c_c00195{letter-spacing:0.855424pt;}
.ls1f_c00195{letter-spacing:0.887040pt;}
.ls1d_c00195{letter-spacing:1.065600pt;}
.ls29_c00195{letter-spacing:2.387840pt;}
.ls32_c00195{letter-spacing:2.550528pt;}
.ls26_c00195{letter-spacing:4.475520pt;}
.ls25_c00195{letter-spacing:4.613260pt;}
.lsc_c00195{letter-spacing:5.165333pt;}
.ls1e_c00195{letter-spacing:5.166720pt;}
.lsa_c00195{letter-spacing:5.224000pt;}
.ls8_c00195{letter-spacing:5.283733pt;}
.ls4_c00195{letter-spacing:5.311467pt;}
.ls5_c00195{letter-spacing:5.312000pt;}
.ls7_c00195{letter-spacing:5.401600pt;}
.ls9_c00195{letter-spacing:5.402133pt;}
.ls1b_c00195{letter-spacing:5.460480pt;}
.ls17_c00195{letter-spacing:5.475484pt;}
.ls20_c00195{letter-spacing:5.932800pt;}
.ls36_c00195{letter-spacing:7.856256pt;}
.ls2_c00195{letter-spacing:48.768000pt;}
.ws4_c00195{word-spacing:-23.104000pt;}
.ws9_c00195{word-spacing:-21.945600pt;}
.ws5_c00195{word-spacing:-21.473280pt;}
.ws7_c00195{word-spacing:-21.179520pt;}
.ws0_c00195{word-spacing:-17.792000pt;}
.wsc_c00195{word-spacing:-17.301211pt;}
.wsa_c00195{word-spacing:-17.295274pt;}
.ws6_c00195{word-spacing:-17.078400pt;}
.ws8_c00195{word-spacing:-16.899840pt;}
.ws2_c00195{word-spacing:-16.867790pt;}
.wsb_c00195{word-spacing:-16.369920pt;}
.ws14_c00195{word-spacing:-15.720049pt;}
.wsf_c00195{word-spacing:-15.671364pt;}
.ws12_c00195{word-spacing:-15.330564pt;}
.wse_c00195{word-spacing:-15.208704pt;}
.ws10_c00195{word-spacing:-15.061760pt;}
.ws15_c00195{word-spacing:-14.920064pt;}
.ws1_c00195{word-spacing:-10.159744pt;}
.wsd_c00195{word-spacing:-9.593856pt;}
.ws13_c00195{word-spacing:-9.024000pt;}
.ws11_c00195{word-spacing:-8.896000pt;}
.ws3_c00195{word-spacing:-5.376000pt;}
.ws16_c00195{word-spacing:0.000000pt;}
._12_c00195{margin-left:-7.655680pt;}
._13_c00195{margin-left:-6.749440pt;}
._d_c00195{margin-left:-3.740481pt;}
._e_c00195{margin-left:-2.064640pt;}
._8_c00195{margin-left:-0.979200pt;}
._0_c00195{width:0.897600pt;}
._f_c00195{width:2.332160pt;}
._c_c00195{width:3.225600pt;}
._3_c00195{width:4.608000pt;}
._10_c00195{width:6.427840pt;}
._9_c00195{width:8.353067pt;}
._11_c00195{width:9.551360pt;}
._1_c00195{width:10.496000pt;}
._4_c00195{width:13.504000pt;}
._6_c00195{width:14.528000pt;}
._5_c00195{width:15.552000pt;}
._2_c00195{width:16.576000pt;}
._b_c00195{width:18.835200pt;}
._a_c00195{width:36.299093pt;}
._7_c00195{width:98.383680pt;}
.fs8_c00195{font-size:32.000000pt;}
.fs5_c00195{font-size:34.560000pt;}
.fs2_c00195{font-size:37.120000pt;}
.fs6_c00195{font-size:52.480000pt;}
.fs9_c00195{font-size:53.333333pt;}
.fs7_c00195{font-size:54.095146pt;}
.fs3_c00195{font-size:57.600000pt;}
.fs4_c00195{font-size:59.372721pt;}
.fs0_c00195{font-size:64.000000pt;}
.fs1_c00195{font-size:65.969690pt;}
.y0_c00195{bottom:0.000000pt;}
.y36_c00195{bottom:2.773467pt;}
.y35_c00195{bottom:30.884000pt;}
.y1_c00195{bottom:48.000000pt;}
.y34_c00195{bottom:49.316480pt;}
.y33_c00195{bottom:64.680000pt;}
.y32_c00195{bottom:85.800000pt;}
.y31_c00195{bottom:95.721600pt;}
.y30_c00195{bottom:111.400000pt;}
.y2f_c00195{bottom:116.840000pt;}
.y2e_c00195{bottom:127.078080pt;}
.y2d_c00195{bottom:142.441600pt;}
.y2c_c00195{bottom:163.560000pt;}
.y2b_c00195{bottom:179.240000pt;}
.y2a_c00195{bottom:194.600000pt;}
.y29_c00195{bottom:204.840000pt;}
.y28_c00195{bottom:210.280000pt;}
.y27_c00195{bottom:233.960000pt;}
.y26_c00195{bottom:360.998080pt;}
.y25_c00195{bottom:376.361600pt;}
.y24_c00195{bottom:392.040000pt;}
.y23_c00195{bottom:414.120000pt;}
.y22_c00195{bottom:414.121600pt;}
.y21_c00195{bottom:429.800000pt;}
.y20_c00195{bottom:429.801600pt;}
.y1f_c00195{bottom:445.480000pt;}
.y1e_c00195{bottom:474.600000pt;}
.y19_c00195{bottom:493.800000pt;}
.y18_c00195{bottom:513.000000pt;}
.y1d_c00195{bottom:518.120000pt;}
.y17_c00195{bottom:532.520000pt;}
.y1c_c00195{bottom:535.400000pt;}
.y16_c00195{bottom:550.440000pt;}
.y1b_c00195{bottom:552.360000pt;}
.y15_c00195{bottom:567.720000pt;}
.y1a_c00195{bottom:569.640000pt;}
.y14_c00195{bottom:585.320000pt;}
.y13_c00195{bottom:586.600000pt;}
.y12_c00195{bottom:617.640000pt;}
.y11_c00195{bottom:649.640000pt;}
.y10_c00195{bottom:668.520000pt;}
.yf_c00195{bottom:687.080000pt;}
.ye_c00195{bottom:705.640000pt;}
.yd_c00195{bottom:724.520000pt;}
.yc_c00195{bottom:756.520000pt;}
.yb_c00195{bottom:775.080000pt;}
.ya_c00195{bottom:793.640000pt;}
.y9_c00195{bottom:825.640000pt;}
.y8_c00195{bottom:844.520000pt;}
.y7_c00195{bottom:876.520000pt;}
.y6_c00195{bottom:908.520000pt;}
.y5_c00195{bottom:927.080000pt;}
.y4_c00195{bottom:945.640000pt;}
.y3_c00195{bottom:964.520000pt;}
.y2_c00195{bottom:1011.880000pt;}
.hc_c00195{height:17.116000pt;}
.hb_c00195{height:28.992000pt;}
.hd_c00195{height:41.173333pt;}
.ha_c00195{height:41.761453pt;}
.h7_c00195{height:45.835741pt;}
.h9_c00195{height:47.546880pt;}
.h4_c00195{height:50.928601pt;}
.h6_c00195{height:52.185600pt;}
.h8_c00195{height:55.631360pt;}
.h3_c00195{height:57.984000pt;}
.h5_c00195{height:60.510720pt;}
.h2_c00195{height:1067.880000pt;}
.h0_c00195{height:1122.520000pt;}
.h1_c00195{height:1122.666667pt;}
.w7_c00195{width:22.240000pt;}
.w3_c00195{width:35.200000pt;}
.w4_c00195{width:65.280000pt;}
.w5_c00195{width:198.080000pt;}
.w6_c00195{width:274.880000pt;}
.w2_c00195{width:767.960000pt;}
.w0_c00195{width:793.720000pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.xa_c00195{left:7.040133pt;}
.x1_c00195{left:12.880000pt;}
.xd_c00195{left:41.227333pt;}
.x13_c00195{left:84.187733pt;}
.x2_c00195{left:100.480133pt;}
.x9_c00195{left:106.320000pt;}
.x1c_c00195{left:115.472667pt;}
.x14_c00195{left:118.375200pt;}
.x6_c00195{left:124.477867pt;}
.x5_c00195{left:131.583600pt;}
.xf_c00195{left:133.869067pt;}
.xb_c00195{left:142.160000pt;}
.x3_c00195{left:144.463600pt;}
.x1d_c00195{left:154.005200pt;}
.x15_c00195{left:161.227867pt;}
.x10_c00195{left:168.907200pt;}
.x4_c00195{left:192.415067pt;}
.x11_c00195{left:203.124000pt;}
.xc_c00195{left:208.080000pt;}
.x12_c00195{left:250.632400pt;}
.x7_c00195{left:257.013067pt;}
.x8_c00195{left:265.908800pt;}
.x18_c00195{left:306.872000pt;}
.x19_c00195{left:337.951467pt;}
.x1e_c00195{left:361.682267pt;}
.x16_c00195{left:371.681867pt;}
.x1f_c00195{left:400.214800pt;}
.x17_c00195{left:403.534800pt;}
.xe_c00195{left:406.800000pt;}
.x1a_c00195{left:494.596000pt;}
.x1b_c00195{left:527.914667pt;}
.x20_c00195{left:635.160400pt;}
.x21_c00195{left:667.013333pt;}
.x22_c00195{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45c32ace0c186dda7cedbf1b.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.134000;font-style:normal;font-weight:normal;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_3df5556f57641fa45f7b1830.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;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:ff3_c00196;src:url('chunks/assets/font_0b4c312d03e842fc36780ff4.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:0.920000;font-style:normal;font-weight:normal;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_3b6d3796f6b1cebcff03f929.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:0.787000;font-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_c00196{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls5_c00196{letter-spacing:0.000000px;}
.ls2_c00196{letter-spacing:0.265680px;}
.ls11_c00196{letter-spacing:0.273857px;}
.ls3_c00196{letter-spacing:0.318480px;}
.lsb_c00196{letter-spacing:0.318816px;}
.lsf_c00196{letter-spacing:0.425088px;}
.ls7_c00196{letter-spacing:0.478224px;}
.lsd_c00196{letter-spacing:0.531360px;}
.lsc_c00196{letter-spacing:0.637632px;}
.ls10_c00196{letter-spacing:0.690768px;}
.ls8_c00196{letter-spacing:0.962352px;}
.lsa_c00196{letter-spacing:5.248656px;}
.lse_c00196{letter-spacing:5.402160px;}
.ls6_c00196{letter-spacing:5.430672px;}
.ls9_c00196{letter-spacing:5.461200px;}
.ls1_c00196{letter-spacing:5.976000px;}
.ls0_c00196{letter-spacing:5.980200px;}
.ls4_c00196{letter-spacing:6.159920px;}
.sc__c00196{text-shadow:none;}
.sc1_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00196{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc1_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00196{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00196{word-spacing:-21.815280px;}
.ws3_c00196{word-spacing:-21.661776px;}
.ws0_c00196{word-spacing:-21.043152px;}
.ws2_c00196{word-spacing:-17.375472px;}
.ws6_c00196{word-spacing:-17.192114px;}
.ws5_c00196{word-spacing:-16.944480px;}
.ws1_c00196{word-spacing:-16.891344px;}
.ws7_c00196{word-spacing:0.000000px;}
._7_c00196{margin-left:-1.292448px;}
._3_c00196{width:1.296000px;}
._6_c00196{width:2.952000px;}
._8_c00196{width:5.405040px;}
._4_c00196{width:6.552000px;}
._0_c00196{width:8.424000px;}
._2_c00196{width:15.120000px;}
._1_c00196{width:24.912000px;}
._5_c00196{width:29.448000px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs2_c00196{font-size:56.160000px;}
.fs3_c00196{font-size:59.040000px;}
.fs5_c00196{font-size:60.000000px;}
.fs4_c00196{font-size:60.857039px;}
.fs0_c00196{font-size:72.000000px;}
.fs1_c00196{font-size:74.215901px;}
.y0_c00196{bottom:0.000000px;}
.y31_c00196{bottom:3.120150px;}
.y30_c00196{bottom:34.744500px;}
.y1_c00196{bottom:54.000000px;}
.y2e_c00196{bottom:93.645000px;}
.y2d_c00196{bottom:107.685000px;}
.y2f_c00196{bottom:145.845000px;}
.y2c_c00196{bottom:163.485000px;}
.y2b_c00196{bottom:180.765000px;}
.y29_c00196{bottom:199.125000px;}
.y28_c00196{bottom:213.525000px;}
.y2a_c00196{bottom:254.925000px;}
.y27_c00196{bottom:272.565000px;}
.y26_c00196{bottom:289.845000px;}
.y25_c00196{bottom:308.205000px;}
.y20_c00196{bottom:313.965000px;}
.y24_c00196{bottom:325.845000px;}
.y1f_c00196{bottom:328.365000px;}
.y23_c00196{bottom:343.125000px;}
.y22_c00196{bottom:360.765000px;}
.y21_c00196{bottom:378.405000px;}
.y1e_c00196{bottom:395.685000px;}
.y1d_c00196{bottom:413.325000px;}
.y1b_c00196{bottom:431.325000px;}
.y1a_c00196{bottom:445.725000px;}
.y1c_c00196{bottom:497.925000px;}
.y19_c00196{bottom:515.565000px;}
.y18_c00196{bottom:532.845000px;}
.y17_c00196{bottom:547.965000px;}
.y12_c00196{bottom:548.685000px;}
.y15_c00196{bottom:616.365000px;}
.y16_c00196{bottom:625.005000px;}
.y14_c00196{bottom:649.845000px;}
.y13_c00196{bottom:667.485000px;}
.y11_c00196{bottom:700.965000px;}
.y10_c00196{bottom:736.965000px;}
.yf_c00196{bottom:772.965000px;}
.ye_c00196{bottom:808.965000px;}
.yd_c00196{bottom:829.845000px;}
.yc_c00196{bottom:851.085000px;}
.yb_c00196{bottom:871.965000px;}
.ya_c00196{bottom:892.845000px;}
.y9_c00196{bottom:914.085000px;}
.y8_c00196{bottom:934.965000px;}
.y7_c00196{bottom:970.965000px;}
.y6_c00196{bottom:991.845000px;}
.y5_c00196{bottom:1013.085000px;}
.y4_c00196{bottom:1049.085000px;}
.y3_c00196{bottom:1085.085000px;}
.y2_c00196{bottom:1138.365000px;}
.h7_c00196{height:19.255500px;}
.h8_c00196{height:46.320000px;}
.h6_c00196{height:46.981634px;}
.h5_c00196{height:53.490240px;}
.h4_c00196{height:57.294676px;}
.h3_c00196{height:65.232000px;}
.h2_c00196{height:1201.365000px;}
.h0_c00196{height:1262.835000px;}
.h1_c00196{height:1263.000000px;}
.w7_c00196{width:25.020000px;}
.w6_c00196{width:156.240000px;}
.w3_c00196{width:156.600000px;}
.w4_c00196{width:160.560000px;}
.w5_c00196{width:177.480000px;}
.w2_c00196{width:863.955000px;}
.w0_c00196{width:892.935000px;}
.w1_c00196{width:893.250000px;}
.x0_c00196{left:0.000000px;}
.xb_c00196{left:7.920000px;}
.x1_c00196{left:14.490000px;}
.x12_c00196{left:56.248950px;}
.x10_c00196{left:61.920150px;}
.x11_c00196{left:63.382500px;}
.x2_c00196{left:113.040150px;}
.x8_c00196{left:119.610000px;}
.xf_c00196{left:127.920150px;}
.x9_c00196{left:130.920150px;}
.xc_c00196{left:152.926350px;}
.x3_c00196{left:162.521550px;}
.xe_c00196{left:169.920000px;}
.x4_c00196{left:216.466950px;}
.xa_c00196{left:276.930000px;}
.x5_c00196{left:351.663900px;}
.x6_c00196{left:403.749000px;}
.xd_c00196{left:438.210000px;}
.x7_c00196{left:616.563300px;}
.x13_c00196{left:759.915000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls5_c00196{letter-spacing:0.000000pt;}
.ls2_c00196{letter-spacing:0.236160pt;}
.ls11_c00196{letter-spacing:0.243428pt;}
.ls3_c00196{letter-spacing:0.283093pt;}
.lsb_c00196{letter-spacing:0.283392pt;}
.lsf_c00196{letter-spacing:0.377856pt;}
.ls7_c00196{letter-spacing:0.425088pt;}
.lsd_c00196{letter-spacing:0.472320pt;}
.lsc_c00196{letter-spacing:0.566784pt;}
.ls10_c00196{letter-spacing:0.614016pt;}
.ls8_c00196{letter-spacing:0.855424pt;}
.lsa_c00196{letter-spacing:4.665472pt;}
.lse_c00196{letter-spacing:4.801920pt;}
.ls6_c00196{letter-spacing:4.827264pt;}
.ls9_c00196{letter-spacing:4.854400pt;}
.ls1_c00196{letter-spacing:5.312000pt;}
.ls0_c00196{letter-spacing:5.315733pt;}
.ls4_c00196{letter-spacing:5.475484pt;}
.ws4_c00196{word-spacing:-19.391360pt;}
.ws3_c00196{word-spacing:-19.254912pt;}
.ws0_c00196{word-spacing:-18.705024pt;}
.ws2_c00196{word-spacing:-15.444864pt;}
.ws6_c00196{word-spacing:-15.281879pt;}
.ws5_c00196{word-spacing:-15.061760pt;}
.ws1_c00196{word-spacing:-15.014528pt;}
.ws7_c00196{word-spacing:0.000000pt;}
._7_c00196{margin-left:-1.148843pt;}
._3_c00196{width:1.152000pt;}
._6_c00196{width:2.624000pt;}
._8_c00196{width:4.804480pt;}
._4_c00196{width:5.824000pt;}
._0_c00196{width:7.488000pt;}
._2_c00196{width:13.440000pt;}
._1_c00196{width:22.144000pt;}
._5_c00196{width:26.176000pt;}
.fs2_c00196{font-size:49.920000pt;}
.fs3_c00196{font-size:52.480000pt;}
.fs5_c00196{font-size:53.333333pt;}
.fs4_c00196{font-size:54.095146pt;}
.fs0_c00196{font-size:64.000000pt;}
.fs1_c00196{font-size:65.969690pt;}
.y0_c00196{bottom:0.000000pt;}
.y31_c00196{bottom:2.773467pt;}
.y30_c00196{bottom:30.884000pt;}
.y1_c00196{bottom:48.000000pt;}
.y2e_c00196{bottom:83.240000pt;}
.y2d_c00196{bottom:95.720000pt;}
.y2f_c00196{bottom:129.640000pt;}
.y2c_c00196{bottom:145.320000pt;}
.y2b_c00196{bottom:160.680000pt;}
.y29_c00196{bottom:177.000000pt;}
.y28_c00196{bottom:189.800000pt;}
.y2a_c00196{bottom:226.600000pt;}
.y27_c00196{bottom:242.280000pt;}
.y26_c00196{bottom:257.640000pt;}
.y25_c00196{bottom:273.960000pt;}
.y20_c00196{bottom:279.080000pt;}
.y24_c00196{bottom:289.640000pt;}
.y1f_c00196{bottom:291.880000pt;}
.y23_c00196{bottom:305.000000pt;}
.y22_c00196{bottom:320.680000pt;}
.y21_c00196{bottom:336.360000pt;}
.y1e_c00196{bottom:351.720000pt;}
.y1d_c00196{bottom:367.400000pt;}
.y1b_c00196{bottom:383.400000pt;}
.y1a_c00196{bottom:396.200000pt;}
.y1c_c00196{bottom:442.600000pt;}
.y19_c00196{bottom:458.280000pt;}
.y18_c00196{bottom:473.640000pt;}
.y17_c00196{bottom:487.080000pt;}
.y12_c00196{bottom:487.720000pt;}
.y15_c00196{bottom:547.880000pt;}
.y16_c00196{bottom:555.560000pt;}
.y14_c00196{bottom:577.640000pt;}
.y13_c00196{bottom:593.320000pt;}
.y11_c00196{bottom:623.080000pt;}
.y10_c00196{bottom:655.080000pt;}
.yf_c00196{bottom:687.080000pt;}
.ye_c00196{bottom:719.080000pt;}
.yd_c00196{bottom:737.640000pt;}
.yc_c00196{bottom:756.520000pt;}
.yb_c00196{bottom:775.080000pt;}
.ya_c00196{bottom:793.640000pt;}
.y9_c00196{bottom:812.520000pt;}
.y8_c00196{bottom:831.080000pt;}
.y7_c00196{bottom:863.080000pt;}
.y6_c00196{bottom:881.640000pt;}
.y5_c00196{bottom:900.520000pt;}
.y4_c00196{bottom:932.520000pt;}
.y3_c00196{bottom:964.520000pt;}
.y2_c00196{bottom:1011.880000pt;}
.h7_c00196{height:17.116000pt;}
.h8_c00196{height:41.173333pt;}
.h6_c00196{height:41.761453pt;}
.h5_c00196{height:47.546880pt;}
.h4_c00196{height:50.928601pt;}
.h3_c00196{height:57.984000pt;}
.h2_c00196{height:1067.880000pt;}
.h0_c00196{height:1122.520000pt;}
.h1_c00196{height:1122.666667pt;}
.w7_c00196{width:22.240000pt;}
.w6_c00196{width:138.880000pt;}
.w3_c00196{width:139.200000pt;}
.w4_c00196{width:142.720000pt;}
.w5_c00196{width:157.760000pt;}
.w2_c00196{width:767.960000pt;}
.w0_c00196{width:793.720000pt;}
.w1_c00196{width:794.000000pt;}
.x0_c00196{left:0.000000pt;}
.xb_c00196{left:7.040000pt;}
.x1_c00196{left:12.880000pt;}
.x12_c00196{left:49.999067pt;}
.x10_c00196{left:55.040133pt;}
.x11_c00196{left:56.340000pt;}
.x2_c00196{left:100.480133pt;}
.x8_c00196{left:106.320000pt;}
.xf_c00196{left:113.706800pt;}
.x9_c00196{left:116.373467pt;}
.xc_c00196{left:135.934533pt;}
.x3_c00196{left:144.463600pt;}
.xe_c00196{left:151.040000pt;}
.x4_c00196{left:192.415067pt;}
.xa_c00196{left:246.160000pt;}
.x5_c00196{left:312.590133pt;}
.x6_c00196{left:358.888000pt;}
.xd_c00196{left:389.520000pt;}
.x7_c00196{left:548.056267pt;}
.x13_c00196{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d258db69dff2c91cb6a8e3c.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.134000;font-style:normal;font-weight:normal;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_36fbdd6c0a3540241fd54cc0.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;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:ff3_c00197;src:url('chunks/assets/font_7ed5a53fe67f5d0df59bc6b5.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_31c6de5e90f308cd3f789587.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:0.787000;font-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_c00197{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls5_c00197{letter-spacing:0.000000px;}
.lsc_c00197{letter-spacing:0.265680px;}
.ls8_c00197{letter-spacing:0.318816px;}
.lse_c00197{letter-spacing:0.371952px;}
.lsa_c00197{letter-spacing:0.425088px;}
.lsd_c00197{letter-spacing:0.478224px;}
.ls2_c00197{letter-spacing:0.531360px;}
.lsb_c00197{letter-spacing:0.584496px;}
.ls10_c00197{letter-spacing:0.637632px;}
.ls9_c00197{letter-spacing:0.690768px;}
.lsf_c00197{letter-spacing:0.962352px;}
.ls1_c00197{letter-spacing:5.353440px;}
.ls7_c00197{letter-spacing:5.402160px;}
.ls0_c00197{letter-spacing:5.405040px;}
.ls6_c00197{letter-spacing:5.461200px;}
.ls11_c00197{letter-spacing:5.514336px;}
.ls12_c00197{letter-spacing:5.939424px;}
.ls3_c00197{letter-spacing:5.976000px;}
.ls4_c00197{letter-spacing:6.159920px;}
.sc__c00197{text-shadow:none;}
.sc1_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00197{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc1_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00197{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00197{word-spacing:-22.352544px;}
.ws4_c00197{word-spacing:-21.927456px;}
.ws3_c00197{word-spacing:-21.874320px;}
.ws0_c00197{word-spacing:-21.815280px;}
.ws1_c00197{word-spacing:-16.944480px;}
.ws6_c00197{word-spacing:-16.891344px;}
.ws2_c00197{word-spacing:-16.678800px;}
.ws7_c00197{word-spacing:0.000000px;}
._0_c00197{margin-left:-1.003680px;}
._2_c00197{width:1.062720px;}
._1_c00197{width:5.458800px;}
.fc0_c00197{color:rgb(0,0,0);}
.fs2_c00197{font-size:59.040000px;}
.fs4_c00197{font-size:60.000000px;}
.fs3_c00197{font-size:60.857039px;}
.fs0_c00197{font-size:72.000000px;}
.fs1_c00197{font-size:74.215901px;}
.y0_c00197{bottom:0.000000px;}
.y34_c00197{bottom:3.120150px;}
.y33_c00197{bottom:34.744500px;}
.y1_c00197{bottom:54.000000px;}
.y32_c00197{bottom:82.485000px;}
.y2f_c00197{bottom:104.085000px;}
.y2e_c00197{bottom:118.485000px;}
.y31_c00197{bottom:164.565000px;}
.y30_c00197{bottom:182.205000px;}
.y2d_c00197{bottom:199.485000px;}
.y2c_c00197{bottom:217.125000px;}
.y29_c00197{bottom:235.485000px;}
.y28_c00197{bottom:249.525000px;}
.y2b_c00197{bottom:298.845000px;}
.y2a_c00197{bottom:316.485000px;}
.y27_c00197{bottom:333.765000px;}
.y26_c00197{bottom:351.405000px;}
.y25_c00197{bottom:369.765000px;}
.y24_c00197{bottom:383.805000px;}
.y23_c00197{bottom:448.605000px;}
.y22_c00197{bottom:466.245000px;}
.y21_c00197{bottom:481.005000px;}
.y1d_c00197{bottom:481.725000px;}
.y1f_c00197{bottom:532.125000px;}
.y1e_c00197{bottom:582.525000px;}
.y20_c00197{bottom:585.765000px;}
.y1c_c00197{bottom:619.245000px;}
.y1b_c00197{bottom:655.245000px;}
.y1a_c00197{bottom:691.245000px;}
.y19_c00197{bottom:712.845000px;}
.y18_c00197{bottom:730.125000px;}
.y17_c00197{bottom:748.485000px;}
.y16_c00197{bottom:765.765000px;}
.y15_c00197{bottom:783.405000px;}
.y14_c00197{bottom:801.045000px;}
.y13_c00197{bottom:819.045000px;}
.yd_c00197{bottom:826.245000px;}
.y12_c00197{bottom:836.685000px;}
.yc_c00197{bottom:840.645000px;}
.y11_c00197{bottom:854.325000px;}
.y10_c00197{bottom:871.605000px;}
.yf_c00197{bottom:889.245000px;}
.ye_c00197{bottom:906.885000px;}
.yb_c00197{bottom:924.165000px;}
.ya_c00197{bottom:941.805000px;}
.y7_c00197{bottom:960.165000px;}
.y6_c00197{bottom:974.205000px;}
.y9_c00197{bottom:999.045000px;}
.y8_c00197{bottom:1016.685000px;}
.y5_c00197{bottom:1033.965000px;}
.y4_c00197{bottom:1051.604850px;}
.y3_c00197{bottom:1085.085000px;}
.y2_c00197{bottom:1138.365000px;}
.h7_c00197{height:19.255500px;}
.h8_c00197{height:46.320000px;}
.h6_c00197{height:46.981634px;}
.h5_c00197{height:53.490240px;}
.h4_c00197{height:57.294676px;}
.h3_c00197{height:65.232000px;}
.h2_c00197{height:1201.365000px;}
.h0_c00197{height:1262.835000px;}
.h1_c00197{height:1263.000000px;}
.w8_c00197{width:25.020000px;}
.w4_c00197{width:154.800000px;}
.w6_c00197{width:159.120000px;}
.w3_c00197{width:159.480000px;}
.w5_c00197{width:177.480000px;}
.w7_c00197{width:215.280000px;}
.w2_c00197{width:863.955000px;}
.w0_c00197{width:892.935000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x7_c00197{left:7.920150px;}
.x1_c00197{left:14.490000px;}
.x14_c00197{left:55.920150px;}
.x8_c00197{left:61.920150px;}
.xe_c00197{left:66.019950px;}
.x15_c00197{left:70.920150px;}
.x16_c00197{left:75.420150px;}
.x2_c00197{left:113.040150px;}
.x13_c00197{left:116.495100px;}
.x6_c00197{left:119.610000px;}
.xb_c00197{left:127.541550px;}
.xf_c00197{left:131.747850px;}
.xc_c00197{left:138.371400px;}
.x3_c00197{left:162.521550px;}
.x11_c00197{left:196.920150px;}
.x4_c00197{left:216.466950px;}
.x9_c00197{left:279.810000px;}
.x10_c00197{left:335.610000px;}
.x5_c00197{left:431.710950px;}
.xa_c00197{left:435.330000px;}
.x12_c00197{left:551.610000px;}
.xd_c00197{left:613.530000px;}
.x17_c00197{left:759.915000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls5_c00197{letter-spacing:0.000000pt;}
.lsc_c00197{letter-spacing:0.236160pt;}
.ls8_c00197{letter-spacing:0.283392pt;}
.lse_c00197{letter-spacing:0.330624pt;}
.lsa_c00197{letter-spacing:0.377856pt;}
.lsd_c00197{letter-spacing:0.425088pt;}
.ls2_c00197{letter-spacing:0.472320pt;}
.lsb_c00197{letter-spacing:0.519552pt;}
.ls10_c00197{letter-spacing:0.566784pt;}
.ls9_c00197{letter-spacing:0.614016pt;}
.lsf_c00197{letter-spacing:0.855424pt;}
.ls1_c00197{letter-spacing:4.758613pt;}
.ls7_c00197{letter-spacing:4.801920pt;}
.ls0_c00197{letter-spacing:4.804480pt;}
.ls6_c00197{letter-spacing:4.854400pt;}
.ls11_c00197{letter-spacing:4.901632pt;}
.ls12_c00197{letter-spacing:5.279488pt;}
.ls3_c00197{letter-spacing:5.312000pt;}
.ls4_c00197{letter-spacing:5.475484pt;}
.ws5_c00197{word-spacing:-19.868928pt;}
.ws4_c00197{word-spacing:-19.491072pt;}
.ws3_c00197{word-spacing:-19.443840pt;}
.ws0_c00197{word-spacing:-19.391360pt;}
.ws1_c00197{word-spacing:-15.061760pt;}
.ws6_c00197{word-spacing:-15.014528pt;}
.ws2_c00197{word-spacing:-14.825600pt;}
.ws7_c00197{word-spacing:0.000000pt;}
._0_c00197{margin-left:-0.892160pt;}
._2_c00197{width:0.944640pt;}
._1_c00197{width:4.852267pt;}
.fs2_c00197{font-size:52.480000pt;}
.fs4_c00197{font-size:53.333333pt;}
.fs3_c00197{font-size:54.095146pt;}
.fs0_c00197{font-size:64.000000pt;}
.fs1_c00197{font-size:65.969690pt;}
.y0_c00197{bottom:0.000000pt;}
.y34_c00197{bottom:2.773467pt;}
.y33_c00197{bottom:30.884000pt;}
.y1_c00197{bottom:48.000000pt;}
.y32_c00197{bottom:73.320000pt;}
.y2f_c00197{bottom:92.520000pt;}
.y2e_c00197{bottom:105.320000pt;}
.y31_c00197{bottom:146.280000pt;}
.y30_c00197{bottom:161.960000pt;}
.y2d_c00197{bottom:177.320000pt;}
.y2c_c00197{bottom:193.000000pt;}
.y29_c00197{bottom:209.320000pt;}
.y28_c00197{bottom:221.800000pt;}
.y2b_c00197{bottom:265.640000pt;}
.y2a_c00197{bottom:281.320000pt;}
.y27_c00197{bottom:296.680000pt;}
.y26_c00197{bottom:312.360000pt;}
.y25_c00197{bottom:328.680000pt;}
.y24_c00197{bottom:341.160000pt;}
.y23_c00197{bottom:398.760000pt;}
.y22_c00197{bottom:414.440000pt;}
.y21_c00197{bottom:427.560000pt;}
.y1d_c00197{bottom:428.200000pt;}
.y1f_c00197{bottom:473.000000pt;}
.y1e_c00197{bottom:517.800000pt;}
.y20_c00197{bottom:520.680000pt;}
.y1c_c00197{bottom:550.440000pt;}
.y1b_c00197{bottom:582.440000pt;}
.y1a_c00197{bottom:614.440000pt;}
.y19_c00197{bottom:633.640000pt;}
.y18_c00197{bottom:649.000000pt;}
.y17_c00197{bottom:665.320000pt;}
.y16_c00197{bottom:680.680000pt;}
.y15_c00197{bottom:696.360000pt;}
.y14_c00197{bottom:712.040000pt;}
.y13_c00197{bottom:728.040000pt;}
.yd_c00197{bottom:734.440000pt;}
.y12_c00197{bottom:743.720000pt;}
.yc_c00197{bottom:747.240000pt;}
.y11_c00197{bottom:759.400000pt;}
.y10_c00197{bottom:774.760000pt;}
.yf_c00197{bottom:790.440000pt;}
.ye_c00197{bottom:806.120000pt;}
.yb_c00197{bottom:821.480000pt;}
.ya_c00197{bottom:837.160000pt;}
.y7_c00197{bottom:853.480000pt;}
.y6_c00197{bottom:865.960000pt;}
.y9_c00197{bottom:888.040000pt;}
.y8_c00197{bottom:903.720000pt;}
.y5_c00197{bottom:919.080000pt;}
.y4_c00197{bottom:934.759867pt;}
.y3_c00197{bottom:964.520000pt;}
.y2_c00197{bottom:1011.880000pt;}
.h7_c00197{height:17.116000pt;}
.h8_c00197{height:41.173333pt;}
.h6_c00197{height:41.761453pt;}
.h5_c00197{height:47.546880pt;}
.h4_c00197{height:50.928601pt;}
.h3_c00197{height:57.984000pt;}
.h2_c00197{height:1067.880000pt;}
.h0_c00197{height:1122.520000pt;}
.h1_c00197{height:1122.666667pt;}
.w8_c00197{width:22.240000pt;}
.w4_c00197{width:137.600000pt;}
.w6_c00197{width:141.440000pt;}
.w3_c00197{width:141.760000pt;}
.w5_c00197{width:157.760000pt;}
.w7_c00197{width:191.360000pt;}
.w2_c00197{width:767.960000pt;}
.w0_c00197{width:793.720000pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x7_c00197{left:7.040133pt;}
.x1_c00197{left:12.880000pt;}
.x14_c00197{left:49.706800pt;}
.x8_c00197{left:55.040133pt;}
.xe_c00197{left:58.684400pt;}
.x15_c00197{left:63.040133pt;}
.x16_c00197{left:67.040133pt;}
.x2_c00197{left:100.480133pt;}
.x13_c00197{left:103.551200pt;}
.x6_c00197{left:106.320000pt;}
.xb_c00197{left:113.370267pt;}
.xf_c00197{left:117.109200pt;}
.xc_c00197{left:122.996800pt;}
.x3_c00197{left:144.463600pt;}
.x11_c00197{left:175.040133pt;}
.x4_c00197{left:192.415067pt;}
.x9_c00197{left:248.720000pt;}
.x10_c00197{left:298.320000pt;}
.x5_c00197{left:383.743067pt;}
.xa_c00197{left:386.960000pt;}
.x12_c00197{left:490.320000pt;}
.xd_c00197{left:545.360000pt;}
.x17_c00197{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_715db884eb8e893321dbe5eb.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.134000;font-style:normal;font-weight:normal;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_9f51dff2eff9ec94cf40c0dc.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;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:ff3_c00198;src:url('chunks/assets/font_0b4c312d03e842fc36780ff4.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_7ed5a53fe67f5d0df59bc6b5.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_4fc35b9f1b57e263dbb9532d.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:0.787000;font-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_c00198{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls5_c00198{letter-spacing:0.000000px;}
.lsa_c00198{letter-spacing:0.265680px;}
.ls0_c00198{letter-spacing:0.318480px;}
.ls8_c00198{letter-spacing:0.318816px;}
.lse_c00198{letter-spacing:0.371952px;}
.lsc_c00198{letter-spacing:0.425088px;}
.lsf_c00198{letter-spacing:0.478224px;}
.ls9_c00198{letter-spacing:0.531360px;}
.lsb_c00198{letter-spacing:0.637632px;}
.lsd_c00198{letter-spacing:0.690768px;}
.ls2_c00198{letter-spacing:5.353440px;}
.ls7_c00198{letter-spacing:5.402160px;}
.ls1_c00198{letter-spacing:5.405040px;}
.ls6_c00198{letter-spacing:5.461200px;}
.ls3_c00198{letter-spacing:5.976000px;}
.ls4_c00198{letter-spacing:6.159920px;}
.sc__c00198{text-shadow:none;}
.sc1_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00198{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc1_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00198{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00198{word-spacing:-21.815280px;}
.ws1_c00198{word-spacing:-16.838208px;}
.ws2_c00198{word-spacing:-16.678800px;}
.ws3_c00198{word-spacing:0.000000px;}
._0_c00198{margin-left:-1.003680px;}
._1_c00198{width:1.003680px;}
._2_c00198{width:5.404440px;}
.fc0_c00198{color:rgb(0,0,0);}
.fs2_c00198{font-size:59.040000px;}
.fs3_c00198{font-size:60.000000px;}
.fs0_c00198{font-size:72.000000px;}
.fs1_c00198{font-size:74.215901px;}
.y0_c00198{bottom:0.000000px;}
.y1d_c00198{bottom:3.120150px;}
.y1c_c00198{bottom:34.744500px;}
.y1_c00198{bottom:54.000000px;}
.y1b_c00198{bottom:503.325000px;}
.y1a_c00198{bottom:524.925000px;}
.y19_c00198{bottom:542.565000px;}
.y17_c00198{bottom:560.565000px;}
.y16_c00198{bottom:574.965000px;}
.y18_c00198{bottom:630.045000px;}
.y15_c00198{bottom:647.685000px;}
.y14_c00198{bottom:664.965000px;}
.yf_c00198{bottom:683.325000px;}
.ye_c00198{bottom:697.365000px;}
.y13_c00198{bottom:721.125000px;}
.y12_c00198{bottom:738.765000px;}
.y11_c00198{bottom:756.045000px;}
.y10_c00198{bottom:773.685000px;}
.yd_c00198{bottom:791.325000px;}
.yc_c00198{bottom:808.605000px;}
.ya_c00198{bottom:826.965000px;}
.y9_c00198{bottom:841.365000px;}
.yb_c00198{bottom:906.525000px;}
.y8_c00198{bottom:923.805000px;}
.y7_c00198{bottom:941.445000px;}
.y6_c00198{bottom:962.325000px;}
.y5_c00198{bottom:976.725000px;}
.y4_c00198{bottom:1069.965000px;}
.y3_c00198{bottom:1087.604850px;}
.y2_c00198{bottom:1138.365000px;}
.h6_c00198{height:19.255500px;}
.h7_c00198{height:46.320000px;}
.h5_c00198{height:53.490240px;}
.h4_c00198{height:57.294676px;}
.h3_c00198{height:65.232000px;}
.h2_c00198{height:1201.365000px;}
.h0_c00198{height:1262.835000px;}
.h1_c00198{height:1263.000000px;}
.w4_c00198{width:25.020000px;}
.w3_c00198{width:215.280000px;}
.w2_c00198{width:863.955000px;}
.w0_c00198{width:892.935000px;}
.w1_c00198{width:893.250000px;}
.x0_c00198{left:0.000000px;}
.x6_c00198{left:7.920150px;}
.x1_c00198{left:14.490000px;}
.xa_c00198{left:66.420150px;}
.x7_c00198{left:67.920150px;}
.xc_c00198{left:72.420150px;}
.xb_c00198{left:82.920150px;}
.x2_c00198{left:113.040150px;}
.x5_c00198{left:119.610000px;}
.x3_c00198{left:162.521550px;}
.x4_c00198{left:216.466950px;}
.x8_c00198{left:335.610000px;}
.x9_c00198{left:551.610000px;}
.xd_c00198{left:759.915000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls5_c00198{letter-spacing:0.000000pt;}
.lsa_c00198{letter-spacing:0.236160pt;}
.ls0_c00198{letter-spacing:0.283093pt;}
.ls8_c00198{letter-spacing:0.283392pt;}
.lse_c00198{letter-spacing:0.330624pt;}
.lsc_c00198{letter-spacing:0.377856pt;}
.lsf_c00198{letter-spacing:0.425088pt;}
.ls9_c00198{letter-spacing:0.472320pt;}
.lsb_c00198{letter-spacing:0.566784pt;}
.lsd_c00198{letter-spacing:0.614016pt;}
.ls2_c00198{letter-spacing:4.758613pt;}
.ls7_c00198{letter-spacing:4.801920pt;}
.ls1_c00198{letter-spacing:4.804480pt;}
.ls6_c00198{letter-spacing:4.854400pt;}
.ls3_c00198{letter-spacing:5.312000pt;}
.ls4_c00198{letter-spacing:5.475484pt;}
.ws0_c00198{word-spacing:-19.391360pt;}
.ws1_c00198{word-spacing:-14.967296pt;}
.ws2_c00198{word-spacing:-14.825600pt;}
.ws3_c00198{word-spacing:0.000000pt;}
._0_c00198{margin-left:-0.892160pt;}
._1_c00198{width:0.892160pt;}
._2_c00198{width:4.803947pt;}
.fs2_c00198{font-size:52.480000pt;}
.fs3_c00198{font-size:53.333333pt;}
.fs0_c00198{font-size:64.000000pt;}
.fs1_c00198{font-size:65.969690pt;}
.y0_c00198{bottom:0.000000pt;}
.y1d_c00198{bottom:2.773467pt;}
.y1c_c00198{bottom:30.884000pt;}
.y1_c00198{bottom:48.000000pt;}
.y1b_c00198{bottom:447.400000pt;}
.y1a_c00198{bottom:466.600000pt;}
.y19_c00198{bottom:482.280000pt;}
.y17_c00198{bottom:498.280000pt;}
.y16_c00198{bottom:511.080000pt;}
.y18_c00198{bottom:560.040000pt;}
.y15_c00198{bottom:575.720000pt;}
.y14_c00198{bottom:591.080000pt;}
.yf_c00198{bottom:607.400000pt;}
.ye_c00198{bottom:619.880000pt;}
.y13_c00198{bottom:641.000000pt;}
.y12_c00198{bottom:656.680000pt;}
.y11_c00198{bottom:672.040000pt;}
.y10_c00198{bottom:687.720000pt;}
.yd_c00198{bottom:703.400000pt;}
.yc_c00198{bottom:718.760000pt;}
.ya_c00198{bottom:735.080000pt;}
.y9_c00198{bottom:747.880000pt;}
.yb_c00198{bottom:805.800000pt;}
.y8_c00198{bottom:821.160000pt;}
.y7_c00198{bottom:836.840000pt;}
.y6_c00198{bottom:855.400000pt;}
.y5_c00198{bottom:868.200000pt;}
.y4_c00198{bottom:951.080000pt;}
.y3_c00198{bottom:966.759867pt;}
.y2_c00198{bottom:1011.880000pt;}
.h6_c00198{height:17.116000pt;}
.h7_c00198{height:41.173333pt;}
.h5_c00198{height:47.546880pt;}
.h4_c00198{height:50.928601pt;}
.h3_c00198{height:57.984000pt;}
.h2_c00198{height:1067.880000pt;}
.h0_c00198{height:1122.520000pt;}
.h1_c00198{height:1122.666667pt;}
.w4_c00198{width:22.240000pt;}
.w3_c00198{width:191.360000pt;}
.w2_c00198{width:767.960000pt;}
.w0_c00198{width:793.720000pt;}
.w1_c00198{width:794.000000pt;}
.x0_c00198{left:0.000000pt;}
.x6_c00198{left:7.040133pt;}
.x1_c00198{left:12.880000pt;}
.xa_c00198{left:59.040133pt;}
.x7_c00198{left:60.373467pt;}
.xc_c00198{left:64.373467pt;}
.xb_c00198{left:73.706800pt;}
.x2_c00198{left:100.480133pt;}
.x5_c00198{left:106.320000pt;}
.x3_c00198{left:144.463600pt;}
.x4_c00198{left:192.415067pt;}
.x8_c00198{left:298.320000pt;}
.x9_c00198{left:490.320000pt;}
.xd_c00198{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_93f881e1747c6a5685748690.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.134000;font-style:normal;font-weight:normal;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_31892a97b7a778d4beb8bdd0.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;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:ff3_c00199;src:url('chunks/assets/font_6820b374001767d029a3239c.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:0.787000;font-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_c00199{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls2_c00199{letter-spacing:0.000000px;}
.ls8_c00199{letter-spacing:0.265680px;}
.lsd_c00199{letter-spacing:0.371952px;}
.lsa_c00199{letter-spacing:0.425088px;}
.ls9_c00199{letter-spacing:0.478224px;}
.ls7_c00199{letter-spacing:0.531360px;}
.lsb_c00199{letter-spacing:0.584496px;}
.ls5_c00199{letter-spacing:0.637632px;}
.lsc_c00199{letter-spacing:0.712027px;}
.ls3_c00199{letter-spacing:0.962352px;}
.ls6_c00199{letter-spacing:5.402160px;}
.ls4_c00199{letter-spacing:5.461200px;}
.ls0_c00199{letter-spacing:5.976000px;}
.ls1_c00199{letter-spacing:6.159920px;}
.sc__c00199{text-shadow:none;}
.sc1_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00199{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc1_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00199{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00199{word-spacing:-21.815280px;}
.ws2_c00199{word-spacing:-17.630284px;}
.ws0_c00199{word-spacing:-17.375472px;}
.ws4_c00199{word-spacing:-16.944480px;}
.ws3_c00199{word-spacing:-16.785072px;}
.ws5_c00199{word-spacing:0.000000px;}
._1_c00199{margin-left:-1.291848px;}
._3_c00199{width:1.047384px;}
._5_c00199{width:2.441232px;}
._8_c00199{width:3.541536px;}
._2_c00199{width:4.887840px;}
._0_c00199{width:5.976000px;}
._7_c00199{width:8.928000px;}
._4_c00199{width:10.440000px;}
._9_c00199{width:12.024000px;}
._6_c00199{width:13.896000px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs2_c00199{font-size:59.040000px;}
.fs4_c00199{font-size:60.000000px;}
.fs3_c00199{font-size:60.857039px;}
.fs0_c00199{font-size:72.000000px;}
.fs1_c00199{font-size:74.215901px;}
.y0_c00199{bottom:0.000000px;}
.y28_c00199{bottom:3.120150px;}
.y27_c00199{bottom:34.744500px;}
.y1_c00199{bottom:54.000000px;}
.y26_c00199{bottom:76.365000px;}
.y25_c00199{bottom:97.245000px;}
.y24_c00199{bottom:118.125000px;}
.y23_c00199{bottom:139.365000px;}
.y22_c00199{bottom:160.245000px;}
.y21_c00199{bottom:181.125000px;}
.y20_c00199{bottom:202.365000px;}
.y1f_c00199{bottom:223.245000px;}
.y1e_c00199{bottom:259.245000px;}
.y1d_c00199{bottom:280.125000px;}
.y1c_c00199{bottom:301.365000px;}
.y1b_c00199{bottom:322.245000px;}
.y1a_c00199{bottom:343.485000px;}
.y19_c00199{bottom:379.485000px;}
.y18_c00199{bottom:400.725000px;}
.y17_c00199{bottom:415.125000px;}
.y16_c00199{bottom:488.925000px;}
.y15_c00199{bottom:506.205000px;}
.y14_c00199{bottom:524.565000px;}
.y13_c00199{bottom:538.965000px;}
.y12_c00199{bottom:612.765000px;}
.y11_c00199{bottom:630.045000px;}
.yf_c00199{bottom:648.405000px;}
.ye_c00199{bottom:662.445000px;}
.y10_c00199{bottom:720.405000px;}
.yd_c00199{bottom:738.045000px;}
.yc_c00199{bottom:755.325000px;}
.yb_c00199{bottom:773.685000px;}
.ya_c00199{bottom:788.085000px;}
.y9_c00199{bottom:860.085000px;}
.y8_c00199{bottom:877.725000px;}
.y7_c00199{bottom:892.485000px;}
.y5_c00199{bottom:896.085000px;}
.y6_c00199{bottom:1015.604850px;}
.y4_c00199{bottom:1049.085000px;}
.y3_c00199{bottom:1085.085000px;}
.y2_c00199{bottom:1138.365000px;}
.h7_c00199{height:19.255500px;}
.h8_c00199{height:46.320000px;}
.h6_c00199{height:46.981634px;}
.h5_c00199{height:53.490240px;}
.h4_c00199{height:57.294676px;}
.h3_c00199{height:65.232000px;}
.h2_c00199{height:1201.365000px;}
.h0_c00199{height:1262.835000px;}
.h1_c00199{height:1263.000000px;}
.w4_c00199{width:25.020000px;}
.w3_c00199{width:323.280000px;}
.w2_c00199{width:863.955000px;}
.w0_c00199{width:892.935000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x8_c00199{left:7.920150px;}
.x1_c00199{left:14.490000px;}
.x9_c00199{left:58.920150px;}
.xb_c00199{left:64.920150px;}
.xa_c00199{left:69.420150px;}
.x2_c00199{left:113.040150px;}
.x5_c00199{left:119.610000px;}
.xc_c00199{left:127.901400px;}
.x6_c00199{left:142.920150px;}
.x3_c00199{left:162.521550px;}
.x11_c00199{left:164.069400px;}
.x12_c00199{left:169.871700px;}
.x4_c00199{left:216.466950px;}
.xd_c00199{left:254.578050px;}
.xe_c00199{left:267.573900px;}
.x7_c00199{left:443.610000px;}
.x13_c00199{left:635.755800px;}
.xf_c00199{left:638.147850px;}
.x14_c00199{left:654.553350px;}
.x10_c00199{left:659.365350px;}
.x15_c00199{left:759.915000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls2_c00199{letter-spacing:0.000000pt;}
.ls8_c00199{letter-spacing:0.236160pt;}
.lsd_c00199{letter-spacing:0.330624pt;}
.lsa_c00199{letter-spacing:0.377856pt;}
.ls9_c00199{letter-spacing:0.425088pt;}
.ls7_c00199{letter-spacing:0.472320pt;}
.lsb_c00199{letter-spacing:0.519552pt;}
.ls5_c00199{letter-spacing:0.566784pt;}
.lsc_c00199{letter-spacing:0.632913pt;}
.ls3_c00199{letter-spacing:0.855424pt;}
.ls6_c00199{letter-spacing:4.801920pt;}
.ls4_c00199{letter-spacing:4.854400pt;}
.ls0_c00199{letter-spacing:5.312000pt;}
.ls1_c00199{letter-spacing:5.475484pt;}
.ws1_c00199{word-spacing:-19.391360pt;}
.ws2_c00199{word-spacing:-15.671364pt;}
.ws0_c00199{word-spacing:-15.444864pt;}
.ws4_c00199{word-spacing:-15.061760pt;}
.ws3_c00199{word-spacing:-14.920064pt;}
.ws5_c00199{word-spacing:0.000000pt;}
._1_c00199{margin-left:-1.148309pt;}
._3_c00199{width:0.931008pt;}
._5_c00199{width:2.169984pt;}
._8_c00199{width:3.148032pt;}
._2_c00199{width:4.344747pt;}
._0_c00199{width:5.312000pt;}
._7_c00199{width:7.936000pt;}
._4_c00199{width:9.280000pt;}
._9_c00199{width:10.688000pt;}
._6_c00199{width:12.352000pt;}
.fs2_c00199{font-size:52.480000pt;}
.fs4_c00199{font-size:53.333333pt;}
.fs3_c00199{font-size:54.095146pt;}
.fs0_c00199{font-size:64.000000pt;}
.fs1_c00199{font-size:65.969690pt;}
.y0_c00199{bottom:0.000000pt;}
.y28_c00199{bottom:2.773467pt;}
.y27_c00199{bottom:30.884000pt;}
.y1_c00199{bottom:48.000000pt;}
.y26_c00199{bottom:67.880000pt;}
.y25_c00199{bottom:86.440000pt;}
.y24_c00199{bottom:105.000000pt;}
.y23_c00199{bottom:123.880000pt;}
.y22_c00199{bottom:142.440000pt;}
.y21_c00199{bottom:161.000000pt;}
.y20_c00199{bottom:179.880000pt;}
.y1f_c00199{bottom:198.440000pt;}
.y1e_c00199{bottom:230.440000pt;}
.y1d_c00199{bottom:249.000000pt;}
.y1c_c00199{bottom:267.880000pt;}
.y1b_c00199{bottom:286.440000pt;}
.y1a_c00199{bottom:305.320000pt;}
.y19_c00199{bottom:337.320000pt;}
.y18_c00199{bottom:356.200000pt;}
.y17_c00199{bottom:369.000000pt;}
.y16_c00199{bottom:434.600000pt;}
.y15_c00199{bottom:449.960000pt;}
.y14_c00199{bottom:466.280000pt;}
.y13_c00199{bottom:479.080000pt;}
.y12_c00199{bottom:544.680000pt;}
.y11_c00199{bottom:560.040000pt;}
.yf_c00199{bottom:576.360000pt;}
.ye_c00199{bottom:588.840000pt;}
.y10_c00199{bottom:640.360000pt;}
.yd_c00199{bottom:656.040000pt;}
.yc_c00199{bottom:671.400000pt;}
.yb_c00199{bottom:687.720000pt;}
.ya_c00199{bottom:700.520000pt;}
.y9_c00199{bottom:764.520000pt;}
.y8_c00199{bottom:780.200000pt;}
.y7_c00199{bottom:793.320000pt;}
.y5_c00199{bottom:796.520000pt;}
.y6_c00199{bottom:902.759867pt;}
.y4_c00199{bottom:932.520000pt;}
.y3_c00199{bottom:964.520000pt;}
.y2_c00199{bottom:1011.880000pt;}
.h7_c00199{height:17.116000pt;}
.h8_c00199{height:41.173333pt;}
.h6_c00199{height:41.761453pt;}
.h5_c00199{height:47.546880pt;}
.h4_c00199{height:50.928601pt;}
.h3_c00199{height:57.984000pt;}
.h2_c00199{height:1067.880000pt;}
.h0_c00199{height:1122.520000pt;}
.h1_c00199{height:1122.666667pt;}
.w4_c00199{width:22.240000pt;}
.w3_c00199{width:287.360000pt;}
.w2_c00199{width:767.960000pt;}
.w0_c00199{width:793.720000pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x8_c00199{left:7.040133pt;}
.x1_c00199{left:12.880000pt;}
.x9_c00199{left:52.373467pt;}
.xb_c00199{left:57.706800pt;}
.xa_c00199{left:61.706800pt;}
.x2_c00199{left:100.480133pt;}
.x5_c00199{left:106.320000pt;}
.xc_c00199{left:113.690133pt;}
.x6_c00199{left:127.040133pt;}
.x3_c00199{left:144.463600pt;}
.x11_c00199{left:145.839467pt;}
.x12_c00199{left:150.997067pt;}
.x4_c00199{left:192.415067pt;}
.xd_c00199{left:226.291600pt;}
.xe_c00199{left:237.843467pt;}
.x7_c00199{left:394.320000pt;}
.x13_c00199{left:565.116267pt;}
.xf_c00199{left:567.242533pt;}
.x14_c00199{left:581.825200pt;}
.x10_c00199{left:586.102533pt;}
.x15_c00199{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13ce5670459492e6e7699ce1.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.134000;font-style:normal;font-weight:normal;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_5612a86bc6fd2a020183d270.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;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:ff3_c00200;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_9dfa439570c32a2671ab6b89.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:0.787000;font-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_c00200{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00200{vertical-align:-24.480000px;}
.v0_c00200{vertical-align:0.000000px;}
.v1_c00200{vertical-align:30.240000px;}
.ls8_c00200{letter-spacing:-0.179568px;}
.ls4_c00200{letter-spacing:0.000000px;}
.ls9_c00200{letter-spacing:0.144000px;}
.lsa_c00200{letter-spacing:0.766799px;}
.ls7_c00200{letter-spacing:5.335200px;}
.ls2_c00200{letter-spacing:5.975400px;}
.ls1_c00200{letter-spacing:5.976000px;}
.ls3_c00200{letter-spacing:6.159920px;}
.ls6_c00200{letter-spacing:11.268000px;}
.ls5_c00200{letter-spacing:12.945600px;}
.ls0_c00200{letter-spacing:55.008000px;}
.sc__c00200{text-shadow:none;}
.sc1_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00200{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc1_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00200{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00200{word-spacing:-20.947680px;}
.ws3_c00200{word-spacing:-17.685056px;}
.ws1_c00200{word-spacing:-11.429712px;}
.ws2_c00200{word-spacing:-10.152000px;}
.ws4_c00200{word-spacing:0.000000px;}
._6_c00200{margin-left:-10.584000px;}
._3_c00200{width:1.584000px;}
._9_c00200{width:3.024000px;}
._c_c00200{width:4.176000px;}
._1_c00200{width:5.904000px;}
._8_c00200{width:7.272000px;}
._b_c00200{width:9.072000px;}
._2_c00200{width:10.800000px;}
._5_c00200{width:12.384000px;}
._4_c00200{width:13.536000px;}
._a_c00200{width:14.904000px;}
._0_c00200{width:21.600000px;}
._7_c00200{width:23.400000px;}
.fc0_c00200{color:rgb(0,0,0);}
.fs4_c00200{font-size:36.000000px;}
.fs3_c00200{font-size:41.760000px;}
.fs2_c00200{font-size:56.160000px;}
.fs5_c00200{font-size:59.040000px;}
.fs7_c00200{font-size:60.000000px;}
.fs6_c00200{font-size:60.857039px;}
.fs0_c00200{font-size:72.000000px;}
.fs1_c00200{font-size:74.215901px;}
.y0_c00200{bottom:0.000000px;}
.y21_c00200{bottom:3.120150px;}
.y20_c00200{bottom:34.744500px;}
.y1_c00200{bottom:54.000000px;}
.y1f_c00200{bottom:55.485000px;}
.y1e_c00200{bottom:61.605000px;}
.y1d_c00200{bottom:88.245000px;}
.y1c_c00200{bottom:454.725000px;}
.y1b_c00200{bottom:490.725000px;}
.y1a_c00200{bottom:526.725000px;}
.y19_c00200{bottom:562.725000px;}
.y18_c00200{bottom:598.725000px;}
.y17_c00200{bottom:619.965000px;}
.y16_c00200{bottom:640.845000px;}
.y15_c00200{bottom:661.725000px;}
.y14_c00200{bottom:682.965000px;}
.y13_c00200{bottom:703.845000px;}
.y12_c00200{bottom:725.085000px;}
.y11_c00200{bottom:761.085000px;}
.y10_c00200{bottom:781.965000px;}
.yf_c00200{bottom:802.845000px;}
.ye_c00200{bottom:824.085000px;}
.yd_c00200{bottom:844.965000px;}
.yc_c00200{bottom:865.845000px;}
.yb_c00200{bottom:887.085000px;}
.ya_c00200{bottom:907.965000px;}
.y9_c00200{bottom:928.845000px;}
.y8_c00200{bottom:964.845000px;}
.y7_c00200{bottom:986.085000px;}
.y6_c00200{bottom:1006.965000px;}
.y5_c00200{bottom:1027.845000px;}
.y4_c00200{bottom:1063.845000px;}
.y3_c00200{bottom:1085.085000px;}
.y2_c00200{bottom:1138.365000px;}
.h9_c00200{height:19.255500px;}
.h6_c00200{height:32.616000px;}
.ha_c00200{height:46.320000px;}
.h7_c00200{height:46.981634px;}
.h8_c00200{height:53.490240px;}
.h4_c00200{height:57.294676px;}
.h3_c00200{height:65.232000px;}
.h5_c00200{height:68.074560px;}
.h2_c00200{height:1201.365000px;}
.h0_c00200{height:1262.835000px;}
.h1_c00200{height:1263.000000px;}
.w3_c00200{width:25.020000px;}
.w2_c00200{width:863.955000px;}
.w0_c00200{width:892.935000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:14.490000px;}
.x2_c00200{left:113.040150px;}
.x13_c00200{left:127.217700px;}
.x7_c00200{left:140.038950px;}
.x3_c00200{left:162.521550px;}
.x8_c00200{left:167.038950px;}
.x14_c00200{left:170.566800px;}
.xd_c00200{left:173.034000px;}
.xe_c00200{left:209.015550px;}
.x4_c00200{left:216.466950px;}
.x5_c00200{left:371.484000px;}
.x6_c00200{left:416.464950px;}
.xf_c00200{left:437.521350px;}
.x9_c00200{left:512.702250px;}
.x10_c00200{left:537.528150px;}
.xa_c00200{left:550.717950px;}
.xb_c00200{left:564.952200px;}
.xc_c00200{left:598.953750px;}
.x11_c00200{left:603.363900px;}
.x12_c00200{left:641.379600px;}
.x15_c00200{left:759.915000px;}
@media print{
.v2_c00200{vertical-align:-21.760000pt;}
.v0_c00200{vertical-align:0.000000pt;}
.v1_c00200{vertical-align:26.880000pt;}
.ls8_c00200{letter-spacing:-0.159616pt;}
.ls4_c00200{letter-spacing:0.000000pt;}
.ls9_c00200{letter-spacing:0.128000pt;}
.lsa_c00200{letter-spacing:0.681599pt;}
.ls7_c00200{letter-spacing:4.742400pt;}
.ls2_c00200{letter-spacing:5.311467pt;}
.ls1_c00200{letter-spacing:5.312000pt;}
.ls3_c00200{letter-spacing:5.475484pt;}
.ls6_c00200{letter-spacing:10.016000pt;}
.ls5_c00200{letter-spacing:11.507200pt;}
.ls0_c00200{letter-spacing:48.896000pt;}
.ws0_c00200{word-spacing:-18.620160pt;}
.ws3_c00200{word-spacing:-15.720049pt;}
.ws1_c00200{word-spacing:-10.159744pt;}
.ws2_c00200{word-spacing:-9.024000pt;}
.ws4_c00200{word-spacing:0.000000pt;}
._6_c00200{margin-left:-9.408000pt;}
._3_c00200{width:1.408000pt;}
._9_c00200{width:2.688000pt;}
._c_c00200{width:3.712000pt;}
._1_c00200{width:5.248000pt;}
._8_c00200{width:6.464000pt;}
._b_c00200{width:8.064000pt;}
._2_c00200{width:9.600000pt;}
._5_c00200{width:11.008000pt;}
._4_c00200{width:12.032000pt;}
._a_c00200{width:13.248000pt;}
._0_c00200{width:19.200000pt;}
._7_c00200{width:20.800000pt;}
.fs4_c00200{font-size:32.000000pt;}
.fs3_c00200{font-size:37.120000pt;}
.fs2_c00200{font-size:49.920000pt;}
.fs5_c00200{font-size:52.480000pt;}
.fs7_c00200{font-size:53.333333pt;}
.fs6_c00200{font-size:54.095146pt;}
.fs0_c00200{font-size:64.000000pt;}
.fs1_c00200{font-size:65.969690pt;}
.y0_c00200{bottom:0.000000pt;}
.y21_c00200{bottom:2.773467pt;}
.y20_c00200{bottom:30.884000pt;}
.y1_c00200{bottom:48.000000pt;}
.y1f_c00200{bottom:49.320000pt;}
.y1e_c00200{bottom:54.760000pt;}
.y1d_c00200{bottom:78.440000pt;}
.y1c_c00200{bottom:404.200000pt;}
.y1b_c00200{bottom:436.200000pt;}
.y1a_c00200{bottom:468.200000pt;}
.y19_c00200{bottom:500.200000pt;}
.y18_c00200{bottom:532.200000pt;}
.y17_c00200{bottom:551.080000pt;}
.y16_c00200{bottom:569.640000pt;}
.y15_c00200{bottom:588.200000pt;}
.y14_c00200{bottom:607.080000pt;}
.y13_c00200{bottom:625.640000pt;}
.y12_c00200{bottom:644.520000pt;}
.y11_c00200{bottom:676.520000pt;}
.y10_c00200{bottom:695.080000pt;}
.yf_c00200{bottom:713.640000pt;}
.ye_c00200{bottom:732.520000pt;}
.yd_c00200{bottom:751.080000pt;}
.yc_c00200{bottom:769.640000pt;}
.yb_c00200{bottom:788.520000pt;}
.ya_c00200{bottom:807.080000pt;}
.y9_c00200{bottom:825.640000pt;}
.y8_c00200{bottom:857.640000pt;}
.y7_c00200{bottom:876.520000pt;}
.y6_c00200{bottom:895.080000pt;}
.y5_c00200{bottom:913.640000pt;}
.y4_c00200{bottom:945.640000pt;}
.y3_c00200{bottom:964.520000pt;}
.y2_c00200{bottom:1011.880000pt;}
.h9_c00200{height:17.116000pt;}
.h6_c00200{height:28.992000pt;}
.ha_c00200{height:41.173333pt;}
.h7_c00200{height:41.761453pt;}
.h8_c00200{height:47.546880pt;}
.h4_c00200{height:50.928601pt;}
.h3_c00200{height:57.984000pt;}
.h5_c00200{height:60.510720pt;}
.h2_c00200{height:1067.880000pt;}
.h0_c00200{height:1122.520000pt;}
.h1_c00200{height:1122.666667pt;}
.w3_c00200{width:22.240000pt;}
.w2_c00200{width:767.960000pt;}
.w0_c00200{width:793.720000pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:12.880000pt;}
.x2_c00200{left:100.480133pt;}
.x13_c00200{left:113.082400pt;}
.x7_c00200{left:124.479067pt;}
.x3_c00200{left:144.463600pt;}
.x8_c00200{left:148.479067pt;}
.x14_c00200{left:151.614933pt;}
.xd_c00200{left:153.808000pt;}
.xe_c00200{left:185.791600pt;}
.x4_c00200{left:192.415067pt;}
.x5_c00200{left:330.208000pt;}
.x6_c00200{left:370.191067pt;}
.xf_c00200{left:388.907867pt;}
.x9_c00200{left:455.735333pt;}
.x10_c00200{left:477.802800pt;}
.xa_c00200{left:489.527067pt;}
.xb_c00200{left:502.179733pt;}
.xc_c00200{left:532.403333pt;}
.x11_c00200{left:536.323467pt;}
.x12_c00200{left:570.115200pt;}
.x15_c00200{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_58a38e8c8e44e6f34d844e40.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;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_c00201;src:url('chunks/assets/font_92a78ea4e91439b36f264eec.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;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:ff3_c00201;src:url('chunks/assets/font_33ffbee26c21cf9ee48b1b06.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:0.787000;font-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_c00201{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00201{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls3_c00201{letter-spacing:0.000000px;}
.ls5_c00201{letter-spacing:0.202464px;}
.ls0_c00201{letter-spacing:0.238560px;}
.ls6_c00201{letter-spacing:0.247139px;}
.ls4_c00201{letter-spacing:0.399600px;}
.ls7_c00201{letter-spacing:0.576658px;}
.ls1_c00201{letter-spacing:5.976000px;}
.ls2_c00201{letter-spacing:6.159920px;}
.sc__c00201{text-shadow:none;}
.sc1_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00201{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc1_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00201{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00201{word-spacing:-15.844353px;}
.ws0_c00201{word-spacing:-15.514834px;}
.ws1_c00201{word-spacing:-15.211440px;}
.ws3_c00201{word-spacing:0.000000px;}
._1_c00201{margin-left:-1.132680px;}
._0_c00201{width:1.014120px;}
.fc1_c00201{color:transparent;}
.fc0_c00201{color:rgb(0,0,0);}
.fs2_c00201{font-size:53.280000px;}
.fs3_c00201{font-size:54.919767px;}
.fs4_c00201{font-size:60.000000px;}
.fs0_c00201{font-size:72.000000px;}
.fs1_c00201{font-size:74.215901px;}
.y0_c00201{bottom:0.000000px;}
.y27_c00201{bottom:3.120150px;}
.y25_c00201{bottom:14.399850px;}
.y20_c00201{bottom:14.400000px;}
.y23_c00201{bottom:25.560000px;}
.y26_c00201{bottom:34.744500px;}
.y22_c00201{bottom:41.400000px;}
.y1_c00201{bottom:54.000000px;}
.y1e_c00201{bottom:112.725000px;}
.y1d_c00201{bottom:148.725000px;}
.y21_c00201{bottom:157.365000px;}
.y1c_c00201{bottom:184.725000px;}
.y1b_c00201{bottom:220.725000px;}
.y1a_c00201{bottom:256.725000px;}
.y19_c00201{bottom:292.725000px;}
.y18_c00201{bottom:328.725000px;}
.y17_c00201{bottom:364.725000px;}
.y16_c00201{bottom:400.725000px;}
.y15_c00201{bottom:436.725000px;}
.y14_c00201{bottom:472.725000px;}
.y1f_c00201{bottom:481.365000px;}
.y13_c00201{bottom:509.085000px;}
.y12_c00201{bottom:545.085000px;}
.y11_c00201{bottom:581.085000px;}
.y10_c00201{bottom:617.085000px;}
.yf_c00201{bottom:653.085000px;}
.ye_c00201{bottom:689.085000px;}
.yd_c00201{bottom:725.085000px;}
.yc_c00201{bottom:761.085000px;}
.yb_c00201{bottom:797.085000px;}
.y24_c00201{bottom:832.365000px;}
.ya_c00201{bottom:833.085000px;}
.y9_c00201{bottom:869.085000px;}
.y8_c00201{bottom:905.085000px;}
.y7_c00201{bottom:941.085000px;}
.y6_c00201{bottom:977.085000px;}
.y5_c00201{bottom:1013.085000px;}
.y4_c00201{bottom:1049.085000px;}
.y3_c00201{bottom:1085.085000px;}
.y2_c00201{bottom:1138.365000px;}
.h9_c00201{height:19.255500px;}
.h5_c00201{height:27.000000px;}
.h6_c00201{height:41.132160px;}
.h7_c00201{height:42.398060px;}
.ha_c00201{height:46.320000px;}
.h8_c00201{height:54.000000px;}
.h3_c00201{height:55.584000px;}
.h4_c00201{height:57.294676px;}
.h2_c00201{height:1201.365000px;}
.h0_c00201{height:1262.835000px;}
.h1_c00201{height:1263.000000px;}
.w5_c00201{width:25.020000px;}
.w4_c00201{width:235.440000px;}
.w3_c00201{width:600.840000px;}
.w2_c00201{width:863.955000px;}
.w0_c00201{width:892.935000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x6_c00201{left:12.537600px;}
.x1_c00201{left:14.490000px;}
.xa_c00201{left:74.892000px;}
.x2_c00201{left:113.040150px;}
.x7_c00201{left:122.844300px;}
.x5_c00201{left:124.290000px;}
.xb_c00201{left:129.910350px;}
.x8_c00201{left:156.579600px;}
.x3_c00201{left:162.521550px;}
.x9_c00201{left:175.410000px;}
.x4_c00201{left:216.466950px;}
.xc_c00201{left:240.217050px;}
.xd_c00201{left:273.952500px;}
.xe_c00201{left:423.232050px;}
.x10_c00201{left:448.290000px;}
.xf_c00201{left:462.246300px;}
.x11_c00201{left:759.915000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls3_c00201{letter-spacing:0.000000pt;}
.ls5_c00201{letter-spacing:0.179968pt;}
.ls0_c00201{letter-spacing:0.212053pt;}
.ls6_c00201{letter-spacing:0.219679pt;}
.ls4_c00201{letter-spacing:0.355200pt;}
.ls7_c00201{letter-spacing:0.512584pt;}
.ls1_c00201{letter-spacing:5.312000pt;}
.ls2_c00201{letter-spacing:5.475484pt;}
.ws2_c00201{word-spacing:-14.083869pt;}
.ws0_c00201{word-spacing:-13.790964pt;}
.ws1_c00201{word-spacing:-13.521280pt;}
.ws3_c00201{word-spacing:0.000000pt;}
._1_c00201{margin-left:-1.006827pt;}
._0_c00201{width:0.901440pt;}
.fs2_c00201{font-size:47.360000pt;}
.fs3_c00201{font-size:48.817571pt;}
.fs4_c00201{font-size:53.333333pt;}
.fs0_c00201{font-size:64.000000pt;}
.fs1_c00201{font-size:65.969690pt;}
.y0_c00201{bottom:0.000000pt;}
.y27_c00201{bottom:2.773467pt;}
.y25_c00201{bottom:12.799867pt;}
.y20_c00201{bottom:12.800000pt;}
.y23_c00201{bottom:22.720000pt;}
.y26_c00201{bottom:30.884000pt;}
.y22_c00201{bottom:36.800000pt;}
.y1_c00201{bottom:48.000000pt;}
.y1e_c00201{bottom:100.200000pt;}
.y1d_c00201{bottom:132.200000pt;}
.y21_c00201{bottom:139.880000pt;}
.y1c_c00201{bottom:164.200000pt;}
.y1b_c00201{bottom:196.200000pt;}
.y1a_c00201{bottom:228.200000pt;}
.y19_c00201{bottom:260.200000pt;}
.y18_c00201{bottom:292.200000pt;}
.y17_c00201{bottom:324.200000pt;}
.y16_c00201{bottom:356.200000pt;}
.y15_c00201{bottom:388.200000pt;}
.y14_c00201{bottom:420.200000pt;}
.y1f_c00201{bottom:427.880000pt;}
.y13_c00201{bottom:452.520000pt;}
.y12_c00201{bottom:484.520000pt;}
.y11_c00201{bottom:516.520000pt;}
.y10_c00201{bottom:548.520000pt;}
.yf_c00201{bottom:580.520000pt;}
.ye_c00201{bottom:612.520000pt;}
.yd_c00201{bottom:644.520000pt;}
.yc_c00201{bottom:676.520000pt;}
.yb_c00201{bottom:708.520000pt;}
.y24_c00201{bottom:739.880000pt;}
.ya_c00201{bottom:740.520000pt;}
.y9_c00201{bottom:772.520000pt;}
.y8_c00201{bottom:804.520000pt;}
.y7_c00201{bottom:836.520000pt;}
.y6_c00201{bottom:868.520000pt;}
.y5_c00201{bottom:900.520000pt;}
.y4_c00201{bottom:932.520000pt;}
.y3_c00201{bottom:964.520000pt;}
.y2_c00201{bottom:1011.880000pt;}
.h9_c00201{height:17.116000pt;}
.h5_c00201{height:24.000000pt;}
.h6_c00201{height:36.561920pt;}
.h7_c00201{height:37.687165pt;}
.ha_c00201{height:41.173333pt;}
.h8_c00201{height:48.000000pt;}
.h3_c00201{height:49.408000pt;}
.h4_c00201{height:50.928601pt;}
.h2_c00201{height:1067.880000pt;}
.h0_c00201{height:1122.520000pt;}
.h1_c00201{height:1122.666667pt;}
.w5_c00201{width:22.240000pt;}
.w4_c00201{width:209.280000pt;}
.w3_c00201{width:534.080000pt;}
.w2_c00201{width:767.960000pt;}
.w0_c00201{width:793.720000pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x6_c00201{left:11.144533pt;}
.x1_c00201{left:12.880000pt;}
.xa_c00201{left:66.570667pt;}
.x2_c00201{left:100.480133pt;}
.x7_c00201{left:109.194933pt;}
.x5_c00201{left:110.480000pt;}
.xb_c00201{left:115.475867pt;}
.x8_c00201{left:139.181867pt;}
.x3_c00201{left:144.463600pt;}
.x9_c00201{left:155.920000pt;}
.x4_c00201{left:192.415067pt;}
.xc_c00201{left:213.526267pt;}
.xd_c00201{left:243.513333pt;}
.xe_c00201{left:376.206267pt;}
.x10_c00201{left:398.480000pt;}
.xf_c00201{left:410.885600pt;}
.x11_c00201{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e553dd2c163c4f5983515854.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;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_c00202;src:url('chunks/assets/font_b3c8a9383760335eb32b835d.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;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:ff3_c00202;src:url('chunks/assets/font_6354ddfe92e719de62be2bb9.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:0.787000;font-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_c00202{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00202{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00202{letter-spacing:0.000000px;}
.ls6_c00202{letter-spacing:0.202464px;}
.ls0_c00202{letter-spacing:0.238560px;}
.ls9_c00202{letter-spacing:0.239760px;}
.ls7_c00202{letter-spacing:0.247139px;}
.ls8_c00202{letter-spacing:0.319680px;}
.ls5_c00202{letter-spacing:0.399600px;}
.ls1_c00202{letter-spacing:0.399720px;}
.ls2_c00202{letter-spacing:5.976000px;}
.ls3_c00202{letter-spacing:6.159920px;}
.sc__c00202{text-shadow:none;}
.sc1_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00202{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc1_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00202{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00202{word-spacing:-15.514834px;}
.ws0_c00202{word-spacing:-15.211440px;}
.ws1_c00202{word-spacing:-15.051600px;}
.ws3_c00202{word-spacing:0.000000px;}
._1_c00202{margin-left:-1.021224px;}
._0_c00202{width:1.035432px;}
.fc1_c00202{color:transparent;}
.fc0_c00202{color:rgb(0,0,0);}
.fs2_c00202{font-size:53.280000px;}
.fs3_c00202{font-size:54.919767px;}
.fs4_c00202{font-size:60.000000px;}
.fs0_c00202{font-size:72.000000px;}
.fs1_c00202{font-size:74.215901px;}
.y0_c00202{bottom:0.000000px;}
.y26_c00202{bottom:3.120150px;}
.y24_c00202{bottom:5.760000px;}
.y21_c00202{bottom:18.720000px;}
.y23_c00202{bottom:21.240000px;}
.y1e_c00202{bottom:25.560000px;}
.y20_c00202{bottom:34.560000px;}
.y25_c00202{bottom:34.744500px;}
.y1d_c00202{bottom:41.400000px;}
.y1_c00202{bottom:54.000000px;}
.y1c_c00202{bottom:76.365000px;}
.y1b_c00202{bottom:220.725000px;}
.y1a_c00202{bottom:256.725000px;}
.y19_c00202{bottom:292.725000px;}
.y18_c00202{bottom:328.725000px;}
.y17_c00202{bottom:364.725000px;}
.y16_c00202{bottom:400.725000px;}
.y15_c00202{bottom:436.725000px;}
.y14_c00202{bottom:472.725000px;}
.y22_c00202{bottom:499.365000px;}
.y13_c00202{bottom:509.085000px;}
.y12_c00202{bottom:545.085000px;}
.y11_c00202{bottom:581.085000px;}
.y10_c00202{bottom:617.085000px;}
.yf_c00202{bottom:653.085000px;}
.ye_c00202{bottom:689.085000px;}
.yd_c00202{bottom:725.085000px;}
.yc_c00202{bottom:761.085000px;}
.y1f_c00202{bottom:769.365000px;}
.yb_c00202{bottom:797.085000px;}
.ya_c00202{bottom:833.085000px;}
.y9_c00202{bottom:869.085000px;}
.y8_c00202{bottom:905.085000px;}
.y7_c00202{bottom:941.085000px;}
.y6_c00202{bottom:977.085000px;}
.y5_c00202{bottom:1013.085000px;}
.y4_c00202{bottom:1049.085000px;}
.y3_c00202{bottom:1085.085000px;}
.y2_c00202{bottom:1138.365000px;}
.ha_c00202{height:19.255500px;}
.h9_c00202{height:33.840000px;}
.h6_c00202{height:41.132160px;}
.h7_c00202{height:42.398060px;}
.hb_c00202{height:46.320000px;}
.h8_c00202{height:47.160000px;}
.h5_c00202{height:54.000000px;}
.h3_c00202{height:55.584000px;}
.h4_c00202{height:57.294676px;}
.h2_c00202{height:1201.365000px;}
.h0_c00202{height:1262.835000px;}
.h1_c00202{height:1263.000000px;}
.w6_c00202{width:25.020000px;}
.w5_c00202{width:250.920000px;}
.w4_c00202{width:591.840000px;}
.w3_c00202{width:598.680000px;}
.w2_c00202{width:863.955000px;}
.w0_c00202{width:892.935000px;}
.w1_c00202{width:893.250000px;}
.x0_c00202{left:0.000000px;}
.x10_c00202{left:6.734100px;}
.x1_c00202{left:14.490000px;}
.xb_c00202{left:30.326250px;}
.x11_c00202{left:95.306250px;}
.x2_c00202{left:113.040150px;}
.x6_c00202{left:118.915650px;}
.x5_c00202{left:122.850000px;}
.xa_c00202{left:124.290000px;}
.x9_c00202{left:127.164450px;}
.x3_c00202{left:162.521550px;}
.xe_c00202{left:183.758400px;}
.xc_c00202{left:190.906050px;}
.x4_c00202{left:216.466950px;}
.xd_c00202{left:224.641350px;}
.x7_c00202{left:229.222350px;}
.x8_c00202{left:266.710650px;}
.xf_c00202{left:314.370000px;}
.x12_c00202{left:759.915000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls4_c00202{letter-spacing:0.000000pt;}
.ls6_c00202{letter-spacing:0.179968pt;}
.ls0_c00202{letter-spacing:0.212053pt;}
.ls9_c00202{letter-spacing:0.213120pt;}
.ls7_c00202{letter-spacing:0.219679pt;}
.ls8_c00202{letter-spacing:0.284160pt;}
.ls5_c00202{letter-spacing:0.355200pt;}
.ls1_c00202{letter-spacing:0.355307pt;}
.ls2_c00202{letter-spacing:5.312000pt;}
.ls3_c00202{letter-spacing:5.475484pt;}
.ws2_c00202{word-spacing:-13.790964pt;}
.ws0_c00202{word-spacing:-13.521280pt;}
.ws1_c00202{word-spacing:-13.379200pt;}
.ws3_c00202{word-spacing:0.000000pt;}
._1_c00202{margin-left:-0.907755pt;}
._0_c00202{width:0.920384pt;}
.fs2_c00202{font-size:47.360000pt;}
.fs3_c00202{font-size:48.817571pt;}
.fs4_c00202{font-size:53.333333pt;}
.fs0_c00202{font-size:64.000000pt;}
.fs1_c00202{font-size:65.969690pt;}
.y0_c00202{bottom:0.000000pt;}
.y26_c00202{bottom:2.773467pt;}
.y24_c00202{bottom:5.120000pt;}
.y21_c00202{bottom:16.640000pt;}
.y23_c00202{bottom:18.880000pt;}
.y1e_c00202{bottom:22.720000pt;}
.y20_c00202{bottom:30.720000pt;}
.y25_c00202{bottom:30.884000pt;}
.y1d_c00202{bottom:36.800000pt;}
.y1_c00202{bottom:48.000000pt;}
.y1c_c00202{bottom:67.880000pt;}
.y1b_c00202{bottom:196.200000pt;}
.y1a_c00202{bottom:228.200000pt;}
.y19_c00202{bottom:260.200000pt;}
.y18_c00202{bottom:292.200000pt;}
.y17_c00202{bottom:324.200000pt;}
.y16_c00202{bottom:356.200000pt;}
.y15_c00202{bottom:388.200000pt;}
.y14_c00202{bottom:420.200000pt;}
.y22_c00202{bottom:443.880000pt;}
.y13_c00202{bottom:452.520000pt;}
.y12_c00202{bottom:484.520000pt;}
.y11_c00202{bottom:516.520000pt;}
.y10_c00202{bottom:548.520000pt;}
.yf_c00202{bottom:580.520000pt;}
.ye_c00202{bottom:612.520000pt;}
.yd_c00202{bottom:644.520000pt;}
.yc_c00202{bottom:676.520000pt;}
.y1f_c00202{bottom:683.880000pt;}
.yb_c00202{bottom:708.520000pt;}
.ya_c00202{bottom:740.520000pt;}
.y9_c00202{bottom:772.520000pt;}
.y8_c00202{bottom:804.520000pt;}
.y7_c00202{bottom:836.520000pt;}
.y6_c00202{bottom:868.520000pt;}
.y5_c00202{bottom:900.520000pt;}
.y4_c00202{bottom:932.520000pt;}
.y3_c00202{bottom:964.520000pt;}
.y2_c00202{bottom:1011.880000pt;}
.ha_c00202{height:17.116000pt;}
.h9_c00202{height:30.080000pt;}
.h6_c00202{height:36.561920pt;}
.h7_c00202{height:37.687165pt;}
.hb_c00202{height:41.173333pt;}
.h8_c00202{height:41.920000pt;}
.h5_c00202{height:48.000000pt;}
.h3_c00202{height:49.408000pt;}
.h4_c00202{height:50.928601pt;}
.h2_c00202{height:1067.880000pt;}
.h0_c00202{height:1122.520000pt;}
.h1_c00202{height:1122.666667pt;}
.w6_c00202{width:22.240000pt;}
.w5_c00202{width:223.040000pt;}
.w4_c00202{width:526.080000pt;}
.w3_c00202{width:532.160000pt;}
.w2_c00202{width:767.960000pt;}
.w0_c00202{width:793.720000pt;}
.w1_c00202{width:794.000000pt;}
.x0_c00202{left:0.000000pt;}
.x10_c00202{left:5.985867pt;}
.x1_c00202{left:12.880000pt;}
.xb_c00202{left:26.956667pt;}
.x11_c00202{left:84.716667pt;}
.x2_c00202{left:100.480133pt;}
.x6_c00202{left:105.702800pt;}
.x5_c00202{left:109.200000pt;}
.xa_c00202{left:110.480000pt;}
.x9_c00202{left:113.035067pt;}
.x3_c00202{left:144.463600pt;}
.xe_c00202{left:163.340800pt;}
.xc_c00202{left:169.694267pt;}
.x4_c00202{left:192.415067pt;}
.xd_c00202{left:199.681200pt;}
.x7_c00202{left:203.753200pt;}
.x8_c00202{left:237.076133pt;}
.xf_c00202{left:279.440000pt;}
.x12_c00202{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_65a8f290c7b81b2a47e22e14.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.134000;font-style:normal;font-weight:normal;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_2cd3ffb0432dd4a3ce3b76ac.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;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:ff3_c00203;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;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:ff5_c00203;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00203;src:url('chunks/assets/font_85fbef2148fd4b3f87844a75.woff2')format("woff");}.ff6_c00203{font-family:ff6_c00203;line-height:0.787000;font-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_c00203{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00203{vertical-align:-24.480000px;}
.v0_c00203{vertical-align:0.000000px;}
.v1_c00203{vertical-align:30.240000px;}
.ls11_c00203{letter-spacing:0.000000px;}
.lsa_c00203{letter-spacing:0.236160px;}
.lsd_c00203{letter-spacing:0.265680px;}
.lsc_c00203{letter-spacing:0.295200px;}
.ls1f_c00203{letter-spacing:0.318816px;}
.ls7_c00203{letter-spacing:0.339000px;}
.ls5_c00203{letter-spacing:0.346440px;}
.ls1a_c00203{letter-spacing:0.425088px;}
.ls1b_c00203{letter-spacing:0.438171px;}
.lsf_c00203{letter-spacing:0.531360px;}
.ls18_c00203{letter-spacing:0.547713px;}
.ls4_c00203{letter-spacing:0.701640px;}
.lsb_c00203{letter-spacing:0.712027px;}
.ls21_c00203{letter-spacing:0.718113px;}
.ls9_c00203{letter-spacing:0.722040px;}
.ls1d_c00203{letter-spacing:0.766799px;}
.ls1e_c00203{letter-spacing:1.292976px;}
.ls1c_c00203{letter-spacing:2.904768px;}
.ls2_c00203{letter-spacing:4.964520px;}
.ls14_c00203{letter-spacing:5.009472px;}
.ls16_c00203{letter-spacing:5.149872px;}
.ls13_c00203{letter-spacing:5.245344px;}
.ls12_c00203{letter-spacing:5.308367px;}
.ls15_c00203{letter-spacing:5.335200px;}
.lse_c00203{letter-spacing:5.372640px;}
.ls17_c00203{letter-spacing:5.430672px;}
.ls20_c00203{letter-spacing:5.514336px;}
.ls1_c00203{letter-spacing:5.974800px;}
.ls3_c00203{letter-spacing:5.976000px;}
.ls8_c00203{letter-spacing:5.991000px;}
.ls10_c00203{letter-spacing:6.159920px;}
.ls0_c00203{letter-spacing:6.191462px;}
.ls19_c00203{letter-spacing:7.781472px;}
.ls6_c00203{letter-spacing:9.417600px;}
.sc__c00203{text-shadow:none;}
.sc1_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00203{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc1_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00203{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00203{word-spacing:-25.992000px;}
.wsb_c00203{word-spacing:-21.927456px;}
.ws0_c00203{word-spacing:-21.401343px;}
.ws6_c00203{word-spacing:-21.043152px;}
.ws3_c00203{word-spacing:-20.762352px;}
.ws1_c00203{word-spacing:-20.621952px;}
.ws5_c00203{word-spacing:-20.016000px;}
.wsa_c00203{word-spacing:-17.685056px;}
.ws9_c00203{word-spacing:-17.630284px;}
.ws8_c00203{word-spacing:-17.465970px;}
.wsc_c00203{word-spacing:-16.944480px;}
.ws4_c00203{word-spacing:-11.609280px;}
.ws7_c00203{word-spacing:-10.008000px;}
.wsd_c00203{word-spacing:0.000000px;}
._f_c00203{margin-left:-8.442720px;}
._e_c00203{margin-left:-7.202880px;}
._10_c00203{margin-left:-6.081120px;}
._a_c00203{margin-left:-3.096000px;}
._11_c00203{margin-left:-2.054880px;}
._d_c00203{margin-left:-1.003680px;}
._0_c00203{width:1.186536px;}
._1_c00203{width:3.096000px;}
._9_c00203{width:4.176000px;}
._12_c00203{width:5.329440px;}
._6_c00203{width:6.408000px;}
._2_c00203{width:8.352000px;}
._5_c00203{width:9.792000px;}
._8_c00203{width:10.944000px;}
._c_c00203{width:12.960000px;}
._b_c00203{width:15.048000px;}
._4_c00203{width:21.024000px;}
._3_c00203{width:23.688000px;}
._7_c00203{width:24.758400px;}
.fc0_c00203{color:rgb(0,0,0);}
.fs5_c00203{font-size:36.000000px;}
.fs4_c00203{font-size:41.760000px;}
.fs3_c00203{font-size:56.160000px;}
.fs2_c00203{font-size:57.888403px;}
.fs6_c00203{font-size:59.040000px;}
.fs8_c00203{font-size:60.000000px;}
.fs7_c00203{font-size:60.857039px;}
.fs0_c00203{font-size:72.000000px;}
.fs1_c00203{font-size:74.215901px;}
.y0_c00203{bottom:0.000000px;}
.y30_c00203{bottom:3.120150px;}
.y2f_c00203{bottom:34.744500px;}
.y1_c00203{bottom:54.000000px;}
.y2e_c00203{bottom:61.605000px;}
.y2d_c00203{bottom:72.765000px;}
.y2c_c00203{bottom:72.768600px;}
.y2b_c00203{bottom:90.406800px;}
.y2a_c00203{bottom:114.165000px;}
.y28_c00203{bottom:125.682840px;}
.y29_c00203{bottom:125.685000px;}
.y27_c00203{bottom:143.321040px;}
.y26_c00203{bottom:166.725000px;}
.y25_c00203{bottom:178.245000px;}
.y24_c00203{bottom:178.246800px;}
.y23_c00203{bottom:195.885000px;}
.y22_c00203{bottom:202.005000px;}
.y21_c00203{bottom:213.165000px;}
.y20_c00203{bottom:219.285000px;}
.y1f_c00203{bottom:236.925000px;}
.y1e_c00203{bottom:263.565000px;}
.y1d_c00203{bottom:353.925000px;}
.y1c_c00203{bottom:374.805000px;}
.y1b_c00203{bottom:396.045000px;}
.y1a_c00203{bottom:432.045000px;}
.y19_c00203{bottom:468.045000px;}
.y18_c00203{bottom:488.925000px;}
.y17_c00203{bottom:509.805000px;}
.y16_c00203{bottom:531.045000px;}
.y15_c00203{bottom:567.045000px;}
.y14_c00203{bottom:603.045000px;}
.y13_c00203{bottom:639.045000px;}
.y12_c00203{bottom:675.765000px;}
.y11_c00203{bottom:696.285000px;}
.y10_c00203{bottom:717.525000px;}
.yf_c00203{bottom:738.405000px;}
.ye_c00203{bottom:759.285000px;}
.yd_c00203{bottom:780.525000px;}
.yc_c00203{bottom:816.525000px;}
.yb_c00203{bottom:852.525000px;}
.ya_c00203{bottom:890.685000px;}
.y9_c00203{bottom:928.845000px;}
.y8_c00203{bottom:964.845000px;}
.y7_c00203{bottom:986.085000px;}
.y6_c00203{bottom:1006.965000px;}
.y5_c00203{bottom:1027.845000px;}
.y4_c00203{bottom:1049.085000px;}
.y3_c00203{bottom:1085.085000px;}
.y2_c00203{bottom:1138.365000px;}
.ha_c00203{height:19.255500px;}
.h7_c00203{height:32.616000px;}
.hb_c00203{height:46.320000px;}
.h8_c00203{height:46.981634px;}
.h6_c00203{height:52.031250px;}
.h9_c00203{height:53.490240px;}
.h4_c00203{height:57.294676px;}
.h3_c00203{height:65.232000px;}
.h5_c00203{height:68.074560px;}
.h2_c00203{height:1201.365000px;}
.h0_c00203{height:1262.835000px;}
.h1_c00203{height:1263.000000px;}
.w3_c00203{width:25.020000px;}
.w2_c00203{width:863.955000px;}
.w0_c00203{width:892.935000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:14.490000px;}
.x2_c00203{left:113.040150px;}
.xe_c00203{left:140.038500px;}
.x10_c00203{left:150.029700px;}
.x3_c00203{left:162.521550px;}
.x14_c00203{left:164.728350px;}
.x6_c00203{left:167.055150px;}
.xa_c00203{left:172.024950px;}
.x15_c00203{left:184.722300px;}
.xb_c00203{left:222.028200px;}
.x4_c00203{left:227.986050px;}
.xf_c00203{left:247.048800px;}
.x16_c00203{left:283.899150px;}
.xc_c00203{left:319.047000px;}
.x17_c00203{left:327.248250px;}
.xd_c00203{left:348.044250px;}
.x18_c00203{left:393.081300px;}
.x7_c00203{left:401.125800px;}
.x9_c00203{left:410.223300px;}
.x19_c00203{left:468.094050px;}
.x1a_c00203{left:472.263750px;}
.x13_c00203{left:497.568600px;}
.x11_c00203{left:517.329750px;}
.x8_c00203{left:528.132150px;}
.x5_c00203{left:530.362500px;}
.x12_c00203{left:573.172800px;}
.x1b_c00203{left:759.915000px;}
@media print{
.v2_c00203{vertical-align:-21.760000pt;}
.v0_c00203{vertical-align:0.000000pt;}
.v1_c00203{vertical-align:26.880000pt;}
.ls11_c00203{letter-spacing:0.000000pt;}
.lsa_c00203{letter-spacing:0.209920pt;}
.lsd_c00203{letter-spacing:0.236160pt;}
.lsc_c00203{letter-spacing:0.262400pt;}
.ls1f_c00203{letter-spacing:0.283392pt;}
.ls7_c00203{letter-spacing:0.301333pt;}
.ls5_c00203{letter-spacing:0.307947pt;}
.ls1a_c00203{letter-spacing:0.377856pt;}
.ls1b_c00203{letter-spacing:0.389485pt;}
.lsf_c00203{letter-spacing:0.472320pt;}
.ls18_c00203{letter-spacing:0.486856pt;}
.ls4_c00203{letter-spacing:0.623680pt;}
.lsb_c00203{letter-spacing:0.632913pt;}
.ls21_c00203{letter-spacing:0.638323pt;}
.ls9_c00203{letter-spacing:0.641813pt;}
.ls1d_c00203{letter-spacing:0.681599pt;}
.ls1e_c00203{letter-spacing:1.149312pt;}
.ls1c_c00203{letter-spacing:2.582016pt;}
.ls2_c00203{letter-spacing:4.412907pt;}
.ls14_c00203{letter-spacing:4.452864pt;}
.ls16_c00203{letter-spacing:4.577664pt;}
.ls13_c00203{letter-spacing:4.662528pt;}
.ls12_c00203{letter-spacing:4.718548pt;}
.ls15_c00203{letter-spacing:4.742400pt;}
.lse_c00203{letter-spacing:4.775680pt;}
.ls17_c00203{letter-spacing:4.827264pt;}
.ls20_c00203{letter-spacing:4.901632pt;}
.ls1_c00203{letter-spacing:5.310933pt;}
.ls3_c00203{letter-spacing:5.312000pt;}
.ls8_c00203{letter-spacing:5.325333pt;}
.ls10_c00203{letter-spacing:5.475484pt;}
.ls0_c00203{letter-spacing:5.503521pt;}
.ls19_c00203{letter-spacing:6.916864pt;}
.ls6_c00203{letter-spacing:8.371200pt;}
.ws2_c00203{word-spacing:-23.104000pt;}
.wsb_c00203{word-spacing:-19.491072pt;}
.ws0_c00203{word-spacing:-19.023416pt;}
.ws6_c00203{word-spacing:-18.705024pt;}
.ws3_c00203{word-spacing:-18.455424pt;}
.ws1_c00203{word-spacing:-18.330624pt;}
.ws5_c00203{word-spacing:-17.792000pt;}
.wsa_c00203{word-spacing:-15.720049pt;}
.ws9_c00203{word-spacing:-15.671364pt;}
.ws8_c00203{word-spacing:-15.525307pt;}
.wsc_c00203{word-spacing:-15.061760pt;}
.ws4_c00203{word-spacing:-10.319360pt;}
.ws7_c00203{word-spacing:-8.896000pt;}
.wsd_c00203{word-spacing:0.000000pt;}
._f_c00203{margin-left:-7.504640pt;}
._e_c00203{margin-left:-6.402560pt;}
._10_c00203{margin-left:-5.405440pt;}
._a_c00203{margin-left:-2.752000pt;}
._11_c00203{margin-left:-1.826560pt;}
._d_c00203{margin-left:-0.892160pt;}
._0_c00203{width:1.054699pt;}
._1_c00203{width:2.752000pt;}
._9_c00203{width:3.712000pt;}
._12_c00203{width:4.737280pt;}
._6_c00203{width:5.696000pt;}
._2_c00203{width:7.424000pt;}
._5_c00203{width:8.704000pt;}
._8_c00203{width:9.728000pt;}
._c_c00203{width:11.520000pt;}
._b_c00203{width:13.376000pt;}
._4_c00203{width:18.688000pt;}
._3_c00203{width:21.056000pt;}
._7_c00203{width:22.007467pt;}
.fs5_c00203{font-size:32.000000pt;}
.fs4_c00203{font-size:37.120000pt;}
.fs3_c00203{font-size:49.920000pt;}
.fs2_c00203{font-size:51.456358pt;}
.fs6_c00203{font-size:52.480000pt;}
.fs8_c00203{font-size:53.333333pt;}
.fs7_c00203{font-size:54.095146pt;}
.fs0_c00203{font-size:64.000000pt;}
.fs1_c00203{font-size:65.969690pt;}
.y0_c00203{bottom:0.000000pt;}
.y30_c00203{bottom:2.773467pt;}
.y2f_c00203{bottom:30.884000pt;}
.y1_c00203{bottom:48.000000pt;}
.y2e_c00203{bottom:54.760000pt;}
.y2d_c00203{bottom:64.680000pt;}
.y2c_c00203{bottom:64.683200pt;}
.y2b_c00203{bottom:80.361600pt;}
.y2a_c00203{bottom:101.480000pt;}
.y28_c00203{bottom:111.718080pt;}
.y29_c00203{bottom:111.720000pt;}
.y27_c00203{bottom:127.396480pt;}
.y26_c00203{bottom:148.200000pt;}
.y25_c00203{bottom:158.440000pt;}
.y24_c00203{bottom:158.441600pt;}
.y23_c00203{bottom:174.120000pt;}
.y22_c00203{bottom:179.560000pt;}
.y21_c00203{bottom:189.480000pt;}
.y20_c00203{bottom:194.920000pt;}
.y1f_c00203{bottom:210.600000pt;}
.y1e_c00203{bottom:234.280000pt;}
.y1d_c00203{bottom:314.600000pt;}
.y1c_c00203{bottom:333.160000pt;}
.y1b_c00203{bottom:352.040000pt;}
.y1a_c00203{bottom:384.040000pt;}
.y19_c00203{bottom:416.040000pt;}
.y18_c00203{bottom:434.600000pt;}
.y17_c00203{bottom:453.160000pt;}
.y16_c00203{bottom:472.040000pt;}
.y15_c00203{bottom:504.040000pt;}
.y14_c00203{bottom:536.040000pt;}
.y13_c00203{bottom:568.040000pt;}
.y12_c00203{bottom:600.680000pt;}
.y11_c00203{bottom:618.920000pt;}
.y10_c00203{bottom:637.800000pt;}
.yf_c00203{bottom:656.360000pt;}
.ye_c00203{bottom:674.920000pt;}
.yd_c00203{bottom:693.800000pt;}
.yc_c00203{bottom:725.800000pt;}
.yb_c00203{bottom:757.800000pt;}
.ya_c00203{bottom:791.720000pt;}
.y9_c00203{bottom:825.640000pt;}
.y8_c00203{bottom:857.640000pt;}
.y7_c00203{bottom:876.520000pt;}
.y6_c00203{bottom:895.080000pt;}
.y5_c00203{bottom:913.640000pt;}
.y4_c00203{bottom:932.520000pt;}
.y3_c00203{bottom:964.520000pt;}
.y2_c00203{bottom:1011.880000pt;}
.ha_c00203{height:17.116000pt;}
.h7_c00203{height:28.992000pt;}
.hb_c00203{height:41.173333pt;}
.h8_c00203{height:41.761453pt;}
.h6_c00203{height:46.250000pt;}
.h9_c00203{height:47.546880pt;}
.h4_c00203{height:50.928601pt;}
.h3_c00203{height:57.984000pt;}
.h5_c00203{height:60.510720pt;}
.h2_c00203{height:1067.880000pt;}
.h0_c00203{height:1122.520000pt;}
.h1_c00203{height:1122.666667pt;}
.w3_c00203{width:22.240000pt;}
.w2_c00203{width:767.960000pt;}
.w0_c00203{width:793.720000pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:12.880000pt;}
.x2_c00203{left:100.480133pt;}
.xe_c00203{left:124.478667pt;}
.x10_c00203{left:133.359733pt;}
.x3_c00203{left:144.463600pt;}
.x14_c00203{left:146.425200pt;}
.x6_c00203{left:148.493467pt;}
.xa_c00203{left:152.911067pt;}
.x15_c00203{left:164.197600pt;}
.xb_c00203{left:197.358400pt;}
.x4_c00203{left:202.654267pt;}
.xf_c00203{left:219.598933pt;}
.x16_c00203{left:252.354800pt;}
.xc_c00203{left:283.597333pt;}
.x17_c00203{left:290.887333pt;}
.xd_c00203{left:309.372667pt;}
.x18_c00203{left:349.405600pt;}
.x7_c00203{left:356.556267pt;}
.x9_c00203{left:364.642933pt;}
.x19_c00203{left:416.083600pt;}
.x1a_c00203{left:419.790000pt;}
.x13_c00203{left:442.283200pt;}
.x11_c00203{left:459.848667pt;}
.x8_c00203{left:469.450800pt;}
.x5_c00203{left:471.433333pt;}
.x12_c00203{left:509.486933pt;}
.x1b_c00203{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6c6669ffbd40e5da4bae9580.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.134000;font-style:normal;font-weight:normal;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_2162e542a7c4efd6be4e9100.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;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:ff3_c00204;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00204{font-family:ff4_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:ff5_c00204;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff6_c00204{font-family:ff6_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:ff7_c00204;src:url('chunks/assets/font_284809de4f3e2d7968117a69.woff2')format("woff");}.ff7_c00204{font-family:ff7_c00204;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00204;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff8_c00204{font-family:ff8_c00204;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00204;src:url('chunks/assets/font_40e4047e555c5d0a3328f81f.woff2')format("woff");}.ff9_c00204{font-family:ff9_c00204;line-height:0.787000;font-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_c00204{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00204{vertical-align:-24.480000px;}
.v0_c00204{vertical-align:0.000000px;}
.v2_c00204{vertical-align:24.480000px;}
.v1_c00204{vertical-align:30.240000px;}
.ls13_c00204{letter-spacing:0.000000px;}
.ls16_c00204{letter-spacing:0.144000px;}
.ls9_c00204{letter-spacing:0.265680px;}
.lse_c00204{letter-spacing:0.295200px;}
.ls3_c00204{letter-spacing:0.318480px;}
.ls1c_c00204{letter-spacing:0.318816px;}
.lsf_c00204{letter-spacing:0.354240px;}
.ls20_c00204{letter-spacing:0.371952px;}
.ls0_c00204{letter-spacing:0.410040px;}
.ls19_c00204{letter-spacing:0.425088px;}
.ls18_c00204{letter-spacing:0.478224px;}
.lsa_c00204{letter-spacing:0.492942px;}
.lsb_c00204{letter-spacing:0.531360px;}
.lsd_c00204{letter-spacing:0.560880px;}
.ls10_c00204{letter-spacing:0.602485px;}
.ls1a_c00204{letter-spacing:0.696672px;}
.lsc_c00204{letter-spacing:0.712027px;}
.ls17_c00204{letter-spacing:0.743904px;}
.ls1d_c00204{letter-spacing:0.766799px;}
.ls6_c00204{letter-spacing:5.245680px;}
.ls15_c00204{letter-spacing:5.248656px;}
.ls5_c00204{letter-spacing:5.353440px;}
.ls14_c00204{letter-spacing:5.430672px;}
.ls4_c00204{letter-spacing:5.513160px;}
.ls7_c00204{letter-spacing:5.514336px;}
.ls11_c00204{letter-spacing:5.976000px;}
.ls1_c00204{letter-spacing:5.978400px;}
.ls12_c00204{letter-spacing:6.159920px;}
.ls1e_c00204{letter-spacing:7.592544px;}
.ls1f_c00204{letter-spacing:8.342352px;}
.ls1b_c00204{letter-spacing:10.934208px;}
.ls8_c00204{letter-spacing:25.493280px;}
.ls2_c00204{letter-spacing:54.864000px;}
.sc__c00204{text-shadow:none;}
.sc1_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00204{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc1_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00204{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00204{word-spacing:-21.927456px;}
.ws3_c00204{word-spacing:-21.661776px;}
.ws1_c00204{word-spacing:-21.043152px;}
.wsa_c00204{word-spacing:-17.685056px;}
.ws2_c00204{word-spacing:-17.630284px;}
.wsc_c00204{word-spacing:-17.520742px;}
.ws7_c00204{word-spacing:-17.411199px;}
.ws8_c00204{word-spacing:-16.944480px;}
.ws6_c00204{word-spacing:-16.838208px;}
.ws9_c00204{word-spacing:-16.731936px;}
.ws0_c00204{word-spacing:-11.609280px;}
.ws4_c00204{word-spacing:-10.152000px;}
.wsb_c00204{word-spacing:-10.008000px;}
.wsd_c00204{word-spacing:0.000000px;}
._c_c00204{margin-left:-11.335680px;}
._b_c00204{margin-left:-10.272960px;}
._f_c00204{margin-left:-8.147520px;}
._e_c00204{margin-left:-7.143840px;}
._3_c00204{margin-left:-1.179360px;}
._1_c00204{width:1.009800px;}
._d_c00204{width:2.048040px;}
._0_c00204{width:4.104000px;}
._6_c00204{width:5.544000px;}
._10_c00204{width:7.415424px;}
._4_c00204{width:8.928000px;}
._a_c00204{width:10.094400px;}
._11_c00204{width:11.335680px;}
._2_c00204{width:12.816000px;}
._7_c00204{width:15.696000px;}
._5_c00204{width:24.768000px;}
._8_c00204{width:32.410608px;}
._9_c00204{width:53.075520px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs6_c00204{font-size:36.000000px;}
.fs2_c00204{font-size:41.760000px;}
.fs3_c00204{font-size:56.160000px;}
.fs4_c00204{font-size:59.040000px;}
.fs7_c00204{font-size:60.000000px;}
.fs5_c00204{font-size:60.857039px;}
.fs0_c00204{font-size:72.000000px;}
.fs1_c00204{font-size:74.215901px;}
.y0_c00204{bottom:0.000000px;}
.y31_c00204{bottom:3.120150px;}
.y30_c00204{bottom:34.744500px;}
.y1_c00204{bottom:54.000000px;}
.y2f_c00204{bottom:55.485000px;}
.y2e_c00204{bottom:61.605000px;}
.y2d_c00204{bottom:72.765000px;}
.y2c_c00204{bottom:78.885000px;}
.y2b_c00204{bottom:90.402840px;}
.y2a_c00204{bottom:107.686800px;}
.y29_c00204{bottom:131.445000px;}
.y27_c00204{bottom:142.961040px;}
.y28_c00204{bottom:142.965000px;}
.y26_c00204{bottom:166.365000px;}
.y25_c00204{bottom:193.005000px;}
.y22_c00204{bottom:259.245000px;}
.y21_c00204{bottom:277.245000px;}
.y24_c00204{bottom:279.765000px;}
.y20_c00204{bottom:294.885000px;}
.y23_c00204{bottom:297.405000px;}
.y1f_c00204{bottom:314.685000px;}
.y1e_c00204{bottom:332.325000px;}
.y1d_c00204{bottom:349.605000px;}
.y1c_c00204{bottom:383.085000px;}
.y1b_c00204{bottom:404.325000px;}
.y1a_c00204{bottom:425.205000px;}
.y19_c00204{bottom:446.085000px;}
.y18_c00204{bottom:482.085000px;}
.y17_c00204{bottom:503.325000px;}
.y16_c00204{bottom:520.965000px;}
.y15_c00204{bottom:541.845000px;}
.y14_c00204{bottom:577.845000px;}
.y13_c00204{bottom:613.845000px;}
.y12_c00204{bottom:635.085000px;}
.y11_c00204{bottom:671.085000px;}
.y10_c00204{bottom:691.965000px;}
.yf_c00204{bottom:727.965000px;}
.ye_c00204{bottom:763.965000px;}
.yd_c00204{bottom:784.845000px;}
.yc_c00204{bottom:820.845000px;}
.yb_c00204{bottom:856.845000px;}
.ya_c00204{bottom:892.845000px;}
.y9_c00204{bottom:928.845000px;}
.y8_c00204{bottom:964.845000px;}
.y7_c00204{bottom:986.085000px;}
.y6_c00204{bottom:1006.965000px;}
.y5_c00204{bottom:1042.965000px;}
.y4_c00204{bottom:1063.845000px;}
.y3_c00204{bottom:1085.085000px;}
.y2_c00204{bottom:1138.365000px;}
.hc_c00204{height:19.255500px;}
.hb_c00204{height:32.616000px;}
.h7_c00204{height:39.350391px;}
.hd_c00204{height:46.320000px;}
.h9_c00204{height:46.981634px;}
.h6_c00204{height:52.031250px;}
.h8_c00204{height:53.490240px;}
.ha_c00204{height:57.096000px;}
.h4_c00204{height:57.294676px;}
.h3_c00204{height:65.232000px;}
.h5_c00204{height:68.074560px;}
.h2_c00204{height:1201.365000px;}
.h0_c00204{height:1262.835000px;}
.h1_c00204{height:1263.000000px;}
.w7_c00204{width:25.020000px;}
.w3_c00204{width:28.800000px;}
.w4_c00204{width:95.040000px;}
.w5_c00204{width:212.040000px;}
.w6_c00204{width:309.240000px;}
.w2_c00204{width:863.955000px;}
.w0_c00204{width:892.935000px;}
.w1_c00204{width:893.250000px;}
.x0_c00204{left:0.000000px;}
.x14_c00204{left:7.920150px;}
.x1_c00204{left:14.490000px;}
.x1a_c00204{left:30.364200px;}
.x1c_c00204{left:63.012300px;}
.x1b_c00204{left:66.198750px;}
.x1d_c00204{left:106.361550px;}
.x2_c00204{left:113.040150px;}
.x13_c00204{left:119.610000px;}
.x9_c00204{left:140.044200px;}
.x6_c00204{left:148.031550px;}
.x15_c00204{left:149.130000px;}
.x10_c00204{left:155.033550px;}
.xe_c00204{left:158.245650px;}
.x7_c00204{left:161.063550px;}
.x3_c00204{left:162.521550px;}
.xa_c00204{left:167.040150px;}
.x1e_c00204{left:195.171600px;}
.x18_c00204{left:206.542950px;}
.x8_c00204{left:216.088650px;}
.x4_c00204{left:227.986050px;}
.x1f_c00204{left:230.136000px;}
.xb_c00204{left:232.037100px;}
.x11_c00204{left:235.024350px;}
.xc_c00204{left:237.040950px;}
.x19_c00204{left:238.207350px;}
.x16_c00204{left:244.890000px;}
.xd_c00204{left:247.048800px;}
.xf_c00204{left:252.052800px;}
.x23_c00204{left:257.218950px;}
.x12_c00204{left:270.051600px;}
.x22_c00204{left:395.234250px;}
.x17_c00204{left:457.650000px;}
.x5_c00204{left:530.362500px;}
.x20_c00204{left:681.418500px;}
.x21_c00204{left:739.752750px;}
.x24_c00204{left:759.915000px;}
@media print{
.v3_c00204{vertical-align:-21.760000pt;}
.v0_c00204{vertical-align:0.000000pt;}
.v2_c00204{vertical-align:21.760000pt;}
.v1_c00204{vertical-align:26.880000pt;}
.ls13_c00204{letter-spacing:0.000000pt;}
.ls16_c00204{letter-spacing:0.128000pt;}
.ls9_c00204{letter-spacing:0.236160pt;}
.lse_c00204{letter-spacing:0.262400pt;}
.ls3_c00204{letter-spacing:0.283093pt;}
.ls1c_c00204{letter-spacing:0.283392pt;}
.lsf_c00204{letter-spacing:0.314880pt;}
.ls20_c00204{letter-spacing:0.330624pt;}
.ls0_c00204{letter-spacing:0.364480pt;}
.ls19_c00204{letter-spacing:0.377856pt;}
.ls18_c00204{letter-spacing:0.425088pt;}
.lsa_c00204{letter-spacing:0.438171pt;}
.lsb_c00204{letter-spacing:0.472320pt;}
.lsd_c00204{letter-spacing:0.498560pt;}
.ls10_c00204{letter-spacing:0.535542pt;}
.ls1a_c00204{letter-spacing:0.619264pt;}
.lsc_c00204{letter-spacing:0.632913pt;}
.ls17_c00204{letter-spacing:0.661248pt;}
.ls1d_c00204{letter-spacing:0.681599pt;}
.ls6_c00204{letter-spacing:4.662827pt;}
.ls15_c00204{letter-spacing:4.665472pt;}
.ls5_c00204{letter-spacing:4.758613pt;}
.ls14_c00204{letter-spacing:4.827264pt;}
.ls4_c00204{letter-spacing:4.900587pt;}
.ls7_c00204{letter-spacing:4.901632pt;}
.ls11_c00204{letter-spacing:5.312000pt;}
.ls1_c00204{letter-spacing:5.314133pt;}
.ls12_c00204{letter-spacing:5.475484pt;}
.ls1e_c00204{letter-spacing:6.748928pt;}
.ls1f_c00204{letter-spacing:7.415424pt;}
.ls1b_c00204{letter-spacing:9.719296pt;}
.ls8_c00204{letter-spacing:22.660693pt;}
.ls2_c00204{letter-spacing:48.768000pt;}
.ws5_c00204{word-spacing:-19.491072pt;}
.ws3_c00204{word-spacing:-19.254912pt;}
.ws1_c00204{word-spacing:-18.705024pt;}
.wsa_c00204{word-spacing:-15.720049pt;}
.ws2_c00204{word-spacing:-15.671364pt;}
.wsc_c00204{word-spacing:-15.573992pt;}
.ws7_c00204{word-spacing:-15.476621pt;}
.ws8_c00204{word-spacing:-15.061760pt;}
.ws6_c00204{word-spacing:-14.967296pt;}
.ws9_c00204{word-spacing:-14.872832pt;}
.ws0_c00204{word-spacing:-10.319360pt;}
.ws4_c00204{word-spacing:-9.024000pt;}
.wsb_c00204{word-spacing:-8.896000pt;}
.wsd_c00204{word-spacing:0.000000pt;}
._c_c00204{margin-left:-10.076160pt;}
._b_c00204{margin-left:-9.131520pt;}
._f_c00204{margin-left:-7.242240pt;}
._e_c00204{margin-left:-6.350080pt;}
._3_c00204{margin-left:-1.048320pt;}
._1_c00204{width:0.897600pt;}
._d_c00204{width:1.820480pt;}
._0_c00204{width:3.648000pt;}
._6_c00204{width:4.928000pt;}
._10_c00204{width:6.591488pt;}
._4_c00204{width:7.936000pt;}
._a_c00204{width:8.972800pt;}
._11_c00204{width:10.076160pt;}
._2_c00204{width:11.392000pt;}
._7_c00204{width:13.952000pt;}
._5_c00204{width:22.016000pt;}
._8_c00204{width:28.809429pt;}
._9_c00204{width:47.178240pt;}
.fs6_c00204{font-size:32.000000pt;}
.fs2_c00204{font-size:37.120000pt;}
.fs3_c00204{font-size:49.920000pt;}
.fs4_c00204{font-size:52.480000pt;}
.fs7_c00204{font-size:53.333333pt;}
.fs5_c00204{font-size:54.095146pt;}
.fs0_c00204{font-size:64.000000pt;}
.fs1_c00204{font-size:65.969690pt;}
.y0_c00204{bottom:0.000000pt;}
.y31_c00204{bottom:2.773467pt;}
.y30_c00204{bottom:30.884000pt;}
.y1_c00204{bottom:48.000000pt;}
.y2f_c00204{bottom:49.320000pt;}
.y2e_c00204{bottom:54.760000pt;}
.y2d_c00204{bottom:64.680000pt;}
.y2c_c00204{bottom:70.120000pt;}
.y2b_c00204{bottom:80.358080pt;}
.y2a_c00204{bottom:95.721600pt;}
.y29_c00204{bottom:116.840000pt;}
.y27_c00204{bottom:127.076480pt;}
.y28_c00204{bottom:127.080000pt;}
.y26_c00204{bottom:147.880000pt;}
.y25_c00204{bottom:171.560000pt;}
.y22_c00204{bottom:230.440000pt;}
.y21_c00204{bottom:246.440000pt;}
.y24_c00204{bottom:248.680000pt;}
.y20_c00204{bottom:262.120000pt;}
.y23_c00204{bottom:264.360000pt;}
.y1f_c00204{bottom:279.720000pt;}
.y1e_c00204{bottom:295.400000pt;}
.y1d_c00204{bottom:310.760000pt;}
.y1c_c00204{bottom:340.520000pt;}
.y1b_c00204{bottom:359.400000pt;}
.y1a_c00204{bottom:377.960000pt;}
.y19_c00204{bottom:396.520000pt;}
.y18_c00204{bottom:428.520000pt;}
.y17_c00204{bottom:447.400000pt;}
.y16_c00204{bottom:463.080000pt;}
.y15_c00204{bottom:481.640000pt;}
.y14_c00204{bottom:513.640000pt;}
.y13_c00204{bottom:545.640000pt;}
.y12_c00204{bottom:564.520000pt;}
.y11_c00204{bottom:596.520000pt;}
.y10_c00204{bottom:615.080000pt;}
.yf_c00204{bottom:647.080000pt;}
.ye_c00204{bottom:679.080000pt;}
.yd_c00204{bottom:697.640000pt;}
.yc_c00204{bottom:729.640000pt;}
.yb_c00204{bottom:761.640000pt;}
.ya_c00204{bottom:793.640000pt;}
.y9_c00204{bottom:825.640000pt;}
.y8_c00204{bottom:857.640000pt;}
.y7_c00204{bottom:876.520000pt;}
.y6_c00204{bottom:895.080000pt;}
.y5_c00204{bottom:927.080000pt;}
.y4_c00204{bottom:945.640000pt;}
.y3_c00204{bottom:964.520000pt;}
.y2_c00204{bottom:1011.880000pt;}
.hc_c00204{height:17.116000pt;}
.hb_c00204{height:28.992000pt;}
.h7_c00204{height:34.978125pt;}
.hd_c00204{height:41.173333pt;}
.h9_c00204{height:41.761453pt;}
.h6_c00204{height:46.250000pt;}
.h8_c00204{height:47.546880pt;}
.ha_c00204{height:50.752000pt;}
.h4_c00204{height:50.928601pt;}
.h3_c00204{height:57.984000pt;}
.h5_c00204{height:60.510720pt;}
.h2_c00204{height:1067.880000pt;}
.h0_c00204{height:1122.520000pt;}
.h1_c00204{height:1122.666667pt;}
.w7_c00204{width:22.240000pt;}
.w3_c00204{width:25.600000pt;}
.w4_c00204{width:84.480000pt;}
.w5_c00204{width:188.480000pt;}
.w6_c00204{width:274.880000pt;}
.w2_c00204{width:767.960000pt;}
.w0_c00204{width:793.720000pt;}
.w1_c00204{width:794.000000pt;}
.x0_c00204{left:0.000000pt;}
.x14_c00204{left:7.040133pt;}
.x1_c00204{left:12.880000pt;}
.x1a_c00204{left:26.990400pt;}
.x1c_c00204{left:56.010933pt;}
.x1b_c00204{left:58.843333pt;}
.x1d_c00204{left:94.543600pt;}
.x2_c00204{left:100.480133pt;}
.x13_c00204{left:106.320000pt;}
.x9_c00204{left:124.483733pt;}
.x6_c00204{left:131.583600pt;}
.x15_c00204{left:132.560000pt;}
.x10_c00204{left:137.807600pt;}
.xe_c00204{left:140.662800pt;}
.x7_c00204{left:143.167600pt;}
.x3_c00204{left:144.463600pt;}
.xa_c00204{left:148.480133pt;}
.x1e_c00204{left:173.485867pt;}
.x18_c00204{left:183.593733pt;}
.x8_c00204{left:192.078800pt;}
.x4_c00204{left:202.654267pt;}
.x1f_c00204{left:204.565333pt;}
.xb_c00204{left:206.255200pt;}
.x11_c00204{left:208.910533pt;}
.xc_c00204{left:210.703067pt;}
.x19_c00204{left:211.739867pt;}
.x16_c00204{left:217.680000pt;}
.xd_c00204{left:219.598933pt;}
.xf_c00204{left:224.046933pt;}
.x23_c00204{left:228.639067pt;}
.x12_c00204{left:240.045867pt;}
.x22_c00204{left:351.319333pt;}
.x17_c00204{left:406.800000pt;}
.x5_c00204{left:471.433333pt;}
.x20_c00204{left:605.705333pt;}
.x21_c00204{left:657.558000pt;}
.x24_c00204{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f7ee43a416ba4f28ea139d7.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.134000;font-style:normal;font-weight:normal;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_292b110e9c94c4d6c27a4422.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;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:ff3_c00205;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_284809de4f3e2d7968117a69.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;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:ff6_c00205;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff6_c00205{font-family:ff6_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:ff7_c00205;src:url('chunks/assets/font_e4867bb30708f0b7f4cafb3a.woff2')format("woff");}.ff7_c00205{font-family:ff7_c00205;line-height:0.787000;font-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_c00205{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00205{vertical-align:-24.480600px;}
.v0_c00205{vertical-align:0.000000px;}
.v1_c00205{vertical-align:24.480600px;}
.v3_c00205{vertical-align:30.240000px;}
.ls28_c00205{letter-spacing:-0.179568px;}
.ls1a_c00205{letter-spacing:0.000000px;}
.ls14_c00205{letter-spacing:0.015600px;}
.ls1f_c00205{letter-spacing:0.144000px;}
.lsf_c00205{letter-spacing:0.236160px;}
.ls1b_c00205{letter-spacing:0.265680px;}
.lsd_c00205{letter-spacing:0.277488px;}
.lsa_c00205{letter-spacing:0.295200px;}
.ls3_c00205{letter-spacing:0.318480px;}
.ls21_c00205{letter-spacing:0.318816px;}
.ls10_c00205{letter-spacing:0.330624px;}
.ls2b_c00205{letter-spacing:0.425088px;}
.ls1c_c00205{letter-spacing:0.478224px;}
.ls11_c00205{letter-spacing:0.513648px;}
.lsb_c00205{letter-spacing:0.531360px;}
.ls9_c00205{letter-spacing:0.560880px;}
.ls1d_c00205{letter-spacing:0.584496px;}
.ls22_c00205{letter-spacing:0.690768px;}
.ls23_c00205{letter-spacing:0.696672px;}
.ls8_c00205{letter-spacing:0.712027px;}
.ls26_c00205{letter-spacing:0.743904px;}
.ls25_c00205{letter-spacing:0.766799px;}
.lsc_c00205{letter-spacing:0.821570px;}
.lse_c00205{letter-spacing:0.885600px;}
.ls24_c00205{letter-spacing:0.962352px;}
.ls2a_c00205{letter-spacing:4.368960px;}
.ls0_c00205{letter-spacing:5.245680px;}
.ls1e_c00205{letter-spacing:5.248656px;}
.ls17_c00205{letter-spacing:5.254560px;}
.ls1_c00205{letter-spacing:5.353440px;}
.ls18_c00205{letter-spacing:5.372640px;}
.ls27_c00205{letter-spacing:5.430672px;}
.ls4_c00205{letter-spacing:5.513160px;}
.ls2_c00205{letter-spacing:5.514336px;}
.ls20_c00205{letter-spacing:5.567472px;}
.ls12_c00205{letter-spacing:5.975400px;}
.ls13_c00205{letter-spacing:5.976000px;}
.ls19_c00205{letter-spacing:6.159920px;}
.ls5_c00205{letter-spacing:7.906080px;}
.ls29_c00205{letter-spacing:15.127200px;}
.ls15_c00205{letter-spacing:24.974280px;}
.ls7_c00205{letter-spacing:30.551280px;}
.ls6_c00205{letter-spacing:35.531280px;}
.ls16_c00205{letter-spacing:55.008000px;}
.sc__c00205{text-shadow:none;}
.sc1_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00205{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc1_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00205{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00205{word-spacing:-21.980592px;}
.ws2_c00205{word-spacing:-21.927456px;}
.ws4_c00205{word-spacing:-21.661776px;}
.ws9_c00205{word-spacing:-21.043152px;}
.wsa_c00205{word-spacing:-20.016000px;}
.ws8_c00205{word-spacing:-17.685056px;}
.ws0_c00205{word-spacing:-17.630284px;}
.ws1_c00205{word-spacing:-16.997616px;}
.ws7_c00205{word-spacing:-16.944480px;}
.ws6_c00205{word-spacing:-16.731936px;}
.wsb_c00205{word-spacing:-11.429712px;}
.ws3_c00205{word-spacing:-10.152000px;}
.wsc_c00205{word-spacing:0.000000px;}
._13_c00205{margin-left:-15.134400px;}
._14_c00205{margin-left:-4.066560px;}
._15_c00205{margin-left:-2.936160px;}
._0_c00205{margin-left:-1.095427px;}
._3_c00205{width:1.006032px;}
._2_c00205{width:2.654448px;}
._8_c00205{width:4.053800px;}
._9_c00205{width:5.254560px;}
._b_c00205{width:7.084800px;}
._a_c00205{width:8.770627px;}
._5_c00205{width:9.892387px;}
._6_c00205{width:11.415429px;}
._e_c00205{width:14.544000px;}
._12_c00205{width:15.984000px;}
._10_c00205{width:16.992000px;}
._11_c00205{width:18.144000px;}
._7_c00205{width:23.143680px;}
._f_c00205{width:24.696000px;}
._1_c00205{width:25.985956px;}
._c_c00205{width:28.224000px;}
._4_c00205{width:29.520000px;}
._d_c00205{width:32.112000px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs4_c00205{font-size:36.000000px;}
.fs6_c00205{font-size:41.760000px;}
.fs5_c00205{font-size:56.160000px;}
.fs2_c00205{font-size:59.040000px;}
.fs7_c00205{font-size:60.000000px;}
.fs3_c00205{font-size:60.857039px;}
.fs0_c00205{font-size:72.000000px;}
.fs1_c00205{font-size:74.215901px;}
.y0_c00205{bottom:0.000000px;}
.y37_c00205{bottom:3.120150px;}
.y36_c00205{bottom:34.744500px;}
.y1_c00205{bottom:54.000000px;}
.y35_c00205{bottom:55.485000px;}
.y34_c00205{bottom:61.605000px;}
.y33_c00205{bottom:72.757800px;}
.y32_c00205{bottom:90.765000px;}
.y31_c00205{bottom:96.885000px;}
.y30_c00205{bottom:123.525000px;}
.y2f_c00205{bottom:149.805000px;}
.y2e_c00205{bottom:171.045000px;}
.y2d_c00205{bottom:191.925000px;}
.y2c_c00205{bottom:212.805000px;}
.y2b_c00205{bottom:248.805000px;}
.y2a_c00205{bottom:284.805000px;}
.y29_c00205{bottom:306.045000px;}
.y28_c00205{bottom:326.925000px;}
.y27_c00205{bottom:347.805000px;}
.y26_c00205{bottom:369.045000px;}
.y25_c00205{bottom:389.925000px;}
.y24_c00205{bottom:410.805000px;}
.y23_c00205{bottom:432.045000px;}
.y22_c00205{bottom:452.925000px;}
.y21_c00205{bottom:488.925000px;}
.y20_c00205{bottom:510.165000px;}
.y1f_c00205{bottom:531.045000px;}
.y1e_c00205{bottom:551.925000px;}
.y1d_c00205{bottom:573.165000px;}
.y1c_c00205{bottom:594.045000px;}
.y1b_c00205{bottom:630.045000px;}
.y1a_c00205{bottom:650.925000px;}
.y19_c00205{bottom:672.165000px;}
.y18_c00205{bottom:693.045000px;}
.y17_c00205{bottom:713.925000px;}
.y16_c00205{bottom:749.925000px;}
.y15_c00205{bottom:785.925000px;}
.y14_c00205{bottom:821.922840px;}
.y13_c00205{bottom:839.206800px;}
.y12_c00205{bottom:856.845000px;}
.y10_c00205{bottom:889.242840px;}
.y11_c00205{bottom:889.245000px;}
.yf_c00205{bottom:906.881040px;}
.ye_c00205{bottom:924.165000px;}
.yd_c00205{bottom:956.925000px;}
.yc_c00205{bottom:978.525000px;}
.y8_c00205{bottom:981.405000px;}
.yb_c00205{bottom:996.165000px;}
.y7_c00205{bottom:999.045000px;}
.ya_c00205{bottom:1015.965000px;}
.y6_c00205{bottom:1016.685000px;}
.y9_c00205{bottom:1033.604850px;}
.y5_c00205{bottom:1033.965000px;}
.y4_c00205{bottom:1051.604850px;}
.y3_c00205{bottom:1085.085000px;}
.y2_c00205{bottom:1138.365000px;}
.ha_c00205{height:19.255500px;}
.h9_c00205{height:32.616000px;}
.hb_c00205{height:46.320000px;}
.h6_c00205{height:46.981634px;}
.h5_c00205{height:53.490240px;}
.h7_c00205{height:57.096600px;}
.h4_c00205{height:57.294676px;}
.h3_c00205{height:65.232000px;}
.h8_c00205{height:68.074560px;}
.h2_c00205{height:1201.365000px;}
.h0_c00205{height:1262.835000px;}
.h1_c00205{height:1263.000000px;}
.w7_c00205{width:25.020000px;}
.w3_c00205{width:28.800000px;}
.w4_c00205{width:95.040000px;}
.w5_c00205{width:212.040000px;}
.w6_c00205{width:309.240000px;}
.w2_c00205{width:863.955000px;}
.w0_c00205{width:892.935000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x7_c00205{left:7.920150px;}
.xa_c00205{left:12.914850px;}
.x1_c00205{left:14.490000px;}
.xd_c00205{left:42.884250px;}
.x9_c00205{left:45.418950px;}
.x12_c00205{left:81.297300px;}
.xb_c00205{left:83.250300px;}
.x2_c00205{left:113.040150px;}
.x6_c00205{left:119.610000px;}
.x2c_c00205{left:127.217700px;}
.x17_c00205{left:133.034550px;}
.x1d_c00205{left:140.046000px;}
.x8_c00205{left:149.130000px;}
.x3_c00205{left:162.521550px;}
.x25_c00205{left:167.040150px;}
.x2d_c00205{left:170.566800px;}
.xf_c00205{left:185.122800px;}
.x18_c00205{left:195.235800px;}
.x19_c00205{left:207.430650px;}
.x10_c00205{left:209.642400px;}
.x4_c00205{left:227.986050px;}
.x21_c00205{left:237.076200px;}
.xc_c00205{left:244.890000px;}
.x11_c00205{left:252.991650px;}
.x2a_c00205{left:261.324750px;}
.x28_c00205{left:267.858000px;}
.x1a_c00205{left:269.457600px;}
.x2b_c00205{left:308.843700px;}
.x1f_c00205{left:313.167450px;}
.x20_c00205{left:324.165150px;}
.x26_c00205{left:350.602950px;}
.x22_c00205{left:361.076250px;}
.x29_c00205{left:399.421200px;}
.x27_c00205{left:408.598350px;}
.x23_c00205{left:453.803100px;}
.xe_c00205{left:457.650000px;}
.x24_c00205{left:478.895400px;}
.x5_c00205{left:530.362500px;}
.x15_c00205{left:551.607450px;}
.x16_c00205{left:586.571850px;}
.x13_c00205{left:598.981950px;}
.x14_c00205{left:641.327250px;}
.x1e_c00205{left:655.812750px;}
.x1b_c00205{left:737.394300px;}
.x1c_c00205{left:750.390000px;}
.x2e_c00205{left:759.915000px;}
@media print{
.v2_c00205{vertical-align:-21.760533pt;}
.v0_c00205{vertical-align:0.000000pt;}
.v1_c00205{vertical-align:21.760533pt;}
.v3_c00205{vertical-align:26.880000pt;}
.ls28_c00205{letter-spacing:-0.159616pt;}
.ls1a_c00205{letter-spacing:0.000000pt;}
.ls14_c00205{letter-spacing:0.013867pt;}
.ls1f_c00205{letter-spacing:0.128000pt;}
.lsf_c00205{letter-spacing:0.209920pt;}
.ls1b_c00205{letter-spacing:0.236160pt;}
.lsd_c00205{letter-spacing:0.246656pt;}
.lsa_c00205{letter-spacing:0.262400pt;}
.ls3_c00205{letter-spacing:0.283093pt;}
.ls21_c00205{letter-spacing:0.283392pt;}
.ls10_c00205{letter-spacing:0.293888pt;}
.ls2b_c00205{letter-spacing:0.377856pt;}
.ls1c_c00205{letter-spacing:0.425088pt;}
.ls11_c00205{letter-spacing:0.456576pt;}
.lsb_c00205{letter-spacing:0.472320pt;}
.ls9_c00205{letter-spacing:0.498560pt;}
.ls1d_c00205{letter-spacing:0.519552pt;}
.ls22_c00205{letter-spacing:0.614016pt;}
.ls23_c00205{letter-spacing:0.619264pt;}
.ls8_c00205{letter-spacing:0.632913pt;}
.ls26_c00205{letter-spacing:0.661248pt;}
.ls25_c00205{letter-spacing:0.681599pt;}
.lsc_c00205{letter-spacing:0.730284pt;}
.lse_c00205{letter-spacing:0.787200pt;}
.ls24_c00205{letter-spacing:0.855424pt;}
.ls2a_c00205{letter-spacing:3.883520pt;}
.ls0_c00205{letter-spacing:4.662827pt;}
.ls1e_c00205{letter-spacing:4.665472pt;}
.ls17_c00205{letter-spacing:4.670720pt;}
.ls1_c00205{letter-spacing:4.758613pt;}
.ls18_c00205{letter-spacing:4.775680pt;}
.ls27_c00205{letter-spacing:4.827264pt;}
.ls4_c00205{letter-spacing:4.900587pt;}
.ls2_c00205{letter-spacing:4.901632pt;}
.ls20_c00205{letter-spacing:4.948864pt;}
.ls12_c00205{letter-spacing:5.311467pt;}
.ls13_c00205{letter-spacing:5.312000pt;}
.ls19_c00205{letter-spacing:5.475484pt;}
.ls5_c00205{letter-spacing:7.027627pt;}
.ls29_c00205{letter-spacing:13.446400pt;}
.ls15_c00205{letter-spacing:22.199360pt;}
.ls7_c00205{letter-spacing:27.156693pt;}
.ls6_c00205{letter-spacing:31.583360pt;}
.ls16_c00205{letter-spacing:48.896000pt;}
.ws5_c00205{word-spacing:-19.538304pt;}
.ws2_c00205{word-spacing:-19.491072pt;}
.ws4_c00205{word-spacing:-19.254912pt;}
.ws9_c00205{word-spacing:-18.705024pt;}
.wsa_c00205{word-spacing:-17.792000pt;}
.ws8_c00205{word-spacing:-15.720049pt;}
.ws0_c00205{word-spacing:-15.671364pt;}
.ws1_c00205{word-spacing:-15.108992pt;}
.ws7_c00205{word-spacing:-15.061760pt;}
.ws6_c00205{word-spacing:-14.872832pt;}
.wsb_c00205{word-spacing:-10.159744pt;}
.ws3_c00205{word-spacing:-9.024000pt;}
.wsc_c00205{word-spacing:0.000000pt;}
._13_c00205{margin-left:-13.452800pt;}
._14_c00205{margin-left:-3.614720pt;}
._15_c00205{margin-left:-2.609920pt;}
._0_c00205{margin-left:-0.973713pt;}
._3_c00205{width:0.894251pt;}
._2_c00205{width:2.359509pt;}
._8_c00205{width:3.603378pt;}
._9_c00205{width:4.670720pt;}
._b_c00205{width:6.297600pt;}
._a_c00205{width:7.796113pt;}
._5_c00205{width:8.793233pt;}
._6_c00205{width:10.147048pt;}
._e_c00205{width:12.928000pt;}
._12_c00205{width:14.208000pt;}
._10_c00205{width:15.104000pt;}
._11_c00205{width:16.128000pt;}
._7_c00205{width:20.572160pt;}
._f_c00205{width:21.952000pt;}
._1_c00205{width:23.098627pt;}
._c_c00205{width:25.088000pt;}
._4_c00205{width:26.240000pt;}
._d_c00205{width:28.544000pt;}
.fs4_c00205{font-size:32.000000pt;}
.fs6_c00205{font-size:37.120000pt;}
.fs5_c00205{font-size:49.920000pt;}
.fs2_c00205{font-size:52.480000pt;}
.fs7_c00205{font-size:53.333333pt;}
.fs3_c00205{font-size:54.095146pt;}
.fs0_c00205{font-size:64.000000pt;}
.fs1_c00205{font-size:65.969690pt;}
.y0_c00205{bottom:0.000000pt;}
.y37_c00205{bottom:2.773467pt;}
.y36_c00205{bottom:30.884000pt;}
.y1_c00205{bottom:48.000000pt;}
.y35_c00205{bottom:49.320000pt;}
.y34_c00205{bottom:54.760000pt;}
.y33_c00205{bottom:64.673600pt;}
.y32_c00205{bottom:80.680000pt;}
.y31_c00205{bottom:86.120000pt;}
.y30_c00205{bottom:109.800000pt;}
.y2f_c00205{bottom:133.160000pt;}
.y2e_c00205{bottom:152.040000pt;}
.y2d_c00205{bottom:170.600000pt;}
.y2c_c00205{bottom:189.160000pt;}
.y2b_c00205{bottom:221.160000pt;}
.y2a_c00205{bottom:253.160000pt;}
.y29_c00205{bottom:272.040000pt;}
.y28_c00205{bottom:290.600000pt;}
.y27_c00205{bottom:309.160000pt;}
.y26_c00205{bottom:328.040000pt;}
.y25_c00205{bottom:346.600000pt;}
.y24_c00205{bottom:365.160000pt;}
.y23_c00205{bottom:384.040000pt;}
.y22_c00205{bottom:402.600000pt;}
.y21_c00205{bottom:434.600000pt;}
.y20_c00205{bottom:453.480000pt;}
.y1f_c00205{bottom:472.040000pt;}
.y1e_c00205{bottom:490.600000pt;}
.y1d_c00205{bottom:509.480000pt;}
.y1c_c00205{bottom:528.040000pt;}
.y1b_c00205{bottom:560.040000pt;}
.y1a_c00205{bottom:578.600000pt;}
.y19_c00205{bottom:597.480000pt;}
.y18_c00205{bottom:616.040000pt;}
.y17_c00205{bottom:634.600000pt;}
.y16_c00205{bottom:666.600000pt;}
.y15_c00205{bottom:698.600000pt;}
.y14_c00205{bottom:730.598080pt;}
.y13_c00205{bottom:745.961600pt;}
.y12_c00205{bottom:761.640000pt;}
.y10_c00205{bottom:790.438080pt;}
.y11_c00205{bottom:790.440000pt;}
.yf_c00205{bottom:806.116480pt;}
.ye_c00205{bottom:821.480000pt;}
.yd_c00205{bottom:850.600000pt;}
.yc_c00205{bottom:869.800000pt;}
.y8_c00205{bottom:872.360000pt;}
.yb_c00205{bottom:885.480000pt;}
.y7_c00205{bottom:888.040000pt;}
.ya_c00205{bottom:903.080000pt;}
.y6_c00205{bottom:903.720000pt;}
.y9_c00205{bottom:918.759867pt;}
.y5_c00205{bottom:919.080000pt;}
.y4_c00205{bottom:934.759867pt;}
.y3_c00205{bottom:964.520000pt;}
.y2_c00205{bottom:1011.880000pt;}
.ha_c00205{height:17.116000pt;}
.h9_c00205{height:28.992000pt;}
.hb_c00205{height:41.173333pt;}
.h6_c00205{height:41.761453pt;}
.h5_c00205{height:47.546880pt;}
.h7_c00205{height:50.752533pt;}
.h4_c00205{height:50.928601pt;}
.h3_c00205{height:57.984000pt;}
.h8_c00205{height:60.510720pt;}
.h2_c00205{height:1067.880000pt;}
.h0_c00205{height:1122.520000pt;}
.h1_c00205{height:1122.666667pt;}
.w7_c00205{width:22.240000pt;}
.w3_c00205{width:25.600000pt;}
.w4_c00205{width:84.480000pt;}
.w5_c00205{width:188.480000pt;}
.w6_c00205{width:274.880000pt;}
.w2_c00205{width:767.960000pt;}
.w0_c00205{width:793.720000pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x7_c00205{left:7.040133pt;}
.xa_c00205{left:11.479867pt;}
.x1_c00205{left:12.880000pt;}
.xd_c00205{left:38.119333pt;}
.x9_c00205{left:40.372400pt;}
.x12_c00205{left:72.264267pt;}
.xb_c00205{left:74.000267pt;}
.x2_c00205{left:100.480133pt;}
.x6_c00205{left:106.320000pt;}
.x2c_c00205{left:113.082400pt;}
.x17_c00205{left:118.252933pt;}
.x1d_c00205{left:124.485333pt;}
.x8_c00205{left:132.560000pt;}
.x3_c00205{left:144.463600pt;}
.x25_c00205{left:148.480133pt;}
.x2d_c00205{left:151.614933pt;}
.xf_c00205{left:164.553600pt;}
.x18_c00205{left:173.542933pt;}
.x19_c00205{left:184.382800pt;}
.x10_c00205{left:186.348800pt;}
.x4_c00205{left:202.654267pt;}
.x21_c00205{left:210.734400pt;}
.xc_c00205{left:217.680000pt;}
.x11_c00205{left:224.881467pt;}
.x2a_c00205{left:232.288667pt;}
.x28_c00205{left:238.096000pt;}
.x1a_c00205{left:239.517867pt;}
.x2b_c00205{left:274.527733pt;}
.x1f_c00205{left:278.371067pt;}
.x20_c00205{left:288.146800pt;}
.x26_c00205{left:311.647067pt;}
.x22_c00205{left:320.956667pt;}
.x29_c00205{left:355.041067pt;}
.x27_c00205{left:363.198533pt;}
.x23_c00205{left:403.380533pt;}
.xe_c00205{left:406.800000pt;}
.x24_c00205{left:425.684800pt;}
.x5_c00205{left:471.433333pt;}
.x15_c00205{left:490.317733pt;}
.x16_c00205{left:521.397200pt;}
.x13_c00205{left:532.428400pt;}
.x14_c00205{left:570.068667pt;}
.x1e_c00205{left:582.944667pt;}
.x1b_c00205{left:655.461600pt;}
.x1c_c00205{left:667.013333pt;}
.x2e_c00205{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_124f430a4d56e872dccd0407.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.134000;font-style:normal;font-weight:normal;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_ffb59c16bfec69b577f2a4a6.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;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:ff3_c00206;src:url('chunks/assets/font_23253bf163a0d721a8e72756.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:0.787000;font-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_c00206{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00206{vertical-align:-24.480000px;}
.v0_c00206{vertical-align:0.000000px;}
.v1_c00206{vertical-align:24.479400px;}
.ls6_c00206{letter-spacing:0.000000px;}
.ls15_c00206{letter-spacing:0.144000px;}
.ls3_c00206{letter-spacing:0.236160px;}
.ls11_c00206{letter-spacing:0.265680px;}
.lsf_c00206{letter-spacing:0.273857px;}
.ls4_c00206{letter-spacing:0.283392px;}
.ls18_c00206{letter-spacing:0.318816px;}
.ls13_c00206{letter-spacing:0.425088px;}
.ls2_c00206{letter-spacing:0.531360px;}
.lse_c00206{letter-spacing:0.584496px;}
.ls14_c00206{letter-spacing:0.602485px;}
.ls12_c00206{letter-spacing:0.637632px;}
.ls16_c00206{letter-spacing:0.690768px;}
.ls10_c00206{letter-spacing:0.712027px;}
.ls7_c00206{letter-spacing:2.073600px;}
.lsa_c00206{letter-spacing:3.024000px;}
.ls1_c00206{letter-spacing:5.037960px;}
.ls17_c00206{letter-spacing:5.248656px;}
.lsd_c00206{letter-spacing:5.402160px;}
.ls8_c00206{letter-spacing:5.461200px;}
.ls9_c00206{letter-spacing:5.514336px;}
.lsc_c00206{letter-spacing:5.567472px;}
.lsb_c00206{letter-spacing:5.939424px;}
.ls0_c00206{letter-spacing:5.976000px;}
.ls5_c00206{letter-spacing:6.159920px;}
.sc__c00206{text-shadow:none;}
.sc1_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00206{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc1_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00206{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00206{word-spacing:-22.352544px;}
.ws0_c00206{word-spacing:-21.874320px;}
.ws3_c00206{word-spacing:-21.815280px;}
.ws8_c00206{word-spacing:-21.661776px;}
.ws5_c00206{word-spacing:-17.192114px;}
.ws4_c00206{word-spacing:-16.944480px;}
.ws6_c00206{word-spacing:-16.678800px;}
.ws1_c00206{word-spacing:-13.032000px;}
.ws7_c00206{word-spacing:-10.152000px;}
.ws9_c00206{word-spacing:0.000000px;}
._1_c00206{margin-left:-2.131200px;}
._3_c00206{margin-left:-1.121760px;}
._4_c00206{width:1.062720px;}
._0_c00206{width:2.088000px;}
._5_c00206{width:4.320000px;}
._2_c00206{width:5.670960px;}
.fc1_c00206{color:transparent;}
.fc0_c00206{color:rgb(0,0,0);}
.fs3_c00206{font-size:36.000000px;}
.fs2_c00206{font-size:59.040000px;}
.fs5_c00206{font-size:60.000000px;}
.fs4_c00206{font-size:60.857039px;}
.fs0_c00206{font-size:72.000000px;}
.fs1_c00206{font-size:74.215901px;}
.y0_c00206{bottom:0.000000px;}
.y2b_c00206{bottom:3.120150px;}
.y2a_c00206{bottom:34.744500px;}
.y1_c00206{bottom:54.000000px;}
.y29_c00206{bottom:55.482840px;}
.y28_c00206{bottom:72.766800px;}
.y27_c00206{bottom:96.525000px;}
.y26_c00206{bottom:123.165000px;}
.y25_c00206{bottom:165.645000px;}
.y21_c00206{bottom:184.005000px;}
.y24_c00206{bottom:232.965000px;}
.y23_c00206{bottom:250.605000px;}
.y22_c00206{bottom:268.245000px;}
.y20_c00206{bottom:285.525000px;}
.y1f_c00206{bottom:303.165000px;}
.y1e_c00206{bottom:317.925000px;}
.y1d_c00206{bottom:412.605000px;}
.y1c_c00206{bottom:430.245000px;}
.y18_c00206{bottom:445.005000px;}
.y1b_c00206{bottom:500.085000px;}
.y1a_c00206{bottom:517.725000px;}
.y19_c00206{bottom:535.365000px;}
.y17_c00206{bottom:552.645000px;}
.y16_c00206{bottom:570.285000px;}
.y15_c00206{bottom:585.045000px;}
.y14_c00206{bottom:679.725000px;}
.y13_c00206{bottom:697.365000px;}
.y12_c00206{bottom:712.125000px;}
.y11_c00206{bottom:802.845000px;}
.y10_c00206{bottom:820.485000px;}
.yf_c00206{bottom:835.605000px;}
.ye_c00206{bottom:890.325000px;}
.yd_c00206{bottom:907.965000px;}
.y6_c00206{bottom:922.725000px;}
.yc_c00206{bottom:937.125000px;}
.ya_c00206{bottom:952.245000px;}
.y8_c00206{bottom:952.605000px;}
.yb_c00206{bottom:957.645000px;}
.y9_c00206{bottom:991.845000px;}
.y7_c00206{bottom:1009.485000px;}
.y5_c00206{bottom:1042.965000px;}
.y4_c00206{bottom:1063.845000px;}
.y3_c00206{bottom:1085.085000px;}
.y2_c00206{bottom:1138.365000px;}
.h9_c00206{height:19.255500px;}
.h8_c00206{height:32.616000px;}
.ha_c00206{height:46.320000px;}
.h7_c00206{height:46.981634px;}
.h5_c00206{height:53.490240px;}
.h6_c00206{height:57.095400px;}
.h4_c00206{height:57.294676px;}
.h3_c00206{height:65.232000px;}
.h2_c00206{height:1201.365000px;}
.h0_c00206{height:1262.835000px;}
.h1_c00206{height:1263.000000px;}
.w8_c00206{width:25.020000px;}
.w5_c00206{width:117.360000px;}
.w6_c00206{width:118.080000px;}
.w4_c00206{width:123.120000px;}
.w7_c00206{width:127.440000px;}
.w3_c00206{width:169.560000px;}
.w2_c00206{width:863.955000px;}
.w0_c00206{width:892.935000px;}
.w1_c00206{width:893.250000px;}
.x0_c00206{left:0.000000px;}
.x17_c00206{left:13.334400px;}
.x1_c00206{left:14.490000px;}
.x16_c00206{left:40.199550px;}
.x12_c00206{left:44.999850px;}
.x14_c00206{left:48.328800px;}
.x15_c00206{left:52.199550px;}
.x13_c00206{left:54.374850px;}
.x11_c00206{left:101.999850px;}
.x9_c00206{left:106.650000px;}
.xd_c00206{left:108.000000px;}
.x2_c00206{left:113.040150px;}
.xf_c00206{left:117.000000px;}
.x8_c00206{left:140.038800px;}
.x3_c00206{left:162.521550px;}
.xa_c00206{left:165.951750px;}
.x6_c00206{left:167.040150px;}
.x4_c00206{left:227.986050px;}
.x7_c00206{left:267.046800px;}
.xb_c00206{left:276.930000px;}
.xc_c00206{left:400.770000px;}
.xe_c00206{left:518.850000px;}
.x5_c00206{left:530.362500px;}
.x10_c00206{left:637.650000px;}
.x18_c00206{left:759.915000px;}
@media print{
.v2_c00206{vertical-align:-21.760000pt;}
.v0_c00206{vertical-align:0.000000pt;}
.v1_c00206{vertical-align:21.759467pt;}
.ls6_c00206{letter-spacing:0.000000pt;}
.ls15_c00206{letter-spacing:0.128000pt;}
.ls3_c00206{letter-spacing:0.209920pt;}
.ls11_c00206{letter-spacing:0.236160pt;}
.lsf_c00206{letter-spacing:0.243428pt;}
.ls4_c00206{letter-spacing:0.251904pt;}
.ls18_c00206{letter-spacing:0.283392pt;}
.ls13_c00206{letter-spacing:0.377856pt;}
.ls2_c00206{letter-spacing:0.472320pt;}
.lse_c00206{letter-spacing:0.519552pt;}
.ls14_c00206{letter-spacing:0.535542pt;}
.ls12_c00206{letter-spacing:0.566784pt;}
.ls16_c00206{letter-spacing:0.614016pt;}
.ls10_c00206{letter-spacing:0.632913pt;}
.ls7_c00206{letter-spacing:1.843200pt;}
.lsa_c00206{letter-spacing:2.688000pt;}
.ls1_c00206{letter-spacing:4.478187pt;}
.ls17_c00206{letter-spacing:4.665472pt;}
.lsd_c00206{letter-spacing:4.801920pt;}
.ls8_c00206{letter-spacing:4.854400pt;}
.ls9_c00206{letter-spacing:4.901632pt;}
.lsc_c00206{letter-spacing:4.948864pt;}
.lsb_c00206{letter-spacing:5.279488pt;}
.ls0_c00206{letter-spacing:5.312000pt;}
.ls5_c00206{letter-spacing:5.475484pt;}
.ws2_c00206{word-spacing:-19.868928pt;}
.ws0_c00206{word-spacing:-19.443840pt;}
.ws3_c00206{word-spacing:-19.391360pt;}
.ws8_c00206{word-spacing:-19.254912pt;}
.ws5_c00206{word-spacing:-15.281879pt;}
.ws4_c00206{word-spacing:-15.061760pt;}
.ws6_c00206{word-spacing:-14.825600pt;}
.ws1_c00206{word-spacing:-11.584000pt;}
.ws7_c00206{word-spacing:-9.024000pt;}
.ws9_c00206{word-spacing:0.000000pt;}
._1_c00206{margin-left:-1.894400pt;}
._3_c00206{margin-left:-0.997120pt;}
._4_c00206{width:0.944640pt;}
._0_c00206{width:1.856000pt;}
._5_c00206{width:3.840000pt;}
._2_c00206{width:5.040853pt;}
.fs3_c00206{font-size:32.000000pt;}
.fs2_c00206{font-size:52.480000pt;}
.fs5_c00206{font-size:53.333333pt;}
.fs4_c00206{font-size:54.095146pt;}
.fs0_c00206{font-size:64.000000pt;}
.fs1_c00206{font-size:65.969690pt;}
.y0_c00206{bottom:0.000000pt;}
.y2b_c00206{bottom:2.773467pt;}
.y2a_c00206{bottom:30.884000pt;}
.y1_c00206{bottom:48.000000pt;}
.y29_c00206{bottom:49.318080pt;}
.y28_c00206{bottom:64.681600pt;}
.y27_c00206{bottom:85.800000pt;}
.y26_c00206{bottom:109.480000pt;}
.y25_c00206{bottom:147.240000pt;}
.y21_c00206{bottom:163.560000pt;}
.y24_c00206{bottom:207.080000pt;}
.y23_c00206{bottom:222.760000pt;}
.y22_c00206{bottom:238.440000pt;}
.y20_c00206{bottom:253.800000pt;}
.y1f_c00206{bottom:269.480000pt;}
.y1e_c00206{bottom:282.600000pt;}
.y1d_c00206{bottom:366.760000pt;}
.y1c_c00206{bottom:382.440000pt;}
.y18_c00206{bottom:395.560000pt;}
.y1b_c00206{bottom:444.520000pt;}
.y1a_c00206{bottom:460.200000pt;}
.y19_c00206{bottom:475.880000pt;}
.y17_c00206{bottom:491.240000pt;}
.y16_c00206{bottom:506.920000pt;}
.y15_c00206{bottom:520.040000pt;}
.y14_c00206{bottom:604.200000pt;}
.y13_c00206{bottom:619.880000pt;}
.y12_c00206{bottom:633.000000pt;}
.y11_c00206{bottom:713.640000pt;}
.y10_c00206{bottom:729.320000pt;}
.yf_c00206{bottom:742.760000pt;}
.ye_c00206{bottom:791.400000pt;}
.yd_c00206{bottom:807.080000pt;}
.y6_c00206{bottom:820.200000pt;}
.yc_c00206{bottom:833.000000pt;}
.ya_c00206{bottom:846.440000pt;}
.y8_c00206{bottom:846.760000pt;}
.yb_c00206{bottom:851.240000pt;}
.y9_c00206{bottom:881.640000pt;}
.y7_c00206{bottom:897.320000pt;}
.y5_c00206{bottom:927.080000pt;}
.y4_c00206{bottom:945.640000pt;}
.y3_c00206{bottom:964.520000pt;}
.y2_c00206{bottom:1011.880000pt;}
.h9_c00206{height:17.116000pt;}
.h8_c00206{height:28.992000pt;}
.ha_c00206{height:41.173333pt;}
.h7_c00206{height:41.761453pt;}
.h5_c00206{height:47.546880pt;}
.h6_c00206{height:50.751467pt;}
.h4_c00206{height:50.928601pt;}
.h3_c00206{height:57.984000pt;}
.h2_c00206{height:1067.880000pt;}
.h0_c00206{height:1122.520000pt;}
.h1_c00206{height:1122.666667pt;}
.w8_c00206{width:22.240000pt;}
.w5_c00206{width:104.320000pt;}
.w6_c00206{width:104.960000pt;}
.w4_c00206{width:109.440000pt;}
.w7_c00206{width:113.280000pt;}
.w3_c00206{width:150.720000pt;}
.w2_c00206{width:767.960000pt;}
.w0_c00206{width:793.720000pt;}
.w1_c00206{width:794.000000pt;}
.x0_c00206{left:0.000000pt;}
.x17_c00206{left:11.852800pt;}
.x1_c00206{left:12.880000pt;}
.x16_c00206{left:35.732933pt;}
.x12_c00206{left:39.999867pt;}
.x14_c00206{left:42.958933pt;}
.x15_c00206{left:46.399600pt;}
.x13_c00206{left:48.333200pt;}
.x11_c00206{left:90.666533pt;}
.x9_c00206{left:94.800000pt;}
.xd_c00206{left:96.000000pt;}
.x2_c00206{left:100.480133pt;}
.xf_c00206{left:104.000000pt;}
.x8_c00206{left:124.478933pt;}
.x3_c00206{left:144.463600pt;}
.xa_c00206{left:147.512667pt;}
.x6_c00206{left:148.480133pt;}
.x4_c00206{left:202.654267pt;}
.x7_c00206{left:237.374933pt;}
.xb_c00206{left:246.160000pt;}
.xc_c00206{left:356.240000pt;}
.xe_c00206{left:461.200000pt;}
.x5_c00206{left:471.433333pt;}
.x10_c00206{left:566.800000pt;}
.x18_c00206{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ebee395573c16b2eaf88ce0.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.134000;font-style:normal;font-weight:normal;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_9b585eaa1b489825e3f26a8a.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;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:ff3_c00207;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_aa491e833889737c6ebe1ab3.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.162000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_805e76885f0ec4338c87cf08.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:1.191800;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00207;src:url('chunks/assets/font_8b72e1ebf1d8c53eee7e7f8d.woff2')format("woff");}.ff6_c00207{font-family:ff6_c00207;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00207;src:url('chunks/assets/font_d71ebd3f7f34a638ce747bac.woff2')format("woff");}.ff7_c00207{font-family:ff7_c00207;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00207;src:url('chunks/assets/font_5e8c2a3c0fc97fa9bcd844bd.woff2')format("woff");}.ff8_c00207{font-family:ff8_c00207;line-height:0.912598;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00207;src:url('chunks/assets/font_98bb55d0a3f7789f5e0c202a.woff2')format("woff");}.ff9_c00207{font-family:ff9_c00207;line-height:0.787000;font-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_c00207{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m3_c00207{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.m5_c00207{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);}
.m2_c00207{transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,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);}
.v2_c00207{vertical-align:-24.480000px;}
.v0_c00207{vertical-align:0.000000px;}
.v1_c00207{vertical-align:30.240000px;}
.ls20_c00207{letter-spacing:-3.619678px;}
.ls1e_c00207{letter-spacing:-2.428788px;}
.ls1f_c00207{letter-spacing:-0.430914px;}
.lsc_c00207{letter-spacing:-0.179568px;}
.lsb_c00207{letter-spacing:0.000000px;}
.ls17_c00207{letter-spacing:0.144000px;}
.ls11_c00207{letter-spacing:0.265680px;}
.ls13_c00207{letter-spacing:0.273857px;}
.ls7_c00207{letter-spacing:0.295200px;}
.ls5_c00207{letter-spacing:0.318480px;}
.ls16_c00207{letter-spacing:0.318816px;}
.ls6_c00207{letter-spacing:0.354240px;}
.ls15_c00207{letter-spacing:0.371952px;}
.ls1d_c00207{letter-spacing:0.425088px;}
.ls19_c00207{letter-spacing:0.438171px;}
.ls1b_c00207{letter-spacing:0.478224px;}
.ls2_c00207{letter-spacing:0.531360px;}
.ls12_c00207{letter-spacing:0.584496px;}
.ls1c_c00207{letter-spacing:0.602485px;}
.ls14_c00207{letter-spacing:0.637632px;}
.ls1a_c00207{letter-spacing:0.743904px;}
.ls8_c00207{letter-spacing:5.254560px;}
.ls4_c00207{letter-spacing:5.353440px;}
.ls9_c00207{letter-spacing:5.372640px;}
.ls10_c00207{letter-spacing:5.402160px;}
.ls3_c00207{letter-spacing:5.405040px;}
.lsd_c00207{letter-spacing:5.461200px;}
.ls1_c00207{letter-spacing:5.514336px;}
.lsf_c00207{letter-spacing:5.567472px;}
.lse_c00207{letter-spacing:5.939424px;}
.ls0_c00207{letter-spacing:5.976000px;}
.lsa_c00207{letter-spacing:6.159920px;}
.ls18_c00207{letter-spacing:6.317280px;}
.sc__c00207{text-shadow:none;}
.sc1_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00207{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc1_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00207{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb_c00207{word-spacing:-36.745212px;}
.ws2_c00207{word-spacing:-22.352544px;}
.ws9_c00207{word-spacing:-21.927456px;}
.ws1_c00207{word-spacing:-21.874320px;}
.ws3_c00207{word-spacing:-21.815280px;}
.ws8_c00207{word-spacing:-17.520742px;}
.ws5_c00207{word-spacing:-17.192114px;}
.ws4_c00207{word-spacing:-16.944480px;}
.ws6_c00207{word-spacing:-16.678800px;}
.wsd_c00207{word-spacing:-11.979409px;}
.ws0_c00207{word-spacing:-11.429712px;}
.ws7_c00207{word-spacing:-10.152000px;}
.wsc_c00207{word-spacing:-8.359732px;}
.wsa_c00207{word-spacing:-0.043091px;}
.wse_c00207{word-spacing:0.000000px;}
._b_c00207{margin-left:-6.132960px;}
._c_c00207{margin-left:-5.040000px;}
._10_c00207{margin-left:-3.576586px;}
._f_c00207{margin-left:-2.370027px;}
._8_c00207{margin-left:-1.280136px;}
._a_c00207{width:1.003680px;}
._7_c00207{width:2.088000px;}
._d_c00207{width:3.150648px;}
._5_c00207{width:4.176000px;}
._9_c00207{width:5.299080px;}
._1_c00207{width:6.624000px;}
._3_c00207{width:8.064000px;}
._e_c00207{width:12.915336px;}
._2_c00207{width:14.256000px;}
._4_c00207{width:16.272000px;}
._0_c00207{width:21.312000px;}
._6_c00207{width:25.776000px;}
.fc2_c00207{color:transparent;}
.fc1_c00207{color:rgb(35,31,32);}
.fc0_c00207{color:rgb(0,0,0);}
.fsa_c00207{font-size:24.993000px;}
.fs7_c00207{font-size:31.339200px;}
.fs6_c00207{font-size:35.256600px;}
.fs5_c00207{font-size:36.000000px;}
.fs9_c00207{font-size:39.174000px;}
.fs2_c00207{font-size:41.760000px;}
.fs8_c00207{font-size:43.091400px;}
.fs3_c00207{font-size:59.040000px;}
.fsb_c00207{font-size:60.000000px;}
.fs4_c00207{font-size:60.857039px;}
.fs0_c00207{font-size:72.000000px;}
.fs1_c00207{font-size:74.215901px;}
.y37_c00207{bottom:-498.785250px;}
.y4a_c00207{bottom:-312.253777px;}
.y49_c00207{bottom:-299.326357px;}
.y48_c00207{bottom:-286.398937px;}
.y47_c00207{bottom:-273.471517px;}
.y46_c00207{bottom:-260.544097px;}
.y45_c00207{bottom:-247.616677px;}
.y44_c00207{bottom:-234.689257px;}
.y43_c00207{bottom:-137.141100px;}
.y41_c00207{bottom:-137.140800px;}
.y42_c00207{bottom:-133.586100px;}
.y40_c00207{bottom:-98.358540px;}
.y3f_c00207{bottom:-85.431120px;}
.y3e_c00207{bottom:-72.501261px;}
.y3d_c00207{bottom:-59.573841px;}
.y3c_c00207{bottom:-46.646421px;}
.y3b_c00207{bottom:-33.719001px;}
.y3a_c00207{bottom:-20.791581px;}
.y0_c00207{bottom:0.000000px;}
.y4c_c00207{bottom:3.120150px;}
.y4b_c00207{bottom:34.744500px;}
.y39_c00207{bottom:46.194000px;}
.y1_c00207{bottom:54.000000px;}
.y35_c00207{bottom:55.842840px;}
.y38_c00207{bottom:71.086500px;}
.y34_c00207{bottom:73.126800px;}
.y32_c00207{bottom:90.761040px;}
.y33_c00207{bottom:90.765000px;}
.y31_c00207{bottom:108.045000px;}
.y30_c00207{bottom:108.046800px;}
.y2f_c00207{bottom:125.685000px;}
.y2e_c00207{bottom:131.805000px;}
.y2d_c00207{bottom:158.445000px;}
.y2a_c00207{bottom:229.005000px;}
.y2c_c00207{bottom:276.885000px;}
.y2b_c00207{bottom:294.165000px;}
.y29_c00207{bottom:311.805000px;}
.y28_c00207{bottom:329.445000px;}
.y27_c00207{bottom:346.725000px;}
.y26_c00207{bottom:365.085000px;}
.y25_c00207{bottom:382.725000px;}
.y24_c00207{bottom:397.485000px;}
.y23_c00207{bottom:479.925000px;}
.y22_c00207{bottom:497.565000px;}
.y21_c00207{bottom:515.205000px;}
.y20_c00207{bottom:533.205000px;}
.y1f_c00207{bottom:547.245000px;}
.y1e_c00207{bottom:630.405000px;}
.y1d_c00207{bottom:648.045000px;}
.y1c_c00207{bottom:665.325000px;}
.y1b_c00207{bottom:683.685000px;}
.y1a_c00207{bottom:701.325000px;}
.y19_c00207{bottom:718.605000px;}
.y13_c00207{bottom:733.725000px;}
.y16_c00207{bottom:734.805000px;}
.y18_c00207{bottom:736.245000px;}
.y10_c00207{bottom:736.965000px;}
.yf_c00207{bottom:751.005000px;}
.y15_c00207{bottom:767.205000px;}
.y12_c00207{bottom:780.525000px;}
.y17_c00207{bottom:784.125000px;}
.ye_c00207{bottom:799.245000px;}
.y14_c00207{bottom:808.965000px;}
.y36_c00207{bottom:821.265000px;}
.y11_c00207{bottom:826.605000px;}
.yd_c00207{bottom:860.085000px;}
.yc_c00207{bottom:880.965000px;}
.yb_c00207{bottom:901.845000px;}
.ya_c00207{bottom:923.085000px;}
.y9_c00207{bottom:943.965000px;}
.y8_c00207{bottom:964.845000px;}
.y7_c00207{bottom:986.085000px;}
.y6_c00207{bottom:1006.965000px;}
.y5_c00207{bottom:1027.845000px;}
.y4_c00207{bottom:1049.085000px;}
.y3_c00207{bottom:1085.085000px;}
.y2_c00207{bottom:1138.365000px;}
.h10_c00207{height:19.255500px;}
.hf_c00207{height:24.593112px;}
.hb_c00207{height:29.991614px;}
.h8_c00207{height:32.616000px;}
.ha_c00207{height:33.740566px;}
.h9_c00207{height:38.196000px;}
.hd_c00207{height:41.238470px;}
.he_c00207{height:42.392183px;}
.hc_c00207{height:42.401938px;}
.h11_c00207{height:46.320000px;}
.h7_c00207{height:46.981634px;}
.h6_c00207{height:53.490240px;}
.h4_c00207{height:57.294676px;}
.h3_c00207{height:65.232000px;}
.h5_c00207{height:68.074560px;}
.h2_c00207{height:1201.365000px;}
.h0_c00207{height:1262.835000px;}
.h1_c00207{height:1263.000000px;}
.w9_c00207{width:25.020000px;}
.w8_c00207{width:88.084500px;}
.w4_c00207{width:108.000000px;}
.w3_c00207{width:118.080000px;}
.w7_c00207{width:129.240000px;}
.w6_c00207{width:137.160000px;}
.w5_c00207{width:141.840000px;}
.w2_c00207{width:863.955000px;}
.w0_c00207{width:892.935000px;}
.w1_c00207{width:893.250000px;}
.x27_c00207{left:-31.491056px;}
.x26_c00207{left:-17.633400px;}
.x0_c00207{left:0.000000px;}
.x28_c00207{left:7.262700px;}
.x29_c00207{left:9.571650px;}
.x1d_c00207{left:10.830000px;}
.x1_c00207{left:14.490000px;}
.x1a_c00207{left:48.000150px;}
.x19_c00207{left:63.000000px;}
.x2a_c00207{left:65.760750px;}
.x10_c00207{left:81.375150px;}
.x15_c00207{left:87.000000px;}
.x17_c00207{left:90.000150px;}
.x14_c00207{left:102.000000px;}
.x25_c00207{left:104.031300px;}
.x11_c00207{left:108.894750px;}
.x2_c00207{left:113.040150px;}
.x1b_c00207{left:119.981400px;}
.xf_c00207{left:127.530000px;}
.x1c_c00207{left:130.811400px;}
.x24_c00207{left:133.062600px;}
.x3_c00207{left:162.521550px;}
.x6_c00207{left:213.273900px;}
.x4_c00207{left:227.986050px;}
.x12_c00207{left:246.330000px;}
.x1e_c00207{left:263.271300px;}
.x1f_c00207{left:284.778450px;}
.x13_c00207{left:355.050000px;}
.x7_c00207{left:372.126000px;}
.x22_c00207{left:385.728900px;}
.x23_c00207{left:436.562700px;}
.x8_c00207{left:469.151700px;}
.x9_c00207{left:492.204750px;}
.x16_c00207{left:497.610000px;}
.x5_c00207{left:530.362500px;}
.xa_c00207{left:561.216000px;}
.xd_c00207{left:601.331550px;}
.x18_c00207{left:635.490000px;}
.xe_c00207{left:637.313250px;}
.xb_c00207{left:640.847850px;}
.xc_c00207{left:653.843700px;}
.x20_c00207{left:685.803600px;}
.x21_c00207{left:691.007400px;}
.x2b_c00207{left:759.915000px;}
@media print{
.v2_c00207{vertical-align:-21.760000pt;}
.v0_c00207{vertical-align:0.000000pt;}
.v1_c00207{vertical-align:26.880000pt;}
.ls20_c00207{letter-spacing:-3.217491pt;}
.ls1e_c00207{letter-spacing:-2.158923pt;}
.ls1f_c00207{letter-spacing:-0.383035pt;}
.lsc_c00207{letter-spacing:-0.159616pt;}
.lsb_c00207{letter-spacing:0.000000pt;}
.ls17_c00207{letter-spacing:0.128000pt;}
.ls11_c00207{letter-spacing:0.236160pt;}
.ls13_c00207{letter-spacing:0.243428pt;}
.ls7_c00207{letter-spacing:0.262400pt;}
.ls5_c00207{letter-spacing:0.283093pt;}
.ls16_c00207{letter-spacing:0.283392pt;}
.ls6_c00207{letter-spacing:0.314880pt;}
.ls15_c00207{letter-spacing:0.330624pt;}
.ls1d_c00207{letter-spacing:0.377856pt;}
.ls19_c00207{letter-spacing:0.389485pt;}
.ls1b_c00207{letter-spacing:0.425088pt;}
.ls2_c00207{letter-spacing:0.472320pt;}
.ls12_c00207{letter-spacing:0.519552pt;}
.ls1c_c00207{letter-spacing:0.535542pt;}
.ls14_c00207{letter-spacing:0.566784pt;}
.ls1a_c00207{letter-spacing:0.661248pt;}
.ls8_c00207{letter-spacing:4.670720pt;}
.ls4_c00207{letter-spacing:4.758613pt;}
.ls9_c00207{letter-spacing:4.775680pt;}
.ls10_c00207{letter-spacing:4.801920pt;}
.ls3_c00207{letter-spacing:4.804480pt;}
.lsd_c00207{letter-spacing:4.854400pt;}
.ls1_c00207{letter-spacing:4.901632pt;}
.lsf_c00207{letter-spacing:4.948864pt;}
.lse_c00207{letter-spacing:5.279488pt;}
.ls0_c00207{letter-spacing:5.312000pt;}
.lsa_c00207{letter-spacing:5.475484pt;}
.ls18_c00207{letter-spacing:5.615360pt;}
.wsb_c00207{word-spacing:-32.662411pt;}
.ws2_c00207{word-spacing:-19.868928pt;}
.ws9_c00207{word-spacing:-19.491072pt;}
.ws1_c00207{word-spacing:-19.443840pt;}
.ws3_c00207{word-spacing:-19.391360pt;}
.ws8_c00207{word-spacing:-15.573992pt;}
.ws5_c00207{word-spacing:-15.281879pt;}
.ws4_c00207{word-spacing:-15.061760pt;}
.ws6_c00207{word-spacing:-14.825600pt;}
.wsd_c00207{word-spacing:-10.648364pt;}
.ws0_c00207{word-spacing:-10.159744pt;}
.ws7_c00207{word-spacing:-9.024000pt;}
.wsc_c00207{word-spacing:-7.430873pt;}
.wsa_c00207{word-spacing:-0.038303pt;}
.wse_c00207{word-spacing:0.000000pt;}
._b_c00207{margin-left:-5.451520pt;}
._c_c00207{margin-left:-4.480000pt;}
._10_c00207{margin-left:-3.179188pt;}
._f_c00207{margin-left:-2.106691pt;}
._8_c00207{margin-left:-1.137899pt;}
._a_c00207{width:0.892160pt;}
._7_c00207{width:1.856000pt;}
._d_c00207{width:2.800576pt;}
._5_c00207{width:3.712000pt;}
._9_c00207{width:4.710293pt;}
._1_c00207{width:5.888000pt;}
._3_c00207{width:7.168000pt;}
._e_c00207{width:11.480299pt;}
._2_c00207{width:12.672000pt;}
._4_c00207{width:14.464000pt;}
._0_c00207{width:18.944000pt;}
._6_c00207{width:22.912000pt;}
.fsa_c00207{font-size:22.216000pt;}
.fs7_c00207{font-size:27.857067pt;}
.fs6_c00207{font-size:31.339200pt;}
.fs5_c00207{font-size:32.000000pt;}
.fs9_c00207{font-size:34.821333pt;}
.fs2_c00207{font-size:37.120000pt;}
.fs8_c00207{font-size:38.303467pt;}
.fs3_c00207{font-size:52.480000pt;}
.fsb_c00207{font-size:53.333333pt;}
.fs4_c00207{font-size:54.095146pt;}
.fs0_c00207{font-size:64.000000pt;}
.fs1_c00207{font-size:65.969690pt;}
.y37_c00207{bottom:-443.364667pt;}
.y4a_c00207{bottom:-277.558913pt;}
.y49_c00207{bottom:-266.067873pt;}
.y48_c00207{bottom:-254.576833pt;}
.y47_c00207{bottom:-243.085793pt;}
.y46_c00207{bottom:-231.594753pt;}
.y45_c00207{bottom:-220.103713pt;}
.y44_c00207{bottom:-208.612673pt;}
.y43_c00207{bottom:-121.903200pt;}
.y41_c00207{bottom:-121.902933pt;}
.y42_c00207{bottom:-118.743200pt;}
.y40_c00207{bottom:-87.429813pt;}
.y3f_c00207{bottom:-75.938773pt;}
.y3e_c00207{bottom:-64.445566pt;}
.y3d_c00207{bottom:-52.954526pt;}
.y3c_c00207{bottom:-41.463486pt;}
.y3b_c00207{bottom:-29.972446pt;}
.y3a_c00207{bottom:-18.481406pt;}
.y0_c00207{bottom:0.000000pt;}
.y4c_c00207{bottom:2.773467pt;}
.y4b_c00207{bottom:30.884000pt;}
.y39_c00207{bottom:41.061333pt;}
.y1_c00207{bottom:48.000000pt;}
.y35_c00207{bottom:49.638080pt;}
.y38_c00207{bottom:63.188000pt;}
.y34_c00207{bottom:65.001600pt;}
.y32_c00207{bottom:80.676480pt;}
.y33_c00207{bottom:80.680000pt;}
.y31_c00207{bottom:96.040000pt;}
.y30_c00207{bottom:96.041600pt;}
.y2f_c00207{bottom:111.720000pt;}
.y2e_c00207{bottom:117.160000pt;}
.y2d_c00207{bottom:140.840000pt;}
.y2a_c00207{bottom:203.560000pt;}
.y2c_c00207{bottom:246.120000pt;}
.y2b_c00207{bottom:261.480000pt;}
.y29_c00207{bottom:277.160000pt;}
.y28_c00207{bottom:292.840000pt;}
.y27_c00207{bottom:308.200000pt;}
.y26_c00207{bottom:324.520000pt;}
.y25_c00207{bottom:340.200000pt;}
.y24_c00207{bottom:353.320000pt;}
.y23_c00207{bottom:426.600000pt;}
.y22_c00207{bottom:442.280000pt;}
.y21_c00207{bottom:457.960000pt;}
.y20_c00207{bottom:473.960000pt;}
.y1f_c00207{bottom:486.440000pt;}
.y1e_c00207{bottom:560.360000pt;}
.y1d_c00207{bottom:576.040000pt;}
.y1c_c00207{bottom:591.400000pt;}
.y1b_c00207{bottom:607.720000pt;}
.y1a_c00207{bottom:623.400000pt;}
.y19_c00207{bottom:638.760000pt;}
.y13_c00207{bottom:652.200000pt;}
.y16_c00207{bottom:653.160000pt;}
.y18_c00207{bottom:654.440000pt;}
.y10_c00207{bottom:655.080000pt;}
.yf_c00207{bottom:667.560000pt;}
.y15_c00207{bottom:681.960000pt;}
.y12_c00207{bottom:693.800000pt;}
.y17_c00207{bottom:697.000000pt;}
.ye_c00207{bottom:710.440000pt;}
.y14_c00207{bottom:719.080000pt;}
.y36_c00207{bottom:730.013333pt;}
.y11_c00207{bottom:734.760000pt;}
.yd_c00207{bottom:764.520000pt;}
.yc_c00207{bottom:783.080000pt;}
.yb_c00207{bottom:801.640000pt;}
.ya_c00207{bottom:820.520000pt;}
.y9_c00207{bottom:839.080000pt;}
.y8_c00207{bottom:857.640000pt;}
.y7_c00207{bottom:876.520000pt;}
.y6_c00207{bottom:895.080000pt;}
.y5_c00207{bottom:913.640000pt;}
.y4_c00207{bottom:932.520000pt;}
.y3_c00207{bottom:964.520000pt;}
.y2_c00207{bottom:1011.880000pt;}
.h10_c00207{height:17.116000pt;}
.hf_c00207{height:21.860544pt;}
.hb_c00207{height:26.659213pt;}
.h8_c00207{height:28.992000pt;}
.ha_c00207{height:29.991614pt;}
.h9_c00207{height:33.952000pt;}
.hd_c00207{height:36.656418pt;}
.he_c00207{height:37.681940pt;}
.hc_c00207{height:37.690611pt;}
.h11_c00207{height:41.173333pt;}
.h7_c00207{height:41.761453pt;}
.h6_c00207{height:47.546880pt;}
.h4_c00207{height:50.928601pt;}
.h3_c00207{height:57.984000pt;}
.h5_c00207{height:60.510720pt;}
.h2_c00207{height:1067.880000pt;}
.h0_c00207{height:1122.520000pt;}
.h1_c00207{height:1122.666667pt;}
.w9_c00207{width:22.240000pt;}
.w8_c00207{width:78.297333pt;}
.w4_c00207{width:96.000000pt;}
.w3_c00207{width:104.960000pt;}
.w7_c00207{width:114.880000pt;}
.w6_c00207{width:121.920000pt;}
.w5_c00207{width:126.080000pt;}
.w2_c00207{width:767.960000pt;}
.w0_c00207{width:793.720000pt;}
.w1_c00207{width:794.000000pt;}
.x27_c00207{left:-27.992050pt;}
.x26_c00207{left:-15.674133pt;}
.x0_c00207{left:0.000000pt;}
.x28_c00207{left:6.455733pt;}
.x29_c00207{left:8.508133pt;}
.x1d_c00207{left:9.626667pt;}
.x1_c00207{left:12.880000pt;}
.x1a_c00207{left:42.666800pt;}
.x19_c00207{left:56.000000pt;}
.x2a_c00207{left:58.454000pt;}
.x10_c00207{left:72.333467pt;}
.x15_c00207{left:77.333333pt;}
.x17_c00207{left:80.000133pt;}
.x14_c00207{left:90.666667pt;}
.x25_c00207{left:92.472267pt;}
.x11_c00207{left:96.795333pt;}
.x2_c00207{left:100.480133pt;}
.x1b_c00207{left:106.650133pt;}
.xf_c00207{left:113.360000pt;}
.x1c_c00207{left:116.276800pt;}
.x24_c00207{left:118.277867pt;}
.x3_c00207{left:144.463600pt;}
.x6_c00207{left:189.576800pt;}
.x4_c00207{left:202.654267pt;}
.x12_c00207{left:218.960000pt;}
.x1e_c00207{left:234.018933pt;}
.x1f_c00207{left:253.136400pt;}
.x13_c00207{left:315.600000pt;}
.x7_c00207{left:330.778667pt;}
.x22_c00207{left:342.870133pt;}
.x23_c00207{left:388.055733pt;}
.x8_c00207{left:417.023733pt;}
.x9_c00207{left:437.515333pt;}
.x16_c00207{left:442.320000pt;}
.x5_c00207{left:471.433333pt;}
.xa_c00207{left:498.858667pt;}
.xd_c00207{left:534.516933pt;}
.x18_c00207{left:564.880000pt;}
.xe_c00207{left:566.500667pt;}
.xb_c00207{left:569.642533pt;}
.xc_c00207{left:581.194400pt;}
.x20_c00207{left:609.603200pt;}
.x21_c00207{left:614.228800pt;}
.x2b_c00207{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80e6e2e6dbc34c85980e43fe.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.134000;font-style:normal;font-weight:normal;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_1dba2b325f88839382f7130a.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;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:ff3_c00208;src:url('chunks/assets/font_dcfbca5359436ac69885060a.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:0.787000;font-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_c00208{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00208{vertical-align:-24.480000px;}
.v0_c00208{vertical-align:0.000000px;}
.v1_c00208{vertical-align:30.240000px;}
.lsf_c00208{letter-spacing:-0.179568px;}
.ls5_c00208{letter-spacing:0.000000px;}
.ls10_c00208{letter-spacing:0.144000px;}
.lsa_c00208{letter-spacing:0.265680px;}
.ls1_c00208{letter-spacing:0.318480px;}
.lsb_c00208{letter-spacing:0.318816px;}
.ls9_c00208{letter-spacing:0.371952px;}
.lsc_c00208{letter-spacing:0.478224px;}
.ls0_c00208{letter-spacing:0.531360px;}
.lsd_c00208{letter-spacing:0.584496px;}
.ls8_c00208{letter-spacing:0.637632px;}
.lse_c00208{letter-spacing:5.335200px;}
.ls7_c00208{letter-spacing:5.402160px;}
.ls6_c00208{letter-spacing:5.567472px;}
.ls2_c00208{letter-spacing:5.975400px;}
.ls3_c00208{letter-spacing:5.976000px;}
.ls4_c00208{letter-spacing:6.159920px;}
.sc__c00208{text-shadow:none;}
.sc1_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00208{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc1_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00208{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00208{word-spacing:-21.815280px;}
.ws3_c00208{word-spacing:-20.947680px;}
.ws1_c00208{word-spacing:-16.944480px;}
.ws2_c00208{word-spacing:-16.678800px;}
.ws4_c00208{word-spacing:-11.429712px;}
.ws5_c00208{word-spacing:-10.152000px;}
.ws6_c00208{word-spacing:0.000000px;}
._0_c00208{margin-left:-1.023624px;}
._1_c00208{width:1.062720px;}
._3_c00208{width:4.320000px;}
._2_c00208{width:8.136000px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs6_c00208{font-size:36.000000px;}
.fs5_c00208{font-size:41.760000px;}
.fs4_c00208{font-size:56.160000px;}
.fs2_c00208{font-size:59.040000px;}
.fs7_c00208{font-size:60.000000px;}
.fs3_c00208{font-size:60.857039px;}
.fs0_c00208{font-size:72.000000px;}
.fs1_c00208{font-size:74.215901px;}
.y0_c00208{bottom:0.000000px;}
.y26_c00208{bottom:3.120150px;}
.y25_c00208{bottom:34.744500px;}
.y1_c00208{bottom:54.000000px;}
.y24_c00208{bottom:61.605000px;}
.y23_c00208{bottom:88.245000px;}
.y22_c00208{bottom:331.245000px;}
.y21_c00208{bottom:367.245000px;}
.y20_c00208{bottom:388.485000px;}
.y1f_c00208{bottom:424.485000px;}
.y1e_c00208{bottom:460.485000px;}
.y1b_c00208{bottom:478.485000px;}
.y1d_c00208{bottom:510.525000px;}
.y1c_c00208{bottom:527.805000px;}
.y1a_c00208{bottom:545.445000px;}
.y19_c00208{bottom:563.085000px;}
.y18_c00208{bottom:580.365000px;}
.y17_c00208{bottom:595.485000px;}
.y16_c00208{bottom:646.605000px;}
.y15_c00208{bottom:664.245000px;}
.y14_c00208{bottom:681.885000px;}
.y11_c00208{bottom:696.645000px;}
.y13_c00208{bottom:745.245000px;}
.y12_c00208{bottom:762.885000px;}
.y10_c00208{bottom:780.525000px;}
.yf_c00208{bottom:797.805000px;}
.ye_c00208{bottom:815.445000px;}
.yd_c00208{bottom:830.205000px;}
.yc_c00208{bottom:884.205000px;}
.yb_c00208{bottom:901.485000px;}
.ya_c00208{bottom:919.125000px;}
.y7_c00208{bottom:933.885000px;}
.y9_c00208{bottom:981.405000px;}
.y8_c00208{bottom:999.045000px;}
.y6_c00208{bottom:1016.685000px;}
.y5_c00208{bottom:1033.965000px;}
.y4_c00208{bottom:1051.604850px;}
.y3_c00208{bottom:1085.085000px;}
.y2_c00208{bottom:1138.365000px;}
.h9_c00208{height:19.255500px;}
.h8_c00208{height:32.616000px;}
.ha_c00208{height:46.320000px;}
.h6_c00208{height:46.981634px;}
.h5_c00208{height:53.490240px;}
.h4_c00208{height:57.294676px;}
.h3_c00208{height:65.232000px;}
.h7_c00208{height:68.074560px;}
.h2_c00208{height:1201.365000px;}
.h0_c00208{height:1262.835000px;}
.h1_c00208{height:1263.000000px;}
.w8_c00208{width:25.020000px;}
.w4_c00208{width:108.000000px;}
.w3_c00208{width:118.080000px;}
.w7_c00208{width:129.240000px;}
.w6_c00208{width:137.160000px;}
.w5_c00208{width:141.840000px;}
.w2_c00208{width:863.955000px;}
.w0_c00208{width:892.935000px;}
.w1_c00208{width:893.250000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:14.490000px;}
.xe_c00208{left:24.600000px;}
.xc_c00208{left:42.600000px;}
.xd_c00208{left:45.000150px;}
.x7_c00208{left:48.000150px;}
.x2_c00208{left:113.040150px;}
.xf_c00208{left:119.981400px;}
.x6_c00208{left:127.530000px;}
.x10_c00208{left:129.146250px;}
.x11_c00208{left:140.040150px;}
.x3_c00208{left:162.521550px;}
.x4_c00208{left:227.986050px;}
.x8_c00208{left:246.330000px;}
.x9_c00208{left:355.050000px;}
.xa_c00208{left:497.610000px;}
.x5_c00208{left:530.362500px;}
.xb_c00208{left:635.490000px;}
.x12_c00208{left:759.915000px;}
@media print{
.v2_c00208{vertical-align:-21.760000pt;}
.v0_c00208{vertical-align:0.000000pt;}
.v1_c00208{vertical-align:26.880000pt;}
.lsf_c00208{letter-spacing:-0.159616pt;}
.ls5_c00208{letter-spacing:0.000000pt;}
.ls10_c00208{letter-spacing:0.128000pt;}
.lsa_c00208{letter-spacing:0.236160pt;}
.ls1_c00208{letter-spacing:0.283093pt;}
.lsb_c00208{letter-spacing:0.283392pt;}
.ls9_c00208{letter-spacing:0.330624pt;}
.lsc_c00208{letter-spacing:0.425088pt;}
.ls0_c00208{letter-spacing:0.472320pt;}
.lsd_c00208{letter-spacing:0.519552pt;}
.ls8_c00208{letter-spacing:0.566784pt;}
.lse_c00208{letter-spacing:4.742400pt;}
.ls7_c00208{letter-spacing:4.801920pt;}
.ls6_c00208{letter-spacing:4.948864pt;}
.ls2_c00208{letter-spacing:5.311467pt;}
.ls3_c00208{letter-spacing:5.312000pt;}
.ls4_c00208{letter-spacing:5.475484pt;}
.ws0_c00208{word-spacing:-19.391360pt;}
.ws3_c00208{word-spacing:-18.620160pt;}
.ws1_c00208{word-spacing:-15.061760pt;}
.ws2_c00208{word-spacing:-14.825600pt;}
.ws4_c00208{word-spacing:-10.159744pt;}
.ws5_c00208{word-spacing:-9.024000pt;}
.ws6_c00208{word-spacing:0.000000pt;}
._0_c00208{margin-left:-0.909888pt;}
._1_c00208{width:0.944640pt;}
._3_c00208{width:3.840000pt;}
._2_c00208{width:7.232000pt;}
.fs6_c00208{font-size:32.000000pt;}
.fs5_c00208{font-size:37.120000pt;}
.fs4_c00208{font-size:49.920000pt;}
.fs2_c00208{font-size:52.480000pt;}
.fs7_c00208{font-size:53.333333pt;}
.fs3_c00208{font-size:54.095146pt;}
.fs0_c00208{font-size:64.000000pt;}
.fs1_c00208{font-size:65.969690pt;}
.y0_c00208{bottom:0.000000pt;}
.y26_c00208{bottom:2.773467pt;}
.y25_c00208{bottom:30.884000pt;}
.y1_c00208{bottom:48.000000pt;}
.y24_c00208{bottom:54.760000pt;}
.y23_c00208{bottom:78.440000pt;}
.y22_c00208{bottom:294.440000pt;}
.y21_c00208{bottom:326.440000pt;}
.y20_c00208{bottom:345.320000pt;}
.y1f_c00208{bottom:377.320000pt;}
.y1e_c00208{bottom:409.320000pt;}
.y1b_c00208{bottom:425.320000pt;}
.y1d_c00208{bottom:453.800000pt;}
.y1c_c00208{bottom:469.160000pt;}
.y1a_c00208{bottom:484.840000pt;}
.y19_c00208{bottom:500.520000pt;}
.y18_c00208{bottom:515.880000pt;}
.y17_c00208{bottom:529.320000pt;}
.y16_c00208{bottom:574.760000pt;}
.y15_c00208{bottom:590.440000pt;}
.y14_c00208{bottom:606.120000pt;}
.y11_c00208{bottom:619.240000pt;}
.y13_c00208{bottom:662.440000pt;}
.y12_c00208{bottom:678.120000pt;}
.y10_c00208{bottom:693.800000pt;}
.yf_c00208{bottom:709.160000pt;}
.ye_c00208{bottom:724.840000pt;}
.yd_c00208{bottom:737.960000pt;}
.yc_c00208{bottom:785.960000pt;}
.yb_c00208{bottom:801.320000pt;}
.ya_c00208{bottom:817.000000pt;}
.y7_c00208{bottom:830.120000pt;}
.y9_c00208{bottom:872.360000pt;}
.y8_c00208{bottom:888.040000pt;}
.y6_c00208{bottom:903.720000pt;}
.y5_c00208{bottom:919.080000pt;}
.y4_c00208{bottom:934.759867pt;}
.y3_c00208{bottom:964.520000pt;}
.y2_c00208{bottom:1011.880000pt;}
.h9_c00208{height:17.116000pt;}
.h8_c00208{height:28.992000pt;}
.ha_c00208{height:41.173333pt;}
.h6_c00208{height:41.761453pt;}
.h5_c00208{height:47.546880pt;}
.h4_c00208{height:50.928601pt;}
.h3_c00208{height:57.984000pt;}
.h7_c00208{height:60.510720pt;}
.h2_c00208{height:1067.880000pt;}
.h0_c00208{height:1122.520000pt;}
.h1_c00208{height:1122.666667pt;}
.w8_c00208{width:22.240000pt;}
.w4_c00208{width:96.000000pt;}
.w3_c00208{width:104.960000pt;}
.w7_c00208{width:114.880000pt;}
.w6_c00208{width:121.920000pt;}
.w5_c00208{width:126.080000pt;}
.w2_c00208{width:767.960000pt;}
.w0_c00208{width:793.720000pt;}
.w1_c00208{width:794.000000pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:12.880000pt;}
.xe_c00208{left:21.866667pt;}
.xc_c00208{left:37.866667pt;}
.xd_c00208{left:40.000133pt;}
.x7_c00208{left:42.666800pt;}
.x2_c00208{left:100.480133pt;}
.xf_c00208{left:106.650133pt;}
.x6_c00208{left:113.360000pt;}
.x10_c00208{left:114.796667pt;}
.x11_c00208{left:124.480133pt;}
.x3_c00208{left:144.463600pt;}
.x4_c00208{left:202.654267pt;}
.x8_c00208{left:218.960000pt;}
.x9_c00208{left:315.600000pt;}
.xa_c00208{left:442.320000pt;}
.x5_c00208{left:471.433333pt;}
.xb_c00208{left:564.880000pt;}
.x12_c00208{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_513f8a6bea7398e53181cdec.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;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_c00209;src:url('chunks/assets/font_ad425a217a819b04f0f12c25.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;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:ff3_c00209;src:url('chunks/assets/font_59ac7ef0f93ea697ce5645e8.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;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:ff4_c00209;src:url('chunks/assets/font_d4e36dfd5df15b9dd88343a3.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:0.787000;font-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_c00209{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00209{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls5_c00209{letter-spacing:0.000000px;}
.ls1_c00209{letter-spacing:0.199560px;}
.ls0_c00209{letter-spacing:0.200160px;}
.ls7_c00209{letter-spacing:0.202464px;}
.ls2_c00209{letter-spacing:0.238560px;}
.lsa_c00209{letter-spacing:0.239760px;}
.ls9_c00209{letter-spacing:0.319680px;}
.ls6_c00209{letter-spacing:0.399600px;}
.ls8_c00209{letter-spacing:0.532722px;}
.ls3_c00209{letter-spacing:5.976000px;}
.ls4_c00209{letter-spacing:6.159920px;}
.sc__c00209{text-shadow:none;}
.sc1_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00209{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc1_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00209{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00209{word-spacing:-15.211440px;}
.ws0_c00209{word-spacing:-15.051600px;}
.ws2_c00209{word-spacing:0.000000px;}
._1_c00209{margin-left:-1.065600px;}
._0_c00209{width:1.014120px;}
.fc1_c00209{color:transparent;}
.fc0_c00209{color:rgb(0,0,0);}
.fs2_c00209{font-size:53.280000px;}
.fs3_c00209{font-size:54.919767px;}
.fs5_c00209{font-size:60.000000px;}
.fs0_c00209{font-size:72.000000px;}
.fs1_c00209{font-size:74.215901px;}
.fs4_c00209{font-size:77.760000px;}
.y0_c00209{bottom:0.000000px;}
.y23_c00209{bottom:3.120150px;}
.y20_c00209{bottom:25.560000px;}
.y22_c00209{bottom:34.744500px;}
.y1f_c00209{bottom:41.400000px;}
.y1_c00209{bottom:54.000000px;}
.y21_c00209{bottom:139.365000px;}
.y1d_c00209{bottom:148.725000px;}
.y1c_c00209{bottom:184.725000px;}
.y1b_c00209{bottom:220.725000px;}
.y1a_c00209{bottom:256.725000px;}
.y19_c00209{bottom:292.725000px;}
.y18_c00209{bottom:328.725000px;}
.y17_c00209{bottom:364.725000px;}
.y16_c00209{bottom:400.725000px;}
.y15_c00209{bottom:436.725000px;}
.y14_c00209{bottom:472.725000px;}
.y13_c00209{bottom:509.085000px;}
.y12_c00209{bottom:545.085000px;}
.y11_c00209{bottom:581.085000px;}
.y1e_c00209{bottom:589.365000px;}
.y10_c00209{bottom:617.085000px;}
.yf_c00209{bottom:653.085000px;}
.ye_c00209{bottom:689.085000px;}
.yd_c00209{bottom:725.085000px;}
.yc_c00209{bottom:761.085000px;}
.yb_c00209{bottom:797.085000px;}
.ya_c00209{bottom:833.085000px;}
.y9_c00209{bottom:869.085000px;}
.y8_c00209{bottom:905.085000px;}
.y7_c00209{bottom:941.085000px;}
.y6_c00209{bottom:977.085000px;}
.y5_c00209{bottom:1013.085000px;}
.y4_c00209{bottom:1049.085000px;}
.y3_c00209{bottom:1085.085000px;}
.y2_c00209{bottom:1138.365000px;}
.h9_c00209{height:19.255500px;}
.h6_c00209{height:41.132160px;}
.h7_c00209{height:42.398060px;}
.ha_c00209{height:46.320000px;}
.h5_c00209{height:54.000000px;}
.h3_c00209{height:55.584000px;}
.h4_c00209{height:57.294676px;}
.h8_c00209{height:58.320000px;}
.h2_c00209{height:1201.365000px;}
.h0_c00209{height:1262.835000px;}
.h1_c00209{height:1263.000000px;}
.w5_c00209{width:25.020000px;}
.w3_c00209{width:601.920000px;}
.w4_c00209{width:651.960000px;}
.w2_c00209{width:863.955000px;}
.w0_c00209{width:892.935000px;}
.w1_c00209{width:893.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:14.490000px;}
.x2_c00209{left:113.040150px;}
.x9_c00209{left:127.170000px;}
.xa_c00209{left:138.988650px;}
.x6_c00209{left:151.650000px;}
.x3_c00209{left:162.521550px;}
.xd_c00209{left:176.875650px;}
.x7_c00209{left:224.320200px;}
.x4_c00209{left:227.986050px;}
.xb_c00209{left:249.295350px;}
.x8_c00209{left:261.822450px;}
.xc_c00209{left:286.797450px;}
.x5_c00209{left:530.362500px;}
.xe_c00209{left:759.915000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls5_c00209{letter-spacing:0.000000pt;}
.ls1_c00209{letter-spacing:0.177387pt;}
.ls0_c00209{letter-spacing:0.177920pt;}
.ls7_c00209{letter-spacing:0.179968pt;}
.ls2_c00209{letter-spacing:0.212053pt;}
.lsa_c00209{letter-spacing:0.213120pt;}
.ls9_c00209{letter-spacing:0.284160pt;}
.ls6_c00209{letter-spacing:0.355200pt;}
.ls8_c00209{letter-spacing:0.473530pt;}
.ls3_c00209{letter-spacing:5.312000pt;}
.ls4_c00209{letter-spacing:5.475484pt;}
.ws1_c00209{word-spacing:-13.521280pt;}
.ws0_c00209{word-spacing:-13.379200pt;}
.ws2_c00209{word-spacing:0.000000pt;}
._1_c00209{margin-left:-0.947200pt;}
._0_c00209{width:0.901440pt;}
.fs2_c00209{font-size:47.360000pt;}
.fs3_c00209{font-size:48.817571pt;}
.fs5_c00209{font-size:53.333333pt;}
.fs0_c00209{font-size:64.000000pt;}
.fs1_c00209{font-size:65.969690pt;}
.fs4_c00209{font-size:69.120000pt;}
.y0_c00209{bottom:0.000000pt;}
.y23_c00209{bottom:2.773467pt;}
.y20_c00209{bottom:22.720000pt;}
.y22_c00209{bottom:30.884000pt;}
.y1f_c00209{bottom:36.800000pt;}
.y1_c00209{bottom:48.000000pt;}
.y21_c00209{bottom:123.880000pt;}
.y1d_c00209{bottom:132.200000pt;}
.y1c_c00209{bottom:164.200000pt;}
.y1b_c00209{bottom:196.200000pt;}
.y1a_c00209{bottom:228.200000pt;}
.y19_c00209{bottom:260.200000pt;}
.y18_c00209{bottom:292.200000pt;}
.y17_c00209{bottom:324.200000pt;}
.y16_c00209{bottom:356.200000pt;}
.y15_c00209{bottom:388.200000pt;}
.y14_c00209{bottom:420.200000pt;}
.y13_c00209{bottom:452.520000pt;}
.y12_c00209{bottom:484.520000pt;}
.y11_c00209{bottom:516.520000pt;}
.y1e_c00209{bottom:523.880000pt;}
.y10_c00209{bottom:548.520000pt;}
.yf_c00209{bottom:580.520000pt;}
.ye_c00209{bottom:612.520000pt;}
.yd_c00209{bottom:644.520000pt;}
.yc_c00209{bottom:676.520000pt;}
.yb_c00209{bottom:708.520000pt;}
.ya_c00209{bottom:740.520000pt;}
.y9_c00209{bottom:772.520000pt;}
.y8_c00209{bottom:804.520000pt;}
.y7_c00209{bottom:836.520000pt;}
.y6_c00209{bottom:868.520000pt;}
.y5_c00209{bottom:900.520000pt;}
.y4_c00209{bottom:932.520000pt;}
.y3_c00209{bottom:964.520000pt;}
.y2_c00209{bottom:1011.880000pt;}
.h9_c00209{height:17.116000pt;}
.h6_c00209{height:36.561920pt;}
.h7_c00209{height:37.687165pt;}
.ha_c00209{height:41.173333pt;}
.h5_c00209{height:48.000000pt;}
.h3_c00209{height:49.408000pt;}
.h4_c00209{height:50.928601pt;}
.h8_c00209{height:51.840000pt;}
.h2_c00209{height:1067.880000pt;}
.h0_c00209{height:1122.520000pt;}
.h1_c00209{height:1122.666667pt;}
.w5_c00209{width:22.240000pt;}
.w3_c00209{width:535.040000pt;}
.w4_c00209{width:579.520000pt;}
.w2_c00209{width:767.960000pt;}
.w0_c00209{width:793.720000pt;}
.w1_c00209{width:794.000000pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:12.880000pt;}
.x2_c00209{left:100.480133pt;}
.x9_c00209{left:113.040000pt;}
.xa_c00209{left:123.545467pt;}
.x6_c00209{left:134.800000pt;}
.x3_c00209{left:144.463600pt;}
.xd_c00209{left:157.222800pt;}
.x7_c00209{left:199.395733pt;}
.x4_c00209{left:202.654267pt;}
.xb_c00209{left:221.595867pt;}
.x8_c00209{left:232.731067pt;}
.xc_c00209{left:254.931067pt;}
.x5_c00209{left:471.433333pt;}
.xe_c00209{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a3ff7eba90e332715c4ad5d7.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;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_c00210;src:url('chunks/assets/font_a699597c70361c0949839156.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;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:ff3_c00210;src:url('chunks/assets/font_59ac7ef0f93ea697ce5645e8.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;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:ff4_c00210;src:url('chunks/assets/font_33ffbee26c21cf9ee48b1b06.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:0.787000;font-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_c00210{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00210{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls9_c00210{letter-spacing:0.000000px;}
.ls4_c00210{letter-spacing:0.050280px;}
.ls3_c00210{letter-spacing:0.199560px;}
.ls0_c00210{letter-spacing:0.202464px;}
.ls2_c00210{letter-spacing:0.238560px;}
.lsc_c00210{letter-spacing:0.239760px;}
.ls5_c00210{letter-spacing:0.318480px;}
.lsb_c00210{letter-spacing:0.319680px;}
.lsd_c00210{letter-spacing:0.362304px;}
.ls6_c00210{letter-spacing:0.399600px;}
.ls1_c00210{letter-spacing:0.411898px;}
.lse_c00210{letter-spacing:0.436896px;}
.lsa_c00210{letter-spacing:0.532722px;}
.ls7_c00210{letter-spacing:5.976000px;}
.ls8_c00210{letter-spacing:6.159920px;}
.sc__c00210{text-shadow:none;}
.sc1_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00210{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc1_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00210{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00210{word-spacing:-15.679593px;}
.ws3_c00210{word-spacing:-15.211440px;}
.ws2_c00210{word-spacing:-15.174144px;}
.ws1_c00210{word-spacing:-15.051600px;}
.ws4_c00210{word-spacing:0.000000px;}
._0_c00210{width:1.014120px;}
.fc0_c00210{color:rgb(0,0,0);}
.fs2_c00210{font-size:53.280000px;}
.fs3_c00210{font-size:54.919767px;}
.fs5_c00210{font-size:60.000000px;}
.fs0_c00210{font-size:72.000000px;}
.fs1_c00210{font-size:74.215901px;}
.fs4_c00210{font-size:77.760000px;}
.y0_c00210{bottom:0.000000px;}
.y29_c00210{bottom:3.120150px;}
.y25_c00210{bottom:22.320000px;}
.y22_c00210{bottom:25.560000px;}
.y28_c00210{bottom:34.744500px;}
.y24_c00210{bottom:37.800000px;}
.y27_c00210{bottom:41.040000px;}
.y21_c00210{bottom:41.400000px;}
.y1_c00210{bottom:54.000000px;}
.y1f_c00210{bottom:76.725000px;}
.y20_c00210{bottom:103.365000px;}
.y1e_c00210{bottom:112.725000px;}
.y1d_c00210{bottom:148.725000px;}
.y1c_c00210{bottom:184.725000px;}
.y1b_c00210{bottom:220.725000px;}
.y1a_c00210{bottom:256.725000px;}
.y19_c00210{bottom:292.725000px;}
.y18_c00210{bottom:328.725000px;}
.y17_c00210{bottom:364.725000px;}
.y16_c00210{bottom:400.725000px;}
.y23_c00210{bottom:429.885000px;}
.y15_c00210{bottom:436.725000px;}
.y14_c00210{bottom:472.725000px;}
.y13_c00210{bottom:509.085000px;}
.y12_c00210{bottom:545.085000px;}
.y11_c00210{bottom:581.085000px;}
.y10_c00210{bottom:617.085000px;}
.yf_c00210{bottom:653.085000px;}
.ye_c00210{bottom:689.085000px;}
.yd_c00210{bottom:725.085000px;}
.y26_c00210{bottom:751.365000px;}
.yc_c00210{bottom:761.085000px;}
.yb_c00210{bottom:797.085000px;}
.ya_c00210{bottom:833.085000px;}
.y9_c00210{bottom:869.085000px;}
.y8_c00210{bottom:905.085000px;}
.y7_c00210{bottom:941.085000px;}
.y6_c00210{bottom:977.085000px;}
.y5_c00210{bottom:1013.085000px;}
.y4_c00210{bottom:1049.085000px;}
.y3_c00210{bottom:1085.085000px;}
.y2_c00210{bottom:1138.365000px;}
.ha_c00210{height:19.255500px;}
.h6_c00210{height:41.132160px;}
.h7_c00210{height:42.398060px;}
.hb_c00210{height:46.320000px;}
.h9_c00210{height:50.400000px;}
.h5_c00210{height:54.000000px;}
.h3_c00210{height:55.584000px;}
.h4_c00210{height:57.294676px;}
.h8_c00210{height:58.320000px;}
.h2_c00210{height:1201.365000px;}
.h0_c00210{height:1262.835000px;}
.h1_c00210{height:1263.000000px;}
.w6_c00210{width:25.020000px;}
.w4_c00210{width:544.680000px;}
.w3_c00210{width:556.200000px;}
.w5_c00210{width:600.840000px;}
.w2_c00210{width:863.955000px;}
.w0_c00210{width:892.935000px;}
.w1_c00210{width:893.250000px;}
.x0_c00210{left:0.000000px;}
.x14_c00210{left:11.200500px;}
.x1_c00210{left:14.490000px;}
.xd_c00210{left:67.641300px;}
.x12_c00210{left:93.964950px;}
.xb_c00210{left:102.894450px;}
.x2_c00210{left:113.040150px;}
.x7_c00210{left:117.480600px;}
.x13_c00210{left:124.290000px;}
.x6_c00210{left:146.970000px;}
.xc_c00210{left:149.850000px;}
.x3_c00210{left:162.521550px;}
.xe_c00210{left:177.948150px;}
.xf_c00210{left:215.450250px;}
.x4_c00210{left:227.986050px;}
.x8_c00210{left:265.289550px;}
.x10_c00210{left:328.726650px;}
.x9_c00210{left:378.565800px;}
.x11_c00210{left:385.007100px;}
.xa_c00210{left:438.599250px;}
.x5_c00210{left:530.362500px;}
.x15_c00210{left:759.915000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls9_c00210{letter-spacing:0.000000pt;}
.ls4_c00210{letter-spacing:0.044693pt;}
.ls3_c00210{letter-spacing:0.177387pt;}
.ls0_c00210{letter-spacing:0.179968pt;}
.ls2_c00210{letter-spacing:0.212053pt;}
.lsc_c00210{letter-spacing:0.213120pt;}
.ls5_c00210{letter-spacing:0.283093pt;}
.lsb_c00210{letter-spacing:0.284160pt;}
.lsd_c00210{letter-spacing:0.322048pt;}
.ls6_c00210{letter-spacing:0.355200pt;}
.ls1_c00210{letter-spacing:0.366132pt;}
.lse_c00210{letter-spacing:0.388352pt;}
.lsa_c00210{letter-spacing:0.473530pt;}
.ls7_c00210{letter-spacing:5.312000pt;}
.ls8_c00210{letter-spacing:5.475484pt;}
.ws0_c00210{word-spacing:-13.937416pt;}
.ws3_c00210{word-spacing:-13.521280pt;}
.ws2_c00210{word-spacing:-13.488128pt;}
.ws1_c00210{word-spacing:-13.379200pt;}
.ws4_c00210{word-spacing:0.000000pt;}
._0_c00210{width:0.901440pt;}
.fs2_c00210{font-size:47.360000pt;}
.fs3_c00210{font-size:48.817571pt;}
.fs5_c00210{font-size:53.333333pt;}
.fs0_c00210{font-size:64.000000pt;}
.fs1_c00210{font-size:65.969690pt;}
.fs4_c00210{font-size:69.120000pt;}
.y0_c00210{bottom:0.000000pt;}
.y29_c00210{bottom:2.773467pt;}
.y25_c00210{bottom:19.840000pt;}
.y22_c00210{bottom:22.720000pt;}
.y28_c00210{bottom:30.884000pt;}
.y24_c00210{bottom:33.600000pt;}
.y27_c00210{bottom:36.480000pt;}
.y21_c00210{bottom:36.800000pt;}
.y1_c00210{bottom:48.000000pt;}
.y1f_c00210{bottom:68.200000pt;}
.y20_c00210{bottom:91.880000pt;}
.y1e_c00210{bottom:100.200000pt;}
.y1d_c00210{bottom:132.200000pt;}
.y1c_c00210{bottom:164.200000pt;}
.y1b_c00210{bottom:196.200000pt;}
.y1a_c00210{bottom:228.200000pt;}
.y19_c00210{bottom:260.200000pt;}
.y18_c00210{bottom:292.200000pt;}
.y17_c00210{bottom:324.200000pt;}
.y16_c00210{bottom:356.200000pt;}
.y23_c00210{bottom:382.120000pt;}
.y15_c00210{bottom:388.200000pt;}
.y14_c00210{bottom:420.200000pt;}
.y13_c00210{bottom:452.520000pt;}
.y12_c00210{bottom:484.520000pt;}
.y11_c00210{bottom:516.520000pt;}
.y10_c00210{bottom:548.520000pt;}
.yf_c00210{bottom:580.520000pt;}
.ye_c00210{bottom:612.520000pt;}
.yd_c00210{bottom:644.520000pt;}
.y26_c00210{bottom:667.880000pt;}
.yc_c00210{bottom:676.520000pt;}
.yb_c00210{bottom:708.520000pt;}
.ya_c00210{bottom:740.520000pt;}
.y9_c00210{bottom:772.520000pt;}
.y8_c00210{bottom:804.520000pt;}
.y7_c00210{bottom:836.520000pt;}
.y6_c00210{bottom:868.520000pt;}
.y5_c00210{bottom:900.520000pt;}
.y4_c00210{bottom:932.520000pt;}
.y3_c00210{bottom:964.520000pt;}
.y2_c00210{bottom:1011.880000pt;}
.ha_c00210{height:17.116000pt;}
.h6_c00210{height:36.561920pt;}
.h7_c00210{height:37.687165pt;}
.hb_c00210{height:41.173333pt;}
.h9_c00210{height:44.800000pt;}
.h5_c00210{height:48.000000pt;}
.h3_c00210{height:49.408000pt;}
.h4_c00210{height:50.928601pt;}
.h8_c00210{height:51.840000pt;}
.h2_c00210{height:1067.880000pt;}
.h0_c00210{height:1122.520000pt;}
.h1_c00210{height:1122.666667pt;}
.w6_c00210{width:22.240000pt;}
.w4_c00210{width:484.160000pt;}
.w3_c00210{width:494.400000pt;}
.w5_c00210{width:534.080000pt;}
.w2_c00210{width:767.960000pt;}
.w0_c00210{width:793.720000pt;}
.w1_c00210{width:794.000000pt;}
.x0_c00210{left:0.000000pt;}
.x14_c00210{left:9.956000pt;}
.x1_c00210{left:12.880000pt;}
.xd_c00210{left:60.125600pt;}
.x12_c00210{left:83.524400pt;}
.xb_c00210{left:91.461733pt;}
.x2_c00210{left:100.480133pt;}
.x7_c00210{left:104.427200pt;}
.x13_c00210{left:110.480000pt;}
.x6_c00210{left:130.640000pt;}
.xc_c00210{left:133.200000pt;}
.x3_c00210{left:144.463600pt;}
.xe_c00210{left:158.176133pt;}
.xf_c00210{left:191.511333pt;}
.x4_c00210{left:202.654267pt;}
.x8_c00210{left:235.812933pt;}
.x10_c00210{left:292.201467pt;}
.x9_c00210{left:336.502933pt;}
.x11_c00210{left:342.228533pt;}
.xa_c00210{left:389.866000pt;}
.x5_c00210{left:471.433333pt;}
.x15_c00210{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a39bd55f4fd91ec5afa46824.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;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_c00211;src:url('chunks/assets/font_a78955a2ad2c7ab203bf4e35.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;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:ff3_c00211;src:url('chunks/assets/font_59ac7ef0f93ea697ce5645e8.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;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:ff4_c00211;src:url('chunks/assets/font_85fbef2148fd4b3f87844a75.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:0.787000;font-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_c00211{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00211{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls9_c00211{letter-spacing:0.000000px;}
.ls3_c00211{letter-spacing:0.050280px;}
.ls2_c00211{letter-spacing:0.200160px;}
.ls0_c00211{letter-spacing:0.202464px;}
.ls4_c00211{letter-spacing:0.238560px;}
.lsd_c00211{letter-spacing:0.239760px;}
.ls5_c00211{letter-spacing:0.318480px;}
.lsb_c00211{letter-spacing:0.319680px;}
.lse_c00211{letter-spacing:0.362304px;}
.ls6_c00211{letter-spacing:0.399600px;}
.ls1_c00211{letter-spacing:0.411898px;}
.lsc_c00211{letter-spacing:0.436896px;}
.lsa_c00211{letter-spacing:0.532722px;}
.ls7_c00211{letter-spacing:5.976000px;}
.ls8_c00211{letter-spacing:6.159920px;}
.sc__c00211{text-shadow:none;}
.sc1_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00211{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc1_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00211{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00211{word-spacing:-15.679593px;}
.ws2_c00211{word-spacing:-15.211440px;}
.ws3_c00211{word-spacing:-15.174144px;}
.ws1_c00211{word-spacing:-15.051600px;}
.ws4_c00211{word-spacing:0.000000px;}
._0_c00211{width:1.014120px;}
.fc0_c00211{color:rgb(0,0,0);}
.fs2_c00211{font-size:53.280000px;}
.fs3_c00211{font-size:54.919767px;}
.fs5_c00211{font-size:60.000000px;}
.fs0_c00211{font-size:72.000000px;}
.fs1_c00211{font-size:74.215901px;}
.fs4_c00211{font-size:77.760000px;}
.y0_c00211{bottom:0.000000px;}
.y28_c00211{bottom:3.120150px;}
.y21_c00211{bottom:10.440000px;}
.y26_c00211{bottom:18.720000px;}
.y20_c00211{bottom:26.280000px;}
.y23_c00211{bottom:29.880000px;}
.y25_c00211{bottom:34.560000px;}
.y27_c00211{bottom:34.744500px;}
.y1_c00211{bottom:54.000000px;}
.y1e_c00211{bottom:112.725000px;}
.y1d_c00211{bottom:148.725000px;}
.y24_c00211{bottom:157.365000px;}
.y1c_c00211{bottom:184.725000px;}
.y1b_c00211{bottom:220.725000px;}
.y1a_c00211{bottom:256.725000px;}
.y19_c00211{bottom:292.725000px;}
.y18_c00211{bottom:328.725000px;}
.y17_c00211{bottom:364.725000px;}
.y16_c00211{bottom:400.725000px;}
.y15_c00211{bottom:436.725000px;}
.y14_c00211{bottom:472.725000px;}
.y22_c00211{bottom:481.365000px;}
.y13_c00211{bottom:509.085000px;}
.y12_c00211{bottom:545.085000px;}
.y11_c00211{bottom:581.085000px;}
.y10_c00211{bottom:617.085000px;}
.yf_c00211{bottom:653.085000px;}
.ye_c00211{bottom:689.085000px;}
.yd_c00211{bottom:725.085000px;}
.yc_c00211{bottom:761.085000px;}
.yb_c00211{bottom:797.085000px;}
.y1f_c00211{bottom:832.365000px;}
.ya_c00211{bottom:833.085000px;}
.y9_c00211{bottom:869.085000px;}
.y8_c00211{bottom:905.085000px;}
.y7_c00211{bottom:941.085000px;}
.y6_c00211{bottom:977.085000px;}
.y5_c00211{bottom:1013.085000px;}
.y4_c00211{bottom:1049.085000px;}
.y3_c00211{bottom:1085.085000px;}
.y2_c00211{bottom:1138.365000px;}
.hb_c00211{height:19.255500px;}
.h5_c00211{height:38.880000px;}
.h6_c00211{height:41.132160px;}
.h7_c00211{height:42.398060px;}
.h9_c00211{height:42.480000px;}
.hc_c00211{height:46.320000px;}
.ha_c00211{height:47.160000px;}
.h3_c00211{height:55.584000px;}
.h4_c00211{height:57.294676px;}
.h8_c00211{height:58.320000px;}
.h2_c00211{height:1201.365000px;}
.h0_c00211{height:1262.835000px;}
.h1_c00211{height:1263.000000px;}
.w6_c00211{width:25.020000px;}
.w5_c00211{width:572.400000px;}
.w3_c00211{width:589.320000px;}
.w4_c00211{width:627.840000px;}
.w2_c00211{width:863.955000px;}
.w0_c00211{width:892.935000px;}
.w1_c00211{width:893.250000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:14.490000px;}
.xe_c00211{left:24.700500px;}
.x10_c00211{left:29.635500px;}
.x7_c00211{left:89.668950px;}
.x2_c00211{left:113.040150px;}
.xc_c00211{left:115.992600px;}
.xd_c00211{left:124.290000px;}
.x11_c00211{left:139.942350px;}
.xf_c00211{left:151.290000px;}
.x6_c00211{left:158.490000px;}
.x3_c00211{left:162.521550px;}
.x12_c00211{left:177.444450px;}
.x8_c00211{left:199.975650px;}
.x4_c00211{left:227.986050px;}
.x9_c00211{left:237.477900px;}
.x13_c00211{left:250.160100px;}
.xa_c00211{left:350.754300px;}
.xb_c00211{left:407.034600px;}
.x5_c00211{left:530.362500px;}
.x14_c00211{left:759.915000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls9_c00211{letter-spacing:0.000000pt;}
.ls3_c00211{letter-spacing:0.044693pt;}
.ls2_c00211{letter-spacing:0.177920pt;}
.ls0_c00211{letter-spacing:0.179968pt;}
.ls4_c00211{letter-spacing:0.212053pt;}
.lsd_c00211{letter-spacing:0.213120pt;}
.ls5_c00211{letter-spacing:0.283093pt;}
.lsb_c00211{letter-spacing:0.284160pt;}
.lse_c00211{letter-spacing:0.322048pt;}
.ls6_c00211{letter-spacing:0.355200pt;}
.ls1_c00211{letter-spacing:0.366132pt;}
.lsc_c00211{letter-spacing:0.388352pt;}
.lsa_c00211{letter-spacing:0.473530pt;}
.ls7_c00211{letter-spacing:5.312000pt;}
.ls8_c00211{letter-spacing:5.475484pt;}
.ws0_c00211{word-spacing:-13.937416pt;}
.ws2_c00211{word-spacing:-13.521280pt;}
.ws3_c00211{word-spacing:-13.488128pt;}
.ws1_c00211{word-spacing:-13.379200pt;}
.ws4_c00211{word-spacing:0.000000pt;}
._0_c00211{width:0.901440pt;}
.fs2_c00211{font-size:47.360000pt;}
.fs3_c00211{font-size:48.817571pt;}
.fs5_c00211{font-size:53.333333pt;}
.fs0_c00211{font-size:64.000000pt;}
.fs1_c00211{font-size:65.969690pt;}
.fs4_c00211{font-size:69.120000pt;}
.y0_c00211{bottom:0.000000pt;}
.y28_c00211{bottom:2.773467pt;}
.y21_c00211{bottom:9.280000pt;}
.y26_c00211{bottom:16.640000pt;}
.y20_c00211{bottom:23.360000pt;}
.y23_c00211{bottom:26.560000pt;}
.y25_c00211{bottom:30.720000pt;}
.y27_c00211{bottom:30.884000pt;}
.y1_c00211{bottom:48.000000pt;}
.y1e_c00211{bottom:100.200000pt;}
.y1d_c00211{bottom:132.200000pt;}
.y24_c00211{bottom:139.880000pt;}
.y1c_c00211{bottom:164.200000pt;}
.y1b_c00211{bottom:196.200000pt;}
.y1a_c00211{bottom:228.200000pt;}
.y19_c00211{bottom:260.200000pt;}
.y18_c00211{bottom:292.200000pt;}
.y17_c00211{bottom:324.200000pt;}
.y16_c00211{bottom:356.200000pt;}
.y15_c00211{bottom:388.200000pt;}
.y14_c00211{bottom:420.200000pt;}
.y22_c00211{bottom:427.880000pt;}
.y13_c00211{bottom:452.520000pt;}
.y12_c00211{bottom:484.520000pt;}
.y11_c00211{bottom:516.520000pt;}
.y10_c00211{bottom:548.520000pt;}
.yf_c00211{bottom:580.520000pt;}
.ye_c00211{bottom:612.520000pt;}
.yd_c00211{bottom:644.520000pt;}
.yc_c00211{bottom:676.520000pt;}
.yb_c00211{bottom:708.520000pt;}
.y1f_c00211{bottom:739.880000pt;}
.ya_c00211{bottom:740.520000pt;}
.y9_c00211{bottom:772.520000pt;}
.y8_c00211{bottom:804.520000pt;}
.y7_c00211{bottom:836.520000pt;}
.y6_c00211{bottom:868.520000pt;}
.y5_c00211{bottom:900.520000pt;}
.y4_c00211{bottom:932.520000pt;}
.y3_c00211{bottom:964.520000pt;}
.y2_c00211{bottom:1011.880000pt;}
.hb_c00211{height:17.116000pt;}
.h5_c00211{height:34.560000pt;}
.h6_c00211{height:36.561920pt;}
.h7_c00211{height:37.687165pt;}
.h9_c00211{height:37.760000pt;}
.hc_c00211{height:41.173333pt;}
.ha_c00211{height:41.920000pt;}
.h3_c00211{height:49.408000pt;}
.h4_c00211{height:50.928601pt;}
.h8_c00211{height:51.840000pt;}
.h2_c00211{height:1067.880000pt;}
.h0_c00211{height:1122.520000pt;}
.h1_c00211{height:1122.666667pt;}
.w6_c00211{width:22.240000pt;}
.w5_c00211{width:508.800000pt;}
.w3_c00211{width:523.840000pt;}
.w4_c00211{width:558.080000pt;}
.w2_c00211{width:767.960000pt;}
.w0_c00211{width:793.720000pt;}
.w1_c00211{width:794.000000pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:12.880000pt;}
.xe_c00211{left:21.956000pt;}
.x10_c00211{left:26.342667pt;}
.x7_c00211{left:79.705733pt;}
.x2_c00211{left:100.480133pt;}
.xc_c00211{left:103.104533pt;}
.xd_c00211{left:110.480000pt;}
.x11_c00211{left:124.393200pt;}
.xf_c00211{left:134.480000pt;}
.x6_c00211{left:140.880000pt;}
.x3_c00211{left:144.463600pt;}
.x12_c00211{left:157.728400pt;}
.x8_c00211{left:177.756133pt;}
.x4_c00211{left:202.654267pt;}
.x9_c00211{left:211.091467pt;}
.x13_c00211{left:222.364533pt;}
.xa_c00211{left:311.781600pt;}
.xb_c00211{left:361.808533pt;}
.x5_c00211{left:471.433333pt;}
.x14_c00211{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7dc56a64176278af0988fb78.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.134000;font-style:normal;font-weight:normal;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_9bd9ffd35f19302e8b004fe7.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;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:ff3_c00212;src:url('chunks/assets/font_e944ac08dfcb3c8b14b57a03.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_82f6fff613a903ce228118d7.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:0.787000;font-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_c00212{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00212{vertical-align:-24.480000px;}
.v0_c00212{vertical-align:0.000000px;}
.v1_c00212{vertical-align:30.240000px;}
.lsf_c00212{letter-spacing:0.000000px;}
.lsc_c00212{letter-spacing:0.236160px;}
.ls8_c00212{letter-spacing:0.265680px;}
.ls7_c00212{letter-spacing:0.318816px;}
.lsd_c00212{letter-spacing:0.328628px;}
.ls1b_c00212{letter-spacing:0.371952px;}
.ls18_c00212{letter-spacing:0.438171px;}
.ls1f_c00212{letter-spacing:0.492942px;}
.lsa_c00212{letter-spacing:0.519552px;}
.lsb_c00212{letter-spacing:0.531360px;}
.ls6_c00212{letter-spacing:0.547713px;}
.ls19_c00212{letter-spacing:0.584496px;}
.ls17_c00212{letter-spacing:0.602485px;}
.ls1d_c00212{letter-spacing:0.696672px;}
.ls20_c00212{letter-spacing:0.712027px;}
.ls1a_c00212{letter-spacing:0.766799px;}
.ls1c_c00212{letter-spacing:0.821570px;}
.ls16_c00212{letter-spacing:1.794816px;}
.ls9_c00212{letter-spacing:4.782240px;}
.ls1e_c00212{letter-spacing:4.788144px;}
.ls4_c00212{letter-spacing:4.963920px;}
.ls11_c00212{letter-spacing:5.245344px;}
.ls12_c00212{letter-spacing:5.335200px;}
.ls15_c00212{letter-spacing:5.430672px;}
.ls10_c00212{letter-spacing:5.453088px;}
.ls2_c00212{letter-spacing:5.499398px;}
.ls3_c00212{letter-spacing:5.974800px;}
.ls0_c00212{letter-spacing:5.976000px;}
.ls5_c00212{letter-spacing:5.990400px;}
.ls1_c00212{letter-spacing:6.159301px;}
.lse_c00212{letter-spacing:6.159920px;}
.ls14_c00212{letter-spacing:6.602400px;}
.ls13_c00212{letter-spacing:8.992800px;}
.sc__c00212{text-shadow:none;}
.sc1_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00212{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc1_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00212{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00212{word-spacing:-25.992000px;}
.ws0_c00212{word-spacing:-21.592374px;}
.ws4_c00212{word-spacing:-21.043152px;}
.ws2_c00212{word-spacing:-20.947680px;}
.wsd_c00212{word-spacing:-17.739827px;}
.ws7_c00212{word-spacing:-17.685056px;}
.ws6_c00212{word-spacing:-17.520742px;}
.ws8_c00212{word-spacing:-17.465970px;}
.wsc_c00212{word-spacing:-17.246885px;}
.wsa_c00212{word-spacing:-17.109792px;}
.ws9_c00212{word-spacing:-16.918257px;}
.wsb_c00212{word-spacing:-16.731936px;}
.ws3_c00212{word-spacing:-11.609280px;}
.ws5_c00212{word-spacing:-10.008000px;}
.wse_c00212{word-spacing:0.000000px;}
._6_c00212{margin-left:-8.985600px;}
._d_c00212{margin-left:-4.746000px;}
._e_c00212{margin-left:-3.614880px;}
._c_c00212{margin-left:-2.204832px;}
._0_c00212{margin-left:-1.087152px;}
._7_c00212{width:1.512000px;}
._9_c00212{width:3.168000px;}
._3_c00212{width:4.464000px;}
._4_c00212{width:5.760000px;}
._a_c00212{width:7.056000px;}
._5_c00212{width:9.000000px;}
._1_c00212{width:10.728000px;}
._8_c00212{width:12.168000px;}
._b_c00212{width:13.464000px;}
._2_c00212{width:17.208000px;}
.fc0_c00212{color:rgb(0,0,0);}
.fs6_c00212{font-size:36.000000px;}
.fs4_c00212{font-size:41.760000px;}
.fs5_c00212{font-size:43.045223px;}
.fs3_c00212{font-size:56.160000px;}
.fs2_c00212{font-size:57.888403px;}
.fs7_c00212{font-size:59.040000px;}
.fs9_c00212{font-size:60.000000px;}
.fs8_c00212{font-size:60.857039px;}
.fs0_c00212{font-size:72.000000px;}
.fs1_c00212{font-size:74.215901px;}
.y0_c00212{bottom:0.000000px;}
.y2f_c00212{bottom:3.120150px;}
.y2e_c00212{bottom:34.744500px;}
.y1_c00212{bottom:54.000000px;}
.y2c_c00212{bottom:55.481040px;}
.y2d_c00212{bottom:55.485000px;}
.y2b_c00212{bottom:72.765000px;}
.y2a_c00212{bottom:78.885000px;}
.y29_c00212{bottom:90.405000px;}
.y28_c00212{bottom:96.525000px;}
.y27_c00212{bottom:107.686800px;}
.y25_c00212{bottom:125.317800px;}
.y26_c00212{bottom:125.325000px;}
.y24_c00212{bottom:143.325000px;}
.y23_c00212{bottom:149.445000px;}
.y22_c00212{bottom:176.085000px;}
.y21_c00212{bottom:271.845000px;}
.y20_c00212{bottom:307.845000px;}
.y1f_c00212{bottom:343.845000px;}
.y1e_c00212{bottom:379.845000px;}
.y1d_c00212{bottom:415.845000px;}
.y1c_c00212{bottom:436.725000px;}
.y1b_c00212{bottom:457.965000px;}
.y1a_c00212{bottom:493.965000px;}
.y19_c00212{bottom:514.845000px;}
.y18_c00212{bottom:535.725000px;}
.y17_c00212{bottom:556.965000px;}
.y16_c00212{bottom:592.965000px;}
.y15_c00212{bottom:613.845000px;}
.y14_c00212{bottom:634.725000px;}
.y13_c00212{bottom:655.965000px;}
.y12_c00212{bottom:676.845000px;}
.y11_c00212{bottom:698.085000px;}
.y10_c00212{bottom:718.965000px;}
.yf_c00212{bottom:739.845000px;}
.ye_c00212{bottom:775.845000px;}
.yd_c00212{bottom:811.845000px;}
.yc_c00212{bottom:850.365000px;}
.yb_c00212{bottom:887.085000px;}
.ya_c00212{bottom:923.085000px;}
.y9_c00212{bottom:943.965000px;}
.y8_c00212{bottom:964.845000px;}
.y7_c00212{bottom:986.085000px;}
.y6_c00212{bottom:1006.965000px;}
.y5_c00212{bottom:1027.845000px;}
.y4_c00212{bottom:1049.085000px;}
.y3_c00212{bottom:1085.085000px;}
.y2_c00212{bottom:1138.365000px;}
.hb_c00212{height:19.255500px;}
.h7_c00212{height:32.616000px;}
.hc_c00212{height:46.320000px;}
.ha_c00212{height:46.981634px;}
.h9_c00212{height:53.490240px;}
.h8_c00212{height:55.136477px;}
.h4_c00212{height:57.294676px;}
.h6_c00212{height:64.401590px;}
.h3_c00212{height:65.232000px;}
.h5_c00212{height:68.074560px;}
.h2_c00212{height:1201.365000px;}
.h0_c00212{height:1262.835000px;}
.h1_c00212{height:1263.000000px;}
.w3_c00212{width:25.020000px;}
.w2_c00212{width:863.955000px;}
.w0_c00212{width:892.935000px;}
.w1_c00212{width:893.250000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:14.490000px;}
.x2_c00212{left:113.040150px;}
.xb_c00212{left:119.034000px;}
.xc_c00212{left:149.003100px;}
.x1d_c00212{left:160.055400px;}
.x3_c00212{left:162.521550px;}
.x11_c00212{left:167.039400px;}
.x25_c00212{left:168.906450px;}
.x8_c00212{left:170.027400px;}
.x14_c00212{left:172.024950px;}
.x5_c00212{left:190.383150px;}
.x26_c00212{left:193.910850px;}
.x18_c00212{left:202.202700px;}
.xd_c00212{left:225.335400px;}
.x4_c00212{left:232.972350px;}
.x15_c00212{left:237.021900px;}
.x19_c00212{left:253.195650px;}
.xe_c00212{left:275.338200px;}
.x27_c00212{left:307.276650px;}
.x1e_c00212{left:319.047000px;}
.xf_c00212{left:337.095000px;}
.x1f_c00212{left:343.040400px;}
.x20_c00212{left:346.612050px;}
.x28_c00212{left:373.950150px;}
.x1a_c00212{left:391.291650px;}
.x13_c00212{left:410.223300px;}
.x10_c00212{left:419.102100px;}
.x16_c00212{left:433.277700px;}
.x21_c00212{left:450.234000px;}
.x12_c00212{left:454.267350px;}
.x1b_c00212{left:463.795800px;}
.x2f_c00212{left:468.978150px;}
.x22_c00212{left:484.326000px;}
.x2b_c00212{left:489.916950px;}
.x17_c00212{left:493.270800px;}
.x30_c00212{left:497.296950px;}
.x29_c00212{left:521.515200px;}
.x2a_c00212{left:534.009900px;}
.x31_c00212{left:541.455300px;}
.x2c_c00212{left:561.890550px;}
.x32_c00212{left:572.294250px;}
.x23_c00212{left:577.651200px;}
.x2d_c00212{left:610.294500px;}
.x24_c00212{left:614.325000px;}
.x9_c00212{left:617.264250px;}
.x2e_c00212{left:640.568850px;}
.x6_c00212{left:663.056700px;}
.x1c_c00212{left:720.366600px;}
.x7_c00212{left:732.085650px;}
.xa_c00212{left:750.390000px;}
.x33_c00212{left:759.915000px;}
@media print{
.v2_c00212{vertical-align:-21.760000pt;}
.v0_c00212{vertical-align:0.000000pt;}
.v1_c00212{vertical-align:26.880000pt;}
.lsf_c00212{letter-spacing:0.000000pt;}
.lsc_c00212{letter-spacing:0.209920pt;}
.ls8_c00212{letter-spacing:0.236160pt;}
.ls7_c00212{letter-spacing:0.283392pt;}
.lsd_c00212{letter-spacing:0.292114pt;}
.ls1b_c00212{letter-spacing:0.330624pt;}
.ls18_c00212{letter-spacing:0.389485pt;}
.ls1f_c00212{letter-spacing:0.438171pt;}
.lsa_c00212{letter-spacing:0.461824pt;}
.lsb_c00212{letter-spacing:0.472320pt;}
.ls6_c00212{letter-spacing:0.486856pt;}
.ls19_c00212{letter-spacing:0.519552pt;}
.ls17_c00212{letter-spacing:0.535542pt;}
.ls1d_c00212{letter-spacing:0.619264pt;}
.ls20_c00212{letter-spacing:0.632913pt;}
.ls1a_c00212{letter-spacing:0.681599pt;}
.ls1c_c00212{letter-spacing:0.730284pt;}
.ls16_c00212{letter-spacing:1.595392pt;}
.ls9_c00212{letter-spacing:4.250880pt;}
.ls1e_c00212{letter-spacing:4.256128pt;}
.ls4_c00212{letter-spacing:4.412373pt;}
.ls11_c00212{letter-spacing:4.662528pt;}
.ls12_c00212{letter-spacing:4.742400pt;}
.ls15_c00212{letter-spacing:4.827264pt;}
.ls10_c00212{letter-spacing:4.847189pt;}
.ls2_c00212{letter-spacing:4.888354pt;}
.ls3_c00212{letter-spacing:5.310933pt;}
.ls0_c00212{letter-spacing:5.312000pt;}
.ls5_c00212{letter-spacing:5.324800pt;}
.ls1_c00212{letter-spacing:5.474935pt;}
.lse_c00212{letter-spacing:5.475484pt;}
.ls14_c00212{letter-spacing:5.868800pt;}
.ls13_c00212{letter-spacing:7.993600pt;}
.ws1_c00212{word-spacing:-23.104000pt;}
.ws0_c00212{word-spacing:-19.193222pt;}
.ws4_c00212{word-spacing:-18.705024pt;}
.ws2_c00212{word-spacing:-18.620160pt;}
.wsd_c00212{word-spacing:-15.768735pt;}
.ws7_c00212{word-spacing:-15.720049pt;}
.ws6_c00212{word-spacing:-15.573992pt;}
.ws8_c00212{word-spacing:-15.525307pt;}
.wsc_c00212{word-spacing:-15.330564pt;}
.wsa_c00212{word-spacing:-15.208704pt;}
.ws9_c00212{word-spacing:-15.038451pt;}
.wsb_c00212{word-spacing:-14.872832pt;}
.ws3_c00212{word-spacing:-10.319360pt;}
.ws5_c00212{word-spacing:-8.896000pt;}
.wse_c00212{word-spacing:0.000000pt;}
._6_c00212{margin-left:-7.987200pt;}
._d_c00212{margin-left:-4.218667pt;}
._e_c00212{margin-left:-3.213227pt;}
._c_c00212{margin-left:-1.959851pt;}
._0_c00212{margin-left:-0.966357pt;}
._7_c00212{width:1.344000pt;}
._9_c00212{width:2.816000pt;}
._3_c00212{width:3.968000pt;}
._4_c00212{width:5.120000pt;}
._a_c00212{width:6.272000pt;}
._5_c00212{width:8.000000pt;}
._1_c00212{width:9.536000pt;}
._8_c00212{width:10.816000pt;}
._b_c00212{width:11.968000pt;}
._2_c00212{width:15.296000pt;}
.fs6_c00212{font-size:32.000000pt;}
.fs4_c00212{font-size:37.120000pt;}
.fs5_c00212{font-size:38.262420pt;}
.fs3_c00212{font-size:49.920000pt;}
.fs2_c00212{font-size:51.456358pt;}
.fs7_c00212{font-size:52.480000pt;}
.fs9_c00212{font-size:53.333333pt;}
.fs8_c00212{font-size:54.095146pt;}
.fs0_c00212{font-size:64.000000pt;}
.fs1_c00212{font-size:65.969690pt;}
.y0_c00212{bottom:0.000000pt;}
.y2f_c00212{bottom:2.773467pt;}
.y2e_c00212{bottom:30.884000pt;}
.y1_c00212{bottom:48.000000pt;}
.y2c_c00212{bottom:49.316480pt;}
.y2d_c00212{bottom:49.320000pt;}
.y2b_c00212{bottom:64.680000pt;}
.y2a_c00212{bottom:70.120000pt;}
.y29_c00212{bottom:80.360000pt;}
.y28_c00212{bottom:85.800000pt;}
.y27_c00212{bottom:95.721600pt;}
.y25_c00212{bottom:111.393600pt;}
.y26_c00212{bottom:111.400000pt;}
.y24_c00212{bottom:127.400000pt;}
.y23_c00212{bottom:132.840000pt;}
.y22_c00212{bottom:156.520000pt;}
.y21_c00212{bottom:241.640000pt;}
.y20_c00212{bottom:273.640000pt;}
.y1f_c00212{bottom:305.640000pt;}
.y1e_c00212{bottom:337.640000pt;}
.y1d_c00212{bottom:369.640000pt;}
.y1c_c00212{bottom:388.200000pt;}
.y1b_c00212{bottom:407.080000pt;}
.y1a_c00212{bottom:439.080000pt;}
.y19_c00212{bottom:457.640000pt;}
.y18_c00212{bottom:476.200000pt;}
.y17_c00212{bottom:495.080000pt;}
.y16_c00212{bottom:527.080000pt;}
.y15_c00212{bottom:545.640000pt;}
.y14_c00212{bottom:564.200000pt;}
.y13_c00212{bottom:583.080000pt;}
.y12_c00212{bottom:601.640000pt;}
.y11_c00212{bottom:620.520000pt;}
.y10_c00212{bottom:639.080000pt;}
.yf_c00212{bottom:657.640000pt;}
.ye_c00212{bottom:689.640000pt;}
.yd_c00212{bottom:721.640000pt;}
.yc_c00212{bottom:755.880000pt;}
.yb_c00212{bottom:788.520000pt;}
.ya_c00212{bottom:820.520000pt;}
.y9_c00212{bottom:839.080000pt;}
.y8_c00212{bottom:857.640000pt;}
.y7_c00212{bottom:876.520000pt;}
.y6_c00212{bottom:895.080000pt;}
.y5_c00212{bottom:913.640000pt;}
.y4_c00212{bottom:932.520000pt;}
.y3_c00212{bottom:964.520000pt;}
.y2_c00212{bottom:1011.880000pt;}
.hb_c00212{height:17.116000pt;}
.h7_c00212{height:28.992000pt;}
.hc_c00212{height:41.173333pt;}
.ha_c00212{height:41.761453pt;}
.h9_c00212{height:47.546880pt;}
.h8_c00212{height:49.010202pt;}
.h4_c00212{height:50.928601pt;}
.h6_c00212{height:57.245858pt;}
.h3_c00212{height:57.984000pt;}
.h5_c00212{height:60.510720pt;}
.h2_c00212{height:1067.880000pt;}
.h0_c00212{height:1122.520000pt;}
.h1_c00212{height:1122.666667pt;}
.w3_c00212{width:22.240000pt;}
.w2_c00212{width:767.960000pt;}
.w0_c00212{width:793.720000pt;}
.w1_c00212{width:794.000000pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:12.880000pt;}
.x2_c00212{left:100.480133pt;}
.xb_c00212{left:105.808000pt;}
.xc_c00212{left:132.447200pt;}
.x1d_c00212{left:142.271467pt;}
.x3_c00212{left:144.463600pt;}
.x11_c00212{left:148.479467pt;}
.x25_c00212{left:150.139067pt;}
.x8_c00212{left:151.135467pt;}
.x14_c00212{left:152.911067pt;}
.x5_c00212{left:169.229467pt;}
.x26_c00212{left:172.365200pt;}
.x18_c00212{left:179.735733pt;}
.xd_c00212{left:200.298133pt;}
.x4_c00212{left:207.086533pt;}
.x15_c00212{left:210.686133pt;}
.x19_c00212{left:225.062800pt;}
.xe_c00212{left:244.745067pt;}
.x27_c00212{left:273.134800pt;}
.x1e_c00212{left:283.597333pt;}
.xf_c00212{left:299.640000pt;}
.x1f_c00212{left:304.924800pt;}
.x20_c00212{left:308.099600pt;}
.x28_c00212{left:332.400133pt;}
.x1a_c00212{left:347.814800pt;}
.x13_c00212{left:364.642933pt;}
.x10_c00212{left:372.535200pt;}
.x16_c00212{left:385.135733pt;}
.x21_c00212{left:400.208000pt;}
.x12_c00212{left:403.793200pt;}
.x1b_c00212{left:412.262933pt;}
.x2f_c00212{left:416.869467pt;}
.x22_c00212{left:430.512000pt;}
.x2b_c00212{left:435.481733pt;}
.x17_c00212{left:438.462933pt;}
.x30_c00212{left:442.041733pt;}
.x29_c00212{left:463.569067pt;}
.x2a_c00212{left:474.675467pt;}
.x31_c00212{left:481.293600pt;}
.x2c_c00212{left:499.458267pt;}
.x32_c00212{left:508.706000pt;}
.x23_c00212{left:513.467733pt;}
.x2d_c00212{left:542.484000pt;}
.x24_c00212{left:546.066667pt;}
.x9_c00212{left:548.679333pt;}
.x2e_c00212{left:569.394533pt;}
.x6_c00212{left:589.383733pt;}
.x1c_c00212{left:640.325867pt;}
.x7_c00212{left:650.742800pt;}
.xa_c00212{left:667.013333pt;}
.x33_c00212{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4559e737a5f1f123d5e8bf78.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.134000;font-style:normal;font-weight:normal;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_9cb9dfc23e5b534460930975.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;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:ff3_c00213;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00213{font-family:ff4_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:ff5_c00213;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff5_c00213{font-family:ff5_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:ff6_c00213;src:url('chunks/assets/font_59301a1f3a012e98c91a90a6.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:0.787000;font-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_c00213{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00213{vertical-align:-24.480000px;}
.v0_c00213{vertical-align:0.000000px;}
.v1_c00213{vertical-align:30.240000px;}
.lsb_c00213{letter-spacing:0.000000px;}
.ls16_c00213{letter-spacing:0.265680px;}
.ls6_c00213{letter-spacing:0.295200px;}
.ls18_c00213{letter-spacing:0.318816px;}
.ls1_c00213{letter-spacing:0.344640px;}
.ls8_c00213{letter-spacing:0.354240px;}
.ls12_c00213{letter-spacing:0.371952px;}
.ls9_c00213{letter-spacing:0.383399px;}
.lse_c00213{letter-spacing:0.438171px;}
.lsd_c00213{letter-spacing:0.478224px;}
.ls7_c00213{letter-spacing:0.531360px;}
.ls2_c00213{letter-spacing:0.549240px;}
.ls15_c00213{letter-spacing:0.602485px;}
.ls3_c00213{letter-spacing:0.691440px;}
.ls11_c00213{letter-spacing:0.743904px;}
.ls14_c00213{letter-spacing:0.821570px;}
.ls13_c00213{letter-spacing:0.850176px;}
.lsf_c00213{letter-spacing:0.962352px;}
.lsc_c00213{letter-spacing:5.430672px;}
.ls17_c00213{letter-spacing:5.514336px;}
.ls4_c00213{letter-spacing:5.970600px;}
.ls0_c00213{letter-spacing:5.976000px;}
.lsa_c00213{letter-spacing:6.159920px;}
.ls10_c00213{letter-spacing:7.657488px;}
.ls5_c00213{letter-spacing:54.864000px;}
.sc__c00213{text-shadow:none;}
.sc1_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00213{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc1_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00213{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00213{word-spacing:-21.043152px;}
.ws0_c00213{word-spacing:-20.016000px;}
.ws4_c00213{word-spacing:-17.739827px;}
.ws5_c00213{word-spacing:-17.520742px;}
.ws3_c00213{word-spacing:-17.301656px;}
.ws6_c00213{word-spacing:-16.731936px;}
.ws2_c00213{word-spacing:-10.008000px;}
.ws7_c00213{word-spacing:0.000000px;}
._6_c00213{margin-left:-7.202880px;}
._2_c00213{margin-left:-1.179360px;}
._8_c00213{width:1.003680px;}
._5_c00213{width:4.320000px;}
._3_c00213{width:6.048000px;}
._7_c00213{width:7.715520px;}
._4_c00213{width:13.392000px;}
._1_c00213{width:25.200000px;}
._0_c00213{width:26.280000px;}
.fc0_c00213{color:rgb(0,0,0);}
.fs5_c00213{font-size:36.000000px;}
.fs2_c00213{font-size:41.760000px;}
.fs3_c00213{font-size:56.160000px;}
.fs4_c00213{font-size:59.040000px;}
.fs7_c00213{font-size:60.000000px;}
.fs6_c00213{font-size:60.857039px;}
.fs0_c00213{font-size:72.000000px;}
.fs1_c00213{font-size:74.215901px;}
.y0_c00213{bottom:0.000000px;}
.y2b_c00213{bottom:3.120150px;}
.y2a_c00213{bottom:34.744500px;}
.y1_c00213{bottom:54.000000px;}
.y29_c00213{bottom:61.605000px;}
.y28_c00213{bottom:72.765000px;}
.y27_c00213{bottom:72.766800px;}
.y25_c00213{bottom:90.401040px;}
.y26_c00213{bottom:90.405000px;}
.y24_c00213{bottom:107.685000px;}
.y23_c00213{bottom:113.805000px;}
.y22_c00213{bottom:125.325000px;}
.y21_c00213{bottom:131.445000px;}
.y20_c00213{bottom:158.085000px;}
.y1f_c00213{bottom:200.205000px;}
.y1e_c00213{bottom:221.445000px;}
.y1d_c00213{bottom:238.725000px;}
.y1c_c00213{bottom:259.965000px;}
.y1b_c00213{bottom:295.965000px;}
.y1a_c00213{bottom:331.965000px;}
.y19_c00213{bottom:352.845000px;}
.y18_c00213{bottom:388.845000px;}
.y17_c00213{bottom:424.845000px;}
.y16_c00213{bottom:460.845000px;}
.y15_c00213{bottom:496.845000px;}
.y14_c00213{bottom:517.725000px;}
.y13_c00213{bottom:554.085000px;}
.y12_c00213{bottom:590.085000px;}
.y11_c00213{bottom:626.085000px;}
.y10_c00213{bottom:662.085000px;}
.yf_c00213{bottom:698.085000px;}
.ye_c00213{bottom:734.085000px;}
.yd_c00213{bottom:754.965000px;}
.yc_c00213{bottom:775.845000px;}
.yb_c00213{bottom:811.845000px;}
.ya_c00213{bottom:847.845000px;}
.y9_c00213{bottom:883.845000px;}
.y8_c00213{bottom:919.845000px;}
.y7_c00213{bottom:955.845000px;}
.y6_c00213{bottom:977.085000px;}
.y5_c00213{bottom:1013.085000px;}
.y4_c00213{bottom:1049.085000px;}
.y3_c00213{bottom:1085.085000px;}
.y2_c00213{bottom:1138.365000px;}
.hb_c00213{height:19.255500px;}
.h8_c00213{height:32.616000px;}
.h7_c00213{height:39.350391px;}
.hc_c00213{height:46.320000px;}
.h9_c00213{height:46.981634px;}
.h6_c00213{height:50.765625px;}
.ha_c00213{height:53.490240px;}
.h4_c00213{height:57.294676px;}
.h3_c00213{height:65.232000px;}
.h5_c00213{height:68.074560px;}
.h2_c00213{height:1201.365000px;}
.h0_c00213{height:1262.835000px;}
.h1_c00213{height:1263.000000px;}
.w3_c00213{width:25.020000px;}
.w2_c00213{width:863.955000px;}
.w0_c00213{width:892.935000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:14.490000px;}
.x2_c00213{left:113.040150px;}
.x9_c00213{left:140.039550px;}
.x7_c00213{left:148.031550px;}
.x6_c00213{left:150.029700px;}
.xc_c00213{left:156.554400px;}
.x3_c00213{left:162.521550px;}
.xa_c00213{left:167.040150px;}
.xd_c00213{left:193.048800px;}
.x5_c00213{left:198.052800px;}
.x8_c00213{left:211.030500px;}
.x4_c00213{left:232.972350px;}
.xb_c00213{left:252.052800px;}
.xe_c00213{left:269.734500px;}
.x10_c00213{left:281.298750px;}
.xf_c00213{left:289.728450px;}
.x16_c00213{left:300.564000px;}
.x11_c00213{left:303.141300px;}
.x12_c00213{left:337.334850px;}
.x13_c00213{left:370.664400px;}
.x14_c00213{left:398.466000px;}
.x15_c00213{left:470.989050px;}
.x17_c00213{left:759.915000px;}
@media print{
.v2_c00213{vertical-align:-21.760000pt;}
.v0_c00213{vertical-align:0.000000pt;}
.v1_c00213{vertical-align:26.880000pt;}
.lsb_c00213{letter-spacing:0.000000pt;}
.ls16_c00213{letter-spacing:0.236160pt;}
.ls6_c00213{letter-spacing:0.262400pt;}
.ls18_c00213{letter-spacing:0.283392pt;}
.ls1_c00213{letter-spacing:0.306347pt;}
.ls8_c00213{letter-spacing:0.314880pt;}
.ls12_c00213{letter-spacing:0.330624pt;}
.ls9_c00213{letter-spacing:0.340799pt;}
.lse_c00213{letter-spacing:0.389485pt;}
.lsd_c00213{letter-spacing:0.425088pt;}
.ls7_c00213{letter-spacing:0.472320pt;}
.ls2_c00213{letter-spacing:0.488213pt;}
.ls15_c00213{letter-spacing:0.535542pt;}
.ls3_c00213{letter-spacing:0.614613pt;}
.ls11_c00213{letter-spacing:0.661248pt;}
.ls14_c00213{letter-spacing:0.730284pt;}
.ls13_c00213{letter-spacing:0.755712pt;}
.lsf_c00213{letter-spacing:0.855424pt;}
.lsc_c00213{letter-spacing:4.827264pt;}
.ls17_c00213{letter-spacing:4.901632pt;}
.ls4_c00213{letter-spacing:5.307200pt;}
.ls0_c00213{letter-spacing:5.312000pt;}
.lsa_c00213{letter-spacing:5.475484pt;}
.ls10_c00213{letter-spacing:6.806656pt;}
.ls5_c00213{letter-spacing:48.768000pt;}
.ws1_c00213{word-spacing:-18.705024pt;}
.ws0_c00213{word-spacing:-17.792000pt;}
.ws4_c00213{word-spacing:-15.768735pt;}
.ws5_c00213{word-spacing:-15.573992pt;}
.ws3_c00213{word-spacing:-15.379250pt;}
.ws6_c00213{word-spacing:-14.872832pt;}
.ws2_c00213{word-spacing:-8.896000pt;}
.ws7_c00213{word-spacing:0.000000pt;}
._6_c00213{margin-left:-6.402560pt;}
._2_c00213{margin-left:-1.048320pt;}
._8_c00213{width:0.892160pt;}
._5_c00213{width:3.840000pt;}
._3_c00213{width:5.376000pt;}
._7_c00213{width:6.858240pt;}
._4_c00213{width:11.904000pt;}
._1_c00213{width:22.400000pt;}
._0_c00213{width:23.360000pt;}
.fs5_c00213{font-size:32.000000pt;}
.fs2_c00213{font-size:37.120000pt;}
.fs3_c00213{font-size:49.920000pt;}
.fs4_c00213{font-size:52.480000pt;}
.fs7_c00213{font-size:53.333333pt;}
.fs6_c00213{font-size:54.095146pt;}
.fs0_c00213{font-size:64.000000pt;}
.fs1_c00213{font-size:65.969690pt;}
.y0_c00213{bottom:0.000000pt;}
.y2b_c00213{bottom:2.773467pt;}
.y2a_c00213{bottom:30.884000pt;}
.y1_c00213{bottom:48.000000pt;}
.y29_c00213{bottom:54.760000pt;}
.y28_c00213{bottom:64.680000pt;}
.y27_c00213{bottom:64.681600pt;}
.y25_c00213{bottom:80.356480pt;}
.y26_c00213{bottom:80.360000pt;}
.y24_c00213{bottom:95.720000pt;}
.y23_c00213{bottom:101.160000pt;}
.y22_c00213{bottom:111.400000pt;}
.y21_c00213{bottom:116.840000pt;}
.y20_c00213{bottom:140.520000pt;}
.y1f_c00213{bottom:177.960000pt;}
.y1e_c00213{bottom:196.840000pt;}
.y1d_c00213{bottom:212.200000pt;}
.y1c_c00213{bottom:231.080000pt;}
.y1b_c00213{bottom:263.080000pt;}
.y1a_c00213{bottom:295.080000pt;}
.y19_c00213{bottom:313.640000pt;}
.y18_c00213{bottom:345.640000pt;}
.y17_c00213{bottom:377.640000pt;}
.y16_c00213{bottom:409.640000pt;}
.y15_c00213{bottom:441.640000pt;}
.y14_c00213{bottom:460.200000pt;}
.y13_c00213{bottom:492.520000pt;}
.y12_c00213{bottom:524.520000pt;}
.y11_c00213{bottom:556.520000pt;}
.y10_c00213{bottom:588.520000pt;}
.yf_c00213{bottom:620.520000pt;}
.ye_c00213{bottom:652.520000pt;}
.yd_c00213{bottom:671.080000pt;}
.yc_c00213{bottom:689.640000pt;}
.yb_c00213{bottom:721.640000pt;}
.ya_c00213{bottom:753.640000pt;}
.y9_c00213{bottom:785.640000pt;}
.y8_c00213{bottom:817.640000pt;}
.y7_c00213{bottom:849.640000pt;}
.y6_c00213{bottom:868.520000pt;}
.y5_c00213{bottom:900.520000pt;}
.y4_c00213{bottom:932.520000pt;}
.y3_c00213{bottom:964.520000pt;}
.y2_c00213{bottom:1011.880000pt;}
.hb_c00213{height:17.116000pt;}
.h8_c00213{height:28.992000pt;}
.h7_c00213{height:34.978125pt;}
.hc_c00213{height:41.173333pt;}
.h9_c00213{height:41.761453pt;}
.h6_c00213{height:45.125000pt;}
.ha_c00213{height:47.546880pt;}
.h4_c00213{height:50.928601pt;}
.h3_c00213{height:57.984000pt;}
.h5_c00213{height:60.510720pt;}
.h2_c00213{height:1067.880000pt;}
.h0_c00213{height:1122.520000pt;}
.h1_c00213{height:1122.666667pt;}
.w3_c00213{width:22.240000pt;}
.w2_c00213{width:767.960000pt;}
.w0_c00213{width:793.720000pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:12.880000pt;}
.x2_c00213{left:100.480133pt;}
.x9_c00213{left:124.479600pt;}
.x7_c00213{left:131.583600pt;}
.x6_c00213{left:133.359733pt;}
.xc_c00213{left:139.159467pt;}
.x3_c00213{left:144.463600pt;}
.xa_c00213{left:148.480133pt;}
.xd_c00213{left:171.598933pt;}
.x5_c00213{left:176.046933pt;}
.x8_c00213{left:187.582667pt;}
.x4_c00213{left:207.086533pt;}
.xb_c00213{left:224.046933pt;}
.xe_c00213{left:239.764000pt;}
.x10_c00213{left:250.043333pt;}
.xf_c00213{left:257.536400pt;}
.x16_c00213{left:267.168000pt;}
.x11_c00213{left:269.458933pt;}
.x12_c00213{left:299.853200pt;}
.x13_c00213{left:329.479467pt;}
.x14_c00213{left:354.192000pt;}
.x15_c00213{left:418.656933pt;}
.x17_c00213{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d937ff0b34c9bada34d6bbe.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.134000;font-style:normal;font-weight:normal;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_e7e0e9e8c0d390f61ad20ad3.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;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:ff3_c00214;src:url('chunks/assets/font_755f28a8a0d49f7de7ed7dd6.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00214;src:url('chunks/assets/font_82f6fff613a903ce228118d7.woff2')format("woff");}.ff6_c00214{font-family:ff6_c00214;line-height:0.787000;font-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_c00214{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00214{vertical-align:-24.480000px;}
.v0_c00214{vertical-align:0.000000px;}
.v1_c00214{vertical-align:24.480000px;}
.ls17_c00214{letter-spacing:0.000000px;}
.ls5_c00214{letter-spacing:0.265680px;}
.ls8_c00214{letter-spacing:0.266280px;}
.ls2a_c00214{letter-spacing:0.277488px;}
.ls12_c00214{letter-spacing:0.295200px;}
.ls3_c00214{letter-spacing:0.318480px;}
.ls1b_c00214{letter-spacing:0.318816px;}
.lsf_c00214{letter-spacing:0.319080px;}
.ls10_c00214{letter-spacing:0.328628px;}
.ls14_c00214{letter-spacing:0.354240px;}
.ls29_c00214{letter-spacing:0.478224px;}
.lse_c00214{letter-spacing:0.492942px;}
.lsa_c00214{letter-spacing:0.513648px;}
.lsb_c00214{letter-spacing:0.531360px;}
.ls13_c00214{letter-spacing:0.537264px;}
.ls27_c00214{letter-spacing:0.547713px;}
.ls1_c00214{letter-spacing:0.548950px;}
.lsc_c00214{letter-spacing:0.560880px;}
.ls20_c00214{letter-spacing:0.584496px;}
.ls18_c00214{letter-spacing:0.602485px;}
.ls28_c00214{letter-spacing:0.657256px;}
.ls25_c00214{letter-spacing:0.690768px;}
.ls1f_c00214{letter-spacing:0.696672px;}
.ls9_c00214{letter-spacing:0.712027px;}
.ls1e_c00214{letter-spacing:0.743904px;}
.ls22_c00214{letter-spacing:0.766799px;}
.ls11_c00214{letter-spacing:0.821570px;}
.ls21_c00214{letter-spacing:0.962352px;}
.ls2_c00214{letter-spacing:2.322000px;}
.ls2b_c00214{letter-spacing:3.011040px;}
.ls2c_c00214{letter-spacing:4.864896px;}
.ls19_c00214{letter-spacing:5.248656px;}
.ls6_c00214{letter-spacing:5.299080px;}
.ls7_c00214{letter-spacing:5.299680px;}
.lsd_c00214{letter-spacing:5.352840px;}
.ls4_c00214{letter-spacing:5.353440px;}
.ls2d_c00214{letter-spacing:5.430672px;}
.ls1a_c00214{letter-spacing:5.514336px;}
.ls15_c00214{letter-spacing:5.975400px;}
.ls0_c00214{letter-spacing:5.976000px;}
.ls16_c00214{letter-spacing:6.159920px;}
.ls24_c00214{letter-spacing:20.292048px;}
.ls1d_c00214{letter-spacing:21.951072px;}
.ls23_c00214{letter-spacing:25.269120px;}
.ls26_c00214{letter-spacing:26.751024px;}
.ls1c_c00214{letter-spacing:26.934048px;}
.sc__c00214{text-shadow:none;}
.sc1_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00214{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc1_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00214{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00214{word-spacing:-21.927456px;}
.ws1_c00214{word-spacing:-21.661776px;}
.wsd_c00214{word-spacing:-21.043152px;}
.wsb_c00214{word-spacing:-17.739827px;}
.ws5_c00214{word-spacing:-17.685056px;}
.ws3_c00214{word-spacing:-17.630284px;}
.ws8_c00214{word-spacing:-17.575513px;}
.ws0_c00214{word-spacing:-17.520742px;}
.ws7_c00214{word-spacing:-17.411199px;}
.ws6_c00214{word-spacing:-16.944480px;}
.ws9_c00214{word-spacing:-16.891344px;}
.ws4_c00214{word-spacing:-16.731936px;}
.wsc_c00214{word-spacing:-16.413120px;}
.wse_c00214{word-spacing:-10.008000px;}
.wsa_c00214{word-spacing:-0.882427px;}
.wsf_c00214{word-spacing:0.000000px;}
._f_c00214{margin-left:-27.040320px;}
._e_c00214{margin-left:-26.036640px;}
._7_c00214{margin-left:-22.302264px;}
._6_c00214{margin-left:-21.065208px;}
._c_c00214{margin-left:-19.414464px;}
._19_c00214{margin-left:-5.453424px;}
._16_c00214{margin-left:-3.660480px;}
._15_c00214{margin-left:-2.479680px;}
._8_c00214{margin-left:-1.056336px;}
._3_c00214{width:1.713768px;}
._18_c00214{width:3.188160px;}
._2_c00214{width:4.392000px;}
._1b_c00214{width:5.400000px;}
._17_c00214{width:7.320960px;}
._0_c00214{width:8.712000px;}
._1_c00214{width:10.584000px;}
._14_c00214{width:11.587800px;}
._1c_c00214{width:12.672000px;}
._1a_c00214{width:13.896000px;}
._a_c00214{width:15.875376px;}
._12_c00214{width:19.417776px;}
._13_c00214{width:20.900544px;}
._d_c00214{width:25.918560px;}
._4_c00214{width:53.380920px;}
._b_c00214{width:56.498280px;}
._11_c00214{width:64.693602px;}
._5_c00214{width:76.452600px;}
._10_c00214{width:122.744160px;}
._9_c00214{width:209.237760px;}
.fc0_c00214{color:rgb(0,0,0);}
.fs4_c00214{font-size:36.000000px;}
.fs6_c00214{font-size:56.160000px;}
.fs2_c00214{font-size:59.040000px;}
.fs7_c00214{font-size:60.000000px;}
.fs3_c00214{font-size:60.857039px;}
.fs5_c00214{font-size:66.794311px;}
.fs0_c00214{font-size:72.000000px;}
.fs1_c00214{font-size:74.215901px;}
.y0_c00214{bottom:0.000000px;}
.y3f_c00214{bottom:3.120150px;}
.y3e_c00214{bottom:34.744500px;}
.y1_c00214{bottom:54.000000px;}
.y3d_c00214{bottom:55.485000px;}
.y3c_c00214{bottom:61.605000px;}
.y3b_c00214{bottom:88.245000px;}
.y3a_c00214{bottom:110.205000px;}
.y39_c00214{bottom:131.445000px;}
.y38_c00214{bottom:152.325000px;}
.y37_c00214{bottom:188.325000px;}
.y36_c00214{bottom:209.565000px;}
.y35_c00214{bottom:230.445000px;}
.y34_c00214{bottom:251.325000px;}
.y33_c00214{bottom:272.565000px;}
.y32_c00214{bottom:293.445000px;}
.y31_c00214{bottom:329.445000px;}
.y30_c00214{bottom:365.445000px;}
.y2f_c00214{bottom:401.088600px;}
.y2e_c00214{bottom:418.726800px;}
.y2d_c00214{bottom:436.365000px;}
.y2c_c00214{bottom:468.761040px;}
.y2b_c00214{bottom:486.045000px;}
.y2a_c00214{bottom:486.046800px;}
.y29_c00214{bottom:503.685000px;}
.y28_c00214{bottom:503.686800px;}
.y27_c00214{bottom:521.325000px;}
.y26_c00214{bottom:554.085000px;}
.y22_c00214{bottom:573.885000px;}
.y21_c00214{bottom:591.165000px;}
.y20_c00214{bottom:608.805000px;}
.y1f_c00214{bottom:626.445000px;}
.y25_c00214{bottom:626.805000px;}
.y1e_c00214{bottom:643.725000px;}
.y24_c00214{bottom:644.085000px;}
.y1d_c00214{bottom:661.365000px;}
.y23_c00214{bottom:661.725000px;}
.y1c_c00214{bottom:679.005000px;}
.y1b_c00214{bottom:696.645000px;}
.y17_c00214{bottom:715.005000px;}
.y1a_c00214{bottom:717.885000px;}
.y16_c00214{bottom:732.285000px;}
.y19_c00214{bottom:735.165000px;}
.y15_c00214{bottom:752.445000px;}
.y18_c00214{bottom:752.805000px;}
.y14_c00214{bottom:770.445000px;}
.y13_c00214{bottom:787.725000px;}
.y12_c00214{bottom:805.365000px;}
.yf_c00214{bottom:823.725000px;}
.ye_c00214{bottom:841.005000px;}
.y11_c00214{bottom:843.885000px;}
.yd_c00214{bottom:861.165000px;}
.y10_c00214{bottom:861.525000px;}
.yc_c00214{bottom:878.805000px;}
.yb_c00214{bottom:896.445000px;}
.ya_c00214{bottom:914.085000px;}
.y9_c00214{bottom:931.365000px;}
.y8_c00214{bottom:964.845000px;}
.y7_c00214{bottom:1000.845000px;}
.y6_c00214{bottom:1022.085000px;}
.y5_c00214{bottom:1042.965000px;}
.y4_c00214{bottom:1063.845000px;}
.y3_c00214{bottom:1085.085000px;}
.y2_c00214{bottom:1138.365000px;}
.hb_c00214{height:19.255500px;}
.ha_c00214{height:32.616000px;}
.hc_c00214{height:46.320000px;}
.h8_c00214{height:46.981634px;}
.h9_c00214{height:51.565208px;}
.h5_c00214{height:53.490240px;}
.h6_c00214{height:55.136477px;}
.h7_c00214{height:57.096000px;}
.h4_c00214{height:57.294676px;}
.h3_c00214{height:65.232000px;}
.h2_c00214{height:1201.365000px;}
.h0_c00214{height:1262.835000px;}
.h1_c00214{height:1263.000000px;}
.w7_c00214{width:25.020000px;}
.w3_c00214{width:60.840000px;}
.w4_c00214{width:116.280000px;}
.w5_c00214{width:158.760000px;}
.w6_c00214{width:309.240000px;}
.w2_c00214{width:863.955000px;}
.w0_c00214{width:892.935000px;}
.w1_c00214{width:893.250000px;}
.x0_c00214{left:0.000000px;}
.x6_c00214{left:7.920150px;}
.x1a_c00214{left:12.554550px;}
.x1_c00214{left:14.490000px;}
.x19_c00214{left:41.743800px;}
.x1b_c00214{left:43.394400px;}
.x9_c00214{left:62.548200px;}
.x12_c00214{left:79.691400px;}
.xc_c00214{left:91.981050px;}
.xa_c00214{left:97.512600px;}
.x15_c00214{left:104.533350px;}
.x14_c00214{left:106.677000px;}
.x2_c00214{left:113.040150px;}
.x13_c00214{left:114.655800px;}
.x5_c00214{left:119.610000px;}
.xd_c00214{left:128.296800px;}
.x20_c00214{left:133.034550px;}
.x16_c00214{left:136.197750px;}
.x17_c00214{left:150.533100px;}
.xe_c00214{left:156.367950px;}
.x3_c00214{left:162.521550px;}
.x21_c00214{left:171.035550px;}
.x7_c00214{left:181.170000px;}
.x22_c00214{left:194.706600px;}
.x18_c00214{left:196.907850px;}
.xf_c00214{left:204.617250px;}
.x1c_c00214{left:230.999250px;}
.x4_c00214{left:232.972350px;}
.x10_c00214{left:237.165450px;}
.x1d_c00214{left:266.818800px;}
.x11_c00214{left:280.514550px;}
.x8_c00214{left:298.170000px;}
.xb_c00214{left:457.650000px;}
.x1e_c00214{left:571.936500px;}
.x1f_c00214{left:606.900900px;}
.x23_c00214{left:759.915000px;}
@media print{
.v2_c00214{vertical-align:-21.760000pt;}
.v0_c00214{vertical-align:0.000000pt;}
.v1_c00214{vertical-align:21.760000pt;}
.ls17_c00214{letter-spacing:0.000000pt;}
.ls5_c00214{letter-spacing:0.236160pt;}
.ls8_c00214{letter-spacing:0.236693pt;}
.ls2a_c00214{letter-spacing:0.246656pt;}
.ls12_c00214{letter-spacing:0.262400pt;}
.ls3_c00214{letter-spacing:0.283093pt;}
.ls1b_c00214{letter-spacing:0.283392pt;}
.lsf_c00214{letter-spacing:0.283627pt;}
.ls10_c00214{letter-spacing:0.292114pt;}
.ls14_c00214{letter-spacing:0.314880pt;}
.ls29_c00214{letter-spacing:0.425088pt;}
.lse_c00214{letter-spacing:0.438171pt;}
.lsa_c00214{letter-spacing:0.456576pt;}
.lsb_c00214{letter-spacing:0.472320pt;}
.ls13_c00214{letter-spacing:0.477568pt;}
.ls27_c00214{letter-spacing:0.486856pt;}
.ls1_c00214{letter-spacing:0.487956pt;}
.lsc_c00214{letter-spacing:0.498560pt;}
.ls20_c00214{letter-spacing:0.519552pt;}
.ls18_c00214{letter-spacing:0.535542pt;}
.ls28_c00214{letter-spacing:0.584228pt;}
.ls25_c00214{letter-spacing:0.614016pt;}
.ls1f_c00214{letter-spacing:0.619264pt;}
.ls9_c00214{letter-spacing:0.632913pt;}
.ls1e_c00214{letter-spacing:0.661248pt;}
.ls22_c00214{letter-spacing:0.681599pt;}
.ls11_c00214{letter-spacing:0.730284pt;}
.ls21_c00214{letter-spacing:0.855424pt;}
.ls2_c00214{letter-spacing:2.064000pt;}
.ls2b_c00214{letter-spacing:2.676480pt;}
.ls2c_c00214{letter-spacing:4.324352pt;}
.ls19_c00214{letter-spacing:4.665472pt;}
.ls6_c00214{letter-spacing:4.710293pt;}
.ls7_c00214{letter-spacing:4.710827pt;}
.lsd_c00214{letter-spacing:4.758080pt;}
.ls4_c00214{letter-spacing:4.758613pt;}
.ls2d_c00214{letter-spacing:4.827264pt;}
.ls1a_c00214{letter-spacing:4.901632pt;}
.ls15_c00214{letter-spacing:5.311467pt;}
.ls0_c00214{letter-spacing:5.312000pt;}
.ls16_c00214{letter-spacing:5.475484pt;}
.ls24_c00214{letter-spacing:18.037376pt;}
.ls1d_c00214{letter-spacing:19.512064pt;}
.ls23_c00214{letter-spacing:22.461440pt;}
.ls26_c00214{letter-spacing:23.778688pt;}
.ls1c_c00214{letter-spacing:23.941376pt;}
.ws2_c00214{word-spacing:-19.491072pt;}
.ws1_c00214{word-spacing:-19.254912pt;}
.wsd_c00214{word-spacing:-18.705024pt;}
.wsb_c00214{word-spacing:-15.768735pt;}
.ws5_c00214{word-spacing:-15.720049pt;}
.ws3_c00214{word-spacing:-15.671364pt;}
.ws8_c00214{word-spacing:-15.622678pt;}
.ws0_c00214{word-spacing:-15.573992pt;}
.ws7_c00214{word-spacing:-15.476621pt;}
.ws6_c00214{word-spacing:-15.061760pt;}
.ws9_c00214{word-spacing:-15.014528pt;}
.ws4_c00214{word-spacing:-14.872832pt;}
.wsc_c00214{word-spacing:-14.589440pt;}
.wse_c00214{word-spacing:-8.896000pt;}
.wsa_c00214{word-spacing:-0.784380pt;}
.wsf_c00214{word-spacing:0.000000pt;}
._f_c00214{margin-left:-24.035840pt;}
._e_c00214{margin-left:-23.143680pt;}
._7_c00214{margin-left:-19.824235pt;}
._6_c00214{margin-left:-18.724629pt;}
._c_c00214{margin-left:-17.257301pt;}
._19_c00214{margin-left:-4.847488pt;}
._16_c00214{margin-left:-3.253760pt;}
._15_c00214{margin-left:-2.204160pt;}
._8_c00214{margin-left:-0.938965pt;}
._3_c00214{width:1.523349pt;}
._18_c00214{width:2.833920pt;}
._2_c00214{width:3.904000pt;}
._1b_c00214{width:4.800000pt;}
._17_c00214{width:6.507520pt;}
._0_c00214{width:7.744000pt;}
._1_c00214{width:9.408000pt;}
._14_c00214{width:10.300267pt;}
._1c_c00214{width:11.264000pt;}
._1a_c00214{width:12.352000pt;}
._a_c00214{width:14.111445pt;}
._12_c00214{width:17.260245pt;}
._13_c00214{width:18.578261pt;}
._d_c00214{width:23.038720pt;}
._4_c00214{width:47.449707pt;}
._b_c00214{width:50.220693pt;}
._11_c00214{width:57.505424pt;}
._5_c00214{width:67.957867pt;}
._10_c00214{width:109.105920pt;}
._9_c00214{width:185.989120pt;}
.fs4_c00214{font-size:32.000000pt;}
.fs6_c00214{font-size:49.920000pt;}
.fs2_c00214{font-size:52.480000pt;}
.fs7_c00214{font-size:53.333333pt;}
.fs3_c00214{font-size:54.095146pt;}
.fs5_c00214{font-size:59.372721pt;}
.fs0_c00214{font-size:64.000000pt;}
.fs1_c00214{font-size:65.969690pt;}
.y0_c00214{bottom:0.000000pt;}
.y3f_c00214{bottom:2.773467pt;}
.y3e_c00214{bottom:30.884000pt;}
.y1_c00214{bottom:48.000000pt;}
.y3d_c00214{bottom:49.320000pt;}
.y3c_c00214{bottom:54.760000pt;}
.y3b_c00214{bottom:78.440000pt;}
.y3a_c00214{bottom:97.960000pt;}
.y39_c00214{bottom:116.840000pt;}
.y38_c00214{bottom:135.400000pt;}
.y37_c00214{bottom:167.400000pt;}
.y36_c00214{bottom:186.280000pt;}
.y35_c00214{bottom:204.840000pt;}
.y34_c00214{bottom:223.400000pt;}
.y33_c00214{bottom:242.280000pt;}
.y32_c00214{bottom:260.840000pt;}
.y31_c00214{bottom:292.840000pt;}
.y30_c00214{bottom:324.840000pt;}
.y2f_c00214{bottom:356.523200pt;}
.y2e_c00214{bottom:372.201600pt;}
.y2d_c00214{bottom:387.880000pt;}
.y2c_c00214{bottom:416.676480pt;}
.y2b_c00214{bottom:432.040000pt;}
.y2a_c00214{bottom:432.041600pt;}
.y29_c00214{bottom:447.720000pt;}
.y28_c00214{bottom:447.721600pt;}
.y27_c00214{bottom:463.400000pt;}
.y26_c00214{bottom:492.520000pt;}
.y22_c00214{bottom:510.120000pt;}
.y21_c00214{bottom:525.480000pt;}
.y20_c00214{bottom:541.160000pt;}
.y1f_c00214{bottom:556.840000pt;}
.y25_c00214{bottom:557.160000pt;}
.y1e_c00214{bottom:572.200000pt;}
.y24_c00214{bottom:572.520000pt;}
.y1d_c00214{bottom:587.880000pt;}
.y23_c00214{bottom:588.200000pt;}
.y1c_c00214{bottom:603.560000pt;}
.y1b_c00214{bottom:619.240000pt;}
.y17_c00214{bottom:635.560000pt;}
.y1a_c00214{bottom:638.120000pt;}
.y16_c00214{bottom:650.920000pt;}
.y19_c00214{bottom:653.480000pt;}
.y15_c00214{bottom:668.840000pt;}
.y18_c00214{bottom:669.160000pt;}
.y14_c00214{bottom:684.840000pt;}
.y13_c00214{bottom:700.200000pt;}
.y12_c00214{bottom:715.880000pt;}
.yf_c00214{bottom:732.200000pt;}
.ye_c00214{bottom:747.560000pt;}
.y11_c00214{bottom:750.120000pt;}
.yd_c00214{bottom:765.480000pt;}
.y10_c00214{bottom:765.800000pt;}
.yc_c00214{bottom:781.160000pt;}
.yb_c00214{bottom:796.840000pt;}
.ya_c00214{bottom:812.520000pt;}
.y9_c00214{bottom:827.880000pt;}
.y8_c00214{bottom:857.640000pt;}
.y7_c00214{bottom:889.640000pt;}
.y6_c00214{bottom:908.520000pt;}
.y5_c00214{bottom:927.080000pt;}
.y4_c00214{bottom:945.640000pt;}
.y3_c00214{bottom:964.520000pt;}
.y2_c00214{bottom:1011.880000pt;}
.hb_c00214{height:17.116000pt;}
.ha_c00214{height:28.992000pt;}
.hc_c00214{height:41.173333pt;}
.h8_c00214{height:41.761453pt;}
.h9_c00214{height:45.835741pt;}
.h5_c00214{height:47.546880pt;}
.h6_c00214{height:49.010202pt;}
.h7_c00214{height:50.752000pt;}
.h4_c00214{height:50.928601pt;}
.h3_c00214{height:57.984000pt;}
.h2_c00214{height:1067.880000pt;}
.h0_c00214{height:1122.520000pt;}
.h1_c00214{height:1122.666667pt;}
.w7_c00214{width:22.240000pt;}
.w3_c00214{width:54.080000pt;}
.w4_c00214{width:103.360000pt;}
.w5_c00214{width:141.120000pt;}
.w6_c00214{width:274.880000pt;}
.w2_c00214{width:767.960000pt;}
.w0_c00214{width:793.720000pt;}
.w1_c00214{width:794.000000pt;}
.x0_c00214{left:0.000000pt;}
.x6_c00214{left:7.040133pt;}
.x1a_c00214{left:11.159600pt;}
.x1_c00214{left:12.880000pt;}
.x19_c00214{left:37.105600pt;}
.x1b_c00214{left:38.572800pt;}
.x9_c00214{left:55.598400pt;}
.x12_c00214{left:70.836800pt;}
.xc_c00214{left:81.760933pt;}
.xa_c00214{left:86.677867pt;}
.x15_c00214{left:92.918533pt;}
.x14_c00214{left:94.824000pt;}
.x2_c00214{left:100.480133pt;}
.x13_c00214{left:101.916267pt;}
.x5_c00214{left:106.320000pt;}
.xd_c00214{left:114.041600pt;}
.x20_c00214{left:118.252933pt;}
.x16_c00214{left:121.064667pt;}
.x17_c00214{left:133.807200pt;}
.xe_c00214{left:138.993733pt;}
.x3_c00214{left:144.463600pt;}
.x21_c00214{left:152.031600pt;}
.x7_c00214{left:161.040000pt;}
.x22_c00214{left:173.072533pt;}
.x18_c00214{left:175.029200pt;}
.xf_c00214{left:181.882000pt;}
.x1c_c00214{left:205.332667pt;}
.x4_c00214{left:207.086533pt;}
.x10_c00214{left:210.813733pt;}
.x1d_c00214{left:237.172267pt;}
.x11_c00214{left:249.346267pt;}
.x8_c00214{left:265.040000pt;}
.xb_c00214{left:406.800000pt;}
.x1e_c00214{left:508.388000pt;}
.x1f_c00214{left:539.467467pt;}
.x23_c00214{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6aee08d659629c3f1e4ee80e.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.134000;font-style:normal;font-weight:normal;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_e8a49c444aa0545c8345d39a.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;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:ff3_c00215;src:url('chunks/assets/font_e2c2764a1ffa8007277704e9.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:0.787000;font-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_c00215{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00215{vertical-align:-24.480000px;}
.v0_c00215{vertical-align:0.000000px;}
.v2_c00215{vertical-align:24.480000px;}
.v1_c00215{vertical-align:31.170679px;}
.ls7_c00215{letter-spacing:0.000000px;}
.ls9_c00215{letter-spacing:0.144000px;}
.ls17_c00215{letter-spacing:0.265680px;}
.ls12_c00215{letter-spacing:0.273857px;}
.ls14_c00215{letter-spacing:0.318816px;}
.ls1b_c00215{letter-spacing:0.371952px;}
.ls11_c00215{letter-spacing:0.425088px;}
.lse_c00215{letter-spacing:0.478224px;}
.ls3_c00215{letter-spacing:0.531360px;}
.lsf_c00215{letter-spacing:0.584496px;}
.ls10_c00215{letter-spacing:0.602485px;}
.ls13_c00215{letter-spacing:0.637632px;}
.ls1a_c00215{letter-spacing:0.690768px;}
.ls15_c00215{letter-spacing:0.712027px;}
.ls16_c00215{letter-spacing:1.694448px;}
.ls4_c00215{letter-spacing:1.712160px;}
.ls1_c00215{letter-spacing:4.952760px;}
.lsd_c00215{letter-spacing:5.402160px;}
.ls2_c00215{letter-spacing:5.405040px;}
.ls5_c00215{letter-spacing:5.431680px;}
.ls8_c00215{letter-spacing:5.461200px;}
.lsa_c00215{letter-spacing:5.514336px;}
.lsc_c00215{letter-spacing:5.567472px;}
.lsb_c00215{letter-spacing:5.939424px;}
.ls0_c00215{letter-spacing:5.976000px;}
.ls6_c00215{letter-spacing:6.159920px;}
.ls18_c00215{letter-spacing:8.041248px;}
.ls19_c00215{letter-spacing:8.543088px;}
.sc__c00215{text-shadow:none;}
.sc1_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00215{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc1_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00215{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00215{word-spacing:-22.352544px;}
.ws1_c00215{word-spacing:-21.874320px;}
.ws5_c00215{word-spacing:-21.815280px;}
.ws0_c00215{word-spacing:-20.632021px;}
.ws7_c00215{word-spacing:-17.520742px;}
.ws9_c00215{word-spacing:-17.192114px;}
.wsa_c00215{word-spacing:-16.944480px;}
.ws6_c00215{word-spacing:-16.891344px;}
.ws8_c00215{word-spacing:-16.838208px;}
.ws3_c00215{word-spacing:-10.152000px;}
.ws2_c00215{word-spacing:-10.008000px;}
.wsb_c00215{word-spacing:0.000000px;}
._9_c00215{margin-left:-8.612327px;}
._1_c00215{margin-left:-7.608985px;}
._7_c00215{margin-left:-2.296032px;}
._6_c00215{margin-left:-1.280136px;}
._0_c00215{width:1.872000px;}
._2_c00215{width:5.112000px;}
._a_c00215{width:6.348096px;}
._4_c00215{width:7.776000px;}
._8_c00215{width:8.856000px;}
._5_c00215{width:18.864000px;}
._3_c00215{width:22.608000px;}
.fc1_c00215{color:transparent;}
.fc0_c00215{color:rgb(0,0,0);}
.fs4_c00215{font-size:36.000000px;}
.fs2_c00215{font-size:43.045223px;}
.fs3_c00215{font-size:59.040000px;}
.fs6_c00215{font-size:60.000000px;}
.fs5_c00215{font-size:60.857039px;}
.fs0_c00215{font-size:72.000000px;}
.fs1_c00215{font-size:74.215901px;}
.y0_c00215{bottom:0.000000px;}
.y36_c00215{bottom:3.120150px;}
.y35_c00215{bottom:34.744500px;}
.y1_c00215{bottom:54.000000px;}
.y34_c00215{bottom:61.605000px;}
.y33_c00215{bottom:72.764640px;}
.y32_c00215{bottom:90.402840px;}
.y31_c00215{bottom:107.686800px;}
.y30_c00215{bottom:125.325000px;}
.y2f_c00215{bottom:131.445000px;}
.y2e_c00215{bottom:142.961040px;}
.y2d_c00215{bottom:160.245000px;}
.y2c_c00215{bottom:166.365000px;}
.y2b_c00215{bottom:193.005000px;}
.y2a_c00215{bottom:231.885000px;}
.y26_c00215{bottom:247.005000px;}
.y29_c00215{bottom:249.525000px;}
.y28_c00215{bottom:267.165000px;}
.y27_c00215{bottom:284.445000px;}
.y25_c00215{bottom:302.085000px;}
.y21_c00215{bottom:316.845000px;}
.y24_c00215{bottom:341.325000px;}
.y23_c00215{bottom:358.605000px;}
.y22_c00215{bottom:376.245000px;}
.y20_c00215{bottom:393.885000px;}
.y1f_c00215{bottom:411.165000px;}
.y1e_c00215{bottom:425.925000px;}
.y1d_c00215{bottom:502.965000px;}
.y1c_c00215{bottom:520.605000px;}
.y18_c00215{bottom:535.365000px;}
.y1b_c00215{bottom:558.405000px;}
.y1a_c00215{bottom:575.685000px;}
.y19_c00215{bottom:593.325000px;}
.y17_c00215{bottom:610.965000px;}
.y16_c00215{bottom:628.245000px;}
.y15_c00215{bottom:643.365000px;}
.y14_c00215{bottom:730.485000px;}
.y13_c00215{bottom:748.125000px;}
.y12_c00215{bottom:762.885000px;}
.y11_c00215{bottom:829.125000px;}
.y10_c00215{bottom:846.405000px;}
.ya_c00215{bottom:861.525000px;}
.yf_c00215{bottom:861.885000px;}
.yc_c00215{bottom:865.485000px;}
.yd_c00215{bottom:870.885000px;}
.ye_c00215{bottom:877.005000px;}
.yb_c00215{bottom:910.485000px;}
.y9_c00215{bottom:943.965000px;}
.y8_c00215{bottom:979.965000px;}
.y7_c00215{bottom:1000.845000px;}
.y6_c00215{bottom:1022.085000px;}
.y5_c00215{bottom:1042.965000px;}
.y4_c00215{bottom:1063.845000px;}
.y3_c00215{bottom:1085.085000px;}
.y2_c00215{bottom:1138.365000px;}
.ha_c00215{height:19.255500px;}
.h9_c00215{height:32.616000px;}
.hb_c00215{height:46.320000px;}
.h8_c00215{height:46.981634px;}
.h6_c00215{height:53.490240px;}
.h7_c00215{height:57.096000px;}
.h4_c00215{height:57.294676px;}
.h5_c00215{height:64.401590px;}
.h3_c00215{height:65.232000px;}
.h2_c00215{height:1201.365000px;}
.h0_c00215{height:1262.835000px;}
.h1_c00215{height:1263.000000px;}
.w8_c00215{width:25.020000px;}
.w5_c00215{width:117.000000px;}
.w6_c00215{width:134.280000px;}
.w7_c00215{width:140.760000px;}
.w4_c00215{width:147.240000px;}
.w3_c00215{width:190.800000px;}
.w2_c00215{width:863.955000px;}
.w0_c00215{width:892.935000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:14.490000px;}
.x1f_c00215{left:19.169100px;}
.x20_c00215{left:29.999100px;}
.x1a_c00215{left:36.000150px;}
.x1c_c00215{left:46.082250px;}
.x1b_c00215{left:52.498350px;}
.x18_c00215{left:54.000150px;}
.xe_c00215{left:74.610000px;}
.x11_c00215{left:105.000000px;}
.x15_c00215{left:108.599700px;}
.x2_c00215{left:113.040150px;}
.x13_c00215{left:116.999850px;}
.x19_c00215{left:119.981100px;}
.x1d_c00215{left:121.676100px;}
.x1e_c00215{left:132.506100px;}
.x5_c00215{left:136.509450px;}
.x17_c00215{left:140.999850px;}
.x6_c00215{left:149.505300px;}
.x3_c00215{left:162.521550px;}
.xf_c00215{left:189.074850px;}
.x7_c00215{left:217.431450px;}
.x8_c00215{left:228.273150px;}
.x4_c00215{left:232.972350px;}
.x10_c00215{left:266.130000px;}
.xd_c00215{left:317.084850px;}
.x23_c00215{left:344.710350px;}
.x24_c00215{left:355.540200px;}
.x9_c00215{left:404.011200px;}
.x12_c00215{left:414.090000px;}
.xa_c00215{left:417.006900px;}
.x21_c00215{left:425.837700px;}
.x22_c00215{left:474.166650px;}
.x14_c00215{left:531.810000px;}
.xb_c00215{left:617.242650px;}
.xc_c00215{left:628.240350px;}
.x16_c00215{left:666.810000px;}
.x25_c00215{left:759.915000px;}
@media print{
.v3_c00215{vertical-align:-21.760000pt;}
.v0_c00215{vertical-align:0.000000pt;}
.v2_c00215{vertical-align:21.760000pt;}
.v1_c00215{vertical-align:27.707270pt;}
.ls7_c00215{letter-spacing:0.000000pt;}
.ls9_c00215{letter-spacing:0.128000pt;}
.ls17_c00215{letter-spacing:0.236160pt;}
.ls12_c00215{letter-spacing:0.243428pt;}
.ls14_c00215{letter-spacing:0.283392pt;}
.ls1b_c00215{letter-spacing:0.330624pt;}
.ls11_c00215{letter-spacing:0.377856pt;}
.lse_c00215{letter-spacing:0.425088pt;}
.ls3_c00215{letter-spacing:0.472320pt;}
.lsf_c00215{letter-spacing:0.519552pt;}
.ls10_c00215{letter-spacing:0.535542pt;}
.ls13_c00215{letter-spacing:0.566784pt;}
.ls1a_c00215{letter-spacing:0.614016pt;}
.ls15_c00215{letter-spacing:0.632913pt;}
.ls16_c00215{letter-spacing:1.506176pt;}
.ls4_c00215{letter-spacing:1.521920pt;}
.ls1_c00215{letter-spacing:4.402453pt;}
.lsd_c00215{letter-spacing:4.801920pt;}
.ls2_c00215{letter-spacing:4.804480pt;}
.ls5_c00215{letter-spacing:4.828160pt;}
.ls8_c00215{letter-spacing:4.854400pt;}
.lsa_c00215{letter-spacing:4.901632pt;}
.lsc_c00215{letter-spacing:4.948864pt;}
.lsb_c00215{letter-spacing:5.279488pt;}
.ls0_c00215{letter-spacing:5.312000pt;}
.ls6_c00215{letter-spacing:5.475484pt;}
.ls18_c00215{letter-spacing:7.147776pt;}
.ls19_c00215{letter-spacing:7.593856pt;}
.ws4_c00215{word-spacing:-19.868928pt;}
.ws1_c00215{word-spacing:-19.443840pt;}
.ws5_c00215{word-spacing:-19.391360pt;}
.ws0_c00215{word-spacing:-18.339574pt;}
.ws7_c00215{word-spacing:-15.573992pt;}
.ws9_c00215{word-spacing:-15.281879pt;}
.wsa_c00215{word-spacing:-15.061760pt;}
.ws6_c00215{word-spacing:-15.014528pt;}
.ws8_c00215{word-spacing:-14.967296pt;}
.ws3_c00215{word-spacing:-9.024000pt;}
.ws2_c00215{word-spacing:-8.896000pt;}
.wsb_c00215{word-spacing:0.000000pt;}
._9_c00215{margin-left:-7.655402pt;}
._1_c00215{margin-left:-6.763542pt;}
._7_c00215{margin-left:-2.040917pt;}
._6_c00215{margin-left:-1.137899pt;}
._0_c00215{width:1.664000pt;}
._2_c00215{width:4.544000pt;}
._a_c00215{width:5.642752pt;}
._4_c00215{width:6.912000pt;}
._8_c00215{width:7.872000pt;}
._5_c00215{width:16.768000pt;}
._3_c00215{width:20.096000pt;}
.fs4_c00215{font-size:32.000000pt;}
.fs2_c00215{font-size:38.262420pt;}
.fs3_c00215{font-size:52.480000pt;}
.fs6_c00215{font-size:53.333333pt;}
.fs5_c00215{font-size:54.095146pt;}
.fs0_c00215{font-size:64.000000pt;}
.fs1_c00215{font-size:65.969690pt;}
.y0_c00215{bottom:0.000000pt;}
.y36_c00215{bottom:2.773467pt;}
.y35_c00215{bottom:30.884000pt;}
.y1_c00215{bottom:48.000000pt;}
.y34_c00215{bottom:54.760000pt;}
.y33_c00215{bottom:64.679680pt;}
.y32_c00215{bottom:80.358080pt;}
.y31_c00215{bottom:95.721600pt;}
.y30_c00215{bottom:111.400000pt;}
.y2f_c00215{bottom:116.840000pt;}
.y2e_c00215{bottom:127.076480pt;}
.y2d_c00215{bottom:142.440000pt;}
.y2c_c00215{bottom:147.880000pt;}
.y2b_c00215{bottom:171.560000pt;}
.y2a_c00215{bottom:206.120000pt;}
.y26_c00215{bottom:219.560000pt;}
.y29_c00215{bottom:221.800000pt;}
.y28_c00215{bottom:237.480000pt;}
.y27_c00215{bottom:252.840000pt;}
.y25_c00215{bottom:268.520000pt;}
.y21_c00215{bottom:281.640000pt;}
.y24_c00215{bottom:303.400000pt;}
.y23_c00215{bottom:318.760000pt;}
.y22_c00215{bottom:334.440000pt;}
.y20_c00215{bottom:350.120000pt;}
.y1f_c00215{bottom:365.480000pt;}
.y1e_c00215{bottom:378.600000pt;}
.y1d_c00215{bottom:447.080000pt;}
.y1c_c00215{bottom:462.760000pt;}
.y18_c00215{bottom:475.880000pt;}
.y1b_c00215{bottom:496.360000pt;}
.y1a_c00215{bottom:511.720000pt;}
.y19_c00215{bottom:527.400000pt;}
.y17_c00215{bottom:543.080000pt;}
.y16_c00215{bottom:558.440000pt;}
.y15_c00215{bottom:571.880000pt;}
.y14_c00215{bottom:649.320000pt;}
.y13_c00215{bottom:665.000000pt;}
.y12_c00215{bottom:678.120000pt;}
.y11_c00215{bottom:737.000000pt;}
.y10_c00215{bottom:752.360000pt;}
.ya_c00215{bottom:765.800000pt;}
.yf_c00215{bottom:766.120000pt;}
.yc_c00215{bottom:769.320000pt;}
.yd_c00215{bottom:774.120000pt;}
.ye_c00215{bottom:779.560000pt;}
.yb_c00215{bottom:809.320000pt;}
.y9_c00215{bottom:839.080000pt;}
.y8_c00215{bottom:871.080000pt;}
.y7_c00215{bottom:889.640000pt;}
.y6_c00215{bottom:908.520000pt;}
.y5_c00215{bottom:927.080000pt;}
.y4_c00215{bottom:945.640000pt;}
.y3_c00215{bottom:964.520000pt;}
.y2_c00215{bottom:1011.880000pt;}
.ha_c00215{height:17.116000pt;}
.h9_c00215{height:28.992000pt;}
.hb_c00215{height:41.173333pt;}
.h8_c00215{height:41.761453pt;}
.h6_c00215{height:47.546880pt;}
.h7_c00215{height:50.752000pt;}
.h4_c00215{height:50.928601pt;}
.h5_c00215{height:57.245858pt;}
.h3_c00215{height:57.984000pt;}
.h2_c00215{height:1067.880000pt;}
.h0_c00215{height:1122.520000pt;}
.h1_c00215{height:1122.666667pt;}
.w8_c00215{width:22.240000pt;}
.w5_c00215{width:104.000000pt;}
.w6_c00215{width:119.360000pt;}
.w7_c00215{width:125.120000pt;}
.w4_c00215{width:130.880000pt;}
.w3_c00215{width:169.600000pt;}
.w2_c00215{width:767.960000pt;}
.w0_c00215{width:793.720000pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:12.880000pt;}
.x1f_c00215{left:17.039200pt;}
.x20_c00215{left:26.665867pt;}
.x1a_c00215{left:32.000133pt;}
.x1c_c00215{left:40.962000pt;}
.x1b_c00215{left:46.665200pt;}
.x18_c00215{left:48.000133pt;}
.xe_c00215{left:66.320000pt;}
.x11_c00215{left:93.333333pt;}
.x15_c00215{left:96.533067pt;}
.x2_c00215{left:100.480133pt;}
.x13_c00215{left:103.999867pt;}
.x19_c00215{left:106.649867pt;}
.x1d_c00215{left:108.156533pt;}
.x1e_c00215{left:117.783200pt;}
.x5_c00215{left:121.341733pt;}
.x17_c00215{left:125.333200pt;}
.x6_c00215{left:132.893600pt;}
.x3_c00215{left:144.463600pt;}
.xf_c00215{left:168.066533pt;}
.x7_c00215{left:193.272400pt;}
.x8_c00215{left:202.909467pt;}
.x4_c00215{left:207.086533pt;}
.x10_c00215{left:236.560000pt;}
.xd_c00215{left:281.853200pt;}
.x23_c00215{left:306.409200pt;}
.x24_c00215{left:316.035733pt;}
.x9_c00215{left:359.121067pt;}
.x12_c00215{left:368.080000pt;}
.xa_c00215{left:370.672800pt;}
.x21_c00215{left:378.522400pt;}
.x22_c00215{left:421.481467pt;}
.x14_c00215{left:472.720000pt;}
.xb_c00215{left:548.660133pt;}
.xc_c00215{left:558.435867pt;}
.x16_c00215{left:592.720000pt;}
.x25_c00215{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1d8e59dd53279c56f3a6d942.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.134000;font-style:normal;font-weight:normal;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_92642a7b762b59be0f35972a.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;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:ff3_c00216;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00216;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00216;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00216;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff7_c00216{font-family:ff7_c00216;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00216;src:url('chunks/assets/font_31618236ac1c433954a55a3c.woff2')format("woff");}.ff8_c00216{font-family:ff8_c00216;line-height:1.162000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00216;src:url('chunks/assets/font_8b72e1ebf1d8c53eee7e7f8d.woff2')format("woff");}.ff9_c00216{font-family:ff9_c00216;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00216;src:url('chunks/assets/font_6bdac75d1bc62d10cd6060a7.woff2')format("woff");}.ffa_c00216{font-family:ffa_c00216;line-height:0.956055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00216;src:url('chunks/assets/font_805e76885f0ec4338c87cf08.woff2')format("woff");}.ffb_c00216{font-family:ffb_c00216;line-height:1.191800;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00216;src:url('chunks/assets/font_66fddb12c7a56798a603a982.woff2')format("woff");}.ffc_c00216{font-family:ffc_c00216;line-height:0.912598;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00216;src:url('chunks/assets/font_c4324e1801f96079f0ba2ddf.woff2')format("woff");}.ffd_c00216{font-family:ffd_c00216;line-height:0.672852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00216;src:url('chunks/assets/font_cf6746f737f1e5aaa387bcae.woff2')format("woff");}.ffe_c00216{font-family:ffe_c00216;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00216;src:url('chunks/assets/font_b3d64f5d6df998d168d2b029.woff2')format("woff");}.fff_c00216{font-family:fff_c00216;line-height:0.787000;font-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_c00216{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00216{transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.247562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247562,0.000000,0.000000,0.250000,0,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);}
.v3_c00216{vertical-align:-24.480000px;}
.v0_c00216{vertical-align:0.000000px;}
.v4_c00216{vertical-align:21.938880px;}
.v2_c00216{vertical-align:24.480000px;}
.v1_c00216{vertical-align:31.170679px;}
.ls2e_c00216{letter-spacing:-5.650902px;}
.ls2d_c00216{letter-spacing:-0.864256px;}
.ls17_c00216{letter-spacing:-0.185094px;}
.ls18_c00216{letter-spacing:-0.179568px;}
.ls2f_c00216{letter-spacing:-0.066481px;}
.ls15_c00216{letter-spacing:0.000000px;}
.ls13_c00216{letter-spacing:0.000165px;}
.ls12_c00216{letter-spacing:0.000418px;}
.ls23_c00216{letter-spacing:0.144000px;}
.ls3_c00216{letter-spacing:0.235200px;}
.ls1c_c00216{letter-spacing:0.265680px;}
.lsf_c00216{letter-spacing:0.295200px;}
.lsd_c00216{letter-spacing:0.304285px;}
.ls5_c00216{letter-spacing:0.318480px;}
.ls1e_c00216{letter-spacing:0.318816px;}
.ls28_c00216{letter-spacing:0.328628px;}
.ls22_c00216{letter-spacing:0.425088px;}
.ls2a_c00216{letter-spacing:0.438171px;}
.ls1f_c00216{letter-spacing:0.478224px;}
.lsa_c00216{letter-spacing:0.513648px;}
.ls10_c00216{letter-spacing:0.531360px;}
.lsb_c00216{letter-spacing:0.541628px;}
.ls25_c00216{letter-spacing:0.547713px;}
.lse_c00216{letter-spacing:0.560880px;}
.ls24_c00216{letter-spacing:0.602485px;}
.ls1d_c00216{letter-spacing:0.637632px;}
.ls2b_c00216{letter-spacing:0.690768px;}
.ls20_c00216{letter-spacing:0.712027px;}
.lsc_c00216{letter-spacing:0.821570px;}
.ls26_c00216{letter-spacing:0.991970px;}
.ls19_c00216{letter-spacing:3.024000px;}
.ls27_c00216{letter-spacing:3.524688px;}
.ls2c_c00216{letter-spacing:4.351248px;}
.ls11_c00216{letter-spacing:4.853128px;}
.ls6_c00216{letter-spacing:5.246280px;}
.ls7_c00216{letter-spacing:5.299680px;}
.ls21_c00216{letter-spacing:5.402160px;}
.ls9_c00216{letter-spacing:5.404440px;}
.ls8_c00216{letter-spacing:5.513160px;}
.ls4_c00216{letter-spacing:5.514336px;}
.ls1b_c00216{letter-spacing:5.567472px;}
.ls1a_c00216{letter-spacing:5.939424px;}
.ls0_c00216{letter-spacing:5.976000px;}
.ls14_c00216{letter-spacing:6.159920px;}
.ls29_c00216{letter-spacing:7.568928px;}
.ls16_c00216{letter-spacing:18.187200px;}
.ls2_c00216{letter-spacing:52.344000px;}
.ls1_c00216{letter-spacing:55.008000px;}
.sc__c00216{text-shadow:none;}
.sc1_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00216{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc1_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00216{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00216{word-spacing:-66.481200px;}
.ws3_c00216{word-spacing:-22.352544px;}
.ws4_c00216{word-spacing:-21.927456px;}
.ws0_c00216{word-spacing:-20.632021px;}
.wsa_c00216{word-spacing:-19.080104px;}
.wsc_c00216{word-spacing:-18.481774px;}
.ws8_c00216{word-spacing:-17.739827px;}
.ws7_c00216{word-spacing:-17.459884px;}
.ws5_c00216{word-spacing:-16.891344px;}
.ws2_c00216{word-spacing:-13.032000px;}
.ws1_c00216{word-spacing:-11.429712px;}
.wsb_c00216{word-spacing:-11.066433px;}
.ws6_c00216{word-spacing:-10.152000px;}
.wsd_c00216{word-spacing:0.000000px;}
._5_c00216{margin-left:-7.116686px;}
._10_c00216{margin-left:-4.855680px;}
._f_c00216{margin-left:-3.011040px;}
._c_c00216{margin-left:-1.279536px;}
._7_c00216{width:1.080000px;}
._e_c00216{width:2.578416px;}
._8_c00216{width:3.744000px;}
._2_c00216{width:5.328000px;}
._3_c00216{width:7.056000px;}
._6_c00216{width:8.208000px;}
._1_c00216{width:9.216000px;}
._9_c00216{width:10.251816px;}
._0_c00216{width:11.592000px;}
._b_c00216{width:13.608000px;}
._a_c00216{width:16.848000px;}
._4_c00216{width:18.000000px;}
._d_c00216{width:73.268640px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(35,31,32);}
.fc0_c00216{color:rgb(0,0,0);}
.fs5_c00216{font-size:36.000000px;}
.fsa_c00216{font-size:38.559000px;}
.fs3_c00216{font-size:41.760000px;}
.fs2_c00216{font-size:43.045223px;}
.fs8_c00216{font-size:48.349800px;}
.fs7_c00216{font-size:54.393600px;}
.fs4_c00216{font-size:59.040000px;}
.fsc_c00216{font-size:60.000000px;}
.fs6_c00216{font-size:60.857039px;}
.fs9_c00216{font-size:66.481200px;}
.fs0_c00216{font-size:72.000000px;}
.fs1_c00216{font-size:74.215901px;}
.fsb_c00216{font-size:84.612600px;}
.y38_c00216{bottom:-130.239300px;}
.y51_c00216{bottom:-70.334236px;}
.y50_c00216{bottom:-50.389877px;}
.y4f_c00216{bottom:-30.445516px;}
.y0_c00216{bottom:0.000000px;}
.y53_c00216{bottom:3.120150px;}
.y52_c00216{bottom:34.744500px;}
.y1_c00216{bottom:54.000000px;}
.y36_c00216{bottom:61.605000px;}
.y35_c00216{bottom:72.766800px;}
.y33_c00216{bottom:90.401040px;}
.y34_c00216{bottom:90.405000px;}
.y32_c00216{bottom:107.685000px;}
.y31_c00216{bottom:107.686440px;}
.y4e_c00216{bottom:120.044621px;}
.y30_c00216{bottom:125.324640px;}
.y2f_c00216{bottom:142.962840px;}
.y4d_c00216{bottom:159.933341px;}
.y2e_c00216{bottom:160.246800px;}
.y2d_c00216{bottom:177.885000px;}
.y4c_c00216{bottom:179.877701px;}
.y2c_c00216{bottom:195.525000px;}
.y4b_c00216{bottom:199.822061px;}
.y2b_c00216{bottom:212.805000px;}
.y2a_c00216{bottom:218.925000px;}
.y4a_c00216{bottom:219.766421px;}
.y29_c00216{bottom:230.445000px;}
.y28_c00216{bottom:236.565000px;}
.y49_c00216{bottom:239.710781px;}
.y27_c00216{bottom:253.845000px;}
.y48_c00216{bottom:259.655141px;}
.y47_c00216{bottom:279.599501px;}
.y26_c00216{bottom:280.485000px;}
.y46_c00216{bottom:299.543861px;}
.y45_c00216{bottom:319.488221px;}
.y23_c00216{bottom:320.085000px;}
.y22_c00216{bottom:334.485000px;}
.y44_c00216{bottom:339.432581px;}
.y25_c00216{bottom:352.125000px;}
.y43_c00216{bottom:359.376941px;}
.y24_c00216{bottom:369.765000px;}
.y42_c00216{bottom:379.321301px;}
.y21_c00216{bottom:387.045000px;}
.y41_c00216{bottom:399.265661px;}
.y20_c00216{bottom:407.925000px;}
.y1f_c00216{bottom:422.325000px;}
.y1e_c00216{bottom:477.765000px;}
.y1d_c00216{bottom:496.125000px;}
.y1c_c00216{bottom:510.525000px;}
.y1b_c00216{bottom:563.085000px;}
.y40_c00216{bottom:571.518480px;}
.y18_c00216{bottom:581.445000px;}
.y17_c00216{bottom:595.845000px;}
.y3f_c00216{bottom:611.407200px;}
.y1a_c00216{bottom:618.165000px;}
.y3e_c00216{bottom:631.351560px;}
.y19_c00216{bottom:635.805000px;}
.y3d_c00216{bottom:651.295920px;}
.y16_c00216{bottom:653.085000px;}
.y12_c00216{bottom:668.205000px;}
.y3c_c00216{bottom:671.240280px;}
.y15_c00216{bottom:677.205000px;}
.y14_c00216{bottom:684.765000px;}
.y3b_c00216{bottom:691.184640px;}
.y3a_c00216{bottom:711.129000px;}
.y37_c00216{bottom:738.357000px;}
.y13_c00216{bottom:740.205000px;}
.y39_c00216{bottom:748.951050px;}
.y11_c00216{bottom:773.685000px;}
.y10_c00216{bottom:794.925000px;}
.yf_c00216{bottom:815.805000px;}
.ye_c00216{bottom:838.845000px;}
.yd_c00216{bottom:859.365000px;}
.yc_c00216{bottom:880.605000px;}
.yb_c00216{bottom:916.605000px;}
.ya_c00216{bottom:937.485000px;}
.y9_c00216{bottom:958.365000px;}
.y8_c00216{bottom:979.605000px;}
.y7_c00216{bottom:1000.485000px;}
.y6_c00216{bottom:1022.445000px;}
.y5_c00216{bottom:1042.965000px;}
.y4_c00216{bottom:1063.845000px;}
.y3_c00216{bottom:1085.085000px;}
.y2_c00216{bottom:1138.365000px;}
.h12_c00216{height:19.255500px;}
.ha_c00216{height:32.616000px;}
.hd_c00216{height:46.270759px;}
.h13_c00216{height:46.320000px;}
.h9_c00216{height:46.981634px;}
.hc_c00216{height:52.054675px;}
.hb_c00216{height:52.500000px;}
.h7_c00216{height:53.490240px;}
.h8_c00216{height:57.096000px;}
.h4_c00216{height:57.294676px;}
.he_c00216{height:63.622508px;}
.h5_c00216{height:64.401590px;}
.h3_c00216{height:65.232000px;}
.h10_c00216{height:65.417501px;}
.h11_c00216{height:65.444218px;}
.h6_c00216{height:68.074560px;}
.hf_c00216{height:83.258678px;}
.h2_c00216{height:1201.365000px;}
.h0_c00216{height:1262.835000px;}
.h1_c00216{height:1263.000000px;}
.w7_c00216{width:25.020000px;}
.w6_c00216{width:130.500000px;}
.w3_c00216{width:189.000000px;}
.w4_c00216{width:203.400000px;}
.w5_c00216{width:233.280000px;}
.w2_c00216{width:863.955000px;}
.w0_c00216{width:892.935000px;}
.w1_c00216{width:893.250000px;}
.x4b_c00216{left:-41.813550px;}
.x4c_c00216{left:-20.615453px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:14.490000px;}
.x2c_c00216{left:27.074850px;}
.x2e_c00216{left:28.500150px;}
.x2f_c00216{left:37.500150px;}
.x2a_c00216{left:39.000150px;}
.x2_c00216{left:113.040150px;}
.x2b_c00216{left:121.676100px;}
.x24_c00216{left:127.530000px;}
.x29_c00216{left:128.999850px;}
.x27_c00216{left:133.500150px;}
.x2d_c00216{left:136.675650px;}
.x5_c00216{left:140.038350px;}
.xd_c00216{left:145.809150px;}
.x3_c00216{left:162.521550px;}
.x4a_c00216{left:165.502350px;}
.x6_c00216{left:167.038350px;}
.x15_c00216{left:184.796250px;}
.x25_c00216{left:189.074850px;}
.x16_c00216{left:195.325500px;}
.x1b_c00216{left:200.382600px;}
.x17_c00216{left:207.610050px;}
.x49_c00216{left:209.911650px;}
.x40_c00216{left:212.347050px;}
.x41_c00216{left:222.511650px;}
.x4_c00216{left:232.972350px;}
.xe_c00216{left:250.362600px;}
.x42_c00216{left:252.525900px;}
.x1c_c00216{left:263.749200px;}
.x18_c00216{left:269.270850px;}
.x32_c00216{left:278.754300px;}
.x33_c00216{left:289.827450px;}
.x1d_c00216{left:291.465450px;}
.x21_c00216{left:310.104900px;}
.x26_c00216{left:317.250000px;}
.x48_c00216{left:320.490000px;}
.xb_c00216{left:339.981150px;}
.x1e_c00216{left:350.468700px;}
.xc_c00216{left:352.976850px;}
.xf_c00216{left:355.495950px;}
.x30_c00216{left:358.929150px;}
.x7_c00216{left:363.018300px;}
.x1f_c00216{left:364.826250px;}
.x10_c00216{left:389.497500px;}
.x34_c00216{left:397.234800px;}
.x38_c00216{left:402.961650px;}
.x8_c00216{left:404.021400px;}
.x20_c00216{left:405.847350px;}
.x31_c00216{left:446.451000px;}
.x43_c00216{left:456.040350px;}
.x11_c00216{left:461.590650px;}
.x39_c00216{left:467.999250px;}
.x9_c00216{left:469.694850px;}
.x3a_c00216{left:477.153750px;}
.x22_c00216{left:482.335650px;}
.x46_c00216{left:490.427100px;}
.x12_c00216{left:501.603900px;}
.x3b_c00216{left:507.113100px;}
.x28_c00216{left:521.370000px;}
.x44_c00216{left:522.726900px;}
.x47_c00216{left:523.786050px;}
.x23_c00216{left:531.759900px;}
.x19_c00216{left:535.576200px;}
.x45_c00216{left:562.439550px;}
.x3c_c00216{left:564.570600px;}
.xa_c00216{left:571.038600px;}
.x13_c00216{left:579.690600px;}
.x1a_c00216{left:614.555700px;}
.x14_c00216{left:617.706300px;}
.x35_c00216{left:638.813550px;}
.x36_c00216{left:649.886700px;}
.x3d_c00216{left:659.553300px;}
.x3e_c00216{left:668.707800px;}
.x37_c00216{left:669.866400px;}
.x3f_c00216{left:698.722050px;}
.x4d_c00216{left:759.915000px;}
@media print{
.v3_c00216{vertical-align:-21.760000pt;}
.v0_c00216{vertical-align:0.000000pt;}
.v4_c00216{vertical-align:19.501227pt;}
.v2_c00216{vertical-align:21.760000pt;}
.v1_c00216{vertical-align:27.707270pt;}
.ls2e_c00216{letter-spacing:-5.023024pt;}
.ls2d_c00216{letter-spacing:-0.768227pt;}
.ls17_c00216{letter-spacing:-0.164528pt;}
.ls18_c00216{letter-spacing:-0.159616pt;}
.ls2f_c00216{letter-spacing:-0.059094pt;}
.ls15_c00216{letter-spacing:0.000000pt;}
.ls13_c00216{letter-spacing:0.000146pt;}
.ls12_c00216{letter-spacing:0.000372pt;}
.ls23_c00216{letter-spacing:0.128000pt;}
.ls3_c00216{letter-spacing:0.209067pt;}
.ls1c_c00216{letter-spacing:0.236160pt;}
.lsf_c00216{letter-spacing:0.262400pt;}
.lsd_c00216{letter-spacing:0.270476pt;}
.ls5_c00216{letter-spacing:0.283093pt;}
.ls1e_c00216{letter-spacing:0.283392pt;}
.ls28_c00216{letter-spacing:0.292114pt;}
.ls22_c00216{letter-spacing:0.377856pt;}
.ls2a_c00216{letter-spacing:0.389485pt;}
.ls1f_c00216{letter-spacing:0.425088pt;}
.lsa_c00216{letter-spacing:0.456576pt;}
.ls10_c00216{letter-spacing:0.472320pt;}
.lsb_c00216{letter-spacing:0.481447pt;}
.ls25_c00216{letter-spacing:0.486856pt;}
.lse_c00216{letter-spacing:0.498560pt;}
.ls24_c00216{letter-spacing:0.535542pt;}
.ls1d_c00216{letter-spacing:0.566784pt;}
.ls2b_c00216{letter-spacing:0.614016pt;}
.ls20_c00216{letter-spacing:0.632913pt;}
.lsc_c00216{letter-spacing:0.730284pt;}
.ls26_c00216{letter-spacing:0.881751pt;}
.ls19_c00216{letter-spacing:2.688000pt;}
.ls27_c00216{letter-spacing:3.133056pt;}
.ls2c_c00216{letter-spacing:3.867776pt;}
.ls11_c00216{letter-spacing:4.313891pt;}
.ls6_c00216{letter-spacing:4.663360pt;}
.ls7_c00216{letter-spacing:4.710827pt;}
.ls21_c00216{letter-spacing:4.801920pt;}
.ls9_c00216{letter-spacing:4.803947pt;}
.ls8_c00216{letter-spacing:4.900587pt;}
.ls4_c00216{letter-spacing:4.901632pt;}
.ls1b_c00216{letter-spacing:4.948864pt;}
.ls1a_c00216{letter-spacing:5.279488pt;}
.ls0_c00216{letter-spacing:5.312000pt;}
.ls14_c00216{letter-spacing:5.475484pt;}
.ls29_c00216{letter-spacing:6.727936pt;}
.ls16_c00216{letter-spacing:16.166400pt;}
.ls2_c00216{letter-spacing:46.528000pt;}
.ls1_c00216{letter-spacing:48.896000pt;}
.ws9_c00216{word-spacing:-59.094400pt;}
.ws3_c00216{word-spacing:-19.868928pt;}
.ws4_c00216{word-spacing:-19.491072pt;}
.ws0_c00216{word-spacing:-18.339574pt;}
.wsa_c00216{word-spacing:-16.960093pt;}
.wsc_c00216{word-spacing:-16.428243pt;}
.ws8_c00216{word-spacing:-15.768735pt;}
.ws7_c00216{word-spacing:-15.519897pt;}
.ws5_c00216{word-spacing:-15.014528pt;}
.ws2_c00216{word-spacing:-11.584000pt;}
.ws1_c00216{word-spacing:-10.159744pt;}
.wsb_c00216{word-spacing:-9.836829pt;}
.ws6_c00216{word-spacing:-9.024000pt;}
.wsd_c00216{word-spacing:0.000000pt;}
._5_c00216{margin-left:-6.325944pt;}
._10_c00216{margin-left:-4.316160pt;}
._f_c00216{margin-left:-2.676480pt;}
._c_c00216{margin-left:-1.137365pt;}
._7_c00216{width:0.960000pt;}
._e_c00216{width:2.291925pt;}
._8_c00216{width:3.328000pt;}
._2_c00216{width:4.736000pt;}
._3_c00216{width:6.272000pt;}
._6_c00216{width:7.296000pt;}
._1_c00216{width:8.192000pt;}
._9_c00216{width:9.112725pt;}
._0_c00216{width:10.304000pt;}
._b_c00216{width:12.096000pt;}
._a_c00216{width:14.976000pt;}
._4_c00216{width:16.000000pt;}
._d_c00216{width:65.127680pt;}
.fs5_c00216{font-size:32.000000pt;}
.fsa_c00216{font-size:34.274667pt;}
.fs3_c00216{font-size:37.120000pt;}
.fs2_c00216{font-size:38.262420pt;}
.fs8_c00216{font-size:42.977600pt;}
.fs7_c00216{font-size:48.349867pt;}
.fs4_c00216{font-size:52.480000pt;}
.fsc_c00216{font-size:53.333333pt;}
.fs6_c00216{font-size:54.095146pt;}
.fs9_c00216{font-size:59.094400pt;}
.fs0_c00216{font-size:64.000000pt;}
.fs1_c00216{font-size:65.969690pt;}
.fsb_c00216{font-size:75.211200pt;}
.y38_c00216{bottom:-115.768267pt;}
.y51_c00216{bottom:-62.519321pt;}
.y50_c00216{bottom:-44.791001pt;}
.y4f_c00216{bottom:-27.062681pt;}
.y0_c00216{bottom:0.000000pt;}
.y53_c00216{bottom:2.773467pt;}
.y52_c00216{bottom:30.884000pt;}
.y1_c00216{bottom:48.000000pt;}
.y36_c00216{bottom:54.760000pt;}
.y35_c00216{bottom:64.681600pt;}
.y33_c00216{bottom:80.356480pt;}
.y34_c00216{bottom:80.360000pt;}
.y32_c00216{bottom:95.720000pt;}
.y31_c00216{bottom:95.721280pt;}
.y4e_c00216{bottom:106.706330pt;}
.y30_c00216{bottom:111.399680pt;}
.y2f_c00216{bottom:127.078080pt;}
.y4d_c00216{bottom:142.162970pt;}
.y2e_c00216{bottom:142.441600pt;}
.y2d_c00216{bottom:158.120000pt;}
.y4c_c00216{bottom:159.891290pt;}
.y2c_c00216{bottom:173.800000pt;}
.y4b_c00216{bottom:177.619610pt;}
.y2b_c00216{bottom:189.160000pt;}
.y2a_c00216{bottom:194.600000pt;}
.y4a_c00216{bottom:195.347930pt;}
.y29_c00216{bottom:204.840000pt;}
.y28_c00216{bottom:210.280000pt;}
.y49_c00216{bottom:213.076250pt;}
.y27_c00216{bottom:225.640000pt;}
.y48_c00216{bottom:230.804570pt;}
.y47_c00216{bottom:248.532890pt;}
.y26_c00216{bottom:249.320000pt;}
.y46_c00216{bottom:266.261210pt;}
.y45_c00216{bottom:283.989530pt;}
.y23_c00216{bottom:284.520000pt;}
.y22_c00216{bottom:297.320000pt;}
.y44_c00216{bottom:301.717850pt;}
.y25_c00216{bottom:313.000000pt;}
.y43_c00216{bottom:319.446170pt;}
.y24_c00216{bottom:328.680000pt;}
.y42_c00216{bottom:337.174490pt;}
.y21_c00216{bottom:344.040000pt;}
.y41_c00216{bottom:354.902810pt;}
.y20_c00216{bottom:362.600000pt;}
.y1f_c00216{bottom:375.400000pt;}
.y1e_c00216{bottom:424.680000pt;}
.y1d_c00216{bottom:441.000000pt;}
.y1c_c00216{bottom:453.800000pt;}
.y1b_c00216{bottom:500.520000pt;}
.y40_c00216{bottom:508.016427pt;}
.y18_c00216{bottom:516.840000pt;}
.y17_c00216{bottom:529.640000pt;}
.y3f_c00216{bottom:543.473067pt;}
.y1a_c00216{bottom:549.480000pt;}
.y3e_c00216{bottom:561.201387pt;}
.y19_c00216{bottom:565.160000pt;}
.y3d_c00216{bottom:578.929707pt;}
.y16_c00216{bottom:580.520000pt;}
.y12_c00216{bottom:593.960000pt;}
.y3c_c00216{bottom:596.658027pt;}
.y15_c00216{bottom:601.960000pt;}
.y14_c00216{bottom:608.680000pt;}
.y3b_c00216{bottom:614.386347pt;}
.y3a_c00216{bottom:632.114667pt;}
.y37_c00216{bottom:656.317333pt;}
.y13_c00216{bottom:657.960000pt;}
.y39_c00216{bottom:665.734267pt;}
.y11_c00216{bottom:687.720000pt;}
.y10_c00216{bottom:706.600000pt;}
.yf_c00216{bottom:725.160000pt;}
.ye_c00216{bottom:745.640000pt;}
.yd_c00216{bottom:763.880000pt;}
.yc_c00216{bottom:782.760000pt;}
.yb_c00216{bottom:814.760000pt;}
.ya_c00216{bottom:833.320000pt;}
.y9_c00216{bottom:851.880000pt;}
.y8_c00216{bottom:870.760000pt;}
.y7_c00216{bottom:889.320000pt;}
.y6_c00216{bottom:908.840000pt;}
.y5_c00216{bottom:927.080000pt;}
.y4_c00216{bottom:945.640000pt;}
.y3_c00216{bottom:964.520000pt;}
.y2_c00216{bottom:1011.880000pt;}
.h12_c00216{height:17.116000pt;}
.ha_c00216{height:28.992000pt;}
.hd_c00216{height:41.129563pt;}
.h13_c00216{height:41.173333pt;}
.h9_c00216{height:41.761453pt;}
.hc_c00216{height:46.270822pt;}
.hb_c00216{height:46.666667pt;}
.h7_c00216{height:47.546880pt;}
.h8_c00216{height:50.752000pt;}
.h4_c00216{height:50.928601pt;}
.he_c00216{height:56.553341pt;}
.h5_c00216{height:57.245858pt;}
.h3_c00216{height:57.984000pt;}
.h10_c00216{height:58.148890pt;}
.h11_c00216{height:58.172638pt;}
.h6_c00216{height:60.510720pt;}
.hf_c00216{height:74.007714pt;}
.h2_c00216{height:1067.880000pt;}
.h0_c00216{height:1122.520000pt;}
.h1_c00216{height:1122.666667pt;}
.w7_c00216{width:22.240000pt;}
.w6_c00216{width:116.000000pt;}
.w3_c00216{width:168.000000pt;}
.w4_c00216{width:180.800000pt;}
.w5_c00216{width:207.360000pt;}
.w2_c00216{width:767.960000pt;}
.w0_c00216{width:793.720000pt;}
.w1_c00216{width:794.000000pt;}
.x4b_c00216{left:-37.167600pt;}
.x4c_c00216{left:-18.324847pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:12.880000pt;}
.x2c_c00216{left:24.066533pt;}
.x2e_c00216{left:25.333467pt;}
.x2f_c00216{left:33.333467pt;}
.x2a_c00216{left:34.666800pt;}
.x2_c00216{left:100.480133pt;}
.x2b_c00216{left:108.156533pt;}
.x24_c00216{left:113.360000pt;}
.x29_c00216{left:114.666533pt;}
.x27_c00216{left:118.666800pt;}
.x2d_c00216{left:121.489467pt;}
.x5_c00216{left:124.478533pt;}
.xd_c00216{left:129.608133pt;}
.x3_c00216{left:144.463600pt;}
.x4a_c00216{left:147.113200pt;}
.x6_c00216{left:148.478533pt;}
.x15_c00216{left:164.263333pt;}
.x25_c00216{left:168.066533pt;}
.x16_c00216{left:173.622667pt;}
.x1b_c00216{left:178.117867pt;}
.x17_c00216{left:184.542267pt;}
.x49_c00216{left:186.588133pt;}
.x40_c00216{left:188.752933pt;}
.x41_c00216{left:197.788133pt;}
.x4_c00216{left:207.086533pt;}
.xe_c00216{left:222.544533pt;}
.x42_c00216{left:224.467467pt;}
.x1c_c00216{left:234.443733pt;}
.x18_c00216{left:239.351867pt;}
.x32_c00216{left:247.781600pt;}
.x33_c00216{left:257.624400pt;}
.x1d_c00216{left:259.080400pt;}
.x21_c00216{left:275.648800pt;}
.x26_c00216{left:282.000000pt;}
.x48_c00216{left:284.880000pt;}
.xb_c00216{left:302.205467pt;}
.x1e_c00216{left:311.527733pt;}
.xc_c00216{left:313.757200pt;}
.xf_c00216{left:315.996400pt;}
.x30_c00216{left:319.048133pt;}
.x7_c00216{left:322.682933pt;}
.x1f_c00216{left:324.290000pt;}
.x10_c00216{left:346.220000pt;}
.x34_c00216{left:353.097600pt;}
.x38_c00216{left:358.188133pt;}
.x8_c00216{left:359.130133pt;}
.x20_c00216{left:360.753200pt;}
.x31_c00216{left:396.845333pt;}
.x43_c00216{left:405.369200pt;}
.x11_c00216{left:410.302800pt;}
.x39_c00216{left:415.999333pt;}
.x9_c00216{left:417.506533pt;}
.x3a_c00216{left:424.136667pt;}
.x22_c00216{left:428.742800pt;}
.x46_c00216{left:435.935200pt;}
.x12_c00216{left:445.870133pt;}
.x3b_c00216{left:450.767200pt;}
.x28_c00216{left:463.440000pt;}
.x44_c00216{left:464.646133pt;}
.x47_c00216{left:465.587600pt;}
.x23_c00216{left:472.675467pt;}
.x19_c00216{left:476.067733pt;}
.x45_c00216{left:499.946267pt;}
.x3c_c00216{left:501.840533pt;}
.xa_c00216{left:507.589867pt;}
.x13_c00216{left:515.280533pt;}
.x1a_c00216{left:546.271733pt;}
.x14_c00216{left:549.072267pt;}
.x35_c00216{left:567.834267pt;}
.x36_c00216{left:577.677067pt;}
.x3d_c00216{left:586.269600pt;}
.x3e_c00216{left:594.406933pt;}
.x37_c00216{left:595.436800pt;}
.x3f_c00216{left:621.086267pt;}
.x4d_c00216{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38925531c3f7555b6f3cfc48.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.134000;font-style:normal;font-weight:normal;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_f4d05327a169bf791fac6a5a.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;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:ff3_c00217;src:url('chunks/assets/font_c4ab292b1e05a07909b9e7c9.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:0.787000;font-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_c00217{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00217{vertical-align:-24.480000px;}
.v0_c00217{vertical-align:0.000000px;}
.v1_c00217{vertical-align:30.240000px;}
.lsf_c00217{letter-spacing:-0.179568px;}
.ls6_c00217{letter-spacing:0.000000px;}
.ls10_c00217{letter-spacing:0.144000px;}
.ls8_c00217{letter-spacing:0.265680px;}
.ls1_c00217{letter-spacing:0.318480px;}
.lsb_c00217{letter-spacing:0.318816px;}
.lsd_c00217{letter-spacing:0.371952px;}
.ls9_c00217{letter-spacing:0.478224px;}
.lsc_c00217{letter-spacing:0.637632px;}
.lsa_c00217{letter-spacing:0.712027px;}
.ls3_c00217{letter-spacing:5.246280px;}
.lse_c00217{letter-spacing:5.335200px;}
.ls2_c00217{letter-spacing:5.353440px;}
.ls7_c00217{letter-spacing:5.567472px;}
.ls4_c00217{letter-spacing:5.975400px;}
.ls0_c00217{letter-spacing:5.976000px;}
.ls5_c00217{letter-spacing:6.159920px;}
.sc__c00217{text-shadow:none;}
.sc1_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00217{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc1_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00217{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00217{word-spacing:-20.947680px;}
.ws0_c00217{word-spacing:-16.891344px;}
.ws2_c00217{word-spacing:-11.429712px;}
.ws3_c00217{word-spacing:-10.152000px;}
.ws4_c00217{word-spacing:0.000000px;}
._0_c00217{margin-left:-1.121760px;}
._1_c00217{width:1.003680px;}
._5_c00217{width:2.302560px;}
._2_c00217{width:4.428000px;}
._3_c00217{width:5.726880px;}
._4_c00217{width:12.811680px;}
.fc1_c00217{color:transparent;}
.fc0_c00217{color:rgb(0,0,0);}
.fs6_c00217{font-size:36.000000px;}
.fs5_c00217{font-size:41.760000px;}
.fs4_c00217{font-size:56.160000px;}
.fs2_c00217{font-size:59.040000px;}
.fs7_c00217{font-size:60.000000px;}
.fs3_c00217{font-size:60.857039px;}
.fs0_c00217{font-size:72.000000px;}
.fs1_c00217{font-size:74.215901px;}
.y0_c00217{bottom:0.000000px;}
.y18_c00217{bottom:3.120150px;}
.y17_c00217{bottom:34.744500px;}
.y1_c00217{bottom:54.000000px;}
.y16_c00217{bottom:61.605000px;}
.y15_c00217{bottom:88.245000px;}
.y14_c00217{bottom:631.845000px;}
.y13_c00217{bottom:667.845000px;}
.y12_c00217{bottom:703.845000px;}
.y11_c00217{bottom:739.845000px;}
.yf_c00217{bottom:761.445000px;}
.ye_c00217{bottom:775.485000px;}
.y10_c00217{bottom:815.445000px;}
.yd_c00217{bottom:833.085000px;}
.yc_c00217{bottom:850.365000px;}
.yb_c00217{bottom:868.725000px;}
.ya_c00217{bottom:882.764850px;}
.y9_c00217{bottom:934.245000px;}
.y8_c00217{bottom:951.885000px;}
.y7_c00217{bottom:969.885000px;}
.y6_c00217{bottom:984.285000px;}
.y5_c00217{bottom:1033.965000px;}
.y4_c00217{bottom:1051.604850px;}
.y3_c00217{bottom:1085.085000px;}
.y2_c00217{bottom:1138.365000px;}
.h9_c00217{height:19.255500px;}
.h8_c00217{height:32.616000px;}
.ha_c00217{height:46.320000px;}
.h6_c00217{height:46.981634px;}
.h5_c00217{height:53.490240px;}
.h4_c00217{height:57.294676px;}
.h3_c00217{height:65.232000px;}
.h7_c00217{height:68.074560px;}
.h2_c00217{height:1201.365000px;}
.h0_c00217{height:1262.835000px;}
.h1_c00217{height:1263.000000px;}
.w6_c00217{width:25.020000px;}
.w3_c00217{width:189.000000px;}
.w4_c00217{width:203.400000px;}
.w5_c00217{width:233.280000px;}
.w2_c00217{width:863.955000px;}
.w0_c00217{width:892.935000px;}
.w1_c00217{width:893.250000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:14.490000px;}
.x6_c00217{left:28.500150px;}
.xb_c00217{left:31.500150px;}
.x2_c00217{left:113.040150px;}
.x9_c00217{left:121.676100px;}
.xc_c00217{left:124.321500px;}
.x5_c00217{left:127.530000px;}
.xa_c00217{left:136.675650px;}
.xd_c00217{left:139.982100px;}
.x3_c00217{left:162.521550px;}
.x4_c00217{left:232.972350px;}
.x7_c00217{left:317.250000px;}
.x8_c00217{left:521.370000px;}
.xe_c00217{left:759.915000px;}
@media print{
.v2_c00217{vertical-align:-21.760000pt;}
.v0_c00217{vertical-align:0.000000pt;}
.v1_c00217{vertical-align:26.880000pt;}
.lsf_c00217{letter-spacing:-0.159616pt;}
.ls6_c00217{letter-spacing:0.000000pt;}
.ls10_c00217{letter-spacing:0.128000pt;}
.ls8_c00217{letter-spacing:0.236160pt;}
.ls1_c00217{letter-spacing:0.283093pt;}
.lsb_c00217{letter-spacing:0.283392pt;}
.lsd_c00217{letter-spacing:0.330624pt;}
.ls9_c00217{letter-spacing:0.425088pt;}
.lsc_c00217{letter-spacing:0.566784pt;}
.lsa_c00217{letter-spacing:0.632913pt;}
.ls3_c00217{letter-spacing:4.663360pt;}
.lse_c00217{letter-spacing:4.742400pt;}
.ls2_c00217{letter-spacing:4.758613pt;}
.ls7_c00217{letter-spacing:4.948864pt;}
.ls4_c00217{letter-spacing:5.311467pt;}
.ls0_c00217{letter-spacing:5.312000pt;}
.ls5_c00217{letter-spacing:5.475484pt;}
.ws1_c00217{word-spacing:-18.620160pt;}
.ws0_c00217{word-spacing:-15.014528pt;}
.ws2_c00217{word-spacing:-10.159744pt;}
.ws3_c00217{word-spacing:-9.024000pt;}
.ws4_c00217{word-spacing:0.000000pt;}
._0_c00217{margin-left:-0.997120pt;}
._1_c00217{width:0.892160pt;}
._5_c00217{width:2.046720pt;}
._2_c00217{width:3.936000pt;}
._3_c00217{width:5.090560pt;}
._4_c00217{width:11.388160pt;}
.fs6_c00217{font-size:32.000000pt;}
.fs5_c00217{font-size:37.120000pt;}
.fs4_c00217{font-size:49.920000pt;}
.fs2_c00217{font-size:52.480000pt;}
.fs7_c00217{font-size:53.333333pt;}
.fs3_c00217{font-size:54.095146pt;}
.fs0_c00217{font-size:64.000000pt;}
.fs1_c00217{font-size:65.969690pt;}
.y0_c00217{bottom:0.000000pt;}
.y18_c00217{bottom:2.773467pt;}
.y17_c00217{bottom:30.884000pt;}
.y1_c00217{bottom:48.000000pt;}
.y16_c00217{bottom:54.760000pt;}
.y15_c00217{bottom:78.440000pt;}
.y14_c00217{bottom:561.640000pt;}
.y13_c00217{bottom:593.640000pt;}
.y12_c00217{bottom:625.640000pt;}
.y11_c00217{bottom:657.640000pt;}
.yf_c00217{bottom:676.840000pt;}
.ye_c00217{bottom:689.320000pt;}
.y10_c00217{bottom:724.840000pt;}
.yd_c00217{bottom:740.520000pt;}
.yc_c00217{bottom:755.880000pt;}
.yb_c00217{bottom:772.200000pt;}
.ya_c00217{bottom:784.679867pt;}
.y9_c00217{bottom:830.440000pt;}
.y8_c00217{bottom:846.120000pt;}
.y7_c00217{bottom:862.120000pt;}
.y6_c00217{bottom:874.920000pt;}
.y5_c00217{bottom:919.080000pt;}
.y4_c00217{bottom:934.759867pt;}
.y3_c00217{bottom:964.520000pt;}
.y2_c00217{bottom:1011.880000pt;}
.h9_c00217{height:17.116000pt;}
.h8_c00217{height:28.992000pt;}
.ha_c00217{height:41.173333pt;}
.h6_c00217{height:41.761453pt;}
.h5_c00217{height:47.546880pt;}
.h4_c00217{height:50.928601pt;}
.h3_c00217{height:57.984000pt;}
.h7_c00217{height:60.510720pt;}
.h2_c00217{height:1067.880000pt;}
.h0_c00217{height:1122.520000pt;}
.h1_c00217{height:1122.666667pt;}
.w6_c00217{width:22.240000pt;}
.w3_c00217{width:168.000000pt;}
.w4_c00217{width:180.800000pt;}
.w5_c00217{width:207.360000pt;}
.w2_c00217{width:767.960000pt;}
.w0_c00217{width:793.720000pt;}
.w1_c00217{width:794.000000pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:12.880000pt;}
.x6_c00217{left:25.333467pt;}
.xb_c00217{left:28.000133pt;}
.x2_c00217{left:100.480133pt;}
.x9_c00217{left:108.156533pt;}
.xc_c00217{left:110.508000pt;}
.x5_c00217{left:113.360000pt;}
.xa_c00217{left:121.489467pt;}
.xd_c00217{left:124.428533pt;}
.x3_c00217{left:144.463600pt;}
.x4_c00217{left:207.086533pt;}
.x7_c00217{left:282.000000pt;}
.x8_c00217{left:463.440000pt;}
.xe_c00217{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ff26ea9972e9c33cbe26fc13.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;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_c00218;src:url('chunks/assets/font_18d50fc79106dcbf99b8ae18.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_a37bac1803c8b84426df275d.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:0.787000;font-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_c00218{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00218{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00218{letter-spacing:0.000000px;}
.ls5_c00218{letter-spacing:0.202464px;}
.ls7_c00218{letter-spacing:0.239760px;}
.ls1_c00218{letter-spacing:0.318480px;}
.ls2_c00218{letter-spacing:0.399600px;}
.ls6_c00218{letter-spacing:0.450342px;}
.ls0_c00218{letter-spacing:5.976000px;}
.ls3_c00218{letter-spacing:6.159920px;}
.sc__c00218{text-shadow:none;}
.sc1_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00218{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc1_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00218{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00218{word-spacing:-15.211440px;}
.ws0_c00218{word-spacing:-0.505262px;}
.ws2_c00218{word-spacing:0.000000px;}
._1_c00218{margin-left:-1.118880px;}
._0_c00218{width:1.014120px;}
.fc1_c00218{color:transparent;}
.fc0_c00218{color:rgb(0,0,0);}
.fs2_c00218{font-size:53.280000px;}
.fs3_c00218{font-size:54.919767px;}
.fs4_c00218{font-size:60.000000px;}
.fs0_c00218{font-size:72.000000px;}
.fs1_c00218{font-size:74.215901px;}
.y0_c00218{bottom:0.000000px;}
.yf_c00218{bottom:3.120150px;}
.yd_c00218{bottom:14.040000px;}
.yb_c00218{bottom:25.200000px;}
.ye_c00218{bottom:34.744500px;}
.y1_c00218{bottom:54.000000px;}
.ya_c00218{bottom:292.365000px;}
.yc_c00218{bottom:697.365000px;}
.y9_c00218{bottom:869.085000px;}
.y8_c00218{bottom:905.085000px;}
.y7_c00218{bottom:941.085000px;}
.y6_c00218{bottom:977.085000px;}
.y5_c00218{bottom:1013.085000px;}
.y4_c00218{bottom:1049.085000px;}
.y3_c00218{bottom:1085.085000px;}
.y2_c00218{bottom:1138.365000px;}
.h9_c00218{height:19.255500px;}
.h8_c00218{height:27.000000px;}
.h5_c00218{height:37.800000px;}
.h6_c00218{height:41.132160px;}
.h7_c00218{height:42.398060px;}
.ha_c00218{height:46.320000px;}
.h3_c00218{height:55.584000px;}
.h4_c00218{height:57.294676px;}
.h2_c00218{height:1201.365000px;}
.h0_c00218{height:1262.835000px;}
.h1_c00218{height:1263.000000px;}
.w4_c00218{width:25.020000px;}
.w3_c00218{width:732.600000px;}
.w2_c00218{width:863.955000px;}
.w0_c00218{width:892.935000px;}
.w1_c00218{width:893.250000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:14.490000px;}
.x9_c00218{left:66.158400px;}
.x6_c00218{left:84.700050px;}
.x5_c00218{left:100.530000px;}
.x2_c00218{left:113.040150px;}
.x3_c00218{left:162.521550px;}
.xa_c00218{left:176.465100px;}
.x7_c00218{left:195.006750px;}
.xb_c00218{left:221.459550px;}
.x4_c00218{left:232.972350px;}
.x8_c00218{left:240.001200px;}
.xc_c00218{left:759.915000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls4_c00218{letter-spacing:0.000000pt;}
.ls5_c00218{letter-spacing:0.179968pt;}
.ls7_c00218{letter-spacing:0.213120pt;}
.ls1_c00218{letter-spacing:0.283093pt;}
.ls2_c00218{letter-spacing:0.355200pt;}
.ls6_c00218{letter-spacing:0.400304pt;}
.ls0_c00218{letter-spacing:5.312000pt;}
.ls3_c00218{letter-spacing:5.475484pt;}
.ws1_c00218{word-spacing:-13.521280pt;}
.ws0_c00218{word-spacing:-0.449122pt;}
.ws2_c00218{word-spacing:0.000000pt;}
._1_c00218{margin-left:-0.994560pt;}
._0_c00218{width:0.901440pt;}
.fs2_c00218{font-size:47.360000pt;}
.fs3_c00218{font-size:48.817571pt;}
.fs4_c00218{font-size:53.333333pt;}
.fs0_c00218{font-size:64.000000pt;}
.fs1_c00218{font-size:65.969690pt;}
.y0_c00218{bottom:0.000000pt;}
.yf_c00218{bottom:2.773467pt;}
.yd_c00218{bottom:12.480000pt;}
.yb_c00218{bottom:22.400000pt;}
.ye_c00218{bottom:30.884000pt;}
.y1_c00218{bottom:48.000000pt;}
.ya_c00218{bottom:259.880000pt;}
.yc_c00218{bottom:619.880000pt;}
.y9_c00218{bottom:772.520000pt;}
.y8_c00218{bottom:804.520000pt;}
.y7_c00218{bottom:836.520000pt;}
.y6_c00218{bottom:868.520000pt;}
.y5_c00218{bottom:900.520000pt;}
.y4_c00218{bottom:932.520000pt;}
.y3_c00218{bottom:964.520000pt;}
.y2_c00218{bottom:1011.880000pt;}
.h9_c00218{height:17.116000pt;}
.h8_c00218{height:24.000000pt;}
.h5_c00218{height:33.600000pt;}
.h6_c00218{height:36.561920pt;}
.h7_c00218{height:37.687165pt;}
.ha_c00218{height:41.173333pt;}
.h3_c00218{height:49.408000pt;}
.h4_c00218{height:50.928601pt;}
.h2_c00218{height:1067.880000pt;}
.h0_c00218{height:1122.520000pt;}
.h1_c00218{height:1122.666667pt;}
.w4_c00218{width:22.240000pt;}
.w3_c00218{width:651.200000pt;}
.w2_c00218{width:767.960000pt;}
.w0_c00218{width:793.720000pt;}
.w1_c00218{width:794.000000pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:12.880000pt;}
.x9_c00218{left:58.807467pt;}
.x6_c00218{left:75.288933pt;}
.x5_c00218{left:89.360000pt;}
.x2_c00218{left:100.480133pt;}
.x3_c00218{left:144.463600pt;}
.xa_c00218{left:156.857867pt;}
.x7_c00218{left:173.339333pt;}
.xb_c00218{left:196.852933pt;}
.x4_c00218{left:207.086533pt;}
.x8_c00218{left:213.334400pt;}
.xc_c00218{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c86b02b47bb277c317552dc8.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.134000;font-style:normal;font-weight:normal;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_2e80dfb5c41f8d667f498d9a.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;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:ff3_c00219;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00219;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00219;src:url('chunks/assets/font_89b38d23a6ad85bc85b9aa37.woff2')format("woff");}.ff6_c00219{font-family:ff6_c00219;line-height:0.787000;font-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_c00219{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00219{vertical-align:-24.480000px;}
.v0_c00219{vertical-align:0.000000px;}
.v1_c00219{vertical-align:30.240000px;}
.lsc_c00219{letter-spacing:0.000000px;}
.ls7_c00219{letter-spacing:0.010440px;}
.ls6_c00219{letter-spacing:0.124440px;}
.ls3_c00219{letter-spacing:0.201840px;}
.ls16_c00219{letter-spacing:0.265680px;}
.ls17_c00219{letter-spacing:0.438171px;}
.ls9_c00219{letter-spacing:0.460440px;}
.ls15_c00219{letter-spacing:0.531360px;}
.ls4_c00219{letter-spacing:0.616440px;}
.ls12_c00219{letter-spacing:0.690768px;}
.ls11_c00219{letter-spacing:0.712027px;}
.ls13_c00219{letter-spacing:0.743904px;}
.lsb_c00219{letter-spacing:0.821570px;}
.ls14_c00219{letter-spacing:1.977840px;}
.lse_c00219{letter-spacing:5.009472px;}
.ls18_c00219{letter-spacing:5.295888px;}
.lsf_c00219{letter-spacing:5.335200px;}
.lsd_c00219{letter-spacing:5.406777px;}
.ls10_c00219{letter-spacing:5.430672px;}
.ls1_c00219{letter-spacing:5.975400px;}
.ls2_c00219{letter-spacing:5.976000px;}
.ls8_c00219{letter-spacing:5.978400px;}
.ls5_c00219{letter-spacing:5.990400px;}
.ls0_c00219{letter-spacing:6.159920px;}
.lsa_c00219{letter-spacing:54.864000px;}
.sc__c00219{text-shadow:none;}
.sc1_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00219{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc1_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00219{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00219{word-spacing:-25.992000px;}
.ws7_c00219{word-spacing:-21.709008px;}
.ws0_c00219{word-spacing:-21.499753px;}
.ws4_c00219{word-spacing:-21.043152px;}
.ws2_c00219{word-spacing:-20.947680px;}
.ws3_c00219{word-spacing:-20.016000px;}
.ws6_c00219{word-spacing:-17.739827px;}
.ws5_c00219{word-spacing:-10.008000px;}
.ws8_c00219{word-spacing:0.000000px;}
._8_c00219{margin-left:-2.247840px;}
._6_c00219{margin-left:-1.179360px;}
._0_c00219{width:1.235520px;}
._7_c00219{width:4.680000px;}
._3_c00219{width:6.048000px;}
._2_c00219{width:7.451400px;}
._1_c00219{width:25.128000px;}
._4_c00219{width:26.712000px;}
._5_c00219{width:37.440000px;}
.fc0_c00219{color:rgb(0,0,0);}
.fs6_c00219{font-size:36.000000px;}
.fs4_c00219{font-size:41.760000px;}
.fs3_c00219{font-size:56.160000px;}
.fs2_c00219{font-size:57.888403px;}
.fs5_c00219{font-size:59.040000px;}
.fs8_c00219{font-size:60.000000px;}
.fs7_c00219{font-size:60.857039px;}
.fs0_c00219{font-size:72.000000px;}
.fs1_c00219{font-size:74.215901px;}
.y0_c00219{bottom:0.000000px;}
.y2d_c00219{bottom:3.120150px;}
.y2c_c00219{bottom:34.744500px;}
.y1_c00219{bottom:54.000000px;}
.y2b_c00219{bottom:61.605000px;}
.y2a_c00219{bottom:72.765000px;}
.y29_c00219{bottom:78.885000px;}
.y27_c00219{bottom:90.402840px;}
.y28_c00219{bottom:90.405000px;}
.y26_c00219{bottom:107.686800px;}
.y25_c00219{bottom:131.445000px;}
.y24_c00219{bottom:142.965000px;}
.y23_c00219{bottom:149.085000px;}
.y22_c00219{bottom:160.245000px;}
.y21_c00219{bottom:166.365000px;}
.y20_c00219{bottom:193.005000px;}
.y1f_c00219{bottom:225.765000px;}
.y1e_c00219{bottom:243.405000px;}
.y1d_c00219{bottom:264.285000px;}
.y1c_c00219{bottom:300.285000px;}
.y1b_c00219{bottom:336.285000px;}
.y1a_c00219{bottom:357.525000px;}
.y19_c00219{bottom:378.405000px;}
.y18_c00219{bottom:414.405000px;}
.y17_c00219{bottom:450.405000px;}
.y16_c00219{bottom:486.405000px;}
.y15_c00219{bottom:522.405000px;}
.y14_c00219{bottom:543.285000px;}
.y13_c00219{bottom:579.285000px;}
.y12_c00219{bottom:615.285000px;}
.y11_c00219{bottom:651.285000px;}
.y10_c00219{bottom:687.285000px;}
.yf_c00219{bottom:723.285000px;}
.ye_c00219{bottom:759.285000px;}
.yd_c00219{bottom:780.525000px;}
.yc_c00219{bottom:801.405000px;}
.yb_c00219{bottom:822.285000px;}
.ya_c00219{bottom:858.645000px;}
.y9_c00219{bottom:894.645000px;}
.y8_c00219{bottom:932.805000px;}
.y7_c00219{bottom:970.965000px;}
.y6_c00219{bottom:1006.965000px;}
.y5_c00219{bottom:1027.845000px;}
.y4_c00219{bottom:1049.085000px;}
.y3_c00219{bottom:1085.085000px;}
.y2_c00219{bottom:1138.365000px;}
.ha_c00219{height:19.255500px;}
.h7_c00219{height:32.616000px;}
.h6_c00219{height:39.350391px;}
.hb_c00219{height:46.320000px;}
.h8_c00219{height:46.981634px;}
.h9_c00219{height:53.490240px;}
.h4_c00219{height:57.294676px;}
.h3_c00219{height:65.232000px;}
.h5_c00219{height:68.074560px;}
.h2_c00219{height:1201.365000px;}
.h0_c00219{height:1262.835000px;}
.h1_c00219{height:1263.000000px;}
.w3_c00219{width:25.020000px;}
.w2_c00219{width:863.955000px;}
.w0_c00219{width:892.935000px;}
.w1_c00219{width:893.250000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:14.490000px;}
.x2_c00219{left:113.040150px;}
.x17_c00219{left:122.213700px;}
.x15_c00219{left:140.037600px;}
.x18_c00219{left:146.377800px;}
.x13_c00219{left:153.035550px;}
.x12_c00219{left:155.067600px;}
.xa_c00219{left:158.021100px;}
.x3_c00219{left:162.521550px;}
.x5_c00219{left:163.869450px;}
.x16_c00219{left:167.040150px;}
.xe_c00219{left:172.024950px;}
.xf_c00219{left:211.030500px;}
.x4_c00219{left:214.000500px;}
.x19_c00219{left:225.536550px;}
.xb_c00219{left:237.004050px;}
.x1b_c00219{left:245.553900px;}
.x1a_c00219{left:253.870950px;}
.xc_c00219{left:296.997150px;}
.x10_c00219{left:319.047000px;}
.x11_c00219{left:343.040400px;}
.x1c_c00219{left:359.730450px;}
.x14_c00219{left:369.057150px;}
.x1d_c00219{left:408.073950px;}
.xd_c00219{left:410.223300px;}
.x6_c00219{left:490.963650px;}
.x7_c00219{left:547.950750px;}
.x8_c00219{left:570.701250px;}
.x9_c00219{left:639.730200px;}
.x1e_c00219{left:759.915000px;}
@media print{
.v2_c00219{vertical-align:-21.760000pt;}
.v0_c00219{vertical-align:0.000000pt;}
.v1_c00219{vertical-align:26.880000pt;}
.lsc_c00219{letter-spacing:0.000000pt;}
.ls7_c00219{letter-spacing:0.009280pt;}
.ls6_c00219{letter-spacing:0.110613pt;}
.ls3_c00219{letter-spacing:0.179413pt;}
.ls16_c00219{letter-spacing:0.236160pt;}
.ls17_c00219{letter-spacing:0.389485pt;}
.ls9_c00219{letter-spacing:0.409280pt;}
.ls15_c00219{letter-spacing:0.472320pt;}
.ls4_c00219{letter-spacing:0.547947pt;}
.ls12_c00219{letter-spacing:0.614016pt;}
.ls11_c00219{letter-spacing:0.632913pt;}
.ls13_c00219{letter-spacing:0.661248pt;}
.lsb_c00219{letter-spacing:0.730284pt;}
.ls14_c00219{letter-spacing:1.758080pt;}
.lse_c00219{letter-spacing:4.452864pt;}
.ls18_c00219{letter-spacing:4.707456pt;}
.lsf_c00219{letter-spacing:4.742400pt;}
.lsd_c00219{letter-spacing:4.806024pt;}
.ls10_c00219{letter-spacing:4.827264pt;}
.ls1_c00219{letter-spacing:5.311467pt;}
.ls2_c00219{letter-spacing:5.312000pt;}
.ls8_c00219{letter-spacing:5.314133pt;}
.ls5_c00219{letter-spacing:5.324800pt;}
.ls0_c00219{letter-spacing:5.475484pt;}
.lsa_c00219{letter-spacing:48.768000pt;}
.ws1_c00219{word-spacing:-23.104000pt;}
.ws7_c00219{word-spacing:-19.296896pt;}
.ws0_c00219{word-spacing:-19.110891pt;}
.ws4_c00219{word-spacing:-18.705024pt;}
.ws2_c00219{word-spacing:-18.620160pt;}
.ws3_c00219{word-spacing:-17.792000pt;}
.ws6_c00219{word-spacing:-15.768735pt;}
.ws5_c00219{word-spacing:-8.896000pt;}
.ws8_c00219{word-spacing:0.000000pt;}
._8_c00219{margin-left:-1.998080pt;}
._6_c00219{margin-left:-1.048320pt;}
._0_c00219{width:1.098240pt;}
._7_c00219{width:4.160000pt;}
._3_c00219{width:5.376000pt;}
._2_c00219{width:6.623467pt;}
._1_c00219{width:22.336000pt;}
._4_c00219{width:23.744000pt;}
._5_c00219{width:33.280000pt;}
.fs6_c00219{font-size:32.000000pt;}
.fs4_c00219{font-size:37.120000pt;}
.fs3_c00219{font-size:49.920000pt;}
.fs2_c00219{font-size:51.456358pt;}
.fs5_c00219{font-size:52.480000pt;}
.fs8_c00219{font-size:53.333333pt;}
.fs7_c00219{font-size:54.095146pt;}
.fs0_c00219{font-size:64.000000pt;}
.fs1_c00219{font-size:65.969690pt;}
.y0_c00219{bottom:0.000000pt;}
.y2d_c00219{bottom:2.773467pt;}
.y2c_c00219{bottom:30.884000pt;}
.y1_c00219{bottom:48.000000pt;}
.y2b_c00219{bottom:54.760000pt;}
.y2a_c00219{bottom:64.680000pt;}
.y29_c00219{bottom:70.120000pt;}
.y27_c00219{bottom:80.358080pt;}
.y28_c00219{bottom:80.360000pt;}
.y26_c00219{bottom:95.721600pt;}
.y25_c00219{bottom:116.840000pt;}
.y24_c00219{bottom:127.080000pt;}
.y23_c00219{bottom:132.520000pt;}
.y22_c00219{bottom:142.440000pt;}
.y21_c00219{bottom:147.880000pt;}
.y20_c00219{bottom:171.560000pt;}
.y1f_c00219{bottom:200.680000pt;}
.y1e_c00219{bottom:216.360000pt;}
.y1d_c00219{bottom:234.920000pt;}
.y1c_c00219{bottom:266.920000pt;}
.y1b_c00219{bottom:298.920000pt;}
.y1a_c00219{bottom:317.800000pt;}
.y19_c00219{bottom:336.360000pt;}
.y18_c00219{bottom:368.360000pt;}
.y17_c00219{bottom:400.360000pt;}
.y16_c00219{bottom:432.360000pt;}
.y15_c00219{bottom:464.360000pt;}
.y14_c00219{bottom:482.920000pt;}
.y13_c00219{bottom:514.920000pt;}
.y12_c00219{bottom:546.920000pt;}
.y11_c00219{bottom:578.920000pt;}
.y10_c00219{bottom:610.920000pt;}
.yf_c00219{bottom:642.920000pt;}
.ye_c00219{bottom:674.920000pt;}
.yd_c00219{bottom:693.800000pt;}
.yc_c00219{bottom:712.360000pt;}
.yb_c00219{bottom:730.920000pt;}
.ya_c00219{bottom:763.240000pt;}
.y9_c00219{bottom:795.240000pt;}
.y8_c00219{bottom:829.160000pt;}
.y7_c00219{bottom:863.080000pt;}
.y6_c00219{bottom:895.080000pt;}
.y5_c00219{bottom:913.640000pt;}
.y4_c00219{bottom:932.520000pt;}
.y3_c00219{bottom:964.520000pt;}
.y2_c00219{bottom:1011.880000pt;}
.ha_c00219{height:17.116000pt;}
.h7_c00219{height:28.992000pt;}
.h6_c00219{height:34.978125pt;}
.hb_c00219{height:41.173333pt;}
.h8_c00219{height:41.761453pt;}
.h9_c00219{height:47.546880pt;}
.h4_c00219{height:50.928601pt;}
.h3_c00219{height:57.984000pt;}
.h5_c00219{height:60.510720pt;}
.h2_c00219{height:1067.880000pt;}
.h0_c00219{height:1122.520000pt;}
.h1_c00219{height:1122.666667pt;}
.w3_c00219{width:22.240000pt;}
.w2_c00219{width:767.960000pt;}
.w0_c00219{width:793.720000pt;}
.w1_c00219{width:794.000000pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:12.880000pt;}
.x2_c00219{left:100.480133pt;}
.x17_c00219{left:108.634400pt;}
.x15_c00219{left:124.477867pt;}
.x18_c00219{left:130.113600pt;}
.x13_c00219{left:136.031600pt;}
.x12_c00219{left:137.837867pt;}
.xa_c00219{left:140.463200pt;}
.x3_c00219{left:144.463600pt;}
.x5_c00219{left:145.661733pt;}
.x16_c00219{left:148.480133pt;}
.xe_c00219{left:152.911067pt;}
.xf_c00219{left:187.582667pt;}
.x4_c00219{left:190.222667pt;}
.x19_c00219{left:200.476933pt;}
.xb_c00219{left:210.670267pt;}
.x1b_c00219{left:218.270133pt;}
.x1a_c00219{left:225.663067pt;}
.xc_c00219{left:263.997467pt;}
.x10_c00219{left:283.597333pt;}
.x11_c00219{left:304.924800pt;}
.x1c_c00219{left:319.760400pt;}
.x14_c00219{left:328.050800pt;}
.x1d_c00219{left:362.732400pt;}
.xd_c00219{left:364.642933pt;}
.x6_c00219{left:436.412133pt;}
.x7_c00219{left:487.067333pt;}
.x8_c00219{left:507.290000pt;}
.x9_c00219{left:568.649067pt;}
.x1e_c00219{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e9d8b9d9eb9177a7014a95c5.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.134000;font-style:normal;font-weight:normal;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_def37b50a881a54b6aee0e9f.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;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:ff3_c00220;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_6b0e9ef51ebc610c5e94191f.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:0.787000;font-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_c00220{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00220{vertical-align:-24.480000px;}
.v0_c00220{vertical-align:0.000000px;}
.v1_c00220{vertical-align:30.240000px;}
.lse_c00220{letter-spacing:0.000000px;}
.lsc_c00220{letter-spacing:0.099840px;}
.ls12_c00220{letter-spacing:0.265680px;}
.ls7_c00220{letter-spacing:0.295200px;}
.ls2_c00220{letter-spacing:0.318480px;}
.ls13_c00220{letter-spacing:0.318816px;}
.ls1f_c00220{letter-spacing:0.425088px;}
.ls18_c00220{letter-spacing:0.478224px;}
.ls9_c00220{letter-spacing:0.513648px;}
.ls6_c00220{letter-spacing:0.531360px;}
.ls1b_c00220{letter-spacing:0.690768px;}
.ls15_c00220{letter-spacing:0.696672px;}
.ls5_c00220{letter-spacing:0.712027px;}
.ls17_c00220{letter-spacing:0.766799px;}
.ls1c_c00220{letter-spacing:0.797040px;}
.ls8_c00220{letter-spacing:0.821570px;}
.ls14_c00220{letter-spacing:0.962352px;}
.lsa_c00220{letter-spacing:3.070080px;}
.ls1a_c00220{letter-spacing:4.811760px;}
.ls10_c00220{letter-spacing:5.248656px;}
.ls1_c00220{letter-spacing:5.299080px;}
.ls1d_c00220{letter-spacing:5.430672px;}
.ls11_c00220{letter-spacing:5.461200px;}
.lsf_c00220{letter-spacing:5.514336px;}
.lsb_c00220{letter-spacing:5.975400px;}
.ls0_c00220{letter-spacing:5.976000px;}
.lsd_c00220{letter-spacing:6.159920px;}
.ls16_c00220{letter-spacing:7.810992px;}
.ls19_c00220{letter-spacing:8.194752px;}
.ls3_c00220{letter-spacing:12.899880px;}
.ls1e_c00220{letter-spacing:13.514256px;}
.ls4_c00220{letter-spacing:78.185280px;}
.sc__c00220{text-shadow:none;}
.sc1_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00220{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc1_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00220{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00220{word-spacing:-21.927456px;}
.ws0_c00220{word-spacing:-21.874320px;}
.ws3_c00220{word-spacing:-21.661776px;}
.ws8_c00220{word-spacing:-21.043152px;}
.ws7_c00220{word-spacing:-17.739827px;}
.ws5_c00220{word-spacing:-17.685056px;}
.ws4_c00220{word-spacing:-17.630284px;}
.ws6_c00220{word-spacing:-16.944480px;}
.wsa_c00220{word-spacing:-16.838208px;}
.ws2_c00220{word-spacing:-16.731936px;}
.ws9_c00220{word-spacing:-10.008000px;}
.wsb_c00220{word-spacing:0.000000px;}
._14_c00220{margin-left:-13.874400px;}
._13_c00220{margin-left:-12.811680px;}
._b_c00220{margin-left:-8.501760px;}
._a_c00220{margin-left:-7.261920px;}
._c_c00220{margin-left:-4.309920px;}
._5_c00220{margin-left:-1.156284px;}
._2_c00220{width:1.008000px;}
._0_c00220{width:2.088000px;}
._d_c00220{width:3.926160px;}
._7_c00220{width:5.210808px;}
._9_c00220{width:7.001244px;}
._3_c00220{width:8.424000px;}
._4_c00220{width:9.864000px;}
._6_c00220{width:12.521160px;}
._10_c00220{width:15.480000px;}
._11_c00220{width:16.632000px;}
._1_c00220{width:18.072000px;}
._e_c00220{width:21.168000px;}
._12_c00220{width:26.064000px;}
._f_c00220{width:27.648000px;}
._8_c00220{width:78.011388px;}
.fc0_c00220{color:rgb(0,0,0);}
.fs6_c00220{font-size:36.000000px;}
.fs5_c00220{font-size:41.760000px;}
.fs4_c00220{font-size:56.160000px;}
.fs2_c00220{font-size:59.040000px;}
.fs7_c00220{font-size:60.000000px;}
.fs3_c00220{font-size:60.857039px;}
.fs0_c00220{font-size:72.000000px;}
.fs1_c00220{font-size:74.215901px;}
.y0_c00220{bottom:0.000000px;}
.y30_c00220{bottom:3.120150px;}
.y2f_c00220{bottom:34.744500px;}
.y1_c00220{bottom:54.000000px;}
.y2e_c00220{bottom:55.482840px;}
.y2d_c00220{bottom:72.766800px;}
.y2c_c00220{bottom:96.525000px;}
.y2b_c00220{bottom:123.165000px;}
.y2a_c00220{bottom:157.005000px;}
.y29_c00220{bottom:193.005000px;}
.y28_c00220{bottom:214.245000px;}
.y27_c00220{bottom:235.125000px;}
.y26_c00220{bottom:256.005000px;}
.y25_c00220{bottom:277.245000px;}
.y24_c00220{bottom:313.245000px;}
.y23_c00220{bottom:336.285000px;}
.y22_c00220{bottom:356.805000px;}
.y21_c00220{bottom:377.685000px;}
.y20_c00220{bottom:413.685000px;}
.y1f_c00220{bottom:434.925000px;}
.y1e_c00220{bottom:455.805000px;}
.y1d_c00220{bottom:477.045000px;}
.y1c_c00220{bottom:497.925000px;}
.y1b_c00220{bottom:518.805000px;}
.y1a_c00220{bottom:554.805000px;}
.y19_c00220{bottom:590.805000px;}
.y18_c00220{bottom:626.802840px;}
.y17_c00220{bottom:644.086800px;}
.y16_c00220{bottom:661.725000px;}
.y15_c00220{bottom:694.125000px;}
.y14_c00220{bottom:694.126800px;}
.y13_c00220{bottom:711.765000px;}
.y12_c00220{bottom:729.045000px;}
.y11_c00220{bottom:761.805000px;}
.y10_c00220{bottom:783.405000px;}
.yf_c00220{bottom:801.045000px;}
.ye_c00220{bottom:818.325000px;}
.yd_c00220{bottom:835.965000px;}
.yc_c00220{bottom:853.605000px;}
.yb_c00220{bottom:887.085000px;}
.ya_c00220{bottom:923.085000px;}
.y9_c00220{bottom:943.965000px;}
.y8_c00220{bottom:964.845000px;}
.y7_c00220{bottom:986.085000px;}
.y6_c00220{bottom:1006.965000px;}
.y5_c00220{bottom:1042.965000px;}
.y4_c00220{bottom:1063.845000px;}
.y3_c00220{bottom:1085.085000px;}
.y2_c00220{bottom:1138.365000px;}
.h9_c00220{height:19.255500px;}
.h8_c00220{height:32.616000px;}
.ha_c00220{height:46.320000px;}
.h6_c00220{height:46.981634px;}
.h5_c00220{height:53.490240px;}
.h4_c00220{height:57.294676px;}
.h3_c00220{height:65.232000px;}
.h7_c00220{height:68.074560px;}
.h2_c00220{height:1201.365000px;}
.h0_c00220{height:1262.835000px;}
.h1_c00220{height:1263.000000px;}
.w7_c00220{width:25.020000px;}
.w3_c00220{width:39.600000px;}
.w4_c00220{width:84.240000px;}
.w5_c00220{width:212.040000px;}
.w6_c00220{width:309.240000px;}
.w2_c00220{width:863.955000px;}
.w0_c00220{width:892.935000px;}
.w1_c00220{width:893.250000px;}
.x0_c00220{left:0.000000px;}
.x6_c00220{left:7.920150px;}
.x1_c00220{left:14.490000px;}
.xe_c00220{left:40.918500px;}
.xa_c00220{left:42.884250px;}
.x9_c00220{left:48.763350px;}
.xf_c00220{left:84.267600px;}
.x2_c00220{left:113.040150px;}
.x5_c00220{left:119.610000px;}
.x19_c00220{left:133.034550px;}
.x14_c00220{left:148.874700px;}
.x7_c00220{left:159.930000px;}
.x3_c00220{left:162.521550px;}
.x15_c00220{left:165.147600px;}
.x10_c00220{left:186.412650px;}
.x16_c00220{left:208.496700px;}
.xc_c00220{left:211.016550px;}
.x4_c00220{left:214.000500px;}
.x11_c00220{left:221.376900px;}
.x8_c00220{left:244.890000px;}
.xd_c00220{left:246.850950px;}
.x17_c00220{left:310.641750px;}
.x1e_c00220{left:338.420250px;}
.x18_c00220{left:345.606150px;}
.x1f_c00220{left:351.415950px;}
.x1a_c00220{left:405.607800px;}
.x1c_c00220{left:410.458050px;}
.xb_c00220{left:457.650000px;}
.x12_c00220{left:475.915650px;}
.x1b_c00220{left:492.863550px;}
.x13_c00220{left:511.735050px;}
.x1d_c00220{left:528.989550px;}
.x20_c00220{left:583.137750px;}
.x21_c00220{left:621.153450px;}
.x22_c00220{left:759.915000px;}
@media print{
.v2_c00220{vertical-align:-21.760000pt;}
.v0_c00220{vertical-align:0.000000pt;}
.v1_c00220{vertical-align:26.880000pt;}
.lse_c00220{letter-spacing:0.000000pt;}
.lsc_c00220{letter-spacing:0.088747pt;}
.ls12_c00220{letter-spacing:0.236160pt;}
.ls7_c00220{letter-spacing:0.262400pt;}
.ls2_c00220{letter-spacing:0.283093pt;}
.ls13_c00220{letter-spacing:0.283392pt;}
.ls1f_c00220{letter-spacing:0.377856pt;}
.ls18_c00220{letter-spacing:0.425088pt;}
.ls9_c00220{letter-spacing:0.456576pt;}
.ls6_c00220{letter-spacing:0.472320pt;}
.ls1b_c00220{letter-spacing:0.614016pt;}
.ls15_c00220{letter-spacing:0.619264pt;}
.ls5_c00220{letter-spacing:0.632913pt;}
.ls17_c00220{letter-spacing:0.681599pt;}
.ls1c_c00220{letter-spacing:0.708480pt;}
.ls8_c00220{letter-spacing:0.730284pt;}
.ls14_c00220{letter-spacing:0.855424pt;}
.lsa_c00220{letter-spacing:2.728960pt;}
.ls1a_c00220{letter-spacing:4.277120pt;}
.ls10_c00220{letter-spacing:4.665472pt;}
.ls1_c00220{letter-spacing:4.710293pt;}
.ls1d_c00220{letter-spacing:4.827264pt;}
.ls11_c00220{letter-spacing:4.854400pt;}
.lsf_c00220{letter-spacing:4.901632pt;}
.lsb_c00220{letter-spacing:5.311467pt;}
.ls0_c00220{letter-spacing:5.312000pt;}
.lsd_c00220{letter-spacing:5.475484pt;}
.ls16_c00220{letter-spacing:6.943104pt;}
.ls19_c00220{letter-spacing:7.284224pt;}
.ls3_c00220{letter-spacing:11.466560pt;}
.ls1e_c00220{letter-spacing:12.012672pt;}
.ls4_c00220{letter-spacing:69.498027pt;}
.ws1_c00220{word-spacing:-19.491072pt;}
.ws0_c00220{word-spacing:-19.443840pt;}
.ws3_c00220{word-spacing:-19.254912pt;}
.ws8_c00220{word-spacing:-18.705024pt;}
.ws7_c00220{word-spacing:-15.768735pt;}
.ws5_c00220{word-spacing:-15.720049pt;}
.ws4_c00220{word-spacing:-15.671364pt;}
.ws6_c00220{word-spacing:-15.061760pt;}
.wsa_c00220{word-spacing:-14.967296pt;}
.ws2_c00220{word-spacing:-14.872832pt;}
.ws9_c00220{word-spacing:-8.896000pt;}
.wsb_c00220{word-spacing:0.000000pt;}
._14_c00220{margin-left:-12.332800pt;}
._13_c00220{margin-left:-11.388160pt;}
._b_c00220{margin-left:-7.557120pt;}
._a_c00220{margin-left:-6.455040pt;}
._c_c00220{margin-left:-3.831040pt;}
._5_c00220{margin-left:-1.027808pt;}
._2_c00220{width:0.896000pt;}
._0_c00220{width:1.856000pt;}
._d_c00220{width:3.489920pt;}
._7_c00220{width:4.631829pt;}
._9_c00220{width:6.223328pt;}
._3_c00220{width:7.488000pt;}
._4_c00220{width:8.768000pt;}
._6_c00220{width:11.129920pt;}
._10_c00220{width:13.760000pt;}
._11_c00220{width:14.784000pt;}
._1_c00220{width:16.064000pt;}
._e_c00220{width:18.816000pt;}
._12_c00220{width:23.168000pt;}
._f_c00220{width:24.576000pt;}
._8_c00220{width:69.343456pt;}
.fs6_c00220{font-size:32.000000pt;}
.fs5_c00220{font-size:37.120000pt;}
.fs4_c00220{font-size:49.920000pt;}
.fs2_c00220{font-size:52.480000pt;}
.fs7_c00220{font-size:53.333333pt;}
.fs3_c00220{font-size:54.095146pt;}
.fs0_c00220{font-size:64.000000pt;}
.fs1_c00220{font-size:65.969690pt;}
.y0_c00220{bottom:0.000000pt;}
.y30_c00220{bottom:2.773467pt;}
.y2f_c00220{bottom:30.884000pt;}
.y1_c00220{bottom:48.000000pt;}
.y2e_c00220{bottom:49.318080pt;}
.y2d_c00220{bottom:64.681600pt;}
.y2c_c00220{bottom:85.800000pt;}
.y2b_c00220{bottom:109.480000pt;}
.y2a_c00220{bottom:139.560000pt;}
.y29_c00220{bottom:171.560000pt;}
.y28_c00220{bottom:190.440000pt;}
.y27_c00220{bottom:209.000000pt;}
.y26_c00220{bottom:227.560000pt;}
.y25_c00220{bottom:246.440000pt;}
.y24_c00220{bottom:278.440000pt;}
.y23_c00220{bottom:298.920000pt;}
.y22_c00220{bottom:317.160000pt;}
.y21_c00220{bottom:335.720000pt;}
.y20_c00220{bottom:367.720000pt;}
.y1f_c00220{bottom:386.600000pt;}
.y1e_c00220{bottom:405.160000pt;}
.y1d_c00220{bottom:424.040000pt;}
.y1c_c00220{bottom:442.600000pt;}
.y1b_c00220{bottom:461.160000pt;}
.y1a_c00220{bottom:493.160000pt;}
.y19_c00220{bottom:525.160000pt;}
.y18_c00220{bottom:557.158080pt;}
.y17_c00220{bottom:572.521600pt;}
.y16_c00220{bottom:588.200000pt;}
.y15_c00220{bottom:617.000000pt;}
.y14_c00220{bottom:617.001600pt;}
.y13_c00220{bottom:632.680000pt;}
.y12_c00220{bottom:648.040000pt;}
.y11_c00220{bottom:677.160000pt;}
.y10_c00220{bottom:696.360000pt;}
.yf_c00220{bottom:712.040000pt;}
.ye_c00220{bottom:727.400000pt;}
.yd_c00220{bottom:743.080000pt;}
.yc_c00220{bottom:758.760000pt;}
.yb_c00220{bottom:788.520000pt;}
.ya_c00220{bottom:820.520000pt;}
.y9_c00220{bottom:839.080000pt;}
.y8_c00220{bottom:857.640000pt;}
.y7_c00220{bottom:876.520000pt;}
.y6_c00220{bottom:895.080000pt;}
.y5_c00220{bottom:927.080000pt;}
.y4_c00220{bottom:945.640000pt;}
.y3_c00220{bottom:964.520000pt;}
.y2_c00220{bottom:1011.880000pt;}
.h9_c00220{height:17.116000pt;}
.h8_c00220{height:28.992000pt;}
.ha_c00220{height:41.173333pt;}
.h6_c00220{height:41.761453pt;}
.h5_c00220{height:47.546880pt;}
.h4_c00220{height:50.928601pt;}
.h3_c00220{height:57.984000pt;}
.h7_c00220{height:60.510720pt;}
.h2_c00220{height:1067.880000pt;}
.h0_c00220{height:1122.520000pt;}
.h1_c00220{height:1122.666667pt;}
.w7_c00220{width:22.240000pt;}
.w3_c00220{width:35.200000pt;}
.w4_c00220{width:74.880000pt;}
.w5_c00220{width:188.480000pt;}
.w6_c00220{width:274.880000pt;}
.w2_c00220{width:767.960000pt;}
.w0_c00220{width:793.720000pt;}
.w1_c00220{width:794.000000pt;}
.x0_c00220{left:0.000000pt;}
.x6_c00220{left:7.040133pt;}
.x1_c00220{left:12.880000pt;}
.xe_c00220{left:36.372000pt;}
.xa_c00220{left:38.119333pt;}
.x9_c00220{left:43.345200pt;}
.xf_c00220{left:74.904533pt;}
.x2_c00220{left:100.480133pt;}
.x5_c00220{left:106.320000pt;}
.x19_c00220{left:118.252933pt;}
.x14_c00220{left:132.333067pt;}
.x7_c00220{left:142.160000pt;}
.x3_c00220{left:144.463600pt;}
.x15_c00220{left:146.797867pt;}
.x10_c00220{left:165.700133pt;}
.x16_c00220{left:185.330400pt;}
.xc_c00220{left:187.570267pt;}
.x4_c00220{left:190.222667pt;}
.x11_c00220{left:196.779467pt;}
.x8_c00220{left:217.680000pt;}
.xd_c00220{left:219.423067pt;}
.x17_c00220{left:276.126000pt;}
.x1e_c00220{left:300.818000pt;}
.x18_c00220{left:307.205467pt;}
.x1f_c00220{left:312.369733pt;}
.x1a_c00220{left:360.540267pt;}
.x1c_c00220{left:364.851600pt;}
.xb_c00220{left:406.800000pt;}
.x12_c00220{left:423.036133pt;}
.x1b_c00220{left:438.100933pt;}
.x13_c00220{left:454.875600pt;}
.x1d_c00220{left:470.212933pt;}
.x20_c00220{left:518.344667pt;}
.x21_c00220{left:552.136400pt;}
.x22_c00220{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ff84ae4a8a8a1af20b454a92.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.134000;font-style:normal;font-weight:normal;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_8fe548217984d02fec66e83f.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;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:ff3_c00221;src:url('chunks/assets/font_31e3a1d4707c6ec03830354a.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:0.787000;font-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_c00221{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00221{vertical-align:-24.480000px;}
.v0_c00221{vertical-align:0.000000px;}
.v1_c00221{vertical-align:25.233406px;}
.v2_c00221{vertical-align:30.240000px;}
.ls7_c00221{letter-spacing:0.000000px;}
.lsc_c00221{letter-spacing:0.265680px;}
.lsf_c00221{letter-spacing:0.318816px;}
.ls11_c00221{letter-spacing:0.425088px;}
.lsd_c00221{letter-spacing:0.492942px;}
.ls2_c00221{letter-spacing:0.531360px;}
.ls3_c00221{letter-spacing:0.543168px;}
.lsb_c00221{letter-spacing:0.584496px;}
.ls10_c00221{letter-spacing:0.637632px;}
.ls14_c00221{letter-spacing:0.712027px;}
.ls15_c00221{letter-spacing:0.766799px;}
.lse_c00221{letter-spacing:5.248656px;}
.ls12_c00221{letter-spacing:5.335200px;}
.ls1_c00221{letter-spacing:5.405040px;}
.ls8_c00221{letter-spacing:5.461200px;}
.ls0_c00221{letter-spacing:5.514336px;}
.lsa_c00221{letter-spacing:5.567472px;}
.ls9_c00221{letter-spacing:5.939424px;}
.ls4_c00221{letter-spacing:5.975400px;}
.ls5_c00221{letter-spacing:5.976000px;}
.ls6_c00221{letter-spacing:6.159920px;}
.ls13_c00221{letter-spacing:6.665616px;}
.sc__c00221{text-shadow:none;}
.sc1_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00221{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc1_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00221{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00221{word-spacing:-22.352544px;}
.ws0_c00221{word-spacing:-21.874320px;}
.ws4_c00221{word-spacing:-21.661776px;}
.ws7_c00221{word-spacing:-20.947680px;}
.wsa_c00221{word-spacing:-17.685056px;}
.ws5_c00221{word-spacing:-16.944480px;}
.ws2_c00221{word-spacing:-16.918257px;}
.ws6_c00221{word-spacing:-16.838208px;}
.ws3_c00221{word-spacing:-16.678800px;}
.ws8_c00221{word-spacing:-11.609280px;}
.ws9_c00221{word-spacing:-10.008000px;}
.wsb_c00221{word-spacing:0.000000px;}
._5_c00221{margin-left:-7.281731px;}
._2_c00221{margin-left:-5.716975px;}
._1_c00221{margin-left:-1.280136px;}
._3_c00221{width:1.180800px;}
._4_c00221{width:4.320000px;}
._0_c00221{width:5.670960px;}
._7_c00221{width:10.568160px;}
._6_c00221{width:11.571840px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs7_c00221{font-size:36.000000px;}
.fs4_c00221{font-size:37.107951px;}
.fs6_c00221{font-size:41.760000px;}
.fs5_c00221{font-size:56.160000px;}
.fs2_c00221{font-size:59.040000px;}
.fs8_c00221{font-size:60.000000px;}
.fs3_c00221{font-size:60.857039px;}
.fs0_c00221{font-size:72.000000px;}
.fs1_c00221{font-size:74.215901px;}
.y0_c00221{bottom:0.000000px;}
.y2b_c00221{bottom:3.120150px;}
.y2a_c00221{bottom:34.744500px;}
.y1_c00221{bottom:54.000000px;}
.y29_c00221{bottom:55.485000px;}
.y28_c00221{bottom:61.605000px;}
.y27_c00221{bottom:72.765000px;}
.y25_c00221{bottom:90.401040px;}
.y26_c00221{bottom:90.405000px;}
.y24_c00221{bottom:113.805000px;}
.y23_c00221{bottom:140.445000px;}
.y22_c00221{bottom:281.925000px;}
.y21_c00221{bottom:317.925000px;}
.y20_c00221{bottom:353.925000px;}
.y1e_c00221{bottom:372.285000px;}
.y1f_c00221{bottom:419.445000px;}
.y1d_c00221{bottom:436.725000px;}
.y1c_c00221{bottom:454.365000px;}
.y1b_c00221{bottom:469.125000px;}
.y1a_c00221{bottom:534.645000px;}
.y19_c00221{bottom:551.925000px;}
.y15_c00221{bottom:567.045000px;}
.y18_c00221{bottom:605.565000px;}
.y17_c00221{bottom:623.205000px;}
.y16_c00221{bottom:640.845000px;}
.y14_c00221{bottom:658.125000px;}
.y13_c00221{bottom:675.765000px;}
.y12_c00221{bottom:690.525000px;}
.y11_c00221{bottom:745.965000px;}
.y10_c00221{bottom:763.605000px;}
.yf_c00221{bottom:778.365000px;}
.ye_c00221{bottom:871.605000px;}
.yd_c00221{bottom:889.245000px;}
.yc_c00221{bottom:904.005000px;}
.yb_c00221{bottom:987.525000px;}
.ya_c00221{bottom:1005.165000px;}
.y3_c00221{bottom:1019.925000px;}
.y9_c00221{bottom:1024.245000px;}
.y6_c00221{bottom:1028.205000px;}
.y8_c00221{bottom:1035.045000px;}
.y7_c00221{bottom:1035.764850px;}
.y5_c00221{bottom:1069.965000px;}
.y4_c00221{bottom:1087.604850px;}
.y2_c00221{bottom:1138.365000px;}
.ha_c00221{height:19.255500px;}
.h9_c00221{height:32.616000px;}
.hb_c00221{height:46.320000px;}
.h7_c00221{height:46.981634px;}
.h5_c00221{height:53.490240px;}
.h6_c00221{height:53.880744px;}
.h4_c00221{height:57.294676px;}
.h3_c00221{height:65.232000px;}
.h8_c00221{height:68.074560px;}
.h2_c00221{height:1201.365000px;}
.h0_c00221{height:1262.835000px;}
.h1_c00221{height:1263.000000px;}
.w8_c00221{width:25.020000px;}
.w4_c00221{width:116.280000px;}
.w5_c00221{width:126.720000px;}
.w6_c00221{width:134.280000px;}
.w7_c00221{width:140.760000px;}
.w3_c00221{width:212.040000px;}
.w2_c00221{width:863.955000px;}
.w0_c00221{width:892.935000px;}
.w1_c00221{width:893.250000px;}
.x0_c00221{left:0.000000px;}
.x11_c00221{left:10.829850px;}
.x1_c00221{left:14.490000px;}
.x10_c00221{left:15.833700px;}
.x15_c00221{left:38.353350px;}
.x16_c00221{left:44.998350px;}
.x14_c00221{left:48.975000px;}
.xf_c00221{left:54.000150px;}
.x17_c00221{left:57.508050px;}
.x5_c00221{left:74.610000px;}
.x8_c00221{left:86.999850px;}
.xa_c00221{left:107.999850px;}
.x2_c00221{left:113.040150px;}
.x12_c00221{left:119.981100px;}
.xc_c00221{left:122.999850px;}
.x13_c00221{left:130.811100px;}
.xe_c00221{left:134.999850px;}
.x3_c00221{left:162.521550px;}
.x1f_c00221{left:165.562800px;}
.x6_c00221{left:189.000150px;}
.x4_c00221{left:214.000500px;}
.x1d_c00221{left:231.820350px;}
.x18_c00221{left:239.030250px;}
.x1e_c00221{left:242.650200px;}
.x19_c00221{left:256.780800px;}
.x7_c00221{left:287.370000px;}
.x9_c00221{left:404.370000px;}
.x1a_c00221{left:473.144850px;}
.x1b_c00221{left:490.895550px;}
.xb_c00221{left:531.810000px;}
.xd_c00221{left:666.810000px;}
.x1c_c00221{left:742.890000px;}
.x20_c00221{left:759.915000px;}
@media print{
.v3_c00221{vertical-align:-21.760000pt;}
.v0_c00221{vertical-align:0.000000pt;}
.v1_c00221{vertical-align:22.429695pt;}
.v2_c00221{vertical-align:26.880000pt;}
.ls7_c00221{letter-spacing:0.000000pt;}
.lsc_c00221{letter-spacing:0.236160pt;}
.lsf_c00221{letter-spacing:0.283392pt;}
.ls11_c00221{letter-spacing:0.377856pt;}
.lsd_c00221{letter-spacing:0.438171pt;}
.ls2_c00221{letter-spacing:0.472320pt;}
.ls3_c00221{letter-spacing:0.482816pt;}
.lsb_c00221{letter-spacing:0.519552pt;}
.ls10_c00221{letter-spacing:0.566784pt;}
.ls14_c00221{letter-spacing:0.632913pt;}
.ls15_c00221{letter-spacing:0.681599pt;}
.lse_c00221{letter-spacing:4.665472pt;}
.ls12_c00221{letter-spacing:4.742400pt;}
.ls1_c00221{letter-spacing:4.804480pt;}
.ls8_c00221{letter-spacing:4.854400pt;}
.ls0_c00221{letter-spacing:4.901632pt;}
.lsa_c00221{letter-spacing:4.948864pt;}
.ls9_c00221{letter-spacing:5.279488pt;}
.ls4_c00221{letter-spacing:5.311467pt;}
.ls5_c00221{letter-spacing:5.312000pt;}
.ls6_c00221{letter-spacing:5.475484pt;}
.ls13_c00221{letter-spacing:5.924992pt;}
.ws1_c00221{word-spacing:-19.868928pt;}
.ws0_c00221{word-spacing:-19.443840pt;}
.ws4_c00221{word-spacing:-19.254912pt;}
.ws7_c00221{word-spacing:-18.620160pt;}
.wsa_c00221{word-spacing:-15.720049pt;}
.ws5_c00221{word-spacing:-15.061760pt;}
.ws2_c00221{word-spacing:-15.038451pt;}
.ws6_c00221{word-spacing:-14.967296pt;}
.ws3_c00221{word-spacing:-14.825600pt;}
.ws8_c00221{word-spacing:-10.319360pt;}
.ws9_c00221{word-spacing:-8.896000pt;}
.wsb_c00221{word-spacing:0.000000pt;}
._5_c00221{margin-left:-6.472650pt;}
._2_c00221{margin-left:-5.081755pt;}
._1_c00221{margin-left:-1.137899pt;}
._3_c00221{width:1.049600pt;}
._4_c00221{width:3.840000pt;}
._0_c00221{width:5.040853pt;}
._7_c00221{width:9.393920pt;}
._6_c00221{width:10.286080pt;}
.fs7_c00221{font-size:32.000000pt;}
.fs4_c00221{font-size:32.984845pt;}
.fs6_c00221{font-size:37.120000pt;}
.fs5_c00221{font-size:49.920000pt;}
.fs2_c00221{font-size:52.480000pt;}
.fs8_c00221{font-size:53.333333pt;}
.fs3_c00221{font-size:54.095146pt;}
.fs0_c00221{font-size:64.000000pt;}
.fs1_c00221{font-size:65.969690pt;}
.y0_c00221{bottom:0.000000pt;}
.y2b_c00221{bottom:2.773467pt;}
.y2a_c00221{bottom:30.884000pt;}
.y1_c00221{bottom:48.000000pt;}
.y29_c00221{bottom:49.320000pt;}
.y28_c00221{bottom:54.760000pt;}
.y27_c00221{bottom:64.680000pt;}
.y25_c00221{bottom:80.356480pt;}
.y26_c00221{bottom:80.360000pt;}
.y24_c00221{bottom:101.160000pt;}
.y23_c00221{bottom:124.840000pt;}
.y22_c00221{bottom:250.600000pt;}
.y21_c00221{bottom:282.600000pt;}
.y20_c00221{bottom:314.600000pt;}
.y1e_c00221{bottom:330.920000pt;}
.y1f_c00221{bottom:372.840000pt;}
.y1d_c00221{bottom:388.200000pt;}
.y1c_c00221{bottom:403.880000pt;}
.y1b_c00221{bottom:417.000000pt;}
.y1a_c00221{bottom:475.240000pt;}
.y19_c00221{bottom:490.600000pt;}
.y15_c00221{bottom:504.040000pt;}
.y18_c00221{bottom:538.280000pt;}
.y17_c00221{bottom:553.960000pt;}
.y16_c00221{bottom:569.640000pt;}
.y14_c00221{bottom:585.000000pt;}
.y13_c00221{bottom:600.680000pt;}
.y12_c00221{bottom:613.800000pt;}
.y11_c00221{bottom:663.080000pt;}
.y10_c00221{bottom:678.760000pt;}
.yf_c00221{bottom:691.880000pt;}
.ye_c00221{bottom:774.760000pt;}
.yd_c00221{bottom:790.440000pt;}
.yc_c00221{bottom:803.560000pt;}
.yb_c00221{bottom:877.800000pt;}
.ya_c00221{bottom:893.480000pt;}
.y3_c00221{bottom:906.600000pt;}
.y9_c00221{bottom:910.440000pt;}
.y6_c00221{bottom:913.960000pt;}
.y8_c00221{bottom:920.040000pt;}
.y7_c00221{bottom:920.679867pt;}
.y5_c00221{bottom:951.080000pt;}
.y4_c00221{bottom:966.759867pt;}
.y2_c00221{bottom:1011.880000pt;}
.ha_c00221{height:17.116000pt;}
.h9_c00221{height:28.992000pt;}
.hb_c00221{height:41.173333pt;}
.h7_c00221{height:41.761453pt;}
.h5_c00221{height:47.546880pt;}
.h6_c00221{height:47.893995pt;}
.h4_c00221{height:50.928601pt;}
.h3_c00221{height:57.984000pt;}
.h8_c00221{height:60.510720pt;}
.h2_c00221{height:1067.880000pt;}
.h0_c00221{height:1122.520000pt;}
.h1_c00221{height:1122.666667pt;}
.w8_c00221{width:22.240000pt;}
.w4_c00221{width:103.360000pt;}
.w5_c00221{width:112.640000pt;}
.w6_c00221{width:119.360000pt;}
.w7_c00221{width:125.120000pt;}
.w3_c00221{width:188.480000pt;}
.w2_c00221{width:767.960000pt;}
.w0_c00221{width:793.720000pt;}
.w1_c00221{width:794.000000pt;}
.x0_c00221{left:0.000000pt;}
.x11_c00221{left:9.626533pt;}
.x1_c00221{left:12.880000pt;}
.x10_c00221{left:14.074400pt;}
.x15_c00221{left:34.091867pt;}
.x16_c00221{left:39.998533pt;}
.x14_c00221{left:43.533333pt;}
.xf_c00221{left:48.000133pt;}
.x17_c00221{left:51.118267pt;}
.x5_c00221{left:66.320000pt;}
.x8_c00221{left:77.333200pt;}
.xa_c00221{left:95.999867pt;}
.x2_c00221{left:100.480133pt;}
.x12_c00221{left:106.649867pt;}
.xc_c00221{left:109.333200pt;}
.x13_c00221{left:116.276533pt;}
.xe_c00221{left:119.999867pt;}
.x3_c00221{left:144.463600pt;}
.x1f_c00221{left:147.166933pt;}
.x6_c00221{left:168.000133pt;}
.x4_c00221{left:190.222667pt;}
.x1d_c00221{left:206.062533pt;}
.x18_c00221{left:212.471333pt;}
.x1e_c00221{left:215.689067pt;}
.x19_c00221{left:228.249600pt;}
.x7_c00221{left:255.440000pt;}
.x9_c00221{left:359.440000pt;}
.x1a_c00221{left:420.573200pt;}
.x1b_c00221{left:436.351600pt;}
.xb_c00221{left:472.720000pt;}
.xd_c00221{left:592.720000pt;}
.x1c_c00221{left:660.346667pt;}
.x20_c00221{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3fc2753042540663e63140f4.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;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_c00222;src:url('chunks/assets/font_c5dc7c3b0d18c921d01caeb8.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_59301a1f3a012e98c91a90a6.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:0.787000;font-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_c00222{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00222{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00222{letter-spacing:0.000000px;}
.ls5_c00222{letter-spacing:0.202464px;}
.ls1_c00222{letter-spacing:0.399600px;}
.ls0_c00222{letter-spacing:0.615101px;}
.ls2_c00222{letter-spacing:5.976000px;}
.ls3_c00222{letter-spacing:6.159920px;}
.sc__c00222{text-shadow:none;}
.sc1_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00222{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc1_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00222{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00222{word-spacing:-15.882797px;}
.ws1_c00222{word-spacing:-15.211440px;}
.ws2_c00222{word-spacing:0.000000px;}
._0_c00222{margin-left:-1.118880px;}
._1_c00222{width:1.012320px;}
.fc0_c00222{color:rgb(0,0,0);}
.fs2_c00222{font-size:53.280000px;}
.fs3_c00222{font-size:54.919767px;}
.fs4_c00222{font-size:60.000000px;}
.fs0_c00222{font-size:72.000000px;}
.fs1_c00222{font-size:74.215901px;}
.y0_c00222{bottom:0.000000px;}
.y24_c00222{bottom:3.120150px;}
.y22_c00222{bottom:25.560000px;}
.y23_c00222{bottom:34.744500px;}
.y1f_c00222{bottom:41.040000px;}
.y21_c00222{bottom:41.400000px;}
.y1_c00222{bottom:54.000000px;}
.y1d_c00222{bottom:148.725000px;}
.y20_c00222{bottom:184.365000px;}
.y1c_c00222{bottom:184.725000px;}
.y1b_c00222{bottom:220.725000px;}
.y1a_c00222{bottom:256.725000px;}
.y19_c00222{bottom:292.725000px;}
.y18_c00222{bottom:328.725000px;}
.y17_c00222{bottom:364.725000px;}
.y16_c00222{bottom:400.725000px;}
.y15_c00222{bottom:436.725000px;}
.y14_c00222{bottom:472.725000px;}
.y13_c00222{bottom:509.085000px;}
.y12_c00222{bottom:545.085000px;}
.y11_c00222{bottom:581.085000px;}
.y10_c00222{bottom:617.085000px;}
.yf_c00222{bottom:653.085000px;}
.y1e_c00222{bottom:670.365000px;}
.ye_c00222{bottom:689.085000px;}
.yd_c00222{bottom:725.085000px;}
.yc_c00222{bottom:761.085000px;}
.yb_c00222{bottom:797.085000px;}
.ya_c00222{bottom:833.085000px;}
.y9_c00222{bottom:869.085000px;}
.y8_c00222{bottom:905.085000px;}
.y7_c00222{bottom:941.085000px;}
.y6_c00222{bottom:977.085000px;}
.y5_c00222{bottom:1013.085000px;}
.y4_c00222{bottom:1049.085000px;}
.y3_c00222{bottom:1085.085000px;}
.y2_c00222{bottom:1138.365000px;}
.h8_c00222{height:19.255500px;}
.h6_c00222{height:41.132160px;}
.h7_c00222{height:42.398060px;}
.h9_c00222{height:46.320000px;}
.h5_c00222{height:54.000000px;}
.h3_c00222{height:55.584000px;}
.h4_c00222{height:57.294676px;}
.h2_c00222{height:1201.365000px;}
.h0_c00222{height:1262.835000px;}
.h1_c00222{height:1263.000000px;}
.w5_c00222{width:25.020000px;}
.w4_c00222{width:627.840000px;}
.w3_c00222{width:628.560000px;}
.w2_c00222{width:863.955000px;}
.w0_c00222{width:892.935000px;}
.w1_c00222{width:893.250000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:14.490000px;}
.x6_c00222{left:44.008200px;}
.x9_c00222{left:61.284600px;}
.x2_c00222{left:113.040150px;}
.x5_c00222{left:150.570000px;}
.x7_c00222{left:154.315050px;}
.x3_c00222{left:162.521550px;}
.xa_c00222{left:171.591300px;}
.x8_c00222{left:179.816100px;}
.xb_c00222{left:197.092500px;}
.x4_c00222{left:214.000500px;}
.xc_c00222{left:252.919800px;}
.xd_c00222{left:759.915000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls4_c00222{letter-spacing:0.000000pt;}
.ls5_c00222{letter-spacing:0.179968pt;}
.ls1_c00222{letter-spacing:0.355200pt;}
.ls0_c00222{letter-spacing:0.546757pt;}
.ls2_c00222{letter-spacing:5.312000pt;}
.ls3_c00222{letter-spacing:5.475484pt;}
.ws0_c00222{word-spacing:-14.118041pt;}
.ws1_c00222{word-spacing:-13.521280pt;}
.ws2_c00222{word-spacing:0.000000pt;}
._0_c00222{margin-left:-0.994560pt;}
._1_c00222{width:0.899840pt;}
.fs2_c00222{font-size:47.360000pt;}
.fs3_c00222{font-size:48.817571pt;}
.fs4_c00222{font-size:53.333333pt;}
.fs0_c00222{font-size:64.000000pt;}
.fs1_c00222{font-size:65.969690pt;}
.y0_c00222{bottom:0.000000pt;}
.y24_c00222{bottom:2.773467pt;}
.y22_c00222{bottom:22.720000pt;}
.y23_c00222{bottom:30.884000pt;}
.y1f_c00222{bottom:36.480000pt;}
.y21_c00222{bottom:36.800000pt;}
.y1_c00222{bottom:48.000000pt;}
.y1d_c00222{bottom:132.200000pt;}
.y20_c00222{bottom:163.880000pt;}
.y1c_c00222{bottom:164.200000pt;}
.y1b_c00222{bottom:196.200000pt;}
.y1a_c00222{bottom:228.200000pt;}
.y19_c00222{bottom:260.200000pt;}
.y18_c00222{bottom:292.200000pt;}
.y17_c00222{bottom:324.200000pt;}
.y16_c00222{bottom:356.200000pt;}
.y15_c00222{bottom:388.200000pt;}
.y14_c00222{bottom:420.200000pt;}
.y13_c00222{bottom:452.520000pt;}
.y12_c00222{bottom:484.520000pt;}
.y11_c00222{bottom:516.520000pt;}
.y10_c00222{bottom:548.520000pt;}
.yf_c00222{bottom:580.520000pt;}
.y1e_c00222{bottom:595.880000pt;}
.ye_c00222{bottom:612.520000pt;}
.yd_c00222{bottom:644.520000pt;}
.yc_c00222{bottom:676.520000pt;}
.yb_c00222{bottom:708.520000pt;}
.ya_c00222{bottom:740.520000pt;}
.y9_c00222{bottom:772.520000pt;}
.y8_c00222{bottom:804.520000pt;}
.y7_c00222{bottom:836.520000pt;}
.y6_c00222{bottom:868.520000pt;}
.y5_c00222{bottom:900.520000pt;}
.y4_c00222{bottom:932.520000pt;}
.y3_c00222{bottom:964.520000pt;}
.y2_c00222{bottom:1011.880000pt;}
.h8_c00222{height:17.116000pt;}
.h6_c00222{height:36.561920pt;}
.h7_c00222{height:37.687165pt;}
.h9_c00222{height:41.173333pt;}
.h5_c00222{height:48.000000pt;}
.h3_c00222{height:49.408000pt;}
.h4_c00222{height:50.928601pt;}
.h2_c00222{height:1067.880000pt;}
.h0_c00222{height:1122.520000pt;}
.h1_c00222{height:1122.666667pt;}
.w5_c00222{width:22.240000pt;}
.w4_c00222{width:558.080000pt;}
.w3_c00222{width:558.720000pt;}
.w2_c00222{width:767.960000pt;}
.w0_c00222{width:793.720000pt;}
.w1_c00222{width:794.000000pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:12.880000pt;}
.x6_c00222{left:39.118400pt;}
.x9_c00222{left:54.475200pt;}
.x2_c00222{left:100.480133pt;}
.x5_c00222{left:133.840000pt;}
.x7_c00222{left:137.168933pt;}
.x3_c00222{left:144.463600pt;}
.xa_c00222{left:152.525600pt;}
.x8_c00222{left:159.836533pt;}
.xb_c00222{left:175.193333pt;}
.x4_c00222{left:190.222667pt;}
.xc_c00222{left:224.817600pt;}
.xd_c00222{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0972902cfbf32b35beb827a.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;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_c00223;src:url('chunks/assets/font_1872398af5aee47daacfa04e.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_c6c3566481afa035ab9d824b.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00223{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00223{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00223{letter-spacing:0.000000px;}
.ls6_c00223{letter-spacing:0.202464px;}
.ls1_c00223{letter-spacing:0.239160px;}
.ls8_c00223{letter-spacing:0.239760px;}
.ls5_c00223{letter-spacing:0.399600px;}
.ls7_c00223{letter-spacing:0.576658px;}
.ls0_c00223{letter-spacing:0.615101px;}
.ls2_c00223{letter-spacing:5.976000px;}
.ls3_c00223{letter-spacing:6.159920px;}
.sc__c00223{text-shadow:none;}
.sc1_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00223{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc1_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00223{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00223{word-spacing:-15.882797px;}
.ws2_c00223{word-spacing:-15.844353px;}
.ws1_c00223{word-spacing:-15.211440px;}
.ws3_c00223{word-spacing:0.000000px;}
._1_c00223{margin-left:-1.118880px;}
._0_c00223{width:1.014120px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs2_c00223{font-size:53.280000px;}
.fs3_c00223{font-size:54.919767px;}
.fs4_c00223{font-size:60.000000px;}
.fs0_c00223{font-size:72.000000px;}
.fs1_c00223{font-size:74.215901px;}
.y0_c00223{bottom:0.000000px;}
.yb_c00223{bottom:3.120150px;}
.y7_c00223{bottom:14.400000px;}
.ya_c00223{bottom:34.744500px;}
.y9_c00223{bottom:41.040000px;}
.y1_c00223{bottom:54.000000px;}
.y8_c00223{bottom:103.365000px;}
.y6_c00223{bottom:670.365000px;}
.y5_c00223{bottom:1013.085000px;}
.y4_c00223{bottom:1049.085000px;}
.y3_c00223{bottom:1085.085000px;}
.y2_c00223{bottom:1138.365000px;}
.h9_c00223{height:19.255500px;}
.h5_c00223{height:27.000000px;}
.h6_c00223{height:41.132160px;}
.h7_c00223{height:42.398060px;}
.ha_c00223{height:46.320000px;}
.h8_c00223{height:54.000000px;}
.h3_c00223{height:55.584000px;}
.h4_c00223{height:57.294676px;}
.h2_c00223{height:1201.365000px;}
.h0_c00223{height:1262.835000px;}
.h1_c00223{height:1263.000000px;}
.w5_c00223{width:25.020000px;}
.w4_c00223{width:573.840000px;}
.w3_c00223{width:626.400000px;}
.w2_c00223{width:863.955000px;}
.w0_c00223{width:892.935000px;}
.w1_c00223{width:893.250000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:14.490000px;}
.x6_c00223{left:32.959950px;}
.xa_c00223{left:67.648950px;}
.x2_c00223{left:113.040150px;}
.x7_c00223{left:143.266800px;}
.x5_c00223{left:151.290000px;}
.x3_c00223{left:162.521550px;}
.x8_c00223{left:168.767850px;}
.x9_c00223{left:178.290000px;}
.xb_c00223{left:203.456850px;}
.x4_c00223{left:214.000500px;}
.xc_c00223{left:314.478450px;}
.xd_c00223{left:353.492700px;}
.xe_c00223{left:759.915000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls4_c00223{letter-spacing:0.000000pt;}
.ls6_c00223{letter-spacing:0.179968pt;}
.ls1_c00223{letter-spacing:0.212587pt;}
.ls8_c00223{letter-spacing:0.213120pt;}
.ls5_c00223{letter-spacing:0.355200pt;}
.ls7_c00223{letter-spacing:0.512584pt;}
.ls0_c00223{letter-spacing:0.546757pt;}
.ls2_c00223{letter-spacing:5.312000pt;}
.ls3_c00223{letter-spacing:5.475484pt;}
.ws0_c00223{word-spacing:-14.118041pt;}
.ws2_c00223{word-spacing:-14.083869pt;}
.ws1_c00223{word-spacing:-13.521280pt;}
.ws3_c00223{word-spacing:0.000000pt;}
._1_c00223{margin-left:-0.994560pt;}
._0_c00223{width:0.901440pt;}
.fs2_c00223{font-size:47.360000pt;}
.fs3_c00223{font-size:48.817571pt;}
.fs4_c00223{font-size:53.333333pt;}
.fs0_c00223{font-size:64.000000pt;}
.fs1_c00223{font-size:65.969690pt;}
.y0_c00223{bottom:0.000000pt;}
.yb_c00223{bottom:2.773467pt;}
.y7_c00223{bottom:12.800000pt;}
.ya_c00223{bottom:30.884000pt;}
.y9_c00223{bottom:36.480000pt;}
.y1_c00223{bottom:48.000000pt;}
.y8_c00223{bottom:91.880000pt;}
.y6_c00223{bottom:595.880000pt;}
.y5_c00223{bottom:900.520000pt;}
.y4_c00223{bottom:932.520000pt;}
.y3_c00223{bottom:964.520000pt;}
.y2_c00223{bottom:1011.880000pt;}
.h9_c00223{height:17.116000pt;}
.h5_c00223{height:24.000000pt;}
.h6_c00223{height:36.561920pt;}
.h7_c00223{height:37.687165pt;}
.ha_c00223{height:41.173333pt;}
.h8_c00223{height:48.000000pt;}
.h3_c00223{height:49.408000pt;}
.h4_c00223{height:50.928601pt;}
.h2_c00223{height:1067.880000pt;}
.h0_c00223{height:1122.520000pt;}
.h1_c00223{height:1122.666667pt;}
.w5_c00223{width:22.240000pt;}
.w4_c00223{width:510.080000pt;}
.w3_c00223{width:556.800000pt;}
.w2_c00223{width:767.960000pt;}
.w0_c00223{width:793.720000pt;}
.w1_c00223{width:794.000000pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:12.880000pt;}
.x6_c00223{left:29.297733pt;}
.xa_c00223{left:60.132400pt;}
.x2_c00223{left:100.480133pt;}
.x7_c00223{left:127.348267pt;}
.x5_c00223{left:134.480000pt;}
.x3_c00223{left:144.463600pt;}
.x8_c00223{left:150.015867pt;}
.x9_c00223{left:158.480000pt;}
.xb_c00223{left:180.850533pt;}
.x4_c00223{left:190.222667pt;}
.xc_c00223{left:279.536400pt;}
.xd_c00223{left:314.215733pt;}
.xe_c00223{left:675.480000pt;}
}





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

.ir_c00224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00224;src:url('chunks/assets/font_162a785cb68acd8f4a663c66.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_907f609207e5b068e91f2f94.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;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:ff3_c00224;src:url('chunks/assets/font_c6c3566481afa035ab9d824b.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:0.787000;font-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_c00224{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00224{vertical-align:-24.480000px;}
.v0_c00224{vertical-align:0.000000px;}
.v1_c00224{vertical-align:30.240000px;}
.lsb_c00224{letter-spacing:0.000000px;}
.ls6_c00224{letter-spacing:0.236160px;}
.ls7_c00224{letter-spacing:0.265680px;}
.ls5_c00224{letter-spacing:0.295200px;}
.ls19_c00224{letter-spacing:0.318816px;}
.ls12_c00224{letter-spacing:0.438171px;}
.ls15_c00224{letter-spacing:0.478224px;}
.ls9_c00224{letter-spacing:0.492942px;}
.ls4_c00224{letter-spacing:0.531360px;}
.ls8_c00224{letter-spacing:0.547713px;}
.ls14_c00224{letter-spacing:0.602485px;}
.ls13_c00224{letter-spacing:0.743904px;}
.ls17_c00224{letter-spacing:0.766799px;}
.ls1b_c00224{letter-spacing:0.797040px;}
.ls2_c00224{letter-spacing:0.811440px;}
.ls11_c00224{letter-spacing:1.222128px;}
.ls1a_c00224{letter-spacing:2.627280px;}
.lsf_c00224{letter-spacing:5.149872px;}
.ls18_c00224{letter-spacing:5.295888px;}
.lse_c00224{letter-spacing:5.335200px;}
.lsd_c00224{letter-spacing:5.430672px;}
.lsc_c00224{letter-spacing:5.499398px;}
.ls1_c00224{letter-spacing:5.976000px;}
.ls3_c00224{letter-spacing:5.991000px;}
.ls0_c00224{letter-spacing:6.159301px;}
.lsa_c00224{letter-spacing:6.159920px;}
.ls16_c00224{letter-spacing:12.811680px;}
.ls10_c00224{letter-spacing:22.464000px;}
.sc__c00224{text-shadow:none;}
.sc1_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00224{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc1_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00224{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00224{word-spacing:-25.992000px;}
.ws9_c00224{word-spacing:-21.709008px;}
.ws0_c00224{word-spacing:-21.592374px;}
.ws1_c00224{word-spacing:-21.043152px;}
.ws3_c00224{word-spacing:-20.762352px;}
.ws4_c00224{word-spacing:-20.016000px;}
.ws8_c00224{word-spacing:-17.685056px;}
.ws7_c00224{word-spacing:-17.465970px;}
.wsa_c00224{word-spacing:-17.411199px;}
.wsb_c00224{word-spacing:-16.731936px;}
.ws5_c00224{word-spacing:-11.609280px;}
.ws6_c00224{word-spacing:-10.008000px;}
.wsc_c00224{word-spacing:0.000000px;}
._5_c00224{margin-left:-22.464000px;}
._b_c00224{margin-left:-13.316276px;}
._a_c00224{margin-left:-11.421484px;}
._c_c00224{margin-left:-2.953248px;}
._0_c00224{margin-left:-1.356672px;}
._3_c00224{width:1.728000px;}
._2_c00224{width:3.024000px;}
._8_c00224{width:4.104000px;}
._1_c00224{width:6.675480px;}
._6_c00224{width:9.720000px;}
._9_c00224{width:11.927980px;}
._7_c00224{width:21.312000px;}
._4_c00224{width:22.464000px;}
.fc0_c00224{color:rgb(0,0,0);}
.fs5_c00224{font-size:36.000000px;}
.fs4_c00224{font-size:41.760000px;}
.fs3_c00224{font-size:56.160000px;}
.fs2_c00224{font-size:57.888403px;}
.fs6_c00224{font-size:59.040000px;}
.fs8_c00224{font-size:60.000000px;}
.fs7_c00224{font-size:60.857039px;}
.fs0_c00224{font-size:72.000000px;}
.fs1_c00224{font-size:74.215901px;}
.y0_c00224{bottom:0.000000px;}
.y30_c00224{bottom:3.120150px;}
.y2f_c00224{bottom:34.744500px;}
.y1_c00224{bottom:54.000000px;}
.y2e_c00224{bottom:55.481040px;}
.y2d_c00224{bottom:78.885000px;}
.y2c_c00224{bottom:90.405000px;}
.y2b_c00224{bottom:96.525000px;}
.y2a_c00224{bottom:107.685000px;}
.y29_c00224{bottom:113.805000px;}
.y28_c00224{bottom:125.325000px;}
.y27_c00224{bottom:131.445000px;}
.y26_c00224{bottom:142.961040px;}
.y25_c00224{bottom:160.245000px;}
.y24_c00224{bottom:160.246800px;}
.y23_c00224{bottom:177.885000px;}
.y22_c00224{bottom:184.005000px;}
.y21_c00224{bottom:210.645000px;}
.y20_c00224{bottom:261.405000px;}
.y1f_c00224{bottom:297.405000px;}
.y1e_c00224{bottom:318.285000px;}
.y1d_c00224{bottom:354.285000px;}
.y1c_c00224{bottom:390.285000px;}
.y1b_c00224{bottom:426.285000px;}
.y1a_c00224{bottom:462.285000px;}
.y19_c00224{bottom:498.285000px;}
.y18_c00224{bottom:534.285000px;}
.y17_c00224{bottom:570.285000px;}
.y16_c00224{bottom:591.525000px;}
.y15_c00224{bottom:612.405000px;}
.y14_c00224{bottom:633.285000px;}
.y13_c00224{bottom:654.525000px;}
.y12_c00224{bottom:675.405000px;}
.y11_c00224{bottom:696.285000px;}
.y10_c00224{bottom:717.525000px;}
.yf_c00224{bottom:738.405000px;}
.ye_c00224{bottom:759.285000px;}
.yd_c00224{bottom:780.525000px;}
.yc_c00224{bottom:816.525000px;}
.yb_c00224{bottom:852.525000px;}
.ya_c00224{bottom:890.685000px;}
.y9_c00224{bottom:928.845000px;}
.y8_c00224{bottom:964.845000px;}
.y7_c00224{bottom:986.085000px;}
.y6_c00224{bottom:1006.965000px;}
.y5_c00224{bottom:1027.845000px;}
.y4_c00224{bottom:1049.085000px;}
.y3_c00224{bottom:1085.085000px;}
.y2_c00224{bottom:1138.365000px;}
.h9_c00224{height:19.255500px;}
.h6_c00224{height:32.616000px;}
.ha_c00224{height:46.320000px;}
.h7_c00224{height:46.981634px;}
.h8_c00224{height:53.490240px;}
.h4_c00224{height:57.294676px;}
.h3_c00224{height:65.232000px;}
.h5_c00224{height:68.074560px;}
.h2_c00224{height:1201.365000px;}
.h0_c00224{height:1262.835000px;}
.h1_c00224{height:1263.000000px;}
.w3_c00224{width:25.020000px;}
.w2_c00224{width:863.955000px;}
.w0_c00224{width:892.935000px;}
.w1_c00224{width:893.250000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:14.490000px;}
.x2_c00224{left:113.040150px;}
.x21_c00224{left:122.213700px;}
.x1b_c00224{left:135.346050px;}
.x18_c00224{left:153.035550px;}
.x17_c00224{left:155.722050px;}
.x3_c00224{left:162.521550px;}
.x5_c00224{left:165.844500px;}
.xb_c00224{left:172.024950px;}
.x4_c00224{left:210.004350px;}
.xc_c00224{left:217.042200px;}
.x1c_c00224{left:229.335150px;}
.x1d_c00224{left:240.811200px;}
.x1e_c00224{left:263.941800px;}
.x6_c00224{left:277.959600px;}
.x15_c00224{left:319.047000px;}
.x16_c00224{left:348.044250px;}
.x19_c00224{left:362.289150px;}
.x7_c00224{left:387.205800px;}
.x1a_c00224{left:393.606150px;}
.xa_c00224{left:410.223300px;}
.xf_c00224{left:427.223400px;}
.x10_c00224{left:499.877550px;}
.x11_c00224{left:510.522150px;}
.x1f_c00224{left:519.481950px;}
.x8_c00224{left:549.388500px;}
.x20_c00224{left:554.490900px;}
.x22_c00224{left:567.175350px;}
.x12_c00224{left:576.191850px;}
.x9_c00224{left:590.392050px;}
.x23_c00224{left:596.363850px;}
.xd_c00224{left:633.644100px;}
.x24_c00224{left:639.682650px;}
.xe_c00224{left:673.657500px;}
.x13_c00224{left:677.754300px;}
.x25_c00224{left:684.681900px;}
.x14_c00224{left:690.732000px;}
.x26_c00224{left:759.915000px;}
@media print{
.v2_c00224{vertical-align:-21.760000pt;}
.v0_c00224{vertical-align:0.000000pt;}
.v1_c00224{vertical-align:26.880000pt;}
.lsb_c00224{letter-spacing:0.000000pt;}
.ls6_c00224{letter-spacing:0.209920pt;}
.ls7_c00224{letter-spacing:0.236160pt;}
.ls5_c00224{letter-spacing:0.262400pt;}
.ls19_c00224{letter-spacing:0.283392pt;}
.ls12_c00224{letter-spacing:0.389485pt;}
.ls15_c00224{letter-spacing:0.425088pt;}
.ls9_c00224{letter-spacing:0.438171pt;}
.ls4_c00224{letter-spacing:0.472320pt;}
.ls8_c00224{letter-spacing:0.486856pt;}
.ls14_c00224{letter-spacing:0.535542pt;}
.ls13_c00224{letter-spacing:0.661248pt;}
.ls17_c00224{letter-spacing:0.681599pt;}
.ls1b_c00224{letter-spacing:0.708480pt;}
.ls2_c00224{letter-spacing:0.721280pt;}
.ls11_c00224{letter-spacing:1.086336pt;}
.ls1a_c00224{letter-spacing:2.335360pt;}
.lsf_c00224{letter-spacing:4.577664pt;}
.ls18_c00224{letter-spacing:4.707456pt;}
.lse_c00224{letter-spacing:4.742400pt;}
.lsd_c00224{letter-spacing:4.827264pt;}
.lsc_c00224{letter-spacing:4.888354pt;}
.ls1_c00224{letter-spacing:5.312000pt;}
.ls3_c00224{letter-spacing:5.325333pt;}
.ls0_c00224{letter-spacing:5.474935pt;}
.lsa_c00224{letter-spacing:5.475484pt;}
.ls16_c00224{letter-spacing:11.388160pt;}
.ls10_c00224{letter-spacing:19.968000pt;}
.ws2_c00224{word-spacing:-23.104000pt;}
.ws9_c00224{word-spacing:-19.296896pt;}
.ws0_c00224{word-spacing:-19.193222pt;}
.ws1_c00224{word-spacing:-18.705024pt;}
.ws3_c00224{word-spacing:-18.455424pt;}
.ws4_c00224{word-spacing:-17.792000pt;}
.ws8_c00224{word-spacing:-15.720049pt;}
.ws7_c00224{word-spacing:-15.525307pt;}
.wsa_c00224{word-spacing:-15.476621pt;}
.wsb_c00224{word-spacing:-14.872832pt;}
.ws5_c00224{word-spacing:-10.319360pt;}
.ws6_c00224{word-spacing:-8.896000pt;}
.wsc_c00224{word-spacing:0.000000pt;}
._5_c00224{margin-left:-19.968000pt;}
._b_c00224{margin-left:-11.836690pt;}
._a_c00224{margin-left:-10.152430pt;}
._c_c00224{margin-left:-2.625109pt;}
._0_c00224{margin-left:-1.205931pt;}
._3_c00224{width:1.536000pt;}
._2_c00224{width:2.688000pt;}
._8_c00224{width:3.648000pt;}
._1_c00224{width:5.933760pt;}
._6_c00224{width:8.640000pt;}
._9_c00224{width:10.602649pt;}
._7_c00224{width:18.944000pt;}
._4_c00224{width:19.968000pt;}
.fs5_c00224{font-size:32.000000pt;}
.fs4_c00224{font-size:37.120000pt;}
.fs3_c00224{font-size:49.920000pt;}
.fs2_c00224{font-size:51.456358pt;}
.fs6_c00224{font-size:52.480000pt;}
.fs8_c00224{font-size:53.333333pt;}
.fs7_c00224{font-size:54.095146pt;}
.fs0_c00224{font-size:64.000000pt;}
.fs1_c00224{font-size:65.969690pt;}
.y0_c00224{bottom:0.000000pt;}
.y30_c00224{bottom:2.773467pt;}
.y2f_c00224{bottom:30.884000pt;}
.y1_c00224{bottom:48.000000pt;}
.y2e_c00224{bottom:49.316480pt;}
.y2d_c00224{bottom:70.120000pt;}
.y2c_c00224{bottom:80.360000pt;}
.y2b_c00224{bottom:85.800000pt;}
.y2a_c00224{bottom:95.720000pt;}
.y29_c00224{bottom:101.160000pt;}
.y28_c00224{bottom:111.400000pt;}
.y27_c00224{bottom:116.840000pt;}
.y26_c00224{bottom:127.076480pt;}
.y25_c00224{bottom:142.440000pt;}
.y24_c00224{bottom:142.441600pt;}
.y23_c00224{bottom:158.120000pt;}
.y22_c00224{bottom:163.560000pt;}
.y21_c00224{bottom:187.240000pt;}
.y20_c00224{bottom:232.360000pt;}
.y1f_c00224{bottom:264.360000pt;}
.y1e_c00224{bottom:282.920000pt;}
.y1d_c00224{bottom:314.920000pt;}
.y1c_c00224{bottom:346.920000pt;}
.y1b_c00224{bottom:378.920000pt;}
.y1a_c00224{bottom:410.920000pt;}
.y19_c00224{bottom:442.920000pt;}
.y18_c00224{bottom:474.920000pt;}
.y17_c00224{bottom:506.920000pt;}
.y16_c00224{bottom:525.800000pt;}
.y15_c00224{bottom:544.360000pt;}
.y14_c00224{bottom:562.920000pt;}
.y13_c00224{bottom:581.800000pt;}
.y12_c00224{bottom:600.360000pt;}
.y11_c00224{bottom:618.920000pt;}
.y10_c00224{bottom:637.800000pt;}
.yf_c00224{bottom:656.360000pt;}
.ye_c00224{bottom:674.920000pt;}
.yd_c00224{bottom:693.800000pt;}
.yc_c00224{bottom:725.800000pt;}
.yb_c00224{bottom:757.800000pt;}
.ya_c00224{bottom:791.720000pt;}
.y9_c00224{bottom:825.640000pt;}
.y8_c00224{bottom:857.640000pt;}
.y7_c00224{bottom:876.520000pt;}
.y6_c00224{bottom:895.080000pt;}
.y5_c00224{bottom:913.640000pt;}
.y4_c00224{bottom:932.520000pt;}
.y3_c00224{bottom:964.520000pt;}
.y2_c00224{bottom:1011.880000pt;}
.h9_c00224{height:17.116000pt;}
.h6_c00224{height:28.992000pt;}
.ha_c00224{height:41.173333pt;}
.h7_c00224{height:41.761453pt;}
.h8_c00224{height:47.546880pt;}
.h4_c00224{height:50.928601pt;}
.h3_c00224{height:57.984000pt;}
.h5_c00224{height:60.510720pt;}
.h2_c00224{height:1067.880000pt;}
.h0_c00224{height:1122.520000pt;}
.h1_c00224{height:1122.666667pt;}
.w3_c00224{width:22.240000pt;}
.w2_c00224{width:767.960000pt;}
.w0_c00224{width:793.720000pt;}
.w1_c00224{width:794.000000pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:12.880000pt;}
.x2_c00224{left:100.480133pt;}
.x21_c00224{left:108.634400pt;}
.x1b_c00224{left:120.307600pt;}
.x18_c00224{left:136.031600pt;}
.x17_c00224{left:138.419600pt;}
.x3_c00224{left:144.463600pt;}
.x5_c00224{left:147.417333pt;}
.xb_c00224{left:152.911067pt;}
.x4_c00224{left:186.670533pt;}
.xc_c00224{left:192.926400pt;}
.x1c_c00224{left:203.853467pt;}
.x1d_c00224{left:214.054400pt;}
.x1e_c00224{left:234.614933pt;}
.x6_c00224{left:247.075200pt;}
.x15_c00224{left:283.597333pt;}
.x16_c00224{left:309.372667pt;}
.x19_c00224{left:322.034800pt;}
.x7_c00224{left:344.182933pt;}
.x1a_c00224{left:349.872133pt;}
.xa_c00224{left:364.642933pt;}
.xf_c00224{left:379.754133pt;}
.x10_c00224{left:444.335600pt;}
.x11_c00224{left:453.797467pt;}
.x1f_c00224{left:461.761733pt;}
.x8_c00224{left:488.345333pt;}
.x20_c00224{left:492.880800pt;}
.x22_c00224{left:504.155867pt;}
.x12_c00224{left:512.170533pt;}
.x9_c00224{left:524.792933pt;}
.x23_c00224{left:530.101200pt;}
.xd_c00224{left:563.239200pt;}
.x24_c00224{left:568.606800pt;}
.xe_c00224{left:598.806667pt;}
.x13_c00224{left:602.448267pt;}
.x25_c00224{left:608.606133pt;}
.x14_c00224{left:613.984000pt;}
.x26_c00224{left:675.480000pt;}
}





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

.ir_c00225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00225;src:url('chunks/assets/font_6bc01509d22f19502019822d.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_b80645fcea2214023c2ee660.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;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:ff3_c00225;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00225;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00225;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff7_c00225{font-family:ff7_c00225;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00225;src:url('chunks/assets/font_0a6586d2af740ec56e9cd7ee.woff2')format("woff");}.ff8_c00225{font-family:ff8_c00225;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00225;src:url('chunks/assets/font_a4ab2c0003cce8e28002abf5.woff2')format("woff");}.ff9_c00225{font-family:ff9_c00225;line-height:0.787000;font-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_c00225{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00225{vertical-align:-25.233406px;}
.v0_c00225{vertical-align:0.000000px;}
.v1_c00225{vertical-align:25.233406px;}
.ls15_c00225{letter-spacing:0.000000px;}
.ls25_c00225{letter-spacing:0.242064px;}
.ls2_c00225{letter-spacing:0.265680px;}
.ls11_c00225{letter-spacing:0.273857px;}
.ls4_c00225{letter-spacing:0.318480px;}
.ls17_c00225{letter-spacing:0.318816px;}
.lsc_c00225{letter-spacing:0.328282px;}
.lse_c00225{letter-spacing:0.328628px;}
.ls1d_c00225{letter-spacing:0.425088px;}
.ls26_c00225{letter-spacing:0.438171px;}
.lsf_c00225{letter-spacing:0.438740px;}
.ls18_c00225{letter-spacing:0.478224px;}
.ls12_c00225{letter-spacing:0.492942px;}
.lsd_c00225{letter-spacing:0.494773px;}
.lsa_c00225{letter-spacing:0.531360px;}
.ls27_c00225{letter-spacing:0.547713px;}
.ls1b_c00225{letter-spacing:0.602485px;}
.ls28_c00225{letter-spacing:0.690768px;}
.ls20_c00225{letter-spacing:0.696672px;}
.lsb_c00225{letter-spacing:0.712027px;}
.ls10_c00225{letter-spacing:0.713462px;}
.ls21_c00225{letter-spacing:0.743904px;}
.ls24_c00225{letter-spacing:0.766799px;}
.ls1e_c00225{letter-spacing:0.797040px;}
.ls9_c00225{letter-spacing:0.821570px;}
.ls8_c00225{letter-spacing:0.960000px;}
.ls1f_c00225{letter-spacing:0.962352px;}
.ls29_c00225{letter-spacing:3.394800px;}
.ls1a_c00225{letter-spacing:5.248656px;}
.ls6_c00225{letter-spacing:5.299080px;}
.ls5_c00225{letter-spacing:5.299680px;}
.ls16_c00225{letter-spacing:5.430672px;}
.ls19_c00225{letter-spacing:5.514336px;}
.ls13_c00225{letter-spacing:5.976000px;}
.ls0_c00225{letter-spacing:5.983200px;}
.ls14_c00225{letter-spacing:6.159920px;}
.ls3_c00225{letter-spacing:6.292271px;}
.ls7_c00225{letter-spacing:11.116680px;}
.ls1c_c00225{letter-spacing:11.459380px;}
.ls23_c00225{letter-spacing:15.952608px;}
.ls22_c00225{letter-spacing:16.472160px;}
.ls1_c00225{letter-spacing:54.864000px;}
.sc__c00225{text-shadow:none;}
.sc1_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00225{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc1_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00225{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00225{word-spacing:-21.927456px;}
.ws5_c00225{word-spacing:-21.661776px;}
.ws0_c00225{word-spacing:-21.043152px;}
.wsa_c00225{word-spacing:-17.685056px;}
.ws9_c00225{word-spacing:-17.630284px;}
.ws6_c00225{word-spacing:-17.520742px;}
.wse_c00225{word-spacing:-17.411199px;}
.wsd_c00225{word-spacing:-17.356428px;}
.wsb_c00225{word-spacing:-17.246885px;}
.ws8_c00225{word-spacing:-17.210160px;}
.ws3_c00225{word-spacing:-16.944480px;}
.wsc_c00225{word-spacing:-16.918257px;}
.ws7_c00225{word-spacing:-16.838208px;}
.ws1_c00225{word-spacing:-16.731936px;}
.ws2_c00225{word-spacing:-16.413120px;}
.wsf_c00225{word-spacing:-10.008000px;}
.ws10_c00225{word-spacing:0.000000px;}
._10_c00225{margin-left:-15.940800px;}
._11_c00225{margin-left:-14.815440px;}
._c_c00225{margin-left:-10.710839px;}
._8_c00225{margin-left:-7.109883px;}
._15_c00225{margin-left:-4.014720px;}
._14_c00225{margin-left:-2.715840px;}
._0_c00225{margin-left:-1.179360px;}
._4_c00225{width:1.584000px;}
._1_c00225{width:2.664000px;}
._5_c00225{width:3.945600px;}
._7_c00225{width:5.544000px;}
._13_c00225{width:7.205943px;}
._b_c00225{width:10.591392px;}
._3_c00225{width:12.744000px;}
._12_c00225{width:14.150616px;}
._f_c00225{width:15.171840px;}
._e_c00225{width:18.773280px;}
._2_c00225{width:26.208000px;}
._6_c00225{width:30.168000px;}
._9_c00225{width:37.366944px;}
._a_c00225{width:38.730240px;}
._d_c00225{width:71.646072px;}
.fc0_c00225{color:rgb(0,0,0);}
.fs6_c00225{font-size:36.000000px;}
.fs5_c00225{font-size:37.107951px;}
.fs2_c00225{font-size:56.160000px;}
.fs3_c00225{font-size:59.040000px;}
.fs7_c00225{font-size:60.000000px;}
.fs4_c00225{font-size:60.857039px;}
.fs0_c00225{font-size:72.000000px;}
.fs1_c00225{font-size:74.215901px;}
.y0_c00225{bottom:0.000000px;}
.y34_c00225{bottom:3.120150px;}
.y33_c00225{bottom:34.744500px;}
.y1_c00225{bottom:54.000000px;}
.y32_c00225{bottom:61.605000px;}
.y31_c00225{bottom:88.245000px;}
.y30_c00225{bottom:110.925000px;}
.y2f_c00225{bottom:143.685000px;}
.y2d_c00225{bottom:165.645000px;}
.y2c_c00225{bottom:182.925000px;}
.y2e_c00225{bottom:183.645000px;}
.y2b_c00225{bottom:200.565000px;}
.y29_c00225{bottom:201.285000px;}
.y2a_c00225{bottom:218.565000px;}
.y28_c00225{bottom:218.925000px;}
.y27_c00225{bottom:236.205000px;}
.y23_c00225{bottom:254.565000px;}
.y22_c00225{bottom:272.205000px;}
.y26_c00225{bottom:277.245000px;}
.y21_c00225{bottom:289.485000px;}
.y25_c00225{bottom:294.525000px;}
.y20_c00225{bottom:309.645000px;}
.y24_c00225{bottom:312.165000px;}
.y1f_c00225{bottom:329.445000px;}
.y1e_c00225{bottom:347.085000px;}
.y1d_c00225{bottom:364.725000px;}
.y1c_c00225{bottom:398.205000px;}
.y1b_c00225{bottom:419.085000px;}
.y1a_c00225{bottom:439.965000px;}
.y19_c00225{bottom:461.205000px;}
.y18_c00225{bottom:482.085000px;}
.y17_c00225{bottom:502.965000px;}
.y16_c00225{bottom:524.205000px;}
.y15_c00225{bottom:545.085000px;}
.y14_c00225{bottom:581.085000px;}
.y13_c00225{bottom:602.325000px;}
.y12_c00225{bottom:619.605000px;}
.y11_c00225{bottom:640.845000px;}
.y10_c00225{bottom:676.845000px;}
.yf_c00225{bottom:712.845000px;}
.ye_c00225{bottom:734.445000px;}
.yd_c00225{bottom:754.965000px;}
.yc_c00225{bottom:790.965000px;}
.yb_c00225{bottom:826.965000px;}
.ya_c00225{bottom:862.965000px;}
.y9_c00225{bottom:883.845000px;}
.y8_c00225{bottom:905.085000px;}
.y7_c00225{bottom:941.085000px;}
.y6_c00225{bottom:977.085000px;}
.y5_c00225{bottom:1013.085000px;}
.y4_c00225{bottom:1049.085000px;}
.y3_c00225{bottom:1085.085000px;}
.y2_c00225{bottom:1138.365000px;}
.hc_c00225{height:19.255500px;}
.hb_c00225{height:32.616000px;}
.h6_c00225{height:39.350391px;}
.hd_c00225{height:46.320000px;}
.h8_c00225{height:46.981634px;}
.h5_c00225{height:47.988281px;}
.h7_c00225{height:53.490240px;}
.h9_c00225{height:53.880744px;}
.ha_c00225{height:55.136477px;}
.h4_c00225{height:57.294676px;}
.h3_c00225{height:65.232000px;}
.h2_c00225{height:1201.365000px;}
.h0_c00225{height:1262.835000px;}
.h1_c00225{height:1263.000000px;}
.w7_c00225{width:25.020000px;}
.w3_c00225{width:50.760000px;}
.w4_c00225{width:51.840000px;}
.w5_c00225{width:241.920000px;}
.w6_c00225{width:306.360000px;}
.w2_c00225{width:863.955000px;}
.w0_c00225{width:892.935000px;}
.w1_c00225{width:893.250000px;}
.x0_c00225{left:0.000000px;}
.x19_c00225{left:7.920150px;}
.x27_c00225{left:12.914700px;}
.x1_c00225{left:14.490000px;}
.x2c_c00225{left:48.343800px;}
.x22_c00225{left:50.909100px;}
.x2d_c00225{left:67.557000px;}
.x24_c00225{left:68.702250px;}
.x1c_c00225{left:75.012300px;}
.x25_c00225{left:77.812050px;}
.x2e_c00225{left:110.906250px;}
.x2_c00225{left:113.040150px;}
.x18_c00225{left:119.610000px;}
.x26_c00225{left:124.389750px;}
.x28_c00225{left:128.769600px;}
.x23_c00225{left:131.379900px;}
.x10_c00225{left:134.331600px;}
.x7_c00225{left:148.031550px;}
.x6_c00225{left:153.696600px;}
.x5_c00225{left:155.033550px;}
.x3_c00225{left:162.521550px;}
.x11_c00225{left:167.040150px;}
.x1a_c00225{left:171.090000px;}
.x29_c00225{left:172.118700px;}
.x2a_c00225{left:200.217000px;}
.x4_c00225{left:210.004350px;}
.x1d_c00225{left:212.312850px;}
.x16_c00225{left:217.987500px;}
.x1b_c00225{left:223.650000px;}
.x17_c00225{left:228.985050px;}
.x2b_c00225{left:231.881400px;}
.x8_c00225{left:237.841200px;}
.x2f_c00225{left:238.850400px;}
.x20_c00225{left:241.920300px;}
.x1f_c00225{left:269.296050px;}
.x21_c00225{left:277.754850px;}
.x9_c00225{left:309.034350px;}
.xa_c00225{left:313.534350px;}
.xb_c00225{left:335.322900px;}
.xc_c00225{left:339.822900px;}
.x14_c00225{left:376.828800px;}
.xd_c00225{left:388.610850px;}
.x15_c00225{left:416.842200px;}
.xe_c00225{left:463.426350px;}
.x1e_c00225{left:466.290000px;}
.x12_c00225{left:486.780750px;}
.xf_c00225{left:503.439750px;}
.x13_c00225{left:571.588200px;}
.x30_c00225{left:759.915000px;}
@media print{
.v2_c00225{vertical-align:-22.429695pt;}
.v0_c00225{vertical-align:0.000000pt;}
.v1_c00225{vertical-align:22.429695pt;}
.ls15_c00225{letter-spacing:0.000000pt;}
.ls25_c00225{letter-spacing:0.215168pt;}
.ls2_c00225{letter-spacing:0.236160pt;}
.ls11_c00225{letter-spacing:0.243428pt;}
.ls4_c00225{letter-spacing:0.283093pt;}
.ls17_c00225{letter-spacing:0.283392pt;}
.lsc_c00225{letter-spacing:0.291806pt;}
.lse_c00225{letter-spacing:0.292114pt;}
.ls1d_c00225{letter-spacing:0.377856pt;}
.ls26_c00225{letter-spacing:0.389485pt;}
.lsf_c00225{letter-spacing:0.389991pt;}
.ls18_c00225{letter-spacing:0.425088pt;}
.ls12_c00225{letter-spacing:0.438171pt;}
.lsd_c00225{letter-spacing:0.439798pt;}
.lsa_c00225{letter-spacing:0.472320pt;}
.ls27_c00225{letter-spacing:0.486856pt;}
.ls1b_c00225{letter-spacing:0.535542pt;}
.ls28_c00225{letter-spacing:0.614016pt;}
.ls20_c00225{letter-spacing:0.619264pt;}
.lsb_c00225{letter-spacing:0.632913pt;}
.ls10_c00225{letter-spacing:0.634189pt;}
.ls21_c00225{letter-spacing:0.661248pt;}
.ls24_c00225{letter-spacing:0.681599pt;}
.ls1e_c00225{letter-spacing:0.708480pt;}
.ls9_c00225{letter-spacing:0.730284pt;}
.ls8_c00225{letter-spacing:0.853333pt;}
.ls1f_c00225{letter-spacing:0.855424pt;}
.ls29_c00225{letter-spacing:3.017600pt;}
.ls1a_c00225{letter-spacing:4.665472pt;}
.ls6_c00225{letter-spacing:4.710293pt;}
.ls5_c00225{letter-spacing:4.710827pt;}
.ls16_c00225{letter-spacing:4.827264pt;}
.ls19_c00225{letter-spacing:4.901632pt;}
.ls13_c00225{letter-spacing:5.312000pt;}
.ls0_c00225{letter-spacing:5.318400pt;}
.ls14_c00225{letter-spacing:5.475484pt;}
.ls3_c00225{letter-spacing:5.593130pt;}
.ls7_c00225{letter-spacing:9.881493pt;}
.ls1c_c00225{letter-spacing:10.186116pt;}
.ls23_c00225{letter-spacing:14.180096pt;}
.ls22_c00225{letter-spacing:14.641920pt;}
.ls1_c00225{letter-spacing:48.768000pt;}
.ws4_c00225{word-spacing:-19.491072pt;}
.ws5_c00225{word-spacing:-19.254912pt;}
.ws0_c00225{word-spacing:-18.705024pt;}
.wsa_c00225{word-spacing:-15.720049pt;}
.ws9_c00225{word-spacing:-15.671364pt;}
.ws6_c00225{word-spacing:-15.573992pt;}
.wse_c00225{word-spacing:-15.476621pt;}
.wsd_c00225{word-spacing:-15.427936pt;}
.wsb_c00225{word-spacing:-15.330564pt;}
.ws8_c00225{word-spacing:-15.297920pt;}
.ws3_c00225{word-spacing:-15.061760pt;}
.wsc_c00225{word-spacing:-15.038451pt;}
.ws7_c00225{word-spacing:-14.967296pt;}
.ws1_c00225{word-spacing:-14.872832pt;}
.ws2_c00225{word-spacing:-14.589440pt;}
.wsf_c00225{word-spacing:-8.896000pt;}
.ws10_c00225{word-spacing:0.000000pt;}
._10_c00225{margin-left:-14.169600pt;}
._11_c00225{margin-left:-13.169280pt;}
._c_c00225{margin-left:-9.520746pt;}
._8_c00225{margin-left:-6.319896pt;}
._15_c00225{margin-left:-3.568640pt;}
._14_c00225{margin-left:-2.414080pt;}
._0_c00225{margin-left:-1.048320pt;}
._4_c00225{width:1.408000pt;}
._1_c00225{width:2.368000pt;}
._5_c00225{width:3.507200pt;}
._7_c00225{width:4.928000pt;}
._13_c00225{width:6.405283pt;}
._b_c00225{width:9.414571pt;}
._3_c00225{width:11.328000pt;}
._12_c00225{width:12.578325pt;}
._f_c00225{width:13.486080pt;}
._e_c00225{width:16.687360pt;}
._2_c00225{width:23.296000pt;}
._6_c00225{width:26.816000pt;}
._9_c00225{width:33.215061pt;}
._a_c00225{width:34.426880pt;}
._d_c00225{width:63.685397pt;}
.fs6_c00225{font-size:32.000000pt;}
.fs5_c00225{font-size:32.984845pt;}
.fs2_c00225{font-size:49.920000pt;}
.fs3_c00225{font-size:52.480000pt;}
.fs7_c00225{font-size:53.333333pt;}
.fs4_c00225{font-size:54.095146pt;}
.fs0_c00225{font-size:64.000000pt;}
.fs1_c00225{font-size:65.969690pt;}
.y0_c00225{bottom:0.000000pt;}
.y34_c00225{bottom:2.773467pt;}
.y33_c00225{bottom:30.884000pt;}
.y1_c00225{bottom:48.000000pt;}
.y32_c00225{bottom:54.760000pt;}
.y31_c00225{bottom:78.440000pt;}
.y30_c00225{bottom:98.600000pt;}
.y2f_c00225{bottom:127.720000pt;}
.y2d_c00225{bottom:147.240000pt;}
.y2c_c00225{bottom:162.600000pt;}
.y2e_c00225{bottom:163.240000pt;}
.y2b_c00225{bottom:178.280000pt;}
.y29_c00225{bottom:178.920000pt;}
.y2a_c00225{bottom:194.280000pt;}
.y28_c00225{bottom:194.600000pt;}
.y27_c00225{bottom:209.960000pt;}
.y23_c00225{bottom:226.280000pt;}
.y22_c00225{bottom:241.960000pt;}
.y26_c00225{bottom:246.440000pt;}
.y21_c00225{bottom:257.320000pt;}
.y25_c00225{bottom:261.800000pt;}
.y20_c00225{bottom:275.240000pt;}
.y24_c00225{bottom:277.480000pt;}
.y1f_c00225{bottom:292.840000pt;}
.y1e_c00225{bottom:308.520000pt;}
.y1d_c00225{bottom:324.200000pt;}
.y1c_c00225{bottom:353.960000pt;}
.y1b_c00225{bottom:372.520000pt;}
.y1a_c00225{bottom:391.080000pt;}
.y19_c00225{bottom:409.960000pt;}
.y18_c00225{bottom:428.520000pt;}
.y17_c00225{bottom:447.080000pt;}
.y16_c00225{bottom:465.960000pt;}
.y15_c00225{bottom:484.520000pt;}
.y14_c00225{bottom:516.520000pt;}
.y13_c00225{bottom:535.400000pt;}
.y12_c00225{bottom:550.760000pt;}
.y11_c00225{bottom:569.640000pt;}
.y10_c00225{bottom:601.640000pt;}
.yf_c00225{bottom:633.640000pt;}
.ye_c00225{bottom:652.840000pt;}
.yd_c00225{bottom:671.080000pt;}
.yc_c00225{bottom:703.080000pt;}
.yb_c00225{bottom:735.080000pt;}
.ya_c00225{bottom:767.080000pt;}
.y9_c00225{bottom:785.640000pt;}
.y8_c00225{bottom:804.520000pt;}
.y7_c00225{bottom:836.520000pt;}
.y6_c00225{bottom:868.520000pt;}
.y5_c00225{bottom:900.520000pt;}
.y4_c00225{bottom:932.520000pt;}
.y3_c00225{bottom:964.520000pt;}
.y2_c00225{bottom:1011.880000pt;}
.hc_c00225{height:17.116000pt;}
.hb_c00225{height:28.992000pt;}
.h6_c00225{height:34.978125pt;}
.hd_c00225{height:41.173333pt;}
.h8_c00225{height:41.761453pt;}
.h5_c00225{height:42.656250pt;}
.h7_c00225{height:47.546880pt;}
.h9_c00225{height:47.893995pt;}
.ha_c00225{height:49.010202pt;}
.h4_c00225{height:50.928601pt;}
.h3_c00225{height:57.984000pt;}
.h2_c00225{height:1067.880000pt;}
.h0_c00225{height:1122.520000pt;}
.h1_c00225{height:1122.666667pt;}
.w7_c00225{width:22.240000pt;}
.w3_c00225{width:45.120000pt;}
.w4_c00225{width:46.080000pt;}
.w5_c00225{width:215.040000pt;}
.w6_c00225{width:272.320000pt;}
.w2_c00225{width:767.960000pt;}
.w0_c00225{width:793.720000pt;}
.w1_c00225{width:794.000000pt;}
.x0_c00225{left:0.000000pt;}
.x19_c00225{left:7.040133pt;}
.x27_c00225{left:11.479733pt;}
.x1_c00225{left:12.880000pt;}
.x2c_c00225{left:42.972267pt;}
.x22_c00225{left:45.252533pt;}
.x2d_c00225{left:60.050667pt;}
.x24_c00225{left:61.068667pt;}
.x1c_c00225{left:66.677600pt;}
.x25_c00225{left:69.166267pt;}
.x2e_c00225{left:98.583333pt;}
.x2_c00225{left:100.480133pt;}
.x18_c00225{left:106.320000pt;}
.x26_c00225{left:110.568667pt;}
.x28_c00225{left:114.461867pt;}
.x23_c00225{left:116.782133pt;}
.x10_c00225{left:119.405867pt;}
.x7_c00225{left:131.583600pt;}
.x6_c00225{left:136.619200pt;}
.x5_c00225{left:137.807600pt;}
.x3_c00225{left:144.463600pt;}
.x11_c00225{left:148.480133pt;}
.x1a_c00225{left:152.080000pt;}
.x29_c00225{left:152.994400pt;}
.x2a_c00225{left:177.970667pt;}
.x4_c00225{left:186.670533pt;}
.x1d_c00225{left:188.722533pt;}
.x16_c00225{left:193.766667pt;}
.x1b_c00225{left:198.800000pt;}
.x17_c00225{left:203.542267pt;}
.x2b_c00225{left:206.116800pt;}
.x8_c00225{left:211.414400pt;}
.x2f_c00225{left:212.311467pt;}
.x20_c00225{left:215.040267pt;}
.x1f_c00225{left:239.374267pt;}
.x21_c00225{left:246.893200pt;}
.x9_c00225{left:274.697200pt;}
.xa_c00225{left:278.697200pt;}
.xb_c00225{left:298.064800pt;}
.xc_c00225{left:302.064800pt;}
.x14_c00225{left:334.958933pt;}
.xd_c00225{left:345.431867pt;}
.x15_c00225{left:370.526400pt;}
.xe_c00225{left:411.934533pt;}
.x1e_c00225{left:414.480000pt;}
.x12_c00225{left:432.694000pt;}
.xf_c00225{left:447.502000pt;}
.x13_c00225{left:508.078400pt;}
.x30_c00225{left:675.480000pt;}
}





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

.ir_c00226:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00226;src:url('chunks/assets/font_9043866c9a91d5ec3122936e.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_b5fea8bbb048a83fbce78800.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;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:ff3_c00226;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_e51098372bf5b015a2eaf212.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:0.787000;font-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_c00226{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00226{vertical-align:-24.480000px;}
.v0_c00226{vertical-align:0.000000px;}
.v1_c00226{vertical-align:30.240000px;}
.lsf_c00226{letter-spacing:0.000000px;}
.ls12_c00226{letter-spacing:0.265680px;}
.lsc_c00226{letter-spacing:0.273857px;}
.ls0_c00226{letter-spacing:0.295200px;}
.ls1a_c00226{letter-spacing:0.371952px;}
.ls20_c00226{letter-spacing:0.425088px;}
.ls1d_c00226{letter-spacing:0.434163px;}
.lsa_c00226{letter-spacing:0.465240px;}
.ls15_c00226{letter-spacing:0.478224px;}
.ls1_c00226{letter-spacing:0.531360px;}
.ls5_c00226{letter-spacing:0.549072px;}
.ls11_c00226{letter-spacing:0.584496px;}
.ls21_c00226{letter-spacing:0.602485px;}
.lsb_c00226{letter-spacing:0.680040px;}
.ls18_c00226{letter-spacing:0.690768px;}
.ls10_c00226{letter-spacing:0.696672px;}
.ls3_c00226{letter-spacing:0.712027px;}
.ls13_c00226{letter-spacing:0.743904px;}
.ls16_c00226{letter-spacing:0.766799px;}
.ls2_c00226{letter-spacing:0.821570px;}
.ls19_c00226{letter-spacing:0.962352px;}
.ls17_c00226{letter-spacing:3.129120px;}
.ls22_c00226{letter-spacing:3.235392px;}
.ls1f_c00226{letter-spacing:3.695904px;}
.lsd_c00226{letter-spacing:5.372640px;}
.ls1b_c00226{letter-spacing:5.430672px;}
.ls1e_c00226{letter-spacing:5.760000px;}
.ls6_c00226{letter-spacing:5.975400px;}
.ls8_c00226{letter-spacing:5.976000px;}
.lse_c00226{letter-spacing:6.159920px;}
.ls14_c00226{letter-spacing:6.949008px;}
.ls4_c00226{letter-spacing:7.202880px;}
.ls1c_c00226{letter-spacing:10.072800px;}
.ls7_c00226{letter-spacing:40.186920px;}
.ls9_c00226{letter-spacing:55.008000px;}
.sc__c00226{text-shadow:none;}
.sc1_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00226{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc1_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00226{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00226{word-spacing:-21.043152px;}
.ws6_c00226{word-spacing:-20.632021px;}
.ws4_c00226{word-spacing:-20.016000px;}
.ws1_c00226{word-spacing:-17.685056px;}
.ws0_c00226{word-spacing:-17.630284px;}
.ws9_c00226{word-spacing:-17.520742px;}
.wsa_c00226{word-spacing:-17.192114px;}
.ws2_c00226{word-spacing:-16.944480px;}
.ws7_c00226{word-spacing:-16.527139px;}
.ws5_c00226{word-spacing:-11.609280px;}
.ws8_c00226{word-spacing:-10.008000px;}
.wsb_c00226{word-spacing:0.000000px;}
._4_c00226{margin-left:-7.492176px;}
._3_c00226{margin-left:-6.435360px;}
._7_c00226{margin-left:-3.660480px;}
._6_c00226{margin-left:-2.597760px;}
._0_c00226{margin-left:-1.298880px;}
._1_c00226{width:1.228032px;}
._5_c00226{width:2.302560px;}
._c_c00226{width:4.307880px;}
._2_c00226{width:6.140160px;}
._8_c00226{width:7.911360px;}
._d_c00226{width:10.080000px;}
._b_c00226{width:13.536000px;}
._10_c00226{width:16.920000px;}
._f_c00226{width:25.200000px;}
._11_c00226{width:29.448000px;}
._e_c00226{width:30.456000px;}
._a_c00226{width:35.208000px;}
._9_c00226{width:36.291576px;}
.fc0_c00226{color:rgb(0,0,0);}
.fs7_c00226{font-size:36.000000px;}
.fs5_c00226{font-size:41.760000px;}
.fs4_c00226{font-size:56.160000px;}
.fs6_c00226{font-size:57.888403px;}
.fs2_c00226{font-size:59.040000px;}
.fs8_c00226{font-size:60.000000px;}
.fs3_c00226{font-size:60.857039px;}
.fs0_c00226{font-size:72.000000px;}
.fs1_c00226{font-size:74.215901px;}
.y0_c00226{bottom:0.000000px;}
.y33_c00226{bottom:3.120150px;}
.y32_c00226{bottom:34.744500px;}
.y1_c00226{bottom:54.000000px;}
.y31_c00226{bottom:61.605000px;}
.y30_c00226{bottom:72.766800px;}
.y2f_c00226{bottom:90.405000px;}
.y2e_c00226{bottom:96.525000px;}
.y2d_c00226{bottom:107.685000px;}
.y2c_c00226{bottom:107.686800px;}
.y2b_c00226{bottom:125.325000px;}
.y2a_c00226{bottom:131.445000px;}
.y29_c00226{bottom:158.085000px;}
.y28_c00226{bottom:303.165000px;}
.y27_c00226{bottom:339.165000px;}
.y26_c00226{bottom:360.405000px;}
.y25_c00226{bottom:396.405000px;}
.y24_c00226{bottom:417.285000px;}
.y23_c00226{bottom:438.165000px;}
.y22_c00226{bottom:459.405000px;}
.y21_c00226{bottom:480.285000px;}
.y20_c00226{bottom:501.525000px;}
.y1f_c00226{bottom:522.405000px;}
.y1e_c00226{bottom:558.405000px;}
.y1d_c00226{bottom:579.285000px;}
.y1c_c00226{bottom:600.525000px;}
.y1b_c00226{bottom:621.405000px;}
.y1a_c00226{bottom:642.285000px;}
.y19_c00226{bottom:678.285000px;}
.y18_c00226{bottom:714.285000px;}
.y17_c00226{bottom:735.525000px;}
.y16_c00226{bottom:756.405000px;}
.y15_c00226{bottom:777.285000px;}
.y14_c00226{bottom:798.525000px;}
.y13_c00226{bottom:819.405000px;}
.y12_c00226{bottom:840.285000px;}
.y11_c00226{bottom:876.285000px;}
.y10_c00226{bottom:912.285000px;}
.yf_c00226{bottom:933.166440px;}
.ye_c00226{bottom:950.804640px;}
.yd_c00226{bottom:968.088600px;}
.yc_c00226{bottom:985.726800px;}
.yb_c00226{bottom:1003.365000px;}
.ya_c00226{bottom:1003.366650px;}
.y9_c00226{bottom:1035.764850px;}
.y8_c00226{bottom:1035.766800px;}
.y6_c00226{bottom:1053.401040px;}
.y7_c00226{bottom:1053.405000px;}
.y5_c00226{bottom:1070.685000px;}
.y4_c00226{bottom:1070.686800px;}
.y3_c00226{bottom:1088.325000px;}
.y2_c00226{bottom:1138.365000px;}
.h9_c00226{height:19.255500px;}
.h8_c00226{height:32.616000px;}
.ha_c00226{height:46.320000px;}
.h6_c00226{height:46.981634px;}
.h5_c00226{height:53.490240px;}
.h4_c00226{height:57.294676px;}
.h3_c00226{height:65.232000px;}
.h7_c00226{height:68.074560px;}
.h2_c00226{height:1201.365000px;}
.h0_c00226{height:1262.835000px;}
.h1_c00226{height:1263.000000px;}
.w3_c00226{width:25.020000px;}
.w2_c00226{width:863.955000px;}
.w0_c00226{width:892.935000px;}
.w1_c00226{width:893.250000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:14.490000px;}
.x2_c00226{left:113.040150px;}
.x2c_c00226{left:123.072150px;}
.xc_c00226{left:133.034550px;}
.x14_c00226{left:140.039850px;}
.x5_c00226{left:148.069350px;}
.x3_c00226{left:162.521550px;}
.x15_c00226{left:167.039850px;}
.x1e_c00226{left:173.034000px;}
.x6_c00226{left:189.729150px;}
.x13_c00226{left:203.381850px;}
.x1b_c00226{left:205.055850px;}
.x2f_c00226{left:206.367150px;}
.x4_c00226{left:210.004350px;}
.x1a_c00226{left:217.043250px;}
.x30_c00226{left:238.871400px;}
.x10_c00226{left:253.649400px;}
.x11_c00226{left:267.653250px;}
.x1f_c00226{left:281.014200px;}
.x20_c00226{left:315.015750px;}
.x2d_c00226{left:352.494900px;}
.xd_c00226{left:356.340000px;}
.x31_c00226{left:376.371450px;}
.x23_c00226{left:385.089150px;}
.xb_c00226{left:396.469800px;}
.x24_c00226{left:398.084850px;}
.x2e_c00226{left:400.013700px;}
.x32_c00226{left:427.096800px;}
.x25_c00226{left:440.096100px;}
.x26_c00226{left:451.093950px;}
.x21_c00226{left:458.491350px;}
.x29_c00226{left:482.069850px;}
.x2a_c00226{left:496.073700px;}
.x9_c00226{left:504.049800px;}
.x16_c00226{left:520.285350px;}
.x2b_c00226{left:540.101100px;}
.x27_c00226{left:544.098600px;}
.xa_c00226{left:547.398900px;}
.x7_c00226{left:556.554900px;}
.x22_c00226{left:558.498000px;}
.x17_c00226{left:570.557400px;}
.x1c_c00226{left:577.594050px;}
.x8_c00226{left:592.389450px;}
.x1d_c00226{left:618.597300px;}
.x18_c00226{left:625.528500px;}
.xe_c00226{left:635.134950px;}
.x28_c00226{left:668.098650px;}
.x19_c00226{left:675.836850px;}
.x12_c00226{left:731.400450px;}
.xf_c00226{left:750.390000px;}
.x33_c00226{left:759.915000px;}
@media print{
.v2_c00226{vertical-align:-21.760000pt;}
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:26.880000pt;}
.lsf_c00226{letter-spacing:0.000000pt;}
.ls12_c00226{letter-spacing:0.236160pt;}
.lsc_c00226{letter-spacing:0.243428pt;}
.ls0_c00226{letter-spacing:0.262400pt;}
.ls1a_c00226{letter-spacing:0.330624pt;}
.ls20_c00226{letter-spacing:0.377856pt;}
.ls1d_c00226{letter-spacing:0.385923pt;}
.lsa_c00226{letter-spacing:0.413547pt;}
.ls15_c00226{letter-spacing:0.425088pt;}
.ls1_c00226{letter-spacing:0.472320pt;}
.ls5_c00226{letter-spacing:0.488064pt;}
.ls11_c00226{letter-spacing:0.519552pt;}
.ls21_c00226{letter-spacing:0.535542pt;}
.lsb_c00226{letter-spacing:0.604480pt;}
.ls18_c00226{letter-spacing:0.614016pt;}
.ls10_c00226{letter-spacing:0.619264pt;}
.ls3_c00226{letter-spacing:0.632913pt;}
.ls13_c00226{letter-spacing:0.661248pt;}
.ls16_c00226{letter-spacing:0.681599pt;}
.ls2_c00226{letter-spacing:0.730284pt;}
.ls19_c00226{letter-spacing:0.855424pt;}
.ls17_c00226{letter-spacing:2.781440pt;}
.ls22_c00226{letter-spacing:2.875904pt;}
.ls1f_c00226{letter-spacing:3.285248pt;}
.lsd_c00226{letter-spacing:4.775680pt;}
.ls1b_c00226{letter-spacing:4.827264pt;}
.ls1e_c00226{letter-spacing:5.120000pt;}
.ls6_c00226{letter-spacing:5.311467pt;}
.ls8_c00226{letter-spacing:5.312000pt;}
.lse_c00226{letter-spacing:5.475484pt;}
.ls14_c00226{letter-spacing:6.176896pt;}
.ls4_c00226{letter-spacing:6.402560pt;}
.ls1c_c00226{letter-spacing:8.953600pt;}
.ls7_c00226{letter-spacing:35.721707pt;}
.ls9_c00226{letter-spacing:48.896000pt;}
.ws3_c00226{word-spacing:-18.705024pt;}
.ws6_c00226{word-spacing:-18.339574pt;}
.ws4_c00226{word-spacing:-17.792000pt;}
.ws1_c00226{word-spacing:-15.720049pt;}
.ws0_c00226{word-spacing:-15.671364pt;}
.ws9_c00226{word-spacing:-15.573992pt;}
.wsa_c00226{word-spacing:-15.281879pt;}
.ws2_c00226{word-spacing:-15.061760pt;}
.ws7_c00226{word-spacing:-14.690790pt;}
.ws5_c00226{word-spacing:-10.319360pt;}
.ws8_c00226{word-spacing:-8.896000pt;}
.wsb_c00226{word-spacing:0.000000pt;}
._4_c00226{margin-left:-6.659712pt;}
._3_c00226{margin-left:-5.720320pt;}
._7_c00226{margin-left:-3.253760pt;}
._6_c00226{margin-left:-2.309120pt;}
._0_c00226{margin-left:-1.154560pt;}
._1_c00226{width:1.091584pt;}
._5_c00226{width:2.046720pt;}
._c_c00226{width:3.829227pt;}
._2_c00226{width:5.457920pt;}
._8_c00226{width:7.032320pt;}
._d_c00226{width:8.960000pt;}
._b_c00226{width:12.032000pt;}
._10_c00226{width:15.040000pt;}
._f_c00226{width:22.400000pt;}
._11_c00226{width:26.176000pt;}
._e_c00226{width:27.072000pt;}
._a_c00226{width:31.296000pt;}
._9_c00226{width:32.259178pt;}
.fs7_c00226{font-size:32.000000pt;}
.fs5_c00226{font-size:37.120000pt;}
.fs4_c00226{font-size:49.920000pt;}
.fs6_c00226{font-size:51.456358pt;}
.fs2_c00226{font-size:52.480000pt;}
.fs8_c00226{font-size:53.333333pt;}
.fs3_c00226{font-size:54.095146pt;}
.fs0_c00226{font-size:64.000000pt;}
.fs1_c00226{font-size:65.969690pt;}
.y0_c00226{bottom:0.000000pt;}
.y33_c00226{bottom:2.773467pt;}
.y32_c00226{bottom:30.884000pt;}
.y1_c00226{bottom:48.000000pt;}
.y31_c00226{bottom:54.760000pt;}
.y30_c00226{bottom:64.681600pt;}
.y2f_c00226{bottom:80.360000pt;}
.y2e_c00226{bottom:85.800000pt;}
.y2d_c00226{bottom:95.720000pt;}
.y2c_c00226{bottom:95.721600pt;}
.y2b_c00226{bottom:111.400000pt;}
.y2a_c00226{bottom:116.840000pt;}
.y29_c00226{bottom:140.520000pt;}
.y28_c00226{bottom:269.480000pt;}
.y27_c00226{bottom:301.480000pt;}
.y26_c00226{bottom:320.360000pt;}
.y25_c00226{bottom:352.360000pt;}
.y24_c00226{bottom:370.920000pt;}
.y23_c00226{bottom:389.480000pt;}
.y22_c00226{bottom:408.360000pt;}
.y21_c00226{bottom:426.920000pt;}
.y20_c00226{bottom:445.800000pt;}
.y1f_c00226{bottom:464.360000pt;}
.y1e_c00226{bottom:496.360000pt;}
.y1d_c00226{bottom:514.920000pt;}
.y1c_c00226{bottom:533.800000pt;}
.y1b_c00226{bottom:552.360000pt;}
.y1a_c00226{bottom:570.920000pt;}
.y19_c00226{bottom:602.920000pt;}
.y18_c00226{bottom:634.920000pt;}
.y17_c00226{bottom:653.800000pt;}
.y16_c00226{bottom:672.360000pt;}
.y15_c00226{bottom:690.920000pt;}
.y14_c00226{bottom:709.800000pt;}
.y13_c00226{bottom:728.360000pt;}
.y12_c00226{bottom:746.920000pt;}
.y11_c00226{bottom:778.920000pt;}
.y10_c00226{bottom:810.920000pt;}
.yf_c00226{bottom:829.481280pt;}
.ye_c00226{bottom:845.159680pt;}
.yd_c00226{bottom:860.523200pt;}
.yc_c00226{bottom:876.201600pt;}
.yb_c00226{bottom:891.880000pt;}
.ya_c00226{bottom:891.881467pt;}
.y9_c00226{bottom:920.679867pt;}
.y8_c00226{bottom:920.681600pt;}
.y6_c00226{bottom:936.356480pt;}
.y7_c00226{bottom:936.360000pt;}
.y5_c00226{bottom:951.720000pt;}
.y4_c00226{bottom:951.721600pt;}
.y3_c00226{bottom:967.400000pt;}
.y2_c00226{bottom:1011.880000pt;}
.h9_c00226{height:17.116000pt;}
.h8_c00226{height:28.992000pt;}
.ha_c00226{height:41.173333pt;}
.h6_c00226{height:41.761453pt;}
.h5_c00226{height:47.546880pt;}
.h4_c00226{height:50.928601pt;}
.h3_c00226{height:57.984000pt;}
.h7_c00226{height:60.510720pt;}
.h2_c00226{height:1067.880000pt;}
.h0_c00226{height:1122.520000pt;}
.h1_c00226{height:1122.666667pt;}
.w3_c00226{width:22.240000pt;}
.w2_c00226{width:767.960000pt;}
.w0_c00226{width:793.720000pt;}
.w1_c00226{width:794.000000pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:12.880000pt;}
.x2_c00226{left:100.480133pt;}
.x2c_c00226{left:109.397467pt;}
.xc_c00226{left:118.252933pt;}
.x14_c00226{left:124.479867pt;}
.x5_c00226{left:131.617200pt;}
.x3_c00226{left:144.463600pt;}
.x15_c00226{left:148.479867pt;}
.x1e_c00226{left:153.808000pt;}
.x6_c00226{left:168.648133pt;}
.x13_c00226{left:180.783867pt;}
.x1b_c00226{left:182.271867pt;}
.x2f_c00226{left:183.437467pt;}
.x4_c00226{left:186.670533pt;}
.x1a_c00226{left:192.927333pt;}
.x30_c00226{left:212.330133pt;}
.x10_c00226{left:225.466133pt;}
.x11_c00226{left:237.914000pt;}
.x1f_c00226{left:249.790400pt;}
.x20_c00226{left:280.014000pt;}
.x2d_c00226{left:313.328800pt;}
.xd_c00226{left:316.746667pt;}
.x31_c00226{left:334.552400pt;}
.x23_c00226{left:342.301467pt;}
.xb_c00226{left:352.417600pt;}
.x24_c00226{left:353.853200pt;}
.x2e_c00226{left:355.567733pt;}
.x32_c00226{left:379.641600pt;}
.x25_c00226{left:391.196533pt;}
.x26_c00226{left:400.972400pt;}
.x21_c00226{left:407.547867pt;}
.x29_c00226{left:428.506533pt;}
.x2a_c00226{left:440.954400pt;}
.x9_c00226{left:448.044267pt;}
.x16_c00226{left:462.475867pt;}
.x2b_c00226{left:480.089867pt;}
.x27_c00226{left:483.643200pt;}
.xa_c00226{left:486.576800pt;}
.x7_c00226{left:494.715467pt;}
.x22_c00226{left:496.442667pt;}
.x17_c00226{left:507.162133pt;}
.x1c_c00226{left:513.416933pt;}
.x8_c00226{left:526.568400pt;}
.x1d_c00226{left:549.864267pt;}
.x18_c00226{left:556.025333pt;}
.xe_c00226{left:564.564400pt;}
.x28_c00226{left:593.865467pt;}
.x19_c00226{left:600.743867pt;}
.x12_c00226{left:650.133733pt;}
.xf_c00226{left:667.013333pt;}
.x33_c00226{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6147c9613669f1f5254ac885.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.134000;font-style:normal;font-weight:normal;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_e16bd4eb4bda46eec49ddc66.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;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:ff3_c00227;src:url('chunks/assets/font_3f3eaca42ca8f318eade56a6.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:0.787000;font-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_c00227{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls9_c00227{letter-spacing:0.000000px;}
.lsf_c00227{letter-spacing:0.265680px;}
.ls2_c00227{letter-spacing:0.318480px;}
.ls11_c00227{letter-spacing:0.318816px;}
.ls10_c00227{letter-spacing:0.425088px;}
.ls12_c00227{letter-spacing:0.478224px;}
.ls1_c00227{letter-spacing:0.531360px;}
.ls6_c00227{letter-spacing:0.543168px;}
.ls13_c00227{letter-spacing:0.584496px;}
.lse_c00227{letter-spacing:0.637632px;}
.ls4_c00227{letter-spacing:5.246280px;}
.ls15_c00227{letter-spacing:5.354928px;}
.lsd_c00227{letter-spacing:5.402160px;}
.ls3_c00227{letter-spacing:5.459400px;}
.lsa_c00227{letter-spacing:5.461200px;}
.ls5_c00227{letter-spacing:5.513160px;}
.ls0_c00227{letter-spacing:5.514336px;}
.lsc_c00227{letter-spacing:5.567472px;}
.lsb_c00227{letter-spacing:5.939424px;}
.ls7_c00227{letter-spacing:5.976000px;}
.ls8_c00227{letter-spacing:6.159920px;}
.ls14_c00227{letter-spacing:39.958272px;}
.sc__c00227{text-shadow:none;}
.sc1_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00227{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc1_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00227{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00227{word-spacing:-22.352544px;}
.ws0_c00227{word-spacing:-21.874320px;}
.ws2_c00227{word-spacing:-21.815280px;}
.ws6_c00227{word-spacing:-21.768048px;}
.ws5_c00227{word-spacing:-16.944480px;}
.ws3_c00227{word-spacing:-16.838208px;}
.ws4_c00227{word-spacing:-16.678800px;}
.ws7_c00227{word-spacing:0.000000px;}
._18_c00227{margin-left:-39.584688px;}
._1_c00227{margin-left:-1.280136px;}
._4_c00227{width:1.003680px;}
._6_c00227{width:2.420640px;}
._0_c00227{width:5.670960px;}
._a_c00227{width:9.210240px;}
._21_c00227{width:10.981440px;}
._3_c00227{width:12.162240px;}
._20_c00227{width:13.224960px;}
._f_c00227{width:15.114240px;}
._e_c00227{width:17.712000px;}
._8_c00227{width:19.128960px;}
._1e_c00227{width:23.084640px;}
._c_c00227{width:24.973920px;}
._14_c00227{width:25.977600px;}
._15_c00227{width:27.316776px;}
._5_c00227{width:28.398240px;}
._16_c00227{width:29.401920px;}
._1a_c00227{width:30.464640px;}
._b_c00227{width:32.649120px;}
._17_c00227{width:39.792960px;}
._11_c00227{width:40.855680px;}
._7_c00227{width:50.755656px;}
._12_c00227{width:52.191360px;}
._1f_c00227{width:55.615680px;}
._10_c00227{width:56.914560px;}
._2_c00227{width:70.552800px;}
._1c_c00227{width:82.537920px;}
._13_c00227{width:99.954720px;}
._1d_c00227{width:140.042880px;}
._1b_c00227{width:158.640480px;}
._9_c00227{width:159.998400px;}
._19_c00227{width:171.747360px;}
._d_c00227{width:186.094080px;}
.fc1_c00227{color:transparent;}
.fc0_c00227{color:rgb(0,0,0);}
.fs2_c00227{font-size:59.040000px;}
.fs4_c00227{font-size:60.000000px;}
.fs3_c00227{font-size:60.857039px;}
.fs0_c00227{font-size:72.000000px;}
.fs1_c00227{font-size:74.215901px;}
.y0_c00227{bottom:0.000000px;}
.y3e_c00227{bottom:3.120150px;}
.y3d_c00227{bottom:34.744500px;}
.y1_c00227{bottom:54.000000px;}
.y3c_c00227{bottom:76.365000px;}
.y37_c00227{bottom:80.685000px;}
.y3b_c00227{bottom:94.005000px;}
.y3a_c00227{bottom:111.285000px;}
.y39_c00227{bottom:128.925000px;}
.y38_c00227{bottom:146.565000px;}
.y36_c00227{bottom:163.845000px;}
.y35_c00227{bottom:181.485000px;}
.y30_c00227{bottom:199.845000px;}
.y2f_c00227{bottom:213.885000px;}
.y34_c00227{bottom:240.525000px;}
.y33_c00227{bottom:258.165000px;}
.y32_c00227{bottom:275.805000px;}
.y31_c00227{bottom:293.085000px;}
.y2e_c00227{bottom:310.725000px;}
.y2d_c00227{bottom:328.005000px;}
.y2c_c00227{bottom:346.365000px;}
.y2b_c00227{bottom:360.765000px;}
.y2a_c00227{bottom:436.365000px;}
.y29_c00227{bottom:453.645000px;}
.y28_c00227{bottom:468.765000px;}
.y27_c00227{bottom:526.725000px;}
.y26_c00227{bottom:544.005000px;}
.y25_c00227{bottom:562.365000px;}
.y20_c00227{bottom:574.965000px;}
.y24_c00227{bottom:580.005000px;}
.y1f_c00227{bottom:589.365000px;}
.y23_c00227{bottom:597.285000px;}
.y22_c00227{bottom:614.925000px;}
.y21_c00227{bottom:632.565000px;}
.y1e_c00227{bottom:649.845000px;}
.y1d_c00227{bottom:667.485000px;}
.y19_c00227{bottom:685.485000px;}
.y18_c00227{bottom:699.885000px;}
.y1c_c00227{bottom:700.965000px;}
.y1b_c00227{bottom:718.605000px;}
.y1a_c00227{bottom:735.885000px;}
.y17_c00227{bottom:753.525000px;}
.y16_c00227{bottom:770.805000px;}
.y15_c00227{bottom:785.925000px;}
.y14_c00227{bottom:820.485000px;}
.y13_c00227{bottom:838.125000px;}
.y12_c00227{bottom:856.125000px;}
.y11_c00227{bottom:873.764850px;}
.yd_c00227{bottom:877.365000px;}
.y10_c00227{bottom:891.405000px;}
.yf_c00227{bottom:908.685000px;}
.ye_c00227{bottom:926.325000px;}
.yc_c00227{bottom:943.605000px;}
.yb_c00227{bottom:961.245000px;}
.y6_c00227{bottom:976.005000px;}
.y4_c00227{bottom:985.725000px;}
.y8_c00227{bottom:997.965000px;}
.ya_c00227{bottom:1003.005000px;}
.y9_c00227{bottom:1004.805000px;}
.y7_c00227{bottom:1033.965000px;}
.y5_c00227{bottom:1051.604850px;}
.y3_c00227{bottom:1085.085000px;}
.y2_c00227{bottom:1138.365000px;}
.h7_c00227{height:19.255500px;}
.h8_c00227{height:46.320000px;}
.h6_c00227{height:46.981634px;}
.h5_c00227{height:53.490240px;}
.h4_c00227{height:57.294676px;}
.h3_c00227{height:65.232000px;}
.h2_c00227{height:1201.365000px;}
.h0_c00227{height:1262.835000px;}
.h1_c00227{height:1263.000000px;}
.w8_c00227{width:25.020000px;}
.w7_c00227{width:96.480000px;}
.w6_c00227{width:127.800000px;}
.w5_c00227{width:132.120000px;}
.w3_c00227{width:175.680000px;}
.w4_c00227{width:198.000000px;}
.w2_c00227{width:863.955000px;}
.w0_c00227{width:892.935000px;}
.w1_c00227{width:893.250000px;}
.x0_c00227{left:0.000000px;}
.x17_c00227{left:10.829850px;}
.x1_c00227{left:14.490000px;}
.x10_c00227{left:33.000000px;}
.x1a_c00227{left:42.000000px;}
.xf_c00227{left:45.000000px;}
.x12_c00227{left:51.000000px;}
.x15_c00227{left:54.863100px;}
.x14_c00227{left:60.000000px;}
.x18_c00227{left:62.488050px;}
.x11_c00227{left:69.271350px;}
.x19_c00227{left:73.318050px;}
.xe_c00227{left:87.000150px;}
.x5_c00227{left:95.850000px;}
.x2_c00227{left:113.040150px;}
.xa_c00227{left:117.000000px;}
.x13_c00227{left:119.981400px;}
.x1b_c00227{left:121.470150px;}
.xc_c00227{left:123.606300px;}
.x16_c00227{left:130.811400px;}
.x1c_c00227{left:132.300000px;}
.x3_c00227{left:162.521550px;}
.x6_c00227{left:171.498000px;}
.x8_c00227{left:198.000150px;}
.x4_c00227{left:210.004350px;}
.x7_c00227{left:272.250000px;}
.x9_c00227{left:470.970000px;}
.xb_c00227{left:603.810000px;}
.xd_c00227{left:732.330000px;}
.x1d_c00227{left:759.915000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls9_c00227{letter-spacing:0.000000pt;}
.lsf_c00227{letter-spacing:0.236160pt;}
.ls2_c00227{letter-spacing:0.283093pt;}
.ls11_c00227{letter-spacing:0.283392pt;}
.ls10_c00227{letter-spacing:0.377856pt;}
.ls12_c00227{letter-spacing:0.425088pt;}
.ls1_c00227{letter-spacing:0.472320pt;}
.ls6_c00227{letter-spacing:0.482816pt;}
.ls13_c00227{letter-spacing:0.519552pt;}
.lse_c00227{letter-spacing:0.566784pt;}
.ls4_c00227{letter-spacing:4.663360pt;}
.ls15_c00227{letter-spacing:4.759936pt;}
.lsd_c00227{letter-spacing:4.801920pt;}
.ls3_c00227{letter-spacing:4.852800pt;}
.lsa_c00227{letter-spacing:4.854400pt;}
.ls5_c00227{letter-spacing:4.900587pt;}
.ls0_c00227{letter-spacing:4.901632pt;}
.lsc_c00227{letter-spacing:4.948864pt;}
.lsb_c00227{letter-spacing:5.279488pt;}
.ls7_c00227{letter-spacing:5.312000pt;}
.ls8_c00227{letter-spacing:5.475484pt;}
.ls14_c00227{letter-spacing:35.518464pt;}
.ws1_c00227{word-spacing:-19.868928pt;}
.ws0_c00227{word-spacing:-19.443840pt;}
.ws2_c00227{word-spacing:-19.391360pt;}
.ws6_c00227{word-spacing:-19.349376pt;}
.ws5_c00227{word-spacing:-15.061760pt;}
.ws3_c00227{word-spacing:-14.967296pt;}
.ws4_c00227{word-spacing:-14.825600pt;}
.ws7_c00227{word-spacing:0.000000pt;}
._18_c00227{margin-left:-35.186389pt;}
._1_c00227{margin-left:-1.137899pt;}
._4_c00227{width:0.892160pt;}
._6_c00227{width:2.151680pt;}
._0_c00227{width:5.040853pt;}
._a_c00227{width:8.186880pt;}
._21_c00227{width:9.761280pt;}
._3_c00227{width:10.810880pt;}
._20_c00227{width:11.755520pt;}
._f_c00227{width:13.434880pt;}
._e_c00227{width:15.744000pt;}
._8_c00227{width:17.003520pt;}
._1e_c00227{width:20.519680pt;}
._c_c00227{width:22.199040pt;}
._14_c00227{width:23.091200pt;}
._15_c00227{width:24.281579pt;}
._5_c00227{width:25.242880pt;}
._16_c00227{width:26.135040pt;}
._1a_c00227{width:27.079680pt;}
._b_c00227{width:29.021440pt;}
._17_c00227{width:35.371520pt;}
._11_c00227{width:36.316160pt;}
._7_c00227{width:45.116139pt;}
._12_c00227{width:46.392320pt;}
._1f_c00227{width:49.436160pt;}
._10_c00227{width:50.590720pt;}
._2_c00227{width:62.713600pt;}
._1c_c00227{width:73.367040pt;}
._13_c00227{width:88.848640pt;}
._1d_c00227{width:124.482560pt;}
._1b_c00227{width:141.013760pt;}
._9_c00227{width:142.220800pt;}
._19_c00227{width:152.664320pt;}
._d_c00227{width:165.416960pt;}
.fs2_c00227{font-size:52.480000pt;}
.fs4_c00227{font-size:53.333333pt;}
.fs3_c00227{font-size:54.095146pt;}
.fs0_c00227{font-size:64.000000pt;}
.fs1_c00227{font-size:65.969690pt;}
.y0_c00227{bottom:0.000000pt;}
.y3e_c00227{bottom:2.773467pt;}
.y3d_c00227{bottom:30.884000pt;}
.y1_c00227{bottom:48.000000pt;}
.y3c_c00227{bottom:67.880000pt;}
.y37_c00227{bottom:71.720000pt;}
.y3b_c00227{bottom:83.560000pt;}
.y3a_c00227{bottom:98.920000pt;}
.y39_c00227{bottom:114.600000pt;}
.y38_c00227{bottom:130.280000pt;}
.y36_c00227{bottom:145.640000pt;}
.y35_c00227{bottom:161.320000pt;}
.y30_c00227{bottom:177.640000pt;}
.y2f_c00227{bottom:190.120000pt;}
.y34_c00227{bottom:213.800000pt;}
.y33_c00227{bottom:229.480000pt;}
.y32_c00227{bottom:245.160000pt;}
.y31_c00227{bottom:260.520000pt;}
.y2e_c00227{bottom:276.200000pt;}
.y2d_c00227{bottom:291.560000pt;}
.y2c_c00227{bottom:307.880000pt;}
.y2b_c00227{bottom:320.680000pt;}
.y2a_c00227{bottom:387.880000pt;}
.y29_c00227{bottom:403.240000pt;}
.y28_c00227{bottom:416.680000pt;}
.y27_c00227{bottom:468.200000pt;}
.y26_c00227{bottom:483.560000pt;}
.y25_c00227{bottom:499.880000pt;}
.y20_c00227{bottom:511.080000pt;}
.y24_c00227{bottom:515.560000pt;}
.y1f_c00227{bottom:523.880000pt;}
.y23_c00227{bottom:530.920000pt;}
.y22_c00227{bottom:546.600000pt;}
.y21_c00227{bottom:562.280000pt;}
.y1e_c00227{bottom:577.640000pt;}
.y1d_c00227{bottom:593.320000pt;}
.y19_c00227{bottom:609.320000pt;}
.y18_c00227{bottom:622.120000pt;}
.y1c_c00227{bottom:623.080000pt;}
.y1b_c00227{bottom:638.760000pt;}
.y1a_c00227{bottom:654.120000pt;}
.y17_c00227{bottom:669.800000pt;}
.y16_c00227{bottom:685.160000pt;}
.y15_c00227{bottom:698.600000pt;}
.y14_c00227{bottom:729.320000pt;}
.y13_c00227{bottom:745.000000pt;}
.y12_c00227{bottom:761.000000pt;}
.y11_c00227{bottom:776.679867pt;}
.yd_c00227{bottom:779.880000pt;}
.y10_c00227{bottom:792.360000pt;}
.yf_c00227{bottom:807.720000pt;}
.ye_c00227{bottom:823.400000pt;}
.yc_c00227{bottom:838.760000pt;}
.yb_c00227{bottom:854.440000pt;}
.y6_c00227{bottom:867.560000pt;}
.y4_c00227{bottom:876.200000pt;}
.y8_c00227{bottom:887.080000pt;}
.ya_c00227{bottom:891.560000pt;}
.y9_c00227{bottom:893.160000pt;}
.y7_c00227{bottom:919.080000pt;}
.y5_c00227{bottom:934.759867pt;}
.y3_c00227{bottom:964.520000pt;}
.y2_c00227{bottom:1011.880000pt;}
.h7_c00227{height:17.116000pt;}
.h8_c00227{height:41.173333pt;}
.h6_c00227{height:41.761453pt;}
.h5_c00227{height:47.546880pt;}
.h4_c00227{height:50.928601pt;}
.h3_c00227{height:57.984000pt;}
.h2_c00227{height:1067.880000pt;}
.h0_c00227{height:1122.520000pt;}
.h1_c00227{height:1122.666667pt;}
.w8_c00227{width:22.240000pt;}
.w7_c00227{width:85.760000pt;}
.w6_c00227{width:113.600000pt;}
.w5_c00227{width:117.440000pt;}
.w3_c00227{width:156.160000pt;}
.w4_c00227{width:176.000000pt;}
.w2_c00227{width:767.960000pt;}
.w0_c00227{width:793.720000pt;}
.w1_c00227{width:794.000000pt;}
.x0_c00227{left:0.000000pt;}
.x17_c00227{left:9.626533pt;}
.x1_c00227{left:12.880000pt;}
.x10_c00227{left:29.333333pt;}
.x1a_c00227{left:37.333333pt;}
.xf_c00227{left:40.000000pt;}
.x12_c00227{left:45.333333pt;}
.x15_c00227{left:48.767200pt;}
.x14_c00227{left:53.333333pt;}
.x18_c00227{left:55.544933pt;}
.x11_c00227{left:61.574533pt;}
.x19_c00227{left:65.171600pt;}
.xe_c00227{left:77.333467pt;}
.x5_c00227{left:85.200000pt;}
.x2_c00227{left:100.480133pt;}
.xa_c00227{left:104.000000pt;}
.x13_c00227{left:106.650133pt;}
.x1b_c00227{left:107.973467pt;}
.xc_c00227{left:109.872267pt;}
.x16_c00227{left:116.276800pt;}
.x1c_c00227{left:117.600000pt;}
.x3_c00227{left:144.463600pt;}
.x6_c00227{left:152.442667pt;}
.x8_c00227{left:176.000133pt;}
.x4_c00227{left:186.670533pt;}
.x7_c00227{left:242.000000pt;}
.x9_c00227{left:418.640000pt;}
.xb_c00227{left:536.720000pt;}
.xd_c00227{left:650.960000pt;}
.x1d_c00227{left:675.480000pt;}
}





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

.ir_c00228:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00228;src:url('chunks/assets/font_a068351fa13af5ad43830cfc.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_9a9f7cc056c6af3e70faa9fb.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;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:ff3_c00228;src:url('chunks/assets/font_c282e5ee7dae91d5b4448b89.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_159307c5700e277a785f3d52.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:0.787000;font-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_c00228{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00228{vertical-align:-30.240000px;}
.v3_c00228{vertical-align:-24.480000px;}
.v0_c00228{vertical-align:0.000000px;}
.v1_c00228{vertical-align:30.240000px;}
.ls8_c00228{letter-spacing:-0.179568px;}
.ls7_c00228{letter-spacing:0.000000px;}
.ls9_c00228{letter-spacing:0.144000px;}
.ls5_c00228{letter-spacing:0.236160px;}
.ls12_c00228{letter-spacing:0.265680px;}
.ls11_c00228{letter-spacing:0.273857px;}
.ls2_c00228{letter-spacing:0.295200px;}
.lsb_c00228{letter-spacing:0.318816px;}
.ls16_c00228{letter-spacing:0.371952px;}
.lsd_c00228{letter-spacing:0.425088px;}
.ls19_c00228{letter-spacing:0.478224px;}
.ls3_c00228{letter-spacing:0.531360px;}
.lsf_c00228{letter-spacing:0.547713px;}
.ls10_c00228{letter-spacing:0.602485px;}
.ls1_c00228{letter-spacing:0.610800px;}
.ls4_c00228{letter-spacing:0.712027px;}
.ls15_c00228{letter-spacing:0.718113px;}
.ls18_c00228{letter-spacing:0.743904px;}
.ls13_c00228{letter-spacing:0.766799px;}
.lsa_c00228{letter-spacing:5.278176px;}
.ls0_c00228{letter-spacing:5.976000px;}
.ls6_c00228{letter-spacing:6.159920px;}
.ls17_c00228{letter-spacing:7.273728px;}
.lsc_c00228{letter-spacing:7.498080px;}
.lse_c00228{letter-spacing:12.262608px;}
.ls14_c00228{letter-spacing:17.292816px;}
.sc__c00228{text-shadow:none;}
.sc1_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00228{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc1_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00228{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00228{word-spacing:-25.992000px;}
.ws0_c00228{word-spacing:-20.016000px;}
.ws5_c00228{word-spacing:-17.685056px;}
.ws6_c00228{word-spacing:-17.636370px;}
.ws4_c00228{word-spacing:-17.465970px;}
.ws7_c00228{word-spacing:-16.944480px;}
.ws1_c00228{word-spacing:-11.429712px;}
.ws3_c00228{word-spacing:-10.152000px;}
.ws8_c00228{word-spacing:0.000000px;}
._14_c00228{margin-left:-17.055360px;}
._15_c00228{margin-left:-15.681600px;}
._12_c00228{margin-left:-11.859840px;}
._13_c00228{margin-left:-10.601280px;}
._11_c00228{margin-left:-7.195680px;}
._f_c00228{margin-left:-5.843520px;}
._e_c00228{margin-left:-4.775040px;}
._10_c00228{margin-left:-3.492000px;}
._d_c00228{margin-left:-1.727400px;}
._7_c00228{width:1.163616px;}
._2_c00228{width:3.168000px;}
._4_c00228{width:5.040000px;}
._8_c00228{width:6.768000px;}
._b_c00228{width:8.208000px;}
._6_c00228{width:9.720000px;}
._5_c00228{width:11.160000px;}
._1_c00228{width:13.243367px;}
._0_c00228{width:14.546317px;}
._9_c00228{width:18.216000px;}
._a_c00228{width:19.337246px;}
._c_c00228{width:21.240000px;}
._3_c00228{width:22.320000px;}
.fc0_c00228{color:rgb(0,0,0);}
.fs3_c00228{font-size:36.000000px;}
.fs2_c00228{font-size:41.760000px;}
.fs4_c00228{font-size:59.040000px;}
.fs6_c00228{font-size:60.000000px;}
.fs5_c00228{font-size:60.857039px;}
.fs0_c00228{font-size:72.000000px;}
.fs1_c00228{font-size:74.215901px;}
.y0_c00228{bottom:0.000000px;}
.y3c_c00228{bottom:3.120150px;}
.y3b_c00228{bottom:34.744500px;}
.y1_c00228{bottom:54.000000px;}
.y3a_c00228{bottom:61.605000px;}
.y39_c00228{bottom:78.885000px;}
.y38_c00228{bottom:90.405000px;}
.y37_c00228{bottom:96.525000px;}
.y36_c00228{bottom:113.805000px;}
.y35_c00228{bottom:131.445000px;}
.y34_c00228{bottom:142.961040px;}
.y33_c00228{bottom:160.245000px;}
.y32_c00228{bottom:166.365000px;}
.y31_c00228{bottom:177.882840px;}
.y30_c00228{bottom:195.521040px;}
.y2f_c00228{bottom:212.805000px;}
.y2e_c00228{bottom:212.806800px;}
.y2d_c00228{bottom:236.565000px;}
.y2c_c00228{bottom:247.725000px;}
.y2b_c00228{bottom:253.845000px;}
.y2a_c00228{bottom:265.365000px;}
.y29_c00228{bottom:271.485000px;}
.y27_c00228{bottom:283.001040px;}
.y28_c00228{bottom:283.005000px;}
.y26_c00228{bottom:300.285000px;}
.y25_c00228{bottom:306.405000px;}
.y24_c00228{bottom:317.926800px;}
.y23_c00228{bottom:341.685000px;}
.y22_c00228{bottom:352.845000px;}
.y21_c00228{bottom:376.605000px;}
.y20_c00228{bottom:403.245000px;}
.y1f_c00228{bottom:529.245000px;}
.y1e_c00228{bottom:550.485000px;}
.y1d_c00228{bottom:571.365000px;}
.y1c_c00228{bottom:592.245000px;}
.y1b_c00228{bottom:613.485000px;}
.y1a_c00228{bottom:634.365000px;}
.y19_c00228{bottom:655.605000px;}
.y18_c00228{bottom:676.485000px;}
.y17_c00228{bottom:697.365000px;}
.y16_c00228{bottom:733.365000px;}
.y14_c00228{bottom:755.325000px;}
.y15_c00228{bottom:762.885000px;}
.y13_c00228{bottom:775.845000px;}
.y12_c00228{bottom:797.085000px;}
.y11_c00228{bottom:817.965000px;}
.y10_c00228{bottom:838.845000px;}
.yf_c00228{bottom:860.085000px;}
.ye_c00228{bottom:880.965000px;}
.yc_c00228{bottom:901.845000px;}
.yd_c00228{bottom:909.405000px;}
.ya_c00228{bottom:923.085000px;}
.yb_c00228{bottom:930.645000px;}
.y9_c00228{bottom:943.965000px;}
.y8_c00228{bottom:979.965000px;}
.y7_c00228{bottom:1000.845000px;}
.y6_c00228{bottom:1022.085000px;}
.y5_c00228{bottom:1042.965000px;}
.y4_c00228{bottom:1063.845000px;}
.y3_c00228{bottom:1085.085000px;}
.y2_c00228{bottom:1138.365000px;}
.hb_c00228{height:19.255500px;}
.h8_c00228{height:32.616000px;}
.h6_c00228{height:37.834560px;}
.hc_c00228{height:46.320000px;}
.h9_c00228{height:46.981634px;}
.ha_c00228{height:53.490240px;}
.h4_c00228{height:57.294676px;}
.h3_c00228{height:65.232000px;}
.h7_c00228{height:67.239607px;}
.h5_c00228{height:68.074560px;}
.h2_c00228{height:1201.365000px;}
.h0_c00228{height:1262.835000px;}
.h1_c00228{height:1263.000000px;}
.w3_c00228{width:25.020000px;}
.w2_c00228{width:863.955000px;}
.w0_c00228{width:892.935000px;}
.w1_c00228{width:893.250000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:14.490000px;}
.x2_c00228{left:113.040150px;}
.x18_c00228{left:119.034000px;}
.x38_c00228{left:127.217700px;}
.x32_c00228{left:137.204250px;}
.x1e_c00228{left:146.160000px;}
.xf_c00228{left:150.120000px;}
.x3e_c00228{left:151.381650px;}
.x3_c00228{left:162.521550px;}
.x39_c00228{left:165.556650px;}
.x30_c00228{left:190.042650px;}
.x35_c00228{left:199.710600px;}
.x29_c00228{left:208.077000px;}
.x4_c00228{left:210.004350px;}
.x3a_c00228{left:215.594250px;}
.x14_c00228{left:239.723850px;}
.x36_c00228{left:243.059700px;}
.x23_c00228{left:248.625000px;}
.x2a_c00228{left:252.104400px;}
.x5_c00228{left:260.085600px;}
.x1f_c00228{left:280.059000px;}
.xb_c00228{left:291.108750px;}
.x20_c00228{left:295.052850px;}
.x10_c00228{left:297.072900px;}
.x15_c00228{left:306.736800px;}
.x2b_c00228{left:311.226150px;}
.x21_c00228{left:314.060700px;}
.xc_c00228{left:317.100150px;}
.x16_c00228{left:321.299250px;}
.x31_c00228{left:323.996250px;}
.x8_c00228{left:331.381350px;}
.x22_c00228{left:334.058400px;}
.x25_c00228{left:337.617900px;}
.x3c_c00228{left:346.076250px;}
.x9_c00228{left:367.953000px;}
.x11_c00228{left:379.080000px;}
.x3d_c00228{left:389.425350px;}
.x26_c00228{left:393.835650px;}
.x12_c00228{left:395.741100px;}
.x13_c00228{left:402.003300px;}
.x33_c00228{left:437.401950px;}
.x24_c00228{left:440.637150px;}
.x37_c00228{left:442.237050px;}
.x2c_c00228{left:496.824900px;}
.x19_c00228{left:508.923300px;}
.xa_c00228{left:510.371250px;}
.x2d_c00228{left:512.728650px;}
.x6_c00228{left:514.732800px;}
.x17_c00228{left:540.446400px;}
.x1c_c00228{left:550.067550px;}
.x7_c00228{left:554.746200px;}
.x1d_c00228{left:565.061250px;}
.x34_c00228{left:574.417950px;}
.x27_c00228{left:604.813800px;}
.x28_c00228{left:630.805350px;}
.x2e_c00228{left:666.599550px;}
.xd_c00228{left:677.695200px;}
.x2f_c00228{left:687.391500px;}
.x1a_c00228{left:688.490850px;}
.x3b_c00228{left:717.893100px;}
.x1b_c00228{left:728.504100px;}
.xe_c00228{left:738.720000px;}
.x3f_c00228{left:759.915000px;}
@media print{
.v2_c00228{vertical-align:-26.880000pt;}
.v3_c00228{vertical-align:-21.760000pt;}
.v0_c00228{vertical-align:0.000000pt;}
.v1_c00228{vertical-align:26.880000pt;}
.ls8_c00228{letter-spacing:-0.159616pt;}
.ls7_c00228{letter-spacing:0.000000pt;}
.ls9_c00228{letter-spacing:0.128000pt;}
.ls5_c00228{letter-spacing:0.209920pt;}
.ls12_c00228{letter-spacing:0.236160pt;}
.ls11_c00228{letter-spacing:0.243428pt;}
.ls2_c00228{letter-spacing:0.262400pt;}
.lsb_c00228{letter-spacing:0.283392pt;}
.ls16_c00228{letter-spacing:0.330624pt;}
.lsd_c00228{letter-spacing:0.377856pt;}
.ls19_c00228{letter-spacing:0.425088pt;}
.ls3_c00228{letter-spacing:0.472320pt;}
.lsf_c00228{letter-spacing:0.486856pt;}
.ls10_c00228{letter-spacing:0.535542pt;}
.ls1_c00228{letter-spacing:0.542933pt;}
.ls4_c00228{letter-spacing:0.632913pt;}
.ls15_c00228{letter-spacing:0.638323pt;}
.ls18_c00228{letter-spacing:0.661248pt;}
.ls13_c00228{letter-spacing:0.681599pt;}
.lsa_c00228{letter-spacing:4.691712pt;}
.ls0_c00228{letter-spacing:5.312000pt;}
.ls6_c00228{letter-spacing:5.475484pt;}
.ls17_c00228{letter-spacing:6.465536pt;}
.lsc_c00228{letter-spacing:6.664960pt;}
.lse_c00228{letter-spacing:10.900096pt;}
.ls14_c00228{letter-spacing:15.371392pt;}
.ws2_c00228{word-spacing:-23.104000pt;}
.ws0_c00228{word-spacing:-17.792000pt;}
.ws5_c00228{word-spacing:-15.720049pt;}
.ws6_c00228{word-spacing:-15.676773pt;}
.ws4_c00228{word-spacing:-15.525307pt;}
.ws7_c00228{word-spacing:-15.061760pt;}
.ws1_c00228{word-spacing:-10.159744pt;}
.ws3_c00228{word-spacing:-9.024000pt;}
.ws8_c00228{word-spacing:0.000000pt;}
._14_c00228{margin-left:-15.160320pt;}
._15_c00228{margin-left:-13.939200pt;}
._12_c00228{margin-left:-10.542080pt;}
._13_c00228{margin-left:-9.423360pt;}
._11_c00228{margin-left:-6.396160pt;}
._f_c00228{margin-left:-5.194240pt;}
._e_c00228{margin-left:-4.244480pt;}
._10_c00228{margin-left:-3.104000pt;}
._d_c00228{margin-left:-1.535467pt;}
._7_c00228{width:1.034325pt;}
._2_c00228{width:2.816000pt;}
._4_c00228{width:4.480000pt;}
._8_c00228{width:6.016000pt;}
._b_c00228{width:7.296000pt;}
._6_c00228{width:8.640000pt;}
._5_c00228{width:9.920000pt;}
._1_c00228{width:11.771882pt;}
._0_c00228{width:12.930059pt;}
._9_c00228{width:16.192000pt;}
._a_c00228{width:17.188663pt;}
._c_c00228{width:18.880000pt;}
._3_c00228{width:19.840000pt;}
.fs3_c00228{font-size:32.000000pt;}
.fs2_c00228{font-size:37.120000pt;}
.fs4_c00228{font-size:52.480000pt;}
.fs6_c00228{font-size:53.333333pt;}
.fs5_c00228{font-size:54.095146pt;}
.fs0_c00228{font-size:64.000000pt;}
.fs1_c00228{font-size:65.969690pt;}
.y0_c00228{bottom:0.000000pt;}
.y3c_c00228{bottom:2.773467pt;}
.y3b_c00228{bottom:30.884000pt;}
.y1_c00228{bottom:48.000000pt;}
.y3a_c00228{bottom:54.760000pt;}
.y39_c00228{bottom:70.120000pt;}
.y38_c00228{bottom:80.360000pt;}
.y37_c00228{bottom:85.800000pt;}
.y36_c00228{bottom:101.160000pt;}
.y35_c00228{bottom:116.840000pt;}
.y34_c00228{bottom:127.076480pt;}
.y33_c00228{bottom:142.440000pt;}
.y32_c00228{bottom:147.880000pt;}
.y31_c00228{bottom:158.118080pt;}
.y30_c00228{bottom:173.796480pt;}
.y2f_c00228{bottom:189.160000pt;}
.y2e_c00228{bottom:189.161600pt;}
.y2d_c00228{bottom:210.280000pt;}
.y2c_c00228{bottom:220.200000pt;}
.y2b_c00228{bottom:225.640000pt;}
.y2a_c00228{bottom:235.880000pt;}
.y29_c00228{bottom:241.320000pt;}
.y27_c00228{bottom:251.556480pt;}
.y28_c00228{bottom:251.560000pt;}
.y26_c00228{bottom:266.920000pt;}
.y25_c00228{bottom:272.360000pt;}
.y24_c00228{bottom:282.601600pt;}
.y23_c00228{bottom:303.720000pt;}
.y22_c00228{bottom:313.640000pt;}
.y21_c00228{bottom:334.760000pt;}
.y20_c00228{bottom:358.440000pt;}
.y1f_c00228{bottom:470.440000pt;}
.y1e_c00228{bottom:489.320000pt;}
.y1d_c00228{bottom:507.880000pt;}
.y1c_c00228{bottom:526.440000pt;}
.y1b_c00228{bottom:545.320000pt;}
.y1a_c00228{bottom:563.880000pt;}
.y19_c00228{bottom:582.760000pt;}
.y18_c00228{bottom:601.320000pt;}
.y17_c00228{bottom:619.880000pt;}
.y16_c00228{bottom:651.880000pt;}
.y14_c00228{bottom:671.400000pt;}
.y15_c00228{bottom:678.120000pt;}
.y13_c00228{bottom:689.640000pt;}
.y12_c00228{bottom:708.520000pt;}
.y11_c00228{bottom:727.080000pt;}
.y10_c00228{bottom:745.640000pt;}
.yf_c00228{bottom:764.520000pt;}
.ye_c00228{bottom:783.080000pt;}
.yc_c00228{bottom:801.640000pt;}
.yd_c00228{bottom:808.360000pt;}
.ya_c00228{bottom:820.520000pt;}
.yb_c00228{bottom:827.240000pt;}
.y9_c00228{bottom:839.080000pt;}
.y8_c00228{bottom:871.080000pt;}
.y7_c00228{bottom:889.640000pt;}
.y6_c00228{bottom:908.520000pt;}
.y5_c00228{bottom:927.080000pt;}
.y4_c00228{bottom:945.640000pt;}
.y3_c00228{bottom:964.520000pt;}
.y2_c00228{bottom:1011.880000pt;}
.hb_c00228{height:17.116000pt;}
.h8_c00228{height:28.992000pt;}
.h6_c00228{height:33.630720pt;}
.hc_c00228{height:41.173333pt;}
.h9_c00228{height:41.761453pt;}
.ha_c00228{height:47.546880pt;}
.h4_c00228{height:50.928601pt;}
.h3_c00228{height:57.984000pt;}
.h7_c00228{height:59.768539pt;}
.h5_c00228{height:60.510720pt;}
.h2_c00228{height:1067.880000pt;}
.h0_c00228{height:1122.520000pt;}
.h1_c00228{height:1122.666667pt;}
.w3_c00228{width:22.240000pt;}
.w2_c00228{width:767.960000pt;}
.w0_c00228{width:793.720000pt;}
.w1_c00228{width:794.000000pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:12.880000pt;}
.x2_c00228{left:100.480133pt;}
.x18_c00228{left:105.808000pt;}
.x38_c00228{left:113.082400pt;}
.x32_c00228{left:121.959333pt;}
.x1e_c00228{left:129.920000pt;}
.xf_c00228{left:133.440000pt;}
.x3e_c00228{left:134.561467pt;}
.x3_c00228{left:144.463600pt;}
.x39_c00228{left:147.161467pt;}
.x30_c00228{left:168.926800pt;}
.x35_c00228{left:177.520533pt;}
.x29_c00228{left:184.957333pt;}
.x4_c00228{left:186.670533pt;}
.x3a_c00228{left:191.639333pt;}
.x14_c00228{left:213.087867pt;}
.x36_c00228{left:216.053067pt;}
.x23_c00228{left:221.000000pt;}
.x2a_c00228{left:224.092800pt;}
.x5_c00228{left:231.187200pt;}
.x1f_c00228{left:248.941333pt;}
.xb_c00228{left:258.763333pt;}
.x20_c00228{left:262.269200pt;}
.x10_c00228{left:264.064800pt;}
.x15_c00228{left:272.654933pt;}
.x2b_c00228{left:276.645467pt;}
.x21_c00228{left:279.165067pt;}
.xc_c00228{left:281.866800pt;}
.x16_c00228{left:285.599333pt;}
.x31_c00228{left:287.996667pt;}
.x8_c00228{left:294.561200pt;}
.x22_c00228{left:296.940800pt;}
.x25_c00228{left:300.104800pt;}
.x3c_c00228{left:307.623333pt;}
.x9_c00228{left:327.069333pt;}
.x11_c00228{left:336.960000pt;}
.x3d_c00228{left:346.155867pt;}
.x26_c00228{left:350.076133pt;}
.x12_c00228{left:351.769867pt;}
.x13_c00228{left:357.336267pt;}
.x33_c00228{left:388.801733pt;}
.x24_c00228{left:391.677467pt;}
.x37_c00228{left:393.099600pt;}
.x2c_c00228{left:441.622133pt;}
.x19_c00228{left:452.376267pt;}
.xa_c00228{left:453.663333pt;}
.x2d_c00228{left:455.758800pt;}
.x6_c00228{left:457.540267pt;}
.x17_c00228{left:480.396800pt;}
.x1c_c00228{left:488.948933pt;}
.x7_c00228{left:493.107733pt;}
.x1d_c00228{left:502.276667pt;}
.x34_c00228{left:510.593733pt;}
.x27_c00228{left:537.612267pt;}
.x28_c00228{left:560.715867pt;}
.x2e_c00228{left:592.532933pt;}
.xd_c00228{left:602.395733pt;}
.x2f_c00228{left:611.014667pt;}
.x1a_c00228{left:611.991867pt;}
.x3b_c00228{left:638.127200pt;}
.x1b_c00228{left:647.559200pt;}
.xe_c00228{left:656.640000pt;}
.x3f_c00228{left:675.480000pt;}
}





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

.ir_c00229:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00229;src:url('chunks/assets/font_c1231d1c2379889987dc0978.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_939b43cea79732b0f0fc2620.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;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:ff3_c00229;src:url('chunks/assets/font_4ecbfa878a66289fd8602f24.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:0.787000;font-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_c00229{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00229{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00229{vertical-align:-24.480000px;}
.v0_c00229{vertical-align:0.000000px;}
.v1_c00229{vertical-align:30.240000px;}
.ls6_c00229{letter-spacing:-0.179568px;}
.ls4_c00229{letter-spacing:0.000000px;}
.ls7_c00229{letter-spacing:0.144000px;}
.lsc_c00229{letter-spacing:0.202464px;}
.ls1_c00229{letter-spacing:0.238560px;}
.lsd_c00229{letter-spacing:0.239760px;}
.ls9_c00229{letter-spacing:0.265680px;}
.lsa_c00229{letter-spacing:0.399600px;}
.lsb_c00229{letter-spacing:0.450342px;}
.ls8_c00229{letter-spacing:0.766799px;}
.ls5_c00229{letter-spacing:5.335200px;}
.ls2_c00229{letter-spacing:5.976000px;}
.ls0_c00229{letter-spacing:5.982600px;}
.ls3_c00229{letter-spacing:6.159920px;}
.sc__c00229{text-shadow:none;}
.sc1_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00229{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc1_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00229{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00229{word-spacing:-20.947680px;}
.ws1_c00229{word-spacing:-20.016000px;}
.ws4_c00229{word-spacing:-17.685056px;}
.ws5_c00229{word-spacing:-15.718037px;}
.ws6_c00229{word-spacing:-15.051600px;}
.ws2_c00229{word-spacing:-11.429712px;}
.ws3_c00229{word-spacing:-10.152000px;}
.ws7_c00229{word-spacing:0.000000px;}
._4_c00229{margin-left:-1.118880px;}
._3_c00229{width:1.298880px;}
._2_c00229{width:4.320000px;}
._0_c00229{width:6.984000px;}
._1_c00229{width:2399.976000px;}
.fc0_c00229{color:rgb(0,0,0);}
.fs4_c00229{font-size:36.000000px;}
.fs3_c00229{font-size:41.760000px;}
.fs7_c00229{font-size:53.280000px;}
.fs8_c00229{font-size:54.919767px;}
.fs2_c00229{font-size:56.160000px;}
.fs5_c00229{font-size:59.040000px;}
.fs9_c00229{font-size:60.000000px;}
.fs6_c00229{font-size:60.857039px;}
.fs0_c00229{font-size:72.000000px;}
.fs1_c00229{font-size:74.215901px;}
.y0_c00229{bottom:0.000000px;}
.y1e_c00229{bottom:3.120150px;}
.y19_c00229{bottom:19.080000px;}
.y1c_c00229{bottom:19.440000px;}
.y18_c00229{bottom:34.560000px;}
.y1d_c00229{bottom:34.744500px;}
.y1b_c00229{bottom:35.280000px;}
.y1_c00229{bottom:54.000000px;}
.y17_c00229{bottom:55.485000px;}
.y16_c00229{bottom:61.605000px;}
.y15_c00229{bottom:88.245000px;}
.y14_c00229{bottom:205.965000px;}
.y13_c00229{bottom:241.965000px;}
.y12_c00229{bottom:277.965000px;}
.y11_c00229{bottom:313.965000px;}
.y10_c00229{bottom:349.965000px;}
.yf_c00229{bottom:385.965000px;}
.ye_c00229{bottom:421.965000px;}
.yd_c00229{bottom:457.965000px;}
.yc_c00229{bottom:493.965000px;}
.yb_c00229{bottom:529.965000px;}
.ya_c00229{bottom:565.965000px;}
.y9_c00229{bottom:601.965000px;}
.y1a_c00229{bottom:613.485000px;}
.y8_c00229{bottom:634.365000px;}
.y7_c00229{bottom:955.845000px;}
.y6_c00229{bottom:991.845000px;}
.y5_c00229{bottom:1013.085000px;}
.y4_c00229{bottom:1049.085000px;}
.y3_c00229{bottom:1085.085000px;}
.y2_c00229{bottom:1138.365000px;}
.hd_c00229{height:19.255500px;}
.h6_c00229{height:32.616000px;}
.hb_c00229{height:42.398060px;}
.he_c00229{height:46.320000px;}
.h7_c00229{height:46.981634px;}
.h9_c00229{height:47.160000px;}
.hc_c00229{height:47.880000px;}
.ha_c00229{height:48.271680px;}
.h8_c00229{height:53.490240px;}
.h4_c00229{height:57.294676px;}
.h3_c00229{height:65.232000px;}
.h5_c00229{height:68.074560px;}
.h2_c00229{height:1201.365000px;}
.h0_c00229{height:1262.835000px;}
.h1_c00229{height:1263.000000px;}
.w5_c00229{width:25.020000px;}
.w4_c00229{width:384.840000px;}
.w3_c00229{width:600.840000px;}
.w2_c00229{width:863.955000px;}
.w0_c00229{width:892.935000px;}
.w1_c00229{width:893.250000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:14.490000px;}
.xd_c00229{left:22.627650px;}
.x2_c00229{left:113.040150px;}
.xb_c00229{left:121.655250px;}
.x5_c00229{left:127.217700px;}
.x8_c00229{left:130.267800px;}
.x7_c00229{left:151.290000px;}
.x3_c00229{left:162.521550px;}
.x6_c00229{left:170.566800px;}
.x4_c00229{left:210.004350px;}
.x9_c00229{left:240.574500px;}
.xc_c00229{left:261.450000px;}
.xa_c00229{left:270.584400px;}
.xe_c00229{left:759.915000px;}
@media print{
.v2_c00229{vertical-align:-21.760000pt;}
.v0_c00229{vertical-align:0.000000pt;}
.v1_c00229{vertical-align:26.880000pt;}
.ls6_c00229{letter-spacing:-0.159616pt;}
.ls4_c00229{letter-spacing:0.000000pt;}
.ls7_c00229{letter-spacing:0.128000pt;}
.lsc_c00229{letter-spacing:0.179968pt;}
.ls1_c00229{letter-spacing:0.212053pt;}
.lsd_c00229{letter-spacing:0.213120pt;}
.ls9_c00229{letter-spacing:0.236160pt;}
.lsa_c00229{letter-spacing:0.355200pt;}
.lsb_c00229{letter-spacing:0.400304pt;}
.ls8_c00229{letter-spacing:0.681599pt;}
.ls5_c00229{letter-spacing:4.742400pt;}
.ls2_c00229{letter-spacing:5.312000pt;}
.ls0_c00229{letter-spacing:5.317867pt;}
.ls3_c00229{letter-spacing:5.475484pt;}
.ws0_c00229{word-spacing:-18.620160pt;}
.ws1_c00229{word-spacing:-17.792000pt;}
.ws4_c00229{word-spacing:-15.720049pt;}
.ws5_c00229{word-spacing:-13.971589pt;}
.ws6_c00229{word-spacing:-13.379200pt;}
.ws2_c00229{word-spacing:-10.159744pt;}
.ws3_c00229{word-spacing:-9.024000pt;}
.ws7_c00229{word-spacing:0.000000pt;}
._4_c00229{margin-left:-0.994560pt;}
._3_c00229{width:1.154560pt;}
._2_c00229{width:3.840000pt;}
._0_c00229{width:6.208000pt;}
._1_c00229{width:2133.312000pt;}
.fs4_c00229{font-size:32.000000pt;}
.fs3_c00229{font-size:37.120000pt;}
.fs7_c00229{font-size:47.360000pt;}
.fs8_c00229{font-size:48.817571pt;}
.fs2_c00229{font-size:49.920000pt;}
.fs5_c00229{font-size:52.480000pt;}
.fs9_c00229{font-size:53.333333pt;}
.fs6_c00229{font-size:54.095146pt;}
.fs0_c00229{font-size:64.000000pt;}
.fs1_c00229{font-size:65.969690pt;}
.y0_c00229{bottom:0.000000pt;}
.y1e_c00229{bottom:2.773467pt;}
.y19_c00229{bottom:16.960000pt;}
.y1c_c00229{bottom:17.280000pt;}
.y18_c00229{bottom:30.720000pt;}
.y1d_c00229{bottom:30.884000pt;}
.y1b_c00229{bottom:31.360000pt;}
.y1_c00229{bottom:48.000000pt;}
.y17_c00229{bottom:49.320000pt;}
.y16_c00229{bottom:54.760000pt;}
.y15_c00229{bottom:78.440000pt;}
.y14_c00229{bottom:183.080000pt;}
.y13_c00229{bottom:215.080000pt;}
.y12_c00229{bottom:247.080000pt;}
.y11_c00229{bottom:279.080000pt;}
.y10_c00229{bottom:311.080000pt;}
.yf_c00229{bottom:343.080000pt;}
.ye_c00229{bottom:375.080000pt;}
.yd_c00229{bottom:407.080000pt;}
.yc_c00229{bottom:439.080000pt;}
.yb_c00229{bottom:471.080000pt;}
.ya_c00229{bottom:503.080000pt;}
.y9_c00229{bottom:535.080000pt;}
.y1a_c00229{bottom:545.320000pt;}
.y8_c00229{bottom:563.880000pt;}
.y7_c00229{bottom:849.640000pt;}
.y6_c00229{bottom:881.640000pt;}
.y5_c00229{bottom:900.520000pt;}
.y4_c00229{bottom:932.520000pt;}
.y3_c00229{bottom:964.520000pt;}
.y2_c00229{bottom:1011.880000pt;}
.hd_c00229{height:17.116000pt;}
.h6_c00229{height:28.992000pt;}
.hb_c00229{height:37.687165pt;}
.he_c00229{height:41.173333pt;}
.h7_c00229{height:41.761453pt;}
.h9_c00229{height:41.920000pt;}
.hc_c00229{height:42.560000pt;}
.ha_c00229{height:42.908160pt;}
.h8_c00229{height:47.546880pt;}
.h4_c00229{height:50.928601pt;}
.h3_c00229{height:57.984000pt;}
.h5_c00229{height:60.510720pt;}
.h2_c00229{height:1067.880000pt;}
.h0_c00229{height:1122.520000pt;}
.h1_c00229{height:1122.666667pt;}
.w5_c00229{width:22.240000pt;}
.w4_c00229{width:342.080000pt;}
.w3_c00229{width:534.080000pt;}
.w2_c00229{width:767.960000pt;}
.w0_c00229{width:793.720000pt;}
.w1_c00229{width:794.000000pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:12.880000pt;}
.xd_c00229{left:20.113467pt;}
.x2_c00229{left:100.480133pt;}
.xb_c00229{left:108.138000pt;}
.x5_c00229{left:113.082400pt;}
.x8_c00229{left:115.793600pt;}
.x7_c00229{left:134.480000pt;}
.x3_c00229{left:144.463600pt;}
.x6_c00229{left:151.614933pt;}
.x4_c00229{left:186.670533pt;}
.x9_c00229{left:213.844000pt;}
.xc_c00229{left:232.400000pt;}
.xa_c00229{left:240.519467pt;}
.xe_c00229{left:675.480000pt;}
}





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

.ir_c00230:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00230;src:url('chunks/assets/font_ccd216d7c8370dbb385f2dfa.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_63e3ff64c5b0bdbd483efea2.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;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:ff3_c00230;src:url('chunks/assets/font_da9fda8f10ee96e8040dfaaa.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:0.787000;font-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_c00230{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00230{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls2_c00230{letter-spacing:0.000000px;}
.ls6_c00230{letter-spacing:0.202464px;}
.ls8_c00230{letter-spacing:0.239760px;}
.ls5_c00230{letter-spacing:0.319680px;}
.ls3_c00230{letter-spacing:0.399600px;}
.ls4_c00230{letter-spacing:0.450342px;}
.ls7_c00230{letter-spacing:0.576658px;}
.ls0_c00230{letter-spacing:5.976000px;}
.ls1_c00230{letter-spacing:6.159920px;}
.sc__c00230{text-shadow:none;}
.sc1_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00230{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc1_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00230{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00230{word-spacing:-15.844353px;}
.ws1_c00230{word-spacing:-15.051600px;}
.ws2_c00230{word-spacing:0.000000px;}
._0_c00230{margin-left:-1.118880px;}
.fc0_c00230{color:rgb(0,0,0);}
.fs2_c00230{font-size:53.280000px;}
.fs3_c00230{font-size:54.919767px;}
.fs4_c00230{font-size:60.000000px;}
.fs0_c00230{font-size:72.000000px;}
.fs1_c00230{font-size:74.215901px;}
.y0_c00230{bottom:0.000000px;}
.y11_c00230{bottom:3.120150px;}
.y10_c00230{bottom:34.744500px;}
.yf_c00230{bottom:41.040000px;}
.y1_c00230{bottom:54.000000px;}
.ye_c00230{bottom:724.365000px;}
.yd_c00230{bottom:725.085000px;}
.yc_c00230{bottom:761.085000px;}
.yb_c00230{bottom:797.085000px;}
.ya_c00230{bottom:833.085000px;}
.y9_c00230{bottom:869.085000px;}
.y8_c00230{bottom:905.085000px;}
.y7_c00230{bottom:941.085000px;}
.y6_c00230{bottom:977.085000px;}
.y5_c00230{bottom:1013.085000px;}
.y4_c00230{bottom:1049.085000px;}
.y3_c00230{bottom:1085.085000px;}
.y2_c00230{bottom:1138.365000px;}
.h8_c00230{height:19.255500px;}
.h7_c00230{height:42.398060px;}
.h9_c00230{height:46.320000px;}
.h6_c00230{height:48.271680px;}
.h5_c00230{height:54.000000px;}
.h4_c00230{height:57.294676px;}
.h3_c00230{height:65.232000px;}
.h2_c00230{height:1201.365000px;}
.h0_c00230{height:1262.835000px;}
.h1_c00230{height:1263.000000px;}
.w4_c00230{width:25.020000px;}
.w3_c00230{width:573.480000px;}
.w2_c00230{width:863.955000px;}
.w0_c00230{width:892.935000px;}
.w1_c00230{width:893.250000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:14.490000px;}
.x2_c00230{left:113.040150px;}
.x7_c00230{left:137.402100px;}
.x6_c00230{left:139.410000px;}
.x3_c00230{left:162.521550px;}
.x4_c00230{left:210.004350px;}
.x8_c00230{left:247.708800px;}
.x9_c00230{left:281.471550px;}
.xa_c00230{left:388.740300px;}
.xb_c00230{left:427.754550px;}
.x5_c00230{left:708.838350px;}
.xc_c00230{left:759.915000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls2_c00230{letter-spacing:0.000000pt;}
.ls6_c00230{letter-spacing:0.179968pt;}
.ls8_c00230{letter-spacing:0.213120pt;}
.ls5_c00230{letter-spacing:0.284160pt;}
.ls3_c00230{letter-spacing:0.355200pt;}
.ls4_c00230{letter-spacing:0.400304pt;}
.ls7_c00230{letter-spacing:0.512584pt;}
.ls0_c00230{letter-spacing:5.312000pt;}
.ls1_c00230{letter-spacing:5.475484pt;}
.ws0_c00230{word-spacing:-14.083869pt;}
.ws1_c00230{word-spacing:-13.379200pt;}
.ws2_c00230{word-spacing:0.000000pt;}
._0_c00230{margin-left:-0.994560pt;}
.fs2_c00230{font-size:47.360000pt;}
.fs3_c00230{font-size:48.817571pt;}
.fs4_c00230{font-size:53.333333pt;}
.fs0_c00230{font-size:64.000000pt;}
.fs1_c00230{font-size:65.969690pt;}
.y0_c00230{bottom:0.000000pt;}
.y11_c00230{bottom:2.773467pt;}
.y10_c00230{bottom:30.884000pt;}
.yf_c00230{bottom:36.480000pt;}
.y1_c00230{bottom:48.000000pt;}
.ye_c00230{bottom:643.880000pt;}
.yd_c00230{bottom:644.520000pt;}
.yc_c00230{bottom:676.520000pt;}
.yb_c00230{bottom:708.520000pt;}
.ya_c00230{bottom:740.520000pt;}
.y9_c00230{bottom:772.520000pt;}
.y8_c00230{bottom:804.520000pt;}
.y7_c00230{bottom:836.520000pt;}
.y6_c00230{bottom:868.520000pt;}
.y5_c00230{bottom:900.520000pt;}
.y4_c00230{bottom:932.520000pt;}
.y3_c00230{bottom:964.520000pt;}
.y2_c00230{bottom:1011.880000pt;}
.h8_c00230{height:17.116000pt;}
.h7_c00230{height:37.687165pt;}
.h9_c00230{height:41.173333pt;}
.h6_c00230{height:42.908160pt;}
.h5_c00230{height:48.000000pt;}
.h4_c00230{height:50.928601pt;}
.h3_c00230{height:57.984000pt;}
.h2_c00230{height:1067.880000pt;}
.h0_c00230{height:1122.520000pt;}
.h1_c00230{height:1122.666667pt;}
.w4_c00230{width:22.240000pt;}
.w3_c00230{width:509.760000pt;}
.w2_c00230{width:767.960000pt;}
.w0_c00230{width:793.720000pt;}
.w1_c00230{width:794.000000pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:12.880000pt;}
.x2_c00230{left:100.480133pt;}
.x7_c00230{left:122.135200pt;}
.x6_c00230{left:123.920000pt;}
.x3_c00230{left:144.463600pt;}
.x4_c00230{left:186.670533pt;}
.x8_c00230{left:220.185600pt;}
.x9_c00230{left:250.196933pt;}
.xa_c00230{left:345.546933pt;}
.xb_c00230{left:380.226267pt;}
.x5_c00230{left:630.078533pt;}
.xc_c00230{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b996864b4bc7ccb429441ca7.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.134000;font-style:normal;font-weight:normal;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_7c58ea03514c928de156362a.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;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:ff3_c00231;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_fbdb38dcd3a8a821ff1b495a.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_40e4047e555c5d0a3328f81f.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:0.787000;font-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_c00231{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00231{vertical-align:-24.480000px;}
.v0_c00231{vertical-align:0.000000px;}
.v1_c00231{vertical-align:30.240000px;}
.ls9_c00231{letter-spacing:0.000000px;}
.lsd_c00231{letter-spacing:0.265680px;}
.ls16_c00231{letter-spacing:0.273857px;}
.ls13_c00231{letter-spacing:0.318816px;}
.ls11_c00231{letter-spacing:0.438171px;}
.ls5_c00231{letter-spacing:0.451440px;}
.ls17_c00231{letter-spacing:0.492942px;}
.ls15_c00231{letter-spacing:0.531360px;}
.ls7_c00231{letter-spacing:0.547713px;}
.ls10_c00231{letter-spacing:0.602485px;}
.ls6_c00231{letter-spacing:0.628440px;}
.ls4_c00231{letter-spacing:0.791040px;}
.lse_c00231{letter-spacing:0.821570px;}
.lsf_c00231{letter-spacing:1.783008px;}
.ls14_c00231{letter-spacing:4.227264px;}
.lsc_c00231{letter-spacing:5.149872px;}
.lsa_c00231{letter-spacing:5.245344px;}
.lsb_c00231{letter-spacing:5.430672px;}
.ls1_c00231{letter-spacing:5.499398px;}
.ls12_c00231{letter-spacing:5.514336px;}
.ls3_c00231{letter-spacing:5.975400px;}
.ls2_c00231{letter-spacing:5.976000px;}
.ls0_c00231{letter-spacing:6.159301px;}
.ls8_c00231{letter-spacing:6.159920px;}
.sc__c00231{text-shadow:none;}
.sc1_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00231{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc1_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00231{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00231{word-spacing:-25.992000px;}
.ws8_c00231{word-spacing:-21.927456px;}
.ws0_c00231{word-spacing:-21.592374px;}
.ws1_c00231{word-spacing:-20.857824px;}
.ws3_c00231{word-spacing:-20.762352px;}
.ws5_c00231{word-spacing:-20.016000px;}
.ws7_c00231{word-spacing:-17.465970px;}
.ws9_c00231{word-spacing:-16.944480px;}
.ws4_c00231{word-spacing:-11.609280px;}
.ws6_c00231{word-spacing:-10.008000px;}
.wsa_c00231{word-spacing:0.000000px;}
._11_c00231{margin-left:-4.723200px;}
._10_c00231{margin-left:-3.719520px;}
._f_c00231{margin-left:-2.302560px;}
._e_c00231{margin-left:-1.180800px;}
._1_c00231{width:1.080000px;}
._6_c00231{width:2.160000px;}
._2_c00231{width:4.229256px;}
._0_c00231{width:6.138744px;}
._5_c00231{width:7.397256px;}
._a_c00231{width:8.533488px;}
._12_c00231{width:9.682560px;}
._9_c00231{width:11.232000px;}
._7_c00231{width:14.112000px;}
._b_c00231{width:15.192000px;}
._d_c00231{width:16.920000px;}
._8_c00231{width:24.120000px;}
._c_c00231{width:31.752000px;}
._4_c00231{width:34.128000px;}
._3_c00231{width:47.664000px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs5_c00231{font-size:36.000000px;}
.fs4_c00231{font-size:41.760000px;}
.fs3_c00231{font-size:56.160000px;}
.fs2_c00231{font-size:57.888403px;}
.fs6_c00231{font-size:59.040000px;}
.fs8_c00231{font-size:60.000000px;}
.fs7_c00231{font-size:60.857039px;}
.fs0_c00231{font-size:72.000000px;}
.fs1_c00231{font-size:74.215901px;}
.y0_c00231{bottom:0.000000px;}
.y37_c00231{bottom:3.120150px;}
.y36_c00231{bottom:34.744500px;}
.y1_c00231{bottom:54.000000px;}
.y35_c00231{bottom:61.605000px;}
.y34_c00231{bottom:78.885000px;}
.y32_c00231{bottom:90.401040px;}
.y33_c00231{bottom:90.405000px;}
.y31_c00231{bottom:107.685000px;}
.y30_c00231{bottom:107.686800px;}
.y2f_c00231{bottom:125.325000px;}
.y2e_c00231{bottom:125.326800px;}
.y2d_c00231{bottom:142.965000px;}
.y2c_c00231{bottom:149.085000px;}
.y2b_c00231{bottom:166.365000px;}
.y2a_c00231{bottom:177.885000px;}
.y29_c00231{bottom:184.005000px;}
.y28_c00231{bottom:195.525000px;}
.y27_c00231{bottom:201.645000px;}
.y26_c00231{bottom:228.285000px;}
.y25_c00231{bottom:260.325000px;}
.y24_c00231{bottom:281.205000px;}
.y23_c00231{bottom:317.205000px;}
.y22_c00231{bottom:338.085000px;}
.y21_c00231{bottom:359.325000px;}
.y20_c00231{bottom:380.205000px;}
.y1f_c00231{bottom:403.245000px;}
.y1e_c00231{bottom:425.925000px;}
.y1d_c00231{bottom:446.445000px;}
.y1c_c00231{bottom:467.685000px;}
.y1b_c00231{bottom:488.565000px;}
.y1a_c00231{bottom:524.565000px;}
.y19_c00231{bottom:545.445000px;}
.y18_c00231{bottom:566.685000px;}
.y17_c00231{bottom:587.565000px;}
.y16_c00231{bottom:608.445000px;}
.y15_c00231{bottom:629.685000px;}
.y14_c00231{bottom:665.685000px;}
.y13_c00231{bottom:686.565000px;}
.y12_c00231{bottom:722.565000px;}
.y11_c00231{bottom:761.085000px;}
.y10_c00231{bottom:799.245000px;}
.yf_c00231{bottom:835.245000px;}
.ye_c00231{bottom:856.125000px;}
.yd_c00231{bottom:877.005000px;}
.yc_c00231{bottom:898.245000px;}
.yb_c00231{bottom:919.125000px;}
.ya_c00231{bottom:940.005000px;}
.y9_c00231{bottom:961.245000px;}
.y8_c00231{bottom:982.125000px;}
.y7_c00231{bottom:1003.005000px;}
.y6_c00231{bottom:1024.245000px;}
.y5_c00231{bottom:1045.125000px;}
.y4_c00231{bottom:1081.125000px;}
.y3_c00231{bottom:1102.005000px;}
.y2_c00231{bottom:1138.365000px;}
.ha_c00231{height:19.255500px;}
.h6_c00231{height:32.616000px;}
.h9_c00231{height:39.350391px;}
.hb_c00231{height:46.320000px;}
.h7_c00231{height:46.981634px;}
.h8_c00231{height:53.490240px;}
.h4_c00231{height:57.294676px;}
.h3_c00231{height:65.232000px;}
.h5_c00231{height:68.074560px;}
.h2_c00231{height:1201.365000px;}
.h0_c00231{height:1262.835000px;}
.h1_c00231{height:1263.000000px;}
.w3_c00231{width:25.020000px;}
.w2_c00231{width:863.955000px;}
.w0_c00231{width:892.935000px;}
.w1_c00231{width:893.250000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:14.490000px;}
.x2_c00231{left:113.040150px;}
.x1d_c00231{left:122.213700px;}
.xd_c00231{left:136.043700px;}
.x1e_c00231{left:148.057650px;}
.x12_c00231{left:154.043700px;}
.x3_c00231{left:162.521550px;}
.x5_c00231{left:168.178350px;}
.xe_c00231{left:177.047250px;}
.xc_c00231{left:182.069100px;}
.x10_c00231{left:184.078500px;}
.x17_c00231{left:201.058650px;}
.x4_c00231{left:212.488050px;}
.x11_c00231{left:225.082050px;}
.x21_c00231{left:226.845300px;}
.x13_c00231{left:247.972800px;}
.x6_c00231{left:274.843800px;}
.xa_c00231{left:279.448650px;}
.x22_c00231{left:286.320600px;}
.x23_c00231{left:291.481200px;}
.x14_c00231{left:299.991900px;}
.x1a_c00231{left:312.047250px;}
.x7_c00231{left:321.116850px;}
.x15_c00231{left:356.336100px;}
.x16_c00231{left:367.333800px;}
.x24_c00231{left:368.611500px;}
.x8_c00231{left:371.516550px;}
.x25_c00231{left:373.606200px;}
.x1b_c00231{left:395.044950px;}
.xf_c00231{left:410.223300px;}
.xb_c00231{left:415.575450px;}
.x9_c00231{left:419.205300px;}
.x26_c00231{left:427.935000px;}
.x1f_c00231{left:488.557650px;}
.x27_c00231{left:495.900900px;}
.x20_c00231{left:497.722350px;}
.x29_c00231{left:514.630650px;}
.x2a_c00231{left:536.387700px;}
.x28_c00231{left:545.235000px;}
.x2b_c00231{left:587.221050px;}
.x1c_c00231{left:614.098050px;}
.x18_c00231{left:663.433200px;}
.x19_c00231{left:704.436750px;}
.x2c_c00231{left:736.420950px;}
.x2d_c00231{left:759.915000px;}
@media print{
.v2_c00231{vertical-align:-21.760000pt;}
.v0_c00231{vertical-align:0.000000pt;}
.v1_c00231{vertical-align:26.880000pt;}
.ls9_c00231{letter-spacing:0.000000pt;}
.lsd_c00231{letter-spacing:0.236160pt;}
.ls16_c00231{letter-spacing:0.243428pt;}
.ls13_c00231{letter-spacing:0.283392pt;}
.ls11_c00231{letter-spacing:0.389485pt;}
.ls5_c00231{letter-spacing:0.401280pt;}
.ls17_c00231{letter-spacing:0.438171pt;}
.ls15_c00231{letter-spacing:0.472320pt;}
.ls7_c00231{letter-spacing:0.486856pt;}
.ls10_c00231{letter-spacing:0.535542pt;}
.ls6_c00231{letter-spacing:0.558613pt;}
.ls4_c00231{letter-spacing:0.703147pt;}
.lse_c00231{letter-spacing:0.730284pt;}
.lsf_c00231{letter-spacing:1.584896pt;}
.ls14_c00231{letter-spacing:3.757568pt;}
.lsc_c00231{letter-spacing:4.577664pt;}
.lsa_c00231{letter-spacing:4.662528pt;}
.lsb_c00231{letter-spacing:4.827264pt;}
.ls1_c00231{letter-spacing:4.888354pt;}
.ls12_c00231{letter-spacing:4.901632pt;}
.ls3_c00231{letter-spacing:5.311467pt;}
.ls2_c00231{letter-spacing:5.312000pt;}
.ls0_c00231{letter-spacing:5.474935pt;}
.ls8_c00231{letter-spacing:5.475484pt;}
.ws2_c00231{word-spacing:-23.104000pt;}
.ws8_c00231{word-spacing:-19.491072pt;}
.ws0_c00231{word-spacing:-19.193222pt;}
.ws1_c00231{word-spacing:-18.540288pt;}
.ws3_c00231{word-spacing:-18.455424pt;}
.ws5_c00231{word-spacing:-17.792000pt;}
.ws7_c00231{word-spacing:-15.525307pt;}
.ws9_c00231{word-spacing:-15.061760pt;}
.ws4_c00231{word-spacing:-10.319360pt;}
.ws6_c00231{word-spacing:-8.896000pt;}
.wsa_c00231{word-spacing:0.000000pt;}
._11_c00231{margin-left:-4.198400pt;}
._10_c00231{margin-left:-3.306240pt;}
._f_c00231{margin-left:-2.046720pt;}
._e_c00231{margin-left:-1.049600pt;}
._1_c00231{width:0.960000pt;}
._6_c00231{width:1.920000pt;}
._2_c00231{width:3.759339pt;}
._0_c00231{width:5.456661pt;}
._5_c00231{width:6.575339pt;}
._a_c00231{width:7.585323pt;}
._12_c00231{width:8.606720pt;}
._9_c00231{width:9.984000pt;}
._7_c00231{width:12.544000pt;}
._b_c00231{width:13.504000pt;}
._d_c00231{width:15.040000pt;}
._8_c00231{width:21.440000pt;}
._c_c00231{width:28.224000pt;}
._4_c00231{width:30.336000pt;}
._3_c00231{width:42.368000pt;}
.fs5_c00231{font-size:32.000000pt;}
.fs4_c00231{font-size:37.120000pt;}
.fs3_c00231{font-size:49.920000pt;}
.fs2_c00231{font-size:51.456358pt;}
.fs6_c00231{font-size:52.480000pt;}
.fs8_c00231{font-size:53.333333pt;}
.fs7_c00231{font-size:54.095146pt;}
.fs0_c00231{font-size:64.000000pt;}
.fs1_c00231{font-size:65.969690pt;}
.y0_c00231{bottom:0.000000pt;}
.y37_c00231{bottom:2.773467pt;}
.y36_c00231{bottom:30.884000pt;}
.y1_c00231{bottom:48.000000pt;}
.y35_c00231{bottom:54.760000pt;}
.y34_c00231{bottom:70.120000pt;}
.y32_c00231{bottom:80.356480pt;}
.y33_c00231{bottom:80.360000pt;}
.y31_c00231{bottom:95.720000pt;}
.y30_c00231{bottom:95.721600pt;}
.y2f_c00231{bottom:111.400000pt;}
.y2e_c00231{bottom:111.401600pt;}
.y2d_c00231{bottom:127.080000pt;}
.y2c_c00231{bottom:132.520000pt;}
.y2b_c00231{bottom:147.880000pt;}
.y2a_c00231{bottom:158.120000pt;}
.y29_c00231{bottom:163.560000pt;}
.y28_c00231{bottom:173.800000pt;}
.y27_c00231{bottom:179.240000pt;}
.y26_c00231{bottom:202.920000pt;}
.y25_c00231{bottom:231.400000pt;}
.y24_c00231{bottom:249.960000pt;}
.y23_c00231{bottom:281.960000pt;}
.y22_c00231{bottom:300.520000pt;}
.y21_c00231{bottom:319.400000pt;}
.y20_c00231{bottom:337.960000pt;}
.y1f_c00231{bottom:358.440000pt;}
.y1e_c00231{bottom:378.600000pt;}
.y1d_c00231{bottom:396.840000pt;}
.y1c_c00231{bottom:415.720000pt;}
.y1b_c00231{bottom:434.280000pt;}
.y1a_c00231{bottom:466.280000pt;}
.y19_c00231{bottom:484.840000pt;}
.y18_c00231{bottom:503.720000pt;}
.y17_c00231{bottom:522.280000pt;}
.y16_c00231{bottom:540.840000pt;}
.y15_c00231{bottom:559.720000pt;}
.y14_c00231{bottom:591.720000pt;}
.y13_c00231{bottom:610.280000pt;}
.y12_c00231{bottom:642.280000pt;}
.y11_c00231{bottom:676.520000pt;}
.y10_c00231{bottom:710.440000pt;}
.yf_c00231{bottom:742.440000pt;}
.ye_c00231{bottom:761.000000pt;}
.yd_c00231{bottom:779.560000pt;}
.yc_c00231{bottom:798.440000pt;}
.yb_c00231{bottom:817.000000pt;}
.ya_c00231{bottom:835.560000pt;}
.y9_c00231{bottom:854.440000pt;}
.y8_c00231{bottom:873.000000pt;}
.y7_c00231{bottom:891.560000pt;}
.y6_c00231{bottom:910.440000pt;}
.y5_c00231{bottom:929.000000pt;}
.y4_c00231{bottom:961.000000pt;}
.y3_c00231{bottom:979.560000pt;}
.y2_c00231{bottom:1011.880000pt;}
.ha_c00231{height:17.116000pt;}
.h6_c00231{height:28.992000pt;}
.h9_c00231{height:34.978125pt;}
.hb_c00231{height:41.173333pt;}
.h7_c00231{height:41.761453pt;}
.h8_c00231{height:47.546880pt;}
.h4_c00231{height:50.928601pt;}
.h3_c00231{height:57.984000pt;}
.h5_c00231{height:60.510720pt;}
.h2_c00231{height:1067.880000pt;}
.h0_c00231{height:1122.520000pt;}
.h1_c00231{height:1122.666667pt;}
.w3_c00231{width:22.240000pt;}
.w2_c00231{width:767.960000pt;}
.w0_c00231{width:793.720000pt;}
.w1_c00231{width:794.000000pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:12.880000pt;}
.x2_c00231{left:100.480133pt;}
.x1d_c00231{left:108.634400pt;}
.xd_c00231{left:120.927733pt;}
.x1e_c00231{left:131.606800pt;}
.x12_c00231{left:136.927733pt;}
.x3_c00231{left:144.463600pt;}
.x5_c00231{left:149.491867pt;}
.xe_c00231{left:157.375333pt;}
.xc_c00231{left:161.839200pt;}
.x10_c00231{left:163.625333pt;}
.x17_c00231{left:178.718800pt;}
.x4_c00231{left:188.878267pt;}
.x11_c00231{left:200.072933pt;}
.x21_c00231{left:201.640267pt;}
.x13_c00231{left:220.420267pt;}
.x6_c00231{left:244.305600pt;}
.xa_c00231{left:248.398800pt;}
.x22_c00231{left:254.507200pt;}
.x23_c00231{left:259.094400pt;}
.x14_c00231{left:266.659467pt;}
.x1a_c00231{left:277.375333pt;}
.x7_c00231{left:285.437200pt;}
.x15_c00231{left:316.743200pt;}
.x16_c00231{left:326.518933pt;}
.x24_c00231{left:327.654667pt;}
.x8_c00231{left:330.236933pt;}
.x25_c00231{left:332.094400pt;}
.x1b_c00231{left:351.151067pt;}
.xf_c00231{left:364.642933pt;}
.xb_c00231{left:369.400400pt;}
.x9_c00231{left:372.626933pt;}
.x26_c00231{left:380.386667pt;}
.x1f_c00231{left:434.273467pt;}
.x27_c00231{left:440.800800pt;}
.x20_c00231{left:442.419867pt;}
.x29_c00231{left:457.449467pt;}
.x2a_c00231{left:476.789067pt;}
.x28_c00231{left:484.653333pt;}
.x2b_c00231{left:521.974267pt;}
.x1c_c00231{left:545.864933pt;}
.x18_c00231{left:589.718400pt;}
.x19_c00231{left:626.166000pt;}
.x2c_c00231{left:654.596400pt;}
.x2d_c00231{left:675.480000pt;}
}





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

.ir_c00232:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00232;src:url('chunks/assets/font_7d429aab9629540ac6ddafe4.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_b594182783a31b2f3de606bb.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;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:ff3_c00232;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_82f6fff613a903ce228118d7.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:0.787000;font-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_c00232{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00232{vertical-align:-24.480000px;}
.v0_c00232{vertical-align:0.000000px;}
.v1_c00232{vertical-align:30.240000px;}
.ls9_c00232{letter-spacing:-0.179568px;}
.ls7_c00232{letter-spacing:0.000000px;}
.ls12_c00232{letter-spacing:0.144000px;}
.lse_c00232{letter-spacing:0.265680px;}
.ls2_c00232{letter-spacing:0.295200px;}
.lsf_c00232{letter-spacing:0.371952px;}
.ls10_c00232{letter-spacing:0.425088px;}
.ls4_c00232{letter-spacing:0.438171px;}
.ls3_c00232{letter-spacing:0.531360px;}
.lsd_c00232{letter-spacing:0.584496px;}
.ls1_c00232{letter-spacing:0.712027px;}
.ls11_c00232{letter-spacing:0.766799px;}
.lsc_c00232{letter-spacing:1.617696px;}
.ls8_c00232{letter-spacing:5.430672px;}
.ls5_c00232{letter-spacing:5.976000px;}
.ls0_c00232{letter-spacing:5.980200px;}
.ls6_c00232{letter-spacing:6.159920px;}
.ls13_c00232{letter-spacing:9.086256px;}
.lsb_c00232{letter-spacing:21.420000px;}
.lsa_c00232{letter-spacing:39.672000px;}
.sc__c00232{text-shadow:none;}
.sc1_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00232{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc1_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00232{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00232{word-spacing:-21.043152px;}
.ws1_c00232{word-spacing:-20.016000px;}
.ws7_c00232{word-spacing:-17.685056px;}
.ws5_c00232{word-spacing:-17.630284px;}
.wsa_c00232{word-spacing:-17.356428px;}
.ws8_c00232{word-spacing:-16.944480px;}
.ws6_c00232{word-spacing:-16.838208px;}
.ws0_c00232{word-spacing:-11.609280px;}
.ws3_c00232{word-spacing:-11.429712px;}
.ws9_c00232{word-spacing:-10.152000px;}
.ws4_c00232{word-spacing:-10.008000px;}
.wsb_c00232{word-spacing:0.000000px;}
._8_c00232{margin-left:-39.672000px;}
._a_c00232{margin-left:-21.456000px;}
._f_c00232{margin-left:-8.907840px;}
._10_c00232{margin-left:-7.873920px;}
._e_c00232{margin-left:-2.243520px;}
._d_c00232{margin-left:-1.121760px;}
._1_c00232{width:1.512000px;}
._2_c00232{width:2.736000px;}
._c_c00232{width:4.320000px;}
._0_c00232{width:5.688000px;}
._7_c00232{width:7.848000px;}
._5_c00232{width:8.928000px;}
._4_c00232{width:10.944000px;}
._3_c00232{width:12.384000px;}
._6_c00232{width:14.760000px;}
._b_c00232{width:21.384000px;}
._9_c00232{width:39.672000px;}
.fc0_c00232{color:rgb(0,0,0);}
.fs4_c00232{font-size:36.000000px;}
.fs2_c00232{font-size:41.760000px;}
.fs3_c00232{font-size:56.160000px;}
.fs5_c00232{font-size:59.040000px;}
.fs7_c00232{font-size:60.000000px;}
.fs6_c00232{font-size:60.857039px;}
.fs0_c00232{font-size:72.000000px;}
.fs1_c00232{font-size:74.215901px;}
.y0_c00232{bottom:0.000000px;}
.y2d_c00232{bottom:3.120150px;}
.y2c_c00232{bottom:34.744500px;}
.y1_c00232{bottom:54.000000px;}
.y2b_c00232{bottom:55.482840px;}
.y2a_c00232{bottom:72.766800px;}
.y29_c00232{bottom:96.525000px;}
.y28_c00232{bottom:107.685000px;}
.y27_c00232{bottom:113.805000px;}
.y26_c00232{bottom:125.325000px;}
.y25_c00232{bottom:131.445000px;}
.y24_c00232{bottom:142.965000px;}
.y23_c00232{bottom:149.085000px;}
.y22_c00232{bottom:160.246800px;}
.y21_c00232{bottom:177.885000px;}
.y20_c00232{bottom:177.886800px;}
.y1f_c00232{bottom:201.645000px;}
.y1e_c00232{bottom:228.285000px;}
.y1d_c00232{bottom:375.885000px;}
.y1c_c00232{bottom:397.125000px;}
.y1b_c00232{bottom:433.125000px;}
.y1a_c00232{bottom:469.125000px;}
.y19_c00232{bottom:505.125000px;}
.y18_c00232{bottom:526.005000px;}
.y17_c00232{bottom:562.005000px;}
.y16_c00232{bottom:582.885000px;}
.y15_c00232{bottom:619.245000px;}
.y14_c00232{bottom:655.245000px;}
.y13_c00232{bottom:676.125000px;}
.y12_c00232{bottom:697.005000px;}
.y11_c00232{bottom:718.245000px;}
.y10_c00232{bottom:739.125000px;}
.yf_c00232{bottom:775.125000px;}
.ye_c00232{bottom:811.125000px;}
.yd_c00232{bottom:847.125000px;}
.yc_c00232{bottom:883.125000px;}
.yb_c00232{bottom:904.005000px;}
.ya_c00232{bottom:940.005000px;}
.y9_c00232{bottom:961.245000px;}
.y8_c00232{bottom:982.125000px;}
.y7_c00232{bottom:1003.005000px;}
.y6_c00232{bottom:1024.245000px;}
.y5_c00232{bottom:1060.245000px;}
.y4_c00232{bottom:1081.125000px;}
.y3_c00232{bottom:1102.005000px;}
.y2_c00232{bottom:1138.365000px;}
.ha_c00232{height:19.255500px;}
.h7_c00232{height:32.616000px;}
.hb_c00232{height:46.320000px;}
.h9_c00232{height:46.981634px;}
.h6_c00232{height:52.031250px;}
.h8_c00232{height:53.490240px;}
.h4_c00232{height:57.294676px;}
.h3_c00232{height:65.232000px;}
.h5_c00232{height:68.074560px;}
.h2_c00232{height:1201.365000px;}
.h0_c00232{height:1262.835000px;}
.h1_c00232{height:1263.000000px;}
.w3_c00232{width:25.020000px;}
.w2_c00232{width:863.955000px;}
.w0_c00232{width:892.935000px;}
.w1_c00232{width:893.250000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:14.490000px;}
.x2_c00232{left:113.040150px;}
.x15_c00232{left:122.213700px;}
.xb_c00232{left:140.037450px;}
.xf_c00232{left:148.031550px;}
.xe_c00232{left:150.029700px;}
.x12_c00232{left:158.390250px;}
.x3_c00232{left:162.521550px;}
.x16_c00232{left:165.562800px;}
.xc_c00232{left:167.040150px;}
.x13_c00232{left:197.388000px;}
.x9_c00232{left:204.064500px;}
.x4_c00232{left:212.488050px;}
.x14_c00232{left:232.352400px;}
.xd_c00232{left:247.048800px;}
.x10_c00232{left:252.052800px;}
.xa_c00232{left:269.061450px;}
.x5_c00232{left:327.823950px;}
.x17_c00232{left:329.741100px;}
.x18_c00232{left:345.565500px;}
.x6_c00232{left:359.746950px;}
.x7_c00232{left:393.988050px;}
.x11_c00232{left:426.054900px;}
.x8_c00232{left:434.991600px;}
.x19_c00232{left:759.915000px;}
@media print{
.v2_c00232{vertical-align:-21.760000pt;}
.v0_c00232{vertical-align:0.000000pt;}
.v1_c00232{vertical-align:26.880000pt;}
.ls9_c00232{letter-spacing:-0.159616pt;}
.ls7_c00232{letter-spacing:0.000000pt;}
.ls12_c00232{letter-spacing:0.128000pt;}
.lse_c00232{letter-spacing:0.236160pt;}
.ls2_c00232{letter-spacing:0.262400pt;}
.lsf_c00232{letter-spacing:0.330624pt;}
.ls10_c00232{letter-spacing:0.377856pt;}
.ls4_c00232{letter-spacing:0.389485pt;}
.ls3_c00232{letter-spacing:0.472320pt;}
.lsd_c00232{letter-spacing:0.519552pt;}
.ls1_c00232{letter-spacing:0.632913pt;}
.ls11_c00232{letter-spacing:0.681599pt;}
.lsc_c00232{letter-spacing:1.437952pt;}
.ls8_c00232{letter-spacing:4.827264pt;}
.ls5_c00232{letter-spacing:5.312000pt;}
.ls0_c00232{letter-spacing:5.315733pt;}
.ls6_c00232{letter-spacing:5.475484pt;}
.ls13_c00232{letter-spacing:8.076672pt;}
.lsb_c00232{letter-spacing:19.040000pt;}
.lsa_c00232{letter-spacing:35.264000pt;}
.ws2_c00232{word-spacing:-18.705024pt;}
.ws1_c00232{word-spacing:-17.792000pt;}
.ws7_c00232{word-spacing:-15.720049pt;}
.ws5_c00232{word-spacing:-15.671364pt;}
.wsa_c00232{word-spacing:-15.427936pt;}
.ws8_c00232{word-spacing:-15.061760pt;}
.ws6_c00232{word-spacing:-14.967296pt;}
.ws0_c00232{word-spacing:-10.319360pt;}
.ws3_c00232{word-spacing:-10.159744pt;}
.ws9_c00232{word-spacing:-9.024000pt;}
.ws4_c00232{word-spacing:-8.896000pt;}
.wsb_c00232{word-spacing:0.000000pt;}
._8_c00232{margin-left:-35.264000pt;}
._a_c00232{margin-left:-19.072000pt;}
._f_c00232{margin-left:-7.918080pt;}
._10_c00232{margin-left:-6.999040pt;}
._e_c00232{margin-left:-1.994240pt;}
._d_c00232{margin-left:-0.997120pt;}
._1_c00232{width:1.344000pt;}
._2_c00232{width:2.432000pt;}
._c_c00232{width:3.840000pt;}
._0_c00232{width:5.056000pt;}
._7_c00232{width:6.976000pt;}
._5_c00232{width:7.936000pt;}
._4_c00232{width:9.728000pt;}
._3_c00232{width:11.008000pt;}
._6_c00232{width:13.120000pt;}
._b_c00232{width:19.008000pt;}
._9_c00232{width:35.264000pt;}
.fs4_c00232{font-size:32.000000pt;}
.fs2_c00232{font-size:37.120000pt;}
.fs3_c00232{font-size:49.920000pt;}
.fs5_c00232{font-size:52.480000pt;}
.fs7_c00232{font-size:53.333333pt;}
.fs6_c00232{font-size:54.095146pt;}
.fs0_c00232{font-size:64.000000pt;}
.fs1_c00232{font-size:65.969690pt;}
.y0_c00232{bottom:0.000000pt;}
.y2d_c00232{bottom:2.773467pt;}
.y2c_c00232{bottom:30.884000pt;}
.y1_c00232{bottom:48.000000pt;}
.y2b_c00232{bottom:49.318080pt;}
.y2a_c00232{bottom:64.681600pt;}
.y29_c00232{bottom:85.800000pt;}
.y28_c00232{bottom:95.720000pt;}
.y27_c00232{bottom:101.160000pt;}
.y26_c00232{bottom:111.400000pt;}
.y25_c00232{bottom:116.840000pt;}
.y24_c00232{bottom:127.080000pt;}
.y23_c00232{bottom:132.520000pt;}
.y22_c00232{bottom:142.441600pt;}
.y21_c00232{bottom:158.120000pt;}
.y20_c00232{bottom:158.121600pt;}
.y1f_c00232{bottom:179.240000pt;}
.y1e_c00232{bottom:202.920000pt;}
.y1d_c00232{bottom:334.120000pt;}
.y1c_c00232{bottom:353.000000pt;}
.y1b_c00232{bottom:385.000000pt;}
.y1a_c00232{bottom:417.000000pt;}
.y19_c00232{bottom:449.000000pt;}
.y18_c00232{bottom:467.560000pt;}
.y17_c00232{bottom:499.560000pt;}
.y16_c00232{bottom:518.120000pt;}
.y15_c00232{bottom:550.440000pt;}
.y14_c00232{bottom:582.440000pt;}
.y13_c00232{bottom:601.000000pt;}
.y12_c00232{bottom:619.560000pt;}
.y11_c00232{bottom:638.440000pt;}
.y10_c00232{bottom:657.000000pt;}
.yf_c00232{bottom:689.000000pt;}
.ye_c00232{bottom:721.000000pt;}
.yd_c00232{bottom:753.000000pt;}
.yc_c00232{bottom:785.000000pt;}
.yb_c00232{bottom:803.560000pt;}
.ya_c00232{bottom:835.560000pt;}
.y9_c00232{bottom:854.440000pt;}
.y8_c00232{bottom:873.000000pt;}
.y7_c00232{bottom:891.560000pt;}
.y6_c00232{bottom:910.440000pt;}
.y5_c00232{bottom:942.440000pt;}
.y4_c00232{bottom:961.000000pt;}
.y3_c00232{bottom:979.560000pt;}
.y2_c00232{bottom:1011.880000pt;}
.ha_c00232{height:17.116000pt;}
.h7_c00232{height:28.992000pt;}
.hb_c00232{height:41.173333pt;}
.h9_c00232{height:41.761453pt;}
.h6_c00232{height:46.250000pt;}
.h8_c00232{height:47.546880pt;}
.h4_c00232{height:50.928601pt;}
.h3_c00232{height:57.984000pt;}
.h5_c00232{height:60.510720pt;}
.h2_c00232{height:1067.880000pt;}
.h0_c00232{height:1122.520000pt;}
.h1_c00232{height:1122.666667pt;}
.w3_c00232{width:22.240000pt;}
.w2_c00232{width:767.960000pt;}
.w0_c00232{width:793.720000pt;}
.w1_c00232{width:794.000000pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:12.880000pt;}
.x2_c00232{left:100.480133pt;}
.x15_c00232{left:108.634400pt;}
.xb_c00232{left:124.477733pt;}
.xf_c00232{left:131.583600pt;}
.xe_c00232{left:133.359733pt;}
.x12_c00232{left:140.791333pt;}
.x3_c00232{left:144.463600pt;}
.x16_c00232{left:147.166933pt;}
.xc_c00232{left:148.480133pt;}
.x13_c00232{left:175.456000pt;}
.x9_c00232{left:181.390667pt;}
.x4_c00232{left:188.878267pt;}
.x14_c00232{left:206.535467pt;}
.xd_c00232{left:219.598933pt;}
.x10_c00232{left:224.046933pt;}
.xa_c00232{left:239.165733pt;}
.x5_c00232{left:291.399067pt;}
.x17_c00232{left:293.103200pt;}
.x18_c00232{left:307.169333pt;}
.x6_c00232{left:319.775067pt;}
.x7_c00232{left:350.211600pt;}
.x11_c00232{left:378.715467pt;}
.x8_c00232{left:386.659200pt;}
.x19_c00232{left:675.480000pt;}
}





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

.ir_c00233:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00233;src:url('chunks/assets/font_9228230cb0d796abdb78271e.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_fc0ec801d12fb1ae9da48111.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;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:ff3_c00233;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00233;src:url('chunks/assets/font_c6c3566481afa035ab9d824b.woff2')format("woff");}.ff7_c00233{font-family:ff7_c00233;line-height:0.787000;font-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_c00233{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00233{vertical-align:-24.480000px;}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:30.240000px;}
.lse_c00233{letter-spacing:-0.179568px;}
.lsc_c00233{letter-spacing:0.000000px;}
.ls1c_c00233{letter-spacing:0.144000px;}
.ls12_c00233{letter-spacing:0.265680px;}
.ls2_c00233{letter-spacing:0.273857px;}
.ls5_c00233{letter-spacing:0.318480px;}
.ls9_c00233{letter-spacing:0.318816px;}
.ls8_c00233{letter-spacing:0.319080px;}
.lsf_c00233{letter-spacing:0.492942px;}
.ls3_c00233{letter-spacing:0.531360px;}
.ls1a_c00233{letter-spacing:0.584496px;}
.ls14_c00233{letter-spacing:0.690768px;}
.ls18_c00233{letter-spacing:0.696672px;}
.ls4_c00233{letter-spacing:0.712027px;}
.ls17_c00233{letter-spacing:0.743904px;}
.ls19_c00233{letter-spacing:0.766799px;}
.ls15_c00233{letter-spacing:0.797040px;}
.ls11_c00233{letter-spacing:0.821570px;}
.ls7_c00233{letter-spacing:5.299680px;}
.ls10_c00233{letter-spacing:5.354928px;}
.lsd_c00233{letter-spacing:5.430672px;}
.ls16_c00233{letter-spacing:5.673744px;}
.lsa_c00233{letter-spacing:5.976000px;}
.ls0_c00233{letter-spacing:5.984400px;}
.lsb_c00233{letter-spacing:6.159920px;}
.ls1b_c00233{letter-spacing:7.338672px;}
.ls6_c00233{letter-spacing:10.703952px;}
.ls13_c00233{letter-spacing:41.084587px;}
.ls1_c00233{letter-spacing:54.864000px;}
.sc__c00233{text-shadow:none;}
.sc1_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00233{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc1_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00233{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6_c00233{word-spacing:-22.086864px;}
.ws3_c00233{word-spacing:-21.768048px;}
.ws0_c00233{word-spacing:-21.043152px;}
.ws4_c00233{word-spacing:-17.739827px;}
.ws7_c00233{word-spacing:-17.685056px;}
.ws5_c00233{word-spacing:-17.630284px;}
.ws2_c00233{word-spacing:-17.411199px;}
.ws8_c00233{word-spacing:-16.944480px;}
.ws1_c00233{word-spacing:-11.429712px;}
.ws9_c00233{word-spacing:-10.152000px;}
.wsa_c00233{word-spacing:0.000000px;}
._9_c00233{margin-left:-40.287360px;}
._a_c00233{margin-left:-10.007928px;}
._11_c00233{margin-left:-6.918888px;}
._0_c00233{margin-left:-1.179360px;}
._3_c00233{width:1.152000px;}
._2_c00233{width:3.240000px;}
._6_c00233{width:4.248000px;}
._4_c00233{width:5.400000px;}
._10_c00233{width:6.965280px;}
._5_c00233{width:10.362000px;}
._1_c00233{width:12.096000px;}
._f_c00233{width:13.260240px;}
._7_c00233{width:14.544000px;}
._b_c00233{width:28.526832px;}
._c_c00233{width:29.579040px;}
._d_c00233{width:31.291200px;}
._e_c00233{width:32.919192px;}
._8_c00233{width:39.615840px;}
.fc0_c00233{color:rgb(0,0,0);}
.fs6_c00233{font-size:36.000000px;}
.fs3_c00233{font-size:41.760000px;}
.fs2_c00233{font-size:56.160000px;}
.fs4_c00233{font-size:59.040000px;}
.fs7_c00233{font-size:60.000000px;}
.fs5_c00233{font-size:60.857039px;}
.fs0_c00233{font-size:72.000000px;}
.fs1_c00233{font-size:74.215901px;}
.y0_c00233{bottom:0.000000px;}
.y27_c00233{bottom:3.120150px;}
.y26_c00233{bottom:34.744500px;}
.y1_c00233{bottom:54.000000px;}
.y25_c00233{bottom:55.485000px;}
.y24_c00233{bottom:61.605000px;}
.y23_c00233{bottom:88.245000px;}
.y22_c00233{bottom:265.365000px;}
.y21_c00233{bottom:283.005000px;}
.y20_c00233{bottom:303.165000px;}
.y1f_c00233{bottom:320.445000px;}
.y1e_c00233{bottom:338.085000px;}
.y1d_c00233{bottom:355.365000px;}
.y1c_c00233{bottom:373.005000px;}
.y1b_c00233{bottom:390.645000px;}
.y1a_c00233{bottom:424.125000px;}
.y19_c00233{bottom:460.125000px;}
.y18_c00233{bottom:481.005000px;}
.y17_c00233{bottom:501.885000px;}
.y16_c00233{bottom:523.125000px;}
.y15_c00233{bottom:544.005000px;}
.y14_c00233{bottom:580.005000px;}
.y13_c00233{bottom:616.005000px;}
.y12_c00233{bottom:637.245000px;}
.y11_c00233{bottom:673.245000px;}
.y10_c00233{bottom:709.245000px;}
.yf_c00233{bottom:745.245000px;}
.ye_c00233{bottom:766.125000px;}
.yd_c00233{bottom:787.005000px;}
.yc_c00233{bottom:823.005000px;}
.yb_c00233{bottom:859.005000px;}
.ya_c00233{bottom:880.245000px;}
.y9_c00233{bottom:916.245000px;}
.y8_c00233{bottom:937.125000px;}
.y7_c00233{bottom:973.125000px;}
.y6_c00233{bottom:1009.125000px;}
.y5_c00233{bottom:1045.125000px;}
.y4_c00233{bottom:1081.125000px;}
.y3_c00233{bottom:1102.005000px;}
.y2_c00233{bottom:1138.365000px;}
.ha_c00233{height:19.255500px;}
.h9_c00233{height:32.616000px;}
.hb_c00233{height:46.320000px;}
.h8_c00233{height:46.981634px;}
.h5_c00233{height:52.031250px;}
.h7_c00233{height:53.490240px;}
.h4_c00233{height:57.294676px;}
.h3_c00233{height:65.232000px;}
.h6_c00233{height:68.074560px;}
.h2_c00233{height:1201.365000px;}
.h0_c00233{height:1262.835000px;}
.h1_c00233{height:1263.000000px;}
.w7_c00233{width:25.020000px;}
.w3_c00233{width:39.600000px;}
.w4_c00233{width:73.440000px;}
.w5_c00233{width:265.320000px;}
.w6_c00233{width:266.760000px;}
.w2_c00233{width:863.955000px;}
.w0_c00233{width:892.935000px;}
.w1_c00233{width:893.250000px;}
.x0_c00233{left:0.000000px;}
.x18_c00233{left:7.920150px;}
.x1b_c00233{left:12.914700px;}
.x1_c00233{left:14.490000px;}
.x29_c00233{left:42.524400px;}
.x21_c00233{left:43.887750px;}
.x1c_c00233{left:54.553950px;}
.x22_c00233{left:79.722150px;}
.x2_c00233{left:113.040150px;}
.x17_c00233{left:119.610000px;}
.x1d_c00233{left:131.139600px;}
.x5_c00233{left:140.038350px;}
.xf_c00233{left:148.031550px;}
.x8_c00233{left:150.029700px;}
.x13_c00233{left:153.035550px;}
.x27_c00233{left:154.175550px;}
.x19_c00233{left:159.930000px;}
.x3_c00233{left:162.521550px;}
.x1f_c00233{left:164.154600px;}
.x6_c00233{left:167.040150px;}
.x20_c00233{left:168.740700px;}
.x23_c00233{left:187.479300px;}
.x28_c00233{left:197.524650px;}
.x1e_c00233{left:204.273450px;}
.x4_c00233{left:212.488050px;}
.x25_c00233{left:218.956050px;}
.x1a_c00233{left:234.090000px;}
.x9_c00233{left:244.042650px;}
.x7_c00233{left:247.048800px;}
.x10_c00233{left:252.052800px;}
.x26_c00233{left:254.790450px;}
.xa_c00233{left:260.026200px;}
.xb_c00233{left:285.027750px;}
.xc_c00233{left:301.029450px;}
.x15_c00233{left:460.292250px;}
.x24_c00233{left:500.130000px;}
.x16_c00233{left:520.303350px;}
.xd_c00233{left:538.085850px;}
.xe_c00233{left:544.061700px;}
.x14_c00233{left:586.353900px;}
.x11_c00233{left:589.288650px;}
.x12_c00233{left:595.264500px;}
.x2a_c00233{left:759.915000px;}
@media print{
.v2_c00233{vertical-align:-21.760000pt;}
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:26.880000pt;}
.lse_c00233{letter-spacing:-0.159616pt;}
.lsc_c00233{letter-spacing:0.000000pt;}
.ls1c_c00233{letter-spacing:0.128000pt;}
.ls12_c00233{letter-spacing:0.236160pt;}
.ls2_c00233{letter-spacing:0.243428pt;}
.ls5_c00233{letter-spacing:0.283093pt;}
.ls9_c00233{letter-spacing:0.283392pt;}
.ls8_c00233{letter-spacing:0.283627pt;}
.lsf_c00233{letter-spacing:0.438171pt;}
.ls3_c00233{letter-spacing:0.472320pt;}
.ls1a_c00233{letter-spacing:0.519552pt;}
.ls14_c00233{letter-spacing:0.614016pt;}
.ls18_c00233{letter-spacing:0.619264pt;}
.ls4_c00233{letter-spacing:0.632913pt;}
.ls17_c00233{letter-spacing:0.661248pt;}
.ls19_c00233{letter-spacing:0.681599pt;}
.ls15_c00233{letter-spacing:0.708480pt;}
.ls11_c00233{letter-spacing:0.730284pt;}
.ls7_c00233{letter-spacing:4.710827pt;}
.ls10_c00233{letter-spacing:4.759936pt;}
.lsd_c00233{letter-spacing:4.827264pt;}
.ls16_c00233{letter-spacing:5.043328pt;}
.lsa_c00233{letter-spacing:5.312000pt;}
.ls0_c00233{letter-spacing:5.319467pt;}
.lsb_c00233{letter-spacing:5.475484pt;}
.ls1b_c00233{letter-spacing:6.523264pt;}
.ls6_c00233{letter-spacing:9.514624pt;}
.ls13_c00233{letter-spacing:36.519633pt;}
.ls1_c00233{letter-spacing:48.768000pt;}
.ws6_c00233{word-spacing:-19.632768pt;}
.ws3_c00233{word-spacing:-19.349376pt;}
.ws0_c00233{word-spacing:-18.705024pt;}
.ws4_c00233{word-spacing:-15.768735pt;}
.ws7_c00233{word-spacing:-15.720049pt;}
.ws5_c00233{word-spacing:-15.671364pt;}
.ws2_c00233{word-spacing:-15.476621pt;}
.ws8_c00233{word-spacing:-15.061760pt;}
.ws1_c00233{word-spacing:-10.159744pt;}
.ws9_c00233{word-spacing:-9.024000pt;}
.wsa_c00233{word-spacing:0.000000pt;}
._9_c00233{margin-left:-35.810987pt;}
._a_c00233{margin-left:-8.895936pt;}
._11_c00233{margin-left:-6.150123pt;}
._0_c00233{margin-left:-1.048320pt;}
._3_c00233{width:1.024000pt;}
._2_c00233{width:2.880000pt;}
._6_c00233{width:3.776000pt;}
._4_c00233{width:4.800000pt;}
._10_c00233{width:6.191360pt;}
._5_c00233{width:9.210667pt;}
._1_c00233{width:10.752000pt;}
._f_c00233{width:11.786880pt;}
._7_c00233{width:12.928000pt;}
._b_c00233{width:25.357184pt;}
._c_c00233{width:26.292480pt;}
._d_c00233{width:27.814400pt;}
._e_c00233{width:29.261504pt;}
._8_c00233{width:35.214080pt;}
.fs6_c00233{font-size:32.000000pt;}
.fs3_c00233{font-size:37.120000pt;}
.fs2_c00233{font-size:49.920000pt;}
.fs4_c00233{font-size:52.480000pt;}
.fs7_c00233{font-size:53.333333pt;}
.fs5_c00233{font-size:54.095146pt;}
.fs0_c00233{font-size:64.000000pt;}
.fs1_c00233{font-size:65.969690pt;}
.y0_c00233{bottom:0.000000pt;}
.y27_c00233{bottom:2.773467pt;}
.y26_c00233{bottom:30.884000pt;}
.y1_c00233{bottom:48.000000pt;}
.y25_c00233{bottom:49.320000pt;}
.y24_c00233{bottom:54.760000pt;}
.y23_c00233{bottom:78.440000pt;}
.y22_c00233{bottom:235.880000pt;}
.y21_c00233{bottom:251.560000pt;}
.y20_c00233{bottom:269.480000pt;}
.y1f_c00233{bottom:284.840000pt;}
.y1e_c00233{bottom:300.520000pt;}
.y1d_c00233{bottom:315.880000pt;}
.y1c_c00233{bottom:331.560000pt;}
.y1b_c00233{bottom:347.240000pt;}
.y1a_c00233{bottom:377.000000pt;}
.y19_c00233{bottom:409.000000pt;}
.y18_c00233{bottom:427.560000pt;}
.y17_c00233{bottom:446.120000pt;}
.y16_c00233{bottom:465.000000pt;}
.y15_c00233{bottom:483.560000pt;}
.y14_c00233{bottom:515.560000pt;}
.y13_c00233{bottom:547.560000pt;}
.y12_c00233{bottom:566.440000pt;}
.y11_c00233{bottom:598.440000pt;}
.y10_c00233{bottom:630.440000pt;}
.yf_c00233{bottom:662.440000pt;}
.ye_c00233{bottom:681.000000pt;}
.yd_c00233{bottom:699.560000pt;}
.yc_c00233{bottom:731.560000pt;}
.yb_c00233{bottom:763.560000pt;}
.ya_c00233{bottom:782.440000pt;}
.y9_c00233{bottom:814.440000pt;}
.y8_c00233{bottom:833.000000pt;}
.y7_c00233{bottom:865.000000pt;}
.y6_c00233{bottom:897.000000pt;}
.y5_c00233{bottom:929.000000pt;}
.y4_c00233{bottom:961.000000pt;}
.y3_c00233{bottom:979.560000pt;}
.y2_c00233{bottom:1011.880000pt;}
.ha_c00233{height:17.116000pt;}
.h9_c00233{height:28.992000pt;}
.hb_c00233{height:41.173333pt;}
.h8_c00233{height:41.761453pt;}
.h5_c00233{height:46.250000pt;}
.h7_c00233{height:47.546880pt;}
.h4_c00233{height:50.928601pt;}
.h3_c00233{height:57.984000pt;}
.h6_c00233{height:60.510720pt;}
.h2_c00233{height:1067.880000pt;}
.h0_c00233{height:1122.520000pt;}
.h1_c00233{height:1122.666667pt;}
.w7_c00233{width:22.240000pt;}
.w3_c00233{width:35.200000pt;}
.w4_c00233{width:65.280000pt;}
.w5_c00233{width:235.840000pt;}
.w6_c00233{width:237.120000pt;}
.w2_c00233{width:767.960000pt;}
.w0_c00233{width:793.720000pt;}
.w1_c00233{width:794.000000pt;}
.x0_c00233{left:0.000000pt;}
.x18_c00233{left:7.040133pt;}
.x1b_c00233{left:11.479733pt;}
.x1_c00233{left:12.880000pt;}
.x29_c00233{left:37.799467pt;}
.x21_c00233{left:39.011333pt;}
.x1c_c00233{left:48.492400pt;}
.x22_c00233{left:70.864133pt;}
.x2_c00233{left:100.480133pt;}
.x17_c00233{left:106.320000pt;}
.x1d_c00233{left:116.568533pt;}
.x5_c00233{left:124.478533pt;}
.xf_c00233{left:131.583600pt;}
.x8_c00233{left:133.359733pt;}
.x13_c00233{left:136.031600pt;}
.x27_c00233{left:137.044933pt;}
.x19_c00233{left:142.160000pt;}
.x3_c00233{left:144.463600pt;}
.x1f_c00233{left:145.915200pt;}
.x6_c00233{left:148.480133pt;}
.x20_c00233{left:149.991733pt;}
.x23_c00233{left:166.648267pt;}
.x28_c00233{left:175.577467pt;}
.x1e_c00233{left:181.576400pt;}
.x4_c00233{left:188.878267pt;}
.x25_c00233{left:194.627600pt;}
.x1a_c00233{left:208.080000pt;}
.x9_c00233{left:216.926800pt;}
.x7_c00233{left:219.598933pt;}
.x10_c00233{left:224.046933pt;}
.x26_c00233{left:226.480400pt;}
.xa_c00233{left:231.134400pt;}
.xb_c00233{left:253.358000pt;}
.xc_c00233{left:267.581733pt;}
.x15_c00233{left:409.148667pt;}
.x24_c00233{left:444.560000pt;}
.x16_c00233{left:462.491867pt;}
.xd_c00233{left:478.298533pt;}
.xe_c00233{left:483.610400pt;}
.x14_c00233{left:521.203467pt;}
.x11_c00233{left:523.812133pt;}
.x12_c00233{left:529.124000pt;}
.x2a_c00233{left:675.480000pt;}
}





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

.ir_c00234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00234;src:url('chunks/assets/font_c6c257e85a8dbc6daff85151.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_745350482c1539293878e69a.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;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:ff3_c00234;src:url('chunks/assets/font_325e16f70588f088fa7f0e3d.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:0.787000;font-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_c00234{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00234{vertical-align:-24.479400px;}
.v0_c00234{vertical-align:0.000000px;}
.v1_c00234{vertical-align:24.479400px;}
.v3_c00234{vertical-align:30.240000px;}
.ls16_c00234{letter-spacing:-0.179568px;}
.lsb_c00234{letter-spacing:0.000000px;}
.lse_c00234{letter-spacing:0.144000px;}
.ls6_c00234{letter-spacing:0.236160px;}
.ls0_c00234{letter-spacing:0.265680px;}
.ls3_c00234{letter-spacing:0.295200px;}
.ls18_c00234{letter-spacing:0.371952px;}
.ls14_c00234{letter-spacing:0.478224px;}
.lsc_c00234{letter-spacing:0.492942px;}
.ls5_c00234{letter-spacing:0.531360px;}
.ls4_c00234{letter-spacing:0.543168px;}
.ls2_c00234{letter-spacing:0.560880px;}
.ls13_c00234{letter-spacing:0.584496px;}
.ls11_c00234{letter-spacing:0.696672px;}
.ls1_c00234{letter-spacing:0.712027px;}
.ls10_c00234{letter-spacing:0.743904px;}
.ls12_c00234{letter-spacing:0.766799px;}
.lsf_c00234{letter-spacing:5.301792px;}
.ls17_c00234{letter-spacing:5.335200px;}
.lsd_c00234{letter-spacing:5.354928px;}
.ls15_c00234{letter-spacing:5.430672px;}
.ls8_c00234{letter-spacing:5.941800px;}
.ls7_c00234{letter-spacing:5.975400px;}
.ls9_c00234{letter-spacing:5.976000px;}
.lsa_c00234{letter-spacing:6.159920px;}
.sc__c00234{text-shadow:none;}
.sc1_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00234{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc1_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00234{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00234{word-spacing:-21.768048px;}
.ws3_c00234{word-spacing:-21.714912px;}
.ws8_c00234{word-spacing:-21.043152px;}
.wsa_c00234{word-spacing:-20.947680px;}
.ws4_c00234{word-spacing:-17.685056px;}
.ws5_c00234{word-spacing:-17.630284px;}
.ws0_c00234{word-spacing:-17.411199px;}
.ws7_c00234{word-spacing:-16.944480px;}
.ws6_c00234{word-spacing:-16.918257px;}
.ws9_c00234{word-spacing:-11.429712px;}
.ws2_c00234{word-spacing:-10.152000px;}
.wsb_c00234{word-spacing:0.000000px;}
._1_c00234{margin-left:-1.180800px;}
._0_c00234{width:1.267512px;}
._4_c00234{width:2.880000px;}
._d_c00234{width:4.320000px;}
._9_c00234{width:5.997958px;}
._8_c00234{width:7.050511px;}
._c_c00234{width:8.609045px;}
._3_c00234{width:10.981440px;}
._5_c00234{width:12.381120px;}
._6_c00234{width:16.056000px;}
._a_c00234{width:17.136000px;}
._7_c00234{width:18.144000px;}
._2_c00234{width:20.545920px;}
._b_c00234{width:52.632000px;}
.fc0_c00234{color:rgb(0,0,0);}
.fs4_c00234{font-size:36.000000px;}
.fs6_c00234{font-size:41.760000px;}
.fs5_c00234{font-size:56.160000px;}
.fs2_c00234{font-size:59.040000px;}
.fs7_c00234{font-size:60.000000px;}
.fs3_c00234{font-size:60.857039px;}
.fs0_c00234{font-size:72.000000px;}
.fs1_c00234{font-size:74.215901px;}
.y0_c00234{bottom:0.000000px;}
.y31_c00234{bottom:3.120150px;}
.y30_c00234{bottom:34.744500px;}
.y1_c00234{bottom:54.000000px;}
.y2f_c00234{bottom:55.482840px;}
.y2e_c00234{bottom:72.766800px;}
.y2d_c00234{bottom:90.405000px;}
.y2c_c00234{bottom:96.525000px;}
.y2b_c00234{bottom:107.685000px;}
.y2a_c00234{bottom:113.805000px;}
.y29_c00234{bottom:125.325000px;}
.y28_c00234{bottom:131.445000px;}
.y27_c00234{bottom:142.965000px;}
.y26_c00234{bottom:149.085000px;}
.y25_c00234{bottom:175.725000px;}
.y24_c00234{bottom:284.085000px;}
.y23_c00234{bottom:320.085000px;}
.y22_c00234{bottom:356.085000px;}
.y21_c00234{bottom:392.085000px;}
.y20_c00234{bottom:428.085000px;}
.y1f_c00234{bottom:448.965000px;}
.y1e_c00234{bottom:469.845000px;}
.y1d_c00234{bottom:491.085000px;}
.y1c_c00234{bottom:511.965000px;}
.y1b_c00234{bottom:533.205000px;}
.y1a_c00234{bottom:569.205000px;}
.y19_c00234{bottom:590.085000px;}
.y18_c00234{bottom:610.965000px;}
.y17_c00234{bottom:632.205000px;}
.y16_c00234{bottom:668.205000px;}
.y15_c00234{bottom:689.085000px;}
.y14_c00234{bottom:709.965000px;}
.y13_c00234{bottom:731.205000px;}
.y12_c00234{bottom:752.085000px;}
.y11_c00234{bottom:772.965000px;}
.y10_c00234{bottom:808.965000px;}
.yf_c00234{bottom:844.965000px;}
.ye_c00234{bottom:873.405000px;}
.yd_c00234{bottom:905.805000px;}
.yc_c00234{bottom:905.806800px;}
.yb_c00234{bottom:923.445000px;}
.ya_c00234{bottom:956.205000px;}
.y9_c00234{bottom:977.805000px;}
.y8_c00234{bottom:995.085000px;}
.y7_c00234{bottom:1012.725000px;}
.y6_c00234{bottom:1030.005000px;}
.y5_c00234{bottom:1047.645000px;}
.y4_c00234{bottom:1081.125000px;}
.y3_c00234{bottom:1102.005000px;}
.y2_c00234{bottom:1138.365000px;}
.ha_c00234{height:19.255500px;}
.h9_c00234{height:32.616000px;}
.hb_c00234{height:46.320000px;}
.h6_c00234{height:46.981634px;}
.h5_c00234{height:53.490240px;}
.h7_c00234{height:57.095400px;}
.h4_c00234{height:57.294676px;}
.h3_c00234{height:65.232000px;}
.h8_c00234{height:68.074560px;}
.h2_c00234{height:1201.365000px;}
.h0_c00234{height:1262.835000px;}
.h1_c00234{height:1263.000000px;}
.w7_c00234{width:25.020000px;}
.w3_c00234{width:39.600000px;}
.w4_c00234{width:73.440000px;}
.w5_c00234{width:265.320000px;}
.w6_c00234{width:266.760000px;}
.w2_c00234{width:863.955000px;}
.w0_c00234{width:892.935000px;}
.w1_c00234{width:893.250000px;}
.x0_c00234{left:0.000000px;}
.x6_c00234{left:7.920150px;}
.x1_c00234{left:14.490000px;}
.x2_c00234{left:113.040150px;}
.x9_c00234{left:117.941700px;}
.x5_c00234{left:119.610000px;}
.xb_c00234{left:122.074500px;}
.x1d_c00234{left:127.217700px;}
.x13_c00234{left:133.034550px;}
.x1e_c00234{left:151.381650px;}
.xd_c00234{left:153.414600px;}
.x7_c00234{left:159.930000px;}
.x3_c00234{left:162.521550px;}
.xc_c00234{left:165.423750px;}
.x1f_c00234{left:170.779200px;}
.xe_c00234{left:188.379000px;}
.x1a_c00234{left:199.710600px;}
.x4_c00234{left:212.488050px;}
.x8_c00234{left:234.090000px;}
.x19_c00234{left:285.254550px;}
.x16_c00234{left:289.496700px;}
.x1b_c00234{left:351.415200px;}
.x1c_c00234{left:394.764300px;}
.xf_c00234{left:439.140300px;}
.x10_c00234{left:474.974850px;}
.xa_c00234{left:500.130000px;}
.x11_c00234{left:524.836350px;}
.x14_c00234{left:533.943600px;}
.x15_c00234{left:548.955300px;}
.x12_c00234{left:559.800600px;}
.x17_c00234{left:665.966700px;}
.x18_c00234{left:717.682200px;}
.x20_c00234{left:759.915000px;}
@media print{
.v2_c00234{vertical-align:-21.759467pt;}
.v0_c00234{vertical-align:0.000000pt;}
.v1_c00234{vertical-align:21.759467pt;}
.v3_c00234{vertical-align:26.880000pt;}
.ls16_c00234{letter-spacing:-0.159616pt;}
.lsb_c00234{letter-spacing:0.000000pt;}
.lse_c00234{letter-spacing:0.128000pt;}
.ls6_c00234{letter-spacing:0.209920pt;}
.ls0_c00234{letter-spacing:0.236160pt;}
.ls3_c00234{letter-spacing:0.262400pt;}
.ls18_c00234{letter-spacing:0.330624pt;}
.ls14_c00234{letter-spacing:0.425088pt;}
.lsc_c00234{letter-spacing:0.438171pt;}
.ls5_c00234{letter-spacing:0.472320pt;}
.ls4_c00234{letter-spacing:0.482816pt;}
.ls2_c00234{letter-spacing:0.498560pt;}
.ls13_c00234{letter-spacing:0.519552pt;}
.ls11_c00234{letter-spacing:0.619264pt;}
.ls1_c00234{letter-spacing:0.632913pt;}
.ls10_c00234{letter-spacing:0.661248pt;}
.ls12_c00234{letter-spacing:0.681599pt;}
.lsf_c00234{letter-spacing:4.712704pt;}
.ls17_c00234{letter-spacing:4.742400pt;}
.lsd_c00234{letter-spacing:4.759936pt;}
.ls15_c00234{letter-spacing:4.827264pt;}
.ls8_c00234{letter-spacing:5.281600pt;}
.ls7_c00234{letter-spacing:5.311467pt;}
.ls9_c00234{letter-spacing:5.312000pt;}
.lsa_c00234{letter-spacing:5.475484pt;}
.ws1_c00234{word-spacing:-19.349376pt;}
.ws3_c00234{word-spacing:-19.302144pt;}
.ws8_c00234{word-spacing:-18.705024pt;}
.wsa_c00234{word-spacing:-18.620160pt;}
.ws4_c00234{word-spacing:-15.720049pt;}
.ws5_c00234{word-spacing:-15.671364pt;}
.ws0_c00234{word-spacing:-15.476621pt;}
.ws7_c00234{word-spacing:-15.061760pt;}
.ws6_c00234{word-spacing:-15.038451pt;}
.ws9_c00234{word-spacing:-10.159744pt;}
.ws2_c00234{word-spacing:-9.024000pt;}
.wsb_c00234{word-spacing:0.000000pt;}
._1_c00234{margin-left:-1.049600pt;}
._0_c00234{width:1.126677pt;}
._4_c00234{width:2.560000pt;}
._d_c00234{width:3.840000pt;}
._9_c00234{width:5.331518pt;}
._8_c00234{width:6.267121pt;}
._c_c00234{width:7.652484pt;}
._3_c00234{width:9.761280pt;}
._5_c00234{width:11.005440pt;}
._6_c00234{width:14.272000pt;}
._a_c00234{width:15.232000pt;}
._7_c00234{width:16.128000pt;}
._2_c00234{width:18.263040pt;}
._b_c00234{width:46.784000pt;}
.fs4_c00234{font-size:32.000000pt;}
.fs6_c00234{font-size:37.120000pt;}
.fs5_c00234{font-size:49.920000pt;}
.fs2_c00234{font-size:52.480000pt;}
.fs7_c00234{font-size:53.333333pt;}
.fs3_c00234{font-size:54.095146pt;}
.fs0_c00234{font-size:64.000000pt;}
.fs1_c00234{font-size:65.969690pt;}
.y0_c00234{bottom:0.000000pt;}
.y31_c00234{bottom:2.773467pt;}
.y30_c00234{bottom:30.884000pt;}
.y1_c00234{bottom:48.000000pt;}
.y2f_c00234{bottom:49.318080pt;}
.y2e_c00234{bottom:64.681600pt;}
.y2d_c00234{bottom:80.360000pt;}
.y2c_c00234{bottom:85.800000pt;}
.y2b_c00234{bottom:95.720000pt;}
.y2a_c00234{bottom:101.160000pt;}
.y29_c00234{bottom:111.400000pt;}
.y28_c00234{bottom:116.840000pt;}
.y27_c00234{bottom:127.080000pt;}
.y26_c00234{bottom:132.520000pt;}
.y25_c00234{bottom:156.200000pt;}
.y24_c00234{bottom:252.520000pt;}
.y23_c00234{bottom:284.520000pt;}
.y22_c00234{bottom:316.520000pt;}
.y21_c00234{bottom:348.520000pt;}
.y20_c00234{bottom:380.520000pt;}
.y1f_c00234{bottom:399.080000pt;}
.y1e_c00234{bottom:417.640000pt;}
.y1d_c00234{bottom:436.520000pt;}
.y1c_c00234{bottom:455.080000pt;}
.y1b_c00234{bottom:473.960000pt;}
.y1a_c00234{bottom:505.960000pt;}
.y19_c00234{bottom:524.520000pt;}
.y18_c00234{bottom:543.080000pt;}
.y17_c00234{bottom:561.960000pt;}
.y16_c00234{bottom:593.960000pt;}
.y15_c00234{bottom:612.520000pt;}
.y14_c00234{bottom:631.080000pt;}
.y13_c00234{bottom:649.960000pt;}
.y12_c00234{bottom:668.520000pt;}
.y11_c00234{bottom:687.080000pt;}
.y10_c00234{bottom:719.080000pt;}
.yf_c00234{bottom:751.080000pt;}
.ye_c00234{bottom:776.360000pt;}
.yd_c00234{bottom:805.160000pt;}
.yc_c00234{bottom:805.161600pt;}
.yb_c00234{bottom:820.840000pt;}
.ya_c00234{bottom:849.960000pt;}
.y9_c00234{bottom:869.160000pt;}
.y8_c00234{bottom:884.520000pt;}
.y7_c00234{bottom:900.200000pt;}
.y6_c00234{bottom:915.560000pt;}
.y5_c00234{bottom:931.240000pt;}
.y4_c00234{bottom:961.000000pt;}
.y3_c00234{bottom:979.560000pt;}
.y2_c00234{bottom:1011.880000pt;}
.ha_c00234{height:17.116000pt;}
.h9_c00234{height:28.992000pt;}
.hb_c00234{height:41.173333pt;}
.h6_c00234{height:41.761453pt;}
.h5_c00234{height:47.546880pt;}
.h7_c00234{height:50.751467pt;}
.h4_c00234{height:50.928601pt;}
.h3_c00234{height:57.984000pt;}
.h8_c00234{height:60.510720pt;}
.h2_c00234{height:1067.880000pt;}
.h0_c00234{height:1122.520000pt;}
.h1_c00234{height:1122.666667pt;}
.w7_c00234{width:22.240000pt;}
.w3_c00234{width:35.200000pt;}
.w4_c00234{width:65.280000pt;}
.w5_c00234{width:235.840000pt;}
.w6_c00234{width:237.120000pt;}
.w2_c00234{width:767.960000pt;}
.w0_c00234{width:793.720000pt;}
.w1_c00234{width:794.000000pt;}
.x0_c00234{left:0.000000pt;}
.x6_c00234{left:7.040133pt;}
.x1_c00234{left:12.880000pt;}
.x2_c00234{left:100.480133pt;}
.x9_c00234{left:104.837067pt;}
.x5_c00234{left:106.320000pt;}
.xb_c00234{left:108.510667pt;}
.x1d_c00234{left:113.082400pt;}
.x13_c00234{left:118.252933pt;}
.x1e_c00234{left:134.561467pt;}
.xd_c00234{left:136.368533pt;}
.x7_c00234{left:142.160000pt;}
.x3_c00234{left:144.463600pt;}
.xc_c00234{left:147.043333pt;}
.x1f_c00234{left:151.803733pt;}
.xe_c00234{left:167.448000pt;}
.x1a_c00234{left:177.520533pt;}
.x4_c00234{left:188.878267pt;}
.x8_c00234{left:208.080000pt;}
.x19_c00234{left:253.559600pt;}
.x16_c00234{left:257.330400pt;}
.x1b_c00234{left:312.369067pt;}
.x1c_c00234{left:350.901600pt;}
.xf_c00234{left:390.346933pt;}
.x10_c00234{left:422.199867pt;}
.xa_c00234{left:444.560000pt;}
.x11_c00234{left:466.521200pt;}
.x14_c00234{left:474.616533pt;}
.x15_c00234{left:487.960267pt;}
.x12_c00234{left:497.600533pt;}
.x17_c00234{left:591.970400pt;}
.x18_c00234{left:637.939733pt;}
.x20_c00234{left:675.480000pt;}
}





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

.ir_c00235:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00235;src:url('chunks/assets/font_e8b1af391afa40e81f1ecbe9.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;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_c00235;src:url('chunks/assets/font_188ab99bcebd09907025e287.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_a37b40605d01d9d02bb5d601.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:0.787000;font-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_c00235{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00235{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls3_c00235{letter-spacing:0.000000px;}
.ls6_c00235{letter-spacing:0.202464px;}
.ls0_c00235{letter-spacing:0.238560px;}
.ls7_c00235{letter-spacing:0.239760px;}
.ls8_c00235{letter-spacing:0.282384px;}
.ls5_c00235{letter-spacing:0.373454px;}
.ls4_c00235{letter-spacing:0.399600px;}
.ls1_c00235{letter-spacing:5.976000px;}
.ls2_c00235{letter-spacing:6.159920px;}
.sc__c00235{text-shadow:none;}
.sc1_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00235{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc1_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00235{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00235{word-spacing:-15.094224px;}
.ws1_c00235{word-spacing:-15.051600px;}
.ws0_c00235{word-spacing:-0.428374px;}
.ws3_c00235{word-spacing:0.000000px;}
._0_c00235{margin-left:-1.118880px;}
._1_c00235{width:1.012320px;}
.fc0_c00235{color:rgb(0,0,0);}
.fs2_c00235{font-size:53.280000px;}
.fs3_c00235{font-size:54.919767px;}
.fs4_c00235{font-size:60.000000px;}
.fs0_c00235{font-size:72.000000px;}
.fs1_c00235{font-size:74.215901px;}
.y0_c00235{bottom:0.000000px;}
.y29_c00235{bottom:3.120150px;}
.y22_c00235{bottom:15.120000px;}
.y25_c00235{bottom:18.720000px;}
.y27_c00235{bottom:30.600000px;}
.y21_c00235{bottom:30.960000px;}
.y24_c00235{bottom:34.560000px;}
.y28_c00235{bottom:34.744500px;}
.y1_c00235{bottom:54.000000px;}
.y26_c00235{bottom:76.365000px;}
.y1f_c00235{bottom:76.725000px;}
.y1e_c00235{bottom:112.725000px;}
.y1d_c00235{bottom:148.725000px;}
.y1c_c00235{bottom:184.725000px;}
.y1b_c00235{bottom:220.725000px;}
.y1a_c00235{bottom:256.725000px;}
.y19_c00235{bottom:292.725000px;}
.y18_c00235{bottom:328.725000px;}
.y17_c00235{bottom:364.725000px;}
.y16_c00235{bottom:400.725000px;}
.y23_c00235{bottom:427.365000px;}
.y15_c00235{bottom:436.725000px;}
.y14_c00235{bottom:472.725000px;}
.y13_c00235{bottom:509.085000px;}
.y12_c00235{bottom:545.085000px;}
.y11_c00235{bottom:581.085000px;}
.y10_c00235{bottom:617.085000px;}
.yf_c00235{bottom:653.085000px;}
.ye_c00235{bottom:689.085000px;}
.yd_c00235{bottom:725.085000px;}
.yc_c00235{bottom:761.085000px;}
.y20_c00235{bottom:788.805000px;}
.yb_c00235{bottom:797.085000px;}
.ya_c00235{bottom:833.085000px;}
.y9_c00235{bottom:869.085000px;}
.y8_c00235{bottom:905.085000px;}
.y7_c00235{bottom:941.085000px;}
.y6_c00235{bottom:977.085000px;}
.y5_c00235{bottom:1013.085000px;}
.y4_c00235{bottom:1049.085000px;}
.y3_c00235{bottom:1085.085000px;}
.y2_c00235{bottom:1138.365000px;}
.ha_c00235{height:19.255500px;}
.h6_c00235{height:41.132160px;}
.h7_c00235{height:42.398060px;}
.h9_c00235{height:43.200000px;}
.h5_c00235{height:43.560000px;}
.hb_c00235{height:46.320000px;}
.h8_c00235{height:47.160000px;}
.h3_c00235{height:55.584000px;}
.h4_c00235{height:57.294676px;}
.h2_c00235{height:1201.365000px;}
.h0_c00235{height:1262.835000px;}
.h1_c00235{height:1263.000000px;}
.w6_c00235{width:25.020000px;}
.w4_c00235{width:600.840000px;}
.w5_c00235{width:601.560000px;}
.w3_c00235{width:627.120000px;}
.w2_c00235{width:863.955000px;}
.w0_c00235{width:892.935000px;}
.w1_c00235{width:893.250000px;}
.x0_c00235{left:0.000000px;}
.xf_c00235{left:8.583450px;}
.x1_c00235{left:14.490000px;}
.x2_c00235{left:113.040150px;}
.xd_c00235{left:116.025750px;}
.x10_c00235{left:118.890300px;}
.x9_c00235{left:129.188550px;}
.x6_c00235{left:143.059050px;}
.x11_c00235{left:149.642850px;}
.x5_c00235{left:151.290000px;}
.x3_c00235{left:162.521550px;}
.xa_c00235{left:178.290000px;}
.xe_c00235{left:179.730000px;}
.x4_c00235{left:212.488050px;}
.xb_c00235{left:240.203250px;}
.x7_c00235{left:253.365900px;}
.xc_c00235{left:270.955650px;}
.x8_c00235{left:284.118450px;}
.x12_c00235{left:759.915000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls3_c00235{letter-spacing:0.000000pt;}
.ls6_c00235{letter-spacing:0.179968pt;}
.ls0_c00235{letter-spacing:0.212053pt;}
.ls7_c00235{letter-spacing:0.213120pt;}
.ls8_c00235{letter-spacing:0.251008pt;}
.ls5_c00235{letter-spacing:0.331959pt;}
.ls4_c00235{letter-spacing:0.355200pt;}
.ls1_c00235{letter-spacing:5.312000pt;}
.ls2_c00235{letter-spacing:5.475484pt;}
.ws2_c00235{word-spacing:-13.417088pt;}
.ws1_c00235{word-spacing:-13.379200pt;}
.ws0_c00235{word-spacing:-0.380777pt;}
.ws3_c00235{word-spacing:0.000000pt;}
._0_c00235{margin-left:-0.994560pt;}
._1_c00235{width:0.899840pt;}
.fs2_c00235{font-size:47.360000pt;}
.fs3_c00235{font-size:48.817571pt;}
.fs4_c00235{font-size:53.333333pt;}
.fs0_c00235{font-size:64.000000pt;}
.fs1_c00235{font-size:65.969690pt;}
.y0_c00235{bottom:0.000000pt;}
.y29_c00235{bottom:2.773467pt;}
.y22_c00235{bottom:13.440000pt;}
.y25_c00235{bottom:16.640000pt;}
.y27_c00235{bottom:27.200000pt;}
.y21_c00235{bottom:27.520000pt;}
.y24_c00235{bottom:30.720000pt;}
.y28_c00235{bottom:30.884000pt;}
.y1_c00235{bottom:48.000000pt;}
.y26_c00235{bottom:67.880000pt;}
.y1f_c00235{bottom:68.200000pt;}
.y1e_c00235{bottom:100.200000pt;}
.y1d_c00235{bottom:132.200000pt;}
.y1c_c00235{bottom:164.200000pt;}
.y1b_c00235{bottom:196.200000pt;}
.y1a_c00235{bottom:228.200000pt;}
.y19_c00235{bottom:260.200000pt;}
.y18_c00235{bottom:292.200000pt;}
.y17_c00235{bottom:324.200000pt;}
.y16_c00235{bottom:356.200000pt;}
.y23_c00235{bottom:379.880000pt;}
.y15_c00235{bottom:388.200000pt;}
.y14_c00235{bottom:420.200000pt;}
.y13_c00235{bottom:452.520000pt;}
.y12_c00235{bottom:484.520000pt;}
.y11_c00235{bottom:516.520000pt;}
.y10_c00235{bottom:548.520000pt;}
.yf_c00235{bottom:580.520000pt;}
.ye_c00235{bottom:612.520000pt;}
.yd_c00235{bottom:644.520000pt;}
.yc_c00235{bottom:676.520000pt;}
.y20_c00235{bottom:701.160000pt;}
.yb_c00235{bottom:708.520000pt;}
.ya_c00235{bottom:740.520000pt;}
.y9_c00235{bottom:772.520000pt;}
.y8_c00235{bottom:804.520000pt;}
.y7_c00235{bottom:836.520000pt;}
.y6_c00235{bottom:868.520000pt;}
.y5_c00235{bottom:900.520000pt;}
.y4_c00235{bottom:932.520000pt;}
.y3_c00235{bottom:964.520000pt;}
.y2_c00235{bottom:1011.880000pt;}
.ha_c00235{height:17.116000pt;}
.h6_c00235{height:36.561920pt;}
.h7_c00235{height:37.687165pt;}
.h9_c00235{height:38.400000pt;}
.h5_c00235{height:38.720000pt;}
.hb_c00235{height:41.173333pt;}
.h8_c00235{height:41.920000pt;}
.h3_c00235{height:49.408000pt;}
.h4_c00235{height:50.928601pt;}
.h2_c00235{height:1067.880000pt;}
.h0_c00235{height:1122.520000pt;}
.h1_c00235{height:1122.666667pt;}
.w6_c00235{width:22.240000pt;}
.w4_c00235{width:534.080000pt;}
.w5_c00235{width:534.720000pt;}
.w3_c00235{width:557.440000pt;}
.w2_c00235{width:767.960000pt;}
.w0_c00235{width:793.720000pt;}
.w1_c00235{width:794.000000pt;}
.x0_c00235{left:0.000000pt;}
.xf_c00235{left:7.629733pt;}
.x1_c00235{left:12.880000pt;}
.x2_c00235{left:100.480133pt;}
.xd_c00235{left:103.134000pt;}
.x10_c00235{left:105.680267pt;}
.x9_c00235{left:114.834267pt;}
.x6_c00235{left:127.163600pt;}
.x11_c00235{left:133.015867pt;}
.x5_c00235{left:134.480000pt;}
.x3_c00235{left:144.463600pt;}
.xa_c00235{left:158.480000pt;}
.xe_c00235{left:159.760000pt;}
.x4_c00235{left:188.878267pt;}
.xb_c00235{left:213.514000pt;}
.x7_c00235{left:225.214133pt;}
.xc_c00235{left:240.849467pt;}
.x8_c00235{left:252.549733pt;}
.x12_c00235{left:675.480000pt;}
}





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

.ir_c00236:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00236;src:url('chunks/assets/font_2038f87bb1477af22dbb9992.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;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_c00236;src:url('chunks/assets/font_188ab99bcebd09907025e287.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_137ef2b59d9b2f24e3328865.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:0.787000;font-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_c00236{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00236{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls3_c00236{letter-spacing:0.000000px;}
.ls5_c00236{letter-spacing:0.202464px;}
.ls7_c00236{letter-spacing:0.239760px;}
.ls6_c00236{letter-spacing:0.362304px;}
.ls4_c00236{letter-spacing:0.373454px;}
.ls0_c00236{letter-spacing:0.399600px;}
.ls1_c00236{letter-spacing:5.976000px;}
.ls2_c00236{letter-spacing:6.159920px;}
.sc__c00236{text-shadow:none;}
.sc1_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00236{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc1_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00236{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00236{word-spacing:-15.211440px;}
.ws0_c00236{word-spacing:-0.428374px;}
.ws2_c00236{word-spacing:0.000000px;}
._0_c00236{margin-left:-1.118880px;}
._1_c00236{width:1.012320px;}
.fc1_c00236{color:transparent;}
.fc0_c00236{color:rgb(0,0,0);}
.fs2_c00236{font-size:53.280000px;}
.fs3_c00236{font-size:54.919767px;}
.fs4_c00236{font-size:60.000000px;}
.fs0_c00236{font-size:72.000000px;}
.fs1_c00236{font-size:74.215901px;}
.y26_c00236{bottom:-20.520000px;}
.y0_c00236{bottom:0.000000px;}
.y2a_c00236{bottom:3.120150px;}
.y25_c00236{bottom:10.080000px;}
.y1e_c00236{bottom:10.800000px;}
.y1b_c00236{bottom:14.400000px;}
.y24_c00236{bottom:25.920000px;}
.y1d_c00236{bottom:26.640000px;}
.y28_c00236{bottom:34.560000px;}
.y29_c00236{bottom:34.744500px;}
.y23_c00236{bottom:41.760000px;}
.y1_c00236{bottom:54.000000px;}
.y22_c00236{bottom:57.240000px;}
.y21_c00236{bottom:73.080000px;}
.y20_c00236{bottom:88.920000px;}
.y27_c00236{bottom:94.005000px;}
.y19_c00236{bottom:292.725000px;}
.y18_c00236{bottom:328.725000px;}
.y17_c00236{bottom:364.725000px;}
.y16_c00236{bottom:400.725000px;}
.y15_c00236{bottom:436.725000px;}
.y1c_c00236{bottom:468.405000px;}
.y14_c00236{bottom:472.725000px;}
.y1f_c00236{bottom:507.645000px;}
.y13_c00236{bottom:509.085000px;}
.y12_c00236{bottom:545.085000px;}
.y11_c00236{bottom:581.085000px;}
.y10_c00236{bottom:617.085000px;}
.yf_c00236{bottom:653.085000px;}
.ye_c00236{bottom:689.085000px;}
.yd_c00236{bottom:725.085000px;}
.yc_c00236{bottom:761.085000px;}
.yb_c00236{bottom:797.085000px;}
.y1a_c00236{bottom:825.885000px;}
.ya_c00236{bottom:833.085000px;}
.y9_c00236{bottom:869.085000px;}
.y8_c00236{bottom:905.085000px;}
.y7_c00236{bottom:941.085000px;}
.y6_c00236{bottom:977.085000px;}
.y5_c00236{bottom:1013.085000px;}
.y4_c00236{bottom:1049.085000px;}
.y3_c00236{bottom:1085.085000px;}
.y2_c00236{bottom:1138.365000px;}
.hb_c00236{height:19.255500px;}
.h5_c00236{height:27.000000px;}
.h8_c00236{height:39.240000px;}
.h6_c00236{height:41.132160px;}
.h7_c00236{height:42.398060px;}
.hc_c00236{height:46.320000px;}
.ha_c00236{height:47.160000px;}
.h3_c00236{height:55.584000px;}
.h4_c00236{height:57.294676px;}
.h9_c00236{height:101.520000px;}
.h2_c00236{height:1201.365000px;}
.h0_c00236{height:1262.835000px;}
.h1_c00236{height:1263.000000px;}
.w7_c00236{width:25.020000px;}
.w5_c00236{width:105.480000px;}
.w4_c00236{width:359.640000px;}
.w3_c00236{width:623.160000px;}
.w6_c00236{width:633.960000px;}
.w2_c00236{width:863.955000px;}
.w0_c00236{width:892.935000px;}
.w1_c00236{width:893.250000px;}
.x0_c00236{left:0.000000px;}
.x11_c00236{left:3.240150px;}
.xc_c00236{left:4.891800px;}
.xa_c00236{left:7.357200px;}
.xd_c00236{left:9.042750px;}
.x1_c00236{left:14.490000px;}
.x10_c00236{left:18.405000px;}
.xf_c00236{left:19.538700px;}
.xe_c00236{left:24.432750px;}
.x6_c00236{left:62.399250px;}
.x13_c00236{left:67.971900px;}
.x2_c00236{left:113.040150px;}
.x9_c00236{left:122.490000px;}
.x5_c00236{left:126.090000px;}
.x12_c00236{left:127.530000px;}
.x3_c00236{left:162.521550px;}
.x7_c00236{left:172.705950px;}
.x14_c00236{left:178.278600px;}
.x8_c00236{left:203.458650px;}
.x15_c00236{left:209.031150px;}
.x4_c00236{left:212.488050px;}
.xb_c00236{left:619.650000px;}
.x16_c00236{left:759.915000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls3_c00236{letter-spacing:0.000000pt;}
.ls5_c00236{letter-spacing:0.179968pt;}
.ls7_c00236{letter-spacing:0.213120pt;}
.ls6_c00236{letter-spacing:0.322048pt;}
.ls4_c00236{letter-spacing:0.331959pt;}
.ls0_c00236{letter-spacing:0.355200pt;}
.ls1_c00236{letter-spacing:5.312000pt;}
.ls2_c00236{letter-spacing:5.475484pt;}
.ws1_c00236{word-spacing:-13.521280pt;}
.ws0_c00236{word-spacing:-0.380777pt;}
.ws2_c00236{word-spacing:0.000000pt;}
._0_c00236{margin-left:-0.994560pt;}
._1_c00236{width:0.899840pt;}
.fs2_c00236{font-size:47.360000pt;}
.fs3_c00236{font-size:48.817571pt;}
.fs4_c00236{font-size:53.333333pt;}
.fs0_c00236{font-size:64.000000pt;}
.fs1_c00236{font-size:65.969690pt;}
.y26_c00236{bottom:-18.240000pt;}
.y0_c00236{bottom:0.000000pt;}
.y2a_c00236{bottom:2.773467pt;}
.y25_c00236{bottom:8.960000pt;}
.y1e_c00236{bottom:9.600000pt;}
.y1b_c00236{bottom:12.800000pt;}
.y24_c00236{bottom:23.040000pt;}
.y1d_c00236{bottom:23.680000pt;}
.y28_c00236{bottom:30.720000pt;}
.y29_c00236{bottom:30.884000pt;}
.y23_c00236{bottom:37.120000pt;}
.y1_c00236{bottom:48.000000pt;}
.y22_c00236{bottom:50.880000pt;}
.y21_c00236{bottom:64.960000pt;}
.y20_c00236{bottom:79.040000pt;}
.y27_c00236{bottom:83.560000pt;}
.y19_c00236{bottom:260.200000pt;}
.y18_c00236{bottom:292.200000pt;}
.y17_c00236{bottom:324.200000pt;}
.y16_c00236{bottom:356.200000pt;}
.y15_c00236{bottom:388.200000pt;}
.y1c_c00236{bottom:416.360000pt;}
.y14_c00236{bottom:420.200000pt;}
.y1f_c00236{bottom:451.240000pt;}
.y13_c00236{bottom:452.520000pt;}
.y12_c00236{bottom:484.520000pt;}
.y11_c00236{bottom:516.520000pt;}
.y10_c00236{bottom:548.520000pt;}
.yf_c00236{bottom:580.520000pt;}
.ye_c00236{bottom:612.520000pt;}
.yd_c00236{bottom:644.520000pt;}
.yc_c00236{bottom:676.520000pt;}
.yb_c00236{bottom:708.520000pt;}
.y1a_c00236{bottom:734.120000pt;}
.ya_c00236{bottom:740.520000pt;}
.y9_c00236{bottom:772.520000pt;}
.y8_c00236{bottom:804.520000pt;}
.y7_c00236{bottom:836.520000pt;}
.y6_c00236{bottom:868.520000pt;}
.y5_c00236{bottom:900.520000pt;}
.y4_c00236{bottom:932.520000pt;}
.y3_c00236{bottom:964.520000pt;}
.y2_c00236{bottom:1011.880000pt;}
.hb_c00236{height:17.116000pt;}
.h5_c00236{height:24.000000pt;}
.h8_c00236{height:34.880000pt;}
.h6_c00236{height:36.561920pt;}
.h7_c00236{height:37.687165pt;}
.hc_c00236{height:41.173333pt;}
.ha_c00236{height:41.920000pt;}
.h3_c00236{height:49.408000pt;}
.h4_c00236{height:50.928601pt;}
.h9_c00236{height:90.240000pt;}
.h2_c00236{height:1067.880000pt;}
.h0_c00236{height:1122.520000pt;}
.h1_c00236{height:1122.666667pt;}
.w7_c00236{width:22.240000pt;}
.w5_c00236{width:93.760000pt;}
.w4_c00236{width:319.680000pt;}
.w3_c00236{width:553.920000pt;}
.w6_c00236{width:563.520000pt;}
.w2_c00236{width:767.960000pt;}
.w0_c00236{width:793.720000pt;}
.w1_c00236{width:794.000000pt;}
.x0_c00236{left:0.000000pt;}
.x11_c00236{left:2.880133pt;}
.xc_c00236{left:4.348267pt;}
.xa_c00236{left:6.539733pt;}
.xd_c00236{left:8.038000pt;}
.x1_c00236{left:12.880000pt;}
.x10_c00236{left:16.360000pt;}
.xf_c00236{left:17.367733pt;}
.xe_c00236{left:21.718000pt;}
.x6_c00236{left:55.466000pt;}
.x13_c00236{left:60.419467pt;}
.x2_c00236{left:100.480133pt;}
.x9_c00236{left:108.880000pt;}
.x5_c00236{left:112.080000pt;}
.x12_c00236{left:113.360000pt;}
.x3_c00236{left:144.463600pt;}
.x7_c00236{left:153.516400pt;}
.x14_c00236{left:158.469867pt;}
.x8_c00236{left:180.852133pt;}
.x15_c00236{left:185.805467pt;}
.x4_c00236{left:188.878267pt;}
.xb_c00236{left:550.800000pt;}
.x16_c00236{left:675.480000pt;}
}





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

.ir_c00237:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00237;src:url('chunks/assets/font_166ba8d7fe365a595f286e67.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:0.000000px;}
.fc1_c00237{color:transparent;}
.fc0_c00237{color:rgb(0,0,0);}
.fs0_c00237{font-size:60.000000px;}
.y0_c00237{bottom:0.000000px;}
.y2_c00237{bottom:3.120150px;}
.y1_c00237{bottom:34.744500px;}
.h2_c00237{height:19.255500px;}
.h3_c00237{height:46.320000px;}
.h0_c00237{height:1262.835000px;}
.h1_c00237{height:1263.000000px;}
.w2_c00237{width:25.020000px;}
.w0_c00237{width:892.920000px;}
.w1_c00237{width:893.250000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:759.900000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws0_c00237{word-spacing:0.000000pt;}
.fs0_c00237{font-size:53.333333pt;}
.y0_c00237{bottom:0.000000pt;}
.y2_c00237{bottom:2.773467pt;}
.y1_c00237{bottom:30.884000pt;}
.h2_c00237{height:17.116000pt;}
.h3_c00237{height:41.173333pt;}
.h0_c00237{height:1122.520000pt;}
.h1_c00237{height:1122.666667pt;}
.w2_c00237{width:22.240000pt;}
.w0_c00237{width:793.706667pt;}
.w1_c00237{width:794.000000pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:675.466667pt;}
}





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

.ir_c00238:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00238;src:url('chunks/assets/font_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_f501e7d3e35d3b60d2ee0819.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls0_c00238{letter-spacing:0.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00238{word-spacing:0.000000px;}
.fc1_c00238{color:transparent;}
.fc0_c00238{color:rgb(0,0,0);}
.fs1_c00238{font-size:60.000000px;}
.fs0_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y4_c00238{bottom:3.120150px;}
.y3_c00238{bottom:34.744500px;}
.y1_c00238{bottom:54.000000px;}
.y2_c00238{bottom:1085.085000px;}
.h4_c00238{height:19.255500px;}
.h5_c00238{height:46.320000px;}
.h3_c00238{height:55.584000px;}
.h2_c00238{height:1201.365000px;}
.h0_c00238{height:1262.835000px;}
.h1_c00238{height:1263.000000px;}
.w3_c00238{width:25.020000px;}
.w2_c00238{width:863.955000px;}
.w0_c00238{width:892.935000px;}
.w1_c00238{width:893.250000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:14.490000px;}
.x2_c00238{left:113.040150px;}
.x3_c00238{left:759.915000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws0_c00238{word-spacing:0.000000pt;}
.fs1_c00238{font-size:53.333333pt;}
.fs0_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y4_c00238{bottom:2.773467pt;}
.y3_c00238{bottom:30.884000pt;}
.y1_c00238{bottom:48.000000pt;}
.y2_c00238{bottom:964.520000pt;}
.h4_c00238{height:17.116000pt;}
.h5_c00238{height:41.173333pt;}
.h3_c00238{height:49.408000pt;}
.h2_c00238{height:1067.880000pt;}
.h0_c00238{height:1122.520000pt;}
.h1_c00238{height:1122.666667pt;}
.w3_c00238{width:22.240000pt;}
.w2_c00238{width:767.960000pt;}
.w0_c00238{width:793.720000pt;}
.w1_c00238{width:794.000000pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:12.880000pt;}
.x2_c00238{left:100.480133pt;}
.x3_c00238{left:675.480000pt;}
}





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

.ir_c00239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00239;src:url('chunks/assets/font_5ee34a5ae92fa923b5d8fa97.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_711b90cf3cf51c4b9c79451a.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;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:ff3_c00239;src:url('chunks/assets/font_ef7a7275e6388e82b26bbf75.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00239{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00239{vertical-align:-24.480000px;}
.v0_c00239{vertical-align:0.000000px;}
.v1_c00239{vertical-align:30.240000px;}
.ls13_c00239{letter-spacing:0.000000px;}
.ls1f_c00239{letter-spacing:0.265680px;}
.ls10_c00239{letter-spacing:0.295200px;}
.ls2c_c00239{letter-spacing:0.318816px;}
.lse_c00239{letter-spacing:0.324720px;}
.ls5_c00239{letter-spacing:0.332640px;}
.lsc_c00239{letter-spacing:0.354240px;}
.ls27_c00239{letter-spacing:0.371952px;}
.ls19_c00239{letter-spacing:0.425088px;}
.ls1c_c00239{letter-spacing:0.438171px;}
.ls7_c00239{letter-spacing:0.456240px;}
.ls24_c00239{letter-spacing:0.478224px;}
.ls9_c00239{letter-spacing:0.482640px;}
.lsa_c00239{letter-spacing:0.492942px;}
.lsd_c00239{letter-spacing:0.513648px;}
.lsb_c00239{letter-spacing:0.531360px;}
.ls28_c00239{letter-spacing:0.547713px;}
.ls6_c00239{letter-spacing:0.580440px;}
.ls20_c00239{letter-spacing:0.584496px;}
.ls2a_c00239{letter-spacing:0.690768px;}
.ls4_c00239{letter-spacing:0.704040px;}
.ls25_c00239{letter-spacing:0.743904px;}
.ls11_c00239{letter-spacing:0.821570px;}
.ls1e_c00239{letter-spacing:0.962352px;}
.ls1b_c00239{letter-spacing:1.783008px;}
.ls18_c00239{letter-spacing:3.743136px;}
.ls1a_c00239{letter-spacing:4.740912px;}
.ls15_c00239{letter-spacing:5.149872px;}
.ls14_c00239{letter-spacing:5.245344px;}
.ls3_c00239{letter-spacing:5.335200px;}
.ls1_c00239{letter-spacing:5.406777px;}
.ls17_c00239{letter-spacing:5.430672px;}
.lsf_c00239{letter-spacing:5.490720px;}
.ls26_c00239{letter-spacing:5.514336px;}
.ls22_c00239{letter-spacing:5.780016px;}
.ls2_c00239{letter-spacing:5.976000px;}
.ls8_c00239{letter-spacing:5.990400px;}
.ls0_c00239{letter-spacing:6.159301px;}
.ls12_c00239{letter-spacing:6.159920px;}
.ls29_c00239{letter-spacing:7.132032px;}
.ls23_c00239{letter-spacing:11.967408px;}
.ls21_c00239{letter-spacing:12.776256px;}
.ls1d_c00239{letter-spacing:13.768128px;}
.ls16_c00239{letter-spacing:13.989600px;}
.ls2b_c00239{letter-spacing:14.500224px;}
.sc__c00239{text-shadow:none;}
.sc1_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00239{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc1_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00239{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00239{word-spacing:-25.992000px;}
.ws8_c00239{word-spacing:-22.193136px;}
.ws0_c00239{word-spacing:-21.499753px;}
.ws4_c00239{word-spacing:-21.043152px;}
.ws1_c00239{word-spacing:-20.857824px;}
.ws3_c00239{word-spacing:-20.762352px;}
.wsa_c00239{word-spacing:-17.739827px;}
.ws9_c00239{word-spacing:-17.465970px;}
.ws6_c00239{word-spacing:-17.411199px;}
.ws7_c00239{word-spacing:-16.944480px;}
.ws5_c00239{word-spacing:-10.008000px;}
.wsb_c00239{word-spacing:0.000000px;}
._9_c00239{margin-left:-14.438400px;}
._f_c00239{margin-left:-13.165920px;}
._11_c00239{margin-left:-11.453760px;}
._6_c00239{margin-left:-8.445151px;}
._14_c00239{margin-left:-6.789600px;}
._15_c00239{margin-left:-5.785920px;}
._d_c00239{margin-left:-4.309920px;}
._c_c00239{margin-left:-3.188160px;}
._e_c00239{margin-left:-1.298880px;}
._0_c00239{width:1.033008px;}
._4_c00239{width:2.664000px;}
._5_c00239{width:3.816000px;}
._2_c00239{width:4.926480px;}
._1_c00239{width:6.284760px;}
._7_c00239{width:7.353720px;}
._13_c00239{width:8.947560px;}
._12_c00239{width:11.158560px;}
._10_c00239{width:12.586080px;}
._8_c00239{width:13.968000px;}
._b_c00239{width:15.408000px;}
._a_c00239{width:26.424000px;}
._3_c00239{width:31.392000px;}
.fc0_c00239{color:rgb(0,0,0);}
.fs6_c00239{font-size:36.000000px;}
.fs4_c00239{font-size:41.760000px;}
.fs5_c00239{font-size:43.045223px;}
.fs3_c00239{font-size:56.160000px;}
.fs2_c00239{font-size:57.888403px;}
.fs7_c00239{font-size:59.040000px;}
.fs9_c00239{font-size:60.000000px;}
.fs8_c00239{font-size:60.857039px;}
.fs0_c00239{font-size:72.000000px;}
.fs1_c00239{font-size:74.215901px;}
.y0_c00239{bottom:0.000000px;}
.y35_c00239{bottom:3.120150px;}
.y34_c00239{bottom:34.744500px;}
.y1_c00239{bottom:54.000000px;}
.y33_c00239{bottom:55.481040px;}
.y32_c00239{bottom:72.765000px;}
.y31_c00239{bottom:78.885000px;}
.y30_c00239{bottom:90.405000px;}
.y2f_c00239{bottom:107.685000px;}
.y2e_c00239{bottom:107.686080px;}
.y2d_c00239{bottom:125.324280px;}
.y2c_c00239{bottom:142.962480px;}
.y2b_c00239{bottom:160.246440px;}
.y2a_c00239{bottom:177.884640px;}
.y29_c00239{bottom:195.522840px;}
.y28_c00239{bottom:212.806800px;}
.y27_c00239{bottom:236.565000px;}
.y26_c00239{bottom:247.725000px;}
.y25_c00239{bottom:253.845000px;}
.y24_c00239{bottom:265.362840px;}
.y23_c00239{bottom:283.001040px;}
.y22_c00239{bottom:306.405000px;}
.y21_c00239{bottom:317.925000px;}
.y20_c00239{bottom:317.926800px;}
.y1f_c00239{bottom:341.685000px;}
.y1e_c00239{bottom:352.846800px;}
.y1c_c00239{bottom:370.481040px;}
.y1d_c00239{bottom:370.485000px;}
.y1b_c00239{bottom:393.885000px;}
.y1a_c00239{bottom:420.525000px;}
.y19_c00239{bottom:468.405000px;}
.y18_c00239{bottom:504.405000px;}
.y17_c00239{bottom:540.405000px;}
.y16_c00239{bottom:576.405000px;}
.y15_c00239{bottom:612.405000px;}
.y14_c00239{bottom:633.285000px;}
.y13_c00239{bottom:654.525000px;}
.y12_c00239{bottom:675.405000px;}
.y11_c00239{bottom:696.285000px;}
.y10_c00239{bottom:717.525000px;}
.yf_c00239{bottom:753.525000px;}
.ye_c00239{bottom:789.525000px;}
.yd_c00239{bottom:827.685000px;}
.yc_c00239{bottom:865.845000px;}
.yb_c00239{bottom:901.845000px;}
.ya_c00239{bottom:923.085000px;}
.y9_c00239{bottom:943.965000px;}
.y8_c00239{bottom:964.845000px;}
.y7_c00239{bottom:986.085000px;}
.y6_c00239{bottom:1006.965000px;}
.y5_c00239{bottom:1027.845000px;}
.y4_c00239{bottom:1049.085000px;}
.y3_c00239{bottom:1085.085000px;}
.y2_c00239{bottom:1138.365000px;}
.ha_c00239{height:19.255500px;}
.h7_c00239{height:32.616000px;}
.hb_c00239{height:46.320000px;}
.h9_c00239{height:46.981634px;}
.h8_c00239{height:53.490240px;}
.h4_c00239{height:57.294676px;}
.h6_c00239{height:64.401590px;}
.h3_c00239{height:65.232000px;}
.h5_c00239{height:68.074560px;}
.h2_c00239{height:1201.365000px;}
.h0_c00239{height:1262.835000px;}
.h1_c00239{height:1263.000000px;}
.w3_c00239{width:25.020000px;}
.w2_c00239{width:863.955000px;}
.w0_c00239{width:892.935000px;}
.w1_c00239{width:893.250000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:14.490000px;}
.x2_c00239{left:113.040150px;}
.x3_c00239{left:154.043700px;}
.xa_c00239{left:172.024950px;}
.x14_c00239{left:192.207300px;}
.x4_c00239{left:194.021100px;}
.xb_c00239{left:206.026650px;}
.x15_c00239{left:212.201250px;}
.x18_c00239{left:289.815600px;}
.x10_c00239{left:319.047000px;}
.x19_c00239{left:323.985000px;}
.x5_c00239{left:327.834900px;}
.x11_c00239{left:343.040400px;}
.x7_c00239{left:350.096250px;}
.x6_c00239{left:361.836600px;}
.x16_c00239{left:379.725600px;}
.x17_c00239{left:399.719550px;}
.x9_c00239{left:414.462150px;}
.xc_c00239{left:433.182900px;}
.xd_c00239{left:473.830800px;}
.x8_c00239{left:517.913400px;}
.x1b_c00239{left:524.241150px;}
.x1c_c00239{left:560.060700px;}
.xe_c00239{left:612.773700px;}
.x12_c00239{left:616.500750px;}
.x13_c00239{left:643.995450px;}
.xf_c00239{left:657.791400px;}
.x1a_c00239{left:734.565750px;}
.x1d_c00239{left:759.915000px;}
@media print{
.v2_c00239{vertical-align:-21.760000pt;}
.v0_c00239{vertical-align:0.000000pt;}
.v1_c00239{vertical-align:26.880000pt;}
.ls13_c00239{letter-spacing:0.000000pt;}
.ls1f_c00239{letter-spacing:0.236160pt;}
.ls10_c00239{letter-spacing:0.262400pt;}
.ls2c_c00239{letter-spacing:0.283392pt;}
.lse_c00239{letter-spacing:0.288640pt;}
.ls5_c00239{letter-spacing:0.295680pt;}
.lsc_c00239{letter-spacing:0.314880pt;}
.ls27_c00239{letter-spacing:0.330624pt;}
.ls19_c00239{letter-spacing:0.377856pt;}
.ls1c_c00239{letter-spacing:0.389485pt;}
.ls7_c00239{letter-spacing:0.405547pt;}
.ls24_c00239{letter-spacing:0.425088pt;}
.ls9_c00239{letter-spacing:0.429013pt;}
.lsa_c00239{letter-spacing:0.438171pt;}
.lsd_c00239{letter-spacing:0.456576pt;}
.lsb_c00239{letter-spacing:0.472320pt;}
.ls28_c00239{letter-spacing:0.486856pt;}
.ls6_c00239{letter-spacing:0.515947pt;}
.ls20_c00239{letter-spacing:0.519552pt;}
.ls2a_c00239{letter-spacing:0.614016pt;}
.ls4_c00239{letter-spacing:0.625813pt;}
.ls25_c00239{letter-spacing:0.661248pt;}
.ls11_c00239{letter-spacing:0.730284pt;}
.ls1e_c00239{letter-spacing:0.855424pt;}
.ls1b_c00239{letter-spacing:1.584896pt;}
.ls18_c00239{letter-spacing:3.327232pt;}
.ls1a_c00239{letter-spacing:4.214144pt;}
.ls15_c00239{letter-spacing:4.577664pt;}
.ls14_c00239{letter-spacing:4.662528pt;}
.ls3_c00239{letter-spacing:4.742400pt;}
.ls1_c00239{letter-spacing:4.806024pt;}
.ls17_c00239{letter-spacing:4.827264pt;}
.lsf_c00239{letter-spacing:4.880640pt;}
.ls26_c00239{letter-spacing:4.901632pt;}
.ls22_c00239{letter-spacing:5.137792pt;}
.ls2_c00239{letter-spacing:5.312000pt;}
.ls8_c00239{letter-spacing:5.324800pt;}
.ls0_c00239{letter-spacing:5.474935pt;}
.ls12_c00239{letter-spacing:5.475484pt;}
.ls29_c00239{letter-spacing:6.339584pt;}
.ls23_c00239{letter-spacing:10.637696pt;}
.ls21_c00239{letter-spacing:11.356672pt;}
.ls1d_c00239{letter-spacing:12.238336pt;}
.ls16_c00239{letter-spacing:12.435200pt;}
.ls2b_c00239{letter-spacing:12.889088pt;}
.ws2_c00239{word-spacing:-23.104000pt;}
.ws8_c00239{word-spacing:-19.727232pt;}
.ws0_c00239{word-spacing:-19.110891pt;}
.ws4_c00239{word-spacing:-18.705024pt;}
.ws1_c00239{word-spacing:-18.540288pt;}
.ws3_c00239{word-spacing:-18.455424pt;}
.wsa_c00239{word-spacing:-15.768735pt;}
.ws9_c00239{word-spacing:-15.525307pt;}
.ws6_c00239{word-spacing:-15.476621pt;}
.ws7_c00239{word-spacing:-15.061760pt;}
.ws5_c00239{word-spacing:-8.896000pt;}
.wsb_c00239{word-spacing:0.000000pt;}
._9_c00239{margin-left:-12.834133pt;}
._f_c00239{margin-left:-11.703040pt;}
._11_c00239{margin-left:-10.181120pt;}
._6_c00239{margin-left:-7.506801pt;}
._14_c00239{margin-left:-6.035200pt;}
._15_c00239{margin-left:-5.143040pt;}
._d_c00239{margin-left:-3.831040pt;}
._c_c00239{margin-left:-2.833920pt;}
._e_c00239{margin-left:-1.154560pt;}
._0_c00239{width:0.918229pt;}
._4_c00239{width:2.368000pt;}
._5_c00239{width:3.392000pt;}
._2_c00239{width:4.379093pt;}
._1_c00239{width:5.586453pt;}
._7_c00239{width:6.536640pt;}
._13_c00239{width:7.953387pt;}
._12_c00239{width:9.918720pt;}
._10_c00239{width:11.187627pt;}
._8_c00239{width:12.416000pt;}
._b_c00239{width:13.696000pt;}
._a_c00239{width:23.488000pt;}
._3_c00239{width:27.904000pt;}
.fs6_c00239{font-size:32.000000pt;}
.fs4_c00239{font-size:37.120000pt;}
.fs5_c00239{font-size:38.262420pt;}
.fs3_c00239{font-size:49.920000pt;}
.fs2_c00239{font-size:51.456358pt;}
.fs7_c00239{font-size:52.480000pt;}
.fs9_c00239{font-size:53.333333pt;}
.fs8_c00239{font-size:54.095146pt;}
.fs0_c00239{font-size:64.000000pt;}
.fs1_c00239{font-size:65.969690pt;}
.y0_c00239{bottom:0.000000pt;}
.y35_c00239{bottom:2.773467pt;}
.y34_c00239{bottom:30.884000pt;}
.y1_c00239{bottom:48.000000pt;}
.y33_c00239{bottom:49.316480pt;}
.y32_c00239{bottom:64.680000pt;}
.y31_c00239{bottom:70.120000pt;}
.y30_c00239{bottom:80.360000pt;}
.y2f_c00239{bottom:95.720000pt;}
.y2e_c00239{bottom:95.720960pt;}
.y2d_c00239{bottom:111.399360pt;}
.y2c_c00239{bottom:127.077760pt;}
.y2b_c00239{bottom:142.441280pt;}
.y2a_c00239{bottom:158.119680pt;}
.y29_c00239{bottom:173.798080pt;}
.y28_c00239{bottom:189.161600pt;}
.y27_c00239{bottom:210.280000pt;}
.y26_c00239{bottom:220.200000pt;}
.y25_c00239{bottom:225.640000pt;}
.y24_c00239{bottom:235.878080pt;}
.y23_c00239{bottom:251.556480pt;}
.y22_c00239{bottom:272.360000pt;}
.y21_c00239{bottom:282.600000pt;}
.y20_c00239{bottom:282.601600pt;}
.y1f_c00239{bottom:303.720000pt;}
.y1e_c00239{bottom:313.641600pt;}
.y1c_c00239{bottom:329.316480pt;}
.y1d_c00239{bottom:329.320000pt;}
.y1b_c00239{bottom:350.120000pt;}
.y1a_c00239{bottom:373.800000pt;}
.y19_c00239{bottom:416.360000pt;}
.y18_c00239{bottom:448.360000pt;}
.y17_c00239{bottom:480.360000pt;}
.y16_c00239{bottom:512.360000pt;}
.y15_c00239{bottom:544.360000pt;}
.y14_c00239{bottom:562.920000pt;}
.y13_c00239{bottom:581.800000pt;}
.y12_c00239{bottom:600.360000pt;}
.y11_c00239{bottom:618.920000pt;}
.y10_c00239{bottom:637.800000pt;}
.yf_c00239{bottom:669.800000pt;}
.ye_c00239{bottom:701.800000pt;}
.yd_c00239{bottom:735.720000pt;}
.yc_c00239{bottom:769.640000pt;}
.yb_c00239{bottom:801.640000pt;}
.ya_c00239{bottom:820.520000pt;}
.y9_c00239{bottom:839.080000pt;}
.y8_c00239{bottom:857.640000pt;}
.y7_c00239{bottom:876.520000pt;}
.y6_c00239{bottom:895.080000pt;}
.y5_c00239{bottom:913.640000pt;}
.y4_c00239{bottom:932.520000pt;}
.y3_c00239{bottom:964.520000pt;}
.y2_c00239{bottom:1011.880000pt;}
.ha_c00239{height:17.116000pt;}
.h7_c00239{height:28.992000pt;}
.hb_c00239{height:41.173333pt;}
.h9_c00239{height:41.761453pt;}
.h8_c00239{height:47.546880pt;}
.h4_c00239{height:50.928601pt;}
.h6_c00239{height:57.245858pt;}
.h3_c00239{height:57.984000pt;}
.h5_c00239{height:60.510720pt;}
.h2_c00239{height:1067.880000pt;}
.h0_c00239{height:1122.520000pt;}
.h1_c00239{height:1122.666667pt;}
.w3_c00239{width:22.240000pt;}
.w2_c00239{width:767.960000pt;}
.w0_c00239{width:793.720000pt;}
.w1_c00239{width:794.000000pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:12.880000pt;}
.x2_c00239{left:100.480133pt;}
.x3_c00239{left:136.927733pt;}
.xa_c00239{left:152.911067pt;}
.x14_c00239{left:170.850933pt;}
.x4_c00239{left:172.463200pt;}
.xb_c00239{left:183.134800pt;}
.x15_c00239{left:188.623333pt;}
.x18_c00239{left:257.613867pt;}
.x10_c00239{left:283.597333pt;}
.x19_c00239{left:287.986667pt;}
.x5_c00239{left:291.408800pt;}
.x11_c00239{left:304.924800pt;}
.x7_c00239{left:311.196667pt;}
.x6_c00239{left:321.632533pt;}
.x16_c00239{left:337.533867pt;}
.x17_c00239{left:355.306267pt;}
.x9_c00239{left:368.410800pt;}
.xc_c00239{left:385.051467pt;}
.xd_c00239{left:421.182933pt;}
.x8_c00239{left:460.367467pt;}
.x1b_c00239{left:465.992133pt;}
.x1c_c00239{left:497.831733pt;}
.xe_c00239{left:544.687733pt;}
.x12_c00239{left:548.000667pt;}
.x13_c00239{left:572.440400pt;}
.xf_c00239{left:584.703467pt;}
.x1a_c00239{left:652.947333pt;}
.x1d_c00239{left:675.480000pt;}
}





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

.ir_c00240:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00240;src:url('chunks/assets/font_a92aa2394bb8d72c9e13ac4b.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_20de977ac0f14154feb32edb.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;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:ff3_c00240;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00240;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff6_c00240{font-family:ff6_c00240;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00240;src:url('chunks/assets/font_8e153f1850715bc5c56d1ca4.woff2')format("woff");}.ff7_c00240{font-family:ff7_c00240;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00240{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00240{vertical-align:-24.480000px;}
.v0_c00240{vertical-align:0.000000px;}
.v1_c00240{vertical-align:30.240000px;}
.lsf_c00240{letter-spacing:0.000000px;}
.ls12_c00240{letter-spacing:0.265680px;}
.ls14_c00240{letter-spacing:0.273857px;}
.lsb_c00240{letter-spacing:0.283392px;}
.lsa_c00240{letter-spacing:0.295200px;}
.ls18_c00240{letter-spacing:0.312912px;}
.ls6_c00240{letter-spacing:0.318480px;}
.ls15_c00240{letter-spacing:0.318816px;}
.lsc_c00240{letter-spacing:0.354240px;}
.ls1d_c00240{letter-spacing:0.478224px;}
.ls16_c00240{letter-spacing:0.492942px;}
.lsd_c00240{letter-spacing:0.513648px;}
.ls7_c00240{letter-spacing:0.531360px;}
.ls3_c00240{letter-spacing:0.541440px;}
.ls13_c00240{letter-spacing:0.547713px;}
.ls9_c00240{letter-spacing:0.554976px;}
.ls8_c00240{letter-spacing:0.560880px;}
.ls1c_c00240{letter-spacing:0.584496px;}
.ls17_c00240{letter-spacing:0.690768px;}
.ls19_c00240{letter-spacing:0.696672px;}
.ls5_c00240{letter-spacing:0.712027px;}
.ls1f_c00240{letter-spacing:0.743904px;}
.ls1b_c00240{letter-spacing:0.766799px;}
.ls1a_c00240{letter-spacing:0.962352px;}
.ls1e_c00240{letter-spacing:4.433904px;}
.ls11_c00240{letter-spacing:5.248656px;}
.ls10_c00240{letter-spacing:5.430672px;}
.ls4_c00240{letter-spacing:5.458800px;}
.ls1_c00240{letter-spacing:5.976000px;}
.ls0_c00240{letter-spacing:5.978400px;}
.lse_c00240{letter-spacing:6.159920px;}
.ls2_c00240{letter-spacing:54.864000px;}
.sc__c00240{text-shadow:none;}
.sc1_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00240{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc1_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00240{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00240{word-spacing:-21.043152px;}
.ws4_c00240{word-spacing:-17.685056px;}
.ws3_c00240{word-spacing:-17.630284px;}
.ws2_c00240{word-spacing:-17.103888px;}
.ws5_c00240{word-spacing:-16.944480px;}
.ws0_c00240{word-spacing:-11.609280px;}
.ws6_c00240{word-spacing:-10.008000px;}
.ws7_c00240{word-spacing:0.000000px;}
._b_c00240{margin-left:-3.896640px;}
._0_c00240{margin-left:-1.179360px;}
._3_c00240{width:1.440000px;}
._6_c00240{width:2.448000px;}
._a_c00240{width:3.601440px;}
._7_c00240{width:5.458800px;}
._9_c00240{width:6.494400px;}
._1_c00240{width:8.064000px;}
._4_c00240{width:9.371400px;}
._2_c00240{width:11.160000px;}
._d_c00240{width:13.282560px;}
._c_c00240{width:14.405760px;}
._8_c00240{width:19.483200px;}
._5_c00240{width:26.064000px;}
.fc0_c00240{color:rgb(0,0,0);}
.fs6_c00240{font-size:36.000000px;}
.fs2_c00240{font-size:41.760000px;}
.fs3_c00240{font-size:56.160000px;}
.fs4_c00240{font-size:59.040000px;}
.fs7_c00240{font-size:60.000000px;}
.fs5_c00240{font-size:60.857039px;}
.fs0_c00240{font-size:72.000000px;}
.fs1_c00240{font-size:74.215901px;}
.y0_c00240{bottom:0.000000px;}
.y2f_c00240{bottom:3.120150px;}
.y2e_c00240{bottom:34.744500px;}
.y1_c00240{bottom:54.000000px;}
.y2d_c00240{bottom:61.605000px;}
.y2c_c00240{bottom:78.885000px;}
.y2b_c00240{bottom:105.525000px;}
.y2a_c00240{bottom:154.126440px;}
.y29_c00240{bottom:171.764640px;}
.y28_c00240{bottom:189.402840px;}
.y27_c00240{bottom:206.686800px;}
.y26_c00240{bottom:224.325000px;}
.y25_c00240{bottom:256.726800px;}
.y23_c00240{bottom:274.362840px;}
.y24_c00240{bottom:274.365000px;}
.y22_c00240{bottom:291.646800px;}
.y21_c00240{bottom:309.285000px;}
.y20_c00240{bottom:342.045000px;}
.y1f_c00240{bottom:363.645000px;}
.y1c_c00240{bottom:380.925000px;}
.y1e_c00240{bottom:381.285000px;}
.y1b_c00240{bottom:398.565000px;}
.y1a_c00240{bottom:415.845000px;}
.y1d_c00240{bottom:416.205000px;}
.y19_c00240{bottom:433.485000px;}
.y18_c00240{bottom:466.965000px;}
.y17_c00240{bottom:502.965000px;}
.y16_c00240{bottom:524.205000px;}
.y15_c00240{bottom:545.085000px;}
.y14_c00240{bottom:565.965000px;}
.y13_c00240{bottom:601.965000px;}
.y12_c00240{bottom:623.205000px;}
.y11_c00240{bottom:640.485000px;}
.y10_c00240{bottom:662.085000px;}
.yf_c00240{bottom:698.085000px;}
.ye_c00240{bottom:734.085000px;}
.yd_c00240{bottom:754.965000px;}
.yc_c00240{bottom:775.845000px;}
.yb_c00240{bottom:811.845000px;}
.ya_c00240{bottom:847.845000px;}
.y9_c00240{bottom:869.085000px;}
.y8_c00240{bottom:905.085000px;}
.y7_c00240{bottom:941.085000px;}
.y6_c00240{bottom:977.085000px;}
.y5_c00240{bottom:1013.085000px;}
.y4_c00240{bottom:1049.085000px;}
.y3_c00240{bottom:1085.085000px;}
.y2_c00240{bottom:1138.365000px;}
.ha_c00240{height:19.255500px;}
.h9_c00240{height:32.616000px;}
.h6_c00240{height:39.350391px;}
.hb_c00240{height:46.320000px;}
.h8_c00240{height:46.981634px;}
.h7_c00240{height:53.490240px;}
.h4_c00240{height:57.294676px;}
.h3_c00240{height:65.232000px;}
.h5_c00240{height:68.074560px;}
.h2_c00240{height:1201.365000px;}
.h0_c00240{height:1262.835000px;}
.h1_c00240{height:1263.000000px;}
.w7_c00240{width:25.020000px;}
.w4_c00240{width:30.960000px;}
.w3_c00240{width:39.600000px;}
.w5_c00240{width:265.320000px;}
.w6_c00240{width:309.240000px;}
.w2_c00240{width:863.955000px;}
.w0_c00240{width:892.935000px;}
.w1_c00240{width:893.250000px;}
.x0_c00240{left:0.000000px;}
.xf_c00240{left:7.920150px;}
.x1_c00240{left:14.490000px;}
.x12_c00240{left:27.089100px;}
.x1b_c00240{left:28.409100px;}
.x20_c00240{left:51.733500px;}
.x1c_c00240{left:64.243500px;}
.x21_c00240{left:86.697750px;}
.x13_c00240{left:92.906700px;}
.x14_c00240{left:96.656700px;}
.x2_c00240{left:113.040150px;}
.x1d_c00240{left:114.558750px;}
.xe_c00240{left:119.610000px;}
.xb_c00240{left:127.044000px;}
.x2b_c00240{left:133.034550px;}
.x9_c00240{left:140.037600px;}
.x5_c00240{left:148.031550px;}
.x3_c00240{left:154.043700px;}
.x6_c00240{left:155.828250px;}
.x15_c00240{left:157.463850px;}
.x10_c00240{left:159.930000px;}
.x16_c00240{left:161.213850px;}
.xa_c00240{left:167.040150px;}
.x11_c00240{left:191.610000px;}
.x4_c00240{left:194.021100px;}
.x17_c00240{left:206.227050px;}
.x18_c00240{left:225.855600px;}
.x7_c00240{left:236.766000px;}
.x22_c00240{left:238.744950px;}
.x8_c00240{left:266.771550px;}
.x1e_c00240{left:271.485300px;}
.x1a_c00240{left:273.975450px;}
.x1f_c00240{left:301.484850px;}
.x23_c00240{left:308.344050px;}
.x24_c00240{left:334.405800px;}
.x25_c00240{left:370.240350px;}
.xc_c00240{left:443.430450px;}
.x19_c00240{left:457.650000px;}
.xd_c00240{left:481.446150px;}
.x26_c00240{left:524.293950px;}
.x27_c00240{left:634.997700px;}
.x28_c00240{left:664.997250px;}
.x29_c00240{left:715.425600px;}
.x2a_c00240{left:750.390000px;}
.x2c_c00240{left:759.915000px;}
@media print{
.v2_c00240{vertical-align:-21.760000pt;}
.v0_c00240{vertical-align:0.000000pt;}
.v1_c00240{vertical-align:26.880000pt;}
.lsf_c00240{letter-spacing:0.000000pt;}
.ls12_c00240{letter-spacing:0.236160pt;}
.ls14_c00240{letter-spacing:0.243428pt;}
.lsb_c00240{letter-spacing:0.251904pt;}
.lsa_c00240{letter-spacing:0.262400pt;}
.ls18_c00240{letter-spacing:0.278144pt;}
.ls6_c00240{letter-spacing:0.283093pt;}
.ls15_c00240{letter-spacing:0.283392pt;}
.lsc_c00240{letter-spacing:0.314880pt;}
.ls1d_c00240{letter-spacing:0.425088pt;}
.ls16_c00240{letter-spacing:0.438171pt;}
.lsd_c00240{letter-spacing:0.456576pt;}
.ls7_c00240{letter-spacing:0.472320pt;}
.ls3_c00240{letter-spacing:0.481280pt;}
.ls13_c00240{letter-spacing:0.486856pt;}
.ls9_c00240{letter-spacing:0.493312pt;}
.ls8_c00240{letter-spacing:0.498560pt;}
.ls1c_c00240{letter-spacing:0.519552pt;}
.ls17_c00240{letter-spacing:0.614016pt;}
.ls19_c00240{letter-spacing:0.619264pt;}
.ls5_c00240{letter-spacing:0.632913pt;}
.ls1f_c00240{letter-spacing:0.661248pt;}
.ls1b_c00240{letter-spacing:0.681599pt;}
.ls1a_c00240{letter-spacing:0.855424pt;}
.ls1e_c00240{letter-spacing:3.941248pt;}
.ls11_c00240{letter-spacing:4.665472pt;}
.ls10_c00240{letter-spacing:4.827264pt;}
.ls4_c00240{letter-spacing:4.852267pt;}
.ls1_c00240{letter-spacing:5.312000pt;}
.ls0_c00240{letter-spacing:5.314133pt;}
.lse_c00240{letter-spacing:5.475484pt;}
.ls2_c00240{letter-spacing:48.768000pt;}
.ws1_c00240{word-spacing:-18.705024pt;}
.ws4_c00240{word-spacing:-15.720049pt;}
.ws3_c00240{word-spacing:-15.671364pt;}
.ws2_c00240{word-spacing:-15.203456pt;}
.ws5_c00240{word-spacing:-15.061760pt;}
.ws0_c00240{word-spacing:-10.319360pt;}
.ws6_c00240{word-spacing:-8.896000pt;}
.ws7_c00240{word-spacing:0.000000pt;}
._b_c00240{margin-left:-3.463680pt;}
._0_c00240{margin-left:-1.048320pt;}
._3_c00240{width:1.280000pt;}
._6_c00240{width:2.176000pt;}
._a_c00240{width:3.201280pt;}
._7_c00240{width:4.852267pt;}
._9_c00240{width:5.772800pt;}
._1_c00240{width:7.168000pt;}
._4_c00240{width:8.330133pt;}
._2_c00240{width:9.920000pt;}
._d_c00240{width:11.806720pt;}
._c_c00240{width:12.805120pt;}
._8_c00240{width:17.318400pt;}
._5_c00240{width:23.168000pt;}
.fs6_c00240{font-size:32.000000pt;}
.fs2_c00240{font-size:37.120000pt;}
.fs3_c00240{font-size:49.920000pt;}
.fs4_c00240{font-size:52.480000pt;}
.fs7_c00240{font-size:53.333333pt;}
.fs5_c00240{font-size:54.095146pt;}
.fs0_c00240{font-size:64.000000pt;}
.fs1_c00240{font-size:65.969690pt;}
.y0_c00240{bottom:0.000000pt;}
.y2f_c00240{bottom:2.773467pt;}
.y2e_c00240{bottom:30.884000pt;}
.y1_c00240{bottom:48.000000pt;}
.y2d_c00240{bottom:54.760000pt;}
.y2c_c00240{bottom:70.120000pt;}
.y2b_c00240{bottom:93.800000pt;}
.y2a_c00240{bottom:137.001280pt;}
.y29_c00240{bottom:152.679680pt;}
.y28_c00240{bottom:168.358080pt;}
.y27_c00240{bottom:183.721600pt;}
.y26_c00240{bottom:199.400000pt;}
.y25_c00240{bottom:228.201600pt;}
.y23_c00240{bottom:243.878080pt;}
.y24_c00240{bottom:243.880000pt;}
.y22_c00240{bottom:259.241600pt;}
.y21_c00240{bottom:274.920000pt;}
.y20_c00240{bottom:304.040000pt;}
.y1f_c00240{bottom:323.240000pt;}
.y1c_c00240{bottom:338.600000pt;}
.y1e_c00240{bottom:338.920000pt;}
.y1b_c00240{bottom:354.280000pt;}
.y1a_c00240{bottom:369.640000pt;}
.y1d_c00240{bottom:369.960000pt;}
.y19_c00240{bottom:385.320000pt;}
.y18_c00240{bottom:415.080000pt;}
.y17_c00240{bottom:447.080000pt;}
.y16_c00240{bottom:465.960000pt;}
.y15_c00240{bottom:484.520000pt;}
.y14_c00240{bottom:503.080000pt;}
.y13_c00240{bottom:535.080000pt;}
.y12_c00240{bottom:553.960000pt;}
.y11_c00240{bottom:569.320000pt;}
.y10_c00240{bottom:588.520000pt;}
.yf_c00240{bottom:620.520000pt;}
.ye_c00240{bottom:652.520000pt;}
.yd_c00240{bottom:671.080000pt;}
.yc_c00240{bottom:689.640000pt;}
.yb_c00240{bottom:721.640000pt;}
.ya_c00240{bottom:753.640000pt;}
.y9_c00240{bottom:772.520000pt;}
.y8_c00240{bottom:804.520000pt;}
.y7_c00240{bottom:836.520000pt;}
.y6_c00240{bottom:868.520000pt;}
.y5_c00240{bottom:900.520000pt;}
.y4_c00240{bottom:932.520000pt;}
.y3_c00240{bottom:964.520000pt;}
.y2_c00240{bottom:1011.880000pt;}
.ha_c00240{height:17.116000pt;}
.h9_c00240{height:28.992000pt;}
.h6_c00240{height:34.978125pt;}
.hb_c00240{height:41.173333pt;}
.h8_c00240{height:41.761453pt;}
.h7_c00240{height:47.546880pt;}
.h4_c00240{height:50.928601pt;}
.h3_c00240{height:57.984000pt;}
.h5_c00240{height:60.510720pt;}
.h2_c00240{height:1067.880000pt;}
.h0_c00240{height:1122.520000pt;}
.h1_c00240{height:1122.666667pt;}
.w7_c00240{width:22.240000pt;}
.w4_c00240{width:27.520000pt;}
.w3_c00240{width:35.200000pt;}
.w5_c00240{width:235.840000pt;}
.w6_c00240{width:274.880000pt;}
.w2_c00240{width:767.960000pt;}
.w0_c00240{width:793.720000pt;}
.w1_c00240{width:794.000000pt;}
.x0_c00240{left:0.000000pt;}
.xf_c00240{left:7.040133pt;}
.x1_c00240{left:12.880000pt;}
.x12_c00240{left:24.079200pt;}
.x1b_c00240{left:25.252533pt;}
.x20_c00240{left:45.985333pt;}
.x1c_c00240{left:57.105333pt;}
.x21_c00240{left:77.064667pt;}
.x13_c00240{left:82.583733pt;}
.x14_c00240{left:85.917067pt;}
.x2_c00240{left:100.480133pt;}
.x1d_c00240{left:101.830000pt;}
.xe_c00240{left:106.320000pt;}
.xb_c00240{left:112.928000pt;}
.x2b_c00240{left:118.252933pt;}
.x9_c00240{left:124.477867pt;}
.x5_c00240{left:131.583600pt;}
.x3_c00240{left:136.927733pt;}
.x6_c00240{left:138.514000pt;}
.x15_c00240{left:139.967867pt;}
.x10_c00240{left:142.160000pt;}
.x16_c00240{left:143.301200pt;}
.xa_c00240{left:148.480133pt;}
.x11_c00240{left:170.320000pt;}
.x4_c00240{left:172.463200pt;}
.x17_c00240{left:183.312933pt;}
.x18_c00240{left:200.760533pt;}
.x7_c00240{left:210.458667pt;}
.x22_c00240{left:212.217733pt;}
.x8_c00240{left:237.130267pt;}
.x1e_c00240{left:241.320267pt;}
.x1a_c00240{left:243.533733pt;}
.x1f_c00240{left:267.986533pt;}
.x23_c00240{left:274.083600pt;}
.x24_c00240{left:297.249600pt;}
.x25_c00240{left:329.102533pt;}
.xc_c00240{left:394.160400pt;}
.x19_c00240{left:406.800000pt;}
.xd_c00240{left:427.952133pt;}
.x26_c00240{left:466.039067pt;}
.x27_c00240{left:564.442400pt;}
.x28_c00240{left:591.108667pt;}
.x29_c00240{left:635.933867pt;}
.x2a_c00240{left:667.013333pt;}
.x2c_c00240{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f449dfab26de80ce025901ed.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.134000;font-style:normal;font-weight:normal;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_fb67436e51a8604ec0b6060f.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;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:ff3_c00241;src:url('chunks/assets/font_284809de4f3e2d7968117a69.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00241;src:url('chunks/assets/font_90cfccb7a633452c841e8a68.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:0.787000;font-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_c00241{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00241{vertical-align:-24.480000px;}
.v0_c00241{vertical-align:0.000000px;}
.v1_c00241{vertical-align:30.240000px;}
.ls14_c00241{letter-spacing:-0.179568px;}
.ls12_c00241{letter-spacing:0.000000px;}
.ls1d_c00241{letter-spacing:0.144000px;}
.ls17_c00241{letter-spacing:0.265680px;}
.ls7_c00241{letter-spacing:0.273857px;}
.ls5_c00241{letter-spacing:0.295200px;}
.ls21_c00241{letter-spacing:0.318816px;}
.ls10_c00241{letter-spacing:0.354240px;}
.ls26_c00241{letter-spacing:0.383399px;}
.ls1a_c00241{letter-spacing:0.425088px;}
.lsf_c00241{letter-spacing:0.438171px;}
.ls3_c00241{letter-spacing:0.460800px;}
.ls1f_c00241{letter-spacing:0.478224px;}
.ls24_c00241{letter-spacing:0.492942px;}
.ls6_c00241{letter-spacing:0.531360px;}
.lsa_c00241{letter-spacing:0.543168px;}
.ls22_c00241{letter-spacing:0.547713px;}
.ls2_c00241{letter-spacing:0.657240px;}
.ls28_c00241{letter-spacing:0.690768px;}
.ls23_c00241{letter-spacing:0.712027px;}
.ls18_c00241{letter-spacing:0.766799px;}
.lse_c00241{letter-spacing:0.821570px;}
.ls9_c00241{letter-spacing:0.944640px;}
.ls16_c00241{letter-spacing:1.381536px;}
.ls1b_c00241{letter-spacing:3.837600px;}
.ls20_c00241{letter-spacing:4.664160px;}
.ls15_c00241{letter-spacing:5.335200px;}
.lsd_c00241{letter-spacing:5.354928px;}
.lsb_c00241{letter-spacing:5.372640px;}
.ls13_c00241{letter-spacing:5.430672px;}
.lsc_c00241{letter-spacing:5.490720px;}
.ls1c_c00241{letter-spacing:5.780016px;}
.ls1_c00241{letter-spacing:5.976000px;}
.ls0_c00241{letter-spacing:5.979600px;}
.ls4_c00241{letter-spacing:6.009600px;}
.ls11_c00241{letter-spacing:6.159920px;}
.ls1e_c00241{letter-spacing:6.565248px;}
.ls19_c00241{letter-spacing:7.078896px;}
.ls8_c00241{letter-spacing:8.796960px;}
.ls27_c00241{letter-spacing:9.316512px;}
.ls25_c00241{letter-spacing:11.562837px;}
.sc__c00241{text-shadow:none;}
.sc1_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00241{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc1_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00241{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00241{word-spacing:-22.193136px;}
.ws9_c00241{word-spacing:-21.768048px;}
.ws0_c00241{word-spacing:-21.043152px;}
.ws3_c00241{word-spacing:-20.947680px;}
.ws2_c00241{word-spacing:-20.016000px;}
.wsa_c00241{word-spacing:-17.739827px;}
.ws5_c00241{word-spacing:-17.685056px;}
.wsc_c00241{word-spacing:-17.465970px;}
.wsb_c00241{word-spacing:-17.356428px;}
.ws6_c00241{word-spacing:-17.192114px;}
.ws1_c00241{word-spacing:-11.429712px;}
.ws8_c00241{word-spacing:-10.152000px;}
.ws4_c00241{word-spacing:-10.008000px;}
.wsd_c00241{word-spacing:0.000000px;}
._14_c00241{margin-left:-11.630363px;}
._15_c00241{margin-left:-10.460742px;}
._16_c00241{margin-left:-8.966880px;}
._17_c00241{margin-left:-7.961760px;}
._e_c00241{margin-left:-6.671520px;}
._f_c00241{margin-left:-5.608800px;}
._12_c00241{margin-left:-4.239072px;}
._11_c00241{margin-left:-3.105504px;}
._d_c00241{margin-left:-1.712160px;}
._0_c00241{width:1.944000px;}
._10_c00241{width:3.011040px;}
._c_c00241{width:4.320000px;}
._b_c00241{width:5.904000px;}
._4_c00241{width:7.344000px;}
._2_c00241{width:8.424000px;}
._13_c00241{width:10.893410px;}
._7_c00241{width:11.917416px;}
._6_c00241{width:13.104000px;}
._8_c00241{width:14.256000px;}
._5_c00241{width:16.848000px;}
._a_c00241{width:18.864000px;}
._3_c00241{width:29.232000px;}
._9_c00241{width:33.480000px;}
._1_c00241{width:40.176000px;}
.fc0_c00241{color:rgb(0,0,0);}
.fs4_c00241{font-size:36.000000px;}
.fs3_c00241{font-size:41.760000px;}
.fs2_c00241{font-size:56.160000px;}
.fs5_c00241{font-size:59.040000px;}
.fs7_c00241{font-size:60.000000px;}
.fs6_c00241{font-size:60.857039px;}
.fs0_c00241{font-size:72.000000px;}
.fs1_c00241{font-size:74.215901px;}
.y0_c00241{bottom:0.000000px;}
.y33_c00241{bottom:3.120150px;}
.y32_c00241{bottom:34.744500px;}
.y1_c00241{bottom:54.000000px;}
.y30_c00241{bottom:55.481040px;}
.y31_c00241{bottom:55.485000px;}
.y2f_c00241{bottom:72.765000px;}
.y2e_c00241{bottom:78.885000px;}
.y2c_c00241{bottom:90.402840px;}
.y2d_c00241{bottom:90.405000px;}
.y2b_c00241{bottom:107.686800px;}
.y2a_c00241{bottom:125.325000px;}
.y29_c00241{bottom:131.445000px;}
.y28_c00241{bottom:145.491840px;}
.y27_c00241{bottom:171.405000px;}
.y26_c00241{bottom:189.045000px;}
.y25_c00241{bottom:200.206800px;}
.y24_c00241{bottom:217.845000px;}
.y23_c00241{bottom:217.846800px;}
.y21_c00241{bottom:235.481040px;}
.y22_c00241{bottom:235.485000px;}
.y20_c00241{bottom:252.765000px;}
.y1f_c00241{bottom:252.766800px;}
.y1e_c00241{bottom:276.525000px;}
.y1d_c00241{bottom:303.165000px;}
.y1c_c00241{bottom:454.725000px;}
.y1b_c00241{bottom:475.965000px;}
.y1a_c00241{bottom:511.965000px;}
.y19_c00241{bottom:547.965000px;}
.y18_c00241{bottom:583.965000px;}
.y17_c00241{bottom:604.845000px;}
.y16_c00241{bottom:625.725000px;}
.y15_c00241{bottom:646.965000px;}
.y14_c00241{bottom:667.845000px;}
.y13_c00241{bottom:689.085000px;}
.y12_c00241{bottom:709.965000px;}
.y11_c00241{bottom:745.965000px;}
.y10_c00241{bottom:766.845000px;}
.yf_c00241{bottom:788.085000px;}
.ye_c00241{bottom:808.965000px;}
.yd_c00241{bottom:829.845000px;}
.yc_c00241{bottom:851.085000px;}
.yb_c00241{bottom:871.965000px;}
.ya_c00241{bottom:907.965000px;}
.y9_c00241{bottom:928.845000px;}
.y8_c00241{bottom:950.085000px;}
.y7_c00241{bottom:970.965000px;}
.y6_c00241{bottom:991.845000px;}
.y5_c00241{bottom:1013.085000px;}
.y4_c00241{bottom:1049.085000px;}
.y3_c00241{bottom:1085.085000px;}
.y2_c00241{bottom:1138.365000px;}
.h9_c00241{height:19.255500px;}
.h6_c00241{height:32.616000px;}
.ha_c00241{height:46.320000px;}
.h8_c00241{height:46.981634px;}
.h7_c00241{height:53.490240px;}
.h4_c00241{height:57.294676px;}
.h3_c00241{height:65.232000px;}
.h5_c00241{height:68.074560px;}
.h2_c00241{height:1201.365000px;}
.h0_c00241{height:1262.835000px;}
.h1_c00241{height:1263.000000px;}
.w3_c00241{width:25.020000px;}
.w2_c00241{width:863.955000px;}
.w0_c00241{width:892.935000px;}
.w1_c00241{width:893.250000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:14.490000px;}
.x2_c00241{left:113.040150px;}
.x3_c00241{left:154.043700px;}
.x16_c00241{left:162.413400px;}
.x1c_c00241{left:170.045250px;}
.x14_c00241{left:185.438550px;}
.x17_c00241{left:189.413100px;}
.x2c_c00241{left:191.933700px;}
.x4_c00241{left:194.021100px;}
.x2d_c00241{left:196.103400px;}
.x2e_c00241{left:201.372450px;}
.x35_c00241{left:218.169450px;}
.x15_c00241{left:219.440250px;}
.x27_c00241{left:222.324150px;}
.x2f_c00241{left:243.528750px;}
.x1d_c00241{left:252.105900px;}
.x18_c00241{left:257.923050px;}
.x19_c00241{left:271.927050px;}
.x36_c00241{left:289.837650px;}
.x39_c00241{left:291.384450px;}
.x1e_c00241{left:295.125000px;}
.x3a_c00241{left:307.208850px;}
.x28_c00241{left:362.610750px;}
.x29_c00241{left:387.614400px;}
.xa_c00241{left:401.072100px;}
.x37_c00241{left:402.463650px;}
.x12_c00241{left:419.213700px;}
.xb_c00241{left:431.077500px;}
.x13_c00241{left:451.217250px;}
.xc_c00241{left:452.587350px;}
.x38_c00241{left:454.122150px;}
.x30_c00241{left:459.309750px;}
.x7_c00241{left:464.406000px;}
.xd_c00241{left:465.582600px;}
.xe_c00241{left:475.068600px;}
.x31_c00241{left:477.088200px;}
.xf_c00241{left:488.064000px;}
.x10_c00241{left:498.557700px;}
.x32_c00241{left:507.102600px;}
.x1f_c00241{left:531.659550px;}
.x23_c00241{left:540.586650px;}
.x11_c00241{left:549.568800px;}
.x20_c00241{left:557.668950px;}
.x33_c00241{left:564.607950px;}
.x2a_c00241{left:577.198200px;}
.x24_c00241{left:593.577750px;}
.x21_c00241{left:595.684200px;}
.x25_c00241{left:599.031450px;}
.x2b_c00241{left:608.332350px;}
.x8_c00241{left:622.042950px;}
.x22_c00241{left:628.695600px;}
.x34_c00241{left:631.361250px;}
.x26_c00241{left:650.006400px;}
.x1a_c00241{left:664.386900px;}
.x5_c00241{left:716.388450px;}
.x9_c00241{left:720.384600px;}
.x1b_c00241{left:745.386150px;}
.x6_c00241{left:750.390000px;}
.x3b_c00241{left:759.915000px;}
@media print{
.v2_c00241{vertical-align:-21.760000pt;}
.v0_c00241{vertical-align:0.000000pt;}
.v1_c00241{vertical-align:26.880000pt;}
.ls14_c00241{letter-spacing:-0.159616pt;}
.ls12_c00241{letter-spacing:0.000000pt;}
.ls1d_c00241{letter-spacing:0.128000pt;}
.ls17_c00241{letter-spacing:0.236160pt;}
.ls7_c00241{letter-spacing:0.243428pt;}
.ls5_c00241{letter-spacing:0.262400pt;}
.ls21_c00241{letter-spacing:0.283392pt;}
.ls10_c00241{letter-spacing:0.314880pt;}
.ls26_c00241{letter-spacing:0.340799pt;}
.ls1a_c00241{letter-spacing:0.377856pt;}
.lsf_c00241{letter-spacing:0.389485pt;}
.ls3_c00241{letter-spacing:0.409600pt;}
.ls1f_c00241{letter-spacing:0.425088pt;}
.ls24_c00241{letter-spacing:0.438171pt;}
.ls6_c00241{letter-spacing:0.472320pt;}
.lsa_c00241{letter-spacing:0.482816pt;}
.ls22_c00241{letter-spacing:0.486856pt;}
.ls2_c00241{letter-spacing:0.584213pt;}
.ls28_c00241{letter-spacing:0.614016pt;}
.ls23_c00241{letter-spacing:0.632913pt;}
.ls18_c00241{letter-spacing:0.681599pt;}
.lse_c00241{letter-spacing:0.730284pt;}
.ls9_c00241{letter-spacing:0.839680pt;}
.ls16_c00241{letter-spacing:1.228032pt;}
.ls1b_c00241{letter-spacing:3.411200pt;}
.ls20_c00241{letter-spacing:4.145920pt;}
.ls15_c00241{letter-spacing:4.742400pt;}
.lsd_c00241{letter-spacing:4.759936pt;}
.lsb_c00241{letter-spacing:4.775680pt;}
.ls13_c00241{letter-spacing:4.827264pt;}
.lsc_c00241{letter-spacing:4.880640pt;}
.ls1c_c00241{letter-spacing:5.137792pt;}
.ls1_c00241{letter-spacing:5.312000pt;}
.ls0_c00241{letter-spacing:5.315200pt;}
.ls4_c00241{letter-spacing:5.341867pt;}
.ls11_c00241{letter-spacing:5.475484pt;}
.ls1e_c00241{letter-spacing:5.835776pt;}
.ls19_c00241{letter-spacing:6.292352pt;}
.ls8_c00241{letter-spacing:7.819520pt;}
.ls27_c00241{letter-spacing:8.281344pt;}
.ls25_c00241{letter-spacing:10.278078pt;}
.ws7_c00241{word-spacing:-19.727232pt;}
.ws9_c00241{word-spacing:-19.349376pt;}
.ws0_c00241{word-spacing:-18.705024pt;}
.ws3_c00241{word-spacing:-18.620160pt;}
.ws2_c00241{word-spacing:-17.792000pt;}
.wsa_c00241{word-spacing:-15.768735pt;}
.ws5_c00241{word-spacing:-15.720049pt;}
.wsc_c00241{word-spacing:-15.525307pt;}
.wsb_c00241{word-spacing:-15.427936pt;}
.ws6_c00241{word-spacing:-15.281879pt;}
.ws1_c00241{word-spacing:-10.159744pt;}
.ws8_c00241{word-spacing:-9.024000pt;}
.ws4_c00241{word-spacing:-8.896000pt;}
.wsd_c00241{word-spacing:0.000000pt;}
._14_c00241{margin-left:-10.338101pt;}
._15_c00241{margin-left:-9.298437pt;}
._16_c00241{margin-left:-7.970560pt;}
._17_c00241{margin-left:-7.077120pt;}
._e_c00241{margin-left:-5.930240pt;}
._f_c00241{margin-left:-4.985600pt;}
._12_c00241{margin-left:-3.768064pt;}
._11_c00241{margin-left:-2.760448pt;}
._d_c00241{margin-left:-1.521920pt;}
._0_c00241{width:1.728000pt;}
._10_c00241{width:2.676480pt;}
._c_c00241{width:3.840000pt;}
._b_c00241{width:5.248000pt;}
._4_c00241{width:6.528000pt;}
._2_c00241{width:7.488000pt;}
._13_c00241{width:9.683031pt;}
._7_c00241{width:10.593259pt;}
._6_c00241{width:11.648000pt;}
._8_c00241{width:12.672000pt;}
._5_c00241{width:14.976000pt;}
._a_c00241{width:16.768000pt;}
._3_c00241{width:25.984000pt;}
._9_c00241{width:29.760000pt;}
._1_c00241{width:35.712000pt;}
.fs4_c00241{font-size:32.000000pt;}
.fs3_c00241{font-size:37.120000pt;}
.fs2_c00241{font-size:49.920000pt;}
.fs5_c00241{font-size:52.480000pt;}
.fs7_c00241{font-size:53.333333pt;}
.fs6_c00241{font-size:54.095146pt;}
.fs0_c00241{font-size:64.000000pt;}
.fs1_c00241{font-size:65.969690pt;}
.y0_c00241{bottom:0.000000pt;}
.y33_c00241{bottom:2.773467pt;}
.y32_c00241{bottom:30.884000pt;}
.y1_c00241{bottom:48.000000pt;}
.y30_c00241{bottom:49.316480pt;}
.y31_c00241{bottom:49.320000pt;}
.y2f_c00241{bottom:64.680000pt;}
.y2e_c00241{bottom:70.120000pt;}
.y2c_c00241{bottom:80.358080pt;}
.y2d_c00241{bottom:80.360000pt;}
.y2b_c00241{bottom:95.721600pt;}
.y2a_c00241{bottom:111.400000pt;}
.y29_c00241{bottom:116.840000pt;}
.y28_c00241{bottom:129.326080pt;}
.y27_c00241{bottom:152.360000pt;}
.y26_c00241{bottom:168.040000pt;}
.y25_c00241{bottom:177.961600pt;}
.y24_c00241{bottom:193.640000pt;}
.y23_c00241{bottom:193.641600pt;}
.y21_c00241{bottom:209.316480pt;}
.y22_c00241{bottom:209.320000pt;}
.y20_c00241{bottom:224.680000pt;}
.y1f_c00241{bottom:224.681600pt;}
.y1e_c00241{bottom:245.800000pt;}
.y1d_c00241{bottom:269.480000pt;}
.y1c_c00241{bottom:404.200000pt;}
.y1b_c00241{bottom:423.080000pt;}
.y1a_c00241{bottom:455.080000pt;}
.y19_c00241{bottom:487.080000pt;}
.y18_c00241{bottom:519.080000pt;}
.y17_c00241{bottom:537.640000pt;}
.y16_c00241{bottom:556.200000pt;}
.y15_c00241{bottom:575.080000pt;}
.y14_c00241{bottom:593.640000pt;}
.y13_c00241{bottom:612.520000pt;}
.y12_c00241{bottom:631.080000pt;}
.y11_c00241{bottom:663.080000pt;}
.y10_c00241{bottom:681.640000pt;}
.yf_c00241{bottom:700.520000pt;}
.ye_c00241{bottom:719.080000pt;}
.yd_c00241{bottom:737.640000pt;}
.yc_c00241{bottom:756.520000pt;}
.yb_c00241{bottom:775.080000pt;}
.ya_c00241{bottom:807.080000pt;}
.y9_c00241{bottom:825.640000pt;}
.y8_c00241{bottom:844.520000pt;}
.y7_c00241{bottom:863.080000pt;}
.y6_c00241{bottom:881.640000pt;}
.y5_c00241{bottom:900.520000pt;}
.y4_c00241{bottom:932.520000pt;}
.y3_c00241{bottom:964.520000pt;}
.y2_c00241{bottom:1011.880000pt;}
.h9_c00241{height:17.116000pt;}
.h6_c00241{height:28.992000pt;}
.ha_c00241{height:41.173333pt;}
.h8_c00241{height:41.761453pt;}
.h7_c00241{height:47.546880pt;}
.h4_c00241{height:50.928601pt;}
.h3_c00241{height:57.984000pt;}
.h5_c00241{height:60.510720pt;}
.h2_c00241{height:1067.880000pt;}
.h0_c00241{height:1122.520000pt;}
.h1_c00241{height:1122.666667pt;}
.w3_c00241{width:22.240000pt;}
.w2_c00241{width:767.960000pt;}
.w0_c00241{width:793.720000pt;}
.w1_c00241{width:794.000000pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:12.880000pt;}
.x2_c00241{left:100.480133pt;}
.x3_c00241{left:136.927733pt;}
.x16_c00241{left:144.367467pt;}
.x1c_c00241{left:151.151333pt;}
.x14_c00241{left:164.834267pt;}
.x17_c00241{left:168.367200pt;}
.x2c_c00241{left:170.607733pt;}
.x4_c00241{left:172.463200pt;}
.x2d_c00241{left:174.314133pt;}
.x2e_c00241{left:178.997733pt;}
.x35_c00241{left:193.928400pt;}
.x15_c00241{left:195.058000pt;}
.x27_c00241{left:197.621467pt;}
.x2f_c00241{left:216.470000pt;}
.x1d_c00241{left:224.094133pt;}
.x18_c00241{left:229.264933pt;}
.x19_c00241{left:241.712933pt;}
.x36_c00241{left:257.633467pt;}
.x39_c00241{left:259.008400pt;}
.x1e_c00241{left:262.333333pt;}
.x3a_c00241{left:273.074533pt;}
.x28_c00241{left:322.320667pt;}
.x29_c00241{left:344.546133pt;}
.xa_c00241{left:356.508533pt;}
.x37_c00241{left:357.745467pt;}
.x12_c00241{left:372.634400pt;}
.xb_c00241{left:383.180000pt;}
.x13_c00241{left:401.082000pt;}
.xc_c00241{left:402.299867pt;}
.x38_c00241{left:403.664133pt;}
.x30_c00241{left:408.275333pt;}
.x7_c00241{left:412.805333pt;}
.xd_c00241{left:413.851200pt;}
.xe_c00241{left:422.283200pt;}
.x31_c00241{left:424.078400pt;}
.xf_c00241{left:433.834667pt;}
.x10_c00241{left:443.162400pt;}
.x32_c00241{left:450.757867pt;}
.x1f_c00241{left:472.586267pt;}
.x23_c00241{left:480.521467pt;}
.x11_c00241{left:488.505600pt;}
.x20_c00241{left:495.705733pt;}
.x33_c00241{left:501.873733pt;}
.x2a_c00241{left:513.065067pt;}
.x24_c00241{left:527.624667pt;}
.x21_c00241{left:529.497067pt;}
.x25_c00241{left:532.472400pt;}
.x2b_c00241{left:540.739867pt;}
.x8_c00241{left:552.927067pt;}
.x22_c00241{left:558.840533pt;}
.x34_c00241{left:561.210000pt;}
.x26_c00241{left:577.783467pt;}
.x1a_c00241{left:590.566133pt;}
.x5_c00241{left:636.789733pt;}
.x9_c00241{left:640.341867pt;}
.x1b_c00241{left:662.565467pt;}
.x6_c00241{left:667.013333pt;}
.x3b_c00241{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c487666fedcee09fae155d69.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;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_c00242;src:url('chunks/assets/font_e8ccc26d1c53b2f56feeb9d1.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_e2c2764a1ffa8007277704e9.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00242{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00242{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls3_c00242{letter-spacing:0.000000px;}
.ls6_c00242{letter-spacing:0.202464px;}
.ls8_c00242{letter-spacing:0.239760px;}
.ls0_c00242{letter-spacing:0.319080px;}
.ls5_c00242{letter-spacing:0.373454px;}
.ls4_c00242{letter-spacing:0.399600px;}
.ls9_c00242{letter-spacing:0.576658px;}
.ls7_c00242{letter-spacing:5.077584px;}
.ls1_c00242{letter-spacing:5.976000px;}
.ls2_c00242{letter-spacing:6.159920px;}
.sc__c00242{text-shadow:none;}
.sc1_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00242{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc1_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00242{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00242{word-spacing:-15.641150px;}
.ws1_c00242{word-spacing:-15.051600px;}
.ws2_c00242{word-spacing:0.000000px;}
._0_c00242{margin-left:-1.118880px;}
._1_c00242{width:1.065600px;}
.fc1_c00242{color:transparent;}
.fc0_c00242{color:rgb(0,0,0);}
.fs2_c00242{font-size:53.280000px;}
.fs3_c00242{font-size:54.919767px;}
.fs4_c00242{font-size:60.000000px;}
.fs0_c00242{font-size:72.000000px;}
.fs1_c00242{font-size:74.215901px;}
.y0_c00242{bottom:0.000000px;}
.y15_c00242{bottom:3.120150px;}
.y11_c00242{bottom:18.720000px;}
.y10_c00242{bottom:34.560000px;}
.y14_c00242{bottom:34.744500px;}
.y13_c00242{bottom:41.040000px;}
.y1_c00242{bottom:54.000000px;}
.yf_c00242{bottom:164.205000px;}
.y12_c00242{bottom:589.365000px;}
.ye_c00242{bottom:689.085000px;}
.yd_c00242{bottom:725.085000px;}
.yc_c00242{bottom:761.085000px;}
.yb_c00242{bottom:797.085000px;}
.ya_c00242{bottom:833.085000px;}
.y9_c00242{bottom:869.085000px;}
.y8_c00242{bottom:905.085000px;}
.y7_c00242{bottom:941.085000px;}
.y6_c00242{bottom:977.085000px;}
.y5_c00242{bottom:1013.085000px;}
.y4_c00242{bottom:1049.085000px;}
.y3_c00242{bottom:1085.085000px;}
.y2_c00242{bottom:1138.365000px;}
.h9_c00242{height:19.255500px;}
.h6_c00242{height:41.132160px;}
.h7_c00242{height:42.398060px;}
.ha_c00242{height:46.320000px;}
.h5_c00242{height:47.160000px;}
.h8_c00242{height:54.000000px;}
.h3_c00242{height:55.584000px;}
.h4_c00242{height:57.294676px;}
.h2_c00242{height:1201.365000px;}
.h0_c00242{height:1262.835000px;}
.h1_c00242{height:1263.000000px;}
.w5_c00242{width:25.020000px;}
.w3_c00242{width:462.600000px;}
.w4_c00242{width:628.560000px;}
.w2_c00242{width:863.955000px;}
.w0_c00242{width:892.935000px;}
.w1_c00242{width:893.250000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:14.490000px;}
.xa_c00242{left:27.397950px;}
.x6_c00242{left:57.467100px;}
.x8_c00242{left:80.349450px;}
.x2_c00242{left:113.040150px;}
.x9_c00242{left:124.650000px;}
.xb_c00242{left:137.704800px;}
.x3_c00242{left:154.043700px;}
.xc_c00242{left:163.205850px;}
.x7_c00242{left:167.773800px;}
.x4_c00242{left:194.021100px;}
.x5_c00242{left:208.530000px;}
.xd_c00242{left:338.742750px;}
.xe_c00242{left:425.721600px;}
.xf_c00242{left:759.915000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls3_c00242{letter-spacing:0.000000pt;}
.ls6_c00242{letter-spacing:0.179968pt;}
.ls8_c00242{letter-spacing:0.213120pt;}
.ls0_c00242{letter-spacing:0.283627pt;}
.ls5_c00242{letter-spacing:0.331959pt;}
.ls4_c00242{letter-spacing:0.355200pt;}
.ls9_c00242{letter-spacing:0.512584pt;}
.ls7_c00242{letter-spacing:4.513408pt;}
.ls1_c00242{letter-spacing:5.312000pt;}
.ls2_c00242{letter-spacing:5.475484pt;}
.ws0_c00242{word-spacing:-13.903244pt;}
.ws1_c00242{word-spacing:-13.379200pt;}
.ws2_c00242{word-spacing:0.000000pt;}
._0_c00242{margin-left:-0.994560pt;}
._1_c00242{width:0.947200pt;}
.fs2_c00242{font-size:47.360000pt;}
.fs3_c00242{font-size:48.817571pt;}
.fs4_c00242{font-size:53.333333pt;}
.fs0_c00242{font-size:64.000000pt;}
.fs1_c00242{font-size:65.969690pt;}
.y0_c00242{bottom:0.000000pt;}
.y15_c00242{bottom:2.773467pt;}
.y11_c00242{bottom:16.640000pt;}
.y10_c00242{bottom:30.720000pt;}
.y14_c00242{bottom:30.884000pt;}
.y13_c00242{bottom:36.480000pt;}
.y1_c00242{bottom:48.000000pt;}
.yf_c00242{bottom:145.960000pt;}
.y12_c00242{bottom:523.880000pt;}
.ye_c00242{bottom:612.520000pt;}
.yd_c00242{bottom:644.520000pt;}
.yc_c00242{bottom:676.520000pt;}
.yb_c00242{bottom:708.520000pt;}
.ya_c00242{bottom:740.520000pt;}
.y9_c00242{bottom:772.520000pt;}
.y8_c00242{bottom:804.520000pt;}
.y7_c00242{bottom:836.520000pt;}
.y6_c00242{bottom:868.520000pt;}
.y5_c00242{bottom:900.520000pt;}
.y4_c00242{bottom:932.520000pt;}
.y3_c00242{bottom:964.520000pt;}
.y2_c00242{bottom:1011.880000pt;}
.h9_c00242{height:17.116000pt;}
.h6_c00242{height:36.561920pt;}
.h7_c00242{height:37.687165pt;}
.ha_c00242{height:41.173333pt;}
.h5_c00242{height:41.920000pt;}
.h8_c00242{height:48.000000pt;}
.h3_c00242{height:49.408000pt;}
.h4_c00242{height:50.928601pt;}
.h2_c00242{height:1067.880000pt;}
.h0_c00242{height:1122.520000pt;}
.h1_c00242{height:1122.666667pt;}
.w5_c00242{width:22.240000pt;}
.w3_c00242{width:411.200000pt;}
.w4_c00242{width:558.720000pt;}
.w2_c00242{width:767.960000pt;}
.w0_c00242{width:793.720000pt;}
.w1_c00242{width:794.000000pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:12.880000pt;}
.xa_c00242{left:24.353733pt;}
.x6_c00242{left:51.081867pt;}
.x8_c00242{left:71.421733pt;}
.x2_c00242{left:100.480133pt;}
.x9_c00242{left:110.800000pt;}
.xb_c00242{left:122.404267pt;}
.x3_c00242{left:136.927733pt;}
.xc_c00242{left:145.071867pt;}
.x7_c00242{left:149.132267pt;}
.x4_c00242{left:172.463200pt;}
.x5_c00242{left:185.360000pt;}
.xd_c00242{left:301.104667pt;}
.xe_c00242{left:378.419200pt;}
.xf_c00242{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_65d039069b59448e45c05d21.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.134000;font-style:normal;font-weight:normal;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_b371e09a39158d4cc4e77152.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;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:ff3_c00243;src:url('chunks/assets/font_a4ab2c0003cce8e28002abf5.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:0.787000;font-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_c00243{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v1_c00243{vertical-align:-30.240000px;}
.v3_c00243{vertical-align:-24.480000px;}
.v0_c00243{vertical-align:0.000000px;}
.v2_c00243{vertical-align:30.240000px;}
.lsb_c00243{letter-spacing:0.000000px;}
.ls8_c00243{letter-spacing:0.133440px;}
.ls15_c00243{letter-spacing:0.265680px;}
.ls9_c00243{letter-spacing:0.295200px;}
.ls3_c00243{letter-spacing:0.368040px;}
.ls1a_c00243{letter-spacing:0.425088px;}
.ls12_c00243{letter-spacing:0.438171px;}
.ls16_c00243{letter-spacing:0.478224px;}
.ls4_c00243{letter-spacing:0.488040px;}
.ls7_c00243{letter-spacing:0.501840px;}
.lsa_c00243{letter-spacing:0.531360px;}
.ls14_c00243{letter-spacing:0.584496px;}
.ls13_c00243{letter-spacing:0.690768px;}
.ls18_c00243{letter-spacing:0.712027px;}
.ls6_c00243{letter-spacing:0.771840px;}
.ls17_c00243{letter-spacing:0.821570px;}
.ls1b_c00243{letter-spacing:0.962352px;}
.ls10_c00243{letter-spacing:4.766400px;}
.lse_c00243{letter-spacing:5.149872px;}
.lsd_c00243{letter-spacing:5.245344px;}
.lsc_c00243{letter-spacing:5.385744px;}
.ls2_c00243{letter-spacing:5.406777px;}
.lsf_c00243{letter-spacing:5.430672px;}
.ls0_c00243{letter-spacing:5.976000px;}
.ls5_c00243{letter-spacing:5.991000px;}
.ls1_c00243{letter-spacing:6.159920px;}
.ls11_c00243{letter-spacing:9.292896px;}
.ls19_c00243{letter-spacing:12.693600px;}
.sc__c00243{text-shadow:none;}
.sc1_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00243{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc1_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00243{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00243{word-spacing:-25.992000px;}
.ws0_c00243{word-spacing:-21.499753px;}
.ws5_c00243{word-spacing:-21.043152px;}
.ws1_c00243{word-spacing:-20.998224px;}
.ws3_c00243{word-spacing:-20.762352px;}
.ws6_c00243{word-spacing:-20.016000px;}
.ws8_c00243{word-spacing:-17.739827px;}
.ws9_c00243{word-spacing:-17.630284px;}
.ws4_c00243{word-spacing:-11.609280px;}
.ws7_c00243{word-spacing:-10.008000px;}
.wsa_c00243{word-spacing:0.000000px;}
._10_c00243{margin-left:-13.402080px;}
._f_c00243{margin-left:-12.221280px;}
._e_c00243{margin-left:-9.977760px;}
._d_c00243{margin-left:-8.796960px;}
._b_c00243{margin-left:-4.780800px;}
._c_c00243{margin-left:-1.336800px;}
._6_c00243{width:1.080000px;}
._8_c00243{width:2.088000px;}
._2_c00243{width:3.096000px;}
._1_c00243{width:4.536000px;}
._4_c00243{width:6.408000px;}
._7_c00243{width:7.776000px;}
._0_c00243{width:8.928000px;}
._3_c00243{width:15.696000px;}
._a_c00243{width:16.992000px;}
._5_c00243{width:18.864000px;}
._9_c00243{width:22.248000px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs5_c00243{font-size:36.000000px;}
.fs4_c00243{font-size:41.760000px;}
.fs3_c00243{font-size:56.160000px;}
.fs2_c00243{font-size:57.888403px;}
.fs6_c00243{font-size:59.040000px;}
.fs8_c00243{font-size:60.000000px;}
.fs7_c00243{font-size:60.857039px;}
.fs0_c00243{font-size:72.000000px;}
.fs1_c00243{font-size:74.215901px;}
.y0_c00243{bottom:0.000000px;}
.y30_c00243{bottom:3.120150px;}
.y2f_c00243{bottom:34.744500px;}
.y1_c00243{bottom:54.000000px;}
.y2e_c00243{bottom:55.481040px;}
.y2d_c00243{bottom:72.765000px;}
.y2c_c00243{bottom:72.766800px;}
.y2b_c00243{bottom:96.525000px;}
.y2a_c00243{bottom:108.045000px;}
.y29_c00243{bottom:115.605000px;}
.y28_c00243{bottom:136.485000px;}
.y27_c00243{bottom:149.806800px;}
.y26_c00243{bottom:167.445000px;}
.y25_c00243{bottom:173.565000px;}
.y24_c00243{bottom:200.205000px;}
.y23_c00243{bottom:234.405000px;}
.y22_c00243{bottom:255.285000px;}
.y21_c00243{bottom:291.285000px;}
.y20_c00243{bottom:312.165000px;}
.y1f_c00243{bottom:348.165000px;}
.y1e_c00243{bottom:384.525000px;}
.y1d_c00243{bottom:420.525000px;}
.y1c_c00243{bottom:456.525000px;}
.y1b_c00243{bottom:492.525000px;}
.y1a_c00243{bottom:528.525000px;}
.y19_c00243{bottom:549.405000px;}
.y18_c00243{bottom:570.285000px;}
.y17_c00243{bottom:591.525000px;}
.y16_c00243{bottom:612.405000px;}
.y15_c00243{bottom:633.285000px;}
.y14_c00243{bottom:654.525000px;}
.y13_c00243{bottom:675.405000px;}
.y12_c00243{bottom:711.405000px;}
.y11_c00243{bottom:747.405000px;}
.y10_c00243{bottom:785.925000px;}
.yf_c00243{bottom:824.085000px;}
.ye_c00243{bottom:860.085000px;}
.yd_c00243{bottom:880.965000px;}
.yc_c00243{bottom:901.845000px;}
.yb_c00243{bottom:923.085000px;}
.ya_c00243{bottom:943.965000px;}
.y9_c00243{bottom:964.845000px;}
.y8_c00243{bottom:986.085000px;}
.y7_c00243{bottom:1006.965000px;}
.y6_c00243{bottom:1027.845000px;}
.y4_c00243{bottom:1049.085000px;}
.y5_c00243{bottom:1056.645000px;}
.y3_c00243{bottom:1085.085000px;}
.y2_c00243{bottom:1138.365000px;}
.ha_c00243{height:19.255500px;}
.h7_c00243{height:32.616000px;}
.h5_c00243{height:37.834560px;}
.hb_c00243{height:46.320000px;}
.h8_c00243{height:46.981634px;}
.h9_c00243{height:53.490240px;}
.h4_c00243{height:57.294676px;}
.h3_c00243{height:65.232000px;}
.h6_c00243{height:68.074560px;}
.h2_c00243{height:1201.365000px;}
.h0_c00243{height:1262.835000px;}
.h1_c00243{height:1263.000000px;}
.w3_c00243{width:25.020000px;}
.w2_c00243{width:863.955000px;}
.w0_c00243{width:892.935000px;}
.w1_c00243{width:893.250000px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:14.490000px;}
.x2_c00243{left:113.040150px;}
.x15_c00243{left:145.025700px;}
.x16_c00243{left:148.031550px;}
.x3_c00243{left:154.043700px;}
.xb_c00243{left:172.024950px;}
.x19_c00243{left:179.724900px;}
.x5_c00243{left:182.487750px;}
.x1f_c00243{left:191.826000px;}
.x20_c00243{left:212.278200px;}
.x4_c00243{left:219.994950px;}
.xc_c00243{left:229.012200px;}
.x1a_c00243{left:257.212350px;}
.x1b_c00243{left:280.551300px;}
.x13_c00243{left:319.047000px;}
.x1c_c00243{left:328.040400px;}
.x6_c00243{left:330.969750px;}
.x1d_c00243{left:336.379800px;}
.x14_c00243{left:348.044250px;}
.x1e_c00243{left:356.373750px;}
.xf_c00243{left:367.370700px;}
.x7_c00243{left:388.080000px;}
.xa_c00243{left:414.462150px;}
.x8_c00243{left:416.445600px;}
.x10_c00243{left:422.395800px;}
.x11_c00243{left:437.968500px;}
.x17_c00243{left:446.502300px;}
.x18_c00243{left:468.753600px;}
.x12_c00243{left:494.955750px;}
.x9_c00243{left:563.958600px;}
.xd_c00243{left:576.945600px;}
.xe_c00243{left:633.932700px;}
.x21_c00243{left:636.977400px;}
.x22_c00243{left:684.466500px;}
.x23_c00243{left:693.263700px;}
.x24_c00243{left:713.715450px;}
.x25_c00243{left:759.915000px;}
@media print{
.v1_c00243{vertical-align:-26.880000pt;}
.v3_c00243{vertical-align:-21.760000pt;}
.v0_c00243{vertical-align:0.000000pt;}
.v2_c00243{vertical-align:26.880000pt;}
.lsb_c00243{letter-spacing:0.000000pt;}
.ls8_c00243{letter-spacing:0.118613pt;}
.ls15_c00243{letter-spacing:0.236160pt;}
.ls9_c00243{letter-spacing:0.262400pt;}
.ls3_c00243{letter-spacing:0.327147pt;}
.ls1a_c00243{letter-spacing:0.377856pt;}
.ls12_c00243{letter-spacing:0.389485pt;}
.ls16_c00243{letter-spacing:0.425088pt;}
.ls4_c00243{letter-spacing:0.433813pt;}
.ls7_c00243{letter-spacing:0.446080pt;}
.lsa_c00243{letter-spacing:0.472320pt;}
.ls14_c00243{letter-spacing:0.519552pt;}
.ls13_c00243{letter-spacing:0.614016pt;}
.ls18_c00243{letter-spacing:0.632913pt;}
.ls6_c00243{letter-spacing:0.686080pt;}
.ls17_c00243{letter-spacing:0.730284pt;}
.ls1b_c00243{letter-spacing:0.855424pt;}
.ls10_c00243{letter-spacing:4.236800pt;}
.lse_c00243{letter-spacing:4.577664pt;}
.lsd_c00243{letter-spacing:4.662528pt;}
.lsc_c00243{letter-spacing:4.787328pt;}
.ls2_c00243{letter-spacing:4.806024pt;}
.lsf_c00243{letter-spacing:4.827264pt;}
.ls0_c00243{letter-spacing:5.312000pt;}
.ls5_c00243{letter-spacing:5.325333pt;}
.ls1_c00243{letter-spacing:5.475484pt;}
.ls11_c00243{letter-spacing:8.260352pt;}
.ls19_c00243{letter-spacing:11.283200pt;}
.ws2_c00243{word-spacing:-23.104000pt;}
.ws0_c00243{word-spacing:-19.110891pt;}
.ws5_c00243{word-spacing:-18.705024pt;}
.ws1_c00243{word-spacing:-18.665088pt;}
.ws3_c00243{word-spacing:-18.455424pt;}
.ws6_c00243{word-spacing:-17.792000pt;}
.ws8_c00243{word-spacing:-15.768735pt;}
.ws9_c00243{word-spacing:-15.671364pt;}
.ws4_c00243{word-spacing:-10.319360pt;}
.ws7_c00243{word-spacing:-8.896000pt;}
.wsa_c00243{word-spacing:0.000000pt;}
._10_c00243{margin-left:-11.912960pt;}
._f_c00243{margin-left:-10.863360pt;}
._e_c00243{margin-left:-8.869120pt;}
._d_c00243{margin-left:-7.819520pt;}
._b_c00243{margin-left:-4.249600pt;}
._c_c00243{margin-left:-1.188267pt;}
._6_c00243{width:0.960000pt;}
._8_c00243{width:1.856000pt;}
._2_c00243{width:2.752000pt;}
._1_c00243{width:4.032000pt;}
._4_c00243{width:5.696000pt;}
._7_c00243{width:6.912000pt;}
._0_c00243{width:7.936000pt;}
._3_c00243{width:13.952000pt;}
._a_c00243{width:15.104000pt;}
._5_c00243{width:16.768000pt;}
._9_c00243{width:19.776000pt;}
.fs5_c00243{font-size:32.000000pt;}
.fs4_c00243{font-size:37.120000pt;}
.fs3_c00243{font-size:49.920000pt;}
.fs2_c00243{font-size:51.456358pt;}
.fs6_c00243{font-size:52.480000pt;}
.fs8_c00243{font-size:53.333333pt;}
.fs7_c00243{font-size:54.095146pt;}
.fs0_c00243{font-size:64.000000pt;}
.fs1_c00243{font-size:65.969690pt;}
.y0_c00243{bottom:0.000000pt;}
.y30_c00243{bottom:2.773467pt;}
.y2f_c00243{bottom:30.884000pt;}
.y1_c00243{bottom:48.000000pt;}
.y2e_c00243{bottom:49.316480pt;}
.y2d_c00243{bottom:64.680000pt;}
.y2c_c00243{bottom:64.681600pt;}
.y2b_c00243{bottom:85.800000pt;}
.y2a_c00243{bottom:96.040000pt;}
.y29_c00243{bottom:102.760000pt;}
.y28_c00243{bottom:121.320000pt;}
.y27_c00243{bottom:133.161600pt;}
.y26_c00243{bottom:148.840000pt;}
.y25_c00243{bottom:154.280000pt;}
.y24_c00243{bottom:177.960000pt;}
.y23_c00243{bottom:208.360000pt;}
.y22_c00243{bottom:226.920000pt;}
.y21_c00243{bottom:258.920000pt;}
.y20_c00243{bottom:277.480000pt;}
.y1f_c00243{bottom:309.480000pt;}
.y1e_c00243{bottom:341.800000pt;}
.y1d_c00243{bottom:373.800000pt;}
.y1c_c00243{bottom:405.800000pt;}
.y1b_c00243{bottom:437.800000pt;}
.y1a_c00243{bottom:469.800000pt;}
.y19_c00243{bottom:488.360000pt;}
.y18_c00243{bottom:506.920000pt;}
.y17_c00243{bottom:525.800000pt;}
.y16_c00243{bottom:544.360000pt;}
.y15_c00243{bottom:562.920000pt;}
.y14_c00243{bottom:581.800000pt;}
.y13_c00243{bottom:600.360000pt;}
.y12_c00243{bottom:632.360000pt;}
.y11_c00243{bottom:664.360000pt;}
.y10_c00243{bottom:698.600000pt;}
.yf_c00243{bottom:732.520000pt;}
.ye_c00243{bottom:764.520000pt;}
.yd_c00243{bottom:783.080000pt;}
.yc_c00243{bottom:801.640000pt;}
.yb_c00243{bottom:820.520000pt;}
.ya_c00243{bottom:839.080000pt;}
.y9_c00243{bottom:857.640000pt;}
.y8_c00243{bottom:876.520000pt;}
.y7_c00243{bottom:895.080000pt;}
.y6_c00243{bottom:913.640000pt;}
.y4_c00243{bottom:932.520000pt;}
.y5_c00243{bottom:939.240000pt;}
.y3_c00243{bottom:964.520000pt;}
.y2_c00243{bottom:1011.880000pt;}
.ha_c00243{height:17.116000pt;}
.h7_c00243{height:28.992000pt;}
.h5_c00243{height:33.630720pt;}
.hb_c00243{height:41.173333pt;}
.h8_c00243{height:41.761453pt;}
.h9_c00243{height:47.546880pt;}
.h4_c00243{height:50.928601pt;}
.h3_c00243{height:57.984000pt;}
.h6_c00243{height:60.510720pt;}
.h2_c00243{height:1067.880000pt;}
.h0_c00243{height:1122.520000pt;}
.h1_c00243{height:1122.666667pt;}
.w3_c00243{width:22.240000pt;}
.w2_c00243{width:767.960000pt;}
.w0_c00243{width:793.720000pt;}
.w1_c00243{width:794.000000pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:12.880000pt;}
.x2_c00243{left:100.480133pt;}
.x15_c00243{left:128.911733pt;}
.x16_c00243{left:131.583600pt;}
.x3_c00243{left:136.927733pt;}
.xb_c00243{left:152.911067pt;}
.x19_c00243{left:159.755467pt;}
.x5_c00243{left:162.211333pt;}
.x1f_c00243{left:170.512000pt;}
.x20_c00243{left:188.691733pt;}
.x4_c00243{left:195.551067pt;}
.xc_c00243{left:203.566400pt;}
.x1a_c00243{left:228.633200pt;}
.x1b_c00243{left:249.378933pt;}
.x13_c00243{left:283.597333pt;}
.x1c_c00243{left:291.591467pt;}
.x6_c00243{left:294.195333pt;}
.x1d_c00243{left:299.004267pt;}
.x14_c00243{left:309.372667pt;}
.x1e_c00243{left:316.776667pt;}
.xf_c00243{left:326.551733pt;}
.x7_c00243{left:344.960000pt;}
.xa_c00243{left:368.410800pt;}
.x8_c00243{left:370.173867pt;}
.x10_c00243{left:375.462933pt;}
.x11_c00243{left:389.305333pt;}
.x17_c00243{left:396.890933pt;}
.x18_c00243{left:416.669867pt;}
.x12_c00243{left:439.960667pt;}
.x9_c00243{left:501.296533pt;}
.xd_c00243{left:512.840533pt;}
.xe_c00243{left:563.495733pt;}
.x21_c00243{left:566.202133pt;}
.x22_c00243{left:608.414667pt;}
.x23_c00243{left:616.234400pt;}
.x24_c00243{left:634.413733pt;}
.x25_c00243{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3cb592f0c14eb74a4f0ead6a.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.134000;font-style:normal;font-weight:normal;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_98b1a7f8995ceedd724e5eda.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;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:ff3_c00244;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00244;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00244;src:url('chunks/assets/font_a37b40605d01d9d02bb5d601.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;line-height:0.787000;font-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_c00244{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00244{vertical-align:-24.480000px;}
.v0_c00244{vertical-align:0.000000px;}
.v1_c00244{vertical-align:30.240000px;}
.lsa_c00244{letter-spacing:0.000000px;}
.ls8_c00244{letter-spacing:0.265680px;}
.ls5_c00244{letter-spacing:0.271584px;}
.ls6_c00244{letter-spacing:0.295200px;}
.lsf_c00244{letter-spacing:0.438171px;}
.lsd_c00244{letter-spacing:0.478224px;}
.lse_c00244{letter-spacing:0.531360px;}
.ls10_c00244{letter-spacing:0.584496px;}
.ls11_c00244{letter-spacing:0.690768px;}
.ls13_c00244{letter-spacing:0.696672px;}
.ls1_c00244{letter-spacing:0.722640px;}
.ls14_c00244{letter-spacing:0.766799px;}
.lsc_c00244{letter-spacing:3.766752px;}
.ls7_c00244{letter-spacing:4.634640px;}
.lsb_c00244{letter-spacing:5.430672px;}
.ls0_c00244{letter-spacing:5.976000px;}
.ls2_c00244{letter-spacing:6.011400px;}
.ls4_c00244{letter-spacing:6.120000px;}
.ls9_c00244{letter-spacing:6.159920px;}
.ls12_c00244{letter-spacing:6.334992px;}
.ls3_c00244{letter-spacing:54.864000px;}
.sc__c00244{text-shadow:none;}
.sc1_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00244{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc1_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00244{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00244{word-spacing:-21.043152px;}
.ws4_c00244{word-spacing:-17.685056px;}
.ws3_c00244{word-spacing:-16.678800px;}
.ws1_c00244{word-spacing:-11.609280px;}
.ws2_c00244{word-spacing:-10.008000px;}
.ws5_c00244{word-spacing:0.000000px;}
._7_c00244{margin-left:-6.192000px;}
._b_c00244{margin-left:-5.155056px;}
._a_c00244{margin-left:-4.132800px;}
._9_c00244{margin-left:-2.952000px;}
._2_c00244{margin-left:-1.179360px;}
._4_c00244{width:1.224000px;}
._3_c00244{width:2.520000px;}
._5_c00244{width:4.392000px;}
._6_c00244{width:6.120000px;}
._8_c00244{width:7.272000px;}
._c_c00244{width:11.501280px;}
._1_c00244{width:12.528000px;}
._0_c00244{width:18.864000px;}
.fc0_c00244{color:rgb(0,0,0);}
.fs5_c00244{font-size:36.000000px;}
.fs2_c00244{font-size:41.760000px;}
.fs3_c00244{font-size:56.160000px;}
.fs4_c00244{font-size:59.040000px;}
.fs7_c00244{font-size:60.000000px;}
.fs6_c00244{font-size:60.857039px;}
.fs0_c00244{font-size:72.000000px;}
.fs1_c00244{font-size:74.215901px;}
.y0_c00244{bottom:0.000000px;}
.y29_c00244{bottom:3.120150px;}
.y28_c00244{bottom:34.744500px;}
.y1_c00244{bottom:54.000000px;}
.y27_c00244{bottom:61.605000px;}
.y26_c00244{bottom:72.765000px;}
.y25_c00244{bottom:78.885000px;}
.y24_c00244{bottom:90.400680px;}
.y23_c00244{bottom:107.684640px;}
.y22_c00244{bottom:125.322840px;}
.y21_c00244{bottom:142.961040px;}
.y20_c00244{bottom:160.245000px;}
.y1f_c00244{bottom:177.885000px;}
.y1e_c00244{bottom:177.886800px;}
.y1d_c00244{bottom:201.645000px;}
.y1c_c00244{bottom:228.285000px;}
.y1b_c00244{bottom:404.325000px;}
.y1a_c00244{bottom:425.205000px;}
.y19_c00244{bottom:446.085000px;}
.y18_c00244{bottom:467.325000px;}
.y17_c00244{bottom:488.205000px;}
.y16_c00244{bottom:524.205000px;}
.y15_c00244{bottom:545.445000px;}
.y14_c00244{bottom:562.725000px;}
.y13_c00244{bottom:583.965000px;}
.y12_c00244{bottom:619.965000px;}
.y11_c00244{bottom:655.965000px;}
.y10_c00244{bottom:676.845000px;}
.yf_c00244{bottom:712.845000px;}
.ye_c00244{bottom:734.085000px;}
.yd_c00244{bottom:770.085000px;}
.yc_c00244{bottom:806.085000px;}
.yb_c00244{bottom:842.085000px;}
.ya_c00244{bottom:862.965000px;}
.y9_c00244{bottom:898.965000px;}
.y8_c00244{bottom:934.965000px;}
.y7_c00244{bottom:970.965000px;}
.y6_c00244{bottom:1006.965000px;}
.y5_c00244{bottom:1042.965000px;}
.y4_c00244{bottom:1063.845000px;}
.y3_c00244{bottom:1085.085000px;}
.y2_c00244{bottom:1138.365000px;}
.ha_c00244{height:19.255500px;}
.h7_c00244{height:32.616000px;}
.h6_c00244{height:39.350391px;}
.hb_c00244{height:46.320000px;}
.h9_c00244{height:46.981634px;}
.h8_c00244{height:53.490240px;}
.h4_c00244{height:57.294676px;}
.h3_c00244{height:65.232000px;}
.h5_c00244{height:68.074560px;}
.h2_c00244{height:1201.365000px;}
.h0_c00244{height:1262.835000px;}
.h1_c00244{height:1263.000000px;}
.w3_c00244{width:25.020000px;}
.w2_c00244{width:863.955000px;}
.w0_c00244{width:892.935000px;}
.w1_c00244{width:893.250000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:14.490000px;}
.x2_c00244{left:113.040150px;}
.x11_c00244{left:122.213700px;}
.x8_c00244{left:140.037600px;}
.x6_c00244{left:143.027700px;}
.x3_c00244{left:154.043700px;}
.x5_c00244{left:155.669250px;}
.x12_c00244{left:165.562800px;}
.x9_c00244{left:167.040150px;}
.x7_c00244{left:193.048800px;}
.x4_c00244{left:219.994950px;}
.xa_c00244{left:582.778200px;}
.xb_c00244{left:593.775900px;}
.xc_c00244{left:615.987300px;}
.xd_c00244{left:628.983000px;}
.xe_c00244{left:667.196100px;}
.xf_c00244{left:680.173800px;}
.x10_c00244{left:734.565750px;}
.x13_c00244{left:759.915000px;}
@media print{
.v2_c00244{vertical-align:-21.760000pt;}
.v0_c00244{vertical-align:0.000000pt;}
.v1_c00244{vertical-align:26.880000pt;}
.lsa_c00244{letter-spacing:0.000000pt;}
.ls8_c00244{letter-spacing:0.236160pt;}
.ls5_c00244{letter-spacing:0.241408pt;}
.ls6_c00244{letter-spacing:0.262400pt;}
.lsf_c00244{letter-spacing:0.389485pt;}
.lsd_c00244{letter-spacing:0.425088pt;}
.lse_c00244{letter-spacing:0.472320pt;}
.ls10_c00244{letter-spacing:0.519552pt;}
.ls11_c00244{letter-spacing:0.614016pt;}
.ls13_c00244{letter-spacing:0.619264pt;}
.ls1_c00244{letter-spacing:0.642347pt;}
.ls14_c00244{letter-spacing:0.681599pt;}
.lsc_c00244{letter-spacing:3.348224pt;}
.ls7_c00244{letter-spacing:4.119680pt;}
.lsb_c00244{letter-spacing:4.827264pt;}
.ls0_c00244{letter-spacing:5.312000pt;}
.ls2_c00244{letter-spacing:5.343467pt;}
.ls4_c00244{letter-spacing:5.440000pt;}
.ls9_c00244{letter-spacing:5.475484pt;}
.ls12_c00244{letter-spacing:5.631104pt;}
.ls3_c00244{letter-spacing:48.768000pt;}
.ws0_c00244{word-spacing:-18.705024pt;}
.ws4_c00244{word-spacing:-15.720049pt;}
.ws3_c00244{word-spacing:-14.825600pt;}
.ws1_c00244{word-spacing:-10.319360pt;}
.ws2_c00244{word-spacing:-8.896000pt;}
.ws5_c00244{word-spacing:0.000000pt;}
._7_c00244{margin-left:-5.504000pt;}
._b_c00244{margin-left:-4.582272pt;}
._a_c00244{margin-left:-3.673600pt;}
._9_c00244{margin-left:-2.624000pt;}
._2_c00244{margin-left:-1.048320pt;}
._4_c00244{width:1.088000pt;}
._3_c00244{width:2.240000pt;}
._5_c00244{width:3.904000pt;}
._6_c00244{width:5.440000pt;}
._8_c00244{width:6.464000pt;}
._c_c00244{width:10.223360pt;}
._1_c00244{width:11.136000pt;}
._0_c00244{width:16.768000pt;}
.fs5_c00244{font-size:32.000000pt;}
.fs2_c00244{font-size:37.120000pt;}
.fs3_c00244{font-size:49.920000pt;}
.fs4_c00244{font-size:52.480000pt;}
.fs7_c00244{font-size:53.333333pt;}
.fs6_c00244{font-size:54.095146pt;}
.fs0_c00244{font-size:64.000000pt;}
.fs1_c00244{font-size:65.969690pt;}
.y0_c00244{bottom:0.000000pt;}
.y29_c00244{bottom:2.773467pt;}
.y28_c00244{bottom:30.884000pt;}
.y1_c00244{bottom:48.000000pt;}
.y27_c00244{bottom:54.760000pt;}
.y26_c00244{bottom:64.680000pt;}
.y25_c00244{bottom:70.120000pt;}
.y24_c00244{bottom:80.356160pt;}
.y23_c00244{bottom:95.719680pt;}
.y22_c00244{bottom:111.398080pt;}
.y21_c00244{bottom:127.076480pt;}
.y20_c00244{bottom:142.440000pt;}
.y1f_c00244{bottom:158.120000pt;}
.y1e_c00244{bottom:158.121600pt;}
.y1d_c00244{bottom:179.240000pt;}
.y1c_c00244{bottom:202.920000pt;}
.y1b_c00244{bottom:359.400000pt;}
.y1a_c00244{bottom:377.960000pt;}
.y19_c00244{bottom:396.520000pt;}
.y18_c00244{bottom:415.400000pt;}
.y17_c00244{bottom:433.960000pt;}
.y16_c00244{bottom:465.960000pt;}
.y15_c00244{bottom:484.840000pt;}
.y14_c00244{bottom:500.200000pt;}
.y13_c00244{bottom:519.080000pt;}
.y12_c00244{bottom:551.080000pt;}
.y11_c00244{bottom:583.080000pt;}
.y10_c00244{bottom:601.640000pt;}
.yf_c00244{bottom:633.640000pt;}
.ye_c00244{bottom:652.520000pt;}
.yd_c00244{bottom:684.520000pt;}
.yc_c00244{bottom:716.520000pt;}
.yb_c00244{bottom:748.520000pt;}
.ya_c00244{bottom:767.080000pt;}
.y9_c00244{bottom:799.080000pt;}
.y8_c00244{bottom:831.080000pt;}
.y7_c00244{bottom:863.080000pt;}
.y6_c00244{bottom:895.080000pt;}
.y5_c00244{bottom:927.080000pt;}
.y4_c00244{bottom:945.640000pt;}
.y3_c00244{bottom:964.520000pt;}
.y2_c00244{bottom:1011.880000pt;}
.ha_c00244{height:17.116000pt;}
.h7_c00244{height:28.992000pt;}
.h6_c00244{height:34.978125pt;}
.hb_c00244{height:41.173333pt;}
.h9_c00244{height:41.761453pt;}
.h8_c00244{height:47.546880pt;}
.h4_c00244{height:50.928601pt;}
.h3_c00244{height:57.984000pt;}
.h5_c00244{height:60.510720pt;}
.h2_c00244{height:1067.880000pt;}
.h0_c00244{height:1122.520000pt;}
.h1_c00244{height:1122.666667pt;}
.w3_c00244{width:22.240000pt;}
.w2_c00244{width:767.960000pt;}
.w0_c00244{width:793.720000pt;}
.w1_c00244{width:794.000000pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:12.880000pt;}
.x2_c00244{left:100.480133pt;}
.x11_c00244{left:108.634400pt;}
.x8_c00244{left:124.477867pt;}
.x6_c00244{left:127.135733pt;}
.x3_c00244{left:136.927733pt;}
.x5_c00244{left:138.372667pt;}
.x12_c00244{left:147.166933pt;}
.x9_c00244{left:148.480133pt;}
.x7_c00244{left:171.598933pt;}
.x4_c00244{left:195.551067pt;}
.xa_c00244{left:518.025067pt;}
.xb_c00244{left:527.800800pt;}
.xc_c00244{left:547.544267pt;}
.xd_c00244{left:559.096000pt;}
.xe_c00244{left:593.063200pt;}
.xf_c00244{left:604.598933pt;}
.x10_c00244{left:652.947333pt;}
.x13_c00244{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92490e5b101ec2eb69b73469.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.134000;font-style:normal;font-weight:normal;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_95ca60d36ecf4f6a2ad21c97.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;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:ff3_c00245;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_a37b40605d01d9d02bb5d601.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:0.787000;font-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_c00245{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00245{vertical-align:-24.480000px;}
.v0_c00245{vertical-align:0.000000px;}
.v1_c00245{vertical-align:30.240000px;}
.ls24_c00245{letter-spacing:-0.179568px;}
.ls12_c00245{letter-spacing:0.000000px;}
.ls27_c00245{letter-spacing:0.144000px;}
.lse_c00245{letter-spacing:0.192840px;}
.ls15_c00245{letter-spacing:0.242064px;}
.ls3_c00245{letter-spacing:0.265680px;}
.ls8_c00245{letter-spacing:0.283392px;}
.ls6_c00245{letter-spacing:0.295200px;}
.ls13_c00245{letter-spacing:0.318816px;}
.ls4_c00245{letter-spacing:0.319080px;}
.ls17_c00245{letter-spacing:0.328628px;}
.lsc_c00245{letter-spacing:0.354240px;}
.lsb_c00245{letter-spacing:0.413280px;}
.ls21_c00245{letter-spacing:0.425088px;}
.lsa_c00245{letter-spacing:0.478224px;}
.ls1c_c00245{letter-spacing:0.492942px;}
.ls2_c00245{letter-spacing:0.531360px;}
.ls10_c00245{letter-spacing:0.547713px;}
.ls7_c00245{letter-spacing:0.549072px;}
.ls5_c00245{letter-spacing:0.560880px;}
.lsf_c00245{letter-spacing:0.566040px;}
.ls1f_c00245{letter-spacing:0.584496px;}
.ls14_c00245{letter-spacing:0.657256px;}
.ls19_c00245{letter-spacing:0.690768px;}
.ls1a_c00245{letter-spacing:0.696672px;}
.ls1_c00245{letter-spacing:0.712027px;}
.ls16_c00245{letter-spacing:0.766799px;}
.ls28_c00245{letter-spacing:0.821570px;}
.ls20_c00245{letter-spacing:0.962352px;}
.ls26_c00245{letter-spacing:1.251648px;}
.ls23_c00245{letter-spacing:1.677600px;}
.ls25_c00245{letter-spacing:3.924000px;}
.ls9_c00245{letter-spacing:4.487040px;}
.ls18_c00245{letter-spacing:5.248656px;}
.ls22_c00245{letter-spacing:5.430672px;}
.lsd_c00245{letter-spacing:5.975400px;}
.ls0_c00245{letter-spacing:5.976000px;}
.ls11_c00245{letter-spacing:6.159920px;}
.ls1e_c00245{letter-spacing:9.741600px;}
.ls1b_c00245{letter-spacing:10.804320px;}
.ls1d_c00245{letter-spacing:20.085408px;}
.sc__c00245{text-shadow:none;}
.sc1_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00245{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc1_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00245{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00245{word-spacing:-21.661776px;}
.ws7_c00245{word-spacing:-21.043152px;}
.wsb_c00245{word-spacing:-17.739827px;}
.ws3_c00245{word-spacing:-17.685056px;}
.ws1_c00245{word-spacing:-17.630284px;}
.ws5_c00245{word-spacing:-17.465970px;}
.ws0_c00245{word-spacing:-16.944480px;}
.ws4_c00245{word-spacing:-16.918257px;}
.ws6_c00245{word-spacing:-16.826400px;}
.ws8_c00245{word-spacing:-11.429712px;}
.wsa_c00245{word-spacing:-10.152000px;}
.ws9_c00245{word-spacing:-10.008000px;}
.wsc_c00245{word-spacing:0.000000px;}
._6_c00245{margin-left:-19.542240px;}
._2_c00245{margin-left:-10.272960px;}
._9_c00245{margin-left:-9.009079px;}
._12_c00245{margin-left:-3.960000px;}
._0_c00245{margin-left:-1.034570px;}
._4_c00245{width:1.149910px;}
._3_c00245{width:2.156330px;}
._5_c00245{width:3.306240px;}
._a_c00245{width:4.886292px;}
._f_c00245{width:7.488000px;}
._8_c00245{width:8.768810px;}
._1_c00245{width:9.831530px;}
._10_c00245{width:11.376000px;}
._c_c00245{width:13.752000px;}
._b_c00245{width:14.904000px;}
._11_c00245{width:17.794512px;}
._7_c00245{width:19.213488px;}
._e_c00245{width:34.776000px;}
._d_c00245{width:36.792000px;}
.fc0_c00245{color:rgb(0,0,0);}
.fs6_c00245{font-size:36.000000px;}
.fs5_c00245{font-size:41.760000px;}
.fs4_c00245{font-size:56.160000px;}
.fs2_c00245{font-size:59.040000px;}
.fs7_c00245{font-size:60.000000px;}
.fs3_c00245{font-size:60.857039px;}
.fs0_c00245{font-size:72.000000px;}
.fs1_c00245{font-size:74.215901px;}
.y0_c00245{bottom:0.000000px;}
.y37_c00245{bottom:3.120150px;}
.y36_c00245{bottom:34.744500px;}
.y1_c00245{bottom:54.000000px;}
.y35_c00245{bottom:55.485000px;}
.y34_c00245{bottom:61.605000px;}
.y33_c00245{bottom:72.765000px;}
.y32_c00245{bottom:72.766800px;}
.y31_c00245{bottom:96.525000px;}
.y30_c00245{bottom:113.805000px;}
.y2f_c00245{bottom:140.445000px;}
.y2e_c00245{bottom:162.405000px;}
.y2d_c00245{bottom:183.645000px;}
.y2c_c00245{bottom:204.525000px;}
.y2b_c00245{bottom:240.525000px;}
.y2a_c00245{bottom:261.405000px;}
.y29_c00245{bottom:282.645000px;}
.y28_c00245{bottom:303.525000px;}
.y27_c00245{bottom:324.405000px;}
.y26_c00245{bottom:345.645000px;}
.y25_c00245{bottom:366.525000px;}
.y24_c00245{bottom:402.525000px;}
.y23_c00245{bottom:423.765000px;}
.y22_c00245{bottom:444.645000px;}
.y21_c00245{bottom:465.525000px;}
.y20_c00245{bottom:501.525000px;}
.y1f_c00245{bottom:522.765000px;}
.y1e_c00245{bottom:543.645000px;}
.y1d_c00245{bottom:564.525000px;}
.y1c_c00245{bottom:585.765000px;}
.y1b_c00245{bottom:606.645000px;}
.y1a_c00245{bottom:642.645000px;}
.y19_c00245{bottom:663.525000px;}
.y18_c00245{bottom:699.525000px;}
.y17_c00245{bottom:735.525000px;}
.y16_c00245{bottom:771.524640px;}
.y15_c00245{bottom:788.808600px;}
.y14_c00245{bottom:806.446800px;}
.y13_c00245{bottom:824.085000px;}
.y12_c00245{bottom:856.485000px;}
.y11_c00245{bottom:856.486800px;}
.y10_c00245{bottom:874.125000px;}
.yf_c00245{bottom:906.885000px;}
.ye_c00245{bottom:928.125000px;}
.yd_c00245{bottom:945.405000px;}
.yb_c00245{bottom:945.764850px;}
.yc_c00245{bottom:963.045000px;}
.ya_c00245{bottom:963.405000px;}
.y9_c00245{bottom:980.685000px;}
.y8_c00245{bottom:999.045000px;}
.y7_c00245{bottom:1016.325000px;}
.y6_c00245{bottom:1016.685000px;}
.y5_c00245{bottom:1033.965000px;}
.y4_c00245{bottom:1051.604850px;}
.y3_c00245{bottom:1085.085000px;}
.y2_c00245{bottom:1138.365000px;}
.ha_c00245{height:19.255500px;}
.h9_c00245{height:32.616000px;}
.h7_c00245{height:39.350391px;}
.hb_c00245{height:46.320000px;}
.h6_c00245{height:46.981634px;}
.h5_c00245{height:53.490240px;}
.h4_c00245{height:57.294676px;}
.h3_c00245{height:65.232000px;}
.h8_c00245{height:68.074560px;}
.h2_c00245{height:1201.365000px;}
.h0_c00245{height:1262.835000px;}
.h1_c00245{height:1263.000000px;}
.w7_c00245{width:25.020000px;}
.w3_c00245{width:47.880000px;}
.w5_c00245{width:113.040000px;}
.w4_c00245{width:182.160000px;}
.w6_c00245{width:307.800000px;}
.w2_c00245{width:863.955000px;}
.w0_c00245{width:892.935000px;}
.w1_c00245{width:893.250000px;}
.x0_c00245{left:0.000000px;}
.x6_c00245{left:7.920150px;}
.x1_c00245{left:14.490000px;}
.x18_c00245{left:46.233000px;}
.x19_c00245{left:51.269100px;}
.x8_c00245{left:76.963650px;}
.x9_c00245{left:86.369700px;}
.xc_c00245{left:109.585950px;}
.x2_c00245{left:113.040150px;}
.x5_c00245{left:119.610000px;}
.x12_c00245{left:129.314550px;}
.x22_c00245{left:133.034550px;}
.xa_c00245{left:136.605150px;}
.x1a_c00245{left:140.079300px;}
.xb_c00245{left:146.011200px;}
.x3_c00245{left:154.043700px;}
.x27_c00245{left:158.057700px;}
.x7_c00245{left:168.210000px;}
.xd_c00245{left:170.610000px;}
.x13_c00245{left:172.663650px;}
.x1b_c00245{left:175.043700px;}
.x31_c00245{left:182.250000px;}
.x32_c00245{left:211.409250px;}
.x4_c00245{left:219.994950px;}
.x10_c00245{left:234.202200px;}
.x16_c00245{left:236.119650px;}
.x28_c00245{left:259.563000px;}
.x11_c00245{left:264.201750px;}
.x14_c00245{left:265.230900px;}
.x17_c00245{left:272.685750px;}
.x33_c00245{left:289.690350px;}
.x15_c00245{left:300.195150px;}
.x1c_c00245{left:305.227350px;}
.x29_c00245{left:319.591950px;}
.x23_c00245{left:330.980400px;}
.x1d_c00245{left:335.226900px;}
.x34_c00245{left:346.359300px;}
.xe_c00245{left:351.090000px;}
.x24_c00245{left:387.967500px;}
.x1e_c00245{left:402.769050px;}
.x2f_c00245{left:435.109500px;}
.x1f_c00245{left:446.118150px;}
.xf_c00245{left:464.850000px;}
.x30_c00245{left:505.146600px;}
.x20_c00245{left:548.262750px;}
.x2a_c00245{left:557.715750px;}
.x2b_c00245{left:570.693600px;}
.x21_c00245{left:583.227150px;}
.x2e_c00245{left:604.879350px;}
.x25_c00245{left:626.625750px;}
.x26_c00245{left:660.627300px;}
.x2c_c00245{left:734.388450px;}
.x2d_c00245{left:745.386150px;}
.x35_c00245{left:759.915000px;}
@media print{
.v2_c00245{vertical-align:-21.760000pt;}
.v0_c00245{vertical-align:0.000000pt;}
.v1_c00245{vertical-align:26.880000pt;}
.ls24_c00245{letter-spacing:-0.159616pt;}
.ls12_c00245{letter-spacing:0.000000pt;}
.ls27_c00245{letter-spacing:0.128000pt;}
.lse_c00245{letter-spacing:0.171413pt;}
.ls15_c00245{letter-spacing:0.215168pt;}
.ls3_c00245{letter-spacing:0.236160pt;}
.ls8_c00245{letter-spacing:0.251904pt;}
.ls6_c00245{letter-spacing:0.262400pt;}
.ls13_c00245{letter-spacing:0.283392pt;}
.ls4_c00245{letter-spacing:0.283627pt;}
.ls17_c00245{letter-spacing:0.292114pt;}
.lsc_c00245{letter-spacing:0.314880pt;}
.lsb_c00245{letter-spacing:0.367360pt;}
.ls21_c00245{letter-spacing:0.377856pt;}
.lsa_c00245{letter-spacing:0.425088pt;}
.ls1c_c00245{letter-spacing:0.438171pt;}
.ls2_c00245{letter-spacing:0.472320pt;}
.ls10_c00245{letter-spacing:0.486856pt;}
.ls7_c00245{letter-spacing:0.488064pt;}
.ls5_c00245{letter-spacing:0.498560pt;}
.lsf_c00245{letter-spacing:0.503147pt;}
.ls1f_c00245{letter-spacing:0.519552pt;}
.ls14_c00245{letter-spacing:0.584228pt;}
.ls19_c00245{letter-spacing:0.614016pt;}
.ls1a_c00245{letter-spacing:0.619264pt;}
.ls1_c00245{letter-spacing:0.632913pt;}
.ls16_c00245{letter-spacing:0.681599pt;}
.ls28_c00245{letter-spacing:0.730284pt;}
.ls20_c00245{letter-spacing:0.855424pt;}
.ls26_c00245{letter-spacing:1.112576pt;}
.ls23_c00245{letter-spacing:1.491200pt;}
.ls25_c00245{letter-spacing:3.488000pt;}
.ls9_c00245{letter-spacing:3.988480pt;}
.ls18_c00245{letter-spacing:4.665472pt;}
.ls22_c00245{letter-spacing:4.827264pt;}
.lsd_c00245{letter-spacing:5.311467pt;}
.ls0_c00245{letter-spacing:5.312000pt;}
.ls11_c00245{letter-spacing:5.475484pt;}
.ls1e_c00245{letter-spacing:8.659200pt;}
.ls1b_c00245{letter-spacing:9.603840pt;}
.ls1d_c00245{letter-spacing:17.853696pt;}
.ws2_c00245{word-spacing:-19.254912pt;}
.ws7_c00245{word-spacing:-18.705024pt;}
.wsb_c00245{word-spacing:-15.768735pt;}
.ws3_c00245{word-spacing:-15.720049pt;}
.ws1_c00245{word-spacing:-15.671364pt;}
.ws5_c00245{word-spacing:-15.525307pt;}
.ws0_c00245{word-spacing:-15.061760pt;}
.ws4_c00245{word-spacing:-15.038451pt;}
.ws6_c00245{word-spacing:-14.956800pt;}
.ws8_c00245{word-spacing:-10.159744pt;}
.wsa_c00245{word-spacing:-9.024000pt;}
.ws9_c00245{word-spacing:-8.896000pt;}
.wsc_c00245{word-spacing:0.000000pt;}
._6_c00245{margin-left:-17.370880pt;}
._2_c00245{margin-left:-9.131520pt;}
._9_c00245{margin-left:-8.008070pt;}
._12_c00245{margin-left:-3.520000pt;}
._0_c00245{margin-left:-0.919617pt;}
._4_c00245{width:1.022143pt;}
._3_c00245{width:1.916737pt;}
._5_c00245{width:2.938880pt;}
._a_c00245{width:4.343370pt;}
._f_c00245{width:6.656000pt;}
._8_c00245{width:7.794497pt;}
._1_c00245{width:8.739137pt;}
._10_c00245{width:10.112000pt;}
._c_c00245{width:12.224000pt;}
._b_c00245{width:13.248000pt;}
._11_c00245{width:15.817344pt;}
._7_c00245{width:17.078656pt;}
._e_c00245{width:30.912000pt;}
._d_c00245{width:32.704000pt;}
.fs6_c00245{font-size:32.000000pt;}
.fs5_c00245{font-size:37.120000pt;}
.fs4_c00245{font-size:49.920000pt;}
.fs2_c00245{font-size:52.480000pt;}
.fs7_c00245{font-size:53.333333pt;}
.fs3_c00245{font-size:54.095146pt;}
.fs0_c00245{font-size:64.000000pt;}
.fs1_c00245{font-size:65.969690pt;}
.y0_c00245{bottom:0.000000pt;}
.y37_c00245{bottom:2.773467pt;}
.y36_c00245{bottom:30.884000pt;}
.y1_c00245{bottom:48.000000pt;}
.y35_c00245{bottom:49.320000pt;}
.y34_c00245{bottom:54.760000pt;}
.y33_c00245{bottom:64.680000pt;}
.y32_c00245{bottom:64.681600pt;}
.y31_c00245{bottom:85.800000pt;}
.y30_c00245{bottom:101.160000pt;}
.y2f_c00245{bottom:124.840000pt;}
.y2e_c00245{bottom:144.360000pt;}
.y2d_c00245{bottom:163.240000pt;}
.y2c_c00245{bottom:181.800000pt;}
.y2b_c00245{bottom:213.800000pt;}
.y2a_c00245{bottom:232.360000pt;}
.y29_c00245{bottom:251.240000pt;}
.y28_c00245{bottom:269.800000pt;}
.y27_c00245{bottom:288.360000pt;}
.y26_c00245{bottom:307.240000pt;}
.y25_c00245{bottom:325.800000pt;}
.y24_c00245{bottom:357.800000pt;}
.y23_c00245{bottom:376.680000pt;}
.y22_c00245{bottom:395.240000pt;}
.y21_c00245{bottom:413.800000pt;}
.y20_c00245{bottom:445.800000pt;}
.y1f_c00245{bottom:464.680000pt;}
.y1e_c00245{bottom:483.240000pt;}
.y1d_c00245{bottom:501.800000pt;}
.y1c_c00245{bottom:520.680000pt;}
.y1b_c00245{bottom:539.240000pt;}
.y1a_c00245{bottom:571.240000pt;}
.y19_c00245{bottom:589.800000pt;}
.y18_c00245{bottom:621.800000pt;}
.y17_c00245{bottom:653.800000pt;}
.y16_c00245{bottom:685.799680pt;}
.y15_c00245{bottom:701.163200pt;}
.y14_c00245{bottom:716.841600pt;}
.y13_c00245{bottom:732.520000pt;}
.y12_c00245{bottom:761.320000pt;}
.y11_c00245{bottom:761.321600pt;}
.y10_c00245{bottom:777.000000pt;}
.yf_c00245{bottom:806.120000pt;}
.ye_c00245{bottom:825.000000pt;}
.yd_c00245{bottom:840.360000pt;}
.yb_c00245{bottom:840.679867pt;}
.yc_c00245{bottom:856.040000pt;}
.ya_c00245{bottom:856.360000pt;}
.y9_c00245{bottom:871.720000pt;}
.y8_c00245{bottom:888.040000pt;}
.y7_c00245{bottom:903.400000pt;}
.y6_c00245{bottom:903.720000pt;}
.y5_c00245{bottom:919.080000pt;}
.y4_c00245{bottom:934.759867pt;}
.y3_c00245{bottom:964.520000pt;}
.y2_c00245{bottom:1011.880000pt;}
.ha_c00245{height:17.116000pt;}
.h9_c00245{height:28.992000pt;}
.h7_c00245{height:34.978125pt;}
.hb_c00245{height:41.173333pt;}
.h6_c00245{height:41.761453pt;}
.h5_c00245{height:47.546880pt;}
.h4_c00245{height:50.928601pt;}
.h3_c00245{height:57.984000pt;}
.h8_c00245{height:60.510720pt;}
.h2_c00245{height:1067.880000pt;}
.h0_c00245{height:1122.520000pt;}
.h1_c00245{height:1122.666667pt;}
.w7_c00245{width:22.240000pt;}
.w3_c00245{width:42.560000pt;}
.w5_c00245{width:100.480000pt;}
.w4_c00245{width:161.920000pt;}
.w6_c00245{width:273.600000pt;}
.w2_c00245{width:767.960000pt;}
.w0_c00245{width:793.720000pt;}
.w1_c00245{width:794.000000pt;}
.x0_c00245{left:0.000000pt;}
.x6_c00245{left:7.040133pt;}
.x1_c00245{left:12.880000pt;}
.x18_c00245{left:41.096000pt;}
.x19_c00245{left:45.572533pt;}
.x8_c00245{left:68.412133pt;}
.x9_c00245{left:76.773067pt;}
.xc_c00245{left:97.409733pt;}
.x2_c00245{left:100.480133pt;}
.x5_c00245{left:106.320000pt;}
.x12_c00245{left:114.946267pt;}
.x22_c00245{left:118.252933pt;}
.xa_c00245{left:121.426800pt;}
.x1a_c00245{left:124.514933pt;}
.xb_c00245{left:129.787733pt;}
.x3_c00245{left:136.927733pt;}
.x27_c00245{left:140.495733pt;}
.x7_c00245{left:149.520000pt;}
.xd_c00245{left:151.653333pt;}
.x13_c00245{left:153.478800pt;}
.x1b_c00245{left:155.594400pt;}
.x31_c00245{left:162.000000pt;}
.x32_c00245{left:187.919333pt;}
.x4_c00245{left:195.551067pt;}
.x10_c00245{left:208.179733pt;}
.x16_c00245{left:209.884133pt;}
.x28_c00245{left:230.722667pt;}
.x11_c00245{left:234.846000pt;}
.x14_c00245{left:235.760800pt;}
.x17_c00245{left:242.387333pt;}
.x33_c00245{left:257.502533pt;}
.x15_c00245{left:266.840133pt;}
.x1c_c00245{left:271.313200pt;}
.x29_c00245{left:284.081733pt;}
.x23_c00245{left:294.204800pt;}
.x1d_c00245{left:297.979467pt;}
.x34_c00245{left:307.874933pt;}
.xe_c00245{left:312.080000pt;}
.x24_c00245{left:344.860000pt;}
.x1e_c00245{left:358.016933pt;}
.x2f_c00245{left:386.764000pt;}
.x1f_c00245{left:396.549467pt;}
.xf_c00245{left:413.200000pt;}
.x30_c00245{left:449.019200pt;}
.x20_c00245{left:487.344667pt;}
.x2a_c00245{left:495.747333pt;}
.x2b_c00245{left:507.283200pt;}
.x21_c00245{left:518.424133pt;}
.x2e_c00245{left:537.670533pt;}
.x25_c00245{left:557.000667pt;}
.x26_c00245{left:587.224267pt;}
.x2c_c00245{left:652.789733pt;}
.x2d_c00245{left:662.565467pt;}
.x35_c00245{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_487c2713b30032e2d5d8be7e.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.134000;font-style:normal;font-weight:normal;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_a9e5a21235b9d47204b0d8f0.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;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:ff3_c00246;src:url('chunks/assets/font_66bd3b7dde29fe479481bcbf.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:0.787000;font-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_c00246{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00246{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00246{letter-spacing:0.000000px;}
.ls9_c00246{letter-spacing:0.202464px;}
.lsa_c00246{letter-spacing:0.239760px;}
.ls2_c00246{letter-spacing:0.319080px;}
.ls8_c00246{letter-spacing:0.319680px;}
.ls3_c00246{letter-spacing:0.399600px;}
.ls7_c00246{letter-spacing:0.532722px;}
.ls6_c00246{letter-spacing:5.335200px;}
.ls0_c00246{letter-spacing:5.976000px;}
.ls1_c00246{letter-spacing:5.980200px;}
.ls4_c00246{letter-spacing:6.159920px;}
.sc__c00246{text-shadow:none;}
.sc1_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00246{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc1_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00246{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00246{word-spacing:-20.947680px;}
.ws1_c00246{word-spacing:-15.800417px;}
.ws2_c00246{word-spacing:-15.211440px;}
.ws3_c00246{word-spacing:0.000000px;}
._1_c00246{margin-left:-1.118880px;}
._2_c00246{width:1.257936px;}
._0_c00246{width:5.184000px;}
.fc1_c00246{color:transparent;}
.fc0_c00246{color:rgb(0,0,0);}
.fs3_c00246{font-size:53.280000px;}
.fs4_c00246{font-size:54.919767px;}
.fs2_c00246{font-size:56.160000px;}
.fs5_c00246{font-size:60.000000px;}
.fs0_c00246{font-size:72.000000px;}
.fs1_c00246{font-size:74.215901px;}
.y0_c00246{bottom:0.000000px;}
.y23_c00246{bottom:3.120150px;}
.y21_c00246{bottom:14.400000px;}
.y22_c00246{bottom:34.744500px;}
.y1f_c00246{bottom:39.960000px;}
.y1_c00246{bottom:54.000000px;}
.y1d_c00246{bottom:79.965000px;}
.y1c_c00246{bottom:136.845000px;}
.y20_c00246{bottom:153.045000px;}
.y1b_c00246{bottom:172.845000px;}
.y1a_c00246{bottom:208.845000px;}
.y19_c00246{bottom:244.845000px;}
.y18_c00246{bottom:280.845000px;}
.y17_c00246{bottom:316.845000px;}
.y16_c00246{bottom:352.845000px;}
.y15_c00246{bottom:388.845000px;}
.y14_c00246{bottom:424.845000px;}
.y13_c00246{bottom:460.845000px;}
.y12_c00246{bottom:496.845000px;}
.y1e_c00246{bottom:586.485000px;}
.y11_c00246{bottom:595.845000px;}
.y10_c00246{bottom:631.845000px;}
.yf_c00246{bottom:667.845000px;}
.ye_c00246{bottom:703.845000px;}
.yd_c00246{bottom:739.845000px;}
.yc_c00246{bottom:775.845000px;}
.yb_c00246{bottom:811.845000px;}
.ya_c00246{bottom:847.845000px;}
.y9_c00246{bottom:883.845000px;}
.y8_c00246{bottom:919.845000px;}
.y7_c00246{bottom:955.845000px;}
.y6_c00246{bottom:991.845000px;}
.y5_c00246{bottom:1013.085000px;}
.y4_c00246{bottom:1049.085000px;}
.y3_c00246{bottom:1085.085000px;}
.y2_c00246{bottom:1138.365000px;}
.h9_c00246{height:19.255500px;}
.h8_c00246{height:27.000000px;}
.h7_c00246{height:42.398060px;}
.ha_c00246{height:46.320000px;}
.h6_c00246{height:48.271680px;}
.h5_c00246{height:52.560000px;}
.h4_c00246{height:57.294676px;}
.h3_c00246{height:65.232000px;}
.h2_c00246{height:1201.365000px;}
.h0_c00246{height:1262.835000px;}
.h1_c00246{height:1263.000000px;}
.w5_c00246{width:25.020000px;}
.w4_c00246{width:681.840000px;}
.w3_c00246{width:709.920000px;}
.w2_c00246{width:863.955000px;}
.w0_c00246{width:892.935000px;}
.w1_c00246{width:893.250000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:14.490000px;}
.xa_c00246{left:37.073700px;}
.x6_c00246{left:40.670550px;}
.x2_c00246{left:113.040150px;}
.x5_c00246{left:123.210000px;}
.x9_c00246{left:124.290000px;}
.xb_c00246{left:147.380400px;}
.x7_c00246{left:150.977400px;}
.x3_c00246{left:154.043700px;}
.xc_c00246{left:180.373800px;}
.x8_c00246{left:197.470500px;}
.x4_c00246{left:219.994950px;}
.xd_c00246{left:759.915000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls5_c00246{letter-spacing:0.000000pt;}
.ls9_c00246{letter-spacing:0.179968pt;}
.lsa_c00246{letter-spacing:0.213120pt;}
.ls2_c00246{letter-spacing:0.283627pt;}
.ls8_c00246{letter-spacing:0.284160pt;}
.ls3_c00246{letter-spacing:0.355200pt;}
.ls7_c00246{letter-spacing:0.473530pt;}
.ls6_c00246{letter-spacing:4.742400pt;}
.ls0_c00246{letter-spacing:5.312000pt;}
.ls1_c00246{letter-spacing:5.315733pt;}
.ls4_c00246{letter-spacing:5.475484pt;}
.ws0_c00246{word-spacing:-18.620160pt;}
.ws1_c00246{word-spacing:-14.044815pt;}
.ws2_c00246{word-spacing:-13.521280pt;}
.ws3_c00246{word-spacing:0.000000pt;}
._1_c00246{margin-left:-0.994560pt;}
._2_c00246{width:1.118165pt;}
._0_c00246{width:4.608000pt;}
.fs3_c00246{font-size:47.360000pt;}
.fs4_c00246{font-size:48.817571pt;}
.fs2_c00246{font-size:49.920000pt;}
.fs5_c00246{font-size:53.333333pt;}
.fs0_c00246{font-size:64.000000pt;}
.fs1_c00246{font-size:65.969690pt;}
.y0_c00246{bottom:0.000000pt;}
.y23_c00246{bottom:2.773467pt;}
.y21_c00246{bottom:12.800000pt;}
.y22_c00246{bottom:30.884000pt;}
.y1f_c00246{bottom:35.520000pt;}
.y1_c00246{bottom:48.000000pt;}
.y1d_c00246{bottom:71.080000pt;}
.y1c_c00246{bottom:121.640000pt;}
.y20_c00246{bottom:136.040000pt;}
.y1b_c00246{bottom:153.640000pt;}
.y1a_c00246{bottom:185.640000pt;}
.y19_c00246{bottom:217.640000pt;}
.y18_c00246{bottom:249.640000pt;}
.y17_c00246{bottom:281.640000pt;}
.y16_c00246{bottom:313.640000pt;}
.y15_c00246{bottom:345.640000pt;}
.y14_c00246{bottom:377.640000pt;}
.y13_c00246{bottom:409.640000pt;}
.y12_c00246{bottom:441.640000pt;}
.y1e_c00246{bottom:521.320000pt;}
.y11_c00246{bottom:529.640000pt;}
.y10_c00246{bottom:561.640000pt;}
.yf_c00246{bottom:593.640000pt;}
.ye_c00246{bottom:625.640000pt;}
.yd_c00246{bottom:657.640000pt;}
.yc_c00246{bottom:689.640000pt;}
.yb_c00246{bottom:721.640000pt;}
.ya_c00246{bottom:753.640000pt;}
.y9_c00246{bottom:785.640000pt;}
.y8_c00246{bottom:817.640000pt;}
.y7_c00246{bottom:849.640000pt;}
.y6_c00246{bottom:881.640000pt;}
.y5_c00246{bottom:900.520000pt;}
.y4_c00246{bottom:932.520000pt;}
.y3_c00246{bottom:964.520000pt;}
.y2_c00246{bottom:1011.880000pt;}
.h9_c00246{height:17.116000pt;}
.h8_c00246{height:24.000000pt;}
.h7_c00246{height:37.687165pt;}
.ha_c00246{height:41.173333pt;}
.h6_c00246{height:42.908160pt;}
.h5_c00246{height:46.720000pt;}
.h4_c00246{height:50.928601pt;}
.h3_c00246{height:57.984000pt;}
.h2_c00246{height:1067.880000pt;}
.h0_c00246{height:1122.520000pt;}
.h1_c00246{height:1122.666667pt;}
.w5_c00246{width:22.240000pt;}
.w4_c00246{width:606.080000pt;}
.w3_c00246{width:631.040000pt;}
.w2_c00246{width:767.960000pt;}
.w0_c00246{width:793.720000pt;}
.w1_c00246{width:794.000000pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:12.880000pt;}
.xa_c00246{left:32.954400pt;}
.x6_c00246{left:36.151600pt;}
.x2_c00246{left:100.480133pt;}
.x5_c00246{left:109.520000pt;}
.x9_c00246{left:110.480000pt;}
.xb_c00246{left:131.004800pt;}
.x7_c00246{left:134.202133pt;}
.x3_c00246{left:136.927733pt;}
.xc_c00246{left:160.332267pt;}
.x8_c00246{left:175.529333pt;}
.x4_c00246{left:195.551067pt;}
.xd_c00246{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50d507c4964e8ba76dedefea.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.134000;font-style:normal;font-weight:normal;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_a9e5a21235b9d47204b0d8f0.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;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:ff3_c00247;src:url('chunks/assets/font_c1c4ae336d9f1e79654c5679.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:0.787000;font-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_c00247{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00247{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00247{letter-spacing:0.000000px;}
.ls6_c00247{letter-spacing:0.202464px;}
.ls1_c00247{letter-spacing:0.238560px;}
.ls9_c00247{letter-spacing:0.239760px;}
.ls2_c00247{letter-spacing:0.318480px;}
.ls8_c00247{letter-spacing:0.319680px;}
.ls3_c00247{letter-spacing:0.399600px;}
.ls7_c00247{letter-spacing:0.532722px;}
.ls0_c00247{letter-spacing:5.976000px;}
.ls4_c00247{letter-spacing:6.159920px;}
.sc__c00247{text-shadow:none;}
.sc1_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00247{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc1_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00247{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00247{word-spacing:-15.800417px;}
.ws2_c00247{word-spacing:-15.211440px;}
.ws0_c00247{word-spacing:-15.051600px;}
.ws3_c00247{word-spacing:0.000000px;}
._0_c00247{width:1.014120px;}
.fc1_c00247{color:transparent;}
.fc0_c00247{color:rgb(0,0,0);}
.fs2_c00247{font-size:53.280000px;}
.fs3_c00247{font-size:54.919767px;}
.fs4_c00247{font-size:60.000000px;}
.fs0_c00247{font-size:72.000000px;}
.fs1_c00247{font-size:74.215901px;}
.y0_c00247{bottom:0.000000px;}
.y21_c00247{bottom:3.120150px;}
.y1d_c00247{bottom:25.560000px;}
.y20_c00247{bottom:34.744500px;}
.y1f_c00247{bottom:41.040000px;}
.y1c_c00247{bottom:41.400000px;}
.y1_c00247{bottom:54.000000px;}
.y1a_c00247{bottom:88.965000px;}
.y19_c00247{bottom:124.965000px;}
.y1e_c00247{bottom:211.365000px;}
.y18_c00247{bottom:244.845000px;}
.y17_c00247{bottom:280.845000px;}
.y16_c00247{bottom:316.845000px;}
.y15_c00247{bottom:352.845000px;}
.y14_c00247{bottom:388.845000px;}
.y13_c00247{bottom:424.845000px;}
.y12_c00247{bottom:460.845000px;}
.y11_c00247{bottom:496.845000px;}
.y10_c00247{bottom:532.845000px;}
.yf_c00247{bottom:568.845000px;}
.ye_c00247{bottom:604.845000px;}
.yd_c00247{bottom:640.845000px;}
.y1b_c00247{bottom:724.365000px;}
.yc_c00247{bottom:761.085000px;}
.yb_c00247{bottom:797.085000px;}
.ya_c00247{bottom:833.085000px;}
.y9_c00247{bottom:869.085000px;}
.y8_c00247{bottom:905.085000px;}
.y7_c00247{bottom:941.085000px;}
.y6_c00247{bottom:977.085000px;}
.y5_c00247{bottom:1013.085000px;}
.y4_c00247{bottom:1049.085000px;}
.y3_c00247{bottom:1085.085000px;}
.y2_c00247{bottom:1138.365000px;}
.h8_c00247{height:19.255500px;}
.h7_c00247{height:42.398060px;}
.h9_c00247{height:46.320000px;}
.h6_c00247{height:48.271680px;}
.h5_c00247{height:54.000000px;}
.h4_c00247{height:57.294676px;}
.h3_c00247{height:65.232000px;}
.h2_c00247{height:1201.365000px;}
.h0_c00247{height:1262.835000px;}
.h1_c00247{height:1263.000000px;}
.w5_c00247{width:25.020000px;}
.w4_c00247{width:683.640000px;}
.w3_c00247{width:709.920000px;}
.w2_c00247{width:863.955000px;}
.w0_c00247{width:892.935000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:14.490000px;}
.xa_c00247{left:44.464200px;}
.x2_c00247{left:113.040150px;}
.x5_c00247{left:123.210000px;}
.x3_c00247{left:154.043700px;}
.x9_c00247{left:172.502100px;}
.x6_c00247{left:178.502550px;}
.xb_c00247{left:201.264000px;}
.x4_c00247{left:219.994950px;}
.x7_c00247{left:288.809250px;}
.x8_c00247{left:335.302350px;}
.xc_c00247{left:759.915000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls5_c00247{letter-spacing:0.000000pt;}
.ls6_c00247{letter-spacing:0.179968pt;}
.ls1_c00247{letter-spacing:0.212053pt;}
.ls9_c00247{letter-spacing:0.213120pt;}
.ls2_c00247{letter-spacing:0.283093pt;}
.ls8_c00247{letter-spacing:0.284160pt;}
.ls3_c00247{letter-spacing:0.355200pt;}
.ls7_c00247{letter-spacing:0.473530pt;}
.ls0_c00247{letter-spacing:5.312000pt;}
.ls4_c00247{letter-spacing:5.475484pt;}
.ws1_c00247{word-spacing:-14.044815pt;}
.ws2_c00247{word-spacing:-13.521280pt;}
.ws0_c00247{word-spacing:-13.379200pt;}
.ws3_c00247{word-spacing:0.000000pt;}
._0_c00247{width:0.901440pt;}
.fs2_c00247{font-size:47.360000pt;}
.fs3_c00247{font-size:48.817571pt;}
.fs4_c00247{font-size:53.333333pt;}
.fs0_c00247{font-size:64.000000pt;}
.fs1_c00247{font-size:65.969690pt;}
.y0_c00247{bottom:0.000000pt;}
.y21_c00247{bottom:2.773467pt;}
.y1d_c00247{bottom:22.720000pt;}
.y20_c00247{bottom:30.884000pt;}
.y1f_c00247{bottom:36.480000pt;}
.y1c_c00247{bottom:36.800000pt;}
.y1_c00247{bottom:48.000000pt;}
.y1a_c00247{bottom:79.080000pt;}
.y19_c00247{bottom:111.080000pt;}
.y1e_c00247{bottom:187.880000pt;}
.y18_c00247{bottom:217.640000pt;}
.y17_c00247{bottom:249.640000pt;}
.y16_c00247{bottom:281.640000pt;}
.y15_c00247{bottom:313.640000pt;}
.y14_c00247{bottom:345.640000pt;}
.y13_c00247{bottom:377.640000pt;}
.y12_c00247{bottom:409.640000pt;}
.y11_c00247{bottom:441.640000pt;}
.y10_c00247{bottom:473.640000pt;}
.yf_c00247{bottom:505.640000pt;}
.ye_c00247{bottom:537.640000pt;}
.yd_c00247{bottom:569.640000pt;}
.y1b_c00247{bottom:643.880000pt;}
.yc_c00247{bottom:676.520000pt;}
.yb_c00247{bottom:708.520000pt;}
.ya_c00247{bottom:740.520000pt;}
.y9_c00247{bottom:772.520000pt;}
.y8_c00247{bottom:804.520000pt;}
.y7_c00247{bottom:836.520000pt;}
.y6_c00247{bottom:868.520000pt;}
.y5_c00247{bottom:900.520000pt;}
.y4_c00247{bottom:932.520000pt;}
.y3_c00247{bottom:964.520000pt;}
.y2_c00247{bottom:1011.880000pt;}
.h8_c00247{height:17.116000pt;}
.h7_c00247{height:37.687165pt;}
.h9_c00247{height:41.173333pt;}
.h6_c00247{height:42.908160pt;}
.h5_c00247{height:48.000000pt;}
.h4_c00247{height:50.928601pt;}
.h3_c00247{height:57.984000pt;}
.h2_c00247{height:1067.880000pt;}
.h0_c00247{height:1122.520000pt;}
.h1_c00247{height:1122.666667pt;}
.w5_c00247{width:22.240000pt;}
.w4_c00247{width:607.680000pt;}
.w3_c00247{width:631.040000pt;}
.w2_c00247{width:767.960000pt;}
.w0_c00247{width:793.720000pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:12.880000pt;}
.xa_c00247{left:39.523733pt;}
.x2_c00247{left:100.480133pt;}
.x5_c00247{left:109.520000pt;}
.x3_c00247{left:136.927733pt;}
.x9_c00247{left:153.335200pt;}
.x6_c00247{left:158.668933pt;}
.xb_c00247{left:178.901333pt;}
.x4_c00247{left:195.551067pt;}
.x7_c00247{left:256.719333pt;}
.x8_c00247{left:298.046533pt;}
.xc_c00247{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d80d47ef63d30a2a8017683.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.134000;font-style:normal;font-weight:normal;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_e63fac25d29e040625a348be.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;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:ff3_c00248;src:url('chunks/assets/font_99e176ebd2b3b4db1cd4299d.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00248{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00248{vertical-align:-24.480000px;}
.v0_c00248{vertical-align:0.000000px;}
.v1_c00248{vertical-align:30.240000px;}
.lsb_c00248{letter-spacing:0.000000px;}
.ls3_c00248{letter-spacing:0.038040px;}
.ls6_c00248{letter-spacing:0.236160px;}
.ls14_c00248{letter-spacing:0.265680px;}
.ls8_c00248{letter-spacing:0.295200px;}
.ls18_c00248{letter-spacing:0.318816px;}
.ls4_c00248{letter-spacing:0.421440px;}
.ls16_c00248{letter-spacing:0.425088px;}
.ls11_c00248{letter-spacing:0.438171px;}
.ls9_c00248{letter-spacing:0.531360px;}
.ls1a_c00248{letter-spacing:0.547713px;}
.ls7_c00248{letter-spacing:0.560880px;}
.ls5_c00248{letter-spacing:0.602040px;}
.ls10_c00248{letter-spacing:0.690768px;}
.ls13_c00248{letter-spacing:0.743904px;}
.ls19_c00248{letter-spacing:0.766799px;}
.ls17_c00248{letter-spacing:0.797040px;}
.lse_c00248{letter-spacing:5.149872px;}
.lsd_c00248{letter-spacing:5.245344px;}
.lsf_c00248{letter-spacing:5.335200px;}
.lsc_c00248{letter-spacing:5.406777px;}
.ls2_c00248{letter-spacing:5.974800px;}
.ls1_c00248{letter-spacing:5.976000px;}
.ls0_c00248{letter-spacing:6.159301px;}
.lsa_c00248{letter-spacing:6.159920px;}
.ls12_c00248{letter-spacing:10.922400px;}
.ls15_c00248{letter-spacing:14.641920px;}
.sc__c00248{text-shadow:none;}
.sc1_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00248{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc1_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00248{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00248{word-spacing:-25.992000px;}
.ws0_c00248{word-spacing:-21.499753px;}
.ws1_c00248{word-spacing:-20.857824px;}
.ws3_c00248{word-spacing:-20.762352px;}
.ws7_c00248{word-spacing:-17.685056px;}
.ws6_c00248{word-spacing:-16.944480px;}
.ws4_c00248{word-spacing:-11.609280px;}
.ws5_c00248{word-spacing:-10.008000px;}
.ws8_c00248{word-spacing:0.000000px;}
._15_c00248{margin-left:-15.055200px;}
._14_c00248{margin-left:-13.933440px;}
._13_c00248{margin-left:-11.394720px;}
._12_c00248{margin-left:-10.213920px;}
._11_c00248{margin-left:-1.062720px;}
._3_c00248{width:1.008000px;}
._1_c00248{width:2.088000px;}
._c_c00248{width:3.575184px;}
._b_c00248{width:4.632816px;}
._0_c00248{width:5.879184px;}
._5_c00248{width:7.776000px;}
._4_c00248{width:9.720000px;}
._a_c00248{width:11.520000px;}
._d_c00248{width:12.960000px;}
._6_c00248{width:14.616000px;}
._9_c00248{width:15.768000px;}
._2_c00248{width:17.280000px;}
._10_c00248{width:18.288000px;}
._7_c00248{width:24.048000px;}
._e_c00248{width:31.248000px;}
._f_c00248{width:33.171402px;}
._8_c00248{width:35.640000px;}
.fc0_c00248{color:rgb(0,0,0);}
.fs5_c00248{font-size:36.000000px;}
.fs4_c00248{font-size:41.760000px;}
.fs3_c00248{font-size:56.160000px;}
.fs2_c00248{font-size:57.888403px;}
.fs6_c00248{font-size:59.040000px;}
.fs8_c00248{font-size:60.000000px;}
.fs7_c00248{font-size:60.857039px;}
.fs0_c00248{font-size:72.000000px;}
.fs1_c00248{font-size:74.215901px;}
.y0_c00248{bottom:0.000000px;}
.y35_c00248{bottom:3.120150px;}
.y34_c00248{bottom:34.744500px;}
.y1_c00248{bottom:54.000000px;}
.y33_c00248{bottom:55.485000px;}
.y32_c00248{bottom:61.605000px;}
.y31_c00248{bottom:72.765000px;}
.y30_c00248{bottom:78.885000px;}
.y2f_c00248{bottom:90.404640px;}
.y2e_c00248{bottom:107.688600px;}
.y2d_c00248{bottom:125.326800px;}
.y2c_c00248{bottom:149.085000px;}
.y2b_c00248{bottom:160.245000px;}
.y2a_c00248{bottom:160.246800px;}
.y29_c00248{bottom:184.005000px;}
.y28_c00248{bottom:201.645000px;}
.y27_c00248{bottom:212.805000px;}
.y26_c00248{bottom:218.925000px;}
.y25_c00248{bottom:245.565000px;}
.y24_c00248{bottom:282.285000px;}
.y23_c00248{bottom:303.165000px;}
.y22_c00248{bottom:324.405000px;}
.y21_c00248{bottom:345.285000px;}
.y20_c00248{bottom:381.285000px;}
.y1f_c00248{bottom:417.285000px;}
.y1e_c00248{bottom:455.805000px;}
.y1d_c00248{bottom:493.965000px;}
.y1c_c00248{bottom:529.965000px;}
.y1b_c00248{bottom:550.845000px;}
.y1a_c00248{bottom:571.725000px;}
.y19_c00248{bottom:592.965000px;}
.y18_c00248{bottom:613.845000px;}
.y17_c00248{bottom:634.725000px;}
.y16_c00248{bottom:655.965000px;}
.y15_c00248{bottom:676.845000px;}
.y14_c00248{bottom:697.725000px;}
.y13_c00248{bottom:718.965000px;}
.y12_c00248{bottom:739.845000px;}
.y11_c00248{bottom:761.085000px;}
.y10_c00248{bottom:781.965000px;}
.yf_c00248{bottom:802.845000px;}
.ye_c00248{bottom:824.085000px;}
.yd_c00248{bottom:844.965000px;}
.yc_c00248{bottom:865.845000px;}
.yb_c00248{bottom:887.085000px;}
.ya_c00248{bottom:907.965000px;}
.y9_c00248{bottom:943.965000px;}
.y8_c00248{bottom:964.845000px;}
.y7_c00248{bottom:986.085000px;}
.y6_c00248{bottom:1006.965000px;}
.y5_c00248{bottom:1027.845000px;}
.y4_c00248{bottom:1049.085000px;}
.y3_c00248{bottom:1085.085000px;}
.y2_c00248{bottom:1138.365000px;}
.h9_c00248{height:19.255500px;}
.h6_c00248{height:32.616000px;}
.ha_c00248{height:46.320000px;}
.h7_c00248{height:46.981634px;}
.h8_c00248{height:53.490240px;}
.h4_c00248{height:57.294676px;}
.h3_c00248{height:65.232000px;}
.h5_c00248{height:68.074560px;}
.h2_c00248{height:1201.365000px;}
.h0_c00248{height:1262.835000px;}
.h1_c00248{height:1263.000000px;}
.w3_c00248{width:25.020000px;}
.w2_c00248{width:863.955000px;}
.w0_c00248{width:892.935000px;}
.w1_c00248{width:893.250000px;}
.x0_c00248{left:0.000000px;}
.x1_c00248{left:14.490000px;}
.x2_c00248{left:113.040150px;}
.x1e_c00248{left:122.213700px;}
.x3_c00248{left:154.043700px;}
.x1f_c00248{left:165.562800px;}
.x12_c00248{left:168.065250px;}
.x16_c00248{left:172.024950px;}
.x5_c00248{left:175.007100px;}
.x4_c00248{left:218.032800px;}
.x17_c00248{left:232.053900px;}
.x1a_c00248{left:365.617350px;}
.xc_c00248{left:366.704250px;}
.x1b_c00248{left:369.786900px;}
.xe_c00248{left:386.321100px;}
.x8_c00248{left:399.953550px;}
.x15_c00248{left:414.462150px;}
.x10_c00248{left:415.609500px;}
.xd_c00248{left:417.715200px;}
.x13_c00248{left:421.920300px;}
.xf_c00248{left:440.337900px;}
.x11_c00248{left:466.620450px;}
.x1c_c00248{left:480.580800px;}
.x9_c00248{left:535.898400px;}
.x1d_c00248{left:543.924000px;}
.x18_c00248{left:554.063850px;}
.x6_c00248{left:555.834600px;}
.xa_c00248{left:583.396050px;}
.x19_c00248{left:584.902500px;}
.x7_c00248{left:610.859550px;}
.xb_c00248{left:618.387450px;}
.x14_c00248{left:700.587450px;}
.x20_c00248{left:759.915000px;}
@media print{
.v2_c00248{vertical-align:-21.760000pt;}
.v0_c00248{vertical-align:0.000000pt;}
.v1_c00248{vertical-align:26.880000pt;}
.lsb_c00248{letter-spacing:0.000000pt;}
.ls3_c00248{letter-spacing:0.033813pt;}
.ls6_c00248{letter-spacing:0.209920pt;}
.ls14_c00248{letter-spacing:0.236160pt;}
.ls8_c00248{letter-spacing:0.262400pt;}
.ls18_c00248{letter-spacing:0.283392pt;}
.ls4_c00248{letter-spacing:0.374613pt;}
.ls16_c00248{letter-spacing:0.377856pt;}
.ls11_c00248{letter-spacing:0.389485pt;}
.ls9_c00248{letter-spacing:0.472320pt;}
.ls1a_c00248{letter-spacing:0.486856pt;}
.ls7_c00248{letter-spacing:0.498560pt;}
.ls5_c00248{letter-spacing:0.535147pt;}
.ls10_c00248{letter-spacing:0.614016pt;}
.ls13_c00248{letter-spacing:0.661248pt;}
.ls19_c00248{letter-spacing:0.681599pt;}
.ls17_c00248{letter-spacing:0.708480pt;}
.lse_c00248{letter-spacing:4.577664pt;}
.lsd_c00248{letter-spacing:4.662528pt;}
.lsf_c00248{letter-spacing:4.742400pt;}
.lsc_c00248{letter-spacing:4.806024pt;}
.ls2_c00248{letter-spacing:5.310933pt;}
.ls1_c00248{letter-spacing:5.312000pt;}
.ls0_c00248{letter-spacing:5.474935pt;}
.lsa_c00248{letter-spacing:5.475484pt;}
.ls12_c00248{letter-spacing:9.708800pt;}
.ls15_c00248{letter-spacing:13.015040pt;}
.ws2_c00248{word-spacing:-23.104000pt;}
.ws0_c00248{word-spacing:-19.110891pt;}
.ws1_c00248{word-spacing:-18.540288pt;}
.ws3_c00248{word-spacing:-18.455424pt;}
.ws7_c00248{word-spacing:-15.720049pt;}
.ws6_c00248{word-spacing:-15.061760pt;}
.ws4_c00248{word-spacing:-10.319360pt;}
.ws5_c00248{word-spacing:-8.896000pt;}
.ws8_c00248{word-spacing:0.000000pt;}
._15_c00248{margin-left:-13.382400pt;}
._14_c00248{margin-left:-12.385280pt;}
._13_c00248{margin-left:-10.128640pt;}
._12_c00248{margin-left:-9.079040pt;}
._11_c00248{margin-left:-0.944640pt;}
._3_c00248{width:0.896000pt;}
._1_c00248{width:1.856000pt;}
._c_c00248{width:3.177941pt;}
._b_c00248{width:4.118059pt;}
._0_c00248{width:5.225941pt;}
._5_c00248{width:6.912000pt;}
._4_c00248{width:8.640000pt;}
._a_c00248{width:10.240000pt;}
._d_c00248{width:11.520000pt;}
._6_c00248{width:12.992000pt;}
._9_c00248{width:14.016000pt;}
._2_c00248{width:15.360000pt;}
._10_c00248{width:16.256000pt;}
._7_c00248{width:21.376000pt;}
._e_c00248{width:27.776000pt;}
._f_c00248{width:29.485691pt;}
._8_c00248{width:31.680000pt;}
.fs5_c00248{font-size:32.000000pt;}
.fs4_c00248{font-size:37.120000pt;}
.fs3_c00248{font-size:49.920000pt;}
.fs2_c00248{font-size:51.456358pt;}
.fs6_c00248{font-size:52.480000pt;}
.fs8_c00248{font-size:53.333333pt;}
.fs7_c00248{font-size:54.095146pt;}
.fs0_c00248{font-size:64.000000pt;}
.fs1_c00248{font-size:65.969690pt;}
.y0_c00248{bottom:0.000000pt;}
.y35_c00248{bottom:2.773467pt;}
.y34_c00248{bottom:30.884000pt;}
.y1_c00248{bottom:48.000000pt;}
.y33_c00248{bottom:49.320000pt;}
.y32_c00248{bottom:54.760000pt;}
.y31_c00248{bottom:64.680000pt;}
.y30_c00248{bottom:70.120000pt;}
.y2f_c00248{bottom:80.359680pt;}
.y2e_c00248{bottom:95.723200pt;}
.y2d_c00248{bottom:111.401600pt;}
.y2c_c00248{bottom:132.520000pt;}
.y2b_c00248{bottom:142.440000pt;}
.y2a_c00248{bottom:142.441600pt;}
.y29_c00248{bottom:163.560000pt;}
.y28_c00248{bottom:179.240000pt;}
.y27_c00248{bottom:189.160000pt;}
.y26_c00248{bottom:194.600000pt;}
.y25_c00248{bottom:218.280000pt;}
.y24_c00248{bottom:250.920000pt;}
.y23_c00248{bottom:269.480000pt;}
.y22_c00248{bottom:288.360000pt;}
.y21_c00248{bottom:306.920000pt;}
.y20_c00248{bottom:338.920000pt;}
.y1f_c00248{bottom:370.920000pt;}
.y1e_c00248{bottom:405.160000pt;}
.y1d_c00248{bottom:439.080000pt;}
.y1c_c00248{bottom:471.080000pt;}
.y1b_c00248{bottom:489.640000pt;}
.y1a_c00248{bottom:508.200000pt;}
.y19_c00248{bottom:527.080000pt;}
.y18_c00248{bottom:545.640000pt;}
.y17_c00248{bottom:564.200000pt;}
.y16_c00248{bottom:583.080000pt;}
.y15_c00248{bottom:601.640000pt;}
.y14_c00248{bottom:620.200000pt;}
.y13_c00248{bottom:639.080000pt;}
.y12_c00248{bottom:657.640000pt;}
.y11_c00248{bottom:676.520000pt;}
.y10_c00248{bottom:695.080000pt;}
.yf_c00248{bottom:713.640000pt;}
.ye_c00248{bottom:732.520000pt;}
.yd_c00248{bottom:751.080000pt;}
.yc_c00248{bottom:769.640000pt;}
.yb_c00248{bottom:788.520000pt;}
.ya_c00248{bottom:807.080000pt;}
.y9_c00248{bottom:839.080000pt;}
.y8_c00248{bottom:857.640000pt;}
.y7_c00248{bottom:876.520000pt;}
.y6_c00248{bottom:895.080000pt;}
.y5_c00248{bottom:913.640000pt;}
.y4_c00248{bottom:932.520000pt;}
.y3_c00248{bottom:964.520000pt;}
.y2_c00248{bottom:1011.880000pt;}
.h9_c00248{height:17.116000pt;}
.h6_c00248{height:28.992000pt;}
.ha_c00248{height:41.173333pt;}
.h7_c00248{height:41.761453pt;}
.h8_c00248{height:47.546880pt;}
.h4_c00248{height:50.928601pt;}
.h3_c00248{height:57.984000pt;}
.h5_c00248{height:60.510720pt;}
.h2_c00248{height:1067.880000pt;}
.h0_c00248{height:1122.520000pt;}
.h1_c00248{height:1122.666667pt;}
.w3_c00248{width:22.240000pt;}
.w2_c00248{width:767.960000pt;}
.w0_c00248{width:793.720000pt;}
.w1_c00248{width:794.000000pt;}
.x0_c00248{left:0.000000pt;}
.x1_c00248{left:12.880000pt;}
.x2_c00248{left:100.480133pt;}
.x1e_c00248{left:108.634400pt;}
.x3_c00248{left:136.927733pt;}
.x1f_c00248{left:147.166933pt;}
.x12_c00248{left:149.391333pt;}
.x16_c00248{left:152.911067pt;}
.x5_c00248{left:155.561867pt;}
.x4_c00248{left:193.806933pt;}
.x17_c00248{left:206.270133pt;}
.x1a_c00248{left:324.993200pt;}
.xc_c00248{left:325.959333pt;}
.x1b_c00248{left:328.699467pt;}
.xe_c00248{left:343.396533pt;}
.x8_c00248{left:355.514267pt;}
.x15_c00248{left:368.410800pt;}
.x10_c00248{left:369.430667pt;}
.xd_c00248{left:371.302400pt;}
.x13_c00248{left:375.040267pt;}
.xf_c00248{left:391.411467pt;}
.x11_c00248{left:414.773733pt;}
.x1c_c00248{left:427.182933pt;}
.x9_c00248{left:476.354133pt;}
.x1d_c00248{left:483.488000pt;}
.x18_c00248{left:492.501200pt;}
.x6_c00248{left:494.075200pt;}
.xa_c00248{left:518.574267pt;}
.x19_c00248{left:519.913333pt;}
.x7_c00248{left:542.986267pt;}
.xb_c00248{left:549.677733pt;}
.x14_c00248{left:622.744400pt;}
.x20_c00248{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0bb5b806772653817688724f.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.134000;font-style:normal;font-weight:normal;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_503dad66b0d3194bab4d907d.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;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:ff3_c00249;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_d4aad4a11a411b5687ad7b0c.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:0.787000;font-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_c00249{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00249{vertical-align:-24.480000px;}
.v0_c00249{vertical-align:0.000000px;}
.v1_c00249{vertical-align:30.240000px;}
.ls11_c00249{letter-spacing:-0.179568px;}
.lsf_c00249{letter-spacing:0.000000px;}
.ls22_c00249{letter-spacing:0.144000px;}
.ls13_c00249{letter-spacing:0.265680px;}
.ls29_c00249{letter-spacing:0.273857px;}
.ls4_c00249{letter-spacing:0.295200px;}
.ls1a_c00249{letter-spacing:0.318816px;}
.ls24_c00249{letter-spacing:0.328628px;}
.ls2_c00249{letter-spacing:0.343440px;}
.ls1e_c00249{letter-spacing:0.371952px;}
.ls25_c00249{letter-spacing:0.419184px;}
.ls1f_c00249{letter-spacing:0.425088px;}
.ls8_c00249{letter-spacing:0.438171px;}
.ls16_c00249{letter-spacing:0.478224px;}
.ls18_c00249{letter-spacing:0.492942px;}
.ls5_c00249{letter-spacing:0.531360px;}
.ls21_c00249{letter-spacing:0.602485px;}
.ls26_c00249{letter-spacing:0.637632px;}
.ls2c_c00249{letter-spacing:0.696672px;}
.ls6_c00249{letter-spacing:0.712027px;}
.ls1b_c00249{letter-spacing:0.743904px;}
.ls17_c00249{letter-spacing:0.766799px;}
.ls2b_c00249{letter-spacing:0.797040px;}
.ls14_c00249{letter-spacing:0.962352px;}
.ls28_c00249{letter-spacing:1.966032px;}
.lsb_c00249{letter-spacing:2.078208px;}
.ls15_c00249{letter-spacing:3.034656px;}
.ls19_c00249{letter-spacing:3.518784px;}
.ls1_c00249{letter-spacing:3.960000px;}
.ls23_c00249{letter-spacing:4.203648px;}
.ls1c_c00249{letter-spacing:4.321728px;}
.ls2a_c00249{letter-spacing:5.248656px;}
.lsd_c00249{letter-spacing:5.254560px;}
.lsc_c00249{letter-spacing:5.278176px;}
.ls9_c00249{letter-spacing:5.372640px;}
.ls12_c00249{letter-spacing:5.430672px;}
.ls7_c00249{letter-spacing:5.431680px;}
.lsa_c00249{letter-spacing:5.785920px;}
.ls0_c00249{letter-spacing:5.976000px;}
.ls3_c00249{letter-spacing:5.991000px;}
.lse_c00249{letter-spacing:6.159920px;}
.ls10_c00249{letter-spacing:6.350400px;}
.ls27_c00249{letter-spacing:6.594768px;}
.ls1d_c00249{letter-spacing:9.765216px;}
.ls20_c00249{letter-spacing:15.208704px;}
.sc__c00249{text-shadow:none;}
.sc1_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00249{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc1_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00249{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsd_c00249{word-spacing:-21.661776px;}
.ws3_c00249{word-spacing:-21.043152px;}
.ws2_c00249{word-spacing:-20.016000px;}
.ws6_c00249{word-spacing:-17.685056px;}
.ws8_c00249{word-spacing:-17.630284px;}
.ws9_c00249{word-spacing:-17.520742px;}
.ws7_c00249{word-spacing:-17.411199px;}
.wsc_c00249{word-spacing:-17.356428px;}
.ws5_c00249{word-spacing:-16.944480px;}
.wsa_c00249{word-spacing:-16.785072px;}
.ws0_c00249{word-spacing:-11.609280px;}
.ws1_c00249{word-spacing:-11.429712px;}
.wsb_c00249{word-spacing:-10.152000px;}
.ws4_c00249{word-spacing:-10.008000px;}
.wse_c00249{word-spacing:0.000000px;}
._14_c00249{margin-left:-14.700960px;}
._11_c00249{margin-left:-10.272960px;}
._10_c00249{margin-left:-9.092160px;}
._16_c00249{margin-left:-6.810768px;}
._15_c00249{margin-left:-5.528592px;}
._3_c00249{margin-left:-3.960000px;}
._e_c00249{margin-left:-2.593440px;}
._d_c00249{margin-left:-1.535040px;}
._c_c00249{width:1.008000px;}
._b_c00249{width:2.304000px;}
._2_c00249{width:3.960000px;}
._8_c00249{width:5.256000px;}
._0_c00249{width:6.336000px;}
._4_c00249{width:11.232000px;}
._12_c00249{width:12.237120px;}
._13_c00249{width:13.481280px;}
._6_c00249{width:14.616000px;}
._9_c00249{width:16.560000px;}
._7_c00249{width:18.936000px;}
._1_c00249{width:26.136000px;}
._f_c00249{width:27.748800px;}
._a_c00249{width:31.680000px;}
._5_c00249{width:39.240000px;}
.fc0_c00249{color:rgb(0,0,0);}
.fs4_c00249{font-size:36.000000px;}
.fs2_c00249{font-size:41.760000px;}
.fs3_c00249{font-size:56.160000px;}
.fs5_c00249{font-size:59.040000px;}
.fs7_c00249{font-size:60.000000px;}
.fs6_c00249{font-size:60.857039px;}
.fs0_c00249{font-size:72.000000px;}
.fs1_c00249{font-size:74.215901px;}
.y0_c00249{bottom:0.000000px;}
.y3b_c00249{bottom:3.120150px;}
.y3a_c00249{bottom:34.744500px;}
.y1_c00249{bottom:54.000000px;}
.y39_c00249{bottom:55.485000px;}
.y38_c00249{bottom:61.605000px;}
.y37_c00249{bottom:78.885000px;}
.y36_c00249{bottom:90.405000px;}
.y35_c00249{bottom:90.406800px;}
.y34_c00249{bottom:108.045000px;}
.y33_c00249{bottom:108.046800px;}
.y32_c00249{bottom:125.685000px;}
.y31_c00249{bottom:131.805000px;}
.y2f_c00249{bottom:143.322840px;}
.y30_c00249{bottom:143.325000px;}
.y2e_c00249{bottom:160.606800px;}
.y2d_c00249{bottom:178.245000px;}
.y2c_c00249{bottom:178.246800px;}
.y2b_c00249{bottom:195.885000px;}
.y2a_c00249{bottom:202.005000px;}
.y29_c00249{bottom:213.162840px;}
.y28_c00249{bottom:230.801040px;}
.y27_c00249{bottom:248.085000px;}
.y26_c00249{bottom:248.088240px;}
.y25_c00249{bottom:265.726440px;}
.y24_c00249{bottom:283.364640px;}
.y23_c00249{bottom:300.648600px;}
.y22_c00249{bottom:318.286800px;}
.y21_c00249{bottom:342.045000px;}
.y20_c00249{bottom:353.206440px;}
.y1f_c00249{bottom:370.844640px;}
.y1e_c00249{bottom:388.128600px;}
.y1d_c00249{bottom:405.766800px;}
.y1b_c00249{bottom:423.401040px;}
.y1c_c00249{bottom:423.405000px;}
.y1a_c00249{bottom:446.805000px;}
.y19_c00249{bottom:458.325000px;}
.y18_c00249{bottom:464.445000px;}
.y17_c00249{bottom:491.085000px;}
.y16_c00249{bottom:595.485000px;}
.y15_c00249{bottom:631.485000px;}
.y14_c00249{bottom:667.485000px;}
.y13_c00249{bottom:703.485000px;}
.y12_c00249{bottom:739.485000px;}
.y11_c00249{bottom:760.365000px;}
.y10_c00249{bottom:781.605000px;}
.yf_c00249{bottom:802.485000px;}
.ye_c00249{bottom:823.365000px;}
.yd_c00249{bottom:844.605000px;}
.yc_c00249{bottom:865.485000px;}
.yb_c00249{bottom:901.485000px;}
.ya_c00249{bottom:922.365000px;}
.y9_c00249{bottom:943.605000px;}
.y8_c00249{bottom:964.485000px;}
.y7_c00249{bottom:985.365000px;}
.y6_c00249{bottom:1021.365000px;}
.y5_c00249{bottom:1043.325000px;}
.y4_c00249{bottom:1063.845000px;}
.y3_c00249{bottom:1085.085000px;}
.y2_c00249{bottom:1138.365000px;}
.h9_c00249{height:19.255500px;}
.h6_c00249{height:32.616000px;}
.ha_c00249{height:46.320000px;}
.h7_c00249{height:46.981634px;}
.h8_c00249{height:53.490240px;}
.h4_c00249{height:57.294676px;}
.h3_c00249{height:65.232000px;}
.h5_c00249{height:68.074560px;}
.h2_c00249{height:1201.365000px;}
.h0_c00249{height:1262.835000px;}
.h1_c00249{height:1263.000000px;}
.w3_c00249{width:25.020000px;}
.w2_c00249{width:863.955000px;}
.w0_c00249{width:892.935000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:14.490000px;}
.x2_c00249{left:113.040150px;}
.x27_c00249{left:121.833300px;}
.x24_c00249{left:149.740800px;}
.x3_c00249{left:154.043700px;}
.x6_c00249{left:166.585650px;}
.xc_c00249{left:177.029250px;}
.x28_c00249{left:183.898350px;}
.x25_c00249{left:193.089900px;}
.x4_c00249{left:218.032800px;}
.x16_c00249{left:228.831300px;}
.x17_c00249{left:272.180400px;}
.xd_c00249{left:281.837100px;}
.x13_c00249{left:319.047000px;}
.xe_c00249{left:348.028200px;}
.x1c_c00249{left:391.719300px;}
.x14_c00249{left:435.598800px;}
.x22_c00249{left:443.972550px;}
.x18_c00249{left:446.256150px;}
.x15_c00249{left:455.592750px;}
.x29_c00249{left:481.431450px;}
.x23_c00249{left:489.826200px;}
.x19_c00249{left:492.934950px;}
.x1d_c00249{left:502.116600px;}
.x2a_c00249{left:509.764800px;}
.x7_c00249{left:513.935700px;}
.x1f_c00249{left:518.086350px;}
.x8_c00249{left:531.935250px;}
.xf_c00249{left:545.586150px;}
.x21_c00249{left:560.220300px;}
.x1a_c00249{left:576.263250px;}
.x1e_c00249{left:578.779800px;}
.x9_c00249{left:596.080500px;}
.x10_c00249{left:600.611250px;}
.x1b_c00249{left:612.097800px;}
.x20_c00249{left:629.047500px;}
.x26_c00249{left:633.329550px;}
.xa_c00249{left:669.716250px;}
.x11_c00249{left:670.788900px;}
.xb_c00249{left:703.392750px;}
.x5_c00249{left:720.366600px;}
.x12_c00249{left:741.390000px;}
.x2b_c00249{left:759.915000px;}
@media print{
.v2_c00249{vertical-align:-21.760000pt;}
.v0_c00249{vertical-align:0.000000pt;}
.v1_c00249{vertical-align:26.880000pt;}
.ls11_c00249{letter-spacing:-0.159616pt;}
.lsf_c00249{letter-spacing:0.000000pt;}
.ls22_c00249{letter-spacing:0.128000pt;}
.ls13_c00249{letter-spacing:0.236160pt;}
.ls29_c00249{letter-spacing:0.243428pt;}
.ls4_c00249{letter-spacing:0.262400pt;}
.ls1a_c00249{letter-spacing:0.283392pt;}
.ls24_c00249{letter-spacing:0.292114pt;}
.ls2_c00249{letter-spacing:0.305280pt;}
.ls1e_c00249{letter-spacing:0.330624pt;}
.ls25_c00249{letter-spacing:0.372608pt;}
.ls1f_c00249{letter-spacing:0.377856pt;}
.ls8_c00249{letter-spacing:0.389485pt;}
.ls16_c00249{letter-spacing:0.425088pt;}
.ls18_c00249{letter-spacing:0.438171pt;}
.ls5_c00249{letter-spacing:0.472320pt;}
.ls21_c00249{letter-spacing:0.535542pt;}
.ls26_c00249{letter-spacing:0.566784pt;}
.ls2c_c00249{letter-spacing:0.619264pt;}
.ls6_c00249{letter-spacing:0.632913pt;}
.ls1b_c00249{letter-spacing:0.661248pt;}
.ls17_c00249{letter-spacing:0.681599pt;}
.ls2b_c00249{letter-spacing:0.708480pt;}
.ls14_c00249{letter-spacing:0.855424pt;}
.ls28_c00249{letter-spacing:1.747584pt;}
.lsb_c00249{letter-spacing:1.847296pt;}
.ls15_c00249{letter-spacing:2.697472pt;}
.ls19_c00249{letter-spacing:3.127808pt;}
.ls1_c00249{letter-spacing:3.520000pt;}
.ls23_c00249{letter-spacing:3.736576pt;}
.ls1c_c00249{letter-spacing:3.841536pt;}
.ls2a_c00249{letter-spacing:4.665472pt;}
.lsd_c00249{letter-spacing:4.670720pt;}
.lsc_c00249{letter-spacing:4.691712pt;}
.ls9_c00249{letter-spacing:4.775680pt;}
.ls12_c00249{letter-spacing:4.827264pt;}
.ls7_c00249{letter-spacing:4.828160pt;}
.lsa_c00249{letter-spacing:5.143040pt;}
.ls0_c00249{letter-spacing:5.312000pt;}
.ls3_c00249{letter-spacing:5.325333pt;}
.lse_c00249{letter-spacing:5.475484pt;}
.ls10_c00249{letter-spacing:5.644800pt;}
.ls27_c00249{letter-spacing:5.862016pt;}
.ls1d_c00249{letter-spacing:8.680192pt;}
.ls20_c00249{letter-spacing:13.518848pt;}
.wsd_c00249{word-spacing:-19.254912pt;}
.ws3_c00249{word-spacing:-18.705024pt;}
.ws2_c00249{word-spacing:-17.792000pt;}
.ws6_c00249{word-spacing:-15.720049pt;}
.ws8_c00249{word-spacing:-15.671364pt;}
.ws9_c00249{word-spacing:-15.573992pt;}
.ws7_c00249{word-spacing:-15.476621pt;}
.wsc_c00249{word-spacing:-15.427936pt;}
.ws5_c00249{word-spacing:-15.061760pt;}
.wsa_c00249{word-spacing:-14.920064pt;}
.ws0_c00249{word-spacing:-10.319360pt;}
.ws1_c00249{word-spacing:-10.159744pt;}
.wsb_c00249{word-spacing:-9.024000pt;}
.ws4_c00249{word-spacing:-8.896000pt;}
.wse_c00249{word-spacing:0.000000pt;}
._14_c00249{margin-left:-13.067520pt;}
._11_c00249{margin-left:-9.131520pt;}
._10_c00249{margin-left:-8.081920pt;}
._16_c00249{margin-left:-6.054016pt;}
._15_c00249{margin-left:-4.914304pt;}
._3_c00249{margin-left:-3.520000pt;}
._e_c00249{margin-left:-2.305280pt;}
._d_c00249{margin-left:-1.364480pt;}
._c_c00249{width:0.896000pt;}
._b_c00249{width:2.048000pt;}
._2_c00249{width:3.520000pt;}
._8_c00249{width:4.672000pt;}
._0_c00249{width:5.632000pt;}
._4_c00249{width:9.984000pt;}
._12_c00249{width:10.877440pt;}
._13_c00249{width:11.983360pt;}
._6_c00249{width:12.992000pt;}
._9_c00249{width:14.720000pt;}
._7_c00249{width:16.832000pt;}
._1_c00249{width:23.232000pt;}
._f_c00249{width:24.665600pt;}
._a_c00249{width:28.160000pt;}
._5_c00249{width:34.880000pt;}
.fs4_c00249{font-size:32.000000pt;}
.fs2_c00249{font-size:37.120000pt;}
.fs3_c00249{font-size:49.920000pt;}
.fs5_c00249{font-size:52.480000pt;}
.fs7_c00249{font-size:53.333333pt;}
.fs6_c00249{font-size:54.095146pt;}
.fs0_c00249{font-size:64.000000pt;}
.fs1_c00249{font-size:65.969690pt;}
.y0_c00249{bottom:0.000000pt;}
.y3b_c00249{bottom:2.773467pt;}
.y3a_c00249{bottom:30.884000pt;}
.y1_c00249{bottom:48.000000pt;}
.y39_c00249{bottom:49.320000pt;}
.y38_c00249{bottom:54.760000pt;}
.y37_c00249{bottom:70.120000pt;}
.y36_c00249{bottom:80.360000pt;}
.y35_c00249{bottom:80.361600pt;}
.y34_c00249{bottom:96.040000pt;}
.y33_c00249{bottom:96.041600pt;}
.y32_c00249{bottom:111.720000pt;}
.y31_c00249{bottom:117.160000pt;}
.y2f_c00249{bottom:127.398080pt;}
.y30_c00249{bottom:127.400000pt;}
.y2e_c00249{bottom:142.761600pt;}
.y2d_c00249{bottom:158.440000pt;}
.y2c_c00249{bottom:158.441600pt;}
.y2b_c00249{bottom:174.120000pt;}
.y2a_c00249{bottom:179.560000pt;}
.y29_c00249{bottom:189.478080pt;}
.y28_c00249{bottom:205.156480pt;}
.y27_c00249{bottom:220.520000pt;}
.y26_c00249{bottom:220.522880pt;}
.y25_c00249{bottom:236.201280pt;}
.y24_c00249{bottom:251.879680pt;}
.y23_c00249{bottom:267.243200pt;}
.y22_c00249{bottom:282.921600pt;}
.y21_c00249{bottom:304.040000pt;}
.y20_c00249{bottom:313.961280pt;}
.y1f_c00249{bottom:329.639680pt;}
.y1e_c00249{bottom:345.003200pt;}
.y1d_c00249{bottom:360.681600pt;}
.y1b_c00249{bottom:376.356480pt;}
.y1c_c00249{bottom:376.360000pt;}
.y1a_c00249{bottom:397.160000pt;}
.y19_c00249{bottom:407.400000pt;}
.y18_c00249{bottom:412.840000pt;}
.y17_c00249{bottom:436.520000pt;}
.y16_c00249{bottom:529.320000pt;}
.y15_c00249{bottom:561.320000pt;}
.y14_c00249{bottom:593.320000pt;}
.y13_c00249{bottom:625.320000pt;}
.y12_c00249{bottom:657.320000pt;}
.y11_c00249{bottom:675.880000pt;}
.y10_c00249{bottom:694.760000pt;}
.yf_c00249{bottom:713.320000pt;}
.ye_c00249{bottom:731.880000pt;}
.yd_c00249{bottom:750.760000pt;}
.yc_c00249{bottom:769.320000pt;}
.yb_c00249{bottom:801.320000pt;}
.ya_c00249{bottom:819.880000pt;}
.y9_c00249{bottom:838.760000pt;}
.y8_c00249{bottom:857.320000pt;}
.y7_c00249{bottom:875.880000pt;}
.y6_c00249{bottom:907.880000pt;}
.y5_c00249{bottom:927.400000pt;}
.y4_c00249{bottom:945.640000pt;}
.y3_c00249{bottom:964.520000pt;}
.y2_c00249{bottom:1011.880000pt;}
.h9_c00249{height:17.116000pt;}
.h6_c00249{height:28.992000pt;}
.ha_c00249{height:41.173333pt;}
.h7_c00249{height:41.761453pt;}
.h8_c00249{height:47.546880pt;}
.h4_c00249{height:50.928601pt;}
.h3_c00249{height:57.984000pt;}
.h5_c00249{height:60.510720pt;}
.h2_c00249{height:1067.880000pt;}
.h0_c00249{height:1122.520000pt;}
.h1_c00249{height:1122.666667pt;}
.w3_c00249{width:22.240000pt;}
.w2_c00249{width:767.960000pt;}
.w0_c00249{width:793.720000pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:12.880000pt;}
.x2_c00249{left:100.480133pt;}
.x27_c00249{left:108.296267pt;}
.x24_c00249{left:133.102933pt;}
.x3_c00249{left:136.927733pt;}
.x6_c00249{left:148.076133pt;}
.xc_c00249{left:157.359333pt;}
.x28_c00249{left:163.465200pt;}
.x25_c00249{left:171.635467pt;}
.x4_c00249{left:193.806933pt;}
.x16_c00249{left:203.405600pt;}
.x17_c00249{left:241.938133pt;}
.xd_c00249{left:250.521867pt;}
.x13_c00249{left:283.597333pt;}
.xe_c00249{left:309.358400pt;}
.x1c_c00249{left:348.194933pt;}
.x14_c00249{left:387.198933pt;}
.x22_c00249{left:394.642267pt;}
.x18_c00249{left:396.672133pt;}
.x15_c00249{left:404.971333pt;}
.x29_c00249{left:427.939067pt;}
.x23_c00249{left:435.401067pt;}
.x19_c00249{left:438.164400pt;}
.x1d_c00249{left:446.325867pt;}
.x2a_c00249{left:453.124267pt;}
.x7_c00249{left:456.831733pt;}
.x1f_c00249{left:460.521200pt;}
.x8_c00249{left:472.831333pt;}
.xf_c00249{left:484.965467pt;}
.x21_c00249{left:497.973600pt;}
.x1a_c00249{left:512.234000pt;}
.x1e_c00249{left:514.470933pt;}
.x9_c00249{left:529.849333pt;}
.x10_c00249{left:533.876667pt;}
.x1b_c00249{left:544.086933pt;}
.x20_c00249{left:559.153333pt;}
.x26_c00249{left:562.959600pt;}
.xa_c00249{left:595.303333pt;}
.x11_c00249{left:596.256800pt;}
.xb_c00249{left:625.238000pt;}
.x5_c00249{left:640.325867pt;}
.x12_c00249{left:659.013333pt;}
.x2b_c00249{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be5f32f6af029c282da832ec.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.134000;font-style:normal;font-weight:normal;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_28fa0dbbeb53b43eaa9edd86.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;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:ff3_c00250;src:url('chunks/assets/font_cd21d5debb70257b197f9ee6.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:0.787000;font-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_c00250{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00250{vertical-align:-24.480000px;}
.v0_c00250{vertical-align:0.000000px;}
.v1_c00250{vertical-align:30.240000px;}
.ls6_c00250{letter-spacing:-0.179568px;}
.ls5_c00250{letter-spacing:0.000000px;}
.ls8_c00250{letter-spacing:0.144000px;}
.ls9_c00250{letter-spacing:0.265680px;}
.ls1_c00250{letter-spacing:0.295200px;}
.lse_c00250{letter-spacing:0.318816px;}
.lsa_c00250{letter-spacing:0.438171px;}
.ls2_c00250{letter-spacing:0.531360px;}
.lsb_c00250{letter-spacing:0.690768px;}
.ls10_c00250{letter-spacing:0.696672px;}
.lsc_c00250{letter-spacing:0.712027px;}
.ls7_c00250{letter-spacing:5.430672px;}
.lsd_c00250{letter-spacing:5.514336px;}
.ls3_c00250{letter-spacing:5.976000px;}
.ls0_c00250{letter-spacing:6.001800px;}
.ls4_c00250{letter-spacing:6.159920px;}
.lsf_c00250{letter-spacing:15.521616px;}
.sc__c00250{text-shadow:none;}
.sc1_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00250{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc1_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00250{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00250{word-spacing:-21.043152px;}
.ws4_c00250{word-spacing:-17.630284px;}
.ws3_c00250{word-spacing:-16.944480px;}
.ws5_c00250{word-spacing:-16.731936px;}
.ws0_c00250{word-spacing:-11.429712px;}
.ws2_c00250{word-spacing:-10.152000px;}
.ws6_c00250{word-spacing:0.000000px;}
._b_c00250{margin-left:-15.284160px;}
._c_c00250{margin-left:-14.212800px;}
._6_c00250{margin-left:-1.179360px;}
._5_c00250{width:1.080000px;}
._3_c00250{width:2.232000px;}
._2_c00250{width:4.104000px;}
._8_c00250{width:7.560000px;}
._9_c00250{width:12.384000px;}
._1_c00250{width:14.832000px;}
._4_c00250{width:18.072000px;}
._a_c00250{width:21.528000px;}
._7_c00250{width:24.120000px;}
._0_c00250{width:25.704000px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs4_c00250{font-size:36.000000px;}
.fs2_c00250{font-size:41.760000px;}
.fs3_c00250{font-size:56.160000px;}
.fs5_c00250{font-size:59.040000px;}
.fs7_c00250{font-size:60.000000px;}
.fs6_c00250{font-size:60.857039px;}
.fs0_c00250{font-size:72.000000px;}
.fs1_c00250{font-size:74.215901px;}
.y0_c00250{bottom:0.000000px;}
.y2d_c00250{bottom:3.120150px;}
.y2c_c00250{bottom:34.744500px;}
.y1_c00250{bottom:54.000000px;}
.y2b_c00250{bottom:55.481040px;}
.y2a_c00250{bottom:72.765000px;}
.y29_c00250{bottom:78.885000px;}
.y28_c00250{bottom:90.405000px;}
.y27_c00250{bottom:96.525000px;}
.y26_c00250{bottom:107.685000px;}
.y25_c00250{bottom:113.805000px;}
.y24_c00250{bottom:140.445000px;}
.y23_c00250{bottom:217.845000px;}
.y22_c00250{bottom:238.725000px;}
.y21_c00250{bottom:259.965000px;}
.y20_c00250{bottom:295.965000px;}
.y1f_c00250{bottom:331.965000px;}
.y1e_c00250{bottom:352.845000px;}
.y1d_c00250{bottom:373.725000px;}
.y1c_c00250{bottom:394.965000px;}
.y1b_c00250{bottom:415.845000px;}
.y1a_c00250{bottom:436.725000px;}
.y19_c00250{bottom:472.725000px;}
.y18_c00250{bottom:493.965000px;}
.y17_c00250{bottom:514.845000px;}
.y16_c00250{bottom:550.845000px;}
.y15_c00250{bottom:586.845000px;}
.y14_c00250{bottom:622.845000px;}
.y13_c00250{bottom:658.845000px;}
.y12_c00250{bottom:694.845000px;}
.y11_c00250{bottom:716.085000px;}
.y10_c00250{bottom:736.965000px;}
.yf_c00250{bottom:772.965000px;}
.ye_c00250{bottom:793.845000px;}
.yd_c00250{bottom:815.085000px;}
.yc_c00250{bottom:835.965000px;}
.yb_c00250{bottom:856.845000px;}
.ya_c00250{bottom:878.085000px;}
.y9_c00250{bottom:898.965000px;}
.y8_c00250{bottom:919.845000px;}
.y7_c00250{bottom:955.845000px;}
.y6_c00250{bottom:977.085000px;}
.y5_c00250{bottom:1013.085000px;}
.y4_c00250{bottom:1049.085000px;}
.y3_c00250{bottom:1085.085000px;}
.y2_c00250{bottom:1138.365000px;}
.h9_c00250{height:19.255500px;}
.h6_c00250{height:32.616000px;}
.ha_c00250{height:46.320000px;}
.h7_c00250{height:46.981634px;}
.h8_c00250{height:53.490240px;}
.h4_c00250{height:57.294676px;}
.h3_c00250{height:65.232000px;}
.h5_c00250{height:68.074560px;}
.h2_c00250{height:1201.365000px;}
.h0_c00250{height:1262.835000px;}
.h1_c00250{height:1263.000000px;}
.w3_c00250{width:25.020000px;}
.w2_c00250{width:863.955000px;}
.w0_c00250{width:892.935000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:14.490000px;}
.x2_c00250{left:113.040150px;}
.x7_c00250{left:143.027700px;}
.x6_c00250{left:145.025700px;}
.x14_c00250{left:148.031550px;}
.x3_c00250{left:154.043700px;}
.x15_c00250{left:155.699700px;}
.xd_c00250{left:161.058450px;}
.x10_c00250{left:186.065100px;}
.xc_c00250{left:193.997700px;}
.x4_c00250{left:218.032800px;}
.x5_c00250{left:220.066350px;}
.x11_c00250{left:223.054650px;}
.x18_c00250{left:234.052050px;}
.x1c_c00250{left:236.384400px;}
.x16_c00250{left:264.263700px;}
.x1d_c00250{left:283.873500px;}
.x19_c00250{left:327.038850px;}
.xa_c00250{left:374.576700px;}
.xb_c00250{left:380.330550px;}
.x17_c00250{left:383.363100px;}
.x1a_c00250{left:422.273400px;}
.x1b_c00250{left:442.267500px;}
.x12_c00250{left:568.090950px;}
.x1e_c00250{left:570.083550px;}
.x1f_c00250{left:593.890500px;}
.x13_c00250{left:613.126050px;}
.xe_c00250{left:659.370450px;}
.x8_c00250{left:695.365050px;}
.xf_c00250{left:745.386150px;}
.x9_c00250{left:750.390000px;}
.x20_c00250{left:759.915000px;}
@media print{
.v2_c00250{vertical-align:-21.760000pt;}
.v0_c00250{vertical-align:0.000000pt;}
.v1_c00250{vertical-align:26.880000pt;}
.ls6_c00250{letter-spacing:-0.159616pt;}
.ls5_c00250{letter-spacing:0.000000pt;}
.ls8_c00250{letter-spacing:0.128000pt;}
.ls9_c00250{letter-spacing:0.236160pt;}
.ls1_c00250{letter-spacing:0.262400pt;}
.lse_c00250{letter-spacing:0.283392pt;}
.lsa_c00250{letter-spacing:0.389485pt;}
.ls2_c00250{letter-spacing:0.472320pt;}
.lsb_c00250{letter-spacing:0.614016pt;}
.ls10_c00250{letter-spacing:0.619264pt;}
.lsc_c00250{letter-spacing:0.632913pt;}
.ls7_c00250{letter-spacing:4.827264pt;}
.lsd_c00250{letter-spacing:4.901632pt;}
.ls3_c00250{letter-spacing:5.312000pt;}
.ls0_c00250{letter-spacing:5.334933pt;}
.ls4_c00250{letter-spacing:5.475484pt;}
.lsf_c00250{letter-spacing:13.796992pt;}
.ws1_c00250{word-spacing:-18.705024pt;}
.ws4_c00250{word-spacing:-15.671364pt;}
.ws3_c00250{word-spacing:-15.061760pt;}
.ws5_c00250{word-spacing:-14.872832pt;}
.ws0_c00250{word-spacing:-10.159744pt;}
.ws2_c00250{word-spacing:-9.024000pt;}
.ws6_c00250{word-spacing:0.000000pt;}
._b_c00250{margin-left:-13.585920pt;}
._c_c00250{margin-left:-12.633600pt;}
._6_c00250{margin-left:-1.048320pt;}
._5_c00250{width:0.960000pt;}
._3_c00250{width:1.984000pt;}
._2_c00250{width:3.648000pt;}
._8_c00250{width:6.720000pt;}
._9_c00250{width:11.008000pt;}
._1_c00250{width:13.184000pt;}
._4_c00250{width:16.064000pt;}
._a_c00250{width:19.136000pt;}
._7_c00250{width:21.440000pt;}
._0_c00250{width:22.848000pt;}
.fs4_c00250{font-size:32.000000pt;}
.fs2_c00250{font-size:37.120000pt;}
.fs3_c00250{font-size:49.920000pt;}
.fs5_c00250{font-size:52.480000pt;}
.fs7_c00250{font-size:53.333333pt;}
.fs6_c00250{font-size:54.095146pt;}
.fs0_c00250{font-size:64.000000pt;}
.fs1_c00250{font-size:65.969690pt;}
.y0_c00250{bottom:0.000000pt;}
.y2d_c00250{bottom:2.773467pt;}
.y2c_c00250{bottom:30.884000pt;}
.y1_c00250{bottom:48.000000pt;}
.y2b_c00250{bottom:49.316480pt;}
.y2a_c00250{bottom:64.680000pt;}
.y29_c00250{bottom:70.120000pt;}
.y28_c00250{bottom:80.360000pt;}
.y27_c00250{bottom:85.800000pt;}
.y26_c00250{bottom:95.720000pt;}
.y25_c00250{bottom:101.160000pt;}
.y24_c00250{bottom:124.840000pt;}
.y23_c00250{bottom:193.640000pt;}
.y22_c00250{bottom:212.200000pt;}
.y21_c00250{bottom:231.080000pt;}
.y20_c00250{bottom:263.080000pt;}
.y1f_c00250{bottom:295.080000pt;}
.y1e_c00250{bottom:313.640000pt;}
.y1d_c00250{bottom:332.200000pt;}
.y1c_c00250{bottom:351.080000pt;}
.y1b_c00250{bottom:369.640000pt;}
.y1a_c00250{bottom:388.200000pt;}
.y19_c00250{bottom:420.200000pt;}
.y18_c00250{bottom:439.080000pt;}
.y17_c00250{bottom:457.640000pt;}
.y16_c00250{bottom:489.640000pt;}
.y15_c00250{bottom:521.640000pt;}
.y14_c00250{bottom:553.640000pt;}
.y13_c00250{bottom:585.640000pt;}
.y12_c00250{bottom:617.640000pt;}
.y11_c00250{bottom:636.520000pt;}
.y10_c00250{bottom:655.080000pt;}
.yf_c00250{bottom:687.080000pt;}
.ye_c00250{bottom:705.640000pt;}
.yd_c00250{bottom:724.520000pt;}
.yc_c00250{bottom:743.080000pt;}
.yb_c00250{bottom:761.640000pt;}
.ya_c00250{bottom:780.520000pt;}
.y9_c00250{bottom:799.080000pt;}
.y8_c00250{bottom:817.640000pt;}
.y7_c00250{bottom:849.640000pt;}
.y6_c00250{bottom:868.520000pt;}
.y5_c00250{bottom:900.520000pt;}
.y4_c00250{bottom:932.520000pt;}
.y3_c00250{bottom:964.520000pt;}
.y2_c00250{bottom:1011.880000pt;}
.h9_c00250{height:17.116000pt;}
.h6_c00250{height:28.992000pt;}
.ha_c00250{height:41.173333pt;}
.h7_c00250{height:41.761453pt;}
.h8_c00250{height:47.546880pt;}
.h4_c00250{height:50.928601pt;}
.h3_c00250{height:57.984000pt;}
.h5_c00250{height:60.510720pt;}
.h2_c00250{height:1067.880000pt;}
.h0_c00250{height:1122.520000pt;}
.h1_c00250{height:1122.666667pt;}
.w3_c00250{width:22.240000pt;}
.w2_c00250{width:767.960000pt;}
.w0_c00250{width:793.720000pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:12.880000pt;}
.x2_c00250{left:100.480133pt;}
.x7_c00250{left:127.135733pt;}
.x6_c00250{left:128.911733pt;}
.x14_c00250{left:131.583600pt;}
.x3_c00250{left:136.927733pt;}
.x15_c00250{left:138.399733pt;}
.xd_c00250{left:143.163067pt;}
.x10_c00250{left:165.391200pt;}
.xc_c00250{left:172.442400pt;}
.x4_c00250{left:193.806933pt;}
.x5_c00250{left:195.614533pt;}
.x11_c00250{left:198.270800pt;}
.x18_c00250{left:208.046267pt;}
.x1c_c00250{left:210.119467pt;}
.x16_c00250{left:234.901067pt;}
.x1d_c00250{left:252.332000pt;}
.x19_c00250{left:290.701200pt;}
.xa_c00250{left:332.957067pt;}
.xb_c00250{left:338.071600pt;}
.x17_c00250{left:340.767200pt;}
.x1a_c00250{left:375.354133pt;}
.x1b_c00250{left:393.126667pt;}
.x12_c00250{left:504.969733pt;}
.x1e_c00250{left:506.740933pt;}
.x1f_c00250{left:527.902667pt;}
.x13_c00250{left:545.000933pt;}
.xe_c00250{left:586.107067pt;}
.x8_c00250{left:618.102267pt;}
.xf_c00250{left:662.565467pt;}
.x9_c00250{left:667.013333pt;}
.x20_c00250{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5882065b87e769329b2a011.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.134000;font-style:normal;font-weight:normal;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_8612f09607cc4524c1937623.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;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:ff3_c00251;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_23a73798c7a533e64f14a328.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00251;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00251;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff6_c00251{font-family:ff6_c00251;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00251;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff7_c00251{font-family:ff7_c00251;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00251;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff8_c00251{font-family:ff8_c00251;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00251;src:url('chunks/assets/font_217f178f7815de1b0515a9c6.woff2')format("woff");}.ff9_c00251{font-family:ff9_c00251;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:ffa_c00251;src:url('chunks/assets/font_f722abaf3f4f0a2c733ae4e1.woff2')format("woff");}.ffa_c00251{font-family:ffa_c00251;line-height:0.787000;font-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_c00251{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00251{vertical-align:-24.480000px;}
.v0_c00251{vertical-align:0.000000px;}
.v1_c00251{vertical-align:30.240000px;}
.ls11_c00251{letter-spacing:-0.179568px;}
.ls10_c00251{letter-spacing:0.000000px;}
.ls21_c00251{letter-spacing:0.144000px;}
.ls13_c00251{letter-spacing:0.242064px;}
.ls15_c00251{letter-spacing:0.265680px;}
.lse_c00251{letter-spacing:0.295200px;}
.ls8_c00251{letter-spacing:0.318480px;}
.ls18_c00251{letter-spacing:0.318816px;}
.lsd_c00251{letter-spacing:0.319080px;}
.ls14_c00251{letter-spacing:0.328628px;}
.ls19_c00251{letter-spacing:0.478224px;}
.lsc_c00251{letter-spacing:0.492942px;}
.ls4_c00251{letter-spacing:0.531360px;}
.ls3_c00251{letter-spacing:0.548950px;}
.ls5_c00251{letter-spacing:0.554976px;}
.lsa_c00251{letter-spacing:0.560880px;}
.ls12_c00251{letter-spacing:0.657256px;}
.ls16_c00251{letter-spacing:0.690768px;}
.ls1a_c00251{letter-spacing:0.696672px;}
.ls9_c00251{letter-spacing:0.712027px;}
.ls1b_c00251{letter-spacing:0.766799px;}
.lsb_c00251{letter-spacing:0.822065px;}
.ls1d_c00251{letter-spacing:0.962352px;}
.ls6_c00251{letter-spacing:5.246280px;}
.ls20_c00251{letter-spacing:5.248656px;}
.ls7_c00251{letter-spacing:5.353440px;}
.ls17_c00251{letter-spacing:5.461200px;}
.ls0_c00251{letter-spacing:5.976000px;}
.lsf_c00251{letter-spacing:6.159920px;}
.ls1_c00251{letter-spacing:7.056000px;}
.ls1e_c00251{letter-spacing:8.625744px;}
.ls1c_c00251{letter-spacing:13.077360px;}
.ls1f_c00251{letter-spacing:35.660160px;}
.ls2_c00251{letter-spacing:54.864000px;}
.sc__c00251{text-shadow:none;}
.sc1_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00251{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc1_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00251{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00251{word-spacing:-21.874320px;}
.ws8_c00251{word-spacing:-21.661776px;}
.ws6_c00251{word-spacing:-17.685056px;}
.ws3_c00251{word-spacing:-17.630284px;}
.ws7_c00251{word-spacing:-17.411199px;}
.ws1_c00251{word-spacing:-17.246885px;}
.ws9_c00251{word-spacing:-17.103888px;}
.ws5_c00251{word-spacing:-16.944480px;}
.ws4_c00251{word-spacing:-16.731936px;}
.ws0_c00251{word-spacing:-11.429712px;}
.wsa_c00251{word-spacing:-10.152000px;}
.wsb_c00251{word-spacing:0.000000px;}
._1a_c00251{margin-left:-35.128800px;}
._15_c00251{margin-left:-13.514040px;}
._14_c00251{margin-left:-12.361080px;}
._18_c00251{margin-left:-7.911360px;}
._b_c00251{margin-left:-1.034570px;}
._0_c00251{width:1.080000px;}
._1_c00251{width:2.376000px;}
._a_c00251{width:3.384000px;}
._8_c00251{width:5.184000px;}
._7_c00251{width:6.624000px;}
._4_c00251{width:7.776000px;}
._d_c00251{width:8.915040px;}
._3_c00251{width:10.944000px;}
._2_c00251{width:12.888000px;}
._5_c00251{width:14.112000px;}
._9_c00251{width:15.408000px;}
._17_c00251{width:18.538560px;}
._6_c00251{width:23.040000px;}
._12_c00251{width:24.147840px;}
._e_c00251{width:26.272800px;}
._13_c00251{width:29.538240px;}
._c_c00251{width:32.132517px;}
._19_c00251{width:34.833600px;}
._f_c00251{width:65.652480px;}
._10_c00251{width:67.125314px;}
._16_c00251{width:99.318688px;}
._11_c00251{width:119.584082px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs5_c00251{font-size:36.000000px;}
.fs2_c00251{font-size:41.760000px;}
.fs3_c00251{font-size:59.040000px;}
.fs6_c00251{font-size:60.000000px;}
.fs4_c00251{font-size:60.857039px;}
.fs0_c00251{font-size:72.000000px;}
.fs1_c00251{font-size:74.215901px;}
.y0_c00251{bottom:0.000000px;}
.y46_c00251{bottom:3.120150px;}
.y45_c00251{bottom:34.744500px;}
.y1_c00251{bottom:54.000000px;}
.y44_c00251{bottom:61.605000px;}
.y43_c00251{bottom:78.885000px;}
.y42_c00251{bottom:105.525000px;}
.y3d_c00251{bottom:140.085000px;}
.y3c_c00251{bottom:157.725000px;}
.y3b_c00251{bottom:175.365000px;}
.y41_c00251{bottom:175.725000px;}
.y3a_c00251{bottom:192.645000px;}
.y40_c00251{bottom:193.005000px;}
.y39_c00251{bottom:210.285000px;}
.y3f_c00251{bottom:210.645000px;}
.y38_c00251{bottom:227.565000px;}
.y3e_c00251{bottom:228.285000px;}
.y35_c00251{bottom:245.205000px;}
.y37_c00251{bottom:245.565000px;}
.y34_c00251{bottom:262.845000px;}
.y36_c00251{bottom:263.205000px;}
.y33_c00251{bottom:280.485000px;}
.y2d_c00251{bottom:298.845000px;}
.y2c_c00251{bottom:316.485000px;}
.y32_c00251{bottom:316.845000px;}
.y2b_c00251{bottom:333.765000px;}
.y31_c00251{bottom:334.125000px;}
.y2a_c00251{bottom:351.405000px;}
.y30_c00251{bottom:351.765000px;}
.y29_c00251{bottom:369.045000px;}
.y2f_c00251{bottom:369.405000px;}
.y27_c00251{bottom:386.325000px;}
.y2e_c00251{bottom:386.685000px;}
.y26_c00251{bottom:403.965000px;}
.y28_c00251{bottom:404.325000px;}
.y25_c00251{bottom:421.965000px;}
.y24_c00251{bottom:439.245000px;}
.y1e_c00251{bottom:457.605000px;}
.y1d_c00251{bottom:474.885000px;}
.y23_c00251{bottom:475.245000px;}
.y1c_c00251{bottom:492.525000px;}
.y22_c00251{bottom:492.885000px;}
.y20_c00251{bottom:509.805000px;}
.y1b_c00251{bottom:510.165000px;}
.y1a_c00251{bottom:527.445000px;}
.y21_c00251{bottom:527.805000px;}
.y19_c00251{bottom:545.085000px;}
.y1f_c00251{bottom:545.445000px;}
.y18_c00251{bottom:562.725000px;}
.y17_c00251{bottom:580.365000px;}
.y16_c00251{bottom:613.845000px;}
.y15_c00251{bottom:649.845000px;}
.y14_c00251{bottom:670.725000px;}
.y13_c00251{bottom:691.965000px;}
.y12_c00251{bottom:712.845000px;}
.y11_c00251{bottom:748.845000px;}
.y10_c00251{bottom:769.725000px;}
.yf_c00251{bottom:790.965000px;}
.ye_c00251{bottom:811.845000px;}
.yd_c00251{bottom:832.725000px;}
.yc_c00251{bottom:868.725000px;}
.yb_c00251{bottom:889.965000px;}
.ya_c00251{bottom:910.845000px;}
.y9_c00251{bottom:932.085000px;}
.y8_c00251{bottom:949.364850px;}
.y7_c00251{bottom:970.604850px;}
.y6_c00251{bottom:1006.604850px;}
.y5_c00251{bottom:1042.605000px;}
.y4_c00251{bottom:1063.485000px;}
.y3_c00251{bottom:1085.445000px;}
.y2_c00251{bottom:1138.365000px;}
.hb_c00251{height:19.255500px;}
.ha_c00251{height:32.616000px;}
.h6_c00251{height:39.350391px;}
.hc_c00251{height:46.320000px;}
.h8_c00251{height:46.981634px;}
.h7_c00251{height:53.490240px;}
.h9_c00251{height:55.136477px;}
.h4_c00251{height:57.294676px;}
.h3_c00251{height:65.232000px;}
.h5_c00251{height:68.074560px;}
.h2_c00251{height:1201.365000px;}
.h0_c00251{height:1262.835000px;}
.h1_c00251{height:1263.000000px;}
.w7_c00251{width:25.020000px;}
.w3_c00251{width:39.600000px;}
.w5_c00251{width:116.280000px;}
.w6_c00251{width:224.280000px;}
.w4_c00251{width:264.960000px;}
.w2_c00251{width:863.955000px;}
.w0_c00251{width:892.935000px;}
.w1_c00251{width:893.250000px;}
.x0_c00251{left:0.000000px;}
.x17_c00251{left:7.920150px;}
.x1e_c00251{left:12.554700px;}
.x1_c00251{left:14.490000px;}
.x1f_c00251{left:41.820150px;}
.x2b_c00251{left:43.008300px;}
.x24_c00251{left:47.088150px;}
.x26_c00251{left:49.245900px;}
.x2a_c00251{left:51.688950px;}
.x1c_c00251{left:55.048350px;}
.x1d_c00251{left:62.548350px;}
.x35_c00251{left:65.256000px;}
.x33_c00251{left:69.613350px;}
.x2c_c00251{left:74.672700px;}
.x37_c00251{left:75.883050px;}
.x19_c00251{left:83.047800px;}
.x27_c00251{left:89.637150px;}
.x1a_c00251{left:98.538150px;}
.x25_c00251{left:104.946300px;}
.x21_c00251{left:106.522950px;}
.x2d_c00251{left:108.441300px;}
.x34_c00251{left:109.572450px;}
.x2_c00251{left:113.040150px;}
.x2e_c00251{left:114.700200px;}
.x16_c00251{left:119.610000px;}
.x31_c00251{left:123.345900px;}
.x14_c00251{left:127.044000px;}
.x32_c00251{left:136.705350px;}
.x6_c00251{left:140.037600px;}
.x5_c00251{left:148.031550px;}
.x2f_c00251{left:150.148050px;}
.x3_c00251{left:154.043700px;}
.xc_c00251{left:157.031250px;}
.x18_c00251{left:159.930000px;}
.x28_c00251{left:165.880650px;}
.x7_c00251{left:167.040150px;}
.x8_c00251{left:180.505800px;}
.x36_c00251{left:186.435450px;}
.x20_c00251{left:196.231950px;}
.x29_c00251{left:197.545050px;}
.xd_c00251{left:199.024650px;}
.x30_c00251{left:203.925750px;}
.x4_c00251{left:218.032800px;}
.x15_c00251{left:249.027750px;}
.x1b_c00251{left:253.335150px;}
.x9_c00251{left:267.498450px;}
.xa_c00251{left:312.717000px;}
.xb_c00251{left:365.708100px;}
.x22_c00251{left:425.610000px;}
.xe_c00251{left:441.958800px;}
.xf_c00251{left:454.936500px;}
.x12_c00251{left:485.203500px;}
.x13_c00251{left:498.181350px;}
.x23_c00251{left:542.610000px;}
.x10_c00251{left:701.756400px;}
.x11_c00251{left:711.764250px;}
.x38_c00251{left:759.915000px;}
@media print{
.v2_c00251{vertical-align:-21.760000pt;}
.v0_c00251{vertical-align:0.000000pt;}
.v1_c00251{vertical-align:26.880000pt;}
.ls11_c00251{letter-spacing:-0.159616pt;}
.ls10_c00251{letter-spacing:0.000000pt;}
.ls21_c00251{letter-spacing:0.128000pt;}
.ls13_c00251{letter-spacing:0.215168pt;}
.ls15_c00251{letter-spacing:0.236160pt;}
.lse_c00251{letter-spacing:0.262400pt;}
.ls8_c00251{letter-spacing:0.283093pt;}
.ls18_c00251{letter-spacing:0.283392pt;}
.lsd_c00251{letter-spacing:0.283627pt;}
.ls14_c00251{letter-spacing:0.292114pt;}
.ls19_c00251{letter-spacing:0.425088pt;}
.lsc_c00251{letter-spacing:0.438171pt;}
.ls4_c00251{letter-spacing:0.472320pt;}
.ls3_c00251{letter-spacing:0.487956pt;}
.ls5_c00251{letter-spacing:0.493312pt;}
.lsa_c00251{letter-spacing:0.498560pt;}
.ls12_c00251{letter-spacing:0.584228pt;}
.ls16_c00251{letter-spacing:0.614016pt;}
.ls1a_c00251{letter-spacing:0.619264pt;}
.ls9_c00251{letter-spacing:0.632913pt;}
.ls1b_c00251{letter-spacing:0.681599pt;}
.lsb_c00251{letter-spacing:0.730724pt;}
.ls1d_c00251{letter-spacing:0.855424pt;}
.ls6_c00251{letter-spacing:4.663360pt;}
.ls20_c00251{letter-spacing:4.665472pt;}
.ls7_c00251{letter-spacing:4.758613pt;}
.ls17_c00251{letter-spacing:4.854400pt;}
.ls0_c00251{letter-spacing:5.312000pt;}
.lsf_c00251{letter-spacing:5.475484pt;}
.ls1_c00251{letter-spacing:6.272000pt;}
.ls1e_c00251{letter-spacing:7.667328pt;}
.ls1c_c00251{letter-spacing:11.624320pt;}
.ls1f_c00251{letter-spacing:31.697920pt;}
.ls2_c00251{letter-spacing:48.768000pt;}
.ws2_c00251{word-spacing:-19.443840pt;}
.ws8_c00251{word-spacing:-19.254912pt;}
.ws6_c00251{word-spacing:-15.720049pt;}
.ws3_c00251{word-spacing:-15.671364pt;}
.ws7_c00251{word-spacing:-15.476621pt;}
.ws1_c00251{word-spacing:-15.330564pt;}
.ws9_c00251{word-spacing:-15.203456pt;}
.ws5_c00251{word-spacing:-15.061760pt;}
.ws4_c00251{word-spacing:-14.872832pt;}
.ws0_c00251{word-spacing:-10.159744pt;}
.wsa_c00251{word-spacing:-9.024000pt;}
.wsb_c00251{word-spacing:0.000000pt;}
._1a_c00251{margin-left:-31.225600pt;}
._15_c00251{margin-left:-12.012480pt;}
._14_c00251{margin-left:-10.987627pt;}
._18_c00251{margin-left:-7.032320pt;}
._b_c00251{margin-left:-0.919617pt;}
._0_c00251{width:0.960000pt;}
._1_c00251{width:2.112000pt;}
._a_c00251{width:3.008000pt;}
._8_c00251{width:4.608000pt;}
._7_c00251{width:5.888000pt;}
._4_c00251{width:6.912000pt;}
._d_c00251{width:7.924480pt;}
._3_c00251{width:9.728000pt;}
._2_c00251{width:11.456000pt;}
._5_c00251{width:12.544000pt;}
._9_c00251{width:13.696000pt;}
._17_c00251{width:16.478720pt;}
._6_c00251{width:20.480000pt;}
._12_c00251{width:21.464747pt;}
._e_c00251{width:23.353600pt;}
._13_c00251{width:26.256213pt;}
._c_c00251{width:28.562237pt;}
._19_c00251{width:30.963200pt;}
._f_c00251{width:58.357760pt;}
._10_c00251{width:59.666946pt;}
._16_c00251{width:88.283278pt;}
._11_c00251{width:106.296962pt;}
.fs5_c00251{font-size:32.000000pt;}
.fs2_c00251{font-size:37.120000pt;}
.fs3_c00251{font-size:52.480000pt;}
.fs6_c00251{font-size:53.333333pt;}
.fs4_c00251{font-size:54.095146pt;}
.fs0_c00251{font-size:64.000000pt;}
.fs1_c00251{font-size:65.969690pt;}
.y0_c00251{bottom:0.000000pt;}
.y46_c00251{bottom:2.773467pt;}
.y45_c00251{bottom:30.884000pt;}
.y1_c00251{bottom:48.000000pt;}
.y44_c00251{bottom:54.760000pt;}
.y43_c00251{bottom:70.120000pt;}
.y42_c00251{bottom:93.800000pt;}
.y3d_c00251{bottom:124.520000pt;}
.y3c_c00251{bottom:140.200000pt;}
.y3b_c00251{bottom:155.880000pt;}
.y41_c00251{bottom:156.200000pt;}
.y3a_c00251{bottom:171.240000pt;}
.y40_c00251{bottom:171.560000pt;}
.y39_c00251{bottom:186.920000pt;}
.y3f_c00251{bottom:187.240000pt;}
.y38_c00251{bottom:202.280000pt;}
.y3e_c00251{bottom:202.920000pt;}
.y35_c00251{bottom:217.960000pt;}
.y37_c00251{bottom:218.280000pt;}
.y34_c00251{bottom:233.640000pt;}
.y36_c00251{bottom:233.960000pt;}
.y33_c00251{bottom:249.320000pt;}
.y2d_c00251{bottom:265.640000pt;}
.y2c_c00251{bottom:281.320000pt;}
.y32_c00251{bottom:281.640000pt;}
.y2b_c00251{bottom:296.680000pt;}
.y31_c00251{bottom:297.000000pt;}
.y2a_c00251{bottom:312.360000pt;}
.y30_c00251{bottom:312.680000pt;}
.y29_c00251{bottom:328.040000pt;}
.y2f_c00251{bottom:328.360000pt;}
.y27_c00251{bottom:343.400000pt;}
.y2e_c00251{bottom:343.720000pt;}
.y26_c00251{bottom:359.080000pt;}
.y28_c00251{bottom:359.400000pt;}
.y25_c00251{bottom:375.080000pt;}
.y24_c00251{bottom:390.440000pt;}
.y1e_c00251{bottom:406.760000pt;}
.y1d_c00251{bottom:422.120000pt;}
.y23_c00251{bottom:422.440000pt;}
.y1c_c00251{bottom:437.800000pt;}
.y22_c00251{bottom:438.120000pt;}
.y20_c00251{bottom:453.160000pt;}
.y1b_c00251{bottom:453.480000pt;}
.y1a_c00251{bottom:468.840000pt;}
.y21_c00251{bottom:469.160000pt;}
.y19_c00251{bottom:484.520000pt;}
.y1f_c00251{bottom:484.840000pt;}
.y18_c00251{bottom:500.200000pt;}
.y17_c00251{bottom:515.880000pt;}
.y16_c00251{bottom:545.640000pt;}
.y15_c00251{bottom:577.640000pt;}
.y14_c00251{bottom:596.200000pt;}
.y13_c00251{bottom:615.080000pt;}
.y12_c00251{bottom:633.640000pt;}
.y11_c00251{bottom:665.640000pt;}
.y10_c00251{bottom:684.200000pt;}
.yf_c00251{bottom:703.080000pt;}
.ye_c00251{bottom:721.640000pt;}
.yd_c00251{bottom:740.200000pt;}
.yc_c00251{bottom:772.200000pt;}
.yb_c00251{bottom:791.080000pt;}
.ya_c00251{bottom:809.640000pt;}
.y9_c00251{bottom:828.520000pt;}
.y8_c00251{bottom:843.879867pt;}
.y7_c00251{bottom:862.759867pt;}
.y6_c00251{bottom:894.759867pt;}
.y5_c00251{bottom:926.760000pt;}
.y4_c00251{bottom:945.320000pt;}
.y3_c00251{bottom:964.840000pt;}
.y2_c00251{bottom:1011.880000pt;}
.hb_c00251{height:17.116000pt;}
.ha_c00251{height:28.992000pt;}
.h6_c00251{height:34.978125pt;}
.hc_c00251{height:41.173333pt;}
.h8_c00251{height:41.761453pt;}
.h7_c00251{height:47.546880pt;}
.h9_c00251{height:49.010202pt;}
.h4_c00251{height:50.928601pt;}
.h3_c00251{height:57.984000pt;}
.h5_c00251{height:60.510720pt;}
.h2_c00251{height:1067.880000pt;}
.h0_c00251{height:1122.520000pt;}
.h1_c00251{height:1122.666667pt;}
.w7_c00251{width:22.240000pt;}
.w3_c00251{width:35.200000pt;}
.w5_c00251{width:103.360000pt;}
.w6_c00251{width:199.360000pt;}
.w4_c00251{width:235.520000pt;}
.w2_c00251{width:767.960000pt;}
.w0_c00251{width:793.720000pt;}
.w1_c00251{width:794.000000pt;}
.x0_c00251{left:0.000000pt;}
.x17_c00251{left:7.040133pt;}
.x1e_c00251{left:11.159733pt;}
.x1_c00251{left:12.880000pt;}
.x1f_c00251{left:37.173467pt;}
.x2b_c00251{left:38.229600pt;}
.x24_c00251{left:41.856133pt;}
.x26_c00251{left:43.774133pt;}
.x2a_c00251{left:45.945733pt;}
.x1c_c00251{left:48.931867pt;}
.x1d_c00251{left:55.598533pt;}
.x35_c00251{left:58.005333pt;}
.x33_c00251{left:61.878533pt;}
.x2c_c00251{left:66.375733pt;}
.x37_c00251{left:67.451600pt;}
.x19_c00251{left:73.820267pt;}
.x27_c00251{left:79.677467pt;}
.x1a_c00251{left:87.589467pt;}
.x25_c00251{left:93.285600pt;}
.x21_c00251{left:94.687067pt;}
.x2d_c00251{left:96.392267pt;}
.x34_c00251{left:97.397733pt;}
.x2_c00251{left:100.480133pt;}
.x2e_c00251{left:101.955733pt;}
.x16_c00251{left:106.320000pt;}
.x31_c00251{left:109.640800pt;}
.x14_c00251{left:112.928000pt;}
.x32_c00251{left:121.515867pt;}
.x6_c00251{left:124.477867pt;}
.x5_c00251{left:131.583600pt;}
.x2f_c00251{left:133.464933pt;}
.x3_c00251{left:136.927733pt;}
.xc_c00251{left:139.583333pt;}
.x18_c00251{left:142.160000pt;}
.x28_c00251{left:147.449467pt;}
.x7_c00251{left:148.480133pt;}
.x8_c00251{left:160.449600pt;}
.x36_c00251{left:165.720400pt;}
.x20_c00251{left:174.428400pt;}
.x29_c00251{left:175.595600pt;}
.xd_c00251{left:176.910800pt;}
.x30_c00251{left:181.267333pt;}
.x4_c00251{left:193.806933pt;}
.x15_c00251{left:221.358000pt;}
.x1b_c00251{left:225.186800pt;}
.x9_c00251{left:237.776400pt;}
.xa_c00251{left:277.970667pt;}
.xb_c00251{left:325.073867pt;}
.x22_c00251{left:378.320000pt;}
.xe_c00251{left:392.852267pt;}
.xf_c00251{left:404.388000pt;}
.x12_c00251{left:431.292000pt;}
.x13_c00251{left:442.827867pt;}
.x23_c00251{left:482.320000pt;}
.x10_c00251{left:623.783467pt;}
.x11_c00251{left:632.679333pt;}
.x38_c00251{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d2e2caf41357fd62343d186c.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.134000;font-style:normal;font-weight:normal;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_2156c8da96e57cd616dde5bf.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;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:ff3_c00252;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_b3d64f5d6df998d168d2b029.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:0.787000;font-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_c00252{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00252{vertical-align:-24.480000px;}
.v0_c00252{vertical-align:0.000000px;}
.v1_c00252{vertical-align:30.240000px;}
.ls20_c00252{letter-spacing:-0.179568px;}
.ls16_c00252{letter-spacing:0.000000px;}
.ls21_c00252{letter-spacing:0.144000px;}
.ls22_c00252{letter-spacing:0.265680px;}
.lsf_c00252{letter-spacing:0.295200px;}
.ls37_c00252{letter-spacing:0.312912px;}
.lsd_c00252{letter-spacing:0.318816px;}
.lsb_c00252{letter-spacing:0.324720px;}
.lse_c00252{letter-spacing:0.328628px;}
.ls18_c00252{letter-spacing:0.330480px;}
.ls35_c00252{letter-spacing:0.371952px;}
.ls2b_c00252{letter-spacing:0.383399px;}
.ls0_c00252{letter-spacing:0.388800px;}
.ls2_c00252{letter-spacing:0.395280px;}
.ls36_c00252{letter-spacing:0.425088px;}
.ls2f_c00252{letter-spacing:0.438171px;}
.ls13_c00252{letter-spacing:0.478224px;}
.ls14_c00252{letter-spacing:0.531360px;}
.ls10_c00252{letter-spacing:0.543168px;}
.ls30_c00252{letter-spacing:0.547713px;}
.ls26_c00252{letter-spacing:0.602485px;}
.ls1d_c00252{letter-spacing:0.602640px;}
.ls5_c00252{letter-spacing:0.654480px;}
.ls25_c00252{letter-spacing:0.657256px;}
.ls6_c00252{letter-spacing:0.660960px;}
.ls3_c00252{letter-spacing:0.667440px;}
.lsa_c00252{letter-spacing:0.712027px;}
.ls38_c00252{letter-spacing:0.743904px;}
.ls28_c00252{letter-spacing:0.766799px;}
.ls23_c00252{letter-spacing:0.797040px;}
.ls1e_c00252{letter-spacing:0.861840px;}
.ls17_c00252{letter-spacing:0.868320px;}
.ls4_c00252{letter-spacing:0.888364px;}
.ls1_c00252{letter-spacing:0.895044px;}
.ls1c_c00252{letter-spacing:0.933120px;}
.ls19_c00252{letter-spacing:0.961838px;}
.ls1b_c00252{letter-spacing:1.010880px;}
.ls1a_c00252{letter-spacing:1.198800px;}
.ls31_c00252{letter-spacing:1.298880px;}
.ls32_c00252{letter-spacing:1.700352px;}
.lsc_c00252{letter-spacing:2.833920px;}
.ls24_c00252{letter-spacing:2.839824px;}
.ls2e_c00252{letter-spacing:3.583728px;}
.ls33_c00252{letter-spacing:5.248656px;}
.ls11_c00252{letter-spacing:5.372640px;}
.ls1f_c00252{letter-spacing:5.430672px;}
.ls2d_c00252{letter-spacing:5.455296px;}
.ls29_c00252{letter-spacing:5.514336px;}
.ls12_c00252{letter-spacing:5.785920px;}
.ls7_c00252{letter-spacing:5.975400px;}
.ls8_c00252{letter-spacing:5.976000px;}
.ls15_c00252{letter-spacing:6.159920px;}
.ls27_c00252{letter-spacing:9.145296px;}
.ls9_c00252{letter-spacing:12.744000px;}
.ls34_c00252{letter-spacing:15.291360px;}
.ls2a_c00252{letter-spacing:15.468480px;}
.ls2c_c00252{letter-spacing:16.112016px;}
.sc__c00252{text-shadow:none;}
.sc1_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00252{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc1_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00252{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsd_c00252{word-spacing:-21.661776px;}
.ws4_c00252{word-spacing:-21.043152px;}
.ws6_c00252{word-spacing:-20.016000px;}
.ws1_c00252{word-spacing:-19.463862px;}
.ws3_c00252{word-spacing:-19.457183px;}
.ws0_c00252{word-spacing:-18.882720px;}
.ws2_c00252{word-spacing:-18.681840px;}
.wsb_c00252{word-spacing:-17.685056px;}
.ws8_c00252{word-spacing:-17.630284px;}
.ws9_c00252{word-spacing:-17.575513px;}
.wsc_c00252{word-spacing:-17.301656px;}
.wsa_c00252{word-spacing:-17.246885px;}
.wse_c00252{word-spacing:-16.838208px;}
.ws5_c00252{word-spacing:-11.429712px;}
.ws7_c00252{word-spacing:-10.152000px;}
.wsf_c00252{word-spacing:0.000000px;}
._d_c00252{margin-left:-14.859072px;}
._b_c00252{margin-left:-8.844192px;}
._c_c00252{margin-left:-2.207520px;}
._0_c00252{margin-left:-1.101600px;}
._2_c00252{width:1.036800px;}
._5_c00252{width:2.475360px;}
._a_c00252{width:4.325760px;}
._9_c00252{width:5.610240px;}
._4_c00252{width:7.205760px;}
._3_c00252{width:8.540640px;}
._8_c00252{width:10.390226px;}
._1_c00252{width:12.376800px;}
._6_c00252{width:13.932000px;}
._7_c00252{width:14.968800px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs6_c00252{font-size:36.000000px;}
.fs5_c00252{font-size:41.760000px;}
.fs4_c00252{font-size:56.160000px;}
.fs7_c00252{font-size:59.040000px;}
.fs9_c00252{font-size:60.000000px;}
.fs8_c00252{font-size:60.857039px;}
.fs2_c00252{font-size:64.800000px;}
.fs3_c00252{font-size:66.794311px;}
.fs0_c00252{font-size:72.000000px;}
.fs1_c00252{font-size:74.215901px;}
.y0_c00252{bottom:0.000000px;}
.y43_c00252{bottom:3.120150px;}
.y42_c00252{bottom:34.744500px;}
.y1_c00252{bottom:54.000000px;}
.y40_c00252{bottom:55.475280px;}
.y41_c00252{bottom:55.485000px;}
.y3f_c00252{bottom:72.759240px;}
.y3e_c00252{bottom:90.766440px;}
.y3d_c00252{bottom:108.050400px;}
.y3c_c00252{bottom:125.688600px;}
.y3b_c00252{bottom:143.326800px;}
.y3a_c00252{bottom:167.085000px;}
.y39_c00252{bottom:178.605000px;}
.y38_c00252{bottom:178.606800px;}
.y36_c00252{bottom:196.241040px;}
.y37_c00252{bottom:196.245000px;}
.y35_c00252{bottom:213.525000px;}
.y34_c00252{bottom:213.526800px;}
.y33_c00252{bottom:237.285000px;}
.y32_c00252{bottom:248.445000px;}
.y31_c00252{bottom:248.446800px;}
.y30_c00252{bottom:266.085000px;}
.y2f_c00252{bottom:266.086800px;}
.y2d_c00252{bottom:283.721040px;}
.y2e_c00252{bottom:283.725000px;}
.y2c_c00252{bottom:301.005000px;}
.y2b_c00252{bottom:301.006800px;}
.y2a_c00252{bottom:318.645000px;}
.y29_c00252{bottom:318.646800px;}
.y27_c00252{bottom:336.281040px;}
.y28_c00252{bottom:336.285000px;}
.y26_c00252{bottom:353.565000px;}
.y25_c00252{bottom:353.566800px;}
.y23_c00252{bottom:371.201040px;}
.y24_c00252{bottom:371.205000px;}
.y22_c00252{bottom:388.485000px;}
.y21_c00252{bottom:394.605000px;}
.y20_c00252{bottom:412.245000px;}
.y1f_c00252{bottom:423.765000px;}
.y1e_c00252{bottom:429.885000px;}
.y1d_c00252{bottom:456.525000px;}
.y1c_c00252{bottom:508.725000px;}
.y1b_c00252{bottom:530.325000px;}
.y1a_c00252{bottom:565.965000px;}
.y19_c00252{bottom:587.205000px;}
.y18_c00252{bottom:608.085000px;}
.y17_c00252{bottom:629.325000px;}
.y16_c00252{bottom:650.205000px;}
.y15_c00252{bottom:671.085000px;}
.y14_c00252{bottom:707.085000px;}
.y13_c00252{bottom:728.325000px;}
.y12_c00252{bottom:749.205000px;}
.y11_c00252{bottom:770.085000px;}
.y10_c00252{bottom:791.325000px;}
.yf_c00252{bottom:812.205000px;}
.ye_c00252{bottom:848.205000px;}
.yd_c00252{bottom:884.205000px;}
.yc_c00252{bottom:920.201400px;}
.yb_c00252{bottom:939.641400px;}
.ya_c00252{bottom:958.725000px;}
.y9_c00252{bottom:978.165000px;}
.y8_c00252{bottom:978.166800px;}
.y6_c00252{bottom:1012.361400px;}
.y7_c00252{bottom:1012.365000px;}
.y5_c00252{bottom:1031.445000px;}
.y4_c00252{bottom:1050.885000px;}
.y3_c00252{bottom:1085.085000px;}
.y2_c00252{bottom:1138.365000px;}
.hb_c00252{height:19.255500px;}
.h8_c00252{height:32.616000px;}
.hc_c00252{height:46.320000px;}
.h9_c00252{height:46.981634px;}
.h6_c00252{height:51.565208px;}
.ha_c00252{height:53.490240px;}
.h4_c00252{height:57.294676px;}
.h5_c00252{height:58.708800px;}
.h3_c00252{height:65.232000px;}
.h7_c00252{height:68.074560px;}
.h2_c00252{height:1201.365000px;}
.h0_c00252{height:1262.835000px;}
.h1_c00252{height:1263.000000px;}
.w3_c00252{width:25.020000px;}
.w2_c00252{width:863.955000px;}
.w0_c00252{width:892.935000px;}
.w1_c00252{width:893.250000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:14.490000px;}
.x2_c00252{left:113.040150px;}
.x4f_c00252{left:118.034850px;}
.xe_c00252{left:135.034050px;}
.x41_c00252{left:138.839400px;}
.x42_c00252{left:148.007850px;}
.x3_c00252{left:154.043700px;}
.x5_c00252{left:159.079800px;}
.x22_c00252{left:166.364100px;}
.x18_c00252{left:177.210900px;}
.x55_c00252{left:189.702450px;}
.x56_c00252{left:209.696400px;}
.x19_c00252{left:213.044700px;}
.x6_c00252{left:216.107700px;}
.x4_c00252{left:218.032800px;}
.x48_c00252{left:221.366850px;}
.x27_c00252{left:228.968700px;}
.x3c_c00252{left:242.307150px;}
.x28_c00252{left:246.103650px;}
.x12_c00252{left:248.914650px;}
.x3d_c00252{left:256.526700px;}
.x29_c00252{left:274.408050px;}
.x2e_c00252{left:281.595300px;}
.x2a_c00252{left:287.373000px;}
.x1a_c00252{left:294.700200px;}
.x36_c00252{left:307.402200px;}
.x13_c00252{left:309.518550px;}
.x3e_c00252{left:311.590500px;}
.x1b_c00252{left:314.694600px;}
.x37_c00252{left:317.038350px;}
.x53_c00252{left:329.722350px;}
.x4c_c00252{left:332.207100px;}
.x43_c00252{left:336.268800px;}
.xf_c00252{left:343.173300px;}
.x44_c00252{left:345.437250px;}
.x7_c00252{left:347.497950px;}
.x32_c00252{left:356.292900px;}
.xb_c00252{left:361.575000px;}
.x33_c00252{left:365.947200px;}
.x8_c00252{left:380.497500px;}
.x10_c00252{left:381.693900px;}
.x1e_c00252{left:388.435950px;}
.x49_c00252{left:396.380400px;}
.xc_c00252{left:400.036050px;}
.x9_c00252{left:403.601700px;}
.xa_c00252{left:408.358500px;}
.x50_c00252{left:410.484450px;}
.x16_c00252{left:415.971000px;}
.x14_c00252{left:432.567600px;}
.x2f_c00252{left:442.664400px;}
.xd_c00252{left:445.905450px;}
.x2b_c00252{left:450.065100px;}
.x1f_c00252{left:460.914600px;}
.x1c_c00252{left:465.589650px;}
.x1d_c00252{left:469.759200px;}
.x17_c00252{left:480.178350px;}
.x11_c00252{left:482.289900px;}
.x38_c00252{left:520.549500px;}
.x23_c00252{left:527.211150px;}
.x39_c00252{left:535.180350px;}
.x4a_c00252{left:536.400450px;}
.x24_c00252{left:542.765550px;}
.x54_c00252{left:547.216500px;}
.x45_c00252{left:548.720550px;}
.x2c_c00252{left:555.548550px;}
.x46_c00252{left:562.883700px;}
.x30_c00252{left:565.574250px;}
.x2d_c00252{left:568.513500px;}
.x4b_c00252{left:569.758650px;}
.x31_c00252{left:578.700150px;}
.x15_c00252{left:587.135400px;}
.x25_c00252{left:590.254800px;}
.x3f_c00252{left:604.353900px;}
.x40_c00252{left:613.578750px;}
.x4d_c00252{left:614.636700px;}
.x3a_c00252{left:638.158500px;}
.x47_c00252{left:639.561750px;}
.x26_c00252{left:646.773150px;}
.x3b_c00252{left:648.619650px;}
.x51_c00252{left:656.331000px;}
.x52_c00252{left:682.970550px;}
.x20_c00252{left:685.609500px;}
.x21_c00252{left:699.586350px;}
.x34_c00252{left:722.406300px;}
.x35_c00252{left:732.060750px;}
.x4e_c00252{left:750.390000px;}
.x57_c00252{left:759.915000px;}
@media print{
.v2_c00252{vertical-align:-21.760000pt;}
.v0_c00252{vertical-align:0.000000pt;}
.v1_c00252{vertical-align:26.880000pt;}
.ls20_c00252{letter-spacing:-0.159616pt;}
.ls16_c00252{letter-spacing:0.000000pt;}
.ls21_c00252{letter-spacing:0.128000pt;}
.ls22_c00252{letter-spacing:0.236160pt;}
.lsf_c00252{letter-spacing:0.262400pt;}
.ls37_c00252{letter-spacing:0.278144pt;}
.lsd_c00252{letter-spacing:0.283392pt;}
.lsb_c00252{letter-spacing:0.288640pt;}
.lse_c00252{letter-spacing:0.292114pt;}
.ls18_c00252{letter-spacing:0.293760pt;}
.ls35_c00252{letter-spacing:0.330624pt;}
.ls2b_c00252{letter-spacing:0.340799pt;}
.ls0_c00252{letter-spacing:0.345600pt;}
.ls2_c00252{letter-spacing:0.351360pt;}
.ls36_c00252{letter-spacing:0.377856pt;}
.ls2f_c00252{letter-spacing:0.389485pt;}
.ls13_c00252{letter-spacing:0.425088pt;}
.ls14_c00252{letter-spacing:0.472320pt;}
.ls10_c00252{letter-spacing:0.482816pt;}
.ls30_c00252{letter-spacing:0.486856pt;}
.ls26_c00252{letter-spacing:0.535542pt;}
.ls1d_c00252{letter-spacing:0.535680pt;}
.ls5_c00252{letter-spacing:0.581760pt;}
.ls25_c00252{letter-spacing:0.584228pt;}
.ls6_c00252{letter-spacing:0.587520pt;}
.ls3_c00252{letter-spacing:0.593280pt;}
.lsa_c00252{letter-spacing:0.632913pt;}
.ls38_c00252{letter-spacing:0.661248pt;}
.ls28_c00252{letter-spacing:0.681599pt;}
.ls23_c00252{letter-spacing:0.708480pt;}
.ls1e_c00252{letter-spacing:0.766080pt;}
.ls17_c00252{letter-spacing:0.771840pt;}
.ls4_c00252{letter-spacing:0.789657pt;}
.ls1_c00252{letter-spacing:0.795594pt;}
.ls1c_c00252{letter-spacing:0.829440pt;}
.ls19_c00252{letter-spacing:0.854967pt;}
.ls1b_c00252{letter-spacing:0.898560pt;}
.ls1a_c00252{letter-spacing:1.065600pt;}
.ls31_c00252{letter-spacing:1.154560pt;}
.ls32_c00252{letter-spacing:1.511424pt;}
.lsc_c00252{letter-spacing:2.519040pt;}
.ls24_c00252{letter-spacing:2.524288pt;}
.ls2e_c00252{letter-spacing:3.185536pt;}
.ls33_c00252{letter-spacing:4.665472pt;}
.ls11_c00252{letter-spacing:4.775680pt;}
.ls1f_c00252{letter-spacing:4.827264pt;}
.ls2d_c00252{letter-spacing:4.849152pt;}
.ls29_c00252{letter-spacing:4.901632pt;}
.ls12_c00252{letter-spacing:5.143040pt;}
.ls7_c00252{letter-spacing:5.311467pt;}
.ls8_c00252{letter-spacing:5.312000pt;}
.ls15_c00252{letter-spacing:5.475484pt;}
.ls27_c00252{letter-spacing:8.129152pt;}
.ls9_c00252{letter-spacing:11.328000pt;}
.ls34_c00252{letter-spacing:13.592320pt;}
.ls2a_c00252{letter-spacing:13.749760pt;}
.ls2c_c00252{letter-spacing:14.321792pt;}
.wsd_c00252{word-spacing:-19.254912pt;}
.ws4_c00252{word-spacing:-18.705024pt;}
.ws6_c00252{word-spacing:-17.792000pt;}
.ws1_c00252{word-spacing:-17.301211pt;}
.ws3_c00252{word-spacing:-17.295274pt;}
.ws0_c00252{word-spacing:-16.784640pt;}
.ws2_c00252{word-spacing:-16.606080pt;}
.wsb_c00252{word-spacing:-15.720049pt;}
.ws8_c00252{word-spacing:-15.671364pt;}
.ws9_c00252{word-spacing:-15.622678pt;}
.wsc_c00252{word-spacing:-15.379250pt;}
.wsa_c00252{word-spacing:-15.330564pt;}
.wse_c00252{word-spacing:-14.967296pt;}
.ws5_c00252{word-spacing:-10.159744pt;}
.ws7_c00252{word-spacing:-9.024000pt;}
.wsf_c00252{word-spacing:0.000000pt;}
._d_c00252{margin-left:-13.208064pt;}
._b_c00252{margin-left:-7.861504pt;}
._c_c00252{margin-left:-1.962240pt;}
._0_c00252{margin-left:-0.979200pt;}
._2_c00252{width:0.921600pt;}
._5_c00252{width:2.200320pt;}
._a_c00252{width:3.845120pt;}
._9_c00252{width:4.986880pt;}
._4_c00252{width:6.405120pt;}
._3_c00252{width:7.591680pt;}
._8_c00252{width:9.235757pt;}
._1_c00252{width:11.001600pt;}
._6_c00252{width:12.384000pt;}
._7_c00252{width:13.305600pt;}
.fs6_c00252{font-size:32.000000pt;}
.fs5_c00252{font-size:37.120000pt;}
.fs4_c00252{font-size:49.920000pt;}
.fs7_c00252{font-size:52.480000pt;}
.fs9_c00252{font-size:53.333333pt;}
.fs8_c00252{font-size:54.095146pt;}
.fs2_c00252{font-size:57.600000pt;}
.fs3_c00252{font-size:59.372721pt;}
.fs0_c00252{font-size:64.000000pt;}
.fs1_c00252{font-size:65.969690pt;}
.y0_c00252{bottom:0.000000pt;}
.y43_c00252{bottom:2.773467pt;}
.y42_c00252{bottom:30.884000pt;}
.y1_c00252{bottom:48.000000pt;}
.y40_c00252{bottom:49.311360pt;}
.y41_c00252{bottom:49.320000pt;}
.y3f_c00252{bottom:64.674880pt;}
.y3e_c00252{bottom:80.681280pt;}
.y3d_c00252{bottom:96.044800pt;}
.y3c_c00252{bottom:111.723200pt;}
.y3b_c00252{bottom:127.401600pt;}
.y3a_c00252{bottom:148.520000pt;}
.y39_c00252{bottom:158.760000pt;}
.y38_c00252{bottom:158.761600pt;}
.y36_c00252{bottom:174.436480pt;}
.y37_c00252{bottom:174.440000pt;}
.y35_c00252{bottom:189.800000pt;}
.y34_c00252{bottom:189.801600pt;}
.y33_c00252{bottom:210.920000pt;}
.y32_c00252{bottom:220.840000pt;}
.y31_c00252{bottom:220.841600pt;}
.y30_c00252{bottom:236.520000pt;}
.y2f_c00252{bottom:236.521600pt;}
.y2d_c00252{bottom:252.196480pt;}
.y2e_c00252{bottom:252.200000pt;}
.y2c_c00252{bottom:267.560000pt;}
.y2b_c00252{bottom:267.561600pt;}
.y2a_c00252{bottom:283.240000pt;}
.y29_c00252{bottom:283.241600pt;}
.y27_c00252{bottom:298.916480pt;}
.y28_c00252{bottom:298.920000pt;}
.y26_c00252{bottom:314.280000pt;}
.y25_c00252{bottom:314.281600pt;}
.y23_c00252{bottom:329.956480pt;}
.y24_c00252{bottom:329.960000pt;}
.y22_c00252{bottom:345.320000pt;}
.y21_c00252{bottom:350.760000pt;}
.y20_c00252{bottom:366.440000pt;}
.y1f_c00252{bottom:376.680000pt;}
.y1e_c00252{bottom:382.120000pt;}
.y1d_c00252{bottom:405.800000pt;}
.y1c_c00252{bottom:452.200000pt;}
.y1b_c00252{bottom:471.400000pt;}
.y1a_c00252{bottom:503.080000pt;}
.y19_c00252{bottom:521.960000pt;}
.y18_c00252{bottom:540.520000pt;}
.y17_c00252{bottom:559.400000pt;}
.y16_c00252{bottom:577.960000pt;}
.y15_c00252{bottom:596.520000pt;}
.y14_c00252{bottom:628.520000pt;}
.y13_c00252{bottom:647.400000pt;}
.y12_c00252{bottom:665.960000pt;}
.y11_c00252{bottom:684.520000pt;}
.y10_c00252{bottom:703.400000pt;}
.yf_c00252{bottom:721.960000pt;}
.ye_c00252{bottom:753.960000pt;}
.yd_c00252{bottom:785.960000pt;}
.yc_c00252{bottom:817.956800pt;}
.yb_c00252{bottom:835.236800pt;}
.ya_c00252{bottom:852.200000pt;}
.y9_c00252{bottom:869.480000pt;}
.y8_c00252{bottom:869.481600pt;}
.y6_c00252{bottom:899.876800pt;}
.y7_c00252{bottom:899.880000pt;}
.y5_c00252{bottom:916.840000pt;}
.y4_c00252{bottom:934.120000pt;}
.y3_c00252{bottom:964.520000pt;}
.y2_c00252{bottom:1011.880000pt;}
.hb_c00252{height:17.116000pt;}
.h8_c00252{height:28.992000pt;}
.hc_c00252{height:41.173333pt;}
.h9_c00252{height:41.761453pt;}
.h6_c00252{height:45.835741pt;}
.ha_c00252{height:47.546880pt;}
.h4_c00252{height:50.928601pt;}
.h5_c00252{height:52.185600pt;}
.h3_c00252{height:57.984000pt;}
.h7_c00252{height:60.510720pt;}
.h2_c00252{height:1067.880000pt;}
.h0_c00252{height:1122.520000pt;}
.h1_c00252{height:1122.666667pt;}
.w3_c00252{width:22.240000pt;}
.w2_c00252{width:767.960000pt;}
.w0_c00252{width:793.720000pt;}
.w1_c00252{width:794.000000pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:12.880000pt;}
.x2_c00252{left:100.480133pt;}
.x4f_c00252{left:104.919867pt;}
.xe_c00252{left:120.030267pt;}
.x41_c00252{left:123.412800pt;}
.x42_c00252{left:131.562533pt;}
.x3_c00252{left:136.927733pt;}
.x5_c00252{left:141.404267pt;}
.x22_c00252{left:147.879200pt;}
.x18_c00252{left:157.520800pt;}
.x55_c00252{left:168.624400pt;}
.x56_c00252{left:186.396800pt;}
.x19_c00252{left:189.373067pt;}
.x6_c00252{left:192.095733pt;}
.x4_c00252{left:193.806933pt;}
.x48_c00252{left:196.770533pt;}
.x27_c00252{left:203.527733pt;}
.x3c_c00252{left:215.384133pt;}
.x28_c00252{left:218.758800pt;}
.x12_c00252{left:221.257467pt;}
.x3d_c00252{left:228.023733pt;}
.x29_c00252{left:243.918267pt;}
.x2e_c00252{left:250.306933pt;}
.x2a_c00252{left:255.442667pt;}
.x1a_c00252{left:261.955733pt;}
.x36_c00252{left:273.246400pt;}
.x13_c00252{left:275.127600pt;}
.x3e_c00252{left:276.969333pt;}
.x1b_c00252{left:279.728533pt;}
.x37_c00252{left:281.811867pt;}
.x53_c00252{left:293.086533pt;}
.x4c_c00252{left:295.295200pt;}
.x43_c00252{left:298.905600pt;}
.xf_c00252{left:305.042933pt;}
.x44_c00252{left:307.055333pt;}
.x7_c00252{left:308.887067pt;}
.x32_c00252{left:316.704800pt;}
.xb_c00252{left:321.400000pt;}
.x33_c00252{left:325.286400pt;}
.x8_c00252{left:338.220000pt;}
.x10_c00252{left:339.283467pt;}
.x1e_c00252{left:345.276400pt;}
.x49_c00252{left:352.338133pt;}
.xc_c00252{left:355.587600pt;}
.x9_c00252{left:358.757067pt;}
.xa_c00252{left:362.985333pt;}
.x50_c00252{left:364.875067pt;}
.x16_c00252{left:369.752000pt;}
.x14_c00252{left:384.504533pt;}
.x2f_c00252{left:393.479467pt;}
.xd_c00252{left:396.360400pt;}
.x2b_c00252{left:400.057867pt;}
.x1f_c00252{left:409.701867pt;}
.x1c_c00252{left:413.857467pt;}
.x1d_c00252{left:417.563733pt;}
.x17_c00252{left:426.825200pt;}
.x11_c00252{left:428.702133pt;}
.x38_c00252{left:462.710667pt;}
.x23_c00252{left:468.632133pt;}
.x39_c00252{left:475.715867pt;}
.x4a_c00252{left:476.800400pt;}
.x24_c00252{left:482.458267pt;}
.x54_c00252{left:486.414667pt;}
.x45_c00252{left:487.751600pt;}
.x2c_c00252{left:493.820933pt;}
.x46_c00252{left:500.341067pt;}
.x30_c00252{left:502.732667pt;}
.x2d_c00252{left:505.345333pt;}
.x4b_c00252{left:506.452133pt;}
.x31_c00252{left:514.400133pt;}
.x15_c00252{left:521.898133pt;}
.x25_c00252{left:524.670933pt;}
.x3f_c00252{left:537.203467pt;}
.x40_c00252{left:545.403333pt;}
.x4d_c00252{left:546.343733pt;}
.x3a_c00252{left:567.252000pt;}
.x47_c00252{left:568.499333pt;}
.x26_c00252{left:574.909467pt;}
.x3b_c00252{left:576.550800pt;}
.x51_c00252{left:583.405333pt;}
.x52_c00252{left:607.084933pt;}
.x20_c00252{left:609.430667pt;}
.x21_c00252{left:621.854533pt;}
.x34_c00252{left:642.138933pt;}
.x35_c00252{left:650.720667pt;}
.x4e_c00252{left:667.013333pt;}
.x57_c00252{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_165af95a1c70f71fa7fe8562.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.134000;font-style:normal;font-weight:normal;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_3fa388f50ad4103914d3a3c5.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;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:ff3_c00253;src:url('chunks/assets/font_e51098372bf5b015a2eaf212.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:0.787000;font-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_c00253{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v1_c00253{vertical-align:-30.240000px;}
.v2_c00253{vertical-align:-24.480000px;}
.v0_c00253{vertical-align:0.000000px;}
.ls4_c00253{letter-spacing:-0.179568px;}
.ls3_c00253{letter-spacing:0.000000px;}
.ls7_c00253{letter-spacing:0.144000px;}
.ls8_c00253{letter-spacing:0.265680px;}
.ls6_c00253{letter-spacing:5.335200px;}
.ls0_c00253{letter-spacing:5.975400px;}
.ls1_c00253{letter-spacing:5.976000px;}
.ls2_c00253{letter-spacing:6.159920px;}
.ls5_c00253{letter-spacing:13.759200px;}
.sc__c00253{text-shadow:none;}
.sc1_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00253{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc1_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00253{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00253{word-spacing:-20.947680px;}
.ws0_c00253{word-spacing:-11.429712px;}
.ws2_c00253{word-spacing:-10.152000px;}
.ws3_c00253{word-spacing:0.000000px;}
._5_c00253{margin-left:-13.766400px;}
._7_c00253{width:1.512000px;}
._8_c00253{width:3.096000px;}
._3_c00253{width:4.104000px;}
._6_c00253{width:9.428995px;}
._2_c00253{width:11.351457px;}
._1_c00253{width:12.468271px;}
._4_c00253{width:14.175237px;}
._0_c00253{width:18.648000px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs4_c00253{font-size:36.000000px;}
.fs2_c00253{font-size:41.760000px;}
.fs3_c00253{font-size:56.160000px;}
.fs5_c00253{font-size:59.040000px;}
.fs6_c00253{font-size:60.000000px;}
.fs0_c00253{font-size:72.000000px;}
.fs1_c00253{font-size:74.215901px;}
.y0_c00253{bottom:0.000000px;}
.y17_c00253{bottom:3.120150px;}
.y16_c00253{bottom:34.744500px;}
.y1_c00253{bottom:54.000000px;}
.y15_c00253{bottom:61.605000px;}
.y14_c00253{bottom:88.245000px;}
.y13_c00253{bottom:694.845000px;}
.y12_c00253{bottom:716.085000px;}
.y11_c00253{bottom:736.965000px;}
.y10_c00253{bottom:757.845000px;}
.yf_c00253{bottom:779.085000px;}
.ye_c00253{bottom:815.085000px;}
.yd_c00253{bottom:851.085000px;}
.yc_c00253{bottom:887.085000px;}
.yb_c00253{bottom:907.965000px;}
.ya_c00253{bottom:928.845000px;}
.y9_c00253{bottom:964.845000px;}
.y8_c00253{bottom:986.085000px;}
.y7_c00253{bottom:1006.965000px;}
.y6_c00253{bottom:1027.845000px;}
.y4_c00253{bottom:1063.845000px;}
.y5_c00253{bottom:1071.405000px;}
.y3_c00253{bottom:1085.085000px;}
.y2_c00253{bottom:1138.365000px;}
.h7_c00253{height:19.255500px;}
.h6_c00253{height:32.616000px;}
.h5_c00253{height:37.834560px;}
.h8_c00253{height:46.320000px;}
.h4_c00253{height:57.294676px;}
.h3_c00253{height:65.232000px;}
.h2_c00253{height:1201.365000px;}
.h0_c00253{height:1262.835000px;}
.h1_c00253{height:1263.000000px;}
.w3_c00253{width:25.020000px;}
.w2_c00253{width:863.955000px;}
.w0_c00253{width:892.935000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:14.490000px;}
.x2_c00253{left:113.040150px;}
.x3_c00253{left:154.043700px;}
.x11_c00253{left:173.069100px;}
.x7_c00253{left:180.035550px;}
.x4_c00253{left:218.032800px;}
.x8_c00253{left:300.960000px;}
.x15_c00253{left:314.007150px;}
.x14_c00253{left:343.173300px;}
.x9_c00253{left:345.169950px;}
.x16_c00253{left:374.036100px;}
.xe_c00253{left:429.811800px;}
.x17_c00253{left:439.650150px;}
.xf_c00253{left:455.701200px;}
.x18_c00253{left:494.675100px;}
.x10_c00253{left:508.728150px;}
.x12_c00253{left:542.153400px;}
.xa_c00253{left:591.340950px;}
.x5_c00253{left:645.707550px;}
.xb_c00253{left:667.354200px;}
.xc_c00253{left:678.391050px;}
.x6_c00253{left:700.732500px;}
.x13_c00253{left:722.168400px;}
.xd_c00253{left:745.386150px;}
.x19_c00253{left:759.915000px;}
@media print{
.v1_c00253{vertical-align:-26.880000pt;}
.v2_c00253{vertical-align:-21.760000pt;}
.v0_c00253{vertical-align:0.000000pt;}
.ls4_c00253{letter-spacing:-0.159616pt;}
.ls3_c00253{letter-spacing:0.000000pt;}
.ls7_c00253{letter-spacing:0.128000pt;}
.ls8_c00253{letter-spacing:0.236160pt;}
.ls6_c00253{letter-spacing:4.742400pt;}
.ls0_c00253{letter-spacing:5.311467pt;}
.ls1_c00253{letter-spacing:5.312000pt;}
.ls2_c00253{letter-spacing:5.475484pt;}
.ls5_c00253{letter-spacing:12.230400pt;}
.ws1_c00253{word-spacing:-18.620160pt;}
.ws0_c00253{word-spacing:-10.159744pt;}
.ws2_c00253{word-spacing:-9.024000pt;}
.ws3_c00253{word-spacing:0.000000pt;}
._5_c00253{margin-left:-12.236800pt;}
._7_c00253{width:1.344000pt;}
._8_c00253{width:2.752000pt;}
._3_c00253{width:3.648000pt;}
._6_c00253{width:8.381329pt;}
._2_c00253{width:10.090184pt;}
._1_c00253{width:11.082908pt;}
._4_c00253{width:12.600211pt;}
._0_c00253{width:16.576000pt;}
.fs4_c00253{font-size:32.000000pt;}
.fs2_c00253{font-size:37.120000pt;}
.fs3_c00253{font-size:49.920000pt;}
.fs5_c00253{font-size:52.480000pt;}
.fs6_c00253{font-size:53.333333pt;}
.fs0_c00253{font-size:64.000000pt;}
.fs1_c00253{font-size:65.969690pt;}
.y0_c00253{bottom:0.000000pt;}
.y17_c00253{bottom:2.773467pt;}
.y16_c00253{bottom:30.884000pt;}
.y1_c00253{bottom:48.000000pt;}
.y15_c00253{bottom:54.760000pt;}
.y14_c00253{bottom:78.440000pt;}
.y13_c00253{bottom:617.640000pt;}
.y12_c00253{bottom:636.520000pt;}
.y11_c00253{bottom:655.080000pt;}
.y10_c00253{bottom:673.640000pt;}
.yf_c00253{bottom:692.520000pt;}
.ye_c00253{bottom:724.520000pt;}
.yd_c00253{bottom:756.520000pt;}
.yc_c00253{bottom:788.520000pt;}
.yb_c00253{bottom:807.080000pt;}
.ya_c00253{bottom:825.640000pt;}
.y9_c00253{bottom:857.640000pt;}
.y8_c00253{bottom:876.520000pt;}
.y7_c00253{bottom:895.080000pt;}
.y6_c00253{bottom:913.640000pt;}
.y4_c00253{bottom:945.640000pt;}
.y5_c00253{bottom:952.360000pt;}
.y3_c00253{bottom:964.520000pt;}
.y2_c00253{bottom:1011.880000pt;}
.h7_c00253{height:17.116000pt;}
.h6_c00253{height:28.992000pt;}
.h5_c00253{height:33.630720pt;}
.h8_c00253{height:41.173333pt;}
.h4_c00253{height:50.928601pt;}
.h3_c00253{height:57.984000pt;}
.h2_c00253{height:1067.880000pt;}
.h0_c00253{height:1122.520000pt;}
.h1_c00253{height:1122.666667pt;}
.w3_c00253{width:22.240000pt;}
.w2_c00253{width:767.960000pt;}
.w0_c00253{width:793.720000pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:12.880000pt;}
.x2_c00253{left:100.480133pt;}
.x3_c00253{left:136.927733pt;}
.x11_c00253{left:153.839200pt;}
.x7_c00253{left:160.031600pt;}
.x4_c00253{left:193.806933pt;}
.x8_c00253{left:267.520000pt;}
.x15_c00253{left:279.117467pt;}
.x14_c00253{left:305.042933pt;}
.x9_c00253{left:306.817733pt;}
.x16_c00253{left:332.476533pt;}
.xe_c00253{left:382.054933pt;}
.x17_c00253{left:390.800133pt;}
.xf_c00253{left:405.067733pt;}
.x18_c00253{left:439.711200pt;}
.x10_c00253{left:452.202800pt;}
.x12_c00253{left:481.914133pt;}
.xa_c00253{left:525.636400pt;}
.x5_c00253{left:573.962267pt;}
.xb_c00253{left:593.203733pt;}
.xc_c00253{left:603.014267pt;}
.x6_c00253{left:622.873333pt;}
.x13_c00253{left:641.927467pt;}
.xd_c00253{left:662.565467pt;}
.x19_c00253{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_864a577eae324992221f288a.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;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_c00254;src:url('chunks/assets/font_f0e11aa00a11bf8224aa89ed.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_137ef2b59d9b2f24e3328865.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:0.787000;font-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_c00254{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00254{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls2_c00254{letter-spacing:0.000000px;}
.ls5_c00254{letter-spacing:0.202464px;}
.ls3_c00254{letter-spacing:0.399600px;}
.ls4_c00254{letter-spacing:0.450342px;}
.ls0_c00254{letter-spacing:5.976000px;}
.ls1_c00254{letter-spacing:6.159920px;}
.sc__c00254{text-shadow:none;}
.sc1_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00254{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc1_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00254{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00254{word-spacing:-15.718037px;}
.ws1_c00254{word-spacing:0.000000px;}
._0_c00254{margin-left:-1.118880px;}
._1_c00254{width:1.012320px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs2_c00254{font-size:53.280000px;}
.fs3_c00254{font-size:54.919767px;}
.fs4_c00254{font-size:60.000000px;}
.fs0_c00254{font-size:72.000000px;}
.fs1_c00254{font-size:74.215901px;}
.y0_c00254{bottom:0.000000px;}
.y1c_c00254{bottom:3.120150px;}
.y1b_c00254{bottom:34.744500px;}
.y19_c00254{bottom:41.040000px;}
.y1_c00254{bottom:54.000000px;}
.y17_c00254{bottom:238.725000px;}
.y1a_c00254{bottom:319.365000px;}
.y16_c00254{bottom:337.725000px;}
.y15_c00254{bottom:373.725000px;}
.y14_c00254{bottom:409.725000px;}
.y13_c00254{bottom:445.725000px;}
.y12_c00254{bottom:481.725000px;}
.y11_c00254{bottom:517.725000px;}
.y10_c00254{bottom:554.085000px;}
.yf_c00254{bottom:590.085000px;}
.ye_c00254{bottom:626.085000px;}
.yd_c00254{bottom:662.085000px;}
.yc_c00254{bottom:698.085000px;}
.y18_c00254{bottom:778.365000px;}
.yb_c00254{bottom:797.085000px;}
.ya_c00254{bottom:833.085000px;}
.y9_c00254{bottom:869.085000px;}
.y8_c00254{bottom:905.085000px;}
.y7_c00254{bottom:941.085000px;}
.y6_c00254{bottom:977.085000px;}
.y5_c00254{bottom:1013.085000px;}
.y4_c00254{bottom:1049.085000px;}
.y3_c00254{bottom:1085.085000px;}
.y2_c00254{bottom:1138.365000px;}
.h8_c00254{height:19.255500px;}
.h6_c00254{height:41.132160px;}
.h7_c00254{height:42.398060px;}
.h9_c00254{height:46.320000px;}
.h5_c00254{height:54.000000px;}
.h3_c00254{height:55.584000px;}
.h4_c00254{height:57.294676px;}
.h2_c00254{height:1201.365000px;}
.h0_c00254{height:1262.835000px;}
.h1_c00254{height:1263.000000px;}
.w5_c00254{width:25.020000px;}
.w3_c00254{width:646.560000px;}
.w4_c00254{width:681.840000px;}
.w2_c00254{width:863.955000px;}
.w0_c00254{width:892.935000px;}
.w1_c00254{width:893.250000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:14.490000px;}
.xa_c00254{left:38.558250px;}
.x6_c00254{left:42.399450px;}
.x2_c00254{left:113.040150px;}
.x9_c00254{left:124.290000px;}
.x5_c00254{left:132.570000px;}
.x7_c00254{left:152.706300px;}
.x3_c00254{left:154.043700px;}
.x8_c00254{left:193.974900px;}
.x4_c00254{left:218.032800px;}
.xb_c00254{left:759.915000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls2_c00254{letter-spacing:0.000000pt;}
.ls5_c00254{letter-spacing:0.179968pt;}
.ls3_c00254{letter-spacing:0.355200pt;}
.ls4_c00254{letter-spacing:0.400304pt;}
.ls0_c00254{letter-spacing:5.312000pt;}
.ls1_c00254{letter-spacing:5.475484pt;}
.ws0_c00254{word-spacing:-13.971589pt;}
.ws1_c00254{word-spacing:0.000000pt;}
._0_c00254{margin-left:-0.994560pt;}
._1_c00254{width:0.899840pt;}
.fs2_c00254{font-size:47.360000pt;}
.fs3_c00254{font-size:48.817571pt;}
.fs4_c00254{font-size:53.333333pt;}
.fs0_c00254{font-size:64.000000pt;}
.fs1_c00254{font-size:65.969690pt;}
.y0_c00254{bottom:0.000000pt;}
.y1c_c00254{bottom:2.773467pt;}
.y1b_c00254{bottom:30.884000pt;}
.y19_c00254{bottom:36.480000pt;}
.y1_c00254{bottom:48.000000pt;}
.y17_c00254{bottom:212.200000pt;}
.y1a_c00254{bottom:283.880000pt;}
.y16_c00254{bottom:300.200000pt;}
.y15_c00254{bottom:332.200000pt;}
.y14_c00254{bottom:364.200000pt;}
.y13_c00254{bottom:396.200000pt;}
.y12_c00254{bottom:428.200000pt;}
.y11_c00254{bottom:460.200000pt;}
.y10_c00254{bottom:492.520000pt;}
.yf_c00254{bottom:524.520000pt;}
.ye_c00254{bottom:556.520000pt;}
.yd_c00254{bottom:588.520000pt;}
.yc_c00254{bottom:620.520000pt;}
.y18_c00254{bottom:691.880000pt;}
.yb_c00254{bottom:708.520000pt;}
.ya_c00254{bottom:740.520000pt;}
.y9_c00254{bottom:772.520000pt;}
.y8_c00254{bottom:804.520000pt;}
.y7_c00254{bottom:836.520000pt;}
.y6_c00254{bottom:868.520000pt;}
.y5_c00254{bottom:900.520000pt;}
.y4_c00254{bottom:932.520000pt;}
.y3_c00254{bottom:964.520000pt;}
.y2_c00254{bottom:1011.880000pt;}
.h8_c00254{height:17.116000pt;}
.h6_c00254{height:36.561920pt;}
.h7_c00254{height:37.687165pt;}
.h9_c00254{height:41.173333pt;}
.h5_c00254{height:48.000000pt;}
.h3_c00254{height:49.408000pt;}
.h4_c00254{height:50.928601pt;}
.h2_c00254{height:1067.880000pt;}
.h0_c00254{height:1122.520000pt;}
.h1_c00254{height:1122.666667pt;}
.w5_c00254{width:22.240000pt;}
.w3_c00254{width:574.720000pt;}
.w4_c00254{width:606.080000pt;}
.w2_c00254{width:767.960000pt;}
.w0_c00254{width:793.720000pt;}
.w1_c00254{width:794.000000pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:12.880000pt;}
.xa_c00254{left:34.274000pt;}
.x6_c00254{left:37.688400pt;}
.x2_c00254{left:100.480133pt;}
.x9_c00254{left:110.480000pt;}
.x5_c00254{left:117.840000pt;}
.x7_c00254{left:135.738933pt;}
.x3_c00254{left:136.927733pt;}
.x8_c00254{left:172.422133pt;}
.x4_c00254{left:193.806933pt;}
.xb_c00254{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea78722d39fba03c8381749d.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;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_c00255;src:url('chunks/assets/font_3b319e92cd528e69bf0b8158.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_66bd3b7dde29fe479481bcbf.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:0.787000;font-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_c00255{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00255{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls2_c00255{letter-spacing:0.000000px;}
.ls8_c00255{letter-spacing:0.319680px;}
.ls6_c00255{letter-spacing:0.399600px;}
.ls7_c00255{letter-spacing:0.450342px;}
.ls5_c00255{letter-spacing:4.720608px;}
.ls3_c00255{letter-spacing:4.880448px;}
.ls4_c00255{letter-spacing:4.923072px;}
.ls0_c00255{letter-spacing:5.976000px;}
.ls1_c00255{letter-spacing:6.159920px;}
.sc__c00255{text-shadow:none;}
.sc2_c00255{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00255{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc2_c00255{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00255{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00255{word-spacing:-19.532448px;}
.ws1_c00255{word-spacing:0.000000px;}
._0_c00255{margin-left:-1.118880px;}
._1_c00255{width:1.065600px;}
.fc2_c00255{color:transparent;}
.fc1_c00255{color:rgb(79,129,189);}
.fc0_c00255{color:rgb(0,0,0);}
.fs2_c00255{font-size:53.280000px;}
.fs3_c00255{font-size:54.919767px;}
.fs4_c00255{font-size:60.000000px;}
.fs0_c00255{font-size:72.000000px;}
.fs1_c00255{font-size:74.215901px;}
.y0_c00255{bottom:0.000000px;}
.y1f_c00255{bottom:3.120150px;}
.y1e_c00255{bottom:34.744500px;}
.y1d_c00255{bottom:41.040000px;}
.y1b_c00255{bottom:52.560000px;}
.y1_c00255{bottom:54.000000px;}
.y1a_c00255{bottom:68.400000px;}
.y1c_c00255{bottom:238.365000px;}
.y18_c00255{bottom:244.845000px;}
.y17_c00255{bottom:280.845000px;}
.y16_c00255{bottom:316.845000px;}
.y15_c00255{bottom:352.845000px;}
.y14_c00255{bottom:388.845000px;}
.y13_c00255{bottom:424.845000px;}
.y12_c00255{bottom:460.845000px;}
.y11_c00255{bottom:496.845000px;}
.y10_c00255{bottom:532.845000px;}
.yf_c00255{bottom:568.845000px;}
.ye_c00255{bottom:604.845000px;}
.yd_c00255{bottom:640.845000px;}
.yc_c00255{bottom:676.845000px;}
.y19_c00255{bottom:751.365000px;}
.yb_c00255{bottom:797.085000px;}
.ya_c00255{bottom:833.085000px;}
.y9_c00255{bottom:869.085000px;}
.y8_c00255{bottom:905.085000px;}
.y7_c00255{bottom:941.085000px;}
.y6_c00255{bottom:977.085000px;}
.y5_c00255{bottom:1013.085000px;}
.y4_c00255{bottom:1049.085000px;}
.y3_c00255{bottom:1085.085000px;}
.y2_c00255{bottom:1138.365000px;}
.h9_c00255{height:19.255500px;}
.h6_c00255{height:41.132160px;}
.h8_c00255{height:42.398060px;}
.ha_c00255{height:46.320000px;}
.h7_c00255{height:54.000000px;}
.h3_c00255{height:55.584000px;}
.h4_c00255{height:57.294676px;}
.h5_c00255{height:81.000000px;}
.h2_c00255{height:1201.365000px;}
.h0_c00255{height:1262.835000px;}
.h1_c00255{height:1263.000000px;}
.w4_c00255{width:25.020000px;}
.w3_c00255{width:677.160000px;}
.w2_c00255{width:863.955000px;}
.w0_c00255{width:892.935000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.x8_c00255{left:7.439250px;}
.x6_c00255{left:12.888150px;}
.x1_c00255{left:14.490000px;}
.x2_c00255{left:113.040150px;}
.x7_c00255{left:114.486000px;}
.x9_c00255{left:117.746100px;}
.x5_c00255{left:128.970000px;}
.x3_c00255{left:154.043700px;}
.xa_c00255{left:162.767700px;}
.x4_c00255{left:218.032800px;}
.xb_c00255{left:759.915000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls2_c00255{letter-spacing:0.000000pt;}
.ls8_c00255{letter-spacing:0.284160pt;}
.ls6_c00255{letter-spacing:0.355200pt;}
.ls7_c00255{letter-spacing:0.400304pt;}
.ls5_c00255{letter-spacing:4.196096pt;}
.ls3_c00255{letter-spacing:4.338176pt;}
.ls4_c00255{letter-spacing:4.376064pt;}
.ls0_c00255{letter-spacing:5.312000pt;}
.ls1_c00255{letter-spacing:5.475484pt;}
.ws0_c00255{word-spacing:-17.362176pt;}
.ws1_c00255{word-spacing:0.000000pt;}
._0_c00255{margin-left:-0.994560pt;}
._1_c00255{width:0.947200pt;}
.fs2_c00255{font-size:47.360000pt;}
.fs3_c00255{font-size:48.817571pt;}
.fs4_c00255{font-size:53.333333pt;}
.fs0_c00255{font-size:64.000000pt;}
.fs1_c00255{font-size:65.969690pt;}
.y0_c00255{bottom:0.000000pt;}
.y1f_c00255{bottom:2.773467pt;}
.y1e_c00255{bottom:30.884000pt;}
.y1d_c00255{bottom:36.480000pt;}
.y1b_c00255{bottom:46.720000pt;}
.y1_c00255{bottom:48.000000pt;}
.y1a_c00255{bottom:60.800000pt;}
.y1c_c00255{bottom:211.880000pt;}
.y18_c00255{bottom:217.640000pt;}
.y17_c00255{bottom:249.640000pt;}
.y16_c00255{bottom:281.640000pt;}
.y15_c00255{bottom:313.640000pt;}
.y14_c00255{bottom:345.640000pt;}
.y13_c00255{bottom:377.640000pt;}
.y12_c00255{bottom:409.640000pt;}
.y11_c00255{bottom:441.640000pt;}
.y10_c00255{bottom:473.640000pt;}
.yf_c00255{bottom:505.640000pt;}
.ye_c00255{bottom:537.640000pt;}
.yd_c00255{bottom:569.640000pt;}
.yc_c00255{bottom:601.640000pt;}
.y19_c00255{bottom:667.880000pt;}
.yb_c00255{bottom:708.520000pt;}
.ya_c00255{bottom:740.520000pt;}
.y9_c00255{bottom:772.520000pt;}
.y8_c00255{bottom:804.520000pt;}
.y7_c00255{bottom:836.520000pt;}
.y6_c00255{bottom:868.520000pt;}
.y5_c00255{bottom:900.520000pt;}
.y4_c00255{bottom:932.520000pt;}
.y3_c00255{bottom:964.520000pt;}
.y2_c00255{bottom:1011.880000pt;}
.h9_c00255{height:17.116000pt;}
.h6_c00255{height:36.561920pt;}
.h8_c00255{height:37.687165pt;}
.ha_c00255{height:41.173333pt;}
.h7_c00255{height:48.000000pt;}
.h3_c00255{height:49.408000pt;}
.h4_c00255{height:50.928601pt;}
.h5_c00255{height:72.000000pt;}
.h2_c00255{height:1067.880000pt;}
.h0_c00255{height:1122.520000pt;}
.h1_c00255{height:1122.666667pt;}
.w4_c00255{width:22.240000pt;}
.w3_c00255{width:601.920000pt;}
.w2_c00255{width:767.960000pt;}
.w0_c00255{width:793.720000pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.x8_c00255{left:6.612667pt;}
.x6_c00255{left:11.456133pt;}
.x1_c00255{left:12.880000pt;}
.x2_c00255{left:100.480133pt;}
.x7_c00255{left:101.765333pt;}
.x9_c00255{left:104.663200pt;}
.x5_c00255{left:114.640000pt;}
.x3_c00255{left:136.927733pt;}
.xa_c00255{left:144.682400pt;}
.x4_c00255{left:193.806933pt;}
.xb_c00255{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9987ec764d5abfc6874172b.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_3eedf9777102c1dd609975d1.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;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:ff3_c00256;src:url('chunks/assets/font_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00256;src:url('chunks/assets/font_137ef2b59d9b2f24e3328865.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:0.787000;font-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_c00256{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00256{vertical-align:-24.480000px;}
.v0_c00256{vertical-align:0.000000px;}
.v1_c00256{vertical-align:30.240000px;}
.ls12_c00256{letter-spacing:0.000000px;}
.ls6_c00256{letter-spacing:0.200640px;}
.ls3_c00256{letter-spacing:0.243240px;}
.ls7_c00256{letter-spacing:0.265680px;}
.lsa_c00256{letter-spacing:0.295200px;}
.ls16_c00256{letter-spacing:0.318816px;}
.ls1a_c00256{letter-spacing:0.438171px;}
.ls9_c00256{letter-spacing:0.501840px;}
.lsd_c00256{letter-spacing:0.513648px;}
.lsc_c00256{letter-spacing:0.531360px;}
.ls4_c00256{letter-spacing:0.546840px;}
.ls10_c00256{letter-spacing:0.547713px;}
.ls17_c00256{letter-spacing:0.602485px;}
.ls18_c00256{letter-spacing:0.657256px;}
.ls1d_c00256{letter-spacing:0.690768px;}
.ls15_c00256{letter-spacing:0.696672px;}
.lsb_c00256{letter-spacing:0.712027px;}
.ls14_c00256{letter-spacing:0.821570px;}
.ls13_c00256{letter-spacing:5.163646px;}
.ls2_c00256{letter-spacing:5.335200px;}
.lse_c00256{letter-spacing:5.372640px;}
.ls1b_c00256{letter-spacing:5.514336px;}
.ls19_c00256{letter-spacing:5.780016px;}
.lsf_c00256{letter-spacing:5.785920px;}
.ls1_c00256{letter-spacing:5.976000px;}
.ls0_c00256{letter-spacing:6.159301px;}
.ls11_c00256{letter-spacing:6.159920px;}
.ls1c_c00256{letter-spacing:7.196976px;}
.ls8_c00256{letter-spacing:9.859680px;}
.ls5_c00256{letter-spacing:63.648000px;}
.sc__c00256{text-shadow:none;}
.sc1_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00256{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc1_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00256{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00256{word-spacing:-25.992000px;}
.ws0_c00256{word-spacing:-21.256622px;}
.ws2_c00256{word-spacing:-20.947680px;}
.ws4_c00256{word-spacing:-20.016000px;}
.wsa_c00256{word-spacing:-17.630284px;}
.ws9_c00256{word-spacing:-17.575513px;}
.ws8_c00256{word-spacing:-17.520742px;}
.ws6_c00256{word-spacing:-17.109792px;}
.ws7_c00256{word-spacing:-16.944480px;}
.ws3_c00256{word-spacing:-11.609280px;}
.ws5_c00256{word-spacing:-10.008000px;}
.wsb_c00256{word-spacing:0.000000px;}
._12_c00256{margin-left:-6.730560px;}
._10_c00256{margin-left:-1.064400px;}
._4_c00256{width:1.296000px;}
._5_c00256{width:3.168000px;}
._c_c00256{width:4.392000px;}
._0_c00256{width:5.437080px;}
._6_c00256{width:6.696000px;}
._d_c00256{width:7.704000px;}
._e_c00256{width:8.784000px;}
._11_c00256{width:9.918720px;}
._b_c00256{width:13.104000px;}
._2_c00256{width:14.184000px;}
._1_c00256{width:16.056000px;}
._f_c00256{width:21.024000px;}
._3_c00256{width:22.680000px;}
._8_c00256{width:24.780480px;}
._7_c00256{width:25.900440px;}
._a_c00256{width:44.568000px;}
._9_c00256{width:57.672000px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs5_c00256{font-size:36.000000px;}
.fs4_c00256{font-size:41.760000px;}
.fs3_c00256{font-size:56.160000px;}
.fs2_c00256{font-size:57.888403px;}
.fs6_c00256{font-size:59.040000px;}
.fs8_c00256{font-size:60.000000px;}
.fs7_c00256{font-size:60.857039px;}
.fs0_c00256{font-size:72.000000px;}
.fs1_c00256{font-size:74.215901px;}
.y0_c00256{bottom:0.000000px;}
.y33_c00256{bottom:3.120150px;}
.y32_c00256{bottom:34.744500px;}
.y1_c00256{bottom:54.000000px;}
.y31_c00256{bottom:61.605000px;}
.y30_c00256{bottom:73.125000px;}
.y2f_c00256{bottom:73.126800px;}
.y2e_c00256{bottom:90.765000px;}
.y2d_c00256{bottom:96.885000px;}
.y2c_c00256{bottom:114.165000px;}
.y2b_c00256{bottom:131.805000px;}
.y29_c00256{bottom:143.681040px;}
.y2a_c00256{bottom:143.685000px;}
.y28_c00256{bottom:160.965000px;}
.y27_c00256{bottom:167.085000px;}
.y26_c00256{bottom:178.605000px;}
.y25_c00256{bottom:178.606800px;}
.y24_c00256{bottom:202.365000px;}
.y23_c00256{bottom:213.525000px;}
.y22_c00256{bottom:219.645000px;}
.y21_c00256{bottom:246.285000px;}
.y20_c00256{bottom:320.445000px;}
.y1f_c00256{bottom:356.445000px;}
.y1e_c00256{bottom:377.325000px;}
.y1d_c00256{bottom:398.565000px;}
.y1c_c00256{bottom:434.565000px;}
.y1b_c00256{bottom:455.445000px;}
.y1a_c00256{bottom:476.325000px;}
.y19_c00256{bottom:497.565000px;}
.y18_c00256{bottom:518.445000px;}
.y17_c00256{bottom:539.325000px;}
.y16_c00256{bottom:560.565000px;}
.y15_c00256{bottom:581.445000px;}
.y14_c00256{bottom:602.325000px;}
.y13_c00256{bottom:638.685000px;}
.y12_c00256{bottom:660.285000px;}
.y11_c00256{bottom:680.805000px;}
.y10_c00256{bottom:702.045000px;}
.yf_c00256{bottom:722.925000px;}
.ye_c00256{bottom:759.645000px;}
.yd_c00256{bottom:780.525000px;}
.yc_c00256{bottom:816.525000px;}
.yb_c00256{bottom:852.525000px;}
.ya_c00256{bottom:890.685000px;}
.y9_c00256{bottom:928.845000px;}
.y8_c00256{bottom:964.845000px;}
.y7_c00256{bottom:986.085000px;}
.y6_c00256{bottom:1006.965000px;}
.y5_c00256{bottom:1027.845000px;}
.y4_c00256{bottom:1049.085000px;}
.y3_c00256{bottom:1085.085000px;}
.y2_c00256{bottom:1138.365000px;}
.h9_c00256{height:19.255500px;}
.h6_c00256{height:32.616000px;}
.ha_c00256{height:46.320000px;}
.h7_c00256{height:46.981634px;}
.h8_c00256{height:53.490240px;}
.h4_c00256{height:57.294676px;}
.h3_c00256{height:65.232000px;}
.h5_c00256{height:68.074560px;}
.h2_c00256{height:1201.365000px;}
.h0_c00256{height:1262.835000px;}
.h1_c00256{height:1263.000000px;}
.w3_c00256{width:25.020000px;}
.w2_c00256{width:863.955000px;}
.w0_c00256{width:892.935000px;}
.w1_c00256{width:893.250000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:14.490000px;}
.x2_c00256{left:113.040150px;}
.x20_c00256{left:126.058650px;}
.x21_c00256{left:146.052900px;}
.x3_c00256{left:154.043700px;}
.x19_c00256{left:155.571900px;}
.x5_c00256{left:163.507650px;}
.x9_c00256{left:172.024950px;}
.x1b_c00256{left:184.723050px;}
.x1a_c00256{left:193.070400px;}
.x4_c00256{left:204.532800px;}
.xa_c00256{left:220.048050px;}
.xb_c00256{left:226.299000px;}
.x24_c00256{left:259.146150px;}
.x25_c00256{left:290.067600px;}
.x1c_c00256{left:298.074450px;}
.xc_c00256{left:301.614300px;}
.x26_c00256{left:309.683700px;}
.x17_c00256{left:319.047000px;}
.x11_c00256{left:328.082850px;}
.x27_c00256{left:329.677650px;}
.x1d_c00256{left:332.243400px;}
.x12_c00256{left:341.078550px;}
.x18_c00256{left:348.044250px;}
.x13_c00256{left:351.086400px;}
.x14_c00256{left:389.101650px;}
.x15_c00256{left:395.095500px;}
.x8_c00256{left:414.462150px;}
.x16_c00256{left:477.138000px;}
.x1e_c00256{left:506.477100px;}
.x22_c00256{left:527.641800px;}
.xd_c00256{left:541.783050px;}
.x23_c00256{left:547.635750px;}
.x1f_c00256{left:578.100300px;}
.xf_c00256{left:611.844750px;}
.xe_c00256{left:630.385950px;}
.x6_c00256{left:634.033050px;}
.x10_c00256{left:637.854150px;}
.x7_c00256{left:701.045550px;}
.x28_c00256{left:759.915000px;}
@media print{
.v2_c00256{vertical-align:-21.760000pt;}
.v0_c00256{vertical-align:0.000000pt;}
.v1_c00256{vertical-align:26.880000pt;}
.ls12_c00256{letter-spacing:0.000000pt;}
.ls6_c00256{letter-spacing:0.178347pt;}
.ls3_c00256{letter-spacing:0.216213pt;}
.ls7_c00256{letter-spacing:0.236160pt;}
.lsa_c00256{letter-spacing:0.262400pt;}
.ls16_c00256{letter-spacing:0.283392pt;}
.ls1a_c00256{letter-spacing:0.389485pt;}
.ls9_c00256{letter-spacing:0.446080pt;}
.lsd_c00256{letter-spacing:0.456576pt;}
.lsc_c00256{letter-spacing:0.472320pt;}
.ls4_c00256{letter-spacing:0.486080pt;}
.ls10_c00256{letter-spacing:0.486856pt;}
.ls17_c00256{letter-spacing:0.535542pt;}
.ls18_c00256{letter-spacing:0.584228pt;}
.ls1d_c00256{letter-spacing:0.614016pt;}
.ls15_c00256{letter-spacing:0.619264pt;}
.lsb_c00256{letter-spacing:0.632913pt;}
.ls14_c00256{letter-spacing:0.730284pt;}
.ls13_c00256{letter-spacing:4.589907pt;}
.ls2_c00256{letter-spacing:4.742400pt;}
.lse_c00256{letter-spacing:4.775680pt;}
.ls1b_c00256{letter-spacing:4.901632pt;}
.ls19_c00256{letter-spacing:5.137792pt;}
.lsf_c00256{letter-spacing:5.143040pt;}
.ls1_c00256{letter-spacing:5.312000pt;}
.ls0_c00256{letter-spacing:5.474935pt;}
.ls11_c00256{letter-spacing:5.475484pt;}
.ls1c_c00256{letter-spacing:6.397312pt;}
.ls8_c00256{letter-spacing:8.764160pt;}
.ls5_c00256{letter-spacing:56.576000pt;}
.ws1_c00256{word-spacing:-23.104000pt;}
.ws0_c00256{word-spacing:-18.894775pt;}
.ws2_c00256{word-spacing:-18.620160pt;}
.ws4_c00256{word-spacing:-17.792000pt;}
.wsa_c00256{word-spacing:-15.671364pt;}
.ws9_c00256{word-spacing:-15.622678pt;}
.ws8_c00256{word-spacing:-15.573992pt;}
.ws6_c00256{word-spacing:-15.208704pt;}
.ws7_c00256{word-spacing:-15.061760pt;}
.ws3_c00256{word-spacing:-10.319360pt;}
.ws5_c00256{word-spacing:-8.896000pt;}
.wsb_c00256{word-spacing:0.000000pt;}
._12_c00256{margin-left:-5.982720pt;}
._10_c00256{margin-left:-0.946133pt;}
._4_c00256{width:1.152000pt;}
._5_c00256{width:2.816000pt;}
._c_c00256{width:3.904000pt;}
._0_c00256{width:4.832960pt;}
._6_c00256{width:5.952000pt;}
._d_c00256{width:6.848000pt;}
._e_c00256{width:7.808000pt;}
._11_c00256{width:8.816640pt;}
._b_c00256{width:11.648000pt;}
._2_c00256{width:12.608000pt;}
._1_c00256{width:14.272000pt;}
._f_c00256{width:18.688000pt;}
._3_c00256{width:20.160000pt;}
._8_c00256{width:22.027093pt;}
._7_c00256{width:23.022613pt;}
._a_c00256{width:39.616000pt;}
._9_c00256{width:51.264000pt;}
.fs5_c00256{font-size:32.000000pt;}
.fs4_c00256{font-size:37.120000pt;}
.fs3_c00256{font-size:49.920000pt;}
.fs2_c00256{font-size:51.456358pt;}
.fs6_c00256{font-size:52.480000pt;}
.fs8_c00256{font-size:53.333333pt;}
.fs7_c00256{font-size:54.095146pt;}
.fs0_c00256{font-size:64.000000pt;}
.fs1_c00256{font-size:65.969690pt;}
.y0_c00256{bottom:0.000000pt;}
.y33_c00256{bottom:2.773467pt;}
.y32_c00256{bottom:30.884000pt;}
.y1_c00256{bottom:48.000000pt;}
.y31_c00256{bottom:54.760000pt;}
.y30_c00256{bottom:65.000000pt;}
.y2f_c00256{bottom:65.001600pt;}
.y2e_c00256{bottom:80.680000pt;}
.y2d_c00256{bottom:86.120000pt;}
.y2c_c00256{bottom:101.480000pt;}
.y2b_c00256{bottom:117.160000pt;}
.y29_c00256{bottom:127.716480pt;}
.y2a_c00256{bottom:127.720000pt;}
.y28_c00256{bottom:143.080000pt;}
.y27_c00256{bottom:148.520000pt;}
.y26_c00256{bottom:158.760000pt;}
.y25_c00256{bottom:158.761600pt;}
.y24_c00256{bottom:179.880000pt;}
.y23_c00256{bottom:189.800000pt;}
.y22_c00256{bottom:195.240000pt;}
.y21_c00256{bottom:218.920000pt;}
.y20_c00256{bottom:284.840000pt;}
.y1f_c00256{bottom:316.840000pt;}
.y1e_c00256{bottom:335.400000pt;}
.y1d_c00256{bottom:354.280000pt;}
.y1c_c00256{bottom:386.280000pt;}
.y1b_c00256{bottom:404.840000pt;}
.y1a_c00256{bottom:423.400000pt;}
.y19_c00256{bottom:442.280000pt;}
.y18_c00256{bottom:460.840000pt;}
.y17_c00256{bottom:479.400000pt;}
.y16_c00256{bottom:498.280000pt;}
.y15_c00256{bottom:516.840000pt;}
.y14_c00256{bottom:535.400000pt;}
.y13_c00256{bottom:567.720000pt;}
.y12_c00256{bottom:586.920000pt;}
.y11_c00256{bottom:605.160000pt;}
.y10_c00256{bottom:624.040000pt;}
.yf_c00256{bottom:642.600000pt;}
.ye_c00256{bottom:675.240000pt;}
.yd_c00256{bottom:693.800000pt;}
.yc_c00256{bottom:725.800000pt;}
.yb_c00256{bottom:757.800000pt;}
.ya_c00256{bottom:791.720000pt;}
.y9_c00256{bottom:825.640000pt;}
.y8_c00256{bottom:857.640000pt;}
.y7_c00256{bottom:876.520000pt;}
.y6_c00256{bottom:895.080000pt;}
.y5_c00256{bottom:913.640000pt;}
.y4_c00256{bottom:932.520000pt;}
.y3_c00256{bottom:964.520000pt;}
.y2_c00256{bottom:1011.880000pt;}
.h9_c00256{height:17.116000pt;}
.h6_c00256{height:28.992000pt;}
.ha_c00256{height:41.173333pt;}
.h7_c00256{height:41.761453pt;}
.h8_c00256{height:47.546880pt;}
.h4_c00256{height:50.928601pt;}
.h3_c00256{height:57.984000pt;}
.h5_c00256{height:60.510720pt;}
.h2_c00256{height:1067.880000pt;}
.h0_c00256{height:1122.520000pt;}
.h1_c00256{height:1122.666667pt;}
.w3_c00256{width:22.240000pt;}
.w2_c00256{width:767.960000pt;}
.w0_c00256{width:793.720000pt;}
.w1_c00256{width:794.000000pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:12.880000pt;}
.x2_c00256{left:100.480133pt;}
.x20_c00256{left:112.052133pt;}
.x21_c00256{left:129.824800pt;}
.x3_c00256{left:136.927733pt;}
.x19_c00256{left:138.286133pt;}
.x5_c00256{left:145.340133pt;}
.x9_c00256{left:152.911067pt;}
.x1b_c00256{left:164.198267pt;}
.x1a_c00256{left:171.618133pt;}
.x4_c00256{left:181.806933pt;}
.xa_c00256{left:195.598267pt;}
.xb_c00256{left:201.154667pt;}
.x24_c00256{left:230.352133pt;}
.x25_c00256{left:257.837867pt;}
.x1c_c00256{left:264.955067pt;}
.xc_c00256{left:268.101600pt;}
.x26_c00256{left:275.274400pt;}
.x17_c00256{left:283.597333pt;}
.x11_c00256{left:291.629200pt;}
.x27_c00256{left:293.046800pt;}
.x1d_c00256{left:295.327467pt;}
.x12_c00256{left:303.180933pt;}
.x18_c00256{left:309.372667pt;}
.x13_c00256{left:312.076800pt;}
.x14_c00256{left:345.868133pt;}
.x15_c00256{left:351.196000pt;}
.x8_c00256{left:368.410800pt;}
.x16_c00256{left:424.122667pt;}
.x1e_c00256{left:450.201867pt;}
.x22_c00256{left:469.014933pt;}
.xd_c00256{left:481.584933pt;}
.x23_c00256{left:486.787333pt;}
.x1f_c00256{left:513.866933pt;}
.xf_c00256{left:543.862000pt;}
.xe_c00256{left:560.343067pt;}
.x6_c00256{left:563.584933pt;}
.x10_c00256{left:566.981467pt;}
.x7_c00256{left:623.151600pt;}
.x28_c00256{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0a23b3dd854f306213281e8.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_76966e0de7a389480cc3dfc4.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;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:ff3_c00257;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00257;src:url('chunks/assets/font_7cb484ebaa97ff57a3270b1f.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:0.787000;font-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_c00257{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00257{vertical-align:-24.480000px;}
.v0_c00257{vertical-align:0.000000px;}
.v1_c00257{vertical-align:30.240000px;}
.ls11_c00257{letter-spacing:-0.179568px;}
.lsf_c00257{letter-spacing:0.000000px;}
.ls16_c00257{letter-spacing:0.144000px;}
.ls8_c00257{letter-spacing:0.261685px;}
.ls1b_c00257{letter-spacing:0.265680px;}
.ls5_c00257{letter-spacing:0.295200px;}
.ls9_c00257{letter-spacing:0.318816px;}
.ls14_c00257{letter-spacing:0.371952px;}
.ls13_c00257{letter-spacing:0.425088px;}
.ls3_c00257{letter-spacing:0.438171px;}
.ls6_c00257{letter-spacing:0.531360px;}
.ls4_c00257{letter-spacing:0.537264px;}
.ls7_c00257{letter-spacing:0.547713px;}
.ls1d_c00257{letter-spacing:0.584496px;}
.ls23_c00257{letter-spacing:0.602485px;}
.ls1f_c00257{letter-spacing:0.657256px;}
.ls2_c00257{letter-spacing:0.671040px;}
.ls29_c00257{letter-spacing:0.690768px;}
.ls18_c00257{letter-spacing:0.696672px;}
.ls20_c00257{letter-spacing:0.712027px;}
.ls24_c00257{letter-spacing:0.718113px;}
.ls1_c00257{letter-spacing:0.738840px;}
.ls25_c00257{letter-spacing:0.766799px;}
.ls1c_c00257{letter-spacing:0.962352px;}
.ls26_c00257{letter-spacing:2.290752px;}
.ls17_c00257{letter-spacing:4.191840px;}
.ls21_c00257{letter-spacing:5.295888px;}
.lsb_c00257{letter-spacing:5.372640px;}
.ls10_c00257{letter-spacing:5.430672px;}
.ls27_c00257{letter-spacing:5.514336px;}
.ls22_c00257{letter-spacing:5.567472px;}
.ls28_c00257{letter-spacing:5.780016px;}
.lsc_c00257{letter-spacing:5.785920px;}
.lsd_c00257{letter-spacing:5.976000px;}
.ls0_c00257{letter-spacing:5.980800px;}
.lse_c00257{letter-spacing:6.159920px;}
.ls19_c00257{letter-spacing:8.212464px;}
.ls1e_c00257{letter-spacing:8.531280px;}
.ls15_c00257{letter-spacing:9.044928px;}
.lsa_c00257{letter-spacing:10.993248px;}
.ls12_c00257{letter-spacing:12.935664px;}
.ls1a_c00257{letter-spacing:16.413120px;}
.sc__c00257{text-shadow:none;}
.sc1_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00257{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc1_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00257{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00257{word-spacing:-21.980592px;}
.ws8_c00257{word-spacing:-21.709008px;}
.ws0_c00257{word-spacing:-21.043152px;}
.ws1_c00257{word-spacing:-20.016000px;}
.wsd_c00257{word-spacing:-17.685056px;}
.wsc_c00257{word-spacing:-17.636370px;}
.ws9_c00257{word-spacing:-17.630284px;}
.wsb_c00257{word-spacing:-17.520742px;}
.ws7_c00257{word-spacing:-17.465970px;}
.ws4_c00257{word-spacing:-17.356428px;}
.ws5_c00257{word-spacing:-16.944480px;}
.wse_c00257{word-spacing:-16.731936px;}
.ws2_c00257{word-spacing:-11.429712px;}
.ws6_c00257{word-spacing:-10.152000px;}
.ws3_c00257{word-spacing:-10.008000px;}
.wsf_c00257{word-spacing:0.000000px;}
._17_c00257{margin-left:-16.110720px;}
._18_c00257{margin-left:-15.068160px;}
._10_c00257{margin-left:-13.638240px;}
._f_c00257{margin-left:-12.398400px;}
._13_c00257{margin-left:-9.741600px;}
._12_c00257{margin-left:-8.560800px;}
._16_c00257{margin-left:-6.848640px;}
._14_c00257{margin-left:-3.712320px;}
._19_c00257{margin-left:-2.709864px;}
._11_c00257{margin-left:-1.009656px;}
._2_c00257{width:1.008000px;}
._1_c00257{width:2.304000px;}
._0_c00257{width:3.456000px;}
._e_c00257{width:4.464000px;}
._b_c00257{width:5.994984px;}
._a_c00257{width:7.253016px;}
._d_c00257{width:8.362584px;}
._c_c00257{width:9.637416px;}
._8_c00257{width:11.304000px;}
._9_c00257{width:12.463416px;}
._6_c00257{width:13.536000px;}
._7_c00257{width:15.438600px;}
._5_c00257{width:17.393400px;}
._4_c00257{width:18.553975px;}
._15_c00257{width:21.133228px;}
._3_c00257{width:22.413202px;}
.fc0_c00257{color:rgb(0,0,0);}
.fs4_c00257{font-size:36.000000px;}
.fs3_c00257{font-size:41.760000px;}
.fs2_c00257{font-size:56.160000px;}
.fs5_c00257{font-size:59.040000px;}
.fs7_c00257{font-size:60.000000px;}
.fs6_c00257{font-size:60.857039px;}
.fs0_c00257{font-size:72.000000px;}
.fs1_c00257{font-size:74.215901px;}
.y0_c00257{bottom:0.000000px;}
.y3e_c00257{bottom:3.120150px;}
.y3d_c00257{bottom:34.744500px;}
.y1_c00257{bottom:54.000000px;}
.y3c_c00257{bottom:61.605000px;}
.y3b_c00257{bottom:78.885000px;}
.y3a_c00257{bottom:90.405000px;}
.y39_c00257{bottom:90.406800px;}
.y38_c00257{bottom:108.045000px;}
.y37_c00257{bottom:108.046800px;}
.y36_c00257{bottom:131.805000px;}
.y35_c00257{bottom:143.325000px;}
.y34_c00257{bottom:149.445000px;}
.y33_c00257{bottom:160.606800px;}
.y32_c00257{bottom:178.245000px;}
.y31_c00257{bottom:178.246800px;}
.y2f_c00257{bottom:195.881040px;}
.y30_c00257{bottom:195.885000px;}
.y2e_c00257{bottom:213.165000px;}
.y2d_c00257{bottom:219.285000px;}
.y2b_c00257{bottom:230.802840px;}
.y2c_c00257{bottom:230.805000px;}
.y2a_c00257{bottom:248.086800px;}
.y29_c00257{bottom:271.845000px;}
.y28_c00257{bottom:283.361040px;}
.y26_c00257{bottom:300.644640px;}
.y27_c00257{bottom:300.645000px;}
.y25_c00257{bottom:318.282840px;}
.y24_c00257{bottom:335.921040px;}
.y23_c00257{bottom:359.325000px;}
.y22_c00257{bottom:370.841040px;}
.y21_c00257{bottom:388.125000px;}
.y20_c00257{bottom:394.245000px;}
.y1f_c00257{bottom:405.762840px;}
.y1e_c00257{bottom:423.401040px;}
.y1d_c00257{bottom:440.685000px;}
.y1c_c00257{bottom:446.805000px;}
.y1b_c00257{bottom:473.445000px;}
.y1a_c00257{bottom:511.965000px;}
.y19_c00257{bottom:547.965000px;}
.y18_c00257{bottom:568.845000px;}
.y17_c00257{bottom:604.845000px;}
.y16_c00257{bottom:640.845000px;}
.y15_c00257{bottom:661.725000px;}
.y14_c00257{bottom:682.965000px;}
.y13_c00257{bottom:703.845000px;}
.y12_c00257{bottom:725.085000px;}
.y11_c00257{bottom:745.965000px;}
.y10_c00257{bottom:766.845000px;}
.yf_c00257{bottom:788.085000px;}
.ye_c00257{bottom:824.085000px;}
.yd_c00257{bottom:844.965000px;}
.yc_c00257{bottom:865.845000px;}
.yb_c00257{bottom:887.085000px;}
.ya_c00257{bottom:907.965000px;}
.y9_c00257{bottom:928.845000px;}
.y8_c00257{bottom:950.085000px;}
.y7_c00257{bottom:970.965000px;}
.y6_c00257{bottom:991.845000px;}
.y5_c00257{bottom:1013.085000px;}
.y4_c00257{bottom:1049.085000px;}
.y3_c00257{bottom:1085.085000px;}
.y2_c00257{bottom:1138.365000px;}
.ha_c00257{height:19.255500px;}
.h7_c00257{height:32.616000px;}
.hb_c00257{height:46.320000px;}
.h8_c00257{height:46.981634px;}
.h6_c00257{height:52.031250px;}
.h9_c00257{height:53.490240px;}
.h4_c00257{height:57.294676px;}
.h3_c00257{height:65.232000px;}
.h5_c00257{height:68.074560px;}
.h2_c00257{height:1201.365000px;}
.h0_c00257{height:1262.835000px;}
.h1_c00257{height:1263.000000px;}
.w3_c00257{width:25.020000px;}
.w2_c00257{width:863.955000px;}
.w0_c00257{width:892.935000px;}
.w1_c00257{width:893.250000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:14.490000px;}
.x2_c00257{left:113.040150px;}
.xb_c00257{left:140.044200px;}
.xf_c00257{left:148.031550px;}
.xe_c00257{left:150.029700px;}
.x3_c00257{left:154.043700px;}
.xc_c00257{left:167.040150px;}
.x2c_c00257{left:177.208050px;}
.x5_c00257{left:190.510650px;}
.x19_c00257{left:195.007650px;}
.x2d_c00257{left:197.202000px;}
.x4_c00257{left:204.532800px;}
.x28_c00257{left:225.951000px;}
.x7_c00257{left:235.884900px;}
.x1a_c00257{left:245.841000px;}
.xd_c00257{left:247.048800px;}
.x1b_c00257{left:254.972850px;}
.x29_c00257{left:263.464950px;}
.x16_c00257{left:279.715200px;}
.x2a_c00257{left:284.668500px;}
.x1c_c00257{left:289.919700px;}
.x17_c00257{left:299.709150px;}
.x8_c00257{left:302.862300px;}
.x1d_c00257{left:344.860050px;}
.x6_c00257{left:346.507650px;}
.x1e_c00257{left:392.363850px;}
.x1f_c00257{left:401.495400px;}
.x10_c00257{left:436.757850px;}
.x12_c00257{left:439.836600px;}
.x14_c00257{left:442.042200px;}
.x11_c00257{left:452.582100px;}
.x13_c00257{left:455.660850px;}
.x24_c00257{left:460.567350px;}
.x2b_c00257{left:485.427300px;}
.x25_c00257{left:487.251600px;}
.x9_c00257{left:491.253300px;}
.x15_c00257{left:492.890700px;}
.x26_c00257{left:496.416150px;}
.x20_c00257{left:527.182200px;}
.xa_c00257{left:534.272400px;}
.x27_c00257{left:539.765250px;}
.x21_c00257{left:547.968450px;}
.x18_c00257{left:552.501000px;}
.x22_c00257{left:679.193850px;}
.x23_c00257{left:701.221050px;}
.x2e_c00257{left:759.915000px;}
@media print{
.v2_c00257{vertical-align:-21.760000pt;}
.v0_c00257{vertical-align:0.000000pt;}
.v1_c00257{vertical-align:26.880000pt;}
.ls11_c00257{letter-spacing:-0.159616pt;}
.lsf_c00257{letter-spacing:0.000000pt;}
.ls16_c00257{letter-spacing:0.128000pt;}
.ls8_c00257{letter-spacing:0.232609pt;}
.ls1b_c00257{letter-spacing:0.236160pt;}
.ls5_c00257{letter-spacing:0.262400pt;}
.ls9_c00257{letter-spacing:0.283392pt;}
.ls14_c00257{letter-spacing:0.330624pt;}
.ls13_c00257{letter-spacing:0.377856pt;}
.ls3_c00257{letter-spacing:0.389485pt;}
.ls6_c00257{letter-spacing:0.472320pt;}
.ls4_c00257{letter-spacing:0.477568pt;}
.ls7_c00257{letter-spacing:0.486856pt;}
.ls1d_c00257{letter-spacing:0.519552pt;}
.ls23_c00257{letter-spacing:0.535542pt;}
.ls1f_c00257{letter-spacing:0.584228pt;}
.ls2_c00257{letter-spacing:0.596480pt;}
.ls29_c00257{letter-spacing:0.614016pt;}
.ls18_c00257{letter-spacing:0.619264pt;}
.ls20_c00257{letter-spacing:0.632913pt;}
.ls24_c00257{letter-spacing:0.638323pt;}
.ls1_c00257{letter-spacing:0.656747pt;}
.ls25_c00257{letter-spacing:0.681599pt;}
.ls1c_c00257{letter-spacing:0.855424pt;}
.ls26_c00257{letter-spacing:2.036224pt;}
.ls17_c00257{letter-spacing:3.726080pt;}
.ls21_c00257{letter-spacing:4.707456pt;}
.lsb_c00257{letter-spacing:4.775680pt;}
.ls10_c00257{letter-spacing:4.827264pt;}
.ls27_c00257{letter-spacing:4.901632pt;}
.ls22_c00257{letter-spacing:4.948864pt;}
.ls28_c00257{letter-spacing:5.137792pt;}
.lsc_c00257{letter-spacing:5.143040pt;}
.lsd_c00257{letter-spacing:5.312000pt;}
.ls0_c00257{letter-spacing:5.316267pt;}
.lse_c00257{letter-spacing:5.475484pt;}
.ls19_c00257{letter-spacing:7.299968pt;}
.ls1e_c00257{letter-spacing:7.583360pt;}
.ls15_c00257{letter-spacing:8.039936pt;}
.lsa_c00257{letter-spacing:9.771776pt;}
.ls12_c00257{letter-spacing:11.498368pt;}
.ls1a_c00257{letter-spacing:14.589440pt;}
.wsa_c00257{word-spacing:-19.538304pt;}
.ws8_c00257{word-spacing:-19.296896pt;}
.ws0_c00257{word-spacing:-18.705024pt;}
.ws1_c00257{word-spacing:-17.792000pt;}
.wsd_c00257{word-spacing:-15.720049pt;}
.wsc_c00257{word-spacing:-15.676773pt;}
.ws9_c00257{word-spacing:-15.671364pt;}
.wsb_c00257{word-spacing:-15.573992pt;}
.ws7_c00257{word-spacing:-15.525307pt;}
.ws4_c00257{word-spacing:-15.427936pt;}
.ws5_c00257{word-spacing:-15.061760pt;}
.wse_c00257{word-spacing:-14.872832pt;}
.ws2_c00257{word-spacing:-10.159744pt;}
.ws6_c00257{word-spacing:-9.024000pt;}
.ws3_c00257{word-spacing:-8.896000pt;}
.wsf_c00257{word-spacing:0.000000pt;}
._17_c00257{margin-left:-14.320640pt;}
._18_c00257{margin-left:-13.393920pt;}
._10_c00257{margin-left:-12.122880pt;}
._f_c00257{margin-left:-11.020800pt;}
._13_c00257{margin-left:-8.659200pt;}
._12_c00257{margin-left:-7.609600pt;}
._16_c00257{margin-left:-6.087680pt;}
._14_c00257{margin-left:-3.299840pt;}
._19_c00257{margin-left:-2.408768pt;}
._11_c00257{margin-left:-0.897472pt;}
._2_c00257{width:0.896000pt;}
._1_c00257{width:2.048000pt;}
._0_c00257{width:3.072000pt;}
._e_c00257{width:3.968000pt;}
._b_c00257{width:5.328875pt;}
._a_c00257{width:6.447125pt;}
._d_c00257{width:7.433408pt;}
._c_c00257{width:8.566592pt;}
._8_c00257{width:10.048000pt;}
._9_c00257{width:11.078592pt;}
._6_c00257{width:12.032000pt;}
._7_c00257{width:13.723200pt;}
._5_c00257{width:15.460800pt;}
._4_c00257{width:16.492423pt;}
._15_c00257{width:18.785091pt;}
._3_c00257{width:19.922846pt;}
.fs4_c00257{font-size:32.000000pt;}
.fs3_c00257{font-size:37.120000pt;}
.fs2_c00257{font-size:49.920000pt;}
.fs5_c00257{font-size:52.480000pt;}
.fs7_c00257{font-size:53.333333pt;}
.fs6_c00257{font-size:54.095146pt;}
.fs0_c00257{font-size:64.000000pt;}
.fs1_c00257{font-size:65.969690pt;}
.y0_c00257{bottom:0.000000pt;}
.y3e_c00257{bottom:2.773467pt;}
.y3d_c00257{bottom:30.884000pt;}
.y1_c00257{bottom:48.000000pt;}
.y3c_c00257{bottom:54.760000pt;}
.y3b_c00257{bottom:70.120000pt;}
.y3a_c00257{bottom:80.360000pt;}
.y39_c00257{bottom:80.361600pt;}
.y38_c00257{bottom:96.040000pt;}
.y37_c00257{bottom:96.041600pt;}
.y36_c00257{bottom:117.160000pt;}
.y35_c00257{bottom:127.400000pt;}
.y34_c00257{bottom:132.840000pt;}
.y33_c00257{bottom:142.761600pt;}
.y32_c00257{bottom:158.440000pt;}
.y31_c00257{bottom:158.441600pt;}
.y2f_c00257{bottom:174.116480pt;}
.y30_c00257{bottom:174.120000pt;}
.y2e_c00257{bottom:189.480000pt;}
.y2d_c00257{bottom:194.920000pt;}
.y2b_c00257{bottom:205.158080pt;}
.y2c_c00257{bottom:205.160000pt;}
.y2a_c00257{bottom:220.521600pt;}
.y29_c00257{bottom:241.640000pt;}
.y28_c00257{bottom:251.876480pt;}
.y26_c00257{bottom:267.239680pt;}
.y27_c00257{bottom:267.240000pt;}
.y25_c00257{bottom:282.918080pt;}
.y24_c00257{bottom:298.596480pt;}
.y23_c00257{bottom:319.400000pt;}
.y22_c00257{bottom:329.636480pt;}
.y21_c00257{bottom:345.000000pt;}
.y20_c00257{bottom:350.440000pt;}
.y1f_c00257{bottom:360.678080pt;}
.y1e_c00257{bottom:376.356480pt;}
.y1d_c00257{bottom:391.720000pt;}
.y1c_c00257{bottom:397.160000pt;}
.y1b_c00257{bottom:420.840000pt;}
.y1a_c00257{bottom:455.080000pt;}
.y19_c00257{bottom:487.080000pt;}
.y18_c00257{bottom:505.640000pt;}
.y17_c00257{bottom:537.640000pt;}
.y16_c00257{bottom:569.640000pt;}
.y15_c00257{bottom:588.200000pt;}
.y14_c00257{bottom:607.080000pt;}
.y13_c00257{bottom:625.640000pt;}
.y12_c00257{bottom:644.520000pt;}
.y11_c00257{bottom:663.080000pt;}
.y10_c00257{bottom:681.640000pt;}
.yf_c00257{bottom:700.520000pt;}
.ye_c00257{bottom:732.520000pt;}
.yd_c00257{bottom:751.080000pt;}
.yc_c00257{bottom:769.640000pt;}
.yb_c00257{bottom:788.520000pt;}
.ya_c00257{bottom:807.080000pt;}
.y9_c00257{bottom:825.640000pt;}
.y8_c00257{bottom:844.520000pt;}
.y7_c00257{bottom:863.080000pt;}
.y6_c00257{bottom:881.640000pt;}
.y5_c00257{bottom:900.520000pt;}
.y4_c00257{bottom:932.520000pt;}
.y3_c00257{bottom:964.520000pt;}
.y2_c00257{bottom:1011.880000pt;}
.ha_c00257{height:17.116000pt;}
.h7_c00257{height:28.992000pt;}
.hb_c00257{height:41.173333pt;}
.h8_c00257{height:41.761453pt;}
.h6_c00257{height:46.250000pt;}
.h9_c00257{height:47.546880pt;}
.h4_c00257{height:50.928601pt;}
.h3_c00257{height:57.984000pt;}
.h5_c00257{height:60.510720pt;}
.h2_c00257{height:1067.880000pt;}
.h0_c00257{height:1122.520000pt;}
.h1_c00257{height:1122.666667pt;}
.w3_c00257{width:22.240000pt;}
.w2_c00257{width:767.960000pt;}
.w0_c00257{width:793.720000pt;}
.w1_c00257{width:794.000000pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:12.880000pt;}
.x2_c00257{left:100.480133pt;}
.xb_c00257{left:124.483733pt;}
.xf_c00257{left:131.583600pt;}
.xe_c00257{left:133.359733pt;}
.x3_c00257{left:136.927733pt;}
.xc_c00257{left:148.480133pt;}
.x2c_c00257{left:157.518267pt;}
.x5_c00257{left:169.342800pt;}
.x19_c00257{left:173.340133pt;}
.x2d_c00257{left:175.290667pt;}
.x4_c00257{left:181.806933pt;}
.x28_c00257{left:200.845333pt;}
.x7_c00257{left:209.675467pt;}
.x1a_c00257{left:218.525333pt;}
.xd_c00257{left:219.598933pt;}
.x1b_c00257{left:226.642533pt;}
.x29_c00257{left:234.191067pt;}
.x16_c00257{left:248.635733pt;}
.x2a_c00257{left:253.038667pt;}
.x1c_c00257{left:257.706400pt;}
.x17_c00257{left:266.408133pt;}
.x8_c00257{left:269.210933pt;}
.x1d_c00257{left:306.542267pt;}
.x6_c00257{left:308.006800pt;}
.x1e_c00257{left:348.767867pt;}
.x1f_c00257{left:356.884800pt;}
.x10_c00257{left:388.229200pt;}
.x12_c00257{left:390.965867pt;}
.x14_c00257{left:392.926400pt;}
.x11_c00257{left:402.295200pt;}
.x13_c00257{left:405.031867pt;}
.x24_c00257{left:409.393200pt;}
.x2b_c00257{left:431.490933pt;}
.x25_c00257{left:433.112533pt;}
.x9_c00257{left:436.669600pt;}
.x15_c00257{left:438.125067pt;}
.x26_c00257{left:441.258800pt;}
.x20_c00257{left:468.606400pt;}
.xa_c00257{left:474.908800pt;}
.x27_c00257{left:479.791333pt;}
.x21_c00257{left:487.083067pt;}
.x18_c00257{left:491.112000pt;}
.x22_c00257{left:603.727867pt;}
.x23_c00257{left:623.307600pt;}
.x2e_c00257{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7ee8a97131472952b94da29d.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_ff4a3213f65cf994d52ddcc8.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;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:ff3_c00258;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_66b7d33e94e3222486a1e68f.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00258;src:url('chunks/assets/font_dd66c1129e482eecb48ebb97.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;line-height:0.787000;font-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_c00258{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00258{letter-spacing:0.000000px;}
.ls5_c00258{letter-spacing:5.430672px;}
.ls1_c00258{letter-spacing:5.976000px;}
.ls0_c00258{letter-spacing:5.978400px;}
.ls3_c00258{letter-spacing:6.159920px;}
.ls2_c00258{letter-spacing:24.624000px;}
.sc__c00258{text-shadow:none;}
.sc1_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00258{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc1_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00258{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00258{word-spacing:-21.043152px;}
.ws1_c00258{word-spacing:0.000000px;}
._4_c00258{margin-left:-1.179360px;}
._6_c00258{width:1.008000px;}
._1_c00258{width:2.376000px;}
._2_c00258{width:3.816000px;}
._7_c00258{width:4.824000px;}
._9_c00258{width:9.288000px;}
._a_c00258{width:10.296000px;}
._3_c00258{width:13.896000px;}
._b_c00258{width:15.192000px;}
._0_c00258{width:18.072000px;}
._5_c00258{width:21.024000px;}
._8_c00258{width:24.048000px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs2_c00258{font-size:56.160000px;}
.fs3_c00258{font-size:60.000000px;}
.fs0_c00258{font-size:72.000000px;}
.fs1_c00258{font-size:74.215901px;}
.y0_c00258{bottom:0.000000px;}
.y26_c00258{bottom:3.120150px;}
.y25_c00258{bottom:34.744500px;}
.y1_c00258{bottom:54.000000px;}
.y24_c00258{bottom:90.765000px;}
.y23_c00258{bottom:112.725000px;}
.y22_c00258{bottom:134.325000px;}
.y21_c00258{bottom:154.845000px;}
.y20_c00258{bottom:190.845000px;}
.y1f_c00258{bottom:211.725000px;}
.y1e_c00258{bottom:232.965000px;}
.y1d_c00258{bottom:253.845000px;}
.y1c_c00258{bottom:274.725000px;}
.y1b_c00258{bottom:310.725000px;}
.y1a_c00258{bottom:346.725000px;}
.y19_c00258{bottom:382.725000px;}
.y18_c00258{bottom:403.965000px;}
.y17_c00258{bottom:439.965000px;}
.y16_c00258{bottom:475.965000px;}
.y15_c00258{bottom:511.965000px;}
.y14_c00258{bottom:547.965000px;}
.y13_c00258{bottom:583.965000px;}
.y12_c00258{bottom:619.965000px;}
.y11_c00258{bottom:655.965000px;}
.y10_c00258{bottom:691.965000px;}
.yf_c00258{bottom:712.845000px;}
.ye_c00258{bottom:734.085000px;}
.yd_c00258{bottom:770.085000px;}
.yc_c00258{bottom:806.085000px;}
.yb_c00258{bottom:842.085000px;}
.ya_c00258{bottom:878.085000px;}
.y9_c00258{bottom:914.085000px;}
.y8_c00258{bottom:950.085000px;}
.y7_c00258{bottom:970.965000px;}
.y6_c00258{bottom:1006.965000px;}
.y5_c00258{bottom:1027.845000px;}
.y4_c00258{bottom:1049.085000px;}
.y3_c00258{bottom:1085.085000px;}
.y2_c00258{bottom:1138.365000px;}
.h6_c00258{height:19.255500px;}
.h7_c00258{height:46.320000px;}
.h5_c00258{height:52.031250px;}
.h4_c00258{height:57.294676px;}
.h3_c00258{height:65.232000px;}
.h2_c00258{height:1201.365000px;}
.h0_c00258{height:1262.835000px;}
.h1_c00258{height:1263.000000px;}
.w3_c00258{width:25.020000px;}
.w2_c00258{width:863.955000px;}
.w0_c00258{width:892.935000px;}
.w1_c00258{width:893.250000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:14.490000px;}
.x2_c00258{left:113.040150px;}
.x5_c00258{left:140.038800px;}
.x9_c00258{left:148.031550px;}
.xa_c00258{left:150.029700px;}
.xc_c00258{left:153.035550px;}
.x3_c00258{left:154.043700px;}
.x8_c00258{left:159.551550px;}
.x6_c00258{left:167.040150px;}
.x4_c00258{left:204.532800px;}
.xb_c00258{left:247.048800px;}
.x7_c00258{left:252.052800px;}
.xd_c00258{left:759.915000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls4_c00258{letter-spacing:0.000000pt;}
.ls5_c00258{letter-spacing:4.827264pt;}
.ls1_c00258{letter-spacing:5.312000pt;}
.ls0_c00258{letter-spacing:5.314133pt;}
.ls3_c00258{letter-spacing:5.475484pt;}
.ls2_c00258{letter-spacing:21.888000pt;}
.ws0_c00258{word-spacing:-18.705024pt;}
.ws1_c00258{word-spacing:0.000000pt;}
._4_c00258{margin-left:-1.048320pt;}
._6_c00258{width:0.896000pt;}
._1_c00258{width:2.112000pt;}
._2_c00258{width:3.392000pt;}
._7_c00258{width:4.288000pt;}
._9_c00258{width:8.256000pt;}
._a_c00258{width:9.152000pt;}
._3_c00258{width:12.352000pt;}
._b_c00258{width:13.504000pt;}
._0_c00258{width:16.064000pt;}
._5_c00258{width:18.688000pt;}
._8_c00258{width:21.376000pt;}
.fs2_c00258{font-size:49.920000pt;}
.fs3_c00258{font-size:53.333333pt;}
.fs0_c00258{font-size:64.000000pt;}
.fs1_c00258{font-size:65.969690pt;}
.y0_c00258{bottom:0.000000pt;}
.y26_c00258{bottom:2.773467pt;}
.y25_c00258{bottom:30.884000pt;}
.y1_c00258{bottom:48.000000pt;}
.y24_c00258{bottom:80.680000pt;}
.y23_c00258{bottom:100.200000pt;}
.y22_c00258{bottom:119.400000pt;}
.y21_c00258{bottom:137.640000pt;}
.y20_c00258{bottom:169.640000pt;}
.y1f_c00258{bottom:188.200000pt;}
.y1e_c00258{bottom:207.080000pt;}
.y1d_c00258{bottom:225.640000pt;}
.y1c_c00258{bottom:244.200000pt;}
.y1b_c00258{bottom:276.200000pt;}
.y1a_c00258{bottom:308.200000pt;}
.y19_c00258{bottom:340.200000pt;}
.y18_c00258{bottom:359.080000pt;}
.y17_c00258{bottom:391.080000pt;}
.y16_c00258{bottom:423.080000pt;}
.y15_c00258{bottom:455.080000pt;}
.y14_c00258{bottom:487.080000pt;}
.y13_c00258{bottom:519.080000pt;}
.y12_c00258{bottom:551.080000pt;}
.y11_c00258{bottom:583.080000pt;}
.y10_c00258{bottom:615.080000pt;}
.yf_c00258{bottom:633.640000pt;}
.ye_c00258{bottom:652.520000pt;}
.yd_c00258{bottom:684.520000pt;}
.yc_c00258{bottom:716.520000pt;}
.yb_c00258{bottom:748.520000pt;}
.ya_c00258{bottom:780.520000pt;}
.y9_c00258{bottom:812.520000pt;}
.y8_c00258{bottom:844.520000pt;}
.y7_c00258{bottom:863.080000pt;}
.y6_c00258{bottom:895.080000pt;}
.y5_c00258{bottom:913.640000pt;}
.y4_c00258{bottom:932.520000pt;}
.y3_c00258{bottom:964.520000pt;}
.y2_c00258{bottom:1011.880000pt;}
.h6_c00258{height:17.116000pt;}
.h7_c00258{height:41.173333pt;}
.h5_c00258{height:46.250000pt;}
.h4_c00258{height:50.928601pt;}
.h3_c00258{height:57.984000pt;}
.h2_c00258{height:1067.880000pt;}
.h0_c00258{height:1122.520000pt;}
.h1_c00258{height:1122.666667pt;}
.w3_c00258{width:22.240000pt;}
.w2_c00258{width:767.960000pt;}
.w0_c00258{width:793.720000pt;}
.w1_c00258{width:794.000000pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:12.880000pt;}
.x2_c00258{left:100.480133pt;}
.x5_c00258{left:124.478933pt;}
.x9_c00258{left:131.583600pt;}
.xa_c00258{left:133.359733pt;}
.xc_c00258{left:136.031600pt;}
.x3_c00258{left:136.927733pt;}
.x8_c00258{left:141.823600pt;}
.x6_c00258{left:148.480133pt;}
.x4_c00258{left:181.806933pt;}
.xb_c00258{left:219.598933pt;}
.x7_c00258{left:224.046933pt;}
.xd_c00258{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68829009616e4f709995e715.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_1bb3a966902e7244326b0a66.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;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:ff3_c00259;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00259;src:url('chunks/assets/font_66b7d33e94e3222486a1e68f.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00259;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff6_c00259{font-family:ff6_c00259;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00259;src:url('chunks/assets/font_ab9597231512365b55206601.woff2')format("woff");}.ff7_c00259{font-family:ff7_c00259;line-height:0.787000;font-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_c00259{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00259{vertical-align:-24.480000px;}
.v0_c00259{vertical-align:0.000000px;}
.v2_c00259{vertical-align:24.480000px;}
.v1_c00259{vertical-align:30.240000px;}
.lsa_c00259{letter-spacing:-0.179568px;}
.ls9_c00259{letter-spacing:0.000000px;}
.ls10_c00259{letter-spacing:0.144000px;}
.lsc_c00259{letter-spacing:0.265680px;}
.ls7_c00259{letter-spacing:0.295200px;}
.ls4_c00259{letter-spacing:0.319080px;}
.ls14_c00259{letter-spacing:0.425088px;}
.ls6_c00259{letter-spacing:0.531360px;}
.lsf_c00259{letter-spacing:0.602485px;}
.ls13_c00259{letter-spacing:0.657256px;}
.lsd_c00259{letter-spacing:0.690768px;}
.lse_c00259{letter-spacing:0.962352px;}
.ls3_c00259{letter-spacing:5.248656px;}
.ls5_c00259{letter-spacing:5.353440px;}
.lsb_c00259{letter-spacing:5.780016px;}
.ls0_c00259{letter-spacing:5.976000px;}
.ls8_c00259{letter-spacing:6.159920px;}
.ls2_c00259{letter-spacing:9.072000px;}
.ls12_c00259{letter-spacing:19.182096px;}
.ls11_c00259{letter-spacing:50.916096px;}
.ls1_c00259{letter-spacing:54.864000px;}
.sc__c00259{text-shadow:none;}
.sc1_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00259{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc1_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00259{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00259{word-spacing:-17.575513px;}
.ws2_c00259{word-spacing:-17.520742px;}
.ws1_c00259{word-spacing:-17.375472px;}
.ws5_c00259{word-spacing:-16.944480px;}
.ws0_c00259{word-spacing:-11.429712px;}
.ws3_c00259{word-spacing:-10.152000px;}
.ws6_c00259{word-spacing:0.000000px;}
._b_c00259{margin-left:-51.266064px;}
._a_c00259{margin-left:-49.908648px;}
._c_c00259{margin-left:-18.885600px;}
._d_c00259{margin-left:-17.843040px;}
._8_c00259{margin-left:-1.357920px;}
._0_c00259{width:1.080000px;}
._1_c00259{width:2.592000px;}
._6_c00259{width:3.616200px;}
._3_c00259{width:6.048000px;}
._4_c00259{width:7.920000px;}
._5_c00259{width:11.232000px;}
._2_c00259{width:14.832000px;}
._7_c00259{width:23.400000px;}
._9_c00259{width:50.145696px;}
.fc0_c00259{color:rgb(0,0,0);}
.fs5_c00259{font-size:36.000000px;}
.fs2_c00259{font-size:41.760000px;}
.fs3_c00259{font-size:59.040000px;}
.fs6_c00259{font-size:60.000000px;}
.fs4_c00259{font-size:60.857039px;}
.fs0_c00259{font-size:72.000000px;}
.fs1_c00259{font-size:74.215901px;}
.y0_c00259{bottom:0.000000px;}
.y28_c00259{bottom:3.120150px;}
.y27_c00259{bottom:34.744500px;}
.y1_c00259{bottom:54.000000px;}
.y26_c00259{bottom:61.605000px;}
.y25_c00259{bottom:78.885000px;}
.y24_c00259{bottom:90.401040px;}
.y23_c00259{bottom:107.685000px;}
.y22_c00259{bottom:113.805000px;}
.y21_c00259{bottom:140.445000px;}
.y1f_c00259{bottom:301.725000px;}
.y1e_c00259{bottom:319.005000px;}
.y1d_c00259{bottom:337.005000px;}
.y20_c00259{bottom:354.645000px;}
.y1c_c00259{bottom:355.005000px;}
.y1b_c00259{bottom:371.925000px;}
.y1a_c00259{bottom:405.405000px;}
.y19_c00259{bottom:441.405000px;}
.y18_c00259{bottom:462.645000px;}
.y17_c00259{bottom:483.525000px;}
.y16_c00259{bottom:505.485000px;}
.y15_c00259{bottom:541.125000px;}
.y14_c00259{bottom:577.125000px;}
.y13_c00259{bottom:598.005000px;}
.y12_c00259{bottom:634.005000px;}
.y11_c00259{bottom:670.005000px;}
.y10_c00259{bottom:691.965000px;}
.yf_c00259{bottom:727.605000px;}
.ye_c00259{bottom:763.605000px;}
.yd_c00259{bottom:799.605000px;}
.yc_c00259{bottom:820.485000px;}
.yb_c00259{bottom:841.365000px;}
.ya_c00259{bottom:863.325000px;}
.y9_c00259{bottom:898.965000px;}
.y8_c00259{bottom:919.845000px;}
.y7_c00259{bottom:941.085000px;}
.y6_c00259{bottom:977.085000px;}
.y5_c00259{bottom:1013.085000px;}
.y4_c00259{bottom:1049.085000px;}
.y3_c00259{bottom:1085.085000px;}
.y2_c00259{bottom:1138.365000px;}
.hc_c00259{height:19.255500px;}
.hb_c00259{height:32.616000px;}
.h8_c00259{height:45.578880px;}
.hd_c00259{height:46.320000px;}
.h9_c00259{height:46.981634px;}
.h5_c00259{height:52.031250px;}
.h7_c00259{height:53.490240px;}
.ha_c00259{height:57.096000px;}
.h4_c00259{height:57.294676px;}
.h3_c00259{height:65.232000px;}
.h6_c00259{height:68.074560px;}
.h2_c00259{height:1201.365000px;}
.h0_c00259{height:1262.835000px;}
.h1_c00259{height:1263.000000px;}
.w7_c00259{width:25.020000px;}
.w3_c00259{width:28.800000px;}
.w4_c00259{width:87.840000px;}
.w5_c00259{width:144.720000px;}
.w6_c00259{width:414.000000px;}
.w2_c00259{width:863.955000px;}
.w0_c00259{width:892.935000px;}
.w1_c00259{width:893.250000px;}
.x0_c00259{left:0.000000px;}
.xe_c00259{left:7.920150px;}
.x1_c00259{left:14.490000px;}
.x2_c00259{left:113.040150px;}
.xd_c00259{left:119.610000px;}
.x5_c00259{left:140.038800px;}
.xc_c00259{left:148.031550px;}
.x8_c00259{left:150.029700px;}
.x9_c00259{left:153.035550px;}
.x3_c00259{left:154.043700px;}
.xa_c00259{left:156.741900px;}
.x6_c00259{left:167.040150px;}
.x4_c00259{left:204.532800px;}
.xf_c00259{left:237.690000px;}
.xb_c00259{left:247.048800px;}
.x7_c00259{left:252.052800px;}
.x10_c00259{left:383.130000px;}
.x11_c00259{left:658.153200px;}
.x12_c00259{left:692.322150px;}
.x13_c00259{left:759.915000px;}
@media print{
.v3_c00259{vertical-align:-21.760000pt;}
.v0_c00259{vertical-align:0.000000pt;}
.v2_c00259{vertical-align:21.760000pt;}
.v1_c00259{vertical-align:26.880000pt;}
.lsa_c00259{letter-spacing:-0.159616pt;}
.ls9_c00259{letter-spacing:0.000000pt;}
.ls10_c00259{letter-spacing:0.128000pt;}
.lsc_c00259{letter-spacing:0.236160pt;}
.ls7_c00259{letter-spacing:0.262400pt;}
.ls4_c00259{letter-spacing:0.283627pt;}
.ls14_c00259{letter-spacing:0.377856pt;}
.ls6_c00259{letter-spacing:0.472320pt;}
.lsf_c00259{letter-spacing:0.535542pt;}
.ls13_c00259{letter-spacing:0.584228pt;}
.lsd_c00259{letter-spacing:0.614016pt;}
.lse_c00259{letter-spacing:0.855424pt;}
.ls3_c00259{letter-spacing:4.665472pt;}
.ls5_c00259{letter-spacing:4.758613pt;}
.lsb_c00259{letter-spacing:5.137792pt;}
.ls0_c00259{letter-spacing:5.312000pt;}
.ls8_c00259{letter-spacing:5.475484pt;}
.ls2_c00259{letter-spacing:8.064000pt;}
.ls12_c00259{letter-spacing:17.050752pt;}
.ls11_c00259{letter-spacing:45.258752pt;}
.ls1_c00259{letter-spacing:48.768000pt;}
.ws4_c00259{word-spacing:-15.622678pt;}
.ws2_c00259{word-spacing:-15.573992pt;}
.ws1_c00259{word-spacing:-15.444864pt;}
.ws5_c00259{word-spacing:-15.061760pt;}
.ws0_c00259{word-spacing:-10.159744pt;}
.ws3_c00259{word-spacing:-9.024000pt;}
.ws6_c00259{word-spacing:0.000000pt;}
._b_c00259{margin-left:-45.569835pt;}
._a_c00259{margin-left:-44.363243pt;}
._c_c00259{margin-left:-16.787200pt;}
._d_c00259{margin-left:-15.860480pt;}
._8_c00259{margin-left:-1.207040pt;}
._0_c00259{width:0.960000pt;}
._1_c00259{width:2.304000pt;}
._6_c00259{width:3.214400pt;}
._3_c00259{width:5.376000pt;}
._4_c00259{width:7.040000pt;}
._5_c00259{width:9.984000pt;}
._2_c00259{width:13.184000pt;}
._7_c00259{width:20.800000pt;}
._9_c00259{width:44.573952pt;}
.fs5_c00259{font-size:32.000000pt;}
.fs2_c00259{font-size:37.120000pt;}
.fs3_c00259{font-size:52.480000pt;}
.fs6_c00259{font-size:53.333333pt;}
.fs4_c00259{font-size:54.095146pt;}
.fs0_c00259{font-size:64.000000pt;}
.fs1_c00259{font-size:65.969690pt;}
.y0_c00259{bottom:0.000000pt;}
.y28_c00259{bottom:2.773467pt;}
.y27_c00259{bottom:30.884000pt;}
.y1_c00259{bottom:48.000000pt;}
.y26_c00259{bottom:54.760000pt;}
.y25_c00259{bottom:70.120000pt;}
.y24_c00259{bottom:80.356480pt;}
.y23_c00259{bottom:95.720000pt;}
.y22_c00259{bottom:101.160000pt;}
.y21_c00259{bottom:124.840000pt;}
.y1f_c00259{bottom:268.200000pt;}
.y1e_c00259{bottom:283.560000pt;}
.y1d_c00259{bottom:299.560000pt;}
.y20_c00259{bottom:315.240000pt;}
.y1c_c00259{bottom:315.560000pt;}
.y1b_c00259{bottom:330.600000pt;}
.y1a_c00259{bottom:360.360000pt;}
.y19_c00259{bottom:392.360000pt;}
.y18_c00259{bottom:411.240000pt;}
.y17_c00259{bottom:429.800000pt;}
.y16_c00259{bottom:449.320000pt;}
.y15_c00259{bottom:481.000000pt;}
.y14_c00259{bottom:513.000000pt;}
.y13_c00259{bottom:531.560000pt;}
.y12_c00259{bottom:563.560000pt;}
.y11_c00259{bottom:595.560000pt;}
.y10_c00259{bottom:615.080000pt;}
.yf_c00259{bottom:646.760000pt;}
.ye_c00259{bottom:678.760000pt;}
.yd_c00259{bottom:710.760000pt;}
.yc_c00259{bottom:729.320000pt;}
.yb_c00259{bottom:747.880000pt;}
.ya_c00259{bottom:767.400000pt;}
.y9_c00259{bottom:799.080000pt;}
.y8_c00259{bottom:817.640000pt;}
.y7_c00259{bottom:836.520000pt;}
.y6_c00259{bottom:868.520000pt;}
.y5_c00259{bottom:900.520000pt;}
.y4_c00259{bottom:932.520000pt;}
.y3_c00259{bottom:964.520000pt;}
.y2_c00259{bottom:1011.880000pt;}
.hc_c00259{height:17.116000pt;}
.hb_c00259{height:28.992000pt;}
.h8_c00259{height:40.514560pt;}
.hd_c00259{height:41.173333pt;}
.h9_c00259{height:41.761453pt;}
.h5_c00259{height:46.250000pt;}
.h7_c00259{height:47.546880pt;}
.ha_c00259{height:50.752000pt;}
.h4_c00259{height:50.928601pt;}
.h3_c00259{height:57.984000pt;}
.h6_c00259{height:60.510720pt;}
.h2_c00259{height:1067.880000pt;}
.h0_c00259{height:1122.520000pt;}
.h1_c00259{height:1122.666667pt;}
.w7_c00259{width:22.240000pt;}
.w3_c00259{width:25.600000pt;}
.w4_c00259{width:78.080000pt;}
.w5_c00259{width:128.640000pt;}
.w6_c00259{width:368.000000pt;}
.w2_c00259{width:767.960000pt;}
.w0_c00259{width:793.720000pt;}
.w1_c00259{width:794.000000pt;}
.x0_c00259{left:0.000000pt;}
.xe_c00259{left:7.040133pt;}
.x1_c00259{left:12.880000pt;}
.x2_c00259{left:100.480133pt;}
.xd_c00259{left:106.320000pt;}
.x5_c00259{left:124.478933pt;}
.xc_c00259{left:131.583600pt;}
.x8_c00259{left:133.359733pt;}
.x9_c00259{left:136.031600pt;}
.x3_c00259{left:136.927733pt;}
.xa_c00259{left:139.326133pt;}
.x6_c00259{left:148.480133pt;}
.x4_c00259{left:181.806933pt;}
.xf_c00259{left:211.280000pt;}
.xb_c00259{left:219.598933pt;}
.x7_c00259{left:224.046933pt;}
.x10_c00259{left:340.560000pt;}
.x11_c00259{left:585.025067pt;}
.x12_c00259{left:615.397467pt;}
.x13_c00259{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4efbde49bd409f4066f4fe07.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.134000;font-style:normal;font-weight:normal;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_d4fe69306f2c508fd227e41c.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;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:ff3_c00260;src:url('chunks/assets/font_66b7d33e94e3222486a1e68f.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_ac4fd0366edfa72f791f325f.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:0.787000;font-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_c00260{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00260{vertical-align:-24.480000px;}
.v0_c00260{vertical-align:0.000000px;}
.v1_c00260{vertical-align:30.240000px;}
.ls25_c00260{letter-spacing:-0.179568px;}
.ls14_c00260{letter-spacing:0.000000px;}
.ls26_c00260{letter-spacing:0.144000px;}
.ls17_c00260{letter-spacing:0.265680px;}
.lsf_c00260{letter-spacing:0.277488px;}
.ls9_c00260{letter-spacing:0.295200px;}
.ls1_c00260{letter-spacing:0.318480px;}
.ls2b_c00260{letter-spacing:0.318816px;}
.ls5_c00260{letter-spacing:0.319080px;}
.lsc_c00260{letter-spacing:0.324720px;}
.lse_c00260{letter-spacing:0.354240px;}
.ls1a_c00260{letter-spacing:0.371952px;}
.ls12_c00260{letter-spacing:0.412200px;}
.ls20_c00260{letter-spacing:0.425088px;}
.ls2c_c00260{letter-spacing:0.478224px;}
.ls1c_c00260{letter-spacing:0.492942px;}
.lsb_c00260{letter-spacing:0.501840px;}
.ls7_c00260{letter-spacing:0.513648px;}
.ls3_c00260{letter-spacing:0.531360px;}
.ls22_c00260{letter-spacing:0.584496px;}
.ls15_c00260{letter-spacing:0.602485px;}
.ls1f_c00260{letter-spacing:0.637632px;}
.ls18_c00260{letter-spacing:0.690768px;}
.lsa_c00260{letter-spacing:0.712027px;}
.ls21_c00260{letter-spacing:0.743904px;}
.ls19_c00260{letter-spacing:0.962352px;}
.ls28_c00260{letter-spacing:0.991970px;}
.ls8_c00260{letter-spacing:4.406880px;}
.ls0_c00260{letter-spacing:5.248656px;}
.ls2_c00260{letter-spacing:5.353440px;}
.ls1e_c00260{letter-spacing:5.354928px;}
.ls23_c00260{letter-spacing:5.430672px;}
.ls2a_c00260{letter-spacing:5.514336px;}
.ls16_c00260{letter-spacing:5.780016px;}
.ls10_c00260{letter-spacing:5.975400px;}
.ls11_c00260{letter-spacing:5.976000px;}
.ls13_c00260{letter-spacing:6.159920px;}
.ls27_c00260{letter-spacing:6.270048px;}
.ls1b_c00260{letter-spacing:7.368192px;}
.ls29_c00260{letter-spacing:9.121680px;}
.ls6_c00260{letter-spacing:9.812280px;}
.ls4_c00260{letter-spacing:9.813480px;}
.lsd_c00260{letter-spacing:18.184320px;}
.ls1d_c00260{letter-spacing:28.097136px;}
.ls24_c00260{letter-spacing:29.592000px;}
.sc__c00260{text-shadow:none;}
.sc1_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00260{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc1_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00260{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00260{word-spacing:-22.193136px;}
.ws5_c00260{word-spacing:-21.661776px;}
.ws9_c00260{word-spacing:-21.043152px;}
.ws8_c00260{word-spacing:-17.630284px;}
.ws0_c00260{word-spacing:-17.520742px;}
.wsc_c00260{word-spacing:-17.411199px;}
.ws1_c00260{word-spacing:-17.375472px;}
.ws2_c00260{word-spacing:-17.103888px;}
.ws4_c00260{word-spacing:-16.944480px;}
.ws6_c00260{word-spacing:-16.926768px;}
.ws3_c00260{word-spacing:-16.785072px;}
.wsa_c00260{word-spacing:-11.429712px;}
.wsb_c00260{word-spacing:-10.152000px;}
.wsd_c00260{word-spacing:0.000000px;}
._d_c00260{margin-left:-28.507296px;}
._c_c00260{margin-left:-27.251472px;}
._19_c00260{margin-left:-8.796960px;}
._7_c00260{margin-left:-7.526688px;}
._6_c00260{margin-left:-6.524832px;}
._18_c00260{margin-left:-5.335008px;}
._2_c00260{margin-left:-1.357920px;}
._0_c00260{width:1.047768px;}
._13_c00260{width:2.952000px;}
._a_c00260{width:4.140600px;}
._1_c00260{width:5.353440px;}
._4_c00260{width:6.751536px;}
._5_c00260{width:7.967976px;}
._8_c00260{width:9.406440px;}
._12_c00260{width:10.994904px;}
._9_c00260{width:16.064880px;}
._14_c00260{width:17.835984px;}
._15_c00260{width:21.888000px;}
._f_c00260{width:23.224056px;}
._b_c00260{width:27.276480px;}
._16_c00260{width:29.592000px;}
._17_c00260{width:35.280000px;}
._11_c00260{width:42.378432px;}
._10_c00260{width:43.534896px;}
._e_c00260{width:102.993504px;}
._3_c00260{width:232.263360px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs6_c00260{font-size:36.000000px;}
.fs5_c00260{font-size:41.760000px;}
.fs4_c00260{font-size:56.160000px;}
.fs2_c00260{font-size:59.040000px;}
.fs7_c00260{font-size:60.000000px;}
.fs3_c00260{font-size:60.857039px;}
.fs0_c00260{font-size:72.000000px;}
.fs1_c00260{font-size:74.215901px;}
.y0_c00260{bottom:0.000000px;}
.y44_c00260{bottom:3.120150px;}
.y43_c00260{bottom:34.744500px;}
.y1_c00260{bottom:54.000000px;}
.y41_c00260{bottom:55.481040px;}
.y42_c00260{bottom:55.485000px;}
.y40_c00260{bottom:72.765000px;}
.y3f_c00260{bottom:72.766800px;}
.y3e_c00260{bottom:90.405000px;}
.y3d_c00260{bottom:96.525000px;}
.y3c_c00260{bottom:113.805000px;}
.y3b_c00260{bottom:140.445000px;}
.y3a_c00260{bottom:172.845000px;}
.y39_c00260{bottom:193.725000px;}
.y38_c00260{bottom:214.965000px;}
.y37_c00260{bottom:235.845000px;}
.y36_c00260{bottom:256.725000px;}
.y35_c00260{bottom:278.685000px;}
.y34_c00260{bottom:299.205000px;}
.y33_c00260{bottom:320.445000px;}
.y32_c00260{bottom:341.325000px;}
.y31_c00260{bottom:362.205000px;}
.y30_c00260{bottom:398.205000px;}
.y2f_c00260{bottom:434.205000px;}
.y2e_c00260{bottom:470.204640px;}
.y2d_c00260{bottom:487.488600px;}
.y2c_c00260{bottom:505.126800px;}
.y2b_c00260{bottom:522.765000px;}
.y2a_c00260{bottom:555.161040px;}
.y29_c00260{bottom:572.445000px;}
.y28_c00260{bottom:572.446800px;}
.y27_c00260{bottom:590.085000px;}
.y26_c00260{bottom:622.845000px;}
.y22_c00260{bottom:644.445000px;}
.y21_c00260{bottom:662.085000px;}
.y25_c00260{bottom:662.805000px;}
.y20_c00260{bottom:679.725000px;}
.y24_c00260{bottom:680.085000px;}
.y1f_c00260{bottom:697.365000px;}
.y23_c00260{bottom:697.725000px;}
.y1e_c00260{bottom:715.365000px;}
.y1a_c00260{bottom:733.365000px;}
.y19_c00260{bottom:751.365000px;}
.y18_c00260{bottom:769.005000px;}
.y17_c00260{bottom:786.285000px;}
.y1d_c00260{bottom:787.005000px;}
.y16_c00260{bottom:804.285000px;}
.y1c_c00260{bottom:804.645000px;}
.y15_c00260{bottom:821.565000px;}
.y1b_c00260{bottom:821.925000px;}
.y14_c00260{bottom:839.565000px;}
.y12_c00260{bottom:857.925000px;}
.y11_c00260{bottom:875.205000px;}
.y10_c00260{bottom:893.205000px;}
.y13_c00260{bottom:910.845000px;}
.yf_c00260{bottom:911.205000px;}
.ye_c00260{bottom:928.125000px;}
.yd_c00260{bottom:946.485000px;}
.yc_c00260{bottom:964.125000px;}
.y8_c00260{bottom:981.045000px;}
.yb_c00260{bottom:981.405000px;}
.y7_c00260{bottom:998.685000px;}
.ya_c00260{bottom:999.045000px;}
.y6_c00260{bottom:1016.685000px;}
.y9_c00260{bottom:1033.965000px;}
.y5_c00260{bottom:1034.325000px;}
.y4_c00260{bottom:1051.604850px;}
.y3_c00260{bottom:1085.085000px;}
.y2_c00260{bottom:1138.365000px;}
.ha_c00260{height:19.255500px;}
.h9_c00260{height:32.616000px;}
.h7_c00260{height:45.578880px;}
.hb_c00260{height:46.320000px;}
.h6_c00260{height:46.981634px;}
.h5_c00260{height:53.490240px;}
.h4_c00260{height:57.294676px;}
.h3_c00260{height:65.232000px;}
.h8_c00260{height:68.074560px;}
.h2_c00260{height:1201.365000px;}
.h0_c00260{height:1262.835000px;}
.h1_c00260{height:1263.000000px;}
.w7_c00260{width:25.020000px;}
.w3_c00260{width:28.800000px;}
.w4_c00260{width:87.840000px;}
.w5_c00260{width:144.720000px;}
.w6_c00260{width:414.000000px;}
.w2_c00260{width:863.955000px;}
.w0_c00260{width:892.935000px;}
.w1_c00260{width:893.250000px;}
.x0_c00260{left:0.000000px;}
.x6_c00260{left:7.920150px;}
.x1_c00260{left:14.490000px;}
.x2_c00260{left:113.040150px;}
.x5_c00260{left:119.610000px;}
.x17_c00260{left:132.950700px;}
.x12_c00260{left:138.774150px;}
.x7_c00260{left:149.130000px;}
.x18_c00260{left:151.852950px;}
.x3_c00260{left:154.043700px;}
.x1b_c00260{left:194.945400px;}
.x4_c00260{left:204.532800px;}
.x1d_c00260{left:206.377500px;}
.xa_c00260{left:233.007600px;}
.x8_c00260{left:237.690000px;}
.xe_c00260{left:241.529700px;}
.x16_c00260{left:265.162650px;}
.xf_c00260{left:271.529250px;}
.xb_c00260{left:273.159300px;}
.xc_c00260{left:297.255300px;}
.x10_c00260{left:327.480450px;}
.x11_c00260{left:332.522100px;}
.xd_c00260{left:339.128100px;}
.x13_c00260{left:343.591950px;}
.x9_c00260{left:383.130000px;}
.x1c_c00260{left:461.325000px;}
.x14_c00260{left:619.716450px;}
.x19_c00260{left:628.511700px;}
.x1a_c00260{left:640.181400px;}
.x15_c00260{left:664.560450px;}
.x1e_c00260{left:691.493850px;}
.x1f_c00260{left:719.828250px;}
.x20_c00260{left:759.915000px;}
@media print{
.v2_c00260{vertical-align:-21.760000pt;}
.v0_c00260{vertical-align:0.000000pt;}
.v1_c00260{vertical-align:26.880000pt;}
.ls25_c00260{letter-spacing:-0.159616pt;}
.ls14_c00260{letter-spacing:0.000000pt;}
.ls26_c00260{letter-spacing:0.128000pt;}
.ls17_c00260{letter-spacing:0.236160pt;}
.lsf_c00260{letter-spacing:0.246656pt;}
.ls9_c00260{letter-spacing:0.262400pt;}
.ls1_c00260{letter-spacing:0.283093pt;}
.ls2b_c00260{letter-spacing:0.283392pt;}
.ls5_c00260{letter-spacing:0.283627pt;}
.lsc_c00260{letter-spacing:0.288640pt;}
.lse_c00260{letter-spacing:0.314880pt;}
.ls1a_c00260{letter-spacing:0.330624pt;}
.ls12_c00260{letter-spacing:0.366400pt;}
.ls20_c00260{letter-spacing:0.377856pt;}
.ls2c_c00260{letter-spacing:0.425088pt;}
.ls1c_c00260{letter-spacing:0.438171pt;}
.lsb_c00260{letter-spacing:0.446080pt;}
.ls7_c00260{letter-spacing:0.456576pt;}
.ls3_c00260{letter-spacing:0.472320pt;}
.ls22_c00260{letter-spacing:0.519552pt;}
.ls15_c00260{letter-spacing:0.535542pt;}
.ls1f_c00260{letter-spacing:0.566784pt;}
.ls18_c00260{letter-spacing:0.614016pt;}
.lsa_c00260{letter-spacing:0.632913pt;}
.ls21_c00260{letter-spacing:0.661248pt;}
.ls19_c00260{letter-spacing:0.855424pt;}
.ls28_c00260{letter-spacing:0.881751pt;}
.ls8_c00260{letter-spacing:3.917227pt;}
.ls0_c00260{letter-spacing:4.665472pt;}
.ls2_c00260{letter-spacing:4.758613pt;}
.ls1e_c00260{letter-spacing:4.759936pt;}
.ls23_c00260{letter-spacing:4.827264pt;}
.ls2a_c00260{letter-spacing:4.901632pt;}
.ls16_c00260{letter-spacing:5.137792pt;}
.ls10_c00260{letter-spacing:5.311467pt;}
.ls11_c00260{letter-spacing:5.312000pt;}
.ls13_c00260{letter-spacing:5.475484pt;}
.ls27_c00260{letter-spacing:5.573376pt;}
.ls1b_c00260{letter-spacing:6.549504pt;}
.ls29_c00260{letter-spacing:8.108160pt;}
.ls6_c00260{letter-spacing:8.722027pt;}
.ls4_c00260{letter-spacing:8.723093pt;}
.lsd_c00260{letter-spacing:16.163840pt;}
.ls1d_c00260{letter-spacing:24.975232pt;}
.ls24_c00260{letter-spacing:26.304000pt;}
.ws7_c00260{word-spacing:-19.727232pt;}
.ws5_c00260{word-spacing:-19.254912pt;}
.ws9_c00260{word-spacing:-18.705024pt;}
.ws8_c00260{word-spacing:-15.671364pt;}
.ws0_c00260{word-spacing:-15.573992pt;}
.wsc_c00260{word-spacing:-15.476621pt;}
.ws1_c00260{word-spacing:-15.444864pt;}
.ws2_c00260{word-spacing:-15.203456pt;}
.ws4_c00260{word-spacing:-15.061760pt;}
.ws6_c00260{word-spacing:-15.046016pt;}
.ws3_c00260{word-spacing:-14.920064pt;}
.wsa_c00260{word-spacing:-10.159744pt;}
.wsb_c00260{word-spacing:-9.024000pt;}
.wsd_c00260{word-spacing:0.000000pt;}
._d_c00260{margin-left:-25.339819pt;}
._c_c00260{margin-left:-24.223531pt;}
._19_c00260{margin-left:-7.819520pt;}
._7_c00260{margin-left:-6.690389pt;}
._6_c00260{margin-left:-5.799851pt;}
._18_c00260{margin-left:-4.742229pt;}
._2_c00260{margin-left:-1.207040pt;}
._0_c00260{width:0.931349pt;}
._13_c00260{width:2.624000pt;}
._a_c00260{width:3.680533pt;}
._1_c00260{width:4.758613pt;}
._4_c00260{width:6.001365pt;}
._5_c00260{width:7.082645pt;}
._8_c00260{width:8.361280pt;}
._12_c00260{width:9.773248pt;}
._9_c00260{width:14.279893pt;}
._14_c00260{width:15.854208pt;}
._15_c00260{width:19.456000pt;}
._f_c00260{width:20.643605pt;}
._b_c00260{width:24.245760pt;}
._16_c00260{width:26.304000pt;}
._17_c00260{width:31.360000pt;}
._11_c00260{width:37.669717pt;}
._10_c00260{width:38.697685pt;}
._e_c00260{width:91.549781pt;}
._3_c00260{width:206.456320pt;}
.fs6_c00260{font-size:32.000000pt;}
.fs5_c00260{font-size:37.120000pt;}
.fs4_c00260{font-size:49.920000pt;}
.fs2_c00260{font-size:52.480000pt;}
.fs7_c00260{font-size:53.333333pt;}
.fs3_c00260{font-size:54.095146pt;}
.fs0_c00260{font-size:64.000000pt;}
.fs1_c00260{font-size:65.969690pt;}
.y0_c00260{bottom:0.000000pt;}
.y44_c00260{bottom:2.773467pt;}
.y43_c00260{bottom:30.884000pt;}
.y1_c00260{bottom:48.000000pt;}
.y41_c00260{bottom:49.316480pt;}
.y42_c00260{bottom:49.320000pt;}
.y40_c00260{bottom:64.680000pt;}
.y3f_c00260{bottom:64.681600pt;}
.y3e_c00260{bottom:80.360000pt;}
.y3d_c00260{bottom:85.800000pt;}
.y3c_c00260{bottom:101.160000pt;}
.y3b_c00260{bottom:124.840000pt;}
.y3a_c00260{bottom:153.640000pt;}
.y39_c00260{bottom:172.200000pt;}
.y38_c00260{bottom:191.080000pt;}
.y37_c00260{bottom:209.640000pt;}
.y36_c00260{bottom:228.200000pt;}
.y35_c00260{bottom:247.720000pt;}
.y34_c00260{bottom:265.960000pt;}
.y33_c00260{bottom:284.840000pt;}
.y32_c00260{bottom:303.400000pt;}
.y31_c00260{bottom:321.960000pt;}
.y30_c00260{bottom:353.960000pt;}
.y2f_c00260{bottom:385.960000pt;}
.y2e_c00260{bottom:417.959680pt;}
.y2d_c00260{bottom:433.323200pt;}
.y2c_c00260{bottom:449.001600pt;}
.y2b_c00260{bottom:464.680000pt;}
.y2a_c00260{bottom:493.476480pt;}
.y29_c00260{bottom:508.840000pt;}
.y28_c00260{bottom:508.841600pt;}
.y27_c00260{bottom:524.520000pt;}
.y26_c00260{bottom:553.640000pt;}
.y22_c00260{bottom:572.840000pt;}
.y21_c00260{bottom:588.520000pt;}
.y25_c00260{bottom:589.160000pt;}
.y20_c00260{bottom:604.200000pt;}
.y24_c00260{bottom:604.520000pt;}
.y1f_c00260{bottom:619.880000pt;}
.y23_c00260{bottom:620.200000pt;}
.y1e_c00260{bottom:635.880000pt;}
.y1a_c00260{bottom:651.880000pt;}
.y19_c00260{bottom:667.880000pt;}
.y18_c00260{bottom:683.560000pt;}
.y17_c00260{bottom:698.920000pt;}
.y1d_c00260{bottom:699.560000pt;}
.y16_c00260{bottom:714.920000pt;}
.y1c_c00260{bottom:715.240000pt;}
.y15_c00260{bottom:730.280000pt;}
.y1b_c00260{bottom:730.600000pt;}
.y14_c00260{bottom:746.280000pt;}
.y12_c00260{bottom:762.600000pt;}
.y11_c00260{bottom:777.960000pt;}
.y10_c00260{bottom:793.960000pt;}
.y13_c00260{bottom:809.640000pt;}
.yf_c00260{bottom:809.960000pt;}
.ye_c00260{bottom:825.000000pt;}
.yd_c00260{bottom:841.320000pt;}
.yc_c00260{bottom:857.000000pt;}
.y8_c00260{bottom:872.040000pt;}
.yb_c00260{bottom:872.360000pt;}
.y7_c00260{bottom:887.720000pt;}
.ya_c00260{bottom:888.040000pt;}
.y6_c00260{bottom:903.720000pt;}
.y9_c00260{bottom:919.080000pt;}
.y5_c00260{bottom:919.400000pt;}
.y4_c00260{bottom:934.759867pt;}
.y3_c00260{bottom:964.520000pt;}
.y2_c00260{bottom:1011.880000pt;}
.ha_c00260{height:17.116000pt;}
.h9_c00260{height:28.992000pt;}
.h7_c00260{height:40.514560pt;}
.hb_c00260{height:41.173333pt;}
.h6_c00260{height:41.761453pt;}
.h5_c00260{height:47.546880pt;}
.h4_c00260{height:50.928601pt;}
.h3_c00260{height:57.984000pt;}
.h8_c00260{height:60.510720pt;}
.h2_c00260{height:1067.880000pt;}
.h0_c00260{height:1122.520000pt;}
.h1_c00260{height:1122.666667pt;}
.w7_c00260{width:22.240000pt;}
.w3_c00260{width:25.600000pt;}
.w4_c00260{width:78.080000pt;}
.w5_c00260{width:128.640000pt;}
.w6_c00260{width:368.000000pt;}
.w2_c00260{width:767.960000pt;}
.w0_c00260{width:793.720000pt;}
.w1_c00260{width:794.000000pt;}
.x0_c00260{left:0.000000pt;}
.x6_c00260{left:7.040133pt;}
.x1_c00260{left:12.880000pt;}
.x2_c00260{left:100.480133pt;}
.x5_c00260{left:106.320000pt;}
.x17_c00260{left:118.178400pt;}
.x12_c00260{left:123.354800pt;}
.x7_c00260{left:132.560000pt;}
.x18_c00260{left:134.980400pt;}
.x3_c00260{left:136.927733pt;}
.x1b_c00260{left:173.284800pt;}
.x4_c00260{left:181.806933pt;}
.x1d_c00260{left:183.446667pt;}
.xa_c00260{left:207.117867pt;}
.x8_c00260{left:211.280000pt;}
.xe_c00260{left:214.693067pt;}
.x16_c00260{left:235.700133pt;}
.xf_c00260{left:241.359333pt;}
.xb_c00260{left:242.808267pt;}
.xc_c00260{left:264.226933pt;}
.x10_c00260{left:291.093733pt;}
.x11_c00260{left:295.575200pt;}
.xd_c00260{left:301.447200pt;}
.x13_c00260{left:305.415067pt;}
.x9_c00260{left:340.560000pt;}
.x1c_c00260{left:410.066667pt;}
.x14_c00260{left:550.859067pt;}
.x19_c00260{left:558.677067pt;}
.x1a_c00260{left:569.050133pt;}
.x15_c00260{left:590.720400pt;}
.x1e_c00260{left:614.661200pt;}
.x1f_c00260{left:639.847333pt;}
.x20_c00260{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0dfe672cf32d62dd8901f5a7.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.134000;font-style:normal;font-weight:normal;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_aa83e3b23e8a94936aaf1fc3.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;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:ff3_c00261;src:url('chunks/assets/font_f09fb4ef5103598a4bc0e5b9.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:0.787000;font-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_c00261{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00261{vertical-align:-30.240000px;}
.v3_c00261{vertical-align:-24.480000px;}
.v0_c00261{vertical-align:0.000000px;}
.v1_c00261{vertical-align:30.240000px;}
.lsa_c00261{letter-spacing:-0.179568px;}
.ls9_c00261{letter-spacing:0.000000px;}
.ls13_c00261{letter-spacing:0.144000px;}
.lse_c00261{letter-spacing:0.265680px;}
.ls5_c00261{letter-spacing:0.295200px;}
.ls6_c00261{letter-spacing:0.318816px;}
.ls10_c00261{letter-spacing:0.328628px;}
.lsc_c00261{letter-spacing:0.425088px;}
.ls11_c00261{letter-spacing:0.438171px;}
.ls1c_c00261{letter-spacing:0.478224px;}
.ls4_c00261{letter-spacing:0.531360px;}
.ls3_c00261{letter-spacing:0.547713px;}
.ls15_c00261{letter-spacing:0.602485px;}
.ls19_c00261{letter-spacing:0.657256px;}
.ls12_c00261{letter-spacing:0.690768px;}
.ls18_c00261{letter-spacing:0.712027px;}
.ls16_c00261{letter-spacing:0.743904px;}
.lsf_c00261{letter-spacing:0.797040px;}
.ls2_c00261{letter-spacing:0.821570px;}
.lsd_c00261{letter-spacing:3.731328px;}
.lsb_c00261{letter-spacing:5.335200px;}
.ls1a_c00261{letter-spacing:5.514336px;}
.ls0_c00261{letter-spacing:5.975400px;}
.ls7_c00261{letter-spacing:5.976000px;}
.ls8_c00261{letter-spacing:6.159920px;}
.ls14_c00261{letter-spacing:9.611712px;}
.ls17_c00261{letter-spacing:10.414656px;}
.ls1_c00261{letter-spacing:10.531920px;}
.ls1b_c00261{letter-spacing:23.787216px;}
.sc__c00261{text-shadow:none;}
.sc1_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00261{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc1_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00261{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00261{word-spacing:-20.947680px;}
.ws2_c00261{word-spacing:-20.016000px;}
.ws3_c00261{word-spacing:-17.739827px;}
.ws8_c00261{word-spacing:-17.630284px;}
.ws7_c00261{word-spacing:-17.520742px;}
.ws4_c00261{word-spacing:-17.465970px;}
.ws5_c00261{word-spacing:-16.731936px;}
.ws0_c00261{word-spacing:-11.429712px;}
.ws6_c00261{word-spacing:-10.152000px;}
.ws9_c00261{word-spacing:0.000000px;}
._1b_c00261{margin-left:-23.372640px;}
._1a_c00261{margin-left:-10.457280px;}
._18_c00261{margin-left:-9.321120px;}
._19_c00261{margin-left:-8.219520px;}
._16_c00261{margin-left:-4.191840px;}
._15_c00261{margin-left:-3.188160px;}
._17_c00261{margin-left:-1.287072px;}
._a_c00261{width:1.296000px;}
._11_c00261{width:3.024000px;}
._f_c00261{width:4.104000px;}
._e_c00261{width:5.184000px;}
._12_c00261{width:7.200000px;}
._b_c00261{width:8.352000px;}
._8_c00261{width:9.792000px;}
._0_c00261{width:10.800000px;}
._6_c00261{width:11.880000px;}
._7_c00261{width:12.960000px;}
._d_c00261{width:14.797435px;}
._c_c00261{width:16.253282px;}
._10_c00261{width:18.427434px;}
._9_c00261{width:19.444566px;}
._1c_c00261{width:22.508295px;}
._4_c00261{width:23.656809px;}
._3_c00261{width:25.159191px;}
._5_c00261{width:28.440000px;}
._14_c00261{width:32.472000px;}
._13_c00261{width:35.424000px;}
._1_c00261{width:36.936000px;}
._2_c00261{width:38.072757px;}
.fc0_c00261{color:rgb(0,0,0);}
.fs6_c00261{font-size:36.000000px;}
.fs2_c00261{font-size:41.760000px;}
.fs3_c00261{font-size:56.160000px;}
.fs4_c00261{font-size:59.040000px;}
.fs7_c00261{font-size:60.000000px;}
.fs5_c00261{font-size:60.857039px;}
.fs0_c00261{font-size:72.000000px;}
.fs1_c00261{font-size:74.215901px;}
.y0_c00261{bottom:0.000000px;}
.y34_c00261{bottom:3.120150px;}
.y33_c00261{bottom:34.744500px;}
.y1_c00261{bottom:54.000000px;}
.y32_c00261{bottom:55.481040px;}
.y31_c00261{bottom:78.885000px;}
.y2f_c00261{bottom:90.401040px;}
.y30_c00261{bottom:90.405000px;}
.y2e_c00261{bottom:107.685000px;}
.y2d_c00261{bottom:107.686800px;}
.y2c_c00261{bottom:125.325000px;}
.y2b_c00261{bottom:131.445000px;}
.y2a_c00261{bottom:149.085000px;}
.y29_c00261{bottom:160.245000px;}
.y28_c00261{bottom:160.246800px;}
.y27_c00261{bottom:177.885000px;}
.y26_c00261{bottom:210.645000px;}
.y25_c00261{bottom:307.845000px;}
.y24_c00261{bottom:328.725000px;}
.y23_c00261{bottom:349.965000px;}
.y22_c00261{bottom:370.845000px;}
.y21_c00261{bottom:391.725000px;}
.y1f_c00261{bottom:412.965000px;}
.y20_c00261{bottom:420.525000px;}
.y1d_c00261{bottom:433.845000px;}
.y1e_c00261{bottom:441.405000px;}
.y1c_c00261{bottom:454.725000px;}
.y1b_c00261{bottom:475.965000px;}
.y1a_c00261{bottom:496.845000px;}
.y19_c00261{bottom:532.845000px;}
.y18_c00261{bottom:568.845000px;}
.y17_c00261{bottom:604.845000px;}
.y16_c00261{bottom:625.725000px;}
.y15_c00261{bottom:661.725000px;}
.y14_c00261{bottom:682.965000px;}
.y13_c00261{bottom:703.845000px;}
.y12_c00261{bottom:725.085000px;}
.y11_c00261{bottom:745.965000px;}
.y10_c00261{bottom:766.845000px;}
.yf_c00261{bottom:802.845000px;}
.ye_c00261{bottom:824.085000px;}
.yd_c00261{bottom:844.965000px;}
.yc_c00261{bottom:865.845000px;}
.yb_c00261{bottom:901.845000px;}
.ya_c00261{bottom:923.085000px;}
.y9_c00261{bottom:943.965000px;}
.y8_c00261{bottom:964.845000px;}
.y7_c00261{bottom:986.085000px;}
.y6_c00261{bottom:1006.965000px;}
.y5_c00261{bottom:1042.965000px;}
.y4_c00261{bottom:1063.845000px;}
.y3_c00261{bottom:1085.085000px;}
.y2_c00261{bottom:1138.365000px;}
.ha_c00261{height:19.255500px;}
.h9_c00261{height:32.616000px;}
.h6_c00261{height:37.834560px;}
.hb_c00261{height:46.320000px;}
.h8_c00261{height:46.981634px;}
.h7_c00261{height:53.490240px;}
.h4_c00261{height:57.294676px;}
.h3_c00261{height:65.232000px;}
.h5_c00261{height:68.074560px;}
.h2_c00261{height:1201.365000px;}
.h0_c00261{height:1262.835000px;}
.h1_c00261{height:1263.000000px;}
.w3_c00261{width:25.020000px;}
.w2_c00261{width:863.955000px;}
.w0_c00261{width:892.935000px;}
.w1_c00261{width:893.250000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:14.490000px;}
.x2_c00261{left:113.040150px;}
.x3_c00261{left:154.043700px;}
.x6_c00261{left:175.309200px;}
.x1a_c00261{left:192.207300px;}
.x25_c00261{left:195.523350px;}
.x4_c00261{left:204.532800px;}
.x1b_c00261{left:255.549000px;}
.x17_c00261{left:257.334900px;}
.x1c_c00261{left:259.718550px;}
.x18_c00261{left:287.349300px;}
.x1d_c00261{left:298.072200px;}
.x26_c00261{left:306.398850px;}
.xd_c00261{left:325.382850px;}
.x12_c00261{left:332.962950px;}
.x27_c00261{left:344.737350px;}
.x11_c00261{left:348.848100px;}
.x9_c00261{left:357.511200px;}
.xc_c00261{left:362.805150px;}
.x22_c00261{left:383.395050px;}
.x20_c00261{left:412.128000px;}
.x16_c00261{left:415.440000px;}
.x23_c00261{left:419.243850px;}
.xe_c00261{left:440.688750px;}
.x21_c00261{left:447.976650px;}
.xf_c00261{left:466.698150px;}
.x13_c00261{left:514.128000px;}
.x19_c00261{left:540.167250px;}
.x1e_c00261{left:605.607000px;}
.xa_c00261{left:619.116600px;}
.x24_c00261{left:622.037100px;}
.x1f_c00261{left:625.601100px;}
.x14_c00261{left:641.962200px;}
.x7_c00261{left:658.097850px;}
.xb_c00261{left:662.135700px;}
.x10_c00261{left:667.015500px;}
.x15_c00261{left:671.160600px;}
.x5_c00261{left:720.366600px;}
.x8_c00261{left:745.386150px;}
.x28_c00261{left:759.915000px;}
@media print{
.v2_c00261{vertical-align:-26.880000pt;}
.v3_c00261{vertical-align:-21.760000pt;}
.v0_c00261{vertical-align:0.000000pt;}
.v1_c00261{vertical-align:26.880000pt;}
.lsa_c00261{letter-spacing:-0.159616pt;}
.ls9_c00261{letter-spacing:0.000000pt;}
.ls13_c00261{letter-spacing:0.128000pt;}
.lse_c00261{letter-spacing:0.236160pt;}
.ls5_c00261{letter-spacing:0.262400pt;}
.ls6_c00261{letter-spacing:0.283392pt;}
.ls10_c00261{letter-spacing:0.292114pt;}
.lsc_c00261{letter-spacing:0.377856pt;}
.ls11_c00261{letter-spacing:0.389485pt;}
.ls1c_c00261{letter-spacing:0.425088pt;}
.ls4_c00261{letter-spacing:0.472320pt;}
.ls3_c00261{letter-spacing:0.486856pt;}
.ls15_c00261{letter-spacing:0.535542pt;}
.ls19_c00261{letter-spacing:0.584228pt;}
.ls12_c00261{letter-spacing:0.614016pt;}
.ls18_c00261{letter-spacing:0.632913pt;}
.ls16_c00261{letter-spacing:0.661248pt;}
.lsf_c00261{letter-spacing:0.708480pt;}
.ls2_c00261{letter-spacing:0.730284pt;}
.lsd_c00261{letter-spacing:3.316736pt;}
.lsb_c00261{letter-spacing:4.742400pt;}
.ls1a_c00261{letter-spacing:4.901632pt;}
.ls0_c00261{letter-spacing:5.311467pt;}
.ls7_c00261{letter-spacing:5.312000pt;}
.ls8_c00261{letter-spacing:5.475484pt;}
.ls14_c00261{letter-spacing:8.543744pt;}
.ls17_c00261{letter-spacing:9.257472pt;}
.ls1_c00261{letter-spacing:9.361707pt;}
.ls1b_c00261{letter-spacing:21.144192pt;}
.ws1_c00261{word-spacing:-18.620160pt;}
.ws2_c00261{word-spacing:-17.792000pt;}
.ws3_c00261{word-spacing:-15.768735pt;}
.ws8_c00261{word-spacing:-15.671364pt;}
.ws7_c00261{word-spacing:-15.573992pt;}
.ws4_c00261{word-spacing:-15.525307pt;}
.ws5_c00261{word-spacing:-14.872832pt;}
.ws0_c00261{word-spacing:-10.159744pt;}
.ws6_c00261{word-spacing:-9.024000pt;}
.ws9_c00261{word-spacing:0.000000pt;}
._1b_c00261{margin-left:-20.775680pt;}
._1a_c00261{margin-left:-9.295360pt;}
._18_c00261{margin-left:-8.285440pt;}
._19_c00261{margin-left:-7.306240pt;}
._16_c00261{margin-left:-3.726080pt;}
._15_c00261{margin-left:-2.833920pt;}
._17_c00261{margin-left:-1.144064pt;}
._a_c00261{width:1.152000pt;}
._11_c00261{width:2.688000pt;}
._f_c00261{width:3.648000pt;}
._e_c00261{width:4.608000pt;}
._12_c00261{width:6.400000pt;}
._b_c00261{width:7.424000pt;}
._8_c00261{width:8.704000pt;}
._0_c00261{width:9.600000pt;}
._6_c00261{width:10.560000pt;}
._7_c00261{width:11.520000pt;}
._d_c00261{width:13.153276pt;}
._c_c00261{width:14.447362pt;}
._10_c00261{width:16.379941pt;}
._9_c00261{width:17.284059pt;}
._1c_c00261{width:20.007373pt;}
._4_c00261{width:21.028275pt;}
._3_c00261{width:22.363725pt;}
._5_c00261{width:25.280000pt;}
._14_c00261{width:28.864000pt;}
._13_c00261{width:31.488000pt;}
._1_c00261{width:32.832000pt;}
._2_c00261{width:33.842451pt;}
.fs6_c00261{font-size:32.000000pt;}
.fs2_c00261{font-size:37.120000pt;}
.fs3_c00261{font-size:49.920000pt;}
.fs4_c00261{font-size:52.480000pt;}
.fs7_c00261{font-size:53.333333pt;}
.fs5_c00261{font-size:54.095146pt;}
.fs0_c00261{font-size:64.000000pt;}
.fs1_c00261{font-size:65.969690pt;}
.y0_c00261{bottom:0.000000pt;}
.y34_c00261{bottom:2.773467pt;}
.y33_c00261{bottom:30.884000pt;}
.y1_c00261{bottom:48.000000pt;}
.y32_c00261{bottom:49.316480pt;}
.y31_c00261{bottom:70.120000pt;}
.y2f_c00261{bottom:80.356480pt;}
.y30_c00261{bottom:80.360000pt;}
.y2e_c00261{bottom:95.720000pt;}
.y2d_c00261{bottom:95.721600pt;}
.y2c_c00261{bottom:111.400000pt;}
.y2b_c00261{bottom:116.840000pt;}
.y2a_c00261{bottom:132.520000pt;}
.y29_c00261{bottom:142.440000pt;}
.y28_c00261{bottom:142.441600pt;}
.y27_c00261{bottom:158.120000pt;}
.y26_c00261{bottom:187.240000pt;}
.y25_c00261{bottom:273.640000pt;}
.y24_c00261{bottom:292.200000pt;}
.y23_c00261{bottom:311.080000pt;}
.y22_c00261{bottom:329.640000pt;}
.y21_c00261{bottom:348.200000pt;}
.y1f_c00261{bottom:367.080000pt;}
.y20_c00261{bottom:373.800000pt;}
.y1d_c00261{bottom:385.640000pt;}
.y1e_c00261{bottom:392.360000pt;}
.y1c_c00261{bottom:404.200000pt;}
.y1b_c00261{bottom:423.080000pt;}
.y1a_c00261{bottom:441.640000pt;}
.y19_c00261{bottom:473.640000pt;}
.y18_c00261{bottom:505.640000pt;}
.y17_c00261{bottom:537.640000pt;}
.y16_c00261{bottom:556.200000pt;}
.y15_c00261{bottom:588.200000pt;}
.y14_c00261{bottom:607.080000pt;}
.y13_c00261{bottom:625.640000pt;}
.y12_c00261{bottom:644.520000pt;}
.y11_c00261{bottom:663.080000pt;}
.y10_c00261{bottom:681.640000pt;}
.yf_c00261{bottom:713.640000pt;}
.ye_c00261{bottom:732.520000pt;}
.yd_c00261{bottom:751.080000pt;}
.yc_c00261{bottom:769.640000pt;}
.yb_c00261{bottom:801.640000pt;}
.ya_c00261{bottom:820.520000pt;}
.y9_c00261{bottom:839.080000pt;}
.y8_c00261{bottom:857.640000pt;}
.y7_c00261{bottom:876.520000pt;}
.y6_c00261{bottom:895.080000pt;}
.y5_c00261{bottom:927.080000pt;}
.y4_c00261{bottom:945.640000pt;}
.y3_c00261{bottom:964.520000pt;}
.y2_c00261{bottom:1011.880000pt;}
.ha_c00261{height:17.116000pt;}
.h9_c00261{height:28.992000pt;}
.h6_c00261{height:33.630720pt;}
.hb_c00261{height:41.173333pt;}
.h8_c00261{height:41.761453pt;}
.h7_c00261{height:47.546880pt;}
.h4_c00261{height:50.928601pt;}
.h3_c00261{height:57.984000pt;}
.h5_c00261{height:60.510720pt;}
.h2_c00261{height:1067.880000pt;}
.h0_c00261{height:1122.520000pt;}
.h1_c00261{height:1122.666667pt;}
.w3_c00261{width:22.240000pt;}
.w2_c00261{width:767.960000pt;}
.w0_c00261{width:793.720000pt;}
.w1_c00261{width:794.000000pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:12.880000pt;}
.x2_c00261{left:100.480133pt;}
.x3_c00261{left:136.927733pt;}
.x6_c00261{left:155.830400pt;}
.x1a_c00261{left:170.850933pt;}
.x25_c00261{left:173.798533pt;}
.x4_c00261{left:181.806933pt;}
.x1b_c00261{left:227.154667pt;}
.x17_c00261{left:228.742133pt;}
.x1c_c00261{left:230.860933pt;}
.x18_c00261{left:255.421600pt;}
.x1d_c00261{left:264.953067pt;}
.x26_c00261{left:272.354533pt;}
.xd_c00261{left:289.229200pt;}
.x12_c00261{left:295.967067pt;}
.x27_c00261{left:306.433200pt;}
.x11_c00261{left:310.087200pt;}
.x9_c00261{left:317.787733pt;}
.xc_c00261{left:322.493467pt;}
.x22_c00261{left:340.795600pt;}
.x20_c00261{left:366.336000pt;}
.x16_c00261{left:369.280000pt;}
.x23_c00261{left:372.661200pt;}
.xe_c00261{left:391.723333pt;}
.x21_c00261{left:398.201467pt;}
.xf_c00261{left:414.842800pt;}
.x13_c00261{left:457.002667pt;}
.x19_c00261{left:480.148667pt;}
.x1e_c00261{left:538.317333pt;}
.xa_c00261{left:550.325867pt;}
.x24_c00261{left:552.921867pt;}
.x1f_c00261{left:556.089867pt;}
.x14_c00261{left:570.633067pt;}
.x7_c00261{left:584.975867pt;}
.xb_c00261{left:588.565067pt;}
.x10_c00261{left:592.902667pt;}
.x15_c00261{left:596.587200pt;}
.x5_c00261{left:640.325867pt;}
.x8_c00261{left:662.565467pt;}
.x28_c00261{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9dfaa932febffe63a372642a.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;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_c00262;src:url('chunks/assets/font_02ede334d33796de12324c1b.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:0.965000;font-style:normal;font-weight:normal;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_c4ab292b1e05a07909b9e7c9.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00262{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00262{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00262{letter-spacing:0.000000px;}
.ls7_c00262{letter-spacing:0.202464px;}
.ls5_c00262{letter-spacing:0.239760px;}
.ls3_c00262{letter-spacing:0.399600px;}
.ls4_c00262{letter-spacing:0.436896px;}
.ls6_c00262{letter-spacing:0.450342px;}
.ls0_c00262{letter-spacing:5.976000px;}
.ls1_c00262{letter-spacing:6.159920px;}
.sc__c00262{text-shadow:none;}
.sc1_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00262{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc1_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00262{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00262{word-spacing:-15.051600px;}
.ws1_c00262{word-spacing:-0.505262px;}
.ws2_c00262{word-spacing:0.000000px;}
._0_c00262{margin-left:-1.118880px;}
._1_c00262{width:1.118880px;}
.fc1_c00262{color:transparent;}
.fc0_c00262{color:rgb(0,0,0);}
.fs2_c00262{font-size:53.280000px;}
.fs3_c00262{font-size:54.919767px;}
.fs4_c00262{font-size:60.000000px;}
.fs0_c00262{font-size:72.000000px;}
.fs1_c00262{font-size:74.215901px;}
.y22_c00262{bottom:-21.240000px;}
.y0_c00262{bottom:0.000000px;}
.y24_c00262{bottom:3.120150px;}
.y20_c00262{bottom:14.400000px;}
.y1e_c00262{bottom:25.560000px;}
.y23_c00262{bottom:34.744500px;}
.y1d_c00262{bottom:41.399850px;}
.y1_c00262{bottom:54.000000px;}
.y1b_c00262{bottom:73.845000px;}
.y1a_c00262{bottom:109.845000px;}
.y21_c00262{bottom:184.365000px;}
.y19_c00262{bottom:187.965000px;}
.y18_c00262{bottom:223.965000px;}
.y17_c00262{bottom:259.965000px;}
.y16_c00262{bottom:295.965000px;}
.y15_c00262{bottom:331.965000px;}
.y14_c00262{bottom:367.965000px;}
.y13_c00262{bottom:403.965000px;}
.y1f_c00262{bottom:481.365000px;}
.y12_c00262{bottom:481.725000px;}
.y11_c00262{bottom:517.725000px;}
.y10_c00262{bottom:554.085000px;}
.yf_c00262{bottom:590.085000px;}
.ye_c00262{bottom:626.085000px;}
.yd_c00262{bottom:662.085000px;}
.yc_c00262{bottom:698.085000px;}
.yb_c00262{bottom:734.085000px;}
.y1c_c00262{bottom:805.365000px;}
.ya_c00262{bottom:833.085000px;}
.y9_c00262{bottom:869.085000px;}
.y8_c00262{bottom:905.085000px;}
.y7_c00262{bottom:941.085000px;}
.y6_c00262{bottom:977.085000px;}
.y5_c00262{bottom:1013.085000px;}
.y4_c00262{bottom:1049.085000px;}
.y3_c00262{bottom:1085.085000px;}
.y2_c00262{bottom:1138.365000px;}
.h9_c00262{height:19.255500px;}
.h7_c00262{height:27.000000px;}
.h6_c00262{height:41.132160px;}
.h8_c00262{height:42.398060px;}
.ha_c00262{height:46.320000px;}
.h5_c00262{height:54.000000px;}
.h3_c00262{height:55.584000px;}
.h4_c00262{height:57.294676px;}
.h2_c00262{height:1201.365000px;}
.h0_c00262{height:1262.835000px;}
.h1_c00262{height:1263.000000px;}
.w5_c00262{width:25.020000px;}
.w4_c00262{width:600.480000px;}
.w3_c00262{width:623.160000px;}
.w2_c00262{width:863.955000px;}
.w0_c00262{width:892.935000px;}
.w1_c00262{width:893.250000px;}
.x0_c00262{left:0.000000px;}
.xe_c00262{left:3.239850px;}
.x1_c00262{left:14.490000px;}
.xc_c00262{left:61.992600px;}
.x8_c00262{left:80.958750px;}
.x6_c00262{left:105.724050px;}
.x2_c00262{left:113.040150px;}
.x5_c00262{left:128.970000px;}
.xb_c00262{left:150.210000px;}
.x3_c00262{left:154.043700px;}
.x7_c00262{left:157.110750px;}
.xd_c00262{left:172.299300px;}
.x9_c00262{left:191.265450px;}
.x4_c00262{left:204.532800px;}
.xa_c00262{left:223.529700px;}
.xf_c00262{left:759.915000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls2_c00262{letter-spacing:0.000000pt;}
.ls7_c00262{letter-spacing:0.179968pt;}
.ls5_c00262{letter-spacing:0.213120pt;}
.ls3_c00262{letter-spacing:0.355200pt;}
.ls4_c00262{letter-spacing:0.388352pt;}
.ls6_c00262{letter-spacing:0.400304pt;}
.ls0_c00262{letter-spacing:5.312000pt;}
.ls1_c00262{letter-spacing:5.475484pt;}
.ws0_c00262{word-spacing:-13.379200pt;}
.ws1_c00262{word-spacing:-0.449122pt;}
.ws2_c00262{word-spacing:0.000000pt;}
._0_c00262{margin-left:-0.994560pt;}
._1_c00262{width:0.994560pt;}
.fs2_c00262{font-size:47.360000pt;}
.fs3_c00262{font-size:48.817571pt;}
.fs4_c00262{font-size:53.333333pt;}
.fs0_c00262{font-size:64.000000pt;}
.fs1_c00262{font-size:65.969690pt;}
.y22_c00262{bottom:-18.880000pt;}
.y0_c00262{bottom:0.000000pt;}
.y24_c00262{bottom:2.773467pt;}
.y20_c00262{bottom:12.800000pt;}
.y1e_c00262{bottom:22.720000pt;}
.y23_c00262{bottom:30.884000pt;}
.y1d_c00262{bottom:36.799867pt;}
.y1_c00262{bottom:48.000000pt;}
.y1b_c00262{bottom:65.640000pt;}
.y1a_c00262{bottom:97.640000pt;}
.y21_c00262{bottom:163.880000pt;}
.y19_c00262{bottom:167.080000pt;}
.y18_c00262{bottom:199.080000pt;}
.y17_c00262{bottom:231.080000pt;}
.y16_c00262{bottom:263.080000pt;}
.y15_c00262{bottom:295.080000pt;}
.y14_c00262{bottom:327.080000pt;}
.y13_c00262{bottom:359.080000pt;}
.y1f_c00262{bottom:427.880000pt;}
.y12_c00262{bottom:428.200000pt;}
.y11_c00262{bottom:460.200000pt;}
.y10_c00262{bottom:492.520000pt;}
.yf_c00262{bottom:524.520000pt;}
.ye_c00262{bottom:556.520000pt;}
.yd_c00262{bottom:588.520000pt;}
.yc_c00262{bottom:620.520000pt;}
.yb_c00262{bottom:652.520000pt;}
.y1c_c00262{bottom:715.880000pt;}
.ya_c00262{bottom:740.520000pt;}
.y9_c00262{bottom:772.520000pt;}
.y8_c00262{bottom:804.520000pt;}
.y7_c00262{bottom:836.520000pt;}
.y6_c00262{bottom:868.520000pt;}
.y5_c00262{bottom:900.520000pt;}
.y4_c00262{bottom:932.520000pt;}
.y3_c00262{bottom:964.520000pt;}
.y2_c00262{bottom:1011.880000pt;}
.h9_c00262{height:17.116000pt;}
.h7_c00262{height:24.000000pt;}
.h6_c00262{height:36.561920pt;}
.h8_c00262{height:37.687165pt;}
.ha_c00262{height:41.173333pt;}
.h5_c00262{height:48.000000pt;}
.h3_c00262{height:49.408000pt;}
.h4_c00262{height:50.928601pt;}
.h2_c00262{height:1067.880000pt;}
.h0_c00262{height:1122.520000pt;}
.h1_c00262{height:1122.666667pt;}
.w5_c00262{width:22.240000pt;}
.w4_c00262{width:533.760000pt;}
.w3_c00262{width:553.920000pt;}
.w2_c00262{width:767.960000pt;}
.w0_c00262{width:793.720000pt;}
.w1_c00262{width:794.000000pt;}
.x0_c00262{left:0.000000pt;}
.xe_c00262{left:2.879867pt;}
.x1_c00262{left:12.880000pt;}
.xc_c00262{left:55.104533pt;}
.x8_c00262{left:71.963333pt;}
.x6_c00262{left:93.976933pt;}
.x2_c00262{left:100.480133pt;}
.x5_c00262{left:114.640000pt;}
.xb_c00262{left:133.520000pt;}
.x3_c00262{left:136.927733pt;}
.x7_c00262{left:139.654000pt;}
.xd_c00262{left:153.154933pt;}
.x9_c00262{left:170.013733pt;}
.x4_c00262{left:181.806933pt;}
.xa_c00262{left:198.693067pt;}
.xf_c00262{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0b426ff12bed2f14c47b422.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;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_c00263;src:url('chunks/assets/font_02ede334d33796de12324c1b.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:0.965000;font-style:normal;font-weight:normal;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_3f3eaca42ca8f318eade56a6.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:0.787000;font-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_c00263{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00263{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls2_c00263{letter-spacing:0.000000px;}
.ls4_c00263{letter-spacing:0.202464px;}
.ls7_c00263{letter-spacing:0.239760px;}
.ls6_c00263{letter-spacing:0.319680px;}
.ls3_c00263{letter-spacing:0.399600px;}
.ls5_c00263{letter-spacing:0.450342px;}
.ls0_c00263{letter-spacing:5.976000px;}
.ls1_c00263{letter-spacing:6.159920px;}
.sc__c00263{text-shadow:none;}
.sc1_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00263{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc1_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00263{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00263{word-spacing:-15.051600px;}
.ws0_c00263{word-spacing:-0.505262px;}
.ws2_c00263{word-spacing:0.000000px;}
._0_c00263{margin-left:-1.118880px;}
._1_c00263{width:1.014120px;}
.fc1_c00263{color:transparent;}
.fc0_c00263{color:rgb(0,0,0);}
.fs2_c00263{font-size:53.280000px;}
.fs3_c00263{font-size:54.919767px;}
.fs4_c00263{font-size:60.000000px;}
.fs0_c00263{font-size:72.000000px;}
.fs1_c00263{font-size:74.215901px;}
.y1e_c00263{bottom:-21.240000px;}
.y24_c00263{bottom:-17.640000px;}
.y0_c00263{bottom:0.000000px;}
.y26_c00263{bottom:3.120150px;}
.y21_c00263{bottom:6.120000px;}
.y1d_c00263{bottom:14.399850px;}
.y23_c00263{bottom:18.000000px;}
.y25_c00263{bottom:34.744500px;}
.y20_c00263{bottom:41.400000px;}
.y1_c00263{bottom:54.000000px;}
.y1b_c00263{bottom:73.845000px;}
.y1a_c00263{bottom:151.965000px;}
.y22_c00263{bottom:153.765000px;}
.y19_c00263{bottom:187.965000px;}
.y18_c00263{bottom:223.965000px;}
.y17_c00263{bottom:259.965000px;}
.y16_c00263{bottom:295.965000px;}
.y15_c00263{bottom:331.965000px;}
.y14_c00263{bottom:367.965000px;}
.y13_c00263{bottom:403.965000px;}
.y1f_c00263{bottom:475.245000px;}
.y12_c00263{bottom:502.965000px;}
.y11_c00263{bottom:538.965000px;}
.y10_c00263{bottom:574.965000px;}
.yf_c00263{bottom:610.965000px;}
.ye_c00263{bottom:646.965000px;}
.yd_c00263{bottom:682.965000px;}
.yc_c00263{bottom:718.965000px;}
.yb_c00263{bottom:754.965000px;}
.y1c_c00263{bottom:832.365000px;}
.ya_c00263{bottom:833.085000px;}
.y9_c00263{bottom:869.085000px;}
.y8_c00263{bottom:905.085000px;}
.y7_c00263{bottom:941.085000px;}
.y6_c00263{bottom:977.085000px;}
.y5_c00263{bottom:1013.085000px;}
.y4_c00263{bottom:1049.085000px;}
.y3_c00263{bottom:1085.085000px;}
.y2_c00263{bottom:1138.365000px;}
.ha_c00263{height:19.255500px;}
.h5_c00263{height:27.000000px;}
.h8_c00263{height:30.600000px;}
.h6_c00263{height:41.132160px;}
.h9_c00263{height:42.398060px;}
.hb_c00263{height:46.320000px;}
.h7_c00263{height:54.000000px;}
.h3_c00263{height:55.584000px;}
.h4_c00263{height:57.294676px;}
.h2_c00263{height:1201.365000px;}
.h0_c00263{height:1262.835000px;}
.h1_c00263{height:1263.000000px;}
.w5_c00263{width:25.020000px;}
.w4_c00263{width:623.160000px;}
.w3_c00263{width:627.840000px;}
.w2_c00263{width:863.955000px;}
.w0_c00263{width:892.935000px;}
.w1_c00263{width:893.250000px;}
.x0_c00263{left:0.000000px;}
.x7_c00263{left:3.240150px;}
.x1_c00263{left:14.490000px;}
.x6_c00263{left:75.492900px;}
.xa_c00263{left:77.205750px;}
.x8_c00263{left:79.245750px;}
.x2_c00263{left:113.040150px;}
.x5_c00263{left:124.290000px;}
.x9_c00263{left:128.970000px;}
.x3_c00263{left:154.043700px;}
.xb_c00263{left:187.512600px;}
.x4_c00263{left:204.532800px;}
.xc_c00263{left:219.776850px;}
.xd_c00263{left:759.915000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls2_c00263{letter-spacing:0.000000pt;}
.ls4_c00263{letter-spacing:0.179968pt;}
.ls7_c00263{letter-spacing:0.213120pt;}
.ls6_c00263{letter-spacing:0.284160pt;}
.ls3_c00263{letter-spacing:0.355200pt;}
.ls5_c00263{letter-spacing:0.400304pt;}
.ls0_c00263{letter-spacing:5.312000pt;}
.ls1_c00263{letter-spacing:5.475484pt;}
.ws1_c00263{word-spacing:-13.379200pt;}
.ws0_c00263{word-spacing:-0.449122pt;}
.ws2_c00263{word-spacing:0.000000pt;}
._0_c00263{margin-left:-0.994560pt;}
._1_c00263{width:0.901440pt;}
.fs2_c00263{font-size:47.360000pt;}
.fs3_c00263{font-size:48.817571pt;}
.fs4_c00263{font-size:53.333333pt;}
.fs0_c00263{font-size:64.000000pt;}
.fs1_c00263{font-size:65.969690pt;}
.y1e_c00263{bottom:-18.880000pt;}
.y24_c00263{bottom:-15.680000pt;}
.y0_c00263{bottom:0.000000pt;}
.y26_c00263{bottom:2.773467pt;}
.y21_c00263{bottom:5.440000pt;}
.y1d_c00263{bottom:12.799867pt;}
.y23_c00263{bottom:16.000000pt;}
.y25_c00263{bottom:30.884000pt;}
.y20_c00263{bottom:36.800000pt;}
.y1_c00263{bottom:48.000000pt;}
.y1b_c00263{bottom:65.640000pt;}
.y1a_c00263{bottom:135.080000pt;}
.y22_c00263{bottom:136.680000pt;}
.y19_c00263{bottom:167.080000pt;}
.y18_c00263{bottom:199.080000pt;}
.y17_c00263{bottom:231.080000pt;}
.y16_c00263{bottom:263.080000pt;}
.y15_c00263{bottom:295.080000pt;}
.y14_c00263{bottom:327.080000pt;}
.y13_c00263{bottom:359.080000pt;}
.y1f_c00263{bottom:422.440000pt;}
.y12_c00263{bottom:447.080000pt;}
.y11_c00263{bottom:479.080000pt;}
.y10_c00263{bottom:511.080000pt;}
.yf_c00263{bottom:543.080000pt;}
.ye_c00263{bottom:575.080000pt;}
.yd_c00263{bottom:607.080000pt;}
.yc_c00263{bottom:639.080000pt;}
.yb_c00263{bottom:671.080000pt;}
.y1c_c00263{bottom:739.880000pt;}
.ya_c00263{bottom:740.520000pt;}
.y9_c00263{bottom:772.520000pt;}
.y8_c00263{bottom:804.520000pt;}
.y7_c00263{bottom:836.520000pt;}
.y6_c00263{bottom:868.520000pt;}
.y5_c00263{bottom:900.520000pt;}
.y4_c00263{bottom:932.520000pt;}
.y3_c00263{bottom:964.520000pt;}
.y2_c00263{bottom:1011.880000pt;}
.ha_c00263{height:17.116000pt;}
.h5_c00263{height:24.000000pt;}
.h8_c00263{height:27.200000pt;}
.h6_c00263{height:36.561920pt;}
.h9_c00263{height:37.687165pt;}
.hb_c00263{height:41.173333pt;}
.h7_c00263{height:48.000000pt;}
.h3_c00263{height:49.408000pt;}
.h4_c00263{height:50.928601pt;}
.h2_c00263{height:1067.880000pt;}
.h0_c00263{height:1122.520000pt;}
.h1_c00263{height:1122.666667pt;}
.w5_c00263{width:22.240000pt;}
.w4_c00263{width:553.920000pt;}
.w3_c00263{width:558.080000pt;}
.w2_c00263{width:767.960000pt;}
.w0_c00263{width:793.720000pt;}
.w1_c00263{width:794.000000pt;}
.x0_c00263{left:0.000000pt;}
.x7_c00263{left:2.880133pt;}
.x1_c00263{left:12.880000pt;}
.x6_c00263{left:67.104800pt;}
.xa_c00263{left:68.627333pt;}
.x8_c00263{left:70.440667pt;}
.x2_c00263{left:100.480133pt;}
.x5_c00263{left:110.480000pt;}
.x9_c00263{left:114.640000pt;}
.x3_c00263{left:136.927733pt;}
.xb_c00263{left:166.677867pt;}
.x4_c00263{left:181.806933pt;}
.xc_c00263{left:195.357200pt;}
.xd_c00263{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_05a0cc9354249c3132a40fde.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;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_c00264;src:url('chunks/assets/font_7191d39ef7f770933939252d.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:0.965000;font-style:normal;font-weight:normal;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_166ba8d7fe365a595f286e67.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:0.787000;font-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_c00264{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00264{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00264{letter-spacing:0.000000px;}
.ls6_c00264{letter-spacing:0.202464px;}
.ls0_c00264{letter-spacing:0.238560px;}
.ls1_c00264{letter-spacing:0.239160px;}
.ls8_c00264{letter-spacing:0.239760px;}
.ls9_c00264{letter-spacing:0.247139px;}
.ls5_c00264{letter-spacing:0.399600px;}
.ls7_c00264{letter-spacing:0.450342px;}
.ls2_c00264{letter-spacing:5.976000px;}
.ls3_c00264{letter-spacing:6.159920px;}
.sc__c00264{text-shadow:none;}
.sc2_c00264{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00264{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc2_c00264{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00264{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00264{word-spacing:-15.051600px;}
.ws0_c00264{word-spacing:-0.505262px;}
.ws2_c00264{word-spacing:-0.302059px;}
.ws3_c00264{word-spacing:0.000000px;}
._0_c00264{margin-left:-1.118880px;}
._1_c00264{width:1.014120px;}
.fc2_c00264{color:transparent;}
.fc1_c00264{color:rgb(79,129,189);}
.fc0_c00264{color:rgb(0,0,0);}
.fs2_c00264{font-size:53.280000px;}
.fs3_c00264{font-size:54.919767px;}
.fs4_c00264{font-size:60.000000px;}
.fs0_c00264{font-size:72.000000px;}
.fs1_c00264{font-size:74.215901px;}
.y1f_c00264{bottom:-21.240000px;}
.y22_c00264{bottom:-16.560000px;}
.y0_c00264{bottom:0.000000px;}
.y27_c00264{bottom:3.120150px;}
.y25_c00264{bottom:4.320000px;}
.y1e_c00264{bottom:14.399850px;}
.y21_c00264{bottom:14.400000px;}
.y26_c00264{bottom:34.744500px;}
.y24_c00264{bottom:39.960000px;}
.y1_c00264{bottom:54.000000px;}
.y1c_c00264{bottom:79.965000px;}
.y23_c00264{bottom:158.805000px;}
.y1b_c00264{bottom:178.965000px;}
.y1a_c00264{bottom:214.965000px;}
.y19_c00264{bottom:250.965000px;}
.y18_c00264{bottom:286.965000px;}
.y17_c00264{bottom:322.965000px;}
.y16_c00264{bottom:358.965000px;}
.y15_c00264{bottom:394.965000px;}
.y14_c00264{bottom:430.965000px;}
.y13_c00264{bottom:466.965000px;}
.y20_c00264{bottom:499.365000px;}
.y12_c00264{bottom:502.965000px;}
.y11_c00264{bottom:538.965000px;}
.y10_c00264{bottom:574.965000px;}
.yf_c00264{bottom:610.965000px;}
.ye_c00264{bottom:646.965000px;}
.yd_c00264{bottom:682.965000px;}
.yc_c00264{bottom:718.965000px;}
.yb_c00264{bottom:754.965000px;}
.y1d_c00264{bottom:832.365000px;}
.ya_c00264{bottom:833.085000px;}
.y9_c00264{bottom:869.085000px;}
.y8_c00264{bottom:905.085000px;}
.y7_c00264{bottom:941.085000px;}
.y6_c00264{bottom:977.085000px;}
.y5_c00264{bottom:1013.085000px;}
.y4_c00264{bottom:1049.085000px;}
.y3_c00264{bottom:1085.085000px;}
.y2_c00264{bottom:1138.365000px;}
.h9_c00264{height:19.255500px;}
.h5_c00264{height:27.000000px;}
.h6_c00264{height:41.132160px;}
.h7_c00264{height:42.398060px;}
.ha_c00264{height:46.320000px;}
.h8_c00264{height:52.560000px;}
.h3_c00264{height:55.584000px;}
.h4_c00264{height:57.294676px;}
.h2_c00264{height:1201.365000px;}
.h0_c00264{height:1262.835000px;}
.h1_c00264{height:1263.000000px;}
.w6_c00264{width:25.020000px;}
.w3_c00264{width:654.840000px;}
.w4_c00264{width:656.280000px;}
.w5_c00264{width:669.600000px;}
.w2_c00264{width:863.955000px;}
.w0_c00264{width:892.935000px;}
.w1_c00264{width:893.250000px;}
.x0_c00264{left:0.000000px;}
.x7_c00264{left:3.240150px;}
.x1_c00264{left:14.490000px;}
.x9_c00264{left:74.744700px;}
.xf_c00264{left:77.209350px;}
.x6_c00264{left:92.745750px;}
.x2_c00264{left:113.040150px;}
.x8_c00264{left:122.850000px;}
.x5_c00264{left:124.290000px;}
.xe_c00264{left:130.410000px;}
.x3_c00264{left:154.043700px;}
.xa_c00264{left:185.051550px;}
.x10_c00264{left:187.516200px;}
.x4_c00264{left:204.532800px;}
.xb_c00264{left:217.315800px;}
.x11_c00264{left:219.780450px;}
.xc_c00264{left:328.337400px;}
.x12_c00264{left:330.802050px;}
.xd_c00264{left:353.095800px;}
.x13_c00264{left:364.550850px;}
.x14_c00264{left:759.915000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls4_c00264{letter-spacing:0.000000pt;}
.ls6_c00264{letter-spacing:0.179968pt;}
.ls0_c00264{letter-spacing:0.212053pt;}
.ls1_c00264{letter-spacing:0.212587pt;}
.ls8_c00264{letter-spacing:0.213120pt;}
.ls9_c00264{letter-spacing:0.219679pt;}
.ls5_c00264{letter-spacing:0.355200pt;}
.ls7_c00264{letter-spacing:0.400304pt;}
.ls2_c00264{letter-spacing:5.312000pt;}
.ls3_c00264{letter-spacing:5.475484pt;}
.ws1_c00264{word-spacing:-13.379200pt;}
.ws0_c00264{word-spacing:-0.449122pt;}
.ws2_c00264{word-spacing:-0.268497pt;}
.ws3_c00264{word-spacing:0.000000pt;}
._0_c00264{margin-left:-0.994560pt;}
._1_c00264{width:0.901440pt;}
.fs2_c00264{font-size:47.360000pt;}
.fs3_c00264{font-size:48.817571pt;}
.fs4_c00264{font-size:53.333333pt;}
.fs0_c00264{font-size:64.000000pt;}
.fs1_c00264{font-size:65.969690pt;}
.y1f_c00264{bottom:-18.880000pt;}
.y22_c00264{bottom:-14.720000pt;}
.y0_c00264{bottom:0.000000pt;}
.y27_c00264{bottom:2.773467pt;}
.y25_c00264{bottom:3.840000pt;}
.y1e_c00264{bottom:12.799867pt;}
.y21_c00264{bottom:12.800000pt;}
.y26_c00264{bottom:30.884000pt;}
.y24_c00264{bottom:35.520000pt;}
.y1_c00264{bottom:48.000000pt;}
.y1c_c00264{bottom:71.080000pt;}
.y23_c00264{bottom:141.160000pt;}
.y1b_c00264{bottom:159.080000pt;}
.y1a_c00264{bottom:191.080000pt;}
.y19_c00264{bottom:223.080000pt;}
.y18_c00264{bottom:255.080000pt;}
.y17_c00264{bottom:287.080000pt;}
.y16_c00264{bottom:319.080000pt;}
.y15_c00264{bottom:351.080000pt;}
.y14_c00264{bottom:383.080000pt;}
.y13_c00264{bottom:415.080000pt;}
.y20_c00264{bottom:443.880000pt;}
.y12_c00264{bottom:447.080000pt;}
.y11_c00264{bottom:479.080000pt;}
.y10_c00264{bottom:511.080000pt;}
.yf_c00264{bottom:543.080000pt;}
.ye_c00264{bottom:575.080000pt;}
.yd_c00264{bottom:607.080000pt;}
.yc_c00264{bottom:639.080000pt;}
.yb_c00264{bottom:671.080000pt;}
.y1d_c00264{bottom:739.880000pt;}
.ya_c00264{bottom:740.520000pt;}
.y9_c00264{bottom:772.520000pt;}
.y8_c00264{bottom:804.520000pt;}
.y7_c00264{bottom:836.520000pt;}
.y6_c00264{bottom:868.520000pt;}
.y5_c00264{bottom:900.520000pt;}
.y4_c00264{bottom:932.520000pt;}
.y3_c00264{bottom:964.520000pt;}
.y2_c00264{bottom:1011.880000pt;}
.h9_c00264{height:17.116000pt;}
.h5_c00264{height:24.000000pt;}
.h6_c00264{height:36.561920pt;}
.h7_c00264{height:37.687165pt;}
.ha_c00264{height:41.173333pt;}
.h8_c00264{height:46.720000pt;}
.h3_c00264{height:49.408000pt;}
.h4_c00264{height:50.928601pt;}
.h2_c00264{height:1067.880000pt;}
.h0_c00264{height:1122.520000pt;}
.h1_c00264{height:1122.666667pt;}
.w6_c00264{width:22.240000pt;}
.w3_c00264{width:582.080000pt;}
.w4_c00264{width:583.360000pt;}
.w5_c00264{width:595.200000pt;}
.w2_c00264{width:767.960000pt;}
.w0_c00264{width:793.720000pt;}
.w1_c00264{width:794.000000pt;}
.x0_c00264{left:0.000000pt;}
.x7_c00264{left:2.880133pt;}
.x1_c00264{left:12.880000pt;}
.x9_c00264{left:66.439733pt;}
.xf_c00264{left:68.630533pt;}
.x6_c00264{left:82.440667pt;}
.x2_c00264{left:100.480133pt;}
.x8_c00264{left:109.200000pt;}
.x5_c00264{left:110.480000pt;}
.xe_c00264{left:115.920000pt;}
.x3_c00264{left:136.927733pt;}
.xa_c00264{left:164.490267pt;}
.x10_c00264{left:166.681067pt;}
.x4_c00264{left:181.806933pt;}
.xb_c00264{left:193.169600pt;}
.x11_c00264{left:195.360400pt;}
.xc_c00264{left:291.855467pt;}
.x12_c00264{left:294.046267pt;}
.xd_c00264{left:313.862933pt;}
.x13_c00264{left:324.045200pt;}
.x14_c00264{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f883b8c1830e905b85f260d.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;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_c00265;src:url('chunks/assets/font_02ede334d33796de12324c1b.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:0.965000;font-style:normal;font-weight:normal;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_c1c4ae336d9f1e79654c5679.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:0.787000;font-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_c00265{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00265{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00265{letter-spacing:0.000000px;}
.ls4_c00265{letter-spacing:0.202464px;}
.ls6_c00265{letter-spacing:0.239760px;}
.ls3_c00265{letter-spacing:0.399600px;}
.ls5_c00265{letter-spacing:0.450342px;}
.ls0_c00265{letter-spacing:5.976000px;}
.ls1_c00265{letter-spacing:6.159920px;}
.sc__c00265{text-shadow:none;}
.sc1_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00265{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc1_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00265{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00265{word-spacing:-15.211440px;}
.ws1_c00265{word-spacing:-15.051600px;}
.ws0_c00265{word-spacing:-0.505262px;}
.ws3_c00265{word-spacing:0.000000px;}
._0_c00265{width:1.014240px;}
.fc1_c00265{color:transparent;}
.fc0_c00265{color:rgb(0,0,0);}
.fs2_c00265{font-size:53.280000px;}
.fs3_c00265{font-size:54.919767px;}
.fs4_c00265{font-size:60.000000px;}
.fs0_c00265{font-size:72.000000px;}
.fs1_c00265{font-size:74.215901px;}
.y1a_c00265{bottom:-21.240000px;}
.y0_c00265{bottom:0.000000px;}
.y1d_c00265{bottom:3.120150px;}
.y17_c00265{bottom:5.760000px;}
.y19_c00265{bottom:14.400000px;}
.y1c_c00265{bottom:34.744500px;}
.y16_c00265{bottom:41.400000px;}
.y1_c00265{bottom:54.000000px;}
.y1b_c00265{bottom:130.365000px;}
.y14_c00265{bottom:367.965000px;}
.y13_c00265{bottom:445.725000px;}
.y18_c00265{bottom:454.365000px;}
.y12_c00265{bottom:481.725000px;}
.y11_c00265{bottom:517.725000px;}
.y10_c00265{bottom:554.085000px;}
.yf_c00265{bottom:590.085000px;}
.ye_c00265{bottom:626.085000px;}
.yd_c00265{bottom:662.085000px;}
.yc_c00265{bottom:698.085000px;}
.y15_c00265{bottom:778.365000px;}
.yb_c00265{bottom:797.085000px;}
.ya_c00265{bottom:833.085000px;}
.y9_c00265{bottom:869.085000px;}
.y8_c00265{bottom:905.085000px;}
.y7_c00265{bottom:941.085000px;}
.y6_c00265{bottom:977.085000px;}
.y5_c00265{bottom:1013.085000px;}
.y4_c00265{bottom:1049.085000px;}
.y3_c00265{bottom:1085.085000px;}
.y2_c00265{bottom:1138.365000px;}
.h9_c00265{height:19.255500px;}
.h8_c00265{height:27.000000px;}
.h6_c00265{height:41.132160px;}
.h7_c00265{height:42.398060px;}
.ha_c00265{height:46.320000px;}
.h5_c00265{height:54.000000px;}
.h3_c00265{height:55.584000px;}
.h4_c00265{height:57.294676px;}
.h2_c00265{height:1201.365000px;}
.h0_c00265{height:1262.835000px;}
.h1_c00265{height:1263.000000px;}
.w5_c00265{width:25.020000px;}
.w4_c00265{width:650.160000px;}
.w3_c00265{width:654.840000px;}
.w2_c00265{width:863.955000px;}
.w0_c00265{width:892.935000px;}
.w1_c00265{width:893.250000px;}
.x0_c00265{left:0.000000px;}
.x9_c00265{left:3.240150px;}
.x1_c00265{left:14.490000px;}
.x6_c00265{left:80.373300px;}
.xa_c00265{left:84.868950px;}
.xe_c00265{left:86.952900px;}
.x2_c00265{left:113.040150px;}
.x5_c00265{left:124.290000px;}
.xd_c00265{left:128.970000px;}
.x3_c00265{left:154.043700px;}
.x7_c00265{left:198.186000px;}
.xb_c00265{left:202.681500px;}
.x4_c00265{left:204.532800px;}
.x8_c00265{left:230.450250px;}
.xc_c00265{left:234.945900px;}
.xf_c00265{left:237.029700px;}
.x10_c00265{left:759.915000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls2_c00265{letter-spacing:0.000000pt;}
.ls4_c00265{letter-spacing:0.179968pt;}
.ls6_c00265{letter-spacing:0.213120pt;}
.ls3_c00265{letter-spacing:0.355200pt;}
.ls5_c00265{letter-spacing:0.400304pt;}
.ls0_c00265{letter-spacing:5.312000pt;}
.ls1_c00265{letter-spacing:5.475484pt;}
.ws2_c00265{word-spacing:-13.521280pt;}
.ws1_c00265{word-spacing:-13.379200pt;}
.ws0_c00265{word-spacing:-0.449122pt;}
.ws3_c00265{word-spacing:0.000000pt;}
._0_c00265{width:0.901547pt;}
.fs2_c00265{font-size:47.360000pt;}
.fs3_c00265{font-size:48.817571pt;}
.fs4_c00265{font-size:53.333333pt;}
.fs0_c00265{font-size:64.000000pt;}
.fs1_c00265{font-size:65.969690pt;}
.y1a_c00265{bottom:-18.880000pt;}
.y0_c00265{bottom:0.000000pt;}
.y1d_c00265{bottom:2.773467pt;}
.y17_c00265{bottom:5.120000pt;}
.y19_c00265{bottom:12.800000pt;}
.y1c_c00265{bottom:30.884000pt;}
.y16_c00265{bottom:36.800000pt;}
.y1_c00265{bottom:48.000000pt;}
.y1b_c00265{bottom:115.880000pt;}
.y14_c00265{bottom:327.080000pt;}
.y13_c00265{bottom:396.200000pt;}
.y18_c00265{bottom:403.880000pt;}
.y12_c00265{bottom:428.200000pt;}
.y11_c00265{bottom:460.200000pt;}
.y10_c00265{bottom:492.520000pt;}
.yf_c00265{bottom:524.520000pt;}
.ye_c00265{bottom:556.520000pt;}
.yd_c00265{bottom:588.520000pt;}
.yc_c00265{bottom:620.520000pt;}
.y15_c00265{bottom:691.880000pt;}
.yb_c00265{bottom:708.520000pt;}
.ya_c00265{bottom:740.520000pt;}
.y9_c00265{bottom:772.520000pt;}
.y8_c00265{bottom:804.520000pt;}
.y7_c00265{bottom:836.520000pt;}
.y6_c00265{bottom:868.520000pt;}
.y5_c00265{bottom:900.520000pt;}
.y4_c00265{bottom:932.520000pt;}
.y3_c00265{bottom:964.520000pt;}
.y2_c00265{bottom:1011.880000pt;}
.h9_c00265{height:17.116000pt;}
.h8_c00265{height:24.000000pt;}
.h6_c00265{height:36.561920pt;}
.h7_c00265{height:37.687165pt;}
.ha_c00265{height:41.173333pt;}
.h5_c00265{height:48.000000pt;}
.h3_c00265{height:49.408000pt;}
.h4_c00265{height:50.928601pt;}
.h2_c00265{height:1067.880000pt;}
.h0_c00265{height:1122.520000pt;}
.h1_c00265{height:1122.666667pt;}
.w5_c00265{width:22.240000pt;}
.w4_c00265{width:577.920000pt;}
.w3_c00265{width:582.080000pt;}
.w2_c00265{width:767.960000pt;}
.w0_c00265{width:793.720000pt;}
.w1_c00265{width:794.000000pt;}
.x0_c00265{left:0.000000pt;}
.x9_c00265{left:2.880133pt;}
.x1_c00265{left:12.880000pt;}
.x6_c00265{left:71.442933pt;}
.xa_c00265{left:75.439067pt;}
.xe_c00265{left:77.291467pt;}
.x2_c00265{left:100.480133pt;}
.x5_c00265{left:110.480000pt;}
.xd_c00265{left:114.640000pt;}
.x3_c00265{left:136.927733pt;}
.x7_c00265{left:176.165333pt;}
.xb_c00265{left:180.161333pt;}
.x4_c00265{left:181.806933pt;}
.x8_c00265{left:204.844667pt;}
.xc_c00265{left:208.840800pt;}
.xf_c00265{left:210.693067pt;}
.x10_c00265{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b8915477b1a551c37935329.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.134000;font-style:normal;font-weight:normal;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_8801261cf8744c684a48dcd6.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;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:ff3_c00266;src:url('chunks/assets/font_7cb484ebaa97ff57a3270b1f.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:0.787000;font-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_c00266{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00266{vertical-align:-24.480000px;}
.v0_c00266{vertical-align:0.000000px;}
.v1_c00266{vertical-align:30.240000px;}
.lse_c00266{letter-spacing:0.000000px;}
.ls6_c00266{letter-spacing:0.171240px;}
.ls7_c00266{letter-spacing:0.236160px;}
.ls9_c00266{letter-spacing:0.265680px;}
.ls8_c00266{letter-spacing:0.295200px;}
.lsc_c00266{letter-spacing:0.328628px;}
.ls14_c00266{letter-spacing:0.438171px;}
.ls10_c00266{letter-spacing:0.531360px;}
.lsb_c00266{letter-spacing:0.560880px;}
.lsa_c00266{letter-spacing:0.712027px;}
.ls11_c00266{letter-spacing:0.743904px;}
.ls12_c00266{letter-spacing:0.821570px;}
.ls13_c00266{letter-spacing:0.985968px;}
.lsf_c00266{letter-spacing:5.163646px;}
.ls2_c00266{letter-spacing:5.305447px;}
.ls4_c00266{letter-spacing:5.335200px;}
.ls3_c00266{letter-spacing:5.974800px;}
.lsd_c00266{letter-spacing:5.976000px;}
.ls1_c00266{letter-spacing:6.158683px;}
.ls0_c00266{letter-spacing:6.159920px;}
.ls5_c00266{letter-spacing:8.413440px;}
.sc__c00266{text-shadow:none;}
.sc1_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00266{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc1_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00266{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00266{word-spacing:-25.992000px;}
.ws0_c00266{word-spacing:-21.256622px;}
.ws2_c00266{word-spacing:-20.947680px;}
.ws4_c00266{word-spacing:-20.016000px;}
.ws6_c00266{word-spacing:-17.739827px;}
.ws7_c00266{word-spacing:-17.630284px;}
.ws8_c00266{word-spacing:-17.246885px;}
.ws3_c00266{word-spacing:-11.609280px;}
.ws5_c00266{word-spacing:-10.008000px;}
.ws9_c00266{word-spacing:0.000000px;}
._f_c00266{margin-left:-1.121760px;}
._5_c00266{width:1.728000px;}
._3_c00266{width:2.736000px;}
._1_c00266{width:4.032000px;}
._0_c00266{width:5.485440px;}
._a_c00266{width:6.583680px;}
._9_c00266{width:8.424000px;}
._7_c00266{width:10.080000px;}
._b_c00266{width:14.688000px;}
._2_c00266{width:15.768000px;}
._8_c00266{width:16.776000px;}
._6_c00266{width:21.168000px;}
._e_c00266{width:22.248000px;}
._4_c00266{width:26.280000px;}
._d_c00266{width:27.383040px;}
._c_c00266{width:28.408320px;}
.fc0_c00266{color:rgb(0,0,0);}
.fs5_c00266{font-size:36.000000px;}
.fs4_c00266{font-size:41.760000px;}
.fs3_c00266{font-size:56.160000px;}
.fs2_c00266{font-size:57.888403px;}
.fs6_c00266{font-size:59.040000px;}
.fs8_c00266{font-size:60.000000px;}
.fs7_c00266{font-size:60.857039px;}
.fs0_c00266{font-size:72.000000px;}
.fs1_c00266{font-size:74.215901px;}
.y0_c00266{bottom:0.000000px;}
.y2d_c00266{bottom:3.120150px;}
.y2c_c00266{bottom:34.744500px;}
.y1_c00266{bottom:54.000000px;}
.y2b_c00266{bottom:55.485000px;}
.y2a_c00266{bottom:61.605000px;}
.y29_c00266{bottom:78.885000px;}
.y28_c00266{bottom:90.405000px;}
.y27_c00266{bottom:96.525000px;}
.y26_c00266{bottom:113.805000px;}
.y25_c00266{bottom:125.326800px;}
.y24_c00266{bottom:142.965000px;}
.y23_c00266{bottom:149.085000px;}
.y22_c00266{bottom:175.725000px;}
.y21_c00266{bottom:394.965000px;}
.y20_c00266{bottom:415.845000px;}
.y1f_c00266{bottom:436.725000px;}
.y1e_c00266{bottom:457.965000px;}
.y1d_c00266{bottom:478.845000px;}
.y1c_c00266{bottom:514.845000px;}
.y1b_c00266{bottom:535.725000px;}
.y1a_c00266{bottom:556.965000px;}
.y19_c00266{bottom:577.845000px;}
.y18_c00266{bottom:598.725000px;}
.y17_c00266{bottom:619.965000px;}
.y16_c00266{bottom:640.845000px;}
.y15_c00266{bottom:661.725000px;}
.y14_c00266{bottom:697.725000px;}
.y13_c00266{bottom:718.965000px;}
.y12_c00266{bottom:739.845000px;}
.y11_c00266{bottom:761.085000px;}
.y10_c00266{bottom:781.965000px;}
.yf_c00266{bottom:802.845000px;}
.ye_c00266{bottom:824.085000px;}
.yd_c00266{bottom:844.965000px;}
.yc_c00266{bottom:880.965000px;}
.yb_c00266{bottom:901.845000px;}
.ya_c00266{bottom:923.085000px;}
.y9_c00266{bottom:943.965000px;}
.y8_c00266{bottom:964.845000px;}
.y7_c00266{bottom:986.085000px;}
.y6_c00266{bottom:1006.965000px;}
.y5_c00266{bottom:1027.845000px;}
.y4_c00266{bottom:1049.085000px;}
.y3_c00266{bottom:1085.085000px;}
.y2_c00266{bottom:1137.285000px;}
.h9_c00266{height:19.255500px;}
.h6_c00266{height:32.616000px;}
.ha_c00266{height:46.320000px;}
.h7_c00266{height:46.981634px;}
.h8_c00266{height:53.490240px;}
.h4_c00266{height:57.294676px;}
.h3_c00266{height:65.232000px;}
.h5_c00266{height:68.074560px;}
.h2_c00266{height:1201.365000px;}
.h0_c00266{height:1262.835000px;}
.h1_c00266{height:1263.000000px;}
.w3_c00266{width:25.020000px;}
.w2_c00266{width:863.955000px;}
.w0_c00266{width:892.935000px;}
.w1_c00266{width:893.250000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:14.490000px;}
.x2_c00266{left:113.040150px;}
.x2a_c00266{left:122.213700px;}
.x2b_c00266{left:153.008400px;}
.x3_c00266{left:154.043700px;}
.x27_c00266{left:155.571900px;}
.xf_c00266{left:182.382600px;}
.x5_c00266{left:184.973850px;}
.xb_c00266{left:193.030950px;}
.x1c_c00266{left:194.821200px;}
.xc_c00266{left:201.883350px;}
.x4_c00266{left:224.007600px;}
.xd_c00266{left:236.874750px;}
.x8_c00266{left:255.176100px;}
.xa_c00266{left:264.652200px;}
.x23_c00266{left:266.092200px;}
.x16_c00266{left:276.063750px;}
.x1d_c00266{left:284.607750px;}
.x22_c00266{left:291.898650px;}
.x9_c00266{left:296.179650px;}
.x13_c00266{left:302.466450px;}
.x28_c00266{left:323.054850px;}
.x6_c00266{left:348.506100px;}
.x10_c00266{left:372.390000px;}
.x14_c00266{left:374.465400px;}
.x15_c00266{left:386.038950px;}
.x7_c00266{left:389.509650px;}
.x1e_c00266{left:400.207050px;}
.x20_c00266{left:427.116600px;}
.xe_c00266{left:434.994900px;}
.x24_c00266{left:437.108250px;}
.x1f_c00266{left:451.566300px;}
.x1a_c00266{left:458.226600px;}
.x1b_c00266{left:499.230000px;}
.x21_c00266{left:509.159250px;}
.x17_c00266{left:514.110000px;}
.x19_c00266{left:526.543950px;}
.x29_c00266{left:533.122200px;}
.x18_c00266{left:555.113550px;}
.x25_c00266{left:621.874800px;}
.x11_c00266{left:645.744450px;}
.x26_c00266{left:699.362250px;}
.x12_c00266{left:750.390000px;}
.x2c_c00266{left:759.915000px;}
@media print{
.v2_c00266{vertical-align:-21.760000pt;}
.v0_c00266{vertical-align:0.000000pt;}
.v1_c00266{vertical-align:26.880000pt;}
.lse_c00266{letter-spacing:0.000000pt;}
.ls6_c00266{letter-spacing:0.152213pt;}
.ls7_c00266{letter-spacing:0.209920pt;}
.ls9_c00266{letter-spacing:0.236160pt;}
.ls8_c00266{letter-spacing:0.262400pt;}
.lsc_c00266{letter-spacing:0.292114pt;}
.ls14_c00266{letter-spacing:0.389485pt;}
.ls10_c00266{letter-spacing:0.472320pt;}
.lsb_c00266{letter-spacing:0.498560pt;}
.lsa_c00266{letter-spacing:0.632913pt;}
.ls11_c00266{letter-spacing:0.661248pt;}
.ls12_c00266{letter-spacing:0.730284pt;}
.ls13_c00266{letter-spacing:0.876416pt;}
.lsf_c00266{letter-spacing:4.589907pt;}
.ls2_c00266{letter-spacing:4.715953pt;}
.ls4_c00266{letter-spacing:4.742400pt;}
.ls3_c00266{letter-spacing:5.310933pt;}
.lsd_c00266{letter-spacing:5.312000pt;}
.ls1_c00266{letter-spacing:5.474385pt;}
.ls0_c00266{letter-spacing:5.475484pt;}
.ls5_c00266{letter-spacing:7.478613pt;}
.ws1_c00266{word-spacing:-23.104000pt;}
.ws0_c00266{word-spacing:-18.894775pt;}
.ws2_c00266{word-spacing:-18.620160pt;}
.ws4_c00266{word-spacing:-17.792000pt;}
.ws6_c00266{word-spacing:-15.768735pt;}
.ws7_c00266{word-spacing:-15.671364pt;}
.ws8_c00266{word-spacing:-15.330564pt;}
.ws3_c00266{word-spacing:-10.319360pt;}
.ws5_c00266{word-spacing:-8.896000pt;}
.ws9_c00266{word-spacing:0.000000pt;}
._f_c00266{margin-left:-0.997120pt;}
._5_c00266{width:1.536000pt;}
._3_c00266{width:2.432000pt;}
._1_c00266{width:3.584000pt;}
._0_c00266{width:4.875947pt;}
._a_c00266{width:5.852160pt;}
._9_c00266{width:7.488000pt;}
._7_c00266{width:8.960000pt;}
._b_c00266{width:13.056000pt;}
._2_c00266{width:14.016000pt;}
._8_c00266{width:14.912000pt;}
._6_c00266{width:18.816000pt;}
._e_c00266{width:19.776000pt;}
._4_c00266{width:23.360000pt;}
._d_c00266{width:24.340480pt;}
._c_c00266{width:25.251840pt;}
.fs5_c00266{font-size:32.000000pt;}
.fs4_c00266{font-size:37.120000pt;}
.fs3_c00266{font-size:49.920000pt;}
.fs2_c00266{font-size:51.456358pt;}
.fs6_c00266{font-size:52.480000pt;}
.fs8_c00266{font-size:53.333333pt;}
.fs7_c00266{font-size:54.095146pt;}
.fs0_c00266{font-size:64.000000pt;}
.fs1_c00266{font-size:65.969690pt;}
.y0_c00266{bottom:0.000000pt;}
.y2d_c00266{bottom:2.773467pt;}
.y2c_c00266{bottom:30.884000pt;}
.y1_c00266{bottom:48.000000pt;}
.y2b_c00266{bottom:49.320000pt;}
.y2a_c00266{bottom:54.760000pt;}
.y29_c00266{bottom:70.120000pt;}
.y28_c00266{bottom:80.360000pt;}
.y27_c00266{bottom:85.800000pt;}
.y26_c00266{bottom:101.160000pt;}
.y25_c00266{bottom:111.401600pt;}
.y24_c00266{bottom:127.080000pt;}
.y23_c00266{bottom:132.520000pt;}
.y22_c00266{bottom:156.200000pt;}
.y21_c00266{bottom:351.080000pt;}
.y20_c00266{bottom:369.640000pt;}
.y1f_c00266{bottom:388.200000pt;}
.y1e_c00266{bottom:407.080000pt;}
.y1d_c00266{bottom:425.640000pt;}
.y1c_c00266{bottom:457.640000pt;}
.y1b_c00266{bottom:476.200000pt;}
.y1a_c00266{bottom:495.080000pt;}
.y19_c00266{bottom:513.640000pt;}
.y18_c00266{bottom:532.200000pt;}
.y17_c00266{bottom:551.080000pt;}
.y16_c00266{bottom:569.640000pt;}
.y15_c00266{bottom:588.200000pt;}
.y14_c00266{bottom:620.200000pt;}
.y13_c00266{bottom:639.080000pt;}
.y12_c00266{bottom:657.640000pt;}
.y11_c00266{bottom:676.520000pt;}
.y10_c00266{bottom:695.080000pt;}
.yf_c00266{bottom:713.640000pt;}
.ye_c00266{bottom:732.520000pt;}
.yd_c00266{bottom:751.080000pt;}
.yc_c00266{bottom:783.080000pt;}
.yb_c00266{bottom:801.640000pt;}
.ya_c00266{bottom:820.520000pt;}
.y9_c00266{bottom:839.080000pt;}
.y8_c00266{bottom:857.640000pt;}
.y7_c00266{bottom:876.520000pt;}
.y6_c00266{bottom:895.080000pt;}
.y5_c00266{bottom:913.640000pt;}
.y4_c00266{bottom:932.520000pt;}
.y3_c00266{bottom:964.520000pt;}
.y2_c00266{bottom:1010.920000pt;}
.h9_c00266{height:17.116000pt;}
.h6_c00266{height:28.992000pt;}
.ha_c00266{height:41.173333pt;}
.h7_c00266{height:41.761453pt;}
.h8_c00266{height:47.546880pt;}
.h4_c00266{height:50.928601pt;}
.h3_c00266{height:57.984000pt;}
.h5_c00266{height:60.510720pt;}
.h2_c00266{height:1067.880000pt;}
.h0_c00266{height:1122.520000pt;}
.h1_c00266{height:1122.666667pt;}
.w3_c00266{width:22.240000pt;}
.w2_c00266{width:767.960000pt;}
.w0_c00266{width:793.720000pt;}
.w1_c00266{width:794.000000pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:12.880000pt;}
.x2_c00266{left:100.480133pt;}
.x2a_c00266{left:108.634400pt;}
.x2b_c00266{left:136.007467pt;}
.x3_c00266{left:136.927733pt;}
.x27_c00266{left:138.286133pt;}
.xf_c00266{left:162.117867pt;}
.x5_c00266{left:164.421200pt;}
.xb_c00266{left:171.583067pt;}
.x1c_c00266{left:173.174400pt;}
.xc_c00266{left:179.451867pt;}
.x4_c00266{left:199.117867pt;}
.xd_c00266{left:210.555333pt;}
.x8_c00266{left:226.823200pt;}
.xa_c00266{left:235.246400pt;}
.x23_c00266{left:236.526400pt;}
.x16_c00266{left:245.390000pt;}
.x1d_c00266{left:252.984667pt;}
.x22_c00266{left:259.465467pt;}
.x9_c00266{left:263.270800pt;}
.x13_c00266{left:268.859067pt;}
.x28_c00266{left:287.159867pt;}
.x6_c00266{left:309.783200pt;}
.x10_c00266{left:331.013333pt;}
.x14_c00266{left:332.858133pt;}
.x15_c00266{left:343.145733pt;}
.x7_c00266{left:346.230800pt;}
.x1e_c00266{left:355.739600pt;}
.x20_c00266{left:379.659200pt;}
.xe_c00266{left:386.662133pt;}
.x24_c00266{left:388.540667pt;}
.x1f_c00266{left:401.392267pt;}
.x1a_c00266{left:407.312533pt;}
.x1b_c00266{left:443.760000pt;}
.x21_c00266{left:452.586000pt;}
.x17_c00266{left:456.986667pt;}
.x19_c00266{left:468.039067pt;}
.x29_c00266{left:473.886400pt;}
.x18_c00266{left:493.434267pt;}
.x25_c00266{left:552.777600pt;}
.x11_c00266{left:573.995067pt;}
.x26_c00266{left:621.655333pt;}
.x12_c00266{left:667.013333pt;}
.x2c_c00266{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_57da9d64799bf54cad0fbc35.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.134000;font-style:normal;font-weight:normal;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_1ed2ef22e3eeeb7e79229979.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;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:ff3_c00267;src:url('chunks/assets/font_166ba8d7fe365a595f286e67.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:0.787000;font-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_c00267{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00267{vertical-align:-24.480000px;}
.v0_c00267{vertical-align:0.000000px;}
.v1_c00267{vertical-align:30.240000px;}
.ls8_c00267{letter-spacing:-0.179568px;}
.ls7_c00267{letter-spacing:0.000000px;}
.lsf_c00267{letter-spacing:0.144000px;}
.lsa_c00267{letter-spacing:0.265680px;}
.ls5_c00267{letter-spacing:0.295200px;}
.ls14_c00267{letter-spacing:0.318816px;}
.lsc_c00267{letter-spacing:0.371952px;}
.ls4_c00267{letter-spacing:0.421440px;}
.ls1_c00267{letter-spacing:0.429240px;}
.lsd_c00267{letter-spacing:0.438171px;}
.ls6_c00267{letter-spacing:0.531360px;}
.ls15_c00267{letter-spacing:0.602485px;}
.ls11_c00267{letter-spacing:0.690768px;}
.ls10_c00267{letter-spacing:0.712027px;}
.lsb_c00267{letter-spacing:0.766799px;}
.ls12_c00267{letter-spacing:1.027296px;}
.ls2_c00267{letter-spacing:4.824000px;}
.ls13_c00267{letter-spacing:5.295888px;}
.lse_c00267{letter-spacing:5.514336px;}
.ls3_c00267{letter-spacing:5.976000px;}
.ls0_c00267{letter-spacing:6.159920px;}
.ls9_c00267{letter-spacing:48.931200px;}
.sc__c00267{text-shadow:none;}
.sc1_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00267{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc1_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00267{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00267{word-spacing:-25.992000px;}
.ws9_c00267{word-spacing:-21.709008px;}
.ws2_c00267{word-spacing:-20.016000px;}
.ws5_c00267{word-spacing:-17.685056px;}
.wsa_c00267{word-spacing:-17.520742px;}
.ws6_c00267{word-spacing:-16.944480px;}
.wsb_c00267{word-spacing:-16.731936px;}
.ws7_c00267{word-spacing:-16.678800px;}
.ws1_c00267{word-spacing:-11.609280px;}
.ws3_c00267{word-spacing:-11.429712px;}
.ws8_c00267{word-spacing:-10.152000px;}
.ws4_c00267{word-spacing:-10.008000px;}
.wsc_c00267{word-spacing:0.000000px;}
._10_c00267{margin-left:-48.902400px;}
._7_c00267{margin-left:-4.824000px;}
._12_c00267{margin-left:-1.062720px;}
._b_c00267{width:1.512000px;}
._e_c00267{width:2.783616px;}
._6_c00267{width:4.248000px;}
._2_c00267{width:5.400000px;}
._8_c00267{width:7.272000px;}
._1_c00267{width:9.000000px;}
._0_c00267{width:12.096000px;}
._3_c00267{width:13.104000px;}
._5_c00267{width:16.128000px;}
._9_c00267{width:17.784000px;}
._a_c00267{width:18.936000px;}
._d_c00267{width:21.126216px;}
._c_c00267{width:22.464000px;}
._4_c00267{width:24.480000px;}
._f_c00267{width:48.960000px;}
._11_c00267{width:50.466813px;}
.fc0_c00267{color:rgb(0,0,0);}
.fs3_c00267{font-size:36.000000px;}
.fs2_c00267{font-size:41.760000px;}
.fs4_c00267{font-size:59.040000px;}
.fs6_c00267{font-size:60.000000px;}
.fs5_c00267{font-size:60.857039px;}
.fs0_c00267{font-size:72.000000px;}
.fs1_c00267{font-size:74.215901px;}
.y0_c00267{bottom:0.000000px;}
.y31_c00267{bottom:3.120150px;}
.y30_c00267{bottom:34.744500px;}
.y1_c00267{bottom:54.000000px;}
.y2f_c00267{bottom:61.605000px;}
.y2e_c00267{bottom:78.885000px;}
.y2d_c00267{bottom:90.405000px;}
.y2c_c00267{bottom:107.685000px;}
.y2b_c00267{bottom:113.805000px;}
.y2a_c00267{bottom:125.325000px;}
.y29_c00267{bottom:131.445000px;}
.y28_c00267{bottom:142.965000px;}
.y27_c00267{bottom:149.085000px;}
.y26_c00267{bottom:160.246800px;}
.y25_c00267{bottom:184.005000px;}
.y24_c00267{bottom:195.525000px;}
.y23_c00267{bottom:201.645000px;}
.y22_c00267{bottom:212.806800px;}
.y21_c00267{bottom:230.445000px;}
.y20_c00267{bottom:236.565000px;}
.y1f_c00267{bottom:263.205000px;}
.y1e_c00267{bottom:409.725000px;}
.y1d_c00267{bottom:445.725000px;}
.y1c_c00267{bottom:466.965000px;}
.y1b_c00267{bottom:487.845000px;}
.y1a_c00267{bottom:508.725000px;}
.y19_c00267{bottom:529.965000px;}
.y18_c00267{bottom:550.845000px;}
.y17_c00267{bottom:571.725000px;}
.y16_c00267{bottom:592.965000px;}
.y15_c00267{bottom:628.965000px;}
.y14_c00267{bottom:649.845000px;}
.y13_c00267{bottom:671.085000px;}
.y12_c00267{bottom:691.965000px;}
.y11_c00267{bottom:712.845000px;}
.y10_c00267{bottom:734.085000px;}
.yf_c00267{bottom:754.965000px;}
.ye_c00267{bottom:775.845000px;}
.yd_c00267{bottom:811.845000px;}
.yc_c00267{bottom:833.085000px;}
.yb_c00267{bottom:853.965000px;}
.ya_c00267{bottom:874.845000px;}
.y9_c00267{bottom:896.085000px;}
.y8_c00267{bottom:916.965000px;}
.y7_c00267{bottom:952.965000px;}
.y6_c00267{bottom:988.965000px;}
.y5_c00267{bottom:1027.125000px;}
.y4_c00267{bottom:1063.845000px;}
.y3_c00267{bottom:1085.085000px;}
.y2_c00267{bottom:1137.285000px;}
.h9_c00267{height:19.255500px;}
.h6_c00267{height:32.616000px;}
.ha_c00267{height:46.320000px;}
.h7_c00267{height:46.981634px;}
.h8_c00267{height:53.490240px;}
.h4_c00267{height:57.294676px;}
.h3_c00267{height:65.232000px;}
.h5_c00267{height:68.074560px;}
.h2_c00267{height:1201.365000px;}
.h0_c00267{height:1262.835000px;}
.h1_c00267{height:1263.000000px;}
.w3_c00267{width:25.020000px;}
.w2_c00267{width:863.955000px;}
.w0_c00267{width:892.935000px;}
.w1_c00267{width:893.250000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:14.490000px;}
.x2_c00267{left:113.040150px;}
.x1d_c00267{left:127.217700px;}
.x1e_c00267{left:151.381650px;}
.x3_c00267{left:154.043700px;}
.x1f_c00267{left:159.071700px;}
.x20_c00267{left:169.886700px;}
.x6_c00267{left:172.024950px;}
.x13_c00267{left:192.270300px;}
.xa_c00267{left:202.573200px;}
.x7_c00267{left:213.028500px;}
.xb_c00267{left:217.119900px;}
.x4_c00267{left:224.007600px;}
.x19_c00267{left:252.214650px;}
.x1b_c00267{left:275.553150px;}
.x14_c00267{left:287.308650px;}
.x1c_c00267{left:295.547250px;}
.x1a_c00267{left:300.543000px;}
.xc_c00267{left:303.647100px;}
.x15_c00267{left:319.047000px;}
.x11_c00267{left:341.943900px;}
.x16_c00267{left:343.040400px;}
.xe_c00267{left:397.201500px;}
.x8_c00267{left:398.964150px;}
.x12_c00267{left:404.942850px;}
.x5_c00267{left:414.462150px;}
.x9_c00267{left:450.136950px;}
.xf_c00267{left:492.239850px;}
.x17_c00267{left:504.747450px;}
.x21_c00267{left:541.364850px;}
.x18_c00267{left:544.751550px;}
.x22_c00267{left:561.548850px;}
.x10_c00267{left:646.179900px;}
.xd_c00267{left:703.410900px;}
.x23_c00267{left:759.915000px;}
@media print{
.v2_c00267{vertical-align:-21.760000pt;}
.v0_c00267{vertical-align:0.000000pt;}
.v1_c00267{vertical-align:26.880000pt;}
.ls8_c00267{letter-spacing:-0.159616pt;}
.ls7_c00267{letter-spacing:0.000000pt;}
.lsf_c00267{letter-spacing:0.128000pt;}
.lsa_c00267{letter-spacing:0.236160pt;}
.ls5_c00267{letter-spacing:0.262400pt;}
.ls14_c00267{letter-spacing:0.283392pt;}
.lsc_c00267{letter-spacing:0.330624pt;}
.ls4_c00267{letter-spacing:0.374613pt;}
.ls1_c00267{letter-spacing:0.381547pt;}
.lsd_c00267{letter-spacing:0.389485pt;}
.ls6_c00267{letter-spacing:0.472320pt;}
.ls15_c00267{letter-spacing:0.535542pt;}
.ls11_c00267{letter-spacing:0.614016pt;}
.ls10_c00267{letter-spacing:0.632913pt;}
.lsb_c00267{letter-spacing:0.681599pt;}
.ls12_c00267{letter-spacing:0.913152pt;}
.ls2_c00267{letter-spacing:4.288000pt;}
.ls13_c00267{letter-spacing:4.707456pt;}
.lse_c00267{letter-spacing:4.901632pt;}
.ls3_c00267{letter-spacing:5.312000pt;}
.ls0_c00267{letter-spacing:5.475484pt;}
.ls9_c00267{letter-spacing:43.494400pt;}
.ws0_c00267{word-spacing:-23.104000pt;}
.ws9_c00267{word-spacing:-19.296896pt;}
.ws2_c00267{word-spacing:-17.792000pt;}
.ws5_c00267{word-spacing:-15.720049pt;}
.wsa_c00267{word-spacing:-15.573992pt;}
.ws6_c00267{word-spacing:-15.061760pt;}
.wsb_c00267{word-spacing:-14.872832pt;}
.ws7_c00267{word-spacing:-14.825600pt;}
.ws1_c00267{word-spacing:-10.319360pt;}
.ws3_c00267{word-spacing:-10.159744pt;}
.ws8_c00267{word-spacing:-9.024000pt;}
.ws4_c00267{word-spacing:-8.896000pt;}
.wsc_c00267{word-spacing:0.000000pt;}
._10_c00267{margin-left:-43.468800pt;}
._7_c00267{margin-left:-4.288000pt;}
._12_c00267{margin-left:-0.944640pt;}
._b_c00267{width:1.344000pt;}
._e_c00267{width:2.474325pt;}
._6_c00267{width:3.776000pt;}
._2_c00267{width:4.800000pt;}
._8_c00267{width:6.464000pt;}
._1_c00267{width:8.000000pt;}
._0_c00267{width:10.752000pt;}
._3_c00267{width:11.648000pt;}
._5_c00267{width:14.336000pt;}
._9_c00267{width:15.808000pt;}
._a_c00267{width:16.832000pt;}
._d_c00267{width:18.778859pt;}
._c_c00267{width:19.968000pt;}
._4_c00267{width:21.760000pt;}
._f_c00267{width:43.520000pt;}
._11_c00267{width:44.859389pt;}
.fs3_c00267{font-size:32.000000pt;}
.fs2_c00267{font-size:37.120000pt;}
.fs4_c00267{font-size:52.480000pt;}
.fs6_c00267{font-size:53.333333pt;}
.fs5_c00267{font-size:54.095146pt;}
.fs0_c00267{font-size:64.000000pt;}
.fs1_c00267{font-size:65.969690pt;}
.y0_c00267{bottom:0.000000pt;}
.y31_c00267{bottom:2.773467pt;}
.y30_c00267{bottom:30.884000pt;}
.y1_c00267{bottom:48.000000pt;}
.y2f_c00267{bottom:54.760000pt;}
.y2e_c00267{bottom:70.120000pt;}
.y2d_c00267{bottom:80.360000pt;}
.y2c_c00267{bottom:95.720000pt;}
.y2b_c00267{bottom:101.160000pt;}
.y2a_c00267{bottom:111.400000pt;}
.y29_c00267{bottom:116.840000pt;}
.y28_c00267{bottom:127.080000pt;}
.y27_c00267{bottom:132.520000pt;}
.y26_c00267{bottom:142.441600pt;}
.y25_c00267{bottom:163.560000pt;}
.y24_c00267{bottom:173.800000pt;}
.y23_c00267{bottom:179.240000pt;}
.y22_c00267{bottom:189.161600pt;}
.y21_c00267{bottom:204.840000pt;}
.y20_c00267{bottom:210.280000pt;}
.y1f_c00267{bottom:233.960000pt;}
.y1e_c00267{bottom:364.200000pt;}
.y1d_c00267{bottom:396.200000pt;}
.y1c_c00267{bottom:415.080000pt;}
.y1b_c00267{bottom:433.640000pt;}
.y1a_c00267{bottom:452.200000pt;}
.y19_c00267{bottom:471.080000pt;}
.y18_c00267{bottom:489.640000pt;}
.y17_c00267{bottom:508.200000pt;}
.y16_c00267{bottom:527.080000pt;}
.y15_c00267{bottom:559.080000pt;}
.y14_c00267{bottom:577.640000pt;}
.y13_c00267{bottom:596.520000pt;}
.y12_c00267{bottom:615.080000pt;}
.y11_c00267{bottom:633.640000pt;}
.y10_c00267{bottom:652.520000pt;}
.yf_c00267{bottom:671.080000pt;}
.ye_c00267{bottom:689.640000pt;}
.yd_c00267{bottom:721.640000pt;}
.yc_c00267{bottom:740.520000pt;}
.yb_c00267{bottom:759.080000pt;}
.ya_c00267{bottom:777.640000pt;}
.y9_c00267{bottom:796.520000pt;}
.y8_c00267{bottom:815.080000pt;}
.y7_c00267{bottom:847.080000pt;}
.y6_c00267{bottom:879.080000pt;}
.y5_c00267{bottom:913.000000pt;}
.y4_c00267{bottom:945.640000pt;}
.y3_c00267{bottom:964.520000pt;}
.y2_c00267{bottom:1010.920000pt;}
.h9_c00267{height:17.116000pt;}
.h6_c00267{height:28.992000pt;}
.ha_c00267{height:41.173333pt;}
.h7_c00267{height:41.761453pt;}
.h8_c00267{height:47.546880pt;}
.h4_c00267{height:50.928601pt;}
.h3_c00267{height:57.984000pt;}
.h5_c00267{height:60.510720pt;}
.h2_c00267{height:1067.880000pt;}
.h0_c00267{height:1122.520000pt;}
.h1_c00267{height:1122.666667pt;}
.w3_c00267{width:22.240000pt;}
.w2_c00267{width:767.960000pt;}
.w0_c00267{width:793.720000pt;}
.w1_c00267{width:794.000000pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:12.880000pt;}
.x2_c00267{left:100.480133pt;}
.x1d_c00267{left:113.082400pt;}
.x1e_c00267{left:134.561467pt;}
.x3_c00267{left:136.927733pt;}
.x1f_c00267{left:141.397067pt;}
.x20_c00267{left:151.010400pt;}
.x6_c00267{left:152.911067pt;}
.x13_c00267{left:170.906933pt;}
.xa_c00267{left:180.065067pt;}
.x7_c00267{left:189.358667pt;}
.xb_c00267{left:192.995467pt;}
.x4_c00267{left:199.117867pt;}
.x19_c00267{left:224.190800pt;}
.x1b_c00267{left:244.936133pt;}
.x14_c00267{left:255.385467pt;}
.x1c_c00267{left:262.708667pt;}
.x1a_c00267{left:267.149333pt;}
.xc_c00267{left:269.908533pt;}
.x15_c00267{left:283.597333pt;}
.x11_c00267{left:303.950133pt;}
.x16_c00267{left:304.924800pt;}
.xe_c00267{left:353.068000pt;}
.x8_c00267{left:354.634800pt;}
.x12_c00267{left:359.949200pt;}
.x5_c00267{left:368.410800pt;}
.x9_c00267{left:400.121733pt;}
.xf_c00267{left:437.546533pt;}
.x17_c00267{left:448.664400pt;}
.x21_c00267{left:481.213200pt;}
.x18_c00267{left:484.223600pt;}
.x22_c00267{left:499.154533pt;}
.x10_c00267{left:574.382133pt;}
.xd_c00267{left:625.254133pt;}
.x23_c00267{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27d55a618900191afc76dceb.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.134000;font-style:normal;font-weight:normal;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_178416e47b979fa5430387b2.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;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:ff3_c00268;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_4264169c49d20f45883304bc.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:0.787000;font-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_c00268{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00268{vertical-align:-24.480000px;}
.v0_c00268{vertical-align:0.000000px;}
.v1_c00268{vertical-align:30.240000px;}
.lsa_c00268{letter-spacing:-0.179568px;}
.ls8_c00268{letter-spacing:0.000000px;}
.lsb_c00268{letter-spacing:0.144000px;}
.lsc_c00268{letter-spacing:0.265680px;}
.ls4_c00268{letter-spacing:0.295200px;}
.ls10_c00268{letter-spacing:0.425088px;}
.lsd_c00268{letter-spacing:0.438171px;}
.ls11_c00268{letter-spacing:0.478224px;}
.ls3_c00268{letter-spacing:0.513648px;}
.ls5_c00268{letter-spacing:0.531360px;}
.ls12_c00268{letter-spacing:0.547713px;}
.ls6_c00268{letter-spacing:0.560880px;}
.lsf_c00268{letter-spacing:0.690768px;}
.lse_c00268{letter-spacing:0.962352px;}
.ls9_c00268{letter-spacing:5.430672px;}
.ls7_c00268{letter-spacing:5.976000px;}
.ls2_c00268{letter-spacing:5.978400px;}
.ls1_c00268{letter-spacing:5.985600px;}
.ls0_c00268{letter-spacing:6.159920px;}
.sc__c00268{text-shadow:none;}
.sc1_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00268{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc1_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00268{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00268{word-spacing:-21.043152px;}
.ws2_c00268{word-spacing:-20.016000px;}
.ws6_c00268{word-spacing:-17.356428px;}
.ws4_c00268{word-spacing:-16.944480px;}
.ws1_c00268{word-spacing:-11.429712px;}
.ws5_c00268{word-spacing:-10.152000px;}
.ws7_c00268{word-spacing:0.000000px;}
.ws3_c00268{word-spacing:6.149400px;}
._6_c00268{margin-left:-1.179360px;}
._2_c00268{width:1.656000px;}
._4_c00268{width:3.024000px;}
._7_c00268{width:4.563600px;}
._3_c00268{width:6.408000px;}
._8_c00268{width:8.568000px;}
._0_c00268{width:16.704000px;}
._1_c00268{width:18.576000px;}
._5_c00268{width:25.272000px;}
._9_c00268{width:32.764320px;}
._a_c00268{width:34.007040px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs4_c00268{font-size:36.000000px;}
.fs3_c00268{font-size:41.760000px;}
.fs2_c00268{font-size:56.160000px;}
.fs5_c00268{font-size:59.040000px;}
.fs7_c00268{font-size:60.000000px;}
.fs6_c00268{font-size:60.857039px;}
.fs0_c00268{font-size:72.000000px;}
.fs1_c00268{font-size:74.215901px;}
.y0_c00268{bottom:0.000000px;}
.y2f_c00268{bottom:3.120150px;}
.y2e_c00268{bottom:34.744500px;}
.y1_c00268{bottom:54.000000px;}
.y2d_c00268{bottom:55.485000px;}
.y2c_c00268{bottom:61.605000px;}
.y2b_c00268{bottom:72.766800px;}
.y2a_c00268{bottom:96.525000px;}
.y29_c00268{bottom:113.805000px;}
.y28_c00268{bottom:125.325000px;}
.y27_c00268{bottom:125.326800px;}
.y26_c00268{bottom:149.085000px;}
.y25_c00268{bottom:160.245000px;}
.y24_c00268{bottom:177.885000px;}
.y23_c00268{bottom:184.005000px;}
.y22_c00268{bottom:210.645000px;}
.y21_c00268{bottom:244.845000px;}
.y20_c00268{bottom:265.725000px;}
.y1f_c00268{bottom:286.965000px;}
.y1e_c00268{bottom:307.845000px;}
.y1d_c00268{bottom:343.845000px;}
.y1c_c00268{bottom:364.725000px;}
.y1b_c00268{bottom:400.725000px;}
.y1a_c00268{bottom:436.725000px;}
.y19_c00268{bottom:457.965000px;}
.y18_c00268{bottom:478.845000px;}
.y17_c00268{bottom:514.845000px;}
.y16_c00268{bottom:550.845000px;}
.y15_c00268{bottom:586.845000px;}
.y14_c00268{bottom:622.845000px;}
.y13_c00268{bottom:658.845000px;}
.y12_c00268{bottom:694.845000px;}
.y11_c00268{bottom:730.845000px;}
.y10_c00268{bottom:766.845000px;}
.yf_c00268{bottom:802.845000px;}
.ye_c00268{bottom:824.085000px;}
.yd_c00268{bottom:844.965000px;}
.yc_c00268{bottom:865.845000px;}
.yb_c00268{bottom:887.085000px;}
.ya_c00268{bottom:907.965000px;}
.y9_c00268{bottom:928.845000px;}
.y8_c00268{bottom:950.085000px;}
.y7_c00268{bottom:970.965000px;}
.y6_c00268{bottom:991.845000px;}
.y5_c00268{bottom:1027.845000px;}
.y4_c00268{bottom:1063.845000px;}
.y3_c00268{bottom:1085.085000px;}
.y2_c00268{bottom:1137.285000px;}
.ha_c00268{height:19.255500px;}
.h7_c00268{height:32.616000px;}
.hb_c00268{height:46.320000px;}
.h8_c00268{height:46.981634px;}
.h6_c00268{height:52.031250px;}
.h9_c00268{height:53.490240px;}
.h4_c00268{height:57.294676px;}
.h3_c00268{height:65.232000px;}
.h5_c00268{height:68.074560px;}
.h2_c00268{height:1201.365000px;}
.h0_c00268{height:1262.835000px;}
.h1_c00268{height:1263.000000px;}
.w3_c00268{width:25.020000px;}
.w2_c00268{width:863.955000px;}
.w0_c00268{width:892.935000px;}
.w1_c00268{width:893.250000px;}
.x0_c00268{left:0.000000px;}
.x1_c00268{left:14.490000px;}
.x2_c00268{left:113.040150px;}
.x7_c00268{left:140.046600px;}
.x13_c00268{left:148.031550px;}
.xa_c00268{left:153.035550px;}
.x3_c00268{left:154.043700px;}
.xf_c00268{left:155.361000px;}
.x8_c00268{left:167.040150px;}
.x4_c00268{left:224.007600px;}
.xc_c00268{left:242.007900px;}
.xe_c00268{left:247.048800px;}
.x1b_c00268{left:264.748200px;}
.xd_c00268{left:285.027150px;}
.x1c_c00268{left:329.785800px;}
.xb_c00268{left:346.100850px;}
.x10_c00268{left:379.377300px;}
.x6_c00268{left:444.073200px;}
.x19_c00268{left:484.773150px;}
.x11_c00268{left:510.742350px;}
.x1a_c00268{left:535.621950px;}
.x14_c00268{left:544.567800px;}
.x9_c00268{left:613.053600px;}
.x15_c00268{left:642.526650px;}
.x16_c00268{left:665.229900px;}
.x12_c00268{left:691.173750px;}
.x5_c00268{left:726.378300px;}
.x18_c00268{left:734.565750px;}
.x17_c00268{left:745.386150px;}
.x1d_c00268{left:759.915000px;}
@media print{
.v2_c00268{vertical-align:-21.760000pt;}
.v0_c00268{vertical-align:0.000000pt;}
.v1_c00268{vertical-align:26.880000pt;}
.lsa_c00268{letter-spacing:-0.159616pt;}
.ls8_c00268{letter-spacing:0.000000pt;}
.lsb_c00268{letter-spacing:0.128000pt;}
.lsc_c00268{letter-spacing:0.236160pt;}
.ls4_c00268{letter-spacing:0.262400pt;}
.ls10_c00268{letter-spacing:0.377856pt;}
.lsd_c00268{letter-spacing:0.389485pt;}
.ls11_c00268{letter-spacing:0.425088pt;}
.ls3_c00268{letter-spacing:0.456576pt;}
.ls5_c00268{letter-spacing:0.472320pt;}
.ls12_c00268{letter-spacing:0.486856pt;}
.ls6_c00268{letter-spacing:0.498560pt;}
.lsf_c00268{letter-spacing:0.614016pt;}
.lse_c00268{letter-spacing:0.855424pt;}
.ls9_c00268{letter-spacing:4.827264pt;}
.ls7_c00268{letter-spacing:5.312000pt;}
.ls2_c00268{letter-spacing:5.314133pt;}
.ls1_c00268{letter-spacing:5.320533pt;}
.ls0_c00268{letter-spacing:5.475484pt;}
.ws0_c00268{word-spacing:-18.705024pt;}
.ws2_c00268{word-spacing:-17.792000pt;}
.ws6_c00268{word-spacing:-15.427936pt;}
.ws4_c00268{word-spacing:-15.061760pt;}
.ws1_c00268{word-spacing:-10.159744pt;}
.ws5_c00268{word-spacing:-9.024000pt;}
.ws7_c00268{word-spacing:0.000000pt;}
.ws3_c00268{word-spacing:5.466133pt;}
._6_c00268{margin-left:-1.048320pt;}
._2_c00268{width:1.472000pt;}
._4_c00268{width:2.688000pt;}
._7_c00268{width:4.056533pt;}
._3_c00268{width:5.696000pt;}
._8_c00268{width:7.616000pt;}
._0_c00268{width:14.848000pt;}
._1_c00268{width:16.512000pt;}
._5_c00268{width:22.464000pt;}
._9_c00268{width:29.123840pt;}
._a_c00268{width:30.228480pt;}
.fs4_c00268{font-size:32.000000pt;}
.fs3_c00268{font-size:37.120000pt;}
.fs2_c00268{font-size:49.920000pt;}
.fs5_c00268{font-size:52.480000pt;}
.fs7_c00268{font-size:53.333333pt;}
.fs6_c00268{font-size:54.095146pt;}
.fs0_c00268{font-size:64.000000pt;}
.fs1_c00268{font-size:65.969690pt;}
.y0_c00268{bottom:0.000000pt;}
.y2f_c00268{bottom:2.773467pt;}
.y2e_c00268{bottom:30.884000pt;}
.y1_c00268{bottom:48.000000pt;}
.y2d_c00268{bottom:49.320000pt;}
.y2c_c00268{bottom:54.760000pt;}
.y2b_c00268{bottom:64.681600pt;}
.y2a_c00268{bottom:85.800000pt;}
.y29_c00268{bottom:101.160000pt;}
.y28_c00268{bottom:111.400000pt;}
.y27_c00268{bottom:111.401600pt;}
.y26_c00268{bottom:132.520000pt;}
.y25_c00268{bottom:142.440000pt;}
.y24_c00268{bottom:158.120000pt;}
.y23_c00268{bottom:163.560000pt;}
.y22_c00268{bottom:187.240000pt;}
.y21_c00268{bottom:217.640000pt;}
.y20_c00268{bottom:236.200000pt;}
.y1f_c00268{bottom:255.080000pt;}
.y1e_c00268{bottom:273.640000pt;}
.y1d_c00268{bottom:305.640000pt;}
.y1c_c00268{bottom:324.200000pt;}
.y1b_c00268{bottom:356.200000pt;}
.y1a_c00268{bottom:388.200000pt;}
.y19_c00268{bottom:407.080000pt;}
.y18_c00268{bottom:425.640000pt;}
.y17_c00268{bottom:457.640000pt;}
.y16_c00268{bottom:489.640000pt;}
.y15_c00268{bottom:521.640000pt;}
.y14_c00268{bottom:553.640000pt;}
.y13_c00268{bottom:585.640000pt;}
.y12_c00268{bottom:617.640000pt;}
.y11_c00268{bottom:649.640000pt;}
.y10_c00268{bottom:681.640000pt;}
.yf_c00268{bottom:713.640000pt;}
.ye_c00268{bottom:732.520000pt;}
.yd_c00268{bottom:751.080000pt;}
.yc_c00268{bottom:769.640000pt;}
.yb_c00268{bottom:788.520000pt;}
.ya_c00268{bottom:807.080000pt;}
.y9_c00268{bottom:825.640000pt;}
.y8_c00268{bottom:844.520000pt;}
.y7_c00268{bottom:863.080000pt;}
.y6_c00268{bottom:881.640000pt;}
.y5_c00268{bottom:913.640000pt;}
.y4_c00268{bottom:945.640000pt;}
.y3_c00268{bottom:964.520000pt;}
.y2_c00268{bottom:1010.920000pt;}
.ha_c00268{height:17.116000pt;}
.h7_c00268{height:28.992000pt;}
.hb_c00268{height:41.173333pt;}
.h8_c00268{height:41.761453pt;}
.h6_c00268{height:46.250000pt;}
.h9_c00268{height:47.546880pt;}
.h4_c00268{height:50.928601pt;}
.h3_c00268{height:57.984000pt;}
.h5_c00268{height:60.510720pt;}
.h2_c00268{height:1067.880000pt;}
.h0_c00268{height:1122.520000pt;}
.h1_c00268{height:1122.666667pt;}
.w3_c00268{width:22.240000pt;}
.w2_c00268{width:767.960000pt;}
.w0_c00268{width:793.720000pt;}
.w1_c00268{width:794.000000pt;}
.x0_c00268{left:0.000000pt;}
.x1_c00268{left:12.880000pt;}
.x2_c00268{left:100.480133pt;}
.x7_c00268{left:124.485867pt;}
.x13_c00268{left:131.583600pt;}
.xa_c00268{left:136.031600pt;}
.x3_c00268{left:136.927733pt;}
.xf_c00268{left:138.098667pt;}
.x8_c00268{left:148.480133pt;}
.x4_c00268{left:199.117867pt;}
.xc_c00268{left:215.118133pt;}
.xe_c00268{left:219.598933pt;}
.x1b_c00268{left:235.331733pt;}
.xd_c00268{left:253.357467pt;}
.x1c_c00268{left:293.142933pt;}
.xb_c00268{left:307.645200pt;}
.x10_c00268{left:337.224267pt;}
.x6_c00268{left:394.731733pt;}
.x19_c00268{left:430.909467pt;}
.x11_c00268{left:453.993200pt;}
.x1a_c00268{left:476.108400pt;}
.x14_c00268{left:484.060267pt;}
.x9_c00268{left:544.936533pt;}
.x15_c00268{left:571.134800pt;}
.x16_c00268{left:591.315467pt;}
.x12_c00268{left:614.376667pt;}
.x5_c00268{left:645.669600pt;}
.x18_c00268{left:652.947333pt;}
.x17_c00268{left:662.565467pt;}
.x1d_c00268{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ed7508cc979f11d4d509f033.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.134000;font-style:normal;font-weight:normal;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_382d9567d30dc111cf8572d8.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;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:ff3_c00269;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00269;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00269;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff6_c00269{font-family:ff6_c00269;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00269;src:url('chunks/assets/font_6539fa751c231f3b751bd791.woff2')format("woff");}.ff7_c00269{font-family:ff7_c00269;line-height:0.787000;font-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_c00269{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00269{vertical-align:-24.480000px;}
.v0_c00269{vertical-align:0.000000px;}
.v1_c00269{vertical-align:30.240000px;}
.ls28_c00269{letter-spacing:-0.179568px;}
.ls29_c00269{letter-spacing:-0.057600px;}
.ls25_c00269{letter-spacing:-0.050400px;}
.ls12_c00269{letter-spacing:0.000000px;}
.ls2b_c00269{letter-spacing:0.144000px;}
.lse_c00269{letter-spacing:0.236160px;}
.ls15_c00269{letter-spacing:0.265680px;}
.ls17_c00269{letter-spacing:0.273857px;}
.lsc_c00269{letter-spacing:0.295200px;}
.ls3_c00269{letter-spacing:0.319080px;}
.ls18_c00269{letter-spacing:0.328628px;}
.lsd_c00269{letter-spacing:0.354240px;}
.ls2c_c00269{letter-spacing:0.438171px;}
.ls11_c00269{letter-spacing:0.478224px;}
.ls9_c00269{letter-spacing:0.492942px;}
.ls7_c00269{letter-spacing:0.513648px;}
.lsb_c00269{letter-spacing:0.519552px;}
.ls8_c00269{letter-spacing:0.531360px;}
.ls19_c00269{letter-spacing:0.657256px;}
.ls1e_c00269{letter-spacing:0.690768px;}
.ls1d_c00269{letter-spacing:0.696672px;}
.lsa_c00269{letter-spacing:0.712027px;}
.ls23_c00269{letter-spacing:0.743904px;}
.ls21_c00269{letter-spacing:0.802944px;}
.ls16_c00269{letter-spacing:0.962352px;}
.ls1f_c00269{letter-spacing:0.991970px;}
.ls27_c00269{letter-spacing:1.627200px;}
.ls6_c00269{letter-spacing:5.299680px;}
.ls5_c00269{letter-spacing:5.301792px;}
.ls4_c00269{letter-spacing:5.352840px;}
.ls24_c00269{letter-spacing:5.430672px;}
.ls14_c00269{letter-spacing:5.514336px;}
.ls13_c00269{letter-spacing:5.780016px;}
.ls10_c00269{letter-spacing:5.875200px;}
.ls26_c00269{letter-spacing:5.918400px;}
.lsf_c00269{letter-spacing:5.975400px;}
.ls2_c00269{letter-spacing:5.976000px;}
.ls0_c00269{letter-spacing:6.159920px;}
.ls22_c00269{letter-spacing:9.434592px;}
.ls20_c00269{letter-spacing:9.759312px;}
.ls1a_c00269{letter-spacing:11.619072px;}
.ls1b_c00269{letter-spacing:14.984352px;}
.ls1c_c00269{letter-spacing:14.990256px;}
.ls2a_c00269{letter-spacing:19.600420px;}
.ls1_c00269{letter-spacing:54.864000px;}
.sc__c00269{text-shadow:none;}
.sc1_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00269{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc1_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00269{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00269{word-spacing:-21.714912px;}
.wsa_c00269{word-spacing:-21.043152px;}
.wsb_c00269{word-spacing:-20.016000px;}
.ws8_c00269{word-spacing:-17.630284px;}
.ws5_c00269{word-spacing:-17.575513px;}
.ws6_c00269{word-spacing:-17.411199px;}
.ws0_c00269{word-spacing:-17.375472px;}
.ws3_c00269{word-spacing:-17.246885px;}
.ws4_c00269{word-spacing:-17.192114px;}
.ws9_c00269{word-spacing:-17.103888px;}
.ws7_c00269{word-spacing:-16.944480px;}
.ws2_c00269{word-spacing:-16.926768px;}
.wsc_c00269{word-spacing:-11.429712px;}
.wsd_c00269{word-spacing:-10.152000px;}
.wse_c00269{word-spacing:0.000000px;}
._11_c00269{margin-left:-15.409440px;}
._10_c00269{margin-left:-14.287680px;}
._e_c00269{margin-left:-11.526480px;}
._f_c00269{margin-left:-10.481760px;}
._15_c00269{margin-left:-9.210240px;}
._16_c00269{margin-left:-8.115840px;}
._19_c00269{margin-left:-2.636640px;}
._7_c00269{margin-left:-1.357920px;}
._b_c00269{width:1.067901px;}
._c_c00269{width:3.122774px;}
._18_c00269{width:4.387998px;}
._5_c00269{width:5.904000px;}
._6_c00269{width:8.856000px;}
._0_c00269{width:9.936000px;}
._d_c00269{width:11.289576px;}
._3_c00269{width:12.744000px;}
._2_c00269{width:14.054185px;}
._1_c00269{width:15.436907px;}
._1a_c00269{width:18.058553px;}
._14_c00269{width:19.957447px;}
._4_c00269{width:21.722400px;}
._17_c00269{width:22.966560px;}
._a_c00269{width:64.463256px;}
._12_c00269{width:68.427360px;}
._13_c00269{width:86.121960px;}
._9_c00269{width:87.515304px;}
._8_c00269{width:198.020160px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs6_c00269{font-size:36.000000px;}
.fs5_c00269{font-size:41.760000px;}
.fs4_c00269{font-size:56.160000px;}
.fs2_c00269{font-size:59.040000px;}
.fs7_c00269{font-size:60.000000px;}
.fs3_c00269{font-size:60.857039px;}
.fs0_c00269{font-size:72.000000px;}
.fs1_c00269{font-size:74.215901px;}
.y0_c00269{bottom:0.000000px;}
.y37_c00269{bottom:3.120150px;}
.y36_c00269{bottom:34.744500px;}
.y1_c00269{bottom:54.000000px;}
.y35_c00269{bottom:55.485000px;}
.y34_c00269{bottom:61.605000px;}
.y33_c00269{bottom:88.245000px;}
.y32_c00269{bottom:123.885000px;}
.y31_c00269{bottom:144.765000px;}
.y30_c00269{bottom:165.645000px;}
.y2f_c00269{bottom:186.885000px;}
.y2e_c00269{bottom:207.765000px;}
.y2d_c00269{bottom:229.005000px;}
.y2c_c00269{bottom:265.005000px;}
.y2b_c00269{bottom:301.005000px;}
.y2a_c00269{bottom:336.641040px;}
.y29_c00269{bottom:353.925000px;}
.y28_c00269{bottom:379.126800px;}
.y26_c00269{bottom:396.761040px;}
.y27_c00269{bottom:396.765000px;}
.y25_c00269{bottom:414.045000px;}
.y24_c00269{bottom:446.805000px;}
.y23_c00269{bottom:481.365000px;}
.y1f_c00269{bottom:483.525000px;}
.y22_c00269{bottom:498.645000px;}
.y1e_c00269{bottom:500.805000px;}
.y21_c00269{bottom:516.285000px;}
.y1d_c00269{bottom:518.805000px;}
.y20_c00269{bottom:533.925000px;}
.y1c_c00269{bottom:551.205000px;}
.y1b_c00269{bottom:582.525000px;}
.y15_c00269{bottom:584.685000px;}
.y18_c00269{bottom:585.045000px;}
.y1a_c00269{bottom:599.805000px;}
.y14_c00269{bottom:601.965000px;}
.y17_c00269{bottom:602.325000px;}
.y19_c00269{bottom:617.445000px;}
.y13_c00269{bottom:619.965000px;}
.y16_c00269{bottom:635.085000px;}
.y12_c00269{bottom:652.365000px;}
.y11_c00269{bottom:685.845000px;}
.y10_c00269{bottom:721.845000px;}
.yf_c00269{bottom:743.085000px;}
.ye_c00269{bottom:763.965000px;}
.yd_c00269{bottom:799.965000px;}
.yc_c00269{bottom:820.845000px;}
.yb_c00269{bottom:856.845000px;}
.ya_c00269{bottom:878.085000px;}
.y9_c00269{bottom:914.085000px;}
.y8_c00269{bottom:950.085000px;}
.y7_c00269{bottom:970.965000px;}
.y6_c00269{bottom:991.845000px;}
.y5_c00269{bottom:1013.085000px;}
.y4_c00269{bottom:1049.085000px;}
.y3_c00269{bottom:1085.085000px;}
.y2_c00269{bottom:1137.285000px;}
.ha_c00269{height:19.255500px;}
.h9_c00269{height:32.616000px;}
.hb_c00269{height:46.320000px;}
.h7_c00269{height:46.981634px;}
.h5_c00269{height:52.031250px;}
.h6_c00269{height:53.490240px;}
.h4_c00269{height:57.294676px;}
.h3_c00269{height:65.232000px;}
.h8_c00269{height:68.074560px;}
.h2_c00269{height:1201.365000px;}
.h0_c00269{height:1262.835000px;}
.h1_c00269{height:1263.000000px;}
.w7_c00269{width:25.020000px;}
.w3_c00269{width:28.800000px;}
.w4_c00269{width:148.320000px;}
.w5_c00269{width:158.760000px;}
.w6_c00269{width:328.680000px;}
.w2_c00269{width:863.955000px;}
.w0_c00269{width:892.935000px;}
.w1_c00269{width:893.250000px;}
.x0_c00269{left:0.000000px;}
.xe_c00269{left:7.920150px;}
.x11_c00269{left:12.554550px;}
.x1_c00269{left:14.490000px;}
.x17_c00269{left:37.559550px;}
.x14_c00269{left:39.224400px;}
.x15_c00269{left:93.268050px;}
.x16_c00269{left:95.036250px;}
.x2_c00269{left:113.040150px;}
.xd_c00269{left:119.610000px;}
.xf_c00269{left:124.616400px;}
.x19_c00269{left:133.034550px;}
.x5_c00269{left:140.037600px;}
.x12_c00269{left:146.715150px;}
.x9_c00269{left:148.031550px;}
.x8_c00269{left:150.029700px;}
.x3_c00269{left:154.043700px;}
.x22_c00269{left:156.059700px;}
.x6_c00269{left:167.040150px;}
.x1c_c00269{left:174.564300px;}
.x23_c00269{left:180.828300px;}
.x18_c00269{left:186.537300px;}
.x27_c00269{left:198.900150px;}
.xa_c00269{left:202.521600px;}
.x28_c00269{left:218.894100px;}
.x4_c00269{left:224.007600px;}
.x24_c00269{left:228.833850px;}
.x7_c00269{left:247.048800px;}
.x1d_c00269{left:290.143050px;}
.x10_c00269{left:298.170000px;}
.x1a_c00269{left:300.818100px;}
.xb_c00269{left:316.807950px;}
.x1b_c00269{left:379.545750px;}
.xc_c00269{left:401.026950px;}
.x25_c00269{left:425.339250px;}
.x1e_c00269{left:432.720000px;}
.x26_c00269{left:444.853950px;}
.x13_c00269{left:457.650000px;}
.x1f_c00269{left:487.281000px;}
.x20_c00269{left:588.782550px;}
.x21_c00269{left:720.366600px;}
.x29_c00269{left:759.915000px;}
@media print{
.v2_c00269{vertical-align:-21.760000pt;}
.v0_c00269{vertical-align:0.000000pt;}
.v1_c00269{vertical-align:26.880000pt;}
.ls28_c00269{letter-spacing:-0.159616pt;}
.ls29_c00269{letter-spacing:-0.051200pt;}
.ls25_c00269{letter-spacing:-0.044800pt;}
.ls12_c00269{letter-spacing:0.000000pt;}
.ls2b_c00269{letter-spacing:0.128000pt;}
.lse_c00269{letter-spacing:0.209920pt;}
.ls15_c00269{letter-spacing:0.236160pt;}
.ls17_c00269{letter-spacing:0.243428pt;}
.lsc_c00269{letter-spacing:0.262400pt;}
.ls3_c00269{letter-spacing:0.283627pt;}
.ls18_c00269{letter-spacing:0.292114pt;}
.lsd_c00269{letter-spacing:0.314880pt;}
.ls2c_c00269{letter-spacing:0.389485pt;}
.ls11_c00269{letter-spacing:0.425088pt;}
.ls9_c00269{letter-spacing:0.438171pt;}
.ls7_c00269{letter-spacing:0.456576pt;}
.lsb_c00269{letter-spacing:0.461824pt;}
.ls8_c00269{letter-spacing:0.472320pt;}
.ls19_c00269{letter-spacing:0.584228pt;}
.ls1e_c00269{letter-spacing:0.614016pt;}
.ls1d_c00269{letter-spacing:0.619264pt;}
.lsa_c00269{letter-spacing:0.632913pt;}
.ls23_c00269{letter-spacing:0.661248pt;}
.ls21_c00269{letter-spacing:0.713728pt;}
.ls16_c00269{letter-spacing:0.855424pt;}
.ls1f_c00269{letter-spacing:0.881751pt;}
.ls27_c00269{letter-spacing:1.446400pt;}
.ls6_c00269{letter-spacing:4.710827pt;}
.ls5_c00269{letter-spacing:4.712704pt;}
.ls4_c00269{letter-spacing:4.758080pt;}
.ls24_c00269{letter-spacing:4.827264pt;}
.ls14_c00269{letter-spacing:4.901632pt;}
.ls13_c00269{letter-spacing:5.137792pt;}
.ls10_c00269{letter-spacing:5.222400pt;}
.ls26_c00269{letter-spacing:5.260800pt;}
.lsf_c00269{letter-spacing:5.311467pt;}
.ls2_c00269{letter-spacing:5.312000pt;}
.ls0_c00269{letter-spacing:5.475484pt;}
.ls22_c00269{letter-spacing:8.386304pt;}
.ls20_c00269{letter-spacing:8.674944pt;}
.ls1a_c00269{letter-spacing:10.328064pt;}
.ls1b_c00269{letter-spacing:13.319424pt;}
.ls1c_c00269{letter-spacing:13.324672pt;}
.ls2a_c00269{letter-spacing:17.422595pt;}
.ls1_c00269{letter-spacing:48.768000pt;}
.ws1_c00269{word-spacing:-19.302144pt;}
.wsa_c00269{word-spacing:-18.705024pt;}
.wsb_c00269{word-spacing:-17.792000pt;}
.ws8_c00269{word-spacing:-15.671364pt;}
.ws5_c00269{word-spacing:-15.622678pt;}
.ws6_c00269{word-spacing:-15.476621pt;}
.ws0_c00269{word-spacing:-15.444864pt;}
.ws3_c00269{word-spacing:-15.330564pt;}
.ws4_c00269{word-spacing:-15.281879pt;}
.ws9_c00269{word-spacing:-15.203456pt;}
.ws7_c00269{word-spacing:-15.061760pt;}
.ws2_c00269{word-spacing:-15.046016pt;}
.wsc_c00269{word-spacing:-10.159744pt;}
.wsd_c00269{word-spacing:-9.024000pt;}
.wse_c00269{word-spacing:0.000000pt;}
._11_c00269{margin-left:-13.697280pt;}
._10_c00269{margin-left:-12.700160pt;}
._e_c00269{margin-left:-10.245760pt;}
._f_c00269{margin-left:-9.317120pt;}
._15_c00269{margin-left:-8.186880pt;}
._16_c00269{margin-left:-7.214080pt;}
._19_c00269{margin-left:-2.343680pt;}
._7_c00269{margin-left:-1.207040pt;}
._b_c00269{width:0.949245pt;}
._c_c00269{width:2.775799pt;}
._18_c00269{width:3.900442pt;}
._5_c00269{width:5.248000pt;}
._6_c00269{width:7.872000pt;}
._0_c00269{width:8.832000pt;}
._d_c00269{width:10.035179pt;}
._3_c00269{width:11.328000pt;}
._2_c00269{width:12.492609pt;}
._1_c00269{width:13.721696pt;}
._1a_c00269{width:16.052047pt;}
._14_c00269{width:17.739953pt;}
._4_c00269{width:19.308800pt;}
._17_c00269{width:20.414720pt;}
._a_c00269{width:57.300672pt;}
._12_c00269{width:60.824320pt;}
._13_c00269{width:76.552853pt;}
._9_c00269{width:77.791381pt;}
._8_c00269{width:176.017920pt;}
.fs6_c00269{font-size:32.000000pt;}
.fs5_c00269{font-size:37.120000pt;}
.fs4_c00269{font-size:49.920000pt;}
.fs2_c00269{font-size:52.480000pt;}
.fs7_c00269{font-size:53.333333pt;}
.fs3_c00269{font-size:54.095146pt;}
.fs0_c00269{font-size:64.000000pt;}
.fs1_c00269{font-size:65.969690pt;}
.y0_c00269{bottom:0.000000pt;}
.y37_c00269{bottom:2.773467pt;}
.y36_c00269{bottom:30.884000pt;}
.y1_c00269{bottom:48.000000pt;}
.y35_c00269{bottom:49.320000pt;}
.y34_c00269{bottom:54.760000pt;}
.y33_c00269{bottom:78.440000pt;}
.y32_c00269{bottom:110.120000pt;}
.y31_c00269{bottom:128.680000pt;}
.y30_c00269{bottom:147.240000pt;}
.y2f_c00269{bottom:166.120000pt;}
.y2e_c00269{bottom:184.680000pt;}
.y2d_c00269{bottom:203.560000pt;}
.y2c_c00269{bottom:235.560000pt;}
.y2b_c00269{bottom:267.560000pt;}
.y2a_c00269{bottom:299.236480pt;}
.y29_c00269{bottom:314.600000pt;}
.y28_c00269{bottom:337.001600pt;}
.y26_c00269{bottom:352.676480pt;}
.y27_c00269{bottom:352.680000pt;}
.y25_c00269{bottom:368.040000pt;}
.y24_c00269{bottom:397.160000pt;}
.y23_c00269{bottom:427.880000pt;}
.y1f_c00269{bottom:429.800000pt;}
.y22_c00269{bottom:443.240000pt;}
.y1e_c00269{bottom:445.160000pt;}
.y21_c00269{bottom:458.920000pt;}
.y1d_c00269{bottom:461.160000pt;}
.y20_c00269{bottom:474.600000pt;}
.y1c_c00269{bottom:489.960000pt;}
.y1b_c00269{bottom:517.800000pt;}
.y15_c00269{bottom:519.720000pt;}
.y18_c00269{bottom:520.040000pt;}
.y1a_c00269{bottom:533.160000pt;}
.y14_c00269{bottom:535.080000pt;}
.y17_c00269{bottom:535.400000pt;}
.y19_c00269{bottom:548.840000pt;}
.y13_c00269{bottom:551.080000pt;}
.y16_c00269{bottom:564.520000pt;}
.y12_c00269{bottom:579.880000pt;}
.y11_c00269{bottom:609.640000pt;}
.y10_c00269{bottom:641.640000pt;}
.yf_c00269{bottom:660.520000pt;}
.ye_c00269{bottom:679.080000pt;}
.yd_c00269{bottom:711.080000pt;}
.yc_c00269{bottom:729.640000pt;}
.yb_c00269{bottom:761.640000pt;}
.ya_c00269{bottom:780.520000pt;}
.y9_c00269{bottom:812.520000pt;}
.y8_c00269{bottom:844.520000pt;}
.y7_c00269{bottom:863.080000pt;}
.y6_c00269{bottom:881.640000pt;}
.y5_c00269{bottom:900.520000pt;}
.y4_c00269{bottom:932.520000pt;}
.y3_c00269{bottom:964.520000pt;}
.y2_c00269{bottom:1010.920000pt;}
.ha_c00269{height:17.116000pt;}
.h9_c00269{height:28.992000pt;}
.hb_c00269{height:41.173333pt;}
.h7_c00269{height:41.761453pt;}
.h5_c00269{height:46.250000pt;}
.h6_c00269{height:47.546880pt;}
.h4_c00269{height:50.928601pt;}
.h3_c00269{height:57.984000pt;}
.h8_c00269{height:60.510720pt;}
.h2_c00269{height:1067.880000pt;}
.h0_c00269{height:1122.520000pt;}
.h1_c00269{height:1122.666667pt;}
.w7_c00269{width:22.240000pt;}
.w3_c00269{width:25.600000pt;}
.w4_c00269{width:131.840000pt;}
.w5_c00269{width:141.120000pt;}
.w6_c00269{width:292.160000pt;}
.w2_c00269{width:767.960000pt;}
.w0_c00269{width:793.720000pt;}
.w1_c00269{width:794.000000pt;}
.x0_c00269{left:0.000000pt;}
.xe_c00269{left:7.040133pt;}
.x11_c00269{left:11.159600pt;}
.x1_c00269{left:12.880000pt;}
.x17_c00269{left:33.386267pt;}
.x14_c00269{left:34.866133pt;}
.x15_c00269{left:82.904933pt;}
.x16_c00269{left:84.476667pt;}
.x2_c00269{left:100.480133pt;}
.xd_c00269{left:106.320000pt;}
.xf_c00269{left:110.770133pt;}
.x19_c00269{left:118.252933pt;}
.x5_c00269{left:124.477867pt;}
.x12_c00269{left:130.413467pt;}
.x9_c00269{left:131.583600pt;}
.x8_c00269{left:133.359733pt;}
.x3_c00269{left:136.927733pt;}
.x22_c00269{left:138.719733pt;}
.x6_c00269{left:148.480133pt;}
.x1c_c00269{left:155.168267pt;}
.x23_c00269{left:160.736267pt;}
.x18_c00269{left:165.810933pt;}
.x27_c00269{left:176.800133pt;}
.xa_c00269{left:180.019200pt;}
.x28_c00269{left:194.572533pt;}
.x4_c00269{left:199.117867pt;}
.x24_c00269{left:203.407867pt;}
.x7_c00269{left:219.598933pt;}
.x1d_c00269{left:257.904933pt;}
.x10_c00269{left:265.040000pt;}
.x1a_c00269{left:267.393867pt;}
.xb_c00269{left:281.607067pt;}
.x1b_c00269{left:337.374000pt;}
.xc_c00269{left:356.468400pt;}
.x25_c00269{left:378.079333pt;}
.x1e_c00269{left:384.640000pt;}
.x26_c00269{left:395.425733pt;}
.x13_c00269{left:406.800000pt;}
.x1f_c00269{left:433.138667pt;}
.x20_c00269{left:523.362267pt;}
.x21_c00269{left:640.325867pt;}
.x29_c00269{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be53fb9d6fde2309c5ffaf89.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.134000;font-style:normal;font-weight:normal;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_9b171103b914595b2a3df44f.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;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:ff3_c00270;src:url('chunks/assets/font_d0080b8dfc01ebaedb55e3c9.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:0.787000;font-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_c00270{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00270{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls3_c00270{letter-spacing:0.000000px;}
.ls7_c00270{letter-spacing:0.202464px;}
.ls5_c00270{letter-spacing:0.399600px;}
.ls6_c00270{letter-spacing:0.494278px;}
.ls4_c00270{letter-spacing:5.335200px;}
.ls1_c00270{letter-spacing:5.959200px;}
.ls2_c00270{letter-spacing:5.976000px;}
.ls0_c00270{letter-spacing:6.159920px;}
.sc__c00270{text-shadow:none;}
.sc1_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00270{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc1_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00270{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00270{word-spacing:-20.947680px;}
.ws1_c00270{word-spacing:-15.761973px;}
.ws2_c00270{word-spacing:0.000000px;}
._b_c00270{margin-left:-1.118880px;}
._9_c00270{width:1.080000px;}
._7_c00270{width:3.024000px;}
._1_c00270{width:4.104000px;}
._4_c00270{width:5.184000px;}
._5_c00270{width:7.056000px;}
._8_c00270{width:8.856000px;}
._2_c00270{width:13.536000px;}
._a_c00270{width:14.616000px;}
._0_c00270{width:21.312000px;}
._3_c00270{width:27.720000px;}
._6_c00270{width:28.800000px;}
.fc1_c00270{color:transparent;}
.fc0_c00270{color:rgb(0,0,0);}
.fs3_c00270{font-size:53.280000px;}
.fs4_c00270{font-size:54.919767px;}
.fs2_c00270{font-size:56.160000px;}
.fs5_c00270{font-size:60.000000px;}
.fs0_c00270{font-size:72.000000px;}
.fs1_c00270{font-size:74.215901px;}
.y0_c00270{bottom:0.000000px;}
.y1f_c00270{bottom:3.120150px;}
.y1e_c00270{bottom:34.744500px;}
.y1d_c00270{bottom:41.040000px;}
.y1_c00270{bottom:54.000000px;}
.y1c_c00270{bottom:141.885000px;}
.y1b_c00270{bottom:490.725000px;}
.y1a_c00270{bottom:526.725000px;}
.y19_c00270{bottom:562.725000px;}
.y18_c00270{bottom:598.725000px;}
.y17_c00270{bottom:619.965000px;}
.y16_c00270{bottom:640.845000px;}
.y15_c00270{bottom:661.725000px;}
.y14_c00270{bottom:682.965000px;}
.y13_c00270{bottom:703.845000px;}
.y12_c00270{bottom:725.085000px;}
.y11_c00270{bottom:761.085000px;}
.y10_c00270{bottom:781.965000px;}
.yf_c00270{bottom:817.965000px;}
.ye_c00270{bottom:838.845000px;}
.yd_c00270{bottom:860.085000px;}
.yc_c00270{bottom:880.965000px;}
.yb_c00270{bottom:901.845000px;}
.ya_c00270{bottom:923.085000px;}
.y9_c00270{bottom:943.965000px;}
.y8_c00270{bottom:964.845000px;}
.y7_c00270{bottom:986.085000px;}
.y6_c00270{bottom:1022.085000px;}
.y5_c00270{bottom:1042.965000px;}
.y4_c00270{bottom:1063.845000px;}
.y3_c00270{bottom:1085.085000px;}
.y2_c00270{bottom:1137.285000px;}
.h8_c00270{height:19.255500px;}
.h7_c00270{height:42.398060px;}
.h9_c00270{height:46.320000px;}
.h6_c00270{height:48.271680px;}
.h5_c00270{height:54.000000px;}
.h4_c00270{height:57.294676px;}
.h3_c00270{height:65.232000px;}
.h2_c00270{height:1201.365000px;}
.h0_c00270{height:1262.835000px;}
.h1_c00270{height:1263.000000px;}
.w4_c00270{width:25.020000px;}
.w3_c00270{width:675.000000px;}
.w2_c00270{width:863.955000px;}
.w0_c00270{width:892.935000px;}
.w1_c00270{width:893.250000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:14.490000px;}
.x14_c00270{left:53.864850px;}
.x2_c00270{left:113.040150px;}
.x13_c00270{left:124.290000px;}
.x3_c00270{left:154.043700px;}
.x15_c00270{left:164.171550px;}
.x16_c00270{left:194.924100px;}
.x4_c00270{left:224.007600px;}
.x5_c00270{left:248.346000px;}
.x12_c00270{left:289.095300px;}
.xd_c00270{left:313.336650px;}
.x6_c00270{left:320.344800px;}
.x7_c00270{left:342.870150px;}
.xe_c00270{left:393.327300px;}
.x9_c00270{left:429.338700px;}
.x8_c00270{left:435.636150px;}
.xa_c00270{left:510.319650px;}
.xb_c00270{left:534.766050px;}
.xf_c00270{left:563.547300px;}
.x10_c00270{left:641.028450px;}
.xc_c00270{left:658.966200px;}
.x11_c00270{left:709.491900px;}
.x17_c00270{left:759.915000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls3_c00270{letter-spacing:0.000000pt;}
.ls7_c00270{letter-spacing:0.179968pt;}
.ls5_c00270{letter-spacing:0.355200pt;}
.ls6_c00270{letter-spacing:0.439358pt;}
.ls4_c00270{letter-spacing:4.742400pt;}
.ls1_c00270{letter-spacing:5.297067pt;}
.ls2_c00270{letter-spacing:5.312000pt;}
.ls0_c00270{letter-spacing:5.475484pt;}
.ws0_c00270{word-spacing:-18.620160pt;}
.ws1_c00270{word-spacing:-14.010643pt;}
.ws2_c00270{word-spacing:0.000000pt;}
._b_c00270{margin-left:-0.994560pt;}
._9_c00270{width:0.960000pt;}
._7_c00270{width:2.688000pt;}
._1_c00270{width:3.648000pt;}
._4_c00270{width:4.608000pt;}
._5_c00270{width:6.272000pt;}
._8_c00270{width:7.872000pt;}
._2_c00270{width:12.032000pt;}
._a_c00270{width:12.992000pt;}
._0_c00270{width:18.944000pt;}
._3_c00270{width:24.640000pt;}
._6_c00270{width:25.600000pt;}
.fs3_c00270{font-size:47.360000pt;}
.fs4_c00270{font-size:48.817571pt;}
.fs2_c00270{font-size:49.920000pt;}
.fs5_c00270{font-size:53.333333pt;}
.fs0_c00270{font-size:64.000000pt;}
.fs1_c00270{font-size:65.969690pt;}
.y0_c00270{bottom:0.000000pt;}
.y1f_c00270{bottom:2.773467pt;}
.y1e_c00270{bottom:30.884000pt;}
.y1d_c00270{bottom:36.480000pt;}
.y1_c00270{bottom:48.000000pt;}
.y1c_c00270{bottom:126.120000pt;}
.y1b_c00270{bottom:436.200000pt;}
.y1a_c00270{bottom:468.200000pt;}
.y19_c00270{bottom:500.200000pt;}
.y18_c00270{bottom:532.200000pt;}
.y17_c00270{bottom:551.080000pt;}
.y16_c00270{bottom:569.640000pt;}
.y15_c00270{bottom:588.200000pt;}
.y14_c00270{bottom:607.080000pt;}
.y13_c00270{bottom:625.640000pt;}
.y12_c00270{bottom:644.520000pt;}
.y11_c00270{bottom:676.520000pt;}
.y10_c00270{bottom:695.080000pt;}
.yf_c00270{bottom:727.080000pt;}
.ye_c00270{bottom:745.640000pt;}
.yd_c00270{bottom:764.520000pt;}
.yc_c00270{bottom:783.080000pt;}
.yb_c00270{bottom:801.640000pt;}
.ya_c00270{bottom:820.520000pt;}
.y9_c00270{bottom:839.080000pt;}
.y8_c00270{bottom:857.640000pt;}
.y7_c00270{bottom:876.520000pt;}
.y6_c00270{bottom:908.520000pt;}
.y5_c00270{bottom:927.080000pt;}
.y4_c00270{bottom:945.640000pt;}
.y3_c00270{bottom:964.520000pt;}
.y2_c00270{bottom:1010.920000pt;}
.h8_c00270{height:17.116000pt;}
.h7_c00270{height:37.687165pt;}
.h9_c00270{height:41.173333pt;}
.h6_c00270{height:42.908160pt;}
.h5_c00270{height:48.000000pt;}
.h4_c00270{height:50.928601pt;}
.h3_c00270{height:57.984000pt;}
.h2_c00270{height:1067.880000pt;}
.h0_c00270{height:1122.520000pt;}
.h1_c00270{height:1122.666667pt;}
.w4_c00270{width:22.240000pt;}
.w3_c00270{width:600.000000pt;}
.w2_c00270{width:767.960000pt;}
.w0_c00270{width:793.720000pt;}
.w1_c00270{width:794.000000pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:12.880000pt;}
.x14_c00270{left:47.879867pt;}
.x2_c00270{left:100.480133pt;}
.x13_c00270{left:110.480000pt;}
.x3_c00270{left:136.927733pt;}
.x15_c00270{left:145.930267pt;}
.x16_c00270{left:173.265867pt;}
.x4_c00270{left:199.117867pt;}
.x5_c00270{left:220.752000pt;}
.x12_c00270{left:256.973600pt;}
.xd_c00270{left:278.521467pt;}
.x6_c00270{left:284.750933pt;}
.x7_c00270{left:304.773467pt;}
.xe_c00270{left:349.624267pt;}
.x9_c00270{left:381.634400pt;}
.x8_c00270{left:387.232133pt;}
.xa_c00270{left:453.617467pt;}
.xb_c00270{left:475.347600pt;}
.xf_c00270{left:500.930933pt;}
.x10_c00270{left:569.803067pt;}
.xc_c00270{left:585.747733pt;}
.x11_c00270{left:630.659467pt;}
.x17_c00270{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_da2c05e9dc66bba7526c8069.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.134000;font-style:normal;font-weight:normal;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_66b7d33e94e3222486a1e68f.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:0.787000;font-style:normal;font-weight:normal;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_224318df3bf3372d8c4b317a.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;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:ff4_c00271;src:url('chunks/assets/font_6e698d8cbda43a4e70a8cec2.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:0.787000;font-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_c00271{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00271{vertical-align:-24.480000px;}
.v0_c00271{vertical-align:0.000000px;}
.v1_c00271{vertical-align:30.240000px;}
.ls14_c00271{letter-spacing:0.000000px;}
.ls6_c00271{letter-spacing:0.176040px;}
.ls8_c00271{letter-spacing:0.236160px;}
.ls17_c00271{letter-spacing:0.265680px;}
.ls7_c00271{letter-spacing:0.295200px;}
.ls1e_c00271{letter-spacing:0.301104px;}
.ls20_c00271{letter-spacing:0.318816px;}
.ls11_c00271{letter-spacing:0.354240px;}
.ls5_c00271{letter-spacing:0.389040px;}
.ls13_c00271{letter-spacing:0.425088px;}
.ls19_c00271{letter-spacing:0.438171px;}
.ls9_c00271{letter-spacing:0.513648px;}
.lsa_c00271{letter-spacing:0.531360px;}
.ls1c_c00271{letter-spacing:0.584496px;}
.ls1d_c00271{letter-spacing:0.602485px;}
.ls1a_c00271{letter-spacing:0.637632px;}
.ls27_c00271{letter-spacing:0.690768px;}
.ls26_c00271{letter-spacing:0.718113px;}
.ls1b_c00271{letter-spacing:0.743904px;}
.ls23_c00271{letter-spacing:0.962352px;}
.ls10_c00271{letter-spacing:2.999232px;}
.lse_c00271{letter-spacing:3.129120px;}
.lsf_c00271{letter-spacing:3.323952px;}
.ls18_c00271{letter-spacing:4.794048px;}
.ls25_c00271{letter-spacing:5.177808px;}
.ls16_c00271{letter-spacing:5.245344px;}
.ls22_c00271{letter-spacing:5.248656px;}
.ls3_c00271{letter-spacing:5.314440px;}
.lsc_c00271{letter-spacing:5.372640px;}
.ls1f_c00271{letter-spacing:5.514336px;}
.ls2_c00271{letter-spacing:5.570400px;}
.ls15_c00271{letter-spacing:5.571072px;}
.ls21_c00271{letter-spacing:5.780016px;}
.lsd_c00271{letter-spacing:5.785920px;}
.ls1_c00271{letter-spacing:5.974800px;}
.ls0_c00271{letter-spacing:5.976000px;}
.lsb_c00271{letter-spacing:7.084800px;}
.ls24_c00271{letter-spacing:11.560032px;}
.ls12_c00271{letter-spacing:16.531200px;}
.ls4_c00271{letter-spacing:18.144000px;}
.sc__c00271{text-shadow:none;}
.sc1_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00271{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc1_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00271{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00271{word-spacing:-21.661776px;}
.ws5_c00271{word-spacing:-17.636370px;}
.ws3_c00271{word-spacing:-17.520742px;}
.ws2_c00271{word-spacing:-16.944480px;}
.ws0_c00271{word-spacing:-11.609280px;}
.ws1_c00271{word-spacing:-10.008000px;}
.ws6_c00271{word-spacing:0.000000px;}
._18_c00271{margin-left:-17.121600px;}
._17_c00271{margin-left:-16.058880px;}
._19_c00271{margin-left:-15.055200px;}
._12_c00271{margin-left:-12.184800px;}
._13_c00271{margin-left:-11.040480px;}
._16_c00271{margin-left:-5.374800px;}
._e_c00271{margin-left:-4.309920px;}
._10_c00271{margin-left:-2.879136px;}
._f_c00271{margin-left:-1.056552px;}
._5_c00271{width:1.152000px;}
._a_c00271{width:2.736000px;}
._3_c00271{width:4.032000px;}
._0_c00271{width:5.671032px;}
._c_c00271{width:6.797808px;}
._15_c00271{width:8.638344px;}
._11_c00271{width:10.018296px;}
._14_c00271{width:11.158560px;}
._2_c00271{width:12.168000px;}
._8_c00271{width:13.320000px;}
._d_c00271{width:15.768000px;}
._b_c00271{width:18.720000px;}
._9_c00271{width:21.456000px;}
._7_c00271{width:22.680000px;}
._1_c00271{width:29.304000px;}
._4_c00271{width:34.632000px;}
._6_c00271{width:40.536000px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs4_c00271{font-size:36.000000px;}
.fs2_c00271{font-size:41.760000px;}
.fs1_c00271{font-size:56.160000px;}
.fs5_c00271{font-size:59.040000px;}
.fs7_c00271{font-size:60.000000px;}
.fs6_c00271{font-size:60.857039px;}
.fs0_c00271{font-size:72.000000px;}
.fs3_c00271{font-size:74.215901px;}
.y0_c00271{bottom:0.000000px;}
.y36_c00271{bottom:3.120150px;}
.y35_c00271{bottom:34.744500px;}
.y1_c00271{bottom:54.000000px;}
.y34_c00271{bottom:55.481040px;}
.y33_c00271{bottom:72.765000px;}
.y32_c00271{bottom:72.768600px;}
.y31_c00271{bottom:90.406800px;}
.y2f_c00271{bottom:108.037440px;}
.y30_c00271{bottom:108.045000px;}
.y2e_c00271{bottom:125.675640px;}
.y2d_c00271{bottom:143.682840px;}
.y2c_c00271{bottom:160.966800px;}
.y2b_c00271{bottom:178.605000px;}
.y2a_c00271{bottom:178.606800px;}
.y28_c00271{bottom:196.241400px;}
.y29_c00271{bottom:196.245000px;}
.y27_c00271{bottom:213.879600px;}
.y26_c00271{bottom:231.886800px;}
.y25_c00271{bottom:249.525000px;}
.y24_c00271{bottom:272.925000px;}
.y23_c00271{bottom:290.565000px;}
.y22_c00271{bottom:301.726800px;}
.y21_c00271{bottom:319.365000px;}
.y20_c00271{bottom:325.485000px;}
.y1f_c00271{bottom:343.125000px;}
.y1e_c00271{bottom:369.765000px;}
.y1d_c00271{bottom:412.965000px;}
.y1c_c00271{bottom:433.845000px;}
.y1b_c00271{bottom:455.085000px;}
.y1a_c00271{bottom:475.965000px;}
.y19_c00271{bottom:511.965000px;}
.y18_c00271{bottom:533.205000px;}
.y17_c00271{bottom:554.085000px;}
.y16_c00271{bottom:574.965000px;}
.y15_c00271{bottom:596.205000px;}
.y14_c00271{bottom:617.085000px;}
.y13_c00271{bottom:653.805000px;}
.y12_c00271{bottom:689.445000px;}
.y11_c00271{bottom:727.965000px;}
.y10_c00271{bottom:766.125000px;}
.yf_c00271{bottom:802.125000px;}
.ye_c00271{bottom:823.005000px;}
.yd_c00271{bottom:843.885000px;}
.yc_c00271{bottom:865.125000px;}
.yb_c00271{bottom:886.005000px;}
.ya_c00271{bottom:907.245000px;}
.y9_c00271{bottom:928.125000px;}
.y8_c00271{bottom:949.005000px;}
.y7_c00271{bottom:970.245000px;}
.y6_c00271{bottom:1006.245000px;}
.y5_c00271{bottom:1027.845000px;}
.y4_c00271{bottom:1048.725000px;}
.y3_c00271{bottom:1085.445000px;}
.y2_c00271{bottom:1138.725000px;}
.h9_c00271{height:19.255500px;}
.h6_c00271{height:32.616000px;}
.ha_c00271{height:46.320000px;}
.h7_c00271{height:46.981634px;}
.h8_c00271{height:53.490240px;}
.h5_c00271{height:57.294676px;}
.h3_c00271{height:65.232000px;}
.h4_c00271{height:68.074560px;}
.h2_c00271{height:1201.365000px;}
.h0_c00271{height:1262.835000px;}
.h1_c00271{height:1263.000000px;}
.w3_c00271{width:25.020000px;}
.w2_c00271{width:863.955000px;}
.w0_c00271{width:892.935000px;}
.w1_c00271{width:893.250000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:14.490000px;}
.x2_c00271{left:113.040150px;}
.x8_c00271{left:148.888950px;}
.xd_c00271{left:242.148150px;}
.x6_c00271{left:260.899350px;}
.x7_c00271{left:282.025650px;}
.xf_c00271{left:298.982700px;}
.xe_c00271{left:300.525900px;}
.x10_c00271{left:321.156300px;}
.x5_c00271{left:414.462150px;}
.x9_c00271{left:551.623200px;}
.xa_c00271{left:571.705800px;}
.xb_c00271{left:671.713650px;}
.x3_c00271{left:679.892550px;}
.x4_c00271{left:704.886450px;}
.xc_c00271{left:707.562450px;}
.x11_c00271{left:759.915000px;}
@media print{
.v2_c00271{vertical-align:-21.760000pt;}
.v0_c00271{vertical-align:0.000000pt;}
.v1_c00271{vertical-align:26.880000pt;}
.ls14_c00271{letter-spacing:0.000000pt;}
.ls6_c00271{letter-spacing:0.156480pt;}
.ls8_c00271{letter-spacing:0.209920pt;}
.ls17_c00271{letter-spacing:0.236160pt;}
.ls7_c00271{letter-spacing:0.262400pt;}
.ls1e_c00271{letter-spacing:0.267648pt;}
.ls20_c00271{letter-spacing:0.283392pt;}
.ls11_c00271{letter-spacing:0.314880pt;}
.ls5_c00271{letter-spacing:0.345813pt;}
.ls13_c00271{letter-spacing:0.377856pt;}
.ls19_c00271{letter-spacing:0.389485pt;}
.ls9_c00271{letter-spacing:0.456576pt;}
.lsa_c00271{letter-spacing:0.472320pt;}
.ls1c_c00271{letter-spacing:0.519552pt;}
.ls1d_c00271{letter-spacing:0.535542pt;}
.ls1a_c00271{letter-spacing:0.566784pt;}
.ls27_c00271{letter-spacing:0.614016pt;}
.ls26_c00271{letter-spacing:0.638323pt;}
.ls1b_c00271{letter-spacing:0.661248pt;}
.ls23_c00271{letter-spacing:0.855424pt;}
.ls10_c00271{letter-spacing:2.665984pt;}
.lse_c00271{letter-spacing:2.781440pt;}
.lsf_c00271{letter-spacing:2.954624pt;}
.ls18_c00271{letter-spacing:4.261376pt;}
.ls25_c00271{letter-spacing:4.602496pt;}
.ls16_c00271{letter-spacing:4.662528pt;}
.ls22_c00271{letter-spacing:4.665472pt;}
.ls3_c00271{letter-spacing:4.723947pt;}
.lsc_c00271{letter-spacing:4.775680pt;}
.ls1f_c00271{letter-spacing:4.901632pt;}
.ls2_c00271{letter-spacing:4.951467pt;}
.ls15_c00271{letter-spacing:4.952064pt;}
.ls21_c00271{letter-spacing:5.137792pt;}
.lsd_c00271{letter-spacing:5.143040pt;}
.ls1_c00271{letter-spacing:5.310933pt;}
.ls0_c00271{letter-spacing:5.312000pt;}
.lsb_c00271{letter-spacing:6.297600pt;}
.ls24_c00271{letter-spacing:10.275584pt;}
.ls12_c00271{letter-spacing:14.694400pt;}
.ls4_c00271{letter-spacing:16.128000pt;}
.ws4_c00271{word-spacing:-19.254912pt;}
.ws5_c00271{word-spacing:-15.676773pt;}
.ws3_c00271{word-spacing:-15.573992pt;}
.ws2_c00271{word-spacing:-15.061760pt;}
.ws0_c00271{word-spacing:-10.319360pt;}
.ws1_c00271{word-spacing:-8.896000pt;}
.ws6_c00271{word-spacing:0.000000pt;}
._18_c00271{margin-left:-15.219200pt;}
._17_c00271{margin-left:-14.274560pt;}
._19_c00271{margin-left:-13.382400pt;}
._12_c00271{margin-left:-10.830933pt;}
._13_c00271{margin-left:-9.813760pt;}
._16_c00271{margin-left:-4.777600pt;}
._e_c00271{margin-left:-3.831040pt;}
._10_c00271{margin-left:-2.559232pt;}
._f_c00271{margin-left:-0.939157pt;}
._5_c00271{width:1.024000pt;}
._a_c00271{width:2.432000pt;}
._3_c00271{width:3.584000pt;}
._0_c00271{width:5.040917pt;}
._c_c00271{width:6.042496pt;}
._15_c00271{width:7.678528pt;}
._11_c00271{width:8.905152pt;}
._14_c00271{width:9.918720pt;}
._2_c00271{width:10.816000pt;}
._8_c00271{width:11.840000pt;}
._d_c00271{width:14.016000pt;}
._b_c00271{width:16.640000pt;}
._9_c00271{width:19.072000pt;}
._7_c00271{width:20.160000pt;}
._1_c00271{width:26.048000pt;}
._4_c00271{width:30.784000pt;}
._6_c00271{width:36.032000pt;}
.fs4_c00271{font-size:32.000000pt;}
.fs2_c00271{font-size:37.120000pt;}
.fs1_c00271{font-size:49.920000pt;}
.fs5_c00271{font-size:52.480000pt;}
.fs7_c00271{font-size:53.333333pt;}
.fs6_c00271{font-size:54.095146pt;}
.fs0_c00271{font-size:64.000000pt;}
.fs3_c00271{font-size:65.969690pt;}
.y0_c00271{bottom:0.000000pt;}
.y36_c00271{bottom:2.773467pt;}
.y35_c00271{bottom:30.884000pt;}
.y1_c00271{bottom:48.000000pt;}
.y34_c00271{bottom:49.316480pt;}
.y33_c00271{bottom:64.680000pt;}
.y32_c00271{bottom:64.683200pt;}
.y31_c00271{bottom:80.361600pt;}
.y2f_c00271{bottom:96.033280pt;}
.y30_c00271{bottom:96.040000pt;}
.y2e_c00271{bottom:111.711680pt;}
.y2d_c00271{bottom:127.718080pt;}
.y2c_c00271{bottom:143.081600pt;}
.y2b_c00271{bottom:158.760000pt;}
.y2a_c00271{bottom:158.761600pt;}
.y28_c00271{bottom:174.436800pt;}
.y29_c00271{bottom:174.440000pt;}
.y27_c00271{bottom:190.115200pt;}
.y26_c00271{bottom:206.121600pt;}
.y25_c00271{bottom:221.800000pt;}
.y24_c00271{bottom:242.600000pt;}
.y23_c00271{bottom:258.280000pt;}
.y22_c00271{bottom:268.201600pt;}
.y21_c00271{bottom:283.880000pt;}
.y20_c00271{bottom:289.320000pt;}
.y1f_c00271{bottom:305.000000pt;}
.y1e_c00271{bottom:328.680000pt;}
.y1d_c00271{bottom:367.080000pt;}
.y1c_c00271{bottom:385.640000pt;}
.y1b_c00271{bottom:404.520000pt;}
.y1a_c00271{bottom:423.080000pt;}
.y19_c00271{bottom:455.080000pt;}
.y18_c00271{bottom:473.960000pt;}
.y17_c00271{bottom:492.520000pt;}
.y16_c00271{bottom:511.080000pt;}
.y15_c00271{bottom:529.960000pt;}
.y14_c00271{bottom:548.520000pt;}
.y13_c00271{bottom:581.160000pt;}
.y12_c00271{bottom:612.840000pt;}
.y11_c00271{bottom:647.080000pt;}
.y10_c00271{bottom:681.000000pt;}
.yf_c00271{bottom:713.000000pt;}
.ye_c00271{bottom:731.560000pt;}
.yd_c00271{bottom:750.120000pt;}
.yc_c00271{bottom:769.000000pt;}
.yb_c00271{bottom:787.560000pt;}
.ya_c00271{bottom:806.440000pt;}
.y9_c00271{bottom:825.000000pt;}
.y8_c00271{bottom:843.560000pt;}
.y7_c00271{bottom:862.440000pt;}
.y6_c00271{bottom:894.440000pt;}
.y5_c00271{bottom:913.640000pt;}
.y4_c00271{bottom:932.200000pt;}
.y3_c00271{bottom:964.840000pt;}
.y2_c00271{bottom:1012.200000pt;}
.h9_c00271{height:17.116000pt;}
.h6_c00271{height:28.992000pt;}
.ha_c00271{height:41.173333pt;}
.h7_c00271{height:41.761453pt;}
.h8_c00271{height:47.546880pt;}
.h5_c00271{height:50.928601pt;}
.h3_c00271{height:57.984000pt;}
.h4_c00271{height:60.510720pt;}
.h2_c00271{height:1067.880000pt;}
.h0_c00271{height:1122.520000pt;}
.h1_c00271{height:1122.666667pt;}
.w3_c00271{width:22.240000pt;}
.w2_c00271{width:767.960000pt;}
.w0_c00271{width:793.720000pt;}
.w1_c00271{width:794.000000pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:12.880000pt;}
.x2_c00271{left:100.480133pt;}
.x8_c00271{left:132.345733pt;}
.xd_c00271{left:215.242800pt;}
.x6_c00271{left:231.910533pt;}
.x7_c00271{left:250.689467pt;}
.xf_c00271{left:265.762400pt;}
.xe_c00271{left:267.134133pt;}
.x10_c00271{left:285.472267pt;}
.x5_c00271{left:368.410800pt;}
.x9_c00271{left:490.331733pt;}
.xa_c00271{left:508.182933pt;}
.xb_c00271{left:597.078800pt;}
.x3_c00271{left:604.348933pt;}
.x4_c00271{left:626.565733pt;}
.xc_c00271{left:628.944400pt;}
.x11_c00271{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0a3efda9753ebe2ae77729d7.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.134000;font-style:normal;font-weight:normal;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_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:0.787000;font-style:normal;font-weight:normal;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_2e371253c85ebfdaa112d834.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;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:ff4_c00272;src:url('chunks/assets/font_41dabc343895ce057cbd161d.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;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:ff5_c00272;src:url('chunks/assets/font_ab0be06057f2af8034d9f040.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00272;src:url('chunks/assets/font_0ec8af1190528c1ea5722589.woff2')format("woff");}.ff6_c00272{font-family:ff6_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:ff7_c00272;src:url('chunks/assets/font_a37bac1803c8b84426df275d.woff2')format("woff");}.ff7_c00272{font-family:ff7_c00272;line-height:0.787000;font-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_c00272{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00272{vertical-align:-24.480000px;}
.v0_c00272{vertical-align:0.000000px;}
.v1_c00272{vertical-align:30.240000px;}
.lsb_c00272{letter-spacing:0.000000px;}
.ls1_c00272{letter-spacing:0.111840px;}
.ls1a_c00272{letter-spacing:0.265680px;}
.lsa_c00272{letter-spacing:0.295200px;}
.ls6_c00272{letter-spacing:0.301104px;}
.ls16_c00272{letter-spacing:0.318816px;}
.ls17_c00272{letter-spacing:0.371952px;}
.ls4_c00272{letter-spacing:0.412440px;}
.ls15_c00272{letter-spacing:0.425088px;}
.ls11_c00272{letter-spacing:0.438171px;}
.lsf_c00272{letter-spacing:0.478224px;}
.ls9_c00272{letter-spacing:0.513648px;}
.ls7_c00272{letter-spacing:0.531360px;}
.ls18_c00272{letter-spacing:0.547713px;}
.ls13_c00272{letter-spacing:0.584496px;}
.ls12_c00272{letter-spacing:0.690768px;}
.ls14_c00272{letter-spacing:0.743904px;}
.ls10_c00272{letter-spacing:0.797040px;}
.ls19_c00272{letter-spacing:0.821570px;}
.ls8_c00272{letter-spacing:0.944640px;}
.lsd_c00272{letter-spacing:3.765600px;}
.lse_c00272{letter-spacing:5.430672px;}
.ls0_c00272{letter-spacing:5.976000px;}
.ls3_c00272{letter-spacing:5.990400px;}
.ls2_c00272{letter-spacing:14.112000px;}
.ls5_c00272{letter-spacing:18.184320px;}
.lsc_c00272{letter-spacing:20.109600px;}
.sc__c00272{text-shadow:none;}
.sc1_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00272{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc1_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00272{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00272{word-spacing:-21.043152px;}
.ws2_c00272{word-spacing:-16.944480px;}
.ws1_c00272{word-spacing:-10.008000px;}
.ws3_c00272{word-spacing:0.000000px;}
._1_c00272{margin-left:-19.987800px;}
._c_c00272{margin-left:-1.742400px;}
._8_c00272{width:1.440000px;}
._4_c00272{width:2.952000px;}
._e_c00272{width:3.961296px;}
._9_c00272{width:5.040000px;}
._6_c00272{width:6.336000px;}
._7_c00272{width:7.416000px;}
._2_c00272{width:8.424000px;}
._f_c00272{width:11.501980px;}
._10_c00272{width:12.856784px;}
._a_c00272{width:13.896000px;}
._3_c00272{width:15.264000px;}
._d_c00272{width:18.178416px;}
._0_c00272{width:21.024000px;}
._11_c00272{width:22.783680px;}
._5_c00272{width:25.920000px;}
._b_c00272{width:30.168000px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs4_c00272{font-size:36.000000px;}
.fs1_c00272{font-size:41.760000px;}
.fs3_c00272{font-size:56.160000px;}
.fs5_c00272{font-size:59.040000px;}
.fs7_c00272{font-size:60.000000px;}
.fs6_c00272{font-size:60.857039px;}
.fs0_c00272{font-size:72.000000px;}
.fs2_c00272{font-size:74.215901px;}
.y0_c00272{bottom:0.000000px;}
.y32_c00272{bottom:3.120150px;}
.y31_c00272{bottom:34.744500px;}
.y1_c00272{bottom:54.000000px;}
.y30_c00272{bottom:55.485000px;}
.y2f_c00272{bottom:61.605000px;}
.y2e_c00272{bottom:72.766440px;}
.y2d_c00272{bottom:90.404640px;}
.y2c_c00272{bottom:107.688600px;}
.y2b_c00272{bottom:125.326800px;}
.y29_c00272{bottom:142.961040px;}
.y2a_c00272{bottom:142.965000px;}
.y27_c00272{bottom:160.244640px;}
.y28_c00272{bottom:160.245000px;}
.y26_c00272{bottom:177.882840px;}
.y25_c00272{bottom:195.521040px;}
.y24_c00272{bottom:212.805000px;}
.y23_c00272{bottom:212.806800px;}
.y22_c00272{bottom:236.565000px;}
.y21_c00272{bottom:263.205000px;}
.y20_c00272{bottom:370.485000px;}
.y1f_c00272{bottom:406.485000px;}
.y1e_c00272{bottom:442.485000px;}
.y1d_c00272{bottom:478.485000px;}
.y1c_c00272{bottom:515.205000px;}
.y1b_c00272{bottom:535.725000px;}
.y1a_c00272{bottom:556.965000px;}
.y19_c00272{bottom:578.205000px;}
.y18_c00272{bottom:598.725000px;}
.y17_c00272{bottom:619.965000px;}
.y16_c00272{bottom:640.845000px;}
.y15_c00272{bottom:676.845000px;}
.y14_c00272{bottom:697.725000px;}
.y13_c00272{bottom:718.965000px;}
.y12_c00272{bottom:739.845000px;}
.y11_c00272{bottom:761.085000px;}
.y10_c00272{bottom:781.965000px;}
.yf_c00272{bottom:802.845000px;}
.ye_c00272{bottom:824.085000px;}
.yd_c00272{bottom:844.965000px;}
.yc_c00272{bottom:865.845000px;}
.yb_c00272{bottom:887.085000px;}
.ya_c00272{bottom:907.965000px;}
.y9_c00272{bottom:943.965000px;}
.y8_c00272{bottom:964.845000px;}
.y7_c00272{bottom:986.085000px;}
.y6_c00272{bottom:1022.085000px;}
.y5_c00272{bottom:1042.965000px;}
.y4_c00272{bottom:1063.845000px;}
.y3_c00272{bottom:1085.085000px;}
.y2_c00272{bottom:1138.725000px;}
.hb_c00272{height:19.255500px;}
.h8_c00272{height:32.616000px;}
.hc_c00272{height:46.320000px;}
.ha_c00272{height:46.981634px;}
.h7_c00272{height:47.988281px;}
.h9_c00272{height:53.490240px;}
.h5_c00272{height:57.294676px;}
.h6_c00272{height:59.372721px;}
.h3_c00272{height:65.232000px;}
.h4_c00272{height:68.074560px;}
.h2_c00272{height:1201.365000px;}
.h0_c00272{height:1262.835000px;}
.h1_c00272{height:1263.000000px;}
.w3_c00272{width:25.020000px;}
.w2_c00272{width:863.955000px;}
.w0_c00272{width:892.935000px;}
.w1_c00272{width:893.250000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:14.490000px;}
.x2_c00272{left:113.040150px;}
.x19_c00272{left:160.037400px;}
.x24_c00272{left:178.965450px;}
.x26_c00272{left:186.026700px;}
.x25_c00272{left:199.891500px;}
.x10_c00272{left:224.986050px;}
.x1e_c00272{left:234.886200px;}
.x11_c00272{left:235.935750px;}
.x6_c00272{left:292.160550px;}
.x1a_c00272{left:296.068350px;}
.x12_c00272{left:305.919000px;}
.xd_c00272{left:310.239300px;}
.x22_c00272{left:319.047000px;}
.x7_c00272{left:334.189800px;}
.x23_c00272{left:343.040400px;}
.x8_c00272{left:357.183450px;}
.x1f_c00272{left:393.025950px;}
.x13_c00272{left:408.751500px;}
.x20_c00272{left:412.033800px;}
.x28_c00272{left:427.213650px;}
.x1b_c00272{left:440.081250px;}
.x29_c00272{left:447.207600px;}
.x14_c00272{left:487.740300px;}
.x15_c00272{left:504.683700px;}
.x9_c00272{left:538.271100px;}
.x16_c00272{left:544.612800px;}
.xa_c00272{left:553.303050px;}
.x1c_c00272{left:592.239600px;}
.x1d_c00272{left:597.243450px;}
.x4_c00272{left:613.261200px;}
.x21_c00272{left:629.541450px;}
.xb_c00272{left:669.389250px;}
.xe_c00272{left:673.977450px;}
.x5_c00272{left:678.626550px;}
.x17_c00272{left:686.497950px;}
.x27_c00272{left:697.540950px;}
.x18_c00272{left:707.388750px;}
.xc_c00272{left:719.394600px;}
.x3_c00272{left:726.396600px;}
.xf_c00272{left:740.382150px;}
.x2a_c00272{left:759.915000px;}
@media print{
.v2_c00272{vertical-align:-21.760000pt;}
.v0_c00272{vertical-align:0.000000pt;}
.v1_c00272{vertical-align:26.880000pt;}
.lsb_c00272{letter-spacing:0.000000pt;}
.ls1_c00272{letter-spacing:0.099413pt;}
.ls1a_c00272{letter-spacing:0.236160pt;}
.lsa_c00272{letter-spacing:0.262400pt;}
.ls6_c00272{letter-spacing:0.267648pt;}
.ls16_c00272{letter-spacing:0.283392pt;}
.ls17_c00272{letter-spacing:0.330624pt;}
.ls4_c00272{letter-spacing:0.366613pt;}
.ls15_c00272{letter-spacing:0.377856pt;}
.ls11_c00272{letter-spacing:0.389485pt;}
.lsf_c00272{letter-spacing:0.425088pt;}
.ls9_c00272{letter-spacing:0.456576pt;}
.ls7_c00272{letter-spacing:0.472320pt;}
.ls18_c00272{letter-spacing:0.486856pt;}
.ls13_c00272{letter-spacing:0.519552pt;}
.ls12_c00272{letter-spacing:0.614016pt;}
.ls14_c00272{letter-spacing:0.661248pt;}
.ls10_c00272{letter-spacing:0.708480pt;}
.ls19_c00272{letter-spacing:0.730284pt;}
.ls8_c00272{letter-spacing:0.839680pt;}
.lsd_c00272{letter-spacing:3.347200pt;}
.lse_c00272{letter-spacing:4.827264pt;}
.ls0_c00272{letter-spacing:5.312000pt;}
.ls3_c00272{letter-spacing:5.324800pt;}
.ls2_c00272{letter-spacing:12.544000pt;}
.ls5_c00272{letter-spacing:16.163840pt;}
.lsc_c00272{letter-spacing:17.875200pt;}
.ws0_c00272{word-spacing:-18.705024pt;}
.ws2_c00272{word-spacing:-15.061760pt;}
.ws1_c00272{word-spacing:-8.896000pt;}
.ws3_c00272{word-spacing:0.000000pt;}
._1_c00272{margin-left:-17.766933pt;}
._c_c00272{margin-left:-1.548800pt;}
._8_c00272{width:1.280000pt;}
._4_c00272{width:2.624000pt;}
._e_c00272{width:3.521152pt;}
._9_c00272{width:4.480000pt;}
._6_c00272{width:5.632000pt;}
._7_c00272{width:6.592000pt;}
._2_c00272{width:7.488000pt;}
._f_c00272{width:10.223983pt;}
._10_c00272{width:11.428252pt;}
._a_c00272{width:12.352000pt;}
._3_c00272{width:13.568000pt;}
._d_c00272{width:16.158592pt;}
._0_c00272{width:18.688000pt;}
._11_c00272{width:20.252160pt;}
._5_c00272{width:23.040000pt;}
._b_c00272{width:26.816000pt;}
.fs4_c00272{font-size:32.000000pt;}
.fs1_c00272{font-size:37.120000pt;}
.fs3_c00272{font-size:49.920000pt;}
.fs5_c00272{font-size:52.480000pt;}
.fs7_c00272{font-size:53.333333pt;}
.fs6_c00272{font-size:54.095146pt;}
.fs0_c00272{font-size:64.000000pt;}
.fs2_c00272{font-size:65.969690pt;}
.y0_c00272{bottom:0.000000pt;}
.y32_c00272{bottom:2.773467pt;}
.y31_c00272{bottom:30.884000pt;}
.y1_c00272{bottom:48.000000pt;}
.y30_c00272{bottom:49.320000pt;}
.y2f_c00272{bottom:54.760000pt;}
.y2e_c00272{bottom:64.681280pt;}
.y2d_c00272{bottom:80.359680pt;}
.y2c_c00272{bottom:95.723200pt;}
.y2b_c00272{bottom:111.401600pt;}
.y29_c00272{bottom:127.076480pt;}
.y2a_c00272{bottom:127.080000pt;}
.y27_c00272{bottom:142.439680pt;}
.y28_c00272{bottom:142.440000pt;}
.y26_c00272{bottom:158.118080pt;}
.y25_c00272{bottom:173.796480pt;}
.y24_c00272{bottom:189.160000pt;}
.y23_c00272{bottom:189.161600pt;}
.y22_c00272{bottom:210.280000pt;}
.y21_c00272{bottom:233.960000pt;}
.y20_c00272{bottom:329.320000pt;}
.y1f_c00272{bottom:361.320000pt;}
.y1e_c00272{bottom:393.320000pt;}
.y1d_c00272{bottom:425.320000pt;}
.y1c_c00272{bottom:457.960000pt;}
.y1b_c00272{bottom:476.200000pt;}
.y1a_c00272{bottom:495.080000pt;}
.y19_c00272{bottom:513.960000pt;}
.y18_c00272{bottom:532.200000pt;}
.y17_c00272{bottom:551.080000pt;}
.y16_c00272{bottom:569.640000pt;}
.y15_c00272{bottom:601.640000pt;}
.y14_c00272{bottom:620.200000pt;}
.y13_c00272{bottom:639.080000pt;}
.y12_c00272{bottom:657.640000pt;}
.y11_c00272{bottom:676.520000pt;}
.y10_c00272{bottom:695.080000pt;}
.yf_c00272{bottom:713.640000pt;}
.ye_c00272{bottom:732.520000pt;}
.yd_c00272{bottom:751.080000pt;}
.yc_c00272{bottom:769.640000pt;}
.yb_c00272{bottom:788.520000pt;}
.ya_c00272{bottom:807.080000pt;}
.y9_c00272{bottom:839.080000pt;}
.y8_c00272{bottom:857.640000pt;}
.y7_c00272{bottom:876.520000pt;}
.y6_c00272{bottom:908.520000pt;}
.y5_c00272{bottom:927.080000pt;}
.y4_c00272{bottom:945.640000pt;}
.y3_c00272{bottom:964.520000pt;}
.y2_c00272{bottom:1012.200000pt;}
.hb_c00272{height:17.116000pt;}
.h8_c00272{height:28.992000pt;}
.hc_c00272{height:41.173333pt;}
.ha_c00272{height:41.761453pt;}
.h7_c00272{height:42.656250pt;}
.h9_c00272{height:47.546880pt;}
.h5_c00272{height:50.928601pt;}
.h6_c00272{height:52.775752pt;}
.h3_c00272{height:57.984000pt;}
.h4_c00272{height:60.510720pt;}
.h2_c00272{height:1067.880000pt;}
.h0_c00272{height:1122.520000pt;}
.h1_c00272{height:1122.666667pt;}
.w3_c00272{width:22.240000pt;}
.w2_c00272{width:767.960000pt;}
.w0_c00272{width:793.720000pt;}
.w1_c00272{width:794.000000pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:12.880000pt;}
.x2_c00272{left:100.480133pt;}
.x19_c00272{left:142.255467pt;}
.x24_c00272{left:159.080400pt;}
.x26_c00272{left:165.357067pt;}
.x25_c00272{left:177.681333pt;}
.x10_c00272{left:199.987600pt;}
.x1e_c00272{left:208.787733pt;}
.x11_c00272{left:209.720667pt;}
.x6_c00272{left:259.698267pt;}
.x1a_c00272{left:263.171867pt;}
.x12_c00272{left:271.928000pt;}
.xd_c00272{left:275.768267pt;}
.x22_c00272{left:283.597333pt;}
.x7_c00272{left:297.057600pt;}
.x23_c00272{left:304.924800pt;}
.x8_c00272{left:317.496400pt;}
.x1f_c00272{left:349.356400pt;}
.x13_c00272{left:363.334667pt;}
.x20_c00272{left:366.252267pt;}
.x28_c00272{left:379.745467pt;}
.x1b_c00272{left:391.183333pt;}
.x29_c00272{left:397.517867pt;}
.x14_c00272{left:433.546933pt;}
.x15_c00272{left:448.607733pt;}
.x9_c00272{left:478.463200pt;}
.x16_c00272{left:484.100267pt;}
.xa_c00272{left:491.824933pt;}
.x1c_c00272{left:526.435200pt;}
.x1d_c00272{left:530.883067pt;}
.x4_c00272{left:545.121067pt;}
.x21_c00272{left:559.592400pt;}
.xb_c00272{left:595.012667pt;}
.xe_c00272{left:599.091067pt;}
.x5_c00272{left:603.223600pt;}
.x17_c00272{left:610.220400pt;}
.x27_c00272{left:620.036400pt;}
.x18_c00272{left:628.790000pt;}
.xc_c00272{left:639.461867pt;}
.x3_c00272{left:645.685867pt;}
.xf_c00272{left:658.117467pt;}
.x2a_c00272{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8fa9ba9b7726d30a3dd79c0e.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.134000;font-style:normal;font-weight:normal;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_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:0.787000;font-style:normal;font-weight:normal;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_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00273;src:url('chunks/assets/font_b115b45e5ed7519745a3c5ef.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;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:ff6_c00273;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff6_c00273{font-family:ff6_c00273;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00273;src:url('chunks/assets/font_159307c5700e277a785f3d52.woff2')format("woff");}.ff7_c00273{font-family:ff7_c00273;line-height:0.787000;font-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_c00273{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00273{vertical-align:-24.480000px;}
.v0_c00273{vertical-align:0.000000px;}
.v1_c00273{vertical-align:30.240000px;}
.lsd_c00273{letter-spacing:-0.179568px;}
.lsb_c00273{letter-spacing:0.000000px;}
.ls1_c00273{letter-spacing:0.109440px;}
.ls19_c00273{letter-spacing:0.144000px;}
.lse_c00273{letter-spacing:0.265680px;}
.ls7_c00273{letter-spacing:0.295200px;}
.ls15_c00273{letter-spacing:0.318816px;}
.ls8_c00273{letter-spacing:0.342432px;}
.ls12_c00273{letter-spacing:0.425088px;}
.lsf_c00273{letter-spacing:0.438171px;}
.ls18_c00273{letter-spacing:0.478224px;}
.ls9_c00273{letter-spacing:0.492942px;}
.ls6_c00273{letter-spacing:0.501840px;}
.ls5_c00273{letter-spacing:0.513648px;}
.lsa_c00273{letter-spacing:0.531360px;}
.ls17_c00273{letter-spacing:0.602485px;}
.ls16_c00273{letter-spacing:0.657256px;}
.ls13_c00273{letter-spacing:0.797040px;}
.ls4_c00273{letter-spacing:0.849840px;}
.ls10_c00273{letter-spacing:0.962352px;}
.lsc_c00273{letter-spacing:5.430672px;}
.ls14_c00273{letter-spacing:5.514336px;}
.ls0_c00273{letter-spacing:5.976000px;}
.ls2_c00273{letter-spacing:5.976600px;}
.ls11_c00273{letter-spacing:9.499536px;}
.ls3_c00273{letter-spacing:54.864000px;}
.sc__c00273{text-shadow:none;}
.sc1_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00273{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc1_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00273{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00273{word-spacing:-21.043152px;}
.ws2_c00273{word-spacing:-20.016000px;}
.ws6_c00273{word-spacing:-17.575513px;}
.ws7_c00273{word-spacing:-17.520742px;}
.ws8_c00273{word-spacing:-17.411199px;}
.wsa_c00273{word-spacing:-16.944480px;}
.ws5_c00273{word-spacing:-16.731936px;}
.ws0_c00273{word-spacing:-11.609280px;}
.ws3_c00273{word-spacing:-11.429712px;}
.ws9_c00273{word-spacing:-10.152000px;}
.ws4_c00273{word-spacing:-10.008000px;}
.wsb_c00273{word-spacing:0.000000px;}
._c_c00273{margin-left:-10.095840px;}
._b_c00273{margin-left:-8.560800px;}
._0_c00273{margin-left:-1.179360px;}
._6_c00273{width:1.015200px;}
._4_c00273{width:2.133600px;}
._5_c00273{width:3.626400px;}
._1_c00273{width:5.112000px;}
._3_c00273{width:6.912000px;}
._9_c00273{width:8.352000px;}
._d_c00273{width:9.917424px;}
._8_c00273{width:14.112000px;}
._a_c00273{width:16.056000px;}
._2_c00273{width:17.136000px;}
._7_c00273{width:18.288000px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs4_c00273{font-size:36.000000px;}
.fs1_c00273{font-size:41.760000px;}
.fs3_c00273{font-size:56.160000px;}
.fs5_c00273{font-size:59.040000px;}
.fs7_c00273{font-size:60.000000px;}
.fs6_c00273{font-size:60.857039px;}
.fs0_c00273{font-size:72.000000px;}
.fs2_c00273{font-size:74.215901px;}
.y0_c00273{bottom:0.000000px;}
.y2c_c00273{bottom:3.120150px;}
.y2b_c00273{bottom:34.744500px;}
.y1_c00273{bottom:54.000000px;}
.y2a_c00273{bottom:61.605000px;}
.y29_c00273{bottom:72.766800px;}
.y28_c00273{bottom:90.405000px;}
.y27_c00273{bottom:96.525000px;}
.y26_c00273{bottom:107.688600px;}
.y25_c00273{bottom:125.326800px;}
.y24_c00273{bottom:149.085000px;}
.y23_c00273{bottom:160.245000px;}
.y22_c00273{bottom:166.365000px;}
.y21_c00273{bottom:193.005000px;}
.y20_c00273{bottom:235.485000px;}
.y1f_c00273{bottom:271.485000px;}
.y1e_c00273{bottom:292.365000px;}
.y1d_c00273{bottom:328.365000px;}
.y1c_c00273{bottom:349.245000px;}
.y1b_c00273{bottom:370.485000px;}
.y1a_c00273{bottom:392.085000px;}
.y19_c00273{bottom:412.965000px;}
.y18_c00273{bottom:433.845000px;}
.y17_c00273{bottom:454.725000px;}
.y16_c00273{bottom:475.965000px;}
.y15_c00273{bottom:496.845000px;}
.y14_c00273{bottom:517.725000px;}
.y13_c00273{bottom:554.085000px;}
.y12_c00273{bottom:590.085000px;}
.y11_c00273{bottom:610.965000px;}
.y10_c00273{bottom:646.965000px;}
.yf_c00273{bottom:682.965000px;}
.ye_c00273{bottom:703.845000px;}
.yd_c00273{bottom:739.845000px;}
.yc_c00273{bottom:761.085000px;}
.yb_c00273{bottom:797.085000px;}
.ya_c00273{bottom:833.085000px;}
.y9_c00273{bottom:869.085000px;}
.y8_c00273{bottom:905.085000px;}
.y7_c00273{bottom:941.085000px;}
.y6_c00273{bottom:977.085000px;}
.y5_c00273{bottom:1013.085000px;}
.y4_c00273{bottom:1049.085000px;}
.y3_c00273{bottom:1085.085000px;}
.y2_c00273{bottom:1138.725000px;}
.ha_c00273{height:19.255500px;}
.h7_c00273{height:32.616000px;}
.hb_c00273{height:46.320000px;}
.h8_c00273{height:46.981634px;}
.h5_c00273{height:52.031250px;}
.h9_c00273{height:53.490240px;}
.h6_c00273{height:57.294676px;}
.h3_c00273{height:65.232000px;}
.h4_c00273{height:68.074560px;}
.h2_c00273{height:1201.365000px;}
.h0_c00273{height:1262.835000px;}
.h1_c00273{height:1263.000000px;}
.w3_c00273{width:25.020000px;}
.w2_c00273{width:863.955000px;}
.w0_c00273{width:892.935000px;}
.w1_c00273{width:893.250000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:14.490000px;}
.x2_c00273{left:113.040150px;}
.x3_c00273{left:140.044200px;}
.x9_c00273{left:148.031550px;}
.x6_c00273{left:150.029700px;}
.x7_c00273{left:153.035550px;}
.x4_c00273{left:167.040150px;}
.xc_c00273{left:188.044950px;}
.xd_c00273{left:201.058650px;}
.x5_c00273{left:247.048800px;}
.xe_c00273{left:476.147850px;}
.x14_c00273{left:480.655950px;}
.xf_c00273{left:487.145550px;}
.x15_c00273{left:518.994450px;}
.x12_c00273{left:538.102950px;}
.xa_c00273{left:544.149900px;}
.x13_c00273{left:558.097050px;}
.x16_c00273{left:566.077950px;}
.xb_c00273{left:574.155450px;}
.x10_c00273{left:583.173750px;}
.x8_c00273{left:588.106200px;}
.x17_c00273{left:601.926600px;}
.x11_c00273{left:624.177300px;}
.x18_c00273{left:660.679650px;}
.x19_c00273{left:687.349350px;}
.x1a_c00273{left:759.915000px;}
@media print{
.v2_c00273{vertical-align:-21.760000pt;}
.v0_c00273{vertical-align:0.000000pt;}
.v1_c00273{vertical-align:26.880000pt;}
.lsd_c00273{letter-spacing:-0.159616pt;}
.lsb_c00273{letter-spacing:0.000000pt;}
.ls1_c00273{letter-spacing:0.097280pt;}
.ls19_c00273{letter-spacing:0.128000pt;}
.lse_c00273{letter-spacing:0.236160pt;}
.ls7_c00273{letter-spacing:0.262400pt;}
.ls15_c00273{letter-spacing:0.283392pt;}
.ls8_c00273{letter-spacing:0.304384pt;}
.ls12_c00273{letter-spacing:0.377856pt;}
.lsf_c00273{letter-spacing:0.389485pt;}
.ls18_c00273{letter-spacing:0.425088pt;}
.ls9_c00273{letter-spacing:0.438171pt;}
.ls6_c00273{letter-spacing:0.446080pt;}
.ls5_c00273{letter-spacing:0.456576pt;}
.lsa_c00273{letter-spacing:0.472320pt;}
.ls17_c00273{letter-spacing:0.535542pt;}
.ls16_c00273{letter-spacing:0.584228pt;}
.ls13_c00273{letter-spacing:0.708480pt;}
.ls4_c00273{letter-spacing:0.755413pt;}
.ls10_c00273{letter-spacing:0.855424pt;}
.lsc_c00273{letter-spacing:4.827264pt;}
.ls14_c00273{letter-spacing:4.901632pt;}
.ls0_c00273{letter-spacing:5.312000pt;}
.ls2_c00273{letter-spacing:5.312533pt;}
.ls11_c00273{letter-spacing:8.444032pt;}
.ls3_c00273{letter-spacing:48.768000pt;}
.ws1_c00273{word-spacing:-18.705024pt;}
.ws2_c00273{word-spacing:-17.792000pt;}
.ws6_c00273{word-spacing:-15.622678pt;}
.ws7_c00273{word-spacing:-15.573992pt;}
.ws8_c00273{word-spacing:-15.476621pt;}
.wsa_c00273{word-spacing:-15.061760pt;}
.ws5_c00273{word-spacing:-14.872832pt;}
.ws0_c00273{word-spacing:-10.319360pt;}
.ws3_c00273{word-spacing:-10.159744pt;}
.ws9_c00273{word-spacing:-9.024000pt;}
.ws4_c00273{word-spacing:-8.896000pt;}
.wsb_c00273{word-spacing:0.000000pt;}
._c_c00273{margin-left:-8.974080pt;}
._b_c00273{margin-left:-7.609600pt;}
._0_c00273{margin-left:-1.048320pt;}
._6_c00273{width:0.902400pt;}
._4_c00273{width:1.896533pt;}
._5_c00273{width:3.223467pt;}
._1_c00273{width:4.544000pt;}
._3_c00273{width:6.144000pt;}
._9_c00273{width:7.424000pt;}
._d_c00273{width:8.815488pt;}
._8_c00273{width:12.544000pt;}
._a_c00273{width:14.272000pt;}
._2_c00273{width:15.232000pt;}
._7_c00273{width:16.256000pt;}
.fs4_c00273{font-size:32.000000pt;}
.fs1_c00273{font-size:37.120000pt;}
.fs3_c00273{font-size:49.920000pt;}
.fs5_c00273{font-size:52.480000pt;}
.fs7_c00273{font-size:53.333333pt;}
.fs6_c00273{font-size:54.095146pt;}
.fs0_c00273{font-size:64.000000pt;}
.fs2_c00273{font-size:65.969690pt;}
.y0_c00273{bottom:0.000000pt;}
.y2c_c00273{bottom:2.773467pt;}
.y2b_c00273{bottom:30.884000pt;}
.y1_c00273{bottom:48.000000pt;}
.y2a_c00273{bottom:54.760000pt;}
.y29_c00273{bottom:64.681600pt;}
.y28_c00273{bottom:80.360000pt;}
.y27_c00273{bottom:85.800000pt;}
.y26_c00273{bottom:95.723200pt;}
.y25_c00273{bottom:111.401600pt;}
.y24_c00273{bottom:132.520000pt;}
.y23_c00273{bottom:142.440000pt;}
.y22_c00273{bottom:147.880000pt;}
.y21_c00273{bottom:171.560000pt;}
.y20_c00273{bottom:209.320000pt;}
.y1f_c00273{bottom:241.320000pt;}
.y1e_c00273{bottom:259.880000pt;}
.y1d_c00273{bottom:291.880000pt;}
.y1c_c00273{bottom:310.440000pt;}
.y1b_c00273{bottom:329.320000pt;}
.y1a_c00273{bottom:348.520000pt;}
.y19_c00273{bottom:367.080000pt;}
.y18_c00273{bottom:385.640000pt;}
.y17_c00273{bottom:404.200000pt;}
.y16_c00273{bottom:423.080000pt;}
.y15_c00273{bottom:441.640000pt;}
.y14_c00273{bottom:460.200000pt;}
.y13_c00273{bottom:492.520000pt;}
.y12_c00273{bottom:524.520000pt;}
.y11_c00273{bottom:543.080000pt;}
.y10_c00273{bottom:575.080000pt;}
.yf_c00273{bottom:607.080000pt;}
.ye_c00273{bottom:625.640000pt;}
.yd_c00273{bottom:657.640000pt;}
.yc_c00273{bottom:676.520000pt;}
.yb_c00273{bottom:708.520000pt;}
.ya_c00273{bottom:740.520000pt;}
.y9_c00273{bottom:772.520000pt;}
.y8_c00273{bottom:804.520000pt;}
.y7_c00273{bottom:836.520000pt;}
.y6_c00273{bottom:868.520000pt;}
.y5_c00273{bottom:900.520000pt;}
.y4_c00273{bottom:932.520000pt;}
.y3_c00273{bottom:964.520000pt;}
.y2_c00273{bottom:1012.200000pt;}
.ha_c00273{height:17.116000pt;}
.h7_c00273{height:28.992000pt;}
.hb_c00273{height:41.173333pt;}
.h8_c00273{height:41.761453pt;}
.h5_c00273{height:46.250000pt;}
.h9_c00273{height:47.546880pt;}
.h6_c00273{height:50.928601pt;}
.h3_c00273{height:57.984000pt;}
.h4_c00273{height:60.510720pt;}
.h2_c00273{height:1067.880000pt;}
.h0_c00273{height:1122.520000pt;}
.h1_c00273{height:1122.666667pt;}
.w3_c00273{width:22.240000pt;}
.w2_c00273{width:767.960000pt;}
.w0_c00273{width:793.720000pt;}
.w1_c00273{width:794.000000pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:12.880000pt;}
.x2_c00273{left:100.480133pt;}
.x3_c00273{left:124.483733pt;}
.x9_c00273{left:131.583600pt;}
.x6_c00273{left:133.359733pt;}
.x7_c00273{left:136.031600pt;}
.x4_c00273{left:148.480133pt;}
.xc_c00273{left:167.151067pt;}
.xd_c00273{left:178.718800pt;}
.x5_c00273{left:219.598933pt;}
.xe_c00273{left:423.242533pt;}
.x14_c00273{left:427.249733pt;}
.xf_c00273{left:433.018267pt;}
.x15_c00273{left:461.328400pt;}
.x12_c00273{left:478.313733pt;}
.xa_c00273{left:483.688800pt;}
.x13_c00273{left:496.086267pt;}
.x16_c00273{left:503.180400pt;}
.xb_c00273{left:510.360400pt;}
.x10_c00273{left:518.376667pt;}
.x8_c00273{left:522.761067pt;}
.x17_c00273{left:535.045867pt;}
.x11_c00273{left:554.824267pt;}
.x18_c00273{left:587.270800pt;}
.x19_c00273{left:610.977200pt;}
.x1a_c00273{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f7cbeac4b9ca53559284aa44.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.134000;font-style:normal;font-weight:normal;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_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:0.787000;font-style:normal;font-weight:normal;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_74e84b60b8afea98ee905969.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;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:ff4_c00274;src:url('chunks/assets/font_8194133ff60fb143a73b04df.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;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_f501e7d3e35d3b60d2ee0819.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00274{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00274{vertical-align:-24.480000px;}
.v0_c00274{vertical-align:0.000000px;}
.v1_c00274{vertical-align:30.240000px;}
.ls1a_c00274{letter-spacing:-0.179568px;}
.lsd_c00274{letter-spacing:0.000000px;}
.ls1c_c00274{letter-spacing:0.144000px;}
.ls13_c00274{letter-spacing:0.265680px;}
.lse_c00274{letter-spacing:0.273857px;}
.ls8_c00274{letter-spacing:0.295200px;}
.ls5_c00274{letter-spacing:0.318480px;}
.ls1e_c00274{letter-spacing:0.425088px;}
.ls1f_c00274{letter-spacing:0.478224px;}
.ls4_c00274{letter-spacing:0.492942px;}
.ls7_c00274{letter-spacing:0.513648px;}
.ls6_c00274{letter-spacing:0.531360px;}
.lsc_c00274{letter-spacing:0.560880px;}
.ls15_c00274{letter-spacing:0.584496px;}
.ls16_c00274{letter-spacing:0.637632px;}
.ls11_c00274{letter-spacing:0.690768px;}
.ls9_c00274{letter-spacing:0.712027px;}
.ls18_c00274{letter-spacing:0.743904px;}
.ls17_c00274{letter-spacing:0.797040px;}
.ls10_c00274{letter-spacing:0.962352px;}
.ls1d_c00274{letter-spacing:2.721744px;}
.ls1b_c00274{letter-spacing:5.335200px;}
.ls3_c00274{letter-spacing:5.352840px;}
.ls1_c00274{letter-spacing:5.353440px;}
.ls19_c00274{letter-spacing:5.430672px;}
.ls2_c00274{letter-spacing:5.778120px;}
.lsf_c00274{letter-spacing:5.780016px;}
.lsb_c00274{letter-spacing:5.964600px;}
.lsa_c00274{letter-spacing:5.975400px;}
.ls0_c00274{letter-spacing:5.976000px;}
.ls14_c00274{letter-spacing:10.137168px;}
.ls12_c00274{letter-spacing:27.400464px;}
.sc__c00274{text-shadow:none;}
.sc1_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00274{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc1_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00274{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00274{word-spacing:-21.043152px;}
.ws6_c00274{word-spacing:-20.947680px;}
.ws3_c00274{word-spacing:-17.630284px;}
.ws1_c00274{word-spacing:-17.411199px;}
.ws0_c00274{word-spacing:-17.375472px;}
.ws2_c00274{word-spacing:-16.944480px;}
.ws5_c00274{word-spacing:-11.429712px;}
.ws7_c00274{word-spacing:-10.152000px;}
.ws8_c00274{word-spacing:0.000000px;}
._3_c00274{margin-left:-26.959080px;}
._7_c00274{margin-left:-10.745280px;}
._6_c00274{margin-left:-9.446400px;}
._14_c00274{margin-left:-3.121920px;}
._0_c00274{margin-left:-1.357920px;}
._5_c00274{width:1.215000px;}
._11_c00274{width:3.009600px;}
._f_c00274{width:4.046400px;}
._b_c00274{width:5.313600px;}
._c_c00274{width:6.376320px;}
._1_c00274{width:7.970400px;}
._4_c00274{width:9.269280px;}
._a_c00274{width:10.332000px;}
._9_c00274{width:11.689920px;}
._8_c00274{width:12.929760px;}
._12_c00274{width:14.976000px;}
._d_c00274{width:18.936000px;}
._13_c00274{width:21.096000px;}
._10_c00274{width:24.120000px;}
._2_c00274{width:26.331840px;}
._e_c00274{width:27.720000px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs6_c00274{font-size:36.000000px;}
.fs5_c00274{font-size:41.760000px;}
.fs4_c00274{font-size:56.160000px;}
.fs1_c00274{font-size:59.040000px;}
.fs7_c00274{font-size:60.000000px;}
.fs2_c00274{font-size:60.857039px;}
.fs0_c00274{font-size:72.000000px;}
.fs3_c00274{font-size:74.215901px;}
.y0_c00274{bottom:0.000000px;}
.y2f_c00274{bottom:3.120150px;}
.y2e_c00274{bottom:34.744500px;}
.y1_c00274{bottom:54.000000px;}
.y2d_c00274{bottom:61.605000px;}
.y2c_c00274{bottom:72.762840px;}
.y2b_c00274{bottom:90.401040px;}
.y2a_c00274{bottom:107.685000px;}
.y29_c00274{bottom:113.805000px;}
.y28_c00274{bottom:140.445000px;}
.y27_c00274{bottom:185.805000px;}
.y26_c00274{bottom:221.805000px;}
.y25_c00274{bottom:257.805000px;}
.y24_c00274{bottom:293.805000px;}
.y23_c00274{bottom:329.805000px;}
.y22_c00274{bottom:365.805000px;}
.y21_c00274{bottom:386.685000px;}
.y20_c00274{bottom:407.925000px;}
.y1f_c00274{bottom:428.805000px;}
.y1e_c00274{bottom:449.685000px;}
.y1d_c00274{bottom:470.925000px;}
.y1c_c00274{bottom:491.805000px;}
.y1b_c00274{bottom:513.045000px;}
.y1a_c00274{bottom:549.045000px;}
.y19_c00274{bottom:569.925000px;}
.y18_c00274{bottom:590.805000px;}
.y17_c00274{bottom:626.805000px;}
.y16_c00274{bottom:648.045000px;}
.y15_c00274{bottom:668.925000px;}
.y14_c00274{bottom:689.805000px;}
.y13_c00274{bottom:711.045000px;}
.y12_c00274{bottom:731.925000px;}
.y11_c00274{bottom:767.925000px;}
.y10_c00274{bottom:803.925000px;}
.yf_c00274{bottom:824.804640px;}
.ye_c00274{bottom:842.088600px;}
.yd_c00274{bottom:859.726800px;}
.yc_c00274{bottom:877.365000px;}
.yb_c00274{bottom:909.761040px;}
.ya_c00274{bottom:927.045000px;}
.y9_c00274{bottom:959.805000px;}
.y8_c00274{bottom:981.405000px;}
.y7_c00274{bottom:999.045000px;}
.y6_c00274{bottom:1016.685000px;}
.y5_c00274{bottom:1033.965000px;}
.y4_c00274{bottom:1051.604850px;}
.y3_c00274{bottom:1085.085000px;}
.y2_c00274{bottom:1138.725000px;}
.ha_c00274{height:19.255500px;}
.h9_c00274{height:32.616000px;}
.h6_c00274{height:39.350391px;}
.hb_c00274{height:46.320000px;}
.h5_c00274{height:46.981634px;}
.h4_c00274{height:53.490240px;}
.h7_c00274{height:57.294676px;}
.h3_c00274{height:65.232000px;}
.h8_c00274{height:68.074560px;}
.h2_c00274{height:1201.365000px;}
.h0_c00274{height:1262.835000px;}
.h1_c00274{height:1263.000000px;}
.w7_c00274{width:25.020000px;}
.w3_c00274{width:39.600000px;}
.w5_c00274{width:116.280000px;}
.w4_c00274{width:126.720000px;}
.w6_c00274{width:362.520000px;}
.w2_c00274{width:863.955000px;}
.w0_c00274{width:892.935000px;}
.w1_c00274{width:893.250000px;}
.x0_c00274{left:0.000000px;}
.x4_c00274{left:7.920150px;}
.x1_c00274{left:14.490000px;}
.x6_c00274{left:37.559250px;}
.x7_c00274{left:41.309250px;}
.x2_c00274{left:113.040150px;}
.x3_c00274{left:119.610000px;}
.xe_c00274{left:133.034550px;}
.x5_c00274{left:159.930000px;}
.x8_c00274{left:287.370000px;}
.xa_c00274{left:322.995300px;}
.xb_c00274{left:354.659700px;}
.x9_c00274{left:404.370000px;}
.xf_c00274{left:420.293700px;}
.xc_c00274{left:430.428900px;}
.x11_c00274{left:439.499250px;}
.xd_c00274{left:462.093450px;}
.x10_c00274{left:478.288650px;}
.x12_c00274{left:497.818800px;}
.x13_c00274{left:759.915000px;}
@media print{
.v2_c00274{vertical-align:-21.760000pt;}
.v0_c00274{vertical-align:0.000000pt;}
.v1_c00274{vertical-align:26.880000pt;}
.ls1a_c00274{letter-spacing:-0.159616pt;}
.lsd_c00274{letter-spacing:0.000000pt;}
.ls1c_c00274{letter-spacing:0.128000pt;}
.ls13_c00274{letter-spacing:0.236160pt;}
.lse_c00274{letter-spacing:0.243428pt;}
.ls8_c00274{letter-spacing:0.262400pt;}
.ls5_c00274{letter-spacing:0.283093pt;}
.ls1e_c00274{letter-spacing:0.377856pt;}
.ls1f_c00274{letter-spacing:0.425088pt;}
.ls4_c00274{letter-spacing:0.438171pt;}
.ls7_c00274{letter-spacing:0.456576pt;}
.ls6_c00274{letter-spacing:0.472320pt;}
.lsc_c00274{letter-spacing:0.498560pt;}
.ls15_c00274{letter-spacing:0.519552pt;}
.ls16_c00274{letter-spacing:0.566784pt;}
.ls11_c00274{letter-spacing:0.614016pt;}
.ls9_c00274{letter-spacing:0.632913pt;}
.ls18_c00274{letter-spacing:0.661248pt;}
.ls17_c00274{letter-spacing:0.708480pt;}
.ls10_c00274{letter-spacing:0.855424pt;}
.ls1d_c00274{letter-spacing:2.419328pt;}
.ls1b_c00274{letter-spacing:4.742400pt;}
.ls3_c00274{letter-spacing:4.758080pt;}
.ls1_c00274{letter-spacing:4.758613pt;}
.ls19_c00274{letter-spacing:4.827264pt;}
.ls2_c00274{letter-spacing:5.136107pt;}
.lsf_c00274{letter-spacing:5.137792pt;}
.lsb_c00274{letter-spacing:5.301867pt;}
.lsa_c00274{letter-spacing:5.311467pt;}
.ls0_c00274{letter-spacing:5.312000pt;}
.ls14_c00274{letter-spacing:9.010816pt;}
.ls12_c00274{letter-spacing:24.355968pt;}
.ws4_c00274{word-spacing:-18.705024pt;}
.ws6_c00274{word-spacing:-18.620160pt;}
.ws3_c00274{word-spacing:-15.671364pt;}
.ws1_c00274{word-spacing:-15.476621pt;}
.ws0_c00274{word-spacing:-15.444864pt;}
.ws2_c00274{word-spacing:-15.061760pt;}
.ws5_c00274{word-spacing:-10.159744pt;}
.ws7_c00274{word-spacing:-9.024000pt;}
.ws8_c00274{word-spacing:0.000000pt;}
._3_c00274{margin-left:-23.963627pt;}
._7_c00274{margin-left:-9.551360pt;}
._6_c00274{margin-left:-8.396800pt;}
._14_c00274{margin-left:-2.775040pt;}
._0_c00274{margin-left:-1.207040pt;}
._5_c00274{width:1.080000pt;}
._11_c00274{width:2.675200pt;}
._f_c00274{width:3.596800pt;}
._b_c00274{width:4.723200pt;}
._c_c00274{width:5.667840pt;}
._1_c00274{width:7.084800pt;}
._4_c00274{width:8.239360pt;}
._a_c00274{width:9.184000pt;}
._9_c00274{width:10.391040pt;}
._8_c00274{width:11.493120pt;}
._12_c00274{width:13.312000pt;}
._d_c00274{width:16.832000pt;}
._13_c00274{width:18.752000pt;}
._10_c00274{width:21.440000pt;}
._2_c00274{width:23.406080pt;}
._e_c00274{width:24.640000pt;}
.fs6_c00274{font-size:32.000000pt;}
.fs5_c00274{font-size:37.120000pt;}
.fs4_c00274{font-size:49.920000pt;}
.fs1_c00274{font-size:52.480000pt;}
.fs7_c00274{font-size:53.333333pt;}
.fs2_c00274{font-size:54.095146pt;}
.fs0_c00274{font-size:64.000000pt;}
.fs3_c00274{font-size:65.969690pt;}
.y0_c00274{bottom:0.000000pt;}
.y2f_c00274{bottom:2.773467pt;}
.y2e_c00274{bottom:30.884000pt;}
.y1_c00274{bottom:48.000000pt;}
.y2d_c00274{bottom:54.760000pt;}
.y2c_c00274{bottom:64.678080pt;}
.y2b_c00274{bottom:80.356480pt;}
.y2a_c00274{bottom:95.720000pt;}
.y29_c00274{bottom:101.160000pt;}
.y28_c00274{bottom:124.840000pt;}
.y27_c00274{bottom:165.160000pt;}
.y26_c00274{bottom:197.160000pt;}
.y25_c00274{bottom:229.160000pt;}
.y24_c00274{bottom:261.160000pt;}
.y23_c00274{bottom:293.160000pt;}
.y22_c00274{bottom:325.160000pt;}
.y21_c00274{bottom:343.720000pt;}
.y20_c00274{bottom:362.600000pt;}
.y1f_c00274{bottom:381.160000pt;}
.y1e_c00274{bottom:399.720000pt;}
.y1d_c00274{bottom:418.600000pt;}
.y1c_c00274{bottom:437.160000pt;}
.y1b_c00274{bottom:456.040000pt;}
.y1a_c00274{bottom:488.040000pt;}
.y19_c00274{bottom:506.600000pt;}
.y18_c00274{bottom:525.160000pt;}
.y17_c00274{bottom:557.160000pt;}
.y16_c00274{bottom:576.040000pt;}
.y15_c00274{bottom:594.600000pt;}
.y14_c00274{bottom:613.160000pt;}
.y13_c00274{bottom:632.040000pt;}
.y12_c00274{bottom:650.600000pt;}
.y11_c00274{bottom:682.600000pt;}
.y10_c00274{bottom:714.600000pt;}
.yf_c00274{bottom:733.159680pt;}
.ye_c00274{bottom:748.523200pt;}
.yd_c00274{bottom:764.201600pt;}
.yc_c00274{bottom:779.880000pt;}
.yb_c00274{bottom:808.676480pt;}
.ya_c00274{bottom:824.040000pt;}
.y9_c00274{bottom:853.160000pt;}
.y8_c00274{bottom:872.360000pt;}
.y7_c00274{bottom:888.040000pt;}
.y6_c00274{bottom:903.720000pt;}
.y5_c00274{bottom:919.080000pt;}
.y4_c00274{bottom:934.759867pt;}
.y3_c00274{bottom:964.520000pt;}
.y2_c00274{bottom:1012.200000pt;}
.ha_c00274{height:17.116000pt;}
.h9_c00274{height:28.992000pt;}
.h6_c00274{height:34.978125pt;}
.hb_c00274{height:41.173333pt;}
.h5_c00274{height:41.761453pt;}
.h4_c00274{height:47.546880pt;}
.h7_c00274{height:50.928601pt;}
.h3_c00274{height:57.984000pt;}
.h8_c00274{height:60.510720pt;}
.h2_c00274{height:1067.880000pt;}
.h0_c00274{height:1122.520000pt;}
.h1_c00274{height:1122.666667pt;}
.w7_c00274{width:22.240000pt;}
.w3_c00274{width:35.200000pt;}
.w5_c00274{width:103.360000pt;}
.w4_c00274{width:112.640000pt;}
.w6_c00274{width:322.240000pt;}
.w2_c00274{width:767.960000pt;}
.w0_c00274{width:793.720000pt;}
.w1_c00274{width:794.000000pt;}
.x0_c00274{left:0.000000pt;}
.x4_c00274{left:7.040133pt;}
.x1_c00274{left:12.880000pt;}
.x6_c00274{left:33.386000pt;}
.x7_c00274{left:36.719333pt;}
.x2_c00274{left:100.480133pt;}
.x3_c00274{left:106.320000pt;}
.xe_c00274{left:118.252933pt;}
.x5_c00274{left:142.160000pt;}
.x8_c00274{left:255.440000pt;}
.xa_c00274{left:287.106933pt;}
.xb_c00274{left:315.253067pt;}
.x9_c00274{left:359.440000pt;}
.xf_c00274{left:373.594400pt;}
.xc_c00274{left:382.603467pt;}
.x11_c00274{left:390.666000pt;}
.xd_c00274{left:410.749733pt;}
.x10_c00274{left:425.145467pt;}
.x12_c00274{left:442.505600pt;}
.x13_c00274{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_452dd6792d36eaedeea9196e.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;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_c00275;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:0.787000;font-style:normal;font-weight:normal;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_99e176ebd2b3b4db1cd4299d.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:0.787000;font-style: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;}
.ls4_c00275{letter-spacing:0.000000px;}
.ls5_c00275{letter-spacing:0.202464px;}
.ls3_c00275{letter-spacing:0.399600px;}
.ls1_c00275{letter-spacing:4.760880px;}
.ls6_c00275{letter-spacing:5.077584px;}
.ls2_c00275{letter-spacing:5.080440px;}
.ls0_c00275{letter-spacing:5.976000px;}
.sc__c00275{text-shadow:none;}
.sc1_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00275{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc1_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00275{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00275{word-spacing:-15.211440px;}
.ws1_c00275{word-spacing:0.000000px;}
._1_c00275{margin-left:-1.118880px;}
._0_c00275{width:1.120680px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs1_c00275{font-size:53.280000px;}
.fs2_c00275{font-size:60.000000px;}
.fs0_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y19_c00275{bottom:3.120150px;}
.y17_c00275{bottom:18.360000px;}
.y16_c00275{bottom:34.560000px;}
.y18_c00275{bottom:34.744500px;}
.y1_c00275{bottom:54.000000px;}
.y14_c00275{bottom:409.725000px;}
.y13_c00275{bottom:445.725000px;}
.y12_c00275{bottom:481.725000px;}
.y15_c00275{bottom:562.365000px;}
.y11_c00275{bottom:581.085000px;}
.y10_c00275{bottom:617.085000px;}
.yf_c00275{bottom:653.085000px;}
.ye_c00275{bottom:689.085000px;}
.yd_c00275{bottom:725.085000px;}
.yc_c00275{bottom:761.085000px;}
.yb_c00275{bottom:797.085000px;}
.ya_c00275{bottom:833.085000px;}
.y9_c00275{bottom:869.085000px;}
.y8_c00275{bottom:905.085000px;}
.y7_c00275{bottom:941.085000px;}
.y6_c00275{bottom:977.085000px;}
.y5_c00275{bottom:1013.085000px;}
.y4_c00275{bottom:1049.085000px;}
.y3_c00275{bottom:1085.085000px;}
.y2_c00275{bottom:1138.725000px;}
.h6_c00275{height:19.255500px;}
.h5_c00275{height:41.132160px;}
.h7_c00275{height:46.320000px;}
.h4_c00275{height:47.160000px;}
.h3_c00275{height:55.584000px;}
.h2_c00275{height:1201.365000px;}
.h0_c00275{height:1262.835000px;}
.h1_c00275{height:1263.000000px;}
.w4_c00275{width:25.020000px;}
.w3_c00275{width:666.720000px;}
.w2_c00275{width:863.955000px;}
.w0_c00275{width:892.935000px;}
.w1_c00275{width:893.250000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:14.490000px;}
.x5_c00275{left:82.576500px;}
.x2_c00275{left:113.040150px;}
.x3_c00275{left:124.290000px;}
.x4_c00275{left:194.624250px;}
.x6_c00275{left:759.915000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls4_c00275{letter-spacing:0.000000pt;}
.ls5_c00275{letter-spacing:0.179968pt;}
.ls3_c00275{letter-spacing:0.355200pt;}
.ls1_c00275{letter-spacing:4.231893pt;}
.ls6_c00275{letter-spacing:4.513408pt;}
.ls2_c00275{letter-spacing:4.515947pt;}
.ls0_c00275{letter-spacing:5.312000pt;}
.ws0_c00275{word-spacing:-13.521280pt;}
.ws1_c00275{word-spacing:0.000000pt;}
._1_c00275{margin-left:-0.994560pt;}
._0_c00275{width:0.996160pt;}
.fs1_c00275{font-size:47.360000pt;}
.fs2_c00275{font-size:53.333333pt;}
.fs0_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y19_c00275{bottom:2.773467pt;}
.y17_c00275{bottom:16.320000pt;}
.y16_c00275{bottom:30.720000pt;}
.y18_c00275{bottom:30.884000pt;}
.y1_c00275{bottom:48.000000pt;}
.y14_c00275{bottom:364.200000pt;}
.y13_c00275{bottom:396.200000pt;}
.y12_c00275{bottom:428.200000pt;}
.y15_c00275{bottom:499.880000pt;}
.y11_c00275{bottom:516.520000pt;}
.y10_c00275{bottom:548.520000pt;}
.yf_c00275{bottom:580.520000pt;}
.ye_c00275{bottom:612.520000pt;}
.yd_c00275{bottom:644.520000pt;}
.yc_c00275{bottom:676.520000pt;}
.yb_c00275{bottom:708.520000pt;}
.ya_c00275{bottom:740.520000pt;}
.y9_c00275{bottom:772.520000pt;}
.y8_c00275{bottom:804.520000pt;}
.y7_c00275{bottom:836.520000pt;}
.y6_c00275{bottom:868.520000pt;}
.y5_c00275{bottom:900.520000pt;}
.y4_c00275{bottom:932.520000pt;}
.y3_c00275{bottom:964.520000pt;}
.y2_c00275{bottom:1012.200000pt;}
.h6_c00275{height:17.116000pt;}
.h5_c00275{height:36.561920pt;}
.h7_c00275{height:41.173333pt;}
.h4_c00275{height:41.920000pt;}
.h3_c00275{height:49.408000pt;}
.h2_c00275{height:1067.880000pt;}
.h0_c00275{height:1122.520000pt;}
.h1_c00275{height:1122.666667pt;}
.w4_c00275{width:22.240000pt;}
.w3_c00275{width:592.640000pt;}
.w2_c00275{width:767.960000pt;}
.w0_c00275{width:793.720000pt;}
.w1_c00275{width:794.000000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:12.880000pt;}
.x5_c00275{left:73.401333pt;}
.x2_c00275{left:100.480133pt;}
.x3_c00275{left:110.480000pt;}
.x4_c00275{left:172.999333pt;}
.x6_c00275{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb08089a5339f5e185c742ca.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.134000;font-style:normal;font-weight:normal;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_262132e8862b2677e7e782a1.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;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:ff3_c00276;src:url('chunks/assets/font_dd66c1129e482eecb48ebb97.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:0.787000;font-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_c00276{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00276{vertical-align:-24.480000px;}
.v0_c00276{vertical-align:0.000000px;}
.v1_c00276{vertical-align:30.240000px;}
.lsc_c00276{letter-spacing:0.000000px;}
.lsb_c00276{letter-spacing:0.265680px;}
.ls6_c00276{letter-spacing:0.295200px;}
.ls19_c00276{letter-spacing:0.318816px;}
.ls8_c00276{letter-spacing:0.328628px;}
.ls14_c00276{letter-spacing:0.371952px;}
.ls12_c00276{letter-spacing:0.425088px;}
.ls13_c00276{letter-spacing:0.438171px;}
.ls16_c00276{letter-spacing:0.478224px;}
.ls4_c00276{letter-spacing:0.487440px;}
.ls5_c00276{letter-spacing:0.513840px;}
.ls7_c00276{letter-spacing:0.531360px;}
.ls1c_c00276{letter-spacing:0.547713px;}
.ls17_c00276{letter-spacing:0.657256px;}
.ls3_c00276{letter-spacing:0.675240px;}
.lsa_c00276{letter-spacing:0.712027px;}
.ls1b_c00276{letter-spacing:0.766799px;}
.ls1a_c00276{letter-spacing:0.797040px;}
.ls9_c00276{letter-spacing:0.956448px;}
.ls11_c00276{letter-spacing:0.962352px;}
.lsf_c00276{letter-spacing:5.335200px;}
.lse_c00276{letter-spacing:5.430672px;}
.ls1_c00276{letter-spacing:5.499398px;}
.ls18_c00276{letter-spacing:5.514336px;}
.lsd_c00276{letter-spacing:5.597809px;}
.ls2_c00276{letter-spacing:5.976000px;}
.ls0_c00276{letter-spacing:6.159920px;}
.ls1d_c00276{letter-spacing:6.600672px;}
.ls15_c00276{letter-spacing:13.744512px;}
.ls10_c00276{letter-spacing:21.159936px;}
.sc__c00276{text-shadow:none;}
.sc1_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00276{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc1_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00276{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00276{word-spacing:-25.992000px;}
.ws0_c00276{word-spacing:-21.690785px;}
.ws2_c00276{word-spacing:-21.592374px;}
.ws4_c00276{word-spacing:-20.947680px;}
.ws1_c00276{word-spacing:-20.632021px;}
.ws5_c00276{word-spacing:-20.016000px;}
.ws9_c00276{word-spacing:-17.630284px;}
.ws8_c00276{word-spacing:-17.246885px;}
.ws7_c00276{word-spacing:-16.944480px;}
.ws6_c00276{word-spacing:-10.008000px;}
.wsa_c00276{word-spacing:0.000000px;}
._c_c00276{margin-left:-21.490560px;}
._b_c00276{margin-left:-20.486880px;}
._d_c00276{margin-left:-19.424160px;}
._11_c00276{margin-left:-14.228640px;}
._10_c00276{margin-left:-13.165920px;}
._15_c00276{margin-left:-7.304258px;}
._14_c00276{margin-left:-6.126792px;}
._16_c00276{margin-left:-5.090808px;}
._1_c00276{margin-left:-1.406688px;}
._f_c00276{width:1.633296px;}
._8_c00276{width:2.736000px;}
._5_c00276{width:3.816000px;}
._7_c00276{width:4.834056px;}
._0_c00276{width:5.965944px;}
._2_c00276{width:7.632000px;}
._6_c00276{width:8.712000px;}
._3_c00276{width:10.660800px;}
._4_c00276{width:11.726400px;}
._e_c00276{width:13.461120px;}
._9_c00276{width:17.208000px;}
._12_c00276{width:19.049376px;}
._13_c00276{width:20.705520px;}
._a_c00276{width:57.168000px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs5_c00276{font-size:36.000000px;}
.fs4_c00276{font-size:41.760000px;}
.fs3_c00276{font-size:56.160000px;}
.fs2_c00276{font-size:57.888403px;}
.fs6_c00276{font-size:59.040000px;}
.fs8_c00276{font-size:60.000000px;}
.fs7_c00276{font-size:60.857039px;}
.fs0_c00276{font-size:72.000000px;}
.fs1_c00276{font-size:74.215901px;}
.y0_c00276{bottom:0.000000px;}
.y3c_c00276{bottom:3.120150px;}
.y3b_c00276{bottom:34.744500px;}
.y1_c00276{bottom:54.000000px;}
.y39_c00276{bottom:55.481040px;}
.y3a_c00276{bottom:55.485000px;}
.y38_c00276{bottom:72.765000px;}
.y37_c00276{bottom:72.766800px;}
.y35_c00276{bottom:90.401040px;}
.y36_c00276{bottom:90.405000px;}
.y34_c00276{bottom:113.805000px;}
.y33_c00276{bottom:125.322840px;}
.y32_c00276{bottom:142.961040px;}
.y31_c00276{bottom:160.245000px;}
.y30_c00276{bottom:160.248600px;}
.y2f_c00276{bottom:177.886800px;}
.y2e_c00276{bottom:201.645000px;}
.y2d_c00276{bottom:212.806800px;}
.y2b_c00276{bottom:230.441040px;}
.y2c_c00276{bottom:230.445000px;}
.y2a_c00276{bottom:247.725000px;}
.y29_c00276{bottom:247.726800px;}
.y28_c00276{bottom:265.365000px;}
.y27_c00276{bottom:265.366800px;}
.y25_c00276{bottom:283.001040px;}
.y26_c00276{bottom:283.005000px;}
.y24_c00276{bottom:306.405000px;}
.y23_c00276{bottom:317.922840px;}
.y22_c00276{bottom:335.561040px;}
.y20_c00276{bottom:352.842840px;}
.y21_c00276{bottom:352.845000px;}
.y1f_c00276{bottom:370.481040px;}
.y1e_c00276{bottom:393.885000px;}
.y1d_c00276{bottom:420.525000px;}
.y1c_c00276{bottom:465.525000px;}
.y1b_c00276{bottom:486.405000px;}
.y1a_c00276{bottom:522.405000px;}
.y19_c00276{bottom:560.565000px;}
.y18_c00276{bottom:598.725000px;}
.y17_c00276{bottom:634.725000px;}
.y16_c00276{bottom:655.965000px;}
.y15_c00276{bottom:676.845000px;}
.y14_c00276{bottom:697.725000px;}
.y13_c00276{bottom:718.965000px;}
.y12_c00276{bottom:739.845000px;}
.y11_c00276{bottom:761.085000px;}
.y10_c00276{bottom:781.965000px;}
.yf_c00276{bottom:817.965000px;}
.ye_c00276{bottom:838.845000px;}
.yd_c00276{bottom:860.085000px;}
.yc_c00276{bottom:880.965000px;}
.yb_c00276{bottom:901.845000px;}
.ya_c00276{bottom:923.085000px;}
.y9_c00276{bottom:943.965000px;}
.y8_c00276{bottom:964.845000px;}
.y7_c00276{bottom:986.085000px;}
.y6_c00276{bottom:1006.965000px;}
.y5_c00276{bottom:1027.845000px;}
.y4_c00276{bottom:1049.085000px;}
.y3_c00276{bottom:1085.085000px;}
.y2_c00276{bottom:1138.365000px;}
.h9_c00276{height:19.255500px;}
.h6_c00276{height:32.616000px;}
.ha_c00276{height:46.320000px;}
.h8_c00276{height:46.981634px;}
.h7_c00276{height:53.490240px;}
.h4_c00276{height:57.294676px;}
.h3_c00276{height:65.232000px;}
.h5_c00276{height:68.074560px;}
.h2_c00276{height:1201.365000px;}
.h0_c00276{height:1262.835000px;}
.h1_c00276{height:1263.000000px;}
.w3_c00276{width:25.020000px;}
.w2_c00276{width:863.955000px;}
.w0_c00276{width:892.935000px;}
.w1_c00276{width:893.250000px;}
.x0_c00276{left:0.000000px;}
.x1_c00276{left:14.490000px;}
.x2_c00276{left:113.040150px;}
.x15_c00276{left:136.043700px;}
.x3_c00276{left:154.043700px;}
.x6_c00276{left:201.004800px;}
.x16_c00276{left:224.008350px;}
.xa_c00276{left:229.624200px;}
.x5_c00276{left:239.357700px;}
.x17_c00276{left:251.716500px;}
.xf_c00276{left:262.251750px;}
.x4_c00276{left:268.935750px;}
.x18_c00276{left:275.162100px;}
.xb_c00276{left:299.607450px;}
.xc_c00276{left:300.700950px;}
.x11_c00276{left:316.077450px;}
.x10_c00276{left:332.235000px;}
.x1e_c00276{left:359.649900px;}
.xd_c00276{left:399.201750px;}
.x1f_c00276{left:409.628850px;}
.x14_c00276{left:414.462150px;}
.x12_c00276{left:425.101650px;}
.x7_c00276{left:431.598300px;}
.x1c_c00276{left:473.050350px;}
.x20_c00276{left:479.631600px;}
.x1d_c00276{left:512.951250px;}
.x8_c00276{left:522.605400px;}
.x13_c00276{left:616.115550px;}
.xe_c00276{left:621.865800px;}
.x1b_c00276{left:699.155250px;}
.x19_c00276{left:720.218700px;}
.x9_c00276{left:729.402450px;}
.x1a_c00276{left:737.707800px;}
.x21_c00276{left:759.915000px;}
@media print{
.v2_c00276{vertical-align:-21.760000pt;}
.v0_c00276{vertical-align:0.000000pt;}
.v1_c00276{vertical-align:26.880000pt;}
.lsc_c00276{letter-spacing:0.000000pt;}
.lsb_c00276{letter-spacing:0.236160pt;}
.ls6_c00276{letter-spacing:0.262400pt;}
.ls19_c00276{letter-spacing:0.283392pt;}
.ls8_c00276{letter-spacing:0.292114pt;}
.ls14_c00276{letter-spacing:0.330624pt;}
.ls12_c00276{letter-spacing:0.377856pt;}
.ls13_c00276{letter-spacing:0.389485pt;}
.ls16_c00276{letter-spacing:0.425088pt;}
.ls4_c00276{letter-spacing:0.433280pt;}
.ls5_c00276{letter-spacing:0.456747pt;}
.ls7_c00276{letter-spacing:0.472320pt;}
.ls1c_c00276{letter-spacing:0.486856pt;}
.ls17_c00276{letter-spacing:0.584228pt;}
.ls3_c00276{letter-spacing:0.600213pt;}
.lsa_c00276{letter-spacing:0.632913pt;}
.ls1b_c00276{letter-spacing:0.681599pt;}
.ls1a_c00276{letter-spacing:0.708480pt;}
.ls9_c00276{letter-spacing:0.850176pt;}
.ls11_c00276{letter-spacing:0.855424pt;}
.lsf_c00276{letter-spacing:4.742400pt;}
.lse_c00276{letter-spacing:4.827264pt;}
.ls1_c00276{letter-spacing:4.888354pt;}
.ls18_c00276{letter-spacing:4.901632pt;}
.lsd_c00276{letter-spacing:4.975830pt;}
.ls2_c00276{letter-spacing:5.312000pt;}
.ls0_c00276{letter-spacing:5.475484pt;}
.ls1d_c00276{letter-spacing:5.867264pt;}
.ls15_c00276{letter-spacing:12.217344pt;}
.ls10_c00276{letter-spacing:18.808832pt;}
.ws3_c00276{word-spacing:-23.104000pt;}
.ws0_c00276{word-spacing:-19.280697pt;}
.ws2_c00276{word-spacing:-19.193222pt;}
.ws4_c00276{word-spacing:-18.620160pt;}
.ws1_c00276{word-spacing:-18.339574pt;}
.ws5_c00276{word-spacing:-17.792000pt;}
.ws9_c00276{word-spacing:-15.671364pt;}
.ws8_c00276{word-spacing:-15.330564pt;}
.ws7_c00276{word-spacing:-15.061760pt;}
.ws6_c00276{word-spacing:-8.896000pt;}
.wsa_c00276{word-spacing:0.000000pt;}
._c_c00276{margin-left:-19.102720pt;}
._b_c00276{margin-left:-18.210560pt;}
._d_c00276{margin-left:-17.265920pt;}
._11_c00276{margin-left:-12.647680pt;}
._10_c00276{margin-left:-11.703040pt;}
._15_c00276{margin-left:-6.492674pt;}
._14_c00276{margin-left:-5.446037pt;}
._16_c00276{margin-left:-4.525163pt;}
._1_c00276{margin-left:-1.250389pt;}
._f_c00276{width:1.451819pt;}
._8_c00276{width:2.432000pt;}
._5_c00276{width:3.392000pt;}
._7_c00276{width:4.296939pt;}
._0_c00276{width:5.303061pt;}
._2_c00276{width:6.784000pt;}
._6_c00276{width:7.744000pt;}
._3_c00276{width:9.476267pt;}
._4_c00276{width:10.423467pt;}
._e_c00276{width:11.965440pt;}
._9_c00276{width:15.296000pt;}
._12_c00276{width:16.932779pt;}
._13_c00276{width:18.404907pt;}
._a_c00276{width:50.816000pt;}
.fs5_c00276{font-size:32.000000pt;}
.fs4_c00276{font-size:37.120000pt;}
.fs3_c00276{font-size:49.920000pt;}
.fs2_c00276{font-size:51.456358pt;}
.fs6_c00276{font-size:52.480000pt;}
.fs8_c00276{font-size:53.333333pt;}
.fs7_c00276{font-size:54.095146pt;}
.fs0_c00276{font-size:64.000000pt;}
.fs1_c00276{font-size:65.969690pt;}
.y0_c00276{bottom:0.000000pt;}
.y3c_c00276{bottom:2.773467pt;}
.y3b_c00276{bottom:30.884000pt;}
.y1_c00276{bottom:48.000000pt;}
.y39_c00276{bottom:49.316480pt;}
.y3a_c00276{bottom:49.320000pt;}
.y38_c00276{bottom:64.680000pt;}
.y37_c00276{bottom:64.681600pt;}
.y35_c00276{bottom:80.356480pt;}
.y36_c00276{bottom:80.360000pt;}
.y34_c00276{bottom:101.160000pt;}
.y33_c00276{bottom:111.398080pt;}
.y32_c00276{bottom:127.076480pt;}
.y31_c00276{bottom:142.440000pt;}
.y30_c00276{bottom:142.443200pt;}
.y2f_c00276{bottom:158.121600pt;}
.y2e_c00276{bottom:179.240000pt;}
.y2d_c00276{bottom:189.161600pt;}
.y2b_c00276{bottom:204.836480pt;}
.y2c_c00276{bottom:204.840000pt;}
.y2a_c00276{bottom:220.200000pt;}
.y29_c00276{bottom:220.201600pt;}
.y28_c00276{bottom:235.880000pt;}
.y27_c00276{bottom:235.881600pt;}
.y25_c00276{bottom:251.556480pt;}
.y26_c00276{bottom:251.560000pt;}
.y24_c00276{bottom:272.360000pt;}
.y23_c00276{bottom:282.598080pt;}
.y22_c00276{bottom:298.276480pt;}
.y20_c00276{bottom:313.638080pt;}
.y21_c00276{bottom:313.640000pt;}
.y1f_c00276{bottom:329.316480pt;}
.y1e_c00276{bottom:350.120000pt;}
.y1d_c00276{bottom:373.800000pt;}
.y1c_c00276{bottom:413.800000pt;}
.y1b_c00276{bottom:432.360000pt;}
.y1a_c00276{bottom:464.360000pt;}
.y19_c00276{bottom:498.280000pt;}
.y18_c00276{bottom:532.200000pt;}
.y17_c00276{bottom:564.200000pt;}
.y16_c00276{bottom:583.080000pt;}
.y15_c00276{bottom:601.640000pt;}
.y14_c00276{bottom:620.200000pt;}
.y13_c00276{bottom:639.080000pt;}
.y12_c00276{bottom:657.640000pt;}
.y11_c00276{bottom:676.520000pt;}
.y10_c00276{bottom:695.080000pt;}
.yf_c00276{bottom:727.080000pt;}
.ye_c00276{bottom:745.640000pt;}
.yd_c00276{bottom:764.520000pt;}
.yc_c00276{bottom:783.080000pt;}
.yb_c00276{bottom:801.640000pt;}
.ya_c00276{bottom:820.520000pt;}
.y9_c00276{bottom:839.080000pt;}
.y8_c00276{bottom:857.640000pt;}
.y7_c00276{bottom:876.520000pt;}
.y6_c00276{bottom:895.080000pt;}
.y5_c00276{bottom:913.640000pt;}
.y4_c00276{bottom:932.520000pt;}
.y3_c00276{bottom:964.520000pt;}
.y2_c00276{bottom:1011.880000pt;}
.h9_c00276{height:17.116000pt;}
.h6_c00276{height:28.992000pt;}
.ha_c00276{height:41.173333pt;}
.h8_c00276{height:41.761453pt;}
.h7_c00276{height:47.546880pt;}
.h4_c00276{height:50.928601pt;}
.h3_c00276{height:57.984000pt;}
.h5_c00276{height:60.510720pt;}
.h2_c00276{height:1067.880000pt;}
.h0_c00276{height:1122.520000pt;}
.h1_c00276{height:1122.666667pt;}
.w3_c00276{width:22.240000pt;}
.w2_c00276{width:767.960000pt;}
.w0_c00276{width:793.720000pt;}
.w1_c00276{width:794.000000pt;}
.x0_c00276{left:0.000000pt;}
.x1_c00276{left:12.880000pt;}
.x2_c00276{left:100.480133pt;}
.x15_c00276{left:120.927733pt;}
.x3_c00276{left:136.927733pt;}
.x6_c00276{left:178.670933pt;}
.x16_c00276{left:199.118533pt;}
.xa_c00276{left:204.110400pt;}
.x5_c00276{left:212.762400pt;}
.x17_c00276{left:223.748000pt;}
.xf_c00276{left:233.112667pt;}
.x4_c00276{left:239.054000pt;}
.x18_c00276{left:244.588533pt;}
.xb_c00276{left:266.317733pt;}
.xc_c00276{left:267.289733pt;}
.x11_c00276{left:280.957733pt;}
.x10_c00276{left:295.320000pt;}
.x1e_c00276{left:319.688800pt;}
.xd_c00276{left:354.846000pt;}
.x1f_c00276{left:364.114533pt;}
.x14_c00276{left:368.410800pt;}
.x12_c00276{left:377.868133pt;}
.x7_c00276{left:383.642933pt;}
.x1c_c00276{left:420.489200pt;}
.x20_c00276{left:426.339200pt;}
.x1d_c00276{left:455.956667pt;}
.x8_c00276{left:464.538133pt;}
.x13_c00276{left:547.658267pt;}
.xe_c00276{left:552.769600pt;}
.x1b_c00276{left:621.471333pt;}
.x19_c00276{left:640.194400pt;}
.x9_c00276{left:648.357733pt;}
.x1a_c00276{left:655.740267pt;}
.x21_c00276{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_657eaf61f0a1b014080bd55f.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.134000;font-style:normal;font-weight:normal;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_b1ec0177fd3378fd04b978e8.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;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:ff3_c00277;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_4264169c49d20f45883304bc.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:0.787000;font-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_c00277{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00277{vertical-align:-24.480000px;}
.v0_c00277{vertical-align:0.000000px;}
.v1_c00277{vertical-align:30.240000px;}
.ls7_c00277{letter-spacing:0.000000px;}
.ls3_c00277{letter-spacing:0.236160px;}
.ls4_c00277{letter-spacing:0.265680px;}
.ls10_c00277{letter-spacing:0.371952px;}
.lsc_c00277{letter-spacing:0.425088px;}
.lse_c00277{letter-spacing:0.478224px;}
.ls1_c00277{letter-spacing:0.498240px;}
.lsd_c00277{letter-spacing:0.531360px;}
.lsb_c00277{letter-spacing:0.547713px;}
.ls5_c00277{letter-spacing:0.712027px;}
.lsa_c00277{letter-spacing:0.766799px;}
.ls9_c00277{letter-spacing:0.797040px;}
.lsf_c00277{letter-spacing:0.962352px;}
.ls11_c00277{letter-spacing:5.106960px;}
.ls8_c00277{letter-spacing:5.430672px;}
.ls6_c00277{letter-spacing:5.976000px;}
.ls2_c00277{letter-spacing:5.991000px;}
.ls0_c00277{letter-spacing:6.159920px;}
.ls12_c00277{letter-spacing:13.130496px;}
.sc__c00277{text-shadow:none;}
.sc1_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00277{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc1_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00277{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00277{word-spacing:-21.043152px;}
.ws0_c00277{word-spacing:-20.016000px;}
.ws6_c00277{word-spacing:-17.630284px;}
.ws4_c00277{word-spacing:-17.375472px;}
.ws5_c00277{word-spacing:-16.785072px;}
.ws2_c00277{word-spacing:-11.609280px;}
.ws3_c00277{word-spacing:-10.008000px;}
.ws7_c00277{word-spacing:0.000000px;}
._13_c00277{margin-left:-12.990672px;}
._14_c00277{margin-left:-11.924208px;}
._12_c00277{margin-left:-5.608800px;}
._11_c00277{margin-left:-4.428000px;}
._e_c00277{margin-left:-1.121760px;}
._1_c00277{width:1.152000px;}
._3_c00277{width:2.160000px;}
._2_c00277{width:3.744000px;}
._8_c00277{width:4.824000px;}
._9_c00277{width:6.048000px;}
._0_c00277{width:7.776000px;}
._5_c00277{width:9.648000px;}
._a_c00277{width:11.232000px;}
._b_c00277{width:15.408000px;}
._4_c00277{width:16.920000px;}
._6_c00277{width:18.000000px;}
._f_c00277{width:19.327680px;}
._10_c00277{width:20.463840px;}
._c_c00277{width:25.920000px;}
._16_c00277{width:29.697120px;}
._15_c00277{width:30.759840px;}
._d_c00277{width:37.656000px;}
._7_c00277{width:57.168000px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs6_c00277{font-size:36.000000px;}
.fs2_c00277{font-size:41.760000px;}
.fs3_c00277{font-size:56.160000px;}
.fs4_c00277{font-size:59.040000px;}
.fs7_c00277{font-size:60.000000px;}
.fs5_c00277{font-size:60.857039px;}
.fs0_c00277{font-size:72.000000px;}
.fs1_c00277{font-size:74.215901px;}
.y0_c00277{bottom:0.000000px;}
.y30_c00277{bottom:3.120150px;}
.y2f_c00277{bottom:34.744500px;}
.y1_c00277{bottom:54.000000px;}
.y2e_c00277{bottom:55.478880px;}
.y2d_c00277{bottom:72.762840px;}
.y2c_c00277{bottom:90.401040px;}
.y2b_c00277{bottom:107.685000px;}
.y2a_c00277{bottom:113.805000px;}
.y29_c00277{bottom:131.445000px;}
.y28_c00277{bottom:142.961040px;}
.y27_c00277{bottom:160.245000px;}
.y26_c00277{bottom:193.005000px;}
.y25_c00277{bottom:277.605000px;}
.y24_c00277{bottom:298.485000px;}
.y23_c00277{bottom:334.485000px;}
.y22_c00277{bottom:370.485000px;}
.y21_c00277{bottom:406.485000px;}
.y20_c00277{bottom:442.485000px;}
.y1f_c00277{bottom:463.725000px;}
.y1e_c00277{bottom:484.605000px;}
.y1d_c00277{bottom:507.645000px;}
.y1c_c00277{bottom:528.165000px;}
.y1b_c00277{bottom:551.205000px;}
.y1a_c00277{bottom:571.725000px;}
.y19_c00277{bottom:592.965000px;}
.y18_c00277{bottom:613.845000px;}
.y17_c00277{bottom:634.725000px;}
.y16_c00277{bottom:655.965000px;}
.y15_c00277{bottom:691.965000px;}
.y14_c00277{bottom:712.845000px;}
.y13_c00277{bottom:734.085000px;}
.y12_c00277{bottom:754.965000px;}
.y11_c00277{bottom:775.845000px;}
.y10_c00277{bottom:797.085000px;}
.yf_c00277{bottom:817.965000px;}
.ye_c00277{bottom:838.845000px;}
.yd_c00277{bottom:874.845000px;}
.yc_c00277{bottom:896.085000px;}
.yb_c00277{bottom:916.965000px;}
.ya_c00277{bottom:937.845000px;}
.y9_c00277{bottom:959.085000px;}
.y8_c00277{bottom:979.965000px;}
.y7_c00277{bottom:1000.845000px;}
.y6_c00277{bottom:1022.085000px;}
.y5_c00277{bottom:1042.965000px;}
.y4_c00277{bottom:1063.845000px;}
.y3_c00277{bottom:1085.085000px;}
.y2_c00277{bottom:1138.365000px;}
.h9_c00277{height:19.255500px;}
.h8_c00277{height:32.616000px;}
.ha_c00277{height:46.320000px;}
.h7_c00277{height:46.981634px;}
.h6_c00277{height:53.490240px;}
.h4_c00277{height:57.294676px;}
.h3_c00277{height:65.232000px;}
.h5_c00277{height:68.074560px;}
.h2_c00277{height:1201.365000px;}
.h0_c00277{height:1262.835000px;}
.h1_c00277{height:1263.000000px;}
.w3_c00277{width:25.020000px;}
.w2_c00277{width:863.955000px;}
.w0_c00277{width:892.935000px;}
.w1_c00277{width:893.250000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:14.490000px;}
.x2_c00277{left:113.040150px;}
.x5_c00277{left:140.974050px;}
.x3_c00277{left:154.043700px;}
.x9_c00277{left:229.624200px;}
.xe_c00277{left:262.251750px;}
.x4_c00277{left:268.935750px;}
.xa_c00277{left:299.607450px;}
.xb_c00277{left:300.700950px;}
.x10_c00277{left:316.077450px;}
.x13_c00277{left:319.047000px;}
.xf_c00277{left:332.235000px;}
.x14_c00277{left:348.044250px;}
.x15_c00277{left:359.649900px;}
.xc_c00277{left:399.201750px;}
.x16_c00277{left:409.628850px;}
.x17_c00277{left:414.623700px;}
.x11_c00277{left:425.101650px;}
.x6_c00277{left:431.598300px;}
.x18_c00277{left:479.631600px;}
.x7_c00277{left:522.605400px;}
.x19_c00277{left:556.358700px;}
.x1a_c00277{left:591.353100px;}
.x12_c00277{left:616.115550px;}
.xd_c00277{left:621.865800px;}
.x8_c00277{left:729.402450px;}
.x1b_c00277{left:759.915000px;}
@media print{
.v2_c00277{vertical-align:-21.760000pt;}
.v0_c00277{vertical-align:0.000000pt;}
.v1_c00277{vertical-align:26.880000pt;}
.ls7_c00277{letter-spacing:0.000000pt;}
.ls3_c00277{letter-spacing:0.209920pt;}
.ls4_c00277{letter-spacing:0.236160pt;}
.ls10_c00277{letter-spacing:0.330624pt;}
.lsc_c00277{letter-spacing:0.377856pt;}
.lse_c00277{letter-spacing:0.425088pt;}
.ls1_c00277{letter-spacing:0.442880pt;}
.lsd_c00277{letter-spacing:0.472320pt;}
.lsb_c00277{letter-spacing:0.486856pt;}
.ls5_c00277{letter-spacing:0.632913pt;}
.lsa_c00277{letter-spacing:0.681599pt;}
.ls9_c00277{letter-spacing:0.708480pt;}
.lsf_c00277{letter-spacing:0.855424pt;}
.ls11_c00277{letter-spacing:4.539520pt;}
.ls8_c00277{letter-spacing:4.827264pt;}
.ls6_c00277{letter-spacing:5.312000pt;}
.ls2_c00277{letter-spacing:5.325333pt;}
.ls0_c00277{letter-spacing:5.475484pt;}
.ls12_c00277{letter-spacing:11.671552pt;}
.ws1_c00277{word-spacing:-18.705024pt;}
.ws0_c00277{word-spacing:-17.792000pt;}
.ws6_c00277{word-spacing:-15.671364pt;}
.ws4_c00277{word-spacing:-15.444864pt;}
.ws5_c00277{word-spacing:-14.920064pt;}
.ws2_c00277{word-spacing:-10.319360pt;}
.ws3_c00277{word-spacing:-8.896000pt;}
.ws7_c00277{word-spacing:0.000000pt;}
._13_c00277{margin-left:-11.547264pt;}
._14_c00277{margin-left:-10.599296pt;}
._12_c00277{margin-left:-4.985600pt;}
._11_c00277{margin-left:-3.936000pt;}
._e_c00277{margin-left:-0.997120pt;}
._1_c00277{width:1.024000pt;}
._3_c00277{width:1.920000pt;}
._2_c00277{width:3.328000pt;}
._8_c00277{width:4.288000pt;}
._9_c00277{width:5.376000pt;}
._0_c00277{width:6.912000pt;}
._5_c00277{width:8.576000pt;}
._a_c00277{width:9.984000pt;}
._b_c00277{width:13.696000pt;}
._4_c00277{width:15.040000pt;}
._6_c00277{width:16.000000pt;}
._f_c00277{width:17.180160pt;}
._10_c00277{width:18.190080pt;}
._c_c00277{width:23.040000pt;}
._16_c00277{width:26.397440pt;}
._15_c00277{width:27.342080pt;}
._d_c00277{width:33.472000pt;}
._7_c00277{width:50.816000pt;}
.fs6_c00277{font-size:32.000000pt;}
.fs2_c00277{font-size:37.120000pt;}
.fs3_c00277{font-size:49.920000pt;}
.fs4_c00277{font-size:52.480000pt;}
.fs7_c00277{font-size:53.333333pt;}
.fs5_c00277{font-size:54.095146pt;}
.fs0_c00277{font-size:64.000000pt;}
.fs1_c00277{font-size:65.969690pt;}
.y0_c00277{bottom:0.000000pt;}
.y30_c00277{bottom:2.773467pt;}
.y2f_c00277{bottom:30.884000pt;}
.y1_c00277{bottom:48.000000pt;}
.y2e_c00277{bottom:49.314560pt;}
.y2d_c00277{bottom:64.678080pt;}
.y2c_c00277{bottom:80.356480pt;}
.y2b_c00277{bottom:95.720000pt;}
.y2a_c00277{bottom:101.160000pt;}
.y29_c00277{bottom:116.840000pt;}
.y28_c00277{bottom:127.076480pt;}
.y27_c00277{bottom:142.440000pt;}
.y26_c00277{bottom:171.560000pt;}
.y25_c00277{bottom:246.760000pt;}
.y24_c00277{bottom:265.320000pt;}
.y23_c00277{bottom:297.320000pt;}
.y22_c00277{bottom:329.320000pt;}
.y21_c00277{bottom:361.320000pt;}
.y20_c00277{bottom:393.320000pt;}
.y1f_c00277{bottom:412.200000pt;}
.y1e_c00277{bottom:430.760000pt;}
.y1d_c00277{bottom:451.240000pt;}
.y1c_c00277{bottom:469.480000pt;}
.y1b_c00277{bottom:489.960000pt;}
.y1a_c00277{bottom:508.200000pt;}
.y19_c00277{bottom:527.080000pt;}
.y18_c00277{bottom:545.640000pt;}
.y17_c00277{bottom:564.200000pt;}
.y16_c00277{bottom:583.080000pt;}
.y15_c00277{bottom:615.080000pt;}
.y14_c00277{bottom:633.640000pt;}
.y13_c00277{bottom:652.520000pt;}
.y12_c00277{bottom:671.080000pt;}
.y11_c00277{bottom:689.640000pt;}
.y10_c00277{bottom:708.520000pt;}
.yf_c00277{bottom:727.080000pt;}
.ye_c00277{bottom:745.640000pt;}
.yd_c00277{bottom:777.640000pt;}
.yc_c00277{bottom:796.520000pt;}
.yb_c00277{bottom:815.080000pt;}
.ya_c00277{bottom:833.640000pt;}
.y9_c00277{bottom:852.520000pt;}
.y8_c00277{bottom:871.080000pt;}
.y7_c00277{bottom:889.640000pt;}
.y6_c00277{bottom:908.520000pt;}
.y5_c00277{bottom:927.080000pt;}
.y4_c00277{bottom:945.640000pt;}
.y3_c00277{bottom:964.520000pt;}
.y2_c00277{bottom:1011.880000pt;}
.h9_c00277{height:17.116000pt;}
.h8_c00277{height:28.992000pt;}
.ha_c00277{height:41.173333pt;}
.h7_c00277{height:41.761453pt;}
.h6_c00277{height:47.546880pt;}
.h4_c00277{height:50.928601pt;}
.h3_c00277{height:57.984000pt;}
.h5_c00277{height:60.510720pt;}
.h2_c00277{height:1067.880000pt;}
.h0_c00277{height:1122.520000pt;}
.h1_c00277{height:1122.666667pt;}
.w3_c00277{width:22.240000pt;}
.w2_c00277{width:767.960000pt;}
.w0_c00277{width:793.720000pt;}
.w1_c00277{width:794.000000pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:12.880000pt;}
.x2_c00277{left:100.480133pt;}
.x5_c00277{left:125.310267pt;}
.x3_c00277{left:136.927733pt;}
.x9_c00277{left:204.110400pt;}
.xe_c00277{left:233.112667pt;}
.x4_c00277{left:239.054000pt;}
.xa_c00277{left:266.317733pt;}
.xb_c00277{left:267.289733pt;}
.x10_c00277{left:280.957733pt;}
.x13_c00277{left:283.597333pt;}
.xf_c00277{left:295.320000pt;}
.x14_c00277{left:309.372667pt;}
.x15_c00277{left:319.688800pt;}
.xc_c00277{left:354.846000pt;}
.x16_c00277{left:364.114533pt;}
.x17_c00277{left:368.554400pt;}
.x11_c00277{left:377.868133pt;}
.x6_c00277{left:383.642933pt;}
.x18_c00277{left:426.339200pt;}
.x7_c00277{left:464.538133pt;}
.x19_c00277{left:494.541067pt;}
.x1a_c00277{left:525.647200pt;}
.x12_c00277{left:547.658267pt;}
.xd_c00277{left:552.769600pt;}
.x8_c00277{left:648.357733pt;}
.x1b_c00277{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ac77388a28e903d34307e91b.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.134000;font-style:normal;font-weight:normal;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_96925a1a44cc4cc9d36f4410.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;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:ff3_c00278;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00278;src:url('chunks/assets/font_f501e7d3e35d3b60d2ee0819.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:0.787000;font-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_c00278{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00278{vertical-align:-24.480000px;}
.v0_c00278{vertical-align:0.000000px;}
.v1_c00278{vertical-align:30.240000px;}
.lsd_c00278{letter-spacing:-0.179568px;}
.lsb_c00278{letter-spacing:0.000000px;}
.ls3_c00278{letter-spacing:0.125640px;}
.ls14_c00278{letter-spacing:0.144000px;}
.ls4_c00278{letter-spacing:0.208800px;}
.ls10_c00278{letter-spacing:0.265680px;}
.ls9_c00278{letter-spacing:0.295200px;}
.ls1_c00278{letter-spacing:0.305640px;}
.ls12_c00278{letter-spacing:0.425088px;}
.ls8_c00278{letter-spacing:0.513648px;}
.ls11_c00278{letter-spacing:0.531360px;}
.ls7_c00278{letter-spacing:0.712027px;}
.ls2_c00278{letter-spacing:0.797040px;}
.lse_c00278{letter-spacing:5.430672px;}
.ls6_c00278{letter-spacing:5.436840px;}
.lsa_c00278{letter-spacing:5.976000px;}
.ls5_c00278{letter-spacing:5.978400px;}
.ls0_c00278{letter-spacing:6.159920px;}
.lsf_c00278{letter-spacing:10.107648px;}
.lsc_c00278{letter-spacing:15.760800px;}
.ls13_c00278{letter-spacing:25.995312px;}
.sc__c00278{text-shadow:none;}
.sc1_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00278{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc1_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00278{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00278{word-spacing:-21.043152px;}
.ws0_c00278{word-spacing:-20.016000px;}
.ws4_c00278{word-spacing:-17.630284px;}
.ws1_c00278{word-spacing:-11.429712px;}
.ws5_c00278{word-spacing:-10.152000px;}
.ws3_c00278{word-spacing:-10.008000px;}
.ws6_c00278{word-spacing:0.000000px;}
._e_c00278{margin-left:-26.508960px;}
._d_c00278{margin-left:-25.446240px;}
._9_c00278{margin-left:-10.391040px;}
._8_c00278{margin-left:-9.151200px;}
._5_c00278{margin-left:-1.179360px;}
._7_c00278{width:1.080000px;}
._6_c00278{width:5.040000px;}
._4_c00278{width:6.120000px;}
._c_c00278{width:7.322400px;}
._b_c00278{width:8.380800px;}
._a_c00278{width:9.859680px;}
._0_c00278{width:11.520000px;}
._3_c00278{width:14.167800px;}
._1_c00278{width:15.768000px;}
._2_c00278{width:21.744000px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs4_c00278{font-size:36.000000px;}
.fs2_c00278{font-size:41.760000px;}
.fs3_c00278{font-size:56.160000px;}
.fs5_c00278{font-size:59.040000px;}
.fs7_c00278{font-size:60.000000px;}
.fs6_c00278{font-size:60.857039px;}
.fs0_c00278{font-size:72.000000px;}
.fs1_c00278{font-size:74.215901px;}
.y0_c00278{bottom:0.000000px;}
.y28_c00278{bottom:3.120150px;}
.y27_c00278{bottom:34.744500px;}
.y1_c00278{bottom:54.000000px;}
.y26_c00278{bottom:61.605000px;}
.y25_c00278{bottom:72.766800px;}
.y24_c00278{bottom:90.405000px;}
.y23_c00278{bottom:96.525000px;}
.y22_c00278{bottom:113.805000px;}
.y21_c00278{bottom:125.322840px;}
.y20_c00278{bottom:142.961040px;}
.y1f_c00278{bottom:160.245000px;}
.y1e_c00278{bottom:166.365000px;}
.y1d_c00278{bottom:193.005000px;}
.y1c_c00278{bottom:304.965000px;}
.y1b_c00278{bottom:325.845000px;}
.y1a_c00278{bottom:346.725000px;}
.y19_c00278{bottom:367.965000px;}
.y18_c00278{bottom:403.965000px;}
.y17_c00278{bottom:439.965000px;}
.y16_c00278{bottom:475.965000px;}
.y15_c00278{bottom:511.965000px;}
.y14_c00278{bottom:547.965000px;}
.y13_c00278{bottom:583.965000px;}
.y12_c00278{bottom:619.965000px;}
.y11_c00278{bottom:655.965000px;}
.y10_c00278{bottom:691.965000px;}
.yf_c00278{bottom:727.965000px;}
.ye_c00278{bottom:763.965000px;}
.yd_c00278{bottom:799.965000px;}
.yc_c00278{bottom:835.965000px;}
.yb_c00278{bottom:856.845000px;}
.ya_c00278{bottom:892.845000px;}
.y9_c00278{bottom:914.085000px;}
.y8_c00278{bottom:934.965000px;}
.y7_c00278{bottom:955.845000px;}
.y6_c00278{bottom:977.085000px;}
.y5_c00278{bottom:1013.085000px;}
.y4_c00278{bottom:1049.085000px;}
.y3_c00278{bottom:1085.085000px;}
.y2_c00278{bottom:1138.365000px;}
.ha_c00278{height:19.255500px;}
.h7_c00278{height:32.616000px;}
.hb_c00278{height:46.320000px;}
.h8_c00278{height:46.981634px;}
.h5_c00278{height:52.031250px;}
.h9_c00278{height:53.490240px;}
.h4_c00278{height:57.294676px;}
.h3_c00278{height:65.232000px;}
.h6_c00278{height:68.074560px;}
.h2_c00278{height:1201.365000px;}
.h0_c00278{height:1262.835000px;}
.h1_c00278{height:1263.000000px;}
.w3_c00278{width:25.020000px;}
.w2_c00278{width:863.955000px;}
.w0_c00278{width:892.935000px;}
.w1_c00278{width:893.250000px;}
.x0_c00278{left:0.000000px;}
.x1_c00278{left:14.490000px;}
.x2_c00278{left:113.040150px;}
.x11_c00278{left:119.034000px;}
.x15_c00278{left:128.645550px;}
.x5_c00278{left:140.038500px;}
.xd_c00278{left:148.031550px;}
.x8_c00278{left:150.029700px;}
.x3_c00278{left:154.043700px;}
.x10_c00278{left:156.509400px;}
.x6_c00278{left:167.040150px;}
.x12_c00278{left:222.856950px;}
.x7_c00278{left:247.048800px;}
.xf_c00278{left:260.026650px;}
.x4_c00278{left:268.935750px;}
.xe_c00278{left:270.034500px;}
.x9_c00278{left:312.886200px;}
.xa_c00278{left:326.890050px;}
.xb_c00278{left:341.828250px;}
.x13_c00278{left:411.105150px;}
.x14_c00278{left:441.104700px;}
.xc_c00278{left:508.756050px;}
.x16_c00278{left:759.915000px;}
@media print{
.v2_c00278{vertical-align:-21.760000pt;}
.v0_c00278{vertical-align:0.000000pt;}
.v1_c00278{vertical-align:26.880000pt;}
.lsd_c00278{letter-spacing:-0.159616pt;}
.lsb_c00278{letter-spacing:0.000000pt;}
.ls3_c00278{letter-spacing:0.111680pt;}
.ls14_c00278{letter-spacing:0.128000pt;}
.ls4_c00278{letter-spacing:0.185600pt;}
.ls10_c00278{letter-spacing:0.236160pt;}
.ls9_c00278{letter-spacing:0.262400pt;}
.ls1_c00278{letter-spacing:0.271680pt;}
.ls12_c00278{letter-spacing:0.377856pt;}
.ls8_c00278{letter-spacing:0.456576pt;}
.ls11_c00278{letter-spacing:0.472320pt;}
.ls7_c00278{letter-spacing:0.632913pt;}
.ls2_c00278{letter-spacing:0.708480pt;}
.lse_c00278{letter-spacing:4.827264pt;}
.ls6_c00278{letter-spacing:4.832747pt;}
.lsa_c00278{letter-spacing:5.312000pt;}
.ls5_c00278{letter-spacing:5.314133pt;}
.ls0_c00278{letter-spacing:5.475484pt;}
.lsf_c00278{letter-spacing:8.984576pt;}
.lsc_c00278{letter-spacing:14.009600pt;}
.ls13_c00278{letter-spacing:23.106944pt;}
.ws2_c00278{word-spacing:-18.705024pt;}
.ws0_c00278{word-spacing:-17.792000pt;}
.ws4_c00278{word-spacing:-15.671364pt;}
.ws1_c00278{word-spacing:-10.159744pt;}
.ws5_c00278{word-spacing:-9.024000pt;}
.ws3_c00278{word-spacing:-8.896000pt;}
.ws6_c00278{word-spacing:0.000000pt;}
._e_c00278{margin-left:-23.563520pt;}
._d_c00278{margin-left:-22.618880pt;}
._9_c00278{margin-left:-9.236480pt;}
._8_c00278{margin-left:-8.134400pt;}
._5_c00278{margin-left:-1.048320pt;}
._7_c00278{width:0.960000pt;}
._6_c00278{width:4.480000pt;}
._4_c00278{width:5.440000pt;}
._c_c00278{width:6.508800pt;}
._b_c00278{width:7.449600pt;}
._a_c00278{width:8.764160pt;}
._0_c00278{width:10.240000pt;}
._3_c00278{width:12.593600pt;}
._1_c00278{width:14.016000pt;}
._2_c00278{width:19.328000pt;}
.fs4_c00278{font-size:32.000000pt;}
.fs2_c00278{font-size:37.120000pt;}
.fs3_c00278{font-size:49.920000pt;}
.fs5_c00278{font-size:52.480000pt;}
.fs7_c00278{font-size:53.333333pt;}
.fs6_c00278{font-size:54.095146pt;}
.fs0_c00278{font-size:64.000000pt;}
.fs1_c00278{font-size:65.969690pt;}
.y0_c00278{bottom:0.000000pt;}
.y28_c00278{bottom:2.773467pt;}
.y27_c00278{bottom:30.884000pt;}
.y1_c00278{bottom:48.000000pt;}
.y26_c00278{bottom:54.760000pt;}
.y25_c00278{bottom:64.681600pt;}
.y24_c00278{bottom:80.360000pt;}
.y23_c00278{bottom:85.800000pt;}
.y22_c00278{bottom:101.160000pt;}
.y21_c00278{bottom:111.398080pt;}
.y20_c00278{bottom:127.076480pt;}
.y1f_c00278{bottom:142.440000pt;}
.y1e_c00278{bottom:147.880000pt;}
.y1d_c00278{bottom:171.560000pt;}
.y1c_c00278{bottom:271.080000pt;}
.y1b_c00278{bottom:289.640000pt;}
.y1a_c00278{bottom:308.200000pt;}
.y19_c00278{bottom:327.080000pt;}
.y18_c00278{bottom:359.080000pt;}
.y17_c00278{bottom:391.080000pt;}
.y16_c00278{bottom:423.080000pt;}
.y15_c00278{bottom:455.080000pt;}
.y14_c00278{bottom:487.080000pt;}
.y13_c00278{bottom:519.080000pt;}
.y12_c00278{bottom:551.080000pt;}
.y11_c00278{bottom:583.080000pt;}
.y10_c00278{bottom:615.080000pt;}
.yf_c00278{bottom:647.080000pt;}
.ye_c00278{bottom:679.080000pt;}
.yd_c00278{bottom:711.080000pt;}
.yc_c00278{bottom:743.080000pt;}
.yb_c00278{bottom:761.640000pt;}
.ya_c00278{bottom:793.640000pt;}
.y9_c00278{bottom:812.520000pt;}
.y8_c00278{bottom:831.080000pt;}
.y7_c00278{bottom:849.640000pt;}
.y6_c00278{bottom:868.520000pt;}
.y5_c00278{bottom:900.520000pt;}
.y4_c00278{bottom:932.520000pt;}
.y3_c00278{bottom:964.520000pt;}
.y2_c00278{bottom:1011.880000pt;}
.ha_c00278{height:17.116000pt;}
.h7_c00278{height:28.992000pt;}
.hb_c00278{height:41.173333pt;}
.h8_c00278{height:41.761453pt;}
.h5_c00278{height:46.250000pt;}
.h9_c00278{height:47.546880pt;}
.h4_c00278{height:50.928601pt;}
.h3_c00278{height:57.984000pt;}
.h6_c00278{height:60.510720pt;}
.h2_c00278{height:1067.880000pt;}
.h0_c00278{height:1122.520000pt;}
.h1_c00278{height:1122.666667pt;}
.w3_c00278{width:22.240000pt;}
.w2_c00278{width:767.960000pt;}
.w0_c00278{width:793.720000pt;}
.w1_c00278{width:794.000000pt;}
.x0_c00278{left:0.000000pt;}
.x1_c00278{left:12.880000pt;}
.x2_c00278{left:100.480133pt;}
.x11_c00278{left:105.808000pt;}
.x15_c00278{left:114.351600pt;}
.x5_c00278{left:124.478667pt;}
.xd_c00278{left:131.583600pt;}
.x8_c00278{left:133.359733pt;}
.x3_c00278{left:136.927733pt;}
.x10_c00278{left:139.119467pt;}
.x6_c00278{left:148.480133pt;}
.x12_c00278{left:198.095067pt;}
.x7_c00278{left:219.598933pt;}
.xf_c00278{left:231.134800pt;}
.x4_c00278{left:239.054000pt;}
.xe_c00278{left:240.030667pt;}
.x9_c00278{left:278.121067pt;}
.xa_c00278{left:290.568933pt;}
.xb_c00278{left:303.847333pt;}
.x13_c00278{left:365.426800pt;}
.x14_c00278{left:392.093067pt;}
.xc_c00278{left:452.227600pt;}
.x16_c00278{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e29d0fdc1c4edd1e9dfd45e7.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.134000;font-style:normal;font-weight:normal;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_ffa632768113b7ea8fbd4a4e.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;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:ff3_c00279;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00279;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff6_c00279{font-family:ff6_c00279;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00279;src:url('chunks/assets/font_e5d6f85bf20528cafd725e47.woff2')format("woff");}.ff7_c00279{font-family:ff7_c00279;line-height:0.787000;font-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_c00279{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00279{vertical-align:-24.480000px;}
.v0_c00279{vertical-align:0.000000px;}
.v2_c00279{vertical-align:24.480000px;}
.v1_c00279{vertical-align:30.240000px;}
.lsd_c00279{letter-spacing:-0.179568px;}
.lsc_c00279{letter-spacing:0.000000px;}
.ls1b_c00279{letter-spacing:0.144000px;}
.ls11_c00279{letter-spacing:0.265680px;}
.ls21_c00279{letter-spacing:0.273857px;}
.ls6_c00279{letter-spacing:0.318480px;}
.lse_c00279{letter-spacing:0.318816px;}
.lsf_c00279{letter-spacing:0.328628px;}
.ls20_c00279{letter-spacing:0.371952px;}
.ls1e_c00279{letter-spacing:0.425088px;}
.ls10_c00279{letter-spacing:0.492942px;}
.ls8_c00279{letter-spacing:0.513648px;}
.ls4_c00279{letter-spacing:0.531360px;}
.ls5_c00279{letter-spacing:0.572880px;}
.ls18_c00279{letter-spacing:0.584496px;}
.ls12_c00279{letter-spacing:0.602485px;}
.ls17_c00279{letter-spacing:0.690768px;}
.ls7_c00279{letter-spacing:0.712027px;}
.ls13_c00279{letter-spacing:0.766799px;}
.ls2_c00279{letter-spacing:0.771722px;}
.ls1f_c00279{letter-spacing:0.797040px;}
.lsa_c00279{letter-spacing:0.944640px;}
.ls14_c00279{letter-spacing:0.962352px;}
.ls1d_c00279{letter-spacing:1.068624px;}
.ls16_c00279{letter-spacing:5.248656px;}
.ls1a_c00279{letter-spacing:5.301792px;}
.ls9_c00279{letter-spacing:5.352840px;}
.ls3_c00279{letter-spacing:5.353440px;}
.ls15_c00279{letter-spacing:5.514336px;}
.lsb_c00279{letter-spacing:5.976000px;}
.ls0_c00279{letter-spacing:6.159920px;}
.ls22_c00279{letter-spacing:6.305472px;}
.ls19_c00279{letter-spacing:20.622672px;}
.ls1_c00279{letter-spacing:54.864000px;}
.ls1c_c00279{letter-spacing:122.437152px;}
.sc__c00279{text-shadow:none;}
.sc1_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00279{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc1_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00279{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00279{word-spacing:-21.927456px;}
.ws9_c00279{word-spacing:-21.714912px;}
.ws3_c00279{word-spacing:-17.685056px;}
.ws7_c00279{word-spacing:-17.630284px;}
.ws4_c00279{word-spacing:-17.375472px;}
.wsb_c00279{word-spacing:-17.192114px;}
.ws6_c00279{word-spacing:-17.103888px;}
.ws2_c00279{word-spacing:-16.944480px;}
.ws8_c00279{word-spacing:-16.731936px;}
.ws1_c00279{word-spacing:-16.413120px;}
.ws0_c00279{word-spacing:-11.429712px;}
.wsa_c00279{word-spacing:-10.152000px;}
.wsc_c00279{word-spacing:0.000000px;}
._e_c00279{margin-left:-116.901552px;}
._7_c00279{margin-left:-21.023411px;}
._8_c00279{margin-left:-19.171717px;}
._14_c00279{margin-left:-6.907680px;}
._13_c00279{margin-left:-5.844960px;}
._15_c00279{margin-left:-4.841280px;}
._4_c00279{margin-left:-1.095427px;}
._1_c00279{width:1.224000px;}
._0_c00279{width:2.232000px;}
._f_c00279{width:4.320000px;}
._11_c00279{width:5.430440px;}
._12_c00279{width:6.621520px;}
._10_c00279{width:13.047840px;}
._b_c00279{width:14.464800px;}
._c_c00279{width:15.634320px;}
._2_c00279{width:18.072000px;}
._6_c00279{width:19.830840px;}
._9_c00279{width:30.443400px;}
._5_c00279{width:36.209938px;}
._d_c00279{width:48.442203px;}
._3_c00279{width:69.072739px;}
._a_c00279{width:86.768840px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs5_c00279{font-size:36.000000px;}
.fs2_c00279{font-size:41.760000px;}
.fs3_c00279{font-size:59.040000px;}
.fs6_c00279{font-size:60.000000px;}
.fs4_c00279{font-size:60.857039px;}
.fs0_c00279{font-size:72.000000px;}
.fs1_c00279{font-size:74.215901px;}
.y0_c00279{bottom:0.000000px;}
.y2f_c00279{bottom:3.120150px;}
.y2e_c00279{bottom:34.744500px;}
.y1_c00279{bottom:54.000000px;}
.y2d_c00279{bottom:61.605000px;}
.y2c_c00279{bottom:72.765000px;}
.y2b_c00279{bottom:72.766800px;}
.y29_c00279{bottom:90.404640px;}
.y2a_c00279{bottom:90.405000px;}
.y28_c00279{bottom:107.688600px;}
.y27_c00279{bottom:125.326800px;}
.y26_c00279{bottom:149.085000px;}
.y25_c00279{bottom:175.725000px;}
.y24_c00279{bottom:285.525000px;}
.y23_c00279{bottom:303.165000px;}
.y22_c00279{bottom:320.805000px;}
.y20_c00279{bottom:321.165000px;}
.y21_c00279{bottom:338.085000px;}
.y1f_c00279{bottom:338.445000px;}
.y1e_c00279{bottom:356.085000px;}
.y1d_c00279{bottom:374.445000px;}
.y1c_c00279{bottom:391.725000px;}
.y1b_c00279{bottom:409.365000px;}
.y1a_c00279{bottom:427.005000px;}
.y19_c00279{bottom:444.285000px;}
.y18_c00279{bottom:461.925000px;}
.y17_c00279{bottom:479.565000px;}
.y16_c00279{bottom:496.845000px;}
.y15_c00279{bottom:514.485000px;}
.y14_c00279{bottom:547.965000px;}
.y13_c00279{bottom:583.965000px;}
.y12_c00279{bottom:604.845000px;}
.y11_c00279{bottom:640.845000px;}
.y10_c00279{bottom:676.845000px;}
.yf_c00279{bottom:698.085000px;}
.ye_c00279{bottom:734.085000px;}
.yd_c00279{bottom:770.085000px;}
.yc_c00279{bottom:790.965000px;}
.yb_c00279{bottom:826.965000px;}
.ya_c00279{bottom:862.965000px;}
.y9_c00279{bottom:898.965000px;}
.y8_c00279{bottom:934.965000px;}
.y7_c00279{bottom:955.845000px;}
.y6_c00279{bottom:991.845000px;}
.y5_c00279{bottom:1027.845000px;}
.y4_c00279{bottom:1049.085000px;}
.y3_c00279{bottom:1085.085000px;}
.y2_c00279{bottom:1138.365000px;}
.hb_c00279{height:19.255500px;}
.ha_c00279{height:32.616000px;}
.hc_c00279{height:46.320000px;}
.h8_c00279{height:46.981634px;}
.h5_c00279{height:52.031250px;}
.h7_c00279{height:53.490240px;}
.h9_c00279{height:57.096000px;}
.h4_c00279{height:57.294676px;}
.h3_c00279{height:65.232000px;}
.h6_c00279{height:68.074560px;}
.h2_c00279{height:1201.365000px;}
.h0_c00279{height:1262.835000px;}
.h1_c00279{height:1263.000000px;}
.w7_c00279{width:25.020000px;}
.w3_c00279{width:57.600000px;}
.w5_c00279{width:143.640000px;}
.w4_c00279{width:163.080000px;}
.w6_c00279{width:286.560000px;}
.w2_c00279{width:863.955000px;}
.w0_c00279{width:892.935000px;}
.w1_c00279{width:893.250000px;}
.x0_c00279{left:0.000000px;}
.x10_c00279{left:7.920150px;}
.x12_c00279{left:12.914700px;}
.x1_c00279{left:14.490000px;}
.x1a_c00279{left:37.559550px;}
.x13_c00279{left:69.839700px;}
.x15_c00279{left:98.742150px;}
.x2_c00279{left:113.040150px;}
.xf_c00279{left:119.610000px;}
.x14_c00279{left:125.099850px;}
.x6_c00279{left:140.039550px;}
.x5_c00279{left:148.031550px;}
.x3_c00279{left:154.043700px;}
.x9_c00279{left:155.558700px;}
.x7_c00279{left:167.040150px;}
.x11_c00279{left:177.930000px;}
.x1f_c00279{left:215.561250px;}
.x1b_c00279{left:221.868450px;}
.x20_c00279{left:223.061250px;}
.x18_c00279{left:248.895150px;}
.x8_c00279{left:260.026650px;}
.x1c_c00279{left:261.887250px;}
.x4_c00279{left:268.935750px;}
.x19_c00279{left:278.894700px;}
.xa_c00279{left:280.042200px;}
.x16_c00279{left:341.730000px;}
.x1d_c00279{left:454.262700px;}
.x1e_c00279{left:461.762700px;}
.x17_c00279{left:486.090000px;}
.xb_c00279{left:559.548750px;}
.xc_c00279{left:568.548750px;}
.xd_c00279{left:596.956050px;}
.xe_c00279{left:627.969750px;}
.x21_c00279{left:759.915000px;}
@media print{
.v3_c00279{vertical-align:-21.760000pt;}
.v0_c00279{vertical-align:0.000000pt;}
.v2_c00279{vertical-align:21.760000pt;}
.v1_c00279{vertical-align:26.880000pt;}
.lsd_c00279{letter-spacing:-0.159616pt;}
.lsc_c00279{letter-spacing:0.000000pt;}
.ls1b_c00279{letter-spacing:0.128000pt;}
.ls11_c00279{letter-spacing:0.236160pt;}
.ls21_c00279{letter-spacing:0.243428pt;}
.ls6_c00279{letter-spacing:0.283093pt;}
.lse_c00279{letter-spacing:0.283392pt;}
.lsf_c00279{letter-spacing:0.292114pt;}
.ls20_c00279{letter-spacing:0.330624pt;}
.ls1e_c00279{letter-spacing:0.377856pt;}
.ls10_c00279{letter-spacing:0.438171pt;}
.ls8_c00279{letter-spacing:0.456576pt;}
.ls4_c00279{letter-spacing:0.472320pt;}
.ls5_c00279{letter-spacing:0.509227pt;}
.ls18_c00279{letter-spacing:0.519552pt;}
.ls12_c00279{letter-spacing:0.535542pt;}
.ls17_c00279{letter-spacing:0.614016pt;}
.ls7_c00279{letter-spacing:0.632913pt;}
.ls13_c00279{letter-spacing:0.681599pt;}
.ls2_c00279{letter-spacing:0.685975pt;}
.ls1f_c00279{letter-spacing:0.708480pt;}
.lsa_c00279{letter-spacing:0.839680pt;}
.ls14_c00279{letter-spacing:0.855424pt;}
.ls1d_c00279{letter-spacing:0.949888pt;}
.ls16_c00279{letter-spacing:4.665472pt;}
.ls1a_c00279{letter-spacing:4.712704pt;}
.ls9_c00279{letter-spacing:4.758080pt;}
.ls3_c00279{letter-spacing:4.758613pt;}
.ls15_c00279{letter-spacing:4.901632pt;}
.lsb_c00279{letter-spacing:5.312000pt;}
.ls0_c00279{letter-spacing:5.475484pt;}
.ls22_c00279{letter-spacing:5.604864pt;}
.ls19_c00279{letter-spacing:18.331264pt;}
.ls1_c00279{letter-spacing:48.768000pt;}
.ls1c_c00279{letter-spacing:108.833024pt;}
.ws5_c00279{word-spacing:-19.491072pt;}
.ws9_c00279{word-spacing:-19.302144pt;}
.ws3_c00279{word-spacing:-15.720049pt;}
.ws7_c00279{word-spacing:-15.671364pt;}
.ws4_c00279{word-spacing:-15.444864pt;}
.wsb_c00279{word-spacing:-15.281879pt;}
.ws6_c00279{word-spacing:-15.203456pt;}
.ws2_c00279{word-spacing:-15.061760pt;}
.ws8_c00279{word-spacing:-14.872832pt;}
.ws1_c00279{word-spacing:-14.589440pt;}
.ws0_c00279{word-spacing:-10.159744pt;}
.wsa_c00279{word-spacing:-9.024000pt;}
.wsc_c00279{word-spacing:0.000000pt;}
._e_c00279{margin-left:-103.912491pt;}
._7_c00279{margin-left:-18.687476pt;}
._8_c00279{margin-left:-17.041527pt;}
._14_c00279{margin-left:-6.140160pt;}
._13_c00279{margin-left:-5.195520pt;}
._15_c00279{margin-left:-4.303360pt;}
._4_c00279{margin-left:-0.973713pt;}
._1_c00279{width:1.088000pt;}
._0_c00279{width:1.984000pt;}
._f_c00279{width:3.840000pt;}
._11_c00279{width:4.827058pt;}
._12_c00279{width:5.885796pt;}
._10_c00279{width:11.598080pt;}
._b_c00279{width:12.857600pt;}
._c_c00279{width:13.897173pt;}
._2_c00279{width:16.064000pt;}
._6_c00279{width:17.627413pt;}
._9_c00279{width:27.060800pt;}
._5_c00279{width:32.186612pt;}
._d_c00279{width:43.059736pt;}
._3_c00279{width:61.397990pt;}
._a_c00279{width:77.127858pt;}
.fs5_c00279{font-size:32.000000pt;}
.fs2_c00279{font-size:37.120000pt;}
.fs3_c00279{font-size:52.480000pt;}
.fs6_c00279{font-size:53.333333pt;}
.fs4_c00279{font-size:54.095146pt;}
.fs0_c00279{font-size:64.000000pt;}
.fs1_c00279{font-size:65.969690pt;}
.y0_c00279{bottom:0.000000pt;}
.y2f_c00279{bottom:2.773467pt;}
.y2e_c00279{bottom:30.884000pt;}
.y1_c00279{bottom:48.000000pt;}
.y2d_c00279{bottom:54.760000pt;}
.y2c_c00279{bottom:64.680000pt;}
.y2b_c00279{bottom:64.681600pt;}
.y29_c00279{bottom:80.359680pt;}
.y2a_c00279{bottom:80.360000pt;}
.y28_c00279{bottom:95.723200pt;}
.y27_c00279{bottom:111.401600pt;}
.y26_c00279{bottom:132.520000pt;}
.y25_c00279{bottom:156.200000pt;}
.y24_c00279{bottom:253.800000pt;}
.y23_c00279{bottom:269.480000pt;}
.y22_c00279{bottom:285.160000pt;}
.y20_c00279{bottom:285.480000pt;}
.y21_c00279{bottom:300.520000pt;}
.y1f_c00279{bottom:300.840000pt;}
.y1e_c00279{bottom:316.520000pt;}
.y1d_c00279{bottom:332.840000pt;}
.y1c_c00279{bottom:348.200000pt;}
.y1b_c00279{bottom:363.880000pt;}
.y1a_c00279{bottom:379.560000pt;}
.y19_c00279{bottom:394.920000pt;}
.y18_c00279{bottom:410.600000pt;}
.y17_c00279{bottom:426.280000pt;}
.y16_c00279{bottom:441.640000pt;}
.y15_c00279{bottom:457.320000pt;}
.y14_c00279{bottom:487.080000pt;}
.y13_c00279{bottom:519.080000pt;}
.y12_c00279{bottom:537.640000pt;}
.y11_c00279{bottom:569.640000pt;}
.y10_c00279{bottom:601.640000pt;}
.yf_c00279{bottom:620.520000pt;}
.ye_c00279{bottom:652.520000pt;}
.yd_c00279{bottom:684.520000pt;}
.yc_c00279{bottom:703.080000pt;}
.yb_c00279{bottom:735.080000pt;}
.ya_c00279{bottom:767.080000pt;}
.y9_c00279{bottom:799.080000pt;}
.y8_c00279{bottom:831.080000pt;}
.y7_c00279{bottom:849.640000pt;}
.y6_c00279{bottom:881.640000pt;}
.y5_c00279{bottom:913.640000pt;}
.y4_c00279{bottom:932.520000pt;}
.y3_c00279{bottom:964.520000pt;}
.y2_c00279{bottom:1011.880000pt;}
.hb_c00279{height:17.116000pt;}
.ha_c00279{height:28.992000pt;}
.hc_c00279{height:41.173333pt;}
.h8_c00279{height:41.761453pt;}
.h5_c00279{height:46.250000pt;}
.h7_c00279{height:47.546880pt;}
.h9_c00279{height:50.752000pt;}
.h4_c00279{height:50.928601pt;}
.h3_c00279{height:57.984000pt;}
.h6_c00279{height:60.510720pt;}
.h2_c00279{height:1067.880000pt;}
.h0_c00279{height:1122.520000pt;}
.h1_c00279{height:1122.666667pt;}
.w7_c00279{width:22.240000pt;}
.w3_c00279{width:51.200000pt;}
.w5_c00279{width:127.680000pt;}
.w4_c00279{width:144.960000pt;}
.w6_c00279{width:254.720000pt;}
.w2_c00279{width:767.960000pt;}
.w0_c00279{width:793.720000pt;}
.w1_c00279{width:794.000000pt;}
.x0_c00279{left:0.000000pt;}
.x10_c00279{left:7.040133pt;}
.x12_c00279{left:11.479733pt;}
.x1_c00279{left:12.880000pt;}
.x1a_c00279{left:33.386267pt;}
.x13_c00279{left:62.079733pt;}
.x15_c00279{left:87.770800pt;}
.x2_c00279{left:100.480133pt;}
.xf_c00279{left:106.320000pt;}
.x14_c00279{left:111.199867pt;}
.x6_c00279{left:124.479600pt;}
.x5_c00279{left:131.583600pt;}
.x3_c00279{left:136.927733pt;}
.x9_c00279{left:138.274400pt;}
.x7_c00279{left:148.480133pt;}
.x11_c00279{left:158.160000pt;}
.x1f_c00279{left:191.610000pt;}
.x1b_c00279{left:197.216400pt;}
.x20_c00279{left:198.276667pt;}
.x18_c00279{left:221.240133pt;}
.x8_c00279{left:231.134800pt;}
.x1c_c00279{left:232.788667pt;}
.x4_c00279{left:239.054000pt;}
.x19_c00279{left:247.906400pt;}
.xa_c00279{left:248.926400pt;}
.x16_c00279{left:303.760000pt;}
.x1d_c00279{left:403.789067pt;}
.x1e_c00279{left:410.455733pt;}
.x17_c00279{left:432.080000pt;}
.xb_c00279{left:497.376667pt;}
.xc_c00279{left:505.376667pt;}
.xd_c00279{left:530.627600pt;}
.xe_c00279{left:558.195333pt;}
.x21_c00279{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7a9f2e1328267bb831893b8a.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.134000;font-style:normal;font-weight:normal;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_502f86f9d136de26c6bdeb71.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;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:ff3_c00280;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:0.787000;font-style:normal;font-weight:normal;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_b1fc3e09d2f95ba3025811b7.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_32c5c1545d8b0bc0278c2141.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:0.787000;font-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_c00280{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00280{vertical-align:-24.480000px;}
.v0_c00280{vertical-align:0.000000px;}
.v1_c00280{vertical-align:30.240000px;}
.ls1b_c00280{letter-spacing:-0.179568px;}
.lsd_c00280{letter-spacing:0.000000px;}
.ls1d_c00280{letter-spacing:0.144000px;}
.ls12_c00280{letter-spacing:0.265680px;}
.ls7_c00280{letter-spacing:0.295200px;}
.ls2_c00280{letter-spacing:0.318480px;}
.lse_c00280{letter-spacing:0.318816px;}
.lsf_c00280{letter-spacing:0.328628px;}
.ls18_c00280{letter-spacing:0.478224px;}
.lsa_c00280{letter-spacing:0.501840px;}
.ls9_c00280{letter-spacing:0.513648px;}
.ls6_c00280{letter-spacing:0.519552px;}
.ls5_c00280{letter-spacing:0.531360px;}
.ls1e_c00280{letter-spacing:0.547713px;}
.ls8_c00280{letter-spacing:0.549072px;}
.ls4_c00280{letter-spacing:0.560880px;}
.ls17_c00280{letter-spacing:0.584496px;}
.ls13_c00280{letter-spacing:0.690768px;}
.ls3_c00280{letter-spacing:0.712027px;}
.ls16_c00280{letter-spacing:0.743904px;}
.ls14_c00280{letter-spacing:0.962352px;}
.ls11_c00280{letter-spacing:5.248656px;}
.ls1a_c00280{letter-spacing:5.292000px;}
.ls15_c00280{letter-spacing:5.301792px;}
.ls1_c00280{letter-spacing:5.353440px;}
.ls19_c00280{letter-spacing:5.430672px;}
.ls10_c00280{letter-spacing:5.514336px;}
.lsb_c00280{letter-spacing:5.975400px;}
.lsc_c00280{letter-spacing:5.976000px;}
.ls0_c00280{letter-spacing:6.159920px;}
.ls1c_c00280{letter-spacing:11.534400px;}
.sc__c00280{text-shadow:none;}
.sc1_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00280{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc1_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00280{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00280{word-spacing:-21.927456px;}
.ws5_c00280{word-spacing:-21.714912px;}
.ws7_c00280{word-spacing:-21.043152px;}
.ws9_c00280{word-spacing:-20.016000px;}
.ws4_c00280{word-spacing:-17.630284px;}
.wsb_c00280{word-spacing:-17.465970px;}
.ws1_c00280{word-spacing:-17.246885px;}
.ws6_c00280{word-spacing:-17.157024px;}
.ws3_c00280{word-spacing:-17.103888px;}
.ws0_c00280{word-spacing:-16.944480px;}
.ws8_c00280{word-spacing:-11.429712px;}
.wsa_c00280{word-spacing:-10.152000px;}
.wsc_c00280{word-spacing:0.000000px;}
._11_c00280{margin-left:-11.548800px;}
._f_c00280{margin-left:-4.954112px;}
._1_c00280{margin-left:-1.095427px;}
._2_c00280{width:1.068864px;}
._a_c00280{width:2.492427px;}
._8_c00280{width:4.487040px;}
._9_c00280{width:5.716011px;}
._13_c00280{width:6.770267px;}
._5_c00280{width:7.917733px;}
._6_c00280{width:9.129362px;}
._7_c00280{width:10.358333px;}
._3_c00280{width:12.050533px;}
._4_c00280{width:14.700960px;}
._10_c00280{width:15.958080px;}
._b_c00280{width:20.723040px;}
._e_c00280{width:21.744000px;}
._12_c00280{width:22.896000px;}
._d_c00280{width:24.564003px;}
._c_c00280{width:26.123997px;}
._0_c00280{width:69.072739px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs6_c00280{font-size:36.000000px;}
.fs5_c00280{font-size:41.760000px;}
.fs4_c00280{font-size:56.160000px;}
.fs2_c00280{font-size:59.040000px;}
.fs7_c00280{font-size:60.000000px;}
.fs3_c00280{font-size:60.857039px;}
.fs0_c00280{font-size:72.000000px;}
.fs1_c00280{font-size:74.215901px;}
.y0_c00280{bottom:0.000000px;}
.y39_c00280{bottom:3.120150px;}
.y38_c00280{bottom:34.744500px;}
.y1_c00280{bottom:54.000000px;}
.y37_c00280{bottom:61.605000px;}
.y36_c00280{bottom:78.885000px;}
.y35_c00280{bottom:96.525000px;}
.y34_c00280{bottom:107.685000px;}
.y33_c00280{bottom:113.805000px;}
.y32_c00280{bottom:140.445000px;}
.y31_c00280{bottom:175.725000px;}
.y30_c00280{bottom:196.605000px;}
.y2f_c00280{bottom:217.485000px;}
.y2e_c00280{bottom:238.725000px;}
.y2d_c00280{bottom:259.605000px;}
.y2c_c00280{bottom:280.845000px;}
.y2b_c00280{bottom:301.725000px;}
.y2a_c00280{bottom:322.605000px;}
.y29_c00280{bottom:343.845000px;}
.y28_c00280{bottom:379.845000px;}
.y27_c00280{bottom:400.725000px;}
.y26_c00280{bottom:421.605000px;}
.y25_c00280{bottom:442.845000px;}
.y24_c00280{bottom:463.725000px;}
.y23_c00280{bottom:484.605000px;}
.y22_c00280{bottom:505.845000px;}
.y21_c00280{bottom:526.725000px;}
.y20_c00280{bottom:547.605000px;}
.y1f_c00280{bottom:583.605000px;}
.y1e_c00280{bottom:604.845000px;}
.y1d_c00280{bottom:625.725000px;}
.y1c_c00280{bottom:646.605000px;}
.y1b_c00280{bottom:682.605000px;}
.y1a_c00280{bottom:718.600680px;}
.y19_c00280{bottom:735.884640px;}
.y18_c00280{bottom:753.522840px;}
.y17_c00280{bottom:771.161040px;}
.y16_c00280{bottom:788.445000px;}
.y15_c00280{bottom:821.202840px;}
.y14_c00280{bottom:838.486800px;}
.y13_c00280{bottom:856.125000px;}
.y12_c00280{bottom:888.885000px;}
.y11_c00280{bottom:910.485000px;}
.ye_c00280{bottom:927.405000px;}
.y10_c00280{bottom:927.764850px;}
.yd_c00280{bottom:945.045000px;}
.yf_c00280{bottom:945.405000px;}
.yc_c00280{bottom:962.325000px;}
.yb_c00280{bottom:963.045000px;}
.ya_c00280{bottom:980.325000px;}
.y9_c00280{bottom:998.685000px;}
.y8_c00280{bottom:1015.965000px;}
.y6_c00280{bottom:1016.685000px;}
.y7_c00280{bottom:1033.604850px;}
.y5_c00280{bottom:1033.965000px;}
.y4_c00280{bottom:1051.604850px;}
.y3_c00280{bottom:1085.085000px;}
.y2_c00280{bottom:1138.365000px;}
.h9_c00280{height:19.255500px;}
.h8_c00280{height:32.616000px;}
.ha_c00280{height:46.320000px;}
.h6_c00280{height:46.981634px;}
.h5_c00280{height:53.490240px;}
.h4_c00280{height:57.294676px;}
.h3_c00280{height:65.232000px;}
.h7_c00280{height:68.074560px;}
.h2_c00280{height:1201.365000px;}
.h0_c00280{height:1262.835000px;}
.h1_c00280{height:1263.000000px;}
.w7_c00280{width:25.020000px;}
.w3_c00280{width:57.600000px;}
.w5_c00280{width:143.640000px;}
.w4_c00280{width:163.080000px;}
.w6_c00280{width:286.560000px;}
.w2_c00280{width:863.955000px;}
.w0_c00280{width:892.935000px;}
.w1_c00280{width:893.250000px;}
.x0_c00280{left:0.000000px;}
.x6_c00280{left:7.920150px;}
.x1_c00280{left:14.490000px;}
.xb_c00280{left:75.218100px;}
.xc_c00280{left:105.217650px;}
.x2_c00280{left:113.040150px;}
.x5_c00280{left:119.610000px;}
.xf_c00280{left:133.034550px;}
.xa_c00280{left:150.009000px;}
.x3_c00280{left:154.043700px;}
.x13_c00280{left:156.059700px;}
.x7_c00280{left:177.930000px;}
.x1f_c00280{left:213.929850px;}
.x20_c00280{left:258.088650px;}
.x16_c00280{left:267.837150px;}
.x4_c00280{left:268.935750px;}
.x17_c00280{left:312.854400px;}
.x1d_c00280{left:326.191050px;}
.x8_c00280{left:341.730000px;}
.x10_c00280{left:347.417400px;}
.x14_c00280{left:382.162800px;}
.x1e_c00280{left:408.179700px;}
.x15_c00280{left:430.186200px;}
.x9_c00280{left:486.090000px;}
.x11_c00280{left:537.162300px;}
.x12_c00280{left:547.606200px;}
.x18_c00280{left:567.513750px;}
.x1c_c00280{left:573.579750px;}
.x19_c00280{left:654.506400px;}
.x1a_c00280{left:662.697450px;}
.x1b_c00280{left:708.704550px;}
.xd_c00280{left:720.390300px;}
.xe_c00280{left:750.390000px;}
.x21_c00280{left:759.915000px;}
@media print{
.v2_c00280{vertical-align:-21.760000pt;}
.v0_c00280{vertical-align:0.000000pt;}
.v1_c00280{vertical-align:26.880000pt;}
.ls1b_c00280{letter-spacing:-0.159616pt;}
.lsd_c00280{letter-spacing:0.000000pt;}
.ls1d_c00280{letter-spacing:0.128000pt;}
.ls12_c00280{letter-spacing:0.236160pt;}
.ls7_c00280{letter-spacing:0.262400pt;}
.ls2_c00280{letter-spacing:0.283093pt;}
.lse_c00280{letter-spacing:0.283392pt;}
.lsf_c00280{letter-spacing:0.292114pt;}
.ls18_c00280{letter-spacing:0.425088pt;}
.lsa_c00280{letter-spacing:0.446080pt;}
.ls9_c00280{letter-spacing:0.456576pt;}
.ls6_c00280{letter-spacing:0.461824pt;}
.ls5_c00280{letter-spacing:0.472320pt;}
.ls1e_c00280{letter-spacing:0.486856pt;}
.ls8_c00280{letter-spacing:0.488064pt;}
.ls4_c00280{letter-spacing:0.498560pt;}
.ls17_c00280{letter-spacing:0.519552pt;}
.ls13_c00280{letter-spacing:0.614016pt;}
.ls3_c00280{letter-spacing:0.632913pt;}
.ls16_c00280{letter-spacing:0.661248pt;}
.ls14_c00280{letter-spacing:0.855424pt;}
.ls11_c00280{letter-spacing:4.665472pt;}
.ls1a_c00280{letter-spacing:4.704000pt;}
.ls15_c00280{letter-spacing:4.712704pt;}
.ls1_c00280{letter-spacing:4.758613pt;}
.ls19_c00280{letter-spacing:4.827264pt;}
.ls10_c00280{letter-spacing:4.901632pt;}
.lsb_c00280{letter-spacing:5.311467pt;}
.lsc_c00280{letter-spacing:5.312000pt;}
.ls0_c00280{letter-spacing:5.475484pt;}
.ls1c_c00280{letter-spacing:10.252800pt;}
.ws2_c00280{word-spacing:-19.491072pt;}
.ws5_c00280{word-spacing:-19.302144pt;}
.ws7_c00280{word-spacing:-18.705024pt;}
.ws9_c00280{word-spacing:-17.792000pt;}
.ws4_c00280{word-spacing:-15.671364pt;}
.wsb_c00280{word-spacing:-15.525307pt;}
.ws1_c00280{word-spacing:-15.330564pt;}
.ws6_c00280{word-spacing:-15.250688pt;}
.ws3_c00280{word-spacing:-15.203456pt;}
.ws0_c00280{word-spacing:-15.061760pt;}
.ws8_c00280{word-spacing:-10.159744pt;}
.wsa_c00280{word-spacing:-9.024000pt;}
.wsc_c00280{word-spacing:0.000000pt;}
._11_c00280{margin-left:-10.265600pt;}
._f_c00280{margin-left:-4.403655pt;}
._1_c00280{margin-left:-0.973713pt;}
._2_c00280{width:0.950101pt;}
._a_c00280{width:2.215490pt;}
._8_c00280{width:3.988480pt;}
._9_c00280{width:5.080898pt;}
._13_c00280{width:6.018015pt;}
._5_c00280{width:7.037985pt;}
._6_c00280{width:8.114989pt;}
._7_c00280{width:9.207407pt;}
._3_c00280{width:10.711585pt;}
._4_c00280{width:13.067520pt;}
._10_c00280{width:14.184960pt;}
._b_c00280{width:18.420480pt;}
._e_c00280{width:19.328000pt;}
._12_c00280{width:20.352000pt;}
._d_c00280{width:21.834669pt;}
._c_c00280{width:23.221331pt;}
._0_c00280{width:61.397990pt;}
.fs6_c00280{font-size:32.000000pt;}
.fs5_c00280{font-size:37.120000pt;}
.fs4_c00280{font-size:49.920000pt;}
.fs2_c00280{font-size:52.480000pt;}
.fs7_c00280{font-size:53.333333pt;}
.fs3_c00280{font-size:54.095146pt;}
.fs0_c00280{font-size:64.000000pt;}
.fs1_c00280{font-size:65.969690pt;}
.y0_c00280{bottom:0.000000pt;}
.y39_c00280{bottom:2.773467pt;}
.y38_c00280{bottom:30.884000pt;}
.y1_c00280{bottom:48.000000pt;}
.y37_c00280{bottom:54.760000pt;}
.y36_c00280{bottom:70.120000pt;}
.y35_c00280{bottom:85.800000pt;}
.y34_c00280{bottom:95.720000pt;}
.y33_c00280{bottom:101.160000pt;}
.y32_c00280{bottom:124.840000pt;}
.y31_c00280{bottom:156.200000pt;}
.y30_c00280{bottom:174.760000pt;}
.y2f_c00280{bottom:193.320000pt;}
.y2e_c00280{bottom:212.200000pt;}
.y2d_c00280{bottom:230.760000pt;}
.y2c_c00280{bottom:249.640000pt;}
.y2b_c00280{bottom:268.200000pt;}
.y2a_c00280{bottom:286.760000pt;}
.y29_c00280{bottom:305.640000pt;}
.y28_c00280{bottom:337.640000pt;}
.y27_c00280{bottom:356.200000pt;}
.y26_c00280{bottom:374.760000pt;}
.y25_c00280{bottom:393.640000pt;}
.y24_c00280{bottom:412.200000pt;}
.y23_c00280{bottom:430.760000pt;}
.y22_c00280{bottom:449.640000pt;}
.y21_c00280{bottom:468.200000pt;}
.y20_c00280{bottom:486.760000pt;}
.y1f_c00280{bottom:518.760000pt;}
.y1e_c00280{bottom:537.640000pt;}
.y1d_c00280{bottom:556.200000pt;}
.y1c_c00280{bottom:574.760000pt;}
.y1b_c00280{bottom:606.760000pt;}
.y1a_c00280{bottom:638.756160pt;}
.y19_c00280{bottom:654.119680pt;}
.y18_c00280{bottom:669.798080pt;}
.y17_c00280{bottom:685.476480pt;}
.y16_c00280{bottom:700.840000pt;}
.y15_c00280{bottom:729.958080pt;}
.y14_c00280{bottom:745.321600pt;}
.y13_c00280{bottom:761.000000pt;}
.y12_c00280{bottom:790.120000pt;}
.y11_c00280{bottom:809.320000pt;}
.ye_c00280{bottom:824.360000pt;}
.y10_c00280{bottom:824.679867pt;}
.yd_c00280{bottom:840.040000pt;}
.yf_c00280{bottom:840.360000pt;}
.yc_c00280{bottom:855.400000pt;}
.yb_c00280{bottom:856.040000pt;}
.ya_c00280{bottom:871.400000pt;}
.y9_c00280{bottom:887.720000pt;}
.y8_c00280{bottom:903.080000pt;}
.y6_c00280{bottom:903.720000pt;}
.y7_c00280{bottom:918.759867pt;}
.y5_c00280{bottom:919.080000pt;}
.y4_c00280{bottom:934.759867pt;}
.y3_c00280{bottom:964.520000pt;}
.y2_c00280{bottom:1011.880000pt;}
.h9_c00280{height:17.116000pt;}
.h8_c00280{height:28.992000pt;}
.ha_c00280{height:41.173333pt;}
.h6_c00280{height:41.761453pt;}
.h5_c00280{height:47.546880pt;}
.h4_c00280{height:50.928601pt;}
.h3_c00280{height:57.984000pt;}
.h7_c00280{height:60.510720pt;}
.h2_c00280{height:1067.880000pt;}
.h0_c00280{height:1122.520000pt;}
.h1_c00280{height:1122.666667pt;}
.w7_c00280{width:22.240000pt;}
.w3_c00280{width:51.200000pt;}
.w5_c00280{width:127.680000pt;}
.w4_c00280{width:144.960000pt;}
.w6_c00280{width:254.720000pt;}
.w2_c00280{width:767.960000pt;}
.w0_c00280{width:793.720000pt;}
.w1_c00280{width:794.000000pt;}
.x0_c00280{left:0.000000pt;}
.x6_c00280{left:7.040133pt;}
.x1_c00280{left:12.880000pt;}
.xb_c00280{left:66.860533pt;}
.xc_c00280{left:93.526800pt;}
.x2_c00280{left:100.480133pt;}
.x5_c00280{left:106.320000pt;}
.xf_c00280{left:118.252933pt;}
.xa_c00280{left:133.341333pt;}
.x3_c00280{left:136.927733pt;}
.x13_c00280{left:138.719733pt;}
.x7_c00280{left:158.160000pt;}
.x1f_c00280{left:190.159867pt;}
.x20_c00280{left:229.412133pt;}
.x16_c00280{left:238.077467pt;}
.x4_c00280{left:239.054000pt;}
.x17_c00280{left:278.092800pt;}
.x1d_c00280{left:289.947600pt;}
.x8_c00280{left:303.760000pt;}
.x10_c00280{left:308.815467pt;}
.x14_c00280{left:339.700267pt;}
.x1e_c00280{left:362.826400pt;}
.x15_c00280{left:382.387733pt;}
.x9_c00280{left:432.080000pt;}
.x11_c00280{left:477.477600pt;}
.x12_c00280{left:486.761067pt;}
.x18_c00280{left:504.456667pt;}
.x1c_c00280{left:509.848667pt;}
.x19_c00280{left:581.783467pt;}
.x1a_c00280{left:589.064400pt;}
.x1b_c00280{left:629.959600pt;}
.xd_c00280{left:640.346933pt;}
.xe_c00280{left:667.013333pt;}
.x21_c00280{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5af744bc60ba92c033b4004e.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.134000;font-style:normal;font-weight:normal;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_a8c6b151c0bda4c726d638bd.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;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:ff3_c00281;src:url('chunks/assets/font_e9eb7839e6ab3cf5dd2f7bab.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:0.787000;font-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_c00281{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00281{vertical-align:-24.480000px;}
.v0_c00281{vertical-align:0.000000px;}
.v1_c00281{vertical-align:30.240000px;}
.ls9_c00281{letter-spacing:-0.179568px;}
.ls8_c00281{letter-spacing:0.000000px;}
.lsb_c00281{letter-spacing:0.144000px;}
.ls10_c00281{letter-spacing:0.202464px;}
.ls6_c00281{letter-spacing:0.238560px;}
.ls3_c00281{letter-spacing:0.243428px;}
.lsc_c00281{letter-spacing:0.265680px;}
.ls12_c00281{letter-spacing:0.282384px;}
.ls5_c00281{letter-spacing:0.295200px;}
.lsf_c00281{letter-spacing:0.399600px;}
.lse_c00281{letter-spacing:0.438171px;}
.ls11_c00281{letter-spacing:0.516816px;}
.ls4_c00281{letter-spacing:0.531360px;}
.ls13_c00281{letter-spacing:0.575424px;}
.ls1_c00281{letter-spacing:0.663000px;}
.lsd_c00281{letter-spacing:0.821570px;}
.lsa_c00281{letter-spacing:5.335200px;}
.ls2_c00281{letter-spacing:5.939400px;}
.ls7_c00281{letter-spacing:5.976000px;}
.ls0_c00281{letter-spacing:6.159920px;}
.sc__c00281{text-shadow:none;}
.sc1_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00281{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc1_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00281{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00281{word-spacing:-20.947680px;}
.ws2_c00281{word-spacing:-20.016000px;}
.ws4_c00281{word-spacing:-17.739827px;}
.ws0_c00281{word-spacing:-11.429712px;}
.ws3_c00281{word-spacing:-10.152000px;}
.ws5_c00281{word-spacing:0.000000px;}
._8_c00281{margin-left:-1.095427px;}
._3_c00281{width:1.584000px;}
._1_c00281{width:2.808000px;}
._7_c00281{width:4.320000px;}
._4_c00281{width:6.624000px;}
._6_c00281{width:11.376000px;}
._2_c00281{width:16.488000px;}
._5_c00281{width:18.702407px;}
._0_c00281{width:32.616000px;}
.fc1_c00281{color:transparent;}
.fc0_c00281{color:rgb(0,0,0);}
.fs4_c00281{font-size:36.000000px;}
.fs2_c00281{font-size:41.760000px;}
.fs7_c00281{font-size:53.280000px;}
.fs3_c00281{font-size:56.160000px;}
.fs5_c00281{font-size:59.040000px;}
.fs8_c00281{font-size:60.000000px;}
.fs6_c00281{font-size:60.857039px;}
.fs0_c00281{font-size:72.000000px;}
.fs1_c00281{font-size:74.215901px;}
.y0_c00281{bottom:0.000000px;}
.y27_c00281{bottom:3.120150px;}
.y25_c00281{bottom:23.760000px;}
.y26_c00281{bottom:34.744500px;}
.y24_c00281{bottom:39.600000px;}
.y1_c00281{bottom:54.000000px;}
.y22_c00281{bottom:61.605000px;}
.y21_c00281{bottom:78.885000px;}
.y20_c00281{bottom:96.525000px;}
.y1f_c00281{bottom:107.685000px;}
.y1e_c00281{bottom:113.805000px;}
.y1d_c00281{bottom:140.445000px;}
.y1c_c00281{bottom:319.725000px;}
.y1b_c00281{bottom:355.725000px;}
.y23_c00281{bottom:378.045000px;}
.y1a_c00281{bottom:391.725000px;}
.y19_c00281{bottom:427.725000px;}
.y18_c00281{bottom:463.725000px;}
.y17_c00281{bottom:499.725000px;}
.y16_c00281{bottom:535.725000px;}
.y15_c00281{bottom:571.725000px;}
.y14_c00281{bottom:607.725000px;}
.y13_c00281{bottom:644.085000px;}
.y12_c00281{bottom:680.085000px;}
.y11_c00281{bottom:716.085000px;}
.y10_c00281{bottom:736.965000px;}
.yf_c00281{bottom:772.965000px;}
.ye_c00281{bottom:808.965000px;}
.yd_c00281{bottom:844.965000px;}
.yc_c00281{bottom:865.845000px;}
.yb_c00281{bottom:887.085000px;}
.ya_c00281{bottom:923.085000px;}
.y9_c00281{bottom:943.965000px;}
.y8_c00281{bottom:964.845000px;}
.y7_c00281{bottom:986.085000px;}
.y6_c00281{bottom:1006.965000px;}
.y5_c00281{bottom:1027.845000px;}
.y4_c00281{bottom:1063.845000px;}
.y3_c00281{bottom:1085.085000px;}
.y2_c00281{bottom:1138.365000px;}
.hb_c00281{height:19.255500px;}
.h6_c00281{height:32.616000px;}
.hc_c00281{height:46.320000px;}
.h7_c00281{height:46.981634px;}
.ha_c00281{height:48.271680px;}
.h9_c00281{height:52.200000px;}
.h8_c00281{height:53.490240px;}
.h4_c00281{height:57.294676px;}
.h3_c00281{height:65.232000px;}
.h5_c00281{height:68.074560px;}
.h2_c00281{height:1201.365000px;}
.h0_c00281{height:1262.835000px;}
.h1_c00281{height:1263.000000px;}
.w4_c00281{width:25.020000px;}
.w3_c00281{width:596.160000px;}
.w2_c00281{width:863.955000px;}
.w0_c00281{width:892.935000px;}
.w1_c00281{width:893.250000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:14.490000px;}
.xb_c00281{left:18.401100px;}
.xc_c00281{left:73.378500px;}
.x2_c00281{left:113.040150px;}
.xa_c00281{left:128.970000px;}
.x3_c00281{left:154.043700px;}
.x4_c00281{left:268.935750px;}
.x6_c00281{left:332.275950px;}
.x5_c00281{left:341.168250px;}
.x7_c00281{left:396.429150px;}
.x8_c00281{left:413.108250px;}
.x9_c00281{left:433.102200px;}
.xd_c00281{left:759.915000px;}
@media print{
.v2_c00281{vertical-align:-21.760000pt;}
.v0_c00281{vertical-align:0.000000pt;}
.v1_c00281{vertical-align:26.880000pt;}
.ls9_c00281{letter-spacing:-0.159616pt;}
.ls8_c00281{letter-spacing:0.000000pt;}
.lsb_c00281{letter-spacing:0.128000pt;}
.ls10_c00281{letter-spacing:0.179968pt;}
.ls6_c00281{letter-spacing:0.212053pt;}
.ls3_c00281{letter-spacing:0.216381pt;}
.lsc_c00281{letter-spacing:0.236160pt;}
.ls12_c00281{letter-spacing:0.251008pt;}
.ls5_c00281{letter-spacing:0.262400pt;}
.lsf_c00281{letter-spacing:0.355200pt;}
.lse_c00281{letter-spacing:0.389485pt;}
.ls11_c00281{letter-spacing:0.459392pt;}
.ls4_c00281{letter-spacing:0.472320pt;}
.ls13_c00281{letter-spacing:0.511488pt;}
.ls1_c00281{letter-spacing:0.589333pt;}
.lsd_c00281{letter-spacing:0.730284pt;}
.lsa_c00281{letter-spacing:4.742400pt;}
.ls2_c00281{letter-spacing:5.279467pt;}
.ls7_c00281{letter-spacing:5.312000pt;}
.ls0_c00281{letter-spacing:5.475484pt;}
.ws1_c00281{word-spacing:-18.620160pt;}
.ws2_c00281{word-spacing:-17.792000pt;}
.ws4_c00281{word-spacing:-15.768735pt;}
.ws0_c00281{word-spacing:-10.159744pt;}
.ws3_c00281{word-spacing:-9.024000pt;}
.ws5_c00281{word-spacing:0.000000pt;}
._8_c00281{margin-left:-0.973713pt;}
._3_c00281{width:1.408000pt;}
._1_c00281{width:2.496000pt;}
._7_c00281{width:3.840000pt;}
._4_c00281{width:5.888000pt;}
._6_c00281{width:10.112000pt;}
._2_c00281{width:14.656000pt;}
._5_c00281{width:16.624362pt;}
._0_c00281{width:28.992000pt;}
.fs4_c00281{font-size:32.000000pt;}
.fs2_c00281{font-size:37.120000pt;}
.fs7_c00281{font-size:47.360000pt;}
.fs3_c00281{font-size:49.920000pt;}
.fs5_c00281{font-size:52.480000pt;}
.fs8_c00281{font-size:53.333333pt;}
.fs6_c00281{font-size:54.095146pt;}
.fs0_c00281{font-size:64.000000pt;}
.fs1_c00281{font-size:65.969690pt;}
.y0_c00281{bottom:0.000000pt;}
.y27_c00281{bottom:2.773467pt;}
.y25_c00281{bottom:21.120000pt;}
.y26_c00281{bottom:30.884000pt;}
.y24_c00281{bottom:35.200000pt;}
.y1_c00281{bottom:48.000000pt;}
.y22_c00281{bottom:54.760000pt;}
.y21_c00281{bottom:70.120000pt;}
.y20_c00281{bottom:85.800000pt;}
.y1f_c00281{bottom:95.720000pt;}
.y1e_c00281{bottom:101.160000pt;}
.y1d_c00281{bottom:124.840000pt;}
.y1c_c00281{bottom:284.200000pt;}
.y1b_c00281{bottom:316.200000pt;}
.y23_c00281{bottom:336.040000pt;}
.y1a_c00281{bottom:348.200000pt;}
.y19_c00281{bottom:380.200000pt;}
.y18_c00281{bottom:412.200000pt;}
.y17_c00281{bottom:444.200000pt;}
.y16_c00281{bottom:476.200000pt;}
.y15_c00281{bottom:508.200000pt;}
.y14_c00281{bottom:540.200000pt;}
.y13_c00281{bottom:572.520000pt;}
.y12_c00281{bottom:604.520000pt;}
.y11_c00281{bottom:636.520000pt;}
.y10_c00281{bottom:655.080000pt;}
.yf_c00281{bottom:687.080000pt;}
.ye_c00281{bottom:719.080000pt;}
.yd_c00281{bottom:751.080000pt;}
.yc_c00281{bottom:769.640000pt;}
.yb_c00281{bottom:788.520000pt;}
.ya_c00281{bottom:820.520000pt;}
.y9_c00281{bottom:839.080000pt;}
.y8_c00281{bottom:857.640000pt;}
.y7_c00281{bottom:876.520000pt;}
.y6_c00281{bottom:895.080000pt;}
.y5_c00281{bottom:913.640000pt;}
.y4_c00281{bottom:945.640000pt;}
.y3_c00281{bottom:964.520000pt;}
.y2_c00281{bottom:1011.880000pt;}
.hb_c00281{height:17.116000pt;}
.h6_c00281{height:28.992000pt;}
.hc_c00281{height:41.173333pt;}
.h7_c00281{height:41.761453pt;}
.ha_c00281{height:42.908160pt;}
.h9_c00281{height:46.400000pt;}
.h8_c00281{height:47.546880pt;}
.h4_c00281{height:50.928601pt;}
.h3_c00281{height:57.984000pt;}
.h5_c00281{height:60.510720pt;}
.h2_c00281{height:1067.880000pt;}
.h0_c00281{height:1122.520000pt;}
.h1_c00281{height:1122.666667pt;}
.w4_c00281{width:22.240000pt;}
.w3_c00281{width:529.920000pt;}
.w2_c00281{width:767.960000pt;}
.w0_c00281{width:793.720000pt;}
.w1_c00281{width:794.000000pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:12.880000pt;}
.xb_c00281{left:16.356533pt;}
.xc_c00281{left:65.225333pt;}
.x2_c00281{left:100.480133pt;}
.xa_c00281{left:114.640000pt;}
.x3_c00281{left:136.927733pt;}
.x4_c00281{left:239.054000pt;}
.x6_c00281{left:295.356400pt;}
.x5_c00281{left:303.260667pt;}
.x7_c00281{left:352.381467pt;}
.x8_c00281{left:367.207333pt;}
.x9_c00281{left:384.979733pt;}
.xd_c00281{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1cd79198e36948a739a5fb2d.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.134000;font-style:normal;font-weight:normal;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_02873d4b7b7c295e90f6d268.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;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:ff3_c00282;src:url('chunks/assets/font_89b38d23a6ad85bc85b9aa37.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00282{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls4_c00282{letter-spacing:0.000000px;}
.ls6_c00282{letter-spacing:0.202464px;}
.ls1_c00282{letter-spacing:0.238560px;}
.ls2_c00282{letter-spacing:0.280080px;}
.ls8_c00282{letter-spacing:0.319680px;}
.ls5_c00282{letter-spacing:0.399600px;}
.ls7_c00282{letter-spacing:0.516816px;}
.ls9_c00282{letter-spacing:0.575424px;}
.ls3_c00282{letter-spacing:5.976000px;}
.ls0_c00282{letter-spacing:6.159920px;}
.sc__c00282{text-shadow:none;}
.sc1_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00282{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc1_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00282{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00282{word-spacing:0.000000px;}
._1_c00282{margin-left:-1.123728px;}
._0_c00282{width:1.014120px;}
.fc1_c00282{color:transparent;}
.fc0_c00282{color:rgb(0,0,0);}
.fs2_c00282{font-size:53.280000px;}
.fs3_c00282{font-size:60.000000px;}
.fs0_c00282{font-size:72.000000px;}
.fs1_c00282{font-size:74.215901px;}
.y0_c00282{bottom:0.000000px;}
.y23_c00282{bottom:3.120150px;}
.y21_c00282{bottom:18.720000px;}
.y1e_c00282{bottom:25.920000px;}
.y20_c00282{bottom:34.560000px;}
.y22_c00282{bottom:34.744500px;}
.y1d_c00282{bottom:41.400000px;}
.y1_c00282{bottom:54.000000px;}
.y1b_c00282{bottom:220.725000px;}
.y1a_c00282{bottom:256.725000px;}
.y19_c00282{bottom:292.725000px;}
.y1f_c00282{bottom:319.365000px;}
.y18_c00282{bottom:328.725000px;}
.y17_c00282{bottom:364.725000px;}
.y16_c00282{bottom:400.725000px;}
.y15_c00282{bottom:436.725000px;}
.y14_c00282{bottom:472.725000px;}
.y13_c00282{bottom:509.085000px;}
.y12_c00282{bottom:545.085000px;}
.y11_c00282{bottom:581.085000px;}
.y10_c00282{bottom:617.085000px;}
.yf_c00282{bottom:653.085000px;}
.ye_c00282{bottom:689.085000px;}
.yd_c00282{bottom:725.085000px;}
.y1c_c00282{bottom:734.085000px;}
.yc_c00282{bottom:761.085000px;}
.yb_c00282{bottom:797.085000px;}
.ya_c00282{bottom:833.085000px;}
.y9_c00282{bottom:869.085000px;}
.y8_c00282{bottom:905.085000px;}
.y7_c00282{bottom:941.085000px;}
.y6_c00282{bottom:977.085000px;}
.y5_c00282{bottom:1013.085000px;}
.y4_c00282{bottom:1049.085000px;}
.y3_c00282{bottom:1085.085000px;}
.y2_c00282{bottom:1138.365000px;}
.h8_c00282{height:19.255500px;}
.h9_c00282{height:46.320000px;}
.h7_c00282{height:47.160000px;}
.h6_c00282{height:48.271680px;}
.h5_c00282{height:54.000000px;}
.h4_c00282{height:57.294676px;}
.h3_c00282{height:65.232000px;}
.h2_c00282{height:1201.365000px;}
.h0_c00282{height:1262.835000px;}
.h1_c00282{height:1263.000000px;}
.w5_c00282{width:25.020000px;}
.w4_c00282{width:593.640000px;}
.w3_c00282{width:594.720000px;}
.w2_c00282{width:863.955000px;}
.w0_c00282{width:892.935000px;}
.w1_c00282{width:893.250000px;}
.x0_c00282{left:0.000000px;}
.x8_c00282{left:8.674800px;}
.x1_c00282{left:14.490000px;}
.x6_c00282{left:17.441100px;}
.x7_c00282{left:72.418800px;}
.x2_c00282{left:113.040150px;}
.x5_c00282{left:124.290000px;}
.x9_c00282{left:148.012200px;}
.x3_c00282{left:154.043700px;}
.x4_c00282{left:268.935750px;}
.xa_c00282{left:759.915000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls4_c00282{letter-spacing:0.000000pt;}
.ls6_c00282{letter-spacing:0.179968pt;}
.ls1_c00282{letter-spacing:0.212053pt;}
.ls2_c00282{letter-spacing:0.248960pt;}
.ls8_c00282{letter-spacing:0.284160pt;}
.ls5_c00282{letter-spacing:0.355200pt;}
.ls7_c00282{letter-spacing:0.459392pt;}
.ls9_c00282{letter-spacing:0.511488pt;}
.ls3_c00282{letter-spacing:5.312000pt;}
.ls0_c00282{letter-spacing:5.475484pt;}
.ws0_c00282{word-spacing:0.000000pt;}
._1_c00282{margin-left:-0.998869pt;}
._0_c00282{width:0.901440pt;}
.fs2_c00282{font-size:47.360000pt;}
.fs3_c00282{font-size:53.333333pt;}
.fs0_c00282{font-size:64.000000pt;}
.fs1_c00282{font-size:65.969690pt;}
.y0_c00282{bottom:0.000000pt;}
.y23_c00282{bottom:2.773467pt;}
.y21_c00282{bottom:16.640000pt;}
.y1e_c00282{bottom:23.040000pt;}
.y20_c00282{bottom:30.720000pt;}
.y22_c00282{bottom:30.884000pt;}
.y1d_c00282{bottom:36.800000pt;}
.y1_c00282{bottom:48.000000pt;}
.y1b_c00282{bottom:196.200000pt;}
.y1a_c00282{bottom:228.200000pt;}
.y19_c00282{bottom:260.200000pt;}
.y1f_c00282{bottom:283.880000pt;}
.y18_c00282{bottom:292.200000pt;}
.y17_c00282{bottom:324.200000pt;}
.y16_c00282{bottom:356.200000pt;}
.y15_c00282{bottom:388.200000pt;}
.y14_c00282{bottom:420.200000pt;}
.y13_c00282{bottom:452.520000pt;}
.y12_c00282{bottom:484.520000pt;}
.y11_c00282{bottom:516.520000pt;}
.y10_c00282{bottom:548.520000pt;}
.yf_c00282{bottom:580.520000pt;}
.ye_c00282{bottom:612.520000pt;}
.yd_c00282{bottom:644.520000pt;}
.y1c_c00282{bottom:652.520000pt;}
.yc_c00282{bottom:676.520000pt;}
.yb_c00282{bottom:708.520000pt;}
.ya_c00282{bottom:740.520000pt;}
.y9_c00282{bottom:772.520000pt;}
.y8_c00282{bottom:804.520000pt;}
.y7_c00282{bottom:836.520000pt;}
.y6_c00282{bottom:868.520000pt;}
.y5_c00282{bottom:900.520000pt;}
.y4_c00282{bottom:932.520000pt;}
.y3_c00282{bottom:964.520000pt;}
.y2_c00282{bottom:1011.880000pt;}
.h8_c00282{height:17.116000pt;}
.h9_c00282{height:41.173333pt;}
.h7_c00282{height:41.920000pt;}
.h6_c00282{height:42.908160pt;}
.h5_c00282{height:48.000000pt;}
.h4_c00282{height:50.928601pt;}
.h3_c00282{height:57.984000pt;}
.h2_c00282{height:1067.880000pt;}
.h0_c00282{height:1122.520000pt;}
.h1_c00282{height:1122.666667pt;}
.w5_c00282{width:22.240000pt;}
.w4_c00282{width:527.680000pt;}
.w3_c00282{width:528.640000pt;}
.w2_c00282{width:767.960000pt;}
.w0_c00282{width:793.720000pt;}
.w1_c00282{width:794.000000pt;}
.x0_c00282{left:0.000000pt;}
.x8_c00282{left:7.710933pt;}
.x1_c00282{left:12.880000pt;}
.x6_c00282{left:15.503200pt;}
.x7_c00282{left:64.372267pt;}
.x2_c00282{left:100.480133pt;}
.x5_c00282{left:110.480000pt;}
.x9_c00282{left:131.566400pt;}
.x3_c00282{left:136.927733pt;}
.x4_c00282{left:239.054000pt;}
.xa_c00282{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_21f675fbf38d22e2c3042810.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.134000;font-style:normal;font-weight:normal;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_02873d4b7b7c295e90f6d268.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;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:ff3_c00283;src:url('chunks/assets/font_4ecbfa878a66289fd8602f24.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:0.787000;font-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_c00283{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00283{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.lsa_c00283{letter-spacing:0.000000px;}
.lsc_c00283{letter-spacing:0.202464px;}
.ls12_c00283{letter-spacing:0.239760px;}
.ls1_c00283{letter-spacing:0.246520px;}
.lsd_c00283{letter-spacing:0.247139px;}
.ls2_c00283{letter-spacing:0.313043px;}
.ls6_c00283{letter-spacing:0.319080px;}
.ls10_c00283{letter-spacing:0.319680px;}
.lsb_c00283{letter-spacing:0.399600px;}
.ls4_c00283{letter-spacing:0.410256px;}
.ls7_c00283{letter-spacing:0.415584px;}
.ls11_c00283{letter-spacing:0.516816px;}
.ls3_c00283{letter-spacing:0.517920px;}
.lse_c00283{letter-spacing:0.575424px;}
.ls5_c00283{letter-spacing:0.598560px;}
.lsf_c00283{letter-spacing:0.719280px;}
.ls8_c00283{letter-spacing:4.680960px;}
.ls9_c00283{letter-spacing:5.976000px;}
.ls0_c00283{letter-spacing:6.159920px;}
.sc__c00283{text-shadow:none;}
.sc1_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00283{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc1_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00283{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00283{word-spacing:-15.580738px;}
.ws0_c00283{word-spacing:-15.514834px;}
.ws2_c00283{word-spacing:-15.222096px;}
.ws3_c00283{word-spacing:-15.051600px;}
.ws4_c00283{word-spacing:0.000000px;}
._1_c00283{margin-left:-1.172112px;}
._0_c00283{width:1.014720px;}
.fc1_c00283{color:transparent;}
.fc0_c00283{color:rgb(0,0,0);}
.fs2_c00283{font-size:53.280000px;}
.fs3_c00283{font-size:54.919767px;}
.fs4_c00283{font-size:60.000000px;}
.fs0_c00283{font-size:72.000000px;}
.fs1_c00283{font-size:74.215901px;}
.y0_c00283{bottom:0.000000px;}
.y11_c00283{bottom:3.120150px;}
.ye_c00283{bottom:25.560000px;}
.y10_c00283{bottom:34.744500px;}
.yd_c00283{bottom:41.400000px;}
.y1_c00283{bottom:54.000000px;}
.yf_c00283{bottom:238.365000px;}
.yc_c00283{bottom:724.365000px;}
.yb_c00283{bottom:797.085000px;}
.ya_c00283{bottom:833.085000px;}
.y9_c00283{bottom:869.085000px;}
.y8_c00283{bottom:905.085000px;}
.y7_c00283{bottom:941.085000px;}
.y6_c00283{bottom:977.085000px;}
.y5_c00283{bottom:1013.085000px;}
.y4_c00283{bottom:1049.085000px;}
.y3_c00283{bottom:1085.085000px;}
.y2_c00283{bottom:1138.365000px;}
.h8_c00283{height:19.255500px;}
.h7_c00283{height:42.398060px;}
.h9_c00283{height:46.320000px;}
.h6_c00283{height:48.271680px;}
.h5_c00283{height:54.000000px;}
.h4_c00283{height:57.294676px;}
.h3_c00283{height:65.232000px;}
.h2_c00283{height:1201.365000px;}
.h0_c00283{height:1262.835000px;}
.h1_c00283{height:1263.000000px;}
.w4_c00283{width:25.020000px;}
.w3_c00283{width:735.840000px;}
.w2_c00283{width:863.955000px;}
.w0_c00283{width:892.935000px;}
.w1_c00283{width:893.250000px;}
.x0_c00283{left:0.000000px;}
.x6_c00283{left:4.547100px;}
.x1_c00283{left:14.490000px;}
.xa_c00283{left:30.540900px;}
.xd_c00283{left:45.714450px;}
.x5_c00283{left:97.290000px;}
.x2_c00283{left:113.040150px;}
.x3_c00283{left:154.043700px;}
.x7_c00283{left:232.584150px;}
.xb_c00283{left:258.577800px;}
.x4_c00283{left:268.935750px;}
.x9_c00283{left:292.313100px;}
.x8_c00283{left:298.557000px;}
.xc_c00283{left:324.550650px;}
.xe_c00283{left:759.915000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.lsa_c00283{letter-spacing:0.000000pt;}
.lsc_c00283{letter-spacing:0.179968pt;}
.ls12_c00283{letter-spacing:0.213120pt;}
.ls1_c00283{letter-spacing:0.219129pt;}
.lsd_c00283{letter-spacing:0.219679pt;}
.ls2_c00283{letter-spacing:0.278260pt;}
.ls6_c00283{letter-spacing:0.283627pt;}
.ls10_c00283{letter-spacing:0.284160pt;}
.lsb_c00283{letter-spacing:0.355200pt;}
.ls4_c00283{letter-spacing:0.364672pt;}
.ls7_c00283{letter-spacing:0.369408pt;}
.ls11_c00283{letter-spacing:0.459392pt;}
.ls3_c00283{letter-spacing:0.460373pt;}
.lse_c00283{letter-spacing:0.511488pt;}
.ls5_c00283{letter-spacing:0.532053pt;}
.lsf_c00283{letter-spacing:0.639360pt;}
.ls8_c00283{letter-spacing:4.160853pt;}
.ls9_c00283{letter-spacing:5.312000pt;}
.ls0_c00283{letter-spacing:5.475484pt;}
.ws1_c00283{word-spacing:-13.849545pt;}
.ws0_c00283{word-spacing:-13.790964pt;}
.ws2_c00283{word-spacing:-13.530752pt;}
.ws3_c00283{word-spacing:-13.379200pt;}
.ws4_c00283{word-spacing:0.000000pt;}
._1_c00283{margin-left:-1.041877pt;}
._0_c00283{width:0.901973pt;}
.fs2_c00283{font-size:47.360000pt;}
.fs3_c00283{font-size:48.817571pt;}
.fs4_c00283{font-size:53.333333pt;}
.fs0_c00283{font-size:64.000000pt;}
.fs1_c00283{font-size:65.969690pt;}
.y0_c00283{bottom:0.000000pt;}
.y11_c00283{bottom:2.773467pt;}
.ye_c00283{bottom:22.720000pt;}
.y10_c00283{bottom:30.884000pt;}
.yd_c00283{bottom:36.800000pt;}
.y1_c00283{bottom:48.000000pt;}
.yf_c00283{bottom:211.880000pt;}
.yc_c00283{bottom:643.880000pt;}
.yb_c00283{bottom:708.520000pt;}
.ya_c00283{bottom:740.520000pt;}
.y9_c00283{bottom:772.520000pt;}
.y8_c00283{bottom:804.520000pt;}
.y7_c00283{bottom:836.520000pt;}
.y6_c00283{bottom:868.520000pt;}
.y5_c00283{bottom:900.520000pt;}
.y4_c00283{bottom:932.520000pt;}
.y3_c00283{bottom:964.520000pt;}
.y2_c00283{bottom:1011.880000pt;}
.h8_c00283{height:17.116000pt;}
.h7_c00283{height:37.687165pt;}
.h9_c00283{height:41.173333pt;}
.h6_c00283{height:42.908160pt;}
.h5_c00283{height:48.000000pt;}
.h4_c00283{height:50.928601pt;}
.h3_c00283{height:57.984000pt;}
.h2_c00283{height:1067.880000pt;}
.h0_c00283{height:1122.520000pt;}
.h1_c00283{height:1122.666667pt;}
.w4_c00283{width:22.240000pt;}
.w3_c00283{width:654.080000pt;}
.w2_c00283{width:767.960000pt;}
.w0_c00283{width:793.720000pt;}
.w1_c00283{width:794.000000pt;}
.x0_c00283{left:0.000000pt;}
.x6_c00283{left:4.041867pt;}
.x1_c00283{left:12.880000pt;}
.xa_c00283{left:27.147467pt;}
.xd_c00283{left:40.635067pt;}
.x5_c00283{left:86.480000pt;}
.x2_c00283{left:100.480133pt;}
.x3_c00283{left:136.927733pt;}
.x7_c00283{left:206.741467pt;}
.xb_c00283{left:229.846933pt;}
.x4_c00283{left:239.054000pt;}
.x9_c00283{left:259.833867pt;}
.x8_c00283{left:265.384000pt;}
.xc_c00283{left:288.489467pt;}
.xe_c00283{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0fb98ea41d57a2fe1fe37fc.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.134000;font-style:normal;font-weight:normal;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_c3d0176b778d681d1ea9d1f5.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.134000;font-style:normal;font-weight:normal;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_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:0.787000;font-style:normal;font-weight:normal;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_ef7a7275e6388e82b26bbf75.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:0.787000;font-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_c00284{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00284{vertical-align:-24.480000px;}
.v0_c00284{vertical-align:0.000000px;}
.v1_c00284{vertical-align:30.240000px;}
.lsd_c00284{letter-spacing:0.000000px;}
.ls8_c00284{letter-spacing:0.260640px;}
.ls14_c00284{letter-spacing:0.265680px;}
.lsb_c00284{letter-spacing:0.295200px;}
.ls9_c00284{letter-spacing:0.324720px;}
.ls13_c00284{letter-spacing:0.438171px;}
.ls7_c00284{letter-spacing:0.490440px;}
.lsc_c00284{letter-spacing:0.513648px;}
.lsa_c00284{letter-spacing:0.531360px;}
.ls5_c00284{letter-spacing:0.536040px;}
.ls11_c00284{letter-spacing:0.690768px;}
.ls6_c00284{letter-spacing:0.710640px;}
.ls4_c00284{letter-spacing:0.824640px;}
.ls3_c00284{letter-spacing:4.964520px;}
.lsf_c00284{letter-spacing:5.335200px;}
.lse_c00284{letter-spacing:5.453088px;}
.ls1_c00284{letter-spacing:5.976000px;}
.ls2_c00284{letter-spacing:6.159301px;}
.ls0_c00284{letter-spacing:6.159920px;}
.ls12_c00284{letter-spacing:6.358608px;}
.ls15_c00284{letter-spacing:8.324640px;}
.ls10_c00284{letter-spacing:9.995472px;}
.sc__c00284{text-shadow:none;}
.sc1_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00284{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc1_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00284{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00284{word-spacing:-25.992000px;}
.ws0_c00284{word-spacing:-21.546064px;}
.ws2_c00284{word-spacing:-20.947680px;}
.ws3_c00284{word-spacing:-20.016000px;}
.ws5_c00284{word-spacing:-16.944480px;}
.ws4_c00284{word-spacing:-10.008000px;}
.ws6_c00284{word-spacing:0.000000px;}
._11_c00284{margin-left:-10.391040px;}
._10_c00284{margin-left:-9.387360px;}
._16_c00284{margin-left:-8.206560px;}
._14_c00284{margin-left:-6.907680px;}
._13_c00284{margin-left:-5.904000px;}
._15_c00284{margin-left:-4.782240px;}
._12_c00284{margin-left:-1.062720px;}
._0_c00284{width:1.296000px;}
._4_c00284{width:2.736000px;}
._5_c00284{width:4.176000px;}
._7_c00284{width:5.616000px;}
._8_c00284{width:6.912000px;}
._9_c00284{width:7.951800px;}
._3_c00284{width:9.432000px;}
._c_c00284{width:10.728000px;}
._b_c00284{width:11.880000px;}
._a_c00284{width:13.608000px;}
._2_c00284{width:14.616000px;}
._f_c00284{width:15.696000px;}
._1_c00284{width:21.314400px;}
._6_c00284{width:22.461600px;}
._d_c00284{width:23.526000px;}
._e_c00284{width:42.768000px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs5_c00284{font-size:36.000000px;}
.fs4_c00284{font-size:41.760000px;}
.fs3_c00284{font-size:56.160000px;}
.fs2_c00284{font-size:57.888403px;}
.fs6_c00284{font-size:59.040000px;}
.fs8_c00284{font-size:60.000000px;}
.fs7_c00284{font-size:60.857039px;}
.fs0_c00284{font-size:72.000000px;}
.fs1_c00284{font-size:74.215901px;}
.y0_c00284{bottom:0.000000px;}
.y30_c00284{bottom:3.120150px;}
.y2f_c00284{bottom:34.744500px;}
.y1_c00284{bottom:54.000000px;}
.y2e_c00284{bottom:61.605000px;}
.y2d_c00284{bottom:72.766800px;}
.y2c_c00284{bottom:96.525000px;}
.y2b_c00284{bottom:107.685000px;}
.y2a_c00284{bottom:125.325000px;}
.y29_c00284{bottom:131.445000px;}
.y28_c00284{bottom:142.961040px;}
.y27_c00284{bottom:166.365000px;}
.y26_c00284{bottom:177.886800px;}
.y25_c00284{bottom:201.645000px;}
.y24_c00284{bottom:228.285000px;}
.y23_c00284{bottom:287.685000px;}
.y22_c00284{bottom:308.925000px;}
.y21_c00284{bottom:329.805000px;}
.y20_c00284{bottom:351.045000px;}
.y1f_c00284{bottom:387.045000px;}
.y1e_c00284{bottom:407.925000px;}
.y1d_c00284{bottom:428.805000px;}
.y1c_c00284{bottom:450.765000px;}
.y1b_c00284{bottom:471.285000px;}
.y1a_c00284{bottom:492.525000px;}
.y19_c00284{bottom:513.405000px;}
.y18_c00284{bottom:534.285000px;}
.y17_c00284{bottom:555.525000px;}
.y16_c00284{bottom:591.525000px;}
.y15_c00284{bottom:612.405000px;}
.y14_c00284{bottom:648.405000px;}
.y13_c00284{bottom:686.925000px;}
.y12_c00284{bottom:725.085000px;}
.y11_c00284{bottom:761.085000px;}
.y10_c00284{bottom:781.965000px;}
.yf_c00284{bottom:802.845000px;}
.ye_c00284{bottom:824.085000px;}
.yd_c00284{bottom:844.965000px;}
.yc_c00284{bottom:865.845000px;}
.yb_c00284{bottom:901.845000px;}
.ya_c00284{bottom:923.085000px;}
.y9_c00284{bottom:943.965000px;}
.y8_c00284{bottom:964.845000px;}
.y7_c00284{bottom:986.085000px;}
.y6_c00284{bottom:1006.965000px;}
.y5_c00284{bottom:1027.845000px;}
.y4_c00284{bottom:1049.085000px;}
.y3_c00284{bottom:1085.085000px;}
.y2_c00284{bottom:1138.365000px;}
.h9_c00284{height:19.255500px;}
.h6_c00284{height:32.616000px;}
.ha_c00284{height:46.320000px;}
.h7_c00284{height:53.490240px;}
.h8_c00284{height:55.136477px;}
.h3_c00284{height:65.232000px;}
.h4_c00284{height:67.239607px;}
.h5_c00284{height:68.074560px;}
.h2_c00284{height:1201.365000px;}
.h0_c00284{height:1262.835000px;}
.h1_c00284{height:1263.000000px;}
.w3_c00284{width:25.020000px;}
.w2_c00284{width:863.955000px;}
.w0_c00284{width:892.935000px;}
.w1_c00284{width:893.250000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:14.490000px;}
.x2_c00284{left:113.040150px;}
.x11_c00284{left:119.034000px;}
.x3_c00284{left:154.043700px;}
.x5_c00284{left:167.062800px;}
.x12_c00284{left:191.781750px;}
.x4_c00284{left:202.516800px;}
.xf_c00284{left:214.274100px;}
.x6_c00284{left:233.854650px;}
.x10_c00284{left:288.526200px;}
.x7_c00284{left:330.063300px;}
.x9_c00284{left:379.093200px;}
.xb_c00284{left:398.113050px;}
.xc_c00284{left:407.113050px;}
.x8_c00284{left:414.462150px;}
.xa_c00284{left:420.078300px;}
.xd_c00284{left:492.591000px;}
.xe_c00284{left:568.555950px;}
.x13_c00284{left:734.565750px;}
.x14_c00284{left:759.915000px;}
@media print{
.v2_c00284{vertical-align:-21.760000pt;}
.v0_c00284{vertical-align:0.000000pt;}
.v1_c00284{vertical-align:26.880000pt;}
.lsd_c00284{letter-spacing:0.000000pt;}
.ls8_c00284{letter-spacing:0.231680pt;}
.ls14_c00284{letter-spacing:0.236160pt;}
.lsb_c00284{letter-spacing:0.262400pt;}
.ls9_c00284{letter-spacing:0.288640pt;}
.ls13_c00284{letter-spacing:0.389485pt;}
.ls7_c00284{letter-spacing:0.435947pt;}
.lsc_c00284{letter-spacing:0.456576pt;}
.lsa_c00284{letter-spacing:0.472320pt;}
.ls5_c00284{letter-spacing:0.476480pt;}
.ls11_c00284{letter-spacing:0.614016pt;}
.ls6_c00284{letter-spacing:0.631680pt;}
.ls4_c00284{letter-spacing:0.733013pt;}
.ls3_c00284{letter-spacing:4.412907pt;}
.lsf_c00284{letter-spacing:4.742400pt;}
.lse_c00284{letter-spacing:4.847189pt;}
.ls1_c00284{letter-spacing:5.312000pt;}
.ls2_c00284{letter-spacing:5.474935pt;}
.ls0_c00284{letter-spacing:5.475484pt;}
.ls12_c00284{letter-spacing:5.652096pt;}
.ls15_c00284{letter-spacing:7.399680pt;}
.ls10_c00284{letter-spacing:8.884864pt;}
.ws1_c00284{word-spacing:-23.104000pt;}
.ws0_c00284{word-spacing:-19.152057pt;}
.ws2_c00284{word-spacing:-18.620160pt;}
.ws3_c00284{word-spacing:-17.792000pt;}
.ws5_c00284{word-spacing:-15.061760pt;}
.ws4_c00284{word-spacing:-8.896000pt;}
.ws6_c00284{word-spacing:0.000000pt;}
._11_c00284{margin-left:-9.236480pt;}
._10_c00284{margin-left:-8.344320pt;}
._16_c00284{margin-left:-7.294720pt;}
._14_c00284{margin-left:-6.140160pt;}
._13_c00284{margin-left:-5.248000pt;}
._15_c00284{margin-left:-4.250880pt;}
._12_c00284{margin-left:-0.944640pt;}
._0_c00284{width:1.152000pt;}
._4_c00284{width:2.432000pt;}
._5_c00284{width:3.712000pt;}
._7_c00284{width:4.992000pt;}
._8_c00284{width:6.144000pt;}
._9_c00284{width:7.068267pt;}
._3_c00284{width:8.384000pt;}
._c_c00284{width:9.536000pt;}
._b_c00284{width:10.560000pt;}
._a_c00284{width:12.096000pt;}
._2_c00284{width:12.992000pt;}
._f_c00284{width:13.952000pt;}
._1_c00284{width:18.946133pt;}
._6_c00284{width:19.965867pt;}
._d_c00284{width:20.912000pt;}
._e_c00284{width:38.016000pt;}
.fs5_c00284{font-size:32.000000pt;}
.fs4_c00284{font-size:37.120000pt;}
.fs3_c00284{font-size:49.920000pt;}
.fs2_c00284{font-size:51.456358pt;}
.fs6_c00284{font-size:52.480000pt;}
.fs8_c00284{font-size:53.333333pt;}
.fs7_c00284{font-size:54.095146pt;}
.fs0_c00284{font-size:64.000000pt;}
.fs1_c00284{font-size:65.969690pt;}
.y0_c00284{bottom:0.000000pt;}
.y30_c00284{bottom:2.773467pt;}
.y2f_c00284{bottom:30.884000pt;}
.y1_c00284{bottom:48.000000pt;}
.y2e_c00284{bottom:54.760000pt;}
.y2d_c00284{bottom:64.681600pt;}
.y2c_c00284{bottom:85.800000pt;}
.y2b_c00284{bottom:95.720000pt;}
.y2a_c00284{bottom:111.400000pt;}
.y29_c00284{bottom:116.840000pt;}
.y28_c00284{bottom:127.076480pt;}
.y27_c00284{bottom:147.880000pt;}
.y26_c00284{bottom:158.121600pt;}
.y25_c00284{bottom:179.240000pt;}
.y24_c00284{bottom:202.920000pt;}
.y23_c00284{bottom:255.720000pt;}
.y22_c00284{bottom:274.600000pt;}
.y21_c00284{bottom:293.160000pt;}
.y20_c00284{bottom:312.040000pt;}
.y1f_c00284{bottom:344.040000pt;}
.y1e_c00284{bottom:362.600000pt;}
.y1d_c00284{bottom:381.160000pt;}
.y1c_c00284{bottom:400.680000pt;}
.y1b_c00284{bottom:418.920000pt;}
.y1a_c00284{bottom:437.800000pt;}
.y19_c00284{bottom:456.360000pt;}
.y18_c00284{bottom:474.920000pt;}
.y17_c00284{bottom:493.800000pt;}
.y16_c00284{bottom:525.800000pt;}
.y15_c00284{bottom:544.360000pt;}
.y14_c00284{bottom:576.360000pt;}
.y13_c00284{bottom:610.600000pt;}
.y12_c00284{bottom:644.520000pt;}
.y11_c00284{bottom:676.520000pt;}
.y10_c00284{bottom:695.080000pt;}
.yf_c00284{bottom:713.640000pt;}
.ye_c00284{bottom:732.520000pt;}
.yd_c00284{bottom:751.080000pt;}
.yc_c00284{bottom:769.640000pt;}
.yb_c00284{bottom:801.640000pt;}
.ya_c00284{bottom:820.520000pt;}
.y9_c00284{bottom:839.080000pt;}
.y8_c00284{bottom:857.640000pt;}
.y7_c00284{bottom:876.520000pt;}
.y6_c00284{bottom:895.080000pt;}
.y5_c00284{bottom:913.640000pt;}
.y4_c00284{bottom:932.520000pt;}
.y3_c00284{bottom:964.520000pt;}
.y2_c00284{bottom:1011.880000pt;}
.h9_c00284{height:17.116000pt;}
.h6_c00284{height:28.992000pt;}
.ha_c00284{height:41.173333pt;}
.h7_c00284{height:47.546880pt;}
.h8_c00284{height:49.010202pt;}
.h3_c00284{height:57.984000pt;}
.h4_c00284{height:59.768539pt;}
.h5_c00284{height:60.510720pt;}
.h2_c00284{height:1067.880000pt;}
.h0_c00284{height:1122.520000pt;}
.h1_c00284{height:1122.666667pt;}
.w3_c00284{width:22.240000pt;}
.w2_c00284{width:767.960000pt;}
.w0_c00284{width:793.720000pt;}
.w1_c00284{width:794.000000pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:12.880000pt;}
.x2_c00284{left:100.480133pt;}
.x11_c00284{left:105.808000pt;}
.x3_c00284{left:136.927733pt;}
.x5_c00284{left:148.500267pt;}
.x12_c00284{left:170.472667pt;}
.x4_c00284{left:180.014933pt;}
.xf_c00284{left:190.465867pt;}
.x6_c00284{left:207.870800pt;}
.x10_c00284{left:256.467733pt;}
.x7_c00284{left:293.389600pt;}
.x9_c00284{left:336.971733pt;}
.xb_c00284{left:353.878267pt;}
.xc_c00284{left:361.878267pt;}
.x8_c00284{left:368.410800pt;}
.xa_c00284{left:373.402933pt;}
.xd_c00284{left:437.858667pt;}
.xe_c00284{left:505.383067pt;}
.x13_c00284{left:652.947333pt;}
.x14_c00284{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dcebbf30a2f388ee3577f24b.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.134000;font-style:normal;font-weight:normal;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_3679a18efaea585bdc6ba14f.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.134000;font-style:normal;font-weight:normal;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_d4aad4a11a411b5687ad7b0c.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:0.787000;font-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_c00285{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00285{vertical-align:-24.480000px;}
.v0_c00285{vertical-align:0.000000px;}
.v1_c00285{vertical-align:30.240000px;}
.lsd_c00285{letter-spacing:-0.179568px;}
.lsb_c00285{letter-spacing:0.000000px;}
.ls16_c00285{letter-spacing:0.144000px;}
.ls8_c00285{letter-spacing:0.236160px;}
.ls7_c00285{letter-spacing:0.265680px;}
.lsa_c00285{letter-spacing:0.354240px;}
.ls10_c00285{letter-spacing:0.478224px;}
.ls9_c00285{letter-spacing:0.513648px;}
.ls6_c00285{letter-spacing:0.531360px;}
.ls15_c00285{letter-spacing:0.547713px;}
.ls5_c00285{letter-spacing:0.626400px;}
.ls13_c00285{letter-spacing:0.690768px;}
.ls3_c00285{letter-spacing:0.695040px;}
.ls14_c00285{letter-spacing:0.712027px;}
.ls11_c00285{letter-spacing:0.797040px;}
.ls4_c00285{letter-spacing:0.842640px;}
.ls12_c00285{letter-spacing:1.357920px;}
.lsf_c00285{letter-spacing:1.428768px;}
.lsc_c00285{letter-spacing:5.430672px;}
.ls1_c00285{letter-spacing:5.976000px;}
.ls2_c00285{letter-spacing:5.980800px;}
.ls0_c00285{letter-spacing:6.159920px;}
.lse_c00285{letter-spacing:6.552000px;}
.sc__c00285{text-shadow:none;}
.sc1_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00285{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc1_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00285{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00285{word-spacing:-21.043152px;}
.ws5_c00285{word-spacing:-17.630284px;}
.ws4_c00285{word-spacing:-16.944480px;}
.ws1_c00285{word-spacing:-11.609280px;}
.ws2_c00285{word-spacing:-11.429712px;}
.ws6_c00285{word-spacing:-10.152000px;}
.ws3_c00285{word-spacing:-10.008000px;}
.ws7_c00285{word-spacing:0.000000px;}
._a_c00285{margin-left:-6.606984px;}
._10_c00285{margin-left:-1.948320px;}
._6_c00285{width:1.152000px;}
._2_c00285{width:2.664000px;}
._4_c00285{width:4.176000px;}
._3_c00285{width:5.328000px;}
._9_c00285{width:6.552000px;}
._e_c00285{width:7.632000px;}
._5_c00285{width:9.072000px;}
._7_c00285{width:10.224000px;}
._f_c00285{width:12.960000px;}
._d_c00285{width:14.760000px;}
._1_c00285{width:16.796400px;}
._0_c00285{width:18.648000px;}
._c_c00285{width:25.776000px;}
._b_c00285{width:27.072000px;}
._8_c00285{width:44.640000px;}
.fc0_c00285{color:rgb(0,0,0);}
.fs4_c00285{font-size:36.000000px;}
.fs3_c00285{font-size:41.760000px;}
.fs2_c00285{font-size:56.160000px;}
.fs5_c00285{font-size:59.040000px;}
.fs7_c00285{font-size:60.000000px;}
.fs6_c00285{font-size:60.857039px;}
.fs0_c00285{font-size:72.000000px;}
.fs1_c00285{font-size:74.215901px;}
.y0_c00285{bottom:0.000000px;}
.y32_c00285{bottom:3.120150px;}
.y31_c00285{bottom:34.744500px;}
.y1_c00285{bottom:54.000000px;}
.y30_c00285{bottom:61.605000px;}
.y2f_c00285{bottom:78.885000px;}
.y2e_c00285{bottom:96.525000px;}
.y2d_c00285{bottom:107.685000px;}
.y2c_c00285{bottom:113.805000px;}
.y2b_c00285{bottom:125.325000px;}
.y2a_c00285{bottom:131.445000px;}
.y29_c00285{bottom:149.085000px;}
.y28_c00285{bottom:160.245000px;}
.y27_c00285{bottom:160.246800px;}
.y26_c00285{bottom:184.005000px;}
.y25_c00285{bottom:195.522840px;}
.y24_c00285{bottom:212.806800px;}
.y23_c00285{bottom:236.565000px;}
.y22_c00285{bottom:263.205000px;}
.y21_c00285{bottom:334.845000px;}
.y20_c00285{bottom:355.725000px;}
.y1f_c00285{bottom:376.965000px;}
.y1e_c00285{bottom:397.845000px;}
.y1d_c00285{bottom:433.845000px;}
.y1c_c00285{bottom:454.725000px;}
.y1b_c00285{bottom:490.725000px;}
.y1a_c00285{bottom:511.965000px;}
.y19_c00285{bottom:532.845000px;}
.y18_c00285{bottom:553.725000px;}
.y17_c00285{bottom:574.965000px;}
.y16_c00285{bottom:595.845000px;}
.y15_c00285{bottom:616.725000px;}
.y14_c00285{bottom:637.965000px;}
.y13_c00285{bottom:673.965000px;}
.y12_c00285{bottom:694.845000px;}
.y11_c00285{bottom:730.845000px;}
.y10_c00285{bottom:752.085000px;}
.yf_c00285{bottom:772.965000px;}
.ye_c00285{bottom:793.845000px;}
.yd_c00285{bottom:815.085000px;}
.yc_c00285{bottom:835.965000px;}
.yb_c00285{bottom:856.845000px;}
.ya_c00285{bottom:878.085000px;}
.y9_c00285{bottom:898.965000px;}
.y8_c00285{bottom:919.845000px;}
.y7_c00285{bottom:955.845000px;}
.y6_c00285{bottom:991.845000px;}
.y5_c00285{bottom:1027.845000px;}
.y4_c00285{bottom:1063.845000px;}
.y3_c00285{bottom:1085.085000px;}
.y2_c00285{bottom:1138.365000px;}
.h9_c00285{height:19.255500px;}
.h6_c00285{height:32.616000px;}
.ha_c00285{height:46.320000px;}
.h7_c00285{height:53.490240px;}
.h8_c00285{height:55.136477px;}
.h3_c00285{height:65.232000px;}
.h4_c00285{height:67.239607px;}
.h5_c00285{height:68.074560px;}
.h2_c00285{height:1201.365000px;}
.h0_c00285{height:1262.835000px;}
.h1_c00285{height:1263.000000px;}
.w3_c00285{width:25.020000px;}
.w2_c00285{width:863.955000px;}
.w0_c00285{width:892.935000px;}
.w1_c00285{width:893.250000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:14.490000px;}
.x2_c00285{left:113.040150px;}
.x7_c00285{left:150.029700px;}
.xa_c00285{left:152.212650px;}
.x3_c00285{left:154.043700px;}
.x8_c00285{left:157.213950px;}
.xb_c00285{left:180.532050px;}
.x9_c00285{left:193.873500px;}
.x4_c00285{left:202.516800px;}
.xc_c00285{left:228.019350px;}
.xe_c00285{left:252.268500px;}
.xd_c00285{left:429.732450px;}
.x5_c00285{left:521.560500px;}
.x6_c00285{left:618.488550px;}
.xf_c00285{left:759.915000px;}
@media print{
.v2_c00285{vertical-align:-21.760000pt;}
.v0_c00285{vertical-align:0.000000pt;}
.v1_c00285{vertical-align:26.880000pt;}
.lsd_c00285{letter-spacing:-0.159616pt;}
.lsb_c00285{letter-spacing:0.000000pt;}
.ls16_c00285{letter-spacing:0.128000pt;}
.ls8_c00285{letter-spacing:0.209920pt;}
.ls7_c00285{letter-spacing:0.236160pt;}
.lsa_c00285{letter-spacing:0.314880pt;}
.ls10_c00285{letter-spacing:0.425088pt;}
.ls9_c00285{letter-spacing:0.456576pt;}
.ls6_c00285{letter-spacing:0.472320pt;}
.ls15_c00285{letter-spacing:0.486856pt;}
.ls5_c00285{letter-spacing:0.556800pt;}
.ls13_c00285{letter-spacing:0.614016pt;}
.ls3_c00285{letter-spacing:0.617813pt;}
.ls14_c00285{letter-spacing:0.632913pt;}
.ls11_c00285{letter-spacing:0.708480pt;}
.ls4_c00285{letter-spacing:0.749013pt;}
.ls12_c00285{letter-spacing:1.207040pt;}
.lsf_c00285{letter-spacing:1.270016pt;}
.lsc_c00285{letter-spacing:4.827264pt;}
.ls1_c00285{letter-spacing:5.312000pt;}
.ls2_c00285{letter-spacing:5.316267pt;}
.ls0_c00285{letter-spacing:5.475484pt;}
.lse_c00285{letter-spacing:5.824000pt;}
.ws0_c00285{word-spacing:-18.705024pt;}
.ws5_c00285{word-spacing:-15.671364pt;}
.ws4_c00285{word-spacing:-15.061760pt;}
.ws1_c00285{word-spacing:-10.319360pt;}
.ws2_c00285{word-spacing:-10.159744pt;}
.ws6_c00285{word-spacing:-9.024000pt;}
.ws3_c00285{word-spacing:-8.896000pt;}
.ws7_c00285{word-spacing:0.000000pt;}
._a_c00285{margin-left:-5.872875pt;}
._10_c00285{margin-left:-1.731840pt;}
._6_c00285{width:1.024000pt;}
._2_c00285{width:2.368000pt;}
._4_c00285{width:3.712000pt;}
._3_c00285{width:4.736000pt;}
._9_c00285{width:5.824000pt;}
._e_c00285{width:6.784000pt;}
._5_c00285{width:8.064000pt;}
._7_c00285{width:9.088000pt;}
._f_c00285{width:11.520000pt;}
._d_c00285{width:13.120000pt;}
._1_c00285{width:14.930133pt;}
._0_c00285{width:16.576000pt;}
._c_c00285{width:22.912000pt;}
._b_c00285{width:24.064000pt;}
._8_c00285{width:39.680000pt;}
.fs4_c00285{font-size:32.000000pt;}
.fs3_c00285{font-size:37.120000pt;}
.fs2_c00285{font-size:49.920000pt;}
.fs5_c00285{font-size:52.480000pt;}
.fs7_c00285{font-size:53.333333pt;}
.fs6_c00285{font-size:54.095146pt;}
.fs0_c00285{font-size:64.000000pt;}
.fs1_c00285{font-size:65.969690pt;}
.y0_c00285{bottom:0.000000pt;}
.y32_c00285{bottom:2.773467pt;}
.y31_c00285{bottom:30.884000pt;}
.y1_c00285{bottom:48.000000pt;}
.y30_c00285{bottom:54.760000pt;}
.y2f_c00285{bottom:70.120000pt;}
.y2e_c00285{bottom:85.800000pt;}
.y2d_c00285{bottom:95.720000pt;}
.y2c_c00285{bottom:101.160000pt;}
.y2b_c00285{bottom:111.400000pt;}
.y2a_c00285{bottom:116.840000pt;}
.y29_c00285{bottom:132.520000pt;}
.y28_c00285{bottom:142.440000pt;}
.y27_c00285{bottom:142.441600pt;}
.y26_c00285{bottom:163.560000pt;}
.y25_c00285{bottom:173.798080pt;}
.y24_c00285{bottom:189.161600pt;}
.y23_c00285{bottom:210.280000pt;}
.y22_c00285{bottom:233.960000pt;}
.y21_c00285{bottom:297.640000pt;}
.y20_c00285{bottom:316.200000pt;}
.y1f_c00285{bottom:335.080000pt;}
.y1e_c00285{bottom:353.640000pt;}
.y1d_c00285{bottom:385.640000pt;}
.y1c_c00285{bottom:404.200000pt;}
.y1b_c00285{bottom:436.200000pt;}
.y1a_c00285{bottom:455.080000pt;}
.y19_c00285{bottom:473.640000pt;}
.y18_c00285{bottom:492.200000pt;}
.y17_c00285{bottom:511.080000pt;}
.y16_c00285{bottom:529.640000pt;}
.y15_c00285{bottom:548.200000pt;}
.y14_c00285{bottom:567.080000pt;}
.y13_c00285{bottom:599.080000pt;}
.y12_c00285{bottom:617.640000pt;}
.y11_c00285{bottom:649.640000pt;}
.y10_c00285{bottom:668.520000pt;}
.yf_c00285{bottom:687.080000pt;}
.ye_c00285{bottom:705.640000pt;}
.yd_c00285{bottom:724.520000pt;}
.yc_c00285{bottom:743.080000pt;}
.yb_c00285{bottom:761.640000pt;}
.ya_c00285{bottom:780.520000pt;}
.y9_c00285{bottom:799.080000pt;}
.y8_c00285{bottom:817.640000pt;}
.y7_c00285{bottom:849.640000pt;}
.y6_c00285{bottom:881.640000pt;}
.y5_c00285{bottom:913.640000pt;}
.y4_c00285{bottom:945.640000pt;}
.y3_c00285{bottom:964.520000pt;}
.y2_c00285{bottom:1011.880000pt;}
.h9_c00285{height:17.116000pt;}
.h6_c00285{height:28.992000pt;}
.ha_c00285{height:41.173333pt;}
.h7_c00285{height:47.546880pt;}
.h8_c00285{height:49.010202pt;}
.h3_c00285{height:57.984000pt;}
.h4_c00285{height:59.768539pt;}
.h5_c00285{height:60.510720pt;}
.h2_c00285{height:1067.880000pt;}
.h0_c00285{height:1122.520000pt;}
.h1_c00285{height:1122.666667pt;}
.w3_c00285{width:22.240000pt;}
.w2_c00285{width:767.960000pt;}
.w0_c00285{width:793.720000pt;}
.w1_c00285{width:794.000000pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:12.880000pt;}
.x2_c00285{left:100.480133pt;}
.x7_c00285{left:133.359733pt;}
.xa_c00285{left:135.300133pt;}
.x3_c00285{left:136.927733pt;}
.x8_c00285{left:139.745733pt;}
.xb_c00285{left:160.472933pt;}
.x9_c00285{left:172.332000pt;}
.x4_c00285{left:180.014933pt;}
.xc_c00285{left:202.683867pt;}
.xe_c00285{left:224.238667pt;}
.xd_c00285{left:381.984400pt;}
.x5_c00285{left:463.609333pt;}
.x6_c00285{left:549.767600pt;}
.xf_c00285{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_90476a39ca2c5be8972334e2.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.134000;font-style:normal;font-weight:normal;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_3ea5603ea07ef6194de1cf43.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.134000;font-style:normal;font-weight:normal;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_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00286{font-family:ff5_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:ff6_c00286;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff6_c00286{font-family:ff6_c00286;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00286;src:url('chunks/assets/font_ab9597231512365b55206601.woff2')format("woff");}.ff7_c00286{font-family:ff7_c00286;line-height:0.787000;font-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_c00286{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00286{vertical-align:-24.480000px;}
.v0_c00286{vertical-align:0.000000px;}
.v1_c00286{vertical-align:30.240000px;}
.lsf_c00286{letter-spacing:-0.179568px;}
.lse_c00286{letter-spacing:0.000000px;}
.ls1d_c00286{letter-spacing:0.144000px;}
.ls12_c00286{letter-spacing:0.242064px;}
.ls16_c00286{letter-spacing:0.265680px;}
.ls8_c00286{letter-spacing:0.318480px;}
.ls11_c00286{letter-spacing:0.318816px;}
.lsc_c00286{letter-spacing:0.319080px;}
.ls13_c00286{letter-spacing:0.328628px;}
.ls1c_c00286{letter-spacing:0.478224px;}
.ls9_c00286{letter-spacing:0.492942px;}
.lsd_c00286{letter-spacing:0.513648px;}
.ls6_c00286{letter-spacing:0.531360px;}
.ls17_c00286{letter-spacing:0.690768px;}
.lsa_c00286{letter-spacing:0.712027px;}
.ls18_c00286{letter-spacing:0.743904px;}
.lsb_c00286{letter-spacing:0.960000px;}
.ls19_c00286{letter-spacing:0.962352px;}
.ls1b_c00286{letter-spacing:1.263456px;}
.ls7_c00286{letter-spacing:1.265880px;}
.ls1e_c00286{letter-spacing:3.512880px;}
.ls4_c00286{letter-spacing:5.299080px;}
.ls5_c00286{letter-spacing:5.352840px;}
.ls10_c00286{letter-spacing:5.430672px;}
.ls15_c00286{letter-spacing:5.461200px;}
.ls14_c00286{letter-spacing:5.514336px;}
.ls2_c00286{letter-spacing:5.973000px;}
.ls1_c00286{letter-spacing:5.976000px;}
.ls0_c00286{letter-spacing:6.159920px;}
.ls1a_c00286{letter-spacing:6.494400px;}
.ls3_c00286{letter-spacing:54.864000px;}
.sc__c00286{text-shadow:none;}
.sc1_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00286{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc1_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00286{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00286{word-spacing:-21.874320px;}
.ws1_c00286{word-spacing:-21.043152px;}
.ws8_c00286{word-spacing:-17.411199px;}
.ws4_c00286{word-spacing:-17.246885px;}
.ws7_c00286{word-spacing:-17.157024px;}
.ws6_c00286{word-spacing:-17.103888px;}
.ws3_c00286{word-spacing:-16.944480px;}
.ws2_c00286{word-spacing:-16.413120px;}
.ws0_c00286{word-spacing:-11.429712px;}
.ws9_c00286{word-spacing:-10.152000px;}
.wsa_c00286{word-spacing:0.000000px;}
._b_c00286{margin-left:-6.882288px;}
._a_c00286{margin-left:-5.651016px;}
._d_c00286{margin-left:-3.240000px;}
._1_c00286{margin-left:-1.179360px;}
._4_c00286{width:1.944000px;}
._3_c00286{width:3.456000px;}
._9_c00286{width:4.940136px;}
._0_c00286{width:6.336000px;}
._6_c00286{width:7.344000px;}
._8_c00286{width:8.784000px;}
._5_c00286{width:10.728000px;}
._2_c00286{width:11.736000px;}
._c_c00286{width:17.942520px;}
._7_c00286{width:34.776000px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs6_c00286{font-size:36.000000px;}
.fs2_c00286{font-size:41.760000px;}
.fs3_c00286{font-size:56.160000px;}
.fs4_c00286{font-size:59.040000px;}
.fs7_c00286{font-size:60.000000px;}
.fs5_c00286{font-size:60.857039px;}
.fs0_c00286{font-size:72.000000px;}
.fs1_c00286{font-size:74.215901px;}
.y0_c00286{bottom:0.000000px;}
.y2c_c00286{bottom:3.120150px;}
.y2b_c00286{bottom:34.744500px;}
.y1_c00286{bottom:54.000000px;}
.y2a_c00286{bottom:61.605000px;}
.y29_c00286{bottom:72.766800px;}
.y28_c00286{bottom:96.525000px;}
.y27_c00286{bottom:123.165000px;}
.y26_c00286{bottom:206.685000px;}
.y25_c00286{bottom:228.285000px;}
.y23_c00286{bottom:245.565000px;}
.y24_c00286{bottom:245.925000px;}
.y22_c00286{bottom:263.205000px;}
.y21_c00286{bottom:280.845000px;}
.y20_c00286{bottom:298.485000px;}
.y1f_c00286{bottom:331.965000px;}
.y1e_c00286{bottom:367.965000px;}
.y1d_c00286{bottom:388.845000px;}
.y1c_c00286{bottom:409.725000px;}
.y1b_c00286{bottom:445.725000px;}
.y1a_c00286{bottom:466.965000px;}
.y19_c00286{bottom:487.845000px;}
.y18_c00286{bottom:508.725000px;}
.y17_c00286{bottom:529.965000px;}
.y16_c00286{bottom:565.965000px;}
.y15_c00286{bottom:586.845000px;}
.y14_c00286{bottom:622.845000px;}
.y13_c00286{bottom:644.085000px;}
.y12_c00286{bottom:680.085000px;}
.y11_c00286{bottom:716.085000px;}
.y10_c00286{bottom:736.965000px;}
.yf_c00286{bottom:757.845000px;}
.ye_c00286{bottom:779.085000px;}
.yd_c00286{bottom:799.965000px;}
.yc_c00286{bottom:835.965000px;}
.yb_c00286{bottom:856.845000px;}
.ya_c00286{bottom:878.085000px;}
.y9_c00286{bottom:898.965000px;}
.y8_c00286{bottom:919.845000px;}
.y7_c00286{bottom:955.845000px;}
.y6_c00286{bottom:991.845000px;}
.y5_c00286{bottom:1027.845000px;}
.y4_c00286{bottom:1063.845000px;}
.y3_c00286{bottom:1085.085000px;}
.y2_c00286{bottom:1138.365000px;}
.ha_c00286{height:19.255500px;}
.h9_c00286{height:32.616000px;}
.h8_c00286{height:39.350391px;}
.hb_c00286{height:46.320000px;}
.h6_c00286{height:53.490240px;}
.h7_c00286{height:55.136477px;}
.h3_c00286{height:65.232000px;}
.h4_c00286{height:67.239607px;}
.h5_c00286{height:68.074560px;}
.h2_c00286{height:1201.365000px;}
.h0_c00286{height:1262.835000px;}
.h1_c00286{height:1263.000000px;}
.w7_c00286{width:25.020000px;}
.w3_c00286{width:50.760000px;}
.w4_c00286{width:114.840000px;}
.w5_c00286{width:179.280000px;}
.w6_c00286{width:306.000000px;}
.w2_c00286{width:863.955000px;}
.w0_c00286{width:892.935000px;}
.w1_c00286{width:893.250000px;}
.x0_c00286{left:0.000000px;}
.x17_c00286{left:7.920150px;}
.x1_c00286{left:14.490000px;}
.x19_c00286{left:37.559250px;}
.x1a_c00286{left:45.059100px;}
.x1b_c00286{left:78.388050px;}
.x1e_c00286{left:102.115950px;}
.x2_c00286{left:113.040150px;}
.x16_c00286{left:119.610000px;}
.x1f_c00286{left:133.780500px;}
.x9_c00286{left:140.037600px;}
.x6_c00286{left:148.031550px;}
.x3_c00286{left:154.043700px;}
.x5_c00286{left:157.977150px;}
.x18_c00286{left:171.090000px;}
.x4_c00286{left:202.516800px;}
.x14_c00286{left:204.028500px;}
.x20_c00286{left:233.751900px;}
.x21_c00286{left:268.171050px;}
.x1c_c00286{left:286.650000px;}
.x12_c00286{left:294.144300px;}
.x13_c00286{left:305.142000px;}
.x15_c00286{left:309.039150px;}
.xa_c00286{left:313.088700px;}
.xb_c00286{left:344.084100px;}
.xc_c00286{left:363.091950px;}
.xd_c00286{left:398.083350px;}
.x1d_c00286{left:466.650000px;}
.x7_c00286{left:576.153450px;}
.xe_c00286{left:643.292400px;}
.xf_c00286{left:656.288100px;}
.x10_c00286{left:675.324450px;}
.x11_c00286{left:686.322150px;}
.x8_c00286{left:707.586900px;}
.x22_c00286{left:759.915000px;}
@media print{
.v2_c00286{vertical-align:-21.760000pt;}
.v0_c00286{vertical-align:0.000000pt;}
.v1_c00286{vertical-align:26.880000pt;}
.lsf_c00286{letter-spacing:-0.159616pt;}
.lse_c00286{letter-spacing:0.000000pt;}
.ls1d_c00286{letter-spacing:0.128000pt;}
.ls12_c00286{letter-spacing:0.215168pt;}
.ls16_c00286{letter-spacing:0.236160pt;}
.ls8_c00286{letter-spacing:0.283093pt;}
.ls11_c00286{letter-spacing:0.283392pt;}
.lsc_c00286{letter-spacing:0.283627pt;}
.ls13_c00286{letter-spacing:0.292114pt;}
.ls1c_c00286{letter-spacing:0.425088pt;}
.ls9_c00286{letter-spacing:0.438171pt;}
.lsd_c00286{letter-spacing:0.456576pt;}
.ls6_c00286{letter-spacing:0.472320pt;}
.ls17_c00286{letter-spacing:0.614016pt;}
.lsa_c00286{letter-spacing:0.632913pt;}
.ls18_c00286{letter-spacing:0.661248pt;}
.lsb_c00286{letter-spacing:0.853333pt;}
.ls19_c00286{letter-spacing:0.855424pt;}
.ls1b_c00286{letter-spacing:1.123072pt;}
.ls7_c00286{letter-spacing:1.125227pt;}
.ls1e_c00286{letter-spacing:3.122560pt;}
.ls4_c00286{letter-spacing:4.710293pt;}
.ls5_c00286{letter-spacing:4.758080pt;}
.ls10_c00286{letter-spacing:4.827264pt;}
.ls15_c00286{letter-spacing:4.854400pt;}
.ls14_c00286{letter-spacing:4.901632pt;}
.ls2_c00286{letter-spacing:5.309333pt;}
.ls1_c00286{letter-spacing:5.312000pt;}
.ls0_c00286{letter-spacing:5.475484pt;}
.ls1a_c00286{letter-spacing:5.772800pt;}
.ls3_c00286{letter-spacing:48.768000pt;}
.ws5_c00286{word-spacing:-19.443840pt;}
.ws1_c00286{word-spacing:-18.705024pt;}
.ws8_c00286{word-spacing:-15.476621pt;}
.ws4_c00286{word-spacing:-15.330564pt;}
.ws7_c00286{word-spacing:-15.250688pt;}
.ws6_c00286{word-spacing:-15.203456pt;}
.ws3_c00286{word-spacing:-15.061760pt;}
.ws2_c00286{word-spacing:-14.589440pt;}
.ws0_c00286{word-spacing:-10.159744pt;}
.ws9_c00286{word-spacing:-9.024000pt;}
.wsa_c00286{word-spacing:0.000000pt;}
._b_c00286{margin-left:-6.117589pt;}
._a_c00286{margin-left:-5.023125pt;}
._d_c00286{margin-left:-2.880000pt;}
._1_c00286{margin-left:-1.048320pt;}
._4_c00286{width:1.728000pt;}
._3_c00286{width:3.072000pt;}
._9_c00286{width:4.391232pt;}
._0_c00286{width:5.632000pt;}
._6_c00286{width:6.528000pt;}
._8_c00286{width:7.808000pt;}
._5_c00286{width:9.536000pt;}
._2_c00286{width:10.432000pt;}
._c_c00286{width:15.948907pt;}
._7_c00286{width:30.912000pt;}
.fs6_c00286{font-size:32.000000pt;}
.fs2_c00286{font-size:37.120000pt;}
.fs3_c00286{font-size:49.920000pt;}
.fs4_c00286{font-size:52.480000pt;}
.fs7_c00286{font-size:53.333333pt;}
.fs5_c00286{font-size:54.095146pt;}
.fs0_c00286{font-size:64.000000pt;}
.fs1_c00286{font-size:65.969690pt;}
.y0_c00286{bottom:0.000000pt;}
.y2c_c00286{bottom:2.773467pt;}
.y2b_c00286{bottom:30.884000pt;}
.y1_c00286{bottom:48.000000pt;}
.y2a_c00286{bottom:54.760000pt;}
.y29_c00286{bottom:64.681600pt;}
.y28_c00286{bottom:85.800000pt;}
.y27_c00286{bottom:109.480000pt;}
.y26_c00286{bottom:183.720000pt;}
.y25_c00286{bottom:202.920000pt;}
.y23_c00286{bottom:218.280000pt;}
.y24_c00286{bottom:218.600000pt;}
.y22_c00286{bottom:233.960000pt;}
.y21_c00286{bottom:249.640000pt;}
.y20_c00286{bottom:265.320000pt;}
.y1f_c00286{bottom:295.080000pt;}
.y1e_c00286{bottom:327.080000pt;}
.y1d_c00286{bottom:345.640000pt;}
.y1c_c00286{bottom:364.200000pt;}
.y1b_c00286{bottom:396.200000pt;}
.y1a_c00286{bottom:415.080000pt;}
.y19_c00286{bottom:433.640000pt;}
.y18_c00286{bottom:452.200000pt;}
.y17_c00286{bottom:471.080000pt;}
.y16_c00286{bottom:503.080000pt;}
.y15_c00286{bottom:521.640000pt;}
.y14_c00286{bottom:553.640000pt;}
.y13_c00286{bottom:572.520000pt;}
.y12_c00286{bottom:604.520000pt;}
.y11_c00286{bottom:636.520000pt;}
.y10_c00286{bottom:655.080000pt;}
.yf_c00286{bottom:673.640000pt;}
.ye_c00286{bottom:692.520000pt;}
.yd_c00286{bottom:711.080000pt;}
.yc_c00286{bottom:743.080000pt;}
.yb_c00286{bottom:761.640000pt;}
.ya_c00286{bottom:780.520000pt;}
.y9_c00286{bottom:799.080000pt;}
.y8_c00286{bottom:817.640000pt;}
.y7_c00286{bottom:849.640000pt;}
.y6_c00286{bottom:881.640000pt;}
.y5_c00286{bottom:913.640000pt;}
.y4_c00286{bottom:945.640000pt;}
.y3_c00286{bottom:964.520000pt;}
.y2_c00286{bottom:1011.880000pt;}
.ha_c00286{height:17.116000pt;}
.h9_c00286{height:28.992000pt;}
.h8_c00286{height:34.978125pt;}
.hb_c00286{height:41.173333pt;}
.h6_c00286{height:47.546880pt;}
.h7_c00286{height:49.010202pt;}
.h3_c00286{height:57.984000pt;}
.h4_c00286{height:59.768539pt;}
.h5_c00286{height:60.510720pt;}
.h2_c00286{height:1067.880000pt;}
.h0_c00286{height:1122.520000pt;}
.h1_c00286{height:1122.666667pt;}
.w7_c00286{width:22.240000pt;}
.w3_c00286{width:45.120000pt;}
.w4_c00286{width:102.080000pt;}
.w5_c00286{width:159.360000pt;}
.w6_c00286{width:272.000000pt;}
.w2_c00286{width:767.960000pt;}
.w0_c00286{width:793.720000pt;}
.w1_c00286{width:794.000000pt;}
.x0_c00286{left:0.000000pt;}
.x17_c00286{left:7.040133pt;}
.x1_c00286{left:12.880000pt;}
.x19_c00286{left:33.386000pt;}
.x1a_c00286{left:40.052533pt;}
.x1b_c00286{left:69.678267pt;}
.x1e_c00286{left:90.769733pt;}
.x2_c00286{left:100.480133pt;}
.x16_c00286{left:106.320000pt;}
.x1f_c00286{left:118.916000pt;}
.x9_c00286{left:124.477867pt;}
.x6_c00286{left:131.583600pt;}
.x3_c00286{left:136.927733pt;}
.x5_c00286{left:140.424133pt;}
.x18_c00286{left:152.080000pt;}
.x4_c00286{left:180.014933pt;}
.x14_c00286{left:181.358667pt;}
.x20_c00286{left:207.779467pt;}
.x21_c00286{left:238.374267pt;}
.x1c_c00286{left:254.800000pt;}
.x12_c00286{left:261.461600pt;}
.x13_c00286{left:271.237333pt;}
.x15_c00286{left:274.701467pt;}
.xa_c00286{left:278.301067pt;}
.xb_c00286{left:305.852533pt;}
.xc_c00286{left:322.748400pt;}
.xd_c00286{left:353.851867pt;}
.x1d_c00286{left:414.800000pt;}
.x7_c00286{left:512.136400pt;}
.xe_c00286{left:571.815467pt;}
.xf_c00286{left:583.367200pt;}
.x10_c00286{left:600.288400pt;}
.x11_c00286{left:610.064133pt;}
.x8_c00286{left:628.966133pt;}
.x22_c00286{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5776483ea5b4f0d48286ae2.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.134000;font-style:normal;font-weight:normal;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_4bb36231b751185541e5c9fb.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.134000;font-style:normal;font-weight:normal;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_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:0.787000;font-style:normal;font-weight:normal;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_6539fa751c231f3b751bd791.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:0.787000;font-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_c00287{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00287{vertical-align:-24.480000px;}
.v0_c00287{vertical-align:0.000000px;}
.v1_c00287{vertical-align:30.240000px;}
.ls16_c00287{letter-spacing:-0.179568px;}
.lsf_c00287{letter-spacing:0.000000px;}
.ls19_c00287{letter-spacing:0.144000px;}
.ls6_c00287{letter-spacing:0.236160px;}
.ls12_c00287{letter-spacing:0.265680px;}
.ls1c_c00287{letter-spacing:0.273857px;}
.ls2_c00287{letter-spacing:0.295200px;}
.ls1b_c00287{letter-spacing:0.318816px;}
.ls9_c00287{letter-spacing:0.354240px;}
.lsa_c00287{letter-spacing:0.478224px;}
.ls4_c00287{letter-spacing:0.492942px;}
.ls7_c00287{letter-spacing:0.513648px;}
.ls3_c00287{letter-spacing:0.531360px;}
.lsd_c00287{letter-spacing:0.543168px;}
.ls5_c00287{letter-spacing:0.549072px;}
.lse_c00287{letter-spacing:0.560880px;}
.ls1d_c00287{letter-spacing:0.584496px;}
.ls13_c00287{letter-spacing:0.690768px;}
.ls8_c00287{letter-spacing:0.712027px;}
.ls1a_c00287{letter-spacing:0.773424px;}
.ls10_c00287{letter-spacing:0.962352px;}
.ls11_c00287{letter-spacing:5.154192px;}
.ls15_c00287{letter-spacing:5.430672px;}
.lsb_c00287{letter-spacing:5.975400px;}
.ls1_c00287{letter-spacing:5.976000px;}
.ls0_c00287{letter-spacing:6.159920px;}
.ls14_c00287{letter-spacing:12.764448px;}
.ls17_c00287{letter-spacing:16.185600px;}
.lsc_c00287{letter-spacing:17.640000px;}
.ls18_c00287{letter-spacing:19.951200px;}
.sc__c00287{text-shadow:none;}
.sc1_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00287{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc1_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00287{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00287{word-spacing:-21.043152px;}
.ws1_c00287{word-spacing:-17.630284px;}
.ws0_c00287{word-spacing:-17.411199px;}
.ws5_c00287{word-spacing:-17.103888px;}
.ws6_c00287{word-spacing:-16.944480px;}
.ws3_c00287{word-spacing:-11.429712px;}
.ws4_c00287{word-spacing:-10.152000px;}
.ws7_c00287{word-spacing:0.000000px;}
._18_c00287{margin-left:-19.958400px;}
._13_c00287{margin-left:-17.640000px;}
._f_c00287{margin-left:-15.651984px;}
._9_c00287{margin-left:-12.870720px;}
._a_c00287{margin-left:-11.796192px;}
._4_c00287{margin-left:-4.723200px;}
._3_c00287{margin-left:-3.713616px;}
._0_c00287{margin-left:-1.121760px;}
._7_c00287{width:1.033200px;}
._c_c00287{width:2.321280px;}
._1_c00287{width:3.483360px;}
._2_c00287{width:4.605120px;}
._6_c00287{width:6.081120px;}
._5_c00287{width:7.645680px;}
._d_c00287{width:8.657280px;}
._16_c00287{width:9.936000px;}
._10_c00287{width:11.376000px;}
._8_c00287{width:12.516480px;}
._19_c00287{width:13.654080px;}
._e_c00287{width:16.200000px;}
._12_c00287{width:17.640000px;}
._b_c00287{width:21.168000px;}
._17_c00287{width:22.176000px;}
._11_c00287{width:25.488000px;}
._14_c00287{width:27.144000px;}
._15_c00287{width:29.016000px;}
._1a_c00287{width:35.856000px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs6_c00287{font-size:36.000000px;}
.fs5_c00287{font-size:41.760000px;}
.fs4_c00287{font-size:56.160000px;}
.fs2_c00287{font-size:59.040000px;}
.fs7_c00287{font-size:60.000000px;}
.fs3_c00287{font-size:60.857039px;}
.fs0_c00287{font-size:72.000000px;}
.fs1_c00287{font-size:74.215901px;}
.y0_c00287{bottom:0.000000px;}
.y34_c00287{bottom:3.120150px;}
.y33_c00287{bottom:34.744500px;}
.y1_c00287{bottom:54.000000px;}
.y32_c00287{bottom:55.485000px;}
.y31_c00287{bottom:61.605000px;}
.y30_c00287{bottom:72.765000px;}
.y2f_c00287{bottom:78.885000px;}
.y2e_c00287{bottom:96.525000px;}
.y2d_c00287{bottom:107.688600px;}
.y2c_c00287{bottom:125.326800px;}
.y2b_c00287{bottom:149.085000px;}
.y2a_c00287{bottom:175.725000px;}
.y29_c00287{bottom:198.405000px;}
.y28_c00287{bottom:219.285000px;}
.y27_c00287{bottom:241.245000px;}
.y26_c00287{bottom:262.485000px;}
.y25_c00287{bottom:283.365000px;}
.y24_c00287{bottom:304.245000px;}
.y23_c00287{bottom:325.485000px;}
.y22_c00287{bottom:346.365000px;}
.y21_c00287{bottom:367.245000px;}
.y20_c00287{bottom:403.245000px;}
.y1f_c00287{bottom:424.485000px;}
.y1e_c00287{bottom:445.365000px;}
.y1d_c00287{bottom:466.245000px;}
.y1c_c00287{bottom:487.485000px;}
.y1b_c00287{bottom:523.485000px;}
.y1a_c00287{bottom:544.365000px;}
.y19_c00287{bottom:565.245000px;}
.y18_c00287{bottom:586.485000px;}
.y17_c00287{bottom:607.365000px;}
.y16_c00287{bottom:628.245000px;}
.y15_c00287{bottom:649.485000px;}
.y14_c00287{bottom:670.365000px;}
.y13_c00287{bottom:691.245000px;}
.y12_c00287{bottom:712.485000px;}
.y11_c00287{bottom:748.485000px;}
.y10_c00287{bottom:769.365000px;}
.yf_c00287{bottom:790.605000px;}
.ye_c00287{bottom:811.485000px;}
.yd_c00287{bottom:832.365000px;}
.yc_c00287{bottom:853.605000px;}
.yb_c00287{bottom:874.485000px;}
.ya_c00287{bottom:910.485000px;}
.y9_c00287{bottom:946.485000px;}
.y8_c00287{bottom:967.361040px;}
.y7_c00287{bottom:984.645000px;}
.y6_c00287{bottom:1017.402840px;}
.y5_c00287{bottom:1034.686800px;}
.y4_c00287{bottom:1052.325000px;}
.y3_c00287{bottom:1085.085000px;}
.y2_c00287{bottom:1138.365000px;}
.h9_c00287{height:19.255500px;}
.h8_c00287{height:32.616000px;}
.ha_c00287{height:46.320000px;}
.h5_c00287{height:53.490240px;}
.h6_c00287{height:55.136477px;}
.h3_c00287{height:65.232000px;}
.h4_c00287{height:67.239607px;}
.h7_c00287{height:68.074560px;}
.h2_c00287{height:1201.365000px;}
.h0_c00287{height:1262.835000px;}
.h1_c00287{height:1263.000000px;}
.w3_c00287{width:25.020000px;}
.w2_c00287{width:863.955000px;}
.w0_c00287{width:892.935000px;}
.w1_c00287{width:893.250000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:14.490000px;}
.x2_c00287{left:113.040150px;}
.x10_c00287{left:127.217700px;}
.x7_c00287{left:133.034550px;}
.x3_c00287{left:154.043700px;}
.x14_c00287{left:156.406200px;}
.x11_c00287{left:159.707550px;}
.x8_c00287{left:183.040950px;}
.x4_c00287{left:202.516800px;}
.x12_c00287{left:209.745150px;}
.x15_c00287{left:219.748950px;}
.xe_c00287{left:224.016750px;}
.x13_c00287{left:242.235000px;}
.xf_c00287{left:250.998000px;}
.x9_c00287{left:261.087900px;}
.xc_c00287{left:493.009650px;}
.x5_c00287{left:504.182700px;}
.x6_c00287{left:535.847100px;}
.xa_c00287{left:541.265700px;}
.xd_c00287{left:584.710350px;}
.xb_c00287{left:630.385950px;}
.x16_c00287{left:759.915000px;}
@media print{
.v2_c00287{vertical-align:-21.760000pt;}
.v0_c00287{vertical-align:0.000000pt;}
.v1_c00287{vertical-align:26.880000pt;}
.ls16_c00287{letter-spacing:-0.159616pt;}
.lsf_c00287{letter-spacing:0.000000pt;}
.ls19_c00287{letter-spacing:0.128000pt;}
.ls6_c00287{letter-spacing:0.209920pt;}
.ls12_c00287{letter-spacing:0.236160pt;}
.ls1c_c00287{letter-spacing:0.243428pt;}
.ls2_c00287{letter-spacing:0.262400pt;}
.ls1b_c00287{letter-spacing:0.283392pt;}
.ls9_c00287{letter-spacing:0.314880pt;}
.lsa_c00287{letter-spacing:0.425088pt;}
.ls4_c00287{letter-spacing:0.438171pt;}
.ls7_c00287{letter-spacing:0.456576pt;}
.ls3_c00287{letter-spacing:0.472320pt;}
.lsd_c00287{letter-spacing:0.482816pt;}
.ls5_c00287{letter-spacing:0.488064pt;}
.lse_c00287{letter-spacing:0.498560pt;}
.ls1d_c00287{letter-spacing:0.519552pt;}
.ls13_c00287{letter-spacing:0.614016pt;}
.ls8_c00287{letter-spacing:0.632913pt;}
.ls1a_c00287{letter-spacing:0.687488pt;}
.ls10_c00287{letter-spacing:0.855424pt;}
.ls11_c00287{letter-spacing:4.581504pt;}
.ls15_c00287{letter-spacing:4.827264pt;}
.lsb_c00287{letter-spacing:5.311467pt;}
.ls1_c00287{letter-spacing:5.312000pt;}
.ls0_c00287{letter-spacing:5.475484pt;}
.ls14_c00287{letter-spacing:11.346176pt;}
.ls17_c00287{letter-spacing:14.387200pt;}
.lsc_c00287{letter-spacing:15.680000pt;}
.ls18_c00287{letter-spacing:17.734400pt;}
.ws2_c00287{word-spacing:-18.705024pt;}
.ws1_c00287{word-spacing:-15.671364pt;}
.ws0_c00287{word-spacing:-15.476621pt;}
.ws5_c00287{word-spacing:-15.203456pt;}
.ws6_c00287{word-spacing:-15.061760pt;}
.ws3_c00287{word-spacing:-10.159744pt;}
.ws4_c00287{word-spacing:-9.024000pt;}
.ws7_c00287{word-spacing:0.000000pt;}
._18_c00287{margin-left:-17.740800pt;}
._13_c00287{margin-left:-15.680000pt;}
._f_c00287{margin-left:-13.912875pt;}
._9_c00287{margin-left:-11.440640pt;}
._a_c00287{margin-left:-10.485504pt;}
._4_c00287{margin-left:-4.198400pt;}
._3_c00287{margin-left:-3.300992pt;}
._0_c00287{margin-left:-0.997120pt;}
._7_c00287{width:0.918400pt;}
._c_c00287{width:2.063360pt;}
._1_c00287{width:3.096320pt;}
._2_c00287{width:4.093440pt;}
._6_c00287{width:5.405440pt;}
._5_c00287{width:6.796160pt;}
._d_c00287{width:7.695360pt;}
._16_c00287{width:8.832000pt;}
._10_c00287{width:10.112000pt;}
._8_c00287{width:11.125760pt;}
._19_c00287{width:12.136960pt;}
._e_c00287{width:14.400000pt;}
._12_c00287{width:15.680000pt;}
._b_c00287{width:18.816000pt;}
._17_c00287{width:19.712000pt;}
._11_c00287{width:22.656000pt;}
._14_c00287{width:24.128000pt;}
._15_c00287{width:25.792000pt;}
._1a_c00287{width:31.872000pt;}
.fs6_c00287{font-size:32.000000pt;}
.fs5_c00287{font-size:37.120000pt;}
.fs4_c00287{font-size:49.920000pt;}
.fs2_c00287{font-size:52.480000pt;}
.fs7_c00287{font-size:53.333333pt;}
.fs3_c00287{font-size:54.095146pt;}
.fs0_c00287{font-size:64.000000pt;}
.fs1_c00287{font-size:65.969690pt;}
.y0_c00287{bottom:0.000000pt;}
.y34_c00287{bottom:2.773467pt;}
.y33_c00287{bottom:30.884000pt;}
.y1_c00287{bottom:48.000000pt;}
.y32_c00287{bottom:49.320000pt;}
.y31_c00287{bottom:54.760000pt;}
.y30_c00287{bottom:64.680000pt;}
.y2f_c00287{bottom:70.120000pt;}
.y2e_c00287{bottom:85.800000pt;}
.y2d_c00287{bottom:95.723200pt;}
.y2c_c00287{bottom:111.401600pt;}
.y2b_c00287{bottom:132.520000pt;}
.y2a_c00287{bottom:156.200000pt;}
.y29_c00287{bottom:176.360000pt;}
.y28_c00287{bottom:194.920000pt;}
.y27_c00287{bottom:214.440000pt;}
.y26_c00287{bottom:233.320000pt;}
.y25_c00287{bottom:251.880000pt;}
.y24_c00287{bottom:270.440000pt;}
.y23_c00287{bottom:289.320000pt;}
.y22_c00287{bottom:307.880000pt;}
.y21_c00287{bottom:326.440000pt;}
.y20_c00287{bottom:358.440000pt;}
.y1f_c00287{bottom:377.320000pt;}
.y1e_c00287{bottom:395.880000pt;}
.y1d_c00287{bottom:414.440000pt;}
.y1c_c00287{bottom:433.320000pt;}
.y1b_c00287{bottom:465.320000pt;}
.y1a_c00287{bottom:483.880000pt;}
.y19_c00287{bottom:502.440000pt;}
.y18_c00287{bottom:521.320000pt;}
.y17_c00287{bottom:539.880000pt;}
.y16_c00287{bottom:558.440000pt;}
.y15_c00287{bottom:577.320000pt;}
.y14_c00287{bottom:595.880000pt;}
.y13_c00287{bottom:614.440000pt;}
.y12_c00287{bottom:633.320000pt;}
.y11_c00287{bottom:665.320000pt;}
.y10_c00287{bottom:683.880000pt;}
.yf_c00287{bottom:702.760000pt;}
.ye_c00287{bottom:721.320000pt;}
.yd_c00287{bottom:739.880000pt;}
.yc_c00287{bottom:758.760000pt;}
.yb_c00287{bottom:777.320000pt;}
.ya_c00287{bottom:809.320000pt;}
.y9_c00287{bottom:841.320000pt;}
.y8_c00287{bottom:859.876480pt;}
.y7_c00287{bottom:875.240000pt;}
.y6_c00287{bottom:904.358080pt;}
.y5_c00287{bottom:919.721600pt;}
.y4_c00287{bottom:935.400000pt;}
.y3_c00287{bottom:964.520000pt;}
.y2_c00287{bottom:1011.880000pt;}
.h9_c00287{height:17.116000pt;}
.h8_c00287{height:28.992000pt;}
.ha_c00287{height:41.173333pt;}
.h5_c00287{height:47.546880pt;}
.h6_c00287{height:49.010202pt;}
.h3_c00287{height:57.984000pt;}
.h4_c00287{height:59.768539pt;}
.h7_c00287{height:60.510720pt;}
.h2_c00287{height:1067.880000pt;}
.h0_c00287{height:1122.520000pt;}
.h1_c00287{height:1122.666667pt;}
.w3_c00287{width:22.240000pt;}
.w2_c00287{width:767.960000pt;}
.w0_c00287{width:793.720000pt;}
.w1_c00287{width:794.000000pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:12.880000pt;}
.x2_c00287{left:100.480133pt;}
.x10_c00287{left:113.082400pt;}
.x7_c00287{left:118.252933pt;}
.x3_c00287{left:136.927733pt;}
.x14_c00287{left:139.027733pt;}
.x11_c00287{left:141.962267pt;}
.x8_c00287{left:162.703067pt;}
.x4_c00287{left:180.014933pt;}
.x12_c00287{left:186.440133pt;}
.x15_c00287{left:195.332400pt;}
.xe_c00287{left:199.126000pt;}
.x13_c00287{left:215.320000pt;}
.xf_c00287{left:223.109333pt;}
.x9_c00287{left:232.078133pt;}
.xc_c00287{left:438.230800pt;}
.x5_c00287{left:448.162400pt;}
.x6_c00287{left:476.308533pt;}
.xa_c00287{left:481.125067pt;}
.xd_c00287{left:519.742533pt;}
.xb_c00287{left:560.343067pt;}
.x16_c00287{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8b3064f589f82c6369774041.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.134000;font-style:normal;font-weight:normal;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_2ff513d5d7e576347141e005.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.134000;font-style:normal;font-weight:normal;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_e5d6f85bf20528cafd725e47.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:0.787000;font-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_c00288{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00288{letter-spacing:0.000000px;}
.ls3_c00288{letter-spacing:0.200160px;}
.ls9_c00288{letter-spacing:0.202464px;}
.ls8_c00288{letter-spacing:0.239760px;}
.ls6_c00288{letter-spacing:0.399600px;}
.ls7_c00288{letter-spacing:0.559440px;}
.ls5_c00288{letter-spacing:5.335200px;}
.ls1_c00288{letter-spacing:5.976000px;}
.ls2_c00288{letter-spacing:5.980800px;}
.ls0_c00288{letter-spacing:6.159920px;}
.sc__c00288{text-shadow:none;}
.sc1_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00288{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc1_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00288{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00288{word-spacing:-20.947680px;}
.ws1_c00288{word-spacing:-15.371280px;}
.ws2_c00288{word-spacing:-15.051600px;}
.ws3_c00288{word-spacing:0.000000px;}
._3_c00288{margin-left:-1.036440px;}
._0_c00288{width:1.296000px;}
._2_c00288{width:7.776000px;}
._1_c00288{width:9.360000px;}
.fc1_c00288{color:transparent;}
.fc0_c00288{color:rgb(0,0,0);}
.fs3_c00288{font-size:53.280000px;}
.fs2_c00288{font-size:56.160000px;}
.fs4_c00288{font-size:60.000000px;}
.fs0_c00288{font-size:72.000000px;}
.fs1_c00288{font-size:74.215901px;}
.y0_c00288{bottom:0.000000px;}
.y27_c00288{bottom:3.120150px;}
.y23_c00288{bottom:25.560000px;}
.y26_c00288{bottom:34.744500px;}
.y25_c00288{bottom:41.040000px;}
.y22_c00288{bottom:41.400000px;}
.y1_c00288{bottom:54.000000px;}
.y20_c00288{bottom:85.725000px;}
.y1f_c00288{bottom:121.725000px;}
.y24_c00288{bottom:130.365000px;}
.y1e_c00288{bottom:157.725000px;}
.y1d_c00288{bottom:193.725000px;}
.y1c_c00288{bottom:229.725000px;}
.y1b_c00288{bottom:265.725000px;}
.y1a_c00288{bottom:301.725000px;}
.y19_c00288{bottom:337.725000px;}
.y18_c00288{bottom:373.725000px;}
.y17_c00288{bottom:409.725000px;}
.y16_c00288{bottom:445.725000px;}
.y15_c00288{bottom:481.725000px;}
.y14_c00288{bottom:517.725000px;}
.y13_c00288{bottom:554.085000px;}
.y21_c00288{bottom:562.365000px;}
.y12_c00288{bottom:590.085000px;}
.y11_c00288{bottom:626.085000px;}
.y10_c00288{bottom:662.085000px;}
.yf_c00288{bottom:698.085000px;}
.ye_c00288{bottom:734.085000px;}
.yd_c00288{bottom:770.085000px;}
.yc_c00288{bottom:806.085000px;}
.yb_c00288{bottom:842.085000px;}
.ya_c00288{bottom:878.085000px;}
.y9_c00288{bottom:914.085000px;}
.y8_c00288{bottom:950.085000px;}
.y7_c00288{bottom:970.965000px;}
.y6_c00288{bottom:991.845000px;}
.y5_c00288{bottom:1013.085000px;}
.y4_c00288{bottom:1049.085000px;}
.y3_c00288{bottom:1085.085000px;}
.y2_c00288{bottom:1138.365000px;}
.h7_c00288{height:19.255500px;}
.h8_c00288{height:46.320000px;}
.h6_c00288{height:48.271680px;}
.h5_c00288{height:54.000000px;}
.h3_c00288{height:65.232000px;}
.h4_c00288{height:67.239607px;}
.h2_c00288{height:1201.365000px;}
.h0_c00288{height:1262.835000px;}
.h1_c00288{height:1263.000000px;}
.w4_c00288{width:25.020000px;}
.w3_c00288{width:600.840000px;}
.w2_c00288{width:863.955000px;}
.w0_c00288{width:892.935000px;}
.w1_c00288{width:893.250000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:14.490000px;}
.x9_c00288{left:24.146850px;}
.x2_c00288{left:113.040150px;}
.x8_c00288{left:116.025750px;}
.x6_c00288{left:124.290000px;}
.x3_c00288{left:154.043700px;}
.x7_c00288{left:174.924900px;}
.x4_c00288{left:202.516800px;}
.x5_c00288{left:720.719400px;}
.xa_c00288{left:759.915000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls4_c00288{letter-spacing:0.000000pt;}
.ls3_c00288{letter-spacing:0.177920pt;}
.ls9_c00288{letter-spacing:0.179968pt;}
.ls8_c00288{letter-spacing:0.213120pt;}
.ls6_c00288{letter-spacing:0.355200pt;}
.ls7_c00288{letter-spacing:0.497280pt;}
.ls5_c00288{letter-spacing:4.742400pt;}
.ls1_c00288{letter-spacing:5.312000pt;}
.ls2_c00288{letter-spacing:5.316267pt;}
.ls0_c00288{letter-spacing:5.475484pt;}
.ws0_c00288{word-spacing:-18.620160pt;}
.ws1_c00288{word-spacing:-13.663360pt;}
.ws2_c00288{word-spacing:-13.379200pt;}
.ws3_c00288{word-spacing:0.000000pt;}
._3_c00288{margin-left:-0.921280pt;}
._0_c00288{width:1.152000pt;}
._2_c00288{width:6.912000pt;}
._1_c00288{width:8.320000pt;}
.fs3_c00288{font-size:47.360000pt;}
.fs2_c00288{font-size:49.920000pt;}
.fs4_c00288{font-size:53.333333pt;}
.fs0_c00288{font-size:64.000000pt;}
.fs1_c00288{font-size:65.969690pt;}
.y0_c00288{bottom:0.000000pt;}
.y27_c00288{bottom:2.773467pt;}
.y23_c00288{bottom:22.720000pt;}
.y26_c00288{bottom:30.884000pt;}
.y25_c00288{bottom:36.480000pt;}
.y22_c00288{bottom:36.800000pt;}
.y1_c00288{bottom:48.000000pt;}
.y20_c00288{bottom:76.200000pt;}
.y1f_c00288{bottom:108.200000pt;}
.y24_c00288{bottom:115.880000pt;}
.y1e_c00288{bottom:140.200000pt;}
.y1d_c00288{bottom:172.200000pt;}
.y1c_c00288{bottom:204.200000pt;}
.y1b_c00288{bottom:236.200000pt;}
.y1a_c00288{bottom:268.200000pt;}
.y19_c00288{bottom:300.200000pt;}
.y18_c00288{bottom:332.200000pt;}
.y17_c00288{bottom:364.200000pt;}
.y16_c00288{bottom:396.200000pt;}
.y15_c00288{bottom:428.200000pt;}
.y14_c00288{bottom:460.200000pt;}
.y13_c00288{bottom:492.520000pt;}
.y21_c00288{bottom:499.880000pt;}
.y12_c00288{bottom:524.520000pt;}
.y11_c00288{bottom:556.520000pt;}
.y10_c00288{bottom:588.520000pt;}
.yf_c00288{bottom:620.520000pt;}
.ye_c00288{bottom:652.520000pt;}
.yd_c00288{bottom:684.520000pt;}
.yc_c00288{bottom:716.520000pt;}
.yb_c00288{bottom:748.520000pt;}
.ya_c00288{bottom:780.520000pt;}
.y9_c00288{bottom:812.520000pt;}
.y8_c00288{bottom:844.520000pt;}
.y7_c00288{bottom:863.080000pt;}
.y6_c00288{bottom:881.640000pt;}
.y5_c00288{bottom:900.520000pt;}
.y4_c00288{bottom:932.520000pt;}
.y3_c00288{bottom:964.520000pt;}
.y2_c00288{bottom:1011.880000pt;}
.h7_c00288{height:17.116000pt;}
.h8_c00288{height:41.173333pt;}
.h6_c00288{height:42.908160pt;}
.h5_c00288{height:48.000000pt;}
.h3_c00288{height:57.984000pt;}
.h4_c00288{height:59.768539pt;}
.h2_c00288{height:1067.880000pt;}
.h0_c00288{height:1122.520000pt;}
.h1_c00288{height:1122.666667pt;}
.w4_c00288{width:22.240000pt;}
.w3_c00288{width:534.080000pt;}
.w2_c00288{width:767.960000pt;}
.w0_c00288{width:793.720000pt;}
.w1_c00288{width:794.000000pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:12.880000pt;}
.x9_c00288{left:21.463867pt;}
.x2_c00288{left:100.480133pt;}
.x8_c00288{left:103.134000pt;}
.x6_c00288{left:110.480000pt;}
.x3_c00288{left:136.927733pt;}
.x7_c00288{left:155.488800pt;}
.x4_c00288{left:180.014933pt;}
.x5_c00288{left:640.639467pt;}
.xa_c00288{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a3de1614fc6997f44b9a89e7.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.134000;font-style:normal;font-weight:normal;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_2ff513d5d7e576347141e005.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.134000;font-style:normal;font-weight:normal;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_ef7a7275e6388e82b26bbf75.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00289{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls3_c00289{letter-spacing:0.000000px;}
.ls2_c00289{letter-spacing:0.199560px;}
.ls6_c00289{letter-spacing:0.202464px;}
.ls7_c00289{letter-spacing:0.239760px;}
.ls4_c00289{letter-spacing:0.399600px;}
.ls5_c00289{letter-spacing:0.559440px;}
.ls1_c00289{letter-spacing:5.976000px;}
.ls0_c00289{letter-spacing:6.159920px;}
.sc__c00289{text-shadow:none;}
.sc1_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00289{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc1_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00289{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00289{word-spacing:-15.371280px;}
.ws1_c00289{word-spacing:-15.051600px;}
.ws2_c00289{word-spacing:0.000000px;}
._0_c00289{margin-left:-1.037040px;}
._1_c00289{width:1.024560px;}
.fc1_c00289{color:transparent;}
.fc0_c00289{color:rgb(0,0,0);}
.fs2_c00289{font-size:53.280000px;}
.fs3_c00289{font-size:60.000000px;}
.fs0_c00289{font-size:72.000000px;}
.fs1_c00289{font-size:74.215901px;}
.y0_c00289{bottom:0.000000px;}
.y27_c00289{bottom:3.120150px;}
.y20_c00289{bottom:14.399850px;}
.y22_c00289{bottom:14.400000px;}
.y25_c00289{bottom:21.600000px;}
.y26_c00289{bottom:34.744500px;}
.y24_c00289{bottom:37.440000px;}
.y1_c00289{bottom:54.000000px;}
.y1e_c00289{bottom:112.725000px;}
.y1d_c00289{bottom:148.725000px;}
.y23_c00289{bottom:157.365000px;}
.y1c_c00289{bottom:184.725000px;}
.y1b_c00289{bottom:220.725000px;}
.y1a_c00289{bottom:256.725000px;}
.y19_c00289{bottom:292.725000px;}
.y18_c00289{bottom:328.725000px;}
.y17_c00289{bottom:364.725000px;}
.y16_c00289{bottom:400.725000px;}
.y15_c00289{bottom:436.725000px;}
.y14_c00289{bottom:472.725000px;}
.y21_c00289{bottom:508.365000px;}
.y13_c00289{bottom:509.085000px;}
.y12_c00289{bottom:545.085000px;}
.y11_c00289{bottom:581.085000px;}
.y10_c00289{bottom:617.085000px;}
.yf_c00289{bottom:653.085000px;}
.ye_c00289{bottom:689.085000px;}
.yd_c00289{bottom:725.085000px;}
.yc_c00289{bottom:761.085000px;}
.yb_c00289{bottom:797.085000px;}
.y1f_c00289{bottom:832.365000px;}
.ya_c00289{bottom:833.085000px;}
.y9_c00289{bottom:869.085000px;}
.y8_c00289{bottom:905.085000px;}
.y7_c00289{bottom:941.085000px;}
.y6_c00289{bottom:977.085000px;}
.y5_c00289{bottom:1013.085000px;}
.y4_c00289{bottom:1049.085000px;}
.y3_c00289{bottom:1085.085000px;}
.y2_c00289{bottom:1138.365000px;}
.h8_c00289{height:19.255500px;}
.h5_c00289{height:27.000000px;}
.h9_c00289{height:46.320000px;}
.h6_c00289{height:48.271680px;}
.h7_c00289{height:50.040000px;}
.h3_c00289{height:65.232000px;}
.h4_c00289{height:67.239607px;}
.h2_c00289{height:1201.365000px;}
.h0_c00289{height:1262.835000px;}
.h1_c00289{height:1263.000000px;}
.w5_c00289{width:25.020000px;}
.w3_c00289{width:600.840000px;}
.w4_c00289{width:601.920000px;}
.w2_c00289{width:863.955000px;}
.w0_c00289{width:892.935000px;}
.w1_c00289{width:893.250000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:14.490000px;}
.x9_c00289{left:15.742350px;}
.x7_c00289{left:26.023200px;}
.xb_c00289{left:82.140300px;}
.x2_c00289{left:113.040150px;}
.x8_c00289{left:123.210000px;}
.x6_c00289{left:124.290000px;}
.x3_c00289{left:154.043700px;}
.xa_c00289{left:172.521150px;}
.x4_c00289{left:202.516800px;}
.x5_c00289{left:720.718800px;}
.xc_c00289{left:759.915000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls3_c00289{letter-spacing:0.000000pt;}
.ls2_c00289{letter-spacing:0.177387pt;}
.ls6_c00289{letter-spacing:0.179968pt;}
.ls7_c00289{letter-spacing:0.213120pt;}
.ls4_c00289{letter-spacing:0.355200pt;}
.ls5_c00289{letter-spacing:0.497280pt;}
.ls1_c00289{letter-spacing:5.312000pt;}
.ls0_c00289{letter-spacing:5.475484pt;}
.ws0_c00289{word-spacing:-13.663360pt;}
.ws1_c00289{word-spacing:-13.379200pt;}
.ws2_c00289{word-spacing:0.000000pt;}
._0_c00289{margin-left:-0.921813pt;}
._1_c00289{width:0.910720pt;}
.fs2_c00289{font-size:47.360000pt;}
.fs3_c00289{font-size:53.333333pt;}
.fs0_c00289{font-size:64.000000pt;}
.fs1_c00289{font-size:65.969690pt;}
.y0_c00289{bottom:0.000000pt;}
.y27_c00289{bottom:2.773467pt;}
.y20_c00289{bottom:12.799867pt;}
.y22_c00289{bottom:12.800000pt;}
.y25_c00289{bottom:19.200000pt;}
.y26_c00289{bottom:30.884000pt;}
.y24_c00289{bottom:33.280000pt;}
.y1_c00289{bottom:48.000000pt;}
.y1e_c00289{bottom:100.200000pt;}
.y1d_c00289{bottom:132.200000pt;}
.y23_c00289{bottom:139.880000pt;}
.y1c_c00289{bottom:164.200000pt;}
.y1b_c00289{bottom:196.200000pt;}
.y1a_c00289{bottom:228.200000pt;}
.y19_c00289{bottom:260.200000pt;}
.y18_c00289{bottom:292.200000pt;}
.y17_c00289{bottom:324.200000pt;}
.y16_c00289{bottom:356.200000pt;}
.y15_c00289{bottom:388.200000pt;}
.y14_c00289{bottom:420.200000pt;}
.y21_c00289{bottom:451.880000pt;}
.y13_c00289{bottom:452.520000pt;}
.y12_c00289{bottom:484.520000pt;}
.y11_c00289{bottom:516.520000pt;}
.y10_c00289{bottom:548.520000pt;}
.yf_c00289{bottom:580.520000pt;}
.ye_c00289{bottom:612.520000pt;}
.yd_c00289{bottom:644.520000pt;}
.yc_c00289{bottom:676.520000pt;}
.yb_c00289{bottom:708.520000pt;}
.y1f_c00289{bottom:739.880000pt;}
.ya_c00289{bottom:740.520000pt;}
.y9_c00289{bottom:772.520000pt;}
.y8_c00289{bottom:804.520000pt;}
.y7_c00289{bottom:836.520000pt;}
.y6_c00289{bottom:868.520000pt;}
.y5_c00289{bottom:900.520000pt;}
.y4_c00289{bottom:932.520000pt;}
.y3_c00289{bottom:964.520000pt;}
.y2_c00289{bottom:1011.880000pt;}
.h8_c00289{height:17.116000pt;}
.h5_c00289{height:24.000000pt;}
.h9_c00289{height:41.173333pt;}
.h6_c00289{height:42.908160pt;}
.h7_c00289{height:44.480000pt;}
.h3_c00289{height:57.984000pt;}
.h4_c00289{height:59.768539pt;}
.h2_c00289{height:1067.880000pt;}
.h0_c00289{height:1122.520000pt;}
.h1_c00289{height:1122.666667pt;}
.w5_c00289{width:22.240000pt;}
.w3_c00289{width:534.080000pt;}
.w4_c00289{width:535.040000pt;}
.w2_c00289{width:767.960000pt;}
.w0_c00289{width:793.720000pt;}
.w1_c00289{width:794.000000pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:12.880000pt;}
.x9_c00289{left:13.993200pt;}
.x7_c00289{left:23.131733pt;}
.xb_c00289{left:73.013600pt;}
.x2_c00289{left:100.480133pt;}
.x8_c00289{left:109.520000pt;}
.x6_c00289{left:110.480000pt;}
.x3_c00289{left:136.927733pt;}
.xa_c00289{left:153.352133pt;}
.x4_c00289{left:180.014933pt;}
.x5_c00289{left:640.638933pt;}
.xc_c00289{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_20c555cd7afc120629f9910e.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.134000;font-style:normal;font-weight:normal;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_edba8f59a7f159d87cfc3142.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;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:ff3_c00290;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:0.787000;font-style:normal;font-weight:normal;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_81eab355359132ea629806fa.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_a091ed3650853eea68ecd630.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:0.787000;font-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_c00290{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00290{vertical-align:-24.480000px;}
.v0_c00290{vertical-align:0.000000px;}
.v1_c00290{vertical-align:30.240000px;}
.lsd_c00290{letter-spacing:0.000000px;}
.ls19_c00290{letter-spacing:0.265680px;}
.ls7_c00290{letter-spacing:0.295200px;}
.ls17_c00290{letter-spacing:0.318816px;}
.ls1a_c00290{letter-spacing:0.371952px;}
.ls8_c00290{letter-spacing:0.531360px;}
.ls4_c00290{letter-spacing:0.560880px;}
.ls16_c00290{letter-spacing:0.657256px;}
.ls1b_c00290{letter-spacing:0.712027px;}
.ls3_c00290{letter-spacing:0.750840px;}
.ls14_c00290{letter-spacing:1.080432px;}
.ls18_c00290{letter-spacing:1.192608px;}
.ls10_c00290{letter-spacing:5.009472px;}
.ls11_c00290{letter-spacing:5.245344px;}
.ls6_c00290{letter-spacing:5.313600px;}
.lsf_c00290{letter-spacing:5.335200px;}
.lsb_c00290{letter-spacing:5.354928px;}
.ls5_c00290{letter-spacing:5.372640px;}
.lsa_c00290{letter-spacing:5.384448px;}
.ls15_c00290{letter-spacing:5.514336px;}
.lse_c00290{letter-spacing:5.597809px;}
.ls1_c00290{letter-spacing:5.974800px;}
.ls2_c00290{letter-spacing:5.976000px;}
.ls0_c00290{letter-spacing:6.158683px;}
.lsc_c00290{letter-spacing:6.159920px;}
.ls9_c00290{letter-spacing:6.470784px;}
.ls12_c00290{letter-spacing:21.175200px;}
.ls13_c00290{letter-spacing:22.471200px;}
.sc__c00290{text-shadow:none;}
.sc1_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00290{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc1_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00290{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00290{word-spacing:-25.992000px;}
.ws7_c00290{word-spacing:-21.927456px;}
.ws9_c00290{word-spacing:-21.768048px;}
.ws0_c00290{word-spacing:-21.690785px;}
.ws3_c00290{word-spacing:-20.947680px;}
.ws1_c00290{word-spacing:-20.621952px;}
.ws4_c00290{word-spacing:-20.016000px;}
.ws8_c00290{word-spacing:-17.575513px;}
.ws5_c00290{word-spacing:-11.609280px;}
.ws6_c00290{word-spacing:-10.008000px;}
.wsa_c00290{word-spacing:0.000000px;}
._9_c00290{margin-left:-8.238584px;}
._11_c00290{margin-left:-7.025760px;}
._10_c00290{margin-left:-5.904000px;}
._f_c00290{margin-left:-1.121760px;}
._a_c00290{width:1.800000px;}
._e_c00290{width:4.320000px;}
._b_c00290{width:5.394192px;}
._0_c00290{width:6.482904px;}
._1_c00290{width:7.773096px;}
._8_c00290{width:10.761306px;}
._3_c00290{width:12.744000px;}
._2_c00290{width:13.752000px;}
._c_c00290{width:14.760000px;}
._d_c00290{width:15.768000px;}
._6_c00290{width:21.705240px;}
._4_c00290{width:23.760000px;}
._7_c00290{width:25.604486px;}
._5_c00290{width:33.336000px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs6_c00290{font-size:36.000000px;}
.fs4_c00290{font-size:41.760000px;}
.fs5_c00290{font-size:43.045223px;}
.fs3_c00290{font-size:56.160000px;}
.fs2_c00290{font-size:57.888403px;}
.fs7_c00290{font-size:59.040000px;}
.fs9_c00290{font-size:60.000000px;}
.fs8_c00290{font-size:60.857039px;}
.fs0_c00290{font-size:72.000000px;}
.fs1_c00290{font-size:74.215901px;}
.y0_c00290{bottom:0.000000px;}
.y2d_c00290{bottom:3.120150px;}
.y2c_c00290{bottom:34.744500px;}
.y1_c00290{bottom:54.000000px;}
.y2a_c00290{bottom:55.478880px;}
.y2b_c00290{bottom:55.485000px;}
.y29_c00290{bottom:72.762840px;}
.y28_c00290{bottom:99.045000px;}
.y27_c00290{bottom:116.325000px;}
.y26_c00290{bottom:127.846800px;}
.y25_c00290{bottom:145.485000px;}
.y24_c00290{bottom:145.491840px;}
.y23_c00290{bottom:165.285000px;}
.y22_c00290{bottom:171.405000px;}
.y21_c00290{bottom:189.045000px;}
.y20_c00290{bottom:206.325000px;}
.y1f_c00290{bottom:232.965000px;}
.y1e_c00290{bottom:390.285000px;}
.y1d_c00290{bottom:411.165000px;}
.y1c_c00290{bottom:432.405000px;}
.y1b_c00290{bottom:453.285000px;}
.y1a_c00290{bottom:474.525000px;}
.y19_c00290{bottom:495.405000px;}
.y18_c00290{bottom:516.285000px;}
.y17_c00290{bottom:555.885000px;}
.y16_c00290{bottom:576.405000px;}
.y15_c00290{bottom:597.285000px;}
.y14_c00290{bottom:633.285000px;}
.y13_c00290{bottom:654.525000px;}
.y12_c00290{bottom:690.525000px;}
.y11_c00290{bottom:726.525000px;}
.y10_c00290{bottom:764.685000px;}
.yf_c00290{bottom:802.845000px;}
.ye_c00290{bottom:838.845000px;}
.yd_c00290{bottom:860.085000px;}
.yc_c00290{bottom:880.965000px;}
.yb_c00290{bottom:901.845000px;}
.ya_c00290{bottom:923.085000px;}
.y9_c00290{bottom:943.965000px;}
.y8_c00290{bottom:964.845000px;}
.y7_c00290{bottom:986.085000px;}
.y6_c00290{bottom:1006.965000px;}
.y5_c00290{bottom:1027.845000px;}
.y4_c00290{bottom:1049.085000px;}
.y3_c00290{bottom:1085.085000px;}
.y2_c00290{bottom:1138.365000px;}
.ha_c00290{height:19.255500px;}
.h7_c00290{height:32.616000px;}
.hb_c00290{height:46.320000px;}
.h8_c00290{height:46.981634px;}
.h9_c00290{height:53.490240px;}
.h4_c00290{height:57.294676px;}
.h6_c00290{height:64.401590px;}
.h3_c00290{height:65.232000px;}
.h5_c00290{height:68.074560px;}
.h2_c00290{height:1201.365000px;}
.h0_c00290{height:1262.835000px;}
.h1_c00290{height:1263.000000px;}
.w3_c00290{width:25.020000px;}
.w2_c00290{width:863.955000px;}
.w0_c00290{width:892.935000px;}
.w1_c00290{width:893.250000px;}
.x0_c00290{left:0.000000px;}
.x1_c00290{left:14.490000px;}
.x2_c00290{left:113.040150px;}
.x3_c00290{left:154.043700px;}
.xc_c00290{left:172.024950px;}
.x5_c00290{left:188.251800px;}
.x4_c00290{left:229.516500px;}
.x13_c00290{left:232.090200px;}
.xd_c00290{left:237.040350px;}
.x14_c00290{left:305.079300px;}
.x15_c00290{left:310.083300px;}
.x1c_c00290{left:329.737800px;}
.x10_c00290{left:353.880600px;}
.x16_c00290{left:378.068100px;}
.x17_c00290{left:383.072100px;}
.x18_c00290{left:394.069650px;}
.xb_c00290{left:414.462150px;}
.x12_c00290{left:441.723300px;}
.x1a_c00290{left:445.838700px;}
.x1b_c00290{left:500.017500px;}
.xa_c00290{left:531.898950px;}
.x6_c00290{left:557.700450px;}
.x7_c00290{left:662.674800px;}
.xe_c00290{left:668.056650px;}
.x11_c00290{left:670.145100px;}
.x8_c00290{left:685.393050px;}
.x19_c00290{left:690.376500px;}
.xf_c00290{left:745.386150px;}
.x9_c00290{left:750.390000px;}
.x1d_c00290{left:759.915000px;}
@media print{
.v2_c00290{vertical-align:-21.760000pt;}
.v0_c00290{vertical-align:0.000000pt;}
.v1_c00290{vertical-align:26.880000pt;}
.lsd_c00290{letter-spacing:0.000000pt;}
.ls19_c00290{letter-spacing:0.236160pt;}
.ls7_c00290{letter-spacing:0.262400pt;}
.ls17_c00290{letter-spacing:0.283392pt;}
.ls1a_c00290{letter-spacing:0.330624pt;}
.ls8_c00290{letter-spacing:0.472320pt;}
.ls4_c00290{letter-spacing:0.498560pt;}
.ls16_c00290{letter-spacing:0.584228pt;}
.ls1b_c00290{letter-spacing:0.632913pt;}
.ls3_c00290{letter-spacing:0.667413pt;}
.ls14_c00290{letter-spacing:0.960384pt;}
.ls18_c00290{letter-spacing:1.060096pt;}
.ls10_c00290{letter-spacing:4.452864pt;}
.ls11_c00290{letter-spacing:4.662528pt;}
.ls6_c00290{letter-spacing:4.723200pt;}
.lsf_c00290{letter-spacing:4.742400pt;}
.lsb_c00290{letter-spacing:4.759936pt;}
.ls5_c00290{letter-spacing:4.775680pt;}
.lsa_c00290{letter-spacing:4.786176pt;}
.ls15_c00290{letter-spacing:4.901632pt;}
.lse_c00290{letter-spacing:4.975830pt;}
.ls1_c00290{letter-spacing:5.310933pt;}
.ls2_c00290{letter-spacing:5.312000pt;}
.ls0_c00290{letter-spacing:5.474385pt;}
.lsc_c00290{letter-spacing:5.475484pt;}
.ls9_c00290{letter-spacing:5.751808pt;}
.ls12_c00290{letter-spacing:18.822400pt;}
.ls13_c00290{letter-spacing:19.974400pt;}
.ws2_c00290{word-spacing:-23.104000pt;}
.ws7_c00290{word-spacing:-19.491072pt;}
.ws9_c00290{word-spacing:-19.349376pt;}
.ws0_c00290{word-spacing:-19.280697pt;}
.ws3_c00290{word-spacing:-18.620160pt;}
.ws1_c00290{word-spacing:-18.330624pt;}
.ws4_c00290{word-spacing:-17.792000pt;}
.ws8_c00290{word-spacing:-15.622678pt;}
.ws5_c00290{word-spacing:-10.319360pt;}
.ws6_c00290{word-spacing:-8.896000pt;}
.wsa_c00290{word-spacing:0.000000pt;}
._9_c00290{margin-left:-7.323185pt;}
._11_c00290{margin-left:-6.245120pt;}
._10_c00290{margin-left:-5.248000pt;}
._f_c00290{margin-left:-0.997120pt;}
._a_c00290{width:1.600000pt;}
._e_c00290{width:3.840000pt;}
._b_c00290{width:4.794837pt;}
._0_c00290{width:5.762581pt;}
._1_c00290{width:6.909419pt;}
._8_c00290{width:9.565605pt;}
._3_c00290{width:11.328000pt;}
._2_c00290{width:12.224000pt;}
._c_c00290{width:13.120000pt;}
._d_c00290{width:14.016000pt;}
._6_c00290{width:19.293547pt;}
._4_c00290{width:21.120000pt;}
._7_c00290{width:22.759543pt;}
._5_c00290{width:29.632000pt;}
.fs6_c00290{font-size:32.000000pt;}
.fs4_c00290{font-size:37.120000pt;}
.fs5_c00290{font-size:38.262420pt;}
.fs3_c00290{font-size:49.920000pt;}
.fs2_c00290{font-size:51.456358pt;}
.fs7_c00290{font-size:52.480000pt;}
.fs9_c00290{font-size:53.333333pt;}
.fs8_c00290{font-size:54.095146pt;}
.fs0_c00290{font-size:64.000000pt;}
.fs1_c00290{font-size:65.969690pt;}
.y0_c00290{bottom:0.000000pt;}
.y2d_c00290{bottom:2.773467pt;}
.y2c_c00290{bottom:30.884000pt;}
.y1_c00290{bottom:48.000000pt;}
.y2a_c00290{bottom:49.314560pt;}
.y2b_c00290{bottom:49.320000pt;}
.y29_c00290{bottom:64.678080pt;}
.y28_c00290{bottom:88.040000pt;}
.y27_c00290{bottom:103.400000pt;}
.y26_c00290{bottom:113.641600pt;}
.y25_c00290{bottom:129.320000pt;}
.y24_c00290{bottom:129.326080pt;}
.y23_c00290{bottom:146.920000pt;}
.y22_c00290{bottom:152.360000pt;}
.y21_c00290{bottom:168.040000pt;}
.y20_c00290{bottom:183.400000pt;}
.y1f_c00290{bottom:207.080000pt;}
.y1e_c00290{bottom:346.920000pt;}
.y1d_c00290{bottom:365.480000pt;}
.y1c_c00290{bottom:384.360000pt;}
.y1b_c00290{bottom:402.920000pt;}
.y1a_c00290{bottom:421.800000pt;}
.y19_c00290{bottom:440.360000pt;}
.y18_c00290{bottom:458.920000pt;}
.y17_c00290{bottom:494.120000pt;}
.y16_c00290{bottom:512.360000pt;}
.y15_c00290{bottom:530.920000pt;}
.y14_c00290{bottom:562.920000pt;}
.y13_c00290{bottom:581.800000pt;}
.y12_c00290{bottom:613.800000pt;}
.y11_c00290{bottom:645.800000pt;}
.y10_c00290{bottom:679.720000pt;}
.yf_c00290{bottom:713.640000pt;}
.ye_c00290{bottom:745.640000pt;}
.yd_c00290{bottom:764.520000pt;}
.yc_c00290{bottom:783.080000pt;}
.yb_c00290{bottom:801.640000pt;}
.ya_c00290{bottom:820.520000pt;}
.y9_c00290{bottom:839.080000pt;}
.y8_c00290{bottom:857.640000pt;}
.y7_c00290{bottom:876.520000pt;}
.y6_c00290{bottom:895.080000pt;}
.y5_c00290{bottom:913.640000pt;}
.y4_c00290{bottom:932.520000pt;}
.y3_c00290{bottom:964.520000pt;}
.y2_c00290{bottom:1011.880000pt;}
.ha_c00290{height:17.116000pt;}
.h7_c00290{height:28.992000pt;}
.hb_c00290{height:41.173333pt;}
.h8_c00290{height:41.761453pt;}
.h9_c00290{height:47.546880pt;}
.h4_c00290{height:50.928601pt;}
.h6_c00290{height:57.245858pt;}
.h3_c00290{height:57.984000pt;}
.h5_c00290{height:60.510720pt;}
.h2_c00290{height:1067.880000pt;}
.h0_c00290{height:1122.520000pt;}
.h1_c00290{height:1122.666667pt;}
.w3_c00290{width:22.240000pt;}
.w2_c00290{width:767.960000pt;}
.w0_c00290{width:793.720000pt;}
.w1_c00290{width:794.000000pt;}
.x0_c00290{left:0.000000pt;}
.x1_c00290{left:12.880000pt;}
.x2_c00290{left:100.480133pt;}
.x3_c00290{left:136.927733pt;}
.xc_c00290{left:152.911067pt;}
.x5_c00290{left:167.334933pt;}
.x4_c00290{left:204.014667pt;}
.x13_c00290{left:206.302400pt;}
.xd_c00290{left:210.702533pt;}
.x14_c00290{left:271.181600pt;}
.x15_c00290{left:275.629600pt;}
.x1c_c00290{left:293.100267pt;}
.x10_c00290{left:314.560533pt;}
.x16_c00290{left:336.060533pt;}
.x17_c00290{left:340.508533pt;}
.x18_c00290{left:350.284133pt;}
.xb_c00290{left:368.410800pt;}
.x12_c00290{left:392.642933pt;}
.x1a_c00290{left:396.301067pt;}
.x1b_c00290{left:444.460000pt;}
.xa_c00290{left:472.799067pt;}
.x6_c00290{left:495.733733pt;}
.x7_c00290{left:589.044267pt;}
.xe_c00290{left:593.828133pt;}
.x11_c00290{left:595.684533pt;}
.x8_c00290{left:609.238267pt;}
.x19_c00290{left:613.668000pt;}
.xf_c00290{left:662.565467pt;}
.x9_c00290{left:667.013333pt;}
.x1d_c00290{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fac0ae7b037ef541520f8bd7.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.134000;font-style:normal;font-weight:normal;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_e20ca136c3a08702d44bb456.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;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:ff3_c00291;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_17fdb8d6355e5755a67010d5.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:0.787000;font-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_c00291{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00291{vertical-align:-24.480000px;}
.v0_c00291{vertical-align:0.000000px;}
.v1_c00291{vertical-align:30.240000px;}
.ls7_c00291{letter-spacing:0.000000px;}
.ls2_c00291{letter-spacing:0.248640px;}
.ls9_c00291{letter-spacing:0.265680px;}
.lsc_c00291{letter-spacing:0.425088px;}
.lsf_c00291{letter-spacing:0.478224px;}
.lsa_c00291{letter-spacing:0.531360px;}
.lse_c00291{letter-spacing:0.547713px;}
.ls4_c00291{letter-spacing:0.712027px;}
.ls1_c00291{letter-spacing:0.825240px;}
.lsd_c00291{letter-spacing:4.522464px;}
.ls8_c00291{letter-spacing:5.430672px;}
.lsb_c00291{letter-spacing:5.821344px;}
.ls5_c00291{letter-spacing:5.976000px;}
.ls3_c00291{letter-spacing:5.978400px;}
.ls0_c00291{letter-spacing:5.982000px;}
.ls6_c00291{letter-spacing:6.159920px;}
.sc__c00291{text-shadow:none;}
.sc1_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00291{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc1_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00291{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00291{word-spacing:-21.043152px;}
.ws2_c00291{word-spacing:-17.630284px;}
.ws1_c00291{word-spacing:-10.008000px;}
.ws3_c00291{word-spacing:0.000000px;}
._c_c00291{margin-left:-6.258240px;}
._b_c00291{margin-left:-5.254560px;}
._d_c00291{margin-left:-4.073760px;}
._e_c00291{margin-left:-3.070080px;}
._4_c00291{margin-left:-1.179360px;}
._0_c00291{width:2.088000px;}
._3_c00291{width:3.888000px;}
._5_c00291{width:5.040000px;}
._8_c00291{width:7.200000px;}
._6_c00291{width:8.712000px;}
._1_c00291{width:9.720000px;}
._7_c00291{width:10.800000px;}
._9_c00291{width:22.392000px;}
._2_c00291{width:24.048000px;}
._a_c00291{width:32.544000px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs4_c00291{font-size:36.000000px;}
.fs3_c00291{font-size:41.760000px;}
.fs2_c00291{font-size:56.160000px;}
.fs5_c00291{font-size:59.040000px;}
.fs7_c00291{font-size:60.000000px;}
.fs6_c00291{font-size:60.857039px;}
.fs0_c00291{font-size:72.000000px;}
.fs1_c00291{font-size:74.215901px;}
.y0_c00291{bottom:0.000000px;}
.y29_c00291{bottom:3.120150px;}
.y28_c00291{bottom:34.744500px;}
.y1_c00291{bottom:54.000000px;}
.y27_c00291{bottom:55.481040px;}
.y26_c00291{bottom:72.765000px;}
.y25_c00291{bottom:72.766800px;}
.y24_c00291{bottom:96.525000px;}
.y23_c00291{bottom:113.805000px;}
.y22_c00291{bottom:140.445000px;}
.y21_c00291{bottom:184.725000px;}
.y20_c00291{bottom:205.965000px;}
.y1f_c00291{bottom:241.965000px;}
.y1e_c00291{bottom:262.845000px;}
.y1d_c00291{bottom:283.725000px;}
.y1c_c00291{bottom:304.965000px;}
.y1b_c00291{bottom:325.845000px;}
.y1a_c00291{bottom:361.845000px;}
.y19_c00291{bottom:397.845000px;}
.y18_c00291{bottom:418.725000px;}
.y17_c00291{bottom:454.725000px;}
.y16_c00291{bottom:475.965000px;}
.y15_c00291{bottom:511.965000px;}
.y14_c00291{bottom:547.965000px;}
.y13_c00291{bottom:583.965000px;}
.y12_c00291{bottom:619.965000px;}
.y11_c00291{bottom:655.965000px;}
.y10_c00291{bottom:691.965000px;}
.yf_c00291{bottom:727.965000px;}
.ye_c00291{bottom:763.965000px;}
.yd_c00291{bottom:784.845000px;}
.yc_c00291{bottom:820.845000px;}
.yb_c00291{bottom:856.845000px;}
.ya_c00291{bottom:892.845000px;}
.y9_c00291{bottom:914.085000px;}
.y8_c00291{bottom:934.965000px;}
.y7_c00291{bottom:955.845000px;}
.y6_c00291{bottom:977.085000px;}
.y5_c00291{bottom:1013.085000px;}
.y4_c00291{bottom:1049.085000px;}
.y3_c00291{bottom:1085.085000px;}
.y2_c00291{bottom:1138.365000px;}
.ha_c00291{height:19.255500px;}
.h7_c00291{height:32.616000px;}
.hb_c00291{height:46.320000px;}
.h9_c00291{height:46.981634px;}
.h5_c00291{height:52.031250px;}
.h8_c00291{height:53.490240px;}
.h4_c00291{height:57.294676px;}
.h3_c00291{height:65.232000px;}
.h6_c00291{height:68.074560px;}
.h2_c00291{height:1201.365000px;}
.h0_c00291{height:1262.835000px;}
.h1_c00291{height:1263.000000px;}
.w3_c00291{width:25.020000px;}
.w2_c00291{width:863.955000px;}
.w0_c00291{width:892.935000px;}
.w1_c00291{width:893.250000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:14.490000px;}
.x2_c00291{left:113.040150px;}
.x5_c00291{left:140.041650px;}
.x9_c00291{left:148.031550px;}
.x8_c00291{left:150.029700px;}
.xc_c00291{left:153.035550px;}
.x3_c00291{left:154.043700px;}
.xd_c00291{left:156.066300px;}
.x12_c00291{left:164.083350px;}
.x6_c00291{left:167.040150px;}
.x13_c00291{left:194.083050px;}
.x4_c00291{left:229.516500px;}
.x7_c00291{left:247.048800px;}
.xa_c00291{left:440.076750px;}
.xb_c00291{left:476.076000px;}
.xe_c00291{left:665.407050px;}
.x14_c00291{left:680.118600px;}
.x10_c00291{left:692.091450px;}
.x11_c00291{left:727.118850px;}
.xf_c00291{left:744.396300px;}
.x15_c00291{left:746.220300px;}
.x16_c00291{left:759.915000px;}
@media print{
.v2_c00291{vertical-align:-21.760000pt;}
.v0_c00291{vertical-align:0.000000pt;}
.v1_c00291{vertical-align:26.880000pt;}
.ls7_c00291{letter-spacing:0.000000pt;}
.ls2_c00291{letter-spacing:0.221013pt;}
.ls9_c00291{letter-spacing:0.236160pt;}
.lsc_c00291{letter-spacing:0.377856pt;}
.lsf_c00291{letter-spacing:0.425088pt;}
.lsa_c00291{letter-spacing:0.472320pt;}
.lse_c00291{letter-spacing:0.486856pt;}
.ls4_c00291{letter-spacing:0.632913pt;}
.ls1_c00291{letter-spacing:0.733547pt;}
.lsd_c00291{letter-spacing:4.019968pt;}
.ls8_c00291{letter-spacing:4.827264pt;}
.lsb_c00291{letter-spacing:5.174528pt;}
.ls5_c00291{letter-spacing:5.312000pt;}
.ls3_c00291{letter-spacing:5.314133pt;}
.ls0_c00291{letter-spacing:5.317333pt;}
.ls6_c00291{letter-spacing:5.475484pt;}
.ws0_c00291{word-spacing:-18.705024pt;}
.ws2_c00291{word-spacing:-15.671364pt;}
.ws1_c00291{word-spacing:-8.896000pt;}
.ws3_c00291{word-spacing:0.000000pt;}
._c_c00291{margin-left:-5.562880pt;}
._b_c00291{margin-left:-4.670720pt;}
._d_c00291{margin-left:-3.621120pt;}
._e_c00291{margin-left:-2.728960pt;}
._4_c00291{margin-left:-1.048320pt;}
._0_c00291{width:1.856000pt;}
._3_c00291{width:3.456000pt;}
._5_c00291{width:4.480000pt;}
._8_c00291{width:6.400000pt;}
._6_c00291{width:7.744000pt;}
._1_c00291{width:8.640000pt;}
._7_c00291{width:9.600000pt;}
._9_c00291{width:19.904000pt;}
._2_c00291{width:21.376000pt;}
._a_c00291{width:28.928000pt;}
.fs4_c00291{font-size:32.000000pt;}
.fs3_c00291{font-size:37.120000pt;}
.fs2_c00291{font-size:49.920000pt;}
.fs5_c00291{font-size:52.480000pt;}
.fs7_c00291{font-size:53.333333pt;}
.fs6_c00291{font-size:54.095146pt;}
.fs0_c00291{font-size:64.000000pt;}
.fs1_c00291{font-size:65.969690pt;}
.y0_c00291{bottom:0.000000pt;}
.y29_c00291{bottom:2.773467pt;}
.y28_c00291{bottom:30.884000pt;}
.y1_c00291{bottom:48.000000pt;}
.y27_c00291{bottom:49.316480pt;}
.y26_c00291{bottom:64.680000pt;}
.y25_c00291{bottom:64.681600pt;}
.y24_c00291{bottom:85.800000pt;}
.y23_c00291{bottom:101.160000pt;}
.y22_c00291{bottom:124.840000pt;}
.y21_c00291{bottom:164.200000pt;}
.y20_c00291{bottom:183.080000pt;}
.y1f_c00291{bottom:215.080000pt;}
.y1e_c00291{bottom:233.640000pt;}
.y1d_c00291{bottom:252.200000pt;}
.y1c_c00291{bottom:271.080000pt;}
.y1b_c00291{bottom:289.640000pt;}
.y1a_c00291{bottom:321.640000pt;}
.y19_c00291{bottom:353.640000pt;}
.y18_c00291{bottom:372.200000pt;}
.y17_c00291{bottom:404.200000pt;}
.y16_c00291{bottom:423.080000pt;}
.y15_c00291{bottom:455.080000pt;}
.y14_c00291{bottom:487.080000pt;}
.y13_c00291{bottom:519.080000pt;}
.y12_c00291{bottom:551.080000pt;}
.y11_c00291{bottom:583.080000pt;}
.y10_c00291{bottom:615.080000pt;}
.yf_c00291{bottom:647.080000pt;}
.ye_c00291{bottom:679.080000pt;}
.yd_c00291{bottom:697.640000pt;}
.yc_c00291{bottom:729.640000pt;}
.yb_c00291{bottom:761.640000pt;}
.ya_c00291{bottom:793.640000pt;}
.y9_c00291{bottom:812.520000pt;}
.y8_c00291{bottom:831.080000pt;}
.y7_c00291{bottom:849.640000pt;}
.y6_c00291{bottom:868.520000pt;}
.y5_c00291{bottom:900.520000pt;}
.y4_c00291{bottom:932.520000pt;}
.y3_c00291{bottom:964.520000pt;}
.y2_c00291{bottom:1011.880000pt;}
.ha_c00291{height:17.116000pt;}
.h7_c00291{height:28.992000pt;}
.hb_c00291{height:41.173333pt;}
.h9_c00291{height:41.761453pt;}
.h5_c00291{height:46.250000pt;}
.h8_c00291{height:47.546880pt;}
.h4_c00291{height:50.928601pt;}
.h3_c00291{height:57.984000pt;}
.h6_c00291{height:60.510720pt;}
.h2_c00291{height:1067.880000pt;}
.h0_c00291{height:1122.520000pt;}
.h1_c00291{height:1122.666667pt;}
.w3_c00291{width:22.240000pt;}
.w2_c00291{width:767.960000pt;}
.w0_c00291{width:793.720000pt;}
.w1_c00291{width:794.000000pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:12.880000pt;}
.x2_c00291{left:100.480133pt;}
.x5_c00291{left:124.481467pt;}
.x9_c00291{left:131.583600pt;}
.x8_c00291{left:133.359733pt;}
.xc_c00291{left:136.031600pt;}
.x3_c00291{left:136.927733pt;}
.xd_c00291{left:138.725600pt;}
.x12_c00291{left:145.851867pt;}
.x6_c00291{left:148.480133pt;}
.x13_c00291{left:172.518267pt;}
.x4_c00291{left:204.014667pt;}
.x7_c00291{left:219.598933pt;}
.xa_c00291{left:391.179333pt;}
.xb_c00291{left:423.178667pt;}
.xe_c00291{left:591.472933pt;}
.x14_c00291{left:604.549867pt;}
.x10_c00291{left:615.192400pt;}
.x11_c00291{left:646.327867pt;}
.xf_c00291{left:661.685600pt;}
.x15_c00291{left:663.306933pt;}
.x16_c00291{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee0e90e5bd9e597b422fc266.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.134000;font-style:normal;font-weight:normal;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_c3f782aef0fcde724fb3e1e7.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;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:ff3_c00292;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00292{font-family:ff5_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:ff6_c00292;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00292;src:url('chunks/assets/font_992b18535bd3f35f3dd3a6d5.woff2')format("woff");}.ff7_c00292{font-family:ff7_c00292;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00292;src:url('chunks/assets/font_6b0e9ef51ebc610c5e94191f.woff2')format("woff");}.ff8_c00292{font-family:ff8_c00292;line-height:0.787000;font-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_c00292{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00292{vertical-align:-24.480000px;}
.v0_c00292{vertical-align:0.000000px;}
.v2_c00292{vertical-align:24.480000px;}
.v1_c00292{vertical-align:30.240000px;}
.ls1d_c00292{letter-spacing:-0.179568px;}
.ls13_c00292{letter-spacing:0.000000px;}
.ls1e_c00292{letter-spacing:0.144000px;}
.ls16_c00292{letter-spacing:0.242064px;}
.ls19_c00292{letter-spacing:0.265680px;}
.lse_c00292{letter-spacing:0.295200px;}
.lsf_c00292{letter-spacing:0.301104px;}
.ls5_c00292{letter-spacing:0.318480px;}
.ls14_c00292{letter-spacing:0.318816px;}
.ls15_c00292{letter-spacing:0.328628px;}
.ls10_c00292{letter-spacing:0.354240px;}
.ls9_c00292{letter-spacing:0.395568px;}
.lsd_c00292{letter-spacing:0.513648px;}
.lsa_c00292{letter-spacing:0.531360px;}
.ls17_c00292{letter-spacing:0.547713px;}
.ls1_c00292{letter-spacing:0.623040px;}
.lsc_c00292{letter-spacing:0.712027px;}
.ls1a_c00292{letter-spacing:0.962352px;}
.ls6_c00292{letter-spacing:5.246280px;}
.ls4_c00292{letter-spacing:5.299080px;}
.ls8_c00292{letter-spacing:5.352840px;}
.ls3_c00292{letter-spacing:5.353440px;}
.ls1c_c00292{letter-spacing:5.430672px;}
.ls7_c00292{letter-spacing:5.513160px;}
.ls18_c00292{letter-spacing:5.514336px;}
.ls11_c00292{letter-spacing:5.975400px;}
.ls2_c00292{letter-spacing:5.976000px;}
.ls12_c00292{letter-spacing:6.159920px;}
.lsb_c00292{letter-spacing:17.001480px;}
.ls1b_c00292{letter-spacing:17.003520px;}
.ls0_c00292{letter-spacing:54.864000px;}
.sc__c00292{text-shadow:none;}
.sc1_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00292{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc1_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00292{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00292{word-spacing:-21.927456px;}
.ws7_c00292{word-spacing:-21.043152px;}
.ws6_c00292{word-spacing:-17.630284px;}
.ws4_c00292{word-spacing:-17.375472px;}
.ws1_c00292{word-spacing:-16.944480px;}
.ws5_c00292{word-spacing:-16.808688px;}
.ws0_c00292{word-spacing:-16.413120px;}
.ws8_c00292{word-spacing:-11.429712px;}
.ws9_c00292{word-spacing:-10.152000px;}
.ws3_c00292{word-spacing:-10.008000px;}
.wsa_c00292{word-spacing:0.000000px;}
._9_c00292{margin-left:-16.472160px;}
._8_c00292{margin-left:-1.277998px;}
._3_c00292{width:1.296000px;}
._e_c00292{width:2.304000px;}
._0_c00292{width:3.384000px;}
._4_c00292{width:4.680000px;}
._d_c00292{width:6.552000px;}
._c_c00292{width:8.280000px;}
._7_c00292{width:10.152000px;}
._6_c00292{width:11.448000px;}
._5_c00292{width:12.816000px;}
._1_c00292{width:15.192000px;}
._2_c00292{width:24.480000px;}
._a_c00292{width:28.238396px;}
._b_c00292{width:29.715705px;}
.fc0_c00292{color:rgb(0,0,0);}
.fs5_c00292{font-size:36.000000px;}
.fs2_c00292{font-size:41.760000px;}
.fs6_c00292{font-size:56.160000px;}
.fs3_c00292{font-size:59.040000px;}
.fs7_c00292{font-size:60.000000px;}
.fs4_c00292{font-size:60.857039px;}
.fs0_c00292{font-size:72.000000px;}
.fs1_c00292{font-size:74.215901px;}
.y0_c00292{bottom:0.000000px;}
.y36_c00292{bottom:3.120150px;}
.y35_c00292{bottom:34.744500px;}
.y1_c00292{bottom:54.000000px;}
.y34_c00292{bottom:55.485000px;}
.y33_c00292{bottom:61.605000px;}
.y32_c00292{bottom:78.885000px;}
.y31_c00292{bottom:96.525000px;}
.y30_c00292{bottom:123.165000px;}
.y2f_c00292{bottom:180.045000px;}
.y2e_c00292{bottom:200.925000px;}
.y2d_c00292{bottom:225.405000px;}
.y2c_c00292{bottom:261.045000px;}
.y2b_c00292{bottom:281.925000px;}
.y2a_c00292{bottom:303.165000px;}
.y29_c00292{bottom:324.045000px;}
.y28_c00292{bottom:344.925000px;}
.y27_c00292{bottom:380.925000px;}
.y26_c00292{bottom:416.925000px;}
.y25_c00292{bottom:437.805000px;}
.y24_c00292{bottom:437.806800px;}
.y23_c00292{bottom:455.445000px;}
.y22_c00292{bottom:488.205000px;}
.y20_c00292{bottom:509.445000px;}
.y21_c00292{bottom:511.965000px;}
.y1e_c00292{bottom:529.605000px;}
.y1f_c00292{bottom:544.725000px;}
.y1d_c00292{bottom:547.245000px;}
.y1c_c00292{bottom:564.525000px;}
.y1a_c00292{bottom:582.885000px;}
.y1b_c00292{bottom:587.925000px;}
.y19_c00292{bottom:603.045000px;}
.y17_c00292{bottom:605.205000px;}
.y16_c00292{bottom:605.565000px;}
.y18_c00292{bottom:620.325000px;}
.y15_c00292{bottom:622.845000px;}
.y14_c00292{bottom:640.485000px;}
.y13_c00292{bottom:673.965000px;}
.y12_c00292{bottom:709.965000px;}
.y11_c00292{bottom:730.845000px;}
.y10_c00292{bottom:752.085000px;}
.yf_c00292{bottom:772.965000px;}
.ye_c00292{bottom:793.845000px;}
.yd_c00292{bottom:815.085000px;}
.yc_c00292{bottom:851.085000px;}
.yb_c00292{bottom:871.965000px;}
.ya_c00292{bottom:892.845000px;}
.y9_c00292{bottom:914.085000px;}
.y8_c00292{bottom:950.085000px;}
.y7_c00292{bottom:970.965000px;}
.y6_c00292{bottom:991.845000px;}
.y5_c00292{bottom:1027.845000px;}
.y4_c00292{bottom:1049.085000px;}
.y3_c00292{bottom:1085.085000px;}
.y2_c00292{bottom:1138.365000px;}
.hb_c00292{height:19.255500px;}
.ha_c00292{height:32.616000px;}
.h8_c00292{height:39.350391px;}
.hc_c00292{height:46.320000px;}
.h7_c00292{height:46.981634px;}
.h6_c00292{height:53.490240px;}
.h9_c00292{height:57.096000px;}
.h4_c00292{height:57.294676px;}
.h3_c00292{height:65.232000px;}
.h5_c00292{height:68.074560px;}
.h2_c00292{height:1201.365000px;}
.h0_c00292{height:1262.835000px;}
.h1_c00292{height:1263.000000px;}
.w7_c00292{width:25.020000px;}
.w3_c00292{width:50.760000px;}
.w5_c00292{width:126.360000px;}
.w4_c00292{width:167.760000px;}
.w6_c00292{width:306.000000px;}
.w2_c00292{width:863.955000px;}
.w0_c00292{width:892.935000px;}
.w1_c00292{width:893.250000px;}
.x0_c00292{left:0.000000px;}
.x13_c00292{left:7.920150px;}
.x1_c00292{left:14.490000px;}
.x1a_c00292{left:73.753350px;}
.x2_c00292{left:113.040150px;}
.x12_c00292{left:119.610000px;}
.x21_c00292{left:127.217700px;}
.x5_c00292{left:140.037600px;}
.x3_c00292{left:154.043700px;}
.x15_c00292{left:156.284700px;}
.x18_c00292{left:161.450550px;}
.x14_c00292{left:171.090000px;}
.x6_c00292{left:184.642800px;}
.x1b_c00292{left:191.450250px;}
.x19_c00292{left:199.803900px;}
.x4_c00292{left:229.516500px;}
.x7_c00292{left:274.587150px;}
.x1c_c00292{left:279.497250px;}
.x8_c00292{left:301.190850px;}
.x1d_c00292{left:320.992350px;}
.x1f_c00292{left:327.056400px;}
.x16_c00292{left:339.570000px;}
.x10_c00292{left:356.041200px;}
.x11_c00292{left:369.019050px;}
.x9_c00292{left:385.177350px;}
.x1e_c00292{left:410.283600px;}
.x20_c00292{left:426.054900px;}
.xa_c00292{left:459.570150px;}
.x17_c00292{left:466.650000px;}
.xb_c00292{left:520.354950px;}
.xc_c00292{left:538.156500px;}
.xd_c00292{left:604.143300px;}
.xe_c00292{left:706.253550px;}
.xf_c00292{left:716.261400px;}
.x22_c00292{left:759.915000px;}
@media print{
.v3_c00292{vertical-align:-21.760000pt;}
.v0_c00292{vertical-align:0.000000pt;}
.v2_c00292{vertical-align:21.760000pt;}
.v1_c00292{vertical-align:26.880000pt;}
.ls1d_c00292{letter-spacing:-0.159616pt;}
.ls13_c00292{letter-spacing:0.000000pt;}
.ls1e_c00292{letter-spacing:0.128000pt;}
.ls16_c00292{letter-spacing:0.215168pt;}
.ls19_c00292{letter-spacing:0.236160pt;}
.lse_c00292{letter-spacing:0.262400pt;}
.lsf_c00292{letter-spacing:0.267648pt;}
.ls5_c00292{letter-spacing:0.283093pt;}
.ls14_c00292{letter-spacing:0.283392pt;}
.ls15_c00292{letter-spacing:0.292114pt;}
.ls10_c00292{letter-spacing:0.314880pt;}
.ls9_c00292{letter-spacing:0.351616pt;}
.lsd_c00292{letter-spacing:0.456576pt;}
.lsa_c00292{letter-spacing:0.472320pt;}
.ls17_c00292{letter-spacing:0.486856pt;}
.ls1_c00292{letter-spacing:0.553813pt;}
.lsc_c00292{letter-spacing:0.632913pt;}
.ls1a_c00292{letter-spacing:0.855424pt;}
.ls6_c00292{letter-spacing:4.663360pt;}
.ls4_c00292{letter-spacing:4.710293pt;}
.ls8_c00292{letter-spacing:4.758080pt;}
.ls3_c00292{letter-spacing:4.758613pt;}
.ls1c_c00292{letter-spacing:4.827264pt;}
.ls7_c00292{letter-spacing:4.900587pt;}
.ls18_c00292{letter-spacing:4.901632pt;}
.ls11_c00292{letter-spacing:5.311467pt;}
.ls2_c00292{letter-spacing:5.312000pt;}
.ls12_c00292{letter-spacing:5.475484pt;}
.lsb_c00292{letter-spacing:15.112427pt;}
.ls1b_c00292{letter-spacing:15.114240pt;}
.ls0_c00292{letter-spacing:48.768000pt;}
.ws2_c00292{word-spacing:-19.491072pt;}
.ws7_c00292{word-spacing:-18.705024pt;}
.ws6_c00292{word-spacing:-15.671364pt;}
.ws4_c00292{word-spacing:-15.444864pt;}
.ws1_c00292{word-spacing:-15.061760pt;}
.ws5_c00292{word-spacing:-14.941056pt;}
.ws0_c00292{word-spacing:-14.589440pt;}
.ws8_c00292{word-spacing:-10.159744pt;}
.ws9_c00292{word-spacing:-9.024000pt;}
.ws3_c00292{word-spacing:-8.896000pt;}
.wsa_c00292{word-spacing:0.000000pt;}
._9_c00292{margin-left:-14.641920pt;}
._8_c00292{margin-left:-1.135998pt;}
._3_c00292{width:1.152000pt;}
._e_c00292{width:2.048000pt;}
._0_c00292{width:3.008000pt;}
._4_c00292{width:4.160000pt;}
._d_c00292{width:5.824000pt;}
._c_c00292{width:7.360000pt;}
._7_c00292{width:9.024000pt;}
._6_c00292{width:10.176000pt;}
._5_c00292{width:11.392000pt;}
._1_c00292{width:13.504000pt;}
._2_c00292{width:21.760000pt;}
._a_c00292{width:25.100796pt;}
._b_c00292{width:26.413960pt;}
.fs5_c00292{font-size:32.000000pt;}
.fs2_c00292{font-size:37.120000pt;}
.fs6_c00292{font-size:49.920000pt;}
.fs3_c00292{font-size:52.480000pt;}
.fs7_c00292{font-size:53.333333pt;}
.fs4_c00292{font-size:54.095146pt;}
.fs0_c00292{font-size:64.000000pt;}
.fs1_c00292{font-size:65.969690pt;}
.y0_c00292{bottom:0.000000pt;}
.y36_c00292{bottom:2.773467pt;}
.y35_c00292{bottom:30.884000pt;}
.y1_c00292{bottom:48.000000pt;}
.y34_c00292{bottom:49.320000pt;}
.y33_c00292{bottom:54.760000pt;}
.y32_c00292{bottom:70.120000pt;}
.y31_c00292{bottom:85.800000pt;}
.y30_c00292{bottom:109.480000pt;}
.y2f_c00292{bottom:160.040000pt;}
.y2e_c00292{bottom:178.600000pt;}
.y2d_c00292{bottom:200.360000pt;}
.y2c_c00292{bottom:232.040000pt;}
.y2b_c00292{bottom:250.600000pt;}
.y2a_c00292{bottom:269.480000pt;}
.y29_c00292{bottom:288.040000pt;}
.y28_c00292{bottom:306.600000pt;}
.y27_c00292{bottom:338.600000pt;}
.y26_c00292{bottom:370.600000pt;}
.y25_c00292{bottom:389.160000pt;}
.y24_c00292{bottom:389.161600pt;}
.y23_c00292{bottom:404.840000pt;}
.y22_c00292{bottom:433.960000pt;}
.y20_c00292{bottom:452.840000pt;}
.y21_c00292{bottom:455.080000pt;}
.y1e_c00292{bottom:470.760000pt;}
.y1f_c00292{bottom:484.200000pt;}
.y1d_c00292{bottom:486.440000pt;}
.y1c_c00292{bottom:501.800000pt;}
.y1a_c00292{bottom:518.120000pt;}
.y1b_c00292{bottom:522.600000pt;}
.y19_c00292{bottom:536.040000pt;}
.y17_c00292{bottom:537.960000pt;}
.y16_c00292{bottom:538.280000pt;}
.y18_c00292{bottom:551.400000pt;}
.y15_c00292{bottom:553.640000pt;}
.y14_c00292{bottom:569.320000pt;}
.y13_c00292{bottom:599.080000pt;}
.y12_c00292{bottom:631.080000pt;}
.y11_c00292{bottom:649.640000pt;}
.y10_c00292{bottom:668.520000pt;}
.yf_c00292{bottom:687.080000pt;}
.ye_c00292{bottom:705.640000pt;}
.yd_c00292{bottom:724.520000pt;}
.yc_c00292{bottom:756.520000pt;}
.yb_c00292{bottom:775.080000pt;}
.ya_c00292{bottom:793.640000pt;}
.y9_c00292{bottom:812.520000pt;}
.y8_c00292{bottom:844.520000pt;}
.y7_c00292{bottom:863.080000pt;}
.y6_c00292{bottom:881.640000pt;}
.y5_c00292{bottom:913.640000pt;}
.y4_c00292{bottom:932.520000pt;}
.y3_c00292{bottom:964.520000pt;}
.y2_c00292{bottom:1011.880000pt;}
.hb_c00292{height:17.116000pt;}
.ha_c00292{height:28.992000pt;}
.h8_c00292{height:34.978125pt;}
.hc_c00292{height:41.173333pt;}
.h7_c00292{height:41.761453pt;}
.h6_c00292{height:47.546880pt;}
.h9_c00292{height:50.752000pt;}
.h4_c00292{height:50.928601pt;}
.h3_c00292{height:57.984000pt;}
.h5_c00292{height:60.510720pt;}
.h2_c00292{height:1067.880000pt;}
.h0_c00292{height:1122.520000pt;}
.h1_c00292{height:1122.666667pt;}
.w7_c00292{width:22.240000pt;}
.w3_c00292{width:45.120000pt;}
.w5_c00292{width:112.320000pt;}
.w4_c00292{width:149.120000pt;}
.w6_c00292{width:272.000000pt;}
.w2_c00292{width:767.960000pt;}
.w0_c00292{width:793.720000pt;}
.w1_c00292{width:794.000000pt;}
.x0_c00292{left:0.000000pt;}
.x13_c00292{left:7.040133pt;}
.x1_c00292{left:12.880000pt;}
.x1a_c00292{left:65.558533pt;}
.x2_c00292{left:100.480133pt;}
.x12_c00292{left:106.320000pt;}
.x21_c00292{left:113.082400pt;}
.x5_c00292{left:124.477867pt;}
.x3_c00292{left:136.927733pt;}
.x15_c00292{left:138.919733pt;}
.x18_c00292{left:143.511600pt;}
.x14_c00292{left:152.080000pt;}
.x6_c00292{left:164.126933pt;}
.x1b_c00292{left:170.178000pt;}
.x19_c00292{left:177.603467pt;}
.x4_c00292{left:204.014667pt;}
.x7_c00292{left:244.077467pt;}
.x1c_c00292{left:248.442000pt;}
.x8_c00292{left:267.725200pt;}
.x1d_c00292{left:285.326533pt;}
.x1f_c00292{left:290.716800pt;}
.x16_c00292{left:301.840000pt;}
.x10_c00292{left:316.481067pt;}
.x11_c00292{left:328.016933pt;}
.x9_c00292{left:342.379867pt;}
.x1e_c00292{left:364.696533pt;}
.x20_c00292{left:378.715467pt;}
.xa_c00292{left:408.506800pt;}
.x17_c00292{left:414.800000pt;}
.xb_c00292{left:462.537733pt;}
.xc_c00292{left:478.361333pt;}
.xd_c00292{left:537.016267pt;}
.xe_c00292{left:627.780933pt;}
.xf_c00292{left:636.676800pt;}
.x22_c00292{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c177e7d1b71e1674ddb6cb00.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.134000;font-style:normal;font-weight:normal;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_0c80db7bde1a7d4964095ef0.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;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:ff3_c00293;src:url('chunks/assets/font_da9fda8f10ee96e8040dfaaa.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:0.787000;font-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_c00293{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00293{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00293{vertical-align:-24.480000px;}
.v0_c00293{vertical-align:0.000000px;}
.v1_c00293{vertical-align:30.240000px;}
.ls9_c00293{letter-spacing:-0.179568px;}
.ls6_c00293{letter-spacing:0.000000px;}
.lsa_c00293{letter-spacing:0.144000px;}
.lse_c00293{letter-spacing:0.202464px;}
.ls3_c00293{letter-spacing:0.238560px;}
.lsd_c00293{letter-spacing:0.239760px;}
.lsf_c00293{letter-spacing:0.282384px;}
.lsc_c00293{letter-spacing:0.362304px;}
.lsb_c00293{letter-spacing:0.399600px;}
.ls2_c00293{letter-spacing:0.450342px;}
.ls1_c00293{letter-spacing:0.560880px;}
.ls7_c00293{letter-spacing:5.335200px;}
.ls4_c00293{letter-spacing:5.976000px;}
.ls0_c00293{letter-spacing:5.982000px;}
.ls5_c00293{letter-spacing:6.159920px;}
.ls8_c00293{letter-spacing:22.456800px;}
.sc__c00293{text-shadow:none;}
.sc1_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00293{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc1_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00293{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00293{word-spacing:-20.947680px;}
.ws4_c00293{word-spacing:-15.211440px;}
.ws3_c00293{word-spacing:-15.051600px;}
.ws1_c00293{word-spacing:-11.429712px;}
.ws2_c00293{word-spacing:-10.152000px;}
.ws5_c00293{word-spacing:0.000000px;}
._1_c00293{margin-left:-22.449600px;}
._8_c00293{margin-left:-1.032000px;}
._9_c00293{width:1.087272px;}
._5_c00293{width:3.168000px;}
._7_c00293{width:4.320000px;}
._6_c00293{width:6.264000px;}
._0_c00293{width:8.640000px;}
._4_c00293{width:9.792000px;}
._3_c00293{width:18.504000px;}
._2_c00293{width:22.464000px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs4_c00293{font-size:36.000000px;}
.fs3_c00293{font-size:41.760000px;}
.fs6_c00293{font-size:53.280000px;}
.fs7_c00293{font-size:54.919767px;}
.fs2_c00293{font-size:56.160000px;}
.fs5_c00293{font-size:59.040000px;}
.fs8_c00293{font-size:60.000000px;}
.fs0_c00293{font-size:72.000000px;}
.fs1_c00293{font-size:74.215901px;}
.y0_c00293{bottom:0.000000px;}
.y26_c00293{bottom:3.120150px;}
.y24_c00293{bottom:10.440000px;}
.y21_c00293{bottom:14.400000px;}
.y23_c00293{bottom:26.280000px;}
.y25_c00293{bottom:34.744500px;}
.y1_c00293{bottom:54.000000px;}
.y1f_c00293{bottom:61.605000px;}
.y1e_c00293{bottom:88.245000px;}
.y22_c00293{bottom:184.365000px;}
.y1d_c00293{bottom:196.965000px;}
.y1c_c00293{bottom:232.965000px;}
.y1b_c00293{bottom:268.965000px;}
.y1a_c00293{bottom:304.965000px;}
.y19_c00293{bottom:340.965000px;}
.y18_c00293{bottom:376.965000px;}
.y17_c00293{bottom:412.965000px;}
.y16_c00293{bottom:448.965000px;}
.y20_c00293{bottom:526.365000px;}
.y15_c00293{bottom:526.725000px;}
.y14_c00293{bottom:562.725000px;}
.y13_c00293{bottom:599.085000px;}
.y12_c00293{bottom:635.085000px;}
.y11_c00293{bottom:671.085000px;}
.y10_c00293{bottom:707.085000px;}
.yf_c00293{bottom:743.085000px;}
.ye_c00293{bottom:779.085000px;}
.yd_c00293{bottom:815.085000px;}
.yc_c00293{bottom:851.085000px;}
.yb_c00293{bottom:871.965000px;}
.ya_c00293{bottom:892.845000px;}
.y9_c00293{bottom:928.845000px;}
.y8_c00293{bottom:950.085000px;}
.y7_c00293{bottom:970.965000px;}
.y6_c00293{bottom:991.845000px;}
.y5_c00293{bottom:1013.085000px;}
.y4_c00293{bottom:1049.085000px;}
.y3_c00293{bottom:1085.085000px;}
.y2_c00293{bottom:1138.365000px;}
.hb_c00293{height:19.255500px;}
.h7_c00293{height:27.000000px;}
.h6_c00293{height:32.616000px;}
.h9_c00293{height:38.880000px;}
.ha_c00293{height:42.398060px;}
.hc_c00293{height:46.320000px;}
.h8_c00293{height:48.271680px;}
.h4_c00293{height:57.294676px;}
.h3_c00293{height:65.232000px;}
.h5_c00293{height:68.074560px;}
.h2_c00293{height:1201.365000px;}
.h0_c00293{height:1262.835000px;}
.h1_c00293{height:1263.000000px;}
.w5_c00293{width:25.020000px;}
.w4_c00293{width:623.160000px;}
.w3_c00293{width:627.840000px;}
.w2_c00293{width:863.955000px;}
.w0_c00293{width:892.935000px;}
.w1_c00293{width:893.250000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:14.490000px;}
.xe_c00293{left:40.618350px;}
.xf_c00293{left:105.352350px;}
.x2_c00293{left:113.040150px;}
.xd_c00293{left:128.970000px;}
.x12_c00293{left:148.126950px;}
.x3_c00293{left:154.043700px;}
.x6_c00293{left:167.039400px;}
.x4_c00293{left:229.516500px;}
.x10_c00293{left:361.942500px;}
.x11_c00293{left:381.449400px;}
.x7_c00293{left:490.053150px;}
.x8_c00293{left:587.284350px;}
.x9_c00293{left:694.772400px;}
.xb_c00293{left:709.386900px;}
.x5_c00293{left:710.394600px;}
.xa_c00293{left:730.771800px;}
.xc_c00293{left:745.386150px;}
.x13_c00293{left:759.915000px;}
@media print{
.v2_c00293{vertical-align:-21.760000pt;}
.v0_c00293{vertical-align:0.000000pt;}
.v1_c00293{vertical-align:26.880000pt;}
.ls9_c00293{letter-spacing:-0.159616pt;}
.ls6_c00293{letter-spacing:0.000000pt;}
.lsa_c00293{letter-spacing:0.128000pt;}
.lse_c00293{letter-spacing:0.179968pt;}
.ls3_c00293{letter-spacing:0.212053pt;}
.lsd_c00293{letter-spacing:0.213120pt;}
.lsf_c00293{letter-spacing:0.251008pt;}
.lsc_c00293{letter-spacing:0.322048pt;}
.lsb_c00293{letter-spacing:0.355200pt;}
.ls2_c00293{letter-spacing:0.400304pt;}
.ls1_c00293{letter-spacing:0.498560pt;}
.ls7_c00293{letter-spacing:4.742400pt;}
.ls4_c00293{letter-spacing:5.312000pt;}
.ls0_c00293{letter-spacing:5.317333pt;}
.ls5_c00293{letter-spacing:5.475484pt;}
.ls8_c00293{letter-spacing:19.961600pt;}
.ws0_c00293{word-spacing:-18.620160pt;}
.ws4_c00293{word-spacing:-13.521280pt;}
.ws3_c00293{word-spacing:-13.379200pt;}
.ws1_c00293{word-spacing:-10.159744pt;}
.ws2_c00293{word-spacing:-9.024000pt;}
.ws5_c00293{word-spacing:0.000000pt;}
._1_c00293{margin-left:-19.955200pt;}
._8_c00293{margin-left:-0.917333pt;}
._9_c00293{width:0.966464pt;}
._5_c00293{width:2.816000pt;}
._7_c00293{width:3.840000pt;}
._6_c00293{width:5.568000pt;}
._0_c00293{width:7.680000pt;}
._4_c00293{width:8.704000pt;}
._3_c00293{width:16.448000pt;}
._2_c00293{width:19.968000pt;}
.fs4_c00293{font-size:32.000000pt;}
.fs3_c00293{font-size:37.120000pt;}
.fs6_c00293{font-size:47.360000pt;}
.fs7_c00293{font-size:48.817571pt;}
.fs2_c00293{font-size:49.920000pt;}
.fs5_c00293{font-size:52.480000pt;}
.fs8_c00293{font-size:53.333333pt;}
.fs0_c00293{font-size:64.000000pt;}
.fs1_c00293{font-size:65.969690pt;}
.y0_c00293{bottom:0.000000pt;}
.y26_c00293{bottom:2.773467pt;}
.y24_c00293{bottom:9.280000pt;}
.y21_c00293{bottom:12.800000pt;}
.y23_c00293{bottom:23.360000pt;}
.y25_c00293{bottom:30.884000pt;}
.y1_c00293{bottom:48.000000pt;}
.y1f_c00293{bottom:54.760000pt;}
.y1e_c00293{bottom:78.440000pt;}
.y22_c00293{bottom:163.880000pt;}
.y1d_c00293{bottom:175.080000pt;}
.y1c_c00293{bottom:207.080000pt;}
.y1b_c00293{bottom:239.080000pt;}
.y1a_c00293{bottom:271.080000pt;}
.y19_c00293{bottom:303.080000pt;}
.y18_c00293{bottom:335.080000pt;}
.y17_c00293{bottom:367.080000pt;}
.y16_c00293{bottom:399.080000pt;}
.y20_c00293{bottom:467.880000pt;}
.y15_c00293{bottom:468.200000pt;}
.y14_c00293{bottom:500.200000pt;}
.y13_c00293{bottom:532.520000pt;}
.y12_c00293{bottom:564.520000pt;}
.y11_c00293{bottom:596.520000pt;}
.y10_c00293{bottom:628.520000pt;}
.yf_c00293{bottom:660.520000pt;}
.ye_c00293{bottom:692.520000pt;}
.yd_c00293{bottom:724.520000pt;}
.yc_c00293{bottom:756.520000pt;}
.yb_c00293{bottom:775.080000pt;}
.ya_c00293{bottom:793.640000pt;}
.y9_c00293{bottom:825.640000pt;}
.y8_c00293{bottom:844.520000pt;}
.y7_c00293{bottom:863.080000pt;}
.y6_c00293{bottom:881.640000pt;}
.y5_c00293{bottom:900.520000pt;}
.y4_c00293{bottom:932.520000pt;}
.y3_c00293{bottom:964.520000pt;}
.y2_c00293{bottom:1011.880000pt;}
.hb_c00293{height:17.116000pt;}
.h7_c00293{height:24.000000pt;}
.h6_c00293{height:28.992000pt;}
.h9_c00293{height:34.560000pt;}
.ha_c00293{height:37.687165pt;}
.hc_c00293{height:41.173333pt;}
.h8_c00293{height:42.908160pt;}
.h4_c00293{height:50.928601pt;}
.h3_c00293{height:57.984000pt;}
.h5_c00293{height:60.510720pt;}
.h2_c00293{height:1067.880000pt;}
.h0_c00293{height:1122.520000pt;}
.h1_c00293{height:1122.666667pt;}
.w5_c00293{width:22.240000pt;}
.w4_c00293{width:553.920000pt;}
.w3_c00293{width:558.080000pt;}
.w2_c00293{width:767.960000pt;}
.w0_c00293{width:793.720000pt;}
.w1_c00293{width:794.000000pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:12.880000pt;}
.xe_c00293{left:36.105200pt;}
.xf_c00293{left:93.646533pt;}
.x2_c00293{left:100.480133pt;}
.xd_c00293{left:114.640000pt;}
.x12_c00293{left:131.668400pt;}
.x3_c00293{left:136.927733pt;}
.x6_c00293{left:148.479467pt;}
.x4_c00293{left:204.014667pt;}
.x10_c00293{left:321.726667pt;}
.x11_c00293{left:339.066133pt;}
.x7_c00293{left:435.602800pt;}
.x8_c00293{left:522.030533pt;}
.x9_c00293{left:617.575467pt;}
.xb_c00293{left:630.566133pt;}
.x5_c00293{left:631.461867pt;}
.xa_c00293{left:649.574933pt;}
.xc_c00293{left:662.565467pt;}
.x13_c00293{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb3d687ad0da6ca5c2c68d71.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.134000;font-style:normal;font-weight:normal;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_9da9e91d0f3c92498181310f.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;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:ff3_c00294;src:url('chunks/assets/font_8e153f1850715bc5c56d1ca4.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:0.787000;font-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_c00294{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00294{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00294{letter-spacing:0.000000px;}
.ls7_c00294{letter-spacing:0.202464px;}
.ls1_c00294{letter-spacing:0.238560px;}
.ls9_c00294{letter-spacing:0.239760px;}
.ls8_c00294{letter-spacing:0.282384px;}
.ls6_c00294{letter-spacing:0.362304px;}
.ls5_c00294{letter-spacing:0.399600px;}
.ls0_c00294{letter-spacing:0.450342px;}
.ls2_c00294{letter-spacing:5.976000px;}
.ls3_c00294{letter-spacing:6.159920px;}
.sc__c00294{text-shadow:none;}
.sc1_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00294{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc1_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00294{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00294{word-spacing:-15.211440px;}
.ws1_c00294{word-spacing:-15.051600px;}
.ws2_c00294{word-spacing:0.000000px;}
._0_c00294{margin-left:-1.118880px;}
.fc1_c00294{color:transparent;}
.fc0_c00294{color:rgb(0,0,0);}
.fs2_c00294{font-size:53.280000px;}
.fs3_c00294{font-size:54.919767px;}
.fs4_c00294{font-size:60.000000px;}
.fs0_c00294{font-size:72.000000px;}
.fs1_c00294{font-size:74.215901px;}
.y0_c00294{bottom:0.000000px;}
.y29_c00294{bottom:3.120150px;}
.y27_c00294{bottom:10.800000px;}
.y24_c00294{bottom:14.400000px;}
.y22_c00294{bottom:25.560000px;}
.y26_c00294{bottom:26.280000px;}
.y28_c00294{bottom:34.744500px;}
.y21_c00294{bottom:41.400000px;}
.y1_c00294{bottom:54.000000px;}
.y1f_c00294{bottom:76.725000px;}
.y1e_c00294{bottom:112.725000px;}
.y23_c00294{bottom:130.365000px;}
.y1d_c00294{bottom:148.725000px;}
.y1c_c00294{bottom:184.725000px;}
.y1b_c00294{bottom:220.725000px;}
.y1a_c00294{bottom:256.725000px;}
.y19_c00294{bottom:292.725000px;}
.y18_c00294{bottom:328.725000px;}
.y17_c00294{bottom:364.725000px;}
.y16_c00294{bottom:400.725000px;}
.y15_c00294{bottom:436.725000px;}
.y20_c00294{bottom:454.365000px;}
.y14_c00294{bottom:472.725000px;}
.y13_c00294{bottom:509.085000px;}
.y12_c00294{bottom:545.085000px;}
.y11_c00294{bottom:581.085000px;}
.y10_c00294{bottom:617.085000px;}
.yf_c00294{bottom:653.085000px;}
.ye_c00294{bottom:689.085000px;}
.yd_c00294{bottom:725.085000px;}
.yc_c00294{bottom:761.085000px;}
.yb_c00294{bottom:797.085000px;}
.y25_c00294{bottom:821.205000px;}
.ya_c00294{bottom:833.085000px;}
.y9_c00294{bottom:869.085000px;}
.y8_c00294{bottom:905.085000px;}
.y7_c00294{bottom:941.085000px;}
.y6_c00294{bottom:977.085000px;}
.y5_c00294{bottom:1013.085000px;}
.y4_c00294{bottom:1049.085000px;}
.y3_c00294{bottom:1085.085000px;}
.y2_c00294{bottom:1138.365000px;}
.ha_c00294{height:19.255500px;}
.h8_c00294{height:27.000000px;}
.h9_c00294{height:38.880000px;}
.h7_c00294{height:42.398060px;}
.hb_c00294{height:46.320000px;}
.h6_c00294{height:48.271680px;}
.h5_c00294{height:54.000000px;}
.h4_c00294{height:57.294676px;}
.h3_c00294{height:65.232000px;}
.h2_c00294{height:1201.365000px;}
.h0_c00294{height:1262.835000px;}
.h1_c00294{height:1263.000000px;}
.w6_c00294{width:25.020000px;}
.w5_c00294{width:623.160000px;}
.w4_c00294{width:627.840000px;}
.w3_c00294{width:628.920000px;}
.w2_c00294{width:863.955000px;}
.w0_c00294{width:892.935000px;}
.w1_c00294{width:893.250000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:14.490000px;}
.xb_c00294{left:36.741900px;}
.x6_c00294{left:96.369450px;}
.xd_c00294{left:105.352350px;}
.x2_c00294{left:113.040150px;}
.x5_c00294{left:123.210000px;}
.xa_c00294{left:124.290000px;}
.xc_c00294{left:128.970000px;}
.x10_c00294{left:148.126950px;}
.x9_c00294{left:150.766800px;}
.x3_c00294{left:154.043700px;}
.x4_c00294{left:229.516500px;}
.x7_c00294{left:352.959600px;}
.xe_c00294{left:361.942500px;}
.x8_c00294{left:372.466500px;}
.xf_c00294{left:381.449400px;}
.x11_c00294{left:759.915000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls4_c00294{letter-spacing:0.000000pt;}
.ls7_c00294{letter-spacing:0.179968pt;}
.ls1_c00294{letter-spacing:0.212053pt;}
.ls9_c00294{letter-spacing:0.213120pt;}
.ls8_c00294{letter-spacing:0.251008pt;}
.ls6_c00294{letter-spacing:0.322048pt;}
.ls5_c00294{letter-spacing:0.355200pt;}
.ls0_c00294{letter-spacing:0.400304pt;}
.ls2_c00294{letter-spacing:5.312000pt;}
.ls3_c00294{letter-spacing:5.475484pt;}
.ws0_c00294{word-spacing:-13.521280pt;}
.ws1_c00294{word-spacing:-13.379200pt;}
.ws2_c00294{word-spacing:0.000000pt;}
._0_c00294{margin-left:-0.994560pt;}
.fs2_c00294{font-size:47.360000pt;}
.fs3_c00294{font-size:48.817571pt;}
.fs4_c00294{font-size:53.333333pt;}
.fs0_c00294{font-size:64.000000pt;}
.fs1_c00294{font-size:65.969690pt;}
.y0_c00294{bottom:0.000000pt;}
.y29_c00294{bottom:2.773467pt;}
.y27_c00294{bottom:9.600000pt;}
.y24_c00294{bottom:12.800000pt;}
.y22_c00294{bottom:22.720000pt;}
.y26_c00294{bottom:23.360000pt;}
.y28_c00294{bottom:30.884000pt;}
.y21_c00294{bottom:36.800000pt;}
.y1_c00294{bottom:48.000000pt;}
.y1f_c00294{bottom:68.200000pt;}
.y1e_c00294{bottom:100.200000pt;}
.y23_c00294{bottom:115.880000pt;}
.y1d_c00294{bottom:132.200000pt;}
.y1c_c00294{bottom:164.200000pt;}
.y1b_c00294{bottom:196.200000pt;}
.y1a_c00294{bottom:228.200000pt;}
.y19_c00294{bottom:260.200000pt;}
.y18_c00294{bottom:292.200000pt;}
.y17_c00294{bottom:324.200000pt;}
.y16_c00294{bottom:356.200000pt;}
.y15_c00294{bottom:388.200000pt;}
.y20_c00294{bottom:403.880000pt;}
.y14_c00294{bottom:420.200000pt;}
.y13_c00294{bottom:452.520000pt;}
.y12_c00294{bottom:484.520000pt;}
.y11_c00294{bottom:516.520000pt;}
.y10_c00294{bottom:548.520000pt;}
.yf_c00294{bottom:580.520000pt;}
.ye_c00294{bottom:612.520000pt;}
.yd_c00294{bottom:644.520000pt;}
.yc_c00294{bottom:676.520000pt;}
.yb_c00294{bottom:708.520000pt;}
.y25_c00294{bottom:729.960000pt;}
.ya_c00294{bottom:740.520000pt;}
.y9_c00294{bottom:772.520000pt;}
.y8_c00294{bottom:804.520000pt;}
.y7_c00294{bottom:836.520000pt;}
.y6_c00294{bottom:868.520000pt;}
.y5_c00294{bottom:900.520000pt;}
.y4_c00294{bottom:932.520000pt;}
.y3_c00294{bottom:964.520000pt;}
.y2_c00294{bottom:1011.880000pt;}
.ha_c00294{height:17.116000pt;}
.h8_c00294{height:24.000000pt;}
.h9_c00294{height:34.560000pt;}
.h7_c00294{height:37.687165pt;}
.hb_c00294{height:41.173333pt;}
.h6_c00294{height:42.908160pt;}
.h5_c00294{height:48.000000pt;}
.h4_c00294{height:50.928601pt;}
.h3_c00294{height:57.984000pt;}
.h2_c00294{height:1067.880000pt;}
.h0_c00294{height:1122.520000pt;}
.h1_c00294{height:1122.666667pt;}
.w6_c00294{width:22.240000pt;}
.w5_c00294{width:553.920000pt;}
.w4_c00294{width:558.080000pt;}
.w3_c00294{width:559.040000pt;}
.w2_c00294{width:767.960000pt;}
.w0_c00294{width:793.720000pt;}
.w1_c00294{width:794.000000pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:12.880000pt;}
.xb_c00294{left:32.659467pt;}
.x6_c00294{left:85.661733pt;}
.xd_c00294{left:93.646533pt;}
.x2_c00294{left:100.480133pt;}
.x5_c00294{left:109.520000pt;}
.xa_c00294{left:110.480000pt;}
.xc_c00294{left:114.640000pt;}
.x10_c00294{left:131.668400pt;}
.x9_c00294{left:134.014933pt;}
.x3_c00294{left:136.927733pt;}
.x4_c00294{left:204.014667pt;}
.x7_c00294{left:313.741867pt;}
.xe_c00294{left:321.726667pt;}
.x8_c00294{left:331.081333pt;}
.xf_c00294{left:339.066133pt;}
.x11_c00294{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3c735069cd4470974c0769b3.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.134000;font-style:normal;font-weight:normal;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_989b6e9096f4cd914360f3c1.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;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:ff3_c00295;src:url('chunks/assets/font_cd21d5debb70257b197f9ee6.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:0.787000;font-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_c00295{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00295{vertical-align:-24.480000px;}
.v0_c00295{vertical-align:0.000000px;}
.v1_c00295{vertical-align:30.240000px;}
.lsd_c00295{letter-spacing:0.000000px;}
.ls5_c00295{letter-spacing:0.009240px;}
.ls4_c00295{letter-spacing:0.156000px;}
.ls7_c00295{letter-spacing:0.265680px;}
.ls1c_c00295{letter-spacing:0.273857px;}
.ls9_c00295{letter-spacing:0.295200px;}
.ls12_c00295{letter-spacing:0.410400px;}
.ls18_c00295{letter-spacing:0.425088px;}
.ls13_c00295{letter-spacing:0.438171px;}
.ls1a_c00295{letter-spacing:0.478224px;}
.lsa_c00295{letter-spacing:0.531360px;}
.ls8_c00295{letter-spacing:0.549072px;}
.ls6_c00295{letter-spacing:0.584640px;}
.ls17_c00295{letter-spacing:0.637632px;}
.ls14_c00295{letter-spacing:0.657256px;}
.ls1d_c00295{letter-spacing:0.690768px;}
.ls1b_c00295{letter-spacing:0.712027px;}
.ls3_c00295{letter-spacing:0.834240px;}
.ls15_c00295{letter-spacing:0.962352px;}
.ls16_c00295{letter-spacing:3.754944px;}
.ls2_c00295{letter-spacing:4.964520px;}
.ls10_c00295{letter-spacing:5.200416px;}
.ls11_c00295{letter-spacing:5.335200px;}
.lsf_c00295{letter-spacing:5.430672px;}
.lse_c00295{letter-spacing:5.597809px;}
.ls1_c00295{letter-spacing:5.974800px;}
.lsb_c00295{letter-spacing:5.976000px;}
.ls0_c00295{letter-spacing:6.158683px;}
.lsc_c00295{letter-spacing:6.159920px;}
.ls19_c00295{letter-spacing:13.024224px;}
.sc__c00295{text-shadow:none;}
.sc1_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00295{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc1_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00295{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00295{word-spacing:-21.690785px;}
.ws1_c00295{word-spacing:-21.043152px;}
.ws3_c00295{word-spacing:-20.947680px;}
.ws2_c00295{word-spacing:-20.016000px;}
.ws9_c00295{word-spacing:-17.630284px;}
.ws6_c00295{word-spacing:-17.575513px;}
.ws8_c00295{word-spacing:-17.050752px;}
.ws7_c00295{word-spacing:-16.944480px;}
.ws4_c00295{word-spacing:-11.609280px;}
.ws5_c00295{word-spacing:-10.008000px;}
.wsa_c00295{word-spacing:0.000000px;}
._15_c00295{margin-left:-13.520160px;}
._14_c00295{margin-left:-12.457440px;}
._13_c00295{margin-left:-4.250880px;}
._12_c00295{margin-left:-3.070080px;}
._11_c00295{margin-left:-1.239840px;}
._4_c00295{width:1.296000px;}
._6_c00295{width:3.178440px;}
._5_c00295{width:4.206840px;}
._0_c00295{width:5.869008px;}
._3_c00295{width:6.984000px;}
._c_c00295{width:8.064000px;}
._9_c00295{width:9.504000px;}
._f_c00295{width:10.512000px;}
._d_c00295{width:11.808000px;}
._10_c00295{width:14.688000px;}
._a_c00295{width:15.768000px;}
._7_c00295{width:21.024000px;}
._8_c00295{width:22.752000px;}
._e_c00295{width:24.624000px;}
._1_c00295{width:25.776000px;}
._b_c00295{width:29.376000px;}
._2_c00295{width:30.672000px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs5_c00295{font-size:36.000000px;}
.fs4_c00295{font-size:41.760000px;}
.fs3_c00295{font-size:56.160000px;}
.fs2_c00295{font-size:57.888403px;}
.fs6_c00295{font-size:59.040000px;}
.fs8_c00295{font-size:60.000000px;}
.fs7_c00295{font-size:60.857039px;}
.fs0_c00295{font-size:72.000000px;}
.fs1_c00295{font-size:74.215901px;}
.y0_c00295{bottom:0.000000px;}
.y32_c00295{bottom:3.120150px;}
.y31_c00295{bottom:34.744500px;}
.y1_c00295{bottom:54.000000px;}
.y30_c00295{bottom:55.481040px;}
.y2f_c00295{bottom:72.765000px;}
.y2e_c00295{bottom:72.766800px;}
.y2d_c00295{bottom:96.525000px;}
.y2c_c00295{bottom:107.688600px;}
.y2b_c00295{bottom:125.326800px;}
.y2a_c00295{bottom:149.085000px;}
.y29_c00295{bottom:160.245000px;}
.y28_c00295{bottom:166.365000px;}
.y27_c00295{bottom:177.885000px;}
.y26_c00295{bottom:184.005000px;}
.y25_c00295{bottom:210.645000px;}
.y24_c00295{bottom:252.405000px;}
.y23_c00295{bottom:288.405000px;}
.y22_c00295{bottom:309.285000px;}
.y21_c00295{bottom:330.165000px;}
.y20_c00295{bottom:351.405000px;}
.y1f_c00295{bottom:372.285000px;}
.y1e_c00295{bottom:393.165000px;}
.y1d_c00295{bottom:414.405000px;}
.y1c_c00295{bottom:435.285000px;}
.y1b_c00295{bottom:471.285000px;}
.y1a_c00295{bottom:492.525000px;}
.y19_c00295{bottom:513.405000px;}
.y18_c00295{bottom:534.285000px;}
.y17_c00295{bottom:555.525000px;}
.y16_c00295{bottom:576.405000px;}
.y15_c00295{bottom:597.285000px;}
.y14_c00295{bottom:633.285000px;}
.y13_c00295{bottom:654.525000px;}
.y12_c00295{bottom:675.405000px;}
.y11_c00295{bottom:696.285000px;}
.y10_c00295{bottom:717.525000px;}
.yf_c00295{bottom:753.525000px;}
.ye_c00295{bottom:789.525000px;}
.yd_c00295{bottom:827.685000px;}
.yc_c00295{bottom:865.845000px;}
.yb_c00295{bottom:901.845000px;}
.ya_c00295{bottom:923.085000px;}
.y9_c00295{bottom:943.965000px;}
.y8_c00295{bottom:964.845000px;}
.y7_c00295{bottom:986.085000px;}
.y6_c00295{bottom:1006.965000px;}
.y5_c00295{bottom:1027.845000px;}
.y4_c00295{bottom:1049.085000px;}
.y3_c00295{bottom:1085.085000px;}
.y2_c00295{bottom:1138.365000px;}
.h9_c00295{height:19.255500px;}
.h6_c00295{height:32.616000px;}
.ha_c00295{height:46.320000px;}
.h7_c00295{height:46.981634px;}
.h8_c00295{height:53.490240px;}
.h4_c00295{height:57.294676px;}
.h3_c00295{height:65.232000px;}
.h5_c00295{height:68.074560px;}
.h2_c00295{height:1201.365000px;}
.h0_c00295{height:1262.835000px;}
.h1_c00295{height:1263.000000px;}
.w3_c00295{width:25.020000px;}
.w2_c00295{width:863.955000px;}
.w0_c00295{width:892.935000px;}
.w1_c00295{width:893.250000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:14.490000px;}
.x2_c00295{left:113.040150px;}
.x3_c00295{left:165.545700px;}
.xf_c00295{left:172.024950px;}
.x1b_c00295{left:178.056150px;}
.x5_c00295{left:208.329300px;}
.x13_c00295{left:226.060500px;}
.x14_c00295{left:233.239800px;}
.x6_c00295{left:237.427350px;}
.x4_c00295{left:241.990800px;}
.x10_c00295{left:248.020050px;}
.x1c_c00295{left:274.772100px;}
.xa_c00295{left:288.804150px;}
.x7_c00295{left:314.871450px;}
.x18_c00295{left:319.047000px;}
.x1d_c00295{left:329.761200px;}
.x15_c00295{left:333.343800px;}
.x1e_c00295{left:338.911050px;}
.x19_c00295{left:343.040400px;}
.x21_c00295{left:369.084300px;}
.xe_c00295{left:408.711150px;}
.x22_c00295{left:416.236050px;}
.x23_c00295{left:425.048550px;}
.x1a_c00295{left:466.050600px;}
.x24_c00295{left:484.251300px;}
.x25_c00295{left:488.894100px;}
.x16_c00295{left:547.007850px;}
.x1f_c00295{left:592.327500px;}
.x20_c00295{left:612.321600px;}
.x8_c00295{left:660.710400px;}
.x11_c00295{left:680.010150px;}
.xb_c00295{left:685.225350px;}
.xc_c00295{left:696.325200px;}
.x17_c00295{left:704.267550px;}
.xd_c00295{left:731.400450px;}
.x12_c00295{left:733.001550px;}
.x9_c00295{left:750.390000px;}
.x26_c00295{left:759.915000px;}
@media print{
.v2_c00295{vertical-align:-21.760000pt;}
.v0_c00295{vertical-align:0.000000pt;}
.v1_c00295{vertical-align:26.880000pt;}
.lsd_c00295{letter-spacing:0.000000pt;}
.ls5_c00295{letter-spacing:0.008213pt;}
.ls4_c00295{letter-spacing:0.138667pt;}
.ls7_c00295{letter-spacing:0.236160pt;}
.ls1c_c00295{letter-spacing:0.243428pt;}
.ls9_c00295{letter-spacing:0.262400pt;}
.ls12_c00295{letter-spacing:0.364800pt;}
.ls18_c00295{letter-spacing:0.377856pt;}
.ls13_c00295{letter-spacing:0.389485pt;}
.ls1a_c00295{letter-spacing:0.425088pt;}
.lsa_c00295{letter-spacing:0.472320pt;}
.ls8_c00295{letter-spacing:0.488064pt;}
.ls6_c00295{letter-spacing:0.519680pt;}
.ls17_c00295{letter-spacing:0.566784pt;}
.ls14_c00295{letter-spacing:0.584228pt;}
.ls1d_c00295{letter-spacing:0.614016pt;}
.ls1b_c00295{letter-spacing:0.632913pt;}
.ls3_c00295{letter-spacing:0.741547pt;}
.ls15_c00295{letter-spacing:0.855424pt;}
.ls16_c00295{letter-spacing:3.337728pt;}
.ls2_c00295{letter-spacing:4.412907pt;}
.ls10_c00295{letter-spacing:4.622592pt;}
.ls11_c00295{letter-spacing:4.742400pt;}
.lsf_c00295{letter-spacing:4.827264pt;}
.lse_c00295{letter-spacing:4.975830pt;}
.ls1_c00295{letter-spacing:5.310933pt;}
.lsb_c00295{letter-spacing:5.312000pt;}
.ls0_c00295{letter-spacing:5.474385pt;}
.lsc_c00295{letter-spacing:5.475484pt;}
.ls19_c00295{letter-spacing:11.577088pt;}
.ws0_c00295{word-spacing:-19.280697pt;}
.ws1_c00295{word-spacing:-18.705024pt;}
.ws3_c00295{word-spacing:-18.620160pt;}
.ws2_c00295{word-spacing:-17.792000pt;}
.ws9_c00295{word-spacing:-15.671364pt;}
.ws6_c00295{word-spacing:-15.622678pt;}
.ws8_c00295{word-spacing:-15.156224pt;}
.ws7_c00295{word-spacing:-15.061760pt;}
.ws4_c00295{word-spacing:-10.319360pt;}
.ws5_c00295{word-spacing:-8.896000pt;}
.wsa_c00295{word-spacing:0.000000pt;}
._15_c00295{margin-left:-12.017920pt;}
._14_c00295{margin-left:-11.073280pt;}
._13_c00295{margin-left:-3.778560pt;}
._12_c00295{margin-left:-2.728960pt;}
._11_c00295{margin-left:-1.102080pt;}
._4_c00295{width:1.152000pt;}
._6_c00295{width:2.825280pt;}
._5_c00295{width:3.739413pt;}
._0_c00295{width:5.216896pt;}
._3_c00295{width:6.208000pt;}
._c_c00295{width:7.168000pt;}
._9_c00295{width:8.448000pt;}
._f_c00295{width:9.344000pt;}
._d_c00295{width:10.496000pt;}
._10_c00295{width:13.056000pt;}
._a_c00295{width:14.016000pt;}
._7_c00295{width:18.688000pt;}
._8_c00295{width:20.224000pt;}
._e_c00295{width:21.888000pt;}
._1_c00295{width:22.912000pt;}
._b_c00295{width:26.112000pt;}
._2_c00295{width:27.264000pt;}
.fs5_c00295{font-size:32.000000pt;}
.fs4_c00295{font-size:37.120000pt;}
.fs3_c00295{font-size:49.920000pt;}
.fs2_c00295{font-size:51.456358pt;}
.fs6_c00295{font-size:52.480000pt;}
.fs8_c00295{font-size:53.333333pt;}
.fs7_c00295{font-size:54.095146pt;}
.fs0_c00295{font-size:64.000000pt;}
.fs1_c00295{font-size:65.969690pt;}
.y0_c00295{bottom:0.000000pt;}
.y32_c00295{bottom:2.773467pt;}
.y31_c00295{bottom:30.884000pt;}
.y1_c00295{bottom:48.000000pt;}
.y30_c00295{bottom:49.316480pt;}
.y2f_c00295{bottom:64.680000pt;}
.y2e_c00295{bottom:64.681600pt;}
.y2d_c00295{bottom:85.800000pt;}
.y2c_c00295{bottom:95.723200pt;}
.y2b_c00295{bottom:111.401600pt;}
.y2a_c00295{bottom:132.520000pt;}
.y29_c00295{bottom:142.440000pt;}
.y28_c00295{bottom:147.880000pt;}
.y27_c00295{bottom:158.120000pt;}
.y26_c00295{bottom:163.560000pt;}
.y25_c00295{bottom:187.240000pt;}
.y24_c00295{bottom:224.360000pt;}
.y23_c00295{bottom:256.360000pt;}
.y22_c00295{bottom:274.920000pt;}
.y21_c00295{bottom:293.480000pt;}
.y20_c00295{bottom:312.360000pt;}
.y1f_c00295{bottom:330.920000pt;}
.y1e_c00295{bottom:349.480000pt;}
.y1d_c00295{bottom:368.360000pt;}
.y1c_c00295{bottom:386.920000pt;}
.y1b_c00295{bottom:418.920000pt;}
.y1a_c00295{bottom:437.800000pt;}
.y19_c00295{bottom:456.360000pt;}
.y18_c00295{bottom:474.920000pt;}
.y17_c00295{bottom:493.800000pt;}
.y16_c00295{bottom:512.360000pt;}
.y15_c00295{bottom:530.920000pt;}
.y14_c00295{bottom:562.920000pt;}
.y13_c00295{bottom:581.800000pt;}
.y12_c00295{bottom:600.360000pt;}
.y11_c00295{bottom:618.920000pt;}
.y10_c00295{bottom:637.800000pt;}
.yf_c00295{bottom:669.800000pt;}
.ye_c00295{bottom:701.800000pt;}
.yd_c00295{bottom:735.720000pt;}
.yc_c00295{bottom:769.640000pt;}
.yb_c00295{bottom:801.640000pt;}
.ya_c00295{bottom:820.520000pt;}
.y9_c00295{bottom:839.080000pt;}
.y8_c00295{bottom:857.640000pt;}
.y7_c00295{bottom:876.520000pt;}
.y6_c00295{bottom:895.080000pt;}
.y5_c00295{bottom:913.640000pt;}
.y4_c00295{bottom:932.520000pt;}
.y3_c00295{bottom:964.520000pt;}
.y2_c00295{bottom:1011.880000pt;}
.h9_c00295{height:17.116000pt;}
.h6_c00295{height:28.992000pt;}
.ha_c00295{height:41.173333pt;}
.h7_c00295{height:41.761453pt;}
.h8_c00295{height:47.546880pt;}
.h4_c00295{height:50.928601pt;}
.h3_c00295{height:57.984000pt;}
.h5_c00295{height:60.510720pt;}
.h2_c00295{height:1067.880000pt;}
.h0_c00295{height:1122.520000pt;}
.h1_c00295{height:1122.666667pt;}
.w3_c00295{width:22.240000pt;}
.w2_c00295{width:767.960000pt;}
.w0_c00295{width:793.720000pt;}
.w1_c00295{width:794.000000pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:12.880000pt;}
.x2_c00295{left:100.480133pt;}
.x3_c00295{left:147.151733pt;}
.xf_c00295{left:152.911067pt;}
.x1b_c00295{left:158.272133pt;}
.x5_c00295{left:185.181600pt;}
.x13_c00295{left:200.942667pt;}
.x14_c00295{left:207.324267pt;}
.x6_c00295{left:211.046533pt;}
.x4_c00295{left:215.102933pt;}
.x10_c00295{left:220.462267pt;}
.x1c_c00295{left:244.241867pt;}
.xa_c00295{left:256.714800pt;}
.x7_c00295{left:279.885733pt;}
.x18_c00295{left:283.597333pt;}
.x1d_c00295{left:293.121067pt;}
.x15_c00295{left:296.305600pt;}
.x1e_c00295{left:301.254267pt;}
.x19_c00295{left:304.924800pt;}
.x21_c00295{left:328.074933pt;}
.xe_c00295{left:363.298800pt;}
.x22_c00295{left:369.987600pt;}
.x23_c00295{left:377.820933pt;}
.x1a_c00295{left:414.267200pt;}
.x24_c00295{left:430.445600pt;}
.x25_c00295{left:434.572533pt;}
.x16_c00295{left:486.229200pt;}
.x1f_c00295{left:526.513333pt;}
.x20_c00295{left:544.285867pt;}
.x8_c00295{left:587.298133pt;}
.x11_c00295{left:604.453467pt;}
.xb_c00295{left:609.089200pt;}
.xc_c00295{left:618.955733pt;}
.x17_c00295{left:626.015600pt;}
.xd_c00295{left:650.133733pt;}
.x12_c00295{left:651.556933pt;}
.x9_c00295{left:667.013333pt;}
.x26_c00295{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_58767a3daeab8f0b07f2c73d.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.134000;font-style:normal;font-weight:normal;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_6a4be029dc96d70529043926.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;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:ff3_c00296;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_ac4fd0366edfa72f791f325f.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:0.787000;font-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_c00296{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00296{vertical-align:-24.480000px;}
.v0_c00296{vertical-align:0.000000px;}
.v1_c00296{vertical-align:30.240000px;}
.ls9_c00296{letter-spacing:0.000000px;}
.lsd_c00296{letter-spacing:0.265680px;}
.ls6_c00296{letter-spacing:0.295200px;}
.lsf_c00296{letter-spacing:0.425088px;}
.lsc_c00296{letter-spacing:0.478224px;}
.ls4_c00296{letter-spacing:0.531360px;}
.ls3_c00296{letter-spacing:0.560880px;}
.lse_c00296{letter-spacing:0.637632px;}
.ls1_c00296{letter-spacing:0.683640px;}
.lsb_c00296{letter-spacing:3.754944px;}
.lsa_c00296{letter-spacing:5.430672px;}
.ls2_c00296{letter-spacing:5.970000px;}
.ls7_c00296{letter-spacing:5.976000px;}
.ls0_c00296{letter-spacing:5.980800px;}
.ls8_c00296{letter-spacing:6.159920px;}
.ls5_c00296{letter-spacing:16.236000px;}
.sc__c00296{text-shadow:none;}
.sc1_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00296{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc1_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00296{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00296{word-spacing:-21.043152px;}
.ws4_c00296{word-spacing:-17.050752px;}
.ws3_c00296{word-spacing:-16.944480px;}
.ws1_c00296{word-spacing:-11.609280px;}
.ws2_c00296{word-spacing:-10.008000px;}
.ws5_c00296{word-spacing:0.000000px;}
._9_c00296{margin-left:-4.250880px;}
._8_c00296{margin-left:-3.247200px;}
._5_c00296{margin-left:-1.179360px;}
._2_c00296{width:1.944000px;}
._b_c00296{width:3.070080px;}
._7_c00296{width:4.320000px;}
._4_c00296{width:8.424000px;}
._3_c00296{width:11.448000px;}
._c_c00296{width:12.929760px;}
._d_c00296{width:14.109120px;}
._a_c00296{width:15.409440px;}
._6_c00296{width:22.104000px;}
._0_c00296{width:23.112000px;}
._1_c00296{width:35.640000px;}
.fc0_c00296{color:rgb(0,0,0);}
.fs4_c00296{font-size:36.000000px;}
.fs3_c00296{font-size:41.760000px;}
.fs2_c00296{font-size:56.160000px;}
.fs5_c00296{font-size:59.040000px;}
.fs6_c00296{font-size:60.000000px;}
.fs0_c00296{font-size:72.000000px;}
.fs1_c00296{font-size:74.215901px;}
.y0_c00296{bottom:0.000000px;}
.y29_c00296{bottom:3.120150px;}
.y28_c00296{bottom:34.744500px;}
.y1_c00296{bottom:54.000000px;}
.y27_c00296{bottom:55.480680px;}
.y26_c00296{bottom:72.764640px;}
.y25_c00296{bottom:90.402840px;}
.y24_c00296{bottom:107.686800px;}
.y23_c00296{bottom:131.445000px;}
.y22_c00296{bottom:142.961040px;}
.y21_c00296{bottom:166.365000px;}
.y20_c00296{bottom:184.005000px;}
.y1f_c00296{bottom:210.645000px;}
.y1e_c00296{bottom:232.965000px;}
.y1d_c00296{bottom:268.965000px;}
.y1c_c00296{bottom:304.965000px;}
.y1b_c00296{bottom:325.845000px;}
.y1a_c00296{bottom:346.725000px;}
.y19_c00296{bottom:382.725000px;}
.y18_c00296{bottom:418.725000px;}
.y17_c00296{bottom:454.725000px;}
.y16_c00296{bottom:490.725000px;}
.y15_c00296{bottom:526.725000px;}
.y14_c00296{bottom:562.725000px;}
.y13_c00296{bottom:583.965000px;}
.y12_c00296{bottom:619.965000px;}
.y11_c00296{bottom:655.965000px;}
.y10_c00296{bottom:691.965000px;}
.yf_c00296{bottom:727.965000px;}
.ye_c00296{bottom:763.965000px;}
.yd_c00296{bottom:799.965000px;}
.yc_c00296{bottom:835.965000px;}
.yb_c00296{bottom:871.965000px;}
.ya_c00296{bottom:892.845000px;}
.y9_c00296{bottom:914.085000px;}
.y8_c00296{bottom:934.965000px;}
.y7_c00296{bottom:955.845000px;}
.y6_c00296{bottom:977.085000px;}
.y5_c00296{bottom:1013.085000px;}
.y4_c00296{bottom:1049.085000px;}
.y3_c00296{bottom:1085.085000px;}
.y2_c00296{bottom:1138.365000px;}
.h9_c00296{height:19.255500px;}
.h7_c00296{height:32.616000px;}
.ha_c00296{height:46.320000px;}
.h6_c00296{height:52.031250px;}
.h8_c00296{height:53.490240px;}
.h4_c00296{height:57.294676px;}
.h3_c00296{height:65.232000px;}
.h5_c00296{height:68.074560px;}
.h2_c00296{height:1201.365000px;}
.h0_c00296{height:1262.835000px;}
.h1_c00296{height:1263.000000px;}
.w3_c00296{width:25.020000px;}
.w2_c00296{width:863.955000px;}
.w0_c00296{width:892.935000px;}
.w1_c00296{width:893.250000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:14.490000px;}
.x2_c00296{left:113.040150px;}
.x7_c00296{left:140.039550px;}
.xe_c00296{left:143.027700px;}
.xb_c00296{left:148.031550px;}
.xa_c00296{left:150.029700px;}
.xf_c00296{left:153.035550px;}
.xd_c00296{left:155.033550px;}
.x13_c00296{left:157.905750px;}
.x3_c00296{left:165.545700px;}
.x8_c00296{left:167.040150px;}
.x4_c00296{left:241.990800px;}
.x9_c00296{left:247.048800px;}
.x10_c00296{left:252.052800px;}
.xc_c00296{left:285.046200px;}
.x14_c00296{left:335.177850px;}
.x5_c00296{left:350.937000px;}
.x11_c00296{left:383.642250px;}
.x15_c00296{left:388.169250px;}
.x6_c00296{left:416.924250px;}
.x12_c00296{left:419.641500px;}
.x16_c00296{left:689.834100px;}
.x17_c00296{left:759.915000px;}
@media print{
.v2_c00296{vertical-align:-21.760000pt;}
.v0_c00296{vertical-align:0.000000pt;}
.v1_c00296{vertical-align:26.880000pt;}
.ls9_c00296{letter-spacing:0.000000pt;}
.lsd_c00296{letter-spacing:0.236160pt;}
.ls6_c00296{letter-spacing:0.262400pt;}
.lsf_c00296{letter-spacing:0.377856pt;}
.lsc_c00296{letter-spacing:0.425088pt;}
.ls4_c00296{letter-spacing:0.472320pt;}
.ls3_c00296{letter-spacing:0.498560pt;}
.lse_c00296{letter-spacing:0.566784pt;}
.ls1_c00296{letter-spacing:0.607680pt;}
.lsb_c00296{letter-spacing:3.337728pt;}
.lsa_c00296{letter-spacing:4.827264pt;}
.ls2_c00296{letter-spacing:5.306667pt;}
.ls7_c00296{letter-spacing:5.312000pt;}
.ls0_c00296{letter-spacing:5.316267pt;}
.ls8_c00296{letter-spacing:5.475484pt;}
.ls5_c00296{letter-spacing:14.432000pt;}
.ws0_c00296{word-spacing:-18.705024pt;}
.ws4_c00296{word-spacing:-15.156224pt;}
.ws3_c00296{word-spacing:-15.061760pt;}
.ws1_c00296{word-spacing:-10.319360pt;}
.ws2_c00296{word-spacing:-8.896000pt;}
.ws5_c00296{word-spacing:0.000000pt;}
._9_c00296{margin-left:-3.778560pt;}
._8_c00296{margin-left:-2.886400pt;}
._5_c00296{margin-left:-1.048320pt;}
._2_c00296{width:1.728000pt;}
._b_c00296{width:2.728960pt;}
._7_c00296{width:3.840000pt;}
._4_c00296{width:7.488000pt;}
._3_c00296{width:10.176000pt;}
._c_c00296{width:11.493120pt;}
._d_c00296{width:12.541440pt;}
._a_c00296{width:13.697280pt;}
._6_c00296{width:19.648000pt;}
._0_c00296{width:20.544000pt;}
._1_c00296{width:31.680000pt;}
.fs4_c00296{font-size:32.000000pt;}
.fs3_c00296{font-size:37.120000pt;}
.fs2_c00296{font-size:49.920000pt;}
.fs5_c00296{font-size:52.480000pt;}
.fs6_c00296{font-size:53.333333pt;}
.fs0_c00296{font-size:64.000000pt;}
.fs1_c00296{font-size:65.969690pt;}
.y0_c00296{bottom:0.000000pt;}
.y29_c00296{bottom:2.773467pt;}
.y28_c00296{bottom:30.884000pt;}
.y1_c00296{bottom:48.000000pt;}
.y27_c00296{bottom:49.316160pt;}
.y26_c00296{bottom:64.679680pt;}
.y25_c00296{bottom:80.358080pt;}
.y24_c00296{bottom:95.721600pt;}
.y23_c00296{bottom:116.840000pt;}
.y22_c00296{bottom:127.076480pt;}
.y21_c00296{bottom:147.880000pt;}
.y20_c00296{bottom:163.560000pt;}
.y1f_c00296{bottom:187.240000pt;}
.y1e_c00296{bottom:207.080000pt;}
.y1d_c00296{bottom:239.080000pt;}
.y1c_c00296{bottom:271.080000pt;}
.y1b_c00296{bottom:289.640000pt;}
.y1a_c00296{bottom:308.200000pt;}
.y19_c00296{bottom:340.200000pt;}
.y18_c00296{bottom:372.200000pt;}
.y17_c00296{bottom:404.200000pt;}
.y16_c00296{bottom:436.200000pt;}
.y15_c00296{bottom:468.200000pt;}
.y14_c00296{bottom:500.200000pt;}
.y13_c00296{bottom:519.080000pt;}
.y12_c00296{bottom:551.080000pt;}
.y11_c00296{bottom:583.080000pt;}
.y10_c00296{bottom:615.080000pt;}
.yf_c00296{bottom:647.080000pt;}
.ye_c00296{bottom:679.080000pt;}
.yd_c00296{bottom:711.080000pt;}
.yc_c00296{bottom:743.080000pt;}
.yb_c00296{bottom:775.080000pt;}
.ya_c00296{bottom:793.640000pt;}
.y9_c00296{bottom:812.520000pt;}
.y8_c00296{bottom:831.080000pt;}
.y7_c00296{bottom:849.640000pt;}
.y6_c00296{bottom:868.520000pt;}
.y5_c00296{bottom:900.520000pt;}
.y4_c00296{bottom:932.520000pt;}
.y3_c00296{bottom:964.520000pt;}
.y2_c00296{bottom:1011.880000pt;}
.h9_c00296{height:17.116000pt;}
.h7_c00296{height:28.992000pt;}
.ha_c00296{height:41.173333pt;}
.h6_c00296{height:46.250000pt;}
.h8_c00296{height:47.546880pt;}
.h4_c00296{height:50.928601pt;}
.h3_c00296{height:57.984000pt;}
.h5_c00296{height:60.510720pt;}
.h2_c00296{height:1067.880000pt;}
.h0_c00296{height:1122.520000pt;}
.h1_c00296{height:1122.666667pt;}
.w3_c00296{width:22.240000pt;}
.w2_c00296{width:767.960000pt;}
.w0_c00296{width:793.720000pt;}
.w1_c00296{width:794.000000pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:12.880000pt;}
.x2_c00296{left:100.480133pt;}
.x7_c00296{left:124.479600pt;}
.xe_c00296{left:127.135733pt;}
.xb_c00296{left:131.583600pt;}
.xa_c00296{left:133.359733pt;}
.xf_c00296{left:136.031600pt;}
.xd_c00296{left:137.807600pt;}
.x13_c00296{left:140.360667pt;}
.x3_c00296{left:147.151733pt;}
.x8_c00296{left:148.480133pt;}
.x4_c00296{left:215.102933pt;}
.x9_c00296{left:219.598933pt;}
.x10_c00296{left:224.046933pt;}
.xc_c00296{left:253.374400pt;}
.x14_c00296{left:297.935867pt;}
.x5_c00296{left:311.944000pt;}
.x11_c00296{left:341.015333pt;}
.x15_c00296{left:345.039333pt;}
.x6_c00296{left:370.599333pt;}
.x12_c00296{left:373.014667pt;}
.x16_c00296{left:613.185867pt;}
.x17_c00296{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_88977439f5ab0b1ad60d6bfc.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.134000;font-style:normal;font-weight:normal;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_65c3388cf8ace10b4d640e4e.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;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:ff3_c00297;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00297{font-family:ff5_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:ff6_c00297;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff6_c00297{font-family:ff6_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:ff7_c00297;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff7_c00297{font-family:ff7_c00297;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00297;src:url('chunks/assets/font_d0080b8dfc01ebaedb55e3c9.woff2')format("woff");}.ff8_c00297{font-family:ff8_c00297;line-height:0.787000;font-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_c00297{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls10_c00297{letter-spacing:0.000000px;}
.ls1d_c00297{letter-spacing:0.242064px;}
.ls6_c00297{letter-spacing:0.265080px;}
.lsa_c00297{letter-spacing:0.265680px;}
.ls1_c00297{letter-spacing:0.273857px;}
.ls11_c00297{letter-spacing:0.318816px;}
.ls1a_c00297{letter-spacing:0.328628px;}
.ls8_c00297{letter-spacing:0.395568px;}
.ls1e_c00297{letter-spacing:0.438171px;}
.ls21_c00297{letter-spacing:0.478224px;}
.ls4_c00297{letter-spacing:0.492942px;}
.ls2_c00297{letter-spacing:0.507744px;}
.ls7_c00297{letter-spacing:0.513648px;}
.ls3_c00297{letter-spacing:0.531360px;}
.ls1c_c00297{letter-spacing:0.547713px;}
.lsb_c00297{letter-spacing:0.548950px;}
.ls18_c00297{letter-spacing:0.690768px;}
.ls5_c00297{letter-spacing:0.712027px;}
.ls1f_c00297{letter-spacing:0.718113px;}
.ls12_c00297{letter-spacing:0.766799px;}
.ls20_c00297{letter-spacing:0.821570px;}
.lsc_c00297{letter-spacing:0.824044px;}
.ls14_c00297{letter-spacing:0.962352px;}
.ls16_c00297{letter-spacing:3.093696px;}
.ls15_c00297{letter-spacing:4.876704px;}
.ls13_c00297{letter-spacing:5.301792px;}
.lse_c00297{letter-spacing:5.976000px;}
.lsf_c00297{letter-spacing:6.159920px;}
.ls19_c00297{letter-spacing:24.779088px;}
.ls17_c00297{letter-spacing:29.189376px;}
.lsd_c00297{letter-spacing:31.247880px;}
.ls9_c00297{letter-spacing:32.058480px;}
.ls1b_c00297{letter-spacing:41.747929px;}
.ls0_c00297{letter-spacing:54.864000px;}
.sc__c00297{text-shadow:none;}
.sc1_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00297{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc1_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00297{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00297{word-spacing:-21.714912px;}
.wsa_c00297{word-spacing:-17.739827px;}
.ws1_c00297{word-spacing:-17.685056px;}
.ws5_c00297{word-spacing:-17.630284px;}
.ws7_c00297{word-spacing:-17.465970px;}
.ws4_c00297{word-spacing:-17.411199px;}
.ws8_c00297{word-spacing:-17.356428px;}
.ws9_c00297{word-spacing:-17.246885px;}
.ws0_c00297{word-spacing:-16.944480px;}
.ws3_c00297{word-spacing:-16.920864px;}
.wsb_c00297{word-spacing:-16.891344px;}
.ws6_c00297{word-spacing:-16.808688px;}
.wsc_c00297{word-spacing:0.000000px;}
._12_c00297{margin-left:-42.173928px;}
._11_c00297{margin-left:-41.017644px;}
._13_c00297{margin-left:-29.697120px;}
._c_c00297{margin-left:-28.634400px;}
._10_c00297{margin-left:-24.265440px;}
._8_c00297{margin-left:-5.358131px;}
._9_c00297{margin-left:-4.191840px;}
._b_c00297{margin-left:-2.870024px;}
._7_c00297{margin-left:-1.095427px;}
._1_c00297{width:1.008000px;}
._4_c00297{width:2.232000px;}
._a_c00297{width:4.368960px;}
._0_c00297{width:5.544000px;}
._6_c00297{width:12.312000px;}
._5_c00297{width:17.208000px;}
._3_c00297{width:18.720000px;}
._f_c00297{width:23.031973px;}
._2_c00297{width:24.120000px;}
._d_c00297{width:27.377504px;}
._14_c00297{width:29.788867px;}
._e_c00297{width:31.441987px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs2_c00297{font-size:59.040000px;}
.fs4_c00297{font-size:60.000000px;}
.fs3_c00297{font-size:60.857039px;}
.fs0_c00297{font-size:72.000000px;}
.fs1_c00297{font-size:74.215901px;}
.y0_c00297{bottom:0.000000px;}
.y2f_c00297{bottom:3.120150px;}
.y2e_c00297{bottom:34.744500px;}
.y1_c00297{bottom:54.000000px;}
.y2d_c00297{bottom:112.725000px;}
.y2b_c00297{bottom:134.325000px;}
.y2a_c00297{bottom:151.965000px;}
.y29_c00297{bottom:169.605000px;}
.y28_c00297{bottom:186.885000px;}
.y27_c00297{bottom:204.525000px;}
.y26_c00297{bottom:222.165000px;}
.y2c_c00297{bottom:222.525000px;}
.y25_c00297{bottom:239.805000px;}
.y24_c00297{bottom:257.445000px;}
.y23_c00297{bottom:275.085000px;}
.y22_c00297{bottom:293.085000px;}
.y21_c00297{bottom:310.725000px;}
.y20_c00297{bottom:328.365000px;}
.y1f_c00297{bottom:345.645000px;}
.y1e_c00297{bottom:364.005000px;}
.y1d_c00297{bottom:381.645000px;}
.y1c_c00297{bottom:398.925000px;}
.y1b_c00297{bottom:416.565000px;}
.y1a_c00297{bottom:434.565000px;}
.y19_c00297{bottom:452.205000px;}
.y18_c00297{bottom:469.845000px;}
.y17_c00297{bottom:487.125000px;}
.y16_c00297{bottom:520.605000px;}
.y15_c00297{bottom:556.605000px;}
.y14_c00297{bottom:577.845000px;}
.y13_c00297{bottom:613.845000px;}
.y12_c00297{bottom:649.845000px;}
.y11_c00297{bottom:670.725000px;}
.y10_c00297{bottom:706.725000px;}
.yf_c00297{bottom:743.445000px;}
.ye_c00297{bottom:763.965000px;}
.yd_c00297{bottom:784.845000px;}
.yc_c00297{bottom:806.085000px;}
.yb_c00297{bottom:842.085000px;}
.ya_c00297{bottom:862.965000px;}
.y9_c00297{bottom:898.965000px;}
.y8_c00297{bottom:934.965000px;}
.y7_c00297{bottom:955.845000px;}
.y6_c00297{bottom:991.845000px;}
.y5_c00297{bottom:1027.845000px;}
.y4_c00297{bottom:1063.845000px;}
.y3_c00297{bottom:1085.085000px;}
.y2_c00297{bottom:1138.365000px;}
.ha_c00297{height:19.255500px;}
.h9_c00297{height:39.350391px;}
.hb_c00297{height:46.320000px;}
.h8_c00297{height:46.981634px;}
.h6_c00297{height:47.988281px;}
.h5_c00297{height:52.031250px;}
.h7_c00297{height:53.490240px;}
.h4_c00297{height:57.294676px;}
.h3_c00297{height:65.232000px;}
.h2_c00297{height:1201.365000px;}
.h0_c00297{height:1262.835000px;}
.h1_c00297{height:1263.000000px;}
.w7_c00297{width:25.020000px;}
.w3_c00297{width:45.000000px;}
.w5_c00297{width:127.080000px;}
.w4_c00297{width:169.200000px;}
.w6_c00297{width:309.240000px;}
.w2_c00297{width:863.955000px;}
.w0_c00297{width:892.935000px;}
.w1_c00297{width:893.250000px;}
.x0_c00297{left:0.000000px;}
.x14_c00297{left:7.920150px;}
.x22_c00297{left:12.915000px;}
.x1_c00297{left:14.490000px;}
.x1c_c00297{left:37.559700px;}
.x15_c00297{left:40.078650px;}
.x16_c00297{left:43.828500px;}
.x25_c00297{left:52.778100px;}
.x20_c00297{left:59.632800px;}
.x21_c00297{left:63.382800px;}
.x26_c00297{left:73.441800px;}
.x23_c00297{left:83.826900px;}
.x24_c00297{left:95.943750px;}
.x2_c00297{left:113.040150px;}
.x1f_c00297{left:115.545150px;}
.x13_c00297{left:119.610000px;}
.x7_c00297{left:140.039550px;}
.xc_c00297{left:148.031550px;}
.x5_c00297{left:150.029700px;}
.x6_c00297{left:153.035550px;}
.xa_c00297{left:155.289600px;}
.x1d_c00297{left:160.890450px;}
.x3_c00297{left:165.545700px;}
.x8_c00297{left:167.040150px;}
.xe_c00297{left:168.065250px;}
.x19_c00297{left:172.649550px;}
.xf_c00297{left:177.047250px;}
.x1e_c00297{left:190.890150px;}
.x10_c00297{left:209.068800px;}
.x11_c00297{left:213.568800px;}
.x1a_c00297{left:236.974500px;}
.x4_c00297{left:241.990800px;}
.xb_c00297{left:247.048800px;}
.x12_c00297{left:253.582050px;}
.x9_c00297{left:260.026650px;}
.x1b_c00297{left:266.974050px;}
.x17_c00297{left:335.250000px;}
.x18_c00297{left:463.050000px;}
.xd_c00297{left:659.987250px;}
.x27_c00297{left:759.915000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls10_c00297{letter-spacing:0.000000pt;}
.ls1d_c00297{letter-spacing:0.215168pt;}
.ls6_c00297{letter-spacing:0.235627pt;}
.lsa_c00297{letter-spacing:0.236160pt;}
.ls1_c00297{letter-spacing:0.243428pt;}
.ls11_c00297{letter-spacing:0.283392pt;}
.ls1a_c00297{letter-spacing:0.292114pt;}
.ls8_c00297{letter-spacing:0.351616pt;}
.ls1e_c00297{letter-spacing:0.389485pt;}
.ls21_c00297{letter-spacing:0.425088pt;}
.ls4_c00297{letter-spacing:0.438171pt;}
.ls2_c00297{letter-spacing:0.451328pt;}
.ls7_c00297{letter-spacing:0.456576pt;}
.ls3_c00297{letter-spacing:0.472320pt;}
.ls1c_c00297{letter-spacing:0.486856pt;}
.lsb_c00297{letter-spacing:0.487956pt;}
.ls18_c00297{letter-spacing:0.614016pt;}
.ls5_c00297{letter-spacing:0.632913pt;}
.ls1f_c00297{letter-spacing:0.638323pt;}
.ls12_c00297{letter-spacing:0.681599pt;}
.ls20_c00297{letter-spacing:0.730284pt;}
.lsc_c00297{letter-spacing:0.732483pt;}
.ls14_c00297{letter-spacing:0.855424pt;}
.ls16_c00297{letter-spacing:2.749952pt;}
.ls15_c00297{letter-spacing:4.334848pt;}
.ls13_c00297{letter-spacing:4.712704pt;}
.lse_c00297{letter-spacing:5.312000pt;}
.lsf_c00297{letter-spacing:5.475484pt;}
.ls19_c00297{letter-spacing:22.025856pt;}
.ls17_c00297{letter-spacing:25.946112pt;}
.lsd_c00297{letter-spacing:27.775893pt;}
.ls9_c00297{letter-spacing:28.496427pt;}
.ls1b_c00297{letter-spacing:37.109270pt;}
.ls0_c00297{letter-spacing:48.768000pt;}
.ws2_c00297{word-spacing:-19.302144pt;}
.wsa_c00297{word-spacing:-15.768735pt;}
.ws1_c00297{word-spacing:-15.720049pt;}
.ws5_c00297{word-spacing:-15.671364pt;}
.ws7_c00297{word-spacing:-15.525307pt;}
.ws4_c00297{word-spacing:-15.476621pt;}
.ws8_c00297{word-spacing:-15.427936pt;}
.ws9_c00297{word-spacing:-15.330564pt;}
.ws0_c00297{word-spacing:-15.061760pt;}
.ws3_c00297{word-spacing:-15.040768pt;}
.wsb_c00297{word-spacing:-15.014528pt;}
.ws6_c00297{word-spacing:-14.941056pt;}
.wsc_c00297{word-spacing:0.000000pt;}
._12_c00297{margin-left:-37.487936pt;}
._11_c00297{margin-left:-36.460128pt;}
._13_c00297{margin-left:-26.397440pt;}
._c_c00297{margin-left:-25.452800pt;}
._10_c00297{margin-left:-21.569280pt;}
._8_c00297{margin-left:-4.762783pt;}
._9_c00297{margin-left:-3.726080pt;}
._b_c00297{margin-left:-2.551132pt;}
._7_c00297{margin-left:-0.973713pt;}
._1_c00297{width:0.896000pt;}
._4_c00297{width:1.984000pt;}
._a_c00297{width:3.883520pt;}
._0_c00297{width:4.928000pt;}
._6_c00297{width:10.944000pt;}
._5_c00297{width:15.296000pt;}
._3_c00297{width:16.640000pt;}
._f_c00297{width:20.472865pt;}
._2_c00297{width:21.440000pt;}
._d_c00297{width:24.335559pt;}
._14_c00297{width:26.478993pt;}
._e_c00297{width:27.948433pt;}
.fs2_c00297{font-size:52.480000pt;}
.fs4_c00297{font-size:53.333333pt;}
.fs3_c00297{font-size:54.095146pt;}
.fs0_c00297{font-size:64.000000pt;}
.fs1_c00297{font-size:65.969690pt;}
.y0_c00297{bottom:0.000000pt;}
.y2f_c00297{bottom:2.773467pt;}
.y2e_c00297{bottom:30.884000pt;}
.y1_c00297{bottom:48.000000pt;}
.y2d_c00297{bottom:100.200000pt;}
.y2b_c00297{bottom:119.400000pt;}
.y2a_c00297{bottom:135.080000pt;}
.y29_c00297{bottom:150.760000pt;}
.y28_c00297{bottom:166.120000pt;}
.y27_c00297{bottom:181.800000pt;}
.y26_c00297{bottom:197.480000pt;}
.y2c_c00297{bottom:197.800000pt;}
.y25_c00297{bottom:213.160000pt;}
.y24_c00297{bottom:228.840000pt;}
.y23_c00297{bottom:244.520000pt;}
.y22_c00297{bottom:260.520000pt;}
.y21_c00297{bottom:276.200000pt;}
.y20_c00297{bottom:291.880000pt;}
.y1f_c00297{bottom:307.240000pt;}
.y1e_c00297{bottom:323.560000pt;}
.y1d_c00297{bottom:339.240000pt;}
.y1c_c00297{bottom:354.600000pt;}
.y1b_c00297{bottom:370.280000pt;}
.y1a_c00297{bottom:386.280000pt;}
.y19_c00297{bottom:401.960000pt;}
.y18_c00297{bottom:417.640000pt;}
.y17_c00297{bottom:433.000000pt;}
.y16_c00297{bottom:462.760000pt;}
.y15_c00297{bottom:494.760000pt;}
.y14_c00297{bottom:513.640000pt;}
.y13_c00297{bottom:545.640000pt;}
.y12_c00297{bottom:577.640000pt;}
.y11_c00297{bottom:596.200000pt;}
.y10_c00297{bottom:628.200000pt;}
.yf_c00297{bottom:660.840000pt;}
.ye_c00297{bottom:679.080000pt;}
.yd_c00297{bottom:697.640000pt;}
.yc_c00297{bottom:716.520000pt;}
.yb_c00297{bottom:748.520000pt;}
.ya_c00297{bottom:767.080000pt;}
.y9_c00297{bottom:799.080000pt;}
.y8_c00297{bottom:831.080000pt;}
.y7_c00297{bottom:849.640000pt;}
.y6_c00297{bottom:881.640000pt;}
.y5_c00297{bottom:913.640000pt;}
.y4_c00297{bottom:945.640000pt;}
.y3_c00297{bottom:964.520000pt;}
.y2_c00297{bottom:1011.880000pt;}
.ha_c00297{height:17.116000pt;}
.h9_c00297{height:34.978125pt;}
.hb_c00297{height:41.173333pt;}
.h8_c00297{height:41.761453pt;}
.h6_c00297{height:42.656250pt;}
.h5_c00297{height:46.250000pt;}
.h7_c00297{height:47.546880pt;}
.h4_c00297{height:50.928601pt;}
.h3_c00297{height:57.984000pt;}
.h2_c00297{height:1067.880000pt;}
.h0_c00297{height:1122.520000pt;}
.h1_c00297{height:1122.666667pt;}
.w7_c00297{width:22.240000pt;}
.w3_c00297{width:40.000000pt;}
.w5_c00297{width:112.960000pt;}
.w4_c00297{width:150.400000pt;}
.w6_c00297{width:274.880000pt;}
.w2_c00297{width:767.960000pt;}
.w0_c00297{width:793.720000pt;}
.w1_c00297{width:794.000000pt;}
.x0_c00297{left:0.000000pt;}
.x14_c00297{left:7.040133pt;}
.x22_c00297{left:11.480000pt;}
.x1_c00297{left:12.880000pt;}
.x1c_c00297{left:33.386400pt;}
.x15_c00297{left:35.625467pt;}
.x16_c00297{left:38.958667pt;}
.x25_c00297{left:46.913867pt;}
.x20_c00297{left:53.006933pt;}
.x21_c00297{left:56.340267pt;}
.x26_c00297{left:65.281600pt;}
.x23_c00297{left:74.512800pt;}
.x24_c00297{left:85.283333pt;}
.x2_c00297{left:100.480133pt;}
.x1f_c00297{left:102.706800pt;}
.x13_c00297{left:106.320000pt;}
.x7_c00297{left:124.479600pt;}
.xc_c00297{left:131.583600pt;}
.x5_c00297{left:133.359733pt;}
.x6_c00297{left:136.031600pt;}
.xa_c00297{left:138.035200pt;}
.x1d_c00297{left:143.013733pt;}
.x3_c00297{left:147.151733pt;}
.x8_c00297{left:148.480133pt;}
.xe_c00297{left:149.391333pt;}
.x19_c00297{left:153.466267pt;}
.xf_c00297{left:157.375333pt;}
.x1e_c00297{left:169.680133pt;}
.x10_c00297{left:185.838933pt;}
.x11_c00297{left:189.838933pt;}
.x1a_c00297{left:210.644000pt;}
.x4_c00297{left:215.102933pt;}
.xb_c00297{left:219.598933pt;}
.x12_c00297{left:225.406267pt;}
.x9_c00297{left:231.134800pt;}
.x1b_c00297{left:237.310267pt;}
.x17_c00297{left:298.000000pt;}
.x18_c00297{left:411.600000pt;}
.xd_c00297{left:586.655333pt;}
.x27_c00297{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a6e8abe19b8c787937009f9.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.134000;font-style:normal;font-weight:normal;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_dcbaf0f556a6baa968ccb257.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;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:ff3_c00298;src:url('chunks/assets/font_32c5c1545d8b0bc0278c2141.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:0.787000;font-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_c00298{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00298{vertical-align:-24.480000px;}
.v0_c00298{vertical-align:0.000000px;}
.v1_c00298{vertical-align:30.240000px;}
.ls18_c00298{letter-spacing:-0.179568px;}
.lsd_c00298{letter-spacing:0.000000px;}
.ls1a_c00298{letter-spacing:0.144000px;}
.lsa_c00298{letter-spacing:0.236160px;}
.ls13_c00298{letter-spacing:0.265680px;}
.ls11_c00298{letter-spacing:0.330480px;}
.ls2_c00298{letter-spacing:0.388800px;}
.ls4_c00298{letter-spacing:0.395280px;}
.ls8_c00298{letter-spacing:0.421440px;}
.ls12_c00298{letter-spacing:0.478224px;}
.ls9_c00298{letter-spacing:0.531360px;}
.ls10_c00298{letter-spacing:0.602640px;}
.ls0_c00298{letter-spacing:0.621187px;}
.ls5_c00298{letter-spacing:0.660960px;}
.ls3_c00298{letter-spacing:0.667440px;}
.ls1_c00298{letter-spacing:0.895044px;}
.lse_c00298{letter-spacing:1.198800px;}
.ls17_c00298{letter-spacing:5.335200px;}
.ls14_c00298{letter-spacing:5.430672px;}
.ls6_c00298{letter-spacing:5.975400px;}
.lsb_c00298{letter-spacing:5.976000px;}
.ls7_c00298{letter-spacing:6.009600px;}
.lsc_c00298{letter-spacing:6.159920px;}
.ls19_c00298{letter-spacing:10.650816px;}
.lsf_c00298{letter-spacing:11.203920px;}
.ls16_c00298{letter-spacing:14.284800px;}
.ls15_c00298{letter-spacing:15.110357px;}
.sc__c00298{text-shadow:none;}
.sc1_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00298{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc1_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00298{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00298{word-spacing:-21.043152px;}
.ws4_c00298{word-spacing:-20.947680px;}
.ws1_c00298{word-spacing:-19.463862px;}
.ws0_c00298{word-spacing:-19.190006px;}
.ws3_c00298{word-spacing:-11.609280px;}
.ws5_c00298{word-spacing:-11.429712px;}
.ws7_c00298{word-spacing:-10.152000px;}
.ws6_c00298{word-spacing:-10.008000px;}
.ws8_c00298{word-spacing:0.000000px;}
._8_c00298{margin-left:-15.080671px;}
._3_c00298{margin-left:-11.664000px;}
._2_c00298{margin-left:-10.368000px;}
._10_c00298{margin-left:-9.338400px;}
._0_c00298{margin-left:-1.360800px;}
._7_c00298{width:1.231200px;}
._a_c00298{width:2.944800px;}
._c_c00298{width:4.608000px;}
._d_c00298{width:5.904000px;}
._b_c00298{width:7.704000px;}
._1_c00298{width:9.201600px;}
._4_c00298{width:10.879920px;}
._5_c00298{width:12.052800px;}
._6_c00298{width:13.595040px;}
._9_c00298{width:15.140044px;}
._f_c00298{width:18.144000px;}
._e_c00298{width:42.336000px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs7_c00298{font-size:36.000000px;}
.fs6_c00298{font-size:41.760000px;}
.fs5_c00298{font-size:56.160000px;}
.fs4_c00298{font-size:59.040000px;}
.fs8_c00298{font-size:60.000000px;}
.fs2_c00298{font-size:64.800000px;}
.fs3_c00298{font-size:66.794311px;}
.fs0_c00298{font-size:72.000000px;}
.fs1_c00298{font-size:74.215901px;}
.y0_c00298{bottom:0.000000px;}
.y2a_c00298{bottom:3.120150px;}
.y29_c00298{bottom:34.744500px;}
.y1_c00298{bottom:54.000000px;}
.y28_c00298{bottom:61.605000px;}
.y27_c00298{bottom:78.885000px;}
.y26_c00298{bottom:90.401040px;}
.y25_c00298{bottom:113.805000px;}
.y24_c00298{bottom:140.445000px;}
.y23_c00298{bottom:314.685000px;}
.y22_c00298{bottom:335.925000px;}
.y21_c00298{bottom:356.805000px;}
.y20_c00298{bottom:377.685000px;}
.y1f_c00298{bottom:398.925000px;}
.y1e_c00298{bottom:419.805000px;}
.y1d_c00298{bottom:440.685000px;}
.y1c_c00298{bottom:476.685000px;}
.y1b_c00298{bottom:512.685000px;}
.y1a_c00298{bottom:549.045000px;}
.y19_c00298{bottom:569.925000px;}
.y18_c00298{bottom:590.805000px;}
.y17_c00298{bottom:612.045000px;}
.y16_c00298{bottom:632.925000px;}
.y15_c00298{bottom:653.805000px;}
.y14_c00298{bottom:675.045000px;}
.y13_c00298{bottom:695.925000px;}
.y12_c00298{bottom:716.805000px;}
.y11_c00298{bottom:738.045000px;}
.y10_c00298{bottom:758.925000px;}
.yf_c00298{bottom:779.805000px;}
.ye_c00298{bottom:801.045000px;}
.yd_c00298{bottom:837.045000px;}
.yc_c00298{bottom:857.925000px;}
.yb_c00298{bottom:878.805000px;}
.ya_c00298{bottom:900.045000px;}
.y9_c00298{bottom:920.925000px;}
.y8_c00298{bottom:956.925000px;}
.y7_c00298{bottom:992.925000px;}
.y6_c00298{bottom:1014.165000px;}
.y5_c00298{bottom:1048.361400px;}
.y4_c00298{bottom:1067.445000px;}
.y3_c00298{bottom:1086.885000px;}
.y2_c00298{bottom:1138.365000px;}
.ha_c00298{height:19.255500px;}
.h8_c00298{height:32.616000px;}
.hb_c00298{height:46.320000px;}
.h6_c00298{height:51.565208px;}
.h9_c00298{height:53.490240px;}
.h4_c00298{height:57.294676px;}
.h5_c00298{height:58.708800px;}
.h3_c00298{height:65.232000px;}
.h7_c00298{height:68.074560px;}
.h2_c00298{height:1201.365000px;}
.h0_c00298{height:1262.835000px;}
.h1_c00298{height:1263.000000px;}
.w3_c00298{width:25.020000px;}
.w2_c00298{width:863.955000px;}
.w0_c00298{width:892.935000px;}
.w1_c00298{width:893.250000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:14.490000px;}
.x2_c00298{left:113.040150px;}
.x9_c00298{left:135.034050px;}
.x14_c00298{left:149.039400px;}
.x3_c00298{left:165.545700px;}
.x10_c00298{left:195.025950px;}
.x4_c00298{left:241.990800px;}
.xd_c00298{left:260.182950px;}
.x5_c00298{left:265.614300px;}
.x11_c00298{left:280.017750px;}
.xb_c00298{left:283.065600px;}
.x6_c00298{left:300.445350px;}
.xa_c00298{left:329.712450px;}
.xc_c00298{left:349.052850px;}
.x12_c00298{left:523.091250px;}
.xe_c00298{left:592.305900px;}
.x7_c00298{left:605.546700px;}
.x13_c00298{left:628.065600px;}
.x8_c00298{left:638.546250px;}
.xf_c00298{left:659.300850px;}
.x15_c00298{left:759.915000px;}
@media print{
.v2_c00298{vertical-align:-21.760000pt;}
.v0_c00298{vertical-align:0.000000pt;}
.v1_c00298{vertical-align:26.880000pt;}
.ls18_c00298{letter-spacing:-0.159616pt;}
.lsd_c00298{letter-spacing:0.000000pt;}
.ls1a_c00298{letter-spacing:0.128000pt;}
.lsa_c00298{letter-spacing:0.209920pt;}
.ls13_c00298{letter-spacing:0.236160pt;}
.ls11_c00298{letter-spacing:0.293760pt;}
.ls2_c00298{letter-spacing:0.345600pt;}
.ls4_c00298{letter-spacing:0.351360pt;}
.ls8_c00298{letter-spacing:0.374613pt;}
.ls12_c00298{letter-spacing:0.425088pt;}
.ls9_c00298{letter-spacing:0.472320pt;}
.ls10_c00298{letter-spacing:0.535680pt;}
.ls0_c00298{letter-spacing:0.552166pt;}
.ls5_c00298{letter-spacing:0.587520pt;}
.ls3_c00298{letter-spacing:0.593280pt;}
.ls1_c00298{letter-spacing:0.795594pt;}
.lse_c00298{letter-spacing:1.065600pt;}
.ls17_c00298{letter-spacing:4.742400pt;}
.ls14_c00298{letter-spacing:4.827264pt;}
.ls6_c00298{letter-spacing:5.311467pt;}
.lsb_c00298{letter-spacing:5.312000pt;}
.ls7_c00298{letter-spacing:5.341867pt;}
.lsc_c00298{letter-spacing:5.475484pt;}
.ls19_c00298{letter-spacing:9.467392pt;}
.lsf_c00298{letter-spacing:9.959040pt;}
.ls16_c00298{letter-spacing:12.697600pt;}
.ls15_c00298{letter-spacing:13.431429pt;}
.ws2_c00298{word-spacing:-18.705024pt;}
.ws4_c00298{word-spacing:-18.620160pt;}
.ws1_c00298{word-spacing:-17.301211pt;}
.ws0_c00298{word-spacing:-17.057783pt;}
.ws3_c00298{word-spacing:-10.319360pt;}
.ws5_c00298{word-spacing:-10.159744pt;}
.ws7_c00298{word-spacing:-9.024000pt;}
.ws6_c00298{word-spacing:-8.896000pt;}
.ws8_c00298{word-spacing:0.000000pt;}
._8_c00298{margin-left:-13.405041pt;}
._3_c00298{margin-left:-10.368000pt;}
._2_c00298{margin-left:-9.216000pt;}
._10_c00298{margin-left:-8.300800pt;}
._0_c00298{margin-left:-1.209600pt;}
._7_c00298{width:1.094400pt;}
._a_c00298{width:2.617600pt;}
._c_c00298{width:4.096000pt;}
._d_c00298{width:5.248000pt;}
._b_c00298{width:6.848000pt;}
._1_c00298{width:8.179200pt;}
._4_c00298{width:9.671040pt;}
._5_c00298{width:10.713600pt;}
._6_c00298{width:12.084480pt;}
._9_c00298{width:13.457817pt;}
._f_c00298{width:16.128000pt;}
._e_c00298{width:37.632000pt;}
.fs7_c00298{font-size:32.000000pt;}
.fs6_c00298{font-size:37.120000pt;}
.fs5_c00298{font-size:49.920000pt;}
.fs4_c00298{font-size:52.480000pt;}
.fs8_c00298{font-size:53.333333pt;}
.fs2_c00298{font-size:57.600000pt;}
.fs3_c00298{font-size:59.372721pt;}
.fs0_c00298{font-size:64.000000pt;}
.fs1_c00298{font-size:65.969690pt;}
.y0_c00298{bottom:0.000000pt;}
.y2a_c00298{bottom:2.773467pt;}
.y29_c00298{bottom:30.884000pt;}
.y1_c00298{bottom:48.000000pt;}
.y28_c00298{bottom:54.760000pt;}
.y27_c00298{bottom:70.120000pt;}
.y26_c00298{bottom:80.356480pt;}
.y25_c00298{bottom:101.160000pt;}
.y24_c00298{bottom:124.840000pt;}
.y23_c00298{bottom:279.720000pt;}
.y22_c00298{bottom:298.600000pt;}
.y21_c00298{bottom:317.160000pt;}
.y20_c00298{bottom:335.720000pt;}
.y1f_c00298{bottom:354.600000pt;}
.y1e_c00298{bottom:373.160000pt;}
.y1d_c00298{bottom:391.720000pt;}
.y1c_c00298{bottom:423.720000pt;}
.y1b_c00298{bottom:455.720000pt;}
.y1a_c00298{bottom:488.040000pt;}
.y19_c00298{bottom:506.600000pt;}
.y18_c00298{bottom:525.160000pt;}
.y17_c00298{bottom:544.040000pt;}
.y16_c00298{bottom:562.600000pt;}
.y15_c00298{bottom:581.160000pt;}
.y14_c00298{bottom:600.040000pt;}
.y13_c00298{bottom:618.600000pt;}
.y12_c00298{bottom:637.160000pt;}
.y11_c00298{bottom:656.040000pt;}
.y10_c00298{bottom:674.600000pt;}
.yf_c00298{bottom:693.160000pt;}
.ye_c00298{bottom:712.040000pt;}
.yd_c00298{bottom:744.040000pt;}
.yc_c00298{bottom:762.600000pt;}
.yb_c00298{bottom:781.160000pt;}
.ya_c00298{bottom:800.040000pt;}
.y9_c00298{bottom:818.600000pt;}
.y8_c00298{bottom:850.600000pt;}
.y7_c00298{bottom:882.600000pt;}
.y6_c00298{bottom:901.480000pt;}
.y5_c00298{bottom:931.876800pt;}
.y4_c00298{bottom:948.840000pt;}
.y3_c00298{bottom:966.120000pt;}
.y2_c00298{bottom:1011.880000pt;}
.ha_c00298{height:17.116000pt;}
.h8_c00298{height:28.992000pt;}
.hb_c00298{height:41.173333pt;}
.h6_c00298{height:45.835741pt;}
.h9_c00298{height:47.546880pt;}
.h4_c00298{height:50.928601pt;}
.h5_c00298{height:52.185600pt;}
.h3_c00298{height:57.984000pt;}
.h7_c00298{height:60.510720pt;}
.h2_c00298{height:1067.880000pt;}
.h0_c00298{height:1122.520000pt;}
.h1_c00298{height:1122.666667pt;}
.w3_c00298{width:22.240000pt;}
.w2_c00298{width:767.960000pt;}
.w0_c00298{width:793.720000pt;}
.w1_c00298{width:794.000000pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:12.880000pt;}
.x2_c00298{left:100.480133pt;}
.x9_c00298{left:120.030267pt;}
.x14_c00298{left:132.479467pt;}
.x3_c00298{left:147.151733pt;}
.x10_c00298{left:173.356400pt;}
.x4_c00298{left:215.102933pt;}
.xd_c00298{left:231.273733pt;}
.x5_c00298{left:236.101600pt;}
.x11_c00298{left:248.904667pt;}
.xb_c00298{left:251.613867pt;}
.x6_c00298{left:267.062533pt;}
.xa_c00298{left:293.077733pt;}
.xc_c00298{left:310.269200pt;}
.x12_c00298{left:464.970000pt;}
.xe_c00298{left:526.494133pt;}
.x7_c00298{left:538.263733pt;}
.x13_c00298{left:558.280533pt;}
.x8_c00298{left:567.596667pt;}
.xf_c00298{left:586.045200pt;}
.x15_c00298{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bec0a89dd4b61e6fd7e79a79.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.134000;font-style:normal;font-weight:normal;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_99c53388093e605b0460c2b6.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;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:ff3_c00299;src:url('chunks/assets/font_a091ed3650853eea68ecd630.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:0.787000;font-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_c00299{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00299{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00299{letter-spacing:0.000000px;}
.ls8_c00299{letter-spacing:0.202464px;}
.lsb_c00299{letter-spacing:0.239760px;}
.ls6_c00299{letter-spacing:0.399600px;}
.ls1_c00299{letter-spacing:0.399720px;}
.ls0_c00299{letter-spacing:0.410256px;}
.lsa_c00299{letter-spacing:0.411898px;}
.ls9_c00299{letter-spacing:0.450342px;}
.ls7_c00299{letter-spacing:0.494278px;}
.ls2_c00299{letter-spacing:0.532722px;}
.ls3_c00299{letter-spacing:5.976000px;}
.ls4_c00299{letter-spacing:6.159920px;}
.sc__c00299{text-shadow:none;}
.sc1_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00299{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc1_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00299{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00299{word-spacing:-15.800417px;}
.ws0_c00299{word-spacing:-15.761973px;}
.ws1_c00299{word-spacing:-15.222096px;}
.ws2_c00299{word-spacing:-15.051600px;}
.ws4_c00299{word-spacing:0.000000px;}
._0_c00299{margin-left:-1.118880px;}
._1_c00299{width:1.012320px;}
.fc1_c00299{color:transparent;}
.fc0_c00299{color:rgb(0,0,0);}
.fs2_c00299{font-size:53.280000px;}
.fs3_c00299{font-size:54.919767px;}
.fs4_c00299{font-size:60.000000px;}
.fs0_c00299{font-size:72.000000px;}
.fs1_c00299{font-size:74.215901px;}
.y0_c00299{bottom:0.000000px;}
.ye_c00299{bottom:3.120150px;}
.yc_c00299{bottom:14.400000px;}
.y9_c00299{bottom:25.560000px;}
.yd_c00299{bottom:34.744500px;}
.y8_c00299{bottom:41.400000px;}
.y1_c00299{bottom:54.000000px;}
.ya_c00299{bottom:211.365000px;}
.y7_c00299{bottom:508.365000px;}
.yb_c00299{bottom:857.925000px;}
.y6_c00299{bottom:977.085000px;}
.y5_c00299{bottom:1013.085000px;}
.y4_c00299{bottom:1049.085000px;}
.y3_c00299{bottom:1085.085000px;}
.y2_c00299{bottom:1138.365000px;}
.h9_c00299{height:19.255500px;}
.h8_c00299{height:27.000000px;}
.h7_c00299{height:42.398060px;}
.ha_c00299{height:46.320000px;}
.h6_c00299{height:48.271680px;}
.h5_c00299{height:54.000000px;}
.h4_c00299{height:57.294676px;}
.h3_c00299{height:65.232000px;}
.h2_c00299{height:1201.365000px;}
.h0_c00299{height:1262.835000px;}
.h1_c00299{height:1263.000000px;}
.w6_c00299{width:25.020000px;}
.w5_c00299{width:511.920000px;}
.w3_c00299{width:520.200000px;}
.w4_c00299{width:529.200000px;}
.w2_c00299{width:863.955000px;}
.w0_c00299{width:892.935000px;}
.w1_c00299{width:893.250000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:14.490000px;}
.x6_c00299{left:27.276750px;}
.xc_c00299{left:40.984050px;}
.x12_c00299{left:63.060750px;}
.x11_c00299{left:101.004300px;}
.x2_c00299{left:113.040150px;}
.xb_c00299{left:122.850000px;}
.x5_c00299{left:124.290000px;}
.x7_c00299{left:137.583600px;}
.xd_c00299{left:151.290900px;}
.x3_c00299{left:165.545700px;}
.x13_c00299{left:173.367450px;}
.x8_c00299{left:181.079850px;}
.xe_c00299{left:194.787150px;}
.x9_c00299{left:213.823200px;}
.x14_c00299{left:216.863850px;}
.x4_c00299{left:241.990800px;}
.xf_c00299{left:305.066550px;}
.xa_c00299{left:306.107250px;}
.x15_c00299{left:327.885450px;}
.x16_c00299{left:354.884700px;}
.x10_c00299{left:488.095050px;}
.x17_c00299{left:759.915000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls5_c00299{letter-spacing:0.000000pt;}
.ls8_c00299{letter-spacing:0.179968pt;}
.lsb_c00299{letter-spacing:0.213120pt;}
.ls6_c00299{letter-spacing:0.355200pt;}
.ls1_c00299{letter-spacing:0.355307pt;}
.ls0_c00299{letter-spacing:0.364672pt;}
.lsa_c00299{letter-spacing:0.366132pt;}
.ls9_c00299{letter-spacing:0.400304pt;}
.ls7_c00299{letter-spacing:0.439358pt;}
.ls2_c00299{letter-spacing:0.473530pt;}
.ls3_c00299{letter-spacing:5.312000pt;}
.ls4_c00299{letter-spacing:5.475484pt;}
.ws3_c00299{word-spacing:-14.044815pt;}
.ws0_c00299{word-spacing:-14.010643pt;}
.ws1_c00299{word-spacing:-13.530752pt;}
.ws2_c00299{word-spacing:-13.379200pt;}
.ws4_c00299{word-spacing:0.000000pt;}
._0_c00299{margin-left:-0.994560pt;}
._1_c00299{width:0.899840pt;}
.fs2_c00299{font-size:47.360000pt;}
.fs3_c00299{font-size:48.817571pt;}
.fs4_c00299{font-size:53.333333pt;}
.fs0_c00299{font-size:64.000000pt;}
.fs1_c00299{font-size:65.969690pt;}
.y0_c00299{bottom:0.000000pt;}
.ye_c00299{bottom:2.773467pt;}
.yc_c00299{bottom:12.800000pt;}
.y9_c00299{bottom:22.720000pt;}
.yd_c00299{bottom:30.884000pt;}
.y8_c00299{bottom:36.800000pt;}
.y1_c00299{bottom:48.000000pt;}
.ya_c00299{bottom:187.880000pt;}
.y7_c00299{bottom:451.880000pt;}
.yb_c00299{bottom:762.600000pt;}
.y6_c00299{bottom:868.520000pt;}
.y5_c00299{bottom:900.520000pt;}
.y4_c00299{bottom:932.520000pt;}
.y3_c00299{bottom:964.520000pt;}
.y2_c00299{bottom:1011.880000pt;}
.h9_c00299{height:17.116000pt;}
.h8_c00299{height:24.000000pt;}
.h7_c00299{height:37.687165pt;}
.ha_c00299{height:41.173333pt;}
.h6_c00299{height:42.908160pt;}
.h5_c00299{height:48.000000pt;}
.h4_c00299{height:50.928601pt;}
.h3_c00299{height:57.984000pt;}
.h2_c00299{height:1067.880000pt;}
.h0_c00299{height:1122.520000pt;}
.h1_c00299{height:1122.666667pt;}
.w6_c00299{width:22.240000pt;}
.w5_c00299{width:455.040000pt;}
.w3_c00299{width:462.400000pt;}
.w4_c00299{width:470.400000pt;}
.w2_c00299{width:767.960000pt;}
.w0_c00299{width:793.720000pt;}
.w1_c00299{width:794.000000pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:12.880000pt;}
.x6_c00299{left:24.246000pt;}
.xc_c00299{left:36.430267pt;}
.x12_c00299{left:56.054000pt;}
.x11_c00299{left:89.781600pt;}
.x2_c00299{left:100.480133pt;}
.xb_c00299{left:109.200000pt;}
.x5_c00299{left:110.480000pt;}
.x7_c00299{left:122.296533pt;}
.xd_c00299{left:134.480800pt;}
.x3_c00299{left:147.151733pt;}
.x13_c00299{left:154.104400pt;}
.x8_c00299{left:160.959867pt;}
.xe_c00299{left:173.144133pt;}
.x9_c00299{left:190.065067pt;}
.x14_c00299{left:192.767867pt;}
.x4_c00299{left:215.102933pt;}
.xf_c00299{left:271.170267pt;}
.xa_c00299{left:272.095333pt;}
.x15_c00299{left:291.453733pt;}
.x16_c00299{left:315.453067pt;}
.x10_c00299{left:433.862267pt;}
.x17_c00299{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bdd9a0601382c768f0870d58.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.134000;font-style:normal;font-weight:normal;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_00f1bdf07c81cb14e19f71cc.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;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:ff3_c00300;src:url('chunks/assets/font_b1fc3e09d2f95ba3025811b7.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:0.772000;font-style:normal;font-weight:normal;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_8e153f1850715bc5c56d1ca4.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:0.787000;font-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_c00300{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00300{vertical-align:-30.240000px;}
.v3_c00300{vertical-align:-24.480000px;}
.v0_c00300{vertical-align:0.000000px;}
.v1_c00300{vertical-align:30.240000px;}
.ls10_c00300{letter-spacing:0.000000px;}
.ls1b_c00300{letter-spacing:0.265680px;}
.ls4_c00300{letter-spacing:0.271440px;}
.lsc_c00300{letter-spacing:0.295200px;}
.ls16_c00300{letter-spacing:0.318816px;}
.ls1e_c00300{letter-spacing:0.357572px;}
.ls9_c00300{letter-spacing:0.380640px;}
.ls18_c00300{letter-spacing:0.438171px;}
.ls1a_c00300{letter-spacing:0.478224px;}
.ls20_c00300{letter-spacing:0.492942px;}
.lsa_c00300{letter-spacing:0.531360px;}
.ls8_c00300{letter-spacing:0.536640px;}
.ls22_c00300{letter-spacing:0.547713px;}
.lsd_c00300{letter-spacing:0.548950px;}
.lsb_c00300{letter-spacing:0.549072px;}
.ls7_c00300{letter-spacing:0.567240px;}
.ls1d_c00300{letter-spacing:0.602485px;}
.ls19_c00300{letter-spacing:0.637632px;}
.ls6_c00300{letter-spacing:0.698040px;}
.ls1c_c00300{letter-spacing:0.743904px;}
.ls5_c00300{letter-spacing:0.779040px;}
.ls1f_c00300{letter-spacing:0.797040px;}
.ls17_c00300{letter-spacing:3.754944px;}
.ls12_c00300{letter-spacing:5.009472px;}
.ls14_c00300{letter-spacing:5.301792px;}
.ls11_c00300{letter-spacing:5.335200px;}
.ls2_c00300{letter-spacing:5.499398px;}
.ls3_c00300{letter-spacing:5.975400px;}
.ls0_c00300{letter-spacing:5.976000px;}
.ls1_c00300{letter-spacing:6.159301px;}
.lsf_c00300{letter-spacing:6.159920px;}
.lse_c00300{letter-spacing:15.291360px;}
.ls21_c00300{letter-spacing:15.303168px;}
.ls15_c00300{letter-spacing:15.858144px;}
.ls13_c00300{letter-spacing:15.864048px;}
.sc__c00300{text-shadow:none;}
.sc1_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00300{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc1_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00300{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00300{word-spacing:-21.714912px;}
.ws0_c00300{word-spacing:-21.592374px;}
.ws2_c00300{word-spacing:-20.621952px;}
.ws1_c00300{word-spacing:-20.016000px;}
.ws7_c00300{word-spacing:-17.520742px;}
.ws9_c00300{word-spacing:-17.411199px;}
.ws6_c00300{word-spacing:-17.050752px;}
.ws8_c00300{word-spacing:-13.974706px;}
.ws3_c00300{word-spacing:-11.609280px;}
.ws4_c00300{word-spacing:-10.008000px;}
.wsa_c00300{word-spacing:0.000000px;}
._f_c00300{margin-left:-15.291360px;}
._13_c00300{margin-left:-14.051520px;}
._11_c00300{margin-left:-4.132800px;}
._10_c00300{margin-left:-3.129120px;}
._e_c00300{margin-left:-1.121520px;}
._1_c00300{width:1.016592px;}
._2_c00300{width:2.520000px;}
._c_c00300{width:4.450920px;}
._0_c00300{width:5.517960px;}
._7_c00300{width:6.667920px;}
._6_c00300{width:7.687440px;}
._9_c00300{width:8.856000px;}
._3_c00300{width:9.936000px;}
._d_c00300{width:11.592000px;}
._12_c00300{width:14.051280px;}
._4_c00300{width:15.340200px;}
._a_c00300{width:16.776000px;}
._5_c00300{width:18.144000px;}
._b_c00300{width:21.024000px;}
._8_c00300{width:49.392000px;}
.fc0_c00300{color:rgb(0,0,0);}
.fs5_c00300{font-size:36.000000px;}
.fs4_c00300{font-size:41.760000px;}
.fs8_c00300{font-size:48.982495px;}
.fs3_c00300{font-size:56.160000px;}
.fs2_c00300{font-size:57.888403px;}
.fs6_c00300{font-size:59.040000px;}
.fs9_c00300{font-size:60.000000px;}
.fs7_c00300{font-size:60.857039px;}
.fs0_c00300{font-size:72.000000px;}
.fs1_c00300{font-size:74.215901px;}
.y0_c00300{bottom:0.000000px;}
.y31_c00300{bottom:3.120150px;}
.y30_c00300{bottom:34.744500px;}
.y1_c00300{bottom:54.000000px;}
.y2f_c00300{bottom:55.485000px;}
.y2e_c00300{bottom:72.765000px;}
.y2d_c00300{bottom:78.885000px;}
.y2c_c00300{bottom:96.525000px;}
.y2b_c00300{bottom:107.685000px;}
.y2a_c00300{bottom:113.805000px;}
.y29_c00300{bottom:125.325000px;}
.y28_c00300{bottom:131.445000px;}
.y27_c00300{bottom:149.085000px;}
.y26_c00300{bottom:166.365000px;}
.y25_c00300{bottom:184.005000px;}
.y23_c00300{bottom:195.521040px;}
.y24_c00300{bottom:195.525000px;}
.y22_c00300{bottom:212.805000px;}
.y21_c00300{bottom:218.925000px;}
.y20_c00300{bottom:230.441040px;}
.y1f_c00300{bottom:253.845000px;}
.y1e_c00300{bottom:280.485000px;}
.y1d_c00300{bottom:514.845000px;}
.y1c_c00300{bottom:535.725000px;}
.y1b_c00300{bottom:556.965000px;}
.y1a_c00300{bottom:577.845000px;}
.y19_c00300{bottom:598.725000px;}
.y18_c00300{bottom:619.965000px;}
.y17_c00300{bottom:640.845000px;}
.y15_c00300{bottom:676.845000px;}
.y16_c00300{bottom:684.405000px;}
.y14_c00300{bottom:697.725000px;}
.y13_c00300{bottom:718.965000px;}
.y12_c00300{bottom:739.845000px;}
.y11_c00300{bottom:761.085000px;}
.y10_c00300{bottom:781.965000px;}
.yf_c00300{bottom:802.845000px;}
.ye_c00300{bottom:838.845000px;}
.yd_c00300{bottom:860.085000px;}
.yc_c00300{bottom:880.965000px;}
.yb_c00300{bottom:901.845000px;}
.ya_c00300{bottom:923.085000px;}
.y9_c00300{bottom:943.965000px;}
.y8_c00300{bottom:964.845000px;}
.y7_c00300{bottom:986.085000px;}
.y6_c00300{bottom:1006.965000px;}
.y5_c00300{bottom:1027.845000px;}
.y4_c00300{bottom:1049.085000px;}
.y3_c00300{bottom:1085.085000px;}
.y2_c00300{bottom:1138.365000px;}
.hb_c00300{height:19.255500px;}
.h8_c00300{height:32.616000px;}
.h7_c00300{height:37.834560px;}
.h5_c00300{height:44.689847px;}
.hc_c00300{height:46.320000px;}
.ha_c00300{height:46.981634px;}
.h9_c00300{height:53.490240px;}
.h4_c00300{height:57.294676px;}
.h3_c00300{height:65.232000px;}
.h6_c00300{height:68.074560px;}
.h2_c00300{height:1201.365000px;}
.h0_c00300{height:1262.835000px;}
.h1_c00300{height:1263.000000px;}
.w3_c00300{width:25.020000px;}
.w2_c00300{width:863.955000px;}
.w0_c00300{width:892.935000px;}
.w1_c00300{width:893.250000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:14.490000px;}
.x2_c00300{left:113.040150px;}
.x27_c00300{left:122.213700px;}
.x28_c00300{left:161.378100px;}
.x3_c00300{left:165.545700px;}
.x19_c00300{left:179.081100px;}
.x23_c00300{left:182.051550px;}
.x7_c00300{left:203.005350px;}
.x8_c00300{left:209.503050px;}
.x1c_c00300{left:213.234750px;}
.x9_c00300{left:214.647150px;}
.x1d_c00300{left:229.186950px;}
.x13_c00300{left:238.899450px;}
.x4_c00300{left:246.508350px;}
.x2a_c00300{left:248.095800px;}
.x5_c00300{left:253.005900px;}
.x6_c00300{left:259.503600px;}
.x14_c00300{left:300.944400px;}
.xf_c00300{left:327.378600px;}
.x15_c00300{left:333.744900px;}
.x16_c00300{left:380.742150px;}
.x26_c00300{left:399.769350px;}
.xa_c00300{left:406.986000px;}
.x10_c00300{left:430.263000px;}
.x1e_c00300{left:435.785550px;}
.x11_c00300{left:439.134900px;}
.xb_c00300{left:454.955100px;}
.x1f_c00300{left:504.796800px;}
.x12_c00300{left:537.841200px;}
.x20_c00300{left:552.107700px;}
.x21_c00300{left:566.111550px;}
.xc_c00300{left:572.399400px;}
.x24_c00300{left:577.755300px;}
.x25_c00300{left:598.621200px;}
.x22_c00300{left:603.000000px;}
.x17_c00300{left:610.544700px;}
.x29_c00300{left:642.443850px;}
.xd_c00300{left:648.894300px;}
.x1a_c00300{left:650.180850px;}
.xe_c00300{left:680.371200px;}
.x18_c00300{left:684.577950px;}
.x1b_c00300{left:700.183950px;}
.x2b_c00300{left:759.915000px;}
@media print{
.v2_c00300{vertical-align:-26.880000pt;}
.v3_c00300{vertical-align:-21.760000pt;}
.v0_c00300{vertical-align:0.000000pt;}
.v1_c00300{vertical-align:26.880000pt;}
.ls10_c00300{letter-spacing:0.000000pt;}
.ls1b_c00300{letter-spacing:0.236160pt;}
.ls4_c00300{letter-spacing:0.241280pt;}
.lsc_c00300{letter-spacing:0.262400pt;}
.ls16_c00300{letter-spacing:0.283392pt;}
.ls1e_c00300{letter-spacing:0.317842pt;}
.ls9_c00300{letter-spacing:0.338347pt;}
.ls18_c00300{letter-spacing:0.389485pt;}
.ls1a_c00300{letter-spacing:0.425088pt;}
.ls20_c00300{letter-spacing:0.438171pt;}
.lsa_c00300{letter-spacing:0.472320pt;}
.ls8_c00300{letter-spacing:0.477013pt;}
.ls22_c00300{letter-spacing:0.486856pt;}
.lsd_c00300{letter-spacing:0.487956pt;}
.lsb_c00300{letter-spacing:0.488064pt;}
.ls7_c00300{letter-spacing:0.504213pt;}
.ls1d_c00300{letter-spacing:0.535542pt;}
.ls19_c00300{letter-spacing:0.566784pt;}
.ls6_c00300{letter-spacing:0.620480pt;}
.ls1c_c00300{letter-spacing:0.661248pt;}
.ls5_c00300{letter-spacing:0.692480pt;}
.ls1f_c00300{letter-spacing:0.708480pt;}
.ls17_c00300{letter-spacing:3.337728pt;}
.ls12_c00300{letter-spacing:4.452864pt;}
.ls14_c00300{letter-spacing:4.712704pt;}
.ls11_c00300{letter-spacing:4.742400pt;}
.ls2_c00300{letter-spacing:4.888354pt;}
.ls3_c00300{letter-spacing:5.311467pt;}
.ls0_c00300{letter-spacing:5.312000pt;}
.ls1_c00300{letter-spacing:5.474935pt;}
.lsf_c00300{letter-spacing:5.475484pt;}
.lse_c00300{letter-spacing:13.592320pt;}
.ls21_c00300{letter-spacing:13.602816pt;}
.ls15_c00300{letter-spacing:14.096128pt;}
.ls13_c00300{letter-spacing:14.101376pt;}
.ws5_c00300{word-spacing:-19.302144pt;}
.ws0_c00300{word-spacing:-19.193222pt;}
.ws2_c00300{word-spacing:-18.330624pt;}
.ws1_c00300{word-spacing:-17.792000pt;}
.ws7_c00300{word-spacing:-15.573992pt;}
.ws9_c00300{word-spacing:-15.476621pt;}
.ws6_c00300{word-spacing:-15.156224pt;}
.ws8_c00300{word-spacing:-12.421961pt;}
.ws3_c00300{word-spacing:-10.319360pt;}
.ws4_c00300{word-spacing:-8.896000pt;}
.wsa_c00300{word-spacing:0.000000pt;}
._f_c00300{margin-left:-13.592320pt;}
._13_c00300{margin-left:-12.490240pt;}
._11_c00300{margin-left:-3.673600pt;}
._10_c00300{margin-left:-2.781440pt;}
._e_c00300{margin-left:-0.996907pt;}
._1_c00300{width:0.903637pt;}
._2_c00300{width:2.240000pt;}
._c_c00300{width:3.956373pt;}
._0_c00300{width:4.904853pt;}
._7_c00300{width:5.927040pt;}
._6_c00300{width:6.833280pt;}
._9_c00300{width:7.872000pt;}
._3_c00300{width:8.832000pt;}
._d_c00300{width:10.304000pt;}
._12_c00300{width:12.490027pt;}
._4_c00300{width:13.635733pt;}
._a_c00300{width:14.912000pt;}
._5_c00300{width:16.128000pt;}
._b_c00300{width:18.688000pt;}
._8_c00300{width:43.904000pt;}
.fs5_c00300{font-size:32.000000pt;}
.fs4_c00300{font-size:37.120000pt;}
.fs8_c00300{font-size:43.539995pt;}
.fs3_c00300{font-size:49.920000pt;}
.fs2_c00300{font-size:51.456358pt;}
.fs6_c00300{font-size:52.480000pt;}
.fs9_c00300{font-size:53.333333pt;}
.fs7_c00300{font-size:54.095146pt;}
.fs0_c00300{font-size:64.000000pt;}
.fs1_c00300{font-size:65.969690pt;}
.y0_c00300{bottom:0.000000pt;}
.y31_c00300{bottom:2.773467pt;}
.y30_c00300{bottom:30.884000pt;}
.y1_c00300{bottom:48.000000pt;}
.y2f_c00300{bottom:49.320000pt;}
.y2e_c00300{bottom:64.680000pt;}
.y2d_c00300{bottom:70.120000pt;}
.y2c_c00300{bottom:85.800000pt;}
.y2b_c00300{bottom:95.720000pt;}
.y2a_c00300{bottom:101.160000pt;}
.y29_c00300{bottom:111.400000pt;}
.y28_c00300{bottom:116.840000pt;}
.y27_c00300{bottom:132.520000pt;}
.y26_c00300{bottom:147.880000pt;}
.y25_c00300{bottom:163.560000pt;}
.y23_c00300{bottom:173.796480pt;}
.y24_c00300{bottom:173.800000pt;}
.y22_c00300{bottom:189.160000pt;}
.y21_c00300{bottom:194.600000pt;}
.y20_c00300{bottom:204.836480pt;}
.y1f_c00300{bottom:225.640000pt;}
.y1e_c00300{bottom:249.320000pt;}
.y1d_c00300{bottom:457.640000pt;}
.y1c_c00300{bottom:476.200000pt;}
.y1b_c00300{bottom:495.080000pt;}
.y1a_c00300{bottom:513.640000pt;}
.y19_c00300{bottom:532.200000pt;}
.y18_c00300{bottom:551.080000pt;}
.y17_c00300{bottom:569.640000pt;}
.y15_c00300{bottom:601.640000pt;}
.y16_c00300{bottom:608.360000pt;}
.y14_c00300{bottom:620.200000pt;}
.y13_c00300{bottom:639.080000pt;}
.y12_c00300{bottom:657.640000pt;}
.y11_c00300{bottom:676.520000pt;}
.y10_c00300{bottom:695.080000pt;}
.yf_c00300{bottom:713.640000pt;}
.ye_c00300{bottom:745.640000pt;}
.yd_c00300{bottom:764.520000pt;}
.yc_c00300{bottom:783.080000pt;}
.yb_c00300{bottom:801.640000pt;}
.ya_c00300{bottom:820.520000pt;}
.y9_c00300{bottom:839.080000pt;}
.y8_c00300{bottom:857.640000pt;}
.y7_c00300{bottom:876.520000pt;}
.y6_c00300{bottom:895.080000pt;}
.y5_c00300{bottom:913.640000pt;}
.y4_c00300{bottom:932.520000pt;}
.y3_c00300{bottom:964.520000pt;}
.y2_c00300{bottom:1011.880000pt;}
.hb_c00300{height:17.116000pt;}
.h8_c00300{height:28.992000pt;}
.h7_c00300{height:33.630720pt;}
.h5_c00300{height:39.724309pt;}
.hc_c00300{height:41.173333pt;}
.ha_c00300{height:41.761453pt;}
.h9_c00300{height:47.546880pt;}
.h4_c00300{height:50.928601pt;}
.h3_c00300{height:57.984000pt;}
.h6_c00300{height:60.510720pt;}
.h2_c00300{height:1067.880000pt;}
.h0_c00300{height:1122.520000pt;}
.h1_c00300{height:1122.666667pt;}
.w3_c00300{width:22.240000pt;}
.w2_c00300{width:767.960000pt;}
.w0_c00300{width:793.720000pt;}
.w1_c00300{width:794.000000pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:12.880000pt;}
.x2_c00300{left:100.480133pt;}
.x27_c00300{left:108.634400pt;}
.x28_c00300{left:143.447200pt;}
.x3_c00300{left:147.151733pt;}
.x19_c00300{left:159.183200pt;}
.x23_c00300{left:161.823600pt;}
.x7_c00300{left:180.449200pt;}
.x8_c00300{left:186.224933pt;}
.x1c_c00300{left:189.542000pt;}
.x9_c00300{left:190.797467pt;}
.x1d_c00300{left:203.721733pt;}
.x13_c00300{left:212.355067pt;}
.x4_c00300{left:219.118533pt;}
.x2a_c00300{left:220.529600pt;}
.x5_c00300{left:224.894133pt;}
.x6_c00300{left:230.669867pt;}
.x14_c00300{left:267.506133pt;}
.xf_c00300{left:291.003200pt;}
.x15_c00300{left:296.662133pt;}
.x16_c00300{left:338.437467pt;}
.x26_c00300{left:355.350533pt;}
.xa_c00300{left:361.765333pt;}
.x10_c00300{left:382.456000pt;}
.x1e_c00300{left:387.364933pt;}
.x11_c00300{left:390.342133pt;}
.xb_c00300{left:404.404533pt;}
.x1f_c00300{left:448.708267pt;}
.x12_c00300{left:478.081067pt;}
.x20_c00300{left:490.762400pt;}
.x21_c00300{left:503.210267pt;}
.xc_c00300{left:508.799467pt;}
.x24_c00300{left:513.560267pt;}
.x25_c00300{left:532.107733pt;}
.x22_c00300{left:536.000000pt;}
.x17_c00300{left:542.706400pt;}
.x29_c00300{left:571.061200pt;}
.xd_c00300{left:576.794933pt;}
.x1a_c00300{left:577.938533pt;}
.xe_c00300{left:604.774400pt;}
.x18_c00300{left:608.513733pt;}
.x1b_c00300{left:622.385733pt;}
.x2b_c00300{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_72252ee2629e5071331bfaac.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.134000;font-style:normal;font-weight:normal;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_410bbd86ba622e3b322e00d8.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;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:ff3_c00301;src:url('chunks/assets/font_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:0.787000;font-style:normal;font-weight:normal;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_08552329491ae040d844b34e.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:0.787000;font-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_c00301{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00301{vertical-align:-24.480000px;}
.v0_c00301{vertical-align:0.000000px;}
.v1_c00301{vertical-align:30.240000px;}
.lsd_c00301{letter-spacing:-0.179568px;}
.lsc_c00301{letter-spacing:0.000000px;}
.lsf_c00301{letter-spacing:0.144000px;}
.ls12_c00301{letter-spacing:0.265680px;}
.ls5_c00301{letter-spacing:0.295200px;}
.ls7_c00301{letter-spacing:0.354240px;}
.ls1a_c00301{letter-spacing:0.371952px;}
.ls10_c00301{letter-spacing:0.425088px;}
.ls13_c00301{letter-spacing:0.438171px;}
.ls1b_c00301{letter-spacing:0.478224px;}
.ls3_c00301{letter-spacing:0.492942px;}
.lsa_c00301{letter-spacing:0.513648px;}
.ls6_c00301{letter-spacing:0.531360px;}
.ls4_c00301{letter-spacing:0.560880px;}
.ls1d_c00301{letter-spacing:0.602485px;}
.ls11_c00301{letter-spacing:0.657256px;}
.ls1f_c00301{letter-spacing:0.712027px;}
.ls9_c00301{letter-spacing:0.821570px;}
.ls14_c00301{letter-spacing:0.962352px;}
.ls1e_c00301{letter-spacing:0.991970px;}
.ls15_c00301{letter-spacing:1.174896px;}
.ls18_c00301{letter-spacing:5.065632px;}
.ls17_c00301{letter-spacing:5.248656px;}
.ls8_c00301{letter-spacing:5.372640px;}
.lse_c00301{letter-spacing:5.430672px;}
.ls16_c00301{letter-spacing:5.514336px;}
.ls0_c00301{letter-spacing:5.976000px;}
.ls2_c00301{letter-spacing:6.006000px;}
.lsb_c00301{letter-spacing:6.159920px;}
.ls1_c00301{letter-spacing:7.344000px;}
.ls1c_c00301{letter-spacing:8.997696px;}
.ls19_c00301{letter-spacing:10.461888px;}
.sc__c00301{text-shadow:none;}
.sc1_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00301{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc1_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00301{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00301{word-spacing:-21.927456px;}
.ws2_c00301{word-spacing:-21.043152px;}
.ws1_c00301{word-spacing:-20.016000px;}
.ws7_c00301{word-spacing:-17.910227px;}
.ws6_c00301{word-spacing:-17.739827px;}
.ws4_c00301{word-spacing:-17.575513px;}
.ws8_c00301{word-spacing:-16.944480px;}
.ws0_c00301{word-spacing:-11.429712px;}
.ws3_c00301{word-spacing:-10.152000px;}
.ws9_c00301{word-spacing:0.000000px;}
._d_c00301{margin-left:-10.154880px;}
._e_c00301{margin-left:-9.033120px;}
._10_c00301{margin-left:-7.372800px;}
._c_c00301{margin-left:-5.483040px;}
._b_c00301{margin-left:-4.323264px;}
._a_c00301{margin-left:-1.277998px;}
._7_c00301{width:1.098816px;}
._5_c00301{width:2.952000px;}
._8_c00301{width:3.960000px;}
._1_c00301{width:5.256000px;}
._2_c00301{width:7.200000px;}
._0_c00301{width:8.928000px;}
._f_c00301{width:10.579968px;}
._6_c00301{width:11.952000px;}
._4_c00301{width:13.032000px;}
._9_c00301{width:15.048000px;}
._3_c00301{width:16.488000px;}
.fc0_c00301{color:rgb(0,0,0);}
.fs4_c00301{font-size:36.000000px;}
.fs2_c00301{font-size:41.760000px;}
.fs3_c00301{font-size:56.160000px;}
.fs5_c00301{font-size:59.040000px;}
.fs7_c00301{font-size:60.000000px;}
.fs6_c00301{font-size:60.857039px;}
.fs0_c00301{font-size:72.000000px;}
.fs1_c00301{font-size:74.215901px;}
.y0_c00301{bottom:0.000000px;}
.y30_c00301{bottom:3.120150px;}
.y2f_c00301{bottom:34.744500px;}
.y1_c00301{bottom:54.000000px;}
.y2e_c00301{bottom:61.605000px;}
.y2d_c00301{bottom:72.765000px;}
.y2c_c00301{bottom:72.766800px;}
.y2b_c00301{bottom:90.405000px;}
.y2a_c00301{bottom:96.525000px;}
.y29_c00301{bottom:107.686800px;}
.y27_c00301{bottom:125.317800px;}
.y28_c00301{bottom:125.325000px;}
.y25_c00301{bottom:143.321040px;}
.y26_c00301{bottom:143.325000px;}
.y24_c00301{bottom:166.725000px;}
.y23_c00301{bottom:184.365000px;}
.y22_c00301{bottom:202.005000px;}
.y21_c00301{bottom:213.166800px;}
.y20_c00301{bottom:230.805000px;}
.y1f_c00301{bottom:236.925000px;}
.y1e_c00301{bottom:263.565000px;}
.y1d_c00301{bottom:384.525000px;}
.y1c_c00301{bottom:420.525000px;}
.y1b_c00301{bottom:441.405000px;}
.y1a_c00301{bottom:462.285000px;}
.y19_c00301{bottom:483.525000px;}
.y18_c00301{bottom:504.405000px;}
.y17_c00301{bottom:525.285000px;}
.y16_c00301{bottom:561.285000px;}
.y15_c00301{bottom:597.285000px;}
.y14_c00301{bottom:633.285000px;}
.y13_c00301{bottom:669.285000px;}
.y12_c00301{bottom:690.525000px;}
.y11_c00301{bottom:711.405000px;}
.y10_c00301{bottom:732.285000px;}
.yf_c00301{bottom:753.525000px;}
.ye_c00301{bottom:774.405000px;}
.yd_c00301{bottom:795.285000px;}
.yc_c00301{bottom:816.525000px;}
.yb_c00301{bottom:852.525000px;}
.ya_c00301{bottom:873.405000px;}
.y9_c00301{bottom:894.645000px;}
.y8_c00301{bottom:915.525000px;}
.y7_c00301{bottom:936.405000px;}
.y6_c00301{bottom:972.405000px;}
.y5_c00301{bottom:1008.405000px;}
.y4_c00301{bottom:1046.925000px;}
.y3_c00301{bottom:1085.085000px;}
.y2_c00301{bottom:1138.365000px;}
.h9_c00301{height:19.255500px;}
.h6_c00301{height:32.616000px;}
.ha_c00301{height:46.320000px;}
.h7_c00301{height:46.981634px;}
.h8_c00301{height:53.490240px;}
.h4_c00301{height:57.294676px;}
.h3_c00301{height:65.232000px;}
.h5_c00301{height:68.074560px;}
.h2_c00301{height:1201.365000px;}
.h0_c00301{height:1262.835000px;}
.h1_c00301{height:1263.000000px;}
.w3_c00301{width:25.020000px;}
.w2_c00301{width:863.955000px;}
.w0_c00301{width:892.935000px;}
.w1_c00301{width:893.250000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:14.490000px;}
.x2_c00301{left:113.040150px;}
.xf_c00301{left:128.143050px;}
.x1a_c00301{left:158.879850px;}
.x3_c00301{left:165.545700px;}
.x8_c00301{left:172.024950px;}
.x16_c00301{left:178.018500px;}
.x10_c00301{left:190.747200px;}
.xb_c00301{left:195.955800px;}
.x9_c00301{left:241.036350px;}
.x4_c00301{left:246.508350px;}
.xa_c00301{left:251.044200px;}
.x5_c00301{left:253.005900px;}
.xc_c00301{left:254.941050px;}
.x6_c00301{left:259.503600px;}
.x1b_c00301{left:283.870200px;}
.x7_c00301{left:408.711150px;}
.x11_c00301{left:413.935950px;}
.xd_c00301{left:487.662900px;}
.x12_c00301{left:491.453250px;}
.xe_c00301{left:494.624250px;}
.x17_c00301{left:545.614350px;}
.x18_c00301{left:572.269050px;}
.x13_c00301{left:622.679100px;}
.x14_c00301{left:643.598100px;}
.x15_c00301{left:671.192850px;}
.x19_c00301{left:711.226350px;}
.x1c_c00301{left:759.915000px;}
@media print{
.v2_c00301{vertical-align:-21.760000pt;}
.v0_c00301{vertical-align:0.000000pt;}
.v1_c00301{vertical-align:26.880000pt;}
.lsd_c00301{letter-spacing:-0.159616pt;}
.lsc_c00301{letter-spacing:0.000000pt;}
.lsf_c00301{letter-spacing:0.128000pt;}
.ls12_c00301{letter-spacing:0.236160pt;}
.ls5_c00301{letter-spacing:0.262400pt;}
.ls7_c00301{letter-spacing:0.314880pt;}
.ls1a_c00301{letter-spacing:0.330624pt;}
.ls10_c00301{letter-spacing:0.377856pt;}
.ls13_c00301{letter-spacing:0.389485pt;}
.ls1b_c00301{letter-spacing:0.425088pt;}
.ls3_c00301{letter-spacing:0.438171pt;}
.lsa_c00301{letter-spacing:0.456576pt;}
.ls6_c00301{letter-spacing:0.472320pt;}
.ls4_c00301{letter-spacing:0.498560pt;}
.ls1d_c00301{letter-spacing:0.535542pt;}
.ls11_c00301{letter-spacing:0.584228pt;}
.ls1f_c00301{letter-spacing:0.632913pt;}
.ls9_c00301{letter-spacing:0.730284pt;}
.ls14_c00301{letter-spacing:0.855424pt;}
.ls1e_c00301{letter-spacing:0.881751pt;}
.ls15_c00301{letter-spacing:1.044352pt;}
.ls18_c00301{letter-spacing:4.502784pt;}
.ls17_c00301{letter-spacing:4.665472pt;}
.ls8_c00301{letter-spacing:4.775680pt;}
.lse_c00301{letter-spacing:4.827264pt;}
.ls16_c00301{letter-spacing:4.901632pt;}
.ls0_c00301{letter-spacing:5.312000pt;}
.ls2_c00301{letter-spacing:5.338667pt;}
.lsb_c00301{letter-spacing:5.475484pt;}
.ls1_c00301{letter-spacing:6.528000pt;}
.ls1c_c00301{letter-spacing:7.997952pt;}
.ls19_c00301{letter-spacing:9.299456pt;}
.ws5_c00301{word-spacing:-19.491072pt;}
.ws2_c00301{word-spacing:-18.705024pt;}
.ws1_c00301{word-spacing:-17.792000pt;}
.ws7_c00301{word-spacing:-15.920201pt;}
.ws6_c00301{word-spacing:-15.768735pt;}
.ws4_c00301{word-spacing:-15.622678pt;}
.ws8_c00301{word-spacing:-15.061760pt;}
.ws0_c00301{word-spacing:-10.159744pt;}
.ws3_c00301{word-spacing:-9.024000pt;}
.ws9_c00301{word-spacing:0.000000pt;}
._d_c00301{margin-left:-9.026560pt;}
._e_c00301{margin-left:-8.029440pt;}
._10_c00301{margin-left:-6.553600pt;}
._c_c00301{margin-left:-4.873813pt;}
._b_c00301{margin-left:-3.842901pt;}
._a_c00301{margin-left:-1.135998pt;}
._7_c00301{width:0.976725pt;}
._5_c00301{width:2.624000pt;}
._8_c00301{width:3.520000pt;}
._1_c00301{width:4.672000pt;}
._2_c00301{width:6.400000pt;}
._0_c00301{width:7.936000pt;}
._f_c00301{width:9.404416pt;}
._6_c00301{width:10.624000pt;}
._4_c00301{width:11.584000pt;}
._9_c00301{width:13.376000pt;}
._3_c00301{width:14.656000pt;}
.fs4_c00301{font-size:32.000000pt;}
.fs2_c00301{font-size:37.120000pt;}
.fs3_c00301{font-size:49.920000pt;}
.fs5_c00301{font-size:52.480000pt;}
.fs7_c00301{font-size:53.333333pt;}
.fs6_c00301{font-size:54.095146pt;}
.fs0_c00301{font-size:64.000000pt;}
.fs1_c00301{font-size:65.969690pt;}
.y0_c00301{bottom:0.000000pt;}
.y30_c00301{bottom:2.773467pt;}
.y2f_c00301{bottom:30.884000pt;}
.y1_c00301{bottom:48.000000pt;}
.y2e_c00301{bottom:54.760000pt;}
.y2d_c00301{bottom:64.680000pt;}
.y2c_c00301{bottom:64.681600pt;}
.y2b_c00301{bottom:80.360000pt;}
.y2a_c00301{bottom:85.800000pt;}
.y29_c00301{bottom:95.721600pt;}
.y27_c00301{bottom:111.393600pt;}
.y28_c00301{bottom:111.400000pt;}
.y25_c00301{bottom:127.396480pt;}
.y26_c00301{bottom:127.400000pt;}
.y24_c00301{bottom:148.200000pt;}
.y23_c00301{bottom:163.880000pt;}
.y22_c00301{bottom:179.560000pt;}
.y21_c00301{bottom:189.481600pt;}
.y20_c00301{bottom:205.160000pt;}
.y1f_c00301{bottom:210.600000pt;}
.y1e_c00301{bottom:234.280000pt;}
.y1d_c00301{bottom:341.800000pt;}
.y1c_c00301{bottom:373.800000pt;}
.y1b_c00301{bottom:392.360000pt;}
.y1a_c00301{bottom:410.920000pt;}
.y19_c00301{bottom:429.800000pt;}
.y18_c00301{bottom:448.360000pt;}
.y17_c00301{bottom:466.920000pt;}
.y16_c00301{bottom:498.920000pt;}
.y15_c00301{bottom:530.920000pt;}
.y14_c00301{bottom:562.920000pt;}
.y13_c00301{bottom:594.920000pt;}
.y12_c00301{bottom:613.800000pt;}
.y11_c00301{bottom:632.360000pt;}
.y10_c00301{bottom:650.920000pt;}
.yf_c00301{bottom:669.800000pt;}
.ye_c00301{bottom:688.360000pt;}
.yd_c00301{bottom:706.920000pt;}
.yc_c00301{bottom:725.800000pt;}
.yb_c00301{bottom:757.800000pt;}
.ya_c00301{bottom:776.360000pt;}
.y9_c00301{bottom:795.240000pt;}
.y8_c00301{bottom:813.800000pt;}
.y7_c00301{bottom:832.360000pt;}
.y6_c00301{bottom:864.360000pt;}
.y5_c00301{bottom:896.360000pt;}
.y4_c00301{bottom:930.600000pt;}
.y3_c00301{bottom:964.520000pt;}
.y2_c00301{bottom:1011.880000pt;}
.h9_c00301{height:17.116000pt;}
.h6_c00301{height:28.992000pt;}
.ha_c00301{height:41.173333pt;}
.h7_c00301{height:41.761453pt;}
.h8_c00301{height:47.546880pt;}
.h4_c00301{height:50.928601pt;}
.h3_c00301{height:57.984000pt;}
.h5_c00301{height:60.510720pt;}
.h2_c00301{height:1067.880000pt;}
.h0_c00301{height:1122.520000pt;}
.h1_c00301{height:1122.666667pt;}
.w3_c00301{width:22.240000pt;}
.w2_c00301{width:767.960000pt;}
.w0_c00301{width:793.720000pt;}
.w1_c00301{width:794.000000pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:12.880000pt;}
.x2_c00301{left:100.480133pt;}
.xf_c00301{left:113.904933pt;}
.x1a_c00301{left:141.226533pt;}
.x3_c00301{left:147.151733pt;}
.x8_c00301{left:152.911067pt;}
.x16_c00301{left:158.238667pt;}
.x10_c00301{left:169.553067pt;}
.xb_c00301{left:174.182933pt;}
.x9_c00301{left:214.254533pt;}
.x4_c00301{left:219.118533pt;}
.xa_c00301{left:223.150400pt;}
.x5_c00301{left:224.894133pt;}
.xc_c00301{left:226.614267pt;}
.x6_c00301{left:230.669867pt;}
.x1b_c00301{left:252.329067pt;}
.x7_c00301{left:363.298800pt;}
.x11_c00301{left:367.943067pt;}
.xd_c00301{left:433.478133pt;}
.x12_c00301{left:436.847333pt;}
.xe_c00301{left:439.666000pt;}
.x17_c00301{left:484.990533pt;}
.x18_c00301{left:508.683600pt;}
.x13_c00301{left:553.492533pt;}
.x14_c00301{left:572.087200pt;}
.x15_c00301{left:596.615867pt;}
.x19_c00301{left:632.201200pt;}
.x1c_c00301{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d15f853fd5199d24c38dda1.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.134000;font-style:normal;font-weight:normal;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_0778a4d5674a99a486a2f41b.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;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:ff3_c00302;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00302;src:url('chunks/assets/font_d3dce09b64c1198c2bc3016a.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00302;src:url('chunks/assets/font_31e3a1d4707c6ec03830354a.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;line-height:0.787000;font-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_c00302{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls4_c00302{letter-spacing:0.000000px;}
.ls5_c00302{letter-spacing:5.430672px;}
.ls2_c00302{letter-spacing:5.904000px;}
.ls0_c00302{letter-spacing:5.976000px;}
.ls1_c00302{letter-spacing:5.978400px;}
.ls3_c00302{letter-spacing:6.159920px;}
.ls6_c00302{letter-spacing:36.460800px;}
.sc__c00302{text-shadow:none;}
.sc1_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00302{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc1_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00302{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00302{word-spacing:-21.043152px;}
.ws1_c00302{word-spacing:0.000000px;}
._b_c00302{margin-left:-30.312000px;}
._3_c00302{margin-left:-1.179360px;}
._1_c00302{width:2.309422px;}
._0_c00302{width:3.339716px;}
._4_c00302{width:5.184000px;}
._6_c00302{width:7.776000px;}
._7_c00302{width:13.104000px;}
._2_c00302{width:17.712000px;}
._5_c00302{width:19.008000px;}
._8_c00302{width:24.336000px;}
._a_c00302{width:29.808000px;}
._9_c00302{width:31.104000px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs2_c00302{font-size:56.160000px;}
.fs3_c00302{font-size:60.000000px;}
.fs0_c00302{font-size:72.000000px;}
.fs1_c00302{font-size:74.215901px;}
.y0_c00302{bottom:0.000000px;}
.y25_c00302{bottom:3.120150px;}
.y24_c00302{bottom:34.744500px;}
.y1_c00302{bottom:54.000000px;}
.y23_c00302{bottom:106.965000px;}
.y22_c00302{bottom:131.085000px;}
.y21_c00302{bottom:151.965000px;}
.y20_c00302{bottom:187.965000px;}
.y1f_c00302{bottom:208.845000px;}
.y1e_c00302{bottom:244.845000px;}
.y1d_c00302{bottom:280.845000px;}
.y1c_c00302{bottom:305.325000px;}
.y1b_c00302{bottom:325.845000px;}
.y1a_c00302{bottom:361.845000px;}
.y19_c00302{bottom:382.725000px;}
.y18_c00302{bottom:418.725000px;}
.y17_c00302{bottom:454.725000px;}
.y16_c00302{bottom:475.965000px;}
.y15_c00302{bottom:496.845000px;}
.y14_c00302{bottom:532.845000px;}
.y13_c00302{bottom:568.845000px;}
.y12_c00302{bottom:604.845000px;}
.y11_c00302{bottom:640.845000px;}
.y10_c00302{bottom:676.845000px;}
.yf_c00302{bottom:712.845000px;}
.ye_c00302{bottom:734.085000px;}
.yd_c00302{bottom:770.085000px;}
.yc_c00302{bottom:790.965000px;}
.yb_c00302{bottom:826.965000px;}
.ya_c00302{bottom:862.965000px;}
.y9_c00302{bottom:883.845000px;}
.y8_c00302{bottom:919.845000px;}
.y7_c00302{bottom:941.085000px;}
.y6_c00302{bottom:977.085000px;}
.y5_c00302{bottom:1013.085000px;}
.y4_c00302{bottom:1049.085000px;}
.y3_c00302{bottom:1085.085000px;}
.y2_c00302{bottom:1138.365000px;}
.h6_c00302{height:19.255500px;}
.h7_c00302{height:46.320000px;}
.h5_c00302{height:52.031250px;}
.h4_c00302{height:57.294676px;}
.h3_c00302{height:65.232000px;}
.h2_c00302{height:1201.365000px;}
.h0_c00302{height:1262.835000px;}
.h1_c00302{height:1263.000000px;}
.w3_c00302{width:25.020000px;}
.w2_c00302{width:863.955000px;}
.w0_c00302{width:892.935000px;}
.w1_c00302{width:893.250000px;}
.x0_c00302{left:0.000000px;}
.x1_c00302{left:14.490000px;}
.x2_c00302{left:113.040150px;}
.x7_c00302{left:140.037600px;}
.xa_c00302{left:148.031550px;}
.x9_c00302{left:150.029700px;}
.xd_c00302{left:153.035550px;}
.xc_c00302{left:155.819850px;}
.x11_c00302{left:159.470550px;}
.x3_c00302{left:165.545700px;}
.x8_c00302{left:167.040150px;}
.x10_c00302{left:177.048000px;}
.xb_c00302{left:182.051850px;}
.x4_c00302{left:246.508350px;}
.x5_c00302{left:253.005900px;}
.x6_c00302{left:259.503600px;}
.x15_c00302{left:280.042200px;}
.xe_c00302{left:556.122150px;}
.x13_c00302{left:591.762450px;}
.x14_c00302{left:604.758150px;}
.xf_c00302{left:634.168950px;}
.x12_c00302{left:701.377050px;}
.x16_c00302{left:759.915000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls4_c00302{letter-spacing:0.000000pt;}
.ls5_c00302{letter-spacing:4.827264pt;}
.ls2_c00302{letter-spacing:5.248000pt;}
.ls0_c00302{letter-spacing:5.312000pt;}
.ls1_c00302{letter-spacing:5.314133pt;}
.ls3_c00302{letter-spacing:5.475484pt;}
.ls6_c00302{letter-spacing:32.409600pt;}
.ws0_c00302{word-spacing:-18.705024pt;}
.ws1_c00302{word-spacing:0.000000pt;}
._b_c00302{margin-left:-26.944000pt;}
._3_c00302{margin-left:-1.048320pt;}
._1_c00302{width:2.052820pt;}
._0_c00302{width:2.968636pt;}
._4_c00302{width:4.608000pt;}
._6_c00302{width:6.912000pt;}
._7_c00302{width:11.648000pt;}
._2_c00302{width:15.744000pt;}
._5_c00302{width:16.896000pt;}
._8_c00302{width:21.632000pt;}
._a_c00302{width:26.496000pt;}
._9_c00302{width:27.648000pt;}
.fs2_c00302{font-size:49.920000pt;}
.fs3_c00302{font-size:53.333333pt;}
.fs0_c00302{font-size:64.000000pt;}
.fs1_c00302{font-size:65.969690pt;}
.y0_c00302{bottom:0.000000pt;}
.y25_c00302{bottom:2.773467pt;}
.y24_c00302{bottom:30.884000pt;}
.y1_c00302{bottom:48.000000pt;}
.y23_c00302{bottom:95.080000pt;}
.y22_c00302{bottom:116.520000pt;}
.y21_c00302{bottom:135.080000pt;}
.y20_c00302{bottom:167.080000pt;}
.y1f_c00302{bottom:185.640000pt;}
.y1e_c00302{bottom:217.640000pt;}
.y1d_c00302{bottom:249.640000pt;}
.y1c_c00302{bottom:271.400000pt;}
.y1b_c00302{bottom:289.640000pt;}
.y1a_c00302{bottom:321.640000pt;}
.y19_c00302{bottom:340.200000pt;}
.y18_c00302{bottom:372.200000pt;}
.y17_c00302{bottom:404.200000pt;}
.y16_c00302{bottom:423.080000pt;}
.y15_c00302{bottom:441.640000pt;}
.y14_c00302{bottom:473.640000pt;}
.y13_c00302{bottom:505.640000pt;}
.y12_c00302{bottom:537.640000pt;}
.y11_c00302{bottom:569.640000pt;}
.y10_c00302{bottom:601.640000pt;}
.yf_c00302{bottom:633.640000pt;}
.ye_c00302{bottom:652.520000pt;}
.yd_c00302{bottom:684.520000pt;}
.yc_c00302{bottom:703.080000pt;}
.yb_c00302{bottom:735.080000pt;}
.ya_c00302{bottom:767.080000pt;}
.y9_c00302{bottom:785.640000pt;}
.y8_c00302{bottom:817.640000pt;}
.y7_c00302{bottom:836.520000pt;}
.y6_c00302{bottom:868.520000pt;}
.y5_c00302{bottom:900.520000pt;}
.y4_c00302{bottom:932.520000pt;}
.y3_c00302{bottom:964.520000pt;}
.y2_c00302{bottom:1011.880000pt;}
.h6_c00302{height:17.116000pt;}
.h7_c00302{height:41.173333pt;}
.h5_c00302{height:46.250000pt;}
.h4_c00302{height:50.928601pt;}
.h3_c00302{height:57.984000pt;}
.h2_c00302{height:1067.880000pt;}
.h0_c00302{height:1122.520000pt;}
.h1_c00302{height:1122.666667pt;}
.w3_c00302{width:22.240000pt;}
.w2_c00302{width:767.960000pt;}
.w0_c00302{width:793.720000pt;}
.w1_c00302{width:794.000000pt;}
.x0_c00302{left:0.000000pt;}
.x1_c00302{left:12.880000pt;}
.x2_c00302{left:100.480133pt;}
.x7_c00302{left:124.477867pt;}
.xa_c00302{left:131.583600pt;}
.x9_c00302{left:133.359733pt;}
.xd_c00302{left:136.031600pt;}
.xc_c00302{left:138.506533pt;}
.x11_c00302{left:141.751600pt;}
.x3_c00302{left:147.151733pt;}
.x8_c00302{left:148.480133pt;}
.x10_c00302{left:157.376000pt;}
.xb_c00302{left:161.823867pt;}
.x4_c00302{left:219.118533pt;}
.x5_c00302{left:224.894133pt;}
.x6_c00302{left:230.669867pt;}
.x15_c00302{left:248.926400pt;}
.xe_c00302{left:494.330800pt;}
.x13_c00302{left:526.011067pt;}
.x14_c00302{left:537.562800pt;}
.xf_c00302{left:563.705733pt;}
.x12_c00302{left:623.446267pt;}
.x16_c00302{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee6d147df17e44721000f44e.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.134000;font-style:normal;font-weight:normal;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_208752362bc2a66e73783813.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;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:ff3_c00303;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00303;src:url('chunks/assets/font_d3dce09b64c1198c2bc3016a.woff2')format("woff");}.ff6_c00303{font-family:ff6_c00303;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00303;src:url('chunks/assets/font_8dd53a46be9c3f0367c52d0d.woff2')format("woff");}.ff7_c00303{font-family:ff7_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:ff8_c00303;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff8_c00303{font-family:ff8_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:ff9_c00303;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff9_c00303{font-family:ff9_c00303;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00303;src:url('chunks/assets/font_40e4047e555c5d0a3328f81f.woff2')format("woff");}.ffa_c00303{font-family:ffa_c00303;line-height:0.787000;font-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_c00303{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00303{vertical-align:-24.480000px;}
.v0_c00303{vertical-align:0.000000px;}
.v1_c00303{vertical-align:30.240000px;}
.ls8_c00303{letter-spacing:-0.179568px;}
.ls7_c00303{letter-spacing:0.000000px;}
.ls9_c00303{letter-spacing:0.144000px;}
.lsb_c00303{letter-spacing:0.265680px;}
.lsf_c00303{letter-spacing:0.318816px;}
.lsc_c00303{letter-spacing:0.425088px;}
.lsd_c00303{letter-spacing:0.584496px;}
.ls4_c00303{letter-spacing:5.325408px;}
.ls5_c00303{letter-spacing:5.372640px;}
.lse_c00303{letter-spacing:5.514336px;}
.ls1_c00303{letter-spacing:5.760000px;}
.ls0_c00303{letter-spacing:5.976000px;}
.ls6_c00303{letter-spacing:6.159920px;}
.lsa_c00303{letter-spacing:6.742368px;}
.ls2_c00303{letter-spacing:14.976000px;}
.ls3_c00303{letter-spacing:54.864000px;}
.sc__c00303{text-shadow:none;}
.sc1_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00303{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc1_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00303{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00303{word-spacing:-20.016000px;}
.ws1_c00303{word-spacing:-11.429712px;}
.ws2_c00303{word-spacing:-10.152000px;}
.ws3_c00303{word-spacing:0.000000px;}
._b_c00303{margin-left:-6.369120px;}
._c_c00303{margin-left:-5.297760px;}
._e_c00303{margin-left:-1.015200px;}
._4_c00303{width:1.224000px;}
._0_c00303{width:3.456000px;}
._3_c00303{width:6.048000px;}
._d_c00303{width:7.201440px;}
._6_c00303{width:9.144000px;}
._a_c00303{width:10.224000px;}
._9_c00303{width:11.664000px;}
._1_c00303{width:13.104000px;}
._5_c00303{width:14.904000px;}
._8_c00303{width:16.488000px;}
._7_c00303{width:28.080000px;}
._2_c00303{width:39.168000px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs3_c00303{font-size:36.000000px;}
.fs2_c00303{font-size:41.760000px;}
.fs4_c00303{font-size:59.040000px;}
.fs5_c00303{font-size:60.000000px;}
.fs0_c00303{font-size:72.000000px;}
.fs1_c00303{font-size:74.215901px;}
.y0_c00303{bottom:0.000000px;}
.y29_c00303{bottom:3.120150px;}
.y28_c00303{bottom:34.744500px;}
.y1_c00303{bottom:54.000000px;}
.y27_c00303{bottom:55.478880px;}
.y26_c00303{bottom:72.762840px;}
.y25_c00303{bottom:99.045000px;}
.y24_c00303{bottom:125.685000px;}
.y23_c00303{bottom:163.485000px;}
.y22_c00303{bottom:184.365000px;}
.y21_c00303{bottom:208.845000px;}
.y20_c00303{bottom:229.365000px;}
.y1f_c00303{bottom:250.245000px;}
.y1e_c00303{bottom:286.245000px;}
.y1d_c00303{bottom:307.485000px;}
.y1c_c00303{bottom:328.365000px;}
.y1b_c00303{bottom:364.365000px;}
.y1a_c00303{bottom:385.245000px;}
.y19_c00303{bottom:421.245000px;}
.y18_c00303{bottom:457.245000px;}
.y17_c00303{bottom:481.725000px;}
.y16_c00303{bottom:502.605000px;}
.y15_c00303{bottom:538.605000px;}
.y14_c00303{bottom:559.485000px;}
.y13_c00303{bottom:595.485000px;}
.y12_c00303{bottom:631.485000px;}
.y11_c00303{bottom:652.365000px;}
.y10_c00303{bottom:688.365000px;}
.yf_c00303{bottom:724.365000px;}
.ye_c00303{bottom:760.365000px;}
.yd_c00303{bottom:781.605000px;}
.yc_c00303{bottom:817.605000px;}
.yb_c00303{bottom:853.605000px;}
.ya_c00303{bottom:890.325000px;}
.y9_c00303{bottom:910.845000px;}
.y8_c00303{bottom:935.325000px;}
.y7_c00303{bottom:955.845000px;}
.y6_c00303{bottom:991.845000px;}
.y5_c00303{bottom:1013.085000px;}
.y4_c00303{bottom:1049.085000px;}
.y3_c00303{bottom:1085.085000px;}
.y2_c00303{bottom:1138.365000px;}
.h9_c00303{height:19.255500px;}
.h7_c00303{height:32.616000px;}
.ha_c00303{height:46.320000px;}
.h5_c00303{height:52.031250px;}
.h8_c00303{height:53.490240px;}
.h4_c00303{height:57.294676px;}
.h3_c00303{height:65.232000px;}
.h6_c00303{height:68.074560px;}
.h2_c00303{height:1201.365000px;}
.h0_c00303{height:1262.835000px;}
.h1_c00303{height:1263.000000px;}
.w3_c00303{width:25.020000px;}
.w2_c00303{width:863.955000px;}
.w0_c00303{width:892.935000px;}
.w1_c00303{width:893.250000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:14.490000px;}
.x2_c00303{left:113.040150px;}
.x7_c00303{left:140.037600px;}
.xa_c00303{left:148.031550px;}
.x9_c00303{left:150.029700px;}
.xb_c00303{left:156.313050px;}
.x3_c00303{left:165.545700px;}
.x8_c00303{left:167.040150px;}
.x4_c00303{left:246.508350px;}
.x5_c00303{left:253.005900px;}
.x6_c00303{left:259.503600px;}
.xe_c00303{left:299.120700px;}
.xf_c00303{left:323.114100px;}
.xc_c00303{left:428.127300px;}
.xd_c00303{left:497.138700px;}
.x10_c00303{left:533.676300px;}
.x11_c00303{left:560.401650px;}
.x12_c00303{left:759.915000px;}
@media print{
.v2_c00303{vertical-align:-21.760000pt;}
.v0_c00303{vertical-align:0.000000pt;}
.v1_c00303{vertical-align:26.880000pt;}
.ls8_c00303{letter-spacing:-0.159616pt;}
.ls7_c00303{letter-spacing:0.000000pt;}
.ls9_c00303{letter-spacing:0.128000pt;}
.lsb_c00303{letter-spacing:0.236160pt;}
.lsf_c00303{letter-spacing:0.283392pt;}
.lsc_c00303{letter-spacing:0.377856pt;}
.lsd_c00303{letter-spacing:0.519552pt;}
.ls4_c00303{letter-spacing:4.733696pt;}
.ls5_c00303{letter-spacing:4.775680pt;}
.lse_c00303{letter-spacing:4.901632pt;}
.ls1_c00303{letter-spacing:5.120000pt;}
.ls0_c00303{letter-spacing:5.312000pt;}
.ls6_c00303{letter-spacing:5.475484pt;}
.lsa_c00303{letter-spacing:5.993216pt;}
.ls2_c00303{letter-spacing:13.312000pt;}
.ls3_c00303{letter-spacing:48.768000pt;}
.ws0_c00303{word-spacing:-17.792000pt;}
.ws1_c00303{word-spacing:-10.159744pt;}
.ws2_c00303{word-spacing:-9.024000pt;}
.ws3_c00303{word-spacing:0.000000pt;}
._b_c00303{margin-left:-5.661440pt;}
._c_c00303{margin-left:-4.709120pt;}
._e_c00303{margin-left:-0.902400pt;}
._4_c00303{width:1.088000pt;}
._0_c00303{width:3.072000pt;}
._3_c00303{width:5.376000pt;}
._d_c00303{width:6.401280pt;}
._6_c00303{width:8.128000pt;}
._a_c00303{width:9.088000pt;}
._9_c00303{width:10.368000pt;}
._1_c00303{width:11.648000pt;}
._5_c00303{width:13.248000pt;}
._8_c00303{width:14.656000pt;}
._7_c00303{width:24.960000pt;}
._2_c00303{width:34.816000pt;}
.fs3_c00303{font-size:32.000000pt;}
.fs2_c00303{font-size:37.120000pt;}
.fs4_c00303{font-size:52.480000pt;}
.fs5_c00303{font-size:53.333333pt;}
.fs0_c00303{font-size:64.000000pt;}
.fs1_c00303{font-size:65.969690pt;}
.y0_c00303{bottom:0.000000pt;}
.y29_c00303{bottom:2.773467pt;}
.y28_c00303{bottom:30.884000pt;}
.y1_c00303{bottom:48.000000pt;}
.y27_c00303{bottom:49.314560pt;}
.y26_c00303{bottom:64.678080pt;}
.y25_c00303{bottom:88.040000pt;}
.y24_c00303{bottom:111.720000pt;}
.y23_c00303{bottom:145.320000pt;}
.y22_c00303{bottom:163.880000pt;}
.y21_c00303{bottom:185.640000pt;}
.y20_c00303{bottom:203.880000pt;}
.y1f_c00303{bottom:222.440000pt;}
.y1e_c00303{bottom:254.440000pt;}
.y1d_c00303{bottom:273.320000pt;}
.y1c_c00303{bottom:291.880000pt;}
.y1b_c00303{bottom:323.880000pt;}
.y1a_c00303{bottom:342.440000pt;}
.y19_c00303{bottom:374.440000pt;}
.y18_c00303{bottom:406.440000pt;}
.y17_c00303{bottom:428.200000pt;}
.y16_c00303{bottom:446.760000pt;}
.y15_c00303{bottom:478.760000pt;}
.y14_c00303{bottom:497.320000pt;}
.y13_c00303{bottom:529.320000pt;}
.y12_c00303{bottom:561.320000pt;}
.y11_c00303{bottom:579.880000pt;}
.y10_c00303{bottom:611.880000pt;}
.yf_c00303{bottom:643.880000pt;}
.ye_c00303{bottom:675.880000pt;}
.yd_c00303{bottom:694.760000pt;}
.yc_c00303{bottom:726.760000pt;}
.yb_c00303{bottom:758.760000pt;}
.ya_c00303{bottom:791.400000pt;}
.y9_c00303{bottom:809.640000pt;}
.y8_c00303{bottom:831.400000pt;}
.y7_c00303{bottom:849.640000pt;}
.y6_c00303{bottom:881.640000pt;}
.y5_c00303{bottom:900.520000pt;}
.y4_c00303{bottom:932.520000pt;}
.y3_c00303{bottom:964.520000pt;}
.y2_c00303{bottom:1011.880000pt;}
.h9_c00303{height:17.116000pt;}
.h7_c00303{height:28.992000pt;}
.ha_c00303{height:41.173333pt;}
.h5_c00303{height:46.250000pt;}
.h8_c00303{height:47.546880pt;}
.h4_c00303{height:50.928601pt;}
.h3_c00303{height:57.984000pt;}
.h6_c00303{height:60.510720pt;}
.h2_c00303{height:1067.880000pt;}
.h0_c00303{height:1122.520000pt;}
.h1_c00303{height:1122.666667pt;}
.w3_c00303{width:22.240000pt;}
.w2_c00303{width:767.960000pt;}
.w0_c00303{width:793.720000pt;}
.w1_c00303{width:794.000000pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:12.880000pt;}
.x2_c00303{left:100.480133pt;}
.x7_c00303{left:124.477867pt;}
.xa_c00303{left:131.583600pt;}
.x9_c00303{left:133.359733pt;}
.xb_c00303{left:138.944933pt;}
.x3_c00303{left:147.151733pt;}
.x8_c00303{left:148.480133pt;}
.x4_c00303{left:219.118533pt;}
.x5_c00303{left:224.894133pt;}
.x6_c00303{left:230.669867pt;}
.xe_c00303{left:265.885067pt;}
.xf_c00303{left:287.212533pt;}
.xc_c00303{left:380.557600pt;}
.xd_c00303{left:441.901067pt;}
.x10_c00303{left:474.378933pt;}
.x11_c00303{left:498.134800pt;}
.x12_c00303{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ffcdab2b39da2741daa531dd.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.134000;font-style:normal;font-weight:normal;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_43acdb8b19cc2d635eea78b7.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;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:ff3_c00304;src:url('chunks/assets/font_de1c56bf0ffac0149e89af52.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:0.965000;font-style:normal;font-weight:normal;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_3b4b810879230605238e00f9.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;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff5_c00304{font-family:ff5_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:ff6_c00304;src:url('chunks/assets/font_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_90cfccb7a633452c841e8a68.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;line-height:0.787000;font-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_c00304{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.v1_c00304{vertical-align:24.480000px;}
.ls1e_c00304{letter-spacing:0.000000px;}
.ls21_c00304{letter-spacing:0.144000px;}
.lsa_c00304{letter-spacing:0.234840px;}
.lsf_c00304{letter-spacing:0.235440px;}
.ls1a_c00304{letter-spacing:0.265680px;}
.ls15_c00304{letter-spacing:0.318480px;}
.ls24_c00304{letter-spacing:0.318816px;}
.lsb_c00304{letter-spacing:0.319080px;}
.ls1b_c00304{letter-spacing:0.349080px;}
.ls18_c00304{letter-spacing:0.349680px;}
.ls9_c00304{letter-spacing:0.354240px;}
.ls4_c00304{letter-spacing:0.395568px;}
.ls25_c00304{letter-spacing:0.478224px;}
.lse_c00304{letter-spacing:0.492942px;}
.lsd_c00304{letter-spacing:0.507744px;}
.ls7_c00304{letter-spacing:0.513648px;}
.ls5_c00304{letter-spacing:0.531360px;}
.ls27_c00304{letter-spacing:0.690768px;}
.ls6_c00304{letter-spacing:0.712027px;}
.ls2f_c00304{letter-spacing:0.743904px;}
.ls23_c00304{letter-spacing:0.962352px;}
.ls1c_c00304{letter-spacing:3.682680px;}
.ls35_c00304{letter-spacing:3.684096px;}
.ls32_c00304{letter-spacing:3.890736px;}
.ls26_c00304{letter-spacing:4.304016px;}
.ls8_c00304{letter-spacing:5.246280px;}
.ls2b_c00304{letter-spacing:5.248656px;}
.ls2_c00304{letter-spacing:5.299080px;}
.ls29_c00304{letter-spacing:5.301792px;}
.lsc_c00304{letter-spacing:5.352840px;}
.ls3_c00304{letter-spacing:5.353440px;}
.ls20_c00304{letter-spacing:5.354928px;}
.ls2a_c00304{letter-spacing:5.402160px;}
.ls1f_c00304{letter-spacing:5.407200px;}
.ls2e_c00304{letter-spacing:5.461200px;}
.ls22_c00304{letter-spacing:5.514336px;}
.ls14_c00304{letter-spacing:5.778120px;}
.ls12_c00304{letter-spacing:5.778720px;}
.ls28_c00304{letter-spacing:5.780016px;}
.ls0_c00304{letter-spacing:5.976000px;}
.ls1d_c00304{letter-spacing:6.159920px;}
.ls2c_c00304{letter-spacing:8.478144px;}
.ls30_c00304{letter-spacing:12.504672px;}
.ls31_c00304{letter-spacing:14.878080px;}
.ls16_c00304{letter-spacing:18.305640px;}
.ls34_c00304{letter-spacing:18.999072px;}
.ls33_c00304{letter-spacing:23.999760px;}
.ls19_c00304{letter-spacing:28.702680px;}
.ls11_c00304{letter-spacing:33.755040px;}
.ls10_c00304{letter-spacing:33.787080px;}
.ls13_c00304{letter-spacing:38.249640px;}
.ls2d_c00304{letter-spacing:68.073120px;}
.ls17_c00304{letter-spacing:126.392832px;}
.ls1_c00304{letter-spacing:131.299080px;}
.sc__c00304{text-shadow:none;}
.sc1_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00304{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc1_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00304{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00304{word-spacing:-22.193136px;}
.ws3_c00304{word-spacing:-21.927456px;}
.wsc_c00304{word-spacing:-21.874320px;}
.ws0_c00304{word-spacing:-21.768048px;}
.wsb_c00304{word-spacing:-21.714912px;}
.ws2_c00304{word-spacing:-17.630284px;}
.ws8_c00304{word-spacing:-17.411199px;}
.ws4_c00304{word-spacing:-17.375472px;}
.ws9_c00304{word-spacing:-16.944480px;}
.ws7_c00304{word-spacing:-16.920864px;}
.ws5_c00304{word-spacing:-16.808688px;}
.ws6_c00304{word-spacing:-16.731936px;}
.wsd_c00304{word-spacing:-16.413120px;}
.ws1_c00304{word-spacing:-10.152000px;}
.wse_c00304{word-spacing:0.000000px;}
._15_c00304{margin-left:-126.756600px;}
._12_c00304{margin-left:-68.469480px;}
._11_c00304{margin-left:-67.389960px;}
._1d_c00304{margin-left:-23.497920px;}
._1e_c00304{margin-left:-18.479520px;}
._1a_c00304{margin-left:-14.346720px;}
._19_c00304{margin-left:-11.808000px;}
._10_c00304{margin-left:-8.915040px;}
._f_c00304{margin-left:-7.793280px;}
._c_c00304{margin-left:-4.723200px;}
._b_c00304{margin-left:-3.601440px;}
._1c_c00304{margin-left:-2.479680px;}
._6_c00304{margin-left:-1.217141px;}
._9_c00304{width:1.384200px;}
._a_c00304{width:2.827498px;}
._0_c00304{width:4.536000px;}
._3_c00304{width:6.264000px;}
._1_c00304{width:7.416000px;}
._e_c00304{width:8.489578px;}
._17_c00304{width:11.023498px;}
._18_c00304{width:12.208982px;}
._1b_c00304{width:14.644920px;}
._13_c00304{width:17.256240px;}
._5_c00304{width:18.720000px;}
._7_c00304{width:19.896480px;}
._8_c00304{width:20.967600px;}
._4_c00304{width:22.824000px;}
._2_c00304{width:32.904000px;}
._d_c00304{width:37.855166px;}
._16_c00304{width:75.035472px;}
._14_c00304{width:126.124200px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs3_c00304{font-size:36.000000px;}
.fs2_c00304{font-size:59.040000px;}
.fs5_c00304{font-size:60.000000px;}
.fs4_c00304{font-size:60.857039px;}
.fs0_c00304{font-size:72.000000px;}
.fs1_c00304{font-size:74.215901px;}
.y0_c00304{bottom:0.000000px;}
.y3f_c00304{bottom:3.120150px;}
.y3b_c00304{bottom:4.320000px;}
.y3d_c00304{bottom:9.360000px;}
.y3a_c00304{bottom:24.120000px;}
.y3c_c00304{bottom:26.640000px;}
.y3e_c00304{bottom:34.744500px;}
.y39_c00304{bottom:44.280000px;}
.y1_c00304{bottom:54.000000px;}
.y38_c00304{bottom:77.400000px;}
.y37_c00304{bottom:95.040000px;}
.y36_c00304{bottom:112.320000px;}
.y35_c00304{bottom:142.560000px;}
.y34_c00304{bottom:160.200000px;}
.yd_c00304{bottom:163.125000px;}
.y33_c00304{bottom:177.480000px;}
.y32_c00304{bottom:195.120000px;}
.y30_c00304{bottom:245.520000px;}
.y31_c00304{bottom:245.880000px;}
.y2f_c00304{bottom:263.160000px;}
.y2e_c00304{bottom:263.520000px;}
.y2d_c00304{bottom:281.160000px;}
.y2c_c00304{bottom:298.440000px;}
.y2a_c00304{bottom:318.960000px;}
.y29_c00304{bottom:339.120000px;}
.y28_c00304{bottom:358.920000px;}
.y27_c00304{bottom:376.560000px;}
.y26_c00304{bottom:396.360000px;}
.y2b_c00304{bottom:401.400000px;}
.y25_c00304{bottom:416.520000px;}
.y23_c00304{bottom:419.040000px;}
.y24_c00304{bottom:434.160000px;}
.y22_c00304{bottom:436.680000px;}
.y21_c00304{bottom:453.960000px;}
.y1f_c00304{bottom:472.320000px;}
.y1e_c00304{bottom:492.480000px;}
.y20_c00304{bottom:497.160000px;}
.y1d_c00304{bottom:512.280000px;}
.y1b_c00304{bottom:514.800000px;}
.y1c_c00304{bottom:529.920000px;}
.y1a_c00304{bottom:532.440000px;}
.y19_c00304{bottom:549.720000px;}
.y18_c00304{bottom:579.960000px;}
.y17_c00304{bottom:595.080000px;}
.y15_c00304{bottom:597.600000px;}
.y16_c00304{bottom:612.360000px;}
.y14_c00304{bottom:614.880000px;}
.y13_c00304{bottom:632.520000px;}
.y12_c00304{bottom:650.880000px;}
.y11_c00304{bottom:670.680000px;}
.y10_c00304{bottom:688.320000px;}
.yf_c00304{bottom:705.600000px;}
.ye_c00304{bottom:723.240000px;}
.yc_c00304{bottom:865.845000px;}
.yb_c00304{bottom:901.845000px;}
.ya_c00304{bottom:923.085000px;}
.y9_c00304{bottom:943.965000px;}
.y8_c00304{bottom:964.845000px;}
.y7_c00304{bottom:986.085000px;}
.y6_c00304{bottom:1006.965000px;}
.y5_c00304{bottom:1027.845000px;}
.y4_c00304{bottom:1063.845000px;}
.y3_c00304{bottom:1085.085000px;}
.y2_c00304{bottom:1138.365000px;}
.h9_c00304{height:19.255500px;}
.ha_c00304{height:46.320000px;}
.h8_c00304{height:46.981634px;}
.h6_c00304{height:53.490240px;}
.h7_c00304{height:57.096000px;}
.h4_c00304{height:57.294676px;}
.h3_c00304{height:65.232000px;}
.h5_c00304{height:738.000000px;}
.h2_c00304{height:1201.365000px;}
.h0_c00304{height:1262.835000px;}
.h1_c00304{height:1263.000000px;}
.w7_c00304{width:25.020000px;}
.w3_c00304{width:61.200000px;}
.w4_c00304{width:105.840000px;}
.w5_c00304{width:170.280000px;}
.w6_c00304{width:316.800000px;}
.w2_c00304{width:863.955000px;}
.w0_c00304{width:892.935000px;}
.w1_c00304{width:893.250000px;}
.x0_c00304{left:0.000000px;}
.x1b_c00304{left:7.920150px;}
.x1_c00304{left:14.490000px;}
.x23_c00304{left:37.919550px;}
.x27_c00304{left:58.261500px;}
.x1c_c00304{left:68.368800px;}
.x1d_c00304{left:77.562900px;}
.x28_c00304{left:89.925900px;}
.x2_c00304{left:113.040150px;}
.x1a_c00304{left:119.610000px;}
.x21_c00304{left:149.114700px;}
.x3_c00304{left:165.545700px;}
.x20_c00304{left:168.810600px;}
.x2c_c00304{left:171.310800px;}
.x18_c00304{left:181.025100px;}
.x29_c00304{left:192.889650px;}
.x2b_c00304{left:198.810300px;}
.x2d_c00304{left:201.310350px;}
.x19_c00304{left:205.018500px;}
.xd_c00304{left:209.775900px;}
.x24_c00304{left:212.020650px;}
.x7_c00304{left:223.743600px;}
.x8_c00304{left:232.743600px;}
.xe_c00304{left:239.480700px;}
.x2a_c00304{left:243.954900px;}
.x9_c00304{left:245.093550px;}
.x4_c00304{left:246.508350px;}
.x5_c00304{left:253.005900px;}
.x6_c00304{left:259.503600px;}
.xa_c00304{left:270.439500px;}
.x22_c00304{left:274.676400px;}
.x25_c00304{left:279.045300px;}
.x15_c00304{left:281.795250px;}
.x1e_c00304{left:288.090000px;}
.x16_c00304{left:294.790950px;}
.x11_c00304{left:302.074500px;}
.x26_c00304{left:309.044850px;}
.x12_c00304{left:313.072200px;}
.xf_c00304{left:450.333600px;}
.x1f_c00304{left:459.090000px;}
.x10_c00304{left:463.311300px;}
.xb_c00304{left:516.617850px;}
.xc_c00304{left:535.951500px;}
.x13_c00304{left:653.902200px;}
.x14_c00304{left:662.902200px;}
.x17_c00304{left:709.386450px;}
.x2e_c00304{left:759.915000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.v1_c00304{vertical-align:21.760000pt;}
.ls1e_c00304{letter-spacing:0.000000pt;}
.ls21_c00304{letter-spacing:0.128000pt;}
.lsa_c00304{letter-spacing:0.208747pt;}
.lsf_c00304{letter-spacing:0.209280pt;}
.ls1a_c00304{letter-spacing:0.236160pt;}
.ls15_c00304{letter-spacing:0.283093pt;}
.ls24_c00304{letter-spacing:0.283392pt;}
.lsb_c00304{letter-spacing:0.283627pt;}
.ls1b_c00304{letter-spacing:0.310293pt;}
.ls18_c00304{letter-spacing:0.310827pt;}
.ls9_c00304{letter-spacing:0.314880pt;}
.ls4_c00304{letter-spacing:0.351616pt;}
.ls25_c00304{letter-spacing:0.425088pt;}
.lse_c00304{letter-spacing:0.438171pt;}
.lsd_c00304{letter-spacing:0.451328pt;}
.ls7_c00304{letter-spacing:0.456576pt;}
.ls5_c00304{letter-spacing:0.472320pt;}
.ls27_c00304{letter-spacing:0.614016pt;}
.ls6_c00304{letter-spacing:0.632913pt;}
.ls2f_c00304{letter-spacing:0.661248pt;}
.ls23_c00304{letter-spacing:0.855424pt;}
.ls1c_c00304{letter-spacing:3.273493pt;}
.ls35_c00304{letter-spacing:3.274752pt;}
.ls32_c00304{letter-spacing:3.458432pt;}
.ls26_c00304{letter-spacing:3.825792pt;}
.ls8_c00304{letter-spacing:4.663360pt;}
.ls2b_c00304{letter-spacing:4.665472pt;}
.ls2_c00304{letter-spacing:4.710293pt;}
.ls29_c00304{letter-spacing:4.712704pt;}
.lsc_c00304{letter-spacing:4.758080pt;}
.ls3_c00304{letter-spacing:4.758613pt;}
.ls20_c00304{letter-spacing:4.759936pt;}
.ls2a_c00304{letter-spacing:4.801920pt;}
.ls1f_c00304{letter-spacing:4.806400pt;}
.ls2e_c00304{letter-spacing:4.854400pt;}
.ls22_c00304{letter-spacing:4.901632pt;}
.ls14_c00304{letter-spacing:5.136107pt;}
.ls12_c00304{letter-spacing:5.136640pt;}
.ls28_c00304{letter-spacing:5.137792pt;}
.ls0_c00304{letter-spacing:5.312000pt;}
.ls1d_c00304{letter-spacing:5.475484pt;}
.ls2c_c00304{letter-spacing:7.536128pt;}
.ls30_c00304{letter-spacing:11.115264pt;}
.ls31_c00304{letter-spacing:13.224960pt;}
.ls16_c00304{letter-spacing:16.271680pt;}
.ls34_c00304{letter-spacing:16.888064pt;}
.ls33_c00304{letter-spacing:21.333120pt;}
.ls19_c00304{letter-spacing:25.513493pt;}
.ls11_c00304{letter-spacing:30.004480pt;}
.ls10_c00304{letter-spacing:30.032960pt;}
.ls13_c00304{letter-spacing:33.999680pt;}
.ls2d_c00304{letter-spacing:60.509440pt;}
.ls17_c00304{letter-spacing:112.349184pt;}
.ls1_c00304{letter-spacing:116.710293pt;}
.wsa_c00304{word-spacing:-19.727232pt;}
.ws3_c00304{word-spacing:-19.491072pt;}
.wsc_c00304{word-spacing:-19.443840pt;}
.ws0_c00304{word-spacing:-19.349376pt;}
.wsb_c00304{word-spacing:-19.302144pt;}
.ws2_c00304{word-spacing:-15.671364pt;}
.ws8_c00304{word-spacing:-15.476621pt;}
.ws4_c00304{word-spacing:-15.444864pt;}
.ws9_c00304{word-spacing:-15.061760pt;}
.ws7_c00304{word-spacing:-15.040768pt;}
.ws5_c00304{word-spacing:-14.941056pt;}
.ws6_c00304{word-spacing:-14.872832pt;}
.wsd_c00304{word-spacing:-14.589440pt;}
.ws1_c00304{word-spacing:-9.024000pt;}
.wse_c00304{word-spacing:0.000000pt;}
._15_c00304{margin-left:-112.672533pt;}
._12_c00304{margin-left:-60.861760pt;}
._11_c00304{margin-left:-59.902187pt;}
._1d_c00304{margin-left:-20.887040pt;}
._1e_c00304{margin-left:-16.426240pt;}
._1a_c00304{margin-left:-12.752640pt;}
._19_c00304{margin-left:-10.496000pt;}
._10_c00304{margin-left:-7.924480pt;}
._f_c00304{margin-left:-6.927360pt;}
._c_c00304{margin-left:-4.198400pt;}
._b_c00304{margin-left:-3.201280pt;}
._1c_c00304{margin-left:-2.204160pt;}
._6_c00304{margin-left:-1.081903pt;}
._9_c00304{width:1.230400pt;}
._a_c00304{width:2.513331pt;}
._0_c00304{width:4.032000pt;}
._3_c00304{width:5.568000pt;}
._1_c00304{width:6.592000pt;}
._e_c00304{width:7.546291pt;}
._17_c00304{width:9.798664pt;}
._18_c00304{width:10.852429pt;}
._1b_c00304{width:13.017707pt;}
._13_c00304{width:15.338880pt;}
._5_c00304{width:16.640000pt;}
._7_c00304{width:17.685760pt;}
._8_c00304{width:18.637867pt;}
._4_c00304{width:20.288000pt;}
._2_c00304{width:29.248000pt;}
._d_c00304{width:33.649037pt;}
._16_c00304{width:66.698197pt;}
._14_c00304{width:112.110400pt;}
.fs3_c00304{font-size:32.000000pt;}
.fs2_c00304{font-size:52.480000pt;}
.fs5_c00304{font-size:53.333333pt;}
.fs4_c00304{font-size:54.095146pt;}
.fs0_c00304{font-size:64.000000pt;}
.fs1_c00304{font-size:65.969690pt;}
.y0_c00304{bottom:0.000000pt;}
.y3f_c00304{bottom:2.773467pt;}
.y3b_c00304{bottom:3.840000pt;}
.y3d_c00304{bottom:8.320000pt;}
.y3a_c00304{bottom:21.440000pt;}
.y3c_c00304{bottom:23.680000pt;}
.y3e_c00304{bottom:30.884000pt;}
.y39_c00304{bottom:39.360000pt;}
.y1_c00304{bottom:48.000000pt;}
.y38_c00304{bottom:68.800000pt;}
.y37_c00304{bottom:84.480000pt;}
.y36_c00304{bottom:99.840000pt;}
.y35_c00304{bottom:126.720000pt;}
.y34_c00304{bottom:142.400000pt;}
.yd_c00304{bottom:145.000000pt;}
.y33_c00304{bottom:157.760000pt;}
.y32_c00304{bottom:173.440000pt;}
.y30_c00304{bottom:218.240000pt;}
.y31_c00304{bottom:218.560000pt;}
.y2f_c00304{bottom:233.920000pt;}
.y2e_c00304{bottom:234.240000pt;}
.y2d_c00304{bottom:249.920000pt;}
.y2c_c00304{bottom:265.280000pt;}
.y2a_c00304{bottom:283.520000pt;}
.y29_c00304{bottom:301.440000pt;}
.y28_c00304{bottom:319.040000pt;}
.y27_c00304{bottom:334.720000pt;}
.y26_c00304{bottom:352.320000pt;}
.y2b_c00304{bottom:356.800000pt;}
.y25_c00304{bottom:370.240000pt;}
.y23_c00304{bottom:372.480000pt;}
.y24_c00304{bottom:385.920000pt;}
.y22_c00304{bottom:388.160000pt;}
.y21_c00304{bottom:403.520000pt;}
.y1f_c00304{bottom:419.840000pt;}
.y1e_c00304{bottom:437.760000pt;}
.y20_c00304{bottom:441.920000pt;}
.y1d_c00304{bottom:455.360000pt;}
.y1b_c00304{bottom:457.600000pt;}
.y1c_c00304{bottom:471.040000pt;}
.y1a_c00304{bottom:473.280000pt;}
.y19_c00304{bottom:488.640000pt;}
.y18_c00304{bottom:515.520000pt;}
.y17_c00304{bottom:528.960000pt;}
.y15_c00304{bottom:531.200000pt;}
.y16_c00304{bottom:544.320000pt;}
.y14_c00304{bottom:546.560000pt;}
.y13_c00304{bottom:562.240000pt;}
.y12_c00304{bottom:578.560000pt;}
.y11_c00304{bottom:596.160000pt;}
.y10_c00304{bottom:611.840000pt;}
.yf_c00304{bottom:627.200000pt;}
.ye_c00304{bottom:642.880000pt;}
.yc_c00304{bottom:769.640000pt;}
.yb_c00304{bottom:801.640000pt;}
.ya_c00304{bottom:820.520000pt;}
.y9_c00304{bottom:839.080000pt;}
.y8_c00304{bottom:857.640000pt;}
.y7_c00304{bottom:876.520000pt;}
.y6_c00304{bottom:895.080000pt;}
.y5_c00304{bottom:913.640000pt;}
.y4_c00304{bottom:945.640000pt;}
.y3_c00304{bottom:964.520000pt;}
.y2_c00304{bottom:1011.880000pt;}
.h9_c00304{height:17.116000pt;}
.ha_c00304{height:41.173333pt;}
.h8_c00304{height:41.761453pt;}
.h6_c00304{height:47.546880pt;}
.h7_c00304{height:50.752000pt;}
.h4_c00304{height:50.928601pt;}
.h3_c00304{height:57.984000pt;}
.h5_c00304{height:656.000000pt;}
.h2_c00304{height:1067.880000pt;}
.h0_c00304{height:1122.520000pt;}
.h1_c00304{height:1122.666667pt;}
.w7_c00304{width:22.240000pt;}
.w3_c00304{width:54.400000pt;}
.w4_c00304{width:94.080000pt;}
.w5_c00304{width:151.360000pt;}
.w6_c00304{width:281.600000pt;}
.w2_c00304{width:767.960000pt;}
.w0_c00304{width:793.720000pt;}
.w1_c00304{width:794.000000pt;}
.x0_c00304{left:0.000000pt;}
.x1b_c00304{left:7.040133pt;}
.x1_c00304{left:12.880000pt;}
.x23_c00304{left:33.706267pt;}
.x27_c00304{left:51.788000pt;}
.x1c_c00304{left:60.772267pt;}
.x1d_c00304{left:68.944800pt;}
.x28_c00304{left:79.934133pt;}
.x2_c00304{left:100.480133pt;}
.x1a_c00304{left:106.320000pt;}
.x21_c00304{left:132.546400pt;}
.x3_c00304{left:147.151733pt;}
.x20_c00304{left:150.053867pt;}
.x2c_c00304{left:152.276267pt;}
.x18_c00304{left:160.911200pt;}
.x29_c00304{left:171.457467pt;}
.x2b_c00304{left:176.720267pt;}
.x2d_c00304{left:178.942533pt;}
.x19_c00304{left:182.238667pt;}
.xd_c00304{left:186.467467pt;}
.x24_c00304{left:188.462800pt;}
.x7_c00304{left:198.883200pt;}
.x8_c00304{left:206.883200pt;}
.xe_c00304{left:212.871733pt;}
.x2a_c00304{left:216.848800pt;}
.x9_c00304{left:217.860933pt;}
.x4_c00304{left:219.118533pt;}
.x5_c00304{left:224.894133pt;}
.x6_c00304{left:230.669867pt;}
.xa_c00304{left:240.390667pt;}
.x22_c00304{left:244.156800pt;}
.x25_c00304{left:248.040267pt;}
.x15_c00304{left:250.484667pt;}
.x1e_c00304{left:256.080000pt;}
.x16_c00304{left:262.036400pt;}
.x11_c00304{left:268.510667pt;}
.x26_c00304{left:274.706533pt;}
.x12_c00304{left:278.286400pt;}
.xf_c00304{left:400.296533pt;}
.x1f_c00304{left:408.080000pt;}
.x10_c00304{left:411.832267pt;}
.xb_c00304{left:459.215867pt;}
.xc_c00304{left:476.401333pt;}
.x13_c00304{left:581.246400pt;}
.x14_c00304{left:589.246400pt;}
.x17_c00304{left:630.565733pt;}
.x2e_c00304{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb434c2e552bea70480fec00.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.134000;font-style:normal;font-weight:normal;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_dd21ee585716580423e7cf6d.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;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:ff3_c00305;src:url('chunks/assets/font_3ace7e60a72826d9bda34a03.woff2')format("woff");}.ff3_c00305{font-family:ff3_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:ff4_c00305;src:url('chunks/assets/font_90785bea3619659578fd402d.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;}
@font-face{font-family:ff5_c00305;src:url('chunks/assets/font_7051cca906be8387c6231d6e.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_e0b7ed4eda6705dc2a762d7c.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00305;src:url('chunks/assets/font_f722abaf3f4f0a2c733ae4e1.woff2')format("woff");}.ff7_c00305{font-family:ff7_c00305;line-height:0.787000;font-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_c00305{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.v1_c00305{vertical-align:30.240000px;}
.ls25_c00305{letter-spacing:-0.179568px;}
.ls1d_c00305{letter-spacing:0.000000px;}
.ls12_c00305{letter-spacing:0.234840px;}
.ls15_c00305{letter-spacing:0.235440px;}
.ls1f_c00305{letter-spacing:0.265680px;}
.ls29_c00305{letter-spacing:0.294624px;}
.ls1_c00305{letter-spacing:0.295200px;}
.ls28_c00305{letter-spacing:0.346896px;}
.ls6_c00305{letter-spacing:0.354240px;}
.ls2_c00305{letter-spacing:0.492942px;}
.ls7_c00305{letter-spacing:0.501840px;}
.ls1b_c00305{letter-spacing:0.504000px;}
.ls5_c00305{letter-spacing:0.513648px;}
.ls4_c00305{letter-spacing:0.531360px;}
.ls10_c00305{letter-spacing:0.585960px;}
.ls22_c00305{letter-spacing:0.602208px;}
.ls23_c00305{letter-spacing:0.690768px;}
.lsf_c00305{letter-spacing:0.692160px;}
.ls3_c00305{letter-spacing:0.712027px;}
.ls21_c00305{letter-spacing:0.743904px;}
.lse_c00305{letter-spacing:0.960000px;}
.ls1e_c00305{letter-spacing:0.962352px;}
.ls1a_c00305{letter-spacing:1.584000px;}
.lsc_c00305{letter-spacing:1.872000px;}
.ls26_c00305{letter-spacing:2.738567px;}
.lsa_c00305{letter-spacing:3.168000px;}
.ls14_c00305{letter-spacing:5.245680px;}
.ls11_c00305{letter-spacing:5.246280px;}
.ls18_c00305{letter-spacing:5.352840px;}
.ls13_c00305{letter-spacing:5.353440px;}
.ls2b_c00305{letter-spacing:5.354928px;}
.ls24_c00305{letter-spacing:5.430672px;}
.ls16_c00305{letter-spacing:5.458800px;}
.ls19_c00305{letter-spacing:5.459400px;}
.ls2c_c00305{letter-spacing:5.461200px;}
.ls2d_c00305{letter-spacing:5.514336px;}
.ls17_c00305{letter-spacing:5.778720px;}
.ls2a_c00305{letter-spacing:5.780016px;}
.ls8_c00305{letter-spacing:5.975400px;}
.ls0_c00305{letter-spacing:5.976000px;}
.ls1c_c00305{letter-spacing:6.159920px;}
.ls20_c00305{letter-spacing:6.417648px;}
.lsd_c00305{letter-spacing:7.776000px;}
.ls9_c00305{letter-spacing:9.144000px;}
.lsb_c00305{letter-spacing:13.824000px;}
.ls27_c00305{letter-spacing:16.063200px;}
.sc__c00305{text-shadow:none;}
.sc1_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00305{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc1_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00305{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6_c00305{word-spacing:-22.193136px;}
.ws8_c00305{word-spacing:-21.927456px;}
.ws7_c00305{word-spacing:-21.768048px;}
.ws4_c00305{word-spacing:-21.043152px;}
.ws1_c00305{word-spacing:-17.630284px;}
.ws0_c00305{word-spacing:-17.411199px;}
.ws2_c00305{word-spacing:-16.944480px;}
.ws3_c00305{word-spacing:-16.413120px;}
.ws5_c00305{word-spacing:-11.429712px;}
.ws9_c00305{word-spacing:0.000000px;}
._2_c00305{margin-left:-5.726880px;}
._a_c00305{margin-left:-2.731145px;}
._0_c00305{margin-left:-1.121760px;}
._4_c00305{width:1.251648px;}
._8_c00305{width:2.498731px;}
._7_c00305{width:3.562363px;}
._1_c00305{width:4.723200px;}
._3_c00305{width:5.856768px;}
._10_c00305{width:8.928000px;}
._f_c00305{width:10.792800px;}
._5_c00305{width:12.103200px;}
._6_c00305{width:13.461120px;}
._e_c00305{width:15.067708px;}
._d_c00305{width:16.550146px;}
._12_c00305{width:17.928000px;}
._9_c00305{width:21.672000px;}
._c_c00305{width:26.784000px;}
._b_c00305{width:27.792000px;}
._11_c00305{width:41.904000px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs5_c00305{font-size:41.760000px;}
.fs6_c00305{font-size:47.520000px;}
.fs4_c00305{font-size:56.160000px;}
.fs2_c00305{font-size:59.040000px;}
.fs7_c00305{font-size:60.000000px;}
.fs3_c00305{font-size:60.857039px;}
.fs0_c00305{font-size:72.000000px;}
.fs1_c00305{font-size:74.215901px;}
.y0_c00305{bottom:0.000000px;}
.y30_c00305{bottom:3.120150px;}
.y2f_c00305{bottom:34.744500px;}
.y1_c00305{bottom:54.000000px;}
.y2e_c00305{bottom:72.045000px;}
.y2d_c00305{bottom:93.645000px;}
.y2c_c00305{bottom:117.765000px;}
.y2b_c00305{bottom:138.285000px;}
.y2a_c00305{bottom:162.765000px;}
.y29_c00305{bottom:183.285000px;}
.y28_c00305{bottom:204.525000px;}
.y27_c00305{bottom:240.525000px;}
.y26_c00305{bottom:261.765000px;}
.y25_c00305{bottom:282.645000px;}
.y24_c00305{bottom:301.005000px;}
.y23_c00305{bottom:321.885000px;}
.y22_c00305{bottom:342.405000px;}
.y21_c00305{bottom:360.765000px;}
.y20_c00305{bottom:394.245000px;}
.y1f_c00305{bottom:418.725000px;}
.y1e_c00305{bottom:439.245000px;}
.y1d_c00305{bottom:463.725000px;}
.y1c_c00305{bottom:484.245000px;}
.y1b_c00305{bottom:508.725000px;}
.y1a_c00305{bottom:529.245000px;}
.y19_c00305{bottom:550.485000px;}
.y18_c00305{bottom:586.485000px;}
.y17_c00305{bottom:607.365000px;}
.y16_c00305{bottom:628.245000px;}
.y15_c00305{bottom:649.485000px;}
.y14_c00305{bottom:670.365000px;}
.y13_c00305{bottom:691.245000px;}
.y12_c00305{bottom:712.485000px;}
.y11_c00305{bottom:733.365000px;}
.y10_c00305{bottom:769.365000px;}
.yf_c00305{bottom:790.605000px;}
.ye_c00305{bottom:811.485000px;}
.yd_c00305{bottom:832.365000px;}
.yc_c00305{bottom:853.605000px;}
.yb_c00305{bottom:874.485000px;}
.ya_c00305{bottom:910.485000px;}
.y9_c00305{bottom:946.485000px;}
.y8_c00305{bottom:967.362840px;}
.y7_c00305{bottom:984.646800px;}
.y6_c00305{bottom:1002.285000px;}
.y5_c00305{bottom:1034.686800px;}
.y4_c00305{bottom:1052.325000px;}
.y3_c00305{bottom:1085.085000px;}
.y2_c00305{bottom:1138.365000px;}
.h8_c00305{height:19.255500px;}
.h9_c00305{height:46.320000px;}
.h6_c00305{height:46.981634px;}
.h5_c00305{height:53.490240px;}
.h4_c00305{height:57.294676px;}
.h3_c00305{height:65.232000px;}
.h7_c00305{height:68.074560px;}
.h2_c00305{height:1201.365000px;}
.h0_c00305{height:1262.835000px;}
.h1_c00305{height:1263.000000px;}
.w4_c00305{width:25.020000px;}
.w3_c00305{width:215.280000px;}
.w2_c00305{width:863.955000px;}
.w0_c00305{width:892.935000px;}
.w1_c00305{width:893.250000px;}
.x0_c00305{left:0.000000px;}
.x17_c00305{left:7.920150px;}
.x1_c00305{left:14.490000px;}
.x2_c00305{left:113.040150px;}
.x16_c00305{left:119.610000px;}
.xd_c00305{left:126.035850px;}
.xb_c00305{left:133.034550px;}
.xe_c00305{left:145.025700px;}
.x3_c00305{left:165.545700px;}
.x14_c00305{left:198.072150px;}
.x4_c00305{left:246.508350px;}
.xc_c00305{left:249.768750px;}
.x5_c00305{left:253.005900px;}
.x6_c00305{left:259.503600px;}
.x7_c00305{left:278.019600px;}
.x15_c00305{left:294.157800px;}
.x8_c00305{left:309.684150px;}
.xf_c00305{left:310.725600px;}
.x18_c00305{left:335.610000px;}
.x12_c00305{left:347.140050px;}
.x9_c00305{left:396.838200px;}
.x13_c00305{left:415.169250px;}
.xa_c00305{left:426.837900px;}
.x19_c00305{left:551.610000px;}
.x10_c00305{left:697.398600px;}
.x11_c00305{left:750.390000px;}
.x1a_c00305{left:759.915000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.v1_c00305{vertical-align:26.880000pt;}
.ls25_c00305{letter-spacing:-0.159616pt;}
.ls1d_c00305{letter-spacing:0.000000pt;}
.ls12_c00305{letter-spacing:0.208747pt;}
.ls15_c00305{letter-spacing:0.209280pt;}
.ls1f_c00305{letter-spacing:0.236160pt;}
.ls29_c00305{letter-spacing:0.261888pt;}
.ls1_c00305{letter-spacing:0.262400pt;}
.ls28_c00305{letter-spacing:0.308352pt;}
.ls6_c00305{letter-spacing:0.314880pt;}
.ls2_c00305{letter-spacing:0.438171pt;}
.ls7_c00305{letter-spacing:0.446080pt;}
.ls1b_c00305{letter-spacing:0.448000pt;}
.ls5_c00305{letter-spacing:0.456576pt;}
.ls4_c00305{letter-spacing:0.472320pt;}
.ls10_c00305{letter-spacing:0.520853pt;}
.ls22_c00305{letter-spacing:0.535296pt;}
.ls23_c00305{letter-spacing:0.614016pt;}
.lsf_c00305{letter-spacing:0.615253pt;}
.ls3_c00305{letter-spacing:0.632913pt;}
.ls21_c00305{letter-spacing:0.661248pt;}
.lse_c00305{letter-spacing:0.853333pt;}
.ls1e_c00305{letter-spacing:0.855424pt;}
.ls1a_c00305{letter-spacing:1.408000pt;}
.lsc_c00305{letter-spacing:1.664000pt;}
.ls26_c00305{letter-spacing:2.434282pt;}
.lsa_c00305{letter-spacing:2.816000pt;}
.ls14_c00305{letter-spacing:4.662827pt;}
.ls11_c00305{letter-spacing:4.663360pt;}
.ls18_c00305{letter-spacing:4.758080pt;}
.ls13_c00305{letter-spacing:4.758613pt;}
.ls2b_c00305{letter-spacing:4.759936pt;}
.ls24_c00305{letter-spacing:4.827264pt;}
.ls16_c00305{letter-spacing:4.852267pt;}
.ls19_c00305{letter-spacing:4.852800pt;}
.ls2c_c00305{letter-spacing:4.854400pt;}
.ls2d_c00305{letter-spacing:4.901632pt;}
.ls17_c00305{letter-spacing:5.136640pt;}
.ls2a_c00305{letter-spacing:5.137792pt;}
.ls8_c00305{letter-spacing:5.311467pt;}
.ls0_c00305{letter-spacing:5.312000pt;}
.ls1c_c00305{letter-spacing:5.475484pt;}
.ls20_c00305{letter-spacing:5.704576pt;}
.lsd_c00305{letter-spacing:6.912000pt;}
.ls9_c00305{letter-spacing:8.128000pt;}
.lsb_c00305{letter-spacing:12.288000pt;}
.ls27_c00305{letter-spacing:14.278400pt;}
.ws6_c00305{word-spacing:-19.727232pt;}
.ws8_c00305{word-spacing:-19.491072pt;}
.ws7_c00305{word-spacing:-19.349376pt;}
.ws4_c00305{word-spacing:-18.705024pt;}
.ws1_c00305{word-spacing:-15.671364pt;}
.ws0_c00305{word-spacing:-15.476621pt;}
.ws2_c00305{word-spacing:-15.061760pt;}
.ws3_c00305{word-spacing:-14.589440pt;}
.ws5_c00305{word-spacing:-10.159744pt;}
.ws9_c00305{word-spacing:0.000000pt;}
._2_c00305{margin-left:-5.090560pt;}
._a_c00305{margin-left:-2.427685pt;}
._0_c00305{margin-left:-0.997120pt;}
._4_c00305{width:1.112576pt;}
._8_c00305{width:2.221094pt;}
._7_c00305{width:3.166545pt;}
._1_c00305{width:4.198400pt;}
._3_c00305{width:5.206016pt;}
._10_c00305{width:7.936000pt;}
._f_c00305{width:9.593600pt;}
._5_c00305{width:10.758400pt;}
._6_c00305{width:11.965440pt;}
._e_c00305{width:13.393518pt;}
._d_c00305{width:14.711241pt;}
._12_c00305{width:15.936000pt;}
._9_c00305{width:19.264000pt;}
._c_c00305{width:23.808000pt;}
._b_c00305{width:24.704000pt;}
._11_c00305{width:37.248000pt;}
.fs5_c00305{font-size:37.120000pt;}
.fs6_c00305{font-size:42.240000pt;}
.fs4_c00305{font-size:49.920000pt;}
.fs2_c00305{font-size:52.480000pt;}
.fs7_c00305{font-size:53.333333pt;}
.fs3_c00305{font-size:54.095146pt;}
.fs0_c00305{font-size:64.000000pt;}
.fs1_c00305{font-size:65.969690pt;}
.y0_c00305{bottom:0.000000pt;}
.y30_c00305{bottom:2.773467pt;}
.y2f_c00305{bottom:30.884000pt;}
.y1_c00305{bottom:48.000000pt;}
.y2e_c00305{bottom:64.040000pt;}
.y2d_c00305{bottom:83.240000pt;}
.y2c_c00305{bottom:104.680000pt;}
.y2b_c00305{bottom:122.920000pt;}
.y2a_c00305{bottom:144.680000pt;}
.y29_c00305{bottom:162.920000pt;}
.y28_c00305{bottom:181.800000pt;}
.y27_c00305{bottom:213.800000pt;}
.y26_c00305{bottom:232.680000pt;}
.y25_c00305{bottom:251.240000pt;}
.y24_c00305{bottom:267.560000pt;}
.y23_c00305{bottom:286.120000pt;}
.y22_c00305{bottom:304.360000pt;}
.y21_c00305{bottom:320.680000pt;}
.y20_c00305{bottom:350.440000pt;}
.y1f_c00305{bottom:372.200000pt;}
.y1e_c00305{bottom:390.440000pt;}
.y1d_c00305{bottom:412.200000pt;}
.y1c_c00305{bottom:430.440000pt;}
.y1b_c00305{bottom:452.200000pt;}
.y1a_c00305{bottom:470.440000pt;}
.y19_c00305{bottom:489.320000pt;}
.y18_c00305{bottom:521.320000pt;}
.y17_c00305{bottom:539.880000pt;}
.y16_c00305{bottom:558.440000pt;}
.y15_c00305{bottom:577.320000pt;}
.y14_c00305{bottom:595.880000pt;}
.y13_c00305{bottom:614.440000pt;}
.y12_c00305{bottom:633.320000pt;}
.y11_c00305{bottom:651.880000pt;}
.y10_c00305{bottom:683.880000pt;}
.yf_c00305{bottom:702.760000pt;}
.ye_c00305{bottom:721.320000pt;}
.yd_c00305{bottom:739.880000pt;}
.yc_c00305{bottom:758.760000pt;}
.yb_c00305{bottom:777.320000pt;}
.ya_c00305{bottom:809.320000pt;}
.y9_c00305{bottom:841.320000pt;}
.y8_c00305{bottom:859.878080pt;}
.y7_c00305{bottom:875.241600pt;}
.y6_c00305{bottom:890.920000pt;}
.y5_c00305{bottom:919.721600pt;}
.y4_c00305{bottom:935.400000pt;}
.y3_c00305{bottom:964.520000pt;}
.y2_c00305{bottom:1011.880000pt;}
.h8_c00305{height:17.116000pt;}
.h9_c00305{height:41.173333pt;}
.h6_c00305{height:41.761453pt;}
.h5_c00305{height:47.546880pt;}
.h4_c00305{height:50.928601pt;}
.h3_c00305{height:57.984000pt;}
.h7_c00305{height:60.510720pt;}
.h2_c00305{height:1067.880000pt;}
.h0_c00305{height:1122.520000pt;}
.h1_c00305{height:1122.666667pt;}
.w4_c00305{width:22.240000pt;}
.w3_c00305{width:191.360000pt;}
.w2_c00305{width:767.960000pt;}
.w0_c00305{width:793.720000pt;}
.w1_c00305{width:794.000000pt;}
.x0_c00305{left:0.000000pt;}
.x17_c00305{left:7.040133pt;}
.x1_c00305{left:12.880000pt;}
.x2_c00305{left:100.480133pt;}
.x16_c00305{left:106.320000pt;}
.xd_c00305{left:112.031867pt;}
.xb_c00305{left:118.252933pt;}
.xe_c00305{left:128.911733pt;}
.x3_c00305{left:147.151733pt;}
.x14_c00305{left:176.064133pt;}
.x4_c00305{left:219.118533pt;}
.xc_c00305{left:222.016667pt;}
.x5_c00305{left:224.894133pt;}
.x6_c00305{left:230.669867pt;}
.x7_c00305{left:247.128533pt;}
.x15_c00305{left:261.473600pt;}
.x8_c00305{left:275.274800pt;}
.xf_c00305{left:276.200533pt;}
.x18_c00305{left:298.320000pt;}
.x12_c00305{left:308.568933pt;}
.x9_c00305{left:352.745067pt;}
.x13_c00305{left:369.039333pt;}
.xa_c00305{left:379.411467pt;}
.x19_c00305{left:490.320000pt;}
.x10_c00305{left:619.909867pt;}
.x11_c00305{left:667.013333pt;}
.x1a_c00305{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d4bbb69b61fcf92a4b096d47.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.134000;font-style:normal;font-weight:normal;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_9e6d446b723c997d37dfc6f2.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;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:ff3_c00306;src:url('chunks/assets/font_2172f11de0d7125d27e50d81.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:0.965000;font-style:normal;font-weight:normal;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_66b7d33e94e3222486a1e68f.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_f09fb4ef5103598a4bc0e5b9.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:0.787000;font-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_c00306{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.v1_c00306{vertical-align:30.240000px;}
.lsb_c00306{letter-spacing:-0.179568px;}
.lsa_c00306{letter-spacing:0.000000px;}
.ls5_c00306{letter-spacing:0.336000px;}
.lsc_c00306{letter-spacing:2.174526px;}
.lsd_c00306{letter-spacing:5.335200px;}
.ls6_c00306{letter-spacing:5.544000px;}
.ls4_c00306{letter-spacing:5.760000px;}
.ls8_c00306{letter-spacing:5.975400px;}
.ls0_c00306{letter-spacing:5.976000px;}
.ls9_c00306{letter-spacing:6.159920px;}
.ls2_c00306{letter-spacing:6.635400px;}
.ls7_c00306{letter-spacing:7.200000px;}
.ls3_c00306{letter-spacing:12.024000px;}
.ls1_c00306{letter-spacing:19.440000px;}
.sc__c00306{text-shadow:none;}
.sc1_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00306{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc1_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00306{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00306{word-spacing:-20.947680px;}
.ws0_c00306{word-spacing:-20.016000px;}
.ws1_c00306{word-spacing:-11.429712px;}
.ws3_c00306{word-spacing:0.000000px;}
._b_c00306{margin-left:-6.362832px;}
._9_c00306{margin-left:-2.196791px;}
._1_c00306{width:1.728000px;}
._a_c00306{width:2.808000px;}
._d_c00306{width:4.297416px;}
._3_c00306{width:5.638584px;}
._2_c00306{width:6.745416px;}
._c_c00306{width:7.798584px;}
._5_c00306{width:9.072000px;}
._f_c00306{width:10.224000px;}
._4_c00306{width:11.232000px;}
._0_c00306{width:13.536000px;}
._e_c00306{width:14.832000px;}
._7_c00306{width:23.904000px;}
._6_c00306{width:25.704000px;}
._8_c00306{width:30.744000px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs2_c00306{font-size:41.760000px;}
.fs3_c00306{font-size:56.160000px;}
.fs4_c00306{font-size:60.000000px;}
.fs0_c00306{font-size:72.000000px;}
.fs1_c00306{font-size:74.215901px;}
.y0_c00306{bottom:0.000000px;}
.y1f_c00306{bottom:3.120150px;}
.y1e_c00306{bottom:34.744500px;}
.y1_c00306{bottom:54.000000px;}
.y1d_c00306{bottom:457.245000px;}
.y1c_c00306{bottom:493.245000px;}
.y1b_c00306{bottom:514.485000px;}
.y1a_c00306{bottom:535.365000px;}
.y19_c00306{bottom:556.245000px;}
.y18_c00306{bottom:577.485000px;}
.y17_c00306{bottom:598.365000px;}
.y16_c00306{bottom:634.365000px;}
.y15_c00306{bottom:670.365000px;}
.y14_c00306{bottom:706.365000px;}
.y13_c00306{bottom:727.605000px;}
.y12_c00306{bottom:748.485000px;}
.y11_c00306{bottom:769.365000px;}
.y10_c00306{bottom:790.605000px;}
.yf_c00306{bottom:811.485000px;}
.ye_c00306{bottom:832.365000px;}
.yd_c00306{bottom:868.365000px;}
.yc_c00306{bottom:889.605000px;}
.yb_c00306{bottom:910.485000px;}
.ya_c00306{bottom:931.365000px;}
.y9_c00306{bottom:952.605000px;}
.y8_c00306{bottom:973.485000px;}
.y7_c00306{bottom:997.965000px;}
.y6_c00306{bottom:1019.205000px;}
.y5_c00306{bottom:1040.085000px;}
.y4_c00306{bottom:1060.965000px;}
.y3_c00306{bottom:1085.445000px;}
.y2_c00306{bottom:1138.365000px;}
.h6_c00306{height:19.255500px;}
.h7_c00306{height:46.320000px;}
.h4_c00306{height:57.294676px;}
.h3_c00306{height:65.232000px;}
.h5_c00306{height:68.074560px;}
.h2_c00306{height:1201.365000px;}
.h0_c00306{height:1262.835000px;}
.h1_c00306{height:1263.000000px;}
.w3_c00306{width:25.020000px;}
.w2_c00306{width:863.955000px;}
.w0_c00306{width:892.935000px;}
.w1_c00306{width:893.250000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:14.490000px;}
.x2_c00306{left:113.040150px;}
.x13_c00306{left:149.039400px;}
.x3_c00306{left:165.545700px;}
.x16_c00306{left:204.046500px;}
.x17_c00306{left:240.045750px;}
.x4_c00306{left:246.508350px;}
.x5_c00306{left:253.005900px;}
.x6_c00306{left:259.503600px;}
.xf_c00306{left:283.641750px;}
.x18_c00306{left:336.091950px;}
.x19_c00306{left:372.091200px;}
.x12_c00306{left:376.765800px;}
.x14_c00306{left:380.972550px;}
.x15_c00306{left:416.971800px;}
.x10_c00306{left:478.265700px;}
.xd_c00306{left:498.144300px;}
.xe_c00306{left:522.137700px;}
.x7_c00306{left:536.768550px;}
.x11_c00306{left:556.804350px;}
.xb_c00306{left:629.992350px;}
.x9_c00306{left:642.834900px;}
.xa_c00306{left:672.840450px;}
.x8_c00306{left:717.585150px;}
.xc_c00306{left:750.390000px;}
.x1a_c00306{left:759.915000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.v1_c00306{vertical-align:26.880000pt;}
.lsb_c00306{letter-spacing:-0.159616pt;}
.lsa_c00306{letter-spacing:0.000000pt;}
.ls5_c00306{letter-spacing:0.298667pt;}
.lsc_c00306{letter-spacing:1.932912pt;}
.lsd_c00306{letter-spacing:4.742400pt;}
.ls6_c00306{letter-spacing:4.928000pt;}
.ls4_c00306{letter-spacing:5.120000pt;}
.ls8_c00306{letter-spacing:5.311467pt;}
.ls0_c00306{letter-spacing:5.312000pt;}
.ls9_c00306{letter-spacing:5.475484pt;}
.ls2_c00306{letter-spacing:5.898133pt;}
.ls7_c00306{letter-spacing:6.400000pt;}
.ls3_c00306{letter-spacing:10.688000pt;}
.ls1_c00306{letter-spacing:17.280000pt;}
.ws2_c00306{word-spacing:-18.620160pt;}
.ws0_c00306{word-spacing:-17.792000pt;}
.ws1_c00306{word-spacing:-10.159744pt;}
.ws3_c00306{word-spacing:0.000000pt;}
._b_c00306{margin-left:-5.655851pt;}
._9_c00306{margin-left:-1.952703pt;}
._1_c00306{width:1.536000pt;}
._a_c00306{width:2.496000pt;}
._d_c00306{width:3.819925pt;}
._3_c00306{width:5.012075pt;}
._2_c00306{width:5.995925pt;}
._c_c00306{width:6.932075pt;}
._5_c00306{width:8.064000pt;}
._f_c00306{width:9.088000pt;}
._4_c00306{width:9.984000pt;}
._0_c00306{width:12.032000pt;}
._e_c00306{width:13.184000pt;}
._7_c00306{width:21.248000pt;}
._6_c00306{width:22.848000pt;}
._8_c00306{width:27.328000pt;}
.fs2_c00306{font-size:37.120000pt;}
.fs3_c00306{font-size:49.920000pt;}
.fs4_c00306{font-size:53.333333pt;}
.fs0_c00306{font-size:64.000000pt;}
.fs1_c00306{font-size:65.969690pt;}
.y0_c00306{bottom:0.000000pt;}
.y1f_c00306{bottom:2.773467pt;}
.y1e_c00306{bottom:30.884000pt;}
.y1_c00306{bottom:48.000000pt;}
.y1d_c00306{bottom:406.440000pt;}
.y1c_c00306{bottom:438.440000pt;}
.y1b_c00306{bottom:457.320000pt;}
.y1a_c00306{bottom:475.880000pt;}
.y19_c00306{bottom:494.440000pt;}
.y18_c00306{bottom:513.320000pt;}
.y17_c00306{bottom:531.880000pt;}
.y16_c00306{bottom:563.880000pt;}
.y15_c00306{bottom:595.880000pt;}
.y14_c00306{bottom:627.880000pt;}
.y13_c00306{bottom:646.760000pt;}
.y12_c00306{bottom:665.320000pt;}
.y11_c00306{bottom:683.880000pt;}
.y10_c00306{bottom:702.760000pt;}
.yf_c00306{bottom:721.320000pt;}
.ye_c00306{bottom:739.880000pt;}
.yd_c00306{bottom:771.880000pt;}
.yc_c00306{bottom:790.760000pt;}
.yb_c00306{bottom:809.320000pt;}
.ya_c00306{bottom:827.880000pt;}
.y9_c00306{bottom:846.760000pt;}
.y8_c00306{bottom:865.320000pt;}
.y7_c00306{bottom:887.080000pt;}
.y6_c00306{bottom:905.960000pt;}
.y5_c00306{bottom:924.520000pt;}
.y4_c00306{bottom:943.080000pt;}
.y3_c00306{bottom:964.840000pt;}
.y2_c00306{bottom:1011.880000pt;}
.h6_c00306{height:17.116000pt;}
.h7_c00306{height:41.173333pt;}
.h4_c00306{height:50.928601pt;}
.h3_c00306{height:57.984000pt;}
.h5_c00306{height:60.510720pt;}
.h2_c00306{height:1067.880000pt;}
.h0_c00306{height:1122.520000pt;}
.h1_c00306{height:1122.666667pt;}
.w3_c00306{width:22.240000pt;}
.w2_c00306{width:767.960000pt;}
.w0_c00306{width:793.720000pt;}
.w1_c00306{width:794.000000pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:12.880000pt;}
.x2_c00306{left:100.480133pt;}
.x13_c00306{left:132.479467pt;}
.x3_c00306{left:147.151733pt;}
.x16_c00306{left:181.374667pt;}
.x17_c00306{left:213.374000pt;}
.x4_c00306{left:219.118533pt;}
.x5_c00306{left:224.894133pt;}
.x6_c00306{left:230.669867pt;}
.xf_c00306{left:252.126000pt;}
.x18_c00306{left:298.748400pt;}
.x19_c00306{left:330.747733pt;}
.x12_c00306{left:334.902933pt;}
.x14_c00306{left:338.642267pt;}
.x15_c00306{left:370.641600pt;}
.x10_c00306{left:425.125067pt;}
.xd_c00306{left:442.794933pt;}
.xe_c00306{left:464.122400pt;}
.x7_c00306{left:477.127600pt;}
.x11_c00306{left:494.937200pt;}
.xb_c00306{left:559.993200pt;}
.x9_c00306{left:571.408800pt;}
.xa_c00306{left:598.080400pt;}
.x8_c00306{left:637.853467pt;}
.xc_c00306{left:667.013333pt;}
.x1a_c00306{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5c6888d4acaf6ceceffcea22.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;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_c00307;src:url('chunks/assets/font_d839e4fa470d9f1e60e4d319.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:0.787000;font-style:normal;font-weight:normal;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_6e698d8cbda43a4e70a8cec2.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:0.787000;font-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_c00307{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00307{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00307{letter-spacing:0.000000px;}
.ls7_c00307{letter-spacing:0.202464px;}
.ls8_c00307{letter-spacing:0.239760px;}
.ls6_c00307{letter-spacing:0.373454px;}
.ls5_c00307{letter-spacing:0.399600px;}
.ls2_c00307{letter-spacing:0.399720px;}
.ls1_c00307{letter-spacing:0.410256px;}
.ls9_c00307{letter-spacing:0.719280px;}
.ls0_c00307{letter-spacing:5.976000px;}
.ls3_c00307{letter-spacing:6.159920px;}
.sc__c00307{text-shadow:none;}
.sc1_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00307{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc1_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00307{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00307{word-spacing:-15.641150px;}
.ws3_c00307{word-spacing:-15.531120px;}
.ws2_c00307{word-spacing:-15.222096px;}
.ws1_c00307{word-spacing:-15.051600px;}
.ws4_c00307{word-spacing:0.000000px;}
._0_c00307{margin-left:-1.118880px;}
._1_c00307{width:1.012320px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs2_c00307{font-size:53.280000px;}
.fs3_c00307{font-size:54.919767px;}
.fs4_c00307{font-size:60.000000px;}
.fs0_c00307{font-size:72.000000px;}
.fs1_c00307{font-size:74.215901px;}
.y0_c00307{bottom:0.000000px;}
.y26_c00307{bottom:3.120150px;}
.y21_c00307{bottom:25.560000px;}
.y25_c00307{bottom:34.744500px;}
.y20_c00307{bottom:41.399850px;}
.y23_c00307{bottom:41.400000px;}
.y1_c00307{bottom:54.000000px;}
.y1e_c00307{bottom:112.725000px;}
.y1d_c00307{bottom:148.725000px;}
.y24_c00307{bottom:157.365000px;}
.y1c_c00307{bottom:184.725000px;}
.y1b_c00307{bottom:220.725000px;}
.y1a_c00307{bottom:256.725000px;}
.y19_c00307{bottom:292.725000px;}
.y18_c00307{bottom:328.725000px;}
.y17_c00307{bottom:364.725000px;}
.y16_c00307{bottom:400.725000px;}
.y15_c00307{bottom:436.725000px;}
.y14_c00307{bottom:472.725000px;}
.y22_c00307{bottom:508.365000px;}
.y13_c00307{bottom:509.085000px;}
.y12_c00307{bottom:545.085000px;}
.y11_c00307{bottom:581.085000px;}
.y10_c00307{bottom:617.085000px;}
.yf_c00307{bottom:653.085000px;}
.ye_c00307{bottom:689.085000px;}
.yd_c00307{bottom:725.085000px;}
.yc_c00307{bottom:761.085000px;}
.yb_c00307{bottom:797.085000px;}
.y1f_c00307{bottom:832.365000px;}
.ya_c00307{bottom:833.085000px;}
.y9_c00307{bottom:869.085000px;}
.y8_c00307{bottom:905.085000px;}
.y7_c00307{bottom:941.085000px;}
.y6_c00307{bottom:977.085000px;}
.y5_c00307{bottom:1013.085000px;}
.y4_c00307{bottom:1049.085000px;}
.y3_c00307{bottom:1085.085000px;}
.y2_c00307{bottom:1138.365000px;}
.h8_c00307{height:19.255500px;}
.h6_c00307{height:41.132160px;}
.h7_c00307{height:42.398060px;}
.h9_c00307{height:46.320000px;}
.h5_c00307{height:54.000000px;}
.h3_c00307{height:55.584000px;}
.h4_c00307{height:57.294676px;}
.h2_c00307{height:1201.365000px;}
.h0_c00307{height:1262.835000px;}
.h1_c00307{height:1263.000000px;}
.w6_c00307{width:25.020000px;}
.w3_c00307{width:541.800000px;}
.w5_c00307{width:542.880000px;}
.w4_c00307{width:546.480000px;}
.w2_c00307{width:863.955000px;}
.w0_c00307{width:892.935000px;}
.w1_c00307{width:893.250000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:14.490000px;}
.xe_c00307{left:34.793100px;}
.xc_c00307{left:36.233250px;}
.x2_c00307{left:113.040150px;}
.xa_c00307{left:120.234150px;}
.x8_c00307{left:136.716450px;}
.xf_c00307{left:145.099800px;}
.xb_c00307{left:151.650000px;}
.x7_c00307{left:156.330000px;}
.x3_c00307{left:165.545700px;}
.x10_c00307{left:196.858200px;}
.x11_c00307{left:225.470250px;}
.xd_c00307{left:226.910400px;}
.x4_c00307{left:246.508350px;}
.x5_c00307{left:253.005900px;}
.x6_c00307{left:259.503600px;}
.x9_c00307{left:298.781700px;}
.x12_c00307{left:759.915000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls4_c00307{letter-spacing:0.000000pt;}
.ls7_c00307{letter-spacing:0.179968pt;}
.ls8_c00307{letter-spacing:0.213120pt;}
.ls6_c00307{letter-spacing:0.331959pt;}
.ls5_c00307{letter-spacing:0.355200pt;}
.ls2_c00307{letter-spacing:0.355307pt;}
.ls1_c00307{letter-spacing:0.364672pt;}
.ls9_c00307{letter-spacing:0.639360pt;}
.ls0_c00307{letter-spacing:5.312000pt;}
.ls3_c00307{letter-spacing:5.475484pt;}
.ws0_c00307{word-spacing:-13.903244pt;}
.ws3_c00307{word-spacing:-13.805440pt;}
.ws2_c00307{word-spacing:-13.530752pt;}
.ws1_c00307{word-spacing:-13.379200pt;}
.ws4_c00307{word-spacing:0.000000pt;}
._0_c00307{margin-left:-0.994560pt;}
._1_c00307{width:0.899840pt;}
.fs2_c00307{font-size:47.360000pt;}
.fs3_c00307{font-size:48.817571pt;}
.fs4_c00307{font-size:53.333333pt;}
.fs0_c00307{font-size:64.000000pt;}
.fs1_c00307{font-size:65.969690pt;}
.y0_c00307{bottom:0.000000pt;}
.y26_c00307{bottom:2.773467pt;}
.y21_c00307{bottom:22.720000pt;}
.y25_c00307{bottom:30.884000pt;}
.y20_c00307{bottom:36.799867pt;}
.y23_c00307{bottom:36.800000pt;}
.y1_c00307{bottom:48.000000pt;}
.y1e_c00307{bottom:100.200000pt;}
.y1d_c00307{bottom:132.200000pt;}
.y24_c00307{bottom:139.880000pt;}
.y1c_c00307{bottom:164.200000pt;}
.y1b_c00307{bottom:196.200000pt;}
.y1a_c00307{bottom:228.200000pt;}
.y19_c00307{bottom:260.200000pt;}
.y18_c00307{bottom:292.200000pt;}
.y17_c00307{bottom:324.200000pt;}
.y16_c00307{bottom:356.200000pt;}
.y15_c00307{bottom:388.200000pt;}
.y14_c00307{bottom:420.200000pt;}
.y22_c00307{bottom:451.880000pt;}
.y13_c00307{bottom:452.520000pt;}
.y12_c00307{bottom:484.520000pt;}
.y11_c00307{bottom:516.520000pt;}
.y10_c00307{bottom:548.520000pt;}
.yf_c00307{bottom:580.520000pt;}
.ye_c00307{bottom:612.520000pt;}
.yd_c00307{bottom:644.520000pt;}
.yc_c00307{bottom:676.520000pt;}
.yb_c00307{bottom:708.520000pt;}
.y1f_c00307{bottom:739.880000pt;}
.ya_c00307{bottom:740.520000pt;}
.y9_c00307{bottom:772.520000pt;}
.y8_c00307{bottom:804.520000pt;}
.y7_c00307{bottom:836.520000pt;}
.y6_c00307{bottom:868.520000pt;}
.y5_c00307{bottom:900.520000pt;}
.y4_c00307{bottom:932.520000pt;}
.y3_c00307{bottom:964.520000pt;}
.y2_c00307{bottom:1011.880000pt;}
.h8_c00307{height:17.116000pt;}
.h6_c00307{height:36.561920pt;}
.h7_c00307{height:37.687165pt;}
.h9_c00307{height:41.173333pt;}
.h5_c00307{height:48.000000pt;}
.h3_c00307{height:49.408000pt;}
.h4_c00307{height:50.928601pt;}
.h2_c00307{height:1067.880000pt;}
.h0_c00307{height:1122.520000pt;}
.h1_c00307{height:1122.666667pt;}
.w6_c00307{width:22.240000pt;}
.w3_c00307{width:481.600000pt;}
.w5_c00307{width:482.560000pt;}
.w4_c00307{width:485.760000pt;}
.w2_c00307{width:767.960000pt;}
.w0_c00307{width:793.720000pt;}
.w1_c00307{width:794.000000pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:12.880000pt;}
.xe_c00307{left:30.927200pt;}
.xc_c00307{left:32.207333pt;}
.x2_c00307{left:100.480133pt;}
.xa_c00307{left:106.874800pt;}
.x8_c00307{left:121.525733pt;}
.xf_c00307{left:128.977600pt;}
.xb_c00307{left:134.800000pt;}
.x7_c00307{left:138.960000pt;}
.x3_c00307{left:147.151733pt;}
.x10_c00307{left:174.985067pt;}
.x11_c00307{left:200.418000pt;}
.xd_c00307{left:201.698133pt;}
.x4_c00307{left:219.118533pt;}
.x5_c00307{left:224.894133pt;}
.x6_c00307{left:230.669867pt;}
.x9_c00307{left:265.583733pt;}
.x12_c00307{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f31665d19b0e722d12a10b54.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;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_c00308;src:url('chunks/assets/font_053bac513a866c1ac97de353.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:0.787000;font-style:normal;font-weight:normal;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_e9eb7839e6ab3cf5dd2f7bab.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:0.787000;font-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_c00308{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00308{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls6_c00308{letter-spacing:0.000000px;}
.ls8_c00308{letter-spacing:0.202464px;}
.ls4_c00308{letter-spacing:0.238560px;}
.lsd_c00308{letter-spacing:0.239760px;}
.lsb_c00308{letter-spacing:0.282384px;}
.ls9_c00308{letter-spacing:0.373454px;}
.ls7_c00308{letter-spacing:0.399600px;}
.ls1_c00308{letter-spacing:0.399720px;}
.ls2_c00308{letter-spacing:0.410256px;}
.ls3_c00308{letter-spacing:0.450342px;}
.lsa_c00308{letter-spacing:0.575424px;}
.lsc_c00308{letter-spacing:0.719280px;}
.ls0_c00308{letter-spacing:5.976000px;}
.ls5_c00308{letter-spacing:6.159920px;}
.sc__c00308{text-shadow:none;}
.sc1_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00308{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc1_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00308{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00308{word-spacing:-15.641150px;}
.ws1_c00308{word-spacing:-15.531120px;}
.ws2_c00308{word-spacing:-15.222096px;}
.ws3_c00308{word-spacing:-15.211440px;}
.ws4_c00308{word-spacing:-15.051600px;}
.ws5_c00308{word-spacing:0.000000px;}
._1_c00308{margin-left:-1.051968px;}
._0_c00308{width:1.014000px;}
.fc1_c00308{color:transparent;}
.fc0_c00308{color:rgb(0,0,0);}
.fs2_c00308{font-size:53.280000px;}
.fs3_c00308{font-size:54.919767px;}
.fs4_c00308{font-size:60.000000px;}
.fs0_c00308{font-size:72.000000px;}
.fs1_c00308{font-size:74.215901px;}
.y0_c00308{bottom:0.000000px;}
.y26_c00308{bottom:3.120150px;}
.y1f_c00308{bottom:14.399850px;}
.y24_c00308{bottom:14.400000px;}
.y22_c00308{bottom:25.560000px;}
.y25_c00308{bottom:34.744500px;}
.y21_c00308{bottom:41.400000px;}
.y1_c00308{bottom:54.000000px;}
.y1d_c00308{bottom:106.965000px;}
.y1c_c00308{bottom:142.965000px;}
.y1b_c00308{bottom:178.965000px;}
.y23_c00308{bottom:184.365000px;}
.y1a_c00308{bottom:214.965000px;}
.y19_c00308{bottom:250.965000px;}
.y18_c00308{bottom:286.965000px;}
.y17_c00308{bottom:322.965000px;}
.y16_c00308{bottom:358.965000px;}
.y15_c00308{bottom:394.965000px;}
.y14_c00308{bottom:430.965000px;}
.y13_c00308{bottom:466.965000px;}
.y12_c00308{bottom:502.965000px;}
.y20_c00308{bottom:508.365000px;}
.y11_c00308{bottom:538.965000px;}
.y10_c00308{bottom:574.965000px;}
.yf_c00308{bottom:610.965000px;}
.ye_c00308{bottom:646.965000px;}
.yd_c00308{bottom:682.965000px;}
.yc_c00308{bottom:718.965000px;}
.yb_c00308{bottom:754.965000px;}
.y1e_c00308{bottom:832.365000px;}
.ya_c00308{bottom:833.085000px;}
.y9_c00308{bottom:869.085000px;}
.y8_c00308{bottom:905.085000px;}
.y7_c00308{bottom:941.085000px;}
.y6_c00308{bottom:977.085000px;}
.y5_c00308{bottom:1013.085000px;}
.y4_c00308{bottom:1049.085000px;}
.y3_c00308{bottom:1085.085000px;}
.y2_c00308{bottom:1138.365000px;}
.h9_c00308{height:19.255500px;}
.h5_c00308{height:27.000000px;}
.h6_c00308{height:41.132160px;}
.h7_c00308{height:42.398060px;}
.ha_c00308{height:46.320000px;}
.h8_c00308{height:54.000000px;}
.h3_c00308{height:55.584000px;}
.h4_c00308{height:57.294676px;}
.h2_c00308{height:1201.365000px;}
.h0_c00308{height:1262.835000px;}
.h1_c00308{height:1263.000000px;}
.w6_c00308{width:25.020000px;}
.w4_c00308{width:600.840000px;}
.w5_c00308{width:602.640000px;}
.w3_c00308{width:619.200000px;}
.w2_c00308{width:863.955000px;}
.w0_c00308{width:892.935000px;}
.w1_c00308{width:893.250000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:14.490000px;}
.x13_c00308{left:18.425850px;}
.x9_c00308{left:19.723050px;}
.xd_c00308{left:67.687050px;}
.x2_c00308{left:113.040150px;}
.x8_c00308{left:122.850000px;}
.xc_c00308{left:124.290000px;}
.xa_c00308{left:130.029750px;}
.x12_c00308{left:136.704600px;}
.x3_c00308{left:165.545700px;}
.xe_c00308{left:177.993900px;}
.xb_c00308{left:181.788150px;}
.xf_c00308{left:229.752300px;}
.x4_c00308{left:246.508350px;}
.x5_c00308{left:253.005900px;}
.x6_c00308{left:259.503600px;}
.x10_c00308{left:349.764750px;}
.x11_c00308{left:369.271650px;}
.x7_c00308{left:720.717600px;}
.x14_c00308{left:759.915000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls6_c00308{letter-spacing:0.000000pt;}
.ls8_c00308{letter-spacing:0.179968pt;}
.ls4_c00308{letter-spacing:0.212053pt;}
.lsd_c00308{letter-spacing:0.213120pt;}
.lsb_c00308{letter-spacing:0.251008pt;}
.ls9_c00308{letter-spacing:0.331959pt;}
.ls7_c00308{letter-spacing:0.355200pt;}
.ls1_c00308{letter-spacing:0.355307pt;}
.ls2_c00308{letter-spacing:0.364672pt;}
.ls3_c00308{letter-spacing:0.400304pt;}
.lsa_c00308{letter-spacing:0.511488pt;}
.lsc_c00308{letter-spacing:0.639360pt;}
.ls0_c00308{letter-spacing:5.312000pt;}
.ls5_c00308{letter-spacing:5.475484pt;}
.ws0_c00308{word-spacing:-13.903244pt;}
.ws1_c00308{word-spacing:-13.805440pt;}
.ws2_c00308{word-spacing:-13.530752pt;}
.ws3_c00308{word-spacing:-13.521280pt;}
.ws4_c00308{word-spacing:-13.379200pt;}
.ws5_c00308{word-spacing:0.000000pt;}
._1_c00308{margin-left:-0.935083pt;}
._0_c00308{width:0.901333pt;}
.fs2_c00308{font-size:47.360000pt;}
.fs3_c00308{font-size:48.817571pt;}
.fs4_c00308{font-size:53.333333pt;}
.fs0_c00308{font-size:64.000000pt;}
.fs1_c00308{font-size:65.969690pt;}
.y0_c00308{bottom:0.000000pt;}
.y26_c00308{bottom:2.773467pt;}
.y1f_c00308{bottom:12.799867pt;}
.y24_c00308{bottom:12.800000pt;}
.y22_c00308{bottom:22.720000pt;}
.y25_c00308{bottom:30.884000pt;}
.y21_c00308{bottom:36.800000pt;}
.y1_c00308{bottom:48.000000pt;}
.y1d_c00308{bottom:95.080000pt;}
.y1c_c00308{bottom:127.080000pt;}
.y1b_c00308{bottom:159.080000pt;}
.y23_c00308{bottom:163.880000pt;}
.y1a_c00308{bottom:191.080000pt;}
.y19_c00308{bottom:223.080000pt;}
.y18_c00308{bottom:255.080000pt;}
.y17_c00308{bottom:287.080000pt;}
.y16_c00308{bottom:319.080000pt;}
.y15_c00308{bottom:351.080000pt;}
.y14_c00308{bottom:383.080000pt;}
.y13_c00308{bottom:415.080000pt;}
.y12_c00308{bottom:447.080000pt;}
.y20_c00308{bottom:451.880000pt;}
.y11_c00308{bottom:479.080000pt;}
.y10_c00308{bottom:511.080000pt;}
.yf_c00308{bottom:543.080000pt;}
.ye_c00308{bottom:575.080000pt;}
.yd_c00308{bottom:607.080000pt;}
.yc_c00308{bottom:639.080000pt;}
.yb_c00308{bottom:671.080000pt;}
.y1e_c00308{bottom:739.880000pt;}
.ya_c00308{bottom:740.520000pt;}
.y9_c00308{bottom:772.520000pt;}
.y8_c00308{bottom:804.520000pt;}
.y7_c00308{bottom:836.520000pt;}
.y6_c00308{bottom:868.520000pt;}
.y5_c00308{bottom:900.520000pt;}
.y4_c00308{bottom:932.520000pt;}
.y3_c00308{bottom:964.520000pt;}
.y2_c00308{bottom:1011.880000pt;}
.h9_c00308{height:17.116000pt;}
.h5_c00308{height:24.000000pt;}
.h6_c00308{height:36.561920pt;}
.h7_c00308{height:37.687165pt;}
.ha_c00308{height:41.173333pt;}
.h8_c00308{height:48.000000pt;}
.h3_c00308{height:49.408000pt;}
.h4_c00308{height:50.928601pt;}
.h2_c00308{height:1067.880000pt;}
.h0_c00308{height:1122.520000pt;}
.h1_c00308{height:1122.666667pt;}
.w6_c00308{width:22.240000pt;}
.w4_c00308{width:534.080000pt;}
.w5_c00308{width:535.680000pt;}
.w3_c00308{width:550.400000pt;}
.w2_c00308{width:767.960000pt;}
.w0_c00308{width:793.720000pt;}
.w1_c00308{width:794.000000pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:12.880000pt;}
.x13_c00308{left:16.378533pt;}
.x9_c00308{left:17.531600pt;}
.xd_c00308{left:60.166267pt;}
.x2_c00308{left:100.480133pt;}
.x8_c00308{left:109.200000pt;}
.xc_c00308{left:110.480000pt;}
.xa_c00308{left:115.582000pt;}
.x12_c00308{left:121.515200pt;}
.x3_c00308{left:147.151733pt;}
.xe_c00308{left:158.216800pt;}
.xb_c00308{left:161.589467pt;}
.xf_c00308{left:204.224267pt;}
.x4_c00308{left:219.118533pt;}
.x5_c00308{left:224.894133pt;}
.x6_c00308{left:230.669867pt;}
.x10_c00308{left:310.902000pt;}
.x11_c00308{left:328.241467pt;}
.x7_c00308{left:640.637867pt;}
.x14_c00308{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84195e147300bb562cfc4579.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;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_c00309;src:url('chunks/assets/font_053bac513a866c1ac97de353.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:0.787000;font-style:normal;font-weight:normal;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_17fdb8d6355e5755a67010d5.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:0.787000;font-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_c00309{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00309{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls4_c00309{letter-spacing:0.000000px;}
.ls6_c00309{letter-spacing:0.202464px;}
.ls9_c00309{letter-spacing:0.239760px;}
.ls7_c00309{letter-spacing:0.373454px;}
.ls5_c00309{letter-spacing:0.399600px;}
.ls1_c00309{letter-spacing:0.399720px;}
.ls8_c00309{letter-spacing:0.436896px;}
.ls2_c00309{letter-spacing:0.450342px;}
.ls0_c00309{letter-spacing:5.976000px;}
.ls3_c00309{letter-spacing:6.159920px;}
.sc__c00309{text-shadow:none;}
.sc1_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00309{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc1_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00309{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00309{word-spacing:-15.641150px;}
.ws1_c00309{word-spacing:-15.051600px;}
.ws2_c00309{word-spacing:0.000000px;}
._1_c00309{margin-left:-1.172160px;}
._0_c00309{width:1.014000px;}
.fc1_c00309{color:transparent;}
.fc0_c00309{color:rgb(0,0,0);}
.fs2_c00309{font-size:53.280000px;}
.fs3_c00309{font-size:54.919767px;}
.fs4_c00309{font-size:60.000000px;}
.fs0_c00309{font-size:72.000000px;}
.fs1_c00309{font-size:74.215901px;}
.y0_c00309{bottom:0.000000px;}
.y20_c00309{bottom:3.120150px;}
.y1c_c00309{bottom:25.560000px;}
.y1f_c00309{bottom:34.744500px;}
.y1b_c00309{bottom:41.400000px;}
.y1e_c00309{bottom:41.760000px;}
.y1_c00309{bottom:54.000000px;}
.y19_c00309{bottom:145.845000px;}
.y18_c00309{bottom:181.845000px;}
.y1d_c00309{bottom:265.365000px;}
.y17_c00309{bottom:301.725000px;}
.y16_c00309{bottom:337.725000px;}
.y15_c00309{bottom:373.725000px;}
.y14_c00309{bottom:409.725000px;}
.y13_c00309{bottom:445.725000px;}
.y12_c00309{bottom:481.725000px;}
.y11_c00309{bottom:517.725000px;}
.y10_c00309{bottom:554.085000px;}
.y1a_c00309{bottom:643.365000px;}
.yf_c00309{bottom:653.085000px;}
.ye_c00309{bottom:689.085000px;}
.yd_c00309{bottom:725.085000px;}
.yc_c00309{bottom:761.085000px;}
.yb_c00309{bottom:797.085000px;}
.ya_c00309{bottom:833.085000px;}
.y9_c00309{bottom:869.085000px;}
.y8_c00309{bottom:905.085000px;}
.y7_c00309{bottom:941.085000px;}
.y6_c00309{bottom:977.085000px;}
.y5_c00309{bottom:1013.085000px;}
.y4_c00309{bottom:1049.085000px;}
.y3_c00309{bottom:1085.085000px;}
.y2_c00309{bottom:1138.365000px;}
.h9_c00309{height:19.255500px;}
.h6_c00309{height:41.132160px;}
.h7_c00309{height:42.398060px;}
.ha_c00309{height:46.320000px;}
.h5_c00309{height:54.000000px;}
.h8_c00309{height:54.360000px;}
.h3_c00309{height:55.584000px;}
.h4_c00309{height:57.294676px;}
.h2_c00309{height:1201.365000px;}
.h0_c00309{height:1262.835000px;}
.h1_c00309{height:1263.000000px;}
.w5_c00309{width:25.020000px;}
.w4_c00309{width:652.680000px;}
.w3_c00309{width:681.840000px;}
.w2_c00309{width:863.955000px;}
.w0_c00309{width:892.935000px;}
.w1_c00309{width:893.250000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:14.490000px;}
.xf_c00309{left:28.606050px;}
.x8_c00309{left:103.991400px;}
.x2_c00309{left:113.040150px;}
.x7_c00309{left:124.290000px;}
.xe_c00309{left:126.450000px;}
.x10_c00309{left:138.912750px;}
.x3_c00309{left:165.545700px;}
.xd_c00309{left:180.919800px;}
.x11_c00309{left:190.671150px;}
.x9_c00309{left:214.298100px;}
.x4_c00309{left:246.508350px;}
.x5_c00309{left:253.005900px;}
.x6_c00309{left:259.503600px;}
.xa_c00309{left:266.056500px;}
.xb_c00309{left:376.335900px;}
.xc_c00309{left:395.842800px;}
.x12_c00309{left:759.915000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls4_c00309{letter-spacing:0.000000pt;}
.ls6_c00309{letter-spacing:0.179968pt;}
.ls9_c00309{letter-spacing:0.213120pt;}
.ls7_c00309{letter-spacing:0.331959pt;}
.ls5_c00309{letter-spacing:0.355200pt;}
.ls1_c00309{letter-spacing:0.355307pt;}
.ls8_c00309{letter-spacing:0.388352pt;}
.ls2_c00309{letter-spacing:0.400304pt;}
.ls0_c00309{letter-spacing:5.312000pt;}
.ls3_c00309{letter-spacing:5.475484pt;}
.ws0_c00309{word-spacing:-13.903244pt;}
.ws1_c00309{word-spacing:-13.379200pt;}
.ws2_c00309{word-spacing:0.000000pt;}
._1_c00309{margin-left:-1.041920pt;}
._0_c00309{width:0.901333pt;}
.fs2_c00309{font-size:47.360000pt;}
.fs3_c00309{font-size:48.817571pt;}
.fs4_c00309{font-size:53.333333pt;}
.fs0_c00309{font-size:64.000000pt;}
.fs1_c00309{font-size:65.969690pt;}
.y0_c00309{bottom:0.000000pt;}
.y20_c00309{bottom:2.773467pt;}
.y1c_c00309{bottom:22.720000pt;}
.y1f_c00309{bottom:30.884000pt;}
.y1b_c00309{bottom:36.800000pt;}
.y1e_c00309{bottom:37.120000pt;}
.y1_c00309{bottom:48.000000pt;}
.y19_c00309{bottom:129.640000pt;}
.y18_c00309{bottom:161.640000pt;}
.y1d_c00309{bottom:235.880000pt;}
.y17_c00309{bottom:268.200000pt;}
.y16_c00309{bottom:300.200000pt;}
.y15_c00309{bottom:332.200000pt;}
.y14_c00309{bottom:364.200000pt;}
.y13_c00309{bottom:396.200000pt;}
.y12_c00309{bottom:428.200000pt;}
.y11_c00309{bottom:460.200000pt;}
.y10_c00309{bottom:492.520000pt;}
.y1a_c00309{bottom:571.880000pt;}
.yf_c00309{bottom:580.520000pt;}
.ye_c00309{bottom:612.520000pt;}
.yd_c00309{bottom:644.520000pt;}
.yc_c00309{bottom:676.520000pt;}
.yb_c00309{bottom:708.520000pt;}
.ya_c00309{bottom:740.520000pt;}
.y9_c00309{bottom:772.520000pt;}
.y8_c00309{bottom:804.520000pt;}
.y7_c00309{bottom:836.520000pt;}
.y6_c00309{bottom:868.520000pt;}
.y5_c00309{bottom:900.520000pt;}
.y4_c00309{bottom:932.520000pt;}
.y3_c00309{bottom:964.520000pt;}
.y2_c00309{bottom:1011.880000pt;}
.h9_c00309{height:17.116000pt;}
.h6_c00309{height:36.561920pt;}
.h7_c00309{height:37.687165pt;}
.ha_c00309{height:41.173333pt;}
.h5_c00309{height:48.000000pt;}
.h8_c00309{height:48.320000pt;}
.h3_c00309{height:49.408000pt;}
.h4_c00309{height:50.928601pt;}
.h2_c00309{height:1067.880000pt;}
.h0_c00309{height:1122.520000pt;}
.h1_c00309{height:1122.666667pt;}
.w5_c00309{width:22.240000pt;}
.w4_c00309{width:580.160000pt;}
.w3_c00309{width:606.080000pt;}
.w2_c00309{width:767.960000pt;}
.w0_c00309{width:793.720000pt;}
.w1_c00309{width:794.000000pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:12.880000pt;}
.xf_c00309{left:25.427600pt;}
.x8_c00309{left:92.436800pt;}
.x2_c00309{left:100.480133pt;}
.x7_c00309{left:110.480000pt;}
.xe_c00309{left:112.400000pt;}
.x10_c00309{left:123.478000pt;}
.x3_c00309{left:147.151733pt;}
.xd_c00309{left:160.817600pt;}
.x11_c00309{left:169.485467pt;}
.x9_c00309{left:190.487200pt;}
.x4_c00309{left:219.118533pt;}
.x5_c00309{left:224.894133pt;}
.x6_c00309{left:230.669867pt;}
.xa_c00309{left:236.494667pt;}
.xb_c00309{left:334.520800pt;}
.xc_c00309{left:351.860267pt;}
.x12_c00309{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_83bb72c84ea1c8c4c03d2c6e.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;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_c00310;src:url('chunks/assets/font_d839e4fa470d9f1e60e4d319.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:0.787000;font-style:normal;font-weight:normal;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_08552329491ae040d844b34e.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:0.787000;font-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_c00310{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00310{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00310{letter-spacing:0.000000px;}
.ls6_c00310{letter-spacing:0.202464px;}
.ls7_c00310{letter-spacing:0.319680px;}
.ls2_c00310{letter-spacing:0.373454px;}
.ls3_c00310{letter-spacing:0.399600px;}
.ls1_c00310{letter-spacing:0.399720px;}
.ls8_c00310{letter-spacing:0.575424px;}
.ls0_c00310{letter-spacing:5.976000px;}
.ls4_c00310{letter-spacing:6.159920px;}
.sc__c00310{text-shadow:none;}
.sc1_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00310{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc1_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00310{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00310{word-spacing:-15.641150px;}
.ws1_c00310{word-spacing:0.000000px;}
._1_c00310{margin-left:-1.040160px;}
._0_c00310{width:1.014000px;}
.fc1_c00310{color:transparent;}
.fc0_c00310{color:rgb(0,0,0);}
.fs2_c00310{font-size:53.280000px;}
.fs3_c00310{font-size:54.919767px;}
.fs4_c00310{font-size:60.000000px;}
.fs0_c00310{font-size:72.000000px;}
.fs1_c00310{font-size:74.215901px;}
.y0_c00310{bottom:0.000000px;}
.y21_c00310{bottom:3.120150px;}
.y20_c00310{bottom:34.744500px;}
.y1e_c00310{bottom:41.040000px;}
.y1_c00310{bottom:54.000000px;}
.y1c_c00310{bottom:58.725000px;}
.y1b_c00310{bottom:94.725000px;}
.y1a_c00310{bottom:130.725000px;}
.y19_c00310{bottom:166.725000px;}
.y1f_c00310{bottom:238.365000px;}
.y18_c00310{bottom:265.725000px;}
.y17_c00310{bottom:301.725000px;}
.y16_c00310{bottom:337.725000px;}
.y15_c00310{bottom:373.725000px;}
.y14_c00310{bottom:409.725000px;}
.y13_c00310{bottom:445.725000px;}
.y12_c00310{bottom:481.725000px;}
.y11_c00310{bottom:517.725000px;}
.y10_c00310{bottom:554.085000px;}
.y1d_c00310{bottom:643.365000px;}
.yf_c00310{bottom:653.085000px;}
.ye_c00310{bottom:689.085000px;}
.yd_c00310{bottom:725.085000px;}
.yc_c00310{bottom:761.085000px;}
.yb_c00310{bottom:797.085000px;}
.ya_c00310{bottom:833.085000px;}
.y9_c00310{bottom:869.085000px;}
.y8_c00310{bottom:905.085000px;}
.y7_c00310{bottom:941.085000px;}
.y6_c00310{bottom:977.085000px;}
.y5_c00310{bottom:1013.085000px;}
.y4_c00310{bottom:1049.085000px;}
.y3_c00310{bottom:1085.085000px;}
.y2_c00310{bottom:1138.365000px;}
.h8_c00310{height:19.255500px;}
.h6_c00310{height:41.132160px;}
.h7_c00310{height:42.398060px;}
.h9_c00310{height:46.320000px;}
.h5_c00310{height:54.000000px;}
.h3_c00310{height:55.584000px;}
.h4_c00310{height:57.294676px;}
.h2_c00310{height:1201.365000px;}
.h0_c00310{height:1262.835000px;}
.h1_c00310{height:1263.000000px;}
.w5_c00310{width:25.020000px;}
.w3_c00310{width:643.320000px;}
.w4_c00310{width:658.080000px;}
.w2_c00310{width:863.955000px;}
.w0_c00310{width:892.935000px;}
.w1_c00310{width:893.250000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:14.490000px;}
.x8_c00310{left:36.702000px;}
.xb_c00310{left:40.261650px;}
.x2_c00310{left:113.040150px;}
.x7_c00310{left:122.850000px;}
.x9_c00310{left:147.008850px;}
.xc_c00310{left:158.074200px;}
.x3_c00310{left:165.545700px;}
.xa_c00310{left:202.520100px;}
.xd_c00310{left:209.832600px;}
.x4_c00310{left:246.508350px;}
.x5_c00310{left:253.005900px;}
.x6_c00310{left:259.503600px;}
.xe_c00310{left:759.915000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls5_c00310{letter-spacing:0.000000pt;}
.ls6_c00310{letter-spacing:0.179968pt;}
.ls7_c00310{letter-spacing:0.284160pt;}
.ls2_c00310{letter-spacing:0.331959pt;}
.ls3_c00310{letter-spacing:0.355200pt;}
.ls1_c00310{letter-spacing:0.355307pt;}
.ls8_c00310{letter-spacing:0.511488pt;}
.ls0_c00310{letter-spacing:5.312000pt;}
.ls4_c00310{letter-spacing:5.475484pt;}
.ws0_c00310{word-spacing:-13.903244pt;}
.ws1_c00310{word-spacing:0.000000pt;}
._1_c00310{margin-left:-0.924587pt;}
._0_c00310{width:0.901333pt;}
.fs2_c00310{font-size:47.360000pt;}
.fs3_c00310{font-size:48.817571pt;}
.fs4_c00310{font-size:53.333333pt;}
.fs0_c00310{font-size:64.000000pt;}
.fs1_c00310{font-size:65.969690pt;}
.y0_c00310{bottom:0.000000pt;}
.y21_c00310{bottom:2.773467pt;}
.y20_c00310{bottom:30.884000pt;}
.y1e_c00310{bottom:36.480000pt;}
.y1_c00310{bottom:48.000000pt;}
.y1c_c00310{bottom:52.200000pt;}
.y1b_c00310{bottom:84.200000pt;}
.y1a_c00310{bottom:116.200000pt;}
.y19_c00310{bottom:148.200000pt;}
.y1f_c00310{bottom:211.880000pt;}
.y18_c00310{bottom:236.200000pt;}
.y17_c00310{bottom:268.200000pt;}
.y16_c00310{bottom:300.200000pt;}
.y15_c00310{bottom:332.200000pt;}
.y14_c00310{bottom:364.200000pt;}
.y13_c00310{bottom:396.200000pt;}
.y12_c00310{bottom:428.200000pt;}
.y11_c00310{bottom:460.200000pt;}
.y10_c00310{bottom:492.520000pt;}
.y1d_c00310{bottom:571.880000pt;}
.yf_c00310{bottom:580.520000pt;}
.ye_c00310{bottom:612.520000pt;}
.yd_c00310{bottom:644.520000pt;}
.yc_c00310{bottom:676.520000pt;}
.yb_c00310{bottom:708.520000pt;}
.ya_c00310{bottom:740.520000pt;}
.y9_c00310{bottom:772.520000pt;}
.y8_c00310{bottom:804.520000pt;}
.y7_c00310{bottom:836.520000pt;}
.y6_c00310{bottom:868.520000pt;}
.y5_c00310{bottom:900.520000pt;}
.y4_c00310{bottom:932.520000pt;}
.y3_c00310{bottom:964.520000pt;}
.y2_c00310{bottom:1011.880000pt;}
.h8_c00310{height:17.116000pt;}
.h6_c00310{height:36.561920pt;}
.h7_c00310{height:37.687165pt;}
.h9_c00310{height:41.173333pt;}
.h5_c00310{height:48.000000pt;}
.h3_c00310{height:49.408000pt;}
.h4_c00310{height:50.928601pt;}
.h2_c00310{height:1067.880000pt;}
.h0_c00310{height:1122.520000pt;}
.h1_c00310{height:1122.666667pt;}
.w5_c00310{width:22.240000pt;}
.w3_c00310{width:571.840000pt;}
.w4_c00310{width:584.960000pt;}
.w2_c00310{width:767.960000pt;}
.w0_c00310{width:793.720000pt;}
.w1_c00310{width:794.000000pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:12.880000pt;}
.x8_c00310{left:32.624000pt;}
.xb_c00310{left:35.788133pt;}
.x2_c00310{left:100.480133pt;}
.x7_c00310{left:109.200000pt;}
.x9_c00310{left:130.674533pt;}
.xc_c00310{left:140.510400pt;}
.x3_c00310{left:147.151733pt;}
.xa_c00310{left:180.017867pt;}
.xd_c00310{left:186.517867pt;}
.x4_c00310{left:219.118533pt;}
.x5_c00310{left:224.894133pt;}
.x6_c00310{left:230.669867pt;}
.xe_c00310{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d07f49a44f2e364ff6d4124f.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.134000;font-style:normal;font-weight:normal;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_3b822f2bb73cd12cd42d7cd6.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;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:ff3_c00311;src:url('chunks/assets/font_90cfccb7a633452c841e8a68.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:0.787000;font-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_c00311{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00311{vertical-align:-24.480000px;}
.v0_c00311{vertical-align:0.000000px;}
.v1_c00311{vertical-align:30.240000px;}
.lsa_c00311{letter-spacing:0.000000px;}
.ls3_c00311{letter-spacing:0.020040px;}
.ls2_c00311{letter-spacing:0.042240px;}
.ls4_c00311{letter-spacing:0.044640px;}
.ls12_c00311{letter-spacing:0.265680px;}
.ls8_c00311{letter-spacing:0.295200px;}
.ls5_c00311{letter-spacing:0.416640px;}
.ls10_c00311{letter-spacing:0.438171px;}
.ls14_c00311{letter-spacing:0.478224px;}
.ls9_c00311{letter-spacing:0.531360px;}
.ls6_c00311{letter-spacing:0.672840px;}
.ls11_c00311{letter-spacing:0.743904px;}
.lsf_c00311{letter-spacing:2.314368px;}
.lsd_c00311{letter-spacing:5.009472px;}
.lsc_c00311{letter-spacing:5.335200px;}
.lsb_c00311{letter-spacing:5.406777px;}
.ls1_c00311{letter-spacing:5.976000px;}
.ls0_c00311{letter-spacing:6.159920px;}
.ls13_c00311{letter-spacing:9.782928px;}
.ls7_c00311{letter-spacing:13.176000px;}
.lse_c00311{letter-spacing:28.476000px;}
.sc__c00311{text-shadow:none;}
.sc1_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00311{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc1_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00311{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00311{word-spacing:-25.992000px;}
.ws1_c00311{word-spacing:-20.621952px;}
.ws3_c00311{word-spacing:-16.944480px;}
.ws2_c00311{word-spacing:-10.008000px;}
.ws4_c00311{word-spacing:0.000000px;}
._2_c00311{margin-left:-28.440000px;}
._12_c00311{margin-left:-12.672000px;}
._15_c00311{margin-left:-10.332000px;}
._14_c00311{margin-left:-9.033120px;}
._13_c00311{margin-left:-2.440800px;}
._0_c00311{margin-left:-1.160640px;}
._5_c00311{width:1.224000px;}
._1_c00311{width:2.376000px;}
._7_c00311{width:4.104000px;}
._4_c00311{width:5.832000px;}
._a_c00311{width:7.344000px;}
._c_c00311{width:8.352000px;}
._8_c00311{width:9.432000px;}
._d_c00311{width:10.800000px;}
._6_c00311{width:12.672000px;}
._e_c00311{width:14.112000px;}
._10_c00311{width:16.056000px;}
._9_c00311{width:21.312000px;}
._11_c00311{width:23.184000px;}
._3_c00311{width:28.440000px;}
._b_c00311{width:34.488000px;}
._f_c00311{width:35.697849px;}
.fc0_c00311{color:rgb(0,0,0);}
.fs5_c00311{font-size:36.000000px;}
.fs4_c00311{font-size:41.760000px;}
.fs3_c00311{font-size:56.160000px;}
.fs2_c00311{font-size:57.888403px;}
.fs6_c00311{font-size:59.040000px;}
.fs8_c00311{font-size:60.000000px;}
.fs7_c00311{font-size:60.857039px;}
.fs0_c00311{font-size:72.000000px;}
.fs1_c00311{font-size:74.215901px;}
.y0_c00311{bottom:0.000000px;}
.y30_c00311{bottom:3.120150px;}
.y2f_c00311{bottom:34.744500px;}
.y1_c00311{bottom:54.000000px;}
.y2e_c00311{bottom:61.605000px;}
.y2d_c00311{bottom:78.885000px;}
.y2c_c00311{bottom:90.401040px;}
.y2b_c00311{bottom:113.805000px;}
.y2a_c00311{bottom:131.445000px;}
.y29_c00311{bottom:142.961040px;}
.y28_c00311{bottom:160.245000px;}
.y27_c00311{bottom:166.365000px;}
.y26_c00311{bottom:193.005000px;}
.y25_c00311{bottom:246.285000px;}
.y24_c00311{bottom:267.165000px;}
.y23_c00311{bottom:288.405000px;}
.y22_c00311{bottom:309.285000px;}
.y21_c00311{bottom:330.165000px;}
.y20_c00311{bottom:366.165000px;}
.y1f_c00311{bottom:402.165000px;}
.y1e_c00311{bottom:440.685000px;}
.y1d_c00311{bottom:478.845000px;}
.y1c_c00311{bottom:514.845000px;}
.y1b_c00311{bottom:535.725000px;}
.y1a_c00311{bottom:556.965000px;}
.y19_c00311{bottom:577.845000px;}
.y18_c00311{bottom:598.725000px;}
.y17_c00311{bottom:619.965000px;}
.y16_c00311{bottom:640.845000px;}
.y15_c00311{bottom:661.725000px;}
.y14_c00311{bottom:682.965000px;}
.y13_c00311{bottom:718.965000px;}
.y12_c00311{bottom:739.845000px;}
.y11_c00311{bottom:761.085000px;}
.y10_c00311{bottom:781.965000px;}
.yf_c00311{bottom:802.845000px;}
.ye_c00311{bottom:824.085000px;}
.yd_c00311{bottom:844.965000px;}
.yc_c00311{bottom:865.845000px;}
.yb_c00311{bottom:901.845000px;}
.ya_c00311{bottom:923.085000px;}
.y9_c00311{bottom:943.965000px;}
.y8_c00311{bottom:964.845000px;}
.y7_c00311{bottom:986.085000px;}
.y6_c00311{bottom:1006.965000px;}
.y5_c00311{bottom:1027.845000px;}
.y4_c00311{bottom:1049.085000px;}
.y3_c00311{bottom:1085.085000px;}
.y2_c00311{bottom:1138.365000px;}
.h9_c00311{height:19.255500px;}
.h6_c00311{height:32.616000px;}
.ha_c00311{height:46.320000px;}
.h7_c00311{height:46.981634px;}
.h8_c00311{height:53.490240px;}
.h4_c00311{height:57.294676px;}
.h3_c00311{height:65.232000px;}
.h5_c00311{height:68.074560px;}
.h2_c00311{height:1201.365000px;}
.h0_c00311{height:1262.835000px;}
.h1_c00311{height:1263.000000px;}
.w3_c00311{width:25.020000px;}
.w2_c00311{width:863.955000px;}
.w0_c00311{width:892.935000px;}
.w1_c00311{width:893.250000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:14.490000px;}
.x2_c00311{left:113.040150px;}
.x22_c00311{left:119.034000px;}
.xb_c00311{left:134.163600px;}
.x8_c00311{left:145.025700px;}
.x5_c00311{left:150.874200px;}
.x3_c00311{left:165.545700px;}
.x25_c00311{left:172.024950px;}
.x15_c00311{left:178.291950px;}
.x1d_c00311{left:184.049250px;}
.xc_c00311{left:203.175000px;}
.x4_c00311{left:215.008650px;}
.x29_c00311{left:255.942600px;}
.xf_c00311{left:259.594500px;}
.x19_c00311{left:262.315500px;}
.x2a_c00311{left:276.448650px;}
.x16_c00311{left:290.414100px;}
.x10_c00311{left:291.580050px;}
.x6_c00311{left:298.482000px;}
.x7_c00311{left:304.979700px;}
.xd_c00311{left:306.540450px;}
.x26_c00311{left:325.040400px;}
.x1e_c00311{left:349.155750px;}
.x1f_c00311{left:354.159600px;}
.x1a_c00311{left:355.301850px;}
.x1b_c00311{left:363.113550px;}
.x1c_c00311{left:395.099100px;}
.x24_c00311{left:408.711150px;}
.xe_c00311{left:432.792150px;}
.x27_c00311{left:449.887200px;}
.x23_c00311{left:460.415850px;}
.x28_c00311{left:481.872750px;}
.x11_c00311{left:528.404700px;}
.x12_c00311{left:566.426550px;}
.x13_c00311{left:606.068100px;}
.x9_c00311{left:610.742400px;}
.x17_c00311{left:630.725100px;}
.x14_c00311{left:638.053650px;}
.x20_c00311{left:667.029450px;}
.x18_c00311{left:679.720050px;}
.x21_c00311{left:699.015000px;}
.xa_c00311{left:703.765200px;}
.x2b_c00311{left:759.915000px;}
@media print{
.v2_c00311{vertical-align:-21.760000pt;}
.v0_c00311{vertical-align:0.000000pt;}
.v1_c00311{vertical-align:26.880000pt;}
.lsa_c00311{letter-spacing:0.000000pt;}
.ls3_c00311{letter-spacing:0.017813pt;}
.ls2_c00311{letter-spacing:0.037547pt;}
.ls4_c00311{letter-spacing:0.039680pt;}
.ls12_c00311{letter-spacing:0.236160pt;}
.ls8_c00311{letter-spacing:0.262400pt;}
.ls5_c00311{letter-spacing:0.370347pt;}
.ls10_c00311{letter-spacing:0.389485pt;}
.ls14_c00311{letter-spacing:0.425088pt;}
.ls9_c00311{letter-spacing:0.472320pt;}
.ls6_c00311{letter-spacing:0.598080pt;}
.ls11_c00311{letter-spacing:0.661248pt;}
.lsf_c00311{letter-spacing:2.057216pt;}
.lsd_c00311{letter-spacing:4.452864pt;}
.lsc_c00311{letter-spacing:4.742400pt;}
.lsb_c00311{letter-spacing:4.806024pt;}
.ls1_c00311{letter-spacing:5.312000pt;}
.ls0_c00311{letter-spacing:5.475484pt;}
.ls13_c00311{letter-spacing:8.695936pt;}
.ls7_c00311{letter-spacing:11.712000pt;}
.lse_c00311{letter-spacing:25.312000pt;}
.ws0_c00311{word-spacing:-23.104000pt;}
.ws1_c00311{word-spacing:-18.330624pt;}
.ws3_c00311{word-spacing:-15.061760pt;}
.ws2_c00311{word-spacing:-8.896000pt;}
.ws4_c00311{word-spacing:0.000000pt;}
._2_c00311{margin-left:-25.280000pt;}
._12_c00311{margin-left:-11.264000pt;}
._15_c00311{margin-left:-9.184000pt;}
._14_c00311{margin-left:-8.029440pt;}
._13_c00311{margin-left:-2.169600pt;}
._0_c00311{margin-left:-1.031680pt;}
._5_c00311{width:1.088000pt;}
._1_c00311{width:2.112000pt;}
._7_c00311{width:3.648000pt;}
._4_c00311{width:5.184000pt;}
._a_c00311{width:6.528000pt;}
._c_c00311{width:7.424000pt;}
._8_c00311{width:8.384000pt;}
._d_c00311{width:9.600000pt;}
._6_c00311{width:11.264000pt;}
._e_c00311{width:12.544000pt;}
._10_c00311{width:14.272000pt;}
._9_c00311{width:18.944000pt;}
._11_c00311{width:20.608000pt;}
._3_c00311{width:25.280000pt;}
._b_c00311{width:30.656000pt;}
._f_c00311{width:31.731421pt;}
.fs5_c00311{font-size:32.000000pt;}
.fs4_c00311{font-size:37.120000pt;}
.fs3_c00311{font-size:49.920000pt;}
.fs2_c00311{font-size:51.456358pt;}
.fs6_c00311{font-size:52.480000pt;}
.fs8_c00311{font-size:53.333333pt;}
.fs7_c00311{font-size:54.095146pt;}
.fs0_c00311{font-size:64.000000pt;}
.fs1_c00311{font-size:65.969690pt;}
.y0_c00311{bottom:0.000000pt;}
.y30_c00311{bottom:2.773467pt;}
.y2f_c00311{bottom:30.884000pt;}
.y1_c00311{bottom:48.000000pt;}
.y2e_c00311{bottom:54.760000pt;}
.y2d_c00311{bottom:70.120000pt;}
.y2c_c00311{bottom:80.356480pt;}
.y2b_c00311{bottom:101.160000pt;}
.y2a_c00311{bottom:116.840000pt;}
.y29_c00311{bottom:127.076480pt;}
.y28_c00311{bottom:142.440000pt;}
.y27_c00311{bottom:147.880000pt;}
.y26_c00311{bottom:171.560000pt;}
.y25_c00311{bottom:218.920000pt;}
.y24_c00311{bottom:237.480000pt;}
.y23_c00311{bottom:256.360000pt;}
.y22_c00311{bottom:274.920000pt;}
.y21_c00311{bottom:293.480000pt;}
.y20_c00311{bottom:325.480000pt;}
.y1f_c00311{bottom:357.480000pt;}
.y1e_c00311{bottom:391.720000pt;}
.y1d_c00311{bottom:425.640000pt;}
.y1c_c00311{bottom:457.640000pt;}
.y1b_c00311{bottom:476.200000pt;}
.y1a_c00311{bottom:495.080000pt;}
.y19_c00311{bottom:513.640000pt;}
.y18_c00311{bottom:532.200000pt;}
.y17_c00311{bottom:551.080000pt;}
.y16_c00311{bottom:569.640000pt;}
.y15_c00311{bottom:588.200000pt;}
.y14_c00311{bottom:607.080000pt;}
.y13_c00311{bottom:639.080000pt;}
.y12_c00311{bottom:657.640000pt;}
.y11_c00311{bottom:676.520000pt;}
.y10_c00311{bottom:695.080000pt;}
.yf_c00311{bottom:713.640000pt;}
.ye_c00311{bottom:732.520000pt;}
.yd_c00311{bottom:751.080000pt;}
.yc_c00311{bottom:769.640000pt;}
.yb_c00311{bottom:801.640000pt;}
.ya_c00311{bottom:820.520000pt;}
.y9_c00311{bottom:839.080000pt;}
.y8_c00311{bottom:857.640000pt;}
.y7_c00311{bottom:876.520000pt;}
.y6_c00311{bottom:895.080000pt;}
.y5_c00311{bottom:913.640000pt;}
.y4_c00311{bottom:932.520000pt;}
.y3_c00311{bottom:964.520000pt;}
.y2_c00311{bottom:1011.880000pt;}
.h9_c00311{height:17.116000pt;}
.h6_c00311{height:28.992000pt;}
.ha_c00311{height:41.173333pt;}
.h7_c00311{height:41.761453pt;}
.h8_c00311{height:47.546880pt;}
.h4_c00311{height:50.928601pt;}
.h3_c00311{height:57.984000pt;}
.h5_c00311{height:60.510720pt;}
.h2_c00311{height:1067.880000pt;}
.h0_c00311{height:1122.520000pt;}
.h1_c00311{height:1122.666667pt;}
.w3_c00311{width:22.240000pt;}
.w2_c00311{width:767.960000pt;}
.w0_c00311{width:793.720000pt;}
.w1_c00311{width:794.000000pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:12.880000pt;}
.x2_c00311{left:100.480133pt;}
.x22_c00311{left:105.808000pt;}
.xb_c00311{left:119.256533pt;}
.x8_c00311{left:128.911733pt;}
.x5_c00311{left:134.110400pt;}
.x3_c00311{left:147.151733pt;}
.x25_c00311{left:152.911067pt;}
.x15_c00311{left:158.481733pt;}
.x1d_c00311{left:163.599333pt;}
.xc_c00311{left:180.600000pt;}
.x4_c00311{left:191.118800pt;}
.x29_c00311{left:227.504533pt;}
.xf_c00311{left:230.750667pt;}
.x19_c00311{left:233.169333pt;}
.x2a_c00311{left:245.732133pt;}
.x16_c00311{left:258.145867pt;}
.x10_c00311{left:259.182267pt;}
.x6_c00311{left:265.317333pt;}
.x7_c00311{left:271.093067pt;}
.xd_c00311{left:272.480400pt;}
.x26_c00311{left:288.924800pt;}
.x1e_c00311{left:310.360667pt;}
.x1f_c00311{left:314.808533pt;}
.x1a_c00311{left:315.823867pt;}
.x1b_c00311{left:322.767600pt;}
.x1c_c00311{left:351.199200pt;}
.x24_c00311{left:363.298800pt;}
.xe_c00311{left:384.704133pt;}
.x27_c00311{left:399.899733pt;}
.x23_c00311{left:409.258533pt;}
.x28_c00311{left:428.331333pt;}
.x11_c00311{left:469.693067pt;}
.x12_c00311{left:503.490267pt;}
.x13_c00311{left:538.727200pt;}
.x9_c00311{left:542.882133pt;}
.x17_c00311{left:560.644533pt;}
.x14_c00311{left:567.158800pt;}
.x20_c00311{left:592.915067pt;}
.x18_c00311{left:604.195600pt;}
.x21_c00311{left:621.346667pt;}
.xa_c00311{left:625.569067pt;}
.x2b_c00311{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_663f8076009262662288f36e.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.134000;font-style:normal;font-weight:normal;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_ea6213583cec8df90a860383.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;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:ff3_c00312;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_fda1e4678868fb441765681b.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:0.787000;font-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_c00312{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00312{vertical-align:-24.480000px;}
.v0_c00312{vertical-align:0.000000px;}
.v1_c00312{vertical-align:30.240000px;}
.ls7_c00312{letter-spacing:0.000000px;}
.ls9_c00312{letter-spacing:0.265680px;}
.ls3_c00312{letter-spacing:0.295200px;}
.ls4_c00312{letter-spacing:0.531360px;}
.ls2_c00312{letter-spacing:0.560880px;}
.ls0_c00312{letter-spacing:0.783240px;}
.ls8_c00312{letter-spacing:5.430672px;}
.ls1_c00312{letter-spacing:5.958600px;}
.ls5_c00312{letter-spacing:5.976000px;}
.ls6_c00312{letter-spacing:6.159920px;}
.sc__c00312{text-shadow:none;}
.sc1_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00312{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc1_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00312{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00312{word-spacing:-21.043152px;}
.ws3_c00312{word-spacing:-16.944480px;}
.ws0_c00312{word-spacing:-11.609280px;}
.ws2_c00312{word-spacing:-10.008000px;}
.ws4_c00312{word-spacing:0.000000px;}
._f_c00312{margin-left:-1.121760px;}
._1_c00312{width:1.296000px;}
._3_c00312{width:3.096000px;}
._5_c00312{width:4.104000px;}
._b_c00312{width:5.472000px;}
._e_c00312{width:6.552000px;}
._4_c00312{width:7.848000px;}
._0_c00312{width:8.928000px;}
._6_c00312{width:10.728000px;}
._d_c00312{width:11.736000px;}
._7_c00312{width:13.752000px;}
._8_c00312{width:14.832000px;}
._9_c00312{width:18.576000px;}
._c_c00312{width:26.280000px;}
._a_c00312{width:39.600000px;}
._2_c00312{width:40.968000px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs4_c00312{font-size:36.000000px;}
.fs2_c00312{font-size:41.760000px;}
.fs3_c00312{font-size:56.160000px;}
.fs5_c00312{font-size:59.040000px;}
.fs6_c00312{font-size:60.000000px;}
.fs0_c00312{font-size:72.000000px;}
.fs1_c00312{font-size:74.215901px;}
.y0_c00312{bottom:0.000000px;}
.y2a_c00312{bottom:3.120150px;}
.y29_c00312{bottom:34.744500px;}
.y1_c00312{bottom:54.000000px;}
.y28_c00312{bottom:61.605000px;}
.y27_c00312{bottom:78.885000px;}
.y26_c00312{bottom:105.525000px;}
.y25_c00312{bottom:160.965000px;}
.y24_c00312{bottom:196.965000px;}
.y23_c00312{bottom:232.965000px;}
.y22_c00312{bottom:268.965000px;}
.y21_c00312{bottom:304.965000px;}
.y20_c00312{bottom:340.965000px;}
.y1f_c00312{bottom:376.965000px;}
.y1e_c00312{bottom:397.845000px;}
.y1d_c00312{bottom:433.845000px;}
.y1c_c00312{bottom:454.725000px;}
.y1b_c00312{bottom:490.725000px;}
.y1a_c00312{bottom:526.725000px;}
.y19_c00312{bottom:547.965000px;}
.y18_c00312{bottom:568.845000px;}
.y17_c00312{bottom:589.725000px;}
.y16_c00312{bottom:610.965000px;}
.y15_c00312{bottom:631.845000px;}
.y14_c00312{bottom:652.725000px;}
.y13_c00312{bottom:673.965000px;}
.y12_c00312{bottom:694.845000px;}
.y11_c00312{bottom:730.845000px;}
.y10_c00312{bottom:766.845000px;}
.yf_c00312{bottom:802.845000px;}
.ye_c00312{bottom:838.845000px;}
.yd_c00312{bottom:860.085000px;}
.yc_c00312{bottom:880.965000px;}
.yb_c00312{bottom:901.845000px;}
.ya_c00312{bottom:923.085000px;}
.y9_c00312{bottom:943.965000px;}
.y8_c00312{bottom:964.845000px;}
.y7_c00312{bottom:986.085000px;}
.y6_c00312{bottom:1022.085000px;}
.y5_c00312{bottom:1042.965000px;}
.y4_c00312{bottom:1063.845000px;}
.y3_c00312{bottom:1085.085000px;}
.y2_c00312{bottom:1138.365000px;}
.h8_c00312{height:19.255500px;}
.h7_c00312{height:32.616000px;}
.h9_c00312{height:46.320000px;}
.h6_c00312{height:52.031250px;}
.h4_c00312{height:57.294676px;}
.h3_c00312{height:65.232000px;}
.h5_c00312{height:68.074560px;}
.h2_c00312{height:1201.365000px;}
.h0_c00312{height:1262.835000px;}
.h1_c00312{height:1263.000000px;}
.w3_c00312{width:25.020000px;}
.w2_c00312{width:863.955000px;}
.w0_c00312{width:892.935000px;}
.w1_c00312{width:893.250000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:14.490000px;}
.x2_c00312{left:113.040150px;}
.xe_c00312{left:140.039400px;}
.x15_c00312{left:148.031550px;}
.x11_c00312{left:150.029700px;}
.x1a_c00312{left:153.035550px;}
.x3_c00312{left:165.545700px;}
.xf_c00312{left:167.040150px;}
.xd_c00312{left:170.027400px;}
.x4_c00312{left:215.008650px;}
.x10_c00312{left:247.048800px;}
.x1b_c00312{left:252.052800px;}
.x19_c00312{left:260.026650px;}
.x5_c00312{left:374.411850px;}
.x6_c00312{left:392.691600px;}
.x7_c00312{left:466.277400px;}
.x12_c00312{left:488.567100px;}
.x8_c00312{left:531.256350px;}
.x16_c00312{left:534.462600px;}
.x9_c00312{left:536.554350px;}
.xa_c00312{left:568.539900px;}
.x17_c00312{left:570.461850px;}
.xb_c00312{left:625.116600px;}
.x13_c00312{left:642.409800px;}
.xc_c00312{left:644.106150px;}
.x18_c00312{left:714.390750px;}
.x14_c00312{left:750.390000px;}
.x1c_c00312{left:759.915000px;}
@media print{
.v2_c00312{vertical-align:-21.760000pt;}
.v0_c00312{vertical-align:0.000000pt;}
.v1_c00312{vertical-align:26.880000pt;}
.ls7_c00312{letter-spacing:0.000000pt;}
.ls9_c00312{letter-spacing:0.236160pt;}
.ls3_c00312{letter-spacing:0.262400pt;}
.ls4_c00312{letter-spacing:0.472320pt;}
.ls2_c00312{letter-spacing:0.498560pt;}
.ls0_c00312{letter-spacing:0.696213pt;}
.ls8_c00312{letter-spacing:4.827264pt;}
.ls1_c00312{letter-spacing:5.296533pt;}
.ls5_c00312{letter-spacing:5.312000pt;}
.ls6_c00312{letter-spacing:5.475484pt;}
.ws1_c00312{word-spacing:-18.705024pt;}
.ws3_c00312{word-spacing:-15.061760pt;}
.ws0_c00312{word-spacing:-10.319360pt;}
.ws2_c00312{word-spacing:-8.896000pt;}
.ws4_c00312{word-spacing:0.000000pt;}
._f_c00312{margin-left:-0.997120pt;}
._1_c00312{width:1.152000pt;}
._3_c00312{width:2.752000pt;}
._5_c00312{width:3.648000pt;}
._b_c00312{width:4.864000pt;}
._e_c00312{width:5.824000pt;}
._4_c00312{width:6.976000pt;}
._0_c00312{width:7.936000pt;}
._6_c00312{width:9.536000pt;}
._d_c00312{width:10.432000pt;}
._7_c00312{width:12.224000pt;}
._8_c00312{width:13.184000pt;}
._9_c00312{width:16.512000pt;}
._c_c00312{width:23.360000pt;}
._a_c00312{width:35.200000pt;}
._2_c00312{width:36.416000pt;}
.fs4_c00312{font-size:32.000000pt;}
.fs2_c00312{font-size:37.120000pt;}
.fs3_c00312{font-size:49.920000pt;}
.fs5_c00312{font-size:52.480000pt;}
.fs6_c00312{font-size:53.333333pt;}
.fs0_c00312{font-size:64.000000pt;}
.fs1_c00312{font-size:65.969690pt;}
.y0_c00312{bottom:0.000000pt;}
.y2a_c00312{bottom:2.773467pt;}
.y29_c00312{bottom:30.884000pt;}
.y1_c00312{bottom:48.000000pt;}
.y28_c00312{bottom:54.760000pt;}
.y27_c00312{bottom:70.120000pt;}
.y26_c00312{bottom:93.800000pt;}
.y25_c00312{bottom:143.080000pt;}
.y24_c00312{bottom:175.080000pt;}
.y23_c00312{bottom:207.080000pt;}
.y22_c00312{bottom:239.080000pt;}
.y21_c00312{bottom:271.080000pt;}
.y20_c00312{bottom:303.080000pt;}
.y1f_c00312{bottom:335.080000pt;}
.y1e_c00312{bottom:353.640000pt;}
.y1d_c00312{bottom:385.640000pt;}
.y1c_c00312{bottom:404.200000pt;}
.y1b_c00312{bottom:436.200000pt;}
.y1a_c00312{bottom:468.200000pt;}
.y19_c00312{bottom:487.080000pt;}
.y18_c00312{bottom:505.640000pt;}
.y17_c00312{bottom:524.200000pt;}
.y16_c00312{bottom:543.080000pt;}
.y15_c00312{bottom:561.640000pt;}
.y14_c00312{bottom:580.200000pt;}
.y13_c00312{bottom:599.080000pt;}
.y12_c00312{bottom:617.640000pt;}
.y11_c00312{bottom:649.640000pt;}
.y10_c00312{bottom:681.640000pt;}
.yf_c00312{bottom:713.640000pt;}
.ye_c00312{bottom:745.640000pt;}
.yd_c00312{bottom:764.520000pt;}
.yc_c00312{bottom:783.080000pt;}
.yb_c00312{bottom:801.640000pt;}
.ya_c00312{bottom:820.520000pt;}
.y9_c00312{bottom:839.080000pt;}
.y8_c00312{bottom:857.640000pt;}
.y7_c00312{bottom:876.520000pt;}
.y6_c00312{bottom:908.520000pt;}
.y5_c00312{bottom:927.080000pt;}
.y4_c00312{bottom:945.640000pt;}
.y3_c00312{bottom:964.520000pt;}
.y2_c00312{bottom:1011.880000pt;}
.h8_c00312{height:17.116000pt;}
.h7_c00312{height:28.992000pt;}
.h9_c00312{height:41.173333pt;}
.h6_c00312{height:46.250000pt;}
.h4_c00312{height:50.928601pt;}
.h3_c00312{height:57.984000pt;}
.h5_c00312{height:60.510720pt;}
.h2_c00312{height:1067.880000pt;}
.h0_c00312{height:1122.520000pt;}
.h1_c00312{height:1122.666667pt;}
.w3_c00312{width:22.240000pt;}
.w2_c00312{width:767.960000pt;}
.w0_c00312{width:793.720000pt;}
.w1_c00312{width:794.000000pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:12.880000pt;}
.x2_c00312{left:100.480133pt;}
.xe_c00312{left:124.479467pt;}
.x15_c00312{left:131.583600pt;}
.x11_c00312{left:133.359733pt;}
.x1a_c00312{left:136.031600pt;}
.x3_c00312{left:147.151733pt;}
.xf_c00312{left:148.480133pt;}
.xd_c00312{left:151.135467pt;}
.x4_c00312{left:191.118800pt;}
.x10_c00312{left:219.598933pt;}
.x1b_c00312{left:224.046933pt;}
.x19_c00312{left:231.134800pt;}
.x5_c00312{left:332.810533pt;}
.x6_c00312{left:349.059200pt;}
.x7_c00312{left:414.468800pt;}
.x12_c00312{left:434.281867pt;}
.x8_c00312{left:472.227867pt;}
.x16_c00312{left:475.077867pt;}
.x9_c00312{left:476.937200pt;}
.xa_c00312{left:505.368800pt;}
.x17_c00312{left:507.077200pt;}
.xb_c00312{left:555.659200pt;}
.x13_c00312{left:571.030933pt;}
.xc_c00312{left:572.538800pt;}
.x18_c00312{left:635.014000pt;}
.x14_c00312{left:667.013333pt;}
.x1c_c00312{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a99ad431b8ed2a13bc56536b.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.134000;font-style:normal;font-weight:normal;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_f986c992594ed198c8939ae9.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;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:ff3_c00313;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00313;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00313;src:url('chunks/assets/font_02f13c712827b698b0e624d5.woff2')format("woff");}.ff7_c00313{font-family:ff7_c00313;line-height:0.787000;font-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_c00313{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00313{letter-spacing:0.000000px;}
.ls6_c00313{letter-spacing:5.430672px;}
.ls0_c00313{letter-spacing:5.967600px;}
.ls1_c00313{letter-spacing:5.976000px;}
.ls4_c00313{letter-spacing:6.159920px;}
.ls2_c00313{letter-spacing:22.608000px;}
.ls3_c00313{letter-spacing:54.864000px;}
.sc__c00313{text-shadow:none;}
.sc1_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00313{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc1_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00313{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00313{word-spacing:-21.043152px;}
.ws1_c00313{word-spacing:0.000000px;}
._1_c00313{margin-left:-1.179360px;}
._5_c00313{width:1.512000px;}
._7_c00313{width:4.464000px;}
._0_c00313{width:5.904000px;}
._6_c00313{width:7.416000px;}
._2_c00313{width:10.080000px;}
._3_c00313{width:11.232000px;}
._4_c00313{width:12.240000px;}
._8_c00313{width:16.632000px;}
._9_c00313{width:19.008000px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs2_c00313{font-size:56.160000px;}
.fs3_c00313{font-size:60.000000px;}
.fs0_c00313{font-size:72.000000px;}
.fs1_c00313{font-size:74.215901px;}
.y0_c00313{bottom:0.000000px;}
.y26_c00313{bottom:3.120150px;}
.y25_c00313{bottom:34.744500px;}
.y1_c00313{bottom:54.000000px;}
.y24_c00313{bottom:85.725000px;}
.y23_c00313{bottom:121.725000px;}
.y22_c00313{bottom:142.965000px;}
.y21_c00313{bottom:178.965000px;}
.y20_c00313{bottom:214.965000px;}
.y1f_c00313{bottom:235.845000px;}
.y1e_c00313{bottom:271.845000px;}
.y1d_c00313{bottom:292.725000px;}
.y1c_c00313{bottom:328.725000px;}
.y1b_c00313{bottom:364.725000px;}
.y1a_c00313{bottom:385.965000px;}
.y19_c00313{bottom:406.845000px;}
.y18_c00313{bottom:427.725000px;}
.y17_c00313{bottom:463.725000px;}
.y16_c00313{bottom:484.965000px;}
.y15_c00313{bottom:505.845000px;}
.y14_c00313{bottom:541.845000px;}
.y13_c00313{bottom:577.845000px;}
.y12_c00313{bottom:602.325000px;}
.y11_c00313{bottom:622.845000px;}
.y10_c00313{bottom:658.845000px;}
.yf_c00313{bottom:694.845000px;}
.ye_c00313{bottom:730.845000px;}
.yd_c00313{bottom:755.325000px;}
.yc_c00313{bottom:775.845000px;}
.yb_c00313{bottom:811.845000px;}
.ya_c00313{bottom:847.845000px;}
.y9_c00313{bottom:883.845000px;}
.y8_c00313{bottom:919.845000px;}
.y7_c00313{bottom:955.845000px;}
.y6_c00313{bottom:991.845000px;}
.y5_c00313{bottom:1013.085000px;}
.y4_c00313{bottom:1049.085000px;}
.y3_c00313{bottom:1085.085000px;}
.y2_c00313{bottom:1138.365000px;}
.h6_c00313{height:19.255500px;}
.h7_c00313{height:46.320000px;}
.h5_c00313{height:52.031250px;}
.h4_c00313{height:57.294676px;}
.h3_c00313{height:65.232000px;}
.h2_c00313{height:1201.365000px;}
.h0_c00313{height:1262.835000px;}
.h1_c00313{height:1263.000000px;}
.w3_c00313{width:25.020000px;}
.w2_c00313{width:863.955000px;}
.w0_c00313{width:892.935000px;}
.w1_c00313{width:893.250000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:14.490000px;}
.x2_c00313{left:113.040150px;}
.x5_c00313{left:140.038650px;}
.xd_c00313{left:148.031550px;}
.x8_c00313{left:150.029700px;}
.x9_c00313{left:154.514250px;}
.x3_c00313{left:165.545700px;}
.x6_c00313{left:167.040150px;}
.x14_c00313{left:181.060950px;}
.x17_c00313{left:194.039100px;}
.x4_c00313{left:215.008650px;}
.xa_c00313{left:247.048800px;}
.x11_c00313{left:252.167400px;}
.x10_c00313{left:260.026650px;}
.x12_c00313{left:265.163100px;}
.xb_c00313{left:274.047750px;}
.x18_c00313{left:276.045750px;}
.x7_c00313{left:285.046200px;}
.xc_c00313{left:287.043450px;}
.x15_c00313{left:586.080300px;}
.x19_c00313{left:656.126850px;}
.x16_c00313{left:667.508100px;}
.x1a_c00313{left:673.118850px;}
.x13_c00313{left:692.377050px;}
.xe_c00313{left:714.390750px;}
.x1b_c00313{left:745.118100px;}
.xf_c00313{left:750.390000px;}
.x1c_c00313{left:759.915000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls5_c00313{letter-spacing:0.000000pt;}
.ls6_c00313{letter-spacing:4.827264pt;}
.ls0_c00313{letter-spacing:5.304533pt;}
.ls1_c00313{letter-spacing:5.312000pt;}
.ls4_c00313{letter-spacing:5.475484pt;}
.ls2_c00313{letter-spacing:20.096000pt;}
.ls3_c00313{letter-spacing:48.768000pt;}
.ws0_c00313{word-spacing:-18.705024pt;}
.ws1_c00313{word-spacing:0.000000pt;}
._1_c00313{margin-left:-1.048320pt;}
._5_c00313{width:1.344000pt;}
._7_c00313{width:3.968000pt;}
._0_c00313{width:5.248000pt;}
._6_c00313{width:6.592000pt;}
._2_c00313{width:8.960000pt;}
._3_c00313{width:9.984000pt;}
._4_c00313{width:10.880000pt;}
._8_c00313{width:14.784000pt;}
._9_c00313{width:16.896000pt;}
.fs2_c00313{font-size:49.920000pt;}
.fs3_c00313{font-size:53.333333pt;}
.fs0_c00313{font-size:64.000000pt;}
.fs1_c00313{font-size:65.969690pt;}
.y0_c00313{bottom:0.000000pt;}
.y26_c00313{bottom:2.773467pt;}
.y25_c00313{bottom:30.884000pt;}
.y1_c00313{bottom:48.000000pt;}
.y24_c00313{bottom:76.200000pt;}
.y23_c00313{bottom:108.200000pt;}
.y22_c00313{bottom:127.080000pt;}
.y21_c00313{bottom:159.080000pt;}
.y20_c00313{bottom:191.080000pt;}
.y1f_c00313{bottom:209.640000pt;}
.y1e_c00313{bottom:241.640000pt;}
.y1d_c00313{bottom:260.200000pt;}
.y1c_c00313{bottom:292.200000pt;}
.y1b_c00313{bottom:324.200000pt;}
.y1a_c00313{bottom:343.080000pt;}
.y19_c00313{bottom:361.640000pt;}
.y18_c00313{bottom:380.200000pt;}
.y17_c00313{bottom:412.200000pt;}
.y16_c00313{bottom:431.080000pt;}
.y15_c00313{bottom:449.640000pt;}
.y14_c00313{bottom:481.640000pt;}
.y13_c00313{bottom:513.640000pt;}
.y12_c00313{bottom:535.400000pt;}
.y11_c00313{bottom:553.640000pt;}
.y10_c00313{bottom:585.640000pt;}
.yf_c00313{bottom:617.640000pt;}
.ye_c00313{bottom:649.640000pt;}
.yd_c00313{bottom:671.400000pt;}
.yc_c00313{bottom:689.640000pt;}
.yb_c00313{bottom:721.640000pt;}
.ya_c00313{bottom:753.640000pt;}
.y9_c00313{bottom:785.640000pt;}
.y8_c00313{bottom:817.640000pt;}
.y7_c00313{bottom:849.640000pt;}
.y6_c00313{bottom:881.640000pt;}
.y5_c00313{bottom:900.520000pt;}
.y4_c00313{bottom:932.520000pt;}
.y3_c00313{bottom:964.520000pt;}
.y2_c00313{bottom:1011.880000pt;}
.h6_c00313{height:17.116000pt;}
.h7_c00313{height:41.173333pt;}
.h5_c00313{height:46.250000pt;}
.h4_c00313{height:50.928601pt;}
.h3_c00313{height:57.984000pt;}
.h2_c00313{height:1067.880000pt;}
.h0_c00313{height:1122.520000pt;}
.h1_c00313{height:1122.666667pt;}
.w3_c00313{width:22.240000pt;}
.w2_c00313{width:767.960000pt;}
.w0_c00313{width:793.720000pt;}
.w1_c00313{width:794.000000pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:12.880000pt;}
.x2_c00313{left:100.480133pt;}
.x5_c00313{left:124.478800pt;}
.xd_c00313{left:131.583600pt;}
.x8_c00313{left:133.359733pt;}
.x9_c00313{left:137.346000pt;}
.x3_c00313{left:147.151733pt;}
.x6_c00313{left:148.480133pt;}
.x14_c00313{left:160.943067pt;}
.x17_c00313{left:172.479200pt;}
.x4_c00313{left:191.118800pt;}
.xa_c00313{left:219.598933pt;}
.x11_c00313{left:224.148800pt;}
.x10_c00313{left:231.134800pt;}
.x12_c00313{left:235.700533pt;}
.xb_c00313{left:243.598000pt;}
.x18_c00313{left:245.374000pt;}
.x7_c00313{left:253.374400pt;}
.xc_c00313{left:255.149733pt;}
.x15_c00313{left:520.960267pt;}
.x19_c00313{left:583.223867pt;}
.x16_c00313{left:593.340533pt;}
.x1a_c00313{left:598.327867pt;}
.x13_c00313{left:615.446267pt;}
.xe_c00313{left:635.014000pt;}
.x1b_c00313{left:662.327200pt;}
.xf_c00313{left:667.013333pt;}
.x1c_c00313{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_993c15d423cc8ad35eb271b8.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.134000;font-style:normal;font-weight:normal;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_bd10c933346608bd17c98ef0.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;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:ff3_c00314;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:0.920000;font-style:normal;font-weight:normal;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_47c23b4935aabf211ddd1ed8.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;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_e2c2764a1ffa8007277704e9.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:0.787000;font-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_c00314{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00314{vertical-align:-24.480000px;}
.v0_c00314{vertical-align:0.000000px;}
.v2_c00314{vertical-align:24.480000px;}
.v1_c00314{vertical-align:30.240000px;}
.ls17_c00314{letter-spacing:0.000000px;}
.ls2_c00314{letter-spacing:0.100440px;}
.ls23_c00314{letter-spacing:0.144000px;}
.ls12_c00314{letter-spacing:0.236160px;}
.ls28_c00314{letter-spacing:0.242064px;}
.ls8_c00314{letter-spacing:0.265080px;}
.lsa_c00314{letter-spacing:0.265680px;}
.ls29_c00314{letter-spacing:0.273857px;}
.ls11_c00314{letter-spacing:0.295200px;}
.ls3_c00314{letter-spacing:0.318480px;}
.ls18_c00314{letter-spacing:0.318816px;}
.lse_c00314{letter-spacing:0.319080px;}
.ls13_c00314{letter-spacing:0.354240px;}
.lsb_c00314{letter-spacing:0.372240px;}
.ls2b_c00314{letter-spacing:0.383399px;}
.lsc_c00314{letter-spacing:0.395568px;}
.ls20_c00314{letter-spacing:0.425088px;}
.ls10_c00314{letter-spacing:0.442327px;}
.lsd_c00314{letter-spacing:0.492942px;}
.lsf_c00314{letter-spacing:0.501840px;}
.ls4_c00314{letter-spacing:0.507744px;}
.ls7_c00314{letter-spacing:0.513648px;}
.ls5_c00314{letter-spacing:0.531360px;}
.ls15_c00314{letter-spacing:0.560880px;}
.ls2f_c00314{letter-spacing:0.584496px;}
.ls27_c00314{letter-spacing:0.657256px;}
.ls21_c00314{letter-spacing:0.690768px;}
.ls6_c00314{letter-spacing:0.712027px;}
.ls2e_c00314{letter-spacing:0.743904px;}
.ls2c_c00314{letter-spacing:0.767520px;}
.ls1e_c00314{letter-spacing:0.962352px;}
.ls2d_c00314{letter-spacing:1.416960px;}
.ls2a_c00314{letter-spacing:3.690000px;}
.ls31_c00314{letter-spacing:4.941648px;}
.ls30_c00314{letter-spacing:4.947552px;}
.ls9_c00314{letter-spacing:5.246280px;}
.ls1a_c00314{letter-spacing:5.248656px;}
.ls1b_c00314{letter-spacing:5.301792px;}
.ls1d_c00314{letter-spacing:5.354928px;}
.ls1c_c00314{letter-spacing:5.461200px;}
.ls14_c00314{letter-spacing:5.490720px;}
.ls24_c00314{letter-spacing:5.514336px;}
.ls19_c00314{letter-spacing:5.726880px;}
.ls22_c00314{letter-spacing:5.780016px;}
.ls0_c00314{letter-spacing:5.976000px;}
.ls16_c00314{letter-spacing:6.159920px;}
.ls1_c00314{letter-spacing:15.912000px;}
.ls26_c00314{letter-spacing:16.478064px;}
.ls25_c00314{letter-spacing:16.483968px;}
.ls1f_c00314{letter-spacing:25.062480px;}
.sc__c00314{text-shadow:none;}
.sc1_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00314{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc1_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00314{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00314{word-spacing:-22.193136px;}
.wsd_c00314{word-spacing:-22.140000px;}
.ws5_c00314{word-spacing:-21.768048px;}
.ws3_c00314{word-spacing:-17.630284px;}
.wsc_c00314{word-spacing:-17.411199px;}
.wse_c00314{word-spacing:-17.360584px;}
.wsf_c00314{word-spacing:-17.301656px;}
.wsa_c00314{word-spacing:-17.103888px;}
.ws2_c00314{word-spacing:-16.944480px;}
.ws10_c00314{word-spacing:-16.926768px;}
.ws6_c00314{word-spacing:-16.920864px;}
.wsb_c00314{word-spacing:-16.808688px;}
.ws7_c00314{word-spacing:-16.731936px;}
.ws1_c00314{word-spacing:-16.413120px;}
.ws0_c00314{word-spacing:-11.609280px;}
.ws8_c00314{word-spacing:-10.152000px;}
.ws11_c00314{word-spacing:-10.008000px;}
.ws4_c00314{word-spacing:-5.360832px;}
.ws12_c00314{word-spacing:0.000000px;}
._b_c00314{margin-left:-24.821520px;}
._e_c00314{margin-left:-23.280960px;}
._8_c00314{margin-left:-15.984000px;}
._15_c00314{margin-left:-5.533258px;}
._13_c00314{margin-left:-3.617942px;}
._9_c00314{margin-left:-1.217141px;}
._0_c00314{width:1.074600px;}
._2_c00314{width:2.381400px;}
._5_c00314{width:4.320000px;}
._3_c00314{width:5.760000px;}
._4_c00314{width:6.768000px;}
._6_c00314{width:9.072000px;}
._1_c00314{width:10.656000px;}
._14_c00314{width:11.900040px;}
._7_c00314{width:15.912000px;}
._11_c00314{width:18.529080px;}
._d_c00314{width:19.778400px;}
._a_c00314{width:23.584498px;}
._c_c00314{width:25.674600px;}
._f_c00314{width:39.970080px;}
._12_c00314{width:163.625801px;}
._10_c00314{width:294.432480px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs5_c00314{font-size:36.000000px;}
.fs2_c00314{font-size:41.760000px;}
.fs3_c00314{font-size:59.040000px;}
.fs7_c00314{font-size:60.000000px;}
.fs4_c00314{font-size:60.857039px;}
.fs6_c00314{font-size:64.800000px;}
.fs0_c00314{font-size:72.000000px;}
.fs1_c00314{font-size:74.215901px;}
.y0_c00314{bottom:0.000000px;}
.y37_c00314{bottom:3.120150px;}
.y36_c00314{bottom:34.744500px;}
.y1_c00314{bottom:54.000000px;}
.y35_c00314{bottom:61.605000px;}
.y34_c00314{bottom:78.885000px;}
.y33_c00314{bottom:90.401040px;}
.y32_c00314{bottom:107.685000px;}
.y31_c00314{bottom:113.805000px;}
.y30_c00314{bottom:140.445000px;}
.y2f_c00314{bottom:307.840320px;}
.y2e_c00314{bottom:326.925000px;}
.y2d_c00314{bottom:326.926800px;}
.y2b_c00314{bottom:344.561040px;}
.y2c_c00314{bottom:344.565000px;}
.y2a_c00314{bottom:361.845000px;}
.y29_c00314{bottom:394.605000px;}
.y28_c00314{bottom:416.205000px;}
.y27_c00314{bottom:433.845000px;}
.y26_c00314{bottom:451.485000px;}
.y25_c00314{bottom:469.485000px;}
.y24_c00314{bottom:487.125000px;}
.y23_c00314{bottom:504.405000px;}
.y22_c00314{bottom:504.765000px;}
.y21_c00314{bottom:522.045000px;}
.y20_c00314{bottom:539.685000px;}
.y1f_c00314{bottom:558.045000px;}
.y1e_c00314{bottom:575.325000px;}
.y1d_c00314{bottom:592.965000px;}
.y1c_c00314{bottom:610.245000px;}
.y1b_c00314{bottom:627.885000px;}
.y1a_c00314{bottom:646.245000px;}
.y19_c00314{bottom:663.525000px;}
.y17_c00314{bottom:678.645000px;}
.y18_c00314{bottom:681.165000px;}
.y16_c00314{bottom:698.805000px;}
.y15_c00314{bottom:716.805000px;}
.y14_c00314{bottom:731.925000px;}
.y12_c00314{bottom:734.445000px;}
.y13_c00314{bottom:749.565000px;}
.y11_c00314{bottom:752.085000px;}
.y10_c00314{bottom:769.365000px;}
.yf_c00314{bottom:802.845000px;}
.ye_c00314{bottom:838.845000px;}
.yd_c00314{bottom:860.085000px;}
.yc_c00314{bottom:880.965000px;}
.yb_c00314{bottom:901.845000px;}
.ya_c00314{bottom:923.085000px;}
.y9_c00314{bottom:959.085000px;}
.y8_c00314{bottom:979.965000px;}
.y7_c00314{bottom:1000.845000px;}
.y6_c00314{bottom:1022.085000px;}
.y5_c00314{bottom:1042.965000px;}
.y4_c00314{bottom:1063.845000px;}
.y3_c00314{bottom:1085.085000px;}
.y2_c00314{bottom:1138.365000px;}
.hc_c00314{height:19.255500px;}
.hb_c00314{height:32.616000px;}
.h9_c00314{height:39.350391px;}
.hd_c00314{height:46.320000px;}
.h7_c00314{height:46.981634px;}
.h6_c00314{height:53.490240px;}
.h8_c00314{height:57.096000px;}
.h4_c00314{height:57.294676px;}
.ha_c00314{height:58.727520px;}
.h3_c00314{height:65.232000px;}
.h5_c00314{height:68.074560px;}
.h2_c00314{height:1201.365000px;}
.h0_c00314{height:1262.835000px;}
.h1_c00314{height:1263.000000px;}
.w7_c00314{width:25.020000px;}
.w3_c00314{width:61.200000px;}
.w4_c00314{width:107.640000px;}
.w5_c00314{width:168.120000px;}
.w6_c00314{width:289.800000px;}
.w2_c00314{width:863.955000px;}
.w0_c00314{width:892.935000px;}
.w1_c00314{width:893.250000px;}
.x0_c00314{left:0.000000px;}
.x10_c00314{left:7.559850px;}
.x1_c00314{left:14.490000px;}
.x16_c00314{left:65.400300px;}
.x1b_c00314{left:96.135000px;}
.x17_c00314{left:107.911200px;}
.x2_c00314{left:113.040150px;}
.x25_c00314{left:133.034550px;}
.x18_c00314{left:134.782350px;}
.xf_c00314{left:136.170000px;}
.x14_c00314{left:141.219300px;}
.x1c_c00314{left:146.864400px;}
.x7_c00314{left:157.946100px;}
.x3_c00314{left:165.545700px;}
.x8_c00314{left:170.923800px;}
.x1d_c00314{left:176.864100px;}
.x15_c00314{left:178.478700px;}
.x26_c00314{left:181.236750px;}
.x11_c00314{left:198.090000px;}
.x19_c00314{left:210.418200px;}
.x4_c00314{left:215.008650px;}
.x27_c00314{left:218.240850px;}
.x1a_c00314{left:242.082600px;}
.x1e_c00314{left:250.320450px;}
.x20_c00314{left:275.945400px;}
.x1f_c00314{left:281.984850px;}
.xd_c00314{left:293.091450px;}
.x12_c00314{left:306.450000px;}
.x21_c00314{left:307.609800px;}
.xe_c00314{left:339.098850px;}
.x9_c00314{left:390.564300px;}
.x22_c00314{left:395.184750px;}
.xa_c00314{left:399.564300px;}
.x23_c00314{left:425.184450px;}
.x13_c00314{left:475.290000px;}
.x24_c00314{left:519.929850px;}
.x5_c00314{left:674.288850px;}
.xb_c00314{left:677.226600px;}
.x6_c00314{left:687.284550px;}
.xc_c00314{left:690.222300px;}
.x28_c00314{left:759.915000px;}
@media print{
.v3_c00314{vertical-align:-21.760000pt;}
.v0_c00314{vertical-align:0.000000pt;}
.v2_c00314{vertical-align:21.760000pt;}
.v1_c00314{vertical-align:26.880000pt;}
.ls17_c00314{letter-spacing:0.000000pt;}
.ls2_c00314{letter-spacing:0.089280pt;}
.ls23_c00314{letter-spacing:0.128000pt;}
.ls12_c00314{letter-spacing:0.209920pt;}
.ls28_c00314{letter-spacing:0.215168pt;}
.ls8_c00314{letter-spacing:0.235627pt;}
.lsa_c00314{letter-spacing:0.236160pt;}
.ls29_c00314{letter-spacing:0.243428pt;}
.ls11_c00314{letter-spacing:0.262400pt;}
.ls3_c00314{letter-spacing:0.283093pt;}
.ls18_c00314{letter-spacing:0.283392pt;}
.lse_c00314{letter-spacing:0.283627pt;}
.ls13_c00314{letter-spacing:0.314880pt;}
.lsb_c00314{letter-spacing:0.330880pt;}
.ls2b_c00314{letter-spacing:0.340799pt;}
.lsc_c00314{letter-spacing:0.351616pt;}
.ls20_c00314{letter-spacing:0.377856pt;}
.ls10_c00314{letter-spacing:0.393179pt;}
.lsd_c00314{letter-spacing:0.438171pt;}
.lsf_c00314{letter-spacing:0.446080pt;}
.ls4_c00314{letter-spacing:0.451328pt;}
.ls7_c00314{letter-spacing:0.456576pt;}
.ls5_c00314{letter-spacing:0.472320pt;}
.ls15_c00314{letter-spacing:0.498560pt;}
.ls2f_c00314{letter-spacing:0.519552pt;}
.ls27_c00314{letter-spacing:0.584228pt;}
.ls21_c00314{letter-spacing:0.614016pt;}
.ls6_c00314{letter-spacing:0.632913pt;}
.ls2e_c00314{letter-spacing:0.661248pt;}
.ls2c_c00314{letter-spacing:0.682240pt;}
.ls1e_c00314{letter-spacing:0.855424pt;}
.ls2d_c00314{letter-spacing:1.259520pt;}
.ls2a_c00314{letter-spacing:3.280000pt;}
.ls31_c00314{letter-spacing:4.392576pt;}
.ls30_c00314{letter-spacing:4.397824pt;}
.ls9_c00314{letter-spacing:4.663360pt;}
.ls1a_c00314{letter-spacing:4.665472pt;}
.ls1b_c00314{letter-spacing:4.712704pt;}
.ls1d_c00314{letter-spacing:4.759936pt;}
.ls1c_c00314{letter-spacing:4.854400pt;}
.ls14_c00314{letter-spacing:4.880640pt;}
.ls24_c00314{letter-spacing:4.901632pt;}
.ls19_c00314{letter-spacing:5.090560pt;}
.ls22_c00314{letter-spacing:5.137792pt;}
.ls0_c00314{letter-spacing:5.312000pt;}
.ls16_c00314{letter-spacing:5.475484pt;}
.ls1_c00314{letter-spacing:14.144000pt;}
.ls26_c00314{letter-spacing:14.647168pt;}
.ls25_c00314{letter-spacing:14.652416pt;}
.ls1f_c00314{letter-spacing:22.277760pt;}
.ws9_c00314{word-spacing:-19.727232pt;}
.wsd_c00314{word-spacing:-19.680000pt;}
.ws5_c00314{word-spacing:-19.349376pt;}
.ws3_c00314{word-spacing:-15.671364pt;}
.wsc_c00314{word-spacing:-15.476621pt;}
.wse_c00314{word-spacing:-15.431630pt;}
.wsf_c00314{word-spacing:-15.379250pt;}
.wsa_c00314{word-spacing:-15.203456pt;}
.ws2_c00314{word-spacing:-15.061760pt;}
.ws10_c00314{word-spacing:-15.046016pt;}
.ws6_c00314{word-spacing:-15.040768pt;}
.wsb_c00314{word-spacing:-14.941056pt;}
.ws7_c00314{word-spacing:-14.872832pt;}
.ws1_c00314{word-spacing:-14.589440pt;}
.ws0_c00314{word-spacing:-10.319360pt;}
.ws8_c00314{word-spacing:-9.024000pt;}
.ws11_c00314{word-spacing:-8.896000pt;}
.ws4_c00314{word-spacing:-4.765184pt;}
.ws12_c00314{word-spacing:0.000000pt;}
._b_c00314{margin-left:-22.063573pt;}
._e_c00314{margin-left:-20.694187pt;}
._8_c00314{margin-left:-14.208000pt;}
._15_c00314{margin-left:-4.918451pt;}
._13_c00314{margin-left:-3.215949pt;}
._9_c00314{margin-left:-1.081903pt;}
._0_c00314{width:0.955200pt;}
._2_c00314{width:2.116800pt;}
._5_c00314{width:3.840000pt;}
._3_c00314{width:5.120000pt;}
._4_c00314{width:6.016000pt;}
._6_c00314{width:8.064000pt;}
._1_c00314{width:9.472000pt;}
._14_c00314{width:10.577813pt;}
._7_c00314{width:14.144000pt;}
._11_c00314{width:16.470293pt;}
._d_c00314{width:17.580800pt;}
._a_c00314{width:20.963998pt;}
._c_c00314{width:22.821867pt;}
._f_c00314{width:35.528960pt;}
._12_c00314{width:145.445157pt;}
._10_c00314{width:261.717760pt;}
.fs5_c00314{font-size:32.000000pt;}
.fs2_c00314{font-size:37.120000pt;}
.fs3_c00314{font-size:52.480000pt;}
.fs7_c00314{font-size:53.333333pt;}
.fs4_c00314{font-size:54.095146pt;}
.fs6_c00314{font-size:57.600000pt;}
.fs0_c00314{font-size:64.000000pt;}
.fs1_c00314{font-size:65.969690pt;}
.y0_c00314{bottom:0.000000pt;}
.y37_c00314{bottom:2.773467pt;}
.y36_c00314{bottom:30.884000pt;}
.y1_c00314{bottom:48.000000pt;}
.y35_c00314{bottom:54.760000pt;}
.y34_c00314{bottom:70.120000pt;}
.y33_c00314{bottom:80.356480pt;}
.y32_c00314{bottom:95.720000pt;}
.y31_c00314{bottom:101.160000pt;}
.y30_c00314{bottom:124.840000pt;}
.y2f_c00314{bottom:273.635840pt;}
.y2e_c00314{bottom:290.600000pt;}
.y2d_c00314{bottom:290.601600pt;}
.y2b_c00314{bottom:306.276480pt;}
.y2c_c00314{bottom:306.280000pt;}
.y2a_c00314{bottom:321.640000pt;}
.y29_c00314{bottom:350.760000pt;}
.y28_c00314{bottom:369.960000pt;}
.y27_c00314{bottom:385.640000pt;}
.y26_c00314{bottom:401.320000pt;}
.y25_c00314{bottom:417.320000pt;}
.y24_c00314{bottom:433.000000pt;}
.y23_c00314{bottom:448.360000pt;}
.y22_c00314{bottom:448.680000pt;}
.y21_c00314{bottom:464.040000pt;}
.y20_c00314{bottom:479.720000pt;}
.y1f_c00314{bottom:496.040000pt;}
.y1e_c00314{bottom:511.400000pt;}
.y1d_c00314{bottom:527.080000pt;}
.y1c_c00314{bottom:542.440000pt;}
.y1b_c00314{bottom:558.120000pt;}
.y1a_c00314{bottom:574.440000pt;}
.y19_c00314{bottom:589.800000pt;}
.y17_c00314{bottom:603.240000pt;}
.y18_c00314{bottom:605.480000pt;}
.y16_c00314{bottom:621.160000pt;}
.y15_c00314{bottom:637.160000pt;}
.y14_c00314{bottom:650.600000pt;}
.y12_c00314{bottom:652.840000pt;}
.y13_c00314{bottom:666.280000pt;}
.y11_c00314{bottom:668.520000pt;}
.y10_c00314{bottom:683.880000pt;}
.yf_c00314{bottom:713.640000pt;}
.ye_c00314{bottom:745.640000pt;}
.yd_c00314{bottom:764.520000pt;}
.yc_c00314{bottom:783.080000pt;}
.yb_c00314{bottom:801.640000pt;}
.ya_c00314{bottom:820.520000pt;}
.y9_c00314{bottom:852.520000pt;}
.y8_c00314{bottom:871.080000pt;}
.y7_c00314{bottom:889.640000pt;}
.y6_c00314{bottom:908.520000pt;}
.y5_c00314{bottom:927.080000pt;}
.y4_c00314{bottom:945.640000pt;}
.y3_c00314{bottom:964.520000pt;}
.y2_c00314{bottom:1011.880000pt;}
.hc_c00314{height:17.116000pt;}
.hb_c00314{height:28.992000pt;}
.h9_c00314{height:34.978125pt;}
.hd_c00314{height:41.173333pt;}
.h7_c00314{height:41.761453pt;}
.h6_c00314{height:47.546880pt;}
.h8_c00314{height:50.752000pt;}
.h4_c00314{height:50.928601pt;}
.ha_c00314{height:52.202240pt;}
.h3_c00314{height:57.984000pt;}
.h5_c00314{height:60.510720pt;}
.h2_c00314{height:1067.880000pt;}
.h0_c00314{height:1122.520000pt;}
.h1_c00314{height:1122.666667pt;}
.w7_c00314{width:22.240000pt;}
.w3_c00314{width:54.400000pt;}
.w4_c00314{width:95.680000pt;}
.w5_c00314{width:149.440000pt;}
.w6_c00314{width:257.600000pt;}
.w2_c00314{width:767.960000pt;}
.w0_c00314{width:793.720000pt;}
.w1_c00314{width:794.000000pt;}
.x0_c00314{left:0.000000pt;}
.x10_c00314{left:6.719867pt;}
.x1_c00314{left:12.880000pt;}
.x16_c00314{left:58.133600pt;}
.x1b_c00314{left:85.453333pt;}
.x17_c00314{left:95.921067pt;}
.x2_c00314{left:100.480133pt;}
.x25_c00314{left:118.252933pt;}
.x18_c00314{left:119.806533pt;}
.xf_c00314{left:121.040000pt;}
.x14_c00314{left:125.528267pt;}
.x1c_c00314{left:130.546133pt;}
.x7_c00314{left:140.396533pt;}
.x3_c00314{left:147.151733pt;}
.x8_c00314{left:151.932267pt;}
.x1d_c00314{left:157.212533pt;}
.x15_c00314{left:158.647733pt;}
.x26_c00314{left:161.099333pt;}
.x11_c00314{left:176.080000pt;}
.x19_c00314{left:187.038400pt;}
.x4_c00314{left:191.118800pt;}
.x27_c00314{left:193.991867pt;}
.x1a_c00314{left:215.184533pt;}
.x1e_c00314{left:222.507067pt;}
.x20_c00314{left:245.284800pt;}
.x1f_c00314{left:250.653200pt;}
.xd_c00314{left:260.525733pt;}
.x12_c00314{left:272.400000pt;}
.x21_c00314{left:273.430933pt;}
.xe_c00314{left:301.421200pt;}
.x9_c00314{left:347.168267pt;}
.x22_c00314{left:351.275333pt;}
.xa_c00314{left:355.168267pt;}
.x23_c00314{left:377.941733pt;}
.x13_c00314{left:422.480000pt;}
.x24_c00314{left:462.159867pt;}
.x5_c00314{left:599.367867pt;}
.xb_c00314{left:601.979200pt;}
.x6_c00314{left:610.919600pt;}
.xc_c00314{left:613.530933pt;}
.x28_c00314{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ff7ed95d211f91352746c75.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.134000;font-style:normal;font-weight:normal;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_bd802cece19f1cd6c6dd3ee4.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;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:ff3_c00315;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:0.920000;font-style:normal;font-weight:normal;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_fda1e4678868fb441765681b.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:0.787000;font-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_c00315{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00315{vertical-align:-24.480000px;}
.v0_c00315{vertical-align:0.000000px;}
.v1_c00315{vertical-align:30.240000px;}
.lsf_c00315{letter-spacing:-0.185094px;}
.lse_c00315{letter-spacing:-0.179568px;}
.lsc_c00315{letter-spacing:0.000000px;}
.ls12_c00315{letter-spacing:0.144000px;}
.ls19_c00315{letter-spacing:0.265680px;}
.ls7_c00315{letter-spacing:0.295200px;}
.ls15_c00315{letter-spacing:0.425088px;}
.ls18_c00315{letter-spacing:0.438171px;}
.ls6_c00315{letter-spacing:0.478224px;}
.ls8_c00315{letter-spacing:0.531360px;}
.ls17_c00315{letter-spacing:0.547713px;}
.lsa_c00315{letter-spacing:0.560880px;}
.ls9_c00315{letter-spacing:0.712027px;}
.ls16_c00315{letter-spacing:0.962352px;}
.ls13_c00315{letter-spacing:4.906224px;}
.ls14_c00315{letter-spacing:5.354928px;}
.lsd_c00315{letter-spacing:5.430672px;}
.ls2_c00315{letter-spacing:5.976000px;}
.ls0_c00315{letter-spacing:5.981400px;}
.lsb_c00315{letter-spacing:6.159920px;}
.ls11_c00315{letter-spacing:8.121600px;}
.ls1_c00315{letter-spacing:14.904000px;}
.ls3_c00315{letter-spacing:17.064000px;}
.ls10_c00315{letter-spacing:18.244800px;}
.ls5_c00315{letter-spacing:24.264000px;}
.ls4_c00315{letter-spacing:28.368000px;}
.sc__c00315{text-shadow:none;}
.sc1_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00315{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc1_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00315{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00315{word-spacing:-21.768048px;}
.ws0_c00315{word-spacing:-21.043152px;}
.ws2_c00315{word-spacing:-20.632021px;}
.ws6_c00315{word-spacing:-17.630284px;}
.ws5_c00315{word-spacing:-16.944480px;}
.ws1_c00315{word-spacing:-11.429712px;}
.ws3_c00315{word-spacing:-10.152000px;}
.ws7_c00315{word-spacing:0.000000px;}
._10_c00315{margin-left:-18.345600px;}
._c_c00315{margin-left:-7.615788px;}
._16_c00315{margin-left:-4.597920px;}
._17_c00315{margin-left:-3.540960px;}
._18_c00315{margin-left:-1.535040px;}
._8_c00315{width:1.080000px;}
._2_c00315{width:2.664000px;}
._9_c00315{width:3.672000px;}
._e_c00315{width:5.112000px;}
._1_c00315{width:6.120000px;}
._4_c00315{width:8.064000px;}
._6_c00315{width:9.792000px;}
._7_c00315{width:11.088000px;}
._14_c00315{width:12.401016px;}
._b_c00315{width:13.896000px;}
._5_c00315{width:15.768000px;}
._a_c00315{width:16.776000px;}
._3_c00315{width:17.928000px;}
._11_c00315{width:19.008000px;}
._0_c00315{width:22.116339px;}
._f_c00315{width:23.218984px;}
._15_c00315{width:25.704000px;}
._d_c00315{width:29.736000px;}
._12_c00315{width:45.936000px;}
._13_c00315{width:47.275529px;}
.fc0_c00315{color:rgb(0,0,0);}
.fs5_c00315{font-size:36.000000px;}
.fs3_c00315{font-size:41.760000px;}
.fs4_c00315{font-size:43.045223px;}
.fs2_c00315{font-size:56.160000px;}
.fs6_c00315{font-size:59.040000px;}
.fs8_c00315{font-size:60.000000px;}
.fs7_c00315{font-size:60.857039px;}
.fs0_c00315{font-size:72.000000px;}
.fs1_c00315{font-size:74.215901px;}
.y0_c00315{bottom:0.000000px;}
.y36_c00315{bottom:3.120150px;}
.y35_c00315{bottom:34.744500px;}
.y1_c00315{bottom:54.000000px;}
.y34_c00315{bottom:55.485000px;}
.y33_c00315{bottom:61.605000px;}
.y32_c00315{bottom:78.885000px;}
.y31_c00315{bottom:96.525000px;}
.y30_c00315{bottom:107.685000px;}
.y2f_c00315{bottom:113.805000px;}
.y2e_c00315{bottom:131.445000px;}
.y2d_c00315{bottom:142.961040px;}
.y2c_c00315{bottom:160.245000px;}
.y2b_c00315{bottom:160.248600px;}
.y2a_c00315{bottom:177.886800px;}
.y29_c00315{bottom:201.645000px;}
.y28_c00315{bottom:228.285000px;}
.y27_c00315{bottom:250.605000px;}
.y26_c00315{bottom:271.845000px;}
.y25_c00315{bottom:292.725000px;}
.y24_c00315{bottom:313.965000px;}
.y23_c00315{bottom:334.845000px;}
.y22_c00315{bottom:355.725000px;}
.y21_c00315{bottom:376.965000px;}
.y20_c00315{bottom:397.845000px;}
.y1f_c00315{bottom:418.725000px;}
.y1e_c00315{bottom:454.725000px;}
.y1d_c00315{bottom:475.965000px;}
.y1c_c00315{bottom:496.845000px;}
.y1b_c00315{bottom:517.725000px;}
.y1a_c00315{bottom:538.965000px;}
.y19_c00315{bottom:559.845000px;}
.y18_c00315{bottom:580.725000px;}
.y17_c00315{bottom:601.965000px;}
.y16_c00315{bottom:622.845000px;}
.y15_c00315{bottom:658.845000px;}
.y14_c00315{bottom:679.725000px;}
.y13_c00315{bottom:700.965000px;}
.y12_c00315{bottom:721.845000px;}
.y11_c00315{bottom:743.085000px;}
.y10_c00315{bottom:763.965000px;}
.yf_c00315{bottom:784.845000px;}
.ye_c00315{bottom:806.085000px;}
.yd_c00315{bottom:830.205000px;}
.yc_c00315{bottom:851.085000px;}
.yb_c00315{bottom:887.085000px;}
.ya_c00315{bottom:907.965000px;}
.y9_c00315{bottom:928.845000px;}
.y8_c00315{bottom:950.085000px;}
.y7_c00315{bottom:970.965000px;}
.y6_c00315{bottom:991.845000px;}
.y5_c00315{bottom:1013.085000px;}
.y4_c00315{bottom:1049.085000px;}
.y3_c00315{bottom:1085.085000px;}
.y2_c00315{bottom:1138.365000px;}
.ha_c00315{height:19.255500px;}
.h7_c00315{height:32.616000px;}
.hb_c00315{height:46.320000px;}
.h9_c00315{height:46.981634px;}
.h8_c00315{height:53.490240px;}
.h4_c00315{height:57.294676px;}
.h6_c00315{height:64.401590px;}
.h3_c00315{height:65.232000px;}
.h5_c00315{height:68.074560px;}
.h2_c00315{height:1201.365000px;}
.h0_c00315{height:1262.835000px;}
.h1_c00315{height:1263.000000px;}
.w3_c00315{width:25.020000px;}
.w2_c00315{width:863.955000px;}
.w0_c00315{width:892.935000px;}
.w1_c00315{width:893.250000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:14.490000px;}
.x2_c00315{left:113.040150px;}
.x21_c00315{left:127.217700px;}
.x8_c00315{left:136.707300px;}
.x22_c00315{left:157.217250px;}
.x23_c00315{left:161.386950px;}
.x3_c00315{left:165.545700px;}
.x1b_c00315{left:168.047250px;}
.x9_c00315{left:174.705000px;}
.x15_c00315{left:192.238800px;}
.x10_c00315{left:200.391000px;}
.xc_c00315{left:210.040650px;}
.x4_c00315{left:215.008650px;}
.x16_c00315{left:224.224350px;}
.x11_c00315{left:232.376550px;}
.xd_c00315{left:242.026200px;}
.x14_c00315{left:249.915900px;}
.x5_c00315{left:315.573900px;}
.x12_c00315{left:379.037100px;}
.x13_c00315{left:426.711900px;}
.x20_c00315{left:493.497450px;}
.x17_c00315{left:499.665900px;}
.x1e_c00315{left:538.307400px;}
.x18_c00315{left:568.677300px;}
.x1c_c00315{left:572.884950px;}
.xe_c00315{left:638.109300px;}
.x6_c00315{left:644.041200px;}
.x19_c00315{left:657.811950px;}
.x7_c00315{left:676.026900px;}
.x1f_c00315{left:681.329250px;}
.xa_c00315{left:712.369950px;}
.xf_c00315{left:715.094250px;}
.xb_c00315{left:725.365800px;}
.x1a_c00315{left:731.809500px;}
.x1d_c00315{left:750.390000px;}
.x24_c00315{left:759.915000px;}
@media print{
.v2_c00315{vertical-align:-21.760000pt;}
.v0_c00315{vertical-align:0.000000pt;}
.v1_c00315{vertical-align:26.880000pt;}
.lsf_c00315{letter-spacing:-0.164528pt;}
.lse_c00315{letter-spacing:-0.159616pt;}
.lsc_c00315{letter-spacing:0.000000pt;}
.ls12_c00315{letter-spacing:0.128000pt;}
.ls19_c00315{letter-spacing:0.236160pt;}
.ls7_c00315{letter-spacing:0.262400pt;}
.ls15_c00315{letter-spacing:0.377856pt;}
.ls18_c00315{letter-spacing:0.389485pt;}
.ls6_c00315{letter-spacing:0.425088pt;}
.ls8_c00315{letter-spacing:0.472320pt;}
.ls17_c00315{letter-spacing:0.486856pt;}
.lsa_c00315{letter-spacing:0.498560pt;}
.ls9_c00315{letter-spacing:0.632913pt;}
.ls16_c00315{letter-spacing:0.855424pt;}
.ls13_c00315{letter-spacing:4.361088pt;}
.ls14_c00315{letter-spacing:4.759936pt;}
.lsd_c00315{letter-spacing:4.827264pt;}
.ls2_c00315{letter-spacing:5.312000pt;}
.ls0_c00315{letter-spacing:5.316800pt;}
.lsb_c00315{letter-spacing:5.475484pt;}
.ls11_c00315{letter-spacing:7.219200pt;}
.ls1_c00315{letter-spacing:13.248000pt;}
.ls3_c00315{letter-spacing:15.168000pt;}
.ls10_c00315{letter-spacing:16.217600pt;}
.ls5_c00315{letter-spacing:21.568000pt;}
.ls4_c00315{letter-spacing:25.216000pt;}
.ws4_c00315{word-spacing:-19.349376pt;}
.ws0_c00315{word-spacing:-18.705024pt;}
.ws2_c00315{word-spacing:-18.339574pt;}
.ws6_c00315{word-spacing:-15.671364pt;}
.ws5_c00315{word-spacing:-15.061760pt;}
.ws1_c00315{word-spacing:-10.159744pt;}
.ws3_c00315{word-spacing:-9.024000pt;}
.ws7_c00315{word-spacing:0.000000pt;}
._10_c00315{margin-left:-16.307200pt;}
._c_c00315{margin-left:-6.769590pt;}
._16_c00315{margin-left:-4.087040pt;}
._17_c00315{margin-left:-3.147520pt;}
._18_c00315{margin-left:-1.364480pt;}
._8_c00315{width:0.960000pt;}
._2_c00315{width:2.368000pt;}
._9_c00315{width:3.264000pt;}
._e_c00315{width:4.544000pt;}
._1_c00315{width:5.440000pt;}
._4_c00315{width:7.168000pt;}
._6_c00315{width:8.704000pt;}
._7_c00315{width:9.856000pt;}
._14_c00315{width:11.023125pt;}
._b_c00315{width:12.352000pt;}
._5_c00315{width:14.016000pt;}
._a_c00315{width:14.912000pt;}
._3_c00315{width:15.936000pt;}
._11_c00315{width:16.896000pt;}
._0_c00315{width:19.658968pt;}
._f_c00315{width:20.639097pt;}
._15_c00315{width:22.848000pt;}
._d_c00315{width:26.432000pt;}
._12_c00315{width:40.832000pt;}
._13_c00315{width:42.022693pt;}
.fs5_c00315{font-size:32.000000pt;}
.fs3_c00315{font-size:37.120000pt;}
.fs4_c00315{font-size:38.262420pt;}
.fs2_c00315{font-size:49.920000pt;}
.fs6_c00315{font-size:52.480000pt;}
.fs8_c00315{font-size:53.333333pt;}
.fs7_c00315{font-size:54.095146pt;}
.fs0_c00315{font-size:64.000000pt;}
.fs1_c00315{font-size:65.969690pt;}
.y0_c00315{bottom:0.000000pt;}
.y36_c00315{bottom:2.773467pt;}
.y35_c00315{bottom:30.884000pt;}
.y1_c00315{bottom:48.000000pt;}
.y34_c00315{bottom:49.320000pt;}
.y33_c00315{bottom:54.760000pt;}
.y32_c00315{bottom:70.120000pt;}
.y31_c00315{bottom:85.800000pt;}
.y30_c00315{bottom:95.720000pt;}
.y2f_c00315{bottom:101.160000pt;}
.y2e_c00315{bottom:116.840000pt;}
.y2d_c00315{bottom:127.076480pt;}
.y2c_c00315{bottom:142.440000pt;}
.y2b_c00315{bottom:142.443200pt;}
.y2a_c00315{bottom:158.121600pt;}
.y29_c00315{bottom:179.240000pt;}
.y28_c00315{bottom:202.920000pt;}
.y27_c00315{bottom:222.760000pt;}
.y26_c00315{bottom:241.640000pt;}
.y25_c00315{bottom:260.200000pt;}
.y24_c00315{bottom:279.080000pt;}
.y23_c00315{bottom:297.640000pt;}
.y22_c00315{bottom:316.200000pt;}
.y21_c00315{bottom:335.080000pt;}
.y20_c00315{bottom:353.640000pt;}
.y1f_c00315{bottom:372.200000pt;}
.y1e_c00315{bottom:404.200000pt;}
.y1d_c00315{bottom:423.080000pt;}
.y1c_c00315{bottom:441.640000pt;}
.y1b_c00315{bottom:460.200000pt;}
.y1a_c00315{bottom:479.080000pt;}
.y19_c00315{bottom:497.640000pt;}
.y18_c00315{bottom:516.200000pt;}
.y17_c00315{bottom:535.080000pt;}
.y16_c00315{bottom:553.640000pt;}
.y15_c00315{bottom:585.640000pt;}
.y14_c00315{bottom:604.200000pt;}
.y13_c00315{bottom:623.080000pt;}
.y12_c00315{bottom:641.640000pt;}
.y11_c00315{bottom:660.520000pt;}
.y10_c00315{bottom:679.080000pt;}
.yf_c00315{bottom:697.640000pt;}
.ye_c00315{bottom:716.520000pt;}
.yd_c00315{bottom:737.960000pt;}
.yc_c00315{bottom:756.520000pt;}
.yb_c00315{bottom:788.520000pt;}
.ya_c00315{bottom:807.080000pt;}
.y9_c00315{bottom:825.640000pt;}
.y8_c00315{bottom:844.520000pt;}
.y7_c00315{bottom:863.080000pt;}
.y6_c00315{bottom:881.640000pt;}
.y5_c00315{bottom:900.520000pt;}
.y4_c00315{bottom:932.520000pt;}
.y3_c00315{bottom:964.520000pt;}
.y2_c00315{bottom:1011.880000pt;}
.ha_c00315{height:17.116000pt;}
.h7_c00315{height:28.992000pt;}
.hb_c00315{height:41.173333pt;}
.h9_c00315{height:41.761453pt;}
.h8_c00315{height:47.546880pt;}
.h4_c00315{height:50.928601pt;}
.h6_c00315{height:57.245858pt;}
.h3_c00315{height:57.984000pt;}
.h5_c00315{height:60.510720pt;}
.h2_c00315{height:1067.880000pt;}
.h0_c00315{height:1122.520000pt;}
.h1_c00315{height:1122.666667pt;}
.w3_c00315{width:22.240000pt;}
.w2_c00315{width:767.960000pt;}
.w0_c00315{width:793.720000pt;}
.w1_c00315{width:794.000000pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:12.880000pt;}
.x2_c00315{left:100.480133pt;}
.x21_c00315{left:113.082400pt;}
.x8_c00315{left:121.517600pt;}
.x22_c00315{left:139.748667pt;}
.x23_c00315{left:143.455067pt;}
.x3_c00315{left:147.151733pt;}
.x1b_c00315{left:149.375333pt;}
.x9_c00315{left:155.293333pt;}
.x15_c00315{left:170.878933pt;}
.x10_c00315{left:178.125333pt;}
.xc_c00315{left:186.702800pt;}
.x4_c00315{left:191.118800pt;}
.x16_c00315{left:199.310533pt;}
.x11_c00315{left:206.556933pt;}
.xd_c00315{left:215.134400pt;}
.x14_c00315{left:222.147467pt;}
.x5_c00315{left:280.510133pt;}
.x12_c00315{left:336.921867pt;}
.x13_c00315{left:379.299467pt;}
.x20_c00315{left:438.664400pt;}
.x17_c00315{left:444.147467pt;}
.x1e_c00315{left:478.495467pt;}
.x18_c00315{left:505.490933pt;}
.x1c_c00315{left:509.231067pt;}
.xe_c00315{left:567.208267pt;}
.x6_c00315{left:572.481067pt;}
.x19_c00315{left:584.721733pt;}
.x7_c00315{left:600.912800pt;}
.x1f_c00315{left:605.626000pt;}
.xa_c00315{left:633.217733pt;}
.xf_c00315{left:635.639333pt;}
.xb_c00315{left:644.769600pt;}
.x1a_c00315{left:650.497333pt;}
.x1d_c00315{left:667.013333pt;}
.x24_c00315{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_357b15f8c3e97ad21d540eca.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.134000;font-style:normal;font-weight:normal;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_441dd2d4646cb8dbbfa206c5.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;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:ff3_c00316;src:url('chunks/assets/font_9550b7e38ed8260b05dd4350.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:0.787000;font-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_c00316{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00316{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00316{vertical-align:-24.480000px;}
.v0_c00316{vertical-align:0.000000px;}
.v1_c00316{vertical-align:30.240000px;}
.ls7_c00316{letter-spacing:-0.179568px;}
.ls6_c00316{letter-spacing:0.000000px;}
.ls9_c00316{letter-spacing:0.144000px;}
.ls3_c00316{letter-spacing:0.200160px;}
.lsf_c00316{letter-spacing:0.202464px;}
.ls11_c00316{letter-spacing:0.239760px;}
.lse_c00316{letter-spacing:0.399600px;}
.lsd_c00316{letter-spacing:0.425088px;}
.ls10_c00316{letter-spacing:0.450342px;}
.lsb_c00316{letter-spacing:0.478224px;}
.ls2_c00316{letter-spacing:0.615101px;}
.ls1_c00316{letter-spacing:0.712027px;}
.lsc_c00316{letter-spacing:1.564560px;}
.ls8_c00316{letter-spacing:5.335200px;}
.ls4_c00316{letter-spacing:5.976000px;}
.ls0_c00316{letter-spacing:5.994000px;}
.ls5_c00316{letter-spacing:6.159920px;}
.lsa_c00316{letter-spacing:13.502448px;}
.sc__c00316{text-shadow:none;}
.sc1_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00316{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc1_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00316{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00316{word-spacing:-20.947680px;}
.ws4_c00316{word-spacing:-17.630284px;}
.ws3_c00316{word-spacing:-16.891344px;}
.ws5_c00316{word-spacing:-15.882797px;}
.ws6_c00316{word-spacing:-15.051600px;}
.ws0_c00316{word-spacing:-11.429712px;}
.ws2_c00316{word-spacing:-10.152000px;}
.ws7_c00316{word-spacing:0.000000px;}
._f_c00316{margin-left:-13.217760px;}
._10_c00316{margin-left:-12.153600px;}
._11_c00316{margin-left:-2.084160px;}
._e_c00316{margin-left:-1.024800px;}
._8_c00316{width:1.224000px;}
._9_c00316{width:3.240000px;}
._d_c00316{width:4.320000px;}
._6_c00316{width:5.544000px;}
._b_c00316{width:6.552000px;}
._3_c00316{width:7.776000px;}
._5_c00316{width:9.072000px;}
._4_c00316{width:10.368000px;}
._2_c00316{width:13.104000px;}
._c_c00316{width:14.544000px;}
._1_c00316{width:17.640000px;}
._0_c00316{width:19.008000px;}
._a_c00316{width:22.968000px;}
._7_c00316{width:24.048000px;}
.fc1_c00316{color:transparent;}
.fc0_c00316{color:rgb(0,0,0);}
.fs4_c00316{font-size:36.000000px;}
.fs2_c00316{font-size:41.760000px;}
.fs7_c00316{font-size:53.280000px;}
.fs8_c00316{font-size:54.919767px;}
.fs3_c00316{font-size:56.160000px;}
.fs5_c00316{font-size:59.040000px;}
.fs9_c00316{font-size:60.000000px;}
.fs6_c00316{font-size:60.857039px;}
.fs0_c00316{font-size:72.000000px;}
.fs1_c00316{font-size:74.215901px;}
.y0_c00316{bottom:0.000000px;}
.y2b_c00316{bottom:3.120150px;}
.y29_c00316{bottom:16.200000px;}
.y28_c00316{bottom:32.040000px;}
.y2a_c00316{bottom:34.744500px;}
.y1_c00316{bottom:54.000000px;}
.y26_c00316{bottom:55.481040px;}
.y25_c00316{bottom:72.765000px;}
.y24_c00316{bottom:78.885000px;}
.y23_c00316{bottom:90.401040px;}
.y22_c00316{bottom:113.805000px;}
.y21_c00316{bottom:140.445000px;}
.y20_c00316{bottom:235.845000px;}
.y1f_c00316{bottom:271.845000px;}
.y27_c00316{bottom:292.365000px;}
.y1e_c00316{bottom:307.845000px;}
.y1d_c00316{bottom:343.845000px;}
.y1c_c00316{bottom:379.845000px;}
.y1b_c00316{bottom:415.845000px;}
.y1a_c00316{bottom:451.845000px;}
.y19_c00316{bottom:487.845000px;}
.y18_c00316{bottom:523.845000px;}
.y17_c00316{bottom:559.845000px;}
.y16_c00316{bottom:595.845000px;}
.y15_c00316{bottom:631.845000px;}
.y14_c00316{bottom:667.845000px;}
.y13_c00316{bottom:689.085000px;}
.y12_c00316{bottom:709.965000px;}
.y11_c00316{bottom:730.845000px;}
.y10_c00316{bottom:766.845000px;}
.yf_c00316{bottom:802.845000px;}
.ye_c00316{bottom:838.845000px;}
.yd_c00316{bottom:860.085000px;}
.yc_c00316{bottom:880.965000px;}
.yb_c00316{bottom:901.845000px;}
.ya_c00316{bottom:923.085000px;}
.y9_c00316{bottom:943.965000px;}
.y8_c00316{bottom:979.965000px;}
.y7_c00316{bottom:1000.845000px;}
.y6_c00316{bottom:1022.085000px;}
.y5_c00316{bottom:1042.965000px;}
.y4_c00316{bottom:1063.845000px;}
.y3_c00316{bottom:1085.085000px;}
.y2_c00316{bottom:1138.365000px;}
.hc_c00316{height:19.255500px;}
.h6_c00316{height:32.616000px;}
.hb_c00316{height:42.398060px;}
.h9_c00316{height:44.640000px;}
.hd_c00316{height:46.320000px;}
.h8_c00316{height:46.981634px;}
.ha_c00316{height:48.271680px;}
.h7_c00316{height:53.490240px;}
.h4_c00316{height:57.294676px;}
.h3_c00316{height:65.232000px;}
.h5_c00316{height:68.074560px;}
.h2_c00316{height:1201.365000px;}
.h0_c00316{height:1262.835000px;}
.h1_c00316{height:1263.000000px;}
.w4_c00316{width:25.020000px;}
.w3_c00316{width:572.760000px;}
.w2_c00316{width:863.955000px;}
.w0_c00316{width:892.935000px;}
.w1_c00316{width:893.250000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:14.490000px;}
.x12_c00316{left:70.573950px;}
.x2_c00316{left:113.040150px;}
.x11_c00316{left:122.850000px;}
.x3_c00316{left:165.545700px;}
.x5_c00316{left:175.440600px;}
.x13_c00316{left:180.880800px;}
.xa_c00316{left:204.832800px;}
.x6_c00316{left:212.259150px;}
.x4_c00316{left:215.008650px;}
.xb_c00316{left:262.809000px;}
.xd_c00316{left:293.162400px;}
.xc_c00316{left:306.356700px;}
.x7_c00316{left:314.655000px;}
.x14_c00316{left:318.901950px;}
.x15_c00316{left:334.656000px;}
.xe_c00316{left:359.185500px;}
.xf_c00316{left:419.015550px;}
.x10_c00316{left:449.015250px;}
.x16_c00316{left:501.930600px;}
.x8_c00316{left:650.592750px;}
.x9_c00316{left:697.589700px;}
.x17_c00316{left:759.915000px;}
@media print{
.v2_c00316{vertical-align:-21.760000pt;}
.v0_c00316{vertical-align:0.000000pt;}
.v1_c00316{vertical-align:26.880000pt;}
.ls7_c00316{letter-spacing:-0.159616pt;}
.ls6_c00316{letter-spacing:0.000000pt;}
.ls9_c00316{letter-spacing:0.128000pt;}
.ls3_c00316{letter-spacing:0.177920pt;}
.lsf_c00316{letter-spacing:0.179968pt;}
.ls11_c00316{letter-spacing:0.213120pt;}
.lse_c00316{letter-spacing:0.355200pt;}
.lsd_c00316{letter-spacing:0.377856pt;}
.ls10_c00316{letter-spacing:0.400304pt;}
.lsb_c00316{letter-spacing:0.425088pt;}
.ls2_c00316{letter-spacing:0.546757pt;}
.ls1_c00316{letter-spacing:0.632913pt;}
.lsc_c00316{letter-spacing:1.390720pt;}
.ls8_c00316{letter-spacing:4.742400pt;}
.ls4_c00316{letter-spacing:5.312000pt;}
.ls0_c00316{letter-spacing:5.328000pt;}
.ls5_c00316{letter-spacing:5.475484pt;}
.lsa_c00316{letter-spacing:12.002176pt;}
.ws1_c00316{word-spacing:-18.620160pt;}
.ws4_c00316{word-spacing:-15.671364pt;}
.ws3_c00316{word-spacing:-15.014528pt;}
.ws5_c00316{word-spacing:-14.118041pt;}
.ws6_c00316{word-spacing:-13.379200pt;}
.ws0_c00316{word-spacing:-10.159744pt;}
.ws2_c00316{word-spacing:-9.024000pt;}
.ws7_c00316{word-spacing:0.000000pt;}
._f_c00316{margin-left:-11.749120pt;}
._10_c00316{margin-left:-10.803200pt;}
._11_c00316{margin-left:-1.852587pt;}
._e_c00316{margin-left:-0.910933pt;}
._8_c00316{width:1.088000pt;}
._9_c00316{width:2.880000pt;}
._d_c00316{width:3.840000pt;}
._6_c00316{width:4.928000pt;}
._b_c00316{width:5.824000pt;}
._3_c00316{width:6.912000pt;}
._5_c00316{width:8.064000pt;}
._4_c00316{width:9.216000pt;}
._2_c00316{width:11.648000pt;}
._c_c00316{width:12.928000pt;}
._1_c00316{width:15.680000pt;}
._0_c00316{width:16.896000pt;}
._a_c00316{width:20.416000pt;}
._7_c00316{width:21.376000pt;}
.fs4_c00316{font-size:32.000000pt;}
.fs2_c00316{font-size:37.120000pt;}
.fs7_c00316{font-size:47.360000pt;}
.fs8_c00316{font-size:48.817571pt;}
.fs3_c00316{font-size:49.920000pt;}
.fs5_c00316{font-size:52.480000pt;}
.fs9_c00316{font-size:53.333333pt;}
.fs6_c00316{font-size:54.095146pt;}
.fs0_c00316{font-size:64.000000pt;}
.fs1_c00316{font-size:65.969690pt;}
.y0_c00316{bottom:0.000000pt;}
.y2b_c00316{bottom:2.773467pt;}
.y29_c00316{bottom:14.400000pt;}
.y28_c00316{bottom:28.480000pt;}
.y2a_c00316{bottom:30.884000pt;}
.y1_c00316{bottom:48.000000pt;}
.y26_c00316{bottom:49.316480pt;}
.y25_c00316{bottom:64.680000pt;}
.y24_c00316{bottom:70.120000pt;}
.y23_c00316{bottom:80.356480pt;}
.y22_c00316{bottom:101.160000pt;}
.y21_c00316{bottom:124.840000pt;}
.y20_c00316{bottom:209.640000pt;}
.y1f_c00316{bottom:241.640000pt;}
.y27_c00316{bottom:259.880000pt;}
.y1e_c00316{bottom:273.640000pt;}
.y1d_c00316{bottom:305.640000pt;}
.y1c_c00316{bottom:337.640000pt;}
.y1b_c00316{bottom:369.640000pt;}
.y1a_c00316{bottom:401.640000pt;}
.y19_c00316{bottom:433.640000pt;}
.y18_c00316{bottom:465.640000pt;}
.y17_c00316{bottom:497.640000pt;}
.y16_c00316{bottom:529.640000pt;}
.y15_c00316{bottom:561.640000pt;}
.y14_c00316{bottom:593.640000pt;}
.y13_c00316{bottom:612.520000pt;}
.y12_c00316{bottom:631.080000pt;}
.y11_c00316{bottom:649.640000pt;}
.y10_c00316{bottom:681.640000pt;}
.yf_c00316{bottom:713.640000pt;}
.ye_c00316{bottom:745.640000pt;}
.yd_c00316{bottom:764.520000pt;}
.yc_c00316{bottom:783.080000pt;}
.yb_c00316{bottom:801.640000pt;}
.ya_c00316{bottom:820.520000pt;}
.y9_c00316{bottom:839.080000pt;}
.y8_c00316{bottom:871.080000pt;}
.y7_c00316{bottom:889.640000pt;}
.y6_c00316{bottom:908.520000pt;}
.y5_c00316{bottom:927.080000pt;}
.y4_c00316{bottom:945.640000pt;}
.y3_c00316{bottom:964.520000pt;}
.y2_c00316{bottom:1011.880000pt;}
.hc_c00316{height:17.116000pt;}
.h6_c00316{height:28.992000pt;}
.hb_c00316{height:37.687165pt;}
.h9_c00316{height:39.680000pt;}
.hd_c00316{height:41.173333pt;}
.h8_c00316{height:41.761453pt;}
.ha_c00316{height:42.908160pt;}
.h7_c00316{height:47.546880pt;}
.h4_c00316{height:50.928601pt;}
.h3_c00316{height:57.984000pt;}
.h5_c00316{height:60.510720pt;}
.h2_c00316{height:1067.880000pt;}
.h0_c00316{height:1122.520000pt;}
.h1_c00316{height:1122.666667pt;}
.w4_c00316{width:22.240000pt;}
.w3_c00316{width:509.120000pt;}
.w2_c00316{width:767.960000pt;}
.w0_c00316{width:793.720000pt;}
.w1_c00316{width:794.000000pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:12.880000pt;}
.x12_c00316{left:62.732400pt;}
.x2_c00316{left:100.480133pt;}
.x11_c00316{left:109.200000pt;}
.x3_c00316{left:147.151733pt;}
.x5_c00316{left:155.947200pt;}
.x13_c00316{left:160.782933pt;}
.xa_c00316{left:182.073600pt;}
.x6_c00316{left:188.674800pt;}
.x4_c00316{left:191.118800pt;}
.xb_c00316{left:233.608000pt;}
.xd_c00316{left:260.588800pt;}
.xc_c00316{left:272.317067pt;}
.x7_c00316{left:279.693333pt;}
.x14_c00316{left:283.468400pt;}
.x15_c00316{left:297.472000pt;}
.xe_c00316{left:319.276000pt;}
.xf_c00316{left:372.458267pt;}
.x10_c00316{left:399.124667pt;}
.x16_c00316{left:446.160533pt;}
.x8_c00316{left:578.304667pt;}
.x9_c00316{left:620.079733pt;}
.x17_c00316{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_78ddcb93730a5af684787da4.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.134000;font-style:normal;font-weight:normal;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_a0f075ac7f2fde6e9a042f28.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;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:ff3_c00317;src:url('chunks/assets/font_9f8b1a57873556d37c3c0576.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:0.787000;font-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_c00317{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00317{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00317{letter-spacing:0.000000px;}
.ls7_c00317{letter-spacing:0.202464px;}
.ls6_c00317{letter-spacing:0.319680px;}
.ls0_c00317{letter-spacing:0.399600px;}
.ls1_c00317{letter-spacing:0.399720px;}
.ls2_c00317{letter-spacing:0.615101px;}
.ls3_c00317{letter-spacing:5.976000px;}
.ls4_c00317{letter-spacing:6.159920px;}
.sc__c00317{text-shadow:none;}
.sc1_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00317{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc1_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00317{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00317{word-spacing:-15.882797px;}
.ws1_c00317{word-spacing:0.000000px;}
._0_c00317{margin-left:-1.118880px;}
._1_c00317{width:1.014000px;}
.fc1_c00317{color:transparent;}
.fc0_c00317{color:rgb(0,0,0);}
.fs2_c00317{font-size:53.280000px;}
.fs3_c00317{font-size:54.919767px;}
.fs4_c00317{font-size:60.000000px;}
.fs0_c00317{font-size:72.000000px;}
.fs1_c00317{font-size:74.215901px;}
.y0_c00317{bottom:0.000000px;}
.y26_c00317{bottom:3.120150px;}
.y24_c00317{bottom:21.960000px;}
.y20_c00317{bottom:30.599850px;}
.y25_c00317{bottom:34.744500px;}
.y22_c00317{bottom:41.040000px;}
.y1_c00317{bottom:54.000000px;}
.y1e_c00317{bottom:112.725000px;}
.y1d_c00317{bottom:148.725000px;}
.y23_c00317{bottom:157.365000px;}
.y1c_c00317{bottom:184.725000px;}
.y1b_c00317{bottom:220.725000px;}
.y1a_c00317{bottom:256.725000px;}
.y19_c00317{bottom:292.725000px;}
.y18_c00317{bottom:328.725000px;}
.y17_c00317{bottom:364.725000px;}
.y16_c00317{bottom:400.725000px;}
.y15_c00317{bottom:436.725000px;}
.y14_c00317{bottom:472.725000px;}
.y21_c00317{bottom:481.365000px;}
.y13_c00317{bottom:509.085000px;}
.y12_c00317{bottom:545.085000px;}
.y11_c00317{bottom:581.085000px;}
.y10_c00317{bottom:617.085000px;}
.yf_c00317{bottom:653.085000px;}
.ye_c00317{bottom:689.085000px;}
.yd_c00317{bottom:725.085000px;}
.yc_c00317{bottom:761.085000px;}
.yb_c00317{bottom:797.085000px;}
.y1f_c00317{bottom:816.165000px;}
.ya_c00317{bottom:833.085000px;}
.y9_c00317{bottom:869.085000px;}
.y8_c00317{bottom:905.085000px;}
.y7_c00317{bottom:941.085000px;}
.y6_c00317{bottom:977.085000px;}
.y5_c00317{bottom:1013.085000px;}
.y4_c00317{bottom:1049.085000px;}
.y3_c00317{bottom:1085.085000px;}
.y2_c00317{bottom:1138.365000px;}
.ha_c00317{height:19.255500px;}
.h9_c00317{height:34.560000px;}
.h7_c00317{height:42.398060px;}
.h5_c00317{height:43.200000px;}
.hb_c00317{height:46.320000px;}
.h6_c00317{height:48.271680px;}
.h8_c00317{height:54.000000px;}
.h4_c00317{height:57.294676px;}
.h3_c00317{height:65.232000px;}
.h2_c00317{height:1201.365000px;}
.h0_c00317{height:1262.835000px;}
.h1_c00317{height:1263.000000px;}
.w6_c00317{width:25.020000px;}
.w5_c00317{width:573.840000px;}
.w4_c00317{width:586.440000px;}
.w3_c00317{width:602.280000px;}
.w2_c00317{width:863.955000px;}
.w0_c00317{width:892.935000px;}
.w1_c00317{width:893.250000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:14.490000px;}
.xf_c00317{left:15.749550px;}
.xb_c00317{left:22.199400px;}
.x7_c00317{left:30.359250px;}
.x6_c00317{left:105.210000px;}
.x2_c00317{left:113.040150px;}
.xa_c00317{left:122.850000px;}
.xe_c00317{left:124.290000px;}
.x10_c00317{left:126.056250px;}
.xc_c00317{left:132.506100px;}
.x8_c00317{left:140.665950px;}
.x11_c00317{left:150.045300px;}
.xd_c00317{left:156.495150px;}
.x3_c00317{left:165.545700px;}
.x9_c00317{left:168.407850px;}
.x4_c00317{left:215.008650px;}
.x5_c00317{left:705.238650px;}
.x12_c00317{left:759.915000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls5_c00317{letter-spacing:0.000000pt;}
.ls7_c00317{letter-spacing:0.179968pt;}
.ls6_c00317{letter-spacing:0.284160pt;}
.ls0_c00317{letter-spacing:0.355200pt;}
.ls1_c00317{letter-spacing:0.355307pt;}
.ls2_c00317{letter-spacing:0.546757pt;}
.ls3_c00317{letter-spacing:5.312000pt;}
.ls4_c00317{letter-spacing:5.475484pt;}
.ws0_c00317{word-spacing:-14.118041pt;}
.ws1_c00317{word-spacing:0.000000pt;}
._0_c00317{margin-left:-0.994560pt;}
._1_c00317{width:0.901333pt;}
.fs2_c00317{font-size:47.360000pt;}
.fs3_c00317{font-size:48.817571pt;}
.fs4_c00317{font-size:53.333333pt;}
.fs0_c00317{font-size:64.000000pt;}
.fs1_c00317{font-size:65.969690pt;}
.y0_c00317{bottom:0.000000pt;}
.y26_c00317{bottom:2.773467pt;}
.y24_c00317{bottom:19.520000pt;}
.y20_c00317{bottom:27.199867pt;}
.y25_c00317{bottom:30.884000pt;}
.y22_c00317{bottom:36.480000pt;}
.y1_c00317{bottom:48.000000pt;}
.y1e_c00317{bottom:100.200000pt;}
.y1d_c00317{bottom:132.200000pt;}
.y23_c00317{bottom:139.880000pt;}
.y1c_c00317{bottom:164.200000pt;}
.y1b_c00317{bottom:196.200000pt;}
.y1a_c00317{bottom:228.200000pt;}
.y19_c00317{bottom:260.200000pt;}
.y18_c00317{bottom:292.200000pt;}
.y17_c00317{bottom:324.200000pt;}
.y16_c00317{bottom:356.200000pt;}
.y15_c00317{bottom:388.200000pt;}
.y14_c00317{bottom:420.200000pt;}
.y21_c00317{bottom:427.880000pt;}
.y13_c00317{bottom:452.520000pt;}
.y12_c00317{bottom:484.520000pt;}
.y11_c00317{bottom:516.520000pt;}
.y10_c00317{bottom:548.520000pt;}
.yf_c00317{bottom:580.520000pt;}
.ye_c00317{bottom:612.520000pt;}
.yd_c00317{bottom:644.520000pt;}
.yc_c00317{bottom:676.520000pt;}
.yb_c00317{bottom:708.520000pt;}
.y1f_c00317{bottom:725.480000pt;}
.ya_c00317{bottom:740.520000pt;}
.y9_c00317{bottom:772.520000pt;}
.y8_c00317{bottom:804.520000pt;}
.y7_c00317{bottom:836.520000pt;}
.y6_c00317{bottom:868.520000pt;}
.y5_c00317{bottom:900.520000pt;}
.y4_c00317{bottom:932.520000pt;}
.y3_c00317{bottom:964.520000pt;}
.y2_c00317{bottom:1011.880000pt;}
.ha_c00317{height:17.116000pt;}
.h9_c00317{height:30.720000pt;}
.h7_c00317{height:37.687165pt;}
.h5_c00317{height:38.400000pt;}
.hb_c00317{height:41.173333pt;}
.h6_c00317{height:42.908160pt;}
.h8_c00317{height:48.000000pt;}
.h4_c00317{height:50.928601pt;}
.h3_c00317{height:57.984000pt;}
.h2_c00317{height:1067.880000pt;}
.h0_c00317{height:1122.520000pt;}
.h1_c00317{height:1122.666667pt;}
.w6_c00317{width:22.240000pt;}
.w5_c00317{width:510.080000pt;}
.w4_c00317{width:521.280000pt;}
.w3_c00317{width:535.360000pt;}
.w2_c00317{width:767.960000pt;}
.w0_c00317{width:793.720000pt;}
.w1_c00317{width:794.000000pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:12.880000pt;}
.xf_c00317{left:13.999600pt;}
.xb_c00317{left:19.732800pt;}
.x7_c00317{left:26.986000pt;}
.x6_c00317{left:93.520000pt;}
.x2_c00317{left:100.480133pt;}
.xa_c00317{left:109.200000pt;}
.xe_c00317{left:110.480000pt;}
.x10_c00317{left:112.050000pt;}
.xc_c00317{left:117.783200pt;}
.x8_c00317{left:125.036400pt;}
.x11_c00317{left:133.373600pt;}
.xd_c00317{left:139.106800pt;}
.x3_c00317{left:147.151733pt;}
.x9_c00317{left:149.695867pt;}
.x4_c00317{left:191.118800pt;}
.x5_c00317{left:626.878800pt;}
.x12_c00317{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_78ddcb93730a5af684787da4.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.134000;font-style:normal;font-weight:normal;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_a0f075ac7f2fde6e9a042f28.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;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:ff3_c00318;src:url('chunks/assets/font_21c173849a9bc1742ab1dd9d.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:0.787000;font-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_c00318{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00318{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00318{letter-spacing:0.000000px;}
.ls1_c00318{letter-spacing:0.200160px;}
.ls6_c00318{letter-spacing:0.202464px;}
.ls7_c00318{letter-spacing:0.319680px;}
.ls2_c00318{letter-spacing:0.399600px;}
.ls0_c00318{letter-spacing:0.615101px;}
.ls3_c00318{letter-spacing:5.976000px;}
.ls4_c00318{letter-spacing:6.159920px;}
.sc__c00318{text-shadow:none;}
.sc1_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00318{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc1_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00318{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00318{word-spacing:-15.882797px;}
.ws1_c00318{word-spacing:0.000000px;}
._0_c00318{width:1.014120px;}
.fc1_c00318{color:transparent;}
.fc0_c00318{color:rgb(0,0,0);}
.fs2_c00318{font-size:53.280000px;}
.fs3_c00318{font-size:54.919767px;}
.fs4_c00318{font-size:60.000000px;}
.fs0_c00318{font-size:72.000000px;}
.fs1_c00318{font-size:74.215901px;}
.y0_c00318{bottom:0.000000px;}
.y22_c00318{bottom:3.120150px;}
.y1f_c00318{bottom:14.400000px;}
.y1d_c00318{bottom:21.600000px;}
.y21_c00318{bottom:34.744500px;}
.y1_c00318{bottom:54.000000px;}
.y20_c00318{bottom:157.365000px;}
.y1b_c00318{bottom:220.725000px;}
.y1a_c00318{bottom:256.725000px;}
.y19_c00318{bottom:292.725000px;}
.y18_c00318{bottom:328.725000px;}
.y17_c00318{bottom:364.725000px;}
.y16_c00318{bottom:400.725000px;}
.y15_c00318{bottom:436.725000px;}
.y14_c00318{bottom:472.725000px;}
.y1e_c00318{bottom:508.365000px;}
.y13_c00318{bottom:509.085000px;}
.y12_c00318{bottom:545.085000px;}
.y11_c00318{bottom:581.085000px;}
.y10_c00318{bottom:617.085000px;}
.yf_c00318{bottom:653.085000px;}
.ye_c00318{bottom:689.085000px;}
.yd_c00318{bottom:725.085000px;}
.yc_c00318{bottom:761.085000px;}
.yb_c00318{bottom:797.085000px;}
.y1c_c00318{bottom:832.365000px;}
.ya_c00318{bottom:833.085000px;}
.y9_c00318{bottom:869.085000px;}
.y8_c00318{bottom:905.085000px;}
.y7_c00318{bottom:941.085000px;}
.y6_c00318{bottom:977.085000px;}
.y5_c00318{bottom:1013.085000px;}
.y4_c00318{bottom:1049.085000px;}
.y3_c00318{bottom:1085.085000px;}
.y2_c00318{bottom:1138.365000px;}
.h9_c00318{height:19.255500px;}
.h8_c00318{height:27.000000px;}
.h5_c00318{height:34.200000px;}
.h7_c00318{height:42.398060px;}
.ha_c00318{height:46.320000px;}
.h6_c00318{height:48.271680px;}
.h4_c00318{height:57.294676px;}
.h3_c00318{height:65.232000px;}
.h2_c00318{height:1201.365000px;}
.h0_c00318{height:1262.835000px;}
.h1_c00318{height:1263.000000px;}
.w6_c00318{width:25.020000px;}
.w3_c00318{width:578.160000px;}
.w4_c00318{width:579.240000px;}
.w5_c00318{width:581.040000px;}
.w2_c00318{width:863.955000px;}
.w0_c00318{width:892.935000px;}
.w1_c00318{width:893.250000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:14.490000px;}
.x6_c00318{left:18.209250px;}
.x2_c00318{left:113.040150px;}
.x5_c00318{left:119.970000px;}
.x9_c00318{left:124.290000px;}
.x7_c00318{left:128.515950px;}
.xb_c00318{left:148.816350px;}
.x8_c00318{left:152.505000px;}
.xa_c00318{left:156.573000px;}
.x3_c00318{left:165.545700px;}
.x4_c00318{left:215.008650px;}
.xc_c00318{left:759.915000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls5_c00318{letter-spacing:0.000000pt;}
.ls1_c00318{letter-spacing:0.177920pt;}
.ls6_c00318{letter-spacing:0.179968pt;}
.ls7_c00318{letter-spacing:0.284160pt;}
.ls2_c00318{letter-spacing:0.355200pt;}
.ls0_c00318{letter-spacing:0.546757pt;}
.ls3_c00318{letter-spacing:5.312000pt;}
.ls4_c00318{letter-spacing:5.475484pt;}
.ws0_c00318{word-spacing:-14.118041pt;}
.ws1_c00318{word-spacing:0.000000pt;}
._0_c00318{width:0.901440pt;}
.fs2_c00318{font-size:47.360000pt;}
.fs3_c00318{font-size:48.817571pt;}
.fs4_c00318{font-size:53.333333pt;}
.fs0_c00318{font-size:64.000000pt;}
.fs1_c00318{font-size:65.969690pt;}
.y0_c00318{bottom:0.000000pt;}
.y22_c00318{bottom:2.773467pt;}
.y1f_c00318{bottom:12.800000pt;}
.y1d_c00318{bottom:19.200000pt;}
.y21_c00318{bottom:30.884000pt;}
.y1_c00318{bottom:48.000000pt;}
.y20_c00318{bottom:139.880000pt;}
.y1b_c00318{bottom:196.200000pt;}
.y1a_c00318{bottom:228.200000pt;}
.y19_c00318{bottom:260.200000pt;}
.y18_c00318{bottom:292.200000pt;}
.y17_c00318{bottom:324.200000pt;}
.y16_c00318{bottom:356.200000pt;}
.y15_c00318{bottom:388.200000pt;}
.y14_c00318{bottom:420.200000pt;}
.y1e_c00318{bottom:451.880000pt;}
.y13_c00318{bottom:452.520000pt;}
.y12_c00318{bottom:484.520000pt;}
.y11_c00318{bottom:516.520000pt;}
.y10_c00318{bottom:548.520000pt;}
.yf_c00318{bottom:580.520000pt;}
.ye_c00318{bottom:612.520000pt;}
.yd_c00318{bottom:644.520000pt;}
.yc_c00318{bottom:676.520000pt;}
.yb_c00318{bottom:708.520000pt;}
.y1c_c00318{bottom:739.880000pt;}
.ya_c00318{bottom:740.520000pt;}
.y9_c00318{bottom:772.520000pt;}
.y8_c00318{bottom:804.520000pt;}
.y7_c00318{bottom:836.520000pt;}
.y6_c00318{bottom:868.520000pt;}
.y5_c00318{bottom:900.520000pt;}
.y4_c00318{bottom:932.520000pt;}
.y3_c00318{bottom:964.520000pt;}
.y2_c00318{bottom:1011.880000pt;}
.h9_c00318{height:17.116000pt;}
.h8_c00318{height:24.000000pt;}
.h5_c00318{height:30.400000pt;}
.h7_c00318{height:37.687165pt;}
.ha_c00318{height:41.173333pt;}
.h6_c00318{height:42.908160pt;}
.h4_c00318{height:50.928601pt;}
.h3_c00318{height:57.984000pt;}
.h2_c00318{height:1067.880000pt;}
.h0_c00318{height:1122.520000pt;}
.h1_c00318{height:1122.666667pt;}
.w6_c00318{width:22.240000pt;}
.w3_c00318{width:513.920000pt;}
.w4_c00318{width:514.880000pt;}
.w5_c00318{width:516.480000pt;}
.w2_c00318{width:767.960000pt;}
.w0_c00318{width:793.720000pt;}
.w1_c00318{width:794.000000pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:12.880000pt;}
.x6_c00318{left:16.186000pt;}
.x2_c00318{left:100.480133pt;}
.x5_c00318{left:106.640000pt;}
.x9_c00318{left:110.480000pt;}
.x7_c00318{left:114.236400pt;}
.xb_c00318{left:132.281200pt;}
.x8_c00318{left:135.560000pt;}
.xa_c00318{left:139.176000pt;}
.x3_c00318{left:147.151733pt;}
.x4_c00318{left:191.118800pt;}
.xc_c00318{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8fbde601813b4cbc9036fb2a.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.134000;font-style:normal;font-weight:normal;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_5fd0479b1a94ca0015a10765.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;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:ff3_c00319;src:url('chunks/assets/font_28930682cc0be2395bee7d8e.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:0.787000;font-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_c00319{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00319{vertical-align:-24.480000px;}
.v0_c00319{vertical-align:0.000000px;}
.v1_c00319{vertical-align:30.240000px;}
.ls8_c00319{letter-spacing:0.000000px;}
.ls11_c00319{letter-spacing:0.265680px;}
.ls6_c00319{letter-spacing:0.295200px;}
.ls4_c00319{letter-spacing:0.315600px;}
.ls17_c00319{letter-spacing:0.318816px;}
.ls16_c00319{letter-spacing:0.328628px;}
.ls15_c00319{letter-spacing:0.478224px;}
.ls5_c00319{letter-spacing:0.531360px;}
.lse_c00319{letter-spacing:0.602485px;}
.ls14_c00319{letter-spacing:0.712027px;}
.ls3_c00319{letter-spacing:0.752640px;}
.ls10_c00319{letter-spacing:0.962352px;}
.lsf_c00319{letter-spacing:0.991970px;}
.ls12_c00319{letter-spacing:3.016944px;}
.lsc_c00319{letter-spacing:5.009472px;}
.lsb_c00319{letter-spacing:5.245344px;}
.ls9_c00319{letter-spacing:5.406777px;}
.lsa_c00319{letter-spacing:5.499398px;}
.ls2_c00319{letter-spacing:5.976000px;}
.ls1_c00319{letter-spacing:6.158683px;}
.ls7_c00319{letter-spacing:6.159920px;}
.ls0_c00319{letter-spacing:6.181566px;}
.lsd_c00319{letter-spacing:7.710624px;}
.ls13_c00319{letter-spacing:19.908288px;}
.sc__c00319{text-shadow:none;}
.sc1_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00319{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc1_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00319{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00319{word-spacing:-25.992000px;}
.ws0_c00319{word-spacing:-21.592374px;}
.ws2_c00319{word-spacing:-20.621952px;}
.ws3_c00319{word-spacing:-20.016000px;}
.ws6_c00319{word-spacing:-17.910227px;}
.ws7_c00319{word-spacing:-17.630284px;}
.ws4_c00319{word-spacing:-11.609280px;}
.ws5_c00319{word-spacing:-10.008000px;}
.ws8_c00319{word-spacing:0.000000px;}
._17_c00319{margin-left:-20.044080px;}
._18_c00319{margin-left:-18.863280px;}
._12_c00319{margin-left:-8.029440px;}
._11_c00319{margin-left:-7.025760px;}
._15_c00319{margin-left:-3.424320px;}
._14_c00319{margin-left:-2.420640px;}
._13_c00319{margin-left:-1.034570px;}
._f_c00319{width:1.584000px;}
._e_c00319{width:3.672000px;}
._9_c00319{width:4.752000px;}
._0_c00319{width:6.474792px;}
._5_c00319{width:7.925208px;}
._7_c00319{width:9.216000px;}
._6_c00319{width:10.512000px;}
._1_c00319{width:11.520000px;}
._8_c00319{width:12.600000px;}
._d_c00319{width:13.896000px;}
._c_c00319{width:15.192000px;}
._10_c00319{width:16.272000px;}
._16_c00319{width:19.847520px;}
._3_c00319{width:22.032000px;}
._2_c00319{width:23.112000px;}
._b_c00319{width:24.408000px;}
._a_c00319{width:26.928000px;}
._4_c00319{width:56.664000px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs5_c00319{font-size:36.000000px;}
.fs4_c00319{font-size:41.760000px;}
.fs3_c00319{font-size:56.160000px;}
.fs2_c00319{font-size:57.888403px;}
.fs6_c00319{font-size:59.040000px;}
.fs8_c00319{font-size:60.000000px;}
.fs7_c00319{font-size:60.857039px;}
.fs0_c00319{font-size:72.000000px;}
.fs1_c00319{font-size:74.215901px;}
.y0_c00319{bottom:0.000000px;}
.y35_c00319{bottom:3.120150px;}
.y34_c00319{bottom:34.744500px;}
.y1_c00319{bottom:54.000000px;}
.y32_c00319{bottom:55.481040px;}
.y33_c00319{bottom:55.485000px;}
.y31_c00319{bottom:72.765000px;}
.y30_c00319{bottom:72.766800px;}
.y2e_c00319{bottom:90.401040px;}
.y2f_c00319{bottom:90.405000px;}
.y2d_c00319{bottom:113.805000px;}
.y2c_c00319{bottom:131.445000px;}
.y2b_c00319{bottom:142.961040px;}
.y2a_c00319{bottom:160.245000px;}
.y29_c00319{bottom:166.365000px;}
.y28_c00319{bottom:193.005000px;}
.y27_c00319{bottom:268.965000px;}
.y26_c00319{bottom:289.845000px;}
.y25_c00319{bottom:310.725000px;}
.y24_c00319{bottom:331.965000px;}
.y23_c00319{bottom:367.965000px;}
.y22_c00319{bottom:388.845000px;}
.y21_c00319{bottom:409.725000px;}
.y20_c00319{bottom:430.965000px;}
.y1f_c00319{bottom:451.845000px;}
.y1e_c00319{bottom:472.725000px;}
.y1d_c00319{bottom:493.965000px;}
.y1c_c00319{bottom:514.845000px;}
.y1b_c00319{bottom:535.725000px;}
.y1a_c00319{bottom:556.965000px;}
.y19_c00319{bottom:577.845000px;}
.y18_c00319{bottom:613.845000px;}
.y17_c00319{bottom:634.725000px;}
.y16_c00319{bottom:655.965000px;}
.y15_c00319{bottom:676.845000px;}
.y14_c00319{bottom:697.725000px;}
.y13_c00319{bottom:718.965000px;}
.y12_c00319{bottom:739.845000px;}
.y11_c00319{bottom:761.085000px;}
.y10_c00319{bottom:781.965000px;}
.yf_c00319{bottom:802.845000px;}
.ye_c00319{bottom:824.085000px;}
.yd_c00319{bottom:860.085000px;}
.yc_c00319{bottom:880.965000px;}
.yb_c00319{bottom:901.845000px;}
.ya_c00319{bottom:923.085000px;}
.y9_c00319{bottom:943.965000px;}
.y8_c00319{bottom:964.845000px;}
.y7_c00319{bottom:986.085000px;}
.y6_c00319{bottom:1006.965000px;}
.y5_c00319{bottom:1027.845000px;}
.y4_c00319{bottom:1049.085000px;}
.y3_c00319{bottom:1085.085000px;}
.y2_c00319{bottom:1138.365000px;}
.h9_c00319{height:19.255500px;}
.h6_c00319{height:32.616000px;}
.ha_c00319{height:46.320000px;}
.h7_c00319{height:46.981634px;}
.h8_c00319{height:53.490240px;}
.h4_c00319{height:57.294676px;}
.h3_c00319{height:65.232000px;}
.h5_c00319{height:68.074560px;}
.h2_c00319{height:1201.365000px;}
.h0_c00319{height:1262.835000px;}
.h1_c00319{height:1263.000000px;}
.w3_c00319{width:25.020000px;}
.w2_c00319{width:863.955000px;}
.w0_c00319{width:892.935000px;}
.w1_c00319{width:893.250000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:14.490000px;}
.x2_c00319{left:113.040150px;}
.x9_c00319{left:138.061200px;}
.x3_c00319{left:165.545700px;}
.xa_c00319{left:186.030450px;}
.x13_c00319{left:196.669950px;}
.x16_c00319{left:209.425050px;}
.x6_c00319{left:242.294700px;}
.x26_c00319{left:247.719750px;}
.xd_c00319{left:261.662850px;}
.x1b_c00319{left:278.859300px;}
.x4_c00319{left:290.481450px;}
.x17_c00319{left:311.634900px;}
.x18_c00319{left:351.050550px;}
.xf_c00319{left:394.662600px;}
.x20_c00319{left:413.014800px;}
.x27_c00319{left:419.043000px;}
.x5_c00319{left:427.908750px;}
.xb_c00319{left:439.158300px;}
.x24_c00319{left:449.952750px;}
.x10_c00319{left:451.703550px;}
.x1c_c00319{left:460.758600px;}
.xc_c00319{left:469.181700px;}
.x1f_c00319{left:478.958550px;}
.x19_c00319{left:501.771150px;}
.x21_c00319{left:504.048600px;}
.x28_c00319{left:508.932150px;}
.x2a_c00319{left:518.926800px;}
.x25_c00319{left:531.610500px;}
.x1d_c00319{left:535.027650px;}
.x29_c00319{left:539.980500px;}
.x14_c00319{left:545.431650px;}
.x2b_c00319{left:548.895900px;}
.x1a_c00319{left:610.914600px;}
.xe_c00319{left:614.763000px;}
.x11_c00319{left:640.447650px;}
.x1e_c00319{left:642.148650px;}
.x15_c00319{left:655.750800px;}
.x7_c00319{left:672.379050px;}
.x22_c00319{left:680.191350px;}
.x23_c00319{left:686.221500px;}
.x8_c00319{left:745.386150px;}
.x12_c00319{left:750.390000px;}
.x2c_c00319{left:759.915000px;}
@media print{
.v2_c00319{vertical-align:-21.760000pt;}
.v0_c00319{vertical-align:0.000000pt;}
.v1_c00319{vertical-align:26.880000pt;}
.ls8_c00319{letter-spacing:0.000000pt;}
.ls11_c00319{letter-spacing:0.236160pt;}
.ls6_c00319{letter-spacing:0.262400pt;}
.ls4_c00319{letter-spacing:0.280533pt;}
.ls17_c00319{letter-spacing:0.283392pt;}
.ls16_c00319{letter-spacing:0.292114pt;}
.ls15_c00319{letter-spacing:0.425088pt;}
.ls5_c00319{letter-spacing:0.472320pt;}
.lse_c00319{letter-spacing:0.535542pt;}
.ls14_c00319{letter-spacing:0.632913pt;}
.ls3_c00319{letter-spacing:0.669013pt;}
.ls10_c00319{letter-spacing:0.855424pt;}
.lsf_c00319{letter-spacing:0.881751pt;}
.ls12_c00319{letter-spacing:2.681728pt;}
.lsc_c00319{letter-spacing:4.452864pt;}
.lsb_c00319{letter-spacing:4.662528pt;}
.ls9_c00319{letter-spacing:4.806024pt;}
.lsa_c00319{letter-spacing:4.888354pt;}
.ls2_c00319{letter-spacing:5.312000pt;}
.ls1_c00319{letter-spacing:5.474385pt;}
.ls7_c00319{letter-spacing:5.475484pt;}
.ls0_c00319{letter-spacing:5.494725pt;}
.lsd_c00319{letter-spacing:6.853888pt;}
.ls13_c00319{letter-spacing:17.696256pt;}
.ws1_c00319{word-spacing:-23.104000pt;}
.ws0_c00319{word-spacing:-19.193222pt;}
.ws2_c00319{word-spacing:-18.330624pt;}
.ws3_c00319{word-spacing:-17.792000pt;}
.ws6_c00319{word-spacing:-15.920201pt;}
.ws7_c00319{word-spacing:-15.671364pt;}
.ws4_c00319{word-spacing:-10.319360pt;}
.ws5_c00319{word-spacing:-8.896000pt;}
.ws8_c00319{word-spacing:0.000000pt;}
._17_c00319{margin-left:-17.816960pt;}
._18_c00319{margin-left:-16.767360pt;}
._12_c00319{margin-left:-7.137280pt;}
._11_c00319{margin-left:-6.245120pt;}
._15_c00319{margin-left:-3.043840pt;}
._14_c00319{margin-left:-2.151680pt;}
._13_c00319{margin-left:-0.919617pt;}
._f_c00319{width:1.408000pt;}
._e_c00319{width:3.264000pt;}
._9_c00319{width:4.224000pt;}
._0_c00319{width:5.755371pt;}
._5_c00319{width:7.044629pt;}
._7_c00319{width:8.192000pt;}
._6_c00319{width:9.344000pt;}
._1_c00319{width:10.240000pt;}
._8_c00319{width:11.200000pt;}
._d_c00319{width:12.352000pt;}
._c_c00319{width:13.504000pt;}
._10_c00319{width:14.464000pt;}
._16_c00319{width:17.642240pt;}
._3_c00319{width:19.584000pt;}
._2_c00319{width:20.544000pt;}
._b_c00319{width:21.696000pt;}
._a_c00319{width:23.936000pt;}
._4_c00319{width:50.368000pt;}
.fs5_c00319{font-size:32.000000pt;}
.fs4_c00319{font-size:37.120000pt;}
.fs3_c00319{font-size:49.920000pt;}
.fs2_c00319{font-size:51.456358pt;}
.fs6_c00319{font-size:52.480000pt;}
.fs8_c00319{font-size:53.333333pt;}
.fs7_c00319{font-size:54.095146pt;}
.fs0_c00319{font-size:64.000000pt;}
.fs1_c00319{font-size:65.969690pt;}
.y0_c00319{bottom:0.000000pt;}
.y35_c00319{bottom:2.773467pt;}
.y34_c00319{bottom:30.884000pt;}
.y1_c00319{bottom:48.000000pt;}
.y32_c00319{bottom:49.316480pt;}
.y33_c00319{bottom:49.320000pt;}
.y31_c00319{bottom:64.680000pt;}
.y30_c00319{bottom:64.681600pt;}
.y2e_c00319{bottom:80.356480pt;}
.y2f_c00319{bottom:80.360000pt;}
.y2d_c00319{bottom:101.160000pt;}
.y2c_c00319{bottom:116.840000pt;}
.y2b_c00319{bottom:127.076480pt;}
.y2a_c00319{bottom:142.440000pt;}
.y29_c00319{bottom:147.880000pt;}
.y28_c00319{bottom:171.560000pt;}
.y27_c00319{bottom:239.080000pt;}
.y26_c00319{bottom:257.640000pt;}
.y25_c00319{bottom:276.200000pt;}
.y24_c00319{bottom:295.080000pt;}
.y23_c00319{bottom:327.080000pt;}
.y22_c00319{bottom:345.640000pt;}
.y21_c00319{bottom:364.200000pt;}
.y20_c00319{bottom:383.080000pt;}
.y1f_c00319{bottom:401.640000pt;}
.y1e_c00319{bottom:420.200000pt;}
.y1d_c00319{bottom:439.080000pt;}
.y1c_c00319{bottom:457.640000pt;}
.y1b_c00319{bottom:476.200000pt;}
.y1a_c00319{bottom:495.080000pt;}
.y19_c00319{bottom:513.640000pt;}
.y18_c00319{bottom:545.640000pt;}
.y17_c00319{bottom:564.200000pt;}
.y16_c00319{bottom:583.080000pt;}
.y15_c00319{bottom:601.640000pt;}
.y14_c00319{bottom:620.200000pt;}
.y13_c00319{bottom:639.080000pt;}
.y12_c00319{bottom:657.640000pt;}
.y11_c00319{bottom:676.520000pt;}
.y10_c00319{bottom:695.080000pt;}
.yf_c00319{bottom:713.640000pt;}
.ye_c00319{bottom:732.520000pt;}
.yd_c00319{bottom:764.520000pt;}
.yc_c00319{bottom:783.080000pt;}
.yb_c00319{bottom:801.640000pt;}
.ya_c00319{bottom:820.520000pt;}
.y9_c00319{bottom:839.080000pt;}
.y8_c00319{bottom:857.640000pt;}
.y7_c00319{bottom:876.520000pt;}
.y6_c00319{bottom:895.080000pt;}
.y5_c00319{bottom:913.640000pt;}
.y4_c00319{bottom:932.520000pt;}
.y3_c00319{bottom:964.520000pt;}
.y2_c00319{bottom:1011.880000pt;}
.h9_c00319{height:17.116000pt;}
.h6_c00319{height:28.992000pt;}
.ha_c00319{height:41.173333pt;}
.h7_c00319{height:41.761453pt;}
.h8_c00319{height:47.546880pt;}
.h4_c00319{height:50.928601pt;}
.h3_c00319{height:57.984000pt;}
.h5_c00319{height:60.510720pt;}
.h2_c00319{height:1067.880000pt;}
.h0_c00319{height:1122.520000pt;}
.h1_c00319{height:1122.666667pt;}
.w3_c00319{width:22.240000pt;}
.w2_c00319{width:767.960000pt;}
.w0_c00319{width:793.720000pt;}
.w1_c00319{width:794.000000pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:12.880000pt;}
.x2_c00319{left:100.480133pt;}
.x9_c00319{left:122.721067pt;}
.x3_c00319{left:147.151733pt;}
.xa_c00319{left:165.360400pt;}
.x13_c00319{left:174.817733pt;}
.x16_c00319{left:186.155600pt;}
.x6_c00319{left:215.373067pt;}
.x26_c00319{left:220.195333pt;}
.xd_c00319{left:232.589200pt;}
.x1b_c00319{left:247.874933pt;}
.x4_c00319{left:258.205733pt;}
.x17_c00319{left:277.008800pt;}
.x18_c00319{left:312.044933pt;}
.xf_c00319{left:350.811200pt;}
.x20_c00319{left:367.124267pt;}
.x27_c00319{left:372.482667pt;}
.x5_c00319{left:380.363333pt;}
.xb_c00319{left:390.362933pt;}
.x24_c00319{left:399.958000pt;}
.x10_c00319{left:401.514267pt;}
.x1c_c00319{left:409.563200pt;}
.xc_c00319{left:417.050400pt;}
.x1f_c00319{left:425.740933pt;}
.x19_c00319{left:446.018800pt;}
.x21_c00319{left:448.043200pt;}
.x28_c00319{left:452.384133pt;}
.x2a_c00319{left:461.268267pt;}
.x25_c00319{left:472.542667pt;}
.x1d_c00319{left:475.580133pt;}
.x29_c00319{left:479.982667pt;}
.x14_c00319{left:484.828133pt;}
.x2b_c00319{left:487.907467pt;}
.x1a_c00319{left:543.035200pt;}
.xe_c00319{left:546.456000pt;}
.x11_c00319{left:569.286800pt;}
.x1e_c00319{left:570.798800pt;}
.x15_c00319{left:582.889600pt;}
.x7_c00319{left:597.670267pt;}
.x22_c00319{left:604.614533pt;}
.x23_c00319{left:609.974667pt;}
.x8_c00319{left:662.565467pt;}
.x12_c00319{left:667.013333pt;}
.x2c_c00319{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_48f7e8284cb8d28e88388918.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.134000;font-style:normal;font-weight:normal;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_b150abe73d267ae9b2bd9ec0.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;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:ff3_c00320;src:url('chunks/assets/font_7cddc0d019772262427ff027.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00320{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00320{vertical-align:-24.480000px;}
.v0_c00320{vertical-align:0.000000px;}
.v3_c00320{vertical-align:24.472800px;}
.v1_c00320{vertical-align:30.240000px;}
.ls14_c00320{letter-spacing:0.000000px;}
.ls16_c00320{letter-spacing:0.093600px;}
.ls6_c00320{letter-spacing:0.230040px;}
.ls19_c00320{letter-spacing:0.265680px;}
.ls1_c00320{letter-spacing:0.272640px;}
.ls11_c00320{letter-spacing:0.295200px;}
.ls12_c00320{letter-spacing:0.304285px;}
.ls1b_c00320{letter-spacing:0.318816px;}
.lsb_c00320{letter-spacing:0.328628px;}
.lse_c00320{letter-spacing:0.342432px;}
.ls5_c00320{letter-spacing:0.345240px;}
.lsd_c00320{letter-spacing:0.378600px;}
.ls1c_c00320{letter-spacing:0.425088px;}
.ls4_c00320{letter-spacing:0.426600px;}
.ls1a_c00320{letter-spacing:0.438171px;}
.ls2b_c00320{letter-spacing:0.478224px;}
.ls18_c00320{letter-spacing:0.531360px;}
.lsc_c00320{letter-spacing:0.560880px;}
.ls25_c00320{letter-spacing:0.584496px;}
.ls1e_c00320{letter-spacing:0.602485px;}
.ls27_c00320{letter-spacing:0.690768px;}
.ls3_c00320{letter-spacing:0.722640px;}
.ls26_c00320{letter-spacing:0.797040px;}
.ls20_c00320{letter-spacing:0.821570px;}
.ls10_c00320{letter-spacing:1.712160px;}
.ls2a_c00320{letter-spacing:1.971936px;}
.ls29_c00320{letter-spacing:2.107728px;}
.ls22_c00320{letter-spacing:3.512880px;}
.lsf_c00320{letter-spacing:5.301792px;}
.ls23_c00320{letter-spacing:5.514336px;}
.ls0_c00320{letter-spacing:5.976000px;}
.ls8_c00320{letter-spacing:6.048000px;}
.ls13_c00320{letter-spacing:6.159920px;}
.ls7_c00320{letter-spacing:6.264000px;}
.ls28_c00320{letter-spacing:6.683328px;}
.ls24_c00320{letter-spacing:8.543088px;}
.ls17_c00320{letter-spacing:9.948240px;}
.ls9_c00320{letter-spacing:10.224000px;}
.lsa_c00320{letter-spacing:10.296000px;}
.ls21_c00320{letter-spacing:18.072144px;}
.ls1f_c00320{letter-spacing:20.185776px;}
.ls1d_c00320{letter-spacing:20.191680px;}
.ls2_c00320{letter-spacing:28.152000px;}
.ls15_c00320{letter-spacing:31.233600px;}
.sc__c00320{text-shadow:none;}
.sc1_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00320{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc1_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00320{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00320{word-spacing:-20.016000px;}
.ws5_c00320{word-spacing:-17.739827px;}
.ws3_c00320{word-spacing:-17.356428px;}
.ws4_c00320{word-spacing:-17.246885px;}
.ws1_c00320{word-spacing:-11.609280px;}
.ws2_c00320{word-spacing:-10.008000px;}
.ws6_c00320{word-spacing:0.000000px;}
._3_c00320{margin-left:-31.363200px;}
._18_c00320{margin-left:-20.664000px;}
._17_c00320{margin-left:-19.601280px;}
._19_c00320{margin-left:-18.479520px;}
._1b_c00320{margin-left:-17.121600px;}
._13_c00320{margin-left:-10.450080px;}
._12_c00320{margin-left:-9.269280px;}
._1e_c00320{margin-left:-7.970400px;}
._1f_c00320{margin-left:-6.848640px;}
._21_c00320{margin-left:-5.490720px;}
._1d_c00320{margin-left:-3.995040px;}
._1c_c00320{margin-left:-2.883120px;}
._14_c00320{margin-left:-1.041840px;}
._c_c00320{width:1.060200px;}
._6_c00320{width:2.088000px;}
._f_c00320{width:3.528000px;}
._11_c00320{width:4.536000px;}
._d_c00320{width:6.552000px;}
._7_c00320{width:9.144000px;}
._9_c00320{width:10.800000px;}
._20_c00320{width:12.006720px;}
._10_c00320{width:14.904000px;}
._16_c00320{width:17.950680px;}
._15_c00320{width:19.069920px;}
._1a_c00320{width:20.211807px;}
._b_c00320{width:21.312000px;}
._a_c00320{width:24.120000px;}
._e_c00320{width:25.272000px;}
._4_c00320{width:28.011600px;}
._5_c00320{width:29.018417px;}
._8_c00320{width:30.222583px;}
._2_c00320{width:31.248000px;}
._1_c00320{width:38.160000px;}
._0_c00320{width:39.334428px;}
.fc1_c00320{color:rgb(38,38,38);}
.fc0_c00320{color:rgb(0,0,0);}
.fs3_c00320{font-size:36.000000px;}
.fs2_c00320{font-size:41.760000px;}
.fs4_c00320{font-size:59.040000px;}
.fs6_c00320{font-size:60.000000px;}
.fs5_c00320{font-size:60.857039px;}
.fs0_c00320{font-size:72.000000px;}
.fs1_c00320{font-size:74.215901px;}
.y0_c00320{bottom:0.000000px;}
.y3d_c00320{bottom:3.120150px;}
.y3c_c00320{bottom:34.744500px;}
.y1_c00320{bottom:54.000000px;}
.y3b_c00320{bottom:55.485000px;}
.y3a_c00320{bottom:78.885000px;}
.y38_c00320{bottom:90.401040px;}
.y39_c00320{bottom:90.405000px;}
.y37_c00320{bottom:107.685000px;}
.y36_c00320{bottom:107.686800px;}
.y34_c00320{bottom:125.322840px;}
.y35_c00320{bottom:125.325000px;}
.y33_c00320{bottom:142.961040px;}
.y31_c00320{bottom:160.244640px;}
.y32_c00320{bottom:160.245000px;}
.y30_c00320{bottom:177.882840px;}
.y2f_c00320{bottom:195.521040px;}
.y2e_c00320{bottom:218.925000px;}
.y2d_c00320{bottom:236.565000px;}
.y2c_c00320{bottom:247.726800px;}
.y2b_c00320{bottom:271.485000px;}
.y2a_c00320{bottom:283.001040px;}
.y29_c00320{bottom:300.286800px;}
.y28_c00320{bottom:317.925000px;}
.y27_c00320{bottom:317.926800px;}
.y26_c00320{bottom:335.565000px;}
.y25_c00320{bottom:341.685000px;}
.y24_c00320{bottom:352.845000px;}
.y23_c00320{bottom:352.846800px;}
.y21_c00320{bottom:370.481040px;}
.y22_c00320{bottom:370.485000px;}
.y20_c00320{bottom:393.885000px;}
.y1f_c00320{bottom:420.525000px;}
.y1e_c00320{bottom:472.725000px;}
.y1d_c00320{bottom:493.965000px;}
.y1c_c00320{bottom:514.845000px;}
.y1b_c00320{bottom:535.725000px;}
.y1a_c00320{bottom:556.965000px;}
.y19_c00320{bottom:577.845000px;}
.y18_c00320{bottom:598.725000px;}
.y17_c00320{bottom:634.725000px;}
.y16_c00320{bottom:655.965000px;}
.y15_c00320{bottom:676.845000px;}
.y14_c00320{bottom:697.725000px;}
.y13_c00320{bottom:718.965000px;}
.y12_c00320{bottom:739.845000px;}
.y11_c00320{bottom:775.845000px;}
.y10_c00320{bottom:797.085000px;}
.yf_c00320{bottom:817.965000px;}
.ye_c00320{bottom:838.845000px;}
.yd_c00320{bottom:860.085000px;}
.yc_c00320{bottom:880.965000px;}
.yb_c00320{bottom:901.845000px;}
.ya_c00320{bottom:937.845000px;}
.y9_c00320{bottom:959.085000px;}
.y8_c00320{bottom:979.965000px;}
.y7_c00320{bottom:1000.845000px;}
.y6_c00320{bottom:1022.085000px;}
.y5_c00320{bottom:1042.965000px;}
.y4_c00320{bottom:1063.845000px;}
.y3_c00320{bottom:1085.085000px;}
.y2_c00320{bottom:1138.365000px;}
.ha_c00320{height:19.255500px;}
.h6_c00320{height:32.616000px;}
.hb_c00320{height:46.320000px;}
.h8_c00320{height:46.981634px;}
.h7_c00320{height:53.490240px;}
.h9_c00320{height:57.088800px;}
.h4_c00320{height:57.294676px;}
.h3_c00320{height:65.232000px;}
.h5_c00320{height:68.074560px;}
.h2_c00320{height:1201.365000px;}
.h0_c00320{height:1262.835000px;}
.h1_c00320{height:1263.000000px;}
.w3_c00320{width:25.020000px;}
.w2_c00320{width:863.955000px;}
.w0_c00320{width:892.935000px;}
.w1_c00320{width:893.250000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:14.490000px;}
.x2_c00320{left:113.040150px;}
.xb_c00320{left:160.638450px;}
.x3_c00320{left:165.545700px;}
.x8_c00320{left:187.991100px;}
.x6_c00320{left:189.435750px;}
.x23_c00320{left:202.213200px;}
.x12_c00320{left:227.215950px;}
.xc_c00320{left:268.636650px;}
.x13_c00320{left:270.564750px;}
.x4_c00320{left:290.481450px;}
.x1f_c00320{left:300.799050px;}
.x7_c00320{left:305.983500px;}
.x21_c00320{left:313.913100px;}
.x20_c00320{left:331.228950px;}
.x22_c00320{left:333.907050px;}
.x14_c00320{left:363.066600px;}
.x18_c00320{left:370.461450px;}
.x15_c00320{left:386.376000px;}
.x16_c00320{left:420.559200px;}
.x5_c00320{left:427.908750px;}
.x17_c00320{left:446.358750px;}
.x19_c00320{left:464.615400px;}
.x1d_c00320{left:518.185200px;}
.x9_c00320{left:528.903000px;}
.x1a_c00320{left:551.767500px;}
.x10_c00320{left:601.812450px;}
.x1e_c00320{left:609.801600px;}
.xa_c00320{left:629.929350px;}
.xd_c00320{left:640.819650px;}
.x11_c00320{left:649.648350px;}
.xf_c00320{left:654.037350px;}
.x1b_c00320{left:656.991600px;}
.xe_c00320{left:695.109750px;}
.x1c_c00320{left:746.220300px;}
.x24_c00320{left:759.915000px;}
@media print{
.v2_c00320{vertical-align:-21.760000pt;}
.v0_c00320{vertical-align:0.000000pt;}
.v3_c00320{vertical-align:21.753600pt;}
.v1_c00320{vertical-align:26.880000pt;}
.ls14_c00320{letter-spacing:0.000000pt;}
.ls16_c00320{letter-spacing:0.083200pt;}
.ls6_c00320{letter-spacing:0.204480pt;}
.ls19_c00320{letter-spacing:0.236160pt;}
.ls1_c00320{letter-spacing:0.242347pt;}
.ls11_c00320{letter-spacing:0.262400pt;}
.ls12_c00320{letter-spacing:0.270476pt;}
.ls1b_c00320{letter-spacing:0.283392pt;}
.lsb_c00320{letter-spacing:0.292114pt;}
.lse_c00320{letter-spacing:0.304384pt;}
.ls5_c00320{letter-spacing:0.306880pt;}
.lsd_c00320{letter-spacing:0.336533pt;}
.ls1c_c00320{letter-spacing:0.377856pt;}
.ls4_c00320{letter-spacing:0.379200pt;}
.ls1a_c00320{letter-spacing:0.389485pt;}
.ls2b_c00320{letter-spacing:0.425088pt;}
.ls18_c00320{letter-spacing:0.472320pt;}
.lsc_c00320{letter-spacing:0.498560pt;}
.ls25_c00320{letter-spacing:0.519552pt;}
.ls1e_c00320{letter-spacing:0.535542pt;}
.ls27_c00320{letter-spacing:0.614016pt;}
.ls3_c00320{letter-spacing:0.642347pt;}
.ls26_c00320{letter-spacing:0.708480pt;}
.ls20_c00320{letter-spacing:0.730284pt;}
.ls10_c00320{letter-spacing:1.521920pt;}
.ls2a_c00320{letter-spacing:1.752832pt;}
.ls29_c00320{letter-spacing:1.873536pt;}
.ls22_c00320{letter-spacing:3.122560pt;}
.lsf_c00320{letter-spacing:4.712704pt;}
.ls23_c00320{letter-spacing:4.901632pt;}
.ls0_c00320{letter-spacing:5.312000pt;}
.ls8_c00320{letter-spacing:5.376000pt;}
.ls13_c00320{letter-spacing:5.475484pt;}
.ls7_c00320{letter-spacing:5.568000pt;}
.ls28_c00320{letter-spacing:5.940736pt;}
.ls24_c00320{letter-spacing:7.593856pt;}
.ls17_c00320{letter-spacing:8.842880pt;}
.ls9_c00320{letter-spacing:9.088000pt;}
.lsa_c00320{letter-spacing:9.152000pt;}
.ls21_c00320{letter-spacing:16.064128pt;}
.ls1f_c00320{letter-spacing:17.942912pt;}
.ls1d_c00320{letter-spacing:17.948160pt;}
.ls2_c00320{letter-spacing:25.024000pt;}
.ls15_c00320{letter-spacing:27.763200pt;}
.ws0_c00320{word-spacing:-17.792000pt;}
.ws5_c00320{word-spacing:-15.768735pt;}
.ws3_c00320{word-spacing:-15.427936pt;}
.ws4_c00320{word-spacing:-15.330564pt;}
.ws1_c00320{word-spacing:-10.319360pt;}
.ws2_c00320{word-spacing:-8.896000pt;}
.ws6_c00320{word-spacing:0.000000pt;}
._3_c00320{margin-left:-27.878400pt;}
._18_c00320{margin-left:-18.368000pt;}
._17_c00320{margin-left:-17.423360pt;}
._19_c00320{margin-left:-16.426240pt;}
._1b_c00320{margin-left:-15.219200pt;}
._13_c00320{margin-left:-9.288960pt;}
._12_c00320{margin-left:-8.239360pt;}
._1e_c00320{margin-left:-7.084800pt;}
._1f_c00320{margin-left:-6.087680pt;}
._21_c00320{margin-left:-4.880640pt;}
._1d_c00320{margin-left:-3.551147pt;}
._1c_c00320{margin-left:-2.562773pt;}
._14_c00320{margin-left:-0.926080pt;}
._c_c00320{width:0.942400pt;}
._6_c00320{width:1.856000pt;}
._f_c00320{width:3.136000pt;}
._11_c00320{width:4.032000pt;}
._d_c00320{width:5.824000pt;}
._7_c00320{width:8.128000pt;}
._9_c00320{width:9.600000pt;}
._20_c00320{width:10.672640pt;}
._10_c00320{width:13.248000pt;}
._16_c00320{width:15.956160pt;}
._15_c00320{width:16.951040pt;}
._1a_c00320{width:17.966051pt;}
._b_c00320{width:18.944000pt;}
._a_c00320{width:21.440000pt;}
._e_c00320{width:22.464000pt;}
._4_c00320{width:24.899200pt;}
._5_c00320{width:25.794149pt;}
._8_c00320{width:26.864518pt;}
._2_c00320{width:27.776000pt;}
._1_c00320{width:33.920000pt;}
._0_c00320{width:34.963936pt;}
.fs3_c00320{font-size:32.000000pt;}
.fs2_c00320{font-size:37.120000pt;}
.fs4_c00320{font-size:52.480000pt;}
.fs6_c00320{font-size:53.333333pt;}
.fs5_c00320{font-size:54.095146pt;}
.fs0_c00320{font-size:64.000000pt;}
.fs1_c00320{font-size:65.969690pt;}
.y0_c00320{bottom:0.000000pt;}
.y3d_c00320{bottom:2.773467pt;}
.y3c_c00320{bottom:30.884000pt;}
.y1_c00320{bottom:48.000000pt;}
.y3b_c00320{bottom:49.320000pt;}
.y3a_c00320{bottom:70.120000pt;}
.y38_c00320{bottom:80.356480pt;}
.y39_c00320{bottom:80.360000pt;}
.y37_c00320{bottom:95.720000pt;}
.y36_c00320{bottom:95.721600pt;}
.y34_c00320{bottom:111.398080pt;}
.y35_c00320{bottom:111.400000pt;}
.y33_c00320{bottom:127.076480pt;}
.y31_c00320{bottom:142.439680pt;}
.y32_c00320{bottom:142.440000pt;}
.y30_c00320{bottom:158.118080pt;}
.y2f_c00320{bottom:173.796480pt;}
.y2e_c00320{bottom:194.600000pt;}
.y2d_c00320{bottom:210.280000pt;}
.y2c_c00320{bottom:220.201600pt;}
.y2b_c00320{bottom:241.320000pt;}
.y2a_c00320{bottom:251.556480pt;}
.y29_c00320{bottom:266.921600pt;}
.y28_c00320{bottom:282.600000pt;}
.y27_c00320{bottom:282.601600pt;}
.y26_c00320{bottom:298.280000pt;}
.y25_c00320{bottom:303.720000pt;}
.y24_c00320{bottom:313.640000pt;}
.y23_c00320{bottom:313.641600pt;}
.y21_c00320{bottom:329.316480pt;}
.y22_c00320{bottom:329.320000pt;}
.y20_c00320{bottom:350.120000pt;}
.y1f_c00320{bottom:373.800000pt;}
.y1e_c00320{bottom:420.200000pt;}
.y1d_c00320{bottom:439.080000pt;}
.y1c_c00320{bottom:457.640000pt;}
.y1b_c00320{bottom:476.200000pt;}
.y1a_c00320{bottom:495.080000pt;}
.y19_c00320{bottom:513.640000pt;}
.y18_c00320{bottom:532.200000pt;}
.y17_c00320{bottom:564.200000pt;}
.y16_c00320{bottom:583.080000pt;}
.y15_c00320{bottom:601.640000pt;}
.y14_c00320{bottom:620.200000pt;}
.y13_c00320{bottom:639.080000pt;}
.y12_c00320{bottom:657.640000pt;}
.y11_c00320{bottom:689.640000pt;}
.y10_c00320{bottom:708.520000pt;}
.yf_c00320{bottom:727.080000pt;}
.ye_c00320{bottom:745.640000pt;}
.yd_c00320{bottom:764.520000pt;}
.yc_c00320{bottom:783.080000pt;}
.yb_c00320{bottom:801.640000pt;}
.ya_c00320{bottom:833.640000pt;}
.y9_c00320{bottom:852.520000pt;}
.y8_c00320{bottom:871.080000pt;}
.y7_c00320{bottom:889.640000pt;}
.y6_c00320{bottom:908.520000pt;}
.y5_c00320{bottom:927.080000pt;}
.y4_c00320{bottom:945.640000pt;}
.y3_c00320{bottom:964.520000pt;}
.y2_c00320{bottom:1011.880000pt;}
.ha_c00320{height:17.116000pt;}
.h6_c00320{height:28.992000pt;}
.hb_c00320{height:41.173333pt;}
.h8_c00320{height:41.761453pt;}
.h7_c00320{height:47.546880pt;}
.h9_c00320{height:50.745600pt;}
.h4_c00320{height:50.928601pt;}
.h3_c00320{height:57.984000pt;}
.h5_c00320{height:60.510720pt;}
.h2_c00320{height:1067.880000pt;}
.h0_c00320{height:1122.520000pt;}
.h1_c00320{height:1122.666667pt;}
.w3_c00320{width:22.240000pt;}
.w2_c00320{width:767.960000pt;}
.w0_c00320{width:793.720000pt;}
.w1_c00320{width:794.000000pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:12.880000pt;}
.x2_c00320{left:100.480133pt;}
.xb_c00320{left:142.789733pt;}
.x3_c00320{left:147.151733pt;}
.x8_c00320{left:167.103200pt;}
.x6_c00320{left:168.387333pt;}
.x23_c00320{left:179.745067pt;}
.x12_c00320{left:201.969733pt;}
.xc_c00320{left:238.788133pt;}
.x13_c00320{left:240.502000pt;}
.x4_c00320{left:258.205733pt;}
.x1f_c00320{left:267.376933pt;}
.x7_c00320{left:271.985333pt;}
.x21_c00320{left:279.033867pt;}
.x20_c00320{left:294.425733pt;}
.x22_c00320{left:296.806267pt;}
.x14_c00320{left:322.725867pt;}
.x18_c00320{left:329.299067pt;}
.x15_c00320{left:343.445333pt;}
.x16_c00320{left:373.830400pt;}
.x5_c00320{left:380.363333pt;}
.x17_c00320{left:396.763333pt;}
.x19_c00320{left:412.991467pt;}
.x1d_c00320{left:460.609067pt;}
.x9_c00320{left:470.136000pt;}
.x1a_c00320{left:490.460000pt;}
.x10_c00320{left:534.944400pt;}
.x1e_c00320{left:542.045867pt;}
.xa_c00320{left:559.937200pt;}
.xd_c00320{left:569.617467pt;}
.x11_c00320{left:577.465200pt;}
.xf_c00320{left:581.366533pt;}
.x1b_c00320{left:583.992533pt;}
.xe_c00320{left:617.875333pt;}
.x1c_c00320{left:663.306933pt;}
.x24_c00320{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f4d57041712e252d84f8bab.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.134000;font-style:normal;font-weight:normal;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_e48e4358e4c3e5a4dc5836a1.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;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:ff3_c00321;src:url('chunks/assets/font_7c517958a7267b957cf3ce7d.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.787000;font-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_c00321{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00321{vertical-align:-24.480000px;}
.v0_c00321{vertical-align:0.000000px;}
.v1_c00321{vertical-align:30.240000px;}
.ls8_c00321{letter-spacing:-0.179568px;}
.ls7_c00321{letter-spacing:0.000000px;}
.lsa_c00321{letter-spacing:0.144000px;}
.ls4_c00321{letter-spacing:0.265680px;}
.ls3_c00321{letter-spacing:0.295200px;}
.lsf_c00321{letter-spacing:0.371952px;}
.lse_c00321{letter-spacing:0.425088px;}
.ls11_c00321{letter-spacing:0.438171px;}
.ls12_c00321{letter-spacing:0.492942px;}
.lsc_c00321{letter-spacing:0.531360px;}
.ls13_c00321{letter-spacing:0.547713px;}
.ls5_c00321{letter-spacing:0.560880px;}
.ls15_c00321{letter-spacing:0.584496px;}
.ls10_c00321{letter-spacing:0.643536px;}
.ls16_c00321{letter-spacing:0.690768px;}
.lsd_c00321{letter-spacing:0.696672px;}
.ls9_c00321{letter-spacing:5.430672px;}
.ls1_c00321{letter-spacing:5.940000px;}
.ls2_c00321{letter-spacing:5.942400px;}
.ls14_c00321{letter-spacing:5.957136px;}
.ls0_c00321{letter-spacing:5.976000px;}
.ls6_c00321{letter-spacing:6.159920px;}
.lsb_c00321{letter-spacing:6.394032px;}
.sc__c00321{text-shadow:none;}
.sc1_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00321{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc1_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00321{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00321{word-spacing:-25.992000px;}
.ws2_c00321{word-spacing:-21.043152px;}
.ws4_c00321{word-spacing:-17.465970px;}
.ws0_c00321{word-spacing:-11.429712px;}
.ws3_c00321{word-spacing:-10.152000px;}
.ws5_c00321{word-spacing:0.000000px;}
._b_c00321{margin-left:-6.192000px;}
._c_c00321{margin-left:-4.980960px;}
._d_c00321{margin-left:-1.266768px;}
._3_c00321{width:1.080000px;}
._8_c00321{width:2.287416px;}
._9_c00321{width:3.744000px;}
._5_c00321{width:5.688000px;}
._4_c00321{width:8.784000px;}
._7_c00321{width:9.802844px;}
._6_c00321{width:11.132385px;}
._a_c00321{width:12.600000px;}
._1_c00321{width:13.968000px;}
._e_c00321{width:15.763680px;}
._0_c00321{width:17.928000px;}
._2_c00321{width:19.008000px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs4_c00321{font-size:36.000000px;}
.fs2_c00321{font-size:41.760000px;}
.fs3_c00321{font-size:56.160000px;}
.fs5_c00321{font-size:59.040000px;}
.fs7_c00321{font-size:60.000000px;}
.fs6_c00321{font-size:60.857039px;}
.fs0_c00321{font-size:72.000000px;}
.fs1_c00321{font-size:74.215901px;}
.y0_c00321{bottom:0.000000px;}
.y2f_c00321{bottom:3.120150px;}
.y2e_c00321{bottom:34.744500px;}
.y1_c00321{bottom:54.000000px;}
.y2d_c00321{bottom:55.480680px;}
.y2c_c00321{bottom:72.764640px;}
.y2b_c00321{bottom:90.402840px;}
.y2a_c00321{bottom:107.686800px;}
.y29_c00321{bottom:131.445000px;}
.y28_c00321{bottom:149.085000px;}
.y27_c00321{bottom:160.245000px;}
.y26_c00321{bottom:177.885000px;}
.y25_c00321{bottom:184.005000px;}
.y24_c00321{bottom:195.522840px;}
.y23_c00321{bottom:212.806800px;}
.y22_c00321{bottom:236.565000px;}
.y21_c00321{bottom:263.205000px;}
.y20_c00321{bottom:306.405000px;}
.y1f_c00321{bottom:327.285000px;}
.y1e_c00321{bottom:348.165000px;}
.y1d_c00321{bottom:369.405000px;}
.y1c_c00321{bottom:405.405000px;}
.y1b_c00321{bottom:441.405000px;}
.y1a_c00321{bottom:477.405000px;}
.y19_c00321{bottom:513.405000px;}
.y18_c00321{bottom:534.285000px;}
.y17_c00321{bottom:555.525000px;}
.y16_c00321{bottom:576.405000px;}
.y15_c00321{bottom:597.285000px;}
.y14_c00321{bottom:618.525000px;}
.y13_c00321{bottom:654.525000px;}
.y12_c00321{bottom:675.405000px;}
.y11_c00321{bottom:696.285000px;}
.y10_c00321{bottom:717.525000px;}
.yf_c00321{bottom:738.405000px;}
.ye_c00321{bottom:774.405000px;}
.yd_c00321{bottom:795.285000px;}
.yc_c00321{bottom:816.525000px;}
.yb_c00321{bottom:837.405000px;}
.ya_c00321{bottom:858.645000px;}
.y9_c00321{bottom:879.525000px;}
.y8_c00321{bottom:915.525000px;}
.y7_c00321{bottom:951.525000px;}
.y6_c00321{bottom:989.685000px;}
.y5_c00321{bottom:1027.845000px;}
.y4_c00321{bottom:1063.845000px;}
.y3_c00321{bottom:1085.085000px;}
.y2_c00321{bottom:1138.365000px;}
.h9_c00321{height:19.255500px;}
.h6_c00321{height:32.616000px;}
.ha_c00321{height:46.320000px;}
.h8_c00321{height:46.981634px;}
.h7_c00321{height:53.490240px;}
.h4_c00321{height:57.294676px;}
.h3_c00321{height:65.232000px;}
.h5_c00321{height:68.074560px;}
.h2_c00321{height:1201.365000px;}
.h0_c00321{height:1262.835000px;}
.h1_c00321{height:1263.000000px;}
.w3_c00321{width:25.020000px;}
.w2_c00321{width:863.955000px;}
.w0_c00321{width:892.935000px;}
.w1_c00321{width:893.250000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:14.490000px;}
.x2_c00321{left:113.040150px;}
.x3_c00321{left:165.545700px;}
.x7_c00321{left:172.024950px;}
.x1a_c00321{left:188.863050px;}
.x1b_c00321{left:205.542150px;}
.x16_c00321{left:223.461900px;}
.x17_c00321{left:228.909300px;}
.xc_c00321{left:242.731500px;}
.x18_c00321{left:255.919200px;}
.xe_c00321{left:271.090200px;}
.x19_c00321{left:276.008400px;}
.x8_c00321{left:279.033600px;}
.x4_c00321{left:290.481450px;}
.xf_c00321{left:296.611050px;}
.x9_c00321{left:302.490900px;}
.x10_c00321{left:322.669200px;}
.x11_c00321{left:349.668900px;}
.xd_c00321{left:352.444050px;}
.x6_c00321{left:408.711150px;}
.xa_c00321{left:421.481400px;}
.x12_c00321{left:423.243150px;}
.x5_c00321{left:427.908750px;}
.x13_c00321{left:446.228700px;}
.x14_c00321{left:472.286850px;}
.x15_c00321{left:504.272400px;}
.xb_c00321{left:737.412150px;}
.x1c_c00321{left:759.915000px;}
@media print{
.v2_c00321{vertical-align:-21.760000pt;}
.v0_c00321{vertical-align:0.000000pt;}
.v1_c00321{vertical-align:26.880000pt;}
.ls8_c00321{letter-spacing:-0.159616pt;}
.ls7_c00321{letter-spacing:0.000000pt;}
.lsa_c00321{letter-spacing:0.128000pt;}
.ls4_c00321{letter-spacing:0.236160pt;}
.ls3_c00321{letter-spacing:0.262400pt;}
.lsf_c00321{letter-spacing:0.330624pt;}
.lse_c00321{letter-spacing:0.377856pt;}
.ls11_c00321{letter-spacing:0.389485pt;}
.ls12_c00321{letter-spacing:0.438171pt;}
.lsc_c00321{letter-spacing:0.472320pt;}
.ls13_c00321{letter-spacing:0.486856pt;}
.ls5_c00321{letter-spacing:0.498560pt;}
.ls15_c00321{letter-spacing:0.519552pt;}
.ls10_c00321{letter-spacing:0.572032pt;}
.ls16_c00321{letter-spacing:0.614016pt;}
.lsd_c00321{letter-spacing:0.619264pt;}
.ls9_c00321{letter-spacing:4.827264pt;}
.ls1_c00321{letter-spacing:5.280000pt;}
.ls2_c00321{letter-spacing:5.282133pt;}
.ls14_c00321{letter-spacing:5.295232pt;}
.ls0_c00321{letter-spacing:5.312000pt;}
.ls6_c00321{letter-spacing:5.475484pt;}
.lsb_c00321{letter-spacing:5.683584pt;}
.ws1_c00321{word-spacing:-23.104000pt;}
.ws2_c00321{word-spacing:-18.705024pt;}
.ws4_c00321{word-spacing:-15.525307pt;}
.ws0_c00321{word-spacing:-10.159744pt;}
.ws3_c00321{word-spacing:-9.024000pt;}
.ws5_c00321{word-spacing:0.000000pt;}
._b_c00321{margin-left:-5.504000pt;}
._c_c00321{margin-left:-4.427520pt;}
._d_c00321{margin-left:-1.126016pt;}
._3_c00321{width:0.960000pt;}
._8_c00321{width:2.033259pt;}
._9_c00321{width:3.328000pt;}
._5_c00321{width:5.056000pt;}
._4_c00321{width:7.808000pt;}
._7_c00321{width:8.713639pt;}
._6_c00321{width:9.895454pt;}
._a_c00321{width:11.200000pt;}
._1_c00321{width:12.416000pt;}
._e_c00321{width:14.012160pt;}
._0_c00321{width:15.936000pt;}
._2_c00321{width:16.896000pt;}
.fs4_c00321{font-size:32.000000pt;}
.fs2_c00321{font-size:37.120000pt;}
.fs3_c00321{font-size:49.920000pt;}
.fs5_c00321{font-size:52.480000pt;}
.fs7_c00321{font-size:53.333333pt;}
.fs6_c00321{font-size:54.095146pt;}
.fs0_c00321{font-size:64.000000pt;}
.fs1_c00321{font-size:65.969690pt;}
.y0_c00321{bottom:0.000000pt;}
.y2f_c00321{bottom:2.773467pt;}
.y2e_c00321{bottom:30.884000pt;}
.y1_c00321{bottom:48.000000pt;}
.y2d_c00321{bottom:49.316160pt;}
.y2c_c00321{bottom:64.679680pt;}
.y2b_c00321{bottom:80.358080pt;}
.y2a_c00321{bottom:95.721600pt;}
.y29_c00321{bottom:116.840000pt;}
.y28_c00321{bottom:132.520000pt;}
.y27_c00321{bottom:142.440000pt;}
.y26_c00321{bottom:158.120000pt;}
.y25_c00321{bottom:163.560000pt;}
.y24_c00321{bottom:173.798080pt;}
.y23_c00321{bottom:189.161600pt;}
.y22_c00321{bottom:210.280000pt;}
.y21_c00321{bottom:233.960000pt;}
.y20_c00321{bottom:272.360000pt;}
.y1f_c00321{bottom:290.920000pt;}
.y1e_c00321{bottom:309.480000pt;}
.y1d_c00321{bottom:328.360000pt;}
.y1c_c00321{bottom:360.360000pt;}
.y1b_c00321{bottom:392.360000pt;}
.y1a_c00321{bottom:424.360000pt;}
.y19_c00321{bottom:456.360000pt;}
.y18_c00321{bottom:474.920000pt;}
.y17_c00321{bottom:493.800000pt;}
.y16_c00321{bottom:512.360000pt;}
.y15_c00321{bottom:530.920000pt;}
.y14_c00321{bottom:549.800000pt;}
.y13_c00321{bottom:581.800000pt;}
.y12_c00321{bottom:600.360000pt;}
.y11_c00321{bottom:618.920000pt;}
.y10_c00321{bottom:637.800000pt;}
.yf_c00321{bottom:656.360000pt;}
.ye_c00321{bottom:688.360000pt;}
.yd_c00321{bottom:706.920000pt;}
.yc_c00321{bottom:725.800000pt;}
.yb_c00321{bottom:744.360000pt;}
.ya_c00321{bottom:763.240000pt;}
.y9_c00321{bottom:781.800000pt;}
.y8_c00321{bottom:813.800000pt;}
.y7_c00321{bottom:845.800000pt;}
.y6_c00321{bottom:879.720000pt;}
.y5_c00321{bottom:913.640000pt;}
.y4_c00321{bottom:945.640000pt;}
.y3_c00321{bottom:964.520000pt;}
.y2_c00321{bottom:1011.880000pt;}
.h9_c00321{height:17.116000pt;}
.h6_c00321{height:28.992000pt;}
.ha_c00321{height:41.173333pt;}
.h8_c00321{height:41.761453pt;}
.h7_c00321{height:47.546880pt;}
.h4_c00321{height:50.928601pt;}
.h3_c00321{height:57.984000pt;}
.h5_c00321{height:60.510720pt;}
.h2_c00321{height:1067.880000pt;}
.h0_c00321{height:1122.520000pt;}
.h1_c00321{height:1122.666667pt;}
.w3_c00321{width:22.240000pt;}
.w2_c00321{width:767.960000pt;}
.w0_c00321{width:793.720000pt;}
.w1_c00321{width:794.000000pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:12.880000pt;}
.x2_c00321{left:100.480133pt;}
.x3_c00321{left:147.151733pt;}
.x7_c00321{left:152.911067pt;}
.x1a_c00321{left:167.878267pt;}
.x1b_c00321{left:182.704133pt;}
.x16_c00321{left:198.632800pt;}
.x17_c00321{left:203.474933pt;}
.xc_c00321{left:215.761333pt;}
.x18_c00321{left:227.483733pt;}
.xe_c00321{left:240.969067pt;}
.x19_c00321{left:245.340800pt;}
.x8_c00321{left:248.029867pt;}
.x4_c00321{left:258.205733pt;}
.xf_c00321{left:263.654267pt;}
.x9_c00321{left:268.880800pt;}
.x10_c00321{left:286.817067pt;}
.x11_c00321{left:310.816800pt;}
.xd_c00321{left:313.283600pt;}
.x6_c00321{left:363.298800pt;}
.xa_c00321{left:374.650133pt;}
.x12_c00321{left:376.216133pt;}
.x5_c00321{left:380.363333pt;}
.x13_c00321{left:396.647733pt;}
.x14_c00321{left:419.810533pt;}
.x15_c00321{left:448.242133pt;}
.xb_c00321{left:655.477467pt;}
.x1c_c00321{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b655d619ef8f627bb4e99ac.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.134000;font-style:normal;font-weight:normal;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_77b5d99620af0135f9a7fcd4.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;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:ff3_c00322;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_02f13c712827b698b0e624d5.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:0.787000;font-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_c00322{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00322{vertical-align:-24.480000px;}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:30.240000px;}
.ls9_c00322{letter-spacing:-0.179568px;}
.ls8_c00322{letter-spacing:0.000000px;}
.lsc_c00322{letter-spacing:0.144000px;}
.lsd_c00322{letter-spacing:0.265680px;}
.ls3_c00322{letter-spacing:0.295200px;}
.ls0_c00322{letter-spacing:0.394200px;}
.lse_c00322{letter-spacing:0.438171px;}
.ls4_c00322{letter-spacing:0.531360px;}
.ls2_c00322{letter-spacing:0.560880px;}
.lsf_c00322{letter-spacing:0.696672px;}
.ls5_c00322{letter-spacing:0.712027px;}
.lsa_c00322{letter-spacing:5.430672px;}
.ls6_c00322{letter-spacing:5.976000px;}
.ls1_c00322{letter-spacing:5.984400px;}
.ls7_c00322{letter-spacing:6.159920px;}
.lsb_c00322{letter-spacing:20.066400px;}
.sc__c00322{text-shadow:none;}
.sc1_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00322{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc1_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00322{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00322{word-spacing:-21.043152px;}
.ws1_c00322{word-spacing:-20.016000px;}
.ws5_c00322{word-spacing:-17.630284px;}
.ws4_c00322{word-spacing:-16.944480px;}
.ws0_c00322{word-spacing:-11.429712px;}
.ws3_c00322{word-spacing:-10.152000px;}
.ws6_c00322{word-spacing:0.000000px;}
._3_c00322{margin-left:-1.179360px;}
._7_c00322{width:1.728000px;}
._5_c00322{width:2.880000px;}
._4_c00322{width:3.888000px;}
._1_c00322{width:4.896000px;}
._0_c00322{width:6.336000px;}
._6_c00322{width:8.208000px;}
._9_c00322{width:9.216000px;}
._a_c00322{width:10.368000px;}
._8_c00322{width:21.744000px;}
._2_c00322{width:22.752000px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs4_c00322{font-size:36.000000px;}
.fs2_c00322{font-size:41.760000px;}
.fs3_c00322{font-size:56.160000px;}
.fs5_c00322{font-size:59.040000px;}
.fs7_c00322{font-size:60.000000px;}
.fs6_c00322{font-size:60.857039px;}
.fs0_c00322{font-size:72.000000px;}
.fs1_c00322{font-size:74.215901px;}
.y0_c00322{bottom:0.000000px;}
.y2a_c00322{bottom:3.120150px;}
.y29_c00322{bottom:34.744500px;}
.y1_c00322{bottom:54.000000px;}
.y28_c00322{bottom:55.485000px;}
.y27_c00322{bottom:61.605000px;}
.y26_c00322{bottom:72.765000px;}
.y25_c00322{bottom:78.885000px;}
.y24_c00322{bottom:96.525000px;}
.y23_c00322{bottom:123.165000px;}
.y22_c00322{bottom:163.845000px;}
.y21_c00322{bottom:184.725000px;}
.y20_c00322{bottom:205.965000px;}
.y1f_c00322{bottom:226.845000px;}
.y1e_c00322{bottom:247.725000px;}
.y1d_c00322{bottom:268.965000px;}
.y1c_c00322{bottom:304.965000px;}
.y1b_c00322{bottom:325.845000px;}
.y1a_c00322{bottom:346.725000px;}
.y19_c00322{bottom:367.965000px;}
.y18_c00322{bottom:403.965000px;}
.y17_c00322{bottom:439.965000px;}
.y16_c00322{bottom:460.845000px;}
.y15_c00322{bottom:496.845000px;}
.y14_c00322{bottom:532.845000px;}
.y13_c00322{bottom:568.845000px;}
.y12_c00322{bottom:604.845000px;}
.y11_c00322{bottom:640.845000px;}
.y10_c00322{bottom:676.845000px;}
.yf_c00322{bottom:698.085000px;}
.ye_c00322{bottom:734.085000px;}
.yd_c00322{bottom:770.085000px;}
.yc_c00322{bottom:806.085000px;}
.yb_c00322{bottom:826.965000px;}
.ya_c00322{bottom:862.965000px;}
.y9_c00322{bottom:898.965000px;}
.y8_c00322{bottom:934.965000px;}
.y7_c00322{bottom:970.965000px;}
.y6_c00322{bottom:991.845000px;}
.y5_c00322{bottom:1027.845000px;}
.y4_c00322{bottom:1063.845000px;}
.y3_c00322{bottom:1085.085000px;}
.y2_c00322{bottom:1138.365000px;}
.ha_c00322{height:19.255500px;}
.h7_c00322{height:32.616000px;}
.hb_c00322{height:46.320000px;}
.h8_c00322{height:46.981634px;}
.h6_c00322{height:52.031250px;}
.h9_c00322{height:53.490240px;}
.h4_c00322{height:57.294676px;}
.h3_c00322{height:65.232000px;}
.h5_c00322{height:68.074560px;}
.h2_c00322{height:1201.365000px;}
.h0_c00322{height:1262.835000px;}
.h1_c00322{height:1263.000000px;}
.w3_c00322{width:25.020000px;}
.w2_c00322{width:863.955000px;}
.w0_c00322{width:892.935000px;}
.w1_c00322{width:893.250000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:14.490000px;}
.x2_c00322{left:113.040150px;}
.x8_c00322{left:140.043000px;}
.x11_c00322{left:145.025700px;}
.xc_c00322{left:148.031550px;}
.xb_c00322{left:150.029700px;}
.x3_c00322{left:165.545700px;}
.x9_c00322{left:167.040150px;}
.x1a_c00322{left:178.891500px;}
.xf_c00322{left:200.032800px;}
.x10_c00322{left:232.000050px;}
.xa_c00322{left:247.048800px;}
.x18_c00322{left:278.908050px;}
.xd_c00322{left:287.044200px;}
.x4_c00322{left:290.481450px;}
.x19_c00322{left:298.902150px;}
.xe_c00322{left:318.057450px;}
.x12_c00322{left:392.209350px;}
.x5_c00322{left:427.908750px;}
.x13_c00322{left:434.202750px;}
.x14_c00322{left:535.260450px;}
.x15_c00322{left:565.266000px;}
.x16_c00322{left:615.330750px;}
.x17_c00322{left:645.336150px;}
.x6_c00322{left:667.071900px;}
.x7_c00322{left:699.057450px;}
.x1b_c00322{left:759.915000px;}
@media print{
.v2_c00322{vertical-align:-21.760000pt;}
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:26.880000pt;}
.ls9_c00322{letter-spacing:-0.159616pt;}
.ls8_c00322{letter-spacing:0.000000pt;}
.lsc_c00322{letter-spacing:0.128000pt;}
.lsd_c00322{letter-spacing:0.236160pt;}
.ls3_c00322{letter-spacing:0.262400pt;}
.ls0_c00322{letter-spacing:0.350400pt;}
.lse_c00322{letter-spacing:0.389485pt;}
.ls4_c00322{letter-spacing:0.472320pt;}
.ls2_c00322{letter-spacing:0.498560pt;}
.lsf_c00322{letter-spacing:0.619264pt;}
.ls5_c00322{letter-spacing:0.632913pt;}
.lsa_c00322{letter-spacing:4.827264pt;}
.ls6_c00322{letter-spacing:5.312000pt;}
.ls1_c00322{letter-spacing:5.319467pt;}
.ls7_c00322{letter-spacing:5.475484pt;}
.lsb_c00322{letter-spacing:17.836800pt;}
.ws2_c00322{word-spacing:-18.705024pt;}
.ws1_c00322{word-spacing:-17.792000pt;}
.ws5_c00322{word-spacing:-15.671364pt;}
.ws4_c00322{word-spacing:-15.061760pt;}
.ws0_c00322{word-spacing:-10.159744pt;}
.ws3_c00322{word-spacing:-9.024000pt;}
.ws6_c00322{word-spacing:0.000000pt;}
._3_c00322{margin-left:-1.048320pt;}
._7_c00322{width:1.536000pt;}
._5_c00322{width:2.560000pt;}
._4_c00322{width:3.456000pt;}
._1_c00322{width:4.352000pt;}
._0_c00322{width:5.632000pt;}
._6_c00322{width:7.296000pt;}
._9_c00322{width:8.192000pt;}
._a_c00322{width:9.216000pt;}
._8_c00322{width:19.328000pt;}
._2_c00322{width:20.224000pt;}
.fs4_c00322{font-size:32.000000pt;}
.fs2_c00322{font-size:37.120000pt;}
.fs3_c00322{font-size:49.920000pt;}
.fs5_c00322{font-size:52.480000pt;}
.fs7_c00322{font-size:53.333333pt;}
.fs6_c00322{font-size:54.095146pt;}
.fs0_c00322{font-size:64.000000pt;}
.fs1_c00322{font-size:65.969690pt;}
.y0_c00322{bottom:0.000000pt;}
.y2a_c00322{bottom:2.773467pt;}
.y29_c00322{bottom:30.884000pt;}
.y1_c00322{bottom:48.000000pt;}
.y28_c00322{bottom:49.320000pt;}
.y27_c00322{bottom:54.760000pt;}
.y26_c00322{bottom:64.680000pt;}
.y25_c00322{bottom:70.120000pt;}
.y24_c00322{bottom:85.800000pt;}
.y23_c00322{bottom:109.480000pt;}
.y22_c00322{bottom:145.640000pt;}
.y21_c00322{bottom:164.200000pt;}
.y20_c00322{bottom:183.080000pt;}
.y1f_c00322{bottom:201.640000pt;}
.y1e_c00322{bottom:220.200000pt;}
.y1d_c00322{bottom:239.080000pt;}
.y1c_c00322{bottom:271.080000pt;}
.y1b_c00322{bottom:289.640000pt;}
.y1a_c00322{bottom:308.200000pt;}
.y19_c00322{bottom:327.080000pt;}
.y18_c00322{bottom:359.080000pt;}
.y17_c00322{bottom:391.080000pt;}
.y16_c00322{bottom:409.640000pt;}
.y15_c00322{bottom:441.640000pt;}
.y14_c00322{bottom:473.640000pt;}
.y13_c00322{bottom:505.640000pt;}
.y12_c00322{bottom:537.640000pt;}
.y11_c00322{bottom:569.640000pt;}
.y10_c00322{bottom:601.640000pt;}
.yf_c00322{bottom:620.520000pt;}
.ye_c00322{bottom:652.520000pt;}
.yd_c00322{bottom:684.520000pt;}
.yc_c00322{bottom:716.520000pt;}
.yb_c00322{bottom:735.080000pt;}
.ya_c00322{bottom:767.080000pt;}
.y9_c00322{bottom:799.080000pt;}
.y8_c00322{bottom:831.080000pt;}
.y7_c00322{bottom:863.080000pt;}
.y6_c00322{bottom:881.640000pt;}
.y5_c00322{bottom:913.640000pt;}
.y4_c00322{bottom:945.640000pt;}
.y3_c00322{bottom:964.520000pt;}
.y2_c00322{bottom:1011.880000pt;}
.ha_c00322{height:17.116000pt;}
.h7_c00322{height:28.992000pt;}
.hb_c00322{height:41.173333pt;}
.h8_c00322{height:41.761453pt;}
.h6_c00322{height:46.250000pt;}
.h9_c00322{height:47.546880pt;}
.h4_c00322{height:50.928601pt;}
.h3_c00322{height:57.984000pt;}
.h5_c00322{height:60.510720pt;}
.h2_c00322{height:1067.880000pt;}
.h0_c00322{height:1122.520000pt;}
.h1_c00322{height:1122.666667pt;}
.w3_c00322{width:22.240000pt;}
.w2_c00322{width:767.960000pt;}
.w0_c00322{width:793.720000pt;}
.w1_c00322{width:794.000000pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:12.880000pt;}
.x2_c00322{left:100.480133pt;}
.x8_c00322{left:124.482667pt;}
.x11_c00322{left:128.911733pt;}
.xc_c00322{left:131.583600pt;}
.xb_c00322{left:133.359733pt;}
.x3_c00322{left:147.151733pt;}
.x9_c00322{left:148.480133pt;}
.x1a_c00322{left:159.014667pt;}
.xf_c00322{left:177.806933pt;}
.x10_c00322{left:206.222267pt;}
.xa_c00322{left:219.598933pt;}
.x18_c00322{left:247.918267pt;}
.xd_c00322{left:255.150400pt;}
.x4_c00322{left:258.205733pt;}
.x19_c00322{left:265.690800pt;}
.xe_c00322{left:282.717733pt;}
.x12_c00322{left:348.630533pt;}
.x5_c00322{left:380.363333pt;}
.x13_c00322{left:385.958000pt;}
.x14_c00322{left:475.787067pt;}
.x15_c00322{left:502.458667pt;}
.x16_c00322{left:546.960667pt;}
.x17_c00322{left:573.632133pt;}
.x6_c00322{left:592.952800pt;}
.x7_c00322{left:621.384400pt;}
.x1b_c00322{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6dfa21ba021eaf44ef4b4494.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.134000;font-style:normal;font-weight:normal;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_1ae1ff675352b489c33dea58.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;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:ff3_c00323;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00323;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00323;src:url('chunks/assets/font_1a79a6f5486b983abc761ff1.woff2')format("woff");}.ff6_c00323{font-family:ff6_c00323;line-height:0.787000;font-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_c00323{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00323{vertical-align:-24.480000px;}
.v0_c00323{vertical-align:0.000000px;}
.v1_c00323{vertical-align:30.240000px;}
.lsb_c00323{letter-spacing:-0.179568px;}
.ls7_c00323{letter-spacing:0.000000px;}
.lsc_c00323{letter-spacing:0.144000px;}
.ls4_c00323{letter-spacing:0.236160px;}
.lsa_c00323{letter-spacing:0.330480px;}
.ls5_c00323{letter-spacing:0.513648px;}
.ls1_c00323{letter-spacing:0.667440px;}
.ls9_c00323{letter-spacing:1.198800px;}
.ls0_c00323{letter-spacing:5.976000px;}
.ls6_c00323{letter-spacing:6.159920px;}
.ls8_c00323{letter-spacing:16.509600px;}
.ls2_c00323{letter-spacing:54.864000px;}
.ls3_c00323{letter-spacing:55.008000px;}
.sc__c00323{text-shadow:none;}
.sc1_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00323{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc1_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00323{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00323{word-spacing:-11.429712px;}
.ws1_c00323{word-spacing:-10.152000px;}
.ws2_c00323{word-spacing:0.000000px;}
._3_c00323{margin-left:-10.411200px;}
._7_c00323{margin-left:-1.474800px;}
._0_c00323{width:1.440000px;}
._1_c00323{width:2.520000px;}
._5_c00323{width:4.392000px;}
._b_c00323{width:5.544000px;}
._e_c00323{width:6.552000px;}
._a_c00323{width:7.848000px;}
._8_c00323{width:8.928000px;}
._2_c00323{width:10.512000px;}
._9_c00323{width:11.592000px;}
._6_c00323{width:12.600000px;}
._4_c00323{width:14.040000px;}
._d_c00323{width:15.696000px;}
._c_c00323{width:17.784000px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs4_c00323{font-size:36.000000px;}
.fs3_c00323{font-size:41.760000px;}
.fs5_c00323{font-size:59.040000px;}
.fs6_c00323{font-size:60.000000px;}
.fs2_c00323{font-size:64.800000px;}
.fs0_c00323{font-size:72.000000px;}
.fs1_c00323{font-size:74.215901px;}
.y0_c00323{bottom:0.000000px;}
.y30_c00323{bottom:3.120150px;}
.y2f_c00323{bottom:34.744500px;}
.y1_c00323{bottom:54.000000px;}
.y2e_c00323{bottom:61.605000px;}
.y2d_c00323{bottom:88.245000px;}
.y2c_c00323{bottom:109.845000px;}
.y2b_c00323{bottom:130.725000px;}
.y2a_c00323{bottom:151.605000px;}
.y29_c00323{bottom:172.845000px;}
.y28_c00323{bottom:193.725000px;}
.y27_c00323{bottom:214.965000px;}
.y26_c00323{bottom:235.845000px;}
.y25_c00323{bottom:256.725000px;}
.y24_c00323{bottom:277.965000px;}
.y23_c00323{bottom:298.845000px;}
.y22_c00323{bottom:319.725000px;}
.y21_c00323{bottom:340.965000px;}
.y20_c00323{bottom:361.845000px;}
.y1f_c00323{bottom:382.725000px;}
.y1e_c00323{bottom:403.965000px;}
.y1d_c00323{bottom:439.965000px;}
.y1c_c00323{bottom:460.845000px;}
.y1b_c00323{bottom:496.845000px;}
.y1a_c00323{bottom:517.725000px;}
.y19_c00323{bottom:538.965000px;}
.y18_c00323{bottom:559.845000px;}
.y17_c00323{bottom:580.725000px;}
.y16_c00323{bottom:616.725000px;}
.y15_c00323{bottom:652.725000px;}
.y14_c00323{bottom:673.965000px;}
.y13_c00323{bottom:709.965000px;}
.y12_c00323{bottom:745.965000px;}
.y11_c00323{bottom:766.845000px;}
.y10_c00323{bottom:766.846800px;}
.yf_c00323{bottom:788.085000px;}
.ye_c00323{bottom:808.965000px;}
.yd_c00323{bottom:829.845000px;}
.yc_c00323{bottom:851.085000px;}
.yb_c00323{bottom:871.965000px;}
.ya_c00323{bottom:907.965000px;}
.y9_c00323{bottom:928.845000px;}
.y8_c00323{bottom:950.085000px;}
.y7_c00323{bottom:986.085000px;}
.y6_c00323{bottom:1022.085000px;}
.y5_c00323{bottom:1042.965000px;}
.y4_c00323{bottom:1063.845000px;}
.y3_c00323{bottom:1085.085000px;}
.y2_c00323{bottom:1138.365000px;}
.h9_c00323{height:19.255500px;}
.h8_c00323{height:32.616000px;}
.ha_c00323{height:46.320000px;}
.h5_c00323{height:52.031250px;}
.h4_c00323{height:57.294676px;}
.h6_c00323{height:58.708800px;}
.h3_c00323{height:65.232000px;}
.h7_c00323{height:68.074560px;}
.h2_c00323{height:1201.365000px;}
.h0_c00323{height:1262.835000px;}
.h1_c00323{height:1263.000000px;}
.w3_c00323{width:25.020000px;}
.w2_c00323{width:863.955000px;}
.w0_c00323{width:892.935000px;}
.w1_c00323{width:893.250000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:14.490000px;}
.x2_c00323{left:113.040150px;}
.x8_c00323{left:140.031150px;}
.xb_c00323{left:145.025700px;}
.xc_c00323{left:156.550800px;}
.x3_c00323{left:165.545700px;}
.x9_c00323{left:167.040150px;}
.x17_c00323{left:218.051100px;}
.x11_c00323{left:247.045950px;}
.x12_c00323{left:258.151950px;}
.xa_c00323{left:283.048050px;}
.x4_c00323{left:290.481450px;}
.x18_c00323{left:309.056400px;}
.x1a_c00323{left:321.527400px;}
.x19_c00323{left:323.060250px;}
.x1b_c00323{left:330.527400px;}
.x5_c00323{left:427.908750px;}
.x6_c00323{left:489.195900px;}
.x7_c00323{left:552.231150px;}
.x1c_c00323{left:554.416200px;}
.xf_c00323{left:561.052350px;}
.x1d_c00323{left:568.420200px;}
.x10_c00323{left:580.521600px;}
.x1f_c00323{left:601.105950px;}
.x20_c00323{left:614.083800px;}
.x15_c00323{left:626.108700px;}
.x16_c00323{left:639.086400px;}
.x21_c00323{left:643.853400px;}
.x13_c00323{left:690.162900px;}
.x14_c00323{left:696.264750px;}
.x1e_c00323{left:737.394300px;}
.xd_c00323{left:738.402150px;}
.xe_c00323{left:750.390000px;}
.x22_c00323{left:759.915000px;}
@media print{
.v2_c00323{vertical-align:-21.760000pt;}
.v0_c00323{vertical-align:0.000000pt;}
.v1_c00323{vertical-align:26.880000pt;}
.lsb_c00323{letter-spacing:-0.159616pt;}
.ls7_c00323{letter-spacing:0.000000pt;}
.lsc_c00323{letter-spacing:0.128000pt;}
.ls4_c00323{letter-spacing:0.209920pt;}
.lsa_c00323{letter-spacing:0.293760pt;}
.ls5_c00323{letter-spacing:0.456576pt;}
.ls1_c00323{letter-spacing:0.593280pt;}
.ls9_c00323{letter-spacing:1.065600pt;}
.ls0_c00323{letter-spacing:5.312000pt;}
.ls6_c00323{letter-spacing:5.475484pt;}
.ls8_c00323{letter-spacing:14.675200pt;}
.ls2_c00323{letter-spacing:48.768000pt;}
.ls3_c00323{letter-spacing:48.896000pt;}
.ws0_c00323{word-spacing:-10.159744pt;}
.ws1_c00323{word-spacing:-9.024000pt;}
.ws2_c00323{word-spacing:0.000000pt;}
._3_c00323{margin-left:-9.254400pt;}
._7_c00323{margin-left:-1.310933pt;}
._0_c00323{width:1.280000pt;}
._1_c00323{width:2.240000pt;}
._5_c00323{width:3.904000pt;}
._b_c00323{width:4.928000pt;}
._e_c00323{width:5.824000pt;}
._a_c00323{width:6.976000pt;}
._8_c00323{width:7.936000pt;}
._2_c00323{width:9.344000pt;}
._9_c00323{width:10.304000pt;}
._6_c00323{width:11.200000pt;}
._4_c00323{width:12.480000pt;}
._d_c00323{width:13.952000pt;}
._c_c00323{width:15.808000pt;}
.fs4_c00323{font-size:32.000000pt;}
.fs3_c00323{font-size:37.120000pt;}
.fs5_c00323{font-size:52.480000pt;}
.fs6_c00323{font-size:53.333333pt;}
.fs2_c00323{font-size:57.600000pt;}
.fs0_c00323{font-size:64.000000pt;}
.fs1_c00323{font-size:65.969690pt;}
.y0_c00323{bottom:0.000000pt;}
.y30_c00323{bottom:2.773467pt;}
.y2f_c00323{bottom:30.884000pt;}
.y1_c00323{bottom:48.000000pt;}
.y2e_c00323{bottom:54.760000pt;}
.y2d_c00323{bottom:78.440000pt;}
.y2c_c00323{bottom:97.640000pt;}
.y2b_c00323{bottom:116.200000pt;}
.y2a_c00323{bottom:134.760000pt;}
.y29_c00323{bottom:153.640000pt;}
.y28_c00323{bottom:172.200000pt;}
.y27_c00323{bottom:191.080000pt;}
.y26_c00323{bottom:209.640000pt;}
.y25_c00323{bottom:228.200000pt;}
.y24_c00323{bottom:247.080000pt;}
.y23_c00323{bottom:265.640000pt;}
.y22_c00323{bottom:284.200000pt;}
.y21_c00323{bottom:303.080000pt;}
.y20_c00323{bottom:321.640000pt;}
.y1f_c00323{bottom:340.200000pt;}
.y1e_c00323{bottom:359.080000pt;}
.y1d_c00323{bottom:391.080000pt;}
.y1c_c00323{bottom:409.640000pt;}
.y1b_c00323{bottom:441.640000pt;}
.y1a_c00323{bottom:460.200000pt;}
.y19_c00323{bottom:479.080000pt;}
.y18_c00323{bottom:497.640000pt;}
.y17_c00323{bottom:516.200000pt;}
.y16_c00323{bottom:548.200000pt;}
.y15_c00323{bottom:580.200000pt;}
.y14_c00323{bottom:599.080000pt;}
.y13_c00323{bottom:631.080000pt;}
.y12_c00323{bottom:663.080000pt;}
.y11_c00323{bottom:681.640000pt;}
.y10_c00323{bottom:681.641600pt;}
.yf_c00323{bottom:700.520000pt;}
.ye_c00323{bottom:719.080000pt;}
.yd_c00323{bottom:737.640000pt;}
.yc_c00323{bottom:756.520000pt;}
.yb_c00323{bottom:775.080000pt;}
.ya_c00323{bottom:807.080000pt;}
.y9_c00323{bottom:825.640000pt;}
.y8_c00323{bottom:844.520000pt;}
.y7_c00323{bottom:876.520000pt;}
.y6_c00323{bottom:908.520000pt;}
.y5_c00323{bottom:927.080000pt;}
.y4_c00323{bottom:945.640000pt;}
.y3_c00323{bottom:964.520000pt;}
.y2_c00323{bottom:1011.880000pt;}
.h9_c00323{height:17.116000pt;}
.h8_c00323{height:28.992000pt;}
.ha_c00323{height:41.173333pt;}
.h5_c00323{height:46.250000pt;}
.h4_c00323{height:50.928601pt;}
.h6_c00323{height:52.185600pt;}
.h3_c00323{height:57.984000pt;}
.h7_c00323{height:60.510720pt;}
.h2_c00323{height:1067.880000pt;}
.h0_c00323{height:1122.520000pt;}
.h1_c00323{height:1122.666667pt;}
.w3_c00323{width:22.240000pt;}
.w2_c00323{width:767.960000pt;}
.w0_c00323{width:793.720000pt;}
.w1_c00323{width:794.000000pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:12.880000pt;}
.x2_c00323{left:100.480133pt;}
.x8_c00323{left:124.472133pt;}
.xb_c00323{left:128.911733pt;}
.xc_c00323{left:139.156267pt;}
.x3_c00323{left:147.151733pt;}
.x9_c00323{left:148.480133pt;}
.x17_c00323{left:193.823200pt;}
.x11_c00323{left:219.596400pt;}
.x12_c00323{left:229.468400pt;}
.xa_c00323{left:251.598267pt;}
.x4_c00323{left:258.205733pt;}
.x18_c00323{left:274.716800pt;}
.x1a_c00323{left:285.802133pt;}
.x19_c00323{left:287.164667pt;}
.x1b_c00323{left:293.802133pt;}
.x5_c00323{left:380.363333pt;}
.x6_c00323{left:434.840800pt;}
.x7_c00323{left:490.872133pt;}
.x1c_c00323{left:492.814400pt;}
.xf_c00323{left:498.713200pt;}
.x1d_c00323{left:505.262400pt;}
.x10_c00323{left:516.019200pt;}
.x1f_c00323{left:534.316400pt;}
.x20_c00323{left:545.852267pt;}
.x15_c00323{left:556.541067pt;}
.x16_c00323{left:568.076800pt;}
.x21_c00323{left:572.314133pt;}
.x13_c00323{left:613.478133pt;}
.x14_c00323{left:618.902000pt;}
.x1e_c00323{left:655.461600pt;}
.xd_c00323{left:656.357467pt;}
.xe_c00323{left:667.013333pt;}
.x22_c00323{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e85485072ff90f6e27c55ef7.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.134000;font-style:normal;font-weight:normal;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_1ba2b77d1d2aa80f4e399f75.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;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:ff3_c00324;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00324{font-family:ff3_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:ff4_c00324;src:url('chunks/assets/font_a4ab2c0003cce8e28002abf5.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:0.787000;font-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_c00324{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v1_c00324{vertical-align:-24.480000px;}
.v0_c00324{vertical-align:0.000000px;}
.v2_c00324{vertical-align:25.233406px;}
.ls19_c00324{letter-spacing:0.000000px;}
.ls22_c00324{letter-spacing:0.144000px;}
.ls34_c00324{letter-spacing:0.148432px;}
.ls2e_c00324{letter-spacing:0.242064px;}
.ls23_c00324{letter-spacing:0.265680px;}
.lsf_c00324{letter-spacing:0.273857px;}
.ls12_c00324{letter-spacing:0.318480px;}
.ls16_c00324{letter-spacing:0.318816px;}
.lsb_c00324{letter-spacing:0.319080px;}
.ls10_c00324{letter-spacing:0.328628px;}
.ls1d_c00324{letter-spacing:0.330480px;}
.ls8_c00324{letter-spacing:0.369360px;}
.ls7_c00324{letter-spacing:0.382320px;}
.ls35_c00324{letter-spacing:0.383399px;}
.ls0_c00324{letter-spacing:0.388800px;}
.ls5_c00324{letter-spacing:0.395280px;}
.ls9_c00324{letter-spacing:0.401760px;}
.ls3_c00324{letter-spacing:0.414720px;}
.ls13_c00324{letter-spacing:0.438171px;}
.ls29_c00324{letter-spacing:0.478224px;}
.ls11_c00324{letter-spacing:0.492942px;}
.ls14_c00324{letter-spacing:0.507744px;}
.lse_c00324{letter-spacing:0.513648px;}
.ls15_c00324{letter-spacing:0.519552px;}
.lsc_c00324{letter-spacing:0.531360px;}
.ls2f_c00324{letter-spacing:0.547713px;}
.ls2_c00324{letter-spacing:0.621187px;}
.ls33_c00324{letter-spacing:0.657256px;}
.ls6_c00324{letter-spacing:0.660960px;}
.ls1_c00324{letter-spacing:0.667440px;}
.ls2c_c00324{letter-spacing:0.690768px;}
.ls2b_c00324{letter-spacing:0.696672px;}
.lsd_c00324{letter-spacing:0.712027px;}
.ls20_c00324{letter-spacing:0.732240px;}
.ls25_c00324{letter-spacing:0.743904px;}
.ls28_c00324{letter-spacing:0.766799px;}
.ls1f_c00324{letter-spacing:0.861840px;}
.ls1c_c00324{letter-spacing:0.868320px;}
.ls4_c00324{letter-spacing:0.895044px;}
.ls1e_c00324{letter-spacing:0.933120px;}
.ls26_c00324{letter-spacing:0.962352px;}
.ls1a_c00324{letter-spacing:1.198800px;}
.ls24_c00324{letter-spacing:5.248656px;}
.ls21_c00324{letter-spacing:5.430672px;}
.ls1b_c00324{letter-spacing:5.955120px;}
.lsa_c00324{letter-spacing:5.975400px;}
.ls17_c00324{letter-spacing:5.976000px;}
.ls18_c00324{letter-spacing:6.159920px;}
.ls31_c00324{letter-spacing:8.519472px;}
.ls32_c00324{letter-spacing:8.781671px;}
.ls2a_c00324{letter-spacing:12.091392px;}
.ls27_c00324{letter-spacing:17.806464px;}
.ls30_c00324{letter-spacing:24.860100px;}
.ls2d_c00324{letter-spacing:54.777421px;}
.sc__c00324{text-shadow:none;}
.sc1_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00324{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc1_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00324{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6_c00324{word-spacing:-21.661776px;}
.ws2_c00324{word-spacing:-21.043152px;}
.ws1_c00324{word-spacing:-19.463862px;}
.ws0_c00324{word-spacing:-19.190006px;}
.ws8_c00324{word-spacing:-17.685056px;}
.ws4_c00324{word-spacing:-17.630284px;}
.wsf_c00324{word-spacing:-17.575513px;}
.wsd_c00324{word-spacing:-17.465970px;}
.wsc_c00324{word-spacing:-17.411199px;}
.ws12_c00324{word-spacing:-17.375472px;}
.wsa_c00324{word-spacing:-17.246885px;}
.ws9_c00324{word-spacing:-17.192114px;}
.ws7_c00324{word-spacing:-17.157024px;}
.ws11_c00324{word-spacing:-17.109792px;}
.ws5_c00324{word-spacing:-16.944480px;}
.ws10_c00324{word-spacing:-16.926768px;}
.wse_c00324{word-spacing:-16.920864px;}
.wsb_c00324{word-spacing:-16.891344px;}
.ws3_c00324{word-spacing:-10.152000px;}
.ws13_c00324{word-spacing:0.000000px;}
._10_c00324{margin-left:-55.075620px;}
._f_c00324{margin-left:-54.041051px;}
._12_c00324{margin-left:-25.286718px;}
._13_c00324{margin-left:-23.781249px;}
._b_c00324{margin-left:-17.298720px;}
._d_c00324{margin-left:-12.516480px;}
._c_c00324{margin-left:-11.394720px;}
._15_c00324{margin-left:-7.852320px;}
._19_c00324{margin-left:-6.664186px;}
._8_c00324{margin-left:-5.119200px;}
._6_c00324{margin-left:-1.360800px;}
._1_c00324{width:1.152000px;}
._5_c00324{width:3.240000px;}
._7_c00324{width:4.536000px;}
._9_c00324{width:5.896800px;}
._0_c00324{width:7.200000px;}
._11_c00324{width:8.401347px;}
._a_c00324{width:10.160640px;}
._18_c00324{width:11.282983px;}
._4_c00324{width:12.960000px;}
._3_c00324{width:14.976000px;}
._2_c00324{width:16.416000px;}
._17_c00324{width:17.971776px;}
._14_c00324{width:23.490817px;}
._e_c00324{width:27.984960px;}
._1d_c00324{width:30.306805px;}
._1a_c00324{width:45.464492px;}
._1b_c00324{width:51.662880px;}
._16_c00324{width:53.554194px;}
._1e_c00324{width:183.301402px;}
._1c_c00324{width:392.190790px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs5_c00324{font-size:36.000000px;}
.fs8_c00324{font-size:37.107951px;}
.fs4_c00324{font-size:56.160000px;}
.fs6_c00324{font-size:59.040000px;}
.fs9_c00324{font-size:60.000000px;}
.fs7_c00324{font-size:60.857039px;}
.fs2_c00324{font-size:64.800000px;}
.fs3_c00324{font-size:66.794311px;}
.fs0_c00324{font-size:72.000000px;}
.fs1_c00324{font-size:74.215901px;}
.y0_c00324{bottom:0.000000px;}
.y3e_c00324{bottom:3.120150px;}
.y39_c00324{bottom:4.320000px;}
.y38_c00324{bottom:21.600000px;}
.y3d_c00324{bottom:34.744500px;}
.y37_c00324{bottom:39.240000px;}
.y1_c00324{bottom:54.000000px;}
.y17_c00324{bottom:55.485000px;}
.y36_c00324{bottom:56.520000px;}
.y3c_c00324{bottom:56.880000px;}
.y16_c00324{bottom:61.605000px;}
.y35_c00324{bottom:74.160000px;}
.y15_c00324{bottom:88.245000px;}
.y34_c00324{bottom:91.800000px;}
.y33_c00324{bottom:109.080000px;}
.y3b_c00324{bottom:109.440000px;}
.y14_c00324{bottom:121.365000px;}
.y32_c00324{bottom:126.720000px;}
.y3a_c00324{bottom:127.080000px;}
.y31_c00324{bottom:144.360000px;}
.y13_c00324{bottom:157.365000px;}
.y30_c00324{bottom:162.720000px;}
.y12_c00324{bottom:178.245000px;}
.y2f_c00324{bottom:180.360000px;}
.y10_c00324{bottom:197.681400px;}
.y11_c00324{bottom:197.685000px;}
.y2e_c00324{bottom:198.000000px;}
.y2d_c00324{bottom:216.000000px;}
.yf_c00324{bottom:216.765000px;}
.ye_c00324{bottom:216.766800px;}
.y2c_c00324{bottom:233.640000px;}
.yd_c00324{bottom:250.965000px;}
.y2b_c00324{bottom:251.280000px;}
.y2a_c00324{bottom:268.560000px;}
.yc_c00324{bottom:270.405000px;}
.y29_c00324{bottom:286.920000px;}
.y28_c00324{bottom:304.560000px;}
.yb_c00324{bottom:304.605000px;}
.y26_c00324{bottom:321.840000px;}
.y27_c00324{bottom:339.120000px;}
.y25_c00324{bottom:339.480000px;}
.ya_c00324{bottom:340.605000px;}
.y24_c00324{bottom:356.760000px;}
.y23_c00324{bottom:375.120000px;}
.y22_c00324{bottom:392.760000px;}
.y21_c00324{bottom:410.040000px;}
.y18_c00324{bottom:411.885000px;}
.y20_c00324{bottom:428.400000px;}
.y1f_c00324{bottom:446.040000px;}
.y1e_c00324{bottom:463.320000px;}
.y1d_c00324{bottom:480.960000px;}
.y1c_c00324{bottom:499.320000px;}
.y1b_c00324{bottom:516.600000px;}
.y1a_c00324{bottom:534.240000px;}
.y19_c00324{bottom:551.879850px;}
.y9_c00324{bottom:959.085000px;}
.y8_c00324{bottom:979.965000px;}
.y7_c00324{bottom:1000.845000px;}
.y6_c00324{bottom:1022.085000px;}
.y5_c00324{bottom:1042.965000px;}
.y4_c00324{bottom:1063.845000px;}
.y3_c00324{bottom:1085.085000px;}
.y2_c00324{bottom:1138.365000px;}
.hd_c00324{height:19.255500px;}
.h7_c00324{height:32.616000px;}
.hb_c00324{height:39.350391px;}
.he_c00324{height:46.320000px;}
.h8_c00324{height:46.981634px;}
.h6_c00324{height:51.565208px;}
.ha_c00324{height:53.490240px;}
.hc_c00324{height:53.880744px;}
.h4_c00324{height:57.294676px;}
.h5_c00324{height:58.708800px;}
.h3_c00324{height:65.232000px;}
.h9_c00324{height:566.640000px;}
.h2_c00324{height:1201.365000px;}
.h0_c00324{height:1262.835000px;}
.h1_c00324{height:1263.000000px;}
.w7_c00324{width:25.020000px;}
.w3_c00324{width:60.840000px;}
.w5_c00324{width:129.240000px;}
.w4_c00324{width:233.280000px;}
.w6_c00324{width:304.920000px;}
.w2_c00324{width:863.955000px;}
.w0_c00324{width:892.935000px;}
.w1_c00324{width:893.250000px;}
.x0_c00324{left:0.000000px;}
.x17_c00324{left:7.920150px;}
.x37_c00324{left:12.554550px;}
.x1_c00324{left:14.490000px;}
.x3c_c00324{left:25.192800px;}
.x26_c00324{left:30.187650px;}
.x2c_c00324{left:39.224550px;}
.x31_c00324{left:40.888950px;}
.x27_c00324{left:43.651050px;}
.x21_c00324{left:45.451050px;}
.x35_c00324{left:70.887600px;}
.x25_c00324{left:77.547900px;}
.x2f_c00324{left:81.717600px;}
.x2a_c00324{left:86.682300px;}
.x30_c00324{left:89.217600px;}
.x16_c00324{left:93.330000px;}
.x22_c00324{left:99.901350px;}
.x23_c00324{left:103.651350px;}
.x32_c00324{left:105.104100px;}
.x36_c00324{left:107.488950px;}
.x2_c00324{left:113.040150px;}
.x1c_c00324{left:114.251400px;}
.x28_c00324{left:115.890750px;}
.x3d_c00324{left:117.240000px;}
.x3a_c00324{left:119.261550px;}
.x2e_c00324{left:120.788250px;}
.x3b_c00324{left:123.431100px;}
.x33_c00324{left:131.026050px;}
.x12_c00324{left:135.034050px;}
.x2d_c00324{left:142.512750px;}
.x39_c00324{left:150.331950px;}
.x29_c00324{left:153.786600px;}
.x18_c00324{left:154.890000px;}
.x1d_c00324{left:156.540150px;}
.xf_c00324{left:164.403750px;}
.x3_c00324{left:165.545700px;}
.x6_c00324{left:167.040150px;}
.x38_c00324{left:170.454150px;}
.x1e_c00324{left:188.204550px;}
.x15_c00324{left:199.710600px;}
.x10_c00324{left:201.990300px;}
.x34_c00324{left:211.950150px;}
.x24_c00324{left:221.534700px;}
.x2b_c00324{left:225.008550px;}
.x1f_c00324{left:226.641000px;}
.x1b_c00324{left:229.391550px;}
.x9_c00324{left:249.534300px;}
.xa_c00324{left:258.534300px;}
.x20_c00324{left:267.946200px;}
.x4_c00324{left:290.481450px;}
.xd_c00324{left:293.380350px;}
.xe_c00324{left:328.211400px;}
.x7_c00324{left:353.548050px;}
.x8_c00324{left:363.555900px;}
.x19_c00324{left:388.890000px;}
.x5_c00324{left:427.908750px;}
.xb_c00324{left:480.685200px;}
.xc_c00324{left:494.689050px;}
.x1a_c00324{left:518.850000px;}
.x13_c00324{left:570.025650px;}
.x14_c00324{left:578.189250px;}
.x11_c00324{left:673.882950px;}
.x3e_c00324{left:759.915000px;}
@media print{
.v1_c00324{vertical-align:-21.760000pt;}
.v0_c00324{vertical-align:0.000000pt;}
.v2_c00324{vertical-align:22.429695pt;}
.ls19_c00324{letter-spacing:0.000000pt;}
.ls22_c00324{letter-spacing:0.128000pt;}
.ls34_c00324{letter-spacing:0.131939pt;}
.ls2e_c00324{letter-spacing:0.215168pt;}
.ls23_c00324{letter-spacing:0.236160pt;}
.lsf_c00324{letter-spacing:0.243428pt;}
.ls12_c00324{letter-spacing:0.283093pt;}
.ls16_c00324{letter-spacing:0.283392pt;}
.lsb_c00324{letter-spacing:0.283627pt;}
.ls10_c00324{letter-spacing:0.292114pt;}
.ls1d_c00324{letter-spacing:0.293760pt;}
.ls8_c00324{letter-spacing:0.328320pt;}
.ls7_c00324{letter-spacing:0.339840pt;}
.ls35_c00324{letter-spacing:0.340799pt;}
.ls0_c00324{letter-spacing:0.345600pt;}
.ls5_c00324{letter-spacing:0.351360pt;}
.ls9_c00324{letter-spacing:0.357120pt;}
.ls3_c00324{letter-spacing:0.368640pt;}
.ls13_c00324{letter-spacing:0.389485pt;}
.ls29_c00324{letter-spacing:0.425088pt;}
.ls11_c00324{letter-spacing:0.438171pt;}
.ls14_c00324{letter-spacing:0.451328pt;}
.lse_c00324{letter-spacing:0.456576pt;}
.ls15_c00324{letter-spacing:0.461824pt;}
.lsc_c00324{letter-spacing:0.472320pt;}
.ls2f_c00324{letter-spacing:0.486856pt;}
.ls2_c00324{letter-spacing:0.552166pt;}
.ls33_c00324{letter-spacing:0.584228pt;}
.ls6_c00324{letter-spacing:0.587520pt;}
.ls1_c00324{letter-spacing:0.593280pt;}
.ls2c_c00324{letter-spacing:0.614016pt;}
.ls2b_c00324{letter-spacing:0.619264pt;}
.lsd_c00324{letter-spacing:0.632913pt;}
.ls20_c00324{letter-spacing:0.650880pt;}
.ls25_c00324{letter-spacing:0.661248pt;}
.ls28_c00324{letter-spacing:0.681599pt;}
.ls1f_c00324{letter-spacing:0.766080pt;}
.ls1c_c00324{letter-spacing:0.771840pt;}
.ls4_c00324{letter-spacing:0.795594pt;}
.ls1e_c00324{letter-spacing:0.829440pt;}
.ls26_c00324{letter-spacing:0.855424pt;}
.ls1a_c00324{letter-spacing:1.065600pt;}
.ls24_c00324{letter-spacing:4.665472pt;}
.ls21_c00324{letter-spacing:4.827264pt;}
.ls1b_c00324{letter-spacing:5.293440pt;}
.lsa_c00324{letter-spacing:5.311467pt;}
.ls17_c00324{letter-spacing:5.312000pt;}
.ls18_c00324{letter-spacing:5.475484pt;}
.ls31_c00324{letter-spacing:7.572864pt;}
.ls32_c00324{letter-spacing:7.805930pt;}
.ls2a_c00324{letter-spacing:10.747904pt;}
.ls27_c00324{letter-spacing:15.827968pt;}
.ls30_c00324{letter-spacing:22.097867pt;}
.ls2d_c00324{letter-spacing:48.691041pt;}
.ws6_c00324{word-spacing:-19.254912pt;}
.ws2_c00324{word-spacing:-18.705024pt;}
.ws1_c00324{word-spacing:-17.301211pt;}
.ws0_c00324{word-spacing:-17.057783pt;}
.ws8_c00324{word-spacing:-15.720049pt;}
.ws4_c00324{word-spacing:-15.671364pt;}
.wsf_c00324{word-spacing:-15.622678pt;}
.wsd_c00324{word-spacing:-15.525307pt;}
.wsc_c00324{word-spacing:-15.476621pt;}
.ws12_c00324{word-spacing:-15.444864pt;}
.wsa_c00324{word-spacing:-15.330564pt;}
.ws9_c00324{word-spacing:-15.281879pt;}
.ws7_c00324{word-spacing:-15.250688pt;}
.ws11_c00324{word-spacing:-15.208704pt;}
.ws5_c00324{word-spacing:-15.061760pt;}
.ws10_c00324{word-spacing:-15.046016pt;}
.wse_c00324{word-spacing:-15.040768pt;}
.wsb_c00324{word-spacing:-15.014528pt;}
.ws3_c00324{word-spacing:-9.024000pt;}
.ws13_c00324{word-spacing:0.000000pt;}
._10_c00324{margin-left:-48.956107pt;}
._f_c00324{margin-left:-48.036489pt;}
._12_c00324{margin-left:-22.477083pt;}
._13_c00324{margin-left:-21.138888pt;}
._b_c00324{margin-left:-15.376640pt;}
._d_c00324{margin-left:-11.125760pt;}
._c_c00324{margin-left:-10.128640pt;}
._15_c00324{margin-left:-6.979840pt;}
._19_c00324{margin-left:-5.923721pt;}
._8_c00324{margin-left:-4.550400pt;}
._6_c00324{margin-left:-1.209600pt;}
._1_c00324{width:1.024000pt;}
._5_c00324{width:2.880000pt;}
._7_c00324{width:4.032000pt;}
._9_c00324{width:5.241600pt;}
._0_c00324{width:6.400000pt;}
._11_c00324{width:7.467864pt;}
._a_c00324{width:9.031680pt;}
._18_c00324{width:10.029318pt;}
._4_c00324{width:11.520000pt;}
._3_c00324{width:13.312000pt;}
._2_c00324{width:14.592000pt;}
._17_c00324{width:15.974912pt;}
._14_c00324{width:20.880726pt;}
._e_c00324{width:24.875520pt;}
._1d_c00324{width:26.939383pt;}
._1a_c00324{width:40.412882pt;}
._1b_c00324{width:45.922560pt;}
._16_c00324{width:47.603728pt;}
._1e_c00324{width:162.934579pt;}
._1c_c00324{width:348.614036pt;}
.fs5_c00324{font-size:32.000000pt;}
.fs8_c00324{font-size:32.984845pt;}
.fs4_c00324{font-size:49.920000pt;}
.fs6_c00324{font-size:52.480000pt;}
.fs9_c00324{font-size:53.333333pt;}
.fs7_c00324{font-size:54.095146pt;}
.fs2_c00324{font-size:57.600000pt;}
.fs3_c00324{font-size:59.372721pt;}
.fs0_c00324{font-size:64.000000pt;}
.fs1_c00324{font-size:65.969690pt;}
.y0_c00324{bottom:0.000000pt;}
.y3e_c00324{bottom:2.773467pt;}
.y39_c00324{bottom:3.840000pt;}
.y38_c00324{bottom:19.200000pt;}
.y3d_c00324{bottom:30.884000pt;}
.y37_c00324{bottom:34.880000pt;}
.y1_c00324{bottom:48.000000pt;}
.y17_c00324{bottom:49.320000pt;}
.y36_c00324{bottom:50.240000pt;}
.y3c_c00324{bottom:50.560000pt;}
.y16_c00324{bottom:54.760000pt;}
.y35_c00324{bottom:65.920000pt;}
.y15_c00324{bottom:78.440000pt;}
.y34_c00324{bottom:81.600000pt;}
.y33_c00324{bottom:96.960000pt;}
.y3b_c00324{bottom:97.280000pt;}
.y14_c00324{bottom:107.880000pt;}
.y32_c00324{bottom:112.640000pt;}
.y3a_c00324{bottom:112.960000pt;}
.y31_c00324{bottom:128.320000pt;}
.y13_c00324{bottom:139.880000pt;}
.y30_c00324{bottom:144.640000pt;}
.y12_c00324{bottom:158.440000pt;}
.y2f_c00324{bottom:160.320000pt;}
.y10_c00324{bottom:175.716800pt;}
.y11_c00324{bottom:175.720000pt;}
.y2e_c00324{bottom:176.000000pt;}
.y2d_c00324{bottom:192.000000pt;}
.yf_c00324{bottom:192.680000pt;}
.ye_c00324{bottom:192.681600pt;}
.y2c_c00324{bottom:207.680000pt;}
.yd_c00324{bottom:223.080000pt;}
.y2b_c00324{bottom:223.360000pt;}
.y2a_c00324{bottom:238.720000pt;}
.yc_c00324{bottom:240.360000pt;}
.y29_c00324{bottom:255.040000pt;}
.y28_c00324{bottom:270.720000pt;}
.yb_c00324{bottom:270.760000pt;}
.y26_c00324{bottom:286.080000pt;}
.y27_c00324{bottom:301.440000pt;}
.y25_c00324{bottom:301.760000pt;}
.ya_c00324{bottom:302.760000pt;}
.y24_c00324{bottom:317.120000pt;}
.y23_c00324{bottom:333.440000pt;}
.y22_c00324{bottom:349.120000pt;}
.y21_c00324{bottom:364.480000pt;}
.y18_c00324{bottom:366.120000pt;}
.y20_c00324{bottom:380.800000pt;}
.y1f_c00324{bottom:396.480000pt;}
.y1e_c00324{bottom:411.840000pt;}
.y1d_c00324{bottom:427.520000pt;}
.y1c_c00324{bottom:443.840000pt;}
.y1b_c00324{bottom:459.200000pt;}
.y1a_c00324{bottom:474.880000pt;}
.y19_c00324{bottom:490.559867pt;}
.y9_c00324{bottom:852.520000pt;}
.y8_c00324{bottom:871.080000pt;}
.y7_c00324{bottom:889.640000pt;}
.y6_c00324{bottom:908.520000pt;}
.y5_c00324{bottom:927.080000pt;}
.y4_c00324{bottom:945.640000pt;}
.y3_c00324{bottom:964.520000pt;}
.y2_c00324{bottom:1011.880000pt;}
.hd_c00324{height:17.116000pt;}
.h7_c00324{height:28.992000pt;}
.hb_c00324{height:34.978125pt;}
.he_c00324{height:41.173333pt;}
.h8_c00324{height:41.761453pt;}
.h6_c00324{height:45.835741pt;}
.ha_c00324{height:47.546880pt;}
.hc_c00324{height:47.893995pt;}
.h4_c00324{height:50.928601pt;}
.h5_c00324{height:52.185600pt;}
.h3_c00324{height:57.984000pt;}
.h9_c00324{height:503.680000pt;}
.h2_c00324{height:1067.880000pt;}
.h0_c00324{height:1122.520000pt;}
.h1_c00324{height:1122.666667pt;}
.w7_c00324{width:22.240000pt;}
.w3_c00324{width:54.080000pt;}
.w5_c00324{width:114.880000pt;}
.w4_c00324{width:207.360000pt;}
.w6_c00324{width:271.040000pt;}
.w2_c00324{width:767.960000pt;}
.w0_c00324{width:793.720000pt;}
.w1_c00324{width:794.000000pt;}
.x0_c00324{left:0.000000pt;}
.x17_c00324{left:7.040133pt;}
.x37_c00324{left:11.159600pt;}
.x1_c00324{left:12.880000pt;}
.x3c_c00324{left:22.393600pt;}
.x26_c00324{left:26.833467pt;}
.x2c_c00324{left:34.866267pt;}
.x31_c00324{left:36.345733pt;}
.x27_c00324{left:38.800933pt;}
.x21_c00324{left:40.400933pt;}
.x35_c00324{left:63.011200pt;}
.x25_c00324{left:68.931467pt;}
.x2f_c00324{left:72.637867pt;}
.x2a_c00324{left:77.050933pt;}
.x30_c00324{left:79.304533pt;}
.x16_c00324{left:82.960000pt;}
.x22_c00324{left:88.801200pt;}
.x23_c00324{left:92.134533pt;}
.x32_c00324{left:93.425867pt;}
.x36_c00324{left:95.545733pt;}
.x2_c00324{left:100.480133pt;}
.x1c_c00324{left:101.556800pt;}
.x28_c00324{left:103.014000pt;}
.x3d_c00324{left:104.213333pt;}
.x3a_c00324{left:106.010267pt;}
.x2e_c00324{left:107.367333pt;}
.x3b_c00324{left:109.716533pt;}
.x33_c00324{left:116.467600pt;}
.x12_c00324{left:120.030267pt;}
.x2d_c00324{left:126.678000pt;}
.x39_c00324{left:133.628400pt;}
.x29_c00324{left:136.699200pt;}
.x18_c00324{left:137.680000pt;}
.x1d_c00324{left:139.146800pt;}
.xf_c00324{left:146.136667pt;}
.x3_c00324{left:147.151733pt;}
.x6_c00324{left:148.480133pt;}
.x38_c00324{left:151.514800pt;}
.x1e_c00324{left:167.292933pt;}
.x15_c00324{left:177.520533pt;}
.x10_c00324{left:179.546933pt;}
.x34_c00324{left:188.400133pt;}
.x24_c00324{left:196.919733pt;}
.x2b_c00324{left:200.007600pt;}
.x1f_c00324{left:201.458667pt;}
.x1b_c00324{left:203.903600pt;}
.x9_c00324{left:221.808267pt;}
.xa_c00324{left:229.808267pt;}
.x20_c00324{left:238.174400pt;}
.x4_c00324{left:258.205733pt;}
.xd_c00324{left:260.782533pt;}
.xe_c00324{left:291.743467pt;}
.x7_c00324{left:314.264933pt;}
.x8_c00324{left:323.160800pt;}
.x19_c00324{left:345.680000pt;}
.x5_c00324{left:380.363333pt;}
.xb_c00324{left:427.275733pt;}
.xc_c00324{left:439.723600pt;}
.x1a_c00324{left:461.200000pt;}
.x13_c00324{left:506.689467pt;}
.x14_c00324{left:513.946000pt;}
.x11_c00324{left:599.007067pt;}
.x3e_c00324{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_567f0e91dfe52c2791a3ab23.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.134000;font-style:normal;font-weight:normal;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_5d76ccce47c195aba200d977.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;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:ff3_c00325;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_1a79a6f5486b983abc761ff1.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:0.787000;font-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_c00325{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00325{vertical-align:-24.480000px;}
.v0_c00325{vertical-align:0.000000px;}
.v1_c00325{vertical-align:30.240000px;}
.ls4_c00325{letter-spacing:-0.179568px;}
.ls3_c00325{letter-spacing:0.000000px;}
.ls5_c00325{letter-spacing:0.144000px;}
.ls6_c00325{letter-spacing:0.265680px;}
.ls0_c00325{letter-spacing:0.560880px;}
.ls7_c00325{letter-spacing:0.766799px;}
.ls1_c00325{letter-spacing:5.976000px;}
.ls2_c00325{letter-spacing:6.159920px;}
.sc__c00325{text-shadow:none;}
.sc1_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00325{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc1_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00325{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00325{word-spacing:-17.685056px;}
.ws0_c00325{word-spacing:-11.429712px;}
.ws1_c00325{word-spacing:-10.152000px;}
.ws3_c00325{word-spacing:0.000000px;}
._16_c00325{margin-left:-1.308600px;}
._f_c00325{width:1.080000px;}
._7_c00325{width:2.136716px;}
._0_c00325{width:3.191284px;}
._5_c00325{width:4.608000px;}
._2_c00325{width:5.760000px;}
._11_c00325{width:6.912000px;}
._c_c00325{width:8.064000px;}
._8_c00325{width:9.144000px;}
._1_c00325{width:10.224000px;}
._6_c00325{width:11.520000px;}
._13_c00325{width:13.896000px;}
._3_c00325{width:15.048000px;}
._9_c00325{width:17.064000px;}
._b_c00325{width:18.144000px;}
._14_c00325{width:19.296134px;}
._15_c00325{width:21.024000px;}
._10_c00325{width:22.320000px;}
._a_c00325{width:23.328000px;}
._12_c00325{width:30.096000px;}
._d_c00325{width:35.712000px;}
._e_c00325{width:36.811087px;}
._4_c00325{width:57.024000px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs3_c00325{font-size:36.000000px;}
.fs2_c00325{font-size:41.760000px;}
.fs4_c00325{font-size:59.040000px;}
.fs6_c00325{font-size:60.000000px;}
.fs5_c00325{font-size:60.857039px;}
.fs0_c00325{font-size:72.000000px;}
.fs1_c00325{font-size:74.215901px;}
.y0_c00325{bottom:0.000000px;}
.y32_c00325{bottom:3.120150px;}
.y31_c00325{bottom:34.744500px;}
.y1_c00325{bottom:54.000000px;}
.y30_c00325{bottom:61.605000px;}
.y2f_c00325{bottom:72.765000px;}
.y2e_c00325{bottom:78.885000px;}
.y2d_c00325{bottom:105.525000px;}
.y2c_c00325{bottom:132.165000px;}
.y2b_c00325{bottom:153.045000px;}
.y2a_c00325{bottom:174.285000px;}
.y29_c00325{bottom:195.165000px;}
.y28_c00325{bottom:231.165000px;}
.y27_c00325{bottom:252.045000px;}
.y26_c00325{bottom:273.285000px;}
.y25_c00325{bottom:294.165000px;}
.y24_c00325{bottom:330.165000px;}
.y23_c00325{bottom:351.045000px;}
.y22_c00325{bottom:372.285000px;}
.y21_c00325{bottom:393.165000px;}
.y20_c00325{bottom:414.045000px;}
.y1f_c00325{bottom:435.285000px;}
.y1e_c00325{bottom:456.165000px;}
.y1d_c00325{bottom:492.165000px;}
.y1c_c00325{bottom:513.045000px;}
.y1b_c00325{bottom:534.285000px;}
.y1a_c00325{bottom:555.165000px;}
.y19_c00325{bottom:576.405000px;}
.y18_c00325{bottom:597.285000px;}
.y17_c00325{bottom:633.285000px;}
.y16_c00325{bottom:654.165000px;}
.y15_c00325{bottom:675.405000px;}
.y14_c00325{bottom:711.405000px;}
.y13_c00325{bottom:732.285000px;}
.y12_c00325{bottom:753.165000px;}
.y11_c00325{bottom:774.405000px;}
.y10_c00325{bottom:795.285000px;}
.yf_c00325{bottom:816.165000px;}
.ye_c00325{bottom:837.405000px;}
.yd_c00325{bottom:858.285000px;}
.yc_c00325{bottom:894.285000px;}
.yb_c00325{bottom:915.165000px;}
.ya_c00325{bottom:936.405000px;}
.y9_c00325{bottom:957.285000px;}
.y8_c00325{bottom:980.325000px;}
.y7_c00325{bottom:1000.845000px;}
.y6_c00325{bottom:1022.085000px;}
.y5_c00325{bottom:1042.965000px;}
.y4_c00325{bottom:1063.845000px;}
.y3_c00325{bottom:1085.085000px;}
.y2_c00325{bottom:1138.365000px;}
.h9_c00325{height:19.255500px;}
.h6_c00325{height:32.616000px;}
.ha_c00325{height:46.320000px;}
.h7_c00325{height:46.981634px;}
.h8_c00325{height:53.490240px;}
.h4_c00325{height:57.294676px;}
.h3_c00325{height:65.232000px;}
.h5_c00325{height:68.074560px;}
.h2_c00325{height:1201.365000px;}
.h0_c00325{height:1262.835000px;}
.h1_c00325{height:1263.000000px;}
.w3_c00325{width:25.020000px;}
.w2_c00325{width:863.955000px;}
.w0_c00325{width:892.935000px;}
.w1_c00325{width:893.250000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:14.490000px;}
.x2_c00325{left:113.040150px;}
.x1e_c00325{left:141.885450px;}
.x3_c00325{left:165.545700px;}
.x9_c00325{left:183.302550px;}
.x11_c00325{left:191.016000px;}
.x2e_c00325{left:194.474850px;}
.xa_c00325{left:243.295500px;}
.x30_c00325{left:246.403500px;}
.x12_c00325{left:250.000800px;}
.x6_c00325{left:254.592450px;}
.x13_c00325{left:261.378600px;}
.x2d_c00325{left:272.590500px;}
.x29_c00325{left:288.502800px;}
.x4_c00325{left:290.481450px;}
.x19_c00325{left:293.402400px;}
.x14_c00325{left:301.374000px;}
.x1f_c00325{left:303.898650px;}
.x1a_c00325{left:306.380100px;}
.x21_c00325{left:307.398600px;}
.x2a_c00325{left:320.505900px;}
.x2b_c00325{left:361.486050px;}
.xb_c00325{left:365.821650px;}
.x2c_c00325{left:384.133650px;}
.x7_c00325{left:397.410300px;}
.x15_c00325{left:403.010700px;}
.xc_c00325{left:405.834900px;}
.x8_c00325{left:410.388000px;}
.x2f_c00325{left:412.833300px;}
.x20_c00325{left:415.678650px;}
.x5_c00325{left:427.908750px;}
.x26_c00325{left:450.173850px;}
.x16_c00325{left:452.023950px;}
.x17_c00325{left:503.023650px;}
.x22_c00325{left:516.574950px;}
.x18_c00325{left:519.025650px;}
.xd_c00325{left:528.361050px;}
.x1b_c00325{left:577.030500px;}
.xe_c00325{left:586.374000px;}
.x23_c00325{left:592.569600px;}
.x1c_c00325{left:642.027450px;}
.x24_c00325{left:664.423800px;}
.x1d_c00325{left:680.824950px;}
.x27_c00325{left:687.102900px;}
.xf_c00325{left:696.390450px;}
.x28_c00325{left:710.106450px;}
.x25_c00325{left:745.386150px;}
.x10_c00325{left:750.390000px;}
.x31_c00325{left:759.915000px;}
@media print{
.v2_c00325{vertical-align:-21.760000pt;}
.v0_c00325{vertical-align:0.000000pt;}
.v1_c00325{vertical-align:26.880000pt;}
.ls4_c00325{letter-spacing:-0.159616pt;}
.ls3_c00325{letter-spacing:0.000000pt;}
.ls5_c00325{letter-spacing:0.128000pt;}
.ls6_c00325{letter-spacing:0.236160pt;}
.ls0_c00325{letter-spacing:0.498560pt;}
.ls7_c00325{letter-spacing:0.681599pt;}
.ls1_c00325{letter-spacing:5.312000pt;}
.ls2_c00325{letter-spacing:5.475484pt;}
.ws2_c00325{word-spacing:-15.720049pt;}
.ws0_c00325{word-spacing:-10.159744pt;}
.ws1_c00325{word-spacing:-9.024000pt;}
.ws3_c00325{word-spacing:0.000000pt;}
._16_c00325{margin-left:-1.163200pt;}
._f_c00325{width:0.960000pt;}
._7_c00325{width:1.899303pt;}
._0_c00325{width:2.836697pt;}
._5_c00325{width:4.096000pt;}
._2_c00325{width:5.120000pt;}
._11_c00325{width:6.144000pt;}
._c_c00325{width:7.168000pt;}
._8_c00325{width:8.128000pt;}
._1_c00325{width:9.088000pt;}
._6_c00325{width:10.240000pt;}
._13_c00325{width:12.352000pt;}
._3_c00325{width:13.376000pt;}
._9_c00325{width:15.168000pt;}
._b_c00325{width:16.128000pt;}
._14_c00325{width:17.152119pt;}
._15_c00325{width:18.688000pt;}
._10_c00325{width:19.840000pt;}
._a_c00325{width:20.736000pt;}
._12_c00325{width:26.752000pt;}
._d_c00325{width:31.744000pt;}
._e_c00325{width:32.720966pt;}
._4_c00325{width:50.688000pt;}
.fs3_c00325{font-size:32.000000pt;}
.fs2_c00325{font-size:37.120000pt;}
.fs4_c00325{font-size:52.480000pt;}
.fs6_c00325{font-size:53.333333pt;}
.fs5_c00325{font-size:54.095146pt;}
.fs0_c00325{font-size:64.000000pt;}
.fs1_c00325{font-size:65.969690pt;}
.y0_c00325{bottom:0.000000pt;}
.y32_c00325{bottom:2.773467pt;}
.y31_c00325{bottom:30.884000pt;}
.y1_c00325{bottom:48.000000pt;}
.y30_c00325{bottom:54.760000pt;}
.y2f_c00325{bottom:64.680000pt;}
.y2e_c00325{bottom:70.120000pt;}
.y2d_c00325{bottom:93.800000pt;}
.y2c_c00325{bottom:117.480000pt;}
.y2b_c00325{bottom:136.040000pt;}
.y2a_c00325{bottom:154.920000pt;}
.y29_c00325{bottom:173.480000pt;}
.y28_c00325{bottom:205.480000pt;}
.y27_c00325{bottom:224.040000pt;}
.y26_c00325{bottom:242.920000pt;}
.y25_c00325{bottom:261.480000pt;}
.y24_c00325{bottom:293.480000pt;}
.y23_c00325{bottom:312.040000pt;}
.y22_c00325{bottom:330.920000pt;}
.y21_c00325{bottom:349.480000pt;}
.y20_c00325{bottom:368.040000pt;}
.y1f_c00325{bottom:386.920000pt;}
.y1e_c00325{bottom:405.480000pt;}
.y1d_c00325{bottom:437.480000pt;}
.y1c_c00325{bottom:456.040000pt;}
.y1b_c00325{bottom:474.920000pt;}
.y1a_c00325{bottom:493.480000pt;}
.y19_c00325{bottom:512.360000pt;}
.y18_c00325{bottom:530.920000pt;}
.y17_c00325{bottom:562.920000pt;}
.y16_c00325{bottom:581.480000pt;}
.y15_c00325{bottom:600.360000pt;}
.y14_c00325{bottom:632.360000pt;}
.y13_c00325{bottom:650.920000pt;}
.y12_c00325{bottom:669.480000pt;}
.y11_c00325{bottom:688.360000pt;}
.y10_c00325{bottom:706.920000pt;}
.yf_c00325{bottom:725.480000pt;}
.ye_c00325{bottom:744.360000pt;}
.yd_c00325{bottom:762.920000pt;}
.yc_c00325{bottom:794.920000pt;}
.yb_c00325{bottom:813.480000pt;}
.ya_c00325{bottom:832.360000pt;}
.y9_c00325{bottom:850.920000pt;}
.y8_c00325{bottom:871.400000pt;}
.y7_c00325{bottom:889.640000pt;}
.y6_c00325{bottom:908.520000pt;}
.y5_c00325{bottom:927.080000pt;}
.y4_c00325{bottom:945.640000pt;}
.y3_c00325{bottom:964.520000pt;}
.y2_c00325{bottom:1011.880000pt;}
.h9_c00325{height:17.116000pt;}
.h6_c00325{height:28.992000pt;}
.ha_c00325{height:41.173333pt;}
.h7_c00325{height:41.761453pt;}
.h8_c00325{height:47.546880pt;}
.h4_c00325{height:50.928601pt;}
.h3_c00325{height:57.984000pt;}
.h5_c00325{height:60.510720pt;}
.h2_c00325{height:1067.880000pt;}
.h0_c00325{height:1122.520000pt;}
.h1_c00325{height:1122.666667pt;}
.w3_c00325{width:22.240000pt;}
.w2_c00325{width:767.960000pt;}
.w0_c00325{width:793.720000pt;}
.w1_c00325{width:794.000000pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:12.880000pt;}
.x2_c00325{left:100.480133pt;}
.x1e_c00325{left:126.120400pt;}
.x3_c00325{left:147.151733pt;}
.x9_c00325{left:162.935600pt;}
.x11_c00325{left:169.792000pt;}
.x2e_c00325{left:172.866533pt;}
.xa_c00325{left:216.262667pt;}
.x30_c00325{left:219.025333pt;}
.x12_c00325{left:222.222933pt;}
.x6_c00325{left:226.304400pt;}
.x13_c00325{left:232.336533pt;}
.x2d_c00325{left:242.302667pt;}
.x29_c00325{left:256.446933pt;}
.x4_c00325{left:258.205733pt;}
.x19_c00325{left:260.802133pt;}
.x14_c00325{left:267.888000pt;}
.x1f_c00325{left:270.132133pt;}
.x1a_c00325{left:272.337867pt;}
.x21_c00325{left:273.243200pt;}
.x2a_c00325{left:284.894133pt;}
.x2b_c00325{left:321.320933pt;}
.xb_c00325{left:325.174800pt;}
.x2c_c00325{left:341.452133pt;}
.x7_c00325{left:353.253600pt;}
.x15_c00325{left:358.231733pt;}
.xc_c00325{left:360.742133pt;}
.x8_c00325{left:364.789333pt;}
.x2f_c00325{left:366.962933pt;}
.x20_c00325{left:369.492133pt;}
.x5_c00325{left:380.363333pt;}
.x26_c00325{left:400.154533pt;}
.x16_c00325{left:401.799067pt;}
.x17_c00325{left:447.132133pt;}
.x22_c00325{left:459.177733pt;}
.x18_c00325{left:461.356133pt;}
.xd_c00325{left:469.654267pt;}
.x1b_c00325{left:512.916000pt;}
.xe_c00325{left:521.221333pt;}
.x23_c00325{left:526.728533pt;}
.x1c_c00325{left:570.691067pt;}
.x24_c00325{left:590.598933pt;}
.x1d_c00325{left:605.177733pt;}
.x27_c00325{left:610.758133pt;}
.xf_c00325{left:619.013733pt;}
.x28_c00325{left:631.205733pt;}
.x25_c00325{left:662.565467pt;}
.x10_c00325{left:667.013333pt;}
.x31_c00325{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bbaf5bd5373fa0d960541aeb.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.134000;font-style:normal;font-weight:normal;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_86621ce842efae2f21853b39.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;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:ff3_c00326;src:url('chunks/assets/font_f1da68be808a857de242e78b.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:0.787000;font-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_c00326{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00326{vertical-align:-24.480000px;}
.v0_c00326{vertical-align:0.000000px;}
.v1_c00326{vertical-align:30.240000px;}
.lsa_c00326{letter-spacing:-0.179568px;}
.ls9_c00326{letter-spacing:0.000000px;}
.ls0_c00326{letter-spacing:0.041760px;}
.lsd_c00326{letter-spacing:0.144000px;}
.ls1_c00326{letter-spacing:0.146400px;}
.lse_c00326{letter-spacing:0.265680px;}
.ls16_c00326{letter-spacing:0.273857px;}
.ls3_c00326{letter-spacing:0.295200px;}
.ls17_c00326{letter-spacing:0.328628px;}
.ls11_c00326{letter-spacing:0.438171px;}
.ls4_c00326{letter-spacing:0.531360px;}
.ls12_c00326{letter-spacing:0.584496px;}
.ls10_c00326{letter-spacing:0.602485px;}
.ls15_c00326{letter-spacing:0.625824px;}
.ls5_c00326{letter-spacing:0.712027px;}
.ls13_c00326{letter-spacing:0.743904px;}
.ls14_c00326{letter-spacing:0.821570px;}
.lsc_c00326{letter-spacing:5.335200px;}
.lsf_c00326{letter-spacing:5.514336px;}
.ls7_c00326{letter-spacing:5.976000px;}
.ls2_c00326{letter-spacing:6.000600px;}
.ls8_c00326{letter-spacing:6.159920px;}
.lsb_c00326{letter-spacing:6.760800px;}
.ls6_c00326{letter-spacing:7.793280px;}
.sc__c00326{text-shadow:none;}
.sc1_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00326{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc1_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00326{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00326{word-spacing:-20.947680px;}
.ws4_c00326{word-spacing:-17.630284px;}
.ws5_c00326{word-spacing:-17.520742px;}
.ws3_c00326{word-spacing:-16.944480px;}
.ws6_c00326{word-spacing:-16.708320px;}
.ws0_c00326{word-spacing:-11.429712px;}
.ws2_c00326{word-spacing:-10.152000px;}
.ws7_c00326{word-spacing:0.000000px;}
._2_c00326{margin-left:-6.135384px;}
._13_c00326{margin-left:-1.180800px;}
._d_c00326{width:1.944000px;}
._4_c00326{width:3.024000px;}
._0_c00326{width:4.104000px;}
._3_c00326{width:5.688000px;}
._1_c00326{width:6.768000px;}
._5_c00326{width:8.683260px;}
._9_c00326{width:9.722283px;}
._11_c00326{width:11.083434px;}
._e_c00326{width:12.096000px;}
._8_c00326{width:13.752000px;}
._b_c00326{width:14.768964px;}
._a_c00326{width:21.312000px;}
._10_c00326{width:22.320000px;}
._c_c00326{width:24.696000px;}
._12_c00326{width:26.568000px;}
._f_c00326{width:32.904000px;}
._6_c00326{width:35.352000px;}
._7_c00326{width:36.440008px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs4_c00326{font-size:36.000000px;}
.fs2_c00326{font-size:41.760000px;}
.fs3_c00326{font-size:56.160000px;}
.fs5_c00326{font-size:59.040000px;}
.fs7_c00326{font-size:60.000000px;}
.fs6_c00326{font-size:60.857039px;}
.fs0_c00326{font-size:72.000000px;}
.fs1_c00326{font-size:74.215901px;}
.y0_c00326{bottom:0.000000px;}
.y34_c00326{bottom:3.120150px;}
.y33_c00326{bottom:34.744500px;}
.y1_c00326{bottom:54.000000px;}
.y32_c00326{bottom:55.485000px;}
.y31_c00326{bottom:61.605000px;}
.y2f_c00326{bottom:72.762840px;}
.y30_c00326{bottom:72.765000px;}
.y2e_c00326{bottom:90.401040px;}
.y2d_c00326{bottom:107.685000px;}
.y2c_c00326{bottom:107.686800px;}
.y2b_c00326{bottom:125.325000px;}
.y2a_c00326{bottom:125.326800px;}
.y29_c00326{bottom:142.965000px;}
.y28_c00326{bottom:149.085000px;}
.y27_c00326{bottom:166.365000px;}
.y26_c00326{bottom:193.005000px;}
.y25_c00326{bottom:280.845000px;}
.y24_c00326{bottom:301.725000px;}
.y23_c00326{bottom:337.725000px;}
.y22_c00326{bottom:373.725000px;}
.y21_c00326{bottom:409.725000px;}
.y20_c00326{bottom:430.965000px;}
.y1f_c00326{bottom:451.845000px;}
.y1e_c00326{bottom:472.725000px;}
.y1d_c00326{bottom:493.965000px;}
.y1c_c00326{bottom:514.845000px;}
.y1b_c00326{bottom:535.725000px;}
.y1a_c00326{bottom:556.965000px;}
.y19_c00326{bottom:577.845000px;}
.y18_c00326{bottom:598.725000px;}
.y17_c00326{bottom:634.725000px;}
.y16_c00326{bottom:655.965000px;}
.y15_c00326{bottom:676.845000px;}
.y14_c00326{bottom:697.725000px;}
.y13_c00326{bottom:718.965000px;}
.y12_c00326{bottom:739.845000px;}
.y11_c00326{bottom:761.085000px;}
.y10_c00326{bottom:781.965000px;}
.yf_c00326{bottom:817.965000px;}
.ye_c00326{bottom:838.845000px;}
.yd_c00326{bottom:860.085000px;}
.yc_c00326{bottom:880.965000px;}
.yb_c00326{bottom:916.965000px;}
.ya_c00326{bottom:937.845000px;}
.y9_c00326{bottom:959.085000px;}
.y8_c00326{bottom:979.965000px;}
.y7_c00326{bottom:1000.845000px;}
.y6_c00326{bottom:1022.085000px;}
.y5_c00326{bottom:1042.965000px;}
.y4_c00326{bottom:1063.845000px;}
.y3_c00326{bottom:1085.085000px;}
.y2_c00326{bottom:1138.365000px;}
.h9_c00326{height:19.255500px;}
.h6_c00326{height:32.616000px;}
.ha_c00326{height:46.320000px;}
.h7_c00326{height:46.981634px;}
.h8_c00326{height:53.490240px;}
.h4_c00326{height:57.294676px;}
.h3_c00326{height:65.232000px;}
.h5_c00326{height:68.074560px;}
.h2_c00326{height:1201.365000px;}
.h0_c00326{height:1262.835000px;}
.h1_c00326{height:1263.000000px;}
.w3_c00326{width:25.020000px;}
.w2_c00326{width:863.955000px;}
.w0_c00326{width:892.935000px;}
.w1_c00326{width:893.250000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:14.490000px;}
.x2_c00326{left:113.040150px;}
.x22_c00326{left:129.103950px;}
.x1b_c00326{left:149.039400px;}
.x3_c00326{left:165.545700px;}
.x13_c00326{left:167.039400px;}
.xe_c00326{left:173.139450px;}
.x30_c00326{left:178.891500px;}
.x1c_c00326{left:186.268350px;}
.x23_c00326{left:194.134650px;}
.x15_c00326{left:237.017550px;}
.x24_c00326{left:239.988300px;}
.x8_c00326{left:241.797300px;}
.x1d_c00326{left:262.263000px;}
.x14_c00326{left:270.738600px;}
.x1a_c00326{left:276.084900px;}
.xf_c00326{left:282.234750px;}
.x4_c00326{left:290.481450px;}
.x16_c00326{left:309.016500px;}
.x9_c00326{left:367.160850px;}
.x1e_c00326{left:372.127800px;}
.x27_c00326{left:405.870900px;}
.x29_c00326{left:407.978700px;}
.x28_c00326{left:410.909850px;}
.x1f_c00326{left:421.141050px;}
.x5_c00326{left:427.908750px;}
.x2b_c00326{left:438.094050px;}
.x2c_c00326{left:442.263750px;}
.x2d_c00326{left:446.433450px;}
.x20_c00326{left:458.166450px;}
.x2e_c00326{left:482.267100px;}
.x2f_c00326{left:487.246950px;}
.x17_c00326{left:488.907750px;}
.x6_c00326{left:491.290950px;}
.x2a_c00326{left:494.707050px;}
.x21_c00326{left:504.173850px;}
.xa_c00326{left:522.612000px;}
.x7_c00326{left:555.280050px;}
.x18_c00326{left:572.894100px;}
.xb_c00326{left:631.053900px;}
.x31_c00326{left:641.446350px;}
.x10_c00326{left:642.544200px;}
.xc_c00326{left:644.883450px;}
.x32_c00326{left:661.365150px;}
.xd_c00326{left:669.629100px;}
.x25_c00326{left:675.185700px;}
.x26_c00326{left:697.066050px;}
.x12_c00326{left:702.402450px;}
.x19_c00326{left:705.633450px;}
.x11_c00326{left:750.390000px;}
.x33_c00326{left:759.915000px;}
@media print{
.v2_c00326{vertical-align:-21.760000pt;}
.v0_c00326{vertical-align:0.000000pt;}
.v1_c00326{vertical-align:26.880000pt;}
.lsa_c00326{letter-spacing:-0.159616pt;}
.ls9_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:0.037120pt;}
.lsd_c00326{letter-spacing:0.128000pt;}
.ls1_c00326{letter-spacing:0.130133pt;}
.lse_c00326{letter-spacing:0.236160pt;}
.ls16_c00326{letter-spacing:0.243428pt;}
.ls3_c00326{letter-spacing:0.262400pt;}
.ls17_c00326{letter-spacing:0.292114pt;}
.ls11_c00326{letter-spacing:0.389485pt;}
.ls4_c00326{letter-spacing:0.472320pt;}
.ls12_c00326{letter-spacing:0.519552pt;}
.ls10_c00326{letter-spacing:0.535542pt;}
.ls15_c00326{letter-spacing:0.556288pt;}
.ls5_c00326{letter-spacing:0.632913pt;}
.ls13_c00326{letter-spacing:0.661248pt;}
.ls14_c00326{letter-spacing:0.730284pt;}
.lsc_c00326{letter-spacing:4.742400pt;}
.lsf_c00326{letter-spacing:4.901632pt;}
.ls7_c00326{letter-spacing:5.312000pt;}
.ls2_c00326{letter-spacing:5.333867pt;}
.ls8_c00326{letter-spacing:5.475484pt;}
.lsb_c00326{letter-spacing:6.009600pt;}
.ls6_c00326{letter-spacing:6.927360pt;}
.ws1_c00326{word-spacing:-18.620160pt;}
.ws4_c00326{word-spacing:-15.671364pt;}
.ws5_c00326{word-spacing:-15.573992pt;}
.ws3_c00326{word-spacing:-15.061760pt;}
.ws6_c00326{word-spacing:-14.851840pt;}
.ws0_c00326{word-spacing:-10.159744pt;}
.ws2_c00326{word-spacing:-9.024000pt;}
.ws7_c00326{word-spacing:0.000000pt;}
._2_c00326{margin-left:-5.453675pt;}
._13_c00326{margin-left:-1.049600pt;}
._d_c00326{width:1.728000pt;}
._4_c00326{width:2.688000pt;}
._0_c00326{width:3.648000pt;}
._3_c00326{width:5.056000pt;}
._1_c00326{width:6.016000pt;}
._5_c00326{width:7.718454pt;}
._9_c00326{width:8.642029pt;}
._11_c00326{width:9.851941pt;}
._e_c00326{width:10.752000pt;}
._8_c00326{width:12.224000pt;}
._b_c00326{width:13.127968pt;}
._a_c00326{width:18.944000pt;}
._10_c00326{width:19.840000pt;}
._c_c00326{width:21.952000pt;}
._12_c00326{width:23.616000pt;}
._f_c00326{width:29.248000pt;}
._6_c00326{width:31.424000pt;}
._7_c00326{width:32.391118pt;}
.fs4_c00326{font-size:32.000000pt;}
.fs2_c00326{font-size:37.120000pt;}
.fs3_c00326{font-size:49.920000pt;}
.fs5_c00326{font-size:52.480000pt;}
.fs7_c00326{font-size:53.333333pt;}
.fs6_c00326{font-size:54.095146pt;}
.fs0_c00326{font-size:64.000000pt;}
.fs1_c00326{font-size:65.969690pt;}
.y0_c00326{bottom:0.000000pt;}
.y34_c00326{bottom:2.773467pt;}
.y33_c00326{bottom:30.884000pt;}
.y1_c00326{bottom:48.000000pt;}
.y32_c00326{bottom:49.320000pt;}
.y31_c00326{bottom:54.760000pt;}
.y2f_c00326{bottom:64.678080pt;}
.y30_c00326{bottom:64.680000pt;}
.y2e_c00326{bottom:80.356480pt;}
.y2d_c00326{bottom:95.720000pt;}
.y2c_c00326{bottom:95.721600pt;}
.y2b_c00326{bottom:111.400000pt;}
.y2a_c00326{bottom:111.401600pt;}
.y29_c00326{bottom:127.080000pt;}
.y28_c00326{bottom:132.520000pt;}
.y27_c00326{bottom:147.880000pt;}
.y26_c00326{bottom:171.560000pt;}
.y25_c00326{bottom:249.640000pt;}
.y24_c00326{bottom:268.200000pt;}
.y23_c00326{bottom:300.200000pt;}
.y22_c00326{bottom:332.200000pt;}
.y21_c00326{bottom:364.200000pt;}
.y20_c00326{bottom:383.080000pt;}
.y1f_c00326{bottom:401.640000pt;}
.y1e_c00326{bottom:420.200000pt;}
.y1d_c00326{bottom:439.080000pt;}
.y1c_c00326{bottom:457.640000pt;}
.y1b_c00326{bottom:476.200000pt;}
.y1a_c00326{bottom:495.080000pt;}
.y19_c00326{bottom:513.640000pt;}
.y18_c00326{bottom:532.200000pt;}
.y17_c00326{bottom:564.200000pt;}
.y16_c00326{bottom:583.080000pt;}
.y15_c00326{bottom:601.640000pt;}
.y14_c00326{bottom:620.200000pt;}
.y13_c00326{bottom:639.080000pt;}
.y12_c00326{bottom:657.640000pt;}
.y11_c00326{bottom:676.520000pt;}
.y10_c00326{bottom:695.080000pt;}
.yf_c00326{bottom:727.080000pt;}
.ye_c00326{bottom:745.640000pt;}
.yd_c00326{bottom:764.520000pt;}
.yc_c00326{bottom:783.080000pt;}
.yb_c00326{bottom:815.080000pt;}
.ya_c00326{bottom:833.640000pt;}
.y9_c00326{bottom:852.520000pt;}
.y8_c00326{bottom:871.080000pt;}
.y7_c00326{bottom:889.640000pt;}
.y6_c00326{bottom:908.520000pt;}
.y5_c00326{bottom:927.080000pt;}
.y4_c00326{bottom:945.640000pt;}
.y3_c00326{bottom:964.520000pt;}
.y2_c00326{bottom:1011.880000pt;}
.h9_c00326{height:17.116000pt;}
.h6_c00326{height:28.992000pt;}
.ha_c00326{height:41.173333pt;}
.h7_c00326{height:41.761453pt;}
.h8_c00326{height:47.546880pt;}
.h4_c00326{height:50.928601pt;}
.h3_c00326{height:57.984000pt;}
.h5_c00326{height:60.510720pt;}
.h2_c00326{height:1067.880000pt;}
.h0_c00326{height:1122.520000pt;}
.h1_c00326{height:1122.666667pt;}
.w3_c00326{width:22.240000pt;}
.w2_c00326{width:767.960000pt;}
.w0_c00326{width:793.720000pt;}
.w1_c00326{width:794.000000pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:12.880000pt;}
.x2_c00326{left:100.480133pt;}
.x22_c00326{left:114.759067pt;}
.x1b_c00326{left:132.479467pt;}
.x3_c00326{left:147.151733pt;}
.x13_c00326{left:148.479467pt;}
.xe_c00326{left:153.901733pt;}
.x30_c00326{left:159.014667pt;}
.x1c_c00326{left:165.571867pt;}
.x23_c00326{left:172.564133pt;}
.x15_c00326{left:210.682267pt;}
.x24_c00326{left:213.322933pt;}
.x8_c00326{left:214.930933pt;}
.x1d_c00326{left:233.122667pt;}
.x14_c00326{left:240.656533pt;}
.x1a_c00326{left:245.408800pt;}
.xf_c00326{left:250.875333pt;}
.x4_c00326{left:258.205733pt;}
.x16_c00326{left:274.681333pt;}
.x9_c00326{left:326.365200pt;}
.x1e_c00326{left:330.780267pt;}
.x27_c00326{left:360.774133pt;}
.x29_c00326{left:362.647733pt;}
.x28_c00326{left:365.253200pt;}
.x1f_c00326{left:374.347600pt;}
.x5_c00326{left:380.363333pt;}
.x2b_c00326{left:389.416933pt;}
.x2c_c00326{left:393.123333pt;}
.x2d_c00326{left:396.829733pt;}
.x20_c00326{left:407.259067pt;}
.x2e_c00326{left:428.681867pt;}
.x2f_c00326{left:433.108400pt;}
.x17_c00326{left:434.584667pt;}
.x6_c00326{left:436.703067pt;}
.x2a_c00326{left:439.739600pt;}
.x21_c00326{left:448.154533pt;}
.xa_c00326{left:464.544000pt;}
.x7_c00326{left:493.582267pt;}
.x18_c00326{left:509.239200pt;}
.xb_c00326{left:560.936800pt;}
.x31_c00326{left:570.174533pt;}
.x10_c00326{left:571.150400pt;}
.xc_c00326{left:573.229733pt;}
.x32_c00326{left:587.880133pt;}
.xd_c00326{left:595.225867pt;}
.x25_c00326{left:600.165067pt;}
.x26_c00326{left:619.614267pt;}
.x12_c00326{left:624.357733pt;}
.x19_c00326{left:627.229733pt;}
.x11_c00326{left:667.013333pt;}
.x33_c00326{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d080c11e0585b0d6748ef087.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.134000;font-style:normal;font-weight:normal;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_ee1471ea19d43eb5111ede38.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;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:ff3_c00327;src:url('chunks/assets/font_4cf6278ea4bda3d0a0ab5e8d.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:0.787000;font-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_c00327{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00327{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00327{vertical-align:-24.480000px;}
.v0_c00327{vertical-align:0.000000px;}
.v1_c00327{vertical-align:30.240000px;}
.ls6_c00327{letter-spacing:-0.179568px;}
.ls5_c00327{letter-spacing:0.000000px;}
.ls7_c00327{letter-spacing:0.144000px;}
.ls1_c00327{letter-spacing:0.200160px;}
.lsb_c00327{letter-spacing:0.202464px;}
.lse_c00327{letter-spacing:0.319680px;}
.ls9_c00327{letter-spacing:0.371952px;}
.ls2_c00327{letter-spacing:0.399600px;}
.ls0_c00327{letter-spacing:0.410256px;}
.lsd_c00327{letter-spacing:0.436896px;}
.lsc_c00327{letter-spacing:0.450342px;}
.lsf_c00327{letter-spacing:0.479520px;}
.ls10_c00327{letter-spacing:0.516816px;}
.lsa_c00327{letter-spacing:0.531360px;}
.ls3_c00327{letter-spacing:5.976000px;}
.ls4_c00327{letter-spacing:6.159920px;}
.ls8_c00327{letter-spacing:9.948240px;}
.sc__c00327{text-shadow:none;}
.sc1_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00327{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc1_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00327{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00327{word-spacing:-15.222096px;}
.ws3_c00327{word-spacing:-15.211440px;}
.ws0_c00327{word-spacing:-11.429712px;}
.ws1_c00327{word-spacing:-10.152000px;}
.ws4_c00327{word-spacing:0.000000px;}
._6_c00327{margin-left:-9.557280px;}
._7_c00327{margin-left:-8.550720px;}
._9_c00327{margin-left:-1.003680px;}
._1_c00327{width:1.008000px;}
._2_c00327{width:2.160000px;}
._5_c00327{width:4.320000px;}
._3_c00327{width:6.120000px;}
._4_c00327{width:7.128000px;}
._8_c00327{width:9.865440px;}
._0_c00327{width:34.632000px;}
.fc1_c00327{color:transparent;}
.fc0_c00327{color:rgb(0,0,0);}
.fs3_c00327{font-size:36.000000px;}
.fs2_c00327{font-size:41.760000px;}
.fs5_c00327{font-size:53.280000px;}
.fs6_c00327{font-size:54.919767px;}
.fs4_c00327{font-size:59.040000px;}
.fs7_c00327{font-size:60.000000px;}
.fs0_c00327{font-size:72.000000px;}
.fs1_c00327{font-size:74.215901px;}
.y0_c00327{bottom:0.000000px;}
.y28_c00327{bottom:3.120150px;}
.y23_c00327{bottom:14.400000px;}
.y26_c00327{bottom:25.560000px;}
.y27_c00327{bottom:34.744500px;}
.y25_c00327{bottom:41.400000px;}
.y1_c00327{bottom:54.000000px;}
.y21_c00327{bottom:55.481040px;}
.y20_c00327{bottom:78.885000px;}
.y1f_c00327{bottom:105.525000px;}
.y1e_c00327{bottom:187.965000px;}
.y1d_c00327{bottom:223.965000px;}
.y1c_c00327{bottom:259.965000px;}
.y24_c00327{bottom:265.365000px;}
.y1b_c00327{bottom:295.965000px;}
.y1a_c00327{bottom:331.965000px;}
.y19_c00327{bottom:367.965000px;}
.y18_c00327{bottom:403.965000px;}
.y17_c00327{bottom:439.965000px;}
.y16_c00327{bottom:475.965000px;}
.y15_c00327{bottom:511.965000px;}
.y14_c00327{bottom:547.965000px;}
.y13_c00327{bottom:583.965000px;}
.y22_c00327{bottom:619.245000px;}
.y12_c00327{bottom:619.965000px;}
.y11_c00327{bottom:655.965000px;}
.y10_c00327{bottom:691.965000px;}
.yf_c00327{bottom:727.965000px;}
.ye_c00327{bottom:763.965000px;}
.yd_c00327{bottom:799.965000px;}
.yc_c00327{bottom:835.965000px;}
.yb_c00327{bottom:871.965000px;}
.ya_c00327{bottom:907.965000px;}
.y9_c00327{bottom:943.965000px;}
.y8_c00327{bottom:964.845000px;}
.y7_c00327{bottom:986.085000px;}
.y6_c00327{bottom:1006.965000px;}
.y5_c00327{bottom:1027.845000px;}
.y4_c00327{bottom:1063.845000px;}
.y3_c00327{bottom:1085.085000px;}
.y2_c00327{bottom:1138.365000px;}
.hc_c00327{height:19.255500px;}
.h8_c00327{height:27.000000px;}
.h6_c00327{height:32.616000px;}
.ha_c00327{height:42.398060px;}
.hd_c00327{height:46.320000px;}
.h9_c00327{height:48.271680px;}
.h7_c00327{height:53.490240px;}
.hb_c00327{height:54.000000px;}
.h4_c00327{height:57.294676px;}
.h3_c00327{height:65.232000px;}
.h5_c00327{height:68.074560px;}
.h2_c00327{height:1201.365000px;}
.h0_c00327{height:1262.835000px;}
.h1_c00327{height:1263.000000px;}
.w5_c00327{width:25.020000px;}
.w4_c00327{width:614.520000px;}
.w3_c00327{width:627.840000px;}
.w2_c00327{width:863.955000px;}
.w0_c00327{width:892.935000px;}
.w1_c00327{width:893.250000px;}
.x0_c00327{left:0.000000px;}
.x13_c00327{left:11.600100px;}
.x1_c00327{left:14.490000px;}
.x2_c00327{left:113.040150px;}
.x14_c00327{left:121.906800px;}
.x12_c00327{left:123.210000px;}
.x10_c00327{left:124.290000px;}
.x3_c00327{left:165.545700px;}
.x6_c00327{left:180.633600px;}
.x11_c00327{left:205.927950px;}
.x15_c00327{left:207.414450px;}
.xa_c00327{left:268.243200px;}
.x4_c00327{left:290.481450px;}
.x7_c00327{left:305.193150px;}
.x8_c00327{left:311.187000px;}
.xb_c00327{left:315.240150px;}
.x9_c00327{left:317.722350px;}
.xc_c00327{left:322.033050px;}
.xd_c00327{left:377.040900px;}
.x5_c00327{left:427.908750px;}
.xe_c00327{left:433.609200px;}
.x16_c00327{left:491.711700px;}
.xf_c00327{left:534.414150px;}
.x17_c00327{left:759.915000px;}
@media print{
.v2_c00327{vertical-align:-21.760000pt;}
.v0_c00327{vertical-align:0.000000pt;}
.v1_c00327{vertical-align:26.880000pt;}
.ls6_c00327{letter-spacing:-0.159616pt;}
.ls5_c00327{letter-spacing:0.000000pt;}
.ls7_c00327{letter-spacing:0.128000pt;}
.ls1_c00327{letter-spacing:0.177920pt;}
.lsb_c00327{letter-spacing:0.179968pt;}
.lse_c00327{letter-spacing:0.284160pt;}
.ls9_c00327{letter-spacing:0.330624pt;}
.ls2_c00327{letter-spacing:0.355200pt;}
.ls0_c00327{letter-spacing:0.364672pt;}
.lsd_c00327{letter-spacing:0.388352pt;}
.lsc_c00327{letter-spacing:0.400304pt;}
.lsf_c00327{letter-spacing:0.426240pt;}
.ls10_c00327{letter-spacing:0.459392pt;}
.lsa_c00327{letter-spacing:0.472320pt;}
.ls3_c00327{letter-spacing:5.312000pt;}
.ls4_c00327{letter-spacing:5.475484pt;}
.ls8_c00327{letter-spacing:8.842880pt;}
.ws2_c00327{word-spacing:-13.530752pt;}
.ws3_c00327{word-spacing:-13.521280pt;}
.ws0_c00327{word-spacing:-10.159744pt;}
.ws1_c00327{word-spacing:-9.024000pt;}
.ws4_c00327{word-spacing:0.000000pt;}
._6_c00327{margin-left:-8.495360pt;}
._7_c00327{margin-left:-7.600640pt;}
._9_c00327{margin-left:-0.892160pt;}
._1_c00327{width:0.896000pt;}
._2_c00327{width:1.920000pt;}
._5_c00327{width:3.840000pt;}
._3_c00327{width:5.440000pt;}
._4_c00327{width:6.336000pt;}
._8_c00327{width:8.769280pt;}
._0_c00327{width:30.784000pt;}
.fs3_c00327{font-size:32.000000pt;}
.fs2_c00327{font-size:37.120000pt;}
.fs5_c00327{font-size:47.360000pt;}
.fs6_c00327{font-size:48.817571pt;}
.fs4_c00327{font-size:52.480000pt;}
.fs7_c00327{font-size:53.333333pt;}
.fs0_c00327{font-size:64.000000pt;}
.fs1_c00327{font-size:65.969690pt;}
.y0_c00327{bottom:0.000000pt;}
.y28_c00327{bottom:2.773467pt;}
.y23_c00327{bottom:12.800000pt;}
.y26_c00327{bottom:22.720000pt;}
.y27_c00327{bottom:30.884000pt;}
.y25_c00327{bottom:36.800000pt;}
.y1_c00327{bottom:48.000000pt;}
.y21_c00327{bottom:49.316480pt;}
.y20_c00327{bottom:70.120000pt;}
.y1f_c00327{bottom:93.800000pt;}
.y1e_c00327{bottom:167.080000pt;}
.y1d_c00327{bottom:199.080000pt;}
.y1c_c00327{bottom:231.080000pt;}
.y24_c00327{bottom:235.880000pt;}
.y1b_c00327{bottom:263.080000pt;}
.y1a_c00327{bottom:295.080000pt;}
.y19_c00327{bottom:327.080000pt;}
.y18_c00327{bottom:359.080000pt;}
.y17_c00327{bottom:391.080000pt;}
.y16_c00327{bottom:423.080000pt;}
.y15_c00327{bottom:455.080000pt;}
.y14_c00327{bottom:487.080000pt;}
.y13_c00327{bottom:519.080000pt;}
.y22_c00327{bottom:550.440000pt;}
.y12_c00327{bottom:551.080000pt;}
.y11_c00327{bottom:583.080000pt;}
.y10_c00327{bottom:615.080000pt;}
.yf_c00327{bottom:647.080000pt;}
.ye_c00327{bottom:679.080000pt;}
.yd_c00327{bottom:711.080000pt;}
.yc_c00327{bottom:743.080000pt;}
.yb_c00327{bottom:775.080000pt;}
.ya_c00327{bottom:807.080000pt;}
.y9_c00327{bottom:839.080000pt;}
.y8_c00327{bottom:857.640000pt;}
.y7_c00327{bottom:876.520000pt;}
.y6_c00327{bottom:895.080000pt;}
.y5_c00327{bottom:913.640000pt;}
.y4_c00327{bottom:945.640000pt;}
.y3_c00327{bottom:964.520000pt;}
.y2_c00327{bottom:1011.880000pt;}
.hc_c00327{height:17.116000pt;}
.h8_c00327{height:24.000000pt;}
.h6_c00327{height:28.992000pt;}
.ha_c00327{height:37.687165pt;}
.hd_c00327{height:41.173333pt;}
.h9_c00327{height:42.908160pt;}
.h7_c00327{height:47.546880pt;}
.hb_c00327{height:48.000000pt;}
.h4_c00327{height:50.928601pt;}
.h3_c00327{height:57.984000pt;}
.h5_c00327{height:60.510720pt;}
.h2_c00327{height:1067.880000pt;}
.h0_c00327{height:1122.520000pt;}
.h1_c00327{height:1122.666667pt;}
.w5_c00327{width:22.240000pt;}
.w4_c00327{width:546.240000pt;}
.w3_c00327{width:558.080000pt;}
.w2_c00327{width:767.960000pt;}
.w0_c00327{width:793.720000pt;}
.w1_c00327{width:794.000000pt;}
.x0_c00327{left:0.000000pt;}
.x13_c00327{left:10.311200pt;}
.x1_c00327{left:12.880000pt;}
.x2_c00327{left:100.480133pt;}
.x14_c00327{left:108.361600pt;}
.x12_c00327{left:109.520000pt;}
.x10_c00327{left:110.480000pt;}
.x3_c00327{left:147.151733pt;}
.x6_c00327{left:160.563200pt;}
.x11_c00327{left:183.047067pt;}
.x15_c00327{left:184.368400pt;}
.xa_c00327{left:238.438400pt;}
.x4_c00327{left:258.205733pt;}
.x7_c00327{left:271.282800pt;}
.x8_c00327{left:276.610667pt;}
.xb_c00327{left:280.213467pt;}
.x9_c00327{left:282.419867pt;}
.xc_c00327{left:286.251600pt;}
.xd_c00327{left:335.147467pt;}
.x5_c00327{left:380.363333pt;}
.xe_c00327{left:385.430400pt;}
.x16_c00327{left:437.077067pt;}
.xf_c00327{left:475.034800pt;}
.x17_c00327{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86b62334213f8ef1d5efc74b.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.134000;font-style:normal;font-weight:normal;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_729c579dca107aef7ec9177e.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;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:ff3_c00328;src:url('chunks/assets/font_28898f5b4b0f4e9e89060424.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:0.787000;font-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_c00328{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00328{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls4_c00328{letter-spacing:0.000000px;}
.ls6_c00328{letter-spacing:0.202464px;}
.ls8_c00328{letter-spacing:0.239760px;}
.lsa_c00328{letter-spacing:0.319680px;}
.ls5_c00328{letter-spacing:0.399600px;}
.ls0_c00328{letter-spacing:0.399720px;}
.ls1_c00328{letter-spacing:0.410256px;}
.ls9_c00328{letter-spacing:0.436896px;}
.ls7_c00328{letter-spacing:0.450342px;}
.ls2_c00328{letter-spacing:5.976000px;}
.ls3_c00328{letter-spacing:6.159920px;}
.sc__c00328{text-shadow:none;}
.sc1_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00328{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc1_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00328{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00328{word-spacing:-15.222096px;}
.ws0_c00328{word-spacing:-15.051600px;}
.ws2_c00328{word-spacing:0.000000px;}
._1_c00328{margin-left:-1.118880px;}
._0_c00328{width:1.014000px;}
.fc1_c00328{color:transparent;}
.fc0_c00328{color:rgb(0,0,0);}
.fs2_c00328{font-size:53.280000px;}
.fs3_c00328{font-size:54.919767px;}
.fs4_c00328{font-size:60.000000px;}
.fs0_c00328{font-size:72.000000px;}
.fs1_c00328{font-size:74.215901px;}
.y0_c00328{bottom:0.000000px;}
.y1d_c00328{bottom:3.120150px;}
.y16_c00328{bottom:7.920000px;}
.y15_c00328{bottom:23.760000px;}
.y19_c00328{bottom:25.560000px;}
.y1b_c00328{bottom:34.560000px;}
.y1c_c00328{bottom:34.744500px;}
.y18_c00328{bottom:41.400000px;}
.y1_c00328{bottom:54.000000px;}
.y17_c00328{bottom:76.365000px;}
.y14_c00328{bottom:472.005000px;}
.y13_c00328{bottom:509.085000px;}
.y12_c00328{bottom:545.085000px;}
.y11_c00328{bottom:581.085000px;}
.y10_c00328{bottom:617.085000px;}
.yf_c00328{bottom:653.085000px;}
.ye_c00328{bottom:689.085000px;}
.yd_c00328{bottom:725.085000px;}
.yc_c00328{bottom:761.085000px;}
.y1a_c00328{bottom:780.885000px;}
.yb_c00328{bottom:797.085000px;}
.ya_c00328{bottom:833.085000px;}
.y9_c00328{bottom:869.085000px;}
.y8_c00328{bottom:905.085000px;}
.y7_c00328{bottom:941.085000px;}
.y6_c00328{bottom:977.085000px;}
.y5_c00328{bottom:1013.085000px;}
.y4_c00328{bottom:1049.085000px;}
.y3_c00328{bottom:1085.085000px;}
.y2_c00328{bottom:1138.365000px;}
.ha_c00328{height:19.255500px;}
.h5_c00328{height:36.360000px;}
.h7_c00328{height:42.398060px;}
.hb_c00328{height:46.320000px;}
.h9_c00328{height:47.160000px;}
.h6_c00328{height:48.271680px;}
.h8_c00328{height:54.000000px;}
.h4_c00328{height:57.294676px;}
.h3_c00328{height:65.232000px;}
.h2_c00328{height:1201.365000px;}
.h0_c00328{height:1262.835000px;}
.h1_c00328{height:1263.000000px;}
.w5_c00328{width:25.020000px;}
.w4_c00328{width:555.120000px;}
.w3_c00328{width:574.920000px;}
.w2_c00328{width:863.955000px;}
.w0_c00328{width:892.935000px;}
.w1_c00328{width:893.250000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:14.490000px;}
.x10_c00328{left:23.381700px;}
.xc_c00328{left:31.360800px;}
.x2_c00328{left:113.040150px;}
.xb_c00328{left:123.210000px;}
.x6_c00328{left:125.010000px;}
.x11_c00328{left:133.688550px;}
.xa_c00328{left:136.884450px;}
.x7_c00328{left:140.245200px;}
.xd_c00328{left:141.667650px;}
.x3_c00328{left:165.545700px;}
.x12_c00328{left:217.697700px;}
.xe_c00328{left:223.422300px;}
.xf_c00328{left:241.160100px;}
.x8_c00328{left:250.551900px;}
.x4_c00328{left:290.481450px;}
.x9_c00328{left:332.306700px;}
.x5_c00328{left:427.908750px;}
.x13_c00328{left:759.915000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls4_c00328{letter-spacing:0.000000pt;}
.ls6_c00328{letter-spacing:0.179968pt;}
.ls8_c00328{letter-spacing:0.213120pt;}
.lsa_c00328{letter-spacing:0.284160pt;}
.ls5_c00328{letter-spacing:0.355200pt;}
.ls0_c00328{letter-spacing:0.355307pt;}
.ls1_c00328{letter-spacing:0.364672pt;}
.ls9_c00328{letter-spacing:0.388352pt;}
.ls7_c00328{letter-spacing:0.400304pt;}
.ls2_c00328{letter-spacing:5.312000pt;}
.ls3_c00328{letter-spacing:5.475484pt;}
.ws1_c00328{word-spacing:-13.530752pt;}
.ws0_c00328{word-spacing:-13.379200pt;}
.ws2_c00328{word-spacing:0.000000pt;}
._1_c00328{margin-left:-0.994560pt;}
._0_c00328{width:0.901333pt;}
.fs2_c00328{font-size:47.360000pt;}
.fs3_c00328{font-size:48.817571pt;}
.fs4_c00328{font-size:53.333333pt;}
.fs0_c00328{font-size:64.000000pt;}
.fs1_c00328{font-size:65.969690pt;}
.y0_c00328{bottom:0.000000pt;}
.y1d_c00328{bottom:2.773467pt;}
.y16_c00328{bottom:7.040000pt;}
.y15_c00328{bottom:21.120000pt;}
.y19_c00328{bottom:22.720000pt;}
.y1b_c00328{bottom:30.720000pt;}
.y1c_c00328{bottom:30.884000pt;}
.y18_c00328{bottom:36.800000pt;}
.y1_c00328{bottom:48.000000pt;}
.y17_c00328{bottom:67.880000pt;}
.y14_c00328{bottom:419.560000pt;}
.y13_c00328{bottom:452.520000pt;}
.y12_c00328{bottom:484.520000pt;}
.y11_c00328{bottom:516.520000pt;}
.y10_c00328{bottom:548.520000pt;}
.yf_c00328{bottom:580.520000pt;}
.ye_c00328{bottom:612.520000pt;}
.yd_c00328{bottom:644.520000pt;}
.yc_c00328{bottom:676.520000pt;}
.y1a_c00328{bottom:694.120000pt;}
.yb_c00328{bottom:708.520000pt;}
.ya_c00328{bottom:740.520000pt;}
.y9_c00328{bottom:772.520000pt;}
.y8_c00328{bottom:804.520000pt;}
.y7_c00328{bottom:836.520000pt;}
.y6_c00328{bottom:868.520000pt;}
.y5_c00328{bottom:900.520000pt;}
.y4_c00328{bottom:932.520000pt;}
.y3_c00328{bottom:964.520000pt;}
.y2_c00328{bottom:1011.880000pt;}
.ha_c00328{height:17.116000pt;}
.h5_c00328{height:32.320000pt;}
.h7_c00328{height:37.687165pt;}
.hb_c00328{height:41.173333pt;}
.h9_c00328{height:41.920000pt;}
.h6_c00328{height:42.908160pt;}
.h8_c00328{height:48.000000pt;}
.h4_c00328{height:50.928601pt;}
.h3_c00328{height:57.984000pt;}
.h2_c00328{height:1067.880000pt;}
.h0_c00328{height:1122.520000pt;}
.h1_c00328{height:1122.666667pt;}
.w5_c00328{width:22.240000pt;}
.w4_c00328{width:493.440000pt;}
.w3_c00328{width:511.040000pt;}
.w2_c00328{width:767.960000pt;}
.w0_c00328{width:793.720000pt;}
.w1_c00328{width:794.000000pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:12.880000pt;}
.x10_c00328{left:20.783733pt;}
.xc_c00328{left:27.876267pt;}
.x2_c00328{left:100.480133pt;}
.xb_c00328{left:109.520000pt;}
.x6_c00328{left:111.120000pt;}
.x11_c00328{left:118.834267pt;}
.xa_c00328{left:121.675067pt;}
.x7_c00328{left:124.662400pt;}
.xd_c00328{left:125.926800pt;}
.x3_c00328{left:147.151733pt;}
.x12_c00328{left:193.509067pt;}
.xe_c00328{left:198.597600pt;}
.xf_c00328{left:214.364533pt;}
.x8_c00328{left:222.712800pt;}
.x4_c00328{left:258.205733pt;}
.x9_c00328{left:295.383733pt;}
.x5_c00328{left:380.363333pt;}
.x13_c00328{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64ab0bd56ea405104dc49ffc.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:0.000000px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs0_c00329{font-size:60.000000px;}
.y0_c00329{bottom:0.000000px;}
.y2_c00329{bottom:3.120150px;}
.y1_c00329{bottom:34.744500px;}
.h2_c00329{height:19.255500px;}
.h3_c00329{height:46.320000px;}
.h0_c00329{height:1262.835000px;}
.h1_c00329{height:1263.000000px;}
.w2_c00329{width:25.020000px;}
.w0_c00329{width:892.935000px;}
.w1_c00329{width:893.250000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:759.915000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws0_c00329{word-spacing:0.000000pt;}
.fs0_c00329{font-size:53.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y2_c00329{bottom:2.773467pt;}
.y1_c00329{bottom:30.884000pt;}
.h2_c00329{height:17.116000pt;}
.h3_c00329{height:41.173333pt;}
.h0_c00329{height:1122.520000pt;}
.h1_c00329{height:1122.666667pt;}
.w2_c00329{width:22.240000pt;}
.w0_c00329{width:793.720000pt;}
.w1_c00329{width:794.000000pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:675.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e3e41d871b50251702c96a4.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.263000;font-style:normal;font-weight:normal;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_8eb6c81094884679b6c3ccd8.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.004000;font-style: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:-12.000000px;}
.ls0_c00330{letter-spacing:0.000000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:0.000000px;}
.ws1_c00330{word-spacing:12.000000px;}
._4_c00330{margin-left:-12.000000px;}
._6_c00330{margin-left:-9.750000px;}
._3_c00330{margin-left:-8.640000px;}
._1_c00330{margin-left:-5.880000px;}
._5_c00330{margin-left:-3.630000px;}
._2_c00330{margin-left:-2.400000px;}
._0_c00330{width:1.680000px;}
.fc1_c00330{color:rgb(255,255,255);}
.fc0_c00330{color:rgb(118,209,197);}
.fs3_c00330{font-size:66.000000px;}
.fs4_c00330{font-size:78.000000px;}
.fs1_c00330{font-size:96.000000px;}
.fs2_c00330{font-size:120.000000px;}
.fs0_c00330{font-size:168.000000px;}
.y0_c00330{bottom:0.000000px;}
.y7_c00330{bottom:625.310250px;}
.yc_c00330{bottom:625.389450px;}
.ya_c00330{bottom:714.346350px;}
.y9_c00330{bottom:733.849350px;}
.y8_c00330{bottom:753.352350px;}
.yb_c00330{bottom:784.533750px;}
.y6_c00330{bottom:860.267550px;}
.y5_c00330{bottom:931.647600px;}
.y4_c00330{bottom:985.659600px;}
.y3_c00330{bottom:1039.671600px;}
.y2_c00330{bottom:1093.683600px;}
.y1_c00330{bottom:1147.695600px;}
.h5_c00330{height:63.954000px;}
.h6_c00330{height:75.582000px;}
.h3_c00330{height:93.024000px;}
.h4_c00330{height:116.280000px;}
.h2_c00330{height:162.792000px;}
.h0_c00330{height:1262.835000px;}
.h1_c00330{height:1263.000000px;}
.w0_c00330{width:892.920000px;}
.w1_c00330{width:893.250000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:201.905250px;}
.xb_c00330{left:271.784850px;}
.x2_c00330{left:289.475250px;}
.x7_c00330{left:425.992650px;}
.x3_c00330{left:436.139250px;}
.x5_c00330{left:449.243250px;}
.x9_c00330{left:464.378250px;}
.x4_c00330{left:484.355250px;}
.x6_c00330{left:499.287600px;}
.xc_c00330{left:541.795950px;}
.x8_c00330{left:609.281250px;}
.xa_c00330{left:611.855250px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls1_c00330{letter-spacing:-10.666667pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
.ws1_c00330{word-spacing:10.666667pt;}
._4_c00330{margin-left:-10.666667pt;}
._6_c00330{margin-left:-8.666667pt;}
._3_c00330{margin-left:-7.680000pt;}
._1_c00330{margin-left:-5.226667pt;}
._5_c00330{margin-left:-3.226667pt;}
._2_c00330{margin-left:-2.133333pt;}
._0_c00330{width:1.493333pt;}
.fs3_c00330{font-size:58.666667pt;}
.fs4_c00330{font-size:69.333333pt;}
.fs1_c00330{font-size:85.333333pt;}
.fs2_c00330{font-size:106.666667pt;}
.fs0_c00330{font-size:149.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y7_c00330{bottom:555.831333pt;}
.yc_c00330{bottom:555.901733pt;}
.ya_c00330{bottom:634.974533pt;}
.y9_c00330{bottom:652.310533pt;}
.y8_c00330{bottom:669.646533pt;}
.yb_c00330{bottom:697.363333pt;}
.y6_c00330{bottom:764.682267pt;}
.y5_c00330{bottom:828.131200pt;}
.y4_c00330{bottom:876.141867pt;}
.y3_c00330{bottom:924.152533pt;}
.y2_c00330{bottom:972.163200pt;}
.y1_c00330{bottom:1020.173867pt;}
.h5_c00330{height:56.848000pt;}
.h6_c00330{height:67.184000pt;}
.h3_c00330{height:82.688000pt;}
.h4_c00330{height:103.360000pt;}
.h2_c00330{height:144.704000pt;}
.h0_c00330{height:1122.520000pt;}
.h1_c00330{height:1122.666667pt;}
.w0_c00330{width:793.706667pt;}
.w1_c00330{width:794.000000pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:179.471333pt;}
.xb_c00330{left:241.586533pt;}
.x2_c00330{left:257.311333pt;}
.x7_c00330{left:378.660133pt;}
.x3_c00330{left:387.679333pt;}
.x5_c00330{left:399.327333pt;}
.x9_c00330{left:412.780667pt;}
.x4_c00330{left:430.538000pt;}
.x6_c00330{left:443.811200pt;}
.xc_c00330{left:481.596400pt;}
.x8_c00330{left:541.583333pt;}
.xa_c00330{left:543.871333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00331{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
}
.y0_c00331{bottom:0.000000px;}
.h0_c00331{height:1262.835000px;}
.h1_c00331{height:1263.000000px;}
.w0_c00331{width:892.920000px;}
.w1_c00331{width:893.250000px;}
.x0_c00331{left:0.000000px;}
@media print{
.y0_c00331{bottom:0.000000pt;}
.h0_c00331{height:1122.520000pt;}
.h1_c00331{height:1122.666667pt;}
.w0_c00331{width:793.706667pt;}
.w1_c00331{width:794.000000pt;}
.x0_c00331{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_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_74e3e5eb534beb916fda706b.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls0_c00332{letter-spacing:0.000000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:0.000000px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs0_c00332{font-size:60.000000px;}
.y0_c00332{bottom:0.000000px;}
.y2_c00332{bottom:3.120000px;}
.y1_c00332{bottom:34.744580px;}
.h2_c00332{height:19.255605px;}
.h3_c00332{height:56.640000px;}
.h0_c00332{height:1262.835000px;}
.h1_c00332{height:1263.000000px;}
.w2_c00332{width:8.340000px;}
.w0_c00332{width:892.920000px;}
.w1_c00332{width:893.250000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:776.579681px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:0.000000pt;}
.fs0_c00332{font-size:53.333333pt;}
.y0_c00332{bottom:0.000000pt;}
.y2_c00332{bottom:2.773333pt;}
.y1_c00332{bottom:30.884071pt;}
.h2_c00332{height:17.116093pt;}
.h3_c00332{height:50.346667pt;}
.h0_c00332{height:1122.520000pt;}
.h1_c00332{height:1122.666667pt;}
.w2_c00332{width:7.413333pt;}
.w0_c00332{width:793.706667pt;}
.w1_c00332{width:794.000000pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:690.293050pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:0.772000;font-style:normal;font-weight:normal;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_c6f27b96c0c95ca1f405f0ac.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls0_c00333{letter-spacing:0.000000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00333{word-spacing:0.000000px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs1_c00333{font-size:60.000000px;}
.fs0_c00333{font-size:72.000000px;}
.y0_c00333{bottom:0.000000px;}
.y4_c00333{bottom:3.120000px;}
.y3_c00333{bottom:34.744580px;}
.y1_c00333{bottom:54.000000px;}
.y2_c00333{bottom:1085.085000px;}
.h4_c00333{height:19.255605px;}
.h3_c00333{height:55.584000px;}
.h5_c00333{height:56.640000px;}
.h2_c00333{height:1201.365000px;}
.h0_c00333{height:1262.835000px;}
.h1_c00333{height:1263.000000px;}
.w3_c00333{width:8.340000px;}
.w2_c00333{width:863.955000px;}
.w0_c00333{width:892.935000px;}
.w1_c00333{width:893.250000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:14.490000px;}
.x2_c00333{left:113.040150px;}
.x3_c00333{left:776.594604px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.000000pt;}
.fs1_c00333{font-size:53.333333pt;}
.fs0_c00333{font-size:64.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y4_c00333{bottom:2.773333pt;}
.y3_c00333{bottom:30.884071pt;}
.y1_c00333{bottom:48.000000pt;}
.y2_c00333{bottom:964.520000pt;}
.h4_c00333{height:17.116093pt;}
.h3_c00333{height:49.408000pt;}
.h5_c00333{height:50.346667pt;}
.h2_c00333{height:1067.880000pt;}
.h0_c00333{height:1122.520000pt;}
.h1_c00333{height:1122.666667pt;}
.w3_c00333{width:7.413333pt;}
.w2_c00333{width:767.960000pt;}
.w0_c00333{width:793.720000pt;}
.w1_c00333{width:794.000000pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:12.880000pt;}
.x2_c00333{left:100.480133pt;}
.x3_c00333{left:690.306315pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_239aed764d3a2ad2cf108495.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.134000;font-style:normal;font-weight:normal;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_fab2c31afc2b97b457a69c6e.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;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:ff3_c00334;src:url('chunks/assets/font_933df32a7987f4c2a6243ea7.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00334{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00334{vertical-align:-24.480000px;}
.v0_c00334{vertical-align:0.000000px;}
.v1_c00334{vertical-align:30.240000px;}
.lsb_c00334{letter-spacing:0.000000px;}
.ls3_c00334{letter-spacing:0.179040px;}
.lse_c00334{letter-spacing:0.265680px;}
.ls9_c00334{letter-spacing:0.327292px;}
.ls7_c00334{letter-spacing:0.327911px;}
.lsa_c00334{letter-spacing:0.328900px;}
.ls8_c00334{letter-spacing:0.494773px;}
.ls4_c00334{letter-spacing:0.684240px;}
.lsd_c00334{letter-spacing:5.290272px;}
.lsc_c00334{letter-spacing:5.430672px;}
.ls5_c00334{letter-spacing:5.956200px;}
.ls1_c00334{letter-spacing:5.970600px;}
.ls0_c00334{letter-spacing:5.975400px;}
.ls2_c00334{letter-spacing:5.976000px;}
.ls6_c00334{letter-spacing:5.980200px;}
.sc__c00334{text-shadow:none;}
.sc1_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00334{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc1_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00334{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00334{word-spacing:-21.043152px;}
.ws1_c00334{word-spacing:-20.902752px;}
.ws2_c00334{word-spacing:-20.016000px;}
.ws3_c00334{word-spacing:-11.609280px;}
.ws4_c00334{word-spacing:-10.008000px;}
.ws5_c00334{word-spacing:0.000000px;}
._0_c00334{margin-left:-1.179360px;}
._4_c00334{width:1.152000px;}
._9_c00334{width:3.240000px;}
._8_c00334{width:5.270400px;}
._5_c00334{width:6.552000px;}
._a_c00334{width:8.568000px;}
._7_c00334{width:9.720000px;}
._3_c00334{width:14.616000px;}
._6_c00334{width:23.472000px;}
._1_c00334{width:25.056000px;}
._2_c00334{width:44.640000px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs4_c00334{font-size:36.000000px;}
.fs2_c00334{font-size:41.760000px;}
.fs7_c00334{font-size:48.982495px;}
.fs1_c00334{font-size:56.160000px;}
.fs5_c00334{font-size:59.040000px;}
.fs8_c00334{font-size:60.000000px;}
.fs6_c00334{font-size:60.857039px;}
.fs0_c00334{font-size:72.000000px;}
.fs3_c00334{font-size:74.215901px;}
.y0_c00334{bottom:0.000000px;}
.y26_c00334{bottom:3.120000px;}
.y25_c00334{bottom:34.744580px;}
.y1_c00334{bottom:54.000000px;}
.y24_c00334{bottom:55.485000px;}
.y23_c00334{bottom:61.605000px;}
.y22_c00334{bottom:78.885000px;}
.y21_c00334{bottom:96.525000px;}
.y20_c00334{bottom:123.165000px;}
.y1f_c00334{bottom:252.405000px;}
.y1e_c00334{bottom:273.285000px;}
.y1d_c00334{bottom:294.525000px;}
.y1c_c00334{bottom:330.525000px;}
.y1b_c00334{bottom:351.405000px;}
.y1a_c00334{bottom:372.285000px;}
.y19_c00334{bottom:393.525000px;}
.y18_c00334{bottom:429.525000px;}
.y17_c00334{bottom:465.525000px;}
.y16_c00334{bottom:501.525000px;}
.y15_c00334{bottom:537.525000px;}
.y14_c00334{bottom:573.525000px;}
.y13_c00334{bottom:594.405000px;}
.y12_c00334{bottom:630.405000px;}
.y11_c00334{bottom:666.405000px;}
.y10_c00334{bottom:702.405000px;}
.yf_c00334{bottom:738.405000px;}
.ye_c00334{bottom:759.285000px;}
.yd_c00334{bottom:795.285000px;}
.yc_c00334{bottom:816.525000px;}
.yb_c00334{bottom:837.405000px;}
.ya_c00334{bottom:873.405000px;}
.y9_c00334{bottom:911.925000px;}
.y8_c00334{bottom:950.085000px;}
.y7_c00334{bottom:986.085000px;}
.y6_c00334{bottom:1006.965000px;}
.y5_c00334{bottom:1027.845000px;}
.y4_c00334{bottom:1049.085000px;}
.y3_c00334{bottom:1085.085000px;}
.y2_c00334{bottom:1138.365000px;}
.h8_c00334{height:19.255605px;}
.h6_c00334{height:32.616000px;}
.h7_c00334{height:46.981634px;}
.h9_c00334{height:56.640000px;}
.h5_c00334{height:57.294676px;}
.h3_c00334{height:65.232000px;}
.h4_c00334{height:68.074560px;}
.h2_c00334{height:1201.365000px;}
.h0_c00334{height:1262.835000px;}
.h1_c00334{height:1263.000000px;}
.w3_c00334{width:8.340000px;}
.w2_c00334{width:863.955000px;}
.w0_c00334{width:892.935000px;}
.w1_c00334{width:893.250000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:14.490000px;}
.x2_c00334{left:113.040150px;}
.x7_c00334{left:122.213700px;}
.x5_c00334{left:139.629600px;}
.x6_c00334{left:211.664400px;}
.x4_c00334{left:326.048250px;}
.x3_c00334{left:417.720000px;}
.x8_c00334{left:776.594604px;}
@media print{
.v2_c00334{vertical-align:-21.760000pt;}
.v0_c00334{vertical-align:0.000000pt;}
.v1_c00334{vertical-align:26.880000pt;}
.lsb_c00334{letter-spacing:0.000000pt;}
.ls3_c00334{letter-spacing:0.159147pt;}
.lse_c00334{letter-spacing:0.236160pt;}
.ls9_c00334{letter-spacing:0.290926pt;}
.ls7_c00334{letter-spacing:0.291476pt;}
.lsa_c00334{letter-spacing:0.292356pt;}
.ls8_c00334{letter-spacing:0.439798pt;}
.ls4_c00334{letter-spacing:0.608213pt;}
.lsd_c00334{letter-spacing:4.702464pt;}
.lsc_c00334{letter-spacing:4.827264pt;}
.ls5_c00334{letter-spacing:5.294400pt;}
.ls1_c00334{letter-spacing:5.307200pt;}
.ls0_c00334{letter-spacing:5.311467pt;}
.ls2_c00334{letter-spacing:5.312000pt;}
.ls6_c00334{letter-spacing:5.315733pt;}
.ws0_c00334{word-spacing:-18.705024pt;}
.ws1_c00334{word-spacing:-18.580224pt;}
.ws2_c00334{word-spacing:-17.792000pt;}
.ws3_c00334{word-spacing:-10.319360pt;}
.ws4_c00334{word-spacing:-8.896000pt;}
.ws5_c00334{word-spacing:0.000000pt;}
._0_c00334{margin-left:-1.048320pt;}
._4_c00334{width:1.024000pt;}
._9_c00334{width:2.880000pt;}
._8_c00334{width:4.684800pt;}
._5_c00334{width:5.824000pt;}
._a_c00334{width:7.616000pt;}
._7_c00334{width:8.640000pt;}
._3_c00334{width:12.992000pt;}
._6_c00334{width:20.864000pt;}
._1_c00334{width:22.272000pt;}
._2_c00334{width:39.680000pt;}
.fs4_c00334{font-size:32.000000pt;}
.fs2_c00334{font-size:37.120000pt;}
.fs7_c00334{font-size:43.539995pt;}
.fs1_c00334{font-size:49.920000pt;}
.fs5_c00334{font-size:52.480000pt;}
.fs8_c00334{font-size:53.333333pt;}
.fs6_c00334{font-size:54.095146pt;}
.fs0_c00334{font-size:64.000000pt;}
.fs3_c00334{font-size:65.969690pt;}
.y0_c00334{bottom:0.000000pt;}
.y26_c00334{bottom:2.773333pt;}
.y25_c00334{bottom:30.884071pt;}
.y1_c00334{bottom:48.000000pt;}
.y24_c00334{bottom:49.320000pt;}
.y23_c00334{bottom:54.760000pt;}
.y22_c00334{bottom:70.120000pt;}
.y21_c00334{bottom:85.800000pt;}
.y20_c00334{bottom:109.480000pt;}
.y1f_c00334{bottom:224.360000pt;}
.y1e_c00334{bottom:242.920000pt;}
.y1d_c00334{bottom:261.800000pt;}
.y1c_c00334{bottom:293.800000pt;}
.y1b_c00334{bottom:312.360000pt;}
.y1a_c00334{bottom:330.920000pt;}
.y19_c00334{bottom:349.800000pt;}
.y18_c00334{bottom:381.800000pt;}
.y17_c00334{bottom:413.800000pt;}
.y16_c00334{bottom:445.800000pt;}
.y15_c00334{bottom:477.800000pt;}
.y14_c00334{bottom:509.800000pt;}
.y13_c00334{bottom:528.360000pt;}
.y12_c00334{bottom:560.360000pt;}
.y11_c00334{bottom:592.360000pt;}
.y10_c00334{bottom:624.360000pt;}
.yf_c00334{bottom:656.360000pt;}
.ye_c00334{bottom:674.920000pt;}
.yd_c00334{bottom:706.920000pt;}
.yc_c00334{bottom:725.800000pt;}
.yb_c00334{bottom:744.360000pt;}
.ya_c00334{bottom:776.360000pt;}
.y9_c00334{bottom:810.600000pt;}
.y8_c00334{bottom:844.520000pt;}
.y7_c00334{bottom:876.520000pt;}
.y6_c00334{bottom:895.080000pt;}
.y5_c00334{bottom:913.640000pt;}
.y4_c00334{bottom:932.520000pt;}
.y3_c00334{bottom:964.520000pt;}
.y2_c00334{bottom:1011.880000pt;}
.h8_c00334{height:17.116093pt;}
.h6_c00334{height:28.992000pt;}
.h7_c00334{height:41.761453pt;}
.h9_c00334{height:50.346667pt;}
.h5_c00334{height:50.928601pt;}
.h3_c00334{height:57.984000pt;}
.h4_c00334{height:60.510720pt;}
.h2_c00334{height:1067.880000pt;}
.h0_c00334{height:1122.520000pt;}
.h1_c00334{height:1122.666667pt;}
.w3_c00334{width:7.413333pt;}
.w2_c00334{width:767.960000pt;}
.w0_c00334{width:793.720000pt;}
.w1_c00334{width:794.000000pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:12.880000pt;}
.x2_c00334{left:100.480133pt;}
.x7_c00334{left:108.634400pt;}
.x5_c00334{left:124.115200pt;}
.x6_c00334{left:188.146133pt;}
.x4_c00334{left:289.820667pt;}
.x3_c00334{left:371.306667pt;}
.x8_c00334{left:690.306315pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ceba3193e14ad172795f2d51.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.134000;font-style:normal;font-weight:normal;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_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff3_c00335{font-family:ff3_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:ff4_c00335;src:url('chunks/assets/font_8725bcf1e6ddf41cc2010435.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;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:ff5_c00335;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00335{font-family:ff5_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:ff6_c00335;src:url('chunks/assets/font_7026329621f39c119a2e23ff.woff2')format("woff");}.ff6_c00335{font-family:ff6_c00335;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00335;src:url('chunks/assets/font_da5a0d75e1ae628bf19935bc.woff2')format("woff");}.ff7_c00335{font-family:ff7_c00335;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00335{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00335{vertical-align:-24.480000px;}
.v0_c00335{vertical-align:0.000000px;}
.v1_c00335{vertical-align:30.240000px;}
.ls12_c00335{letter-spacing:0.000000px;}
.lse_c00335{letter-spacing:0.222000px;}
.ls16_c00335{letter-spacing:0.242064px;}
.ls2_c00335{letter-spacing:0.265680px;}
.ls15_c00335{letter-spacing:0.273857px;}
.ls7_c00335{letter-spacing:0.295200px;}
.ls1b_c00335{letter-spacing:0.318816px;}
.ls10_c00335{letter-spacing:0.324720px;}
.ls3_c00335{letter-spacing:0.327292px;}
.ls18_c00335{letter-spacing:0.328628px;}
.ls5_c00335{letter-spacing:0.328900px;}
.lsf_c00335{letter-spacing:0.421440px;}
.ls6_c00335{letter-spacing:0.425999px;}
.lsa_c00335{letter-spacing:0.492942px;}
.lsc_c00335{letter-spacing:0.494773px;}
.ls4_c00335{letter-spacing:0.495391px;}
.ls8_c00335{letter-spacing:0.531360px;}
.ls14_c00335{letter-spacing:0.547713px;}
.ls17_c00335{letter-spacing:0.584496px;}
.ls1_c00335{letter-spacing:0.590400px;}
.ls1c_c00335{letter-spacing:0.602485px;}
.ls9_c00335{letter-spacing:0.712027px;}
.ls13_c00335{letter-spacing:0.718113px;}
.ls1a_c00335{letter-spacing:0.743904px;}
.ls19_c00335{letter-spacing:0.962352px;}
.lsb_c00335{letter-spacing:1.771200px;}
.ls1d_c00335{letter-spacing:5.430672px;}
.lsd_c00335{letter-spacing:5.975400px;}
.ls11_c00335{letter-spacing:5.976000px;}
.ls0_c00335{letter-spacing:54.864000px;}
.sc__c00335{text-shadow:none;}
.sc1_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00335{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc1_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00335{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00335{word-spacing:-21.043152px;}
.ws6_c00335{word-spacing:-20.016000px;}
.ws0_c00335{word-spacing:-17.636370px;}
.ws3_c00335{word-spacing:-17.465970px;}
.ws8_c00335{word-spacing:-16.944480px;}
.ws5_c00335{word-spacing:-11.609280px;}
.ws7_c00335{word-spacing:-10.008000px;}
.ws1_c00335{word-spacing:-0.608570px;}
.ws2_c00335{word-spacing:-0.389485px;}
.ws9_c00335{word-spacing:0.000000px;}
._3_c00335{margin-left:-1.010227px;}
._4_c00335{width:1.083255px;}
._9_c00335{width:2.592000px;}
._2_c00335{width:3.600000px;}
._5_c00335{width:4.608000px;}
._1_c00335{width:6.120000px;}
._a_c00335{width:8.064000px;}
._0_c00335{width:9.936000px;}
._7_c00335{width:11.448000px;}
._8_c00335{width:14.760000px;}
._6_c00335{width:16.200000px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs7_c00335{font-size:36.000000px;}
.fs6_c00335{font-size:41.760000px;}
.fs4_c00335{font-size:48.982495px;}
.fs5_c00335{font-size:56.160000px;}
.fs2_c00335{font-size:59.040000px;}
.fs8_c00335{font-size:60.000000px;}
.fs3_c00335{font-size:60.857039px;}
.fs0_c00335{font-size:72.000000px;}
.fs1_c00335{font-size:74.215901px;}
.y0_c00335{bottom:0.000000px;}
.y2d_c00335{bottom:3.120000px;}
.y2c_c00335{bottom:34.744580px;}
.y1_c00335{bottom:54.000000px;}
.y2b_c00335{bottom:61.605000px;}
.y2a_c00335{bottom:78.885000px;}
.y29_c00335{bottom:105.525000px;}
.y28_c00335{bottom:142.605000px;}
.y27_c00335{bottom:163.485000px;}
.y26_c00335{bottom:184.365000px;}
.y25_c00335{bottom:205.605000px;}
.y24_c00335{bottom:226.485000px;}
.y23_c00335{bottom:265.365000px;}
.y22_c00335{bottom:286.605000px;}
.y21_c00335{bottom:307.485000px;}
.y20_c00335{bottom:328.365000px;}
.y1f_c00335{bottom:349.605000px;}
.y1e_c00335{bottom:388.485000px;}
.y1d_c00335{bottom:409.725000px;}
.y1c_c00335{bottom:430.605000px;}
.y1b_c00335{bottom:466.605000px;}
.y1a_c00335{bottom:494.685000px;}
.y19_c00335{bottom:519.885000px;}
.y18_c00335{bottom:537.165000px;}
.y17_c00335{bottom:537.169680px;}
.y16_c00335{bottom:562.365000px;}
.y15_c00335{bottom:589.725000px;}
.y13_c00335{bottom:617.443920px;}
.y14_c00335{bottom:617.445000px;}
.y12_c00335{bottom:642.285000px;}
.y11_c00335{bottom:668.205000px;}
.y10_c00335{bottom:699.525000px;}
.yf_c00335{bottom:728.325000px;}
.ye_c00335{bottom:763.965000px;}
.yd_c00335{bottom:799.965000px;}
.yc_c00335{bottom:820.845000px;}
.yb_c00335{bottom:842.085000px;}
.ya_c00335{bottom:862.965000px;}
.y9_c00335{bottom:898.965000px;}
.y8_c00335{bottom:934.965000px;}
.y7_c00335{bottom:970.965000px;}
.y6_c00335{bottom:991.845000px;}
.y5_c00335{bottom:1013.085000px;}
.y4_c00335{bottom:1049.085000px;}
.y3_c00335{bottom:1085.085000px;}
.y2_c00335{bottom:1138.365000px;}
.hb_c00335{height:19.255605px;}
.ha_c00335{height:32.616000px;}
.h8_c00335{height:39.350391px;}
.h7_c00335{height:46.981634px;}
.h5_c00335{height:47.988281px;}
.h6_c00335{height:53.490240px;}
.hc_c00335{height:56.640000px;}
.h4_c00335{height:57.294676px;}
.h3_c00335{height:65.232000px;}
.h9_c00335{height:68.074560px;}
.h2_c00335{height:1201.365000px;}
.h0_c00335{height:1262.835000px;}
.h1_c00335{height:1263.000000px;}
.w3_c00335{width:8.340000px;}
.w2_c00335{width:863.955000px;}
.w0_c00335{width:892.935000px;}
.w1_c00335{width:893.250000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:14.490000px;}
.x2_c00335{left:113.040150px;}
.x3_c00335{left:140.037600px;}
.x1c_c00335{left:147.223350px;}
.x27_c00335{left:156.374250px;}
.x30_c00335{left:161.027400px;}
.x2e_c00335{left:163.042950px;}
.x1d_c00335{left:195.581550px;}
.x1e_c00335{left:203.081550px;}
.x31_c00335{left:208.060500px;}
.x1f_c00335{left:212.246400px;}
.x20_c00335{left:220.585650px;}
.x28_c00335{left:223.092000px;}
.x9_c00335{left:283.140000px;}
.x32_c00335{left:290.549850px;}
.x21_c00335{left:313.867950px;}
.x4_c00335{left:322.070850px;}
.x33_c00335{left:339.563250px;}
.x23_c00335{left:346.586400px;}
.x18_c00335{left:349.144800px;}
.x10_c00335{left:351.142500px;}
.x19_c00335{left:358.144800px;}
.x11_c00335{left:360.142500px;}
.x34_c00335{left:371.834550px;}
.x22_c00335{left:374.720850px;}
.xa_c00335{left:379.132350px;}
.xb_c00335{left:388.132350px;}
.x35_c00335{left:394.396050px;}
.x2f_c00335{left:409.907250px;}
.x5_c00335{left:412.230450px;}
.x12_c00335{left:419.163150px;}
.x6_c00335{left:422.238300px;}
.x13_c00335{left:423.663150px;}
.x24_c00335{left:444.411300px;}
.x2a_c00335{left:447.282300px;}
.x36_c00335{left:453.417000px;}
.x1a_c00335{left:462.110550px;}
.x2b_c00335{left:465.282000px;}
.x1b_c00335{left:466.610550px;}
.x2c_c00335{left:489.018750px;}
.x37_c00335{left:497.205000px;}
.xc_c00335{left:500.125800px;}
.xd_c00335{left:509.125800px;}
.x2d_c00335{left:515.010150px;}
.x39_c00335{left:541.432200px;}
.xe_c00335{left:571.134900px;}
.xf_c00335{left:580.134900px;}
.x14_c00335{left:582.671700px;}
.x38_c00335{left:587.221500px;}
.x15_c00335{left:591.671700px;}
.x3a_c00335{left:613.449150px;}
.x29_c00335{left:630.012450px;}
.x3b_c00335{left:634.520100px;}
.x25_c00335{left:639.707550px;}
.x16_c00335{left:650.692800px;}
.x17_c00335{left:659.692800px;}
.x26_c00335{left:674.197950px;}
.x7_c00335{left:716.481150px;}
.x8_c00335{left:735.378300px;}
.x3c_c00335{left:739.548300px;}
.x3d_c00335{left:776.594604px;}
@media print{
.v2_c00335{vertical-align:-21.760000pt;}
.v0_c00335{vertical-align:0.000000pt;}
.v1_c00335{vertical-align:26.880000pt;}
.ls12_c00335{letter-spacing:0.000000pt;}
.lse_c00335{letter-spacing:0.197333pt;}
.ls16_c00335{letter-spacing:0.215168pt;}
.ls2_c00335{letter-spacing:0.236160pt;}
.ls15_c00335{letter-spacing:0.243428pt;}
.ls7_c00335{letter-spacing:0.262400pt;}
.ls1b_c00335{letter-spacing:0.283392pt;}
.ls10_c00335{letter-spacing:0.288640pt;}
.ls3_c00335{letter-spacing:0.290926pt;}
.ls18_c00335{letter-spacing:0.292114pt;}
.ls5_c00335{letter-spacing:0.292356pt;}
.lsf_c00335{letter-spacing:0.374613pt;}
.ls6_c00335{letter-spacing:0.378666pt;}
.lsa_c00335{letter-spacing:0.438171pt;}
.lsc_c00335{letter-spacing:0.439798pt;}
.ls4_c00335{letter-spacing:0.440348pt;}
.ls8_c00335{letter-spacing:0.472320pt;}
.ls14_c00335{letter-spacing:0.486856pt;}
.ls17_c00335{letter-spacing:0.519552pt;}
.ls1_c00335{letter-spacing:0.524800pt;}
.ls1c_c00335{letter-spacing:0.535542pt;}
.ls9_c00335{letter-spacing:0.632913pt;}
.ls13_c00335{letter-spacing:0.638323pt;}
.ls1a_c00335{letter-spacing:0.661248pt;}
.ls19_c00335{letter-spacing:0.855424pt;}
.lsb_c00335{letter-spacing:1.574400pt;}
.ls1d_c00335{letter-spacing:4.827264pt;}
.lsd_c00335{letter-spacing:5.311467pt;}
.ls11_c00335{letter-spacing:5.312000pt;}
.ls0_c00335{letter-spacing:48.768000pt;}
.ws4_c00335{word-spacing:-18.705024pt;}
.ws6_c00335{word-spacing:-17.792000pt;}
.ws0_c00335{word-spacing:-15.676773pt;}
.ws3_c00335{word-spacing:-15.525307pt;}
.ws8_c00335{word-spacing:-15.061760pt;}
.ws5_c00335{word-spacing:-10.319360pt;}
.ws7_c00335{word-spacing:-8.896000pt;}
.ws1_c00335{word-spacing:-0.540951pt;}
.ws2_c00335{word-spacing:-0.346209pt;}
.ws9_c00335{word-spacing:0.000000pt;}
._3_c00335{margin-left:-0.897979pt;}
._4_c00335{width:0.962894pt;}
._9_c00335{width:2.304000pt;}
._2_c00335{width:3.200000pt;}
._5_c00335{width:4.096000pt;}
._1_c00335{width:5.440000pt;}
._a_c00335{width:7.168000pt;}
._0_c00335{width:8.832000pt;}
._7_c00335{width:10.176000pt;}
._8_c00335{width:13.120000pt;}
._6_c00335{width:14.400000pt;}
.fs7_c00335{font-size:32.000000pt;}
.fs6_c00335{font-size:37.120000pt;}
.fs4_c00335{font-size:43.539995pt;}
.fs5_c00335{font-size:49.920000pt;}
.fs2_c00335{font-size:52.480000pt;}
.fs8_c00335{font-size:53.333333pt;}
.fs3_c00335{font-size:54.095146pt;}
.fs0_c00335{font-size:64.000000pt;}
.fs1_c00335{font-size:65.969690pt;}
.y0_c00335{bottom:0.000000pt;}
.y2d_c00335{bottom:2.773333pt;}
.y2c_c00335{bottom:30.884071pt;}
.y1_c00335{bottom:48.000000pt;}
.y2b_c00335{bottom:54.760000pt;}
.y2a_c00335{bottom:70.120000pt;}
.y29_c00335{bottom:93.800000pt;}
.y28_c00335{bottom:126.760000pt;}
.y27_c00335{bottom:145.320000pt;}
.y26_c00335{bottom:163.880000pt;}
.y25_c00335{bottom:182.760000pt;}
.y24_c00335{bottom:201.320000pt;}
.y23_c00335{bottom:235.880000pt;}
.y22_c00335{bottom:254.760000pt;}
.y21_c00335{bottom:273.320000pt;}
.y20_c00335{bottom:291.880000pt;}
.y1f_c00335{bottom:310.760000pt;}
.y1e_c00335{bottom:345.320000pt;}
.y1d_c00335{bottom:364.200000pt;}
.y1c_c00335{bottom:382.760000pt;}
.y1b_c00335{bottom:414.760000pt;}
.y1a_c00335{bottom:439.720000pt;}
.y19_c00335{bottom:462.120000pt;}
.y18_c00335{bottom:477.480000pt;}
.y17_c00335{bottom:477.484160pt;}
.y16_c00335{bottom:499.880000pt;}
.y15_c00335{bottom:524.200000pt;}
.y13_c00335{bottom:548.839040pt;}
.y14_c00335{bottom:548.840000pt;}
.y12_c00335{bottom:570.920000pt;}
.y11_c00335{bottom:593.960000pt;}
.y10_c00335{bottom:621.800000pt;}
.yf_c00335{bottom:647.400000pt;}
.ye_c00335{bottom:679.080000pt;}
.yd_c00335{bottom:711.080000pt;}
.yc_c00335{bottom:729.640000pt;}
.yb_c00335{bottom:748.520000pt;}
.ya_c00335{bottom:767.080000pt;}
.y9_c00335{bottom:799.080000pt;}
.y8_c00335{bottom:831.080000pt;}
.y7_c00335{bottom:863.080000pt;}
.y6_c00335{bottom:881.640000pt;}
.y5_c00335{bottom:900.520000pt;}
.y4_c00335{bottom:932.520000pt;}
.y3_c00335{bottom:964.520000pt;}
.y2_c00335{bottom:1011.880000pt;}
.hb_c00335{height:17.116093pt;}
.ha_c00335{height:28.992000pt;}
.h8_c00335{height:34.978125pt;}
.h7_c00335{height:41.761453pt;}
.h5_c00335{height:42.656250pt;}
.h6_c00335{height:47.546880pt;}
.hc_c00335{height:50.346667pt;}
.h4_c00335{height:50.928601pt;}
.h3_c00335{height:57.984000pt;}
.h9_c00335{height:60.510720pt;}
.h2_c00335{height:1067.880000pt;}
.h0_c00335{height:1122.520000pt;}
.h1_c00335{height:1122.666667pt;}
.w3_c00335{width:7.413333pt;}
.w2_c00335{width:767.960000pt;}
.w0_c00335{width:793.720000pt;}
.w1_c00335{width:794.000000pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:12.880000pt;}
.x2_c00335{left:100.480133pt;}
.x3_c00335{left:124.477867pt;}
.x1c_c00335{left:130.865200pt;}
.x27_c00335{left:138.999333pt;}
.x30_c00335{left:143.135467pt;}
.x2e_c00335{left:144.927067pt;}
.x1d_c00335{left:173.850267pt;}
.x1e_c00335{left:180.516933pt;}
.x31_c00335{left:184.942667pt;}
.x1f_c00335{left:188.663467pt;}
.x20_c00335{left:196.076133pt;}
.x28_c00335{left:198.304000pt;}
.x9_c00335{left:251.680000pt;}
.x32_c00335{left:258.266533pt;}
.x21_c00335{left:278.993733pt;}
.x4_c00335{left:286.285200pt;}
.x33_c00335{left:301.834000pt;}
.x23_c00335{left:308.076800pt;}
.x18_c00335{left:310.350933pt;}
.x10_c00335{left:312.126667pt;}
.x19_c00335{left:318.350933pt;}
.x11_c00335{left:320.126667pt;}
.x34_c00335{left:330.519600pt;}
.x22_c00335{left:333.085200pt;}
.xa_c00335{left:337.006533pt;}
.xb_c00335{left:345.006533pt;}
.x35_c00335{left:350.574267pt;}
.x2f_c00335{left:364.362000pt;}
.x5_c00335{left:366.427067pt;}
.x12_c00335{left:372.589467pt;}
.x6_c00335{left:375.322933pt;}
.x13_c00335{left:376.589467pt;}
.x24_c00335{left:395.032267pt;}
.x2a_c00335{left:397.584267pt;}
.x36_c00335{left:403.037333pt;}
.x1a_c00335{left:410.764933pt;}
.x2b_c00335{left:413.584000pt;}
.x1b_c00335{left:414.764933pt;}
.x2c_c00335{left:434.683333pt;}
.x37_c00335{left:441.960000pt;}
.xc_c00335{left:444.556267pt;}
.xd_c00335{left:452.556267pt;}
.x2d_c00335{left:457.786800pt;}
.x39_c00335{left:481.273067pt;}
.xe_c00335{left:507.675467pt;}
.xf_c00335{left:515.675467pt;}
.x14_c00335{left:517.930400pt;}
.x38_c00335{left:521.974667pt;}
.x15_c00335{left:525.930400pt;}
.x3a_c00335{left:545.288133pt;}
.x29_c00335{left:560.011067pt;}
.x3b_c00335{left:564.017867pt;}
.x25_c00335{left:568.628933pt;}
.x16_c00335{left:578.393600pt;}
.x17_c00335{left:586.393600pt;}
.x26_c00335{left:599.287067pt;}
.x7_c00335{left:636.872133pt;}
.x8_c00335{left:653.669600pt;}
.x3c_c00335{left:657.376267pt;}
.x3d_c00335{left:690.306315pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea59776a40fd55eda82ababd.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.134000;font-style:normal;font-weight:normal;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_7b00efd9fce74548fc9ac78d.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;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:ff3_c00336;src:url('chunks/assets/font_6e89a9d5789e5b19242536b6.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00336{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00336{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00336{vertical-align:-24.480000px;}
.v0_c00336{vertical-align:0.000000px;}
.v1_c00336{vertical-align:30.240000px;}
.ls2_c00336{letter-spacing:0.000000px;}
.lse_c00336{letter-spacing:0.239760px;}
.lsa_c00336{letter-spacing:0.265680px;}
.ls8_c00336{letter-spacing:0.318816px;}
.lsc_c00336{letter-spacing:0.399600px;}
.ls5_c00336{letter-spacing:0.425088px;}
.lsd_c00336{letter-spacing:0.450342px;}
.ls7_c00336{letter-spacing:0.492942px;}
.ls6_c00336{letter-spacing:0.531360px;}
.ls9_c00336{letter-spacing:0.547713px;}
.lsb_c00336{letter-spacing:0.797040px;}
.ls4_c00336{letter-spacing:1.139472px;}
.ls3_c00336{letter-spacing:5.335200px;}
.ls0_c00336{letter-spacing:5.975400px;}
.ls1_c00336{letter-spacing:5.976000px;}
.sc__c00336{text-shadow:none;}
.sc1_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00336{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc1_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00336{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00336{word-spacing:-20.947680px;}
.ws3_c00336{word-spacing:-17.210160px;}
.ws4_c00336{word-spacing:-15.718037px;}
.ws5_c00336{word-spacing:-15.051600px;}
.ws1_c00336{word-spacing:-11.609280px;}
.ws2_c00336{word-spacing:-10.008000px;}
.ws6_c00336{word-spacing:0.000000px;}
._6_c00336{margin-left:-1.018800px;}
._0_c00336{width:1.080000px;}
._8_c00336{width:2.098800px;}
._7_c00336{width:3.229920px;}
._5_c00336{width:4.320000px;}
._9_c00336{width:6.848640px;}
._4_c00336{width:8.424000px;}
._3_c00336{width:9.576000px;}
._1_c00336{width:11.088000px;}
._2_c00336{width:17.352000px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs3_c00336{font-size:36.000000px;}
.fs2_c00336{font-size:41.760000px;}
.fs6_c00336{font-size:53.280000px;}
.fs7_c00336{font-size:54.919767px;}
.fs1_c00336{font-size:56.160000px;}
.fs4_c00336{font-size:59.040000px;}
.fs8_c00336{font-size:60.000000px;}
.fs5_c00336{font-size:60.857039px;}
.fs0_c00336{font-size:72.000000px;}
.y0_c00336{bottom:0.000000px;}
.y1a_c00336{bottom:3.120000px;}
.y18_c00336{bottom:34.560000px;}
.y19_c00336{bottom:34.744580px;}
.y1_c00336{bottom:54.000000px;}
.y16_c00336{bottom:55.481040px;}
.y15_c00336{bottom:72.765000px;}
.y14_c00336{bottom:72.766800px;}
.y12_c00336{bottom:90.401040px;}
.y13_c00336{bottom:90.405000px;}
.y11_c00336{bottom:113.805000px;}
.y10_c00336{bottom:140.445000px;}
.y17_c00336{bottom:319.365000px;}
.yf_c00336{bottom:730.845000px;}
.ye_c00336{bottom:766.845000px;}
.yd_c00336{bottom:802.845000px;}
.yc_c00336{bottom:824.085000px;}
.yb_c00336{bottom:862.965000px;}
.ya_c00336{bottom:901.845000px;}
.y9_c00336{bottom:941.085000px;}
.y8_c00336{bottom:961.965000px;}
.y7_c00336{bottom:982.845000px;}
.y6_c00336{bottom:1004.085000px;}
.y5_c00336{bottom:1024.965000px;}
.y4_c00336{bottom:1063.845000px;}
.y3_c00336{bottom:1085.085000px;}
.y2_c00336{bottom:1138.365000px;}
.hb_c00336{height:19.255605px;}
.h5_c00336{height:32.616000px;}
.ha_c00336{height:42.398060px;}
.h7_c00336{height:46.981634px;}
.h8_c00336{height:47.160000px;}
.h9_c00336{height:48.271680px;}
.h6_c00336{height:53.490240px;}
.hc_c00336{height:56.640000px;}
.h3_c00336{height:65.232000px;}
.h4_c00336{height:68.074560px;}
.h2_c00336{height:1201.365000px;}
.h0_c00336{height:1262.835000px;}
.h1_c00336{height:1263.000000px;}
.w4_c00336{width:8.340000px;}
.w3_c00336{width:643.680000px;}
.w2_c00336{width:863.955000px;}
.w0_c00336{width:892.935000px;}
.w1_c00336{width:893.250000px;}
.x0_c00336{left:0.000000px;}
.x1_c00336{left:14.490000px;}
.x2_c00336{left:113.040150px;}
.x9_c00336{left:130.770000px;}
.xa_c00336{left:195.642750px;}
.x5_c00336{left:271.316550px;}
.x6_c00336{left:285.641250px;}
.x7_c00336{left:290.635950px;}
.x8_c00336{left:357.488850px;}
.xb_c00336{left:404.240850px;}
.xc_c00336{left:439.488750px;}
.x3_c00336{left:666.456000px;}
.x4_c00336{left:683.945850px;}
.xd_c00336{left:776.594604px;}
@media print{
.v2_c00336{vertical-align:-21.760000pt;}
.v0_c00336{vertical-align:0.000000pt;}
.v1_c00336{vertical-align:26.880000pt;}
.ls2_c00336{letter-spacing:0.000000pt;}
.lse_c00336{letter-spacing:0.213120pt;}
.lsa_c00336{letter-spacing:0.236160pt;}
.ls8_c00336{letter-spacing:0.283392pt;}
.lsc_c00336{letter-spacing:0.355200pt;}
.ls5_c00336{letter-spacing:0.377856pt;}
.lsd_c00336{letter-spacing:0.400304pt;}
.ls7_c00336{letter-spacing:0.438171pt;}
.ls6_c00336{letter-spacing:0.472320pt;}
.ls9_c00336{letter-spacing:0.486856pt;}
.lsb_c00336{letter-spacing:0.708480pt;}
.ls4_c00336{letter-spacing:1.012864pt;}
.ls3_c00336{letter-spacing:4.742400pt;}
.ls0_c00336{letter-spacing:5.311467pt;}
.ls1_c00336{letter-spacing:5.312000pt;}
.ws0_c00336{word-spacing:-18.620160pt;}
.ws3_c00336{word-spacing:-15.297920pt;}
.ws4_c00336{word-spacing:-13.971589pt;}
.ws5_c00336{word-spacing:-13.379200pt;}
.ws1_c00336{word-spacing:-10.319360pt;}
.ws2_c00336{word-spacing:-8.896000pt;}
.ws6_c00336{word-spacing:0.000000pt;}
._6_c00336{margin-left:-0.905600pt;}
._0_c00336{width:0.960000pt;}
._8_c00336{width:1.865600pt;}
._7_c00336{width:2.871040pt;}
._5_c00336{width:3.840000pt;}
._9_c00336{width:6.087680pt;}
._4_c00336{width:7.488000pt;}
._3_c00336{width:8.512000pt;}
._1_c00336{width:9.856000pt;}
._2_c00336{width:15.424000pt;}
.fs3_c00336{font-size:32.000000pt;}
.fs2_c00336{font-size:37.120000pt;}
.fs6_c00336{font-size:47.360000pt;}
.fs7_c00336{font-size:48.817571pt;}
.fs1_c00336{font-size:49.920000pt;}
.fs4_c00336{font-size:52.480000pt;}
.fs8_c00336{font-size:53.333333pt;}
.fs5_c00336{font-size:54.095146pt;}
.fs0_c00336{font-size:64.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y1a_c00336{bottom:2.773333pt;}
.y18_c00336{bottom:30.720000pt;}
.y19_c00336{bottom:30.884071pt;}
.y1_c00336{bottom:48.000000pt;}
.y16_c00336{bottom:49.316480pt;}
.y15_c00336{bottom:64.680000pt;}
.y14_c00336{bottom:64.681600pt;}
.y12_c00336{bottom:80.356480pt;}
.y13_c00336{bottom:80.360000pt;}
.y11_c00336{bottom:101.160000pt;}
.y10_c00336{bottom:124.840000pt;}
.y17_c00336{bottom:283.880000pt;}
.yf_c00336{bottom:649.640000pt;}
.ye_c00336{bottom:681.640000pt;}
.yd_c00336{bottom:713.640000pt;}
.yc_c00336{bottom:732.520000pt;}
.yb_c00336{bottom:767.080000pt;}
.ya_c00336{bottom:801.640000pt;}
.y9_c00336{bottom:836.520000pt;}
.y8_c00336{bottom:855.080000pt;}
.y7_c00336{bottom:873.640000pt;}
.y6_c00336{bottom:892.520000pt;}
.y5_c00336{bottom:911.080000pt;}
.y4_c00336{bottom:945.640000pt;}
.y3_c00336{bottom:964.520000pt;}
.y2_c00336{bottom:1011.880000pt;}
.hb_c00336{height:17.116093pt;}
.h5_c00336{height:28.992000pt;}
.ha_c00336{height:37.687165pt;}
.h7_c00336{height:41.761453pt;}
.h8_c00336{height:41.920000pt;}
.h9_c00336{height:42.908160pt;}
.h6_c00336{height:47.546880pt;}
.hc_c00336{height:50.346667pt;}
.h3_c00336{height:57.984000pt;}
.h4_c00336{height:60.510720pt;}
.h2_c00336{height:1067.880000pt;}
.h0_c00336{height:1122.520000pt;}
.h1_c00336{height:1122.666667pt;}
.w4_c00336{width:7.413333pt;}
.w3_c00336{width:572.160000pt;}
.w2_c00336{width:767.960000pt;}
.w0_c00336{width:793.720000pt;}
.w1_c00336{width:794.000000pt;}
.x0_c00336{left:0.000000pt;}
.x1_c00336{left:12.880000pt;}
.x2_c00336{left:100.480133pt;}
.x9_c00336{left:116.240000pt;}
.xa_c00336{left:173.904667pt;}
.x5_c00336{left:241.170267pt;}
.x6_c00336{left:253.903333pt;}
.x7_c00336{left:258.343067pt;}
.x8_c00336{left:317.767867pt;}
.xb_c00336{left:359.325200pt;}
.xc_c00336{left:390.656667pt;}
.x3_c00336{left:592.405333pt;}
.x4_c00336{left:607.951867pt;}
.xd_c00336{left:690.306315pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c8b4534189c177d188dc041.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.134000;font-style:normal;font-weight:normal;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_7b9379d0d205204973fa0743.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;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:ff3_c00337;src:url('chunks/assets/font_dd43e2b9391eb531a4ad92ca.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00337{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00337{vertical-align:-24.480000px;}
.v0_c00337{vertical-align:0.000000px;}
.v1_c00337{vertical-align:30.240000px;}
.lsd_c00337{letter-spacing:0.000000px;}
.ls7_c00337{letter-spacing:0.111840px;}
.ls12_c00337{letter-spacing:0.265680px;}
.ls9_c00337{letter-spacing:0.324720px;}
.lsc_c00337{letter-spacing:0.327292px;}
.lsa_c00337{letter-spacing:0.327911px;}
.ls3_c00337{letter-spacing:0.488640px;}
.lsb_c00337{letter-spacing:0.494773px;}
.ls8_c00337{letter-spacing:0.531360px;}
.ls5_c00337{letter-spacing:0.631440px;}
.ls11_c00337{letter-spacing:5.290272px;}
.lsf_c00337{letter-spacing:5.335200px;}
.ls10_c00337{letter-spacing:5.430672px;}
.lse_c00337{letter-spacing:5.597809px;}
.ls6_c00337{letter-spacing:5.958000px;}
.ls2_c00337{letter-spacing:5.971200px;}
.ls1_c00337{letter-spacing:5.975400px;}
.ls4_c00337{letter-spacing:5.976000px;}
.ls0_c00337{letter-spacing:6.159920px;}
.sc__c00337{text-shadow:none;}
.sc1_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00337{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc1_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00337{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00337{word-spacing:-25.992000px;}
.ws0_c00337{word-spacing:-21.690785px;}
.ws6_c00337{word-spacing:-21.043152px;}
.ws1_c00337{word-spacing:-20.947680px;}
.ws3_c00337{word-spacing:-20.902752px;}
.ws5_c00337{word-spacing:-20.016000px;}
.ws8_c00337{word-spacing:-16.944480px;}
.ws4_c00337{word-spacing:-11.609280px;}
.ws7_c00337{word-spacing:-10.008000px;}
.ws9_c00337{word-spacing:0.000000px;}
._0_c00337{margin-left:-1.160640px;}
._6_c00337{width:1.800000px;}
._b_c00337{width:3.240000px;}
._e_c00337{width:4.392000px;}
._7_c00337{width:5.616000px;}
._a_c00337{width:6.768000px;}
._d_c00337{width:7.939800px;}
._f_c00337{width:9.142800px;}
._1_c00337{width:11.160000px;}
._9_c00337{width:12.168000px;}
._5_c00337{width:17.424000px;}
._2_c00337{width:18.864000px;}
._3_c00337{width:34.920000px;}
._4_c00337{width:35.994712px;}
._c_c00337{width:43.776000px;}
._8_c00337{width:45.360000px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs5_c00337{font-size:36.000000px;}
.fs4_c00337{font-size:41.760000px;}
.fs8_c00337{font-size:48.982495px;}
.fs3_c00337{font-size:56.160000px;}
.fs2_c00337{font-size:57.888403px;}
.fs6_c00337{font-size:59.040000px;}
.fs9_c00337{font-size:60.000000px;}
.fs7_c00337{font-size:60.857039px;}
.fs0_c00337{font-size:72.000000px;}
.fs1_c00337{font-size:74.215901px;}
.y0_c00337{bottom:0.000000px;}
.y2e_c00337{bottom:3.120000px;}
.y2d_c00337{bottom:34.744580px;}
.y1_c00337{bottom:54.000000px;}
.y2c_c00337{bottom:55.485000px;}
.y2b_c00337{bottom:61.605000px;}
.y2a_c00337{bottom:72.765000px;}
.y29_c00337{bottom:78.885000px;}
.y28_c00337{bottom:90.405000px;}
.y27_c00337{bottom:96.525000px;}
.y26_c00337{bottom:113.805000px;}
.y25_c00337{bottom:131.445000px;}
.y24_c00337{bottom:158.085000px;}
.y23_c00337{bottom:213.165000px;}
.y22_c00337{bottom:249.165000px;}
.y21_c00337{bottom:270.405000px;}
.y20_c00337{bottom:291.285000px;}
.y1f_c00337{bottom:327.285000px;}
.y1e_c00337{bottom:348.165000px;}
.y1d_c00337{bottom:369.405000px;}
.y1c_c00337{bottom:405.405000px;}
.y1b_c00337{bottom:441.405000px;}
.y1a_c00337{bottom:477.405000px;}
.y19_c00337{bottom:513.405000px;}
.y18_c00337{bottom:534.285000px;}
.y17_c00337{bottom:555.525000px;}
.y16_c00337{bottom:576.405000px;}
.y15_c00337{bottom:612.405000px;}
.y14_c00337{bottom:633.285000px;}
.y13_c00337{bottom:654.525000px;}
.y12_c00337{bottom:690.525000px;}
.y11_c00337{bottom:728.685000px;}
.y10_c00337{bottom:766.845000px;}
.yf_c00337{bottom:802.845000px;}
.ye_c00337{bottom:824.085000px;}
.yd_c00337{bottom:844.965000px;}
.yc_c00337{bottom:865.845000px;}
.yb_c00337{bottom:887.085000px;}
.ya_c00337{bottom:907.965000px;}
.y9_c00337{bottom:943.965000px;}
.y8_c00337{bottom:964.845000px;}
.y7_c00337{bottom:986.085000px;}
.y6_c00337{bottom:1006.965000px;}
.y5_c00337{bottom:1027.845000px;}
.y4_c00337{bottom:1049.085000px;}
.y3_c00337{bottom:1085.085000px;}
.y2_c00337{bottom:1138.365000px;}
.ha_c00337{height:19.255605px;}
.h7_c00337{height:32.616000px;}
.h5_c00337{height:44.689847px;}
.h8_c00337{height:46.981634px;}
.h9_c00337{height:53.490240px;}
.hb_c00337{height:56.640000px;}
.h4_c00337{height:57.294676px;}
.h3_c00337{height:65.232000px;}
.h6_c00337{height:68.074560px;}
.h2_c00337{height:1201.365000px;}
.h0_c00337{height:1262.835000px;}
.h1_c00337{height:1263.000000px;}
.w3_c00337{width:8.340000px;}
.w2_c00337{width:863.955000px;}
.w0_c00337{width:892.935000px;}
.w1_c00337{width:893.250000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:14.490000px;}
.x2_c00337{left:113.040150px;}
.x19_c00337{left:122.213700px;}
.xf_c00337{left:137.015550px;}
.x1a_c00337{left:152.165100px;}
.x3_c00337{left:154.025400px;}
.x8_c00337{left:184.012950px;}
.x12_c00337{left:199.006350px;}
.x11_c00337{left:203.056350px;}
.x5_c00337{left:209.115300px;}
.x6_c00337{left:215.612850px;}
.x7_c00337{left:220.757100px;}
.x4_c00337{left:238.444350px;}
.x1b_c00337{left:249.784050px;}
.x10_c00337{left:268.276200px;}
.x1c_c00337{left:279.735300px;}
.xb_c00337{left:301.972350px;}
.x16_c00337{left:327.055950px;}
.x13_c00337{left:373.008150px;}
.x14_c00337{left:383.016000px;}
.xc_c00337{left:414.733500px;}
.x15_c00337{left:417.989100px;}
.xd_c00337{left:534.949200px;}
.x9_c00337{left:548.617650px;}
.xe_c00337{left:605.922000px;}
.xa_c00337{left:627.618150px;}
.x17_c00337{left:650.734800px;}
.x18_c00337{left:726.572100px;}
.x1d_c00337{left:776.594604px;}
@media print{
.v2_c00337{vertical-align:-21.760000pt;}
.v0_c00337{vertical-align:0.000000pt;}
.v1_c00337{vertical-align:26.880000pt;}
.lsd_c00337{letter-spacing:0.000000pt;}
.ls7_c00337{letter-spacing:0.099413pt;}
.ls12_c00337{letter-spacing:0.236160pt;}
.ls9_c00337{letter-spacing:0.288640pt;}
.lsc_c00337{letter-spacing:0.290926pt;}
.lsa_c00337{letter-spacing:0.291476pt;}
.ls3_c00337{letter-spacing:0.434347pt;}
.lsb_c00337{letter-spacing:0.439798pt;}
.ls8_c00337{letter-spacing:0.472320pt;}
.ls5_c00337{letter-spacing:0.561280pt;}
.ls11_c00337{letter-spacing:4.702464pt;}
.lsf_c00337{letter-spacing:4.742400pt;}
.ls10_c00337{letter-spacing:4.827264pt;}
.lse_c00337{letter-spacing:4.975830pt;}
.ls6_c00337{letter-spacing:5.296000pt;}
.ls2_c00337{letter-spacing:5.307733pt;}
.ls1_c00337{letter-spacing:5.311467pt;}
.ls4_c00337{letter-spacing:5.312000pt;}
.ls0_c00337{letter-spacing:5.475484pt;}
.ws2_c00337{word-spacing:-23.104000pt;}
.ws0_c00337{word-spacing:-19.280697pt;}
.ws6_c00337{word-spacing:-18.705024pt;}
.ws1_c00337{word-spacing:-18.620160pt;}
.ws3_c00337{word-spacing:-18.580224pt;}
.ws5_c00337{word-spacing:-17.792000pt;}
.ws8_c00337{word-spacing:-15.061760pt;}
.ws4_c00337{word-spacing:-10.319360pt;}
.ws7_c00337{word-spacing:-8.896000pt;}
.ws9_c00337{word-spacing:0.000000pt;}
._0_c00337{margin-left:-1.031680pt;}
._6_c00337{width:1.600000pt;}
._b_c00337{width:2.880000pt;}
._e_c00337{width:3.904000pt;}
._7_c00337{width:4.992000pt;}
._a_c00337{width:6.016000pt;}
._d_c00337{width:7.057600pt;}
._f_c00337{width:8.126933pt;}
._1_c00337{width:9.920000pt;}
._9_c00337{width:10.816000pt;}
._5_c00337{width:15.488000pt;}
._2_c00337{width:16.768000pt;}
._3_c00337{width:31.040000pt;}
._4_c00337{width:31.995300pt;}
._c_c00337{width:38.912000pt;}
._8_c00337{width:40.320000pt;}
.fs5_c00337{font-size:32.000000pt;}
.fs4_c00337{font-size:37.120000pt;}
.fs8_c00337{font-size:43.539995pt;}
.fs3_c00337{font-size:49.920000pt;}
.fs2_c00337{font-size:51.456358pt;}
.fs6_c00337{font-size:52.480000pt;}
.fs9_c00337{font-size:53.333333pt;}
.fs7_c00337{font-size:54.095146pt;}
.fs0_c00337{font-size:64.000000pt;}
.fs1_c00337{font-size:65.969690pt;}
.y0_c00337{bottom:0.000000pt;}
.y2e_c00337{bottom:2.773333pt;}
.y2d_c00337{bottom:30.884071pt;}
.y1_c00337{bottom:48.000000pt;}
.y2c_c00337{bottom:49.320000pt;}
.y2b_c00337{bottom:54.760000pt;}
.y2a_c00337{bottom:64.680000pt;}
.y29_c00337{bottom:70.120000pt;}
.y28_c00337{bottom:80.360000pt;}
.y27_c00337{bottom:85.800000pt;}
.y26_c00337{bottom:101.160000pt;}
.y25_c00337{bottom:116.840000pt;}
.y24_c00337{bottom:140.520000pt;}
.y23_c00337{bottom:189.480000pt;}
.y22_c00337{bottom:221.480000pt;}
.y21_c00337{bottom:240.360000pt;}
.y20_c00337{bottom:258.920000pt;}
.y1f_c00337{bottom:290.920000pt;}
.y1e_c00337{bottom:309.480000pt;}
.y1d_c00337{bottom:328.360000pt;}
.y1c_c00337{bottom:360.360000pt;}
.y1b_c00337{bottom:392.360000pt;}
.y1a_c00337{bottom:424.360000pt;}
.y19_c00337{bottom:456.360000pt;}
.y18_c00337{bottom:474.920000pt;}
.y17_c00337{bottom:493.800000pt;}
.y16_c00337{bottom:512.360000pt;}
.y15_c00337{bottom:544.360000pt;}
.y14_c00337{bottom:562.920000pt;}
.y13_c00337{bottom:581.800000pt;}
.y12_c00337{bottom:613.800000pt;}
.y11_c00337{bottom:647.720000pt;}
.y10_c00337{bottom:681.640000pt;}
.yf_c00337{bottom:713.640000pt;}
.ye_c00337{bottom:732.520000pt;}
.yd_c00337{bottom:751.080000pt;}
.yc_c00337{bottom:769.640000pt;}
.yb_c00337{bottom:788.520000pt;}
.ya_c00337{bottom:807.080000pt;}
.y9_c00337{bottom:839.080000pt;}
.y8_c00337{bottom:857.640000pt;}
.y7_c00337{bottom:876.520000pt;}
.y6_c00337{bottom:895.080000pt;}
.y5_c00337{bottom:913.640000pt;}
.y4_c00337{bottom:932.520000pt;}
.y3_c00337{bottom:964.520000pt;}
.y2_c00337{bottom:1011.880000pt;}
.ha_c00337{height:17.116093pt;}
.h7_c00337{height:28.992000pt;}
.h5_c00337{height:39.724309pt;}
.h8_c00337{height:41.761453pt;}
.h9_c00337{height:47.546880pt;}
.hb_c00337{height:50.346667pt;}
.h4_c00337{height:50.928601pt;}
.h3_c00337{height:57.984000pt;}
.h6_c00337{height:60.510720pt;}
.h2_c00337{height:1067.880000pt;}
.h0_c00337{height:1122.520000pt;}
.h1_c00337{height:1122.666667pt;}
.w3_c00337{width:7.413333pt;}
.w2_c00337{width:767.960000pt;}
.w0_c00337{width:793.720000pt;}
.w1_c00337{width:794.000000pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:12.880000pt;}
.x2_c00337{left:100.480133pt;}
.x19_c00337{left:108.634400pt;}
.xf_c00337{left:121.791600pt;}
.x1a_c00337{left:135.257867pt;}
.x3_c00337{left:136.911467pt;}
.x8_c00337{left:163.567067pt;}
.x12_c00337{left:176.894533pt;}
.x11_c00337{left:180.494533pt;}
.x5_c00337{left:185.880267pt;}
.x6_c00337{left:191.655867pt;}
.x7_c00337{left:196.228533pt;}
.x4_c00337{left:211.950533pt;}
.x1b_c00337{left:222.030267pt;}
.x10_c00337{left:238.467733pt;}
.x1c_c00337{left:248.653600pt;}
.xb_c00337{left:268.419867pt;}
.x16_c00337{left:290.716400pt;}
.x13_c00337{left:331.562800pt;}
.x14_c00337{left:340.458667pt;}
.xc_c00337{left:368.652000pt;}
.x15_c00337{left:371.545867pt;}
.xd_c00337{left:475.510400pt;}
.x9_c00337{left:487.660133pt;}
.xe_c00337{left:538.597333pt;}
.xa_c00337{left:557.882800pt;}
.x17_c00337{left:578.430933pt;}
.x18_c00337{left:645.841867pt;}
.x1d_c00337{left:690.306315pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_733079883062fbd7301ebe1f.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.134000;font-style:normal;font-weight:normal;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_330602e1bf5a298a4cc6873c.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;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:ff3_c00338;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00338{font-family:ff5_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:ff6_c00338;src:url('chunks/assets/font_f84dc41de03024d8ef10c725.woff2')format("woff");}.ff6_c00338{font-family:ff6_c00338;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00338;src:url('chunks/assets/font_ac7c4a37c1b25053c12d880b.woff2')format("woff");}.ff7_c00338{font-family:ff7_c00338;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00338{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00338{vertical-align:-24.480000px;}
.v0_c00338{vertical-align:0.000000px;}
.v2_c00338{vertical-align:24.495840px;}
.v1_c00338{vertical-align:30.240000px;}
.ls11_c00338{letter-spacing:0.000000px;}
.lsc_c00338{letter-spacing:0.236160px;}
.ls17_c00338{letter-spacing:0.242064px;}
.ls16_c00338{letter-spacing:0.265680px;}
.ls15_c00338{letter-spacing:0.273857px;}
.ls4_c00338{letter-spacing:0.295200px;}
.ls1a_c00338{letter-spacing:0.318816px;}
.ls6_c00338{letter-spacing:0.324360px;}
.lsa_c00338{letter-spacing:0.327292px;}
.lse_c00338{letter-spacing:0.327911px;}
.ls8_c00338{letter-spacing:0.328628px;}
.ls20_c00338{letter-spacing:0.478224px;}
.ls9_c00338{letter-spacing:0.492942px;}
.lsb_c00338{letter-spacing:0.494773px;}
.ls3_c00338{letter-spacing:0.507744px;}
.ls7_c00338{letter-spacing:0.531360px;}
.ls13_c00338{letter-spacing:0.584496px;}
.ls1f_c00338{letter-spacing:0.602485px;}
.ls14_c00338{letter-spacing:0.657256px;}
.ls22_c00338{letter-spacing:0.690768px;}
.ls1c_c00338{letter-spacing:0.696672px;}
.ls5_c00338{letter-spacing:0.712027px;}
.ls18_c00338{letter-spacing:0.718113px;}
.ls19_c00338{letter-spacing:0.743904px;}
.ls1d_c00338{letter-spacing:0.962352px;}
.ls1b_c00338{letter-spacing:2.367504px;}
.lsd_c00338{letter-spacing:3.483360px;}
.ls21_c00338{letter-spacing:3.501072px;}
.ls12_c00338{letter-spacing:5.430672px;}
.lsf_c00338{letter-spacing:5.976000px;}
.ls0_c00338{letter-spacing:5.983200px;}
.ls10_c00338{letter-spacing:6.159920px;}
.ls1e_c00338{letter-spacing:8.979984px;}
.ls1_c00338{letter-spacing:54.864000px;}
.ls2_c00338{letter-spacing:153.775347px;}
.sc__c00338{text-shadow:none;}
.sc1_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00338{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc1_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00338{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00338{word-spacing:-21.043152px;}
.ws2_c00338{word-spacing:-17.636370px;}
.ws4_c00338{word-spacing:-17.630284px;}
.ws8_c00338{word-spacing:-17.520742px;}
.ws9_c00338{word-spacing:-17.375472px;}
.ws6_c00338{word-spacing:-17.246885px;}
.ws3_c00338{word-spacing:-17.157024px;}
.ws7_c00338{word-spacing:-16.944480px;}
.wsa_c00338{word-spacing:-16.413120px;}
.ws1_c00338{word-spacing:-11.609280px;}
.ws5_c00338{word-spacing:-10.008000px;}
.wsb_c00338{word-spacing:0.000000px;}
._c_c00338{margin-left:-8.678880px;}
._d_c00338{margin-left:-7.675200px;}
._e_c00338{margin-left:-3.867840px;}
._b_c00338{margin-left:-2.481120px;}
._0_c00338{margin-left:-1.179360px;}
._5_c00338{width:1.944000px;}
._a_c00338{width:3.374208px;}
._2_c00338{width:4.392000px;}
._6_c00338{width:5.760000px;}
._8_c00338{width:7.056000px;}
._7_c00338{width:8.064000px;}
._4_c00338{width:9.072000px;}
._3_c00338{width:10.080000px;}
._1_c00338{width:13.032000px;}
._9_c00338{width:153.775347px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs6_c00338{font-size:36.000000px;}
.fs3_c00338{font-size:41.760000px;}
.fs7_c00338{font-size:48.982495px;}
.fs2_c00338{font-size:56.160000px;}
.fs4_c00338{font-size:59.040000px;}
.fs8_c00338{font-size:60.000000px;}
.fs5_c00338{font-size:60.857039px;}
.fs0_c00338{font-size:72.000000px;}
.fs1_c00338{font-size:74.215901px;}
.y0_c00338{bottom:0.000000px;}
.y30_c00338{bottom:3.120000px;}
.y2f_c00338{bottom:34.744580px;}
.y1_c00338{bottom:54.000000px;}
.y2e_c00338{bottom:55.485000px;}
.y2d_c00338{bottom:61.605000px;}
.y2c_c00338{bottom:88.245000px;}
.y2b_c00338{bottom:118.487520px;}
.y2a_c00338{bottom:143.682840px;}
.y29_c00338{bottom:160.966800px;}
.y28_c00338{bottom:178.605000px;}
.y27_c00338{bottom:203.445000px;}
.y26_c00338{bottom:221.085000px;}
.y25_c00338{bottom:221.086800px;}
.y23_c00338{bottom:238.721040px;}
.y24_c00338{bottom:238.725000px;}
.y22_c00338{bottom:256.005000px;}
.y21_c00338{bottom:256.014360px;}
.y20_c00338{bottom:281.209680px;}
.y1f_c00338{bottom:306.405000px;}
.y1e_c00338{bottom:331.605000px;}
.y1d_c00338{bottom:360.045000px;}
.y1c_c00338{bottom:389.205000px;}
.y1b_c00338{bottom:417.285000px;}
.y1a_c00338{bottom:448.965000px;}
.y19_c00338{bottom:480.645000px;}
.y18_c00338{bottom:508.725000px;}
.y17_c00338{bottom:537.885000px;}
.y16_c00338{bottom:565.965000px;}
.y15_c00338{bottom:601.965000px;}
.y14_c00338{bottom:622.845000px;}
.y13_c00338{bottom:644.085000px;}
.y12_c00338{bottom:664.965000px;}
.y11_c00338{bottom:685.845000px;}
.y10_c00338{bottom:721.845000px;}
.yf_c00338{bottom:743.085000px;}
.ye_c00338{bottom:779.085000px;}
.yd_c00338{bottom:815.085000px;}
.yc_c00338{bottom:835.965000px;}
.yb_c00338{bottom:856.845000px;}
.ya_c00338{bottom:892.845000px;}
.y9_c00338{bottom:928.845000px;}
.y8_c00338{bottom:950.085000px;}
.y7_c00338{bottom:970.965000px;}
.y6_c00338{bottom:991.845000px;}
.y5_c00338{bottom:1013.085000px;}
.y4_c00338{bottom:1049.085000px;}
.y3_c00338{bottom:1085.085000px;}
.y2_c00338{bottom:1138.365000px;}
.hc_c00338{height:19.255605px;}
.hb_c00338{height:32.616000px;}
.h9_c00338{height:39.350391px;}
.h8_c00338{height:46.981634px;}
.h6_c00338{height:47.988281px;}
.h7_c00338{height:53.490240px;}
.hd_c00338{height:56.640000px;}
.ha_c00338{height:57.111840px;}
.h4_c00338{height:57.294676px;}
.h3_c00338{height:65.232000px;}
.h5_c00338{height:68.074560px;}
.h2_c00338{height:1201.365000px;}
.h0_c00338{height:1262.835000px;}
.h1_c00338{height:1263.000000px;}
.w3_c00338{width:8.340000px;}
.w2_c00338{width:863.955000px;}
.w0_c00338{width:892.935000px;}
.w1_c00338{width:893.250000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:14.490000px;}
.x2_c00338{left:113.040150px;}
.x2e_c00338{left:122.213700px;}
.x2c_c00338{left:128.864850px;}
.x2d_c00338{left:138.012750px;}
.x5_c00338{left:140.037600px;}
.x1a_c00338{left:147.223350px;}
.x2b_c00338{left:152.204550px;}
.x3_c00338{left:154.025400px;}
.x1b_c00338{left:161.382900px;}
.x1c_c00338{left:165.132900px;}
.xb_c00338{left:192.318300px;}
.x1d_c00338{left:195.972000px;}
.xc_c00338{left:203.315850px;}
.x4_c00338{left:238.444350px;}
.x14_c00338{left:283.140000px;}
.x11_c00338{left:286.381650px;}
.x12_c00338{left:311.828550px;}
.x17_c00338{left:325.439550px;}
.x1e_c00338{left:331.836150px;}
.x6_c00338{left:338.109300px;}
.x1f_c00338{left:339.336150px;}
.x15_c00338{left:382.426350px;}
.x16_c00338{left:386.926350px;}
.x20_c00338{left:388.489800px;}
.x18_c00338{left:394.432200px;}
.x27_c00338{left:397.079550px;}
.x19_c00338{left:398.932200px;}
.x24_c00338{left:418.288650px;}
.x28_c00338{left:420.918150px;}
.x13_c00338{left:431.708550px;}
.x7_c00338{left:436.278750px;}
.x8_c00338{left:455.718450px;}
.x25_c00338{left:465.462150px;}
.xf_c00338{left:487.349850px;}
.x10_c00338{left:498.347550px;}
.x26_c00338{left:520.990050px;}
.xd_c00338{left:569.358000px;}
.xe_c00338{left:591.594300px;}
.x21_c00338{left:631.049250px;}
.x29_c00338{left:636.089400px;}
.x22_c00338{left:661.095000px;}
.x2a_c00338{left:666.040650px;}
.x23_c00338{left:725.415450px;}
.x9_c00338{left:737.412150px;}
.xa_c00338{left:750.390000px;}
.x2f_c00338{left:776.594604px;}
@media print{
.v3_c00338{vertical-align:-21.760000pt;}
.v0_c00338{vertical-align:0.000000pt;}
.v2_c00338{vertical-align:21.774080pt;}
.v1_c00338{vertical-align:26.880000pt;}
.ls11_c00338{letter-spacing:0.000000pt;}
.lsc_c00338{letter-spacing:0.209920pt;}
.ls17_c00338{letter-spacing:0.215168pt;}
.ls16_c00338{letter-spacing:0.236160pt;}
.ls15_c00338{letter-spacing:0.243428pt;}
.ls4_c00338{letter-spacing:0.262400pt;}
.ls1a_c00338{letter-spacing:0.283392pt;}
.ls6_c00338{letter-spacing:0.288320pt;}
.lsa_c00338{letter-spacing:0.290926pt;}
.lse_c00338{letter-spacing:0.291476pt;}
.ls8_c00338{letter-spacing:0.292114pt;}
.ls20_c00338{letter-spacing:0.425088pt;}
.ls9_c00338{letter-spacing:0.438171pt;}
.lsb_c00338{letter-spacing:0.439798pt;}
.ls3_c00338{letter-spacing:0.451328pt;}
.ls7_c00338{letter-spacing:0.472320pt;}
.ls13_c00338{letter-spacing:0.519552pt;}
.ls1f_c00338{letter-spacing:0.535542pt;}
.ls14_c00338{letter-spacing:0.584228pt;}
.ls22_c00338{letter-spacing:0.614016pt;}
.ls1c_c00338{letter-spacing:0.619264pt;}
.ls5_c00338{letter-spacing:0.632913pt;}
.ls18_c00338{letter-spacing:0.638323pt;}
.ls19_c00338{letter-spacing:0.661248pt;}
.ls1d_c00338{letter-spacing:0.855424pt;}
.ls1b_c00338{letter-spacing:2.104448pt;}
.lsd_c00338{letter-spacing:3.096320pt;}
.ls21_c00338{letter-spacing:3.112064pt;}
.ls12_c00338{letter-spacing:4.827264pt;}
.lsf_c00338{letter-spacing:5.312000pt;}
.ls0_c00338{letter-spacing:5.318400pt;}
.ls10_c00338{letter-spacing:5.475484pt;}
.ls1e_c00338{letter-spacing:7.982208pt;}
.ls1_c00338{letter-spacing:48.768000pt;}
.ls2_c00338{letter-spacing:136.689198pt;}
.ws0_c00338{word-spacing:-18.705024pt;}
.ws2_c00338{word-spacing:-15.676773pt;}
.ws4_c00338{word-spacing:-15.671364pt;}
.ws8_c00338{word-spacing:-15.573992pt;}
.ws9_c00338{word-spacing:-15.444864pt;}
.ws6_c00338{word-spacing:-15.330564pt;}
.ws3_c00338{word-spacing:-15.250688pt;}
.ws7_c00338{word-spacing:-15.061760pt;}
.wsa_c00338{word-spacing:-14.589440pt;}
.ws1_c00338{word-spacing:-10.319360pt;}
.ws5_c00338{word-spacing:-8.896000pt;}
.wsb_c00338{word-spacing:0.000000pt;}
._c_c00338{margin-left:-7.714560pt;}
._d_c00338{margin-left:-6.822400pt;}
._e_c00338{margin-left:-3.438080pt;}
._b_c00338{margin-left:-2.205440pt;}
._0_c00338{margin-left:-1.048320pt;}
._5_c00338{width:1.728000pt;}
._a_c00338{width:2.999296pt;}
._2_c00338{width:3.904000pt;}
._6_c00338{width:5.120000pt;}
._8_c00338{width:6.272000pt;}
._7_c00338{width:7.168000pt;}
._4_c00338{width:8.064000pt;}
._3_c00338{width:8.960000pt;}
._1_c00338{width:11.584000pt;}
._9_c00338{width:136.689198pt;}
.fs6_c00338{font-size:32.000000pt;}
.fs3_c00338{font-size:37.120000pt;}
.fs7_c00338{font-size:43.539995pt;}
.fs2_c00338{font-size:49.920000pt;}
.fs4_c00338{font-size:52.480000pt;}
.fs8_c00338{font-size:53.333333pt;}
.fs5_c00338{font-size:54.095146pt;}
.fs0_c00338{font-size:64.000000pt;}
.fs1_c00338{font-size:65.969690pt;}
.y0_c00338{bottom:0.000000pt;}
.y30_c00338{bottom:2.773333pt;}
.y2f_c00338{bottom:30.884071pt;}
.y1_c00338{bottom:48.000000pt;}
.y2e_c00338{bottom:49.320000pt;}
.y2d_c00338{bottom:54.760000pt;}
.y2c_c00338{bottom:78.440000pt;}
.y2b_c00338{bottom:105.322240pt;}
.y2a_c00338{bottom:127.718080pt;}
.y29_c00338{bottom:143.081600pt;}
.y28_c00338{bottom:158.760000pt;}
.y27_c00338{bottom:180.840000pt;}
.y26_c00338{bottom:196.520000pt;}
.y25_c00338{bottom:196.521600pt;}
.y23_c00338{bottom:212.196480pt;}
.y24_c00338{bottom:212.200000pt;}
.y22_c00338{bottom:227.560000pt;}
.y21_c00338{bottom:227.568320pt;}
.y20_c00338{bottom:249.964160pt;}
.y1f_c00338{bottom:272.360000pt;}
.y1e_c00338{bottom:294.760000pt;}
.y1d_c00338{bottom:320.040000pt;}
.y1c_c00338{bottom:345.960000pt;}
.y1b_c00338{bottom:370.920000pt;}
.y1a_c00338{bottom:399.080000pt;}
.y19_c00338{bottom:427.240000pt;}
.y18_c00338{bottom:452.200000pt;}
.y17_c00338{bottom:478.120000pt;}
.y16_c00338{bottom:503.080000pt;}
.y15_c00338{bottom:535.080000pt;}
.y14_c00338{bottom:553.640000pt;}
.y13_c00338{bottom:572.520000pt;}
.y12_c00338{bottom:591.080000pt;}
.y11_c00338{bottom:609.640000pt;}
.y10_c00338{bottom:641.640000pt;}
.yf_c00338{bottom:660.520000pt;}
.ye_c00338{bottom:692.520000pt;}
.yd_c00338{bottom:724.520000pt;}
.yc_c00338{bottom:743.080000pt;}
.yb_c00338{bottom:761.640000pt;}
.ya_c00338{bottom:793.640000pt;}
.y9_c00338{bottom:825.640000pt;}
.y8_c00338{bottom:844.520000pt;}
.y7_c00338{bottom:863.080000pt;}
.y6_c00338{bottom:881.640000pt;}
.y5_c00338{bottom:900.520000pt;}
.y4_c00338{bottom:932.520000pt;}
.y3_c00338{bottom:964.520000pt;}
.y2_c00338{bottom:1011.880000pt;}
.hc_c00338{height:17.116093pt;}
.hb_c00338{height:28.992000pt;}
.h9_c00338{height:34.978125pt;}
.h8_c00338{height:41.761453pt;}
.h6_c00338{height:42.656250pt;}
.h7_c00338{height:47.546880pt;}
.hd_c00338{height:50.346667pt;}
.ha_c00338{height:50.766080pt;}
.h4_c00338{height:50.928601pt;}
.h3_c00338{height:57.984000pt;}
.h5_c00338{height:60.510720pt;}
.h2_c00338{height:1067.880000pt;}
.h0_c00338{height:1122.520000pt;}
.h1_c00338{height:1122.666667pt;}
.w3_c00338{width:7.413333pt;}
.w2_c00338{width:767.960000pt;}
.w0_c00338{width:793.720000pt;}
.w1_c00338{width:794.000000pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:12.880000pt;}
.x2_c00338{left:100.480133pt;}
.x2e_c00338{left:108.634400pt;}
.x2c_c00338{left:114.546533pt;}
.x2d_c00338{left:122.678000pt;}
.x5_c00338{left:124.477867pt;}
.x1a_c00338{left:130.865200pt;}
.x2b_c00338{left:135.292933pt;}
.x3_c00338{left:136.911467pt;}
.x1b_c00338{left:143.451467pt;}
.x1c_c00338{left:146.784800pt;}
.xb_c00338{left:170.949600pt;}
.x1d_c00338{left:174.197333pt;}
.xc_c00338{left:180.725200pt;}
.x4_c00338{left:211.950533pt;}
.x14_c00338{left:251.680000pt;}
.x11_c00338{left:254.561467pt;}
.x12_c00338{left:277.180933pt;}
.x17_c00338{left:289.279600pt;}
.x1e_c00338{left:294.965467pt;}
.x6_c00338{left:300.541600pt;}
.x1f_c00338{left:301.632133pt;}
.x15_c00338{left:339.934533pt;}
.x16_c00338{left:343.934533pt;}
.x20_c00338{left:345.324267pt;}
.x18_c00338{left:350.606400pt;}
.x27_c00338{left:352.959600pt;}
.x19_c00338{left:354.606400pt;}
.x24_c00338{left:371.812133pt;}
.x28_c00338{left:374.149467pt;}
.x13_c00338{left:383.740933pt;}
.x7_c00338{left:387.803333pt;}
.x8_c00338{left:405.083067pt;}
.x25_c00338{left:413.744133pt;}
.xf_c00338{left:433.199867pt;}
.x10_c00338{left:442.975600pt;}
.x26_c00338{left:463.102267pt;}
.xd_c00338{left:506.096000pt;}
.xe_c00338{left:525.861600pt;}
.x21_c00338{left:560.932667pt;}
.x29_c00338{left:565.412800pt;}
.x22_c00338{left:587.640000pt;}
.x2a_c00338{left:592.036133pt;}
.x23_c00338{left:644.813733pt;}
.x9_c00338{left:655.477467pt;}
.xa_c00338{left:667.013333pt;}
.x2f_c00338{left:690.306315pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05ba7cafec416d640edb6937.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.134000;font-style:normal;font-weight:normal;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_6bd7f1a9f7387f7b0eb0fac8.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;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:ff3_c00339;src:url('chunks/assets/font_eaffb90e3b2c20ecf6f83604.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00339{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00339{vertical-align:-30.240000px;}
.v3_c00339{vertical-align:-24.480000px;}
.v0_c00339{vertical-align:0.000000px;}
.v1_c00339{vertical-align:30.240000px;}
.lsf_c00339{letter-spacing:-0.179568px;}
.lsd_c00339{letter-spacing:0.000000px;}
.ls1e_c00339{letter-spacing:0.144000px;}
.ls4_c00339{letter-spacing:0.236160px;}
.ls15_c00339{letter-spacing:0.265680px;}
.ls23_c00339{letter-spacing:0.273857px;}
.ls8_c00339{letter-spacing:0.295200px;}
.ls22_c00339{letter-spacing:0.318816px;}
.ls26_c00339{letter-spacing:0.328628px;}
.ls1_c00339{letter-spacing:0.348840px;}
.ls1f_c00339{letter-spacing:0.371952px;}
.ls28_c00339{letter-spacing:0.413280px;}
.ls6_c00339{letter-spacing:0.425088px;}
.ls1a_c00339{letter-spacing:0.438171px;}
.ls12_c00339{letter-spacing:0.478224px;}
.ls5_c00339{letter-spacing:0.507744px;}
.ls9_c00339{letter-spacing:0.531360px;}
.ls2_c00339{letter-spacing:0.537264px;}
.ls21_c00339{letter-spacing:0.547713px;}
.lsa_c00339{letter-spacing:0.549072px;}
.ls1c_c00339{letter-spacing:0.584496px;}
.ls1b_c00339{letter-spacing:0.690768px;}
.ls7_c00339{letter-spacing:0.712027px;}
.ls18_c00339{letter-spacing:0.718113px;}
.ls17_c00339{letter-spacing:0.743904px;}
.ls11_c00339{letter-spacing:0.797040px;}
.ls29_c00339{letter-spacing:0.821570px;}
.ls3_c00339{letter-spacing:0.826560px;}
.ls24_c00339{letter-spacing:0.879696px;}
.ls27_c00339{letter-spacing:1.723968px;}
.ls25_c00339{letter-spacing:1.729872px;}
.ls2e_c00339{letter-spacing:3.099600px;}
.ls2d_c00339{letter-spacing:3.105504px;}
.ls20_c00339{letter-spacing:4.770432px;}
.ls13_c00339{letter-spacing:4.923936px;}
.ls10_c00339{letter-spacing:4.929840px;}
.lse_c00339{letter-spacing:5.430672px;}
.ls1d_c00339{letter-spacing:5.780016px;}
.lsb_c00339{letter-spacing:5.976000px;}
.ls0_c00339{letter-spacing:5.982600px;}
.lsc_c00339{letter-spacing:6.159920px;}
.ls2c_c00339{letter-spacing:6.382224px;}
.ls16_c00339{letter-spacing:6.429456px;}
.ls2b_c00339{letter-spacing:7.114320px;}
.ls2a_c00339{letter-spacing:9.092160px;}
.ls14_c00339{letter-spacing:18.284688px;}
.ls19_c00339{letter-spacing:21.679488px;}
.sc__c00339{text-shadow:none;}
.sc1_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00339{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc1_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00339{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00339{word-spacing:-22.193136px;}
.ws0_c00339{word-spacing:-21.043152px;}
.ws3_c00339{word-spacing:-20.016000px;}
.ws5_c00339{word-spacing:-17.636370px;}
.wsb_c00339{word-spacing:-17.630284px;}
.wsc_c00339{word-spacing:-17.246885px;}
.ws6_c00339{word-spacing:-16.997616px;}
.wsd_c00339{word-spacing:-16.944480px;}
.wsa_c00339{word-spacing:-16.918257px;}
.ws9_c00339{word-spacing:-16.785072px;}
.ws1_c00339{word-spacing:-11.609280px;}
.ws2_c00339{word-spacing:-11.429712px;}
.ws8_c00339{word-spacing:-10.152000px;}
.ws4_c00339{word-spacing:-10.008000px;}
.wse_c00339{word-spacing:0.000000px;}
._16_c00339{margin-left:-22.080960px;}
._15_c00339{margin-left:-21.077280px;}
._13_c00339{margin-left:-18.833760px;}
._12_c00339{margin-left:-17.771040px;}
._1a_c00339{margin-left:-9.360864px;}
._19_c00339{margin-left:-7.878816px;}
._14_c00339{margin-left:-6.730560px;}
._f_c00339{margin-left:-5.372640px;}
._e_c00339{margin-left:-4.368960px;}
._10_c00339{margin-left:-3.279744px;}
._18_c00339{margin-left:-2.041920px;}
._8_c00339{margin-left:-1.008000px;}
._2_c00339{width:1.800000px;}
._3_c00339{width:3.240000px;}
._6_c00339{width:4.968000px;}
._17_c00339{width:6.049656px;}
._7_c00339{width:7.056000px;}
._0_c00339{width:8.424000px;}
._5_c00339{width:10.152000px;}
._d_c00339{width:11.355033px;}
._a_c00339{width:13.392000px;}
._b_c00339{width:15.048000px;}
._c_c00339{width:16.437370px;}
._11_c00339{width:18.125280px;}
._9_c00339{width:22.248000px;}
._4_c00339{width:26.496000px;}
._1_c00339{width:28.080000px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs4_c00339{font-size:36.000000px;}
.fs3_c00339{font-size:41.760000px;}
.fs2_c00339{font-size:56.160000px;}
.fs5_c00339{font-size:59.040000px;}
.fs7_c00339{font-size:60.000000px;}
.fs6_c00339{font-size:60.857039px;}
.fs0_c00339{font-size:72.000000px;}
.fs1_c00339{font-size:74.215901px;}
.y0_c00339{bottom:0.000000px;}
.y3d_c00339{bottom:3.120000px;}
.y3c_c00339{bottom:34.744580px;}
.y1_c00339{bottom:54.000000px;}
.y3b_c00339{bottom:72.766800px;}
.y3a_c00339{bottom:90.405000px;}
.y39_c00339{bottom:96.525000px;}
.y38_c00339{bottom:113.805000px;}
.y37_c00339{bottom:125.326800px;}
.y36_c00339{bottom:149.085000px;}
.y35_c00339{bottom:160.244640px;}
.y34_c00339{bottom:177.882840px;}
.y33_c00339{bottom:195.521040px;}
.y32_c00339{bottom:212.805000px;}
.y31_c00339{bottom:212.806800px;}
.y30_c00339{bottom:230.445000px;}
.y2f_c00339{bottom:236.565000px;}
.y2e_c00339{bottom:247.725000px;}
.y2d_c00339{bottom:265.365000px;}
.y2c_c00339{bottom:265.366800px;}
.y2a_c00339{bottom:283.001040px;}
.y2b_c00339{bottom:283.005000px;}
.y29_c00339{bottom:300.285000px;}
.y28_c00339{bottom:306.405000px;}
.y27_c00339{bottom:324.045000px;}
.y26_c00339{bottom:335.561040px;}
.y25_c00339{bottom:352.845000px;}
.y24_c00339{bottom:352.846800px;}
.y23_c00339{bottom:376.605000px;}
.y22_c00339{bottom:387.765000px;}
.y21_c00339{bottom:387.766800px;}
.y20_c00339{bottom:411.525000px;}
.y1f_c00339{bottom:423.045000px;}
.y1e_c00339{bottom:440.325000px;}
.y1d_c00339{bottom:440.328600px;}
.y1c_c00339{bottom:457.966800px;}
.y1b_c00339{bottom:481.725000px;}
.y1a_c00339{bottom:508.365000px;}
.y19_c00339{bottom:598.725000px;}
.y18_c00339{bottom:619.965000px;}
.y17_c00339{bottom:640.845000px;}
.y16_c00339{bottom:661.725000px;}
.y15_c00339{bottom:682.965000px;}
.y14_c00339{bottom:703.845000px;}
.y13_c00339{bottom:725.085000px;}
.y12_c00339{bottom:745.965000px;}
.y11_c00339{bottom:781.965000px;}
.y10_c00339{bottom:802.845000px;}
.yf_c00339{bottom:824.085000px;}
.ye_c00339{bottom:844.965000px;}
.yd_c00339{bottom:865.845000px;}
.yc_c00339{bottom:887.085000px;}
.ya_c00339{bottom:907.965000px;}
.yb_c00339{bottom:915.525000px;}
.y9_c00339{bottom:928.845000px;}
.y8_c00339{bottom:964.845000px;}
.y7_c00339{bottom:986.085000px;}
.y6_c00339{bottom:1006.965000px;}
.y5_c00339{bottom:1027.845000px;}
.y4_c00339{bottom:1049.085000px;}
.y3_c00339{bottom:1085.085000px;}
.y2_c00339{bottom:1138.365000px;}
.ha_c00339{height:19.255605px;}
.h7_c00339{height:32.616000px;}
.h6_c00339{height:37.834560px;}
.h9_c00339{height:46.981634px;}
.h8_c00339{height:53.490240px;}
.hb_c00339{height:56.640000px;}
.h4_c00339{height:57.294676px;}
.h3_c00339{height:65.232000px;}
.h5_c00339{height:68.074560px;}
.h2_c00339{height:1201.365000px;}
.h0_c00339{height:1262.835000px;}
.h1_c00339{height:1263.000000px;}
.w3_c00339{width:8.340000px;}
.w2_c00339{width:863.955000px;}
.w0_c00339{width:892.935000px;}
.w1_c00339{width:893.250000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:14.490000px;}
.x2_c00339{left:113.040150px;}
.xe_c00339{left:128.016000px;}
.x20_c00339{left:138.014700px;}
.x1e_c00339{left:152.205300px;}
.x3_c00339{left:154.025400px;}
.x18_c00339{left:221.505300px;}
.x19_c00339{left:229.998000px;}
.x5_c00339{left:235.209150px;}
.x4_c00339{left:238.444350px;}
.x6_c00339{left:270.360000px;}
.x1a_c00339{left:294.458100px;}
.x7_c00339{left:296.220750px;}
.x14_c00339{left:317.095050px;}
.x1b_c00339{left:327.817050px;}
.x15_c00339{left:337.674600px;}
.x10_c00339{left:350.561700px;}
.x8_c00339{left:394.816800px;}
.x23_c00339{left:459.288150px;}
.x21_c00339{left:478.974600px;}
.xf_c00339{left:508.295700px;}
.x12_c00339{left:511.501800px;}
.x22_c00339{left:513.143100px;}
.x9_c00339{left:520.871400px;}
.x13_c00339{left:558.165150px;}
.xa_c00339{left:571.704000px;}
.xb_c00339{left:587.697150px;}
.xc_c00339{left:654.691800px;}
.x16_c00339{left:699.240600px;}
.x24_c00339{left:700.512750px;}
.x25_c00339{left:721.215900px;}
.x11_c00339{left:730.395600px;}
.x1c_c00339{left:732.915600px;}
.x17_c00339{left:737.895150px;}
.xd_c00339{left:744.396300px;}
.x1f_c00339{left:746.220300px;}
.x1d_c00339{left:750.390000px;}
.x26_c00339{left:776.594604px;}
@media print{
.v2_c00339{vertical-align:-26.880000pt;}
.v3_c00339{vertical-align:-21.760000pt;}
.v0_c00339{vertical-align:0.000000pt;}
.v1_c00339{vertical-align:26.880000pt;}
.lsf_c00339{letter-spacing:-0.159616pt;}
.lsd_c00339{letter-spacing:0.000000pt;}
.ls1e_c00339{letter-spacing:0.128000pt;}
.ls4_c00339{letter-spacing:0.209920pt;}
.ls15_c00339{letter-spacing:0.236160pt;}
.ls23_c00339{letter-spacing:0.243428pt;}
.ls8_c00339{letter-spacing:0.262400pt;}
.ls22_c00339{letter-spacing:0.283392pt;}
.ls26_c00339{letter-spacing:0.292114pt;}
.ls1_c00339{letter-spacing:0.310080pt;}
.ls1f_c00339{letter-spacing:0.330624pt;}
.ls28_c00339{letter-spacing:0.367360pt;}
.ls6_c00339{letter-spacing:0.377856pt;}
.ls1a_c00339{letter-spacing:0.389485pt;}
.ls12_c00339{letter-spacing:0.425088pt;}
.ls5_c00339{letter-spacing:0.451328pt;}
.ls9_c00339{letter-spacing:0.472320pt;}
.ls2_c00339{letter-spacing:0.477568pt;}
.ls21_c00339{letter-spacing:0.486856pt;}
.lsa_c00339{letter-spacing:0.488064pt;}
.ls1c_c00339{letter-spacing:0.519552pt;}
.ls1b_c00339{letter-spacing:0.614016pt;}
.ls7_c00339{letter-spacing:0.632913pt;}
.ls18_c00339{letter-spacing:0.638323pt;}
.ls17_c00339{letter-spacing:0.661248pt;}
.ls11_c00339{letter-spacing:0.708480pt;}
.ls29_c00339{letter-spacing:0.730284pt;}
.ls3_c00339{letter-spacing:0.734720pt;}
.ls24_c00339{letter-spacing:0.781952pt;}
.ls27_c00339{letter-spacing:1.532416pt;}
.ls25_c00339{letter-spacing:1.537664pt;}
.ls2e_c00339{letter-spacing:2.755200pt;}
.ls2d_c00339{letter-spacing:2.760448pt;}
.ls20_c00339{letter-spacing:4.240384pt;}
.ls13_c00339{letter-spacing:4.376832pt;}
.ls10_c00339{letter-spacing:4.382080pt;}
.lse_c00339{letter-spacing:4.827264pt;}
.ls1d_c00339{letter-spacing:5.137792pt;}
.lsb_c00339{letter-spacing:5.312000pt;}
.ls0_c00339{letter-spacing:5.317867pt;}
.lsc_c00339{letter-spacing:5.475484pt;}
.ls2c_c00339{letter-spacing:5.673088pt;}
.ls16_c00339{letter-spacing:5.715072pt;}
.ls2b_c00339{letter-spacing:6.323840pt;}
.ls2a_c00339{letter-spacing:8.081920pt;}
.ls14_c00339{letter-spacing:16.253056pt;}
.ls19_c00339{letter-spacing:19.270656pt;}
.ws7_c00339{word-spacing:-19.727232pt;}
.ws0_c00339{word-spacing:-18.705024pt;}
.ws3_c00339{word-spacing:-17.792000pt;}
.ws5_c00339{word-spacing:-15.676773pt;}
.wsb_c00339{word-spacing:-15.671364pt;}
.wsc_c00339{word-spacing:-15.330564pt;}
.ws6_c00339{word-spacing:-15.108992pt;}
.wsd_c00339{word-spacing:-15.061760pt;}
.wsa_c00339{word-spacing:-15.038451pt;}
.ws9_c00339{word-spacing:-14.920064pt;}
.ws1_c00339{word-spacing:-10.319360pt;}
.ws2_c00339{word-spacing:-10.159744pt;}
.ws8_c00339{word-spacing:-9.024000pt;}
.ws4_c00339{word-spacing:-8.896000pt;}
.wse_c00339{word-spacing:0.000000pt;}
._16_c00339{margin-left:-19.627520pt;}
._15_c00339{margin-left:-18.735360pt;}
._13_c00339{margin-left:-16.741120pt;}
._12_c00339{margin-left:-15.796480pt;}
._1a_c00339{margin-left:-8.320768pt;}
._19_c00339{margin-left:-7.003392pt;}
._14_c00339{margin-left:-5.982720pt;}
._f_c00339{margin-left:-4.775680pt;}
._e_c00339{margin-left:-3.883520pt;}
._10_c00339{margin-left:-2.915328pt;}
._18_c00339{margin-left:-1.815040pt;}
._8_c00339{margin-left:-0.896000pt;}
._2_c00339{width:1.600000pt;}
._3_c00339{width:2.880000pt;}
._6_c00339{width:4.416000pt;}
._17_c00339{width:5.377472pt;}
._7_c00339{width:6.272000pt;}
._0_c00339{width:7.488000pt;}
._5_c00339{width:9.024000pt;}
._d_c00339{width:10.093363pt;}
._a_c00339{width:11.904000pt;}
._b_c00339{width:13.376000pt;}
._c_c00339{width:14.610996pt;}
._11_c00339{width:16.111360pt;}
._9_c00339{width:19.776000pt;}
._4_c00339{width:23.552000pt;}
._1_c00339{width:24.960000pt;}
.fs4_c00339{font-size:32.000000pt;}
.fs3_c00339{font-size:37.120000pt;}
.fs2_c00339{font-size:49.920000pt;}
.fs5_c00339{font-size:52.480000pt;}
.fs7_c00339{font-size:53.333333pt;}
.fs6_c00339{font-size:54.095146pt;}
.fs0_c00339{font-size:64.000000pt;}
.fs1_c00339{font-size:65.969690pt;}
.y0_c00339{bottom:0.000000pt;}
.y3d_c00339{bottom:2.773333pt;}
.y3c_c00339{bottom:30.884071pt;}
.y1_c00339{bottom:48.000000pt;}
.y3b_c00339{bottom:64.681600pt;}
.y3a_c00339{bottom:80.360000pt;}
.y39_c00339{bottom:85.800000pt;}
.y38_c00339{bottom:101.160000pt;}
.y37_c00339{bottom:111.401600pt;}
.y36_c00339{bottom:132.520000pt;}
.y35_c00339{bottom:142.439680pt;}
.y34_c00339{bottom:158.118080pt;}
.y33_c00339{bottom:173.796480pt;}
.y32_c00339{bottom:189.160000pt;}
.y31_c00339{bottom:189.161600pt;}
.y30_c00339{bottom:204.840000pt;}
.y2f_c00339{bottom:210.280000pt;}
.y2e_c00339{bottom:220.200000pt;}
.y2d_c00339{bottom:235.880000pt;}
.y2c_c00339{bottom:235.881600pt;}
.y2a_c00339{bottom:251.556480pt;}
.y2b_c00339{bottom:251.560000pt;}
.y29_c00339{bottom:266.920000pt;}
.y28_c00339{bottom:272.360000pt;}
.y27_c00339{bottom:288.040000pt;}
.y26_c00339{bottom:298.276480pt;}
.y25_c00339{bottom:313.640000pt;}
.y24_c00339{bottom:313.641600pt;}
.y23_c00339{bottom:334.760000pt;}
.y22_c00339{bottom:344.680000pt;}
.y21_c00339{bottom:344.681600pt;}
.y20_c00339{bottom:365.800000pt;}
.y1f_c00339{bottom:376.040000pt;}
.y1e_c00339{bottom:391.400000pt;}
.y1d_c00339{bottom:391.403200pt;}
.y1c_c00339{bottom:407.081600pt;}
.y1b_c00339{bottom:428.200000pt;}
.y1a_c00339{bottom:451.880000pt;}
.y19_c00339{bottom:532.200000pt;}
.y18_c00339{bottom:551.080000pt;}
.y17_c00339{bottom:569.640000pt;}
.y16_c00339{bottom:588.200000pt;}
.y15_c00339{bottom:607.080000pt;}
.y14_c00339{bottom:625.640000pt;}
.y13_c00339{bottom:644.520000pt;}
.y12_c00339{bottom:663.080000pt;}
.y11_c00339{bottom:695.080000pt;}
.y10_c00339{bottom:713.640000pt;}
.yf_c00339{bottom:732.520000pt;}
.ye_c00339{bottom:751.080000pt;}
.yd_c00339{bottom:769.640000pt;}
.yc_c00339{bottom:788.520000pt;}
.ya_c00339{bottom:807.080000pt;}
.yb_c00339{bottom:813.800000pt;}
.y9_c00339{bottom:825.640000pt;}
.y8_c00339{bottom:857.640000pt;}
.y7_c00339{bottom:876.520000pt;}
.y6_c00339{bottom:895.080000pt;}
.y5_c00339{bottom:913.640000pt;}
.y4_c00339{bottom:932.520000pt;}
.y3_c00339{bottom:964.520000pt;}
.y2_c00339{bottom:1011.880000pt;}
.ha_c00339{height:17.116093pt;}
.h7_c00339{height:28.992000pt;}
.h6_c00339{height:33.630720pt;}
.h9_c00339{height:41.761453pt;}
.h8_c00339{height:47.546880pt;}
.hb_c00339{height:50.346667pt;}
.h4_c00339{height:50.928601pt;}
.h3_c00339{height:57.984000pt;}
.h5_c00339{height:60.510720pt;}
.h2_c00339{height:1067.880000pt;}
.h0_c00339{height:1122.520000pt;}
.h1_c00339{height:1122.666667pt;}
.w3_c00339{width:7.413333pt;}
.w2_c00339{width:767.960000pt;}
.w0_c00339{width:793.720000pt;}
.w1_c00339{width:794.000000pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:12.880000pt;}
.x2_c00339{left:100.480133pt;}
.xe_c00339{left:113.792000pt;}
.x20_c00339{left:122.679733pt;}
.x1e_c00339{left:135.293600pt;}
.x3_c00339{left:136.911467pt;}
.x18_c00339{left:196.893600pt;}
.x19_c00339{left:204.442667pt;}
.x5_c00339{left:209.074800pt;}
.x4_c00339{left:211.950533pt;}
.x6_c00339{left:240.320000pt;}
.x1a_c00339{left:261.740533pt;}
.x7_c00339{left:263.307333pt;}
.x14_c00339{left:281.862267pt;}
.x1b_c00339{left:291.392933pt;}
.x15_c00339{left:300.155200pt;}
.x10_c00339{left:311.610400pt;}
.x8_c00339{left:350.948267pt;}
.x23_c00339{left:408.256133pt;}
.x21_c00339{left:425.755200pt;}
.xf_c00339{left:451.818400pt;}
.x12_c00339{left:454.668267pt;}
.x22_c00339{left:456.127200pt;}
.x9_c00339{left:462.996800pt;}
.x13_c00339{left:496.146800pt;}
.xa_c00339{left:508.181333pt;}
.xb_c00339{left:522.397467pt;}
.xc_c00339{left:581.948267pt;}
.x16_c00339{left:621.547200pt;}
.x24_c00339{left:622.678000pt;}
.x25_c00339{left:641.080800pt;}
.x11_c00339{left:649.240533pt;}
.x1c_c00339{left:651.480533pt;}
.x17_c00339{left:655.906800pt;}
.xd_c00339{left:661.685600pt;}
.x1f_c00339{left:663.306933pt;}
.x1d_c00339{left:667.013333pt;}
.x26_c00339{left:690.306315pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_780cbb696a2b306ae2c55394.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.134000;font-style:normal;font-weight:normal;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_9fe7d4ac85c351bedb16c35f.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;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:ff3_c00340;src:url('chunks/assets/font_28dea3694a07e4dbe7e47d24.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00340{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00340{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00340{vertical-align:-24.480000px;}
.v0_c00340{vertical-align:0.000000px;}
.v1_c00340{vertical-align:30.240000px;}
.ls6_c00340{letter-spacing:-0.179568px;}
.ls5_c00340{letter-spacing:0.000000px;}
.ls8_c00340{letter-spacing:0.144000px;}
.lsc_c00340{letter-spacing:0.239760px;}
.ls9_c00340{letter-spacing:0.265680px;}
.ls1_c00340{letter-spacing:0.327292px;}
.lsa_c00340{letter-spacing:0.399600px;}
.lsb_c00340{letter-spacing:0.450342px;}
.ls2_c00340{letter-spacing:0.494773px;}
.ls7_c00340{letter-spacing:5.335200px;}
.ls0_c00340{letter-spacing:5.964000px;}
.ls3_c00340{letter-spacing:5.976000px;}
.ls4_c00340{letter-spacing:6.159920px;}
.sc__c00340{text-shadow:none;}
.sc1_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00340{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc1_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00340{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00340{word-spacing:-20.947680px;}
.ws3_c00340{word-spacing:-15.718037px;}
.ws4_c00340{word-spacing:-15.051600px;}
.ws0_c00340{word-spacing:-11.429712px;}
.ws2_c00340{word-spacing:-10.152000px;}
.ws5_c00340{word-spacing:0.000000px;}
._3_c00340{margin-left:-1.033200px;}
._0_c00340{width:1.296000px;}
._2_c00340{width:4.320000px;}
._1_c00340{width:21.744000px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs4_c00340{font-size:36.000000px;}
.fs2_c00340{font-size:41.760000px;}
.fs7_c00340{font-size:48.982495px;}
.fs8_c00340{font-size:53.280000px;}
.fs9_c00340{font-size:54.919767px;}
.fs3_c00340{font-size:56.160000px;}
.fs5_c00340{font-size:59.040000px;}
.fsa_c00340{font-size:60.000000px;}
.fs6_c00340{font-size:60.857039px;}
.fs0_c00340{font-size:72.000000px;}
.fs1_c00340{font-size:74.215901px;}
.y0_c00340{bottom:0.000000px;}
.y13_c00340{bottom:3.120000px;}
.y11_c00340{bottom:14.400000px;}
.y12_c00340{bottom:34.744580px;}
.y1_c00340{bottom:54.000000px;}
.yf_c00340{bottom:55.485000px;}
.ye_c00340{bottom:61.605000px;}
.yd_c00340{bottom:78.885000px;}
.yc_c00340{bottom:96.525000px;}
.yb_c00340{bottom:123.165000px;}
.y10_c00340{bottom:265.365000px;}
.ya_c00340{bottom:856.845000px;}
.y9_c00340{bottom:892.845000px;}
.y8_c00340{bottom:928.845000px;}
.y7_c00340{bottom:950.085000px;}
.y6_c00340{bottom:988.965000px;}
.y5_c00340{bottom:1027.845000px;}
.y4_c00340{bottom:1063.845000px;}
.y3_c00340{bottom:1085.085000px;}
.y2_c00340{bottom:1138.365000px;}
.hc_c00340{height:19.255605px;}
.h9_c00340{height:27.000000px;}
.h6_c00340{height:32.616000px;}
.hb_c00340{height:42.398060px;}
.h7_c00340{height:46.981634px;}
.ha_c00340{height:48.271680px;}
.h8_c00340{height:53.490240px;}
.hd_c00340{height:56.640000px;}
.h4_c00340{height:57.294676px;}
.h3_c00340{height:65.232000px;}
.h5_c00340{height:68.074560px;}
.h2_c00340{height:1201.365000px;}
.h0_c00340{height:1262.835000px;}
.h1_c00340{height:1263.000000px;}
.w4_c00340{width:8.340000px;}
.w3_c00340{width:399.960000px;}
.w2_c00340{width:863.955000px;}
.w0_c00340{width:892.935000px;}
.w1_c00340{width:893.250000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:14.490000px;}
.xa_c00340{left:73.768050px;}
.x2_c00340{left:113.040150px;}
.x7_c00340{left:127.217700px;}
.x3_c00340{left:154.025400px;}
.x8_c00340{left:157.168950px;}
.x9_c00340{left:232.290000px;}
.x4_c00340{left:238.444350px;}
.xb_c00340{left:282.366150px;}
.x5_c00340{left:297.987300px;}
.xc_c00340{left:317.613900px;}
.x6_c00340{left:350.996250px;}
.xd_c00340{left:776.594604px;}
@media print{
.v2_c00340{vertical-align:-21.760000pt;}
.v0_c00340{vertical-align:0.000000pt;}
.v1_c00340{vertical-align:26.880000pt;}
.ls6_c00340{letter-spacing:-0.159616pt;}
.ls5_c00340{letter-spacing:0.000000pt;}
.ls8_c00340{letter-spacing:0.128000pt;}
.lsc_c00340{letter-spacing:0.213120pt;}
.ls9_c00340{letter-spacing:0.236160pt;}
.ls1_c00340{letter-spacing:0.290926pt;}
.lsa_c00340{letter-spacing:0.355200pt;}
.lsb_c00340{letter-spacing:0.400304pt;}
.ls2_c00340{letter-spacing:0.439798pt;}
.ls7_c00340{letter-spacing:4.742400pt;}
.ls0_c00340{letter-spacing:5.301333pt;}
.ls3_c00340{letter-spacing:5.312000pt;}
.ls4_c00340{letter-spacing:5.475484pt;}
.ws1_c00340{word-spacing:-18.620160pt;}
.ws3_c00340{word-spacing:-13.971589pt;}
.ws4_c00340{word-spacing:-13.379200pt;}
.ws0_c00340{word-spacing:-10.159744pt;}
.ws2_c00340{word-spacing:-9.024000pt;}
.ws5_c00340{word-spacing:0.000000pt;}
._3_c00340{margin-left:-0.918400pt;}
._0_c00340{width:1.152000pt;}
._2_c00340{width:3.840000pt;}
._1_c00340{width:19.328000pt;}
.fs4_c00340{font-size:32.000000pt;}
.fs2_c00340{font-size:37.120000pt;}
.fs7_c00340{font-size:43.539995pt;}
.fs8_c00340{font-size:47.360000pt;}
.fs9_c00340{font-size:48.817571pt;}
.fs3_c00340{font-size:49.920000pt;}
.fs5_c00340{font-size:52.480000pt;}
.fsa_c00340{font-size:53.333333pt;}
.fs6_c00340{font-size:54.095146pt;}
.fs0_c00340{font-size:64.000000pt;}
.fs1_c00340{font-size:65.969690pt;}
.y0_c00340{bottom:0.000000pt;}
.y13_c00340{bottom:2.773333pt;}
.y11_c00340{bottom:12.800000pt;}
.y12_c00340{bottom:30.884071pt;}
.y1_c00340{bottom:48.000000pt;}
.yf_c00340{bottom:49.320000pt;}
.ye_c00340{bottom:54.760000pt;}
.yd_c00340{bottom:70.120000pt;}
.yc_c00340{bottom:85.800000pt;}
.yb_c00340{bottom:109.480000pt;}
.y10_c00340{bottom:235.880000pt;}
.ya_c00340{bottom:761.640000pt;}
.y9_c00340{bottom:793.640000pt;}
.y8_c00340{bottom:825.640000pt;}
.y7_c00340{bottom:844.520000pt;}
.y6_c00340{bottom:879.080000pt;}
.y5_c00340{bottom:913.640000pt;}
.y4_c00340{bottom:945.640000pt;}
.y3_c00340{bottom:964.520000pt;}
.y2_c00340{bottom:1011.880000pt;}
.hc_c00340{height:17.116093pt;}
.h9_c00340{height:24.000000pt;}
.h6_c00340{height:28.992000pt;}
.hb_c00340{height:37.687165pt;}
.h7_c00340{height:41.761453pt;}
.ha_c00340{height:42.908160pt;}
.h8_c00340{height:47.546880pt;}
.hd_c00340{height:50.346667pt;}
.h4_c00340{height:50.928601pt;}
.h3_c00340{height:57.984000pt;}
.h5_c00340{height:60.510720pt;}
.h2_c00340{height:1067.880000pt;}
.h0_c00340{height:1122.520000pt;}
.h1_c00340{height:1122.666667pt;}
.w4_c00340{width:7.413333pt;}
.w3_c00340{width:355.520000pt;}
.w2_c00340{width:767.960000pt;}
.w0_c00340{width:793.720000pt;}
.w1_c00340{width:794.000000pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:12.880000pt;}
.xa_c00340{left:65.571600pt;}
.x2_c00340{left:100.480133pt;}
.x7_c00340{left:113.082400pt;}
.x3_c00340{left:136.911467pt;}
.x8_c00340{left:139.705733pt;}
.x9_c00340{left:206.480000pt;}
.x4_c00340{left:211.950533pt;}
.xb_c00340{left:250.992133pt;}
.x5_c00340{left:264.877600pt;}
.xc_c00340{left:282.323467pt;}
.x6_c00340{left:311.996667pt;}
.xd_c00340{left:690.306315pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb3bb655f5a02996d208a084.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.134000;font-style:normal;font-weight:normal;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_97063e8dafe0c25ae4168d04.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;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:ff3_c00341;src:url('chunks/assets/font_2624a2637adf02c07e8992f0.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00341{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00341{vertical-align:-24.480000px;}
.v0_c00341{vertical-align:0.000000px;}
.v1_c00341{vertical-align:30.240000px;}
.ls11_c00341{letter-spacing:0.000000px;}
.ls5_c00341{letter-spacing:0.156840px;}
.lse_c00341{letter-spacing:0.236160px;}
.ls16_c00341{letter-spacing:0.265680px;}
.ls1d_c00341{letter-spacing:0.318816px;}
.lsd_c00341{letter-spacing:0.327292px;}
.lsb_c00341{letter-spacing:0.327911px;}
.ls1c_c00341{letter-spacing:0.328628px;}
.ls17_c00341{letter-spacing:0.438171px;}
.ls19_c00341{letter-spacing:0.492942px;}
.lsc_c00341{letter-spacing:0.494773px;}
.lsa_c00341{letter-spacing:0.525456px;}
.ls8_c00341{letter-spacing:0.545040px;}
.ls1a_c00341{letter-spacing:0.584496px;}
.ls18_c00341{letter-spacing:0.696672px;}
.ls1b_c00341{letter-spacing:0.743904px;}
.lsf_c00341{letter-spacing:3.719520px;}
.ls3_c00341{letter-spacing:4.947720px;}
.ls1_c00341{letter-spacing:4.963920px;}
.ls15_c00341{letter-spacing:5.290272px;}
.ls13_c00341{letter-spacing:5.335200px;}
.ls14_c00341{letter-spacing:5.430672px;}
.ls12_c00341{letter-spacing:5.505187px;}
.ls7_c00341{letter-spacing:5.961600px;}
.ls4_c00341{letter-spacing:5.971200px;}
.ls9_c00341{letter-spacing:5.973000px;}
.ls2_c00341{letter-spacing:5.975400px;}
.ls6_c00341{letter-spacing:5.976000px;}
.ls0_c00341{letter-spacing:6.159301px;}
.ls10_c00341{letter-spacing:6.159920px;}
.sc__c00341{text-shadow:none;}
.sc1_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00341{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc1_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00341{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00341{word-spacing:-25.992000px;}
.ws0_c00341{word-spacing:-21.598163px;}
.ws5_c00341{word-spacing:-21.043152px;}
.ws1_c00341{word-spacing:-20.947680px;}
.ws3_c00341{word-spacing:-20.902752px;}
.ws7_c00341{word-spacing:-17.411199px;}
.ws8_c00341{word-spacing:-17.246885px;}
.ws9_c00341{word-spacing:-16.731936px;}
.ws4_c00341{word-spacing:-11.609280px;}
.ws6_c00341{word-spacing:-10.008000px;}
.wsa_c00341{word-spacing:0.000000px;}
._0_c00341{margin-left:-1.169880px;}
._4_c00341{width:1.152000px;}
._2_c00341{width:2.592000px;}
._d_c00341{width:3.600000px;}
._9_c00341{width:4.752000px;}
._8_c00341{width:7.056000px;}
._1_c00341{width:8.064000px;}
._c_c00341{width:10.080000px;}
._6_c00341{width:11.664000px;}
._5_c00341{width:13.320000px;}
._a_c00341{width:14.976000px;}
._7_c00341{width:21.168000px;}
._b_c00341{width:22.752000px;}
._3_c00341{width:25.992000px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs5_c00341{font-size:36.000000px;}
.fs4_c00341{font-size:41.760000px;}
.fs8_c00341{font-size:48.982495px;}
.fs3_c00341{font-size:56.160000px;}
.fs2_c00341{font-size:57.888403px;}
.fs6_c00341{font-size:59.040000px;}
.fs9_c00341{font-size:60.000000px;}
.fs7_c00341{font-size:60.857039px;}
.fs0_c00341{font-size:72.000000px;}
.fs1_c00341{font-size:74.215901px;}
.y0_c00341{bottom:0.000000px;}
.y32_c00341{bottom:3.120000px;}
.y31_c00341{bottom:34.744580px;}
.y1_c00341{bottom:54.000000px;}
.y30_c00341{bottom:55.485000px;}
.y2f_c00341{bottom:61.605000px;}
.y2e_c00341{bottom:72.765000px;}
.y2d_c00341{bottom:72.766800px;}
.y2c_c00341{bottom:90.405000px;}
.y2b_c00341{bottom:96.525000px;}
.y2a_c00341{bottom:107.685000px;}
.y29_c00341{bottom:113.805000px;}
.y28_c00341{bottom:125.325000px;}
.y27_c00341{bottom:131.445000px;}
.y26_c00341{bottom:142.965000px;}
.y25_c00341{bottom:149.085000px;}
.y24_c00341{bottom:160.245000px;}
.y23_c00341{bottom:166.365000px;}
.y22_c00341{bottom:193.005000px;}
.y21_c00341{bottom:225.405000px;}
.y20_c00341{bottom:246.285000px;}
.y1f_c00341{bottom:267.165000px;}
.y1e_c00341{bottom:288.405000px;}
.y1d_c00341{bottom:309.285000px;}
.y1c_c00341{bottom:345.285000px;}
.y1b_c00341{bottom:381.285000px;}
.y1a_c00341{bottom:417.285000px;}
.y19_c00341{bottom:453.285000px;}
.y18_c00341{bottom:489.285000px;}
.y17_c00341{bottom:510.525000px;}
.y16_c00341{bottom:546.525000px;}
.y15_c00341{bottom:567.405000px;}
.y14_c00341{bottom:588.285000px;}
.y13_c00341{bottom:609.525000px;}
.y12_c00341{bottom:645.525000px;}
.y11_c00341{bottom:681.525000px;}
.y10_c00341{bottom:717.525000px;}
.yf_c00341{bottom:738.405000px;}
.ye_c00341{bottom:774.405000px;}
.yd_c00341{bottom:795.285000px;}
.yc_c00341{bottom:816.525000px;}
.yb_c00341{bottom:837.405000px;}
.ya_c00341{bottom:873.405000px;}
.y9_c00341{bottom:911.925000px;}
.y8_c00341{bottom:950.085000px;}
.y7_c00341{bottom:986.085000px;}
.y6_c00341{bottom:1006.965000px;}
.y5_c00341{bottom:1027.845000px;}
.y4_c00341{bottom:1049.085000px;}
.y3_c00341{bottom:1085.085000px;}
.y2_c00341{bottom:1138.365000px;}
.h9_c00341{height:19.255605px;}
.h6_c00341{height:32.616000px;}
.h7_c00341{height:46.981634px;}
.h8_c00341{height:53.490240px;}
.ha_c00341{height:56.640000px;}
.h4_c00341{height:57.294676px;}
.h3_c00341{height:65.232000px;}
.h5_c00341{height:68.074560px;}
.h2_c00341{height:1201.365000px;}
.h0_c00341{height:1262.835000px;}
.h1_c00341{height:1263.000000px;}
.w3_c00341{width:16.680000px;}
.w2_c00341{width:863.955000px;}
.w0_c00341{width:892.935000px;}
.w1_c00341{width:893.250000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:14.490000px;}
.x2_c00341{left:113.040150px;}
.x1a_c00341{left:118.034850px;}
.x16_c00341{left:122.213700px;}
.x17_c00341{left:152.165100px;}
.x3_c00341{left:154.025400px;}
.x1b_c00341{left:160.513950px;}
.x6_c00341{left:219.040650px;}
.x18_c00341{left:238.099650px;}
.xf_c00341{left:242.224800px;}
.x5_c00341{left:244.785300px;}
.x10_c00341{left:262.218750px;}
.x19_c00341{left:268.051050px;}
.x4_c00341{left:276.460350px;}
.x11_c00341{left:299.748000px;}
.x7_c00341{left:345.159300px;}
.x12_c00341{left:388.081050px;}
.x13_c00341{left:396.420450px;}
.x14_c00341{left:416.414400px;}
.xb_c00341{left:417.720000px;}
.x8_c00341{left:426.157800px;}
.x9_c00341{left:449.204250px;}
.x1c_c00341{left:455.584050px;}
.x1d_c00341{left:485.535300px;}
.xa_c00341{left:498.199500px;}
.xc_c00341{left:609.165600px;}
.x15_c00341{left:648.186450px;}
.xd_c00341{left:665.990100px;}
.xe_c00341{left:719.196900px;}
.x1e_c00341{left:768.254608px;}
@media print{
.v2_c00341{vertical-align:-21.760000pt;}
.v0_c00341{vertical-align:0.000000pt;}
.v1_c00341{vertical-align:26.880000pt;}
.ls11_c00341{letter-spacing:0.000000pt;}
.ls5_c00341{letter-spacing:0.139413pt;}
.lse_c00341{letter-spacing:0.209920pt;}
.ls16_c00341{letter-spacing:0.236160pt;}
.ls1d_c00341{letter-spacing:0.283392pt;}
.lsd_c00341{letter-spacing:0.290926pt;}
.lsb_c00341{letter-spacing:0.291476pt;}
.ls1c_c00341{letter-spacing:0.292114pt;}
.ls17_c00341{letter-spacing:0.389485pt;}
.ls19_c00341{letter-spacing:0.438171pt;}
.lsc_c00341{letter-spacing:0.439798pt;}
.lsa_c00341{letter-spacing:0.467072pt;}
.ls8_c00341{letter-spacing:0.484480pt;}
.ls1a_c00341{letter-spacing:0.519552pt;}
.ls18_c00341{letter-spacing:0.619264pt;}
.ls1b_c00341{letter-spacing:0.661248pt;}
.lsf_c00341{letter-spacing:3.306240pt;}
.ls3_c00341{letter-spacing:4.397973pt;}
.ls1_c00341{letter-spacing:4.412373pt;}
.ls15_c00341{letter-spacing:4.702464pt;}
.ls13_c00341{letter-spacing:4.742400pt;}
.ls14_c00341{letter-spacing:4.827264pt;}
.ls12_c00341{letter-spacing:4.893500pt;}
.ls7_c00341{letter-spacing:5.299200pt;}
.ls4_c00341{letter-spacing:5.307733pt;}
.ls9_c00341{letter-spacing:5.309333pt;}
.ls2_c00341{letter-spacing:5.311467pt;}
.ls6_c00341{letter-spacing:5.312000pt;}
.ls0_c00341{letter-spacing:5.474935pt;}
.ls10_c00341{letter-spacing:5.475484pt;}
.ws2_c00341{word-spacing:-23.104000pt;}
.ws0_c00341{word-spacing:-19.198367pt;}
.ws5_c00341{word-spacing:-18.705024pt;}
.ws1_c00341{word-spacing:-18.620160pt;}
.ws3_c00341{word-spacing:-18.580224pt;}
.ws7_c00341{word-spacing:-15.476621pt;}
.ws8_c00341{word-spacing:-15.330564pt;}
.ws9_c00341{word-spacing:-14.872832pt;}
.ws4_c00341{word-spacing:-10.319360pt;}
.ws6_c00341{word-spacing:-8.896000pt;}
.wsa_c00341{word-spacing:0.000000pt;}
._0_c00341{margin-left:-1.039893pt;}
._4_c00341{width:1.024000pt;}
._2_c00341{width:2.304000pt;}
._d_c00341{width:3.200000pt;}
._9_c00341{width:4.224000pt;}
._8_c00341{width:6.272000pt;}
._1_c00341{width:7.168000pt;}
._c_c00341{width:8.960000pt;}
._6_c00341{width:10.368000pt;}
._5_c00341{width:11.840000pt;}
._a_c00341{width:13.312000pt;}
._7_c00341{width:18.816000pt;}
._b_c00341{width:20.224000pt;}
._3_c00341{width:23.104000pt;}
.fs5_c00341{font-size:32.000000pt;}
.fs4_c00341{font-size:37.120000pt;}
.fs8_c00341{font-size:43.539995pt;}
.fs3_c00341{font-size:49.920000pt;}
.fs2_c00341{font-size:51.456358pt;}
.fs6_c00341{font-size:52.480000pt;}
.fs9_c00341{font-size:53.333333pt;}
.fs7_c00341{font-size:54.095146pt;}
.fs0_c00341{font-size:64.000000pt;}
.fs1_c00341{font-size:65.969690pt;}
.y0_c00341{bottom:0.000000pt;}
.y32_c00341{bottom:2.773333pt;}
.y31_c00341{bottom:30.884071pt;}
.y1_c00341{bottom:48.000000pt;}
.y30_c00341{bottom:49.320000pt;}
.y2f_c00341{bottom:54.760000pt;}
.y2e_c00341{bottom:64.680000pt;}
.y2d_c00341{bottom:64.681600pt;}
.y2c_c00341{bottom:80.360000pt;}
.y2b_c00341{bottom:85.800000pt;}
.y2a_c00341{bottom:95.720000pt;}
.y29_c00341{bottom:101.160000pt;}
.y28_c00341{bottom:111.400000pt;}
.y27_c00341{bottom:116.840000pt;}
.y26_c00341{bottom:127.080000pt;}
.y25_c00341{bottom:132.520000pt;}
.y24_c00341{bottom:142.440000pt;}
.y23_c00341{bottom:147.880000pt;}
.y22_c00341{bottom:171.560000pt;}
.y21_c00341{bottom:200.360000pt;}
.y20_c00341{bottom:218.920000pt;}
.y1f_c00341{bottom:237.480000pt;}
.y1e_c00341{bottom:256.360000pt;}
.y1d_c00341{bottom:274.920000pt;}
.y1c_c00341{bottom:306.920000pt;}
.y1b_c00341{bottom:338.920000pt;}
.y1a_c00341{bottom:370.920000pt;}
.y19_c00341{bottom:402.920000pt;}
.y18_c00341{bottom:434.920000pt;}
.y17_c00341{bottom:453.800000pt;}
.y16_c00341{bottom:485.800000pt;}
.y15_c00341{bottom:504.360000pt;}
.y14_c00341{bottom:522.920000pt;}
.y13_c00341{bottom:541.800000pt;}
.y12_c00341{bottom:573.800000pt;}
.y11_c00341{bottom:605.800000pt;}
.y10_c00341{bottom:637.800000pt;}
.yf_c00341{bottom:656.360000pt;}
.ye_c00341{bottom:688.360000pt;}
.yd_c00341{bottom:706.920000pt;}
.yc_c00341{bottom:725.800000pt;}
.yb_c00341{bottom:744.360000pt;}
.ya_c00341{bottom:776.360000pt;}
.y9_c00341{bottom:810.600000pt;}
.y8_c00341{bottom:844.520000pt;}
.y7_c00341{bottom:876.520000pt;}
.y6_c00341{bottom:895.080000pt;}
.y5_c00341{bottom:913.640000pt;}
.y4_c00341{bottom:932.520000pt;}
.y3_c00341{bottom:964.520000pt;}
.y2_c00341{bottom:1011.880000pt;}
.h9_c00341{height:17.116093pt;}
.h6_c00341{height:28.992000pt;}
.h7_c00341{height:41.761453pt;}
.h8_c00341{height:47.546880pt;}
.ha_c00341{height:50.346667pt;}
.h4_c00341{height:50.928601pt;}
.h3_c00341{height:57.984000pt;}
.h5_c00341{height:60.510720pt;}
.h2_c00341{height:1067.880000pt;}
.h0_c00341{height:1122.520000pt;}
.h1_c00341{height:1122.666667pt;}
.w3_c00341{width:14.826667pt;}
.w2_c00341{width:767.960000pt;}
.w0_c00341{width:793.720000pt;}
.w1_c00341{width:794.000000pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:12.880000pt;}
.x2_c00341{left:100.480133pt;}
.x1a_c00341{left:104.919867pt;}
.x16_c00341{left:108.634400pt;}
.x17_c00341{left:135.257867pt;}
.x3_c00341{left:136.911467pt;}
.x1b_c00341{left:142.679067pt;}
.x6_c00341{left:194.702800pt;}
.x18_c00341{left:211.644133pt;}
.xf_c00341{left:215.310933pt;}
.x5_c00341{left:217.586933pt;}
.x10_c00341{left:233.083333pt;}
.x19_c00341{left:238.267600pt;}
.x4_c00341{left:245.742533pt;}
.x11_c00341{left:266.442667pt;}
.x7_c00341{left:306.808267pt;}
.x12_c00341{left:344.960933pt;}
.x13_c00341{left:352.373733pt;}
.x14_c00341{left:370.146133pt;}
.xb_c00341{left:371.306667pt;}
.x8_c00341{left:378.806933pt;}
.x9_c00341{left:399.292667pt;}
.x1c_c00341{left:404.963600pt;}
.x1d_c00341{left:431.586933pt;}
.xa_c00341{left:442.844000pt;}
.xc_c00341{left:541.480533pt;}
.x15_c00341{left:576.165733pt;}
.xd_c00341{left:591.991200pt;}
.xe_c00341{left:639.286133pt;}
.x1e_c00341{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635e6beed442f75d27d0899d.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.134000;font-style:normal;font-weight:normal;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_744a4b71524f60d802ed69a8.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;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:ff3_c00342;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00342;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00342{font-family:ff5_c00342;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00342;src:url('chunks/assets/font_0d5de6d1fe6d90a780dac022.woff2')format("woff");}.ff6_c00342{font-family:ff6_c00342;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00342;src:url('chunks/assets/font_74e3e5eb534beb916fda706b.woff2')format("woff");}.ff7_c00342{font-family:ff7_c00342;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00342{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00342{vertical-align:-24.480000px;}
.v0_c00342{vertical-align:0.000000px;}
.v1_c00342{vertical-align:30.240000px;}
.ls7_c00342{letter-spacing:0.000000px;}
.lse_c00342{letter-spacing:0.242064px;}
.lsb_c00342{letter-spacing:0.265680px;}
.ls13_c00342{letter-spacing:0.318816px;}
.lsf_c00342{letter-spacing:0.328628px;}
.ls12_c00342{letter-spacing:0.478224px;}
.lsd_c00342{letter-spacing:0.492942px;}
.ls4_c00342{letter-spacing:0.525456px;}
.ls3_c00342{letter-spacing:0.531360px;}
.lsa_c00342{letter-spacing:0.547713px;}
.ls2_c00342{letter-spacing:0.560880px;}
.ls9_c00342{letter-spacing:0.584496px;}
.ls10_c00342{letter-spacing:0.602485px;}
.ls8_c00342{letter-spacing:0.637632px;}
.ls1_c00342{letter-spacing:0.698040px;}
.lsc_c00342{letter-spacing:0.712027px;}
.ls5_c00342{letter-spacing:5.976000px;}
.ls6_c00342{letter-spacing:6.159920px;}
.ls11_c00342{letter-spacing:9.523152px;}
.ls0_c00342{letter-spacing:54.864000px;}
.sc__c00342{text-shadow:none;}
.sc1_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00342{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc1_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00342{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00342{word-spacing:-17.520742px;}
.ws1_c00342{word-spacing:-17.465970px;}
.ws4_c00342{word-spacing:-16.891344px;}
.ws0_c00342{word-spacing:-11.609280px;}
.ws3_c00342{word-spacing:-10.008000px;}
.ws5_c00342{word-spacing:0.000000px;}
._6_c00342{margin-left:-10.095840px;}
._5_c00342{margin-left:-8.915040px;}
._3_c00342{margin-left:-1.121760px;}
._2_c00342{width:1.080000px;}
._4_c00342{width:4.320000px;}
._1_c00342{width:5.760000px;}
._7_c00342{width:9.003600px;}
._0_c00342{width:16.344000px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs5_c00342{font-size:36.000000px;}
.fs2_c00342{font-size:41.760000px;}
.fs3_c00342{font-size:59.040000px;}
.fs6_c00342{font-size:60.000000px;}
.fs4_c00342{font-size:60.857039px;}
.fs0_c00342{font-size:72.000000px;}
.fs1_c00342{font-size:74.215901px;}
.y0_c00342{bottom:0.000000px;}
.y2b_c00342{bottom:3.120000px;}
.y2a_c00342{bottom:34.744580px;}
.y1_c00342{bottom:54.000000px;}
.y29_c00342{bottom:55.481040px;}
.y28_c00342{bottom:78.885000px;}
.y27_c00342{bottom:96.525000px;}
.y26_c00342{bottom:113.805000px;}
.y25_c00342{bottom:140.445000px;}
.y24_c00342{bottom:182.929680px;}
.y23_c00342{bottom:208.125000px;}
.y22_c00342{bottom:232.965000px;}
.y21_c00342{bottom:232.969680px;}
.y20_c00342{bottom:258.165000px;}
.y1f_c00342{bottom:290.925000px;}
.y1e_c00342{bottom:319.365000px;}
.y1d_c00342{bottom:347.805000px;}
.y1c_c00342{bottom:379.845000px;}
.y1b_c00342{bottom:407.925000px;}
.y1a_c00342{bottom:436.365000px;}
.y19_c00342{bottom:465.525000px;}
.y18_c00342{bottom:493.965000px;}
.y17_c00342{bottom:522.765000px;}
.y16_c00342{bottom:550.845000px;}
.y15_c00342{bottom:586.845000px;}
.y14_c00342{bottom:622.845000px;}
.y13_c00342{bottom:644.085000px;}
.y12_c00342{bottom:664.965000px;}
.y11_c00342{bottom:700.965000px;}
.y10_c00342{bottom:721.845000px;}
.yf_c00342{bottom:743.085000px;}
.ye_c00342{bottom:763.965000px;}
.yd_c00342{bottom:784.845000px;}
.yc_c00342{bottom:820.845000px;}
.yb_c00342{bottom:842.085000px;}
.ya_c00342{bottom:878.085000px;}
.y9_c00342{bottom:914.085000px;}
.y8_c00342{bottom:950.085000px;}
.y7_c00342{bottom:970.965000px;}
.y6_c00342{bottom:991.845000px;}
.y5_c00342{bottom:1027.845000px;}
.y4_c00342{bottom:1063.845000px;}
.y3_c00342{bottom:1085.085000px;}
.y2_c00342{bottom:1138.365000px;}
.hb_c00342{height:19.255605px;}
.ha_c00342{height:32.616000px;}
.h9_c00342{height:39.350391px;}
.h8_c00342{height:46.981634px;}
.h6_c00342{height:47.988281px;}
.h7_c00342{height:53.490240px;}
.hc_c00342{height:56.640000px;}
.h4_c00342{height:57.294676px;}
.h3_c00342{height:65.232000px;}
.h5_c00342{height:68.074560px;}
.h2_c00342{height:1201.365000px;}
.h0_c00342{height:1262.835000px;}
.h1_c00342{height:1263.000000px;}
.w3_c00342{width:16.680000px;}
.w2_c00342{width:863.955000px;}
.w0_c00342{width:892.935000px;}
.w1_c00342{width:893.250000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:14.490000px;}
.x2_c00342{left:113.040150px;}
.x5_c00342{left:140.037600px;}
.x2b_c00342{left:147.223350px;}
.x3_c00342{left:154.025400px;}
.x2c_c00342{left:186.387000px;}
.x33_c00342{left:189.716700px;}
.x2d_c00342{left:267.248250px;}
.x4_c00342{left:276.460350px;}
.x14_c00342{left:289.343550px;}
.x15_c00342{left:305.433750px;}
.x16_c00342{left:307.910550px;}
.x17_c00342{left:318.908250px;}
.x1a_c00342{left:325.675650px;}
.x18_c00342{left:337.915950px;}
.x19_c00342{left:352.945650px;}
.x2e_c00342{left:366.409800px;}
.xc_c00342{left:371.022150px;}
.xd_c00342{left:384.000000px;}
.x2f_c00342{left:385.579500px;}
.x21_c00342{left:386.665950px;}
.x29_c00342{left:387.673800px;}
.x6_c00342{left:389.426850px;}
.x22_c00342{left:391.165950px;}
.x23_c00342{left:393.163650px;}
.x1b_c00342{left:397.681950px;}
.x7_c00342{left:400.424550px;}
.x1c_c00342{left:402.181950px;}
.xe_c00342{left:414.768750px;}
.x8_c00342{left:419.965650px;}
.x30_c00342{left:423.903450px;}
.x2a_c00342{left:431.719800px;}
.x9_c00342{left:432.961350px;}
.x25_c00342{left:459.672300px;}
.xf_c00342{left:462.156750px;}
.x1d_c00342{left:463.182750px;}
.x1e_c00342{left:467.682750px;}
.x24_c00342{left:476.160300px;}
.x26_c00342{left:523.679400px;}
.x27_c00342{left:532.679400px;}
.x1f_c00342{left:538.691100px;}
.x20_c00342{left:543.191100px;}
.x28_c00342{left:587.686200px;}
.xa_c00342{left:658.869150px;}
.xb_c00342{left:671.847000px;}
.x10_c00342{left:673.241100px;}
.x31_c00342{left:679.747950px;}
.x32_c00342{left:688.087200px;}
.x11_c00342{left:691.241100px;}
.x12_c00342{left:713.010150px;}
.x13_c00342{left:732.390450px;}
.x34_c00342{left:768.254608px;}
@media print{
.v2_c00342{vertical-align:-21.760000pt;}
.v0_c00342{vertical-align:0.000000pt;}
.v1_c00342{vertical-align:26.880000pt;}
.ls7_c00342{letter-spacing:0.000000pt;}
.lse_c00342{letter-spacing:0.215168pt;}
.lsb_c00342{letter-spacing:0.236160pt;}
.ls13_c00342{letter-spacing:0.283392pt;}
.lsf_c00342{letter-spacing:0.292114pt;}
.ls12_c00342{letter-spacing:0.425088pt;}
.lsd_c00342{letter-spacing:0.438171pt;}
.ls4_c00342{letter-spacing:0.467072pt;}
.ls3_c00342{letter-spacing:0.472320pt;}
.lsa_c00342{letter-spacing:0.486856pt;}
.ls2_c00342{letter-spacing:0.498560pt;}
.ls9_c00342{letter-spacing:0.519552pt;}
.ls10_c00342{letter-spacing:0.535542pt;}
.ls8_c00342{letter-spacing:0.566784pt;}
.ls1_c00342{letter-spacing:0.620480pt;}
.lsc_c00342{letter-spacing:0.632913pt;}
.ls5_c00342{letter-spacing:5.312000pt;}
.ls6_c00342{letter-spacing:5.475484pt;}
.ls11_c00342{letter-spacing:8.465024pt;}
.ls0_c00342{letter-spacing:48.768000pt;}
.ws2_c00342{word-spacing:-15.573992pt;}
.ws1_c00342{word-spacing:-15.525307pt;}
.ws4_c00342{word-spacing:-15.014528pt;}
.ws0_c00342{word-spacing:-10.319360pt;}
.ws3_c00342{word-spacing:-8.896000pt;}
.ws5_c00342{word-spacing:0.000000pt;}
._6_c00342{margin-left:-8.974080pt;}
._5_c00342{margin-left:-7.924480pt;}
._3_c00342{margin-left:-0.997120pt;}
._2_c00342{width:0.960000pt;}
._4_c00342{width:3.840000pt;}
._1_c00342{width:5.120000pt;}
._7_c00342{width:8.003200pt;}
._0_c00342{width:14.528000pt;}
.fs5_c00342{font-size:32.000000pt;}
.fs2_c00342{font-size:37.120000pt;}
.fs3_c00342{font-size:52.480000pt;}
.fs6_c00342{font-size:53.333333pt;}
.fs4_c00342{font-size:54.095146pt;}
.fs0_c00342{font-size:64.000000pt;}
.fs1_c00342{font-size:65.969690pt;}
.y0_c00342{bottom:0.000000pt;}
.y2b_c00342{bottom:2.773333pt;}
.y2a_c00342{bottom:30.884071pt;}
.y1_c00342{bottom:48.000000pt;}
.y29_c00342{bottom:49.316480pt;}
.y28_c00342{bottom:70.120000pt;}
.y27_c00342{bottom:85.800000pt;}
.y26_c00342{bottom:101.160000pt;}
.y25_c00342{bottom:124.840000pt;}
.y24_c00342{bottom:162.604160pt;}
.y23_c00342{bottom:185.000000pt;}
.y22_c00342{bottom:207.080000pt;}
.y21_c00342{bottom:207.084160pt;}
.y20_c00342{bottom:229.480000pt;}
.y1f_c00342{bottom:258.600000pt;}
.y1e_c00342{bottom:283.880000pt;}
.y1d_c00342{bottom:309.160000pt;}
.y1c_c00342{bottom:337.640000pt;}
.y1b_c00342{bottom:362.600000pt;}
.y1a_c00342{bottom:387.880000pt;}
.y19_c00342{bottom:413.800000pt;}
.y18_c00342{bottom:439.080000pt;}
.y17_c00342{bottom:464.680000pt;}
.y16_c00342{bottom:489.640000pt;}
.y15_c00342{bottom:521.640000pt;}
.y14_c00342{bottom:553.640000pt;}
.y13_c00342{bottom:572.520000pt;}
.y12_c00342{bottom:591.080000pt;}
.y11_c00342{bottom:623.080000pt;}
.y10_c00342{bottom:641.640000pt;}
.yf_c00342{bottom:660.520000pt;}
.ye_c00342{bottom:679.080000pt;}
.yd_c00342{bottom:697.640000pt;}
.yc_c00342{bottom:729.640000pt;}
.yb_c00342{bottom:748.520000pt;}
.ya_c00342{bottom:780.520000pt;}
.y9_c00342{bottom:812.520000pt;}
.y8_c00342{bottom:844.520000pt;}
.y7_c00342{bottom:863.080000pt;}
.y6_c00342{bottom:881.640000pt;}
.y5_c00342{bottom:913.640000pt;}
.y4_c00342{bottom:945.640000pt;}
.y3_c00342{bottom:964.520000pt;}
.y2_c00342{bottom:1011.880000pt;}
.hb_c00342{height:17.116093pt;}
.ha_c00342{height:28.992000pt;}
.h9_c00342{height:34.978125pt;}
.h8_c00342{height:41.761453pt;}
.h6_c00342{height:42.656250pt;}
.h7_c00342{height:47.546880pt;}
.hc_c00342{height:50.346667pt;}
.h4_c00342{height:50.928601pt;}
.h3_c00342{height:57.984000pt;}
.h5_c00342{height:60.510720pt;}
.h2_c00342{height:1067.880000pt;}
.h0_c00342{height:1122.520000pt;}
.h1_c00342{height:1122.666667pt;}
.w3_c00342{width:14.826667pt;}
.w2_c00342{width:767.960000pt;}
.w0_c00342{width:793.720000pt;}
.w1_c00342{width:794.000000pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:12.880000pt;}
.x2_c00342{left:100.480133pt;}
.x5_c00342{left:124.477867pt;}
.x2b_c00342{left:130.865200pt;}
.x3_c00342{left:136.911467pt;}
.x2c_c00342{left:165.677333pt;}
.x33_c00342{left:168.637067pt;}
.x2d_c00342{left:237.554000pt;}
.x4_c00342{left:245.742533pt;}
.x14_c00342{left:257.194267pt;}
.x15_c00342{left:271.496667pt;}
.x16_c00342{left:273.698267pt;}
.x17_c00342{left:283.474000pt;}
.x1a_c00342{left:289.489467pt;}
.x18_c00342{left:300.369733pt;}
.x19_c00342{left:313.729467pt;}
.x2e_c00342{left:325.697600pt;}
.xc_c00342{left:329.797467pt;}
.xd_c00342{left:341.333333pt;}
.x2f_c00342{left:342.737333pt;}
.x21_c00342{left:343.703067pt;}
.x29_c00342{left:344.598933pt;}
.x6_c00342{left:346.157200pt;}
.x22_c00342{left:347.703067pt;}
.x23_c00342{left:349.478800pt;}
.x1b_c00342{left:353.495067pt;}
.x7_c00342{left:355.932933pt;}
.x1c_c00342{left:357.495067pt;}
.xe_c00342{left:368.683333pt;}
.x8_c00342{left:373.302800pt;}
.x30_c00342{left:376.803067pt;}
.x2a_c00342{left:383.750933pt;}
.x9_c00342{left:384.854533pt;}
.x25_c00342{left:408.597600pt;}
.xf_c00342{left:410.806000pt;}
.x1d_c00342{left:411.718000pt;}
.x1e_c00342{left:415.718000pt;}
.x24_c00342{left:423.253600pt;}
.x26_c00342{left:465.492800pt;}
.x27_c00342{left:473.492800pt;}
.x1f_c00342{left:478.836533pt;}
.x20_c00342{left:482.836533pt;}
.x28_c00342{left:522.387733pt;}
.xa_c00342{left:585.661467pt;}
.xb_c00342{left:597.197333pt;}
.x10_c00342{left:598.436533pt;}
.x31_c00342{left:604.220400pt;}
.x32_c00342{left:611.633067pt;}
.x11_c00342{left:614.436533pt;}
.x12_c00342{left:633.786800pt;}
.x13_c00342{left:651.013733pt;}
.x34_c00342{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24eed32e96e2d8ca214d224.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.134000;font-style:normal;font-weight:normal;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_d13405dfa69e9886c5770bb0.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;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:ff3_c00343;src:url('chunks/assets/font_94ebcf710eb7ce262e8e3516.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00343{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v4_c00343{vertical-align:-30.240000px;}
.v2_c00343{vertical-align:-24.480000px;}
.v0_c00343{vertical-align:0.000000px;}
.v1_c00343{vertical-align:24.480000px;}
.v3_c00343{vertical-align:30.240000px;}
.ls26_c00343{letter-spacing:-0.179568px;}
.ls18_c00343{letter-spacing:0.000000px;}
.ls28_c00343{letter-spacing:0.108000px;}
.ls14_c00343{letter-spacing:0.132840px;}
.ls29_c00343{letter-spacing:0.144000px;}
.ls11_c00343{letter-spacing:0.236160px;}
.ls3_c00343{letter-spacing:0.265680px;}
.ls5_c00343{letter-spacing:0.295200px;}
.ls0_c00343{letter-spacing:0.304285px;}
.ls2a_c00343{letter-spacing:0.318816px;}
.lse_c00343{letter-spacing:0.327292px;}
.ls10_c00343{letter-spacing:0.327911px;}
.ls2_c00343{letter-spacing:0.328628px;}
.ls9_c00343{letter-spacing:0.342432px;}
.ls1e_c00343{letter-spacing:0.371952px;}
.ls2f_c00343{letter-spacing:0.438171px;}
.ls1d_c00343{letter-spacing:0.478224px;}
.ls1_c00343{letter-spacing:0.492942px;}
.lsf_c00343{letter-spacing:0.494773px;}
.lsd_c00343{letter-spacing:0.507744px;}
.lsb_c00343{letter-spacing:0.513648px;}
.ls7_c00343{letter-spacing:0.525456px;}
.ls6_c00343{letter-spacing:0.531360px;}
.lsa_c00343{letter-spacing:0.537264px;}
.ls2e_c00343{letter-spacing:0.547713px;}
.ls4_c00343{letter-spacing:0.560880px;}
.ls19_c00343{letter-spacing:0.584496px;}
.ls21_c00343{letter-spacing:0.602485px;}
.ls22_c00343{letter-spacing:0.696672px;}
.ls8_c00343{letter-spacing:0.712027px;}
.ls1a_c00343{letter-spacing:0.718113px;}
.ls2c_c00343{letter-spacing:0.743904px;}
.ls23_c00343{letter-spacing:0.962352px;}
.ls27_c00343{letter-spacing:1.792800px;}
.ls20_c00343{letter-spacing:4.286304px;}
.lsc_c00343{letter-spacing:4.309920px;}
.ls24_c00343{letter-spacing:4.687776px;}
.ls25_c00343{letter-spacing:5.430672px;}
.ls2b_c00343{letter-spacing:5.780016px;}
.ls13_c00343{letter-spacing:5.975400px;}
.ls15_c00343{letter-spacing:5.976000px;}
.ls17_c00343{letter-spacing:6.159920px;}
.ls2d_c00343{letter-spacing:6.240528px;}
.ls1c_c00343{letter-spacing:8.974080px;}
.ls1b_c00343{letter-spacing:9.558576px;}
.ls1f_c00343{letter-spacing:19.371024px;}
.ls16_c00343{letter-spacing:21.726720px;}
.ls12_c00343{letter-spacing:23.497920px;}
.sc__c00343{text-shadow:none;}
.sc1_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00343{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc1_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00343{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00343{word-spacing:-22.193136px;}
.ws7_c00343{word-spacing:-21.043152px;}
.ws1_c00343{word-spacing:-17.636370px;}
.ws2_c00343{word-spacing:-17.630284px;}
.ws6_c00343{word-spacing:-17.520742px;}
.wsb_c00343{word-spacing:-17.465970px;}
.ws0_c00343{word-spacing:-17.411199px;}
.ws5_c00343{word-spacing:-17.246885px;}
.ws4_c00343{word-spacing:-16.944480px;}
.ws8_c00343{word-spacing:-11.429712px;}
.ws9_c00343{word-spacing:-10.152000px;}
.ws3_c00343{word-spacing:-10.008000px;}
.wsc_c00343{word-spacing:0.000000px;}
._4_c00343{margin-left:-9.238152px;}
._5_c00343{margin-left:-7.830840px;}
._13_c00343{margin-left:-6.394139px;}
._c_c00343{margin-left:-5.170501px;}
._9_c00343{margin-left:-3.778560px;}
._1_c00343{margin-left:-1.156284px;}
._0_c00343{width:1.062720px;}
._8_c00343{width:3.424320px;}
._d_c00343{width:4.727994px;}
._6_c00343{width:6.494400px;}
._2_c00343{width:8.418204px;}
._3_c00343{width:9.790633px;}
._e_c00343{width:10.948102px;}
._11_c00343{width:12.667898px;}
._f_c00343{width:14.904000px;}
._7_c00343{width:18.597600px;}
._12_c00343{width:20.435040px;}
._b_c00343{width:22.184531px;}
._a_c00343{width:23.202720px;}
._10_c00343{width:26.496000px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs4_c00343{font-size:36.000000px;}
.fs7_c00343{font-size:41.760000px;}
.fs5_c00343{font-size:48.982495px;}
.fs6_c00343{font-size:56.160000px;}
.fs2_c00343{font-size:59.040000px;}
.fs8_c00343{font-size:60.000000px;}
.fs3_c00343{font-size:60.857039px;}
.fs0_c00343{font-size:72.000000px;}
.fs1_c00343{font-size:74.215901px;}
.y0_c00343{bottom:0.000000px;}
.y41_c00343{bottom:3.120000px;}
.y40_c00343{bottom:34.744580px;}
.y1_c00343{bottom:54.000000px;}
.y3f_c00343{bottom:55.485000px;}
.y3e_c00343{bottom:61.605000px;}
.y3d_c00343{bottom:72.766800px;}
.y3c_c00343{bottom:90.405000px;}
.y3b_c00343{bottom:96.525000px;}
.y3a_c00343{bottom:113.805000px;}
.y39_c00343{bottom:131.445000px;}
.y38_c00343{bottom:142.961040px;}
.y37_c00343{bottom:166.365000px;}
.y36_c00343{bottom:177.885000px;}
.y35_c00343{bottom:177.886800px;}
.y34_c00343{bottom:201.645000px;}
.y33_c00343{bottom:212.805000px;}
.y32_c00343{bottom:218.925000px;}
.y31_c00343{bottom:245.565000px;}
.y30_c00343{bottom:277.965000px;}
.y2f_c00343{bottom:298.845000px;}
.y2e_c00343{bottom:319.725000px;}
.y2c_c00343{bottom:340.965000px;}
.y2d_c00343{bottom:348.525000px;}
.y2b_c00343{bottom:361.845000px;}
.y2a_c00343{bottom:400.725000px;}
.y29_c00343{bottom:421.965000px;}
.y28_c00343{bottom:442.845000px;}
.y27_c00343{bottom:463.725000px;}
.y26_c00343{bottom:484.965000px;}
.y25_c00343{bottom:505.845000px;}
.y24_c00343{bottom:526.725000px;}
.y23_c00343{bottom:547.965000px;}
.y22_c00343{bottom:568.845000px;}
.y21_c00343{bottom:589.725000px;}
.y20_c00343{bottom:610.965000px;}
.y1f_c00343{bottom:631.845000px;}
.y1d_c00343{bottom:653.085000px;}
.y1e_c00343{bottom:660.645000px;}
.y1c_c00343{bottom:691.965000px;}
.y1b_c00343{bottom:712.845000px;}
.y1a_c00343{bottom:734.085000px;}
.y19_c00343{bottom:770.085000px;}
.y18_c00343{bottom:798.163560px;}
.y17_c00343{bottom:823.004640px;}
.y16_c00343{bottom:840.642840px;}
.y15_c00343{bottom:858.281040px;}
.y14_c00343{bottom:875.565000px;}
.y13_c00343{bottom:900.764850px;}
.y12_c00343{bottom:918.045000px;}
.y11_c00343{bottom:918.046800px;}
.ye_c00343{bottom:935.682690px;}
.yf_c00343{bottom:935.685000px;}
.y10_c00343{bottom:941.805000px;}
.yd_c00343{bottom:953.320890px;}
.yc_c00343{bottom:970.604850px;}
.yb_c00343{bottom:970.606800px;}
.ya_c00343{bottom:988.245000px;}
.y9_c00343{bottom:988.248600px;}
.y8_c00343{bottom:1013.089680px;}
.y6_c00343{bottom:1038.283920px;}
.y7_c00343{bottom:1038.285000px;}
.y5_c00343{bottom:1063.125000px;}
.y4_c00343{bottom:1063.129680px;}
.y3_c00343{bottom:1088.325000px;}
.y2_c00343{bottom:1138.365000px;}
.hb_c00343{height:19.255605px;}
.h8_c00343{height:32.616000px;}
.ha_c00343{height:37.834560px;}
.h6_c00343{height:46.981634px;}
.h5_c00343{height:53.490240px;}
.hc_c00343{height:56.640000px;}
.h7_c00343{height:57.096000px;}
.h4_c00343{height:57.294676px;}
.h3_c00343{height:65.232000px;}
.h9_c00343{height:68.074560px;}
.h2_c00343{height:1201.365000px;}
.h0_c00343{height:1262.835000px;}
.h1_c00343{height:1263.000000px;}
.w3_c00343{width:16.680000px;}
.w2_c00343{width:863.955000px;}
.w0_c00343{width:892.935000px;}
.w1_c00343{width:893.250000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:14.490000px;}
.x2_c00343{left:113.040150px;}
.x1d_c00343{left:128.864850px;}
.x5_c00343{left:147.223350px;}
.x1c_c00343{left:152.204550px;}
.x3_c00343{left:154.025400px;}
.x31_c00343{left:198.900150px;}
.xa_c00343{left:210.566100px;}
.x6_c00343{left:218.860500px;}
.x2e_c00343{left:219.918450px;}
.x7_c00343{left:230.530500px;}
.xf_c00343{left:275.146350px;}
.x4_c00343{left:276.460350px;}
.xb_c00343{left:293.434950px;}
.x22_c00343{left:300.164850px;}
.x2a_c00343{left:306.428850px;}
.x8_c00343{left:311.391750px;}
.xc_c00343{left:313.414650px;}
.x10_c00343{left:317.625300px;}
.x9_c00343{left:331.371450px;}
.x2f_c00343{left:333.422250px;}
.x2b_c00343{left:338.932950px;}
.x2c_c00343{left:348.097350px;}
.x2d_c00343{left:373.071900px;}
.x23_c00343{left:378.238350px;}
.x11_c00343{left:382.899900px;}
.x30_c00343{left:389.265450px;}
.xd_c00343{left:391.273350px;}
.x29_c00343{left:397.209600px;}
.x20_c00343{left:399.331350px;}
.x12_c00343{left:407.874300px;}
.xe_c00343{left:416.247750px;}
.x13_c00343{left:421.800600px;}
.x21_c00343{left:429.300600px;}
.x16_c00343{left:432.323250px;}
.x17_c00343{left:452.303100px;}
.x1e_c00343{left:481.041150px;}
.x18_c00343{left:534.546450px;}
.x19_c00343{left:552.036300px;}
.x1f_c00343{left:554.760000px;}
.x1a_c00343{left:609.245700px;}
.x27_c00343{left:621.203250px;}
.x1b_c00343{left:639.196950px;}
.x14_c00343{left:645.800550px;}
.x25_c00343{left:654.780450px;}
.x15_c00343{left:665.780250px;}
.x28_c00343{left:684.220050px;}
.x26_c00343{left:715.781250px;}
.x24_c00343{left:727.560000px;}
.x32_c00343{left:768.254608px;}
@media print{
.v4_c00343{vertical-align:-26.880000pt;}
.v2_c00343{vertical-align:-21.760000pt;}
.v0_c00343{vertical-align:0.000000pt;}
.v1_c00343{vertical-align:21.760000pt;}
.v3_c00343{vertical-align:26.880000pt;}
.ls26_c00343{letter-spacing:-0.159616pt;}
.ls18_c00343{letter-spacing:0.000000pt;}
.ls28_c00343{letter-spacing:0.096000pt;}
.ls14_c00343{letter-spacing:0.118080pt;}
.ls29_c00343{letter-spacing:0.128000pt;}
.ls11_c00343{letter-spacing:0.209920pt;}
.ls3_c00343{letter-spacing:0.236160pt;}
.ls5_c00343{letter-spacing:0.262400pt;}
.ls0_c00343{letter-spacing:0.270476pt;}
.ls2a_c00343{letter-spacing:0.283392pt;}
.lse_c00343{letter-spacing:0.290926pt;}
.ls10_c00343{letter-spacing:0.291476pt;}
.ls2_c00343{letter-spacing:0.292114pt;}
.ls9_c00343{letter-spacing:0.304384pt;}
.ls1e_c00343{letter-spacing:0.330624pt;}
.ls2f_c00343{letter-spacing:0.389485pt;}
.ls1d_c00343{letter-spacing:0.425088pt;}
.ls1_c00343{letter-spacing:0.438171pt;}
.lsf_c00343{letter-spacing:0.439798pt;}
.lsd_c00343{letter-spacing:0.451328pt;}
.lsb_c00343{letter-spacing:0.456576pt;}
.ls7_c00343{letter-spacing:0.467072pt;}
.ls6_c00343{letter-spacing:0.472320pt;}
.lsa_c00343{letter-spacing:0.477568pt;}
.ls2e_c00343{letter-spacing:0.486856pt;}
.ls4_c00343{letter-spacing:0.498560pt;}
.ls19_c00343{letter-spacing:0.519552pt;}
.ls21_c00343{letter-spacing:0.535542pt;}
.ls22_c00343{letter-spacing:0.619264pt;}
.ls8_c00343{letter-spacing:0.632913pt;}
.ls1a_c00343{letter-spacing:0.638323pt;}
.ls2c_c00343{letter-spacing:0.661248pt;}
.ls23_c00343{letter-spacing:0.855424pt;}
.ls27_c00343{letter-spacing:1.593600pt;}
.ls20_c00343{letter-spacing:3.810048pt;}
.lsc_c00343{letter-spacing:3.831040pt;}
.ls24_c00343{letter-spacing:4.166912pt;}
.ls25_c00343{letter-spacing:4.827264pt;}
.ls2b_c00343{letter-spacing:5.137792pt;}
.ls13_c00343{letter-spacing:5.311467pt;}
.ls15_c00343{letter-spacing:5.312000pt;}
.ls17_c00343{letter-spacing:5.475484pt;}
.ls2d_c00343{letter-spacing:5.547136pt;}
.ls1c_c00343{letter-spacing:7.976960pt;}
.ls1b_c00343{letter-spacing:8.496512pt;}
.ls1f_c00343{letter-spacing:17.218688pt;}
.ls16_c00343{letter-spacing:19.312640pt;}
.ls12_c00343{letter-spacing:20.887040pt;}
.wsa_c00343{word-spacing:-19.727232pt;}
.ws7_c00343{word-spacing:-18.705024pt;}
.ws1_c00343{word-spacing:-15.676773pt;}
.ws2_c00343{word-spacing:-15.671364pt;}
.ws6_c00343{word-spacing:-15.573992pt;}
.wsb_c00343{word-spacing:-15.525307pt;}
.ws0_c00343{word-spacing:-15.476621pt;}
.ws5_c00343{word-spacing:-15.330564pt;}
.ws4_c00343{word-spacing:-15.061760pt;}
.ws8_c00343{word-spacing:-10.159744pt;}
.ws9_c00343{word-spacing:-9.024000pt;}
.ws3_c00343{word-spacing:-8.896000pt;}
.wsc_c00343{word-spacing:0.000000pt;}
._4_c00343{margin-left:-8.211691pt;}
._5_c00343{margin-left:-6.960747pt;}
._13_c00343{margin-left:-5.683679pt;}
._c_c00343{margin-left:-4.596001pt;}
._9_c00343{margin-left:-3.358720pt;}
._1_c00343{margin-left:-1.027808pt;}
._0_c00343{width:0.944640pt;}
._8_c00343{width:3.043840pt;}
._d_c00343{width:4.202662pt;}
._6_c00343{width:5.772800pt;}
._2_c00343{width:7.482848pt;}
._3_c00343{width:8.702784pt;}
._e_c00343{width:9.731647pt;}
._11_c00343{width:11.260353pt;}
._f_c00343{width:13.248000pt;}
._7_c00343{width:16.531200pt;}
._12_c00343{width:18.164480pt;}
._b_c00343{width:19.719583pt;}
._a_c00343{width:20.624640pt;}
._10_c00343{width:23.552000pt;}
.fs4_c00343{font-size:32.000000pt;}
.fs7_c00343{font-size:37.120000pt;}
.fs5_c00343{font-size:43.539995pt;}
.fs6_c00343{font-size:49.920000pt;}
.fs2_c00343{font-size:52.480000pt;}
.fs8_c00343{font-size:53.333333pt;}
.fs3_c00343{font-size:54.095146pt;}
.fs0_c00343{font-size:64.000000pt;}
.fs1_c00343{font-size:65.969690pt;}
.y0_c00343{bottom:0.000000pt;}
.y41_c00343{bottom:2.773333pt;}
.y40_c00343{bottom:30.884071pt;}
.y1_c00343{bottom:48.000000pt;}
.y3f_c00343{bottom:49.320000pt;}
.y3e_c00343{bottom:54.760000pt;}
.y3d_c00343{bottom:64.681600pt;}
.y3c_c00343{bottom:80.360000pt;}
.y3b_c00343{bottom:85.800000pt;}
.y3a_c00343{bottom:101.160000pt;}
.y39_c00343{bottom:116.840000pt;}
.y38_c00343{bottom:127.076480pt;}
.y37_c00343{bottom:147.880000pt;}
.y36_c00343{bottom:158.120000pt;}
.y35_c00343{bottom:158.121600pt;}
.y34_c00343{bottom:179.240000pt;}
.y33_c00343{bottom:189.160000pt;}
.y32_c00343{bottom:194.600000pt;}
.y31_c00343{bottom:218.280000pt;}
.y30_c00343{bottom:247.080000pt;}
.y2f_c00343{bottom:265.640000pt;}
.y2e_c00343{bottom:284.200000pt;}
.y2c_c00343{bottom:303.080000pt;}
.y2d_c00343{bottom:309.800000pt;}
.y2b_c00343{bottom:321.640000pt;}
.y2a_c00343{bottom:356.200000pt;}
.y29_c00343{bottom:375.080000pt;}
.y28_c00343{bottom:393.640000pt;}
.y27_c00343{bottom:412.200000pt;}
.y26_c00343{bottom:431.080000pt;}
.y25_c00343{bottom:449.640000pt;}
.y24_c00343{bottom:468.200000pt;}
.y23_c00343{bottom:487.080000pt;}
.y22_c00343{bottom:505.640000pt;}
.y21_c00343{bottom:524.200000pt;}
.y20_c00343{bottom:543.080000pt;}
.y1f_c00343{bottom:561.640000pt;}
.y1d_c00343{bottom:580.520000pt;}
.y1e_c00343{bottom:587.240000pt;}
.y1c_c00343{bottom:615.080000pt;}
.y1b_c00343{bottom:633.640000pt;}
.y1a_c00343{bottom:652.520000pt;}
.y19_c00343{bottom:684.520000pt;}
.y18_c00343{bottom:709.478720pt;}
.y17_c00343{bottom:731.559680pt;}
.y16_c00343{bottom:747.238080pt;}
.y15_c00343{bottom:762.916480pt;}
.y14_c00343{bottom:778.280000pt;}
.y13_c00343{bottom:800.679867pt;}
.y12_c00343{bottom:816.040000pt;}
.y11_c00343{bottom:816.041600pt;}
.ye_c00343{bottom:831.717947pt;}
.yf_c00343{bottom:831.720000pt;}
.y10_c00343{bottom:837.160000pt;}
.yd_c00343{bottom:847.396347pt;}
.yc_c00343{bottom:862.759867pt;}
.yb_c00343{bottom:862.761600pt;}
.ya_c00343{bottom:878.440000pt;}
.y9_c00343{bottom:878.443200pt;}
.y8_c00343{bottom:900.524160pt;}
.y6_c00343{bottom:922.919040pt;}
.y7_c00343{bottom:922.920000pt;}
.y5_c00343{bottom:945.000000pt;}
.y4_c00343{bottom:945.004160pt;}
.y3_c00343{bottom:967.400000pt;}
.y2_c00343{bottom:1011.880000pt;}
.hb_c00343{height:17.116093pt;}
.h8_c00343{height:28.992000pt;}
.ha_c00343{height:33.630720pt;}
.h6_c00343{height:41.761453pt;}
.h5_c00343{height:47.546880pt;}
.hc_c00343{height:50.346667pt;}
.h7_c00343{height:50.752000pt;}
.h4_c00343{height:50.928601pt;}
.h3_c00343{height:57.984000pt;}
.h9_c00343{height:60.510720pt;}
.h2_c00343{height:1067.880000pt;}
.h0_c00343{height:1122.520000pt;}
.h1_c00343{height:1122.666667pt;}
.w3_c00343{width:14.826667pt;}
.w2_c00343{width:767.960000pt;}
.w0_c00343{width:793.720000pt;}
.w1_c00343{width:794.000000pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:12.880000pt;}
.x2_c00343{left:100.480133pt;}
.x1d_c00343{left:114.546533pt;}
.x5_c00343{left:130.865200pt;}
.x1c_c00343{left:135.292933pt;}
.x3_c00343{left:136.911467pt;}
.x31_c00343{left:176.800133pt;}
.xa_c00343{left:187.169867pt;}
.x6_c00343{left:194.542667pt;}
.x2e_c00343{left:195.483067pt;}
.x7_c00343{left:204.916000pt;}
.xf_c00343{left:244.574533pt;}
.x4_c00343{left:245.742533pt;}
.xb_c00343{left:260.831067pt;}
.x22_c00343{left:266.813200pt;}
.x2a_c00343{left:272.381200pt;}
.x8_c00343{left:276.792667pt;}
.xc_c00343{left:278.590800pt;}
.x10_c00343{left:282.333600pt;}
.x9_c00343{left:294.552400pt;}
.x2f_c00343{left:296.375333pt;}
.x2b_c00343{left:301.273733pt;}
.x2c_c00343{left:309.419867pt;}
.x2d_c00343{left:331.619467pt;}
.x23_c00343{left:336.211867pt;}
.x11_c00343{left:340.355467pt;}
.x30_c00343{left:346.013733pt;}
.xd_c00343{left:347.798533pt;}
.x29_c00343{left:353.075200pt;}
.x20_c00343{left:354.961200pt;}
.x12_c00343{left:362.554933pt;}
.xe_c00343{left:369.998000pt;}
.x13_c00343{left:374.933867pt;}
.x21_c00343{left:381.600533pt;}
.x16_c00343{left:384.287333pt;}
.x17_c00343{left:402.047200pt;}
.x1e_c00343{left:427.592133pt;}
.x18_c00343{left:475.152400pt;}
.x19_c00343{left:490.698933pt;}
.x1f_c00343{left:493.120000pt;}
.x1a_c00343{left:541.551733pt;}
.x27_c00343{left:552.180667pt;}
.x1b_c00343{left:568.175067pt;}
.x14_c00343{left:574.044933pt;}
.x25_c00343{left:582.027067pt;}
.x15_c00343{left:591.804667pt;}
.x28_c00343{left:608.195600pt;}
.x26_c00343{left:636.250000pt;}
.x24_c00343{left:646.720000pt;}
.x32_c00343{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9733ed63c4fa088664343864.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.134000;font-style:normal;font-weight:normal;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_d68af84a04de7a1a81c1f1fa.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;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:ff3_c00344;src:url('chunks/assets/font_f03976665c0c66527e0080de.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00344{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00344{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00344{vertical-align:-24.480000px;}
.v0_c00344{vertical-align:0.000000px;}
.v1_c00344{vertical-align:30.240000px;}
.ls8_c00344{letter-spacing:-0.179568px;}
.ls6_c00344{letter-spacing:0.000000px;}
.ls9_c00344{letter-spacing:0.144000px;}
.ls2_c00344{letter-spacing:0.202464px;}
.lsc_c00344{letter-spacing:0.239760px;}
.lsa_c00344{letter-spacing:0.265680px;}
.lsb_c00344{letter-spacing:0.329519px;}
.ls3_c00344{letter-spacing:0.399600px;}
.ls1_c00344{letter-spacing:0.560880px;}
.ls7_c00344{letter-spacing:5.335200px;}
.ls4_c00344{letter-spacing:5.976000px;}
.ls0_c00344{letter-spacing:5.982600px;}
.ls5_c00344{letter-spacing:6.159920px;}
.sc__c00344{text-shadow:none;}
.sc1_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00344{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc1_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00344{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00344{word-spacing:-20.947680px;}
.ws3_c00344{word-spacing:-15.211440px;}
.ws1_c00344{word-spacing:-11.429712px;}
.ws2_c00344{word-spacing:-10.152000px;}
.ws4_c00344{word-spacing:0.000000px;}
._6_c00344{margin-left:-1.383000px;}
._1_c00344{width:1.728000px;}
._4_c00344{width:4.680000px;}
._5_c00344{width:8.064000px;}
._0_c00344{width:9.648000px;}
._2_c00344{width:12.024000px;}
._3_c00344{width:22.032000px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs4_c00344{font-size:36.000000px;}
.fs3_c00344{font-size:41.760000px;}
.fs6_c00344{font-size:53.280000px;}
.fs7_c00344{font-size:54.919767px;}
.fs2_c00344{font-size:56.160000px;}
.fs5_c00344{font-size:59.040000px;}
.fs8_c00344{font-size:60.000000px;}
.fs0_c00344{font-size:72.000000px;}
.fs1_c00344{font-size:74.215901px;}
.y0_c00344{bottom:0.000000px;}
.y27_c00344{bottom:3.120000px;}
.y25_c00344{bottom:25.560000px;}
.y26_c00344{bottom:34.744580px;}
.y24_c00344{bottom:41.400000px;}
.y1_c00344{bottom:54.000000px;}
.y22_c00344{bottom:61.605000px;}
.y21_c00344{bottom:78.885000px;}
.y20_c00344{bottom:105.525000px;}
.y1f_c00344{bottom:151.965000px;}
.y1e_c00344{bottom:187.965000px;}
.y23_c00344{bottom:211.365000px;}
.y1d_c00344{bottom:223.965000px;}
.y1c_c00344{bottom:259.965000px;}
.y1b_c00344{bottom:295.965000px;}
.y1a_c00344{bottom:331.965000px;}
.y19_c00344{bottom:367.965000px;}
.y18_c00344{bottom:403.965000px;}
.y17_c00344{bottom:439.965000px;}
.y16_c00344{bottom:475.965000px;}
.y15_c00344{bottom:511.965000px;}
.y14_c00344{bottom:547.965000px;}
.y13_c00344{bottom:583.965000px;}
.y12_c00344{bottom:619.965000px;}
.y11_c00344{bottom:655.965000px;}
.y10_c00344{bottom:691.965000px;}
.yf_c00344{bottom:727.965000px;}
.ye_c00344{bottom:763.965000px;}
.yd_c00344{bottom:802.845000px;}
.yc_c00344{bottom:842.085000px;}
.yb_c00344{bottom:862.965000px;}
.ya_c00344{bottom:883.845000px;}
.y9_c00344{bottom:905.085000px;}
.y8_c00344{bottom:925.965000px;}
.y7_c00344{bottom:946.845000px;}
.y6_c00344{bottom:986.085000px;}
.y5_c00344{bottom:1024.965000px;}
.y4_c00344{bottom:1063.845000px;}
.y3_c00344{bottom:1085.085000px;}
.y2_c00344{bottom:1138.365000px;}
.ha_c00344{height:19.255605px;}
.h6_c00344{height:32.616000px;}
.h9_c00344{height:42.398060px;}
.h8_c00344{height:48.271680px;}
.h7_c00344{height:54.000000px;}
.hb_c00344{height:56.640000px;}
.h4_c00344{height:57.294676px;}
.h3_c00344{height:65.232000px;}
.h5_c00344{height:68.074560px;}
.h2_c00344{height:1201.365000px;}
.h0_c00344{height:1262.835000px;}
.h1_c00344{height:1263.000000px;}
.w4_c00344{width:16.680000px;}
.w3_c00344{width:275.400000px;}
.w2_c00344{width:863.955000px;}
.w0_c00344{width:892.935000px;}
.w1_c00344{width:893.250000px;}
.x0_c00344{left:0.000000px;}
.x8_c00344{left:3.919200px;}
.x1_c00344{left:14.490000px;}
.xb_c00344{left:103.702200px;}
.x2_c00344{left:113.040150px;}
.x9_c00344{left:120.246750px;}
.x3_c00344{left:154.025400px;}
.xa_c00344{left:209.520300px;}
.x4_c00344{left:276.460350px;}
.x7_c00344{left:311.490000px;}
.x5_c00344{left:422.190300px;}
.x6_c00344{left:516.275700px;}
.xc_c00344{left:768.254608px;}
@media print{
.v2_c00344{vertical-align:-21.760000pt;}
.v0_c00344{vertical-align:0.000000pt;}
.v1_c00344{vertical-align:26.880000pt;}
.ls8_c00344{letter-spacing:-0.159616pt;}
.ls6_c00344{letter-spacing:0.000000pt;}
.ls9_c00344{letter-spacing:0.128000pt;}
.ls2_c00344{letter-spacing:0.179968pt;}
.lsc_c00344{letter-spacing:0.213120pt;}
.lsa_c00344{letter-spacing:0.236160pt;}
.lsb_c00344{letter-spacing:0.292905pt;}
.ls3_c00344{letter-spacing:0.355200pt;}
.ls1_c00344{letter-spacing:0.498560pt;}
.ls7_c00344{letter-spacing:4.742400pt;}
.ls4_c00344{letter-spacing:5.312000pt;}
.ls0_c00344{letter-spacing:5.317867pt;}
.ls5_c00344{letter-spacing:5.475484pt;}
.ws0_c00344{word-spacing:-18.620160pt;}
.ws3_c00344{word-spacing:-13.521280pt;}
.ws1_c00344{word-spacing:-10.159744pt;}
.ws2_c00344{word-spacing:-9.024000pt;}
.ws4_c00344{word-spacing:0.000000pt;}
._6_c00344{margin-left:-1.229333pt;}
._1_c00344{width:1.536000pt;}
._4_c00344{width:4.160000pt;}
._5_c00344{width:7.168000pt;}
._0_c00344{width:8.576000pt;}
._2_c00344{width:10.688000pt;}
._3_c00344{width:19.584000pt;}
.fs4_c00344{font-size:32.000000pt;}
.fs3_c00344{font-size:37.120000pt;}
.fs6_c00344{font-size:47.360000pt;}
.fs7_c00344{font-size:48.817571pt;}
.fs2_c00344{font-size:49.920000pt;}
.fs5_c00344{font-size:52.480000pt;}
.fs8_c00344{font-size:53.333333pt;}
.fs0_c00344{font-size:64.000000pt;}
.fs1_c00344{font-size:65.969690pt;}
.y0_c00344{bottom:0.000000pt;}
.y27_c00344{bottom:2.773333pt;}
.y25_c00344{bottom:22.720000pt;}
.y26_c00344{bottom:30.884071pt;}
.y24_c00344{bottom:36.800000pt;}
.y1_c00344{bottom:48.000000pt;}
.y22_c00344{bottom:54.760000pt;}
.y21_c00344{bottom:70.120000pt;}
.y20_c00344{bottom:93.800000pt;}
.y1f_c00344{bottom:135.080000pt;}
.y1e_c00344{bottom:167.080000pt;}
.y23_c00344{bottom:187.880000pt;}
.y1d_c00344{bottom:199.080000pt;}
.y1c_c00344{bottom:231.080000pt;}
.y1b_c00344{bottom:263.080000pt;}
.y1a_c00344{bottom:295.080000pt;}
.y19_c00344{bottom:327.080000pt;}
.y18_c00344{bottom:359.080000pt;}
.y17_c00344{bottom:391.080000pt;}
.y16_c00344{bottom:423.080000pt;}
.y15_c00344{bottom:455.080000pt;}
.y14_c00344{bottom:487.080000pt;}
.y13_c00344{bottom:519.080000pt;}
.y12_c00344{bottom:551.080000pt;}
.y11_c00344{bottom:583.080000pt;}
.y10_c00344{bottom:615.080000pt;}
.yf_c00344{bottom:647.080000pt;}
.ye_c00344{bottom:679.080000pt;}
.yd_c00344{bottom:713.640000pt;}
.yc_c00344{bottom:748.520000pt;}
.yb_c00344{bottom:767.080000pt;}
.ya_c00344{bottom:785.640000pt;}
.y9_c00344{bottom:804.520000pt;}
.y8_c00344{bottom:823.080000pt;}
.y7_c00344{bottom:841.640000pt;}
.y6_c00344{bottom:876.520000pt;}
.y5_c00344{bottom:911.080000pt;}
.y4_c00344{bottom:945.640000pt;}
.y3_c00344{bottom:964.520000pt;}
.y2_c00344{bottom:1011.880000pt;}
.ha_c00344{height:17.116093pt;}
.h6_c00344{height:28.992000pt;}
.h9_c00344{height:37.687165pt;}
.h8_c00344{height:42.908160pt;}
.h7_c00344{height:48.000000pt;}
.hb_c00344{height:50.346667pt;}
.h4_c00344{height:50.928601pt;}
.h3_c00344{height:57.984000pt;}
.h5_c00344{height:60.510720pt;}
.h2_c00344{height:1067.880000pt;}
.h0_c00344{height:1122.520000pt;}
.h1_c00344{height:1122.666667pt;}
.w4_c00344{width:14.826667pt;}
.w3_c00344{width:244.800000pt;}
.w2_c00344{width:767.960000pt;}
.w0_c00344{width:793.720000pt;}
.w1_c00344{width:794.000000pt;}
.x0_c00344{left:0.000000pt;}
.x8_c00344{left:3.483733pt;}
.x1_c00344{left:12.880000pt;}
.xb_c00344{left:92.179733pt;}
.x2_c00344{left:100.480133pt;}
.x9_c00344{left:106.886000pt;}
.x3_c00344{left:136.911467pt;}
.xa_c00344{left:186.240267pt;}
.x4_c00344{left:245.742533pt;}
.x7_c00344{left:276.880000pt;}
.x5_c00344{left:375.280267pt;}
.x6_c00344{left:458.911733pt;}
.xc_c00344{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5b398223a4f8c58a840ab21.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.134000;font-style:normal;font-weight:normal;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_6c2eedc5524b1b4a3e7fec53.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;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:ff3_c00345;src:url('chunks/assets/font_c441d70658821f48fcabe033.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00345{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls2_c00345{letter-spacing:0.000000px;}
.ls4_c00345{letter-spacing:0.202464px;}
.ls7_c00345{letter-spacing:0.239760px;}
.ls6_c00345{letter-spacing:0.282384px;}
.ls3_c00345{letter-spacing:0.399600px;}
.ls5_c00345{letter-spacing:0.719280px;}
.ls0_c00345{letter-spacing:5.976000px;}
.ls1_c00345{letter-spacing:6.159920px;}
.sc__c00345{text-shadow:none;}
.sc1_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00345{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc1_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00345{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00345{word-spacing:-15.051600px;}
.ws1_c00345{word-spacing:0.000000px;}
._1_c00345{margin-left:-1.286088px;}
._0_c00345{width:1.014120px;}
.fc1_c00345{color:transparent;}
.fc0_c00345{color:rgb(0,0,0);}
.fs2_c00345{font-size:53.280000px;}
.fs3_c00345{font-size:60.000000px;}
.fs0_c00345{font-size:72.000000px;}
.fs1_c00345{font-size:74.215901px;}
.y0_c00345{bottom:0.000000px;}
.y23_c00345{bottom:3.120000px;}
.y21_c00345{bottom:14.400000px;}
.y22_c00345{bottom:34.744580px;}
.y1_c00345{bottom:54.000000px;}
.y1f_c00345{bottom:76.725000px;}
.y1e_c00345{bottom:112.725000px;}
.y20_c00345{bottom:130.365000px;}
.y1d_c00345{bottom:148.725000px;}
.y1c_c00345{bottom:184.725000px;}
.y1b_c00345{bottom:220.725000px;}
.y1a_c00345{bottom:256.725000px;}
.y19_c00345{bottom:292.725000px;}
.y18_c00345{bottom:328.725000px;}
.y17_c00345{bottom:364.725000px;}
.y16_c00345{bottom:400.725000px;}
.y15_c00345{bottom:436.725000px;}
.y14_c00345{bottom:472.725000px;}
.y13_c00345{bottom:509.085000px;}
.y12_c00345{bottom:545.085000px;}
.y11_c00345{bottom:581.085000px;}
.y10_c00345{bottom:617.085000px;}
.yf_c00345{bottom:653.085000px;}
.ye_c00345{bottom:689.085000px;}
.yd_c00345{bottom:725.085000px;}
.yc_c00345{bottom:761.085000px;}
.yb_c00345{bottom:797.085000px;}
.ya_c00345{bottom:833.085000px;}
.y9_c00345{bottom:869.085000px;}
.y8_c00345{bottom:905.085000px;}
.y7_c00345{bottom:941.085000px;}
.y6_c00345{bottom:977.085000px;}
.y5_c00345{bottom:1013.085000px;}
.y4_c00345{bottom:1049.085000px;}
.y3_c00345{bottom:1085.085000px;}
.y2_c00345{bottom:1138.365000px;}
.h7_c00345{height:19.255605px;}
.h5_c00345{height:27.000000px;}
.h6_c00345{height:48.271680px;}
.h8_c00345{height:56.640000px;}
.h4_c00345{height:57.294676px;}
.h3_c00345{height:65.232000px;}
.h2_c00345{height:1201.365000px;}
.h0_c00345{height:1262.835000px;}
.h1_c00345{height:1263.000000px;}
.w4_c00345{width:16.680000px;}
.w3_c00345{width:646.560000px;}
.w2_c00345{width:863.955000px;}
.w0_c00345{width:892.935000px;}
.w1_c00345{width:893.250000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:14.490000px;}
.x6_c00345{left:89.175900px;}
.x2_c00345{left:113.040150px;}
.x5_c00345{left:124.290000px;}
.x3_c00345{left:154.025400px;}
.x4_c00345{left:276.460350px;}
.x7_c00345{left:768.254608px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls2_c00345{letter-spacing:0.000000pt;}
.ls4_c00345{letter-spacing:0.179968pt;}
.ls7_c00345{letter-spacing:0.213120pt;}
.ls6_c00345{letter-spacing:0.251008pt;}
.ls3_c00345{letter-spacing:0.355200pt;}
.ls5_c00345{letter-spacing:0.639360pt;}
.ls0_c00345{letter-spacing:5.312000pt;}
.ls1_c00345{letter-spacing:5.475484pt;}
.ws0_c00345{word-spacing:-13.379200pt;}
.ws1_c00345{word-spacing:0.000000pt;}
._1_c00345{margin-left:-1.143189pt;}
._0_c00345{width:0.901440pt;}
.fs2_c00345{font-size:47.360000pt;}
.fs3_c00345{font-size:53.333333pt;}
.fs0_c00345{font-size:64.000000pt;}
.fs1_c00345{font-size:65.969690pt;}
.y0_c00345{bottom:0.000000pt;}
.y23_c00345{bottom:2.773333pt;}
.y21_c00345{bottom:12.800000pt;}
.y22_c00345{bottom:30.884071pt;}
.y1_c00345{bottom:48.000000pt;}
.y1f_c00345{bottom:68.200000pt;}
.y1e_c00345{bottom:100.200000pt;}
.y20_c00345{bottom:115.880000pt;}
.y1d_c00345{bottom:132.200000pt;}
.y1c_c00345{bottom:164.200000pt;}
.y1b_c00345{bottom:196.200000pt;}
.y1a_c00345{bottom:228.200000pt;}
.y19_c00345{bottom:260.200000pt;}
.y18_c00345{bottom:292.200000pt;}
.y17_c00345{bottom:324.200000pt;}
.y16_c00345{bottom:356.200000pt;}
.y15_c00345{bottom:388.200000pt;}
.y14_c00345{bottom:420.200000pt;}
.y13_c00345{bottom:452.520000pt;}
.y12_c00345{bottom:484.520000pt;}
.y11_c00345{bottom:516.520000pt;}
.y10_c00345{bottom:548.520000pt;}
.yf_c00345{bottom:580.520000pt;}
.ye_c00345{bottom:612.520000pt;}
.yd_c00345{bottom:644.520000pt;}
.yc_c00345{bottom:676.520000pt;}
.yb_c00345{bottom:708.520000pt;}
.ya_c00345{bottom:740.520000pt;}
.y9_c00345{bottom:772.520000pt;}
.y8_c00345{bottom:804.520000pt;}
.y7_c00345{bottom:836.520000pt;}
.y6_c00345{bottom:868.520000pt;}
.y5_c00345{bottom:900.520000pt;}
.y4_c00345{bottom:932.520000pt;}
.y3_c00345{bottom:964.520000pt;}
.y2_c00345{bottom:1011.880000pt;}
.h7_c00345{height:17.116093pt;}
.h5_c00345{height:24.000000pt;}
.h6_c00345{height:42.908160pt;}
.h8_c00345{height:50.346667pt;}
.h4_c00345{height:50.928601pt;}
.h3_c00345{height:57.984000pt;}
.h2_c00345{height:1067.880000pt;}
.h0_c00345{height:1122.520000pt;}
.h1_c00345{height:1122.666667pt;}
.w4_c00345{width:14.826667pt;}
.w3_c00345{width:574.720000pt;}
.w2_c00345{width:767.960000pt;}
.w0_c00345{width:793.720000pt;}
.w1_c00345{width:794.000000pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:12.880000pt;}
.x6_c00345{left:79.267467pt;}
.x2_c00345{left:100.480133pt;}
.x5_c00345{left:110.480000pt;}
.x3_c00345{left:136.911467pt;}
.x4_c00345{left:245.742533pt;}
.x7_c00345{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4c4679c5b044123e833e574.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.134000;font-style:normal;font-weight:normal;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_948c72c17e03f3dc6582c75b.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;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:ff3_c00346;src:url('chunks/assets/font_d8058bca1d467c247ab53333.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00346{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00346{vertical-align:-30.240000px;}
.v3_c00346{vertical-align:-24.480000px;}
.v0_c00346{vertical-align:0.000000px;}
.v1_c00346{vertical-align:30.240000px;}
.lsf_c00346{letter-spacing:0.000000px;}
.ls3_c00346{letter-spacing:0.128640px;}
.lsb_c00346{letter-spacing:0.236160px;}
.ls15_c00346{letter-spacing:0.265680px;}
.lsa_c00346{letter-spacing:0.295200px;}
.ls1e_c00346{letter-spacing:0.318816px;}
.lse_c00346{letter-spacing:0.327292px;}
.lsc_c00346{letter-spacing:0.327911px;}
.ls7_c00346{letter-spacing:0.392040px;}
.ls1c_c00346{letter-spacing:0.425088px;}
.ls18_c00346{letter-spacing:0.438171px;}
.ls1a_c00346{letter-spacing:0.492942px;}
.lsd_c00346{letter-spacing:0.494773px;}
.ls16_c00346{letter-spacing:0.531360px;}
.ls21_c00346{letter-spacing:0.547713px;}
.ls19_c00346{letter-spacing:0.584496px;}
.ls1d_c00346{letter-spacing:0.602485px;}
.ls6_c00346{letter-spacing:0.632400px;}
.ls5_c00346{letter-spacing:0.687240px;}
.ls1f_c00346{letter-spacing:0.690768px;}
.ls4_c00346{letter-spacing:0.755640px;}
.ls8_c00346{letter-spacing:0.766440px;}
.ls17_c00346{letter-spacing:1.458288px;}
.ls11_c00346{letter-spacing:5.009472px;}
.ls12_c00346{letter-spacing:5.149872px;}
.ls13_c00346{letter-spacing:5.290272px;}
.ls10_c00346{letter-spacing:5.335200px;}
.ls14_c00346{letter-spacing:5.430672px;}
.ls9_c00346{letter-spacing:5.967000px;}
.ls1_c00346{letter-spacing:5.973600px;}
.ls0_c00346{letter-spacing:5.975400px;}
.ls2_c00346{letter-spacing:5.976000px;}
.ls1b_c00346{letter-spacing:6.193296px;}
.ls20_c00346{letter-spacing:8.655264px;}
.sc__c00346{text-shadow:none;}
.sc1_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00346{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc1_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00346{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00346{word-spacing:-25.992000px;}
.ws6_c00346{word-spacing:-21.043152px;}
.ws0_c00346{word-spacing:-20.947680px;}
.ws3_c00346{word-spacing:-20.902752px;}
.ws1_c00346{word-spacing:-20.621952px;}
.ws4_c00346{word-spacing:-20.016000px;}
.ws9_c00346{word-spacing:-17.520742px;}
.wsb_c00346{word-spacing:-17.103888px;}
.ws8_c00346{word-spacing:-16.944480px;}
.wsa_c00346{word-spacing:-16.731936px;}
.ws5_c00346{word-spacing:-11.609280px;}
.ws7_c00346{word-spacing:-10.008000px;}
.wsc_c00346{word-spacing:0.000000px;}
._11_c00346{margin-left:-8.974080px;}
._10_c00346{margin-left:-7.970400px;}
._f_c00346{margin-left:-5.726880px;}
._c_c00346{margin-left:-1.077000px;}
._0_c00346{width:1.088880px;}
._6_c00346{width:2.511120px;}
._9_c00346{width:4.320000px;}
._b_c00346{width:5.472000px;}
._a_c00346{width:6.984000px;}
._d_c00346{width:11.520000px;}
._7_c00346{width:12.528000px;}
._2_c00346{width:13.536000px;}
._3_c00346{width:15.264000px;}
._e_c00346{width:16.272000px;}
._5_c00346{width:21.024000px;}
._4_c00346{width:23.688000px;}
._8_c00346{width:25.848000px;}
._1_c00346{width:37.584000px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs4_c00346{font-size:36.000000px;}
.fs3_c00346{font-size:41.760000px;}
.fs7_c00346{font-size:48.982495px;}
.fs1_c00346{font-size:56.160000px;}
.fs5_c00346{font-size:59.040000px;}
.fs8_c00346{font-size:60.000000px;}
.fs6_c00346{font-size:60.857039px;}
.fs0_c00346{font-size:72.000000px;}
.fs2_c00346{font-size:74.215901px;}
.y0_c00346{bottom:0.000000px;}
.y31_c00346{bottom:3.120000px;}
.y30_c00346{bottom:34.744580px;}
.y1_c00346{bottom:54.000000px;}
.y2f_c00346{bottom:55.485000px;}
.y2e_c00346{bottom:61.605000px;}
.y2d_c00346{bottom:72.765000px;}
.y2c_c00346{bottom:78.885000px;}
.y2b_c00346{bottom:90.401040px;}
.y2a_c00346{bottom:113.805000px;}
.y29_c00346{bottom:131.445000px;}
.y27_c00346{bottom:142.961040px;}
.y28_c00346{bottom:142.965000px;}
.y26_c00346{bottom:160.245000px;}
.y25_c00346{bottom:184.005000px;}
.y24_c00346{bottom:201.645000px;}
.y23_c00346{bottom:218.925000px;}
.y22_c00346{bottom:245.565000px;}
.y21_c00346{bottom:300.285000px;}
.y20_c00346{bottom:336.285000px;}
.y1f_c00346{bottom:372.285000px;}
.y1e_c00346{bottom:408.285000px;}
.y1d_c00346{bottom:429.525000px;}
.y1c_c00346{bottom:465.525000px;}
.y1b_c00346{bottom:486.405000px;}
.y1a_c00346{bottom:507.285000px;}
.y19_c00346{bottom:543.285000px;}
.y18_c00346{bottom:581.805000px;}
.y17_c00346{bottom:619.965000px;}
.y16_c00346{bottom:655.965000px;}
.y15_c00346{bottom:676.845000px;}
.y14_c00346{bottom:697.725000px;}
.y13_c00346{bottom:718.965000px;}
.y12_c00346{bottom:739.845000px;}
.y11_c00346{bottom:761.085000px;}
.y10_c00346{bottom:781.965000px;}
.yf_c00346{bottom:817.965000px;}
.ye_c00346{bottom:838.845000px;}
.yd_c00346{bottom:860.085000px;}
.yc_c00346{bottom:880.965000px;}
.yb_c00346{bottom:901.845000px;}
.ya_c00346{bottom:923.085000px;}
.y9_c00346{bottom:943.965000px;}
.y8_c00346{bottom:964.845000px;}
.y7_c00346{bottom:986.085000px;}
.y6_c00346{bottom:1006.965000px;}
.y5_c00346{bottom:1027.845000px;}
.y4_c00346{bottom:1049.085000px;}
.y3_c00346{bottom:1085.085000px;}
.y2_c00346{bottom:1138.365000px;}
.h9_c00346{height:19.255605px;}
.h6_c00346{height:32.616000px;}
.h7_c00346{height:46.981634px;}
.h8_c00346{height:53.490240px;}
.ha_c00346{height:56.640000px;}
.h4_c00346{height:57.294676px;}
.h3_c00346{height:65.232000px;}
.h5_c00346{height:68.074560px;}
.h2_c00346{height:1201.365000px;}
.h0_c00346{height:1262.835000px;}
.h1_c00346{height:1263.000000px;}
.w3_c00346{width:16.680000px;}
.w2_c00346{width:863.955000px;}
.w0_c00346{width:892.935000px;}
.w1_c00346{width:893.250000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:14.490000px;}
.x2_c00346{left:113.040150px;}
.x18_c00346{left:122.213700px;}
.x12_c00346{left:134.515800px;}
.x19_c00346{left:152.165100px;}
.x5_c00346{left:154.802850px;}
.xa_c00346{left:170.063250px;}
.x6_c00346{left:207.829800px;}
.x13_c00346{left:250.662600px;}
.x14_c00346{left:268.152450px;}
.x10_c00346{left:317.048250px;}
.x17_c00346{left:332.251500px;}
.x3_c00346{left:354.973800px;}
.x11_c00346{left:415.855650px;}
.xf_c00346{left:417.720000px;}
.x7_c00346{left:426.595500px;}
.x15_c00346{left:452.224800px;}
.x4_c00346{left:487.379100px;}
.x16_c00346{left:491.389050px;}
.xb_c00346{left:504.294000px;}
.x8_c00346{left:526.353150px;}
.xd_c00346{left:527.917950px;}
.xe_c00346{left:590.934750px;}
.xc_c00346{left:607.331850px;}
.x9_c00346{left:698.388750px;}
.x1a_c00346{left:768.254608px;}
@media print{
.v2_c00346{vertical-align:-26.880000pt;}
.v3_c00346{vertical-align:-21.760000pt;}
.v0_c00346{vertical-align:0.000000pt;}
.v1_c00346{vertical-align:26.880000pt;}
.lsf_c00346{letter-spacing:0.000000pt;}
.ls3_c00346{letter-spacing:0.114347pt;}
.lsb_c00346{letter-spacing:0.209920pt;}
.ls15_c00346{letter-spacing:0.236160pt;}
.lsa_c00346{letter-spacing:0.262400pt;}
.ls1e_c00346{letter-spacing:0.283392pt;}
.lse_c00346{letter-spacing:0.290926pt;}
.lsc_c00346{letter-spacing:0.291476pt;}
.ls7_c00346{letter-spacing:0.348480pt;}
.ls1c_c00346{letter-spacing:0.377856pt;}
.ls18_c00346{letter-spacing:0.389485pt;}
.ls1a_c00346{letter-spacing:0.438171pt;}
.lsd_c00346{letter-spacing:0.439798pt;}
.ls16_c00346{letter-spacing:0.472320pt;}
.ls21_c00346{letter-spacing:0.486856pt;}
.ls19_c00346{letter-spacing:0.519552pt;}
.ls1d_c00346{letter-spacing:0.535542pt;}
.ls6_c00346{letter-spacing:0.562133pt;}
.ls5_c00346{letter-spacing:0.610880pt;}
.ls1f_c00346{letter-spacing:0.614016pt;}
.ls4_c00346{letter-spacing:0.671680pt;}
.ls8_c00346{letter-spacing:0.681280pt;}
.ls17_c00346{letter-spacing:1.296256pt;}
.ls11_c00346{letter-spacing:4.452864pt;}
.ls12_c00346{letter-spacing:4.577664pt;}
.ls13_c00346{letter-spacing:4.702464pt;}
.ls10_c00346{letter-spacing:4.742400pt;}
.ls14_c00346{letter-spacing:4.827264pt;}
.ls9_c00346{letter-spacing:5.304000pt;}
.ls1_c00346{letter-spacing:5.309867pt;}
.ls0_c00346{letter-spacing:5.311467pt;}
.ls2_c00346{letter-spacing:5.312000pt;}
.ls1b_c00346{letter-spacing:5.505152pt;}
.ls20_c00346{letter-spacing:7.693568pt;}
.ws2_c00346{word-spacing:-23.104000pt;}
.ws6_c00346{word-spacing:-18.705024pt;}
.ws0_c00346{word-spacing:-18.620160pt;}
.ws3_c00346{word-spacing:-18.580224pt;}
.ws1_c00346{word-spacing:-18.330624pt;}
.ws4_c00346{word-spacing:-17.792000pt;}
.ws9_c00346{word-spacing:-15.573992pt;}
.wsb_c00346{word-spacing:-15.203456pt;}
.ws8_c00346{word-spacing:-15.061760pt;}
.wsa_c00346{word-spacing:-14.872832pt;}
.ws5_c00346{word-spacing:-10.319360pt;}
.ws7_c00346{word-spacing:-8.896000pt;}
.wsc_c00346{word-spacing:0.000000pt;}
._11_c00346{margin-left:-7.976960pt;}
._10_c00346{margin-left:-7.084800pt;}
._f_c00346{margin-left:-5.090560pt;}
._c_c00346{margin-left:-0.957333pt;}
._0_c00346{width:0.967893pt;}
._6_c00346{width:2.232107pt;}
._9_c00346{width:3.840000pt;}
._b_c00346{width:4.864000pt;}
._a_c00346{width:6.208000pt;}
._d_c00346{width:10.240000pt;}
._7_c00346{width:11.136000pt;}
._2_c00346{width:12.032000pt;}
._3_c00346{width:13.568000pt;}
._e_c00346{width:14.464000pt;}
._5_c00346{width:18.688000pt;}
._4_c00346{width:21.056000pt;}
._8_c00346{width:22.976000pt;}
._1_c00346{width:33.408000pt;}
.fs4_c00346{font-size:32.000000pt;}
.fs3_c00346{font-size:37.120000pt;}
.fs7_c00346{font-size:43.539995pt;}
.fs1_c00346{font-size:49.920000pt;}
.fs5_c00346{font-size:52.480000pt;}
.fs8_c00346{font-size:53.333333pt;}
.fs6_c00346{font-size:54.095146pt;}
.fs0_c00346{font-size:64.000000pt;}
.fs2_c00346{font-size:65.969690pt;}
.y0_c00346{bottom:0.000000pt;}
.y31_c00346{bottom:2.773333pt;}
.y30_c00346{bottom:30.884071pt;}
.y1_c00346{bottom:48.000000pt;}
.y2f_c00346{bottom:49.320000pt;}
.y2e_c00346{bottom:54.760000pt;}
.y2d_c00346{bottom:64.680000pt;}
.y2c_c00346{bottom:70.120000pt;}
.y2b_c00346{bottom:80.356480pt;}
.y2a_c00346{bottom:101.160000pt;}
.y29_c00346{bottom:116.840000pt;}
.y27_c00346{bottom:127.076480pt;}
.y28_c00346{bottom:127.080000pt;}
.y26_c00346{bottom:142.440000pt;}
.y25_c00346{bottom:163.560000pt;}
.y24_c00346{bottom:179.240000pt;}
.y23_c00346{bottom:194.600000pt;}
.y22_c00346{bottom:218.280000pt;}
.y21_c00346{bottom:266.920000pt;}
.y20_c00346{bottom:298.920000pt;}
.y1f_c00346{bottom:330.920000pt;}
.y1e_c00346{bottom:362.920000pt;}
.y1d_c00346{bottom:381.800000pt;}
.y1c_c00346{bottom:413.800000pt;}
.y1b_c00346{bottom:432.360000pt;}
.y1a_c00346{bottom:450.920000pt;}
.y19_c00346{bottom:482.920000pt;}
.y18_c00346{bottom:517.160000pt;}
.y17_c00346{bottom:551.080000pt;}
.y16_c00346{bottom:583.080000pt;}
.y15_c00346{bottom:601.640000pt;}
.y14_c00346{bottom:620.200000pt;}
.y13_c00346{bottom:639.080000pt;}
.y12_c00346{bottom:657.640000pt;}
.y11_c00346{bottom:676.520000pt;}
.y10_c00346{bottom:695.080000pt;}
.yf_c00346{bottom:727.080000pt;}
.ye_c00346{bottom:745.640000pt;}
.yd_c00346{bottom:764.520000pt;}
.yc_c00346{bottom:783.080000pt;}
.yb_c00346{bottom:801.640000pt;}
.ya_c00346{bottom:820.520000pt;}
.y9_c00346{bottom:839.080000pt;}
.y8_c00346{bottom:857.640000pt;}
.y7_c00346{bottom:876.520000pt;}
.y6_c00346{bottom:895.080000pt;}
.y5_c00346{bottom:913.640000pt;}
.y4_c00346{bottom:932.520000pt;}
.y3_c00346{bottom:964.520000pt;}
.y2_c00346{bottom:1011.880000pt;}
.h9_c00346{height:17.116093pt;}
.h6_c00346{height:28.992000pt;}
.h7_c00346{height:41.761453pt;}
.h8_c00346{height:47.546880pt;}
.ha_c00346{height:50.346667pt;}
.h4_c00346{height:50.928601pt;}
.h3_c00346{height:57.984000pt;}
.h5_c00346{height:60.510720pt;}
.h2_c00346{height:1067.880000pt;}
.h0_c00346{height:1122.520000pt;}
.h1_c00346{height:1122.666667pt;}
.w3_c00346{width:14.826667pt;}
.w2_c00346{width:767.960000pt;}
.w0_c00346{width:793.720000pt;}
.w1_c00346{width:794.000000pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:12.880000pt;}
.x2_c00346{left:100.480133pt;}
.x18_c00346{left:108.634400pt;}
.x12_c00346{left:119.569600pt;}
.x19_c00346{left:135.257867pt;}
.x5_c00346{left:137.602533pt;}
.xa_c00346{left:151.167333pt;}
.x6_c00346{left:184.737600pt;}
.x13_c00346{left:222.811200pt;}
.x14_c00346{left:238.357733pt;}
.x10_c00346{left:281.820667pt;}
.x17_c00346{left:295.334667pt;}
.x3_c00346{left:315.532267pt;}
.x11_c00346{left:369.649467pt;}
.xf_c00346{left:371.306667pt;}
.x7_c00346{left:379.196000pt;}
.x15_c00346{left:401.977600pt;}
.x4_c00346{left:433.225867pt;}
.x16_c00346{left:436.790267pt;}
.xb_c00346{left:448.261333pt;}
.x8_c00346{left:467.869467pt;}
.xd_c00346{left:469.260400pt;}
.xe_c00346{left:525.275333pt;}
.xc_c00346{left:539.850533pt;}
.x9_c00346{left:620.790000pt;}
.x1a_c00346{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e94bcadbefb94430e5a3916a.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.134000;font-style:normal;font-weight:normal;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_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_4ba0f4ad57d39efe8fd00597.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;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:ff5_c00347;src:url('chunks/assets/font_c30bdfd11b82d0efdeb5156b.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;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:ff6_c00347;src:url('chunks/assets/font_e5c11c50fad14b2176680a32.woff2')format("woff");}.ff6_c00347{font-family:ff6_c00347;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00347{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00347{vertical-align:-24.480000px;}
.v0_c00347{vertical-align:0.000000px;}
.v1_c00347{vertical-align:30.240000px;}
.lsf_c00347{letter-spacing:-0.179568px;}
.lse_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:0.029400px;}
.ls2_c00347{letter-spacing:0.114840px;}
.ls15_c00347{letter-spacing:0.144000px;}
.lsc_c00347{letter-spacing:0.236160px;}
.ls14_c00347{letter-spacing:0.265680px;}
.ls13_c00347{letter-spacing:0.318816px;}
.ls5_c00347{letter-spacing:0.327292px;}
.ls8_c00347{letter-spacing:0.327911px;}
.ls9_c00347{letter-spacing:0.328282px;}
.ls7_c00347{letter-spacing:0.328900px;}
.ls12_c00347{letter-spacing:0.371952px;}
.ls19_c00347{letter-spacing:0.438171px;}
.lsb_c00347{letter-spacing:0.472320px;}
.ls18_c00347{letter-spacing:0.478224px;}
.ls6_c00347{letter-spacing:0.494773px;}
.lsd_c00347{letter-spacing:0.507744px;}
.lsa_c00347{letter-spacing:0.531360px;}
.ls11_c00347{letter-spacing:2.332080px;}
.ls10_c00347{letter-spacing:5.430672px;}
.ls0_c00347{letter-spacing:5.976000px;}
.ls3_c00347{letter-spacing:5.980200px;}
.ls17_c00347{letter-spacing:11.382912px;}
.ls16_c00347{letter-spacing:16.123824px;}
.ls4_c00347{letter-spacing:54.864000px;}
.sc__c00347{text-shadow:none;}
.sc1_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00347{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc1_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00347{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00347{word-spacing:-21.043152px;}
.ws2_c00347{word-spacing:-20.016000px;}
.ws0_c00347{word-spacing:-11.429712px;}
.ws4_c00347{word-spacing:-10.152000px;}
.ws3_c00347{word-spacing:-10.008000px;}
.ws5_c00347{word-spacing:-0.531360px;}
.ws6_c00347{word-spacing:0.000000px;}
._e_c00347{margin-left:-15.874560px;}
._f_c00347{margin-left:-14.840640px;}
._10_c00347{margin-left:-11.521440px;}
._11_c00347{margin-left:-10.500480px;}
._d_c00347{margin-left:-2.422080px;}
._5_c00347{margin-left:-1.179360px;}
._3_c00347{width:1.008000px;}
._7_c00347{width:2.088000px;}
._2_c00347{width:3.096000px;}
._9_c00347{width:4.248000px;}
._6_c00347{width:7.776000px;}
._c_c00347{width:10.872000px;}
._12_c00347{width:11.993472px;}
._a_c00347{width:13.536000px;}
._0_c00347{width:14.544000px;}
._4_c00347{width:15.552000px;}
._1_c00347{width:18.288000px;}
._8_c00347{width:21.168000px;}
._b_c00347{width:23.688000px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs4_c00347{font-size:36.000000px;}
.fs1_c00347{font-size:41.760000px;}
.fs7_c00347{font-size:48.982495px;}
.fs2_c00347{font-size:56.160000px;}
.fs5_c00347{font-size:59.040000px;}
.fs8_c00347{font-size:60.000000px;}
.fs6_c00347{font-size:60.857039px;}
.fs0_c00347{font-size:72.000000px;}
.fs3_c00347{font-size:74.215901px;}
.y0_c00347{bottom:0.000000px;}
.y30_c00347{bottom:3.120000px;}
.y2f_c00347{bottom:34.744580px;}
.y1_c00347{bottom:54.000000px;}
.y2e_c00347{bottom:61.605000px;}
.y2d_c00347{bottom:72.765000px;}
.y2c_c00347{bottom:72.766440px;}
.y2b_c00347{bottom:90.404640px;}
.y2a_c00347{bottom:108.042840px;}
.y29_c00347{bottom:125.326800px;}
.y28_c00347{bottom:142.965000px;}
.y27_c00347{bottom:149.085000px;}
.y26_c00347{bottom:166.365000px;}
.y25_c00347{bottom:177.886800px;}
.y24_c00347{bottom:195.525000px;}
.y23_c00347{bottom:201.645000px;}
.y22_c00347{bottom:228.285000px;}
.y21_c00347{bottom:289.845000px;}
.y20_c00347{bottom:310.725000px;}
.y1f_c00347{bottom:331.965000px;}
.y1e_c00347{bottom:367.965000px;}
.y1d_c00347{bottom:388.845000px;}
.y1c_c00347{bottom:409.725000px;}
.y1b_c00347{bottom:430.965000px;}
.y1a_c00347{bottom:451.845000px;}
.y19_c00347{bottom:472.725000px;}
.y18_c00347{bottom:493.965000px;}
.y17_c00347{bottom:529.965000px;}
.y16_c00347{bottom:565.965000px;}
.y15_c00347{bottom:601.965000px;}
.y14_c00347{bottom:622.845000px;}
.y13_c00347{bottom:658.845000px;}
.y12_c00347{bottom:694.845000px;}
.y11_c00347{bottom:716.085000px;}
.y10_c00347{bottom:736.965000px;}
.yf_c00347{bottom:757.845000px;}
.ye_c00347{bottom:779.085000px;}
.yd_c00347{bottom:815.085000px;}
.yc_c00347{bottom:851.085000px;}
.yb_c00347{bottom:887.085000px;}
.ya_c00347{bottom:923.085000px;}
.y9_c00347{bottom:943.965000px;}
.y8_c00347{bottom:964.845000px;}
.y7_c00347{bottom:986.085000px;}
.y6_c00347{bottom:1006.965000px;}
.y5_c00347{bottom:1042.965000px;}
.y4_c00347{bottom:1063.845000px;}
.y3_c00347{bottom:1085.085000px;}
.y2_c00347{bottom:1138.365000px;}
.h9_c00347{height:19.255605px;}
.h6_c00347{height:32.616000px;}
.h7_c00347{height:46.981634px;}
.h8_c00347{height:53.490240px;}
.ha_c00347{height:56.640000px;}
.h5_c00347{height:57.294676px;}
.h3_c00347{height:65.232000px;}
.h4_c00347{height:68.074560px;}
.h2_c00347{height:1201.365000px;}
.h0_c00347{height:1262.835000px;}
.h1_c00347{height:1263.000000px;}
.w3_c00347{width:16.680000px;}
.w2_c00347{width:863.955000px;}
.w0_c00347{width:892.935000px;}
.w1_c00347{width:893.250000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:14.490000px;}
.x2_c00347{left:113.040150px;}
.xa_c00347{left:129.041700px;}
.x3_c00347{left:140.037600px;}
.xb_c00347{left:143.045700px;}
.x11_c00347{left:144.920700px;}
.xc_c00347{left:163.043400px;}
.x12_c00347{left:179.557950px;}
.x13_c00347{left:244.961400px;}
.x14_c00347{left:279.907500px;}
.xd_c00347{left:302.037150px;}
.xe_c00347{left:315.015000px;}
.x4_c00347{left:355.027950px;}
.xf_c00347{left:460.055850px;}
.x5_c00347{left:465.996150px;}
.x15_c00347{left:492.301050px;}
.x16_c00347{left:512.295000px;}
.x10_c00347{left:532.090650px;}
.x6_c00347{left:580.914150px;}
.x7_c00347{left:596.535600px;}
.x17_c00347{left:623.200950px;}
.x8_c00347{left:732.390450px;}
.x9_c00347{left:745.386150px;}
.x18_c00347{left:768.254608px;}
@media print{
.v2_c00347{vertical-align:-21.760000pt;}
.v0_c00347{vertical-align:0.000000pt;}
.v1_c00347{vertical-align:26.880000pt;}
.lsf_c00347{letter-spacing:-0.159616pt;}
.lse_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:0.026133pt;}
.ls2_c00347{letter-spacing:0.102080pt;}
.ls15_c00347{letter-spacing:0.128000pt;}
.lsc_c00347{letter-spacing:0.209920pt;}
.ls14_c00347{letter-spacing:0.236160pt;}
.ls13_c00347{letter-spacing:0.283392pt;}
.ls5_c00347{letter-spacing:0.290926pt;}
.ls8_c00347{letter-spacing:0.291476pt;}
.ls9_c00347{letter-spacing:0.291806pt;}
.ls7_c00347{letter-spacing:0.292356pt;}
.ls12_c00347{letter-spacing:0.330624pt;}
.ls19_c00347{letter-spacing:0.389485pt;}
.lsb_c00347{letter-spacing:0.419840pt;}
.ls18_c00347{letter-spacing:0.425088pt;}
.ls6_c00347{letter-spacing:0.439798pt;}
.lsd_c00347{letter-spacing:0.451328pt;}
.lsa_c00347{letter-spacing:0.472320pt;}
.ls11_c00347{letter-spacing:2.072960pt;}
.ls10_c00347{letter-spacing:4.827264pt;}
.ls0_c00347{letter-spacing:5.312000pt;}
.ls3_c00347{letter-spacing:5.315733pt;}
.ls17_c00347{letter-spacing:10.118144pt;}
.ls16_c00347{letter-spacing:14.332288pt;}
.ls4_c00347{letter-spacing:48.768000pt;}
.ws1_c00347{word-spacing:-18.705024pt;}
.ws2_c00347{word-spacing:-17.792000pt;}
.ws0_c00347{word-spacing:-10.159744pt;}
.ws4_c00347{word-spacing:-9.024000pt;}
.ws3_c00347{word-spacing:-8.896000pt;}
.ws5_c00347{word-spacing:-0.472320pt;}
.ws6_c00347{word-spacing:0.000000pt;}
._e_c00347{margin-left:-14.110720pt;}
._f_c00347{margin-left:-13.191680pt;}
._10_c00347{margin-left:-10.241280pt;}
._11_c00347{margin-left:-9.333760pt;}
._d_c00347{margin-left:-2.152960pt;}
._5_c00347{margin-left:-1.048320pt;}
._3_c00347{width:0.896000pt;}
._7_c00347{width:1.856000pt;}
._2_c00347{width:2.752000pt;}
._9_c00347{width:3.776000pt;}
._6_c00347{width:6.912000pt;}
._c_c00347{width:9.664000pt;}
._12_c00347{width:10.660864pt;}
._a_c00347{width:12.032000pt;}
._0_c00347{width:12.928000pt;}
._4_c00347{width:13.824000pt;}
._1_c00347{width:16.256000pt;}
._8_c00347{width:18.816000pt;}
._b_c00347{width:21.056000pt;}
.fs4_c00347{font-size:32.000000pt;}
.fs1_c00347{font-size:37.120000pt;}
.fs7_c00347{font-size:43.539995pt;}
.fs2_c00347{font-size:49.920000pt;}
.fs5_c00347{font-size:52.480000pt;}
.fs8_c00347{font-size:53.333333pt;}
.fs6_c00347{font-size:54.095146pt;}
.fs0_c00347{font-size:64.000000pt;}
.fs3_c00347{font-size:65.969690pt;}
.y0_c00347{bottom:0.000000pt;}
.y30_c00347{bottom:2.773333pt;}
.y2f_c00347{bottom:30.884071pt;}
.y1_c00347{bottom:48.000000pt;}
.y2e_c00347{bottom:54.760000pt;}
.y2d_c00347{bottom:64.680000pt;}
.y2c_c00347{bottom:64.681280pt;}
.y2b_c00347{bottom:80.359680pt;}
.y2a_c00347{bottom:96.038080pt;}
.y29_c00347{bottom:111.401600pt;}
.y28_c00347{bottom:127.080000pt;}
.y27_c00347{bottom:132.520000pt;}
.y26_c00347{bottom:147.880000pt;}
.y25_c00347{bottom:158.121600pt;}
.y24_c00347{bottom:173.800000pt;}
.y23_c00347{bottom:179.240000pt;}
.y22_c00347{bottom:202.920000pt;}
.y21_c00347{bottom:257.640000pt;}
.y20_c00347{bottom:276.200000pt;}
.y1f_c00347{bottom:295.080000pt;}
.y1e_c00347{bottom:327.080000pt;}
.y1d_c00347{bottom:345.640000pt;}
.y1c_c00347{bottom:364.200000pt;}
.y1b_c00347{bottom:383.080000pt;}
.y1a_c00347{bottom:401.640000pt;}
.y19_c00347{bottom:420.200000pt;}
.y18_c00347{bottom:439.080000pt;}
.y17_c00347{bottom:471.080000pt;}
.y16_c00347{bottom:503.080000pt;}
.y15_c00347{bottom:535.080000pt;}
.y14_c00347{bottom:553.640000pt;}
.y13_c00347{bottom:585.640000pt;}
.y12_c00347{bottom:617.640000pt;}
.y11_c00347{bottom:636.520000pt;}
.y10_c00347{bottom:655.080000pt;}
.yf_c00347{bottom:673.640000pt;}
.ye_c00347{bottom:692.520000pt;}
.yd_c00347{bottom:724.520000pt;}
.yc_c00347{bottom:756.520000pt;}
.yb_c00347{bottom:788.520000pt;}
.ya_c00347{bottom:820.520000pt;}
.y9_c00347{bottom:839.080000pt;}
.y8_c00347{bottom:857.640000pt;}
.y7_c00347{bottom:876.520000pt;}
.y6_c00347{bottom:895.080000pt;}
.y5_c00347{bottom:927.080000pt;}
.y4_c00347{bottom:945.640000pt;}
.y3_c00347{bottom:964.520000pt;}
.y2_c00347{bottom:1011.880000pt;}
.h9_c00347{height:17.116093pt;}
.h6_c00347{height:28.992000pt;}
.h7_c00347{height:41.761453pt;}
.h8_c00347{height:47.546880pt;}
.ha_c00347{height:50.346667pt;}
.h5_c00347{height:50.928601pt;}
.h3_c00347{height:57.984000pt;}
.h4_c00347{height:60.510720pt;}
.h2_c00347{height:1067.880000pt;}
.h0_c00347{height:1122.520000pt;}
.h1_c00347{height:1122.666667pt;}
.w3_c00347{width:14.826667pt;}
.w2_c00347{width:767.960000pt;}
.w0_c00347{width:793.720000pt;}
.w1_c00347{width:794.000000pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:12.880000pt;}
.x2_c00347{left:100.480133pt;}
.xa_c00347{left:114.703733pt;}
.x3_c00347{left:124.477867pt;}
.xb_c00347{left:127.151733pt;}
.x11_c00347{left:128.818400pt;}
.xc_c00347{left:144.927467pt;}
.x12_c00347{left:159.607067pt;}
.x13_c00347{left:217.743467pt;}
.x14_c00347{left:248.806667pt;}
.xd_c00347{left:268.477467pt;}
.xe_c00347{left:280.013333pt;}
.x4_c00347{left:315.580400pt;}
.xf_c00347{left:408.938533pt;}
.x5_c00347{left:414.218800pt;}
.x15_c00347{left:437.600933pt;}
.x16_c00347{left:455.373333pt;}
.x10_c00347{left:472.969467pt;}
.x6_c00347{left:516.368133pt;}
.x7_c00347{left:530.253867pt;}
.x17_c00347{left:553.956400pt;}
.x8_c00347{left:651.013733pt;}
.x9_c00347{left:662.565467pt;}
.x18_c00347{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8514e5e1aa27ec5e194724a.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.134000;font-style:normal;font-weight:normal;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_11f7efda7b34c64a10426773.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;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:ff3_c00348;src:url('chunks/assets/font_42a9c21fcd1ee016a01567fe.woff2')format("woff");}.ff3_c00348{font-family:ff3_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:ff4_c00348;src:url('chunks/assets/font_6661b9a5a5de2ab86cc5c6d8.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00348;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00348{font-family:ff5_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:ff6_c00348;src:url('chunks/assets/font_9a77340e1dc29636318b0bd0.woff2')format("woff");}.ff6_c00348{font-family:ff6_c00348;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00348{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00348{vertical-align:-24.480000px;}
.v0_c00348{vertical-align:0.000000px;}
.v1_c00348{vertical-align:24.480000px;}
.v2_c00348{vertical-align:30.240000px;}
.ls20_c00348{letter-spacing:-0.179568px;}
.ls12_c00348{letter-spacing:0.000000px;}
.ls21_c00348{letter-spacing:0.144000px;}
.lsc_c00348{letter-spacing:0.236160px;}
.ls14_c00348{letter-spacing:0.242064px;}
.ls15_c00348{letter-spacing:0.265680px;}
.ls7_c00348{letter-spacing:0.289296px;}
.ls6_c00348{letter-spacing:0.295200px;}
.lsa_c00348{letter-spacing:0.317520px;}
.ls1c_c00348{letter-spacing:0.318816px;}
.ls4_c00348{letter-spacing:0.327292px;}
.ls2_c00348{letter-spacing:0.327911px;}
.ls27_c00348{letter-spacing:0.328628px;}
.ls5_c00348{letter-spacing:0.328900px;}
.ls25_c00348{letter-spacing:0.371952px;}
.ls26_c00348{letter-spacing:0.383399px;}
.ls24_c00348{letter-spacing:0.425088px;}
.ls28_c00348{letter-spacing:0.438171px;}
.ls18_c00348{letter-spacing:0.478224px;}
.lsb_c00348{letter-spacing:0.492942px;}
.ls3_c00348{letter-spacing:0.494773px;}
.ls8_c00348{letter-spacing:0.531360px;}
.ls1_c00348{letter-spacing:0.547713px;}
.ls9_c00348{letter-spacing:0.549072px;}
.ls13_c00348{letter-spacing:0.584496px;}
.ls1b_c00348{letter-spacing:0.602485px;}
.ls1e_c00348{letter-spacing:0.690768px;}
.lsd_c00348{letter-spacing:0.712027px;}
.ls16_c00348{letter-spacing:0.743904px;}
.ls23_c00348{letter-spacing:0.797040px;}
.ls19_c00348{letter-spacing:0.962352px;}
.lse_c00348{letter-spacing:1.121760px;}
.ls29_c00348{letter-spacing:2.426544px;}
.ls17_c00348{letter-spacing:2.946096px;}
.ls2a_c00348{letter-spacing:3.152736px;}
.ls1f_c00348{letter-spacing:5.430672px;}
.ls11_c00348{letter-spacing:5.975400px;}
.ls0_c00348{letter-spacing:5.976000px;}
.lsf_c00348{letter-spacing:6.022080px;}
.ls10_c00348{letter-spacing:7.084800px;}
.ls1a_c00348{letter-spacing:7.102512px;}
.ls1d_c00348{letter-spacing:7.580736px;}
.ls22_c00348{letter-spacing:14.878080px;}
.sc__c00348{text-shadow:none;}
.sc1_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00348{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc1_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00348{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00348{word-spacing:-21.043152px;}
.ws2_c00348{word-spacing:-17.630284px;}
.ws1_c00348{word-spacing:-17.520742px;}
.ws0_c00348{word-spacing:-16.944480px;}
.ws4_c00348{word-spacing:-11.429712px;}
.ws5_c00348{word-spacing:-10.152000px;}
.ws6_c00348{word-spacing:0.000000px;}
._e_c00348{margin-left:-15.426720px;}
._d_c00348{margin-left:-14.398560px;}
._f_c00348{margin-left:-13.384800px;}
._c_c00348{margin-left:-7.627968px;}
._9_c00348{margin-left:-6.553440px;}
._15_c00348{margin-left:-3.548304px;}
._6_c00348{margin-left:-2.367504px;}
._4_c00348{margin-left:-1.127664px;}
._2_c00348{width:1.062720px;}
._5_c00348{width:2.125440px;}
._1_c00348{width:3.601440px;}
._3_c00348{width:4.959360px;}
._8_c00348{width:6.417648px;}
._7_c00348{width:7.645680px;}
._a_c00348{width:9.682560px;}
._b_c00348{width:11.306160px;}
._10_c00348{width:13.396320px;}
._11_c00348{width:18.538560px;}
._12_c00348{width:19.577664px;}
._13_c00348{width:27.081382px;}
._14_c00348{width:28.148189px;}
._0_c00348{width:112.511306px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs5_c00348{font-size:36.000000px;}
.fs8_c00348{font-size:41.760000px;}
.fs4_c00348{font-size:48.982495px;}
.fs7_c00348{font-size:56.160000px;}
.fs2_c00348{font-size:59.040000px;}
.fs9_c00348{font-size:60.000000px;}
.fs3_c00348{font-size:60.857039px;}
.fs6_c00348{font-size:66.794311px;}
.fs0_c00348{font-size:72.000000px;}
.fs1_c00348{font-size:74.215901px;}
.y0_c00348{bottom:0.000000px;}
.y37_c00348{bottom:3.120000px;}
.y36_c00348{bottom:34.744580px;}
.y1_c00348{bottom:54.000000px;}
.y35_c00348{bottom:55.482840px;}
.y34_c00348{bottom:72.766800px;}
.y33_c00348{bottom:96.525000px;}
.y32_c00348{bottom:113.805000px;}
.y31_c00348{bottom:113.806800px;}
.y2f_c00348{bottom:131.441040px;}
.y30_c00348{bottom:131.445000px;}
.y2d_c00348{bottom:148.722480px;}
.y2e_c00348{bottom:148.725000px;}
.y2c_c00348{bottom:166.360680px;}
.y2b_c00348{bottom:183.998880px;}
.y2a_c00348{bottom:201.282840px;}
.y29_c00348{bottom:218.921040px;}
.y27_c00348{bottom:236.204640px;}
.y28_c00348{bottom:236.205000px;}
.y26_c00348{bottom:253.842840px;}
.y25_c00348{bottom:271.481040px;}
.y24_c00348{bottom:294.885000px;}
.y23_c00348{bottom:321.525000px;}
.y22_c00348{bottom:380.925000px;}
.y21_c00348{bottom:401.805000px;}
.y20_c00348{bottom:423.045000px;}
.y1f_c00348{bottom:443.925000px;}
.y1e_c00348{bottom:464.805000px;}
.y1d_c00348{bottom:486.045000px;}
.y1c_c00348{bottom:506.925000px;}
.y1b_c00348{bottom:527.805000px;}
.y1a_c00348{bottom:563.805000px;}
.y19_c00348{bottom:599.805000px;}
.y18_c00348{bottom:626.442480px;}
.y17_c00348{bottom:644.080680px;}
.y16_c00348{bottom:661.364640px;}
.y15_c00348{bottom:679.002840px;}
.y14_c00348{bottom:696.286800px;}
.y13_c00348{bottom:713.925000px;}
.y11_c00348{bottom:739.121040px;}
.y12_c00348{bottom:739.125000px;}
.yf_c00348{bottom:756.402840px;}
.y10_c00348{bottom:756.405000px;}
.ye_c00348{bottom:774.041040px;}
.yd_c00348{bottom:791.325000px;}
.yc_c00348{bottom:816.529680px;}
.yb_c00348{bottom:841.725000px;}
.ya_c00348{bottom:866.925000px;}
.y9_c00348{bottom:895.725000px;}
.y8_c00348{bottom:924.525000px;}
.y7_c00348{bottom:953.325000px;}
.y6_c00348{bottom:981.765000px;}
.y5_c00348{bottom:1013.445000px;}
.y4_c00348{bottom:1049.085000px;}
.y3_c00348{bottom:1085.085000px;}
.y2_c00348{bottom:1138.365000px;}
.hd_c00348{height:19.255605px;}
.hc_c00348{height:32.616000px;}
.h8_c00348{height:39.350391px;}
.h7_c00348{height:46.981634px;}
.h5_c00348{height:47.988281px;}
.ha_c00348{height:51.565208px;}
.h6_c00348{height:53.490240px;}
.he_c00348{height:56.640000px;}
.h9_c00348{height:57.096000px;}
.h4_c00348{height:57.294676px;}
.h3_c00348{height:65.232000px;}
.hb_c00348{height:68.074560px;}
.h2_c00348{height:1201.365000px;}
.h0_c00348{height:1262.835000px;}
.h1_c00348{height:1263.000000px;}
.w3_c00348{width:16.680000px;}
.w2_c00348{width:863.955000px;}
.w0_c00348{width:892.935000px;}
.w1_c00348{width:893.250000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:14.490000px;}
.x2_c00348{left:113.040150px;}
.x1e_c00348{left:133.034550px;}
.xc_c00348{left:147.223350px;}
.x19_c00348{left:168.058200px;}
.xd_c00348{left:192.252000px;}
.xe_c00348{left:199.752000px;}
.xf_c00348{left:207.252000px;}
.x1a_c00348{left:212.246700px;}
.x10_c00348{left:215.591250px;}
.x1b_c00348{left:242.197950px;}
.x4_c00348{left:283.140000px;}
.x5_c00348{left:325.439550px;}
.x1c_c00348{left:347.194350px;}
.x11_c00348{left:354.081600px;}
.x12_c00348{left:384.935700px;}
.x1d_c00348{left:386.358750px;}
.x7_c00348{left:391.463400px;}
.x13_c00348{left:394.919250px;}
.x8_c00348{left:395.963400px;}
.x14_c00348{left:400.798800px;}
.x9_c00348{left:419.452200px;}
.xa_c00348{left:428.452200px;}
.x3_c00348{left:431.712150px;}
.x6_c00348{left:435.940050px;}
.x20_c00348{left:479.220600px;}
.xb_c00348{left:493.430850px;}
.x21_c00348{left:563.069100px;}
.x15_c00348{left:582.667950px;}
.x16_c00348{left:602.647650px;}
.x1f_c00348{left:616.371150px;}
.x17_c00348{left:687.002550px;}
.x18_c00348{left:706.982250px;}
.x22_c00348{left:768.254608px;}
@media print{
.v3_c00348{vertical-align:-21.760000pt;}
.v0_c00348{vertical-align:0.000000pt;}
.v1_c00348{vertical-align:21.760000pt;}
.v2_c00348{vertical-align:26.880000pt;}
.ls20_c00348{letter-spacing:-0.159616pt;}
.ls12_c00348{letter-spacing:0.000000pt;}
.ls21_c00348{letter-spacing:0.128000pt;}
.lsc_c00348{letter-spacing:0.209920pt;}
.ls14_c00348{letter-spacing:0.215168pt;}
.ls15_c00348{letter-spacing:0.236160pt;}
.ls7_c00348{letter-spacing:0.257152pt;}
.ls6_c00348{letter-spacing:0.262400pt;}
.lsa_c00348{letter-spacing:0.282240pt;}
.ls1c_c00348{letter-spacing:0.283392pt;}
.ls4_c00348{letter-spacing:0.290926pt;}
.ls2_c00348{letter-spacing:0.291476pt;}
.ls27_c00348{letter-spacing:0.292114pt;}
.ls5_c00348{letter-spacing:0.292356pt;}
.ls25_c00348{letter-spacing:0.330624pt;}
.ls26_c00348{letter-spacing:0.340799pt;}
.ls24_c00348{letter-spacing:0.377856pt;}
.ls28_c00348{letter-spacing:0.389485pt;}
.ls18_c00348{letter-spacing:0.425088pt;}
.lsb_c00348{letter-spacing:0.438171pt;}
.ls3_c00348{letter-spacing:0.439798pt;}
.ls8_c00348{letter-spacing:0.472320pt;}
.ls1_c00348{letter-spacing:0.486856pt;}
.ls9_c00348{letter-spacing:0.488064pt;}
.ls13_c00348{letter-spacing:0.519552pt;}
.ls1b_c00348{letter-spacing:0.535542pt;}
.ls1e_c00348{letter-spacing:0.614016pt;}
.lsd_c00348{letter-spacing:0.632913pt;}
.ls16_c00348{letter-spacing:0.661248pt;}
.ls23_c00348{letter-spacing:0.708480pt;}
.ls19_c00348{letter-spacing:0.855424pt;}
.lse_c00348{letter-spacing:0.997120pt;}
.ls29_c00348{letter-spacing:2.156928pt;}
.ls17_c00348{letter-spacing:2.618752pt;}
.ls2a_c00348{letter-spacing:2.802432pt;}
.ls1f_c00348{letter-spacing:4.827264pt;}
.ls11_c00348{letter-spacing:5.311467pt;}
.ls0_c00348{letter-spacing:5.312000pt;}
.lsf_c00348{letter-spacing:5.352960pt;}
.ls10_c00348{letter-spacing:6.297600pt;}
.ls1a_c00348{letter-spacing:6.313344pt;}
.ls1d_c00348{letter-spacing:6.738432pt;}
.ls22_c00348{letter-spacing:13.224960pt;}
.ws3_c00348{word-spacing:-18.705024pt;}
.ws2_c00348{word-spacing:-15.671364pt;}
.ws1_c00348{word-spacing:-15.573992pt;}
.ws0_c00348{word-spacing:-15.061760pt;}
.ws4_c00348{word-spacing:-10.159744pt;}
.ws5_c00348{word-spacing:-9.024000pt;}
.ws6_c00348{word-spacing:0.000000pt;}
._e_c00348{margin-left:-13.712640pt;}
._d_c00348{margin-left:-12.798720pt;}
._f_c00348{margin-left:-11.897600pt;}
._c_c00348{margin-left:-6.780416pt;}
._9_c00348{margin-left:-5.825280pt;}
._15_c00348{margin-left:-3.154048pt;}
._6_c00348{margin-left:-2.104448pt;}
._4_c00348{margin-left:-1.002368pt;}
._2_c00348{width:0.944640pt;}
._5_c00348{width:1.889280pt;}
._1_c00348{width:3.201280pt;}
._3_c00348{width:4.408320pt;}
._8_c00348{width:5.704576pt;}
._7_c00348{width:6.796160pt;}
._a_c00348{width:8.606720pt;}
._b_c00348{width:10.049920pt;}
._10_c00348{width:11.907840pt;}
._11_c00348{width:16.478720pt;}
._12_c00348{width:17.402368pt;}
._13_c00348{width:24.072340pt;}
._14_c00348{width:25.020613pt;}
._0_c00348{width:100.010050pt;}
.fs5_c00348{font-size:32.000000pt;}
.fs8_c00348{font-size:37.120000pt;}
.fs4_c00348{font-size:43.539995pt;}
.fs7_c00348{font-size:49.920000pt;}
.fs2_c00348{font-size:52.480000pt;}
.fs9_c00348{font-size:53.333333pt;}
.fs3_c00348{font-size:54.095146pt;}
.fs6_c00348{font-size:59.372721pt;}
.fs0_c00348{font-size:64.000000pt;}
.fs1_c00348{font-size:65.969690pt;}
.y0_c00348{bottom:0.000000pt;}
.y37_c00348{bottom:2.773333pt;}
.y36_c00348{bottom:30.884071pt;}
.y1_c00348{bottom:48.000000pt;}
.y35_c00348{bottom:49.318080pt;}
.y34_c00348{bottom:64.681600pt;}
.y33_c00348{bottom:85.800000pt;}
.y32_c00348{bottom:101.160000pt;}
.y31_c00348{bottom:101.161600pt;}
.y2f_c00348{bottom:116.836480pt;}
.y30_c00348{bottom:116.840000pt;}
.y2d_c00348{bottom:132.197760pt;}
.y2e_c00348{bottom:132.200000pt;}
.y2c_c00348{bottom:147.876160pt;}
.y2b_c00348{bottom:163.554560pt;}
.y2a_c00348{bottom:178.918080pt;}
.y29_c00348{bottom:194.596480pt;}
.y27_c00348{bottom:209.959680pt;}
.y28_c00348{bottom:209.960000pt;}
.y26_c00348{bottom:225.638080pt;}
.y25_c00348{bottom:241.316480pt;}
.y24_c00348{bottom:262.120000pt;}
.y23_c00348{bottom:285.800000pt;}
.y22_c00348{bottom:338.600000pt;}
.y21_c00348{bottom:357.160000pt;}
.y20_c00348{bottom:376.040000pt;}
.y1f_c00348{bottom:394.600000pt;}
.y1e_c00348{bottom:413.160000pt;}
.y1d_c00348{bottom:432.040000pt;}
.y1c_c00348{bottom:450.600000pt;}
.y1b_c00348{bottom:469.160000pt;}
.y1a_c00348{bottom:501.160000pt;}
.y19_c00348{bottom:533.160000pt;}
.y18_c00348{bottom:556.837760pt;}
.y17_c00348{bottom:572.516160pt;}
.y16_c00348{bottom:587.879680pt;}
.y15_c00348{bottom:603.558080pt;}
.y14_c00348{bottom:618.921600pt;}
.y13_c00348{bottom:634.600000pt;}
.y11_c00348{bottom:656.996480pt;}
.y12_c00348{bottom:657.000000pt;}
.yf_c00348{bottom:672.358080pt;}
.y10_c00348{bottom:672.360000pt;}
.ye_c00348{bottom:688.036480pt;}
.yd_c00348{bottom:703.400000pt;}
.yc_c00348{bottom:725.804160pt;}
.yb_c00348{bottom:748.200000pt;}
.ya_c00348{bottom:770.600000pt;}
.y9_c00348{bottom:796.200000pt;}
.y8_c00348{bottom:821.800000pt;}
.y7_c00348{bottom:847.400000pt;}
.y6_c00348{bottom:872.680000pt;}
.y5_c00348{bottom:900.840000pt;}
.y4_c00348{bottom:932.520000pt;}
.y3_c00348{bottom:964.520000pt;}
.y2_c00348{bottom:1011.880000pt;}
.hd_c00348{height:17.116093pt;}
.hc_c00348{height:28.992000pt;}
.h8_c00348{height:34.978125pt;}
.h7_c00348{height:41.761453pt;}
.h5_c00348{height:42.656250pt;}
.ha_c00348{height:45.835741pt;}
.h6_c00348{height:47.546880pt;}
.he_c00348{height:50.346667pt;}
.h9_c00348{height:50.752000pt;}
.h4_c00348{height:50.928601pt;}
.h3_c00348{height:57.984000pt;}
.hb_c00348{height:60.510720pt;}
.h2_c00348{height:1067.880000pt;}
.h0_c00348{height:1122.520000pt;}
.h1_c00348{height:1122.666667pt;}
.w3_c00348{width:14.826667pt;}
.w2_c00348{width:767.960000pt;}
.w0_c00348{width:793.720000pt;}
.w1_c00348{width:794.000000pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:12.880000pt;}
.x2_c00348{left:100.480133pt;}
.x1e_c00348{left:118.252933pt;}
.xc_c00348{left:130.865200pt;}
.x19_c00348{left:149.385067pt;}
.xd_c00348{left:170.890667pt;}
.xe_c00348{left:177.557333pt;}
.xf_c00348{left:184.224000pt;}
.x1a_c00348{left:188.663733pt;}
.x10_c00348{left:191.636667pt;}
.x1b_c00348{left:215.287067pt;}
.x4_c00348{left:251.680000pt;}
.x5_c00348{left:289.279600pt;}
.x1c_c00348{left:308.617200pt;}
.x11_c00348{left:314.739200pt;}
.x12_c00348{left:342.165067pt;}
.x1d_c00348{left:343.430000pt;}
.x7_c00348{left:347.967467pt;}
.x13_c00348{left:351.039333pt;}
.x8_c00348{left:351.967467pt;}
.x14_c00348{left:356.265600pt;}
.x9_c00348{left:372.846400pt;}
.xa_c00348{left:380.846400pt;}
.x3_c00348{left:383.744133pt;}
.x6_c00348{left:387.502267pt;}
.x20_c00348{left:425.973867pt;}
.xb_c00348{left:438.605200pt;}
.x21_c00348{left:500.505867pt;}
.x15_c00348{left:517.927067pt;}
.x16_c00348{left:535.686800pt;}
.x1f_c00348{left:547.885467pt;}
.x17_c00348{left:610.668933pt;}
.x18_c00348{left:628.428667pt;}
.x22_c00348{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45337fd7b7f14b6cc0120c56.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.134000;font-style:normal;font-weight:normal;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_9891c88238a42bb780ca6c56.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;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:ff3_c00349;src:url('chunks/assets/font_c4a48cec784b42db5648f313.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00349{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00349{vertical-align:-30.240000px;}
.v3_c00349{vertical-align:-24.480000px;}
.v0_c00349{vertical-align:0.000000px;}
.v1_c00349{vertical-align:30.240000px;}
.ls14_c00349{letter-spacing:-0.179568px;}
.ls13_c00349{letter-spacing:0.000000px;}
.ls15_c00349{letter-spacing:0.144000px;}
.ls6_c00349{letter-spacing:0.236160px;}
.ls10_c00349{letter-spacing:0.265680px;}
.ls1f_c00349{letter-spacing:0.273857px;}
.lsc_c00349{letter-spacing:0.295200px;}
.ls23_c00349{letter-spacing:0.318816px;}
.ls4_c00349{letter-spacing:0.327292px;}
.ls2a_c00349{letter-spacing:0.328628px;}
.lsd_c00349{letter-spacing:0.354240px;}
.ls7_c00349{letter-spacing:0.371952px;}
.ls2d_c00349{letter-spacing:0.383399px;}
.ls12_c00349{letter-spacing:0.401472px;}
.lse_c00349{letter-spacing:0.413280px;}
.ls19_c00349{letter-spacing:0.425088px;}
.ls1d_c00349{letter-spacing:0.438171px;}
.ls22_c00349{letter-spacing:0.478224px;}
.ls5_c00349{letter-spacing:0.494773px;}
.ls3_c00349{letter-spacing:0.514200px;}
.ls8_c00349{letter-spacing:0.531360px;}
.lsb_c00349{letter-spacing:0.537264px;}
.ls11_c00349{letter-spacing:0.547713px;}
.ls2_c00349{letter-spacing:0.564000px;}
.ls1e_c00349{letter-spacing:0.584496px;}
.ls24_c00349{letter-spacing:0.690768px;}
.ls26_c00349{letter-spacing:0.696672px;}
.ls9_c00349{letter-spacing:0.712027px;}
.ls17_c00349{letter-spacing:0.718113px;}
.ls28_c00349{letter-spacing:0.743904px;}
.ls27_c00349{letter-spacing:0.766799px;}
.lsf_c00349{letter-spacing:0.821570px;}
.ls1a_c00349{letter-spacing:0.962352px;}
.ls29_c00349{letter-spacing:0.991970px;}
.ls1_c00349{letter-spacing:1.800000px;}
.ls1b_c00349{letter-spacing:2.633184px;}
.ls2b_c00349{letter-spacing:3.926160px;}
.ls31_c00349{letter-spacing:4.233168px;}
.ls25_c00349{letter-spacing:4.794048px;}
.ls2e_c00349{letter-spacing:5.024304px;}
.ls21_c00349{letter-spacing:5.514336px;}
.ls30_c00349{letter-spacing:5.685552px;}
.ls0_c00349{letter-spacing:5.976000px;}
.ls1c_c00349{letter-spacing:6.411744px;}
.ls2c_c00349{letter-spacing:7.273728px;}
.ls20_c00349{letter-spacing:8.832384px;}
.ls18_c00349{letter-spacing:9.239760px;}
.lsa_c00349{letter-spacing:10.213920px;}
.ls16_c00349{letter-spacing:11.382912px;}
.ls2f_c00349{letter-spacing:18.987264px;}
.sc__c00349{text-shadow:none;}
.sc1_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00349{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc1_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00349{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00349{word-spacing:-21.927456px;}
.ws0_c00349{word-spacing:-20.016000px;}
.wsb_c00349{word-spacing:-17.739827px;}
.ws3_c00349{word-spacing:-17.636370px;}
.ws6_c00349{word-spacing:-17.630284px;}
.wsd_c00349{word-spacing:-17.465970px;}
.ws8_c00349{word-spacing:-17.356428px;}
.wsa_c00349{word-spacing:-17.301656px;}
.ws9_c00349{word-spacing:-17.246885px;}
.ws4_c00349{word-spacing:-17.192114px;}
.ws7_c00349{word-spacing:-17.109792px;}
.wsc_c00349{word-spacing:-16.944480px;}
.ws1_c00349{word-spacing:-11.429712px;}
.ws2_c00349{word-spacing:-10.152000px;}
.wse_c00349{word-spacing:0.000000px;}
._18_c00349{margin-left:-18.767520px;}
._19_c00349{margin-left:-17.674560px;}
._d_c00349{margin-left:-11.092320px;}
._e_c00349{margin-left:-10.013760px;}
._11_c00349{margin-left:-8.915040px;}
._12_c00349{margin-left:-7.911360px;}
._15_c00349{margin-left:-5.896800px;}
._16_c00349{margin-left:-4.479840px;}
._17_c00349{margin-left:-3.405600px;}
._14_c00349{margin-left:-2.354400px;}
._f_c00349{margin-left:-1.062720px;}
._3_c00349{width:1.872000px;}
._5_c00349{width:3.384000px;}
._9_c00349{width:4.536000px;}
._b_c00349{width:5.760000px;}
._10_c00349{width:8.442720px;}
._13_c00349{width:9.594000px;}
._a_c00349{width:10.917216px;}
._4_c00349{width:12.816000px;}
._8_c00349{width:13.896000px;}
._c_c00349{width:14.976000px;}
._0_c00349{width:17.424000px;}
._1a_c00349{width:19.217664px;}
._2_c00349{width:21.914184px;}
._1_c00349{width:23.157816px;}
._7_c00349{width:24.178920px;}
._6_c00349{width:31.176000px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs3_c00349{font-size:36.000000px;}
.fs1_c00349{font-size:41.760000px;}
.fs6_c00349{font-size:48.982495px;}
.fs4_c00349{font-size:59.040000px;}
.fs7_c00349{font-size:60.000000px;}
.fs5_c00349{font-size:60.857039px;}
.fs0_c00349{font-size:72.000000px;}
.fs2_c00349{font-size:74.215901px;}
.y0_c00349{bottom:0.000000px;}
.y46_c00349{bottom:3.120000px;}
.y45_c00349{bottom:34.744580px;}
.y1_c00349{bottom:54.000000px;}
.y44_c00349{bottom:55.478880px;}
.y43_c00349{bottom:72.762840px;}
.y42_c00349{bottom:90.401040px;}
.y41_c00349{bottom:107.685000px;}
.y40_c00349{bottom:107.688600px;}
.y3f_c00349{bottom:125.326800px;}
.y3e_c00349{bottom:149.085000px;}
.y3d_c00349{bottom:160.246800px;}
.y3c_c00349{bottom:177.885000px;}
.y3b_c00349{bottom:184.005000px;}
.y3a_c00349{bottom:195.525000px;}
.y39_c00349{bottom:218.925000px;}
.y37_c00349{bottom:230.441040px;}
.y38_c00349{bottom:230.445000px;}
.y36_c00349{bottom:247.725000px;}
.y35_c00349{bottom:247.726800px;}
.y34_c00349{bottom:265.365000px;}
.y33_c00349{bottom:265.366800px;}
.y32_c00349{bottom:289.125000px;}
.y31_c00349{bottom:300.286800px;}
.y30_c00349{bottom:324.045000px;}
.y2f_c00349{bottom:335.565000px;}
.y2e_c00349{bottom:352.845000px;}
.y2d_c00349{bottom:352.846800px;}
.y2c_c00349{bottom:370.485000px;}
.y2b_c00349{bottom:376.605000px;}
.y2a_c00349{bottom:387.768600px;}
.y29_c00349{bottom:405.406800px;}
.y27_c00349{bottom:423.042840px;}
.y28_c00349{bottom:423.045000px;}
.y26_c00349{bottom:440.326800px;}
.y25_c00349{bottom:457.965000px;}
.y24_c00349{bottom:457.966800px;}
.y23_c00349{bottom:475.605000px;}
.y22_c00349{bottom:481.725000px;}
.y21_c00349{bottom:492.886800px;}
.y20_c00349{bottom:516.645000px;}
.y1f_c00349{bottom:527.805000px;}
.y1e_c00349{bottom:527.806800px;}
.y1d_c00349{bottom:545.445000px;}
.y1c_c00349{bottom:545.446800px;}
.y1b_c00349{bottom:569.205000px;}
.y1a_c00349{bottom:595.845000px;}
.y19_c00349{bottom:619.965000px;}
.y17_c00349{bottom:640.845000px;}
.y18_c00349{bottom:648.405000px;}
.y16_c00349{bottom:661.725000px;}
.y15_c00349{bottom:682.965000px;}
.y14_c00349{bottom:703.845000px;}
.y13_c00349{bottom:739.845000px;}
.y12_c00349{bottom:761.085000px;}
.y11_c00349{bottom:781.965000px;}
.yf_c00349{bottom:802.845000px;}
.y10_c00349{bottom:810.405000px;}
.ye_c00349{bottom:824.085000px;}
.yd_c00349{bottom:844.965000px;}
.yc_c00349{bottom:880.965000px;}
.yb_c00349{bottom:901.845000px;}
.ya_c00349{bottom:923.085000px;}
.y9_c00349{bottom:943.965000px;}
.y8_c00349{bottom:979.965000px;}
.y7_c00349{bottom:1000.845000px;}
.y6_c00349{bottom:1022.085000px;}
.y5_c00349{bottom:1042.965000px;}
.y4_c00349{bottom:1063.845000px;}
.y3_c00349{bottom:1085.085000px;}
.y2_c00349{bottom:1138.365000px;}
.ha_c00349{height:19.255605px;}
.h7_c00349{height:32.616000px;}
.h6_c00349{height:37.834560px;}
.h9_c00349{height:46.981634px;}
.h8_c00349{height:53.490240px;}
.hb_c00349{height:56.640000px;}
.h5_c00349{height:57.294676px;}
.h3_c00349{height:65.232000px;}
.h4_c00349{height:68.074560px;}
.h2_c00349{height:1201.365000px;}
.h0_c00349{height:1262.835000px;}
.h1_c00349{height:1263.000000px;}
.w3_c00349{width:16.680000px;}
.w2_c00349{width:863.955000px;}
.w0_c00349{width:892.935000px;}
.w1_c00349{width:893.250000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:14.490000px;}
.x2_c00349{left:113.040150px;}
.x2d_c00349{left:121.379850px;}
.x13_c00349{left:123.048000px;}
.x41_c00349{left:133.034250px;}
.x10_c00349{left:155.033550px;}
.x14_c00349{left:165.041400px;}
.x2e_c00349{left:169.678650px;}
.xe_c00349{left:173.880000px;}
.x37_c00349{left:177.977850px;}
.x2f_c00349{left:189.671250px;}
.x38_c00349{left:211.306950px;}
.x30_c00349{left:214.645800px;}
.x2b_c00349{left:219.802800px;}
.x39_c00349{left:228.363300px;}
.xd_c00349{left:249.027450px;}
.x3_c00349{left:260.831250px;}
.x3a_c00349{left:262.547250px;}
.x35_c00349{left:268.270800px;}
.x2c_c00349{left:269.766750px;}
.x15_c00349{left:271.155000px;}
.x7_c00349{left:274.664400px;}
.x40_c00349{left:276.355200px;}
.x29_c00349{left:290.749800px;}
.x31_c00349{left:296.313000px;}
.x36_c00349{left:302.454750px;}
.x3b_c00349{left:312.484050px;}
.x5_c00349{left:316.191600px;}
.x16_c00349{left:333.128100px;}
.x3c_c00349{left:337.025400px;}
.x2a_c00349{left:338.268000px;}
.x17_c00349{left:343.135950px;}
.x18_c00349{left:349.414650px;}
.x23_c00349{left:353.122200px;}
.x19_c00349{left:359.422500px;}
.x6_c00349{left:364.215000px;}
.x1a_c00349{left:365.701200px;}
.x42_c00349{left:370.857450px;}
.x1b_c00349{left:375.709050px;}
.x24_c00349{left:383.073450px;}
.x4_c00349{left:400.746450px;}
.x43_c00349{left:411.716250px;}
.x8_c00349{left:415.873500px;}
.x1c_c00349{left:429.708300px;}
.x21_c00349{left:434.386950px;}
.x3d_c00349{left:459.022350px;}
.x3e_c00349{left:490.223400px;}
.x22_c00349{left:499.380600px;}
.x3f_c00349{left:532.298850px;}
.x27_c00349{left:539.720100px;}
.x28_c00349{left:579.738900px;}
.x25_c00349{left:595.061250px;}
.x44_c00349{left:598.064550px;}
.xf_c00349{left:603.781200px;}
.x26_c00349{left:616.591200px;}
.x32_c00349{left:652.074450px;}
.xb_c00349{left:655.775100px;}
.x33_c00349{left:662.901900px;}
.x1d_c00349{left:667.375500px;}
.x11_c00349{left:674.671500px;}
.x9_c00349{left:681.769800px;}
.x1f_c00349{left:688.765050px;}
.x34_c00349{left:694.534050px;}
.xc_c00349{left:704.585400px;}
.x12_c00349{left:723.702750px;}
.xa_c00349{left:733.771050px;}
.x20_c00349{left:738.720000px;}
.x1e_c00349{left:745.386150px;}
.x45_c00349{left:768.254608px;}
@media print{
.v2_c00349{vertical-align:-26.880000pt;}
.v3_c00349{vertical-align:-21.760000pt;}
.v0_c00349{vertical-align:0.000000pt;}
.v1_c00349{vertical-align:26.880000pt;}
.ls14_c00349{letter-spacing:-0.159616pt;}
.ls13_c00349{letter-spacing:0.000000pt;}
.ls15_c00349{letter-spacing:0.128000pt;}
.ls6_c00349{letter-spacing:0.209920pt;}
.ls10_c00349{letter-spacing:0.236160pt;}
.ls1f_c00349{letter-spacing:0.243428pt;}
.lsc_c00349{letter-spacing:0.262400pt;}
.ls23_c00349{letter-spacing:0.283392pt;}
.ls4_c00349{letter-spacing:0.290926pt;}
.ls2a_c00349{letter-spacing:0.292114pt;}
.lsd_c00349{letter-spacing:0.314880pt;}
.ls7_c00349{letter-spacing:0.330624pt;}
.ls2d_c00349{letter-spacing:0.340799pt;}
.ls12_c00349{letter-spacing:0.356864pt;}
.lse_c00349{letter-spacing:0.367360pt;}
.ls19_c00349{letter-spacing:0.377856pt;}
.ls1d_c00349{letter-spacing:0.389485pt;}
.ls22_c00349{letter-spacing:0.425088pt;}
.ls5_c00349{letter-spacing:0.439798pt;}
.ls3_c00349{letter-spacing:0.457067pt;}
.ls8_c00349{letter-spacing:0.472320pt;}
.lsb_c00349{letter-spacing:0.477568pt;}
.ls11_c00349{letter-spacing:0.486856pt;}
.ls2_c00349{letter-spacing:0.501333pt;}
.ls1e_c00349{letter-spacing:0.519552pt;}
.ls24_c00349{letter-spacing:0.614016pt;}
.ls26_c00349{letter-spacing:0.619264pt;}
.ls9_c00349{letter-spacing:0.632913pt;}
.ls17_c00349{letter-spacing:0.638323pt;}
.ls28_c00349{letter-spacing:0.661248pt;}
.ls27_c00349{letter-spacing:0.681599pt;}
.lsf_c00349{letter-spacing:0.730284pt;}
.ls1a_c00349{letter-spacing:0.855424pt;}
.ls29_c00349{letter-spacing:0.881751pt;}
.ls1_c00349{letter-spacing:1.600000pt;}
.ls1b_c00349{letter-spacing:2.340608pt;}
.ls2b_c00349{letter-spacing:3.489920pt;}
.ls31_c00349{letter-spacing:3.762816pt;}
.ls25_c00349{letter-spacing:4.261376pt;}
.ls2e_c00349{letter-spacing:4.466048pt;}
.ls21_c00349{letter-spacing:4.901632pt;}
.ls30_c00349{letter-spacing:5.053824pt;}
.ls0_c00349{letter-spacing:5.312000pt;}
.ls1c_c00349{letter-spacing:5.699328pt;}
.ls2c_c00349{letter-spacing:6.465536pt;}
.ls20_c00349{letter-spacing:7.851008pt;}
.ls18_c00349{letter-spacing:8.213120pt;}
.lsa_c00349{letter-spacing:9.079040pt;}
.ls16_c00349{letter-spacing:10.118144pt;}
.ls2f_c00349{letter-spacing:16.877568pt;}
.ws5_c00349{word-spacing:-19.491072pt;}
.ws0_c00349{word-spacing:-17.792000pt;}
.wsb_c00349{word-spacing:-15.768735pt;}
.ws3_c00349{word-spacing:-15.676773pt;}
.ws6_c00349{word-spacing:-15.671364pt;}
.wsd_c00349{word-spacing:-15.525307pt;}
.ws8_c00349{word-spacing:-15.427936pt;}
.wsa_c00349{word-spacing:-15.379250pt;}
.ws9_c00349{word-spacing:-15.330564pt;}
.ws4_c00349{word-spacing:-15.281879pt;}
.ws7_c00349{word-spacing:-15.208704pt;}
.wsc_c00349{word-spacing:-15.061760pt;}
.ws1_c00349{word-spacing:-10.159744pt;}
.ws2_c00349{word-spacing:-9.024000pt;}
.wse_c00349{word-spacing:0.000000pt;}
._18_c00349{margin-left:-16.682240pt;}
._19_c00349{margin-left:-15.710720pt;}
._d_c00349{margin-left:-9.859840pt;}
._e_c00349{margin-left:-8.901120pt;}
._11_c00349{margin-left:-7.924480pt;}
._12_c00349{margin-left:-7.032320pt;}
._15_c00349{margin-left:-5.241600pt;}
._16_c00349{margin-left:-3.982080pt;}
._17_c00349{margin-left:-3.027200pt;}
._14_c00349{margin-left:-2.092800pt;}
._f_c00349{margin-left:-0.944640pt;}
._3_c00349{width:1.664000pt;}
._5_c00349{width:3.008000pt;}
._9_c00349{width:4.032000pt;}
._b_c00349{width:5.120000pt;}
._10_c00349{width:7.504640pt;}
._13_c00349{width:8.528000pt;}
._a_c00349{width:9.704192pt;}
._4_c00349{width:11.392000pt;}
._8_c00349{width:12.352000pt;}
._c_c00349{width:13.312000pt;}
._0_c00349{width:15.488000pt;}
._1a_c00349{width:17.082368pt;}
._2_c00349{width:19.479275pt;}
._1_c00349{width:20.584725pt;}
._7_c00349{width:21.492373pt;}
._6_c00349{width:27.712000pt;}
.fs3_c00349{font-size:32.000000pt;}
.fs1_c00349{font-size:37.120000pt;}
.fs6_c00349{font-size:43.539995pt;}
.fs4_c00349{font-size:52.480000pt;}
.fs7_c00349{font-size:53.333333pt;}
.fs5_c00349{font-size:54.095146pt;}
.fs0_c00349{font-size:64.000000pt;}
.fs2_c00349{font-size:65.969690pt;}
.y0_c00349{bottom:0.000000pt;}
.y46_c00349{bottom:2.773333pt;}
.y45_c00349{bottom:30.884071pt;}
.y1_c00349{bottom:48.000000pt;}
.y44_c00349{bottom:49.314560pt;}
.y43_c00349{bottom:64.678080pt;}
.y42_c00349{bottom:80.356480pt;}
.y41_c00349{bottom:95.720000pt;}
.y40_c00349{bottom:95.723200pt;}
.y3f_c00349{bottom:111.401600pt;}
.y3e_c00349{bottom:132.520000pt;}
.y3d_c00349{bottom:142.441600pt;}
.y3c_c00349{bottom:158.120000pt;}
.y3b_c00349{bottom:163.560000pt;}
.y3a_c00349{bottom:173.800000pt;}
.y39_c00349{bottom:194.600000pt;}
.y37_c00349{bottom:204.836480pt;}
.y38_c00349{bottom:204.840000pt;}
.y36_c00349{bottom:220.200000pt;}
.y35_c00349{bottom:220.201600pt;}
.y34_c00349{bottom:235.880000pt;}
.y33_c00349{bottom:235.881600pt;}
.y32_c00349{bottom:257.000000pt;}
.y31_c00349{bottom:266.921600pt;}
.y30_c00349{bottom:288.040000pt;}
.y2f_c00349{bottom:298.280000pt;}
.y2e_c00349{bottom:313.640000pt;}
.y2d_c00349{bottom:313.641600pt;}
.y2c_c00349{bottom:329.320000pt;}
.y2b_c00349{bottom:334.760000pt;}
.y2a_c00349{bottom:344.683200pt;}
.y29_c00349{bottom:360.361600pt;}
.y27_c00349{bottom:376.038080pt;}
.y28_c00349{bottom:376.040000pt;}
.y26_c00349{bottom:391.401600pt;}
.y25_c00349{bottom:407.080000pt;}
.y24_c00349{bottom:407.081600pt;}
.y23_c00349{bottom:422.760000pt;}
.y22_c00349{bottom:428.200000pt;}
.y21_c00349{bottom:438.121600pt;}
.y20_c00349{bottom:459.240000pt;}
.y1f_c00349{bottom:469.160000pt;}
.y1e_c00349{bottom:469.161600pt;}
.y1d_c00349{bottom:484.840000pt;}
.y1c_c00349{bottom:484.841600pt;}
.y1b_c00349{bottom:505.960000pt;}
.y1a_c00349{bottom:529.640000pt;}
.y19_c00349{bottom:551.080000pt;}
.y17_c00349{bottom:569.640000pt;}
.y18_c00349{bottom:576.360000pt;}
.y16_c00349{bottom:588.200000pt;}
.y15_c00349{bottom:607.080000pt;}
.y14_c00349{bottom:625.640000pt;}
.y13_c00349{bottom:657.640000pt;}
.y12_c00349{bottom:676.520000pt;}
.y11_c00349{bottom:695.080000pt;}
.yf_c00349{bottom:713.640000pt;}
.y10_c00349{bottom:720.360000pt;}
.ye_c00349{bottom:732.520000pt;}
.yd_c00349{bottom:751.080000pt;}
.yc_c00349{bottom:783.080000pt;}
.yb_c00349{bottom:801.640000pt;}
.ya_c00349{bottom:820.520000pt;}
.y9_c00349{bottom:839.080000pt;}
.y8_c00349{bottom:871.080000pt;}
.y7_c00349{bottom:889.640000pt;}
.y6_c00349{bottom:908.520000pt;}
.y5_c00349{bottom:927.080000pt;}
.y4_c00349{bottom:945.640000pt;}
.y3_c00349{bottom:964.520000pt;}
.y2_c00349{bottom:1011.880000pt;}
.ha_c00349{height:17.116093pt;}
.h7_c00349{height:28.992000pt;}
.h6_c00349{height:33.630720pt;}
.h9_c00349{height:41.761453pt;}
.h8_c00349{height:47.546880pt;}
.hb_c00349{height:50.346667pt;}
.h5_c00349{height:50.928601pt;}
.h3_c00349{height:57.984000pt;}
.h4_c00349{height:60.510720pt;}
.h2_c00349{height:1067.880000pt;}
.h0_c00349{height:1122.520000pt;}
.h1_c00349{height:1122.666667pt;}
.w3_c00349{width:14.826667pt;}
.w2_c00349{width:767.960000pt;}
.w0_c00349{width:793.720000pt;}
.w1_c00349{width:794.000000pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:12.880000pt;}
.x2_c00349{left:100.480133pt;}
.x2d_c00349{left:107.893200pt;}
.x13_c00349{left:109.376000pt;}
.x41_c00349{left:118.252667pt;}
.x10_c00349{left:137.807600pt;}
.x14_c00349{left:146.703467pt;}
.x2e_c00349{left:150.825467pt;}
.xe_c00349{left:154.560000pt;}
.x37_c00349{left:158.202533pt;}
.x2f_c00349{left:168.596667pt;}
.x38_c00349{left:187.828400pt;}
.x30_c00349{left:190.796267pt;}
.x2b_c00349{left:195.380267pt;}
.x39_c00349{left:202.989600pt;}
.xd_c00349{left:221.357733pt;}
.x3_c00349{left:231.850000pt;}
.x3a_c00349{left:233.375333pt;}
.x35_c00349{left:238.462933pt;}
.x2c_c00349{left:239.792667pt;}
.x15_c00349{left:241.026667pt;}
.x7_c00349{left:244.146133pt;}
.x40_c00349{left:245.649067pt;}
.x29_c00349{left:258.444267pt;}
.x31_c00349{left:263.389333pt;}
.x36_c00349{left:268.848667pt;}
.x3b_c00349{left:277.763600pt;}
.x5_c00349{left:281.059200pt;}
.x16_c00349{left:296.113867pt;}
.x3c_c00349{left:299.578133pt;}
.x2a_c00349{left:300.682667pt;}
.x17_c00349{left:305.009733pt;}
.x18_c00349{left:310.590800pt;}
.x23_c00349{left:313.886400pt;}
.x19_c00349{left:319.486667pt;}
.x6_c00349{left:323.746667pt;}
.x1a_c00349{left:325.067733pt;}
.x42_c00349{left:329.651067pt;}
.x1b_c00349{left:333.963600pt;}
.x24_c00349{left:340.509733pt;}
.x4_c00349{left:356.219067pt;}
.x43_c00349{left:365.970000pt;}
.x8_c00349{left:369.665333pt;}
.x1c_c00349{left:381.962933pt;}
.x21_c00349{left:386.121733pt;}
.x3d_c00349{left:408.019867pt;}
.x3e_c00349{left:435.754133pt;}
.x22_c00349{left:443.893867pt;}
.x3f_c00349{left:473.154533pt;}
.x27_c00349{left:479.751200pt;}
.x28_c00349{left:515.323467pt;}
.x25_c00349{left:528.943333pt;}
.x44_c00349{left:531.612933pt;}
.xf_c00349{left:536.694400pt;}
.x26_c00349{left:548.081067pt;}
.x32_c00349{left:579.621733pt;}
.xb_c00349{left:582.911200pt;}
.x33_c00349{left:589.246133pt;}
.x1d_c00349{left:593.222667pt;}
.x11_c00349{left:599.708000pt;}
.x9_c00349{left:606.017600pt;}
.x1f_c00349{left:612.235600pt;}
.x34_c00349{left:617.363600pt;}
.xc_c00349{left:626.298133pt;}
.x12_c00349{left:643.291333pt;}
.xa_c00349{left:652.240933pt;}
.x20_c00349{left:656.640000pt;}
.x1e_c00349{left:662.565467pt;}
.x45_c00349{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0cf27b7e4e784ae26af356e.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.134000;font-style:normal;font-weight:normal;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_f99aa51ba76e0f0002a626b3.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;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:ff3_c00350;src:url('chunks/assets/font_e0c4312659395e3b37653c47.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00350;src:url('chunks/assets/font_6a85d896eb87c130081cf2a3.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00350{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00350{vertical-align:-24.480000px;}
.v0_c00350{vertical-align:0.000000px;}
.v1_c00350{vertical-align:30.240000px;}
.ls6_c00350{letter-spacing:-0.179568px;}
.ls5_c00350{letter-spacing:0.000000px;}
.ls7_c00350{letter-spacing:0.144000px;}
.lse_c00350{letter-spacing:0.265680px;}
.ls10_c00350{letter-spacing:0.273857px;}
.ls3_c00350{letter-spacing:0.295200px;}
.ls1_c00350{letter-spacing:0.304285px;}
.ls12_c00350{letter-spacing:0.318816px;}
.ls15_c00350{letter-spacing:0.328628px;}
.ls16_c00350{letter-spacing:0.383399px;}
.ls9_c00350{letter-spacing:0.425088px;}
.ls14_c00350{letter-spacing:0.438171px;}
.lsa_c00350{letter-spacing:0.478224px;}
.lsc_c00350{letter-spacing:0.492942px;}
.ls0_c00350{letter-spacing:0.531360px;}
.lsf_c00350{letter-spacing:0.547713px;}
.ls2_c00350{letter-spacing:0.584496px;}
.ls13_c00350{letter-spacing:0.718113px;}
.ls17_c00350{letter-spacing:0.797040px;}
.ls19_c00350{letter-spacing:0.962352px;}
.ls8_c00350{letter-spacing:1.003680px;}
.ls18_c00350{letter-spacing:2.078208px;}
.ls11_c00350{letter-spacing:5.780016px;}
.ls4_c00350{letter-spacing:5.976000px;}
.ls1a_c00350{letter-spacing:9.086256px;}
.lsd_c00350{letter-spacing:9.168912px;}
.lsb_c00350{letter-spacing:9.174816px;}
.sc__c00350{text-shadow:none;}
.sc1_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00350{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc1_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00350{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00350{word-spacing:-22.193136px;}
.ws1_c00350{word-spacing:-20.016000px;}
.ws7_c00350{word-spacing:-17.246885px;}
.ws3_c00350{word-spacing:-17.192114px;}
.ws8_c00350{word-spacing:-16.944480px;}
.ws0_c00350{word-spacing:-11.429712px;}
.ws2_c00350{word-spacing:-10.152000px;}
.ws6_c00350{word-spacing:-0.553799px;}
.ws5_c00350{word-spacing:-0.444256px;}
.ws9_c00350{word-spacing:0.000000px;}
._e_c00350{margin-left:-8.966880px;}
._f_c00350{margin-left:-7.814880px;}
._10_c00350{margin-left:-2.535840px;}
._c_c00350{margin-left:-1.339200px;}
._d_c00350{width:1.006560px;}
._4_c00350{width:3.024000px;}
._6_c00350{width:4.680000px;}
._7_c00350{width:6.408000px;}
._2_c00350{width:7.704000px;}
._a_c00350{width:9.360000px;}
._8_c00350{width:10.440000px;}
._9_c00350{width:11.520000px;}
._5_c00350{width:12.816000px;}
._0_c00350{width:13.896000px;}
._1_c00350{width:21.024000px;}
._b_c00350{width:27.504000px;}
._3_c00350{width:29.304000px;}
.fc0_c00350{color:rgb(0,0,0);}
.fs3_c00350{font-size:36.000000px;}
.fs2_c00350{font-size:41.760000px;}
.fs4_c00350{font-size:59.040000px;}
.fs6_c00350{font-size:60.000000px;}
.fs5_c00350{font-size:60.857039px;}
.fs0_c00350{font-size:72.000000px;}
.fs1_c00350{font-size:74.215901px;}
.y0_c00350{bottom:0.000000px;}
.y31_c00350{bottom:3.120000px;}
.y30_c00350{bottom:34.744580px;}
.y1_c00350{bottom:54.000000px;}
.y2f_c00350{bottom:55.481040px;}
.y2e_c00350{bottom:72.765000px;}
.y2d_c00350{bottom:78.885000px;}
.y2c_c00350{bottom:90.404640px;}
.y2b_c00350{bottom:107.688600px;}
.y2a_c00350{bottom:125.326800px;}
.y28_c00350{bottom:142.961040px;}
.y29_c00350{bottom:142.965000px;}
.y27_c00350{bottom:160.245000px;}
.y26_c00350{bottom:160.253640px;}
.y25_c00350{bottom:177.891840px;}
.y24_c00350{bottom:197.685000px;}
.y23_c00350{bottom:197.686800px;}
.y22_c00350{bottom:215.325000px;}
.y21_c00350{bottom:215.326800px;}
.y1f_c00350{bottom:232.961040px;}
.y20_c00350{bottom:232.965000px;}
.y1e_c00350{bottom:250.245000px;}
.y1d_c00350{bottom:250.246800px;}
.y1c_c00350{bottom:267.885000px;}
.y1b_c00350{bottom:267.886800px;}
.y1a_c00350{bottom:285.525000px;}
.y19_c00350{bottom:291.645000px;}
.y18_c00350{bottom:302.802840px;}
.y17_c00350{bottom:320.441040px;}
.y16_c00350{bottom:343.845000px;}
.y15_c00350{bottom:370.485000px;}
.y14_c00350{bottom:697.725000px;}
.y13_c00350{bottom:718.965000px;}
.y12_c00350{bottom:739.845000px;}
.y11_c00350{bottom:761.085000px;}
.y10_c00350{bottom:797.085000px;}
.yf_c00350{bottom:817.965000px;}
.ye_c00350{bottom:838.845000px;}
.yd_c00350{bottom:860.085000px;}
.yc_c00350{bottom:880.965000px;}
.yb_c00350{bottom:901.845000px;}
.ya_c00350{bottom:937.845000px;}
.y9_c00350{bottom:959.085000px;}
.y8_c00350{bottom:979.965000px;}
.y7_c00350{bottom:1000.845000px;}
.y6_c00350{bottom:1022.085000px;}
.y5_c00350{bottom:1042.965000px;}
.y4_c00350{bottom:1063.845000px;}
.y3_c00350{bottom:1085.085000px;}
.y2_c00350{bottom:1138.365000px;}
.h9_c00350{height:19.255605px;}
.h6_c00350{height:32.616000px;}
.h8_c00350{height:46.981634px;}
.h7_c00350{height:53.490240px;}
.ha_c00350{height:56.640000px;}
.h4_c00350{height:57.294676px;}
.h3_c00350{height:65.232000px;}
.h5_c00350{height:68.074560px;}
.h2_c00350{height:1201.365000px;}
.h0_c00350{height:1262.835000px;}
.h1_c00350{height:1263.000000px;}
.w3_c00350{width:16.680000px;}
.w2_c00350{width:863.955000px;}
.w0_c00350{width:892.935000px;}
.w1_c00350{width:893.250000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:14.490000px;}
.x2_c00350{left:113.040150px;}
.x19_c00350{left:134.328000px;}
.x13_c00350{left:154.543950px;}
.x12_c00350{left:167.188500px;}
.x1a_c00350{left:173.492100px;}
.x17_c00350{left:234.685950px;}
.x18_c00350{left:254.679900px;}
.x3_c00350{left:291.066300px;}
.xf_c00350{left:305.041200px;}
.x11_c00350{left:395.746200px;}
.x10_c00350{left:399.740550px;}
.x4_c00350{left:436.404750px;}
.x5_c00350{left:448.743450px;}
.x1b_c00350{left:463.838400px;}
.x6_c00350{left:507.071400px;}
.x14_c00350{left:524.359800px;}
.x7_c00350{left:528.410100px;}
.x1c_c00350{left:558.516000px;}
.x16_c00350{left:565.394550px;}
.x9_c00350{left:581.902200px;}
.x15_c00350{left:603.874200px;}
.xb_c00350{left:629.406450px;}
.xc_c00350{left:675.395550px;}
.x8_c00350{left:689.074200px;}
.xd_c00350{left:700.440750px;}
.xa_c00350{left:715.618350px;}
.xe_c00350{left:750.390000px;}
.x1d_c00350{left:768.254608px;}
@media print{
.v2_c00350{vertical-align:-21.760000pt;}
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:26.880000pt;}
.ls6_c00350{letter-spacing:-0.159616pt;}
.ls5_c00350{letter-spacing:0.000000pt;}
.ls7_c00350{letter-spacing:0.128000pt;}
.lse_c00350{letter-spacing:0.236160pt;}
.ls10_c00350{letter-spacing:0.243428pt;}
.ls3_c00350{letter-spacing:0.262400pt;}
.ls1_c00350{letter-spacing:0.270476pt;}
.ls12_c00350{letter-spacing:0.283392pt;}
.ls15_c00350{letter-spacing:0.292114pt;}
.ls16_c00350{letter-spacing:0.340799pt;}
.ls9_c00350{letter-spacing:0.377856pt;}
.ls14_c00350{letter-spacing:0.389485pt;}
.lsa_c00350{letter-spacing:0.425088pt;}
.lsc_c00350{letter-spacing:0.438171pt;}
.ls0_c00350{letter-spacing:0.472320pt;}
.lsf_c00350{letter-spacing:0.486856pt;}
.ls2_c00350{letter-spacing:0.519552pt;}
.ls13_c00350{letter-spacing:0.638323pt;}
.ls17_c00350{letter-spacing:0.708480pt;}
.ls19_c00350{letter-spacing:0.855424pt;}
.ls8_c00350{letter-spacing:0.892160pt;}
.ls18_c00350{letter-spacing:1.847296pt;}
.ls11_c00350{letter-spacing:5.137792pt;}
.ls4_c00350{letter-spacing:5.312000pt;}
.ls1a_c00350{letter-spacing:8.076672pt;}
.lsd_c00350{letter-spacing:8.150144pt;}
.lsb_c00350{letter-spacing:8.155392pt;}
.ws4_c00350{word-spacing:-19.727232pt;}
.ws1_c00350{word-spacing:-17.792000pt;}
.ws7_c00350{word-spacing:-15.330564pt;}
.ws3_c00350{word-spacing:-15.281879pt;}
.ws8_c00350{word-spacing:-15.061760pt;}
.ws0_c00350{word-spacing:-10.159744pt;}
.ws2_c00350{word-spacing:-9.024000pt;}
.ws6_c00350{word-spacing:-0.492266pt;}
.ws5_c00350{word-spacing:-0.394895pt;}
.ws9_c00350{word-spacing:0.000000pt;}
._e_c00350{margin-left:-7.970560pt;}
._f_c00350{margin-left:-6.946560pt;}
._10_c00350{margin-left:-2.254080pt;}
._c_c00350{margin-left:-1.190400pt;}
._d_c00350{width:0.894720pt;}
._4_c00350{width:2.688000pt;}
._6_c00350{width:4.160000pt;}
._7_c00350{width:5.696000pt;}
._2_c00350{width:6.848000pt;}
._a_c00350{width:8.320000pt;}
._8_c00350{width:9.280000pt;}
._9_c00350{width:10.240000pt;}
._5_c00350{width:11.392000pt;}
._0_c00350{width:12.352000pt;}
._1_c00350{width:18.688000pt;}
._b_c00350{width:24.448000pt;}
._3_c00350{width:26.048000pt;}
.fs3_c00350{font-size:32.000000pt;}
.fs2_c00350{font-size:37.120000pt;}
.fs4_c00350{font-size:52.480000pt;}
.fs6_c00350{font-size:53.333333pt;}
.fs5_c00350{font-size:54.095146pt;}
.fs0_c00350{font-size:64.000000pt;}
.fs1_c00350{font-size:65.969690pt;}
.y0_c00350{bottom:0.000000pt;}
.y31_c00350{bottom:2.773333pt;}
.y30_c00350{bottom:30.884071pt;}
.y1_c00350{bottom:48.000000pt;}
.y2f_c00350{bottom:49.316480pt;}
.y2e_c00350{bottom:64.680000pt;}
.y2d_c00350{bottom:70.120000pt;}
.y2c_c00350{bottom:80.359680pt;}
.y2b_c00350{bottom:95.723200pt;}
.y2a_c00350{bottom:111.401600pt;}
.y28_c00350{bottom:127.076480pt;}
.y29_c00350{bottom:127.080000pt;}
.y27_c00350{bottom:142.440000pt;}
.y26_c00350{bottom:142.447680pt;}
.y25_c00350{bottom:158.126080pt;}
.y24_c00350{bottom:175.720000pt;}
.y23_c00350{bottom:175.721600pt;}
.y22_c00350{bottom:191.400000pt;}
.y21_c00350{bottom:191.401600pt;}
.y1f_c00350{bottom:207.076480pt;}
.y20_c00350{bottom:207.080000pt;}
.y1e_c00350{bottom:222.440000pt;}
.y1d_c00350{bottom:222.441600pt;}
.y1c_c00350{bottom:238.120000pt;}
.y1b_c00350{bottom:238.121600pt;}
.y1a_c00350{bottom:253.800000pt;}
.y19_c00350{bottom:259.240000pt;}
.y18_c00350{bottom:269.158080pt;}
.y17_c00350{bottom:284.836480pt;}
.y16_c00350{bottom:305.640000pt;}
.y15_c00350{bottom:329.320000pt;}
.y14_c00350{bottom:620.200000pt;}
.y13_c00350{bottom:639.080000pt;}
.y12_c00350{bottom:657.640000pt;}
.y11_c00350{bottom:676.520000pt;}
.y10_c00350{bottom:708.520000pt;}
.yf_c00350{bottom:727.080000pt;}
.ye_c00350{bottom:745.640000pt;}
.yd_c00350{bottom:764.520000pt;}
.yc_c00350{bottom:783.080000pt;}
.yb_c00350{bottom:801.640000pt;}
.ya_c00350{bottom:833.640000pt;}
.y9_c00350{bottom:852.520000pt;}
.y8_c00350{bottom:871.080000pt;}
.y7_c00350{bottom:889.640000pt;}
.y6_c00350{bottom:908.520000pt;}
.y5_c00350{bottom:927.080000pt;}
.y4_c00350{bottom:945.640000pt;}
.y3_c00350{bottom:964.520000pt;}
.y2_c00350{bottom:1011.880000pt;}
.h9_c00350{height:17.116093pt;}
.h6_c00350{height:28.992000pt;}
.h8_c00350{height:41.761453pt;}
.h7_c00350{height:47.546880pt;}
.ha_c00350{height:50.346667pt;}
.h4_c00350{height:50.928601pt;}
.h3_c00350{height:57.984000pt;}
.h5_c00350{height:60.510720pt;}
.h2_c00350{height:1067.880000pt;}
.h0_c00350{height:1122.520000pt;}
.h1_c00350{height:1122.666667pt;}
.w3_c00350{width:14.826667pt;}
.w2_c00350{width:767.960000pt;}
.w0_c00350{width:793.720000pt;}
.w1_c00350{width:794.000000pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:12.880000pt;}
.x2_c00350{left:100.480133pt;}
.x19_c00350{left:119.402667pt;}
.x13_c00350{left:137.372400pt;}
.x12_c00350{left:148.612000pt;}
.x1a_c00350{left:154.215200pt;}
.x17_c00350{left:208.609733pt;}
.x18_c00350{left:226.382133pt;}
.x3_c00350{left:258.725600pt;}
.xf_c00350{left:271.147733pt;}
.x11_c00350{left:351.774400pt;}
.x10_c00350{left:355.324933pt;}
.x4_c00350{left:387.915333pt;}
.x5_c00350{left:398.883067pt;}
.x1b_c00350{left:412.300800pt;}
.x6_c00350{left:450.730133pt;}
.x14_c00350{left:466.097600pt;}
.x7_c00350{left:469.697867pt;}
.x1c_c00350{left:496.458667pt;}
.x16_c00350{left:502.572933pt;}
.x9_c00350{left:517.246400pt;}
.x15_c00350{left:536.777067pt;}
.xb_c00350{left:559.472400pt;}
.xc_c00350{left:600.351600pt;}
.x8_c00350{left:612.510400pt;}
.xd_c00350{left:622.614000pt;}
.xa_c00350{left:636.105200pt;}
.xe_c00350{left:667.013333pt;}
.x1d_c00350{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c229f13b59023456e1375ed7.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.134000;font-style:normal;font-weight:normal;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_e64fc6a753fb6dfbd78b114b.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;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:ff3_c00351;src:url('chunks/assets/font_bcc0c71cc740fdca399363c8.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00351{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00351{vertical-align:-24.480000px;}
.v0_c00351{vertical-align:0.000000px;}
.v1_c00351{vertical-align:30.240000px;}
.ls6_c00351{letter-spacing:-0.179568px;}
.ls4_c00351{letter-spacing:0.000000px;}
.ls7_c00351{letter-spacing:0.144000px;}
.ls2_c00351{letter-spacing:0.202464px;}
.ls1_c00351{letter-spacing:0.238560px;}
.lsc_c00351{letter-spacing:0.239760px;}
.lsa_c00351{letter-spacing:0.247139px;}
.ls8_c00351{letter-spacing:0.265680px;}
.ls9_c00351{letter-spacing:0.399600px;}
.lsb_c00351{letter-spacing:0.450342px;}
.ls5_c00351{letter-spacing:5.335200px;}
.ls0_c00351{letter-spacing:5.975400px;}
.ls3_c00351{letter-spacing:5.976000px;}
.sc__c00351{text-shadow:none;}
.sc1_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00351{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc1_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00351{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00351{word-spacing:-20.947680px;}
.ws4_c00351{word-spacing:-15.718037px;}
.ws3_c00351{word-spacing:-15.514834px;}
.ws5_c00351{word-spacing:-15.051600px;}
.ws1_c00351{word-spacing:-11.429712px;}
.ws2_c00351{word-spacing:-10.152000px;}
.ws6_c00351{word-spacing:0.000000px;}
._1_c00351{margin-left:-1.024800px;}
._2_c00351{width:1.069920px;}
._0_c00351{width:4.320000px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs3_c00351{font-size:36.000000px;}
.fs2_c00351{font-size:41.760000px;}
.fs5_c00351{font-size:53.280000px;}
.fs6_c00351{font-size:54.919767px;}
.fs1_c00351{font-size:56.160000px;}
.fs4_c00351{font-size:59.040000px;}
.fs7_c00351{font-size:60.000000px;}
.fs0_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.y24_c00351{bottom:3.120000px;}
.y22_c00351{bottom:14.400000px;}
.y23_c00351{bottom:34.744580px;}
.y1_c00351{bottom:54.000000px;}
.y20_c00351{bottom:61.605000px;}
.y1f_c00351{bottom:88.245000px;}
.y1e_c00351{bottom:127.845000px;}
.y1d_c00351{bottom:163.845000px;}
.y1c_c00351{bottom:199.845000px;}
.y1b_c00351{bottom:235.845000px;}
.y1a_c00351{bottom:271.845000px;}
.y21_c00351{bottom:292.365000px;}
.y19_c00351{bottom:307.845000px;}
.y18_c00351{bottom:343.845000px;}
.y17_c00351{bottom:379.845000px;}
.y16_c00351{bottom:415.845000px;}
.y15_c00351{bottom:451.845000px;}
.y14_c00351{bottom:487.845000px;}
.y13_c00351{bottom:523.845000px;}
.y12_c00351{bottom:559.845000px;}
.y11_c00351{bottom:595.845000px;}
.y10_c00351{bottom:631.845000px;}
.yf_c00351{bottom:667.845000px;}
.ye_c00351{bottom:703.845000px;}
.yd_c00351{bottom:739.845000px;}
.yc_c00351{bottom:775.845000px;}
.yb_c00351{bottom:811.845000px;}
.ya_c00351{bottom:847.845000px;}
.y9_c00351{bottom:883.845000px;}
.y8_c00351{bottom:919.845000px;}
.y7_c00351{bottom:955.845000px;}
.y6_c00351{bottom:991.845000px;}
.y5_c00351{bottom:1013.085000px;}
.y4_c00351{bottom:1049.085000px;}
.y3_c00351{bottom:1085.085000px;}
.y2_c00351{bottom:1138.365000px;}
.h9_c00351{height:19.255605px;}
.h6_c00351{height:27.000000px;}
.h5_c00351{height:32.616000px;}
.h8_c00351{height:42.398060px;}
.h7_c00351{height:48.271680px;}
.ha_c00351{height:56.640000px;}
.h3_c00351{height:65.232000px;}
.h4_c00351{height:68.074560px;}
.h2_c00351{height:1201.365000px;}
.h0_c00351{height:1262.835000px;}
.h1_c00351{height:1263.000000px;}
.w4_c00351{width:16.680000px;}
.w3_c00351{width:654.840000px;}
.w2_c00351{width:863.955000px;}
.w0_c00351{width:892.935000px;}
.w1_c00351{width:893.250000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:14.490000px;}
.x2_c00351{left:113.040150px;}
.x3_c00351{left:137.970000px;}
.x4_c00351{left:173.406450px;}
.x5_c00351{left:394.006500px;}
.x6_c00351{left:429.254250px;}
.x7_c00351{left:437.502450px;}
.x8_c00351{left:472.750200px;}
.x9_c00351{left:768.254608px;}
@media print{
.v2_c00351{vertical-align:-21.760000pt;}
.v0_c00351{vertical-align:0.000000pt;}
.v1_c00351{vertical-align:26.880000pt;}
.ls6_c00351{letter-spacing:-0.159616pt;}
.ls4_c00351{letter-spacing:0.000000pt;}
.ls7_c00351{letter-spacing:0.128000pt;}
.ls2_c00351{letter-spacing:0.179968pt;}
.ls1_c00351{letter-spacing:0.212053pt;}
.lsc_c00351{letter-spacing:0.213120pt;}
.lsa_c00351{letter-spacing:0.219679pt;}
.ls8_c00351{letter-spacing:0.236160pt;}
.ls9_c00351{letter-spacing:0.355200pt;}
.lsb_c00351{letter-spacing:0.400304pt;}
.ls5_c00351{letter-spacing:4.742400pt;}
.ls0_c00351{letter-spacing:5.311467pt;}
.ls3_c00351{letter-spacing:5.312000pt;}
.ws0_c00351{word-spacing:-18.620160pt;}
.ws4_c00351{word-spacing:-13.971589pt;}
.ws3_c00351{word-spacing:-13.790964pt;}
.ws5_c00351{word-spacing:-13.379200pt;}
.ws1_c00351{word-spacing:-10.159744pt;}
.ws2_c00351{word-spacing:-9.024000pt;}
.ws6_c00351{word-spacing:0.000000pt;}
._1_c00351{margin-left:-0.910933pt;}
._2_c00351{width:0.951040pt;}
._0_c00351{width:3.840000pt;}
.fs3_c00351{font-size:32.000000pt;}
.fs2_c00351{font-size:37.120000pt;}
.fs5_c00351{font-size:47.360000pt;}
.fs6_c00351{font-size:48.817571pt;}
.fs1_c00351{font-size:49.920000pt;}
.fs4_c00351{font-size:52.480000pt;}
.fs7_c00351{font-size:53.333333pt;}
.fs0_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y24_c00351{bottom:2.773333pt;}
.y22_c00351{bottom:12.800000pt;}
.y23_c00351{bottom:30.884071pt;}
.y1_c00351{bottom:48.000000pt;}
.y20_c00351{bottom:54.760000pt;}
.y1f_c00351{bottom:78.440000pt;}
.y1e_c00351{bottom:113.640000pt;}
.y1d_c00351{bottom:145.640000pt;}
.y1c_c00351{bottom:177.640000pt;}
.y1b_c00351{bottom:209.640000pt;}
.y1a_c00351{bottom:241.640000pt;}
.y21_c00351{bottom:259.880000pt;}
.y19_c00351{bottom:273.640000pt;}
.y18_c00351{bottom:305.640000pt;}
.y17_c00351{bottom:337.640000pt;}
.y16_c00351{bottom:369.640000pt;}
.y15_c00351{bottom:401.640000pt;}
.y14_c00351{bottom:433.640000pt;}
.y13_c00351{bottom:465.640000pt;}
.y12_c00351{bottom:497.640000pt;}
.y11_c00351{bottom:529.640000pt;}
.y10_c00351{bottom:561.640000pt;}
.yf_c00351{bottom:593.640000pt;}
.ye_c00351{bottom:625.640000pt;}
.yd_c00351{bottom:657.640000pt;}
.yc_c00351{bottom:689.640000pt;}
.yb_c00351{bottom:721.640000pt;}
.ya_c00351{bottom:753.640000pt;}
.y9_c00351{bottom:785.640000pt;}
.y8_c00351{bottom:817.640000pt;}
.y7_c00351{bottom:849.640000pt;}
.y6_c00351{bottom:881.640000pt;}
.y5_c00351{bottom:900.520000pt;}
.y4_c00351{bottom:932.520000pt;}
.y3_c00351{bottom:964.520000pt;}
.y2_c00351{bottom:1011.880000pt;}
.h9_c00351{height:17.116093pt;}
.h6_c00351{height:24.000000pt;}
.h5_c00351{height:28.992000pt;}
.h8_c00351{height:37.687165pt;}
.h7_c00351{height:42.908160pt;}
.ha_c00351{height:50.346667pt;}
.h3_c00351{height:57.984000pt;}
.h4_c00351{height:60.510720pt;}
.h2_c00351{height:1067.880000pt;}
.h0_c00351{height:1122.520000pt;}
.h1_c00351{height:1122.666667pt;}
.w4_c00351{width:14.826667pt;}
.w3_c00351{width:582.080000pt;}
.w2_c00351{width:767.960000pt;}
.w0_c00351{width:793.720000pt;}
.w1_c00351{width:794.000000pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:12.880000pt;}
.x2_c00351{left:100.480133pt;}
.x3_c00351{left:122.640000pt;}
.x4_c00351{left:154.139067pt;}
.x5_c00351{left:350.228000pt;}
.x6_c00351{left:381.559333pt;}
.x7_c00351{left:388.891067pt;}
.x8_c00351{left:420.222400pt;}
.x9_c00351{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a7ffd722f2c022befd7f7ff.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.134000;font-style:normal;font-weight:normal;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_5ead5752197d4625a849a1ca.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;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:ff3_c00352;src:url('chunks/assets/font_94ebcf710eb7ce262e8e3516.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00352{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00352{vertical-align:-24.480000px;}
.v0_c00352{vertical-align:0.000000px;}
.v1_c00352{vertical-align:30.240000px;}
.lsc_c00352{letter-spacing:0.000000px;}
.ls7_c00352{letter-spacing:0.083040px;}
.ls6_c00352{letter-spacing:0.206040px;}
.ls8_c00352{letter-spacing:0.265680px;}
.ls3_c00352{letter-spacing:0.292200px;}
.ls9_c00352{letter-spacing:0.295200px;}
.ls4_c00352{letter-spacing:0.346440px;}
.ls13_c00352{letter-spacing:0.425088px;}
.ls17_c00352{letter-spacing:0.478224px;}
.ls11_c00352{letter-spacing:0.492942px;}
.lsa_c00352{letter-spacing:0.531360px;}
.ls12_c00352{letter-spacing:0.608112px;}
.ls16_c00352{letter-spacing:0.657256px;}
.ls14_c00352{letter-spacing:0.712027px;}
.lsb_c00352{letter-spacing:0.944640px;}
.ls1_c00352{letter-spacing:4.942080px;}
.ls10_c00352{letter-spacing:5.290272px;}
.lsf_c00352{letter-spacing:5.335200px;}
.lsd_c00352{letter-spacing:5.430672px;}
.lse_c00352{letter-spacing:5.571072px;}
.ls0_c00352{letter-spacing:5.975400px;}
.ls2_c00352{letter-spacing:5.976000px;}
.ls5_c00352{letter-spacing:5.996400px;}
.ls15_c00352{letter-spacing:6.866352px;}
.sc__c00352{text-shadow:none;}
.sc1_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00352{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc1_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00352{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00352{word-spacing:-25.992000px;}
.ws1_c00352{word-spacing:-21.183552px;}
.ws0_c00352{word-spacing:-21.043152px;}
.ws3_c00352{word-spacing:-20.902752px;}
.ws5_c00352{word-spacing:-20.016000px;}
.ws8_c00352{word-spacing:-17.411199px;}
.ws7_c00352{word-spacing:-16.944480px;}
.ws4_c00352{word-spacing:-11.609280px;}
.ws6_c00352{word-spacing:-10.008000px;}
.ws9_c00352{word-spacing:0.000000px;}
._f_c00352{margin-left:-7.380000px;}
._e_c00352{margin-left:-6.199200px;}
._0_c00352{margin-left:-1.561248px;}
._8_c00352{width:1.131000px;}
._7_c00352{width:2.304000px;}
._1_c00352{width:3.384000px;}
._5_c00352{width:4.680000px;}
._3_c00352{width:5.816040px;}
._4_c00352{width:6.935760px;}
._6_c00352{width:8.064000px;}
._9_c00352{width:9.576000px;}
._d_c00352{width:14.184000px;}
._c_c00352{width:15.480000px;}
._a_c00352{width:18.504000px;}
._b_c00352{width:21.312000px;}
._2_c00352{width:27.288000px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs4_c00352{font-size:36.000000px;}
.fs3_c00352{font-size:41.760000px;}
.fs1_c00352{font-size:56.160000px;}
.fs5_c00352{font-size:59.040000px;}
.fs7_c00352{font-size:60.000000px;}
.fs6_c00352{font-size:60.857039px;}
.fs0_c00352{font-size:72.000000px;}
.fs2_c00352{font-size:74.215901px;}
.y0_c00352{bottom:0.000000px;}
.y31_c00352{bottom:3.120000px;}
.y30_c00352{bottom:34.744580px;}
.y1_c00352{bottom:54.000000px;}
.y2f_c00352{bottom:55.478880px;}
.y2e_c00352{bottom:72.762840px;}
.y2d_c00352{bottom:90.401040px;}
.y2c_c00352{bottom:107.685000px;}
.y2b_c00352{bottom:113.805000px;}
.y2a_c00352{bottom:125.325000px;}
.y29_c00352{bottom:125.326800px;}
.y28_c00352{bottom:149.085000px;}
.y27_c00352{bottom:166.365000px;}
.y26_c00352{bottom:177.885000px;}
.y25_c00352{bottom:184.005000px;}
.y24_c00352{bottom:195.525000px;}
.y23_c00352{bottom:201.645000px;}
.y22_c00352{bottom:228.285000px;}
.y21_c00352{bottom:285.165000px;}
.y20_c00352{bottom:306.405000px;}
.y1f_c00352{bottom:327.285000px;}
.y1e_c00352{bottom:348.165000px;}
.y1d_c00352{bottom:384.525000px;}
.y1c_c00352{bottom:405.405000px;}
.y1b_c00352{bottom:426.285000px;}
.y1a_c00352{bottom:447.525000px;}
.y19_c00352{bottom:483.525000px;}
.y18_c00352{bottom:519.525000px;}
.y17_c00352{bottom:555.525000px;}
.y16_c00352{bottom:576.405000px;}
.y15_c00352{bottom:612.405000px;}
.y14_c00352{bottom:633.285000px;}
.y13_c00352{bottom:654.525000px;}
.y12_c00352{bottom:675.405000px;}
.y11_c00352{bottom:696.285000px;}
.y10_c00352{bottom:732.285000px;}
.yf_c00352{bottom:770.805000px;}
.ye_c00352{bottom:808.965000px;}
.yd_c00352{bottom:844.965000px;}
.yc_c00352{bottom:865.845000px;}
.yb_c00352{bottom:887.085000px;}
.ya_c00352{bottom:923.085000px;}
.y9_c00352{bottom:943.965000px;}
.y8_c00352{bottom:964.845000px;}
.y7_c00352{bottom:986.085000px;}
.y6_c00352{bottom:1006.965000px;}
.y5_c00352{bottom:1027.845000px;}
.y4_c00352{bottom:1049.085000px;}
.y3_c00352{bottom:1085.085000px;}
.y2_c00352{bottom:1138.365000px;}
.h9_c00352{height:19.255605px;}
.h6_c00352{height:32.616000px;}
.h7_c00352{height:46.981634px;}
.h8_c00352{height:53.490240px;}
.ha_c00352{height:56.640000px;}
.h4_c00352{height:57.294676px;}
.h3_c00352{height:65.232000px;}
.h5_c00352{height:68.074560px;}
.h2_c00352{height:1201.365000px;}
.h0_c00352{height:1262.835000px;}
.h1_c00352{height:1263.000000px;}
.w3_c00352{width:16.680000px;}
.w2_c00352{width:863.955000px;}
.w0_c00352{width:892.935000px;}
.w1_c00352{width:893.250000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:14.490000px;}
.x2_c00352{left:113.040150px;}
.x8_c00352{left:122.213700px;}
.x9_c00352{left:139.703550px;}
.x4_c00352{left:190.042950px;}
.x6_c00352{left:221.075700px;}
.xa_c00352{left:259.729650px;}
.xb_c00352{left:277.219500px;}
.x7_c00352{left:306.181650px;}
.xc_c00352{left:369.681450px;}
.xd_c00352{left:393.845550px;}
.x5_c00352{left:417.720000px;}
.xe_c00352{left:552.951450px;}
.xf_c00352{left:676.247700px;}
.x3_c00352{left:686.418900px;}
.x10_c00352{left:728.731200px;}
.x11_c00352{left:768.254608px;}
@media print{
.v2_c00352{vertical-align:-21.760000pt;}
.v0_c00352{vertical-align:0.000000pt;}
.v1_c00352{vertical-align:26.880000pt;}
.lsc_c00352{letter-spacing:0.000000pt;}
.ls7_c00352{letter-spacing:0.073813pt;}
.ls6_c00352{letter-spacing:0.183147pt;}
.ls8_c00352{letter-spacing:0.236160pt;}
.ls3_c00352{letter-spacing:0.259733pt;}
.ls9_c00352{letter-spacing:0.262400pt;}
.ls4_c00352{letter-spacing:0.307947pt;}
.ls13_c00352{letter-spacing:0.377856pt;}
.ls17_c00352{letter-spacing:0.425088pt;}
.ls11_c00352{letter-spacing:0.438171pt;}
.lsa_c00352{letter-spacing:0.472320pt;}
.ls12_c00352{letter-spacing:0.540544pt;}
.ls16_c00352{letter-spacing:0.584228pt;}
.ls14_c00352{letter-spacing:0.632913pt;}
.lsb_c00352{letter-spacing:0.839680pt;}
.ls1_c00352{letter-spacing:4.392960pt;}
.ls10_c00352{letter-spacing:4.702464pt;}
.lsf_c00352{letter-spacing:4.742400pt;}
.lsd_c00352{letter-spacing:4.827264pt;}
.lse_c00352{letter-spacing:4.952064pt;}
.ls0_c00352{letter-spacing:5.311467pt;}
.ls2_c00352{letter-spacing:5.312000pt;}
.ls5_c00352{letter-spacing:5.330133pt;}
.ls15_c00352{letter-spacing:6.103424pt;}
.ws2_c00352{word-spacing:-23.104000pt;}
.ws1_c00352{word-spacing:-18.829824pt;}
.ws0_c00352{word-spacing:-18.705024pt;}
.ws3_c00352{word-spacing:-18.580224pt;}
.ws5_c00352{word-spacing:-17.792000pt;}
.ws8_c00352{word-spacing:-15.476621pt;}
.ws7_c00352{word-spacing:-15.061760pt;}
.ws4_c00352{word-spacing:-10.319360pt;}
.ws6_c00352{word-spacing:-8.896000pt;}
.ws9_c00352{word-spacing:0.000000pt;}
._f_c00352{margin-left:-6.560000pt;}
._e_c00352{margin-left:-5.510400pt;}
._0_c00352{margin-left:-1.387776pt;}
._8_c00352{width:1.005333pt;}
._7_c00352{width:2.048000pt;}
._1_c00352{width:3.008000pt;}
._5_c00352{width:4.160000pt;}
._3_c00352{width:5.169813pt;}
._4_c00352{width:6.165120pt;}
._6_c00352{width:7.168000pt;}
._9_c00352{width:8.512000pt;}
._d_c00352{width:12.608000pt;}
._c_c00352{width:13.760000pt;}
._a_c00352{width:16.448000pt;}
._b_c00352{width:18.944000pt;}
._2_c00352{width:24.256000pt;}
.fs4_c00352{font-size:32.000000pt;}
.fs3_c00352{font-size:37.120000pt;}
.fs1_c00352{font-size:49.920000pt;}
.fs5_c00352{font-size:52.480000pt;}
.fs7_c00352{font-size:53.333333pt;}
.fs6_c00352{font-size:54.095146pt;}
.fs0_c00352{font-size:64.000000pt;}
.fs2_c00352{font-size:65.969690pt;}
.y0_c00352{bottom:0.000000pt;}
.y31_c00352{bottom:2.773333pt;}
.y30_c00352{bottom:30.884071pt;}
.y1_c00352{bottom:48.000000pt;}
.y2f_c00352{bottom:49.314560pt;}
.y2e_c00352{bottom:64.678080pt;}
.y2d_c00352{bottom:80.356480pt;}
.y2c_c00352{bottom:95.720000pt;}
.y2b_c00352{bottom:101.160000pt;}
.y2a_c00352{bottom:111.400000pt;}
.y29_c00352{bottom:111.401600pt;}
.y28_c00352{bottom:132.520000pt;}
.y27_c00352{bottom:147.880000pt;}
.y26_c00352{bottom:158.120000pt;}
.y25_c00352{bottom:163.560000pt;}
.y24_c00352{bottom:173.800000pt;}
.y23_c00352{bottom:179.240000pt;}
.y22_c00352{bottom:202.920000pt;}
.y21_c00352{bottom:253.480000pt;}
.y20_c00352{bottom:272.360000pt;}
.y1f_c00352{bottom:290.920000pt;}
.y1e_c00352{bottom:309.480000pt;}
.y1d_c00352{bottom:341.800000pt;}
.y1c_c00352{bottom:360.360000pt;}
.y1b_c00352{bottom:378.920000pt;}
.y1a_c00352{bottom:397.800000pt;}
.y19_c00352{bottom:429.800000pt;}
.y18_c00352{bottom:461.800000pt;}
.y17_c00352{bottom:493.800000pt;}
.y16_c00352{bottom:512.360000pt;}
.y15_c00352{bottom:544.360000pt;}
.y14_c00352{bottom:562.920000pt;}
.y13_c00352{bottom:581.800000pt;}
.y12_c00352{bottom:600.360000pt;}
.y11_c00352{bottom:618.920000pt;}
.y10_c00352{bottom:650.920000pt;}
.yf_c00352{bottom:685.160000pt;}
.ye_c00352{bottom:719.080000pt;}
.yd_c00352{bottom:751.080000pt;}
.yc_c00352{bottom:769.640000pt;}
.yb_c00352{bottom:788.520000pt;}
.ya_c00352{bottom:820.520000pt;}
.y9_c00352{bottom:839.080000pt;}
.y8_c00352{bottom:857.640000pt;}
.y7_c00352{bottom:876.520000pt;}
.y6_c00352{bottom:895.080000pt;}
.y5_c00352{bottom:913.640000pt;}
.y4_c00352{bottom:932.520000pt;}
.y3_c00352{bottom:964.520000pt;}
.y2_c00352{bottom:1011.880000pt;}
.h9_c00352{height:17.116093pt;}
.h6_c00352{height:28.992000pt;}
.h7_c00352{height:41.761453pt;}
.h8_c00352{height:47.546880pt;}
.ha_c00352{height:50.346667pt;}
.h4_c00352{height:50.928601pt;}
.h3_c00352{height:57.984000pt;}
.h5_c00352{height:60.510720pt;}
.h2_c00352{height:1067.880000pt;}
.h0_c00352{height:1122.520000pt;}
.h1_c00352{height:1122.666667pt;}
.w3_c00352{width:14.826667pt;}
.w2_c00352{width:767.960000pt;}
.w0_c00352{width:793.720000pt;}
.w1_c00352{width:794.000000pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:12.880000pt;}
.x2_c00352{left:100.480133pt;}
.x8_c00352{left:108.634400pt;}
.x9_c00352{left:124.180933pt;}
.x4_c00352{left:168.927067pt;}
.x6_c00352{left:196.511733pt;}
.xa_c00352{left:230.870800pt;}
.xb_c00352{left:246.417333pt;}
.x7_c00352{left:272.161467pt;}
.xc_c00352{left:328.605733pt;}
.xd_c00352{left:350.084933pt;}
.x5_c00352{left:371.306667pt;}
.xe_c00352{left:491.512400pt;}
.xf_c00352{left:601.109067pt;}
.x3_c00352{left:610.150133pt;}
.x10_c00352{left:647.761067pt;}
.x11_c00352{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a90405b654d9afed39c2b45.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.134000;font-style:normal;font-weight:normal;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_adc4ab2f735ca96c44e214ed.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;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:ff3_c00353;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00353;src:url('chunks/assets/font_c6f27b96c0c95ca1f405f0ac.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00353{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00353{vertical-align:-24.480000px;}
.v0_c00353{vertical-align:0.000000px;}
.v1_c00353{vertical-align:30.240000px;}
.lse_c00353{letter-spacing:-0.179568px;}
.lsc_c00353{letter-spacing:0.000000px;}
.ls14_c00353{letter-spacing:0.144000px;}
.ls12_c00353{letter-spacing:0.265680px;}
.ls0_c00353{letter-spacing:0.273840px;}
.lsa_c00353{letter-spacing:0.295200px;}
.ls7_c00353{letter-spacing:0.327292px;}
.ls9_c00353{letter-spacing:0.328900px;}
.ls10_c00353{letter-spacing:0.371952px;}
.ls15_c00353{letter-spacing:0.478224px;}
.ls8_c00353{letter-spacing:0.494773px;}
.ls11_c00353{letter-spacing:0.531360px;}
.ls13_c00353{letter-spacing:0.547713px;}
.ls6_c00353{letter-spacing:0.558840px;}
.lsb_c00353{letter-spacing:0.560880px;}
.ls3_c00353{letter-spacing:0.615240px;}
.lsf_c00353{letter-spacing:1.405152px;}
.ls2_c00353{letter-spacing:4.536000px;}
.lsd_c00353{letter-spacing:5.430672px;}
.ls1_c00353{letter-spacing:5.976000px;}
.ls5_c00353{letter-spacing:5.980200px;}
.ls4_c00353{letter-spacing:54.864000px;}
.sc__c00353{text-shadow:none;}
.sc1_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00353{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc1_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00353{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00353{word-spacing:-21.043152px;}
.ws0_c00353{word-spacing:-20.016000px;}
.ws2_c00353{word-spacing:-11.609280px;}
.ws3_c00353{word-spacing:-11.429712px;}
.ws5_c00353{word-spacing:-10.152000px;}
.ws4_c00353{word-spacing:-10.008000px;}
.ws6_c00353{word-spacing:0.000000px;}
._6_c00353{margin-left:-4.464000px;}
._9_c00353{margin-left:-1.179360px;}
._3_c00353{width:1.080000px;}
._0_c00353{width:2.952000px;}
._5_c00353{width:4.536000px;}
._d_c00353{width:5.544000px;}
._7_c00353{width:6.840000px;}
._1_c00353{width:8.495400px;}
._2_c00353{width:9.507600px;}
._4_c00353{width:10.656000px;}
._e_c00353{width:12.888000px;}
._c_c00353{width:14.904000px;}
._8_c00353{width:16.056000px;}
._b_c00353{width:17.280000px;}
._a_c00353{width:22.968000px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs4_c00353{font-size:36.000000px;}
.fs1_c00353{font-size:41.760000px;}
.fs7_c00353{font-size:48.982495px;}
.fs3_c00353{font-size:56.160000px;}
.fs5_c00353{font-size:59.040000px;}
.fs8_c00353{font-size:60.000000px;}
.fs6_c00353{font-size:60.857039px;}
.fs0_c00353{font-size:72.000000px;}
.fs2_c00353{font-size:74.215901px;}
.y0_c00353{bottom:0.000000px;}
.y32_c00353{bottom:3.120000px;}
.y31_c00353{bottom:34.744580px;}
.y1_c00353{bottom:54.000000px;}
.y30_c00353{bottom:61.605000px;}
.y2f_c00353{bottom:78.885000px;}
.y2e_c00353{bottom:96.525000px;}
.y2d_c00353{bottom:107.685000px;}
.y2c_c00353{bottom:113.805000px;}
.y2b_c00353{bottom:125.322840px;}
.y2a_c00353{bottom:142.961040px;}
.y29_c00353{bottom:160.245000px;}
.y28_c00353{bottom:166.365000px;}
.y27_c00353{bottom:193.005000px;}
.y26_c00353{bottom:229.725000px;}
.y25_c00353{bottom:250.965000px;}
.y24_c00353{bottom:271.845000px;}
.y23_c00353{bottom:292.725000px;}
.y22_c00353{bottom:328.725000px;}
.y21_c00353{bottom:349.965000px;}
.y20_c00353{bottom:370.845000px;}
.y1f_c00353{bottom:391.725000px;}
.y1e_c00353{bottom:412.965000px;}
.y1d_c00353{bottom:433.845000px;}
.y1c_c00353{bottom:454.725000px;}
.y1b_c00353{bottom:475.965000px;}
.y1a_c00353{bottom:496.845000px;}
.y19_c00353{bottom:517.725000px;}
.y18_c00353{bottom:538.965000px;}
.y17_c00353{bottom:574.965000px;}
.y16_c00353{bottom:610.965000px;}
.y15_c00353{bottom:646.965000px;}
.y14_c00353{bottom:667.845000px;}
.y13_c00353{bottom:689.085000px;}
.y12_c00353{bottom:725.085000px;}
.y11_c00353{bottom:761.085000px;}
.y10_c00353{bottom:797.085000px;}
.yf_c00353{bottom:817.965000px;}
.ye_c00353{bottom:838.845000px;}
.yd_c00353{bottom:860.085000px;}
.yc_c00353{bottom:880.965000px;}
.yb_c00353{bottom:901.845000px;}
.ya_c00353{bottom:923.085000px;}
.y9_c00353{bottom:943.965000px;}
.y8_c00353{bottom:964.845000px;}
.y7_c00353{bottom:986.085000px;}
.y6_c00353{bottom:1022.085000px;}
.y5_c00353{bottom:1042.965000px;}
.y4_c00353{bottom:1063.845000px;}
.y3_c00353{bottom:1085.085000px;}
.y2_c00353{bottom:1138.365000px;}
.h9_c00353{height:19.255605px;}
.h6_c00353{height:32.616000px;}
.h7_c00353{height:46.981634px;}
.h8_c00353{height:53.490240px;}
.ha_c00353{height:56.640000px;}
.h5_c00353{height:57.294676px;}
.h3_c00353{height:65.232000px;}
.h4_c00353{height:68.074560px;}
.h2_c00353{height:1201.365000px;}
.h0_c00353{height:1262.835000px;}
.h1_c00353{height:1263.000000px;}
.w3_c00353{width:16.680000px;}
.w2_c00353{width:863.955000px;}
.w0_c00353{width:892.935000px;}
.w1_c00353{width:893.250000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:14.490000px;}
.x2_c00353{left:113.040150px;}
.x1a_c00353{left:140.039100px;}
.x5_c00353{left:181.042950px;}
.x6_c00353{left:196.036800px;}
.xf_c00353{left:198.476100px;}
.x10_c00353{left:207.476100px;}
.x17_c00353{left:214.054350px;}
.x1f_c00353{left:226.686450px;}
.x15_c00353{left:233.063550px;}
.x16_c00353{left:242.063550px;}
.x20_c00353{left:261.092700px;}
.x21_c00353{left:323.881650px;}
.x18_c00353{left:338.054400px;}
.x19_c00353{left:351.032250px;}
.x3_c00353{left:392.712600px;}
.x9_c00353{left:417.896550px;}
.xa_c00353{left:447.480000px;}
.xb_c00353{left:460.090200px;}
.x7_c00353{left:461.821350px;}
.x1d_c00353{left:467.129850px;}
.x8_c00353{left:472.818900px;}
.x1b_c00353{left:477.417750px;}
.xc_c00353{left:485.695950px;}
.x4_c00353{left:487.641750px;}
.x1e_c00353{left:502.157250px;}
.x1c_c00353{left:559.183200px;}
.xd_c00353{left:563.390250px;}
.x11_c00353{left:573.342000px;}
.xe_c00353{left:578.384100px;}
.x12_c00353{left:588.335850px;}
.x13_c00353{left:608.755800px;}
.x14_c00353{left:621.733500px;}
.x22_c00353{left:768.254608px;}
@media print{
.v2_c00353{vertical-align:-21.760000pt;}
.v0_c00353{vertical-align:0.000000pt;}
.v1_c00353{vertical-align:26.880000pt;}
.lse_c00353{letter-spacing:-0.159616pt;}
.lsc_c00353{letter-spacing:0.000000pt;}
.ls14_c00353{letter-spacing:0.128000pt;}
.ls12_c00353{letter-spacing:0.236160pt;}
.ls0_c00353{letter-spacing:0.243413pt;}
.lsa_c00353{letter-spacing:0.262400pt;}
.ls7_c00353{letter-spacing:0.290926pt;}
.ls9_c00353{letter-spacing:0.292356pt;}
.ls10_c00353{letter-spacing:0.330624pt;}
.ls15_c00353{letter-spacing:0.425088pt;}
.ls8_c00353{letter-spacing:0.439798pt;}
.ls11_c00353{letter-spacing:0.472320pt;}
.ls13_c00353{letter-spacing:0.486856pt;}
.ls6_c00353{letter-spacing:0.496747pt;}
.lsb_c00353{letter-spacing:0.498560pt;}
.ls3_c00353{letter-spacing:0.546880pt;}
.lsf_c00353{letter-spacing:1.249024pt;}
.ls2_c00353{letter-spacing:4.032000pt;}
.lsd_c00353{letter-spacing:4.827264pt;}
.ls1_c00353{letter-spacing:5.312000pt;}
.ls5_c00353{letter-spacing:5.315733pt;}
.ls4_c00353{letter-spacing:48.768000pt;}
.ws1_c00353{word-spacing:-18.705024pt;}
.ws0_c00353{word-spacing:-17.792000pt;}
.ws2_c00353{word-spacing:-10.319360pt;}
.ws3_c00353{word-spacing:-10.159744pt;}
.ws5_c00353{word-spacing:-9.024000pt;}
.ws4_c00353{word-spacing:-8.896000pt;}
.ws6_c00353{word-spacing:0.000000pt;}
._6_c00353{margin-left:-3.968000pt;}
._9_c00353{margin-left:-1.048320pt;}
._3_c00353{width:0.960000pt;}
._0_c00353{width:2.624000pt;}
._5_c00353{width:4.032000pt;}
._d_c00353{width:4.928000pt;}
._7_c00353{width:6.080000pt;}
._1_c00353{width:7.551467pt;}
._2_c00353{width:8.451200pt;}
._4_c00353{width:9.472000pt;}
._e_c00353{width:11.456000pt;}
._c_c00353{width:13.248000pt;}
._8_c00353{width:14.272000pt;}
._b_c00353{width:15.360000pt;}
._a_c00353{width:20.416000pt;}
.fs4_c00353{font-size:32.000000pt;}
.fs1_c00353{font-size:37.120000pt;}
.fs7_c00353{font-size:43.539995pt;}
.fs3_c00353{font-size:49.920000pt;}
.fs5_c00353{font-size:52.480000pt;}
.fs8_c00353{font-size:53.333333pt;}
.fs6_c00353{font-size:54.095146pt;}
.fs0_c00353{font-size:64.000000pt;}
.fs2_c00353{font-size:65.969690pt;}
.y0_c00353{bottom:0.000000pt;}
.y32_c00353{bottom:2.773333pt;}
.y31_c00353{bottom:30.884071pt;}
.y1_c00353{bottom:48.000000pt;}
.y30_c00353{bottom:54.760000pt;}
.y2f_c00353{bottom:70.120000pt;}
.y2e_c00353{bottom:85.800000pt;}
.y2d_c00353{bottom:95.720000pt;}
.y2c_c00353{bottom:101.160000pt;}
.y2b_c00353{bottom:111.398080pt;}
.y2a_c00353{bottom:127.076480pt;}
.y29_c00353{bottom:142.440000pt;}
.y28_c00353{bottom:147.880000pt;}
.y27_c00353{bottom:171.560000pt;}
.y26_c00353{bottom:204.200000pt;}
.y25_c00353{bottom:223.080000pt;}
.y24_c00353{bottom:241.640000pt;}
.y23_c00353{bottom:260.200000pt;}
.y22_c00353{bottom:292.200000pt;}
.y21_c00353{bottom:311.080000pt;}
.y20_c00353{bottom:329.640000pt;}
.y1f_c00353{bottom:348.200000pt;}
.y1e_c00353{bottom:367.080000pt;}
.y1d_c00353{bottom:385.640000pt;}
.y1c_c00353{bottom:404.200000pt;}
.y1b_c00353{bottom:423.080000pt;}
.y1a_c00353{bottom:441.640000pt;}
.y19_c00353{bottom:460.200000pt;}
.y18_c00353{bottom:479.080000pt;}
.y17_c00353{bottom:511.080000pt;}
.y16_c00353{bottom:543.080000pt;}
.y15_c00353{bottom:575.080000pt;}
.y14_c00353{bottom:593.640000pt;}
.y13_c00353{bottom:612.520000pt;}
.y12_c00353{bottom:644.520000pt;}
.y11_c00353{bottom:676.520000pt;}
.y10_c00353{bottom:708.520000pt;}
.yf_c00353{bottom:727.080000pt;}
.ye_c00353{bottom:745.640000pt;}
.yd_c00353{bottom:764.520000pt;}
.yc_c00353{bottom:783.080000pt;}
.yb_c00353{bottom:801.640000pt;}
.ya_c00353{bottom:820.520000pt;}
.y9_c00353{bottom:839.080000pt;}
.y8_c00353{bottom:857.640000pt;}
.y7_c00353{bottom:876.520000pt;}
.y6_c00353{bottom:908.520000pt;}
.y5_c00353{bottom:927.080000pt;}
.y4_c00353{bottom:945.640000pt;}
.y3_c00353{bottom:964.520000pt;}
.y2_c00353{bottom:1011.880000pt;}
.h9_c00353{height:17.116093pt;}
.h6_c00353{height:28.992000pt;}
.h7_c00353{height:41.761453pt;}
.h8_c00353{height:47.546880pt;}
.ha_c00353{height:50.346667pt;}
.h5_c00353{height:50.928601pt;}
.h3_c00353{height:57.984000pt;}
.h4_c00353{height:60.510720pt;}
.h2_c00353{height:1067.880000pt;}
.h0_c00353{height:1122.520000pt;}
.h1_c00353{height:1122.666667pt;}
.w3_c00353{width:14.826667pt;}
.w2_c00353{width:767.960000pt;}
.w0_c00353{width:793.720000pt;}
.w1_c00353{width:794.000000pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:12.880000pt;}
.x2_c00353{left:100.480133pt;}
.x1a_c00353{left:124.479200pt;}
.x5_c00353{left:160.927067pt;}
.x6_c00353{left:174.254933pt;}
.xf_c00353{left:176.423200pt;}
.x10_c00353{left:184.423200pt;}
.x17_c00353{left:190.270533pt;}
.x1f_c00353{left:201.499067pt;}
.x15_c00353{left:207.167600pt;}
.x16_c00353{left:215.167600pt;}
.x20_c00353{left:232.082400pt;}
.x21_c00353{left:287.894800pt;}
.x18_c00353{left:300.492800pt;}
.x19_c00353{left:312.028667pt;}
.x3_c00353{left:349.077867pt;}
.x9_c00353{left:371.463600pt;}
.xa_c00353{left:397.760000pt;}
.xb_c00353{left:408.969067pt;}
.x7_c00353{left:410.507867pt;}
.x1d_c00353{left:415.226533pt;}
.x8_c00353{left:420.283467pt;}
.x1b_c00353{left:424.371333pt;}
.xc_c00353{left:431.729733pt;}
.x4_c00353{left:433.459333pt;}
.x1e_c00353{left:446.362000pt;}
.x1c_c00353{left:497.051733pt;}
.xd_c00353{left:500.791333pt;}
.x11_c00353{left:509.637333pt;}
.xe_c00353{left:514.119200pt;}
.x12_c00353{left:522.965200pt;}
.x13_c00353{left:541.116267pt;}
.x14_c00353{left:552.652000pt;}
.x22_c00353{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aeb4a3b6b85002fa79827327.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.134000;font-style:normal;font-weight:normal;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_d713664bfaec8c93d6c2616c.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;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:ff3_c00354;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_55deccac6d7d17e46d085ae1.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00354{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00354{vertical-align:-24.480000px;}
.v0_c00354{vertical-align:0.000000px;}
.v1_c00354{vertical-align:30.240000px;}
.ls5_c00354{letter-spacing:-0.179568px;}
.ls4_c00354{letter-spacing:0.000000px;}
.ls6_c00354{letter-spacing:0.144000px;}
.ls8_c00354{letter-spacing:0.531360px;}
.ls7_c00354{letter-spacing:3.731328px;}
.ls1_c00354{letter-spacing:5.688000px;}
.ls3_c00354{letter-spacing:5.976000px;}
.ls2_c00354{letter-spacing:6.408000px;}
.ls0_c00354{letter-spacing:54.864000px;}
.sc__c00354{text-shadow:none;}
.sc1_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00354{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc1_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00354{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00354{word-spacing:-11.429712px;}
.ws1_c00354{word-spacing:-10.152000px;}
.ws2_c00354{word-spacing:0.000000px;}
._e_c00354{margin-left:-3.358080px;}
._f_c00354{margin-left:-2.352960px;}
._10_c00354{margin-left:-1.062720px;}
._6_c00354{width:1.440000px;}
._4_c00354{width:3.240000px;}
._9_c00354{width:4.248000px;}
._c_c00354{width:6.048000px;}
._0_c00354{width:7.272000px;}
._1_c00354{width:8.712000px;}
._7_c00354{width:9.864000px;}
._b_c00354{width:11.088000px;}
._3_c00354{width:14.472000px;}
._5_c00354{width:16.344000px;}
._a_c00354{width:18.504000px;}
._d_c00354{width:25.416000px;}
._2_c00354{width:30.384000px;}
._8_c00354{width:41.616000px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs3_c00354{font-size:36.000000px;}
.fs2_c00354{font-size:41.760000px;}
.fs4_c00354{font-size:59.040000px;}
.fs5_c00354{font-size:60.000000px;}
.fs0_c00354{font-size:72.000000px;}
.fs1_c00354{font-size:74.215901px;}
.y0_c00354{bottom:0.000000px;}
.y2c_c00354{bottom:3.120000px;}
.y2b_c00354{bottom:34.744580px;}
.y1_c00354{bottom:54.000000px;}
.y2a_c00354{bottom:55.481040px;}
.y29_c00354{bottom:78.885000px;}
.y28_c00354{bottom:105.525000px;}
.y27_c00354{bottom:178.965000px;}
.y26_c00354{bottom:207.405000px;}
.y25_c00354{bottom:235.845000px;}
.y24_c00354{bottom:271.845000px;}
.y23_c00354{bottom:307.845000px;}
.y22_c00354{bottom:328.725000px;}
.y21_c00354{bottom:349.965000px;}
.y20_c00354{bottom:385.965000px;}
.y1f_c00354{bottom:406.845000px;}
.y1e_c00354{bottom:427.725000px;}
.y1d_c00354{bottom:448.965000px;}
.y1c_c00354{bottom:484.965000px;}
.y1b_c00354{bottom:505.845000px;}
.y1a_c00354{bottom:526.725000px;}
.y19_c00354{bottom:547.965000px;}
.y18_c00354{bottom:568.845000px;}
.y17_c00354{bottom:604.845000px;}
.y16_c00354{bottom:640.845000px;}
.y15_c00354{bottom:661.725000px;}
.y14_c00354{bottom:682.965000px;}
.y13_c00354{bottom:703.845000px;}
.y12_c00354{bottom:725.085000px;}
.y11_c00354{bottom:745.965000px;}
.y10_c00354{bottom:766.845000px;}
.yf_c00354{bottom:788.085000px;}
.ye_c00354{bottom:824.085000px;}
.yd_c00354{bottom:860.085000px;}
.yc_c00354{bottom:880.965000px;}
.yb_c00354{bottom:901.845000px;}
.ya_c00354{bottom:923.085000px;}
.y9_c00354{bottom:959.085000px;}
.y8_c00354{bottom:979.965000px;}
.y7_c00354{bottom:1000.845000px;}
.y6_c00354{bottom:1022.085000px;}
.y5_c00354{bottom:1042.965000px;}
.y4_c00354{bottom:1063.845000px;}
.y3_c00354{bottom:1085.085000px;}
.y2_c00354{bottom:1138.365000px;}
.h8_c00354{height:19.255605px;}
.h6_c00354{height:32.616000px;}
.h7_c00354{height:53.490240px;}
.h9_c00354{height:56.640000px;}
.h4_c00354{height:57.294676px;}
.h3_c00354{height:65.232000px;}
.h5_c00354{height:68.074560px;}
.h2_c00354{height:1201.365000px;}
.h0_c00354{height:1262.835000px;}
.h1_c00354{height:1263.000000px;}
.w3_c00354{width:16.680000px;}
.w2_c00354{width:863.955000px;}
.w0_c00354{width:892.935000px;}
.w1_c00354{width:893.250000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:14.490000px;}
.x2_c00354{left:113.040150px;}
.x9_c00354{left:140.037600px;}
.xa_c00354{left:167.037600px;}
.xc_c00354{left:283.152750px;}
.x7_c00354{left:320.036550px;}
.x8_c00354{left:355.063800px;}
.x5_c00354{left:553.523850px;}
.x6_c00354{left:656.772600px;}
.xb_c00354{left:731.400450px;}
.x3_c00354{left:735.396300px;}
.x4_c00354{left:750.390000px;}
.xd_c00354{left:768.254608px;}
@media print{
.v2_c00354{vertical-align:-21.760000pt;}
.v0_c00354{vertical-align:0.000000pt;}
.v1_c00354{vertical-align:26.880000pt;}
.ls5_c00354{letter-spacing:-0.159616pt;}
.ls4_c00354{letter-spacing:0.000000pt;}
.ls6_c00354{letter-spacing:0.128000pt;}
.ls8_c00354{letter-spacing:0.472320pt;}
.ls7_c00354{letter-spacing:3.316736pt;}
.ls1_c00354{letter-spacing:5.056000pt;}
.ls3_c00354{letter-spacing:5.312000pt;}
.ls2_c00354{letter-spacing:5.696000pt;}
.ls0_c00354{letter-spacing:48.768000pt;}
.ws0_c00354{word-spacing:-10.159744pt;}
.ws1_c00354{word-spacing:-9.024000pt;}
.ws2_c00354{word-spacing:0.000000pt;}
._e_c00354{margin-left:-2.984960pt;}
._f_c00354{margin-left:-2.091520pt;}
._10_c00354{margin-left:-0.944640pt;}
._6_c00354{width:1.280000pt;}
._4_c00354{width:2.880000pt;}
._9_c00354{width:3.776000pt;}
._c_c00354{width:5.376000pt;}
._0_c00354{width:6.464000pt;}
._1_c00354{width:7.744000pt;}
._7_c00354{width:8.768000pt;}
._b_c00354{width:9.856000pt;}
._3_c00354{width:12.864000pt;}
._5_c00354{width:14.528000pt;}
._a_c00354{width:16.448000pt;}
._d_c00354{width:22.592000pt;}
._2_c00354{width:27.008000pt;}
._8_c00354{width:36.992000pt;}
.fs3_c00354{font-size:32.000000pt;}
.fs2_c00354{font-size:37.120000pt;}
.fs4_c00354{font-size:52.480000pt;}
.fs5_c00354{font-size:53.333333pt;}
.fs0_c00354{font-size:64.000000pt;}
.fs1_c00354{font-size:65.969690pt;}
.y0_c00354{bottom:0.000000pt;}
.y2c_c00354{bottom:2.773333pt;}
.y2b_c00354{bottom:30.884071pt;}
.y1_c00354{bottom:48.000000pt;}
.y2a_c00354{bottom:49.316480pt;}
.y29_c00354{bottom:70.120000pt;}
.y28_c00354{bottom:93.800000pt;}
.y27_c00354{bottom:159.080000pt;}
.y26_c00354{bottom:184.360000pt;}
.y25_c00354{bottom:209.640000pt;}
.y24_c00354{bottom:241.640000pt;}
.y23_c00354{bottom:273.640000pt;}
.y22_c00354{bottom:292.200000pt;}
.y21_c00354{bottom:311.080000pt;}
.y20_c00354{bottom:343.080000pt;}
.y1f_c00354{bottom:361.640000pt;}
.y1e_c00354{bottom:380.200000pt;}
.y1d_c00354{bottom:399.080000pt;}
.y1c_c00354{bottom:431.080000pt;}
.y1b_c00354{bottom:449.640000pt;}
.y1a_c00354{bottom:468.200000pt;}
.y19_c00354{bottom:487.080000pt;}
.y18_c00354{bottom:505.640000pt;}
.y17_c00354{bottom:537.640000pt;}
.y16_c00354{bottom:569.640000pt;}
.y15_c00354{bottom:588.200000pt;}
.y14_c00354{bottom:607.080000pt;}
.y13_c00354{bottom:625.640000pt;}
.y12_c00354{bottom:644.520000pt;}
.y11_c00354{bottom:663.080000pt;}
.y10_c00354{bottom:681.640000pt;}
.yf_c00354{bottom:700.520000pt;}
.ye_c00354{bottom:732.520000pt;}
.yd_c00354{bottom:764.520000pt;}
.yc_c00354{bottom:783.080000pt;}
.yb_c00354{bottom:801.640000pt;}
.ya_c00354{bottom:820.520000pt;}
.y9_c00354{bottom:852.520000pt;}
.y8_c00354{bottom:871.080000pt;}
.y7_c00354{bottom:889.640000pt;}
.y6_c00354{bottom:908.520000pt;}
.y5_c00354{bottom:927.080000pt;}
.y4_c00354{bottom:945.640000pt;}
.y3_c00354{bottom:964.520000pt;}
.y2_c00354{bottom:1011.880000pt;}
.h8_c00354{height:17.116093pt;}
.h6_c00354{height:28.992000pt;}
.h7_c00354{height:47.546880pt;}
.h9_c00354{height:50.346667pt;}
.h4_c00354{height:50.928601pt;}
.h3_c00354{height:57.984000pt;}
.h5_c00354{height:60.510720pt;}
.h2_c00354{height:1067.880000pt;}
.h0_c00354{height:1122.520000pt;}
.h1_c00354{height:1122.666667pt;}
.w3_c00354{width:14.826667pt;}
.w2_c00354{width:767.960000pt;}
.w0_c00354{width:793.720000pt;}
.w1_c00354{width:794.000000pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:12.880000pt;}
.x2_c00354{left:100.480133pt;}
.x9_c00354{left:124.477867pt;}
.xa_c00354{left:148.477867pt;}
.xc_c00354{left:251.691333pt;}
.x7_c00354{left:284.476933pt;}
.x8_c00354{left:315.612267pt;}
.x5_c00354{left:492.021200pt;}
.x6_c00354{left:583.797867pt;}
.xb_c00354{left:650.133733pt;}
.x3_c00354{left:653.685600pt;}
.x4_c00354{left:667.013333pt;}
.xd_c00354{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95fc26c6609d6c6c47e1480e.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.134000;font-style:normal;font-weight:normal;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_d4956dbdce7a68c726e02bf5.woff2')format("woff");}.ff2_c00355{font-family:ff2_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:ff3_c00355;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_1d46c4bb6992bcc76f8d8727.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;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:ff5_c00355;src:url('chunks/assets/font_85c9ca8e763932a68389224b.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00355;src:url('chunks/assets/font_652328091be998ecf72adaac.woff2')format("woff");}.ff6_c00355{font-family:ff6_c00355;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00355;src:url('chunks/assets/font_7a2e7943f143706a12396e7c.woff2')format("woff");}.ff7_c00355{font-family:ff7_c00355;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00355;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff8_c00355{font-family:ff8_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:ff9_c00355;src:url('chunks/assets/font_d40a98e52df2c0d77ceb84b4.woff2')format("woff");}.ff9_c00355{font-family:ff9_c00355;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00355{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00355{vertical-align:-24.480000px;}
.v0_c00355{vertical-align:0.000000px;}
.v1_c00355{vertical-align:24.484320px;}
.ls1d_c00355{letter-spacing:0.000000px;}
.ls1e_c00355{letter-spacing:0.036000px;}
.ls23_c00355{letter-spacing:0.144000px;}
.ls10_c00355{letter-spacing:0.236160px;}
.lsd_c00355{letter-spacing:0.242064px;}
.ls15_c00355{letter-spacing:0.243428px;}
.ls21_c00355{letter-spacing:0.265680px;}
.ls12_c00355{letter-spacing:0.273857px;}
.lsb_c00355{letter-spacing:0.304285px;}
.ls18_c00355{letter-spacing:0.318816px;}
.ls3_c00355{letter-spacing:0.327292px;}
.ls9_c00355{letter-spacing:0.327911px;}
.lsa_c00355{letter-spacing:0.328282px;}
.lsc_c00355{letter-spacing:0.328628px;}
.ls26_c00355{letter-spacing:0.348336px;}
.ls13_c00355{letter-spacing:0.352971px;}
.ls19_c00355{letter-spacing:0.354240px;}
.ls16_c00355{letter-spacing:0.365142px;}
.ls1a_c00355{letter-spacing:0.425088px;}
.ls29_c00355{letter-spacing:0.438171px;}
.ls2a_c00355{letter-spacing:0.492942px;}
.ls4_c00355{letter-spacing:0.494773px;}
.ls17_c00355{letter-spacing:0.513648px;}
.ls28_c00355{letter-spacing:0.531360px;}
.ls14_c00355{letter-spacing:0.547713px;}
.ls1f_c00355{letter-spacing:0.584496px;}
.ls20_c00355{letter-spacing:0.637632px;}
.ls2c_c00355{letter-spacing:0.712027px;}
.ls2b_c00355{letter-spacing:0.991872px;}
.ls2d_c00355{letter-spacing:1.847952px;}
.ls1b_c00355{letter-spacing:2.774880px;}
.ls1c_c00355{letter-spacing:2.780784px;}
.ls8_c00355{letter-spacing:4.433904px;}
.ls22_c00355{letter-spacing:4.487040px;}
.lse_c00355{letter-spacing:5.248656px;}
.lsf_c00355{letter-spacing:5.260464px;}
.ls11_c00355{letter-spacing:5.266368px;}
.ls6_c00355{letter-spacing:5.301792px;}
.ls5_c00355{letter-spacing:5.313600px;}
.ls27_c00355{letter-spacing:5.354928px;}
.ls2_c00355{letter-spacing:5.431680px;}
.ls7_c00355{letter-spacing:5.490720px;}
.ls25_c00355{letter-spacing:5.514336px;}
.ls1_c00355{letter-spacing:5.785920px;}
.ls0_c00355{letter-spacing:5.976000px;}
.ls24_c00355{letter-spacing:9.464112px;}
.sc__c00355{text-shadow:none;}
.sc1_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00355{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc1_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00355{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00355{word-spacing:-21.714912px;}
.ws4_c00355{word-spacing:-21.661776px;}
.ws0_c00355{word-spacing:-20.632021px;}
.ws2_c00355{word-spacing:-17.465970px;}
.ws6_c00355{word-spacing:-17.356428px;}
.ws7_c00355{word-spacing:-17.246885px;}
.ws8_c00355{word-spacing:-16.944480px;}
.ws3_c00355{word-spacing:-10.152000px;}
.ws5_c00355{word-spacing:-0.334714px;}
.ws9_c00355{word-spacing:0.000000px;}
._1_c00355{margin-left:-5.976000px;}
._6_c00355{margin-left:-4.463424px;}
._7_c00355{margin-left:-2.822112px;}
._2_c00355{margin-left:-1.161984px;}
._3_c00355{width:1.126560px;}
._8_c00355{width:2.314944px;}
._4_c00355{width:3.601440px;}
._5_c00355{width:4.935744px;}
._0_c00355{width:5.976000px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs5_c00355{font-size:36.000000px;}
.fs4_c00355{font-size:48.982495px;}
.fs2_c00355{font-size:59.040000px;}
.fs6_c00355{font-size:60.000000px;}
.fs3_c00355{font-size:60.857039px;}
.fs0_c00355{font-size:72.000000px;}
.fs1_c00355{font-size:74.215901px;}
.y0_c00355{bottom:0.000000px;}
.y32_c00355{bottom:3.120000px;}
.y31_c00355{bottom:34.744580px;}
.y1_c00355{bottom:54.000000px;}
.y30_c00355{bottom:55.481040px;}
.y2f_c00355{bottom:78.885000px;}
.y2e_c00355{bottom:90.406800px;}
.y2d_c00355{bottom:114.165000px;}
.y2c_c00355{bottom:140.805000px;}
.y2b_c00355{bottom:163.845000px;}
.y2a_c00355{bottom:192.285000px;}
.y29_c00355{bottom:217.125000px;}
.y28_c00355{bottom:217.126800px;}
.y26_c00355{bottom:234.764640px;}
.y27_c00355{bottom:234.765000px;}
.y25_c00355{bottom:259.605720px;}
.y23_c00355{bottom:287.319960px;}
.y24_c00355{bottom:287.325000px;}
.y22_c00355{bottom:314.685000px;}
.y21_c00355{bottom:342.405000px;}
.y20_c00355{bottom:342.409680px;}
.y1e_c00355{bottom:367.603920px;}
.y1f_c00355{bottom:367.605000px;}
.y1d_c00355{bottom:392.448600px;}
.y1c_c00355{bottom:417.289680px;}
.y1b_c00355{bottom:442.485000px;}
.y1a_c00355{bottom:467.325000px;}
.y19_c00355{bottom:487.483920px;}
.y18_c00355{bottom:512.329680px;}
.y16_c00355{bottom:537.524640px;}
.y17_c00355{bottom:537.525000px;}
.y15_c00355{bottom:564.889680px;}
.y14_c00355{bottom:590.085000px;}
.y13_c00355{bottom:623.205000px;}
.y12_c00355{bottom:651.645000px;}
.y11_c00355{bottom:682.965000px;}
.y10_c00355{bottom:711.765000px;}
.yf_c00355{bottom:739.845000px;}
.ye_c00355{bottom:768.285000px;}
.yd_c00355{bottom:796.725000px;}
.yc_c00355{bottom:825.165000px;}
.yb_c00355{bottom:853.965000px;}
.ya_c00355{bottom:885.645000px;}
.y9_c00355{bottom:914.445000px;}
.y8_c00355{bottom:942.525000px;}
.y7_c00355{bottom:970.965000px;}
.y6_c00355{bottom:999.405000px;}
.y5_c00355{bottom:1027.845000px;}
.y4_c00355{bottom:1056.645000px;}
.y3_c00355{bottom:1085.085000px;}
.y2_c00355{bottom:1138.365000px;}
.hb_c00355{height:19.255605px;}
.ha_c00355{height:32.616000px;}
.h9_c00355{height:40.993594px;}
.h7_c00355{height:46.981634px;}
.h5_c00355{height:49.992188px;}
.h6_c00355{height:53.490240px;}
.hc_c00355{height:56.640000px;}
.h8_c00355{height:57.100320px;}
.h4_c00355{height:57.294676px;}
.h3_c00355{height:65.232000px;}
.h2_c00355{height:1201.365000px;}
.h0_c00355{height:1262.835000px;}
.h1_c00355{height:1263.000000px;}
.w3_c00355{width:16.680000px;}
.w2_c00355{width:863.955000px;}
.w0_c00355{width:892.935000px;}
.w1_c00355{width:893.250000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:14.490000px;}
.x2_c00355{left:113.040150px;}
.x43_c00355{left:137.204250px;}
.x25_c00355{left:147.223350px;}
.x41_c00355{left:157.213200px;}
.x21_c00355{left:172.212900px;}
.x2c_c00355{left:176.366850px;}
.x2d_c00355{left:180.116850px;}
.x42_c00355{left:187.164600px;}
.x31_c00355{left:191.366400px;}
.x32_c00355{left:195.116400px;}
.x22_c00355{left:207.207300px;}
.x2e_c00355{left:209.275200px;}
.x33_c00355{left:224.304900px;}
.x34_c00355{left:228.054900px;}
.x26_c00355{left:234.699150px;}
.x3a_c00355{left:236.379300px;}
.x3b_c00355{left:240.129300px;}
.x35_c00355{left:256.403700px;}
.x36_c00355{left:260.153700px;}
.x2f_c00355{left:268.432950px;}
.x3c_c00355{left:280.537650px;}
.x3_c00355{left:283.140150px;}
.x5_c00355{left:288.143850px;}
.x37_c00355{left:289.342200px;}
.x6_c00355{left:292.643850px;}
.x7_c00355{left:322.631550px;}
.x8_c00355{left:327.131550px;}
.xb_c00355{left:336.112350px;}
.xc_c00355{left:340.612350px;}
.x38_c00355{left:344.735250px;}
.x3d_c00355{left:351.365100px;}
.x13_c00355{left:354.075750px;}
.x9_c00355{left:370.132650px;}
.x14_c00355{left:373.569900px;}
.xa_c00355{left:374.632650px;}
.x4_c00355{left:378.069150px;}
.x30_c00355{left:383.433000px;}
.x27_c00355{left:395.523150px;}
.x39_c00355{left:412.232250px;}
.xd_c00355{left:413.600400px;}
.xe_c00355{left:418.100400px;}
.x23_c00355{left:422.209350px;}
.x15_c00355{left:426.542250px;}
.x28_c00355{left:430.517550px;}
.x20_c00355{left:431.718750px;}
.x16_c00355{left:435.542250px;}
.x29_c00355{left:438.856950px;}
.x24_c00355{left:452.160600px;}
.x2a_c00355{left:468.808200px;}
.x3e_c00355{left:475.529700px;}
.x17_c00355{left:483.510750px;}
.x18_c00355{left:492.510750px;}
.xf_c00355{left:496.074450px;}
.x10_c00355{left:500.574450px;}
.x19_c00355{left:562.493400px;}
.x1a_c00355{left:566.993400px;}
.x11_c00355{left:586.576500px;}
.x12_c00355{left:591.076500px;}
.x2b_c00355{left:597.263250px;}
.x1b_c00355{left:619.965900px;}
.x1c_c00355{left:624.465900px;}
.x1d_c00355{left:681.434400px;}
.x1e_c00355{left:685.934400px;}
.x3f_c00355{left:716.879100px;}
.x40_c00355{left:734.368950px;}
.x1f_c00355{left:743.874750px;}
.x44_c00355{left:768.254608px;}
@media print{
.v2_c00355{vertical-align:-21.760000pt;}
.v0_c00355{vertical-align:0.000000pt;}
.v1_c00355{vertical-align:21.763840pt;}
.ls1d_c00355{letter-spacing:0.000000pt;}
.ls1e_c00355{letter-spacing:0.032000pt;}
.ls23_c00355{letter-spacing:0.128000pt;}
.ls10_c00355{letter-spacing:0.209920pt;}
.lsd_c00355{letter-spacing:0.215168pt;}
.ls15_c00355{letter-spacing:0.216381pt;}
.ls21_c00355{letter-spacing:0.236160pt;}
.ls12_c00355{letter-spacing:0.243428pt;}
.lsb_c00355{letter-spacing:0.270476pt;}
.ls18_c00355{letter-spacing:0.283392pt;}
.ls3_c00355{letter-spacing:0.290926pt;}
.ls9_c00355{letter-spacing:0.291476pt;}
.lsa_c00355{letter-spacing:0.291806pt;}
.lsc_c00355{letter-spacing:0.292114pt;}
.ls26_c00355{letter-spacing:0.309632pt;}
.ls13_c00355{letter-spacing:0.313752pt;}
.ls19_c00355{letter-spacing:0.314880pt;}
.ls16_c00355{letter-spacing:0.324571pt;}
.ls1a_c00355{letter-spacing:0.377856pt;}
.ls29_c00355{letter-spacing:0.389485pt;}
.ls2a_c00355{letter-spacing:0.438171pt;}
.ls4_c00355{letter-spacing:0.439798pt;}
.ls17_c00355{letter-spacing:0.456576pt;}
.ls28_c00355{letter-spacing:0.472320pt;}
.ls14_c00355{letter-spacing:0.486856pt;}
.ls1f_c00355{letter-spacing:0.519552pt;}
.ls20_c00355{letter-spacing:0.566784pt;}
.ls2c_c00355{letter-spacing:0.632913pt;}
.ls2b_c00355{letter-spacing:0.881664pt;}
.ls2d_c00355{letter-spacing:1.642624pt;}
.ls1b_c00355{letter-spacing:2.466560pt;}
.ls1c_c00355{letter-spacing:2.471808pt;}
.ls8_c00355{letter-spacing:3.941248pt;}
.ls22_c00355{letter-spacing:3.988480pt;}
.lse_c00355{letter-spacing:4.665472pt;}
.lsf_c00355{letter-spacing:4.675968pt;}
.ls11_c00355{letter-spacing:4.681216pt;}
.ls6_c00355{letter-spacing:4.712704pt;}
.ls5_c00355{letter-spacing:4.723200pt;}
.ls27_c00355{letter-spacing:4.759936pt;}
.ls2_c00355{letter-spacing:4.828160pt;}
.ls7_c00355{letter-spacing:4.880640pt;}
.ls25_c00355{letter-spacing:4.901632pt;}
.ls1_c00355{letter-spacing:5.143040pt;}
.ls0_c00355{letter-spacing:5.312000pt;}
.ls24_c00355{letter-spacing:8.412544pt;}
.ws1_c00355{word-spacing:-19.302144pt;}
.ws4_c00355{word-spacing:-19.254912pt;}
.ws0_c00355{word-spacing:-18.339574pt;}
.ws2_c00355{word-spacing:-15.525307pt;}
.ws6_c00355{word-spacing:-15.427936pt;}
.ws7_c00355{word-spacing:-15.330564pt;}
.ws8_c00355{word-spacing:-15.061760pt;}
.ws3_c00355{word-spacing:-9.024000pt;}
.ws5_c00355{word-spacing:-0.297523pt;}
.ws9_c00355{word-spacing:0.000000pt;}
._1_c00355{margin-left:-5.312000pt;}
._6_c00355{margin-left:-3.967488pt;}
._7_c00355{margin-left:-2.508544pt;}
._2_c00355{margin-left:-1.032875pt;}
._3_c00355{width:1.001387pt;}
._8_c00355{width:2.057728pt;}
._4_c00355{width:3.201280pt;}
._5_c00355{width:4.387328pt;}
._0_c00355{width:5.312000pt;}
.fs5_c00355{font-size:32.000000pt;}
.fs4_c00355{font-size:43.539995pt;}
.fs2_c00355{font-size:52.480000pt;}
.fs6_c00355{font-size:53.333333pt;}
.fs3_c00355{font-size:54.095146pt;}
.fs0_c00355{font-size:64.000000pt;}
.fs1_c00355{font-size:65.969690pt;}
.y0_c00355{bottom:0.000000pt;}
.y32_c00355{bottom:2.773333pt;}
.y31_c00355{bottom:30.884071pt;}
.y1_c00355{bottom:48.000000pt;}
.y30_c00355{bottom:49.316480pt;}
.y2f_c00355{bottom:70.120000pt;}
.y2e_c00355{bottom:80.361600pt;}
.y2d_c00355{bottom:101.480000pt;}
.y2c_c00355{bottom:125.160000pt;}
.y2b_c00355{bottom:145.640000pt;}
.y2a_c00355{bottom:170.920000pt;}
.y29_c00355{bottom:193.000000pt;}
.y28_c00355{bottom:193.001600pt;}
.y26_c00355{bottom:208.679680pt;}
.y27_c00355{bottom:208.680000pt;}
.y25_c00355{bottom:230.760640pt;}
.y23_c00355{bottom:255.395520pt;}
.y24_c00355{bottom:255.400000pt;}
.y22_c00355{bottom:279.720000pt;}
.y21_c00355{bottom:304.360000pt;}
.y20_c00355{bottom:304.364160pt;}
.y1e_c00355{bottom:326.759040pt;}
.y1f_c00355{bottom:326.760000pt;}
.y1d_c00355{bottom:348.843200pt;}
.y1c_c00355{bottom:370.924160pt;}
.y1b_c00355{bottom:393.320000pt;}
.y1a_c00355{bottom:415.400000pt;}
.y19_c00355{bottom:433.319040pt;}
.y18_c00355{bottom:455.404160pt;}
.y16_c00355{bottom:477.799680pt;}
.y17_c00355{bottom:477.800000pt;}
.y15_c00355{bottom:502.124160pt;}
.y14_c00355{bottom:524.520000pt;}
.y13_c00355{bottom:553.960000pt;}
.y12_c00355{bottom:579.240000pt;}
.y11_c00355{bottom:607.080000pt;}
.y10_c00355{bottom:632.680000pt;}
.yf_c00355{bottom:657.640000pt;}
.ye_c00355{bottom:682.920000pt;}
.yd_c00355{bottom:708.200000pt;}
.yc_c00355{bottom:733.480000pt;}
.yb_c00355{bottom:759.080000pt;}
.ya_c00355{bottom:787.240000pt;}
.y9_c00355{bottom:812.840000pt;}
.y8_c00355{bottom:837.800000pt;}
.y7_c00355{bottom:863.080000pt;}
.y6_c00355{bottom:888.360000pt;}
.y5_c00355{bottom:913.640000pt;}
.y4_c00355{bottom:939.240000pt;}
.y3_c00355{bottom:964.520000pt;}
.y2_c00355{bottom:1011.880000pt;}
.hb_c00355{height:17.116093pt;}
.ha_c00355{height:28.992000pt;}
.h9_c00355{height:36.438750pt;}
.h7_c00355{height:41.761453pt;}
.h5_c00355{height:44.437500pt;}
.h6_c00355{height:47.546880pt;}
.hc_c00355{height:50.346667pt;}
.h8_c00355{height:50.755840pt;}
.h4_c00355{height:50.928601pt;}
.h3_c00355{height:57.984000pt;}
.h2_c00355{height:1067.880000pt;}
.h0_c00355{height:1122.520000pt;}
.h1_c00355{height:1122.666667pt;}
.w3_c00355{width:14.826667pt;}
.w2_c00355{width:767.960000pt;}
.w0_c00355{width:793.720000pt;}
.w1_c00355{width:794.000000pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:12.880000pt;}
.x2_c00355{left:100.480133pt;}
.x43_c00355{left:121.959333pt;}
.x25_c00355{left:130.865200pt;}
.x41_c00355{left:139.745067pt;}
.x21_c00355{left:153.078133pt;}
.x2c_c00355{left:156.770533pt;}
.x2d_c00355{left:160.103867pt;}
.x42_c00355{left:166.368533pt;}
.x31_c00355{left:170.103467pt;}
.x32_c00355{left:173.436800pt;}
.x22_c00355{left:184.184267pt;}
.x2e_c00355{left:186.022400pt;}
.x33_c00355{left:199.382133pt;}
.x34_c00355{left:202.715467pt;}
.x26_c00355{left:208.621467pt;}
.x3a_c00355{left:210.114933pt;}
.x3b_c00355{left:213.448267pt;}
.x35_c00355{left:227.914400pt;}
.x36_c00355{left:231.247733pt;}
.x2f_c00355{left:238.607067pt;}
.x3c_c00355{left:249.366800pt;}
.x3_c00355{left:251.680133pt;}
.x5_c00355{left:256.127867pt;}
.x37_c00355{left:257.193067pt;}
.x6_c00355{left:260.127867pt;}
.x7_c00355{left:286.783600pt;}
.x8_c00355{left:290.783600pt;}
.xb_c00355{left:298.766533pt;}
.xc_c00355{left:302.766533pt;}
.x38_c00355{left:306.431333pt;}
.x3d_c00355{left:312.324533pt;}
.x13_c00355{left:314.734000pt;}
.x9_c00355{left:329.006800pt;}
.x14_c00355{left:332.062133pt;}
.xa_c00355{left:333.006800pt;}
.x4_c00355{left:336.061467pt;}
.x30_c00355{left:340.829333pt;}
.x27_c00355{left:351.576133pt;}
.x39_c00355{left:366.428667pt;}
.xd_c00355{left:367.644800pt;}
.xe_c00355{left:371.644800pt;}
.x23_c00355{left:375.297200pt;}
.x15_c00355{left:379.148667pt;}
.x28_c00355{left:382.682267pt;}
.x20_c00355{left:383.750000pt;}
.x16_c00355{left:387.148667pt;}
.x29_c00355{left:390.095067pt;}
.x24_c00355{left:401.920533pt;}
.x2a_c00355{left:416.718400pt;}
.x3e_c00355{left:422.693067pt;}
.x17_c00355{left:429.787333pt;}
.x18_c00355{left:437.787333pt;}
.xf_c00355{left:440.955067pt;}
.x10_c00355{left:444.955067pt;}
.x19_c00355{left:499.994133pt;}
.x1a_c00355{left:503.994133pt;}
.x11_c00355{left:521.401333pt;}
.x12_c00355{left:525.401333pt;}
.x2b_c00355{left:530.900667pt;}
.x1b_c00355{left:551.080800pt;}
.x1c_c00355{left:555.080800pt;}
.x1d_c00355{left:605.719467pt;}
.x1e_c00355{left:609.719467pt;}
.x3f_c00355{left:637.225867pt;}
.x40_c00355{left:652.772400pt;}
.x1f_c00355{left:661.222000pt;}
.x44_c00355{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b970fba7fdf8086c1d50b1f.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.134000;font-style:normal;font-weight:normal;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_0b8bd59e41a4e31017a1187a.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;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:ff3_c00356;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_9d609dee9af12f01f2e7e80b.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00356{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00356{vertical-align:-24.480000px;}
.v0_c00356{vertical-align:0.000000px;}
.v1_c00356{vertical-align:30.240000px;}
.lsb_c00356{letter-spacing:-0.179568px;}
.ls9_c00356{letter-spacing:0.000000px;}
.lsd_c00356{letter-spacing:0.144000px;}
.ls12_c00356{letter-spacing:0.265680px;}
.ls15_c00356{letter-spacing:0.318816px;}
.lsf_c00356{letter-spacing:0.371952px;}
.ls5_c00356{letter-spacing:0.531360px;}
.ls13_c00356{letter-spacing:0.547713px;}
.ls2_c00356{letter-spacing:0.576039px;}
.ls14_c00356{letter-spacing:0.696672px;}
.ls1_c00356{letter-spacing:0.865852px;}
.lse_c00356{letter-spacing:2.668608px;}
.ls10_c00356{letter-spacing:3.353472px;}
.lsc_c00356{letter-spacing:4.142592px;}
.ls8_c00356{letter-spacing:5.301792px;}
.ls7_c00356{letter-spacing:5.313600px;}
.lsa_c00356{letter-spacing:5.430672px;}
.ls6_c00356{letter-spacing:5.484816px;}
.ls4_c00356{letter-spacing:5.857200px;}
.ls16_c00356{letter-spacing:5.921712px;}
.ls0_c00356{letter-spacing:5.975400px;}
.ls3_c00356{letter-spacing:5.976000px;}
.ls11_c00356{letter-spacing:11.636784px;}
.sc__c00356{text-shadow:none;}
.sc1_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00356{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc1_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00356{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00356{word-spacing:-21.897936px;}
.ws9_c00356{word-spacing:-21.714912px;}
.ws0_c00356{word-spacing:-21.043152px;}
.ws1_c00356{word-spacing:-20.632021px;}
.ws3_c00356{word-spacing:-20.016000px;}
.ws6_c00356{word-spacing:-16.944480px;}
.ws8_c00356{word-spacing:-16.731936px;}
.ws4_c00356{word-spacing:-15.751872px;}
.ws2_c00356{word-spacing:-11.429712px;}
.ws5_c00356{word-spacing:-10.152000px;}
.wsa_c00356{word-spacing:0.000000px;}
._16_c00356{margin-left:-11.446560px;}
._17_c00356{margin-left:-10.427040px;}
._18_c00356{margin-left:-5.542560px;}
._15_c00356{margin-left:-3.424320px;}
._13_c00356{margin-left:-2.354400px;}
._14_c00356{margin-left:-1.245600px;}
._b_c00356{width:1.728000px;}
._11_c00356{width:2.952000px;}
._3_c00356{width:4.104000px;}
._e_c00356{width:5.184000px;}
._6_c00356{width:7.056000px;}
._8_c00356{width:8.280000px;}
._f_c00356{width:9.504000px;}
._c_c00356{width:10.584000px;}
._4_c00356{width:11.808000px;}
._a_c00356{width:12.960000px;}
._7_c00356{width:14.256000px;}
._9_c00356{width:17.424000px;}
._0_c00356{width:18.720000px;}
._10_c00356{width:23.688000px;}
._12_c00356{width:24.768000px;}
._1_c00356{width:26.064000px;}
._2_c00356{width:27.360000px;}
._5_c00356{width:29.880000px;}
._d_c00356{width:36.288000px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs5_c00356{font-size:36.000000px;}
.fs4_c00356{font-size:41.760000px;}
.fs1_c00356{font-size:56.160000px;}
.fs3_c00356{font-size:57.888403px;}
.fs6_c00356{font-size:59.040000px;}
.fs8_c00356{font-size:60.000000px;}
.fs7_c00356{font-size:60.857039px;}
.fs0_c00356{font-size:72.000000px;}
.fs2_c00356{font-size:74.215901px;}
.y0_c00356{bottom:0.000000px;}
.y34_c00356{bottom:3.120000px;}
.y33_c00356{bottom:34.744580px;}
.y1_c00356{bottom:54.000000px;}
.y32_c00356{bottom:55.481040px;}
.y31_c00356{bottom:78.885000px;}
.y30_c00356{bottom:90.405000px;}
.y2f_c00356{bottom:96.525000px;}
.y2e_c00356{bottom:107.686800px;}
.y2d_c00356{bottom:131.445000px;}
.y2c_c00356{bottom:142.961040px;}
.y2b_c00356{bottom:166.365000px;}
.y2a_c00356{bottom:177.886800px;}
.y29_c00356{bottom:195.525000px;}
.y28_c00356{bottom:201.645000px;}
.y27_c00356{bottom:228.285000px;}
.y26_c00356{bottom:254.925000px;}
.y25_c00356{bottom:275.805000px;}
.y24_c00356{bottom:297.045000px;}
.y23_c00356{bottom:334.845000px;}
.y22_c00356{bottom:357.525000px;}
.y21_c00356{bottom:380.205000px;}
.y20_c00356{bottom:400.725000px;}
.y1f_c00356{bottom:421.965000px;}
.y1e_c00356{bottom:442.845000px;}
.y1d_c00356{bottom:463.725000px;}
.y1c_c00356{bottom:484.965000px;}
.y1b_c00356{bottom:520.965000px;}
.y1a_c00356{bottom:541.845000px;}
.y19_c00356{bottom:562.725000px;}
.y18_c00356{bottom:583.965000px;}
.y17_c00356{bottom:604.845000px;}
.y16_c00356{bottom:625.725000px;}
.y15_c00356{bottom:661.725000px;}
.y14_c00356{bottom:682.965000px;}
.y13_c00356{bottom:703.845000px;}
.y12_c00356{bottom:725.085000px;}
.y11_c00356{bottom:761.085000px;}
.y10_c00356{bottom:781.965000px;}
.yf_c00356{bottom:802.845000px;}
.ye_c00356{bottom:824.085000px;}
.yd_c00356{bottom:844.965000px;}
.yc_c00356{bottom:865.845000px;}
.yb_c00356{bottom:887.085000px;}
.ya_c00356{bottom:907.965000px;}
.y9_c00356{bottom:928.845000px;}
.y8_c00356{bottom:964.845000px;}
.y7_c00356{bottom:986.085000px;}
.y6_c00356{bottom:1006.965000px;}
.y5_c00356{bottom:1027.845000px;}
.y4_c00356{bottom:1049.085000px;}
.y3_c00356{bottom:1085.085000px;}
.y2_c00356{bottom:1138.365000px;}
.h9_c00356{height:19.255605px;}
.h6_c00356{height:32.616000px;}
.h7_c00356{height:46.981634px;}
.h8_c00356{height:53.490240px;}
.ha_c00356{height:56.640000px;}
.h4_c00356{height:57.294676px;}
.h3_c00356{height:65.232000px;}
.h5_c00356{height:68.074560px;}
.h2_c00356{height:1201.365000px;}
.h0_c00356{height:1262.835000px;}
.h1_c00356{height:1263.000000px;}
.w3_c00356{width:16.680000px;}
.w2_c00356{width:863.955000px;}
.w0_c00356{width:892.935000px;}
.w1_c00356{width:893.250000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:14.490000px;}
.x2_c00356{left:113.040150px;}
.xf_c00356{left:183.184500px;}
.x10_c00356{left:192.349350px;}
.x5_c00356{left:243.034050px;}
.xd_c00356{left:291.844800px;}
.x8_c00356{left:342.546750px;}
.x6_c00356{left:350.634600px;}
.x9_c00356{left:353.544450px;}
.x7_c00356{left:363.648150px;}
.xa_c00356{left:382.614600px;}
.xe_c00356{left:411.083850px;}
.x11_c00356{left:439.701000px;}
.x12_c00356{left:488.883900px;}
.x3_c00356{left:581.461650px;}
.xb_c00356{left:592.794450px;}
.xc_c00356{left:671.795250px;}
.x4_c00356{left:682.752750px;}
.x13_c00356{left:768.254608px;}
@media print{
.v2_c00356{vertical-align:-21.760000pt;}
.v0_c00356{vertical-align:0.000000pt;}
.v1_c00356{vertical-align:26.880000pt;}
.lsb_c00356{letter-spacing:-0.159616pt;}
.ls9_c00356{letter-spacing:0.000000pt;}
.lsd_c00356{letter-spacing:0.128000pt;}
.ls12_c00356{letter-spacing:0.236160pt;}
.ls15_c00356{letter-spacing:0.283392pt;}
.lsf_c00356{letter-spacing:0.330624pt;}
.ls5_c00356{letter-spacing:0.472320pt;}
.ls13_c00356{letter-spacing:0.486856pt;}
.ls2_c00356{letter-spacing:0.512035pt;}
.ls14_c00356{letter-spacing:0.619264pt;}
.ls1_c00356{letter-spacing:0.769646pt;}
.lse_c00356{letter-spacing:2.372096pt;}
.ls10_c00356{letter-spacing:2.980864pt;}
.lsc_c00356{letter-spacing:3.682304pt;}
.ls8_c00356{letter-spacing:4.712704pt;}
.ls7_c00356{letter-spacing:4.723200pt;}
.lsa_c00356{letter-spacing:4.827264pt;}
.ls6_c00356{letter-spacing:4.875392pt;}
.ls4_c00356{letter-spacing:5.206400pt;}
.ls16_c00356{letter-spacing:5.263744pt;}
.ls0_c00356{letter-spacing:5.311467pt;}
.ls3_c00356{letter-spacing:5.312000pt;}
.ls11_c00356{letter-spacing:10.343808pt;}
.ws7_c00356{word-spacing:-19.464832pt;}
.ws9_c00356{word-spacing:-19.302144pt;}
.ws0_c00356{word-spacing:-18.705024pt;}
.ws1_c00356{word-spacing:-18.339574pt;}
.ws3_c00356{word-spacing:-17.792000pt;}
.ws6_c00356{word-spacing:-15.061760pt;}
.ws8_c00356{word-spacing:-14.872832pt;}
.ws4_c00356{word-spacing:-14.001664pt;}
.ws2_c00356{word-spacing:-10.159744pt;}
.ws5_c00356{word-spacing:-9.024000pt;}
.wsa_c00356{word-spacing:0.000000pt;}
._16_c00356{margin-left:-10.174720pt;}
._17_c00356{margin-left:-9.268480pt;}
._18_c00356{margin-left:-4.926720pt;}
._15_c00356{margin-left:-3.043840pt;}
._13_c00356{margin-left:-2.092800pt;}
._14_c00356{margin-left:-1.107200pt;}
._b_c00356{width:1.536000pt;}
._11_c00356{width:2.624000pt;}
._3_c00356{width:3.648000pt;}
._e_c00356{width:4.608000pt;}
._6_c00356{width:6.272000pt;}
._8_c00356{width:7.360000pt;}
._f_c00356{width:8.448000pt;}
._c_c00356{width:9.408000pt;}
._4_c00356{width:10.496000pt;}
._a_c00356{width:11.520000pt;}
._7_c00356{width:12.672000pt;}
._9_c00356{width:15.488000pt;}
._0_c00356{width:16.640000pt;}
._10_c00356{width:21.056000pt;}
._12_c00356{width:22.016000pt;}
._1_c00356{width:23.168000pt;}
._2_c00356{width:24.320000pt;}
._5_c00356{width:26.560000pt;}
._d_c00356{width:32.256000pt;}
.fs5_c00356{font-size:32.000000pt;}
.fs4_c00356{font-size:37.120000pt;}
.fs1_c00356{font-size:49.920000pt;}
.fs3_c00356{font-size:51.456358pt;}
.fs6_c00356{font-size:52.480000pt;}
.fs8_c00356{font-size:53.333333pt;}
.fs7_c00356{font-size:54.095146pt;}
.fs0_c00356{font-size:64.000000pt;}
.fs2_c00356{font-size:65.969690pt;}
.y0_c00356{bottom:0.000000pt;}
.y34_c00356{bottom:2.773333pt;}
.y33_c00356{bottom:30.884071pt;}
.y1_c00356{bottom:48.000000pt;}
.y32_c00356{bottom:49.316480pt;}
.y31_c00356{bottom:70.120000pt;}
.y30_c00356{bottom:80.360000pt;}
.y2f_c00356{bottom:85.800000pt;}
.y2e_c00356{bottom:95.721600pt;}
.y2d_c00356{bottom:116.840000pt;}
.y2c_c00356{bottom:127.076480pt;}
.y2b_c00356{bottom:147.880000pt;}
.y2a_c00356{bottom:158.121600pt;}
.y29_c00356{bottom:173.800000pt;}
.y28_c00356{bottom:179.240000pt;}
.y27_c00356{bottom:202.920000pt;}
.y26_c00356{bottom:226.600000pt;}
.y25_c00356{bottom:245.160000pt;}
.y24_c00356{bottom:264.040000pt;}
.y23_c00356{bottom:297.640000pt;}
.y22_c00356{bottom:317.800000pt;}
.y21_c00356{bottom:337.960000pt;}
.y20_c00356{bottom:356.200000pt;}
.y1f_c00356{bottom:375.080000pt;}
.y1e_c00356{bottom:393.640000pt;}
.y1d_c00356{bottom:412.200000pt;}
.y1c_c00356{bottom:431.080000pt;}
.y1b_c00356{bottom:463.080000pt;}
.y1a_c00356{bottom:481.640000pt;}
.y19_c00356{bottom:500.200000pt;}
.y18_c00356{bottom:519.080000pt;}
.y17_c00356{bottom:537.640000pt;}
.y16_c00356{bottom:556.200000pt;}
.y15_c00356{bottom:588.200000pt;}
.y14_c00356{bottom:607.080000pt;}
.y13_c00356{bottom:625.640000pt;}
.y12_c00356{bottom:644.520000pt;}
.y11_c00356{bottom:676.520000pt;}
.y10_c00356{bottom:695.080000pt;}
.yf_c00356{bottom:713.640000pt;}
.ye_c00356{bottom:732.520000pt;}
.yd_c00356{bottom:751.080000pt;}
.yc_c00356{bottom:769.640000pt;}
.yb_c00356{bottom:788.520000pt;}
.ya_c00356{bottom:807.080000pt;}
.y9_c00356{bottom:825.640000pt;}
.y8_c00356{bottom:857.640000pt;}
.y7_c00356{bottom:876.520000pt;}
.y6_c00356{bottom:895.080000pt;}
.y5_c00356{bottom:913.640000pt;}
.y4_c00356{bottom:932.520000pt;}
.y3_c00356{bottom:964.520000pt;}
.y2_c00356{bottom:1011.880000pt;}
.h9_c00356{height:17.116093pt;}
.h6_c00356{height:28.992000pt;}
.h7_c00356{height:41.761453pt;}
.h8_c00356{height:47.546880pt;}
.ha_c00356{height:50.346667pt;}
.h4_c00356{height:50.928601pt;}
.h3_c00356{height:57.984000pt;}
.h5_c00356{height:60.510720pt;}
.h2_c00356{height:1067.880000pt;}
.h0_c00356{height:1122.520000pt;}
.h1_c00356{height:1122.666667pt;}
.w3_c00356{width:14.826667pt;}
.w2_c00356{width:767.960000pt;}
.w0_c00356{width:793.720000pt;}
.w1_c00356{width:794.000000pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:12.880000pt;}
.x2_c00356{left:100.480133pt;}
.xf_c00356{left:162.830667pt;}
.x10_c00356{left:170.977200pt;}
.x5_c00356{left:216.030267pt;}
.xd_c00356{left:259.417600pt;}
.x8_c00356{left:304.486000pt;}
.x6_c00356{left:311.675200pt;}
.x9_c00356{left:314.261733pt;}
.x7_c00356{left:323.242800pt;}
.xa_c00356{left:340.101867pt;}
.xe_c00356{left:365.407867pt;}
.x11_c00356{left:390.845333pt;}
.x12_c00356{left:434.563467pt;}
.x3_c00356{left:516.854800pt;}
.xb_c00356{left:526.928400pt;}
.xc_c00356{left:597.151333pt;}
.x4_c00356{left:606.891333pt;}
.x13_c00356{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_120bb8585f321d11830a06f9.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.134000;font-style:normal;font-weight:normal;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_863d2c7656ab900f46e31ad4.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;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:ff3_c00357;src:url('chunks/assets/font_cb3d85554b8233dcf0f6af5c.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00357{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00357{vertical-align:-24.480000px;}
.v0_c00357{vertical-align:0.000000px;}
.v1_c00357{vertical-align:30.240000px;}
.ls7_c00357{letter-spacing:-0.185094px;}
.ls6_c00357{letter-spacing:-0.179568px;}
.ls5_c00357{letter-spacing:0.000000px;}
.ls9_c00357{letter-spacing:0.144000px;}
.lsb_c00357{letter-spacing:0.265680px;}
.lsf_c00357{letter-spacing:0.328628px;}
.ls10_c00357{letter-spacing:0.383399px;}
.lse_c00357{letter-spacing:0.492942px;}
.ls3_c00357{letter-spacing:0.531360px;}
.lsa_c00357{letter-spacing:0.657256px;}
.ls2_c00357{letter-spacing:0.712027px;}
.lsd_c00357{letter-spacing:0.743904px;}
.ls1_c00357{letter-spacing:0.865852px;}
.lsc_c00357{letter-spacing:1.139472px;}
.ls8_c00357{letter-spacing:5.335200px;}
.ls0_c00357{letter-spacing:5.965800px;}
.ls4_c00357{letter-spacing:5.976000px;}
.sc__c00357{text-shadow:none;}
.sc1_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00357{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc1_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00357{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00357{word-spacing:-20.947680px;}
.ws1_c00357{word-spacing:-20.632021px;}
.ws4_c00357{word-spacing:-17.575513px;}
.ws0_c00357{word-spacing:-11.429712px;}
.ws3_c00357{word-spacing:-10.152000px;}
.ws5_c00357{word-spacing:0.000000px;}
._8_c00357{margin-left:-8.207042px;}
._a_c00357{margin-left:-1.062720px;}
._2_c00357{width:1.584000px;}
._1_c00357{width:2.592000px;}
._9_c00357{width:4.032000px;}
._4_c00357{width:5.714624px;}
._3_c00357{width:7.704000px;}
._0_c00357{width:9.504000px;}
._5_c00357{width:10.538658px;}
._7_c00357{width:12.987783px;}
._6_c00357{width:23.155361px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs6_c00357{font-size:36.000000px;}
.fs2_c00357{font-size:41.760000px;}
.fs3_c00357{font-size:43.045223px;}
.fs4_c00357{font-size:56.160000px;}
.fs5_c00357{font-size:57.888403px;}
.fs7_c00357{font-size:59.040000px;}
.fs9_c00357{font-size:60.000000px;}
.fs8_c00357{font-size:60.857039px;}
.fs0_c00357{font-size:72.000000px;}
.fs1_c00357{font-size:74.215901px;}
.y0_c00357{bottom:0.000000px;}
.y25_c00357{bottom:3.120000px;}
.y24_c00357{bottom:34.744580px;}
.y1_c00357{bottom:54.000000px;}
.y23_c00357{bottom:61.605000px;}
.y22_c00357{bottom:72.765000px;}
.y21_c00357{bottom:72.766800px;}
.y20_c00357{bottom:90.405000px;}
.y1f_c00357{bottom:113.805000px;}
.y1e_c00357{bottom:125.325000px;}
.y1d_c00357{bottom:131.445000px;}
.y1c_c00357{bottom:142.965000px;}
.y1b_c00357{bottom:149.085000px;}
.y1a_c00357{bottom:175.725000px;}
.y19_c00357{bottom:547.965000px;}
.y18_c00357{bottom:583.965000px;}
.y17_c00357{bottom:604.845000px;}
.y16_c00357{bottom:625.725000px;}
.y15_c00357{bottom:646.965000px;}
.y14_c00357{bottom:682.965000px;}
.y13_c00357{bottom:703.845000px;}
.y12_c00357{bottom:725.085000px;}
.y11_c00357{bottom:761.085000px;}
.y10_c00357{bottom:797.085000px;}
.yf_c00357{bottom:833.085000px;}
.ye_c00357{bottom:853.965000px;}
.yd_c00357{bottom:874.845000px;}
.yc_c00357{bottom:896.085000px;}
.yb_c00357{bottom:916.965000px;}
.ya_c00357{bottom:937.845000px;}
.y9_c00357{bottom:959.085000px;}
.y8_c00357{bottom:979.965000px;}
.y7_c00357{bottom:1000.845000px;}
.y6_c00357{bottom:1022.085000px;}
.y5_c00357{bottom:1042.965000px;}
.y4_c00357{bottom:1063.845000px;}
.y3_c00357{bottom:1085.085000px;}
.y2_c00357{bottom:1138.365000px;}
.ha_c00357{height:19.255605px;}
.h7_c00357{height:32.616000px;}
.h8_c00357{height:46.981634px;}
.h9_c00357{height:53.490240px;}
.hb_c00357{height:56.640000px;}
.h4_c00357{height:57.294676px;}
.h6_c00357{height:64.401590px;}
.h3_c00357{height:65.232000px;}
.h5_c00357{height:68.074560px;}
.h2_c00357{height:1201.365000px;}
.h0_c00357{height:1262.835000px;}
.h1_c00357{height:1263.000000px;}
.w3_c00357{width:16.680000px;}
.w2_c00357{width:863.955000px;}
.w0_c00357{width:892.935000px;}
.w1_c00357{width:893.250000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:14.490000px;}
.x2_c00357{left:113.040150px;}
.xd_c00357{left:119.034000px;}
.x15_c00357{left:127.217700px;}
.x18_c00357{left:142.636950px;}
.xe_c00357{left:154.725900px;}
.x17_c00357{left:180.526950px;}
.x16_c00357{left:194.686500px;}
.x19_c00357{left:201.079800px;}
.xf_c00357{left:218.042400px;}
.x5_c00357{left:262.680900px;}
.x8_c00357{left:335.714700px;}
.x10_c00357{left:350.373450px;}
.xa_c00357{left:382.099800px;}
.x9_c00357{left:387.715950px;}
.x6_c00357{left:407.299800px;}
.x7_c00357{left:462.727650px;}
.x13_c00357{left:479.046000px;}
.x14_c00357{left:499.025700px;}
.x1a_c00357{left:524.776200px;}
.xb_c00357{left:539.092500px;}
.x11_c00357{left:572.350050px;}
.x12_c00357{left:604.371450px;}
.xc_c00357{left:636.734550px;}
.x3_c00357{left:698.370900px;}
.x4_c00357{left:745.386150px;}
.x1b_c00357{left:768.254608px;}
@media print{
.v2_c00357{vertical-align:-21.760000pt;}
.v0_c00357{vertical-align:0.000000pt;}
.v1_c00357{vertical-align:26.880000pt;}
.ls7_c00357{letter-spacing:-0.164528pt;}
.ls6_c00357{letter-spacing:-0.159616pt;}
.ls5_c00357{letter-spacing:0.000000pt;}
.ls9_c00357{letter-spacing:0.128000pt;}
.lsb_c00357{letter-spacing:0.236160pt;}
.lsf_c00357{letter-spacing:0.292114pt;}
.ls10_c00357{letter-spacing:0.340799pt;}
.lse_c00357{letter-spacing:0.438171pt;}
.ls3_c00357{letter-spacing:0.472320pt;}
.lsa_c00357{letter-spacing:0.584228pt;}
.ls2_c00357{letter-spacing:0.632913pt;}
.lsd_c00357{letter-spacing:0.661248pt;}
.ls1_c00357{letter-spacing:0.769646pt;}
.lsc_c00357{letter-spacing:1.012864pt;}
.ls8_c00357{letter-spacing:4.742400pt;}
.ls0_c00357{letter-spacing:5.302933pt;}
.ls4_c00357{letter-spacing:5.312000pt;}
.ws2_c00357{word-spacing:-18.620160pt;}
.ws1_c00357{word-spacing:-18.339574pt;}
.ws4_c00357{word-spacing:-15.622678pt;}
.ws0_c00357{word-spacing:-10.159744pt;}
.ws3_c00357{word-spacing:-9.024000pt;}
.ws5_c00357{word-spacing:0.000000pt;}
._8_c00357{margin-left:-7.295148pt;}
._a_c00357{margin-left:-0.944640pt;}
._2_c00357{width:1.408000pt;}
._1_c00357{width:2.304000pt;}
._9_c00357{width:3.584000pt;}
._4_c00357{width:5.079666pt;}
._3_c00357{width:6.848000pt;}
._0_c00357{width:8.448000pt;}
._5_c00357{width:9.367696pt;}
._7_c00357{width:11.544696pt;}
._6_c00357{width:20.582543pt;}
.fs6_c00357{font-size:32.000000pt;}
.fs2_c00357{font-size:37.120000pt;}
.fs3_c00357{font-size:38.262420pt;}
.fs4_c00357{font-size:49.920000pt;}
.fs5_c00357{font-size:51.456358pt;}
.fs7_c00357{font-size:52.480000pt;}
.fs9_c00357{font-size:53.333333pt;}
.fs8_c00357{font-size:54.095146pt;}
.fs0_c00357{font-size:64.000000pt;}
.fs1_c00357{font-size:65.969690pt;}
.y0_c00357{bottom:0.000000pt;}
.y25_c00357{bottom:2.773333pt;}
.y24_c00357{bottom:30.884071pt;}
.y1_c00357{bottom:48.000000pt;}
.y23_c00357{bottom:54.760000pt;}
.y22_c00357{bottom:64.680000pt;}
.y21_c00357{bottom:64.681600pt;}
.y20_c00357{bottom:80.360000pt;}
.y1f_c00357{bottom:101.160000pt;}
.y1e_c00357{bottom:111.400000pt;}
.y1d_c00357{bottom:116.840000pt;}
.y1c_c00357{bottom:127.080000pt;}
.y1b_c00357{bottom:132.520000pt;}
.y1a_c00357{bottom:156.200000pt;}
.y19_c00357{bottom:487.080000pt;}
.y18_c00357{bottom:519.080000pt;}
.y17_c00357{bottom:537.640000pt;}
.y16_c00357{bottom:556.200000pt;}
.y15_c00357{bottom:575.080000pt;}
.y14_c00357{bottom:607.080000pt;}
.y13_c00357{bottom:625.640000pt;}
.y12_c00357{bottom:644.520000pt;}
.y11_c00357{bottom:676.520000pt;}
.y10_c00357{bottom:708.520000pt;}
.yf_c00357{bottom:740.520000pt;}
.ye_c00357{bottom:759.080000pt;}
.yd_c00357{bottom:777.640000pt;}
.yc_c00357{bottom:796.520000pt;}
.yb_c00357{bottom:815.080000pt;}
.ya_c00357{bottom:833.640000pt;}
.y9_c00357{bottom:852.520000pt;}
.y8_c00357{bottom:871.080000pt;}
.y7_c00357{bottom:889.640000pt;}
.y6_c00357{bottom:908.520000pt;}
.y5_c00357{bottom:927.080000pt;}
.y4_c00357{bottom:945.640000pt;}
.y3_c00357{bottom:964.520000pt;}
.y2_c00357{bottom:1011.880000pt;}
.ha_c00357{height:17.116093pt;}
.h7_c00357{height:28.992000pt;}
.h8_c00357{height:41.761453pt;}
.h9_c00357{height:47.546880pt;}
.hb_c00357{height:50.346667pt;}
.h4_c00357{height:50.928601pt;}
.h6_c00357{height:57.245858pt;}
.h3_c00357{height:57.984000pt;}
.h5_c00357{height:60.510720pt;}
.h2_c00357{height:1067.880000pt;}
.h0_c00357{height:1122.520000pt;}
.h1_c00357{height:1122.666667pt;}
.w3_c00357{width:14.826667pt;}
.w2_c00357{width:767.960000pt;}
.w0_c00357{width:793.720000pt;}
.w1_c00357{width:794.000000pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:12.880000pt;}
.x2_c00357{left:100.480133pt;}
.xd_c00357{left:105.808000pt;}
.x15_c00357{left:113.082400pt;}
.x18_c00357{left:126.788400pt;}
.xe_c00357{left:137.534133pt;}
.x17_c00357{left:160.468400pt;}
.x16_c00357{left:173.054667pt;}
.x19_c00357{left:178.737600pt;}
.xf_c00357{left:193.815467pt;}
.x5_c00357{left:233.494133pt;}
.x8_c00357{left:298.413067pt;}
.x10_c00357{left:311.443067pt;}
.xa_c00357{left:339.644267pt;}
.x9_c00357{left:344.636400pt;}
.x6_c00357{left:362.044267pt;}
.x7_c00357{left:411.313467pt;}
.x13_c00357{left:425.818667pt;}
.x14_c00357{left:443.578400pt;}
.x1a_c00357{left:466.467733pt;}
.xb_c00357{left:479.193333pt;}
.x11_c00357{left:508.755600pt;}
.x12_c00357{left:537.219067pt;}
.xc_c00357{left:565.986267pt;}
.x3_c00357{left:620.774133pt;}
.x4_c00357{left:662.565467pt;}
.x1b_c00357{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fef73324d5c161f58a3baacf.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;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_c00358;src:url('chunks/assets/font_c368ce87a76713bf2c3d2c19.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00358{letter-spacing:0.239760px;}
.ls2_c00358{letter-spacing:0.399600px;}
.ls0_c00358{letter-spacing:5.976000px;}
.sc__c00358{text-shadow:none;}
.sc1_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00358{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc1_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00358{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00358{word-spacing:-15.051600px;}
.ws1_c00358{word-spacing:0.000000px;}
._0_c00358{margin-left:-1.118880px;}
._1_c00358{width:1.012320px;}
.fc1_c00358{color:transparent;}
.fc0_c00358{color:rgb(0,0,0);}
.fs1_c00358{font-size:53.280000px;}
.fs2_c00358{font-size:60.000000px;}
.fs0_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y23_c00358{bottom:3.120000px;}
.y21_c00358{bottom:25.560000px;}
.y22_c00358{bottom:34.744580px;}
.y20_c00358{bottom:41.400000px;}
.y1_c00358{bottom:54.000000px;}
.y1e_c00358{bottom:112.725000px;}
.y1d_c00358{bottom:148.725000px;}
.y1f_c00358{bottom:184.365000px;}
.y1c_c00358{bottom:184.725000px;}
.y1b_c00358{bottom:220.725000px;}
.y1a_c00358{bottom:256.725000px;}
.y19_c00358{bottom:292.725000px;}
.y18_c00358{bottom:328.725000px;}
.y17_c00358{bottom:364.725000px;}
.y16_c00358{bottom:400.725000px;}
.y15_c00358{bottom:436.725000px;}
.y14_c00358{bottom:472.725000px;}
.y13_c00358{bottom:509.085000px;}
.y12_c00358{bottom:545.085000px;}
.y11_c00358{bottom:581.085000px;}
.y10_c00358{bottom:617.085000px;}
.yf_c00358{bottom:653.085000px;}
.ye_c00358{bottom:689.085000px;}
.yd_c00358{bottom:725.085000px;}
.yc_c00358{bottom:761.085000px;}
.yb_c00358{bottom:797.085000px;}
.ya_c00358{bottom:833.085000px;}
.y9_c00358{bottom:869.085000px;}
.y8_c00358{bottom:905.085000px;}
.y7_c00358{bottom:941.085000px;}
.y6_c00358{bottom:977.085000px;}
.y5_c00358{bottom:1013.085000px;}
.y4_c00358{bottom:1049.085000px;}
.y3_c00358{bottom:1085.085000px;}
.y2_c00358{bottom:1138.365000px;}
.h6_c00358{height:19.255605px;}
.h5_c00358{height:41.132160px;}
.h4_c00358{height:54.000000px;}
.h3_c00358{height:55.584000px;}
.h7_c00358{height:56.640000px;}
.h2_c00358{height:1201.365000px;}
.h0_c00358{height:1262.835000px;}
.h1_c00358{height:1263.000000px;}
.w4_c00358{width:16.680000px;}
.w3_c00358{width:276.840000px;}
.w2_c00358{width:863.955000px;}
.w0_c00358{width:892.935000px;}
.w1_c00358{width:893.250000px;}
.x0_c00358{left:0.000000px;}
.x4_c00358{left:8.416500px;}
.x1_c00358{left:14.490000px;}
.x2_c00358{left:113.040150px;}
.x3_c00358{left:421.290000px;}
.x5_c00358{left:768.254608px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.ls3_c00358{letter-spacing:0.213120pt;}
.ls2_c00358{letter-spacing:0.355200pt;}
.ls0_c00358{letter-spacing:5.312000pt;}
.ws0_c00358{word-spacing:-13.379200pt;}
.ws1_c00358{word-spacing:0.000000pt;}
._0_c00358{margin-left:-0.994560pt;}
._1_c00358{width:0.899840pt;}
.fs1_c00358{font-size:47.360000pt;}
.fs2_c00358{font-size:53.333333pt;}
.fs0_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y23_c00358{bottom:2.773333pt;}
.y21_c00358{bottom:22.720000pt;}
.y22_c00358{bottom:30.884071pt;}
.y20_c00358{bottom:36.800000pt;}
.y1_c00358{bottom:48.000000pt;}
.y1e_c00358{bottom:100.200000pt;}
.y1d_c00358{bottom:132.200000pt;}
.y1f_c00358{bottom:163.880000pt;}
.y1c_c00358{bottom:164.200000pt;}
.y1b_c00358{bottom:196.200000pt;}
.y1a_c00358{bottom:228.200000pt;}
.y19_c00358{bottom:260.200000pt;}
.y18_c00358{bottom:292.200000pt;}
.y17_c00358{bottom:324.200000pt;}
.y16_c00358{bottom:356.200000pt;}
.y15_c00358{bottom:388.200000pt;}
.y14_c00358{bottom:420.200000pt;}
.y13_c00358{bottom:452.520000pt;}
.y12_c00358{bottom:484.520000pt;}
.y11_c00358{bottom:516.520000pt;}
.y10_c00358{bottom:548.520000pt;}
.yf_c00358{bottom:580.520000pt;}
.ye_c00358{bottom:612.520000pt;}
.yd_c00358{bottom:644.520000pt;}
.yc_c00358{bottom:676.520000pt;}
.yb_c00358{bottom:708.520000pt;}
.ya_c00358{bottom:740.520000pt;}
.y9_c00358{bottom:772.520000pt;}
.y8_c00358{bottom:804.520000pt;}
.y7_c00358{bottom:836.520000pt;}
.y6_c00358{bottom:868.520000pt;}
.y5_c00358{bottom:900.520000pt;}
.y4_c00358{bottom:932.520000pt;}
.y3_c00358{bottom:964.520000pt;}
.y2_c00358{bottom:1011.880000pt;}
.h6_c00358{height:17.116093pt;}
.h5_c00358{height:36.561920pt;}
.h4_c00358{height:48.000000pt;}
.h3_c00358{height:49.408000pt;}
.h7_c00358{height:50.346667pt;}
.h2_c00358{height:1067.880000pt;}
.h0_c00358{height:1122.520000pt;}
.h1_c00358{height:1122.666667pt;}
.w4_c00358{width:14.826667pt;}
.w3_c00358{width:246.080000pt;}
.w2_c00358{width:767.960000pt;}
.w0_c00358{width:793.720000pt;}
.w1_c00358{width:794.000000pt;}
.x0_c00358{left:0.000000pt;}
.x4_c00358{left:7.481333pt;}
.x1_c00358{left:12.880000pt;}
.x2_c00358{left:100.480133pt;}
.x3_c00358{left:374.480000pt;}
.x5_c00358{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_547f88c31dba442bb3ea035e.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;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_c00359;src:url('chunks/assets/font_d1e49174a1b2f30c491f425b.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00359{letter-spacing:0.202464px;}
.ls2_c00359{letter-spacing:0.399600px;}
.ls0_c00359{letter-spacing:5.976000px;}
.sc__c00359{text-shadow:none;}
.sc1_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00359{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc1_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00359{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00359{word-spacing:0.000000px;}
._0_c00359{margin-left:-1.015728px;}
.fc1_c00359{color:transparent;}
.fc0_c00359{color:rgb(0,0,0);}
.fs1_c00359{font-size:53.280000px;}
.fs2_c00359{font-size:60.000000px;}
.fs0_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y22_c00359{bottom:3.120000px;}
.y20_c00359{bottom:17.280000px;}
.y21_c00359{bottom:34.744580px;}
.y1_c00359{bottom:54.000000px;}
.y1e_c00359{bottom:112.725000px;}
.y1d_c00359{bottom:148.725000px;}
.y1f_c00359{bottom:153.765000px;}
.y1c_c00359{bottom:184.725000px;}
.y1b_c00359{bottom:220.725000px;}
.y1a_c00359{bottom:256.725000px;}
.y19_c00359{bottom:292.725000px;}
.y18_c00359{bottom:328.725000px;}
.y17_c00359{bottom:364.725000px;}
.y16_c00359{bottom:400.725000px;}
.y15_c00359{bottom:436.725000px;}
.y14_c00359{bottom:472.725000px;}
.y13_c00359{bottom:509.085000px;}
.y12_c00359{bottom:545.085000px;}
.y11_c00359{bottom:581.085000px;}
.y10_c00359{bottom:617.085000px;}
.yf_c00359{bottom:653.085000px;}
.ye_c00359{bottom:689.085000px;}
.yd_c00359{bottom:725.085000px;}
.yc_c00359{bottom:761.085000px;}
.yb_c00359{bottom:797.085000px;}
.ya_c00359{bottom:833.085000px;}
.y9_c00359{bottom:869.085000px;}
.y8_c00359{bottom:905.085000px;}
.y7_c00359{bottom:941.085000px;}
.y6_c00359{bottom:977.085000px;}
.y5_c00359{bottom:1013.085000px;}
.y4_c00359{bottom:1049.085000px;}
.y3_c00359{bottom:1085.085000px;}
.y2_c00359{bottom:1138.365000px;}
.h6_c00359{height:19.255605px;}
.h4_c00359{height:29.880000px;}
.h5_c00359{height:41.132160px;}
.h3_c00359{height:55.584000px;}
.h7_c00359{height:56.640000px;}
.h2_c00359{height:1201.365000px;}
.h0_c00359{height:1262.835000px;}
.h1_c00359{height:1263.000000px;}
.w4_c00359{width:16.680000px;}
.w3_c00359{width:602.280000px;}
.w2_c00359{width:863.955000px;}
.w0_c00359{width:892.935000px;}
.w1_c00359{width:893.250000px;}
.x0_c00359{left:0.000000px;}
.x1_c00359{left:14.490000px;}
.x2_c00359{left:113.040150px;}
.x3_c00359{left:124.290000px;}
.x4_c00359{left:185.156550px;}
.x5_c00359{left:768.254608px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls1_c00359{letter-spacing:0.000000pt;}
.ls3_c00359{letter-spacing:0.179968pt;}
.ls2_c00359{letter-spacing:0.355200pt;}
.ls0_c00359{letter-spacing:5.312000pt;}
.ws0_c00359{word-spacing:0.000000pt;}
._0_c00359{margin-left:-0.902869pt;}
.fs1_c00359{font-size:47.360000pt;}
.fs2_c00359{font-size:53.333333pt;}
.fs0_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y22_c00359{bottom:2.773333pt;}
.y20_c00359{bottom:15.360000pt;}
.y21_c00359{bottom:30.884071pt;}
.y1_c00359{bottom:48.000000pt;}
.y1e_c00359{bottom:100.200000pt;}
.y1d_c00359{bottom:132.200000pt;}
.y1f_c00359{bottom:136.680000pt;}
.y1c_c00359{bottom:164.200000pt;}
.y1b_c00359{bottom:196.200000pt;}
.y1a_c00359{bottom:228.200000pt;}
.y19_c00359{bottom:260.200000pt;}
.y18_c00359{bottom:292.200000pt;}
.y17_c00359{bottom:324.200000pt;}
.y16_c00359{bottom:356.200000pt;}
.y15_c00359{bottom:388.200000pt;}
.y14_c00359{bottom:420.200000pt;}
.y13_c00359{bottom:452.520000pt;}
.y12_c00359{bottom:484.520000pt;}
.y11_c00359{bottom:516.520000pt;}
.y10_c00359{bottom:548.520000pt;}
.yf_c00359{bottom:580.520000pt;}
.ye_c00359{bottom:612.520000pt;}
.yd_c00359{bottom:644.520000pt;}
.yc_c00359{bottom:676.520000pt;}
.yb_c00359{bottom:708.520000pt;}
.ya_c00359{bottom:740.520000pt;}
.y9_c00359{bottom:772.520000pt;}
.y8_c00359{bottom:804.520000pt;}
.y7_c00359{bottom:836.520000pt;}
.y6_c00359{bottom:868.520000pt;}
.y5_c00359{bottom:900.520000pt;}
.y4_c00359{bottom:932.520000pt;}
.y3_c00359{bottom:964.520000pt;}
.y2_c00359{bottom:1011.880000pt;}
.h6_c00359{height:17.116093pt;}
.h4_c00359{height:26.560000pt;}
.h5_c00359{height:36.561920pt;}
.h3_c00359{height:49.408000pt;}
.h7_c00359{height:50.346667pt;}
.h2_c00359{height:1067.880000pt;}
.h0_c00359{height:1122.520000pt;}
.h1_c00359{height:1122.666667pt;}
.w4_c00359{width:14.826667pt;}
.w3_c00359{width:535.360000pt;}
.w2_c00359{width:767.960000pt;}
.w0_c00359{width:793.720000pt;}
.w1_c00359{width:794.000000pt;}
.x0_c00359{left:0.000000pt;}
.x1_c00359{left:12.880000pt;}
.x2_c00359{left:100.480133pt;}
.x3_c00359{left:110.480000pt;}
.x4_c00359{left:164.583600pt;}
.x5_c00359{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6af55a7e91a735260d1b9edf.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;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_c00360;src:url('chunks/assets/font_f87e46ccb1d5b2b9913d2697.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00360{letter-spacing:0.202464px;}
.ls2_c00360{letter-spacing:0.399600px;}
.ls0_c00360{letter-spacing:5.976000px;}
.sc__c00360{text-shadow:none;}
.sc1_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00360{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc1_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00360{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00360{word-spacing:0.000000px;}
._0_c00360{width:1.014120px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs1_c00360{font-size:53.280000px;}
.fs2_c00360{font-size:60.000000px;}
.fs0_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y23_c00360{bottom:3.120000px;}
.y21_c00360{bottom:14.400000px;}
.y22_c00360{bottom:34.744580px;}
.y1_c00360{bottom:54.000000px;}
.y1f_c00360{bottom:76.725000px;}
.y1e_c00360{bottom:112.725000px;}
.y1d_c00360{bottom:148.725000px;}
.y20_c00360{bottom:150.525000px;}
.y1c_c00360{bottom:184.725000px;}
.y1b_c00360{bottom:220.725000px;}
.y1a_c00360{bottom:256.725000px;}
.y19_c00360{bottom:292.725000px;}
.y18_c00360{bottom:328.725000px;}
.y17_c00360{bottom:364.725000px;}
.y16_c00360{bottom:400.725000px;}
.y15_c00360{bottom:436.725000px;}
.y14_c00360{bottom:472.725000px;}
.y13_c00360{bottom:509.085000px;}
.y12_c00360{bottom:545.085000px;}
.y11_c00360{bottom:581.085000px;}
.y10_c00360{bottom:617.085000px;}
.yf_c00360{bottom:653.085000px;}
.ye_c00360{bottom:689.085000px;}
.yd_c00360{bottom:725.085000px;}
.yc_c00360{bottom:761.085000px;}
.yb_c00360{bottom:797.085000px;}
.ya_c00360{bottom:833.085000px;}
.y9_c00360{bottom:869.085000px;}
.y8_c00360{bottom:905.085000px;}
.y7_c00360{bottom:941.085000px;}
.y6_c00360{bottom:977.085000px;}
.y5_c00360{bottom:1013.085000px;}
.y4_c00360{bottom:1049.085000px;}
.y3_c00360{bottom:1085.085000px;}
.y2_c00360{bottom:1138.365000px;}
.h6_c00360{height:19.255605px;}
.h4_c00360{height:27.000000px;}
.h5_c00360{height:41.132160px;}
.h3_c00360{height:55.584000px;}
.h7_c00360{height:56.640000px;}
.h2_c00360{height:1201.365000px;}
.h0_c00360{height:1262.835000px;}
.h1_c00360{height:1263.000000px;}
.w4_c00360{width:16.680000px;}
.w3_c00360{width:493.920000px;}
.w2_c00360{width:863.955000px;}
.w0_c00360{width:892.935000px;}
.w1_c00360{width:893.250000px;}
.x0_c00360{left:0.000000px;}
.x1_c00360{left:14.490000px;}
.x2_c00360{left:113.040150px;}
.x4_c00360{left:131.302650px;}
.x3_c00360{left:205.290000px;}
.x5_c00360{left:768.254608px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls1_c00360{letter-spacing:0.000000pt;}
.ls3_c00360{letter-spacing:0.179968pt;}
.ls2_c00360{letter-spacing:0.355200pt;}
.ls0_c00360{letter-spacing:5.312000pt;}
.ws0_c00360{word-spacing:0.000000pt;}
._0_c00360{width:0.901440pt;}
.fs1_c00360{font-size:47.360000pt;}
.fs2_c00360{font-size:53.333333pt;}
.fs0_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y23_c00360{bottom:2.773333pt;}
.y21_c00360{bottom:12.800000pt;}
.y22_c00360{bottom:30.884071pt;}
.y1_c00360{bottom:48.000000pt;}
.y1f_c00360{bottom:68.200000pt;}
.y1e_c00360{bottom:100.200000pt;}
.y1d_c00360{bottom:132.200000pt;}
.y20_c00360{bottom:133.800000pt;}
.y1c_c00360{bottom:164.200000pt;}
.y1b_c00360{bottom:196.200000pt;}
.y1a_c00360{bottom:228.200000pt;}
.y19_c00360{bottom:260.200000pt;}
.y18_c00360{bottom:292.200000pt;}
.y17_c00360{bottom:324.200000pt;}
.y16_c00360{bottom:356.200000pt;}
.y15_c00360{bottom:388.200000pt;}
.y14_c00360{bottom:420.200000pt;}
.y13_c00360{bottom:452.520000pt;}
.y12_c00360{bottom:484.520000pt;}
.y11_c00360{bottom:516.520000pt;}
.y10_c00360{bottom:548.520000pt;}
.yf_c00360{bottom:580.520000pt;}
.ye_c00360{bottom:612.520000pt;}
.yd_c00360{bottom:644.520000pt;}
.yc_c00360{bottom:676.520000pt;}
.yb_c00360{bottom:708.520000pt;}
.ya_c00360{bottom:740.520000pt;}
.y9_c00360{bottom:772.520000pt;}
.y8_c00360{bottom:804.520000pt;}
.y7_c00360{bottom:836.520000pt;}
.y6_c00360{bottom:868.520000pt;}
.y5_c00360{bottom:900.520000pt;}
.y4_c00360{bottom:932.520000pt;}
.y3_c00360{bottom:964.520000pt;}
.y2_c00360{bottom:1011.880000pt;}
.h6_c00360{height:17.116093pt;}
.h4_c00360{height:24.000000pt;}
.h5_c00360{height:36.561920pt;}
.h3_c00360{height:49.408000pt;}
.h7_c00360{height:50.346667pt;}
.h2_c00360{height:1067.880000pt;}
.h0_c00360{height:1122.520000pt;}
.h1_c00360{height:1122.666667pt;}
.w4_c00360{width:14.826667pt;}
.w3_c00360{width:439.040000pt;}
.w2_c00360{width:767.960000pt;}
.w0_c00360{width:793.720000pt;}
.w1_c00360{width:794.000000pt;}
.x0_c00360{left:0.000000pt;}
.x1_c00360{left:12.880000pt;}
.x2_c00360{left:100.480133pt;}
.x4_c00360{left:116.713467pt;}
.x3_c00360{left:182.480000pt;}
.x5_c00360{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d3f9223b9b93007d7428cc3.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;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_c00361;src:url('chunks/assets/font_eeec93fba099bd1cbf823691.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00361{letter-spacing:0.000000px;}
.ls2_c00361{letter-spacing:0.399600px;}
.ls0_c00361{letter-spacing:5.976000px;}
.sc__c00361{text-shadow:none;}
.sc1_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00361{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc1_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00361{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00361{word-spacing:0.000000px;}
._0_c00361{margin-left:-1.118880px;}
.fc1_c00361{color:transparent;}
.fc0_c00361{color:rgb(0,0,0);}
.fs1_c00361{font-size:53.280000px;}
.fs2_c00361{font-size:60.000000px;}
.fs0_c00361{font-size:72.000000px;}
.y0_c00361{bottom:0.000000px;}
.y22_c00361{bottom:3.120000px;}
.y20_c00361{bottom:20.520000px;}
.y21_c00361{bottom:34.744580px;}
.y1_c00361{bottom:54.000000px;}
.y1e_c00361{bottom:112.725000px;}
.y1d_c00361{bottom:148.725000px;}
.y1c_c00361{bottom:184.725000px;}
.y1f_c00361{bottom:199.485000px;}
.y1b_c00361{bottom:220.725000px;}
.y1a_c00361{bottom:256.725000px;}
.y19_c00361{bottom:292.725000px;}
.y18_c00361{bottom:328.725000px;}
.y17_c00361{bottom:364.725000px;}
.y16_c00361{bottom:400.725000px;}
.y15_c00361{bottom:436.725000px;}
.y14_c00361{bottom:472.725000px;}
.y13_c00361{bottom:509.085000px;}
.y12_c00361{bottom:545.085000px;}
.y11_c00361{bottom:581.085000px;}
.y10_c00361{bottom:617.085000px;}
.yf_c00361{bottom:653.085000px;}
.ye_c00361{bottom:689.085000px;}
.yd_c00361{bottom:725.085000px;}
.yc_c00361{bottom:761.085000px;}
.yb_c00361{bottom:797.085000px;}
.ya_c00361{bottom:833.085000px;}
.y9_c00361{bottom:869.085000px;}
.y8_c00361{bottom:905.085000px;}
.y7_c00361{bottom:941.085000px;}
.y6_c00361{bottom:977.085000px;}
.y5_c00361{bottom:1013.085000px;}
.y4_c00361{bottom:1049.085000px;}
.y3_c00361{bottom:1085.085000px;}
.y2_c00361{bottom:1138.365000px;}
.h6_c00361{height:19.255605px;}
.h4_c00361{height:33.120000px;}
.h5_c00361{height:41.132160px;}
.h3_c00361{height:55.584000px;}
.h7_c00361{height:56.640000px;}
.h2_c00361{height:1201.365000px;}
.h0_c00361{height:1262.835000px;}
.h1_c00361{height:1263.000000px;}
.w4_c00361{width:16.680000px;}
.w3_c00361{width:654.840000px;}
.w2_c00361{width:863.955000px;}
.w0_c00361{width:892.935000px;}
.w1_c00361{width:893.250000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:14.490000px;}
.x2_c00361{left:113.040150px;}
.x3_c00361{left:124.290000px;}
.x4_c00361{left:210.915750px;}
.x5_c00361{left:768.254608px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls1_c00361{letter-spacing:0.000000pt;}
.ls2_c00361{letter-spacing:0.355200pt;}
.ls0_c00361{letter-spacing:5.312000pt;}
.ws0_c00361{word-spacing:0.000000pt;}
._0_c00361{margin-left:-0.994560pt;}
.fs1_c00361{font-size:47.360000pt;}
.fs2_c00361{font-size:53.333333pt;}
.fs0_c00361{font-size:64.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y22_c00361{bottom:2.773333pt;}
.y20_c00361{bottom:18.240000pt;}
.y21_c00361{bottom:30.884071pt;}
.y1_c00361{bottom:48.000000pt;}
.y1e_c00361{bottom:100.200000pt;}
.y1d_c00361{bottom:132.200000pt;}
.y1c_c00361{bottom:164.200000pt;}
.y1f_c00361{bottom:177.320000pt;}
.y1b_c00361{bottom:196.200000pt;}
.y1a_c00361{bottom:228.200000pt;}
.y19_c00361{bottom:260.200000pt;}
.y18_c00361{bottom:292.200000pt;}
.y17_c00361{bottom:324.200000pt;}
.y16_c00361{bottom:356.200000pt;}
.y15_c00361{bottom:388.200000pt;}
.y14_c00361{bottom:420.200000pt;}
.y13_c00361{bottom:452.520000pt;}
.y12_c00361{bottom:484.520000pt;}
.y11_c00361{bottom:516.520000pt;}
.y10_c00361{bottom:548.520000pt;}
.yf_c00361{bottom:580.520000pt;}
.ye_c00361{bottom:612.520000pt;}
.yd_c00361{bottom:644.520000pt;}
.yc_c00361{bottom:676.520000pt;}
.yb_c00361{bottom:708.520000pt;}
.ya_c00361{bottom:740.520000pt;}
.y9_c00361{bottom:772.520000pt;}
.y8_c00361{bottom:804.520000pt;}
.y7_c00361{bottom:836.520000pt;}
.y6_c00361{bottom:868.520000pt;}
.y5_c00361{bottom:900.520000pt;}
.y4_c00361{bottom:932.520000pt;}
.y3_c00361{bottom:964.520000pt;}
.y2_c00361{bottom:1011.880000pt;}
.h6_c00361{height:17.116093pt;}
.h4_c00361{height:29.440000pt;}
.h5_c00361{height:36.561920pt;}
.h3_c00361{height:49.408000pt;}
.h7_c00361{height:50.346667pt;}
.h2_c00361{height:1067.880000pt;}
.h0_c00361{height:1122.520000pt;}
.h1_c00361{height:1122.666667pt;}
.w4_c00361{width:14.826667pt;}
.w3_c00361{width:582.080000pt;}
.w2_c00361{width:767.960000pt;}
.w0_c00361{width:793.720000pt;}
.w1_c00361{width:794.000000pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:12.880000pt;}
.x2_c00361{left:100.480133pt;}
.x3_c00361{left:110.480000pt;}
.x4_c00361{left:187.480667pt;}
.x5_c00361{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7509731256cdc676fd75533.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;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_c00362;src:url('chunks/assets/font_f03976665c0c66527e0080de.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00362{letter-spacing:0.000000px;}
.ls1_c00362{letter-spacing:0.202464px;}
.ls0_c00362{letter-spacing:0.280080px;}
.ls4_c00362{letter-spacing:0.399600px;}
.ls2_c00362{letter-spacing:5.976000px;}
.sc__c00362{text-shadow:none;}
.sc1_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00362{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc1_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00362{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00362{word-spacing:-15.211440px;}
.ws1_c00362{word-spacing:-14.811840px;}
.ws2_c00362{word-spacing:0.000000px;}
._0_c00362{width:1.018368px;}
.fc0_c00362{color:rgb(0,0,0);}
.fs1_c00362{font-size:53.280000px;}
.fs2_c00362{font-size:60.000000px;}
.fs0_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y22_c00362{bottom:3.120000px;}
.y20_c00362{bottom:34.560000px;}
.y21_c00362{bottom:34.744580px;}
.y1_c00362{bottom:54.000000px;}
.y1f_c00362{bottom:110.205000px;}
.y1e_c00362{bottom:112.725000px;}
.y1d_c00362{bottom:148.725000px;}
.y1c_c00362{bottom:184.725000px;}
.y1b_c00362{bottom:220.725000px;}
.y1a_c00362{bottom:256.725000px;}
.y19_c00362{bottom:292.725000px;}
.y18_c00362{bottom:328.725000px;}
.y17_c00362{bottom:364.725000px;}
.y16_c00362{bottom:400.725000px;}
.y15_c00362{bottom:436.725000px;}
.y14_c00362{bottom:472.725000px;}
.y13_c00362{bottom:509.085000px;}
.y12_c00362{bottom:545.085000px;}
.y11_c00362{bottom:581.085000px;}
.y10_c00362{bottom:617.085000px;}
.yf_c00362{bottom:653.085000px;}
.ye_c00362{bottom:689.085000px;}
.yd_c00362{bottom:725.085000px;}
.yc_c00362{bottom:761.085000px;}
.yb_c00362{bottom:797.085000px;}
.ya_c00362{bottom:833.085000px;}
.y9_c00362{bottom:869.085000px;}
.y8_c00362{bottom:905.085000px;}
.y7_c00362{bottom:941.085000px;}
.y6_c00362{bottom:977.085000px;}
.y5_c00362{bottom:1013.085000px;}
.y4_c00362{bottom:1049.085000px;}
.y3_c00362{bottom:1085.085000px;}
.y2_c00362{bottom:1138.365000px;}
.h6_c00362{height:19.255605px;}
.h5_c00362{height:41.132160px;}
.h4_c00362{height:47.160000px;}
.h3_c00362{height:55.584000px;}
.h7_c00362{height:56.640000px;}
.h2_c00362{height:1201.365000px;}
.h0_c00362{height:1262.835000px;}
.h1_c00362{height:1263.000000px;}
.w4_c00362{width:16.680000px;}
.w3_c00362{width:642.600000px;}
.w2_c00362{width:863.955000px;}
.w0_c00362{width:892.935000px;}
.w1_c00362{width:893.250000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:14.490000px;}
.x2_c00362{left:113.040150px;}
.x4_c00362{left:114.150750px;}
.x3_c00362{left:124.290000px;}
.x5_c00362{left:768.254608px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls3_c00362{letter-spacing:0.000000pt;}
.ls1_c00362{letter-spacing:0.179968pt;}
.ls0_c00362{letter-spacing:0.248960pt;}
.ls4_c00362{letter-spacing:0.355200pt;}
.ls2_c00362{letter-spacing:5.312000pt;}
.ws0_c00362{word-spacing:-13.521280pt;}
.ws1_c00362{word-spacing:-13.166080pt;}
.ws2_c00362{word-spacing:0.000000pt;}
._0_c00362{width:0.905216pt;}
.fs1_c00362{font-size:47.360000pt;}
.fs2_c00362{font-size:53.333333pt;}
.fs0_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y22_c00362{bottom:2.773333pt;}
.y20_c00362{bottom:30.720000pt;}
.y21_c00362{bottom:30.884071pt;}
.y1_c00362{bottom:48.000000pt;}
.y1f_c00362{bottom:97.960000pt;}
.y1e_c00362{bottom:100.200000pt;}
.y1d_c00362{bottom:132.200000pt;}
.y1c_c00362{bottom:164.200000pt;}
.y1b_c00362{bottom:196.200000pt;}
.y1a_c00362{bottom:228.200000pt;}
.y19_c00362{bottom:260.200000pt;}
.y18_c00362{bottom:292.200000pt;}
.y17_c00362{bottom:324.200000pt;}
.y16_c00362{bottom:356.200000pt;}
.y15_c00362{bottom:388.200000pt;}
.y14_c00362{bottom:420.200000pt;}
.y13_c00362{bottom:452.520000pt;}
.y12_c00362{bottom:484.520000pt;}
.y11_c00362{bottom:516.520000pt;}
.y10_c00362{bottom:548.520000pt;}
.yf_c00362{bottom:580.520000pt;}
.ye_c00362{bottom:612.520000pt;}
.yd_c00362{bottom:644.520000pt;}
.yc_c00362{bottom:676.520000pt;}
.yb_c00362{bottom:708.520000pt;}
.ya_c00362{bottom:740.520000pt;}
.y9_c00362{bottom:772.520000pt;}
.y8_c00362{bottom:804.520000pt;}
.y7_c00362{bottom:836.520000pt;}
.y6_c00362{bottom:868.520000pt;}
.y5_c00362{bottom:900.520000pt;}
.y4_c00362{bottom:932.520000pt;}
.y3_c00362{bottom:964.520000pt;}
.y2_c00362{bottom:1011.880000pt;}
.h6_c00362{height:17.116093pt;}
.h5_c00362{height:36.561920pt;}
.h4_c00362{height:41.920000pt;}
.h3_c00362{height:49.408000pt;}
.h7_c00362{height:50.346667pt;}
.h2_c00362{height:1067.880000pt;}
.h0_c00362{height:1122.520000pt;}
.h1_c00362{height:1122.666667pt;}
.w4_c00362{width:14.826667pt;}
.w3_c00362{width:571.200000pt;}
.w2_c00362{width:767.960000pt;}
.w0_c00362{width:793.720000pt;}
.w1_c00362{width:794.000000pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:12.880000pt;}
.x2_c00362{left:100.480133pt;}
.x4_c00362{left:101.467333pt;}
.x3_c00362{left:110.480000pt;}
.x5_c00362{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_946a01b50485385caa8cde1c.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;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_c00363;src:url('chunks/assets/font_55deccac6d7d17e46d085ae1.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00363{letter-spacing:0.202464px;}
.ls4_c00363{letter-spacing:0.362304px;}
.ls2_c00363{letter-spacing:0.399600px;}
.ls5_c00363{letter-spacing:0.522144px;}
.ls0_c00363{letter-spacing:5.976000px;}
.sc__c00363{text-shadow:none;}
.sc1_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00363{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc1_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00363{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00363{word-spacing:0.000000px;}
._0_c00363{margin-left:-1.133064px;}
._1_c00363{width:1.046016px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs1_c00363{font-size:53.280000px;}
.fs2_c00363{font-size:60.000000px;}
.fs0_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.y24_c00363{bottom:3.120000px;}
.y22_c00363{bottom:19.080000px;}
.y1f_c00363{bottom:24.120000px;}
.y21_c00363{bottom:34.560000px;}
.y23_c00363{bottom:34.744580px;}
.y1_c00363{bottom:54.000000px;}
.y1d_c00363{bottom:148.725000px;}
.y20_c00363{bottom:184.005000px;}
.y1c_c00363{bottom:184.725000px;}
.y1b_c00363{bottom:220.725000px;}
.y1a_c00363{bottom:256.725000px;}
.y19_c00363{bottom:292.725000px;}
.y18_c00363{bottom:328.725000px;}
.y17_c00363{bottom:364.725000px;}
.y16_c00363{bottom:400.725000px;}
.y15_c00363{bottom:436.725000px;}
.y14_c00363{bottom:472.725000px;}
.y13_c00363{bottom:509.085000px;}
.y12_c00363{bottom:545.085000px;}
.y11_c00363{bottom:581.085000px;}
.y10_c00363{bottom:617.085000px;}
.yf_c00363{bottom:653.085000px;}
.y1e_c00363{bottom:684.405000px;}
.ye_c00363{bottom:689.085000px;}
.yd_c00363{bottom:725.085000px;}
.yc_c00363{bottom:761.085000px;}
.yb_c00363{bottom:797.085000px;}
.ya_c00363{bottom:833.085000px;}
.y9_c00363{bottom:869.085000px;}
.y8_c00363{bottom:905.085000px;}
.y7_c00363{bottom:941.085000px;}
.y6_c00363{bottom:977.085000px;}
.y5_c00363{bottom:1013.085000px;}
.y4_c00363{bottom:1049.085000px;}
.y3_c00363{bottom:1085.085000px;}
.y2_c00363{bottom:1138.365000px;}
.h7_c00363{height:19.255605px;}
.h4_c00363{height:36.720000px;}
.h5_c00363{height:41.132160px;}
.h6_c00363{height:47.160000px;}
.h3_c00363{height:55.584000px;}
.h8_c00363{height:56.640000px;}
.h2_c00363{height:1201.365000px;}
.h0_c00363{height:1262.835000px;}
.h1_c00363{height:1263.000000px;}
.w5_c00363{width:16.680000px;}
.w3_c00363{width:547.920000px;}
.w4_c00363{width:564.840000px;}
.w2_c00363{width:863.955000px;}
.w0_c00363{width:892.935000px;}
.w1_c00363{width:893.250000px;}
.x0_c00363{left:0.000000px;}
.x6_c00363{left:9.850650px;}
.x1_c00363{left:14.490000px;}
.x4_c00363{left:75.452250px;}
.x2_c00363{left:113.040150px;}
.x5_c00363{left:160.290000px;}
.x3_c00363{left:178.290000px;}
.x7_c00363{left:222.498300px;}
.x8_c00363{left:768.254608px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls1_c00363{letter-spacing:0.000000pt;}
.ls3_c00363{letter-spacing:0.179968pt;}
.ls4_c00363{letter-spacing:0.322048pt;}
.ls2_c00363{letter-spacing:0.355200pt;}
.ls5_c00363{letter-spacing:0.464128pt;}
.ls0_c00363{letter-spacing:5.312000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
._0_c00363{margin-left:-1.007168pt;}
._1_c00363{width:0.929792pt;}
.fs1_c00363{font-size:47.360000pt;}
.fs2_c00363{font-size:53.333333pt;}
.fs0_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y24_c00363{bottom:2.773333pt;}
.y22_c00363{bottom:16.960000pt;}
.y1f_c00363{bottom:21.440000pt;}
.y21_c00363{bottom:30.720000pt;}
.y23_c00363{bottom:30.884071pt;}
.y1_c00363{bottom:48.000000pt;}
.y1d_c00363{bottom:132.200000pt;}
.y20_c00363{bottom:163.560000pt;}
.y1c_c00363{bottom:164.200000pt;}
.y1b_c00363{bottom:196.200000pt;}
.y1a_c00363{bottom:228.200000pt;}
.y19_c00363{bottom:260.200000pt;}
.y18_c00363{bottom:292.200000pt;}
.y17_c00363{bottom:324.200000pt;}
.y16_c00363{bottom:356.200000pt;}
.y15_c00363{bottom:388.200000pt;}
.y14_c00363{bottom:420.200000pt;}
.y13_c00363{bottom:452.520000pt;}
.y12_c00363{bottom:484.520000pt;}
.y11_c00363{bottom:516.520000pt;}
.y10_c00363{bottom:548.520000pt;}
.yf_c00363{bottom:580.520000pt;}
.y1e_c00363{bottom:608.360000pt;}
.ye_c00363{bottom:612.520000pt;}
.yd_c00363{bottom:644.520000pt;}
.yc_c00363{bottom:676.520000pt;}
.yb_c00363{bottom:708.520000pt;}
.ya_c00363{bottom:740.520000pt;}
.y9_c00363{bottom:772.520000pt;}
.y8_c00363{bottom:804.520000pt;}
.y7_c00363{bottom:836.520000pt;}
.y6_c00363{bottom:868.520000pt;}
.y5_c00363{bottom:900.520000pt;}
.y4_c00363{bottom:932.520000pt;}
.y3_c00363{bottom:964.520000pt;}
.y2_c00363{bottom:1011.880000pt;}
.h7_c00363{height:17.116093pt;}
.h4_c00363{height:32.640000pt;}
.h5_c00363{height:36.561920pt;}
.h6_c00363{height:41.920000pt;}
.h3_c00363{height:49.408000pt;}
.h8_c00363{height:50.346667pt;}
.h2_c00363{height:1067.880000pt;}
.h0_c00363{height:1122.520000pt;}
.h1_c00363{height:1122.666667pt;}
.w5_c00363{width:14.826667pt;}
.w3_c00363{width:487.040000pt;}
.w4_c00363{width:502.080000pt;}
.w2_c00363{width:767.960000pt;}
.w0_c00363{width:793.720000pt;}
.w1_c00363{width:794.000000pt;}
.x0_c00363{left:0.000000pt;}
.x6_c00363{left:8.756133pt;}
.x1_c00363{left:12.880000pt;}
.x4_c00363{left:67.068667pt;}
.x2_c00363{left:100.480133pt;}
.x5_c00363{left:142.480000pt;}
.x3_c00363{left:158.480000pt;}
.x7_c00363{left:197.776267pt;}
.x8_c00363{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a5ada501d866150dd5d3c86.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;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_c00364;src:url('chunks/assets/font_933df32a7987f4c2a6243ea7.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00364{letter-spacing:0.202464px;}
.ls2_c00364{letter-spacing:0.399600px;}
.ls0_c00364{letter-spacing:5.976000px;}
.sc__c00364{text-shadow:none;}
.sc1_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00364{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc1_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00364{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00364{word-spacing:0.000000px;}
._0_c00364{width:1.014120px;}
.fc1_c00364{color:transparent;}
.fc0_c00364{color:rgb(0,0,0);}
.fs1_c00364{font-size:53.280000px;}
.fs2_c00364{font-size:60.000000px;}
.fs0_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y23_c00364{bottom:3.120000px;}
.y20_c00364{bottom:34.560000px;}
.y22_c00364{bottom:34.744580px;}
.y1_c00364{bottom:54.000000px;}
.y1e_c00364{bottom:112.725000px;}
.y21_c00364{bottom:121.005000px;}
.y1d_c00364{bottom:148.725000px;}
.y1c_c00364{bottom:184.725000px;}
.y1b_c00364{bottom:220.725000px;}
.y1a_c00364{bottom:256.725000px;}
.y19_c00364{bottom:292.725000px;}
.y18_c00364{bottom:328.725000px;}
.y17_c00364{bottom:364.725000px;}
.y16_c00364{bottom:400.725000px;}
.y15_c00364{bottom:436.725000px;}
.y14_c00364{bottom:472.725000px;}
.y13_c00364{bottom:509.085000px;}
.y12_c00364{bottom:545.085000px;}
.y11_c00364{bottom:581.085000px;}
.y10_c00364{bottom:617.085000px;}
.y1f_c00364{bottom:625.005000px;}
.yf_c00364{bottom:653.085000px;}
.ye_c00364{bottom:689.085000px;}
.yd_c00364{bottom:725.085000px;}
.yc_c00364{bottom:761.085000px;}
.yb_c00364{bottom:797.085000px;}
.ya_c00364{bottom:833.085000px;}
.y9_c00364{bottom:869.085000px;}
.y8_c00364{bottom:905.085000px;}
.y7_c00364{bottom:941.085000px;}
.y6_c00364{bottom:977.085000px;}
.y5_c00364{bottom:1013.085000px;}
.y4_c00364{bottom:1049.085000px;}
.y3_c00364{bottom:1085.085000px;}
.y2_c00364{bottom:1138.365000px;}
.h6_c00364{height:19.255605px;}
.h5_c00364{height:41.132160px;}
.h4_c00364{height:47.160000px;}
.h3_c00364{height:55.584000px;}
.h7_c00364{height:56.640000px;}
.h2_c00364{height:1201.365000px;}
.h0_c00364{height:1262.835000px;}
.h1_c00364{height:1263.000000px;}
.w4_c00364{width:16.680000px;}
.w3_c00364{width:642.600000px;}
.w2_c00364{width:863.955000px;}
.w0_c00364{width:892.935000px;}
.w1_c00364{width:893.250000px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:14.490000px;}
.x2_c00364{left:113.040150px;}
.x3_c00364{left:124.290000px;}
.x5_c00364{left:127.170000px;}
.x6_c00364{left:134.791800px;}
.x4_c00364{left:160.663950px;}
.x7_c00364{left:768.254608px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls3_c00364{letter-spacing:0.179968pt;}
.ls2_c00364{letter-spacing:0.355200pt;}
.ls0_c00364{letter-spacing:5.312000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
._0_c00364{width:0.901440pt;}
.fs1_c00364{font-size:47.360000pt;}
.fs2_c00364{font-size:53.333333pt;}
.fs0_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y23_c00364{bottom:2.773333pt;}
.y20_c00364{bottom:30.720000pt;}
.y22_c00364{bottom:30.884071pt;}
.y1_c00364{bottom:48.000000pt;}
.y1e_c00364{bottom:100.200000pt;}
.y21_c00364{bottom:107.560000pt;}
.y1d_c00364{bottom:132.200000pt;}
.y1c_c00364{bottom:164.200000pt;}
.y1b_c00364{bottom:196.200000pt;}
.y1a_c00364{bottom:228.200000pt;}
.y19_c00364{bottom:260.200000pt;}
.y18_c00364{bottom:292.200000pt;}
.y17_c00364{bottom:324.200000pt;}
.y16_c00364{bottom:356.200000pt;}
.y15_c00364{bottom:388.200000pt;}
.y14_c00364{bottom:420.200000pt;}
.y13_c00364{bottom:452.520000pt;}
.y12_c00364{bottom:484.520000pt;}
.y11_c00364{bottom:516.520000pt;}
.y10_c00364{bottom:548.520000pt;}
.y1f_c00364{bottom:555.560000pt;}
.yf_c00364{bottom:580.520000pt;}
.ye_c00364{bottom:612.520000pt;}
.yd_c00364{bottom:644.520000pt;}
.yc_c00364{bottom:676.520000pt;}
.yb_c00364{bottom:708.520000pt;}
.ya_c00364{bottom:740.520000pt;}
.y9_c00364{bottom:772.520000pt;}
.y8_c00364{bottom:804.520000pt;}
.y7_c00364{bottom:836.520000pt;}
.y6_c00364{bottom:868.520000pt;}
.y5_c00364{bottom:900.520000pt;}
.y4_c00364{bottom:932.520000pt;}
.y3_c00364{bottom:964.520000pt;}
.y2_c00364{bottom:1011.880000pt;}
.h6_c00364{height:17.116093pt;}
.h5_c00364{height:36.561920pt;}
.h4_c00364{height:41.920000pt;}
.h3_c00364{height:49.408000pt;}
.h7_c00364{height:50.346667pt;}
.h2_c00364{height:1067.880000pt;}
.h0_c00364{height:1122.520000pt;}
.h1_c00364{height:1122.666667pt;}
.w4_c00364{width:14.826667pt;}
.w3_c00364{width:571.200000pt;}
.w2_c00364{width:767.960000pt;}
.w0_c00364{width:793.720000pt;}
.w1_c00364{width:794.000000pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:12.880000pt;}
.x2_c00364{left:100.480133pt;}
.x3_c00364{left:110.480000pt;}
.x5_c00364{left:113.040000pt;}
.x6_c00364{left:119.814933pt;}
.x4_c00364{left:142.812400pt;}
.x7_c00364{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_867917a272e4d3e97896afa4.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;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_c00365;src:url('chunks/assets/font_822cfc7c0c01d2a4c4532bc3.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls1_c00365{letter-spacing:0.000000px;}
.ls3_c00365{letter-spacing:0.202464px;}
.ls2_c00365{letter-spacing:0.399600px;}
.ls0_c00365{letter-spacing:5.976000px;}
.sc__c00365{text-shadow:none;}
.sc1_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00365{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc1_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00365{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00365{word-spacing:0.000000px;}
._0_c00365{width:1.014240px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs1_c00365{font-size:53.280000px;}
.fs2_c00365{font-size:60.000000px;}
.fs0_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y25_c00365{bottom:3.120000px;}
.y21_c00365{bottom:34.560000px;}
.y24_c00365{bottom:34.744580px;}
.y1_c00365{bottom:54.000000px;}
.y1f_c00365{bottom:76.725000px;}
.y1e_c00365{bottom:112.725000px;}
.y1d_c00365{bottom:148.725000px;}
.y23_c00365{bottom:157.725000px;}
.y1c_c00365{bottom:184.725000px;}
.y1b_c00365{bottom:220.725000px;}
.y1a_c00365{bottom:256.725000px;}
.y19_c00365{bottom:292.725000px;}
.y18_c00365{bottom:328.725000px;}
.y17_c00365{bottom:364.725000px;}
.y16_c00365{bottom:400.725000px;}
.y15_c00365{bottom:436.725000px;}
.y14_c00365{bottom:472.725000px;}
.y20_c00365{bottom:488.205000px;}
.y13_c00365{bottom:509.085000px;}
.y12_c00365{bottom:545.085000px;}
.y11_c00365{bottom:581.085000px;}
.y10_c00365{bottom:617.085000px;}
.yf_c00365{bottom:653.085000px;}
.ye_c00365{bottom:689.085000px;}
.yd_c00365{bottom:725.085000px;}
.yc_c00365{bottom:761.085000px;}
.yb_c00365{bottom:797.085000px;}
.y22_c00365{bottom:831.645000px;}
.ya_c00365{bottom:833.085000px;}
.y9_c00365{bottom:869.085000px;}
.y8_c00365{bottom:905.085000px;}
.y7_c00365{bottom:941.085000px;}
.y6_c00365{bottom:977.085000px;}
.y5_c00365{bottom:1013.085000px;}
.y4_c00365{bottom:1049.085000px;}
.y3_c00365{bottom:1085.085000px;}
.y2_c00365{bottom:1138.365000px;}
.h6_c00365{height:19.255605px;}
.h5_c00365{height:41.132160px;}
.h4_c00365{height:47.160000px;}
.h3_c00365{height:55.584000px;}
.h7_c00365{height:56.640000px;}
.h2_c00365{height:1201.365000px;}
.h0_c00365{height:1262.835000px;}
.h1_c00365{height:1263.000000px;}
.w6_c00365{width:16.680000px;}
.w5_c00365{width:393.840000px;}
.w4_c00365{width:461.160000px;}
.w3_c00365{width:654.480000px;}
.w2_c00365{width:863.955000px;}
.w0_c00365{width:892.935000px;}
.w1_c00365{width:893.250000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:14.490000px;}
.x8_c00365{left:54.901950px;}
.x6_c00365{left:88.992150px;}
.x4_c00365{left:99.093750px;}
.x2_c00365{left:113.040150px;}
.x3_c00365{left:130.770000px;}
.x5_c00365{left:232.290000px;}
.x7_c00365{left:259.290000px;}
.x9_c00365{left:768.254608px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls1_c00365{letter-spacing:0.000000pt;}
.ls3_c00365{letter-spacing:0.179968pt;}
.ls2_c00365{letter-spacing:0.355200pt;}
.ls0_c00365{letter-spacing:5.312000pt;}
.ws0_c00365{word-spacing:0.000000pt;}
._0_c00365{width:0.901547pt;}
.fs1_c00365{font-size:47.360000pt;}
.fs2_c00365{font-size:53.333333pt;}
.fs0_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y25_c00365{bottom:2.773333pt;}
.y21_c00365{bottom:30.720000pt;}
.y24_c00365{bottom:30.884071pt;}
.y1_c00365{bottom:48.000000pt;}
.y1f_c00365{bottom:68.200000pt;}
.y1e_c00365{bottom:100.200000pt;}
.y1d_c00365{bottom:132.200000pt;}
.y23_c00365{bottom:140.200000pt;}
.y1c_c00365{bottom:164.200000pt;}
.y1b_c00365{bottom:196.200000pt;}
.y1a_c00365{bottom:228.200000pt;}
.y19_c00365{bottom:260.200000pt;}
.y18_c00365{bottom:292.200000pt;}
.y17_c00365{bottom:324.200000pt;}
.y16_c00365{bottom:356.200000pt;}
.y15_c00365{bottom:388.200000pt;}
.y14_c00365{bottom:420.200000pt;}
.y20_c00365{bottom:433.960000pt;}
.y13_c00365{bottom:452.520000pt;}
.y12_c00365{bottom:484.520000pt;}
.y11_c00365{bottom:516.520000pt;}
.y10_c00365{bottom:548.520000pt;}
.yf_c00365{bottom:580.520000pt;}
.ye_c00365{bottom:612.520000pt;}
.yd_c00365{bottom:644.520000pt;}
.yc_c00365{bottom:676.520000pt;}
.yb_c00365{bottom:708.520000pt;}
.y22_c00365{bottom:739.240000pt;}
.ya_c00365{bottom:740.520000pt;}
.y9_c00365{bottom:772.520000pt;}
.y8_c00365{bottom:804.520000pt;}
.y7_c00365{bottom:836.520000pt;}
.y6_c00365{bottom:868.520000pt;}
.y5_c00365{bottom:900.520000pt;}
.y4_c00365{bottom:932.520000pt;}
.y3_c00365{bottom:964.520000pt;}
.y2_c00365{bottom:1011.880000pt;}
.h6_c00365{height:17.116093pt;}
.h5_c00365{height:36.561920pt;}
.h4_c00365{height:41.920000pt;}
.h3_c00365{height:49.408000pt;}
.h7_c00365{height:50.346667pt;}
.h2_c00365{height:1067.880000pt;}
.h0_c00365{height:1122.520000pt;}
.h1_c00365{height:1122.666667pt;}
.w6_c00365{width:14.826667pt;}
.w5_c00365{width:350.080000pt;}
.w4_c00365{width:409.920000pt;}
.w3_c00365{width:581.760000pt;}
.w2_c00365{width:767.960000pt;}
.w0_c00365{width:793.720000pt;}
.w1_c00365{width:794.000000pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:12.880000pt;}
.x8_c00365{left:48.801733pt;}
.x6_c00365{left:79.104133pt;}
.x4_c00365{left:88.083333pt;}
.x2_c00365{left:100.480133pt;}
.x3_c00365{left:116.240000pt;}
.x5_c00365{left:206.480000pt;}
.x7_c00365{left:230.480000pt;}
.x9_c00365{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b819844de31fc2521e298c51.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.134000;font-style:normal;font-weight:normal;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_b7ef75ad78aac0e43c60c7ad.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;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:ff3_c00366;src:url('chunks/assets/font_1f5d641373a473112955c3d4.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00366{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00366{vertical-align:-24.480000px;}
.v0_c00366{vertical-align:0.000000px;}
.v1_c00366{vertical-align:30.240000px;}
.ls9_c00366{letter-spacing:0.000000px;}
.ls2_c00366{letter-spacing:0.044640px;}
.ls7_c00366{letter-spacing:0.236160px;}
.lsd_c00366{letter-spacing:0.265680px;}
.ls5_c00366{letter-spacing:0.295200px;}
.ls6_c00366{letter-spacing:0.531360px;}
.ls8_c00366{letter-spacing:0.712027px;}
.lsb_c00366{letter-spacing:5.290272px;}
.lsa_c00366{letter-spacing:5.335200px;}
.lsc_c00366{letter-spacing:5.430672px;}
.ls3_c00366{letter-spacing:5.964600px;}
.ls0_c00366{letter-spacing:5.975400px;}
.ls1_c00366{letter-spacing:5.976000px;}
.ls4_c00366{letter-spacing:5.980200px;}
.sc__c00366{text-shadow:none;}
.sc1_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00366{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc1_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00366{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00366{word-spacing:-25.992000px;}
.ws4_c00366{word-spacing:-21.043152px;}
.ws0_c00366{word-spacing:-20.947680px;}
.ws2_c00366{word-spacing:-20.902752px;}
.ws6_c00366{word-spacing:-17.630284px;}
.ws3_c00366{word-spacing:-11.609280px;}
.ws5_c00366{word-spacing:-10.008000px;}
.ws7_c00366{word-spacing:0.000000px;}
._0_c00366{margin-left:-1.193040px;}
._1_c00366{width:1.296000px;}
._a_c00366{width:2.448000px;}
._d_c00366{width:4.320000px;}
._c_c00366{width:8.096400px;}
._9_c00366{width:9.216000px;}
._7_c00366{width:10.512000px;}
._4_c00366{width:12.456000px;}
._3_c00366{width:13.896000px;}
._6_c00366{width:18.864000px;}
._5_c00366{width:21.744000px;}
._8_c00366{width:22.752000px;}
._b_c00366{width:24.120000px;}
._2_c00366{width:37.512000px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs4_c00366{font-size:36.000000px;}
.fs2_c00366{font-size:41.760000px;}
.fs1_c00366{font-size:56.160000px;}
.fs5_c00366{font-size:59.040000px;}
.fs7_c00366{font-size:60.000000px;}
.fs6_c00366{font-size:60.857039px;}
.fs0_c00366{font-size:72.000000px;}
.fs3_c00366{font-size:74.215901px;}
.y0_c00366{bottom:0.000000px;}
.y28_c00366{bottom:3.120000px;}
.y27_c00366{bottom:34.744580px;}
.y1_c00366{bottom:54.000000px;}
.y26_c00366{bottom:61.605000px;}
.y25_c00366{bottom:72.765000px;}
.y24_c00366{bottom:78.885000px;}
.y23_c00366{bottom:96.525000px;}
.y22_c00366{bottom:107.685000px;}
.y21_c00366{bottom:113.805000px;}
.y20_c00366{bottom:131.445000px;}
.y1f_c00366{bottom:158.085000px;}
.y1e_c00366{bottom:288.405000px;}
.y1d_c00366{bottom:309.285000px;}
.y1c_c00366{bottom:345.285000px;}
.y1b_c00366{bottom:381.285000px;}
.y1a_c00366{bottom:417.285000px;}
.y19_c00366{bottom:453.285000px;}
.y18_c00366{bottom:489.285000px;}
.y17_c00366{bottom:510.525000px;}
.y16_c00366{bottom:546.525000px;}
.y15_c00366{bottom:567.405000px;}
.y14_c00366{bottom:603.405000px;}
.y13_c00366{bottom:639.405000px;}
.y12_c00366{bottom:675.405000px;}
.y11_c00366{bottom:696.285000px;}
.y10_c00366{bottom:732.285000px;}
.yf_c00366{bottom:753.525000px;}
.ye_c00366{bottom:774.405000px;}
.yd_c00366{bottom:795.285000px;}
.yc_c00366{bottom:831.285000px;}
.yb_c00366{bottom:869.805000px;}
.ya_c00366{bottom:907.965000px;}
.y9_c00366{bottom:943.965000px;}
.y8_c00366{bottom:964.845000px;}
.y7_c00366{bottom:986.085000px;}
.y6_c00366{bottom:1006.965000px;}
.y5_c00366{bottom:1027.845000px;}
.y4_c00366{bottom:1049.085000px;}
.y3_c00366{bottom:1085.085000px;}
.y2_c00366{bottom:1138.365000px;}
.h9_c00366{height:19.255605px;}
.h6_c00366{height:32.616000px;}
.h7_c00366{height:46.981634px;}
.h8_c00366{height:53.490240px;}
.ha_c00366{height:56.640000px;}
.h5_c00366{height:57.294676px;}
.h3_c00366{height:65.232000px;}
.h4_c00366{height:68.074560px;}
.h2_c00366{height:1201.365000px;}
.h0_c00366{height:1262.835000px;}
.h1_c00366{height:1263.000000px;}
.w3_c00366{width:16.680000px;}
.w2_c00366{width:863.955000px;}
.w0_c00366{width:892.935000px;}
.w1_c00366{width:893.250000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:14.490000px;}
.x2_c00366{left:113.040150px;}
.xc_c00366{left:122.213700px;}
.xa_c00366{left:141.047550px;}
.xd_c00366{left:147.188250px;}
.xb_c00366{left:209.032500px;}
.x4_c00366{left:250.345050px;}
.x8_c00366{left:256.474050px;}
.x5_c00366{left:280.314300px;}
.x6_c00366{left:318.280200px;}
.x9_c00366{left:330.453000px;}
.x7_c00366{left:348.249450px;}
.x3_c00366{left:417.720000px;}
.xe_c00366{left:768.254608px;}
@media print{
.v2_c00366{vertical-align:-21.760000pt;}
.v0_c00366{vertical-align:0.000000pt;}
.v1_c00366{vertical-align:26.880000pt;}
.ls9_c00366{letter-spacing:0.000000pt;}
.ls2_c00366{letter-spacing:0.039680pt;}
.ls7_c00366{letter-spacing:0.209920pt;}
.lsd_c00366{letter-spacing:0.236160pt;}
.ls5_c00366{letter-spacing:0.262400pt;}
.ls6_c00366{letter-spacing:0.472320pt;}
.ls8_c00366{letter-spacing:0.632913pt;}
.lsb_c00366{letter-spacing:4.702464pt;}
.lsa_c00366{letter-spacing:4.742400pt;}
.lsc_c00366{letter-spacing:4.827264pt;}
.ls3_c00366{letter-spacing:5.301867pt;}
.ls0_c00366{letter-spacing:5.311467pt;}
.ls1_c00366{letter-spacing:5.312000pt;}
.ls4_c00366{letter-spacing:5.315733pt;}
.ws1_c00366{word-spacing:-23.104000pt;}
.ws4_c00366{word-spacing:-18.705024pt;}
.ws0_c00366{word-spacing:-18.620160pt;}
.ws2_c00366{word-spacing:-18.580224pt;}
.ws6_c00366{word-spacing:-15.671364pt;}
.ws3_c00366{word-spacing:-10.319360pt;}
.ws5_c00366{word-spacing:-8.896000pt;}
.ws7_c00366{word-spacing:0.000000pt;}
._0_c00366{margin-left:-1.060480pt;}
._1_c00366{width:1.152000pt;}
._a_c00366{width:2.176000pt;}
._d_c00366{width:3.840000pt;}
._c_c00366{width:7.196800pt;}
._9_c00366{width:8.192000pt;}
._7_c00366{width:9.344000pt;}
._4_c00366{width:11.072000pt;}
._3_c00366{width:12.352000pt;}
._6_c00366{width:16.768000pt;}
._5_c00366{width:19.328000pt;}
._8_c00366{width:20.224000pt;}
._b_c00366{width:21.440000pt;}
._2_c00366{width:33.344000pt;}
.fs4_c00366{font-size:32.000000pt;}
.fs2_c00366{font-size:37.120000pt;}
.fs1_c00366{font-size:49.920000pt;}
.fs5_c00366{font-size:52.480000pt;}
.fs7_c00366{font-size:53.333333pt;}
.fs6_c00366{font-size:54.095146pt;}
.fs0_c00366{font-size:64.000000pt;}
.fs3_c00366{font-size:65.969690pt;}
.y0_c00366{bottom:0.000000pt;}
.y28_c00366{bottom:2.773333pt;}
.y27_c00366{bottom:30.884071pt;}
.y1_c00366{bottom:48.000000pt;}
.y26_c00366{bottom:54.760000pt;}
.y25_c00366{bottom:64.680000pt;}
.y24_c00366{bottom:70.120000pt;}
.y23_c00366{bottom:85.800000pt;}
.y22_c00366{bottom:95.720000pt;}
.y21_c00366{bottom:101.160000pt;}
.y20_c00366{bottom:116.840000pt;}
.y1f_c00366{bottom:140.520000pt;}
.y1e_c00366{bottom:256.360000pt;}
.y1d_c00366{bottom:274.920000pt;}
.y1c_c00366{bottom:306.920000pt;}
.y1b_c00366{bottom:338.920000pt;}
.y1a_c00366{bottom:370.920000pt;}
.y19_c00366{bottom:402.920000pt;}
.y18_c00366{bottom:434.920000pt;}
.y17_c00366{bottom:453.800000pt;}
.y16_c00366{bottom:485.800000pt;}
.y15_c00366{bottom:504.360000pt;}
.y14_c00366{bottom:536.360000pt;}
.y13_c00366{bottom:568.360000pt;}
.y12_c00366{bottom:600.360000pt;}
.y11_c00366{bottom:618.920000pt;}
.y10_c00366{bottom:650.920000pt;}
.yf_c00366{bottom:669.800000pt;}
.ye_c00366{bottom:688.360000pt;}
.yd_c00366{bottom:706.920000pt;}
.yc_c00366{bottom:738.920000pt;}
.yb_c00366{bottom:773.160000pt;}
.ya_c00366{bottom:807.080000pt;}
.y9_c00366{bottom:839.080000pt;}
.y8_c00366{bottom:857.640000pt;}
.y7_c00366{bottom:876.520000pt;}
.y6_c00366{bottom:895.080000pt;}
.y5_c00366{bottom:913.640000pt;}
.y4_c00366{bottom:932.520000pt;}
.y3_c00366{bottom:964.520000pt;}
.y2_c00366{bottom:1011.880000pt;}
.h9_c00366{height:17.116093pt;}
.h6_c00366{height:28.992000pt;}
.h7_c00366{height:41.761453pt;}
.h8_c00366{height:47.546880pt;}
.ha_c00366{height:50.346667pt;}
.h5_c00366{height:50.928601pt;}
.h3_c00366{height:57.984000pt;}
.h4_c00366{height:60.510720pt;}
.h2_c00366{height:1067.880000pt;}
.h0_c00366{height:1122.520000pt;}
.h1_c00366{height:1122.666667pt;}
.w3_c00366{width:14.826667pt;}
.w2_c00366{width:767.960000pt;}
.w0_c00366{width:793.720000pt;}
.w1_c00366{width:794.000000pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:12.880000pt;}
.x2_c00366{left:100.480133pt;}
.xc_c00366{left:108.634400pt;}
.xa_c00366{left:125.375600pt;}
.xd_c00366{left:130.834000pt;}
.xb_c00366{left:185.806667pt;}
.x4_c00366{left:222.528933pt;}
.x8_c00366{left:227.976933pt;}
.x5_c00366{left:249.168267pt;}
.x6_c00366{left:282.915733pt;}
.x9_c00366{left:293.736000pt;}
.x7_c00366{left:309.555067pt;}
.x3_c00366{left:371.306667pt;}
.xe_c00366{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00b8cb149f501a89d9c5a1f0.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.134000;font-style:normal;font-weight:normal;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_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_3139dea5ac44604391080340.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;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:ff5_c00367;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00367{font-family:ff5_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:ff6_c00367;src:url('chunks/assets/font_d61293a41f1609812a942719.woff2')format("woff");}.ff6_c00367{font-family:ff6_c00367;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00367{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00367{vertical-align:-24.480000px;}
.v0_c00367{vertical-align:0.000000px;}
.v2_c00367{vertical-align:24.480000px;}
.v1_c00367{vertical-align:30.240000px;}
.ls10_c00367{letter-spacing:0.000000px;}
.ls6_c00367{letter-spacing:0.236160px;}
.ls2_c00367{letter-spacing:0.243428px;}
.ls13_c00367{letter-spacing:0.265680px;}
.ls15_c00367{letter-spacing:0.273857px;}
.ls19_c00367{letter-spacing:0.283392px;}
.lsa_c00367{letter-spacing:0.295200px;}
.ls4_c00367{letter-spacing:0.327292px;}
.ls7_c00367{letter-spacing:0.327911px;}
.ls3_c00367{letter-spacing:0.328628px;}
.lse_c00367{letter-spacing:0.328900px;}
.ls1c_c00367{letter-spacing:0.371952px;}
.ls1_c00367{letter-spacing:0.412800px;}
.ls1d_c00367{letter-spacing:0.438171px;}
.ls1b_c00367{letter-spacing:0.478224px;}
.ls16_c00367{letter-spacing:0.492942px;}
.ls5_c00367{letter-spacing:0.494773px;}
.lsc_c00367{letter-spacing:0.501840px;}
.ls9_c00367{letter-spacing:0.531360px;}
.lsb_c00367{letter-spacing:0.560880px;}
.ls11_c00367{letter-spacing:0.584496px;}
.ls14_c00367{letter-spacing:0.602485px;}
.ls8_c00367{letter-spacing:0.712027px;}
.ls12_c00367{letter-spacing:0.718113px;}
.ls18_c00367{letter-spacing:0.743904px;}
.ls17_c00367{letter-spacing:0.962352px;}
.ls1a_c00367{letter-spacing:5.430672px;}
.lsd_c00367{letter-spacing:5.975400px;}
.lsf_c00367{letter-spacing:5.976000px;}
.ls0_c00367{letter-spacing:54.864000px;}
.sc__c00367{text-shadow:none;}
.sc1_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00367{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc1_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00367{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00367{word-spacing:-21.043152px;}
.ws3_c00367{word-spacing:-17.636370px;}
.ws1_c00367{word-spacing:-17.630284px;}
.ws2_c00367{word-spacing:-17.520742px;}
.ws0_c00367{word-spacing:-11.609280px;}
.ws4_c00367{word-spacing:-10.008000px;}
.ws6_c00367{word-spacing:0.000000px;}
._5_c00367{margin-left:-1.277998px;}
._1_c00367{width:1.440000px;}
._7_c00367{width:4.320000px;}
._3_c00367{width:5.832000px;}
._6_c00367{width:12.240000px;}
._4_c00367{width:13.248000px;}
._0_c00367{width:15.336000px;}
._2_c00367{width:16.416000px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs6_c00367{font-size:36.000000px;}
.fs1_c00367{font-size:41.760000px;}
.fs5_c00367{font-size:48.982495px;}
.fs7_c00367{font-size:56.160000px;}
.fs3_c00367{font-size:59.040000px;}
.fs8_c00367{font-size:60.000000px;}
.fs4_c00367{font-size:60.857039px;}
.fs0_c00367{font-size:72.000000px;}
.fs2_c00367{font-size:74.215901px;}
.y0_c00367{bottom:0.000000px;}
.y32_c00367{bottom:3.120000px;}
.y31_c00367{bottom:34.744580px;}
.y1_c00367{bottom:54.000000px;}
.y2f_c00367{bottom:55.481040px;}
.y30_c00367{bottom:55.485000px;}
.y2e_c00367{bottom:72.765000px;}
.y2d_c00367{bottom:72.766800px;}
.y2c_c00367{bottom:90.405000px;}
.y2b_c00367{bottom:96.525000px;}
.y2a_c00367{bottom:107.685000px;}
.y29_c00367{bottom:113.805000px;}
.y28_c00367{bottom:140.445000px;}
.y27_c00367{bottom:172.485000px;}
.y26_c00367{bottom:193.365000px;}
.y25_c00367{bottom:229.365000px;}
.y24_c00367{bottom:265.365000px;}
.y23_c00367{bottom:293.801040px;}
.y22_c00367{bottom:311.085000px;}
.y21_c00367{bottom:336.285000px;}
.y1f_c00367{bottom:353.923920px;}
.y20_c00367{bottom:353.925000px;}
.y1e_c00367{bottom:378.765000px;}
.y1d_c00367{bottom:403.605000px;}
.y1c_c00367{bottom:428.805000px;}
.y1b_c00367{bottom:454.005000px;}
.y1a_c00367{bottom:478.845000px;}
.y19_c00367{bottom:478.849680px;}
.y18_c00367{bottom:504.045000px;}
.y17_c00367{bottom:529.245000px;}
.y16_c00367{bottom:557.685000px;}
.y15_c00367{bottom:586.845000px;}
.y14_c00367{bottom:615.645000px;}
.y13_c00367{bottom:644.085000px;}
.y12_c00367{bottom:672.885000px;}
.y11_c00367{bottom:700.965000px;}
.y10_c00367{bottom:736.965000px;}
.yf_c00367{bottom:757.845000px;}
.ye_c00367{bottom:779.085000px;}
.yd_c00367{bottom:799.965000px;}
.yc_c00367{bottom:820.845000px;}
.yb_c00367{bottom:842.085000px;}
.ya_c00367{bottom:862.965000px;}
.y9_c00367{bottom:898.965000px;}
.y8_c00367{bottom:934.965000px;}
.y7_c00367{bottom:970.965000px;}
.y6_c00367{bottom:991.845000px;}
.y5_c00367{bottom:1013.085000px;}
.y4_c00367{bottom:1049.085000px;}
.y3_c00367{bottom:1085.085000px;}
.y2_c00367{bottom:1138.365000px;}
.hc_c00367{height:19.255605px;}
.hb_c00367{height:32.616000px;}
.h9_c00367{height:39.350391px;}
.h8_c00367{height:46.981634px;}
.h6_c00367{height:47.988281px;}
.h7_c00367{height:53.490240px;}
.hd_c00367{height:56.640000px;}
.ha_c00367{height:57.096000px;}
.h5_c00367{height:57.294676px;}
.h3_c00367{height:65.232000px;}
.h4_c00367{height:68.074560px;}
.h2_c00367{height:1201.365000px;}
.h0_c00367{height:1262.835000px;}
.h1_c00367{height:1263.000000px;}
.w3_c00367{width:16.680000px;}
.w2_c00367{width:863.955000px;}
.w0_c00367{width:892.935000px;}
.w1_c00367{width:893.250000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:14.490000px;}
.x2_c00367{left:113.040150px;}
.x4c_c00367{left:122.213700px;}
.x4b_c00367{left:133.034550px;}
.x3_c00367{left:140.037600px;}
.x27_c00367{left:147.223350px;}
.x4d_c00367{left:152.165100px;}
.x31_c00367{left:198.911550px;}
.x32_c00367{left:202.661550px;}
.x37_c00367{left:209.741100px;}
.x38_c00367{left:213.491100px;}
.x28_c00367{left:222.250800px;}
.x29_c00367{left:226.000800px;}
.x4_c00367{left:228.720750px;}
.x18_c00367{left:236.356200px;}
.x19_c00367{left:251.350050px;}
.x2a_c00367{left:254.739600px;}
.x2b_c00367{left:258.909300px;}
.x10_c00367{left:259.916400px;}
.xa_c00367{left:261.155550px;}
.x50_c00367{left:263.065050px;}
.x2c_c00367{left:267.248700px;}
.x11_c00367{left:270.914100px;}
.xb_c00367{left:279.513750px;}
.x26_c00367{left:283.136400px;}
.x3e_c00367{left:284.318100px;}
.x33_c00367{left:285.998250px;}
.x3f_c00367{left:288.068100px;}
.x34_c00367{left:289.748250px;}
.x39_c00367{left:293.468550px;}
.x2d_c00367{left:297.199950px;}
.x2e_c00367{left:305.539350px;}
.xc_c00367{left:312.883650px;}
.x4e_c00367{left:323.897850px;}
.x1a_c00367{left:325.440150px;}
.x35_c00367{left:330.576750px;}
.x40_c00367{left:336.411300px;}
.x36_c00367{left:342.666150px;}
.x41_c00367{left:344.750550px;}
.x3a_c00367{left:349.731450px;}
.x2f_c00367{left:358.847850px;}
.x3b_c00367{left:361.820850px;}
.x30_c00367{left:367.187250px;}
.x12_c00367{left:368.812800px;}
.x22_c00367{left:372.400950px;}
.x42_c00367{left:374.701950px;}
.x1d_c00367{left:376.414650px;}
.x44_c00367{left:378.159000px;}
.x1b_c00367{left:381.400650px;}
.x43_c00367{left:383.041200px;}
.x1c_c00367{left:385.900650px;}
.x13_c00367{left:388.746450px;}
.x3c_c00367{left:391.772100px;}
.x3d_c00367{left:400.111350px;}
.x5_c00367{left:403.531800px;}
.x4f_c00367{left:423.032250px;}
.x45_c00367{left:435.707100px;}
.x14_c00367{left:437.719050px;}
.x23_c00367{left:442.905750px;}
.x24_c00367{left:451.905750px;}
.x15_c00367{left:457.171950px;}
.x46_c00367{left:460.681650px;}
.x1f_c00367{left:462.885150px;}
.x6_c00367{left:465.213150px;}
.x20_c00367{left:467.385150px;}
.x4a_c00367{left:490.649400px;}
.x7_c00367{left:495.182400px;}
.x25_c00367{left:503.870400px;}
.x8_c00367{left:509.022150px;}
.x1e_c00367{left:517.891500px;}
.x9_c00367{left:522.000000px;}
.x21_c00367{left:524.353650px;}
.x47_c00367{left:648.728100px;}
.xd_c00367{left:686.812800px;}
.x48_c00367{left:695.381850px;}
.xe_c00367{left:703.016550px;}
.xf_c00367{left:717.020550px;}
.x49_c00367{left:728.745450px;}
.x16_c00367{left:741.390000px;}
.x17_c00367{left:750.390000px;}
.x51_c00367{left:768.254608px;}
@media print{
.v3_c00367{vertical-align:-21.760000pt;}
.v0_c00367{vertical-align:0.000000pt;}
.v2_c00367{vertical-align:21.760000pt;}
.v1_c00367{vertical-align:26.880000pt;}
.ls10_c00367{letter-spacing:0.000000pt;}
.ls6_c00367{letter-spacing:0.209920pt;}
.ls2_c00367{letter-spacing:0.216381pt;}
.ls13_c00367{letter-spacing:0.236160pt;}
.ls15_c00367{letter-spacing:0.243428pt;}
.ls19_c00367{letter-spacing:0.251904pt;}
.lsa_c00367{letter-spacing:0.262400pt;}
.ls4_c00367{letter-spacing:0.290926pt;}
.ls7_c00367{letter-spacing:0.291476pt;}
.ls3_c00367{letter-spacing:0.292114pt;}
.lse_c00367{letter-spacing:0.292356pt;}
.ls1c_c00367{letter-spacing:0.330624pt;}
.ls1_c00367{letter-spacing:0.366933pt;}
.ls1d_c00367{letter-spacing:0.389485pt;}
.ls1b_c00367{letter-spacing:0.425088pt;}
.ls16_c00367{letter-spacing:0.438171pt;}
.ls5_c00367{letter-spacing:0.439798pt;}
.lsc_c00367{letter-spacing:0.446080pt;}
.ls9_c00367{letter-spacing:0.472320pt;}
.lsb_c00367{letter-spacing:0.498560pt;}
.ls11_c00367{letter-spacing:0.519552pt;}
.ls14_c00367{letter-spacing:0.535542pt;}
.ls8_c00367{letter-spacing:0.632913pt;}
.ls12_c00367{letter-spacing:0.638323pt;}
.ls18_c00367{letter-spacing:0.661248pt;}
.ls17_c00367{letter-spacing:0.855424pt;}
.ls1a_c00367{letter-spacing:4.827264pt;}
.lsd_c00367{letter-spacing:5.311467pt;}
.lsf_c00367{letter-spacing:5.312000pt;}
.ls0_c00367{letter-spacing:48.768000pt;}
.ws5_c00367{word-spacing:-18.705024pt;}
.ws3_c00367{word-spacing:-15.676773pt;}
.ws1_c00367{word-spacing:-15.671364pt;}
.ws2_c00367{word-spacing:-15.573992pt;}
.ws0_c00367{word-spacing:-10.319360pt;}
.ws4_c00367{word-spacing:-8.896000pt;}
.ws6_c00367{word-spacing:0.000000pt;}
._5_c00367{margin-left:-1.135998pt;}
._1_c00367{width:1.280000pt;}
._7_c00367{width:3.840000pt;}
._3_c00367{width:5.184000pt;}
._6_c00367{width:10.880000pt;}
._4_c00367{width:11.776000pt;}
._0_c00367{width:13.632000pt;}
._2_c00367{width:14.592000pt;}
.fs6_c00367{font-size:32.000000pt;}
.fs1_c00367{font-size:37.120000pt;}
.fs5_c00367{font-size:43.539995pt;}
.fs7_c00367{font-size:49.920000pt;}
.fs3_c00367{font-size:52.480000pt;}
.fs8_c00367{font-size:53.333333pt;}
.fs4_c00367{font-size:54.095146pt;}
.fs0_c00367{font-size:64.000000pt;}
.fs2_c00367{font-size:65.969690pt;}
.y0_c00367{bottom:0.000000pt;}
.y32_c00367{bottom:2.773333pt;}
.y31_c00367{bottom:30.884071pt;}
.y1_c00367{bottom:48.000000pt;}
.y2f_c00367{bottom:49.316480pt;}
.y30_c00367{bottom:49.320000pt;}
.y2e_c00367{bottom:64.680000pt;}
.y2d_c00367{bottom:64.681600pt;}
.y2c_c00367{bottom:80.360000pt;}
.y2b_c00367{bottom:85.800000pt;}
.y2a_c00367{bottom:95.720000pt;}
.y29_c00367{bottom:101.160000pt;}
.y28_c00367{bottom:124.840000pt;}
.y27_c00367{bottom:153.320000pt;}
.y26_c00367{bottom:171.880000pt;}
.y25_c00367{bottom:203.880000pt;}
.y24_c00367{bottom:235.880000pt;}
.y23_c00367{bottom:261.156480pt;}
.y22_c00367{bottom:276.520000pt;}
.y21_c00367{bottom:298.920000pt;}
.y1f_c00367{bottom:314.599040pt;}
.y20_c00367{bottom:314.600000pt;}
.y1e_c00367{bottom:336.680000pt;}
.y1d_c00367{bottom:358.760000pt;}
.y1c_c00367{bottom:381.160000pt;}
.y1b_c00367{bottom:403.560000pt;}
.y1a_c00367{bottom:425.640000pt;}
.y19_c00367{bottom:425.644160pt;}
.y18_c00367{bottom:448.040000pt;}
.y17_c00367{bottom:470.440000pt;}
.y16_c00367{bottom:495.720000pt;}
.y15_c00367{bottom:521.640000pt;}
.y14_c00367{bottom:547.240000pt;}
.y13_c00367{bottom:572.520000pt;}
.y12_c00367{bottom:598.120000pt;}
.y11_c00367{bottom:623.080000pt;}
.y10_c00367{bottom:655.080000pt;}
.yf_c00367{bottom:673.640000pt;}
.ye_c00367{bottom:692.520000pt;}
.yd_c00367{bottom:711.080000pt;}
.yc_c00367{bottom:729.640000pt;}
.yb_c00367{bottom:748.520000pt;}
.ya_c00367{bottom:767.080000pt;}
.y9_c00367{bottom:799.080000pt;}
.y8_c00367{bottom:831.080000pt;}
.y7_c00367{bottom:863.080000pt;}
.y6_c00367{bottom:881.640000pt;}
.y5_c00367{bottom:900.520000pt;}
.y4_c00367{bottom:932.520000pt;}
.y3_c00367{bottom:964.520000pt;}
.y2_c00367{bottom:1011.880000pt;}
.hc_c00367{height:17.116093pt;}
.hb_c00367{height:28.992000pt;}
.h9_c00367{height:34.978125pt;}
.h8_c00367{height:41.761453pt;}
.h6_c00367{height:42.656250pt;}
.h7_c00367{height:47.546880pt;}
.hd_c00367{height:50.346667pt;}
.ha_c00367{height:50.752000pt;}
.h5_c00367{height:50.928601pt;}
.h3_c00367{height:57.984000pt;}
.h4_c00367{height:60.510720pt;}
.h2_c00367{height:1067.880000pt;}
.h0_c00367{height:1122.520000pt;}
.h1_c00367{height:1122.666667pt;}
.w3_c00367{width:14.826667pt;}
.w2_c00367{width:767.960000pt;}
.w0_c00367{width:793.720000pt;}
.w1_c00367{width:794.000000pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:12.880000pt;}
.x2_c00367{left:100.480133pt;}
.x4c_c00367{left:108.634400pt;}
.x4b_c00367{left:118.252933pt;}
.x3_c00367{left:124.477867pt;}
.x27_c00367{left:130.865200pt;}
.x4d_c00367{left:135.257867pt;}
.x31_c00367{left:176.810267pt;}
.x32_c00367{left:180.143600pt;}
.x37_c00367{left:186.436533pt;}
.x38_c00367{left:189.769867pt;}
.x28_c00367{left:197.556267pt;}
.x29_c00367{left:200.889600pt;}
.x4_c00367{left:203.307333pt;}
.x18_c00367{left:210.094400pt;}
.x19_c00367{left:223.422267pt;}
.x2a_c00367{left:226.435200pt;}
.x2b_c00367{left:230.141600pt;}
.x10_c00367{left:231.036800pt;}
.xa_c00367{left:232.138267pt;}
.x50_c00367{left:233.835600pt;}
.x2c_c00367{left:237.554400pt;}
.x11_c00367{left:240.812533pt;}
.xb_c00367{left:248.456667pt;}
.x26_c00367{left:251.676800pt;}
.x3e_c00367{left:252.727200pt;}
.x33_c00367{left:254.220667pt;}
.x3f_c00367{left:256.060533pt;}
.x34_c00367{left:257.554000pt;}
.x39_c00367{left:260.860933pt;}
.x2d_c00367{left:264.177733pt;}
.x2e_c00367{left:271.590533pt;}
.xc_c00367{left:278.118800pt;}
.x4e_c00367{left:287.909200pt;}
.x1a_c00367{left:289.280133pt;}
.x35_c00367{left:293.846000pt;}
.x40_c00367{left:299.032267pt;}
.x36_c00367{left:304.592133pt;}
.x41_c00367{left:306.444933pt;}
.x3a_c00367{left:310.872400pt;}
.x2f_c00367{left:318.975867pt;}
.x3b_c00367{left:321.618533pt;}
.x30_c00367{left:326.388667pt;}
.x12_c00367{left:327.833600pt;}
.x22_c00367{left:331.023067pt;}
.x42_c00367{left:333.068400pt;}
.x1d_c00367{left:334.590800pt;}
.x44_c00367{left:336.141333pt;}
.x1b_c00367{left:339.022800pt;}
.x43_c00367{left:340.481067pt;}
.x1c_c00367{left:343.022800pt;}
.x13_c00367{left:345.552400pt;}
.x3c_c00367{left:348.241867pt;}
.x3d_c00367{left:355.654533pt;}
.x5_c00367{left:358.694933pt;}
.x4f_c00367{left:376.028667pt;}
.x45_c00367{left:387.295200pt;}
.x14_c00367{left:389.083600pt;}
.x23_c00367{left:393.694000pt;}
.x24_c00367{left:401.694000pt;}
.x15_c00367{left:406.375067pt;}
.x46_c00367{left:409.494800pt;}
.x1f_c00367{left:411.453467pt;}
.x6_c00367{left:413.522800pt;}
.x20_c00367{left:415.453467pt;}
.x4a_c00367{left:436.132800pt;}
.x7_c00367{left:440.162133pt;}
.x25_c00367{left:447.884800pt;}
.x8_c00367{left:452.464133pt;}
.x1e_c00367{left:460.348000pt;}
.x9_c00367{left:464.000000pt;}
.x21_c00367{left:466.092133pt;}
.x47_c00367{left:576.647200pt;}
.xd_c00367{left:610.500267pt;}
.x48_c00367{left:618.117200pt;}
.xe_c00367{left:624.903600pt;}
.xf_c00367{left:637.351600pt;}
.x49_c00367{left:647.773733pt;}
.x16_c00367{left:659.013333pt;}
.x17_c00367{left:667.013333pt;}
.x51_c00367{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57a69391a966e3b3016d7b36.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.134000;font-style:normal;font-weight:normal;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_ba499cebd856d6736b5e8097.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;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:ff3_c00368;src:url('chunks/assets/font_0adb7f065a6d6ec3135b64e8.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00368{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00368{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00368{vertical-align:-24.480000px;}
.v0_c00368{vertical-align:0.000000px;}
.v1_c00368{vertical-align:30.240000px;}
.ls6_c00368{letter-spacing:0.000000px;}
.lsa_c00368{letter-spacing:0.202464px;}
.ls9_c00368{letter-spacing:0.239760px;}
.ls3_c00368{letter-spacing:0.327292px;}
.ls1_c00368{letter-spacing:0.327911px;}
.ls8_c00368{letter-spacing:0.399600px;}
.ls2_c00368{letter-spacing:0.494773px;}
.ls4_c00368{letter-spacing:0.532722px;}
.ls7_c00368{letter-spacing:5.335200px;}
.ls0_c00368{letter-spacing:5.975400px;}
.ls5_c00368{letter-spacing:5.976000px;}
.sc__c00368{text-shadow:none;}
.sc1_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00368{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc1_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00368{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00368{word-spacing:-20.947680px;}
.ws3_c00368{word-spacing:-15.800417px;}
.ws4_c00368{word-spacing:-15.051600px;}
.ws1_c00368{word-spacing:-11.609280px;}
.ws2_c00368{word-spacing:-10.008000px;}
.ws5_c00368{word-spacing:0.000000px;}
._8_c00368{margin-left:-1.118880px;}
._9_c00368{width:1.065600px;}
._3_c00368{width:3.672000px;}
._5_c00368{width:4.824000px;}
._0_c00368{width:5.904000px;}
._6_c00368{width:13.248000px;}
._7_c00368{width:18.576000px;}
._2_c00368{width:22.392000px;}
._1_c00368{width:30.456000px;}
._4_c00368{width:45.648000px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs4_c00368{font-size:36.000000px;}
.fs3_c00368{font-size:41.760000px;}
.fs7_c00368{font-size:48.982495px;}
.fs8_c00368{font-size:53.280000px;}
.fs9_c00368{font-size:54.919767px;}
.fs2_c00368{font-size:56.160000px;}
.fs5_c00368{font-size:59.040000px;}
.fsa_c00368{font-size:60.000000px;}
.fs6_c00368{font-size:60.857039px;}
.fs0_c00368{font-size:72.000000px;}
.fs1_c00368{font-size:74.215901px;}
.y0_c00368{bottom:0.000000px;}
.y2b_c00368{bottom:3.120000px;}
.y29_c00368{bottom:19.080000px;}
.y26_c00368{bottom:21.960000px;}
.y28_c00368{bottom:34.560000px;}
.y2a_c00368{bottom:34.744580px;}
.y1_c00368{bottom:54.000000px;}
.y24_c00368{bottom:55.485000px;}
.y23_c00368{bottom:61.605000px;}
.y22_c00368{bottom:88.245000px;}
.y21_c00368{bottom:124.965000px;}
.y20_c00368{bottom:160.965000px;}
.y1f_c00368{bottom:196.965000px;}
.y25_c00368{bottom:208.125000px;}
.y1e_c00368{bottom:232.965000px;}
.y1d_c00368{bottom:268.965000px;}
.y1c_c00368{bottom:304.965000px;}
.y1b_c00368{bottom:340.965000px;}
.y1a_c00368{bottom:376.965000px;}
.y19_c00368{bottom:412.965000px;}
.y18_c00368{bottom:448.965000px;}
.y17_c00368{bottom:484.965000px;}
.y27_c00368{bottom:493.245000px;}
.y16_c00368{bottom:520.965000px;}
.y15_c00368{bottom:556.965000px;}
.y14_c00368{bottom:592.965000px;}
.y13_c00368{bottom:628.965000px;}
.y12_c00368{bottom:664.965000px;}
.y11_c00368{bottom:700.965000px;}
.y10_c00368{bottom:736.965000px;}
.yf_c00368{bottom:757.845000px;}
.ye_c00368{bottom:779.085000px;}
.yd_c00368{bottom:815.085000px;}
.yc_c00368{bottom:851.085000px;}
.yb_c00368{bottom:887.085000px;}
.ya_c00368{bottom:907.965000px;}
.y9_c00368{bottom:928.845000px;}
.y8_c00368{bottom:950.085000px;}
.y7_c00368{bottom:986.085000px;}
.y6_c00368{bottom:1006.965000px;}
.y5_c00368{bottom:1027.845000px;}
.y4_c00368{bottom:1063.845000px;}
.y3_c00368{bottom:1085.085000px;}
.y2_c00368{bottom:1138.365000px;}
.hd_c00368{height:19.255605px;}
.h6_c00368{height:32.616000px;}
.h9_c00368{height:34.560000px;}
.hb_c00368{height:42.398060px;}
.h7_c00368{height:46.981634px;}
.hc_c00368{height:47.160000px;}
.ha_c00368{height:48.271680px;}
.h8_c00368{height:53.490240px;}
.he_c00368{height:56.640000px;}
.h4_c00368{height:57.294676px;}
.h3_c00368{height:65.232000px;}
.h5_c00368{height:68.074560px;}
.h2_c00368{height:1201.365000px;}
.h0_c00368{height:1262.835000px;}
.h1_c00368{height:1263.000000px;}
.w5_c00368{width:16.680000px;}
.w4_c00368{width:222.840000px;}
.w3_c00368{width:339.480000px;}
.w2_c00368{width:863.955000px;}
.w0_c00368{width:892.935000px;}
.w1_c00368{width:893.250000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:14.490000px;}
.x12_c00368{left:29.799300px;}
.x11_c00368{left:34.672350px;}
.xd_c00368{left:39.772950px;}
.x2_c00368{left:113.040150px;}
.xa_c00368{left:122.213700px;}
.xb_c00368{left:152.165100px;}
.x5_c00368{left:224.927850px;}
.x3_c00368{left:227.068350px;}
.x4_c00368{left:265.083600px;}
.xe_c00368{left:268.607100px;}
.xc_c00368{left:277.650000px;}
.xf_c00368{left:291.083850px;}
.x10_c00368{left:313.290000px;}
.x7_c00368{left:347.612250px;}
.x6_c00368{left:396.888450px;}
.x8_c00368{left:492.635400px;}
.x9_c00368{left:521.650950px;}
.x13_c00368{left:768.254608px;}
@media print{
.v2_c00368{vertical-align:-21.760000pt;}
.v0_c00368{vertical-align:0.000000pt;}
.v1_c00368{vertical-align:26.880000pt;}
.ls6_c00368{letter-spacing:0.000000pt;}
.lsa_c00368{letter-spacing:0.179968pt;}
.ls9_c00368{letter-spacing:0.213120pt;}
.ls3_c00368{letter-spacing:0.290926pt;}
.ls1_c00368{letter-spacing:0.291476pt;}
.ls8_c00368{letter-spacing:0.355200pt;}
.ls2_c00368{letter-spacing:0.439798pt;}
.ls4_c00368{letter-spacing:0.473530pt;}
.ls7_c00368{letter-spacing:4.742400pt;}
.ls0_c00368{letter-spacing:5.311467pt;}
.ls5_c00368{letter-spacing:5.312000pt;}
.ws0_c00368{word-spacing:-18.620160pt;}
.ws3_c00368{word-spacing:-14.044815pt;}
.ws4_c00368{word-spacing:-13.379200pt;}
.ws1_c00368{word-spacing:-10.319360pt;}
.ws2_c00368{word-spacing:-8.896000pt;}
.ws5_c00368{word-spacing:0.000000pt;}
._8_c00368{margin-left:-0.994560pt;}
._9_c00368{width:0.947200pt;}
._3_c00368{width:3.264000pt;}
._5_c00368{width:4.288000pt;}
._0_c00368{width:5.248000pt;}
._6_c00368{width:11.776000pt;}
._7_c00368{width:16.512000pt;}
._2_c00368{width:19.904000pt;}
._1_c00368{width:27.072000pt;}
._4_c00368{width:40.576000pt;}
.fs4_c00368{font-size:32.000000pt;}
.fs3_c00368{font-size:37.120000pt;}
.fs7_c00368{font-size:43.539995pt;}
.fs8_c00368{font-size:47.360000pt;}
.fs9_c00368{font-size:48.817571pt;}
.fs2_c00368{font-size:49.920000pt;}
.fs5_c00368{font-size:52.480000pt;}
.fsa_c00368{font-size:53.333333pt;}
.fs6_c00368{font-size:54.095146pt;}
.fs0_c00368{font-size:64.000000pt;}
.fs1_c00368{font-size:65.969690pt;}
.y0_c00368{bottom:0.000000pt;}
.y2b_c00368{bottom:2.773333pt;}
.y29_c00368{bottom:16.960000pt;}
.y26_c00368{bottom:19.520000pt;}
.y28_c00368{bottom:30.720000pt;}
.y2a_c00368{bottom:30.884071pt;}
.y1_c00368{bottom:48.000000pt;}
.y24_c00368{bottom:49.320000pt;}
.y23_c00368{bottom:54.760000pt;}
.y22_c00368{bottom:78.440000pt;}
.y21_c00368{bottom:111.080000pt;}
.y20_c00368{bottom:143.080000pt;}
.y1f_c00368{bottom:175.080000pt;}
.y25_c00368{bottom:185.000000pt;}
.y1e_c00368{bottom:207.080000pt;}
.y1d_c00368{bottom:239.080000pt;}
.y1c_c00368{bottom:271.080000pt;}
.y1b_c00368{bottom:303.080000pt;}
.y1a_c00368{bottom:335.080000pt;}
.y19_c00368{bottom:367.080000pt;}
.y18_c00368{bottom:399.080000pt;}
.y17_c00368{bottom:431.080000pt;}
.y27_c00368{bottom:438.440000pt;}
.y16_c00368{bottom:463.080000pt;}
.y15_c00368{bottom:495.080000pt;}
.y14_c00368{bottom:527.080000pt;}
.y13_c00368{bottom:559.080000pt;}
.y12_c00368{bottom:591.080000pt;}
.y11_c00368{bottom:623.080000pt;}
.y10_c00368{bottom:655.080000pt;}
.yf_c00368{bottom:673.640000pt;}
.ye_c00368{bottom:692.520000pt;}
.yd_c00368{bottom:724.520000pt;}
.yc_c00368{bottom:756.520000pt;}
.yb_c00368{bottom:788.520000pt;}
.ya_c00368{bottom:807.080000pt;}
.y9_c00368{bottom:825.640000pt;}
.y8_c00368{bottom:844.520000pt;}
.y7_c00368{bottom:876.520000pt;}
.y6_c00368{bottom:895.080000pt;}
.y5_c00368{bottom:913.640000pt;}
.y4_c00368{bottom:945.640000pt;}
.y3_c00368{bottom:964.520000pt;}
.y2_c00368{bottom:1011.880000pt;}
.hd_c00368{height:17.116093pt;}
.h6_c00368{height:28.992000pt;}
.h9_c00368{height:30.720000pt;}
.hb_c00368{height:37.687165pt;}
.h7_c00368{height:41.761453pt;}
.hc_c00368{height:41.920000pt;}
.ha_c00368{height:42.908160pt;}
.h8_c00368{height:47.546880pt;}
.he_c00368{height:50.346667pt;}
.h4_c00368{height:50.928601pt;}
.h3_c00368{height:57.984000pt;}
.h5_c00368{height:60.510720pt;}
.h2_c00368{height:1067.880000pt;}
.h0_c00368{height:1122.520000pt;}
.h1_c00368{height:1122.666667pt;}
.w5_c00368{width:14.826667pt;}
.w4_c00368{width:198.080000pt;}
.w3_c00368{width:301.760000pt;}
.w2_c00368{width:767.960000pt;}
.w0_c00368{width:793.720000pt;}
.w1_c00368{width:794.000000pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:12.880000pt;}
.x12_c00368{left:26.488267pt;}
.x11_c00368{left:30.819867pt;}
.xd_c00368{left:35.353733pt;}
.x2_c00368{left:100.480133pt;}
.xa_c00368{left:108.634400pt;}
.xb_c00368{left:135.257867pt;}
.x5_c00368{left:199.935867pt;}
.x3_c00368{left:201.838533pt;}
.x4_c00368{left:235.629867pt;}
.xe_c00368{left:238.761867pt;}
.xc_c00368{left:246.800000pt;}
.xf_c00368{left:258.741200pt;}
.x10_c00368{left:278.480000pt;}
.x7_c00368{left:308.988667pt;}
.x6_c00368{left:352.789733pt;}
.x8_c00368{left:437.898133pt;}
.x9_c00368{left:463.689733pt;}
.x13_c00368{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_229d1466c78d8f1fab0a75a0.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.134000;font-style:normal;font-weight:normal;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_bceaae32b9534d3fbcdb8bbb.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:5.976000px;}
.sc__c00369{text-shadow:none;}
.sc1_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00369{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc1_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00369{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00369{word-spacing:0.000000px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs1_c00369{font-size:60.000000px;}
.fs0_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y5_c00369{bottom:3.120000px;}
.y4_c00369{bottom:34.744580px;}
.y1_c00369{bottom:54.000000px;}
.y3_c00369{bottom:1085.085000px;}
.y2_c00369{bottom:1138.365000px;}
.h4_c00369{height:19.255605px;}
.h5_c00369{height:56.640000px;}
.h3_c00369{height:65.232000px;}
.h2_c00369{height:1201.365000px;}
.h0_c00369{height:1262.835000px;}
.h1_c00369{height:1263.000000px;}
.w3_c00369{width:16.680000px;}
.w2_c00369{width:863.955000px;}
.w0_c00369{width:892.935000px;}
.w1_c00369{width:893.250000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:14.490000px;}
.x2_c00369{left:113.040150px;}
.x3_c00369{left:768.254608px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls1_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:5.312000pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.fs1_c00369{font-size:53.333333pt;}
.fs0_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y5_c00369{bottom:2.773333pt;}
.y4_c00369{bottom:30.884071pt;}
.y1_c00369{bottom:48.000000pt;}
.y3_c00369{bottom:964.520000pt;}
.y2_c00369{bottom:1011.880000pt;}
.h4_c00369{height:17.116093pt;}
.h5_c00369{height:50.346667pt;}
.h3_c00369{height:57.984000pt;}
.h2_c00369{height:1067.880000pt;}
.h0_c00369{height:1122.520000pt;}
.h1_c00369{height:1122.666667pt;}
.w3_c00369{width:14.826667pt;}
.w2_c00369{width:767.960000pt;}
.w0_c00369{width:793.720000pt;}
.w1_c00369{width:794.000000pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:12.880000pt;}
.x2_c00369{left:100.480133pt;}
.x3_c00369{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_511ad34feca8b0d024ecc9c9.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.134000;font-style:normal;font-weight:normal;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_d007fe73ddffdcc2f2e0cb6e.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;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:ff3_c00370;src:url('chunks/assets/font_a87b34985de69a486841001a.woff2')format("woff");}.ff3_c00370{font-family:ff3_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:ff4_c00370;src:url('chunks/assets/font_fc00453e01a0e828d70a274d.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00370{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00370{vertical-align:-24.480000px;}
.v0_c00370{vertical-align:0.000000px;}
.v1_c00370{vertical-align:30.240000px;}
.ls13_c00370{letter-spacing:0.000000px;}
.lsd_c00370{letter-spacing:0.265680px;}
.ls6_c00370{letter-spacing:0.271440px;}
.lsf_c00370{letter-spacing:0.295200px;}
.lse_c00370{letter-spacing:0.324720px;}
.lsc_c00370{letter-spacing:0.405840px;}
.ls11_c00370{letter-spacing:0.425088px;}
.ls16_c00370{letter-spacing:0.492942px;}
.ls10_c00370{letter-spacing:0.531360px;}
.ls8_c00370{letter-spacing:0.800040px;}
.lsa_c00370{letter-spacing:0.818040px;}
.ls5_c00370{letter-spacing:5.163480px;}
.ls14_c00370{letter-spacing:5.290272px;}
.ls4_c00370{letter-spacing:5.335200px;}
.ls15_c00370{letter-spacing:5.430672px;}
.ls1_c00370{letter-spacing:5.499398px;}
.ls2_c00370{letter-spacing:5.742530px;}
.ls3_c00370{letter-spacing:5.973000px;}
.ls9_c00370{letter-spacing:5.976000px;}
.lsb_c00370{letter-spacing:5.987400px;}
.ls7_c00370{letter-spacing:6.048000px;}
.ls0_c00370{letter-spacing:6.159301px;}
.ls12_c00370{letter-spacing:6.159920px;}
.ls17_c00370{letter-spacing:29.348784px;}
.sc__c00370{text-shadow:none;}
.sc1_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00370{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc1_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00370{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00370{word-spacing:-25.992000px;}
.ws0_c00370{word-spacing:-21.835506px;}
.ws5_c00370{word-spacing:-21.043152px;}
.ws1_c00370{word-spacing:-20.947680px;}
.ws3_c00370{word-spacing:-20.902752px;}
.ws4_c00370{word-spacing:-20.016000px;}
.ws7_c00370{word-spacing:-16.838208px;}
.ws6_c00370{word-spacing:-10.008000px;}
.ws8_c00370{word-spacing:0.000000px;}
._10_c00370{margin-left:-30.051360px;}
._f_c00370{margin-left:-28.811520px;}
._e_c00370{margin-left:-1.087800px;}
._7_c00370{width:1.872000px;}
._b_c00370{width:3.148200px;}
._1_c00370{width:4.392000px;}
._4_c00370{width:5.400000px;}
._2_c00370{width:7.128000px;}
._3_c00370{width:10.008000px;}
._8_c00370{width:11.088000px;}
._9_c00370{width:12.384000px;}
._c_c00370{width:13.968000px;}
._0_c00370{width:15.408000px;}
._d_c00370{width:18.864000px;}
._6_c00370{width:21.189689px;}
._5_c00370{width:22.264770px;}
._a_c00370{width:28.053611px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs5_c00370{font-size:36.000000px;}
.fs4_c00370{font-size:41.760000px;}
.fs3_c00370{font-size:56.160000px;}
.fs2_c00370{font-size:57.888403px;}
.fs6_c00370{font-size:59.040000px;}
.fs8_c00370{font-size:60.000000px;}
.fs7_c00370{font-size:60.857039px;}
.fs0_c00370{font-size:72.000000px;}
.fs1_c00370{font-size:74.215901px;}
.y0_c00370{bottom:0.000000px;}
.y2d_c00370{bottom:3.120000px;}
.y2c_c00370{bottom:34.744580px;}
.y1_c00370{bottom:54.000000px;}
.y2b_c00370{bottom:61.605000px;}
.y2a_c00370{bottom:72.766800px;}
.y29_c00370{bottom:96.525000px;}
.y28_c00370{bottom:107.685000px;}
.y27_c00370{bottom:113.805000px;}
.y26_c00370{bottom:140.445000px;}
.y25_c00370{bottom:171.405000px;}
.y24_c00370{bottom:207.405000px;}
.y23_c00370{bottom:243.405000px;}
.y22_c00370{bottom:264.285000px;}
.y21_c00370{bottom:285.165000px;}
.y20_c00370{bottom:321.165000px;}
.y1f_c00370{bottom:357.165000px;}
.y1e_c00370{bottom:393.165000px;}
.y1d_c00370{bottom:429.525000px;}
.y1c_c00370{bottom:465.525000px;}
.y1b_c00370{bottom:486.405000px;}
.y1a_c00370{bottom:522.405000px;}
.y19_c00370{bottom:560.565000px;}
.y18_c00370{bottom:598.725000px;}
.y17_c00370{bottom:634.725000px;}
.y16_c00370{bottom:655.965000px;}
.y15_c00370{bottom:676.845000px;}
.y14_c00370{bottom:697.725000px;}
.y13_c00370{bottom:718.965000px;}
.y12_c00370{bottom:739.845000px;}
.y11_c00370{bottom:761.085000px;}
.y10_c00370{bottom:781.965000px;}
.yf_c00370{bottom:802.845000px;}
.ye_c00370{bottom:824.085000px;}
.yd_c00370{bottom:844.965000px;}
.yc_c00370{bottom:880.965000px;}
.yb_c00370{bottom:901.845000px;}
.ya_c00370{bottom:923.085000px;}
.y9_c00370{bottom:943.965000px;}
.y8_c00370{bottom:964.845000px;}
.y7_c00370{bottom:986.085000px;}
.y6_c00370{bottom:1006.965000px;}
.y5_c00370{bottom:1027.845000px;}
.y4_c00370{bottom:1049.085000px;}
.y3_c00370{bottom:1085.085000px;}
.y2_c00370{bottom:1138.365000px;}
.h9_c00370{height:19.255605px;}
.h6_c00370{height:32.616000px;}
.h7_c00370{height:46.981634px;}
.h8_c00370{height:53.490240px;}
.ha_c00370{height:56.640000px;}
.h4_c00370{height:57.294676px;}
.h3_c00370{height:65.232000px;}
.h5_c00370{height:68.074560px;}
.h2_c00370{height:1201.365000px;}
.h0_c00370{height:1262.835000px;}
.h1_c00370{height:1263.000000px;}
.w3_c00370{width:16.680000px;}
.w2_c00370{width:863.955000px;}
.w0_c00370{width:892.935000px;}
.w1_c00370{width:893.250000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:14.490000px;}
.x2_c00370{left:113.040150px;}
.x11_c00370{left:122.213700px;}
.x12_c00370{left:139.703550px;}
.x8_c00370{left:146.441100px;}
.x3_c00370{left:154.025400px;}
.x5_c00370{left:175.794000px;}
.x4_c00370{left:216.466950px;}
.x6_c00370{left:278.735250px;}
.xc_c00370{left:323.162400px;}
.x10_c00370{left:327.055950px;}
.xd_c00370{left:359.686200px;}
.x9_c00370{left:366.186450px;}
.xf_c00370{left:417.720000px;}
.xe_c00370{left:419.242950px;}
.x7_c00370{left:446.445900px;}
.xa_c00370{left:692.177400px;}
.xb_c00370{left:712.157250px;}
.x13_c00370{left:768.254608px;}
@media print{
.v2_c00370{vertical-align:-21.760000pt;}
.v0_c00370{vertical-align:0.000000pt;}
.v1_c00370{vertical-align:26.880000pt;}
.ls13_c00370{letter-spacing:0.000000pt;}
.lsd_c00370{letter-spacing:0.236160pt;}
.ls6_c00370{letter-spacing:0.241280pt;}
.lsf_c00370{letter-spacing:0.262400pt;}
.lse_c00370{letter-spacing:0.288640pt;}
.lsc_c00370{letter-spacing:0.360747pt;}
.ls11_c00370{letter-spacing:0.377856pt;}
.ls16_c00370{letter-spacing:0.438171pt;}
.ls10_c00370{letter-spacing:0.472320pt;}
.ls8_c00370{letter-spacing:0.711147pt;}
.lsa_c00370{letter-spacing:0.727147pt;}
.ls5_c00370{letter-spacing:4.589760pt;}
.ls14_c00370{letter-spacing:4.702464pt;}
.ls4_c00370{letter-spacing:4.742400pt;}
.ls15_c00370{letter-spacing:4.827264pt;}
.ls1_c00370{letter-spacing:4.888354pt;}
.ls2_c00370{letter-spacing:5.104471pt;}
.ls3_c00370{letter-spacing:5.309333pt;}
.ls9_c00370{letter-spacing:5.312000pt;}
.lsb_c00370{letter-spacing:5.322133pt;}
.ls7_c00370{letter-spacing:5.376000pt;}
.ls0_c00370{letter-spacing:5.474935pt;}
.ls12_c00370{letter-spacing:5.475484pt;}
.ls17_c00370{letter-spacing:26.087808pt;}
.ws2_c00370{word-spacing:-23.104000pt;}
.ws0_c00370{word-spacing:-19.409338pt;}
.ws5_c00370{word-spacing:-18.705024pt;}
.ws1_c00370{word-spacing:-18.620160pt;}
.ws3_c00370{word-spacing:-18.580224pt;}
.ws4_c00370{word-spacing:-17.792000pt;}
.ws7_c00370{word-spacing:-14.967296pt;}
.ws6_c00370{word-spacing:-8.896000pt;}
.ws8_c00370{word-spacing:0.000000pt;}
._10_c00370{margin-left:-26.712320pt;}
._f_c00370{margin-left:-25.610240pt;}
._e_c00370{margin-left:-0.966933pt;}
._7_c00370{width:1.664000pt;}
._b_c00370{width:2.798400pt;}
._1_c00370{width:3.904000pt;}
._4_c00370{width:4.800000pt;}
._2_c00370{width:6.336000pt;}
._3_c00370{width:8.896000pt;}
._8_c00370{width:9.856000pt;}
._9_c00370{width:11.008000pt;}
._c_c00370{width:12.416000pt;}
._0_c00370{width:13.696000pt;}
._d_c00370{width:16.768000pt;}
._6_c00370{width:18.835279pt;}
._5_c00370{width:19.790907pt;}
._a_c00370{width:24.936543pt;}
.fs5_c00370{font-size:32.000000pt;}
.fs4_c00370{font-size:37.120000pt;}
.fs3_c00370{font-size:49.920000pt;}
.fs2_c00370{font-size:51.456358pt;}
.fs6_c00370{font-size:52.480000pt;}
.fs8_c00370{font-size:53.333333pt;}
.fs7_c00370{font-size:54.095146pt;}
.fs0_c00370{font-size:64.000000pt;}
.fs1_c00370{font-size:65.969690pt;}
.y0_c00370{bottom:0.000000pt;}
.y2d_c00370{bottom:2.773333pt;}
.y2c_c00370{bottom:30.884071pt;}
.y1_c00370{bottom:48.000000pt;}
.y2b_c00370{bottom:54.760000pt;}
.y2a_c00370{bottom:64.681600pt;}
.y29_c00370{bottom:85.800000pt;}
.y28_c00370{bottom:95.720000pt;}
.y27_c00370{bottom:101.160000pt;}
.y26_c00370{bottom:124.840000pt;}
.y25_c00370{bottom:152.360000pt;}
.y24_c00370{bottom:184.360000pt;}
.y23_c00370{bottom:216.360000pt;}
.y22_c00370{bottom:234.920000pt;}
.y21_c00370{bottom:253.480000pt;}
.y20_c00370{bottom:285.480000pt;}
.y1f_c00370{bottom:317.480000pt;}
.y1e_c00370{bottom:349.480000pt;}
.y1d_c00370{bottom:381.800000pt;}
.y1c_c00370{bottom:413.800000pt;}
.y1b_c00370{bottom:432.360000pt;}
.y1a_c00370{bottom:464.360000pt;}
.y19_c00370{bottom:498.280000pt;}
.y18_c00370{bottom:532.200000pt;}
.y17_c00370{bottom:564.200000pt;}
.y16_c00370{bottom:583.080000pt;}
.y15_c00370{bottom:601.640000pt;}
.y14_c00370{bottom:620.200000pt;}
.y13_c00370{bottom:639.080000pt;}
.y12_c00370{bottom:657.640000pt;}
.y11_c00370{bottom:676.520000pt;}
.y10_c00370{bottom:695.080000pt;}
.yf_c00370{bottom:713.640000pt;}
.ye_c00370{bottom:732.520000pt;}
.yd_c00370{bottom:751.080000pt;}
.yc_c00370{bottom:783.080000pt;}
.yb_c00370{bottom:801.640000pt;}
.ya_c00370{bottom:820.520000pt;}
.y9_c00370{bottom:839.080000pt;}
.y8_c00370{bottom:857.640000pt;}
.y7_c00370{bottom:876.520000pt;}
.y6_c00370{bottom:895.080000pt;}
.y5_c00370{bottom:913.640000pt;}
.y4_c00370{bottom:932.520000pt;}
.y3_c00370{bottom:964.520000pt;}
.y2_c00370{bottom:1011.880000pt;}
.h9_c00370{height:17.116093pt;}
.h6_c00370{height:28.992000pt;}
.h7_c00370{height:41.761453pt;}
.h8_c00370{height:47.546880pt;}
.ha_c00370{height:50.346667pt;}
.h4_c00370{height:50.928601pt;}
.h3_c00370{height:57.984000pt;}
.h5_c00370{height:60.510720pt;}
.h2_c00370{height:1067.880000pt;}
.h0_c00370{height:1122.520000pt;}
.h1_c00370{height:1122.666667pt;}
.w3_c00370{width:14.826667pt;}
.w2_c00370{width:767.960000pt;}
.w0_c00370{width:793.720000pt;}
.w1_c00370{width:794.000000pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:12.880000pt;}
.x2_c00370{left:100.480133pt;}
.x11_c00370{left:108.634400pt;}
.x12_c00370{left:124.180933pt;}
.x8_c00370{left:130.169867pt;}
.x3_c00370{left:136.911467pt;}
.x5_c00370{left:156.261333pt;}
.x4_c00370{left:192.415067pt;}
.x6_c00370{left:247.764667pt;}
.xc_c00370{left:287.255467pt;}
.x10_c00370{left:290.716400pt;}
.xd_c00370{left:319.721067pt;}
.x9_c00370{left:325.499067pt;}
.xf_c00370{left:371.306667pt;}
.xe_c00370{left:372.660400pt;}
.x7_c00370{left:396.840800pt;}
.xa_c00370{left:615.268800pt;}
.xb_c00370{left:633.028667pt;}
.x13_c00370{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18fb2cc0f46e6de491a01319.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.134000;font-style:normal;font-weight:normal;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_f34f8338df850f3d7876fa55.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;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:ff3_c00371;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00371;src:url('chunks/assets/font_5946eca49aee71a562fcf007.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:0.876465;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00371;src:url('chunks/assets/font_c89113ef6e6f8566a712f04b.woff2')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00371{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00371{vertical-align:-24.480000px;}
.v0_c00371{vertical-align:0.000000px;}
.v1_c00371{vertical-align:30.240000px;}
.ls8_c00371{letter-spacing:0.000000px;}
.ls10_c00371{letter-spacing:0.242064px;}
.lsb_c00371{letter-spacing:0.265680px;}
.lsf_c00371{letter-spacing:0.273857px;}
.ls2_c00371{letter-spacing:0.304285px;}
.ls3_c00371{letter-spacing:0.327292px;}
.ls5_c00371{letter-spacing:0.327911px;}
.ls11_c00371{letter-spacing:0.328628px;}
.ls15_c00371{letter-spacing:0.371952px;}
.ls16_c00371{letter-spacing:0.425088px;}
.ls4_c00371{letter-spacing:0.494773px;}
.lsd_c00371{letter-spacing:0.547713px;}
.lsa_c00371{letter-spacing:0.584496px;}
.ls12_c00371{letter-spacing:0.602485px;}
.ls14_c00371{letter-spacing:0.690768px;}
.lse_c00371{letter-spacing:0.696672px;}
.lsc_c00371{letter-spacing:0.821570px;}
.ls9_c00371{letter-spacing:5.430672px;}
.ls13_c00371{letter-spacing:5.927616px;}
.ls6_c00371{letter-spacing:5.976000px;}
.ls0_c00371{letter-spacing:5.980800px;}
.ls7_c00371{letter-spacing:6.159920px;}
.ls1_c00371{letter-spacing:54.864000px;}
.sc__c00371{text-shadow:none;}
.sc1_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00371{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc1_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00371{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00371{word-spacing:-21.043152px;}
.ws3_c00371{word-spacing:-17.739827px;}
.ws5_c00371{word-spacing:-17.520742px;}
.ws2_c00371{word-spacing:-17.465970px;}
.ws4_c00371{word-spacing:-17.222542px;}
.ws7_c00371{word-spacing:-17.103888px;}
.ws1_c00371{word-spacing:-11.609280px;}
.ws6_c00371{word-spacing:-10.008000px;}
.ws8_c00371{word-spacing:0.000000px;}
._d_c00371{margin-left:-6.258240px;}
._c_c00371{margin-left:-5.254560px;}
._0_c00371{margin-left:-1.179360px;}
._7_c00371{width:1.080000px;}
._1_c00371{width:2.376000px;}
._2_c00371{width:4.032000px;}
._e_c00371{width:5.467104px;}
._3_c00371{width:8.712000px;}
._5_c00371{width:10.224000px;}
._6_c00371{width:17.424000px;}
._8_c00371{width:26.784000px;}
._4_c00371{width:29.160000px;}
._b_c00371{width:111.843363px;}
._9_c00371{width:153.775347px;}
._a_c00371{width:198.304888px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs7_c00371{font-size:36.000000px;}
.fs3_c00371{font-size:41.760000px;}
.fs6_c00371{font-size:48.982495px;}
.fs2_c00371{font-size:56.160000px;}
.fs4_c00371{font-size:59.040000px;}
.fs8_c00371{font-size:60.000000px;}
.fs5_c00371{font-size:60.857039px;}
.fs0_c00371{font-size:72.000000px;}
.fs1_c00371{font-size:74.215901px;}
.y0_c00371{bottom:0.000000px;}
.y2c_c00371{bottom:3.120000px;}
.y2b_c00371{bottom:34.744580px;}
.y1_c00371{bottom:54.000000px;}
.y2a_c00371{bottom:55.485000px;}
.y29_c00371{bottom:61.605000px;}
.y28_c00371{bottom:72.766800px;}
.y27_c00371{bottom:96.525000px;}
.y26_c00371{bottom:123.165000px;}
.y25_c00371{bottom:146.925000px;}
.y24_c00371{bottom:164.565000px;}
.y23_c00371{bottom:182.205000px;}
.y22_c00371{bottom:214.965000px;}
.y21_c00371{bottom:244.125000px;}
.y20_c00371{bottom:272.925000px;}
.y1f_c00371{bottom:301.365000px;}
.y1e_c00371{bottom:330.165000px;}
.y1d_c00371{bottom:358.605000px;}
.y1c_c00371{bottom:387.405000px;}
.y1b_c00371{bottom:416.205000px;}
.y1a_c00371{bottom:444.645000px;}
.y19_c00371{bottom:472.725000px;}
.y18_c00371{bottom:508.725000px;}
.y17_c00371{bottom:544.725000px;}
.y16_c00371{bottom:580.725000px;}
.y15_c00371{bottom:616.725000px;}
.y14_c00371{bottom:652.725000px;}
.y13_c00371{bottom:673.965000px;}
.y12_c00371{bottom:694.845000px;}
.y11_c00371{bottom:730.845000px;}
.y10_c00371{bottom:766.845000px;}
.yf_c00371{bottom:788.085000px;}
.ye_c00371{bottom:808.965000px;}
.yd_c00371{bottom:829.845000px;}
.yc_c00371{bottom:851.085000px;}
.yb_c00371{bottom:871.965000px;}
.ya_c00371{bottom:907.965000px;}
.y9_c00371{bottom:928.845000px;}
.y8_c00371{bottom:950.085000px;}
.y7_c00371{bottom:970.965000px;}
.y6_c00371{bottom:991.845000px;}
.y5_c00371{bottom:1013.085000px;}
.y4_c00371{bottom:1049.085000px;}
.y3_c00371{bottom:1085.085000px;}
.y2_c00371{bottom:1138.365000px;}
.hb_c00371{height:19.255605px;}
.ha_c00371{height:32.616000px;}
.h9_c00371{height:39.984609px;}
.h8_c00371{height:46.981634px;}
.h6_c00371{height:48.761719px;}
.h7_c00371{height:53.490240px;}
.hc_c00371{height:56.640000px;}
.h4_c00371{height:57.294676px;}
.h3_c00371{height:65.232000px;}
.h5_c00371{height:68.074560px;}
.h2_c00371{height:1201.365000px;}
.h0_c00371{height:1262.835000px;}
.h1_c00371{height:1263.000000px;}
.w3_c00371{width:16.680000px;}
.w2_c00371{width:863.955000px;}
.w0_c00371{width:892.935000px;}
.w1_c00371{width:893.250000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:14.490000px;}
.x2_c00371{left:113.040150px;}
.x48_c00371{left:122.213700px;}
.x11_c00371{left:140.037600px;}
.x3b_c00371{left:149.551050px;}
.x49_c00371{left:152.165100px;}
.x3_c00371{left:154.025400px;}
.xc_c00371{left:163.061250px;}
.x42_c00371{left:164.271900px;}
.x43_c00371{left:172.155450px;}
.x9_c00371{left:190.649700px;}
.xd_c00371{left:192.040950px;}
.x5_c00371{left:199.249800px;}
.x4_c00371{left:216.466950px;}
.x44_c00371{left:233.361300px;}
.x45_c00371{left:237.111300px;}
.xa_c00371{left:270.970800px;}
.x6_c00371{left:278.250750px;}
.x13_c00371{left:283.140000px;}
.x7_c00371{left:288.258600px;}
.x8_c00371{left:294.252300px;}
.x3c_c00371{left:315.531000px;}
.x1d_c00371{left:325.439550px;}
.x46_c00371{left:336.935250px;}
.x47_c00371{left:345.657750px;}
.x2d_c00371{left:357.461100px;}
.x2e_c00371{left:361.961100px;}
.x14_c00371{left:371.410050px;}
.x1a_c00371{left:373.408050px;}
.x15_c00371{left:375.910050px;}
.x1b_c00371{left:377.908050px;}
.x1e_c00371{left:381.400200px;}
.x25_c00371{left:383.397900px;}
.x3d_c00371{left:386.301300px;}
.x26_c00371{left:387.897900px;}
.x1f_c00371{left:390.400200px;}
.x37_c00371{left:399.417900px;}
.x38_c00371{left:403.917900px;}
.x1c_c00371{left:417.472050px;}
.x33_c00371{left:420.423750px;}
.x34_c00371{left:424.923750px;}
.x12_c00371{left:431.710800px;}
.x2f_c00371{left:440.943150px;}
.x16_c00371{left:446.937000px;}
.x30_c00371{left:449.943150px;}
.x17_c00371{left:451.437000px;}
.x35_c00371{left:461.949000px;}
.x36_c00371{left:466.449000px;}
.x20_c00371{left:475.412850px;}
.x21_c00371{left:479.912850px;}
.x27_c00371{left:480.920250px;}
.x28_c00371{left:485.420250px;}
.x31_c00371{left:513.931950px;}
.x32_c00371{left:518.431950px;}
.x18_c00371{left:529.411050px;}
.x19_c00371{left:533.911050px;}
.x22_c00371{left:545.881350px;}
.x23_c00371{left:550.381350px;}
.x29_c00371{left:560.370150px;}
.x3e_c00371{left:562.802850px;}
.x2a_c00371{left:572.296800px;}
.x39_c00371{left:579.971550px;}
.x3a_c00371{left:584.471550px;}
.xe_c00371{left:601.163850px;}
.x24_c00371{left:610.392000px;}
.x2b_c00371{left:638.301300px;}
.x3f_c00371{left:639.450450px;}
.x2c_c00371{left:650.228100px;}
.xf_c00371{left:664.162800px;}
.xb_c00371{left:732.390450px;}
.x40_c00371{left:737.137200px;}
.x41_c00371{left:746.640000px;}
.x10_c00371{left:750.390000px;}
.x4a_c00371{left:768.254608px;}
@media print{
.v2_c00371{vertical-align:-21.760000pt;}
.v0_c00371{vertical-align:0.000000pt;}
.v1_c00371{vertical-align:26.880000pt;}
.ls8_c00371{letter-spacing:0.000000pt;}
.ls10_c00371{letter-spacing:0.215168pt;}
.lsb_c00371{letter-spacing:0.236160pt;}
.lsf_c00371{letter-spacing:0.243428pt;}
.ls2_c00371{letter-spacing:0.270476pt;}
.ls3_c00371{letter-spacing:0.290926pt;}
.ls5_c00371{letter-spacing:0.291476pt;}
.ls11_c00371{letter-spacing:0.292114pt;}
.ls15_c00371{letter-spacing:0.330624pt;}
.ls16_c00371{letter-spacing:0.377856pt;}
.ls4_c00371{letter-spacing:0.439798pt;}
.lsd_c00371{letter-spacing:0.486856pt;}
.lsa_c00371{letter-spacing:0.519552pt;}
.ls12_c00371{letter-spacing:0.535542pt;}
.ls14_c00371{letter-spacing:0.614016pt;}
.lse_c00371{letter-spacing:0.619264pt;}
.lsc_c00371{letter-spacing:0.730284pt;}
.ls9_c00371{letter-spacing:4.827264pt;}
.ls13_c00371{letter-spacing:5.268992pt;}
.ls6_c00371{letter-spacing:5.312000pt;}
.ls0_c00371{letter-spacing:5.316267pt;}
.ls7_c00371{letter-spacing:5.475484pt;}
.ls1_c00371{letter-spacing:48.768000pt;}
.ws0_c00371{word-spacing:-18.705024pt;}
.ws3_c00371{word-spacing:-15.768735pt;}
.ws5_c00371{word-spacing:-15.573992pt;}
.ws2_c00371{word-spacing:-15.525307pt;}
.ws4_c00371{word-spacing:-15.308926pt;}
.ws7_c00371{word-spacing:-15.203456pt;}
.ws1_c00371{word-spacing:-10.319360pt;}
.ws6_c00371{word-spacing:-8.896000pt;}
.ws8_c00371{word-spacing:0.000000pt;}
._d_c00371{margin-left:-5.562880pt;}
._c_c00371{margin-left:-4.670720pt;}
._0_c00371{margin-left:-1.048320pt;}
._7_c00371{width:0.960000pt;}
._1_c00371{width:2.112000pt;}
._2_c00371{width:3.584000pt;}
._e_c00371{width:4.859648pt;}
._3_c00371{width:7.744000pt;}
._5_c00371{width:9.088000pt;}
._6_c00371{width:15.488000pt;}
._8_c00371{width:23.808000pt;}
._4_c00371{width:25.920000pt;}
._b_c00371{width:99.416323pt;}
._9_c00371{width:136.689198pt;}
._a_c00371{width:176.271012pt;}
.fs7_c00371{font-size:32.000000pt;}
.fs3_c00371{font-size:37.120000pt;}
.fs6_c00371{font-size:43.539995pt;}
.fs2_c00371{font-size:49.920000pt;}
.fs4_c00371{font-size:52.480000pt;}
.fs8_c00371{font-size:53.333333pt;}
.fs5_c00371{font-size:54.095146pt;}
.fs0_c00371{font-size:64.000000pt;}
.fs1_c00371{font-size:65.969690pt;}
.y0_c00371{bottom:0.000000pt;}
.y2c_c00371{bottom:2.773333pt;}
.y2b_c00371{bottom:30.884071pt;}
.y1_c00371{bottom:48.000000pt;}
.y2a_c00371{bottom:49.320000pt;}
.y29_c00371{bottom:54.760000pt;}
.y28_c00371{bottom:64.681600pt;}
.y27_c00371{bottom:85.800000pt;}
.y26_c00371{bottom:109.480000pt;}
.y25_c00371{bottom:130.600000pt;}
.y24_c00371{bottom:146.280000pt;}
.y23_c00371{bottom:161.960000pt;}
.y22_c00371{bottom:191.080000pt;}
.y21_c00371{bottom:217.000000pt;}
.y20_c00371{bottom:242.600000pt;}
.y1f_c00371{bottom:267.880000pt;}
.y1e_c00371{bottom:293.480000pt;}
.y1d_c00371{bottom:318.760000pt;}
.y1c_c00371{bottom:344.360000pt;}
.y1b_c00371{bottom:369.960000pt;}
.y1a_c00371{bottom:395.240000pt;}
.y19_c00371{bottom:420.200000pt;}
.y18_c00371{bottom:452.200000pt;}
.y17_c00371{bottom:484.200000pt;}
.y16_c00371{bottom:516.200000pt;}
.y15_c00371{bottom:548.200000pt;}
.y14_c00371{bottom:580.200000pt;}
.y13_c00371{bottom:599.080000pt;}
.y12_c00371{bottom:617.640000pt;}
.y11_c00371{bottom:649.640000pt;}
.y10_c00371{bottom:681.640000pt;}
.yf_c00371{bottom:700.520000pt;}
.ye_c00371{bottom:719.080000pt;}
.yd_c00371{bottom:737.640000pt;}
.yc_c00371{bottom:756.520000pt;}
.yb_c00371{bottom:775.080000pt;}
.ya_c00371{bottom:807.080000pt;}
.y9_c00371{bottom:825.640000pt;}
.y8_c00371{bottom:844.520000pt;}
.y7_c00371{bottom:863.080000pt;}
.y6_c00371{bottom:881.640000pt;}
.y5_c00371{bottom:900.520000pt;}
.y4_c00371{bottom:932.520000pt;}
.y3_c00371{bottom:964.520000pt;}
.y2_c00371{bottom:1011.880000pt;}
.hb_c00371{height:17.116093pt;}
.ha_c00371{height:28.992000pt;}
.h9_c00371{height:35.541875pt;}
.h8_c00371{height:41.761453pt;}
.h6_c00371{height:43.343750pt;}
.h7_c00371{height:47.546880pt;}
.hc_c00371{height:50.346667pt;}
.h4_c00371{height:50.928601pt;}
.h3_c00371{height:57.984000pt;}
.h5_c00371{height:60.510720pt;}
.h2_c00371{height:1067.880000pt;}
.h0_c00371{height:1122.520000pt;}
.h1_c00371{height:1122.666667pt;}
.w3_c00371{width:14.826667pt;}
.w2_c00371{width:767.960000pt;}
.w0_c00371{width:793.720000pt;}
.w1_c00371{width:794.000000pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:12.880000pt;}
.x2_c00371{left:100.480133pt;}
.x48_c00371{left:108.634400pt;}
.x11_c00371{left:124.477867pt;}
.x3b_c00371{left:132.934267pt;}
.x49_c00371{left:135.257867pt;}
.x3_c00371{left:136.911467pt;}
.xc_c00371{left:144.943333pt;}
.x42_c00371{left:146.019467pt;}
.x43_c00371{left:153.027067pt;}
.x9_c00371{left:169.466400pt;}
.xd_c00371{left:170.703067pt;}
.x5_c00371{left:177.110933pt;}
.x4_c00371{left:192.415067pt;}
.x44_c00371{left:207.432267pt;}
.x45_c00371{left:210.765600pt;}
.xa_c00371{left:240.862933pt;}
.x6_c00371{left:247.334000pt;}
.x13_c00371{left:251.680000pt;}
.x7_c00371{left:256.229867pt;}
.x8_c00371{left:261.557600pt;}
.x3c_c00371{left:280.472000pt;}
.x1d_c00371{left:289.279600pt;}
.x46_c00371{left:299.498000pt;}
.x47_c00371{left:307.251333pt;}
.x2d_c00371{left:317.743200pt;}
.x2e_c00371{left:321.743200pt;}
.x14_c00371{left:330.142267pt;}
.x1a_c00371{left:331.918267pt;}
.x15_c00371{left:334.142267pt;}
.x1b_c00371{left:335.918267pt;}
.x1e_c00371{left:339.022400pt;}
.x25_c00371{left:340.798133pt;}
.x3d_c00371{left:343.378933pt;}
.x26_c00371{left:344.798133pt;}
.x1f_c00371{left:347.022400pt;}
.x37_c00371{left:355.038133pt;}
.x38_c00371{left:359.038133pt;}
.x1c_c00371{left:371.086267pt;}
.x33_c00371{left:373.710000pt;}
.x34_c00371{left:377.710000pt;}
.x12_c00371{left:383.742933pt;}
.x2f_c00371{left:391.949467pt;}
.x16_c00371{left:397.277333pt;}
.x30_c00371{left:399.949467pt;}
.x17_c00371{left:401.277333pt;}
.x35_c00371{left:410.621333pt;}
.x36_c00371{left:414.621333pt;}
.x20_c00371{left:422.589200pt;}
.x21_c00371{left:426.589200pt;}
.x27_c00371{left:427.484667pt;}
.x28_c00371{left:431.484667pt;}
.x31_c00371{left:456.828400pt;}
.x32_c00371{left:460.828400pt;}
.x18_c00371{left:470.587600pt;}
.x19_c00371{left:474.587600pt;}
.x22_c00371{left:485.227867pt;}
.x23_c00371{left:489.227867pt;}
.x29_c00371{left:498.106800pt;}
.x3e_c00371{left:500.269200pt;}
.x2a_c00371{left:508.708267pt;}
.x39_c00371{left:515.530267pt;}
.x3a_c00371{left:519.530267pt;}
.xe_c00371{left:534.367867pt;}
.x24_c00371{left:542.570667pt;}
.x2b_c00371{left:567.378933pt;}
.x3f_c00371{left:568.400400pt;}
.x2c_c00371{left:577.980533pt;}
.xf_c00371{left:590.366933pt;}
.xb_c00371{left:651.013733pt;}
.x40_c00371{left:655.233067pt;}
.x41_c00371{left:663.680000pt;}
.x10_c00371{left:667.013333pt;}
.x4a_c00371{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38eeb89d7ce7b7d77355b383.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.134000;font-style:normal;font-weight:normal;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_d352069aabb7b17358493f7d.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;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:ff3_c00372;src:url('chunks/assets/font_b93828e33a6c99f5559c4b65.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:0.876465;font-style:normal;font-weight:normal;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_c441d70658821f48fcabe033.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00372{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00372{vertical-align:-24.480000px;}
.v0_c00372{vertical-align:0.000000px;}
.v1_c00372{vertical-align:24.480000px;}
.v2_c00372{vertical-align:30.240000px;}
.ls16_c00372{letter-spacing:0.000000px;}
.lsf_c00372{letter-spacing:0.025440px;}
.ls10_c00372{letter-spacing:0.186240px;}
.ls1a_c00372{letter-spacing:0.242064px;}
.ls18_c00372{letter-spacing:0.265680px;}
.ls5_c00372{letter-spacing:0.295200px;}
.ls6_c00372{letter-spacing:0.318120px;}
.ls1c_c00372{letter-spacing:0.318816px;}
.ls9_c00372{letter-spacing:0.327292px;}
.ls0_c00372{letter-spacing:0.327911px;}
.ls2_c00372{letter-spacing:0.328282px;}
.ls1b_c00372{letter-spacing:0.328628px;}
.ls13_c00372{letter-spacing:0.354240px;}
.ls4_c00372{letter-spacing:0.371952px;}
.ls1f_c00372{letter-spacing:0.383399px;}
.ls24_c00372{letter-spacing:0.425088px;}
.ls19_c00372{letter-spacing:0.438171px;}
.ls22_c00372{letter-spacing:0.478224px;}
.ls1d_c00372{letter-spacing:0.492942px;}
.ls1_c00372{letter-spacing:0.494154px;}
.lsa_c00372{letter-spacing:0.494773px;}
.ls7_c00372{letter-spacing:0.513648px;}
.ls8_c00372{letter-spacing:0.531360px;}
.ls3_c00372{letter-spacing:0.547713px;}
.lsd_c00372{letter-spacing:0.549072px;}
.ls12_c00372{letter-spacing:0.554976px;}
.lsb_c00372{letter-spacing:0.560880px;}
.ls17_c00372{letter-spacing:0.584496px;}
.ls1e_c00372{letter-spacing:0.602485px;}
.ls23_c00372{letter-spacing:0.690768px;}
.lsc_c00372{letter-spacing:0.712027px;}
.ls28_c00372{letter-spacing:0.797040px;}
.ls20_c00372{letter-spacing:0.962352px;}
.ls21_c00372{letter-spacing:4.433904px;}
.ls2c_c00372{letter-spacing:4.717296px;}
.ls25_c00372{letter-spacing:5.430672px;}
.ls29_c00372{letter-spacing:5.608800px;}
.ls2b_c00372{letter-spacing:5.780016px;}
.lse_c00372{letter-spacing:5.975400px;}
.ls14_c00372{letter-spacing:5.976000px;}
.ls15_c00372{letter-spacing:6.159920px;}
.ls2a_c00372{letter-spacing:9.782928px;}
.ls27_c00372{letter-spacing:13.543776px;}
.ls11_c00372{letter-spacing:15.822720px;}
.ls26_c00372{letter-spacing:15.846336px;}
.sc__c00372{text-shadow:none;}
.sc1_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00372{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc1_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00372{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00372{word-spacing:-22.193136px;}
.ws5_c00372{word-spacing:-21.043152px;}
.ws3_c00372{word-spacing:-17.630284px;}
.ws1_c00372{word-spacing:-17.520742px;}
.ws0_c00372{word-spacing:-17.465970px;}
.ws4_c00372{word-spacing:-16.944480px;}
.ws8_c00372{word-spacing:-16.891344px;}
.ws6_c00372{word-spacing:-16.678800px;}
.ws2_c00372{word-spacing:-10.008000px;}
.ws9_c00372{word-spacing:0.000000px;}
._10_c00372{margin-left:-15.730275px;}
._11_c00372{margin-left:-14.590649px;}
._12_c00372{margin-left:-13.242921px;}
._13_c00372{margin-left:-12.208474px;}
._16_c00372{margin-left:-10.272960px;}
._15_c00372{margin-left:-9.269280px;}
._14_c00372{margin-left:-5.018400px;}
._9_c00372{margin-left:-3.719520px;}
._0_c00372{margin-left:-1.156284px;}
._3_c00372{width:1.095427px;}
._7_c00372{width:2.548727px;}
._8_c00372{width:3.684996px;}
._2_c00372{width:4.959360px;}
._4_c00372{width:6.730560px;}
._1_c00372{width:8.241084px;}
._f_c00372{width:9.265555px;}
._b_c00372{width:11.088000px;}
._5_c00372{width:12.221280px;}
._6_c00372{width:13.743573px;}
._c_c00372{width:15.200427px;}
._a_c00372{width:16.344000px;}
._d_c00372{width:21.888000px;}
._e_c00372{width:26.640000px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs5_c00372{font-size:36.000000px;}
.fs8_c00372{font-size:41.760000px;}
.fs4_c00372{font-size:48.982495px;}
.fs7_c00372{font-size:56.160000px;}
.fs2_c00372{font-size:59.040000px;}
.fs9_c00372{font-size:60.000000px;}
.fs3_c00372{font-size:60.857039px;}
.fs6_c00372{font-size:64.800000px;}
.fs0_c00372{font-size:72.000000px;}
.fs1_c00372{font-size:74.215901px;}
.y0_c00372{bottom:0.000000px;}
.y3b_c00372{bottom:3.120000px;}
.y3a_c00372{bottom:34.744580px;}
.y1_c00372{bottom:54.000000px;}
.y38_c00372{bottom:55.482480px;}
.y39_c00372{bottom:55.485000px;}
.y37_c00372{bottom:72.766440px;}
.y36_c00372{bottom:90.404640px;}
.y35_c00372{bottom:107.688600px;}
.y34_c00372{bottom:125.326800px;}
.y32_c00372{bottom:142.960680px;}
.y33_c00372{bottom:142.965000px;}
.y31_c00372{bottom:160.244640px;}
.y30_c00372{bottom:177.882840px;}
.y2f_c00372{bottom:195.521040px;}
.y2e_c00372{bottom:212.805000px;}
.y2d_c00372{bottom:212.806800px;}
.y2c_c00372{bottom:236.565000px;}
.y2b_c00372{bottom:253.845000px;}
.y2a_c00372{bottom:280.485000px;}
.y29_c00372{bottom:390.285000px;}
.y28_c00372{bottom:411.165000px;}
.y27_c00372{bottom:432.405000px;}
.y26_c00372{bottom:453.285000px;}
.y25_c00372{bottom:474.525000px;}
.y24_c00372{bottom:495.405000px;}
.y23_c00372{bottom:516.285000px;}
.y22_c00372{bottom:552.285000px;}
.y21_c00372{bottom:573.525000px;}
.y20_c00372{bottom:594.405000px;}
.y1f_c00372{bottom:615.285000px;}
.y1e_c00372{bottom:636.525000px;}
.y1d_c00372{bottom:657.405000px;}
.y1c_c00372{bottom:678.285000px;}
.y1b_c00372{bottom:699.525000px;}
.y1a_c00372{bottom:735.525000px;}
.y19_c00372{bottom:771.525000px;}
.y18_c00372{bottom:797.804640px;}
.y17_c00372{bottom:815.442840px;}
.y16_c00372{bottom:833.081040px;}
.y15_c00372{bottom:850.365000px;}
.y13_c00372{bottom:875.561040px;}
.y14_c00372{bottom:875.565000px;}
.y11_c00372{bottom:892.844640px;}
.y12_c00372{bottom:892.845000px;}
.y10_c00372{bottom:910.482840px;}
.yf_c00372{bottom:928.121040px;}
.ye_c00372{bottom:945.405000px;}
.yd_c00372{bottom:945.406800px;}
.yb_c00372{bottom:963.043920px;}
.yc_c00372{bottom:963.045000px;}
.ya_c00372{bottom:987.885000px;}
.y9_c00372{bottom:1013.085000px;}
.y8_c00372{bottom:1013.089680px;}
.y6_c00372{bottom:1038.283920px;}
.y7_c00372{bottom:1038.285000px;}
.y5_c00372{bottom:1063.125000px;}
.y4_c00372{bottom:1063.129680px;}
.y3_c00372{bottom:1088.325000px;}
.y2_c00372{bottom:1138.365000px;}
.hc_c00372{height:19.255605px;}
.hb_c00372{height:32.616000px;}
.h7_c00372{height:39.984609px;}
.h6_c00372{height:46.981634px;}
.h5_c00372{height:53.490240px;}
.hd_c00372{height:56.640000px;}
.h8_c00372{height:57.096000px;}
.h4_c00372{height:57.294676px;}
.h9_c00372{height:58.708800px;}
.h3_c00372{height:65.232000px;}
.ha_c00372{height:68.074560px;}
.h2_c00372{height:1201.365000px;}
.h0_c00372{height:1262.835000px;}
.h1_c00372{height:1263.000000px;}
.w3_c00372{width:16.680000px;}
.w2_c00372{width:863.955000px;}
.w0_c00372{width:892.935000px;}
.w1_c00372{width:893.250000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:14.490000px;}
.x2_c00372{left:113.040150px;}
.x25_c00372{left:133.034550px;}
.x2d_c00372{left:134.714400px;}
.x5_c00372{left:147.223350px;}
.x3_c00372{left:154.025400px;}
.x23_c00372{left:158.878050px;}
.x26_c00372{left:183.843450px;}
.x12_c00372{left:194.756400px;}
.x24_c00372{left:198.042450px;}
.x15_c00372{left:203.861550px;}
.x16_c00372{left:207.611550px;}
.x4_c00372{left:216.466950px;}
.x2e_c00372{left:224.725650px;}
.xf_c00372{left:233.905200px;}
.x10_c00372{left:238.074900px;}
.x17_c00372{left:240.115050px;}
.x18_c00372{left:248.454300px;}
.x13_c00372{left:251.424300px;}
.x11_c00372{left:255.564750px;}
.x6_c00372{left:259.719300px;}
.x7_c00372{left:268.058700px;}
.x8_c00372{left:278.888250px;}
.x9_c00372{left:286.388250px;}
.x14_c00372{left:290.588700px;}
.x2f_c00372{left:313.928100px;}
.xa_c00372{left:334.731450px;}
.xb_c00372{left:338.481450px;}
.xc_c00372{left:347.645850px;}
.x1f_c00372{left:365.227650px;}
.x20_c00372{left:382.717500px;}
.xd_c00372{left:400.969050px;}
.xe_c00372{left:435.090150px;}
.x27_c00372{left:478.770150px;}
.x28_c00372{left:523.783350px;}
.x19_c00372{left:591.434700px;}
.x1a_c00372{left:622.722600px;}
.x1b_c00372{left:629.272350px;}
.x21_c00372{left:669.417450px;}
.x1c_c00372{left:677.299500px;}
.x29_c00372{left:685.392300px;}
.x22_c00372{left:699.368850px;}
.x2b_c00372{left:703.245150px;}
.x2a_c00372{left:705.372000px;}
.x1d_c00372{left:706.488300px;}
.x1e_c00372{left:712.036350px;}
.x2c_c00372{left:730.724550px;}
.x30_c00372{left:768.254608px;}
@media print{
.v3_c00372{vertical-align:-21.760000pt;}
.v0_c00372{vertical-align:0.000000pt;}
.v1_c00372{vertical-align:21.760000pt;}
.v2_c00372{vertical-align:26.880000pt;}
.ls16_c00372{letter-spacing:0.000000pt;}
.lsf_c00372{letter-spacing:0.022613pt;}
.ls10_c00372{letter-spacing:0.165547pt;}
.ls1a_c00372{letter-spacing:0.215168pt;}
.ls18_c00372{letter-spacing:0.236160pt;}
.ls5_c00372{letter-spacing:0.262400pt;}
.ls6_c00372{letter-spacing:0.282773pt;}
.ls1c_c00372{letter-spacing:0.283392pt;}
.ls9_c00372{letter-spacing:0.290926pt;}
.ls0_c00372{letter-spacing:0.291476pt;}
.ls2_c00372{letter-spacing:0.291806pt;}
.ls1b_c00372{letter-spacing:0.292114pt;}
.ls13_c00372{letter-spacing:0.314880pt;}
.ls4_c00372{letter-spacing:0.330624pt;}
.ls1f_c00372{letter-spacing:0.340799pt;}
.ls24_c00372{letter-spacing:0.377856pt;}
.ls19_c00372{letter-spacing:0.389485pt;}
.ls22_c00372{letter-spacing:0.425088pt;}
.ls1d_c00372{letter-spacing:0.438171pt;}
.ls1_c00372{letter-spacing:0.439248pt;}
.lsa_c00372{letter-spacing:0.439798pt;}
.ls7_c00372{letter-spacing:0.456576pt;}
.ls8_c00372{letter-spacing:0.472320pt;}
.ls3_c00372{letter-spacing:0.486856pt;}
.lsd_c00372{letter-spacing:0.488064pt;}
.ls12_c00372{letter-spacing:0.493312pt;}
.lsb_c00372{letter-spacing:0.498560pt;}
.ls17_c00372{letter-spacing:0.519552pt;}
.ls1e_c00372{letter-spacing:0.535542pt;}
.ls23_c00372{letter-spacing:0.614016pt;}
.lsc_c00372{letter-spacing:0.632913pt;}
.ls28_c00372{letter-spacing:0.708480pt;}
.ls20_c00372{letter-spacing:0.855424pt;}
.ls21_c00372{letter-spacing:3.941248pt;}
.ls2c_c00372{letter-spacing:4.193152pt;}
.ls25_c00372{letter-spacing:4.827264pt;}
.ls29_c00372{letter-spacing:4.985600pt;}
.ls2b_c00372{letter-spacing:5.137792pt;}
.lse_c00372{letter-spacing:5.311467pt;}
.ls14_c00372{letter-spacing:5.312000pt;}
.ls15_c00372{letter-spacing:5.475484pt;}
.ls2a_c00372{letter-spacing:8.695936pt;}
.ls27_c00372{letter-spacing:12.038912pt;}
.ls11_c00372{letter-spacing:14.064640pt;}
.ls26_c00372{letter-spacing:14.085632pt;}
.ws7_c00372{word-spacing:-19.727232pt;}
.ws5_c00372{word-spacing:-18.705024pt;}
.ws3_c00372{word-spacing:-15.671364pt;}
.ws1_c00372{word-spacing:-15.573992pt;}
.ws0_c00372{word-spacing:-15.525307pt;}
.ws4_c00372{word-spacing:-15.061760pt;}
.ws8_c00372{word-spacing:-15.014528pt;}
.ws6_c00372{word-spacing:-14.825600pt;}
.ws2_c00372{word-spacing:-8.896000pt;}
.ws9_c00372{word-spacing:0.000000pt;}
._10_c00372{margin-left:-13.982467pt;}
._11_c00372{margin-left:-12.969466pt;}
._12_c00372{margin-left:-11.771486pt;}
._13_c00372{margin-left:-10.851977pt;}
._16_c00372{margin-left:-9.131520pt;}
._15_c00372{margin-left:-8.239360pt;}
._14_c00372{margin-left:-4.460800pt;}
._9_c00372{margin-left:-3.306240pt;}
._0_c00372{margin-left:-1.027808pt;}
._3_c00372{width:0.973713pt;}
._7_c00372{width:2.265536pt;}
._8_c00372{width:3.275552pt;}
._2_c00372{width:4.408320pt;}
._4_c00372{width:5.982720pt;}
._1_c00372{width:7.325408pt;}
._f_c00372{width:8.236049pt;}
._b_c00372{width:9.856000pt;}
._5_c00372{width:10.863360pt;}
._6_c00372{width:12.216510pt;}
._c_c00372{width:13.511490pt;}
._a_c00372{width:14.528000pt;}
._d_c00372{width:19.456000pt;}
._e_c00372{width:23.680000pt;}
.fs5_c00372{font-size:32.000000pt;}
.fs8_c00372{font-size:37.120000pt;}
.fs4_c00372{font-size:43.539995pt;}
.fs7_c00372{font-size:49.920000pt;}
.fs2_c00372{font-size:52.480000pt;}
.fs9_c00372{font-size:53.333333pt;}
.fs3_c00372{font-size:54.095146pt;}
.fs6_c00372{font-size:57.600000pt;}
.fs0_c00372{font-size:64.000000pt;}
.fs1_c00372{font-size:65.969690pt;}
.y0_c00372{bottom:0.000000pt;}
.y3b_c00372{bottom:2.773333pt;}
.y3a_c00372{bottom:30.884071pt;}
.y1_c00372{bottom:48.000000pt;}
.y38_c00372{bottom:49.317760pt;}
.y39_c00372{bottom:49.320000pt;}
.y37_c00372{bottom:64.681280pt;}
.y36_c00372{bottom:80.359680pt;}
.y35_c00372{bottom:95.723200pt;}
.y34_c00372{bottom:111.401600pt;}
.y32_c00372{bottom:127.076160pt;}
.y33_c00372{bottom:127.080000pt;}
.y31_c00372{bottom:142.439680pt;}
.y30_c00372{bottom:158.118080pt;}
.y2f_c00372{bottom:173.796480pt;}
.y2e_c00372{bottom:189.160000pt;}
.y2d_c00372{bottom:189.161600pt;}
.y2c_c00372{bottom:210.280000pt;}
.y2b_c00372{bottom:225.640000pt;}
.y2a_c00372{bottom:249.320000pt;}
.y29_c00372{bottom:346.920000pt;}
.y28_c00372{bottom:365.480000pt;}
.y27_c00372{bottom:384.360000pt;}
.y26_c00372{bottom:402.920000pt;}
.y25_c00372{bottom:421.800000pt;}
.y24_c00372{bottom:440.360000pt;}
.y23_c00372{bottom:458.920000pt;}
.y22_c00372{bottom:490.920000pt;}
.y21_c00372{bottom:509.800000pt;}
.y20_c00372{bottom:528.360000pt;}
.y1f_c00372{bottom:546.920000pt;}
.y1e_c00372{bottom:565.800000pt;}
.y1d_c00372{bottom:584.360000pt;}
.y1c_c00372{bottom:602.920000pt;}
.y1b_c00372{bottom:621.800000pt;}
.y1a_c00372{bottom:653.800000pt;}
.y19_c00372{bottom:685.800000pt;}
.y18_c00372{bottom:709.159680pt;}
.y17_c00372{bottom:724.838080pt;}
.y16_c00372{bottom:740.516480pt;}
.y15_c00372{bottom:755.880000pt;}
.y13_c00372{bottom:778.276480pt;}
.y14_c00372{bottom:778.280000pt;}
.y11_c00372{bottom:793.639680pt;}
.y12_c00372{bottom:793.640000pt;}
.y10_c00372{bottom:809.318080pt;}
.yf_c00372{bottom:824.996480pt;}
.ye_c00372{bottom:840.360000pt;}
.yd_c00372{bottom:840.361600pt;}
.yb_c00372{bottom:856.039040pt;}
.yc_c00372{bottom:856.040000pt;}
.ya_c00372{bottom:878.120000pt;}
.y9_c00372{bottom:900.520000pt;}
.y8_c00372{bottom:900.524160pt;}
.y6_c00372{bottom:922.919040pt;}
.y7_c00372{bottom:922.920000pt;}
.y5_c00372{bottom:945.000000pt;}
.y4_c00372{bottom:945.004160pt;}
.y3_c00372{bottom:967.400000pt;}
.y2_c00372{bottom:1011.880000pt;}
.hc_c00372{height:17.116093pt;}
.hb_c00372{height:28.992000pt;}
.h7_c00372{height:35.541875pt;}
.h6_c00372{height:41.761453pt;}
.h5_c00372{height:47.546880pt;}
.hd_c00372{height:50.346667pt;}
.h8_c00372{height:50.752000pt;}
.h4_c00372{height:50.928601pt;}
.h9_c00372{height:52.185600pt;}
.h3_c00372{height:57.984000pt;}
.ha_c00372{height:60.510720pt;}
.h2_c00372{height:1067.880000pt;}
.h0_c00372{height:1122.520000pt;}
.h1_c00372{height:1122.666667pt;}
.w3_c00372{width:14.826667pt;}
.w2_c00372{width:767.960000pt;}
.w0_c00372{width:793.720000pt;}
.w1_c00372{width:794.000000pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:12.880000pt;}
.x2_c00372{left:100.480133pt;}
.x25_c00372{left:118.252933pt;}
.x2d_c00372{left:119.746133pt;}
.x5_c00372{left:130.865200pt;}
.x3_c00372{left:136.911467pt;}
.x23_c00372{left:141.224933pt;}
.x26_c00372{left:163.416400pt;}
.x12_c00372{left:173.116800pt;}
.x24_c00372{left:176.037733pt;}
.x15_c00372{left:181.210267pt;}
.x16_c00372{left:184.543600pt;}
.x4_c00372{left:192.415067pt;}
.x2e_c00372{left:199.756133pt;}
.xf_c00372{left:207.915733pt;}
.x10_c00372{left:211.622133pt;}
.x17_c00372{left:213.435600pt;}
.x18_c00372{left:220.848267pt;}
.x13_c00372{left:223.488267pt;}
.x11_c00372{left:227.168667pt;}
.x6_c00372{left:230.861600pt;}
.x7_c00372{left:238.274400pt;}
.x8_c00372{left:247.900667pt;}
.x9_c00372{left:254.567333pt;}
.x14_c00372{left:258.301067pt;}
.x2f_c00372{left:279.047200pt;}
.xa_c00372{left:297.539067pt;}
.xb_c00372{left:300.872400pt;}
.xc_c00372{left:309.018533pt;}
.x1f_c00372{left:324.646800pt;}
.x20_c00372{left:340.193333pt;}
.xd_c00372{left:356.416933pt;}
.xe_c00372{left:386.746800pt;}
.x27_c00372{left:425.573467pt;}
.x28_c00372{left:465.585200pt;}
.x19_c00372{left:525.719733pt;}
.x1a_c00372{left:553.531200pt;}
.x1b_c00372{left:559.353200pt;}
.x21_c00372{left:595.037733pt;}
.x1c_c00372{left:602.044000pt;}
.x29_c00372{left:609.237600pt;}
.x22_c00372{left:621.661200pt;}
.x2b_c00372{left:625.106800pt;}
.x2a_c00372{left:626.997333pt;}
.x1d_c00372{left:627.989600pt;}
.x1e_c00372{left:632.921200pt;}
.x2c_c00372{left:649.532933pt;}
.x30_c00372{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98819bd10a55e71bfe042459.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.134000;font-style:normal;font-weight:normal;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_37ff0845f1f816afade49d2f.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;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:ff3_c00373;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00373;src:url('chunks/assets/font_386be5edbedf7c91bd2ec1c8.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;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:ff6_c00373;src:url('chunks/assets/font_d40a98e52df2c0d77ceb84b4.woff2')format("woff");}.ff6_c00373{font-family:ff6_c00373;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00373{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00373{vertical-align:-30.240000px;}
.v3_c00373{vertical-align:-24.480000px;}
.v0_c00373{vertical-align:0.000000px;}
.v1_c00373{vertical-align:30.239400px;}
.ls14_c00373{letter-spacing:-0.179568px;}
.ls13_c00373{letter-spacing:0.000000px;}
.ls23_c00373{letter-spacing:0.144000px;}
.lsd_c00373{letter-spacing:0.265680px;}
.ls29_c00373{letter-spacing:0.273857px;}
.ls10_c00373{letter-spacing:0.295200px;}
.ls6_c00373{letter-spacing:0.304285px;}
.ls22_c00373{letter-spacing:0.318816px;}
.ls8_c00373{letter-spacing:0.327292px;}
.ls2c_c00373{letter-spacing:0.328628px;}
.ls20_c00373{letter-spacing:0.371952px;}
.ls1_c00373{letter-spacing:0.421440px;}
.ls16_c00373{letter-spacing:0.425088px;}
.ls5_c00373{letter-spacing:0.438171px;}
.ls24_c00373{letter-spacing:0.478224px;}
.ls4_c00373{letter-spacing:0.486856px;}
.ls25_c00373{letter-spacing:0.492942px;}
.ls9_c00373{letter-spacing:0.494773px;}
.ls0_c00373{letter-spacing:0.510840px;}
.ls7_c00373{letter-spacing:0.531360px;}
.lsc_c00373{letter-spacing:0.547713px;}
.lsf_c00373{letter-spacing:0.549072px;}
.ls30_c00373{letter-spacing:0.578592px;}
.ls27_c00373{letter-spacing:0.584496px;}
.ls17_c00373{letter-spacing:0.590400px;}
.ls18_c00373{letter-spacing:0.602485px;}
.lsb_c00373{letter-spacing:0.608570px;}
.ls1f_c00373{letter-spacing:0.657256px;}
.ls2a_c00373{letter-spacing:0.690768px;}
.ls1a_c00373{letter-spacing:0.712027px;}
.ls2b_c00373{letter-spacing:0.797040px;}
.ls3_c00373{letter-spacing:0.821570px;}
.ls26_c00373{letter-spacing:0.991970px;}
.lsa_c00373{letter-spacing:1.452384px;}
.ls15_c00373{letter-spacing:2.001456px;}
.ls2e_c00373{letter-spacing:2.208096px;}
.ls2d_c00373{letter-spacing:2.214000px;}
.ls28_c00373{letter-spacing:2.219904px;}
.ls2f_c00373{letter-spacing:2.786688px;}
.ls31_c00373{letter-spacing:3.022848px;}
.ls32_c00373{letter-spacing:3.170448px;}
.ls21_c00373{letter-spacing:3.548304px;}
.ls1b_c00373{letter-spacing:4.044240px;}
.ls19_c00373{letter-spacing:5.248656px;}
.ls2_c00373{letter-spacing:5.461200px;}
.ls1c_c00373{letter-spacing:5.514336px;}
.ls1e_c00373{letter-spacing:5.880384px;}
.ls1d_c00373{letter-spacing:5.886288px;}
.ls11_c00373{letter-spacing:5.976000px;}
.ls12_c00373{letter-spacing:6.159920px;}
.lse_c00373{letter-spacing:9.564480px;}
.sc__c00373{text-shadow:none;}
.sc1_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00373{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc1_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00373{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8_c00373{word-spacing:-21.927456px;}
.ws5_c00373{word-spacing:-21.874320px;}
.ws4_c00373{word-spacing:-21.661776px;}
.ws0_c00373{word-spacing:-20.016000px;}
.wsc_c00373{word-spacing:-17.910227px;}
.ws6_c00373{word-spacing:-17.739827px;}
.ws10_c00373{word-spacing:-17.630284px;}
.ws9_c00373{word-spacing:-17.575513px;}
.wsf_c00373{word-spacing:-17.520742px;}
.ws7_c00373{word-spacing:-17.465970px;}
.wsb_c00373{word-spacing:-17.411199px;}
.wse_c00373{word-spacing:-17.356428px;}
.wsd_c00373{word-spacing:-17.246885px;}
.ws11_c00373{word-spacing:-16.944480px;}
.ws3_c00373{word-spacing:-16.838208px;}
.ws1_c00373{word-spacing:-11.429712px;}
.wsa_c00373{word-spacing:-10.152000px;}
.ws2_c00373{word-spacing:-10.008000px;}
.ws12_c00373{word-spacing:0.000000px;}
._e_c00373{margin-left:-6.553440px;}
._d_c00373{margin-left:-5.431680px;}
._c_c00373{margin-left:-3.996915px;}
._b_c00373{margin-left:-2.479680px;}
._a_c00373{margin-left:-1.298880px;}
._3_c00373{width:1.275816px;}
._1_c00373{width:2.808000px;}
._2_c00373{width:4.081875px;}
._8_c00373{width:5.278125px;}
._12_c00373{width:6.671019px;}
._7_c00373{width:7.704000px;}
._11_c00373{width:8.894880px;}
._4_c00373{width:10.656000px;}
._5_c00373{width:11.967814px;}
._9_c00373{width:13.176000px;}
._0_c00373{width:14.976000px;}
._6_c00373{width:16.053000px;}
._10_c00373{width:21.195360px;}
._f_c00373{width:22.258080px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs3_c00373{font-size:36.000000px;}
.fs2_c00373{font-size:41.760000px;}
.fs6_c00373{font-size:48.982495px;}
.fs4_c00373{font-size:59.040000px;}
.fs7_c00373{font-size:60.000000px;}
.fs5_c00373{font-size:60.857039px;}
.fs0_c00373{font-size:72.000000px;}
.fs1_c00373{font-size:74.215901px;}
.y0_c00373{bottom:0.000000px;}
.y4c_c00373{bottom:3.120000px;}
.y4b_c00373{bottom:34.744580px;}
.y1_c00373{bottom:54.000000px;}
.y4a_c00373{bottom:55.481040px;}
.y49_c00373{bottom:72.765000px;}
.y48_c00373{bottom:72.766800px;}
.y47_c00373{bottom:96.525000px;}
.y46_c00373{bottom:107.685000px;}
.y45_c00373{bottom:107.686800px;}
.y44_c00373{bottom:125.325000px;}
.y43_c00373{bottom:131.445000px;}
.y42_c00373{bottom:142.965000px;}
.y41_c00373{bottom:160.245000px;}
.y40_c00373{bottom:177.886800px;}
.y3f_c00373{bottom:201.645000px;}
.y3e_c00373{bottom:212.805000px;}
.y3d_c00373{bottom:218.925000px;}
.y3c_c00373{bottom:230.445000px;}
.y3b_c00373{bottom:236.565000px;}
.y3a_c00373{bottom:247.726800px;}
.y38_c00373{bottom:265.362840px;}
.y39_c00373{bottom:265.365000px;}
.y37_c00373{bottom:283.001040px;}
.y36_c00373{bottom:306.405000px;}
.y35_c00373{bottom:317.925000px;}
.y34_c00373{bottom:324.045000px;}
.y33_c00373{bottom:335.561040px;}
.y32_c00373{bottom:352.845000px;}
.y31_c00373{bottom:352.846800px;}
.y30_c00373{bottom:370.485000px;}
.y2e_c00373{bottom:388.121040px;}
.y2f_c00373{bottom:388.125000px;}
.y2d_c00373{bottom:405.405000px;}
.y2c_c00373{bottom:405.406800px;}
.y2a_c00373{bottom:423.041040px;}
.y2b_c00373{bottom:423.045000px;}
.y29_c00373{bottom:440.325000px;}
.y28_c00373{bottom:440.326800px;}
.y27_c00373{bottom:457.965000px;}
.y26_c00373{bottom:457.966800px;}
.y24_c00373{bottom:475.601040px;}
.y25_c00373{bottom:475.605000px;}
.y23_c00373{bottom:492.885000px;}
.y22_c00373{bottom:499.005000px;}
.y21_c00373{bottom:510.526800px;}
.y1f_c00373{bottom:528.161040px;}
.y20_c00373{bottom:528.165000px;}
.y1d_c00373{bottom:545.442840px;}
.y1e_c00373{bottom:545.445000px;}
.y1c_c00373{bottom:563.081040px;}
.y1b_c00373{bottom:580.365000px;}
.y1a_c00373{bottom:586.485000px;}
.y19_c00373{bottom:598.005000px;}
.y17_c00373{bottom:615.641040px;}
.y18_c00373{bottom:615.645000px;}
.y16_c00373{bottom:632.925000px;}
.y15_c00373{bottom:632.926800px;}
.y14_c00373{bottom:656.685000px;}
.y13_c00373{bottom:683.325000px;}
.y12_c00373{bottom:811.485000px;}
.y11_c00373{bottom:832.365000px;}
.y10_c00373{bottom:853.245000px;}
.yf_c00373{bottom:874.485000px;}
.ye_c00373{bottom:895.365000px;}
.yd_c00373{bottom:916.605000px;}
.yc_c00373{bottom:937.485000px;}
.yb_c00373{bottom:958.365000px;}
.y9_c00373{bottom:996.525000px;}
.ya_c00373{bottom:1004.085000px;}
.y7_c00373{bottom:1019.205000px;}
.y8_c00373{bottom:1026.764850px;}
.y5_c00373{bottom:1041.885000px;}
.y6_c00373{bottom:1049.445000px;}
.y4_c00373{bottom:1064.205000px;}
.y3_c00373{bottom:1085.085000px;}
.y2_c00373{bottom:1138.365000px;}
.hc_c00373{height:19.255605px;}
.h9_c00373{height:32.616000px;}
.h6_c00373{height:37.834560px;}
.hb_c00373{height:46.981634px;}
.h7_c00373{height:52.328009px;}
.ha_c00373{height:53.490240px;}
.hd_c00373{height:56.640000px;}
.h4_c00373{height:57.294676px;}
.h3_c00373{height:65.232000px;}
.h5_c00373{height:68.073960px;}
.h8_c00373{height:68.074560px;}
.h2_c00373{height:1201.365000px;}
.h0_c00373{height:1262.835000px;}
.h1_c00373{height:1263.000000px;}
.w3_c00373{width:16.680000px;}
.w2_c00373{width:863.955000px;}
.w0_c00373{width:892.935000px;}
.w1_c00373{width:893.250000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:14.490000px;}
.x2_c00373{left:113.040150px;}
.x43_c00373{left:127.217700px;}
.x1c_c00373{left:138.044700px;}
.x3_c00373{left:154.025400px;}
.x4e_c00373{left:163.048500px;}
.x44_c00373{left:173.071350px;}
.x42_c00373{left:178.018050px;}
.x45_c00373{left:188.910600px;}
.x39_c00373{left:196.392300px;}
.x1a_c00373{left:200.188800px;}
.x29_c00373{left:201.379350px;}
.x25_c00373{left:204.137400px;}
.x4f_c00373{left:208.061700px;}
.x4_c00373{left:216.466950px;}
.x7_c00373{left:227.880000px;}
.x11_c00373{left:231.120000px;}
.x46_c00373{left:238.933950px;}
.x12_c00373{left:242.739600px;}
.x2a_c00373{left:248.004300px;}
.x26_c00373{left:250.831050px;}
.x8_c00373{left:260.711100px;}
.x3d_c00373{left:268.594050px;}
.x4a_c00373{left:273.353700px;}
.x1d_c00373{left:303.069150px;}
.x3f_c00373{left:305.696400px;}
.x4c_c00373{left:311.663850px;}
.x3e_c00373{left:318.411600px;}
.x27_c00373{left:328.759950px;}
.x4d_c00373{left:332.347050px;}
.x9_c00373{left:334.800000px;}
.xa_c00373{left:346.403250px;}
.x47_c00373{left:363.156750px;}
.xb_c00373{left:364.403250px;}
.x1f_c00373{left:370.403700px;}
.x40_c00373{left:379.907250px;}
.x1b_c00373{left:390.880350px;}
.x13_c00373{left:391.898100px;}
.x2b_c00373{left:395.985750px;}
.x28_c00373{left:402.411600px;}
.x31_c00373{left:410.798250px;}
.x20_c00373{left:416.257650px;}
.x21_c00373{left:426.826500px;}
.xc_c00373{left:428.031750px;}
.x2c_c00373{left:429.315000px;}
.x32_c00373{left:441.637200px;}
.x2d_c00373{left:446.586600px;}
.x3b_c00373{left:448.214700px;}
.x3a_c00373{left:461.434200px;}
.x22_c00373{left:463.485750px;}
.x16_c00373{left:469.765200px;}
.x2e_c00373{left:477.425550px;}
.x17_c00373{left:478.929900px;}
.x48_c00373{left:503.121150px;}
.x37_c00373{left:509.635950px;}
.x1e_c00373{left:513.511650px;}
.xd_c00373{left:515.160000px;}
.x38_c00373{left:520.450950px;}
.x3c_c00373{left:526.346550px;}
.xe_c00373{left:531.739650px;}
.x2f_c00373{left:547.506150px;}
.x49_c00373{left:575.643750px;}
.x14_c00373{left:585.585600px;}
.x23_c00373{left:587.217300px;}
.x18_c00373{left:597.631050px;}
.x15_c00373{left:601.587150px;}
.x30_c00373{left:608.640750px;}
.x24_c00373{left:612.786300px;}
.x33_c00373{left:653.077950px;}
.x19_c00373{left:654.380100px;}
.x5_c00373{left:656.815500px;}
.x34_c00373{left:668.077800px;}
.x50_c00373{left:677.758350px;}
.xf_c00373{left:694.440000px;}
.x51_c00373{left:697.906500px;}
.x41_c00373{left:702.871500px;}
.x10_c00373{left:706.070100px;}
.x35_c00373{left:711.914400px;}
.x36_c00373{left:720.742350px;}
.x4b_c00373{left:725.371200px;}
.x6_c00373{left:739.548300px;}
.x52_c00373{left:768.254608px;}
@media print{
.v2_c00373{vertical-align:-26.880000pt;}
.v3_c00373{vertical-align:-21.760000pt;}
.v0_c00373{vertical-align:0.000000pt;}
.v1_c00373{vertical-align:26.879467pt;}
.ls14_c00373{letter-spacing:-0.159616pt;}
.ls13_c00373{letter-spacing:0.000000pt;}
.ls23_c00373{letter-spacing:0.128000pt;}
.lsd_c00373{letter-spacing:0.236160pt;}
.ls29_c00373{letter-spacing:0.243428pt;}
.ls10_c00373{letter-spacing:0.262400pt;}
.ls6_c00373{letter-spacing:0.270476pt;}
.ls22_c00373{letter-spacing:0.283392pt;}
.ls8_c00373{letter-spacing:0.290926pt;}
.ls2c_c00373{letter-spacing:0.292114pt;}
.ls20_c00373{letter-spacing:0.330624pt;}
.ls1_c00373{letter-spacing:0.374613pt;}
.ls16_c00373{letter-spacing:0.377856pt;}
.ls5_c00373{letter-spacing:0.389485pt;}
.ls24_c00373{letter-spacing:0.425088pt;}
.ls4_c00373{letter-spacing:0.432761pt;}
.ls25_c00373{letter-spacing:0.438171pt;}
.ls9_c00373{letter-spacing:0.439798pt;}
.ls0_c00373{letter-spacing:0.454080pt;}
.ls7_c00373{letter-spacing:0.472320pt;}
.lsc_c00373{letter-spacing:0.486856pt;}
.lsf_c00373{letter-spacing:0.488064pt;}
.ls30_c00373{letter-spacing:0.514304pt;}
.ls27_c00373{letter-spacing:0.519552pt;}
.ls17_c00373{letter-spacing:0.524800pt;}
.ls18_c00373{letter-spacing:0.535542pt;}
.lsb_c00373{letter-spacing:0.540951pt;}
.ls1f_c00373{letter-spacing:0.584228pt;}
.ls2a_c00373{letter-spacing:0.614016pt;}
.ls1a_c00373{letter-spacing:0.632913pt;}
.ls2b_c00373{letter-spacing:0.708480pt;}
.ls3_c00373{letter-spacing:0.730284pt;}
.ls26_c00373{letter-spacing:0.881751pt;}
.lsa_c00373{letter-spacing:1.291008pt;}
.ls15_c00373{letter-spacing:1.779072pt;}
.ls2e_c00373{letter-spacing:1.962752pt;}
.ls2d_c00373{letter-spacing:1.968000pt;}
.ls28_c00373{letter-spacing:1.973248pt;}
.ls2f_c00373{letter-spacing:2.477056pt;}
.ls31_c00373{letter-spacing:2.686976pt;}
.ls32_c00373{letter-spacing:2.818176pt;}
.ls21_c00373{letter-spacing:3.154048pt;}
.ls1b_c00373{letter-spacing:3.594880pt;}
.ls19_c00373{letter-spacing:4.665472pt;}
.ls2_c00373{letter-spacing:4.854400pt;}
.ls1c_c00373{letter-spacing:4.901632pt;}
.ls1e_c00373{letter-spacing:5.227008pt;}
.ls1d_c00373{letter-spacing:5.232256pt;}
.ls11_c00373{letter-spacing:5.312000pt;}
.ls12_c00373{letter-spacing:5.475484pt;}
.lse_c00373{letter-spacing:8.501760pt;}
.ws8_c00373{word-spacing:-19.491072pt;}
.ws5_c00373{word-spacing:-19.443840pt;}
.ws4_c00373{word-spacing:-19.254912pt;}
.ws0_c00373{word-spacing:-17.792000pt;}
.wsc_c00373{word-spacing:-15.920201pt;}
.ws6_c00373{word-spacing:-15.768735pt;}
.ws10_c00373{word-spacing:-15.671364pt;}
.ws9_c00373{word-spacing:-15.622678pt;}
.wsf_c00373{word-spacing:-15.573992pt;}
.ws7_c00373{word-spacing:-15.525307pt;}
.wsb_c00373{word-spacing:-15.476621pt;}
.wse_c00373{word-spacing:-15.427936pt;}
.wsd_c00373{word-spacing:-15.330564pt;}
.ws11_c00373{word-spacing:-15.061760pt;}
.ws3_c00373{word-spacing:-14.967296pt;}
.ws1_c00373{word-spacing:-10.159744pt;}
.wsa_c00373{word-spacing:-9.024000pt;}
.ws2_c00373{word-spacing:-8.896000pt;}
.ws12_c00373{word-spacing:0.000000pt;}
._e_c00373{margin-left:-5.825280pt;}
._d_c00373{margin-left:-4.828160pt;}
._c_c00373{margin-left:-3.552813pt;}
._b_c00373{margin-left:-2.204160pt;}
._a_c00373{margin-left:-1.154560pt;}
._3_c00373{width:1.134059pt;}
._1_c00373{width:2.496000pt;}
._2_c00373{width:3.628333pt;}
._8_c00373{width:4.691667pt;}
._12_c00373{width:5.929794pt;}
._7_c00373{width:6.848000pt;}
._11_c00373{width:7.906560pt;}
._4_c00373{width:9.472000pt;}
._5_c00373{width:10.638056pt;}
._9_c00373{width:11.712000pt;}
._0_c00373{width:13.312000pt;}
._6_c00373{width:14.269333pt;}
._10_c00373{width:18.840320pt;}
._f_c00373{width:19.784960pt;}
.fs3_c00373{font-size:32.000000pt;}
.fs2_c00373{font-size:37.120000pt;}
.fs6_c00373{font-size:43.539995pt;}
.fs4_c00373{font-size:52.480000pt;}
.fs7_c00373{font-size:53.333333pt;}
.fs5_c00373{font-size:54.095146pt;}
.fs0_c00373{font-size:64.000000pt;}
.fs1_c00373{font-size:65.969690pt;}
.y0_c00373{bottom:0.000000pt;}
.y4c_c00373{bottom:2.773333pt;}
.y4b_c00373{bottom:30.884071pt;}
.y1_c00373{bottom:48.000000pt;}
.y4a_c00373{bottom:49.316480pt;}
.y49_c00373{bottom:64.680000pt;}
.y48_c00373{bottom:64.681600pt;}
.y47_c00373{bottom:85.800000pt;}
.y46_c00373{bottom:95.720000pt;}
.y45_c00373{bottom:95.721600pt;}
.y44_c00373{bottom:111.400000pt;}
.y43_c00373{bottom:116.840000pt;}
.y42_c00373{bottom:127.080000pt;}
.y41_c00373{bottom:142.440000pt;}
.y40_c00373{bottom:158.121600pt;}
.y3f_c00373{bottom:179.240000pt;}
.y3e_c00373{bottom:189.160000pt;}
.y3d_c00373{bottom:194.600000pt;}
.y3c_c00373{bottom:204.840000pt;}
.y3b_c00373{bottom:210.280000pt;}
.y3a_c00373{bottom:220.201600pt;}
.y38_c00373{bottom:235.878080pt;}
.y39_c00373{bottom:235.880000pt;}
.y37_c00373{bottom:251.556480pt;}
.y36_c00373{bottom:272.360000pt;}
.y35_c00373{bottom:282.600000pt;}
.y34_c00373{bottom:288.040000pt;}
.y33_c00373{bottom:298.276480pt;}
.y32_c00373{bottom:313.640000pt;}
.y31_c00373{bottom:313.641600pt;}
.y30_c00373{bottom:329.320000pt;}
.y2e_c00373{bottom:344.996480pt;}
.y2f_c00373{bottom:345.000000pt;}
.y2d_c00373{bottom:360.360000pt;}
.y2c_c00373{bottom:360.361600pt;}
.y2a_c00373{bottom:376.036480pt;}
.y2b_c00373{bottom:376.040000pt;}
.y29_c00373{bottom:391.400000pt;}
.y28_c00373{bottom:391.401600pt;}
.y27_c00373{bottom:407.080000pt;}
.y26_c00373{bottom:407.081600pt;}
.y24_c00373{bottom:422.756480pt;}
.y25_c00373{bottom:422.760000pt;}
.y23_c00373{bottom:438.120000pt;}
.y22_c00373{bottom:443.560000pt;}
.y21_c00373{bottom:453.801600pt;}
.y1f_c00373{bottom:469.476480pt;}
.y20_c00373{bottom:469.480000pt;}
.y1d_c00373{bottom:484.838080pt;}
.y1e_c00373{bottom:484.840000pt;}
.y1c_c00373{bottom:500.516480pt;}
.y1b_c00373{bottom:515.880000pt;}
.y1a_c00373{bottom:521.320000pt;}
.y19_c00373{bottom:531.560000pt;}
.y17_c00373{bottom:547.236480pt;}
.y18_c00373{bottom:547.240000pt;}
.y16_c00373{bottom:562.600000pt;}
.y15_c00373{bottom:562.601600pt;}
.y14_c00373{bottom:583.720000pt;}
.y13_c00373{bottom:607.400000pt;}
.y12_c00373{bottom:721.320000pt;}
.y11_c00373{bottom:739.880000pt;}
.y10_c00373{bottom:758.440000pt;}
.yf_c00373{bottom:777.320000pt;}
.ye_c00373{bottom:795.880000pt;}
.yd_c00373{bottom:814.760000pt;}
.yc_c00373{bottom:833.320000pt;}
.yb_c00373{bottom:851.880000pt;}
.y9_c00373{bottom:885.800000pt;}
.ya_c00373{bottom:892.520000pt;}
.y7_c00373{bottom:905.960000pt;}
.y8_c00373{bottom:912.679867pt;}
.y5_c00373{bottom:926.120000pt;}
.y6_c00373{bottom:932.840000pt;}
.y4_c00373{bottom:945.960000pt;}
.y3_c00373{bottom:964.520000pt;}
.y2_c00373{bottom:1011.880000pt;}
.hc_c00373{height:17.116093pt;}
.h9_c00373{height:28.992000pt;}
.h6_c00373{height:33.630720pt;}
.hb_c00373{height:41.761453pt;}
.h7_c00373{height:46.513785pt;}
.ha_c00373{height:47.546880pt;}
.hd_c00373{height:50.346667pt;}
.h4_c00373{height:50.928601pt;}
.h3_c00373{height:57.984000pt;}
.h5_c00373{height:60.510187pt;}
.h8_c00373{height:60.510720pt;}
.h2_c00373{height:1067.880000pt;}
.h0_c00373{height:1122.520000pt;}
.h1_c00373{height:1122.666667pt;}
.w3_c00373{width:14.826667pt;}
.w2_c00373{width:767.960000pt;}
.w0_c00373{width:793.720000pt;}
.w1_c00373{width:794.000000pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:12.880000pt;}
.x2_c00373{left:100.480133pt;}
.x43_c00373{left:113.082400pt;}
.x1c_c00373{left:122.706400pt;}
.x3_c00373{left:136.911467pt;}
.x4e_c00373{left:144.932000pt;}
.x44_c00373{left:153.841200pt;}
.x42_c00373{left:158.238267pt;}
.x45_c00373{left:167.920533pt;}
.x39_c00373{left:174.570933pt;}
.x1a_c00373{left:177.945600pt;}
.x29_c00373{left:179.003867pt;}
.x25_c00373{left:181.455467pt;}
.x4f_c00373{left:184.943733pt;}
.x4_c00373{left:192.415067pt;}
.x7_c00373{left:202.560000pt;}
.x11_c00373{left:205.440000pt;}
.x46_c00373{left:212.385733pt;}
.x12_c00373{left:215.768533pt;}
.x2a_c00373{left:220.448267pt;}
.x26_c00373{left:222.960933pt;}
.x8_c00373{left:231.743200pt;}
.x3d_c00373{left:238.750267pt;}
.x4a_c00373{left:242.981067pt;}
.x1d_c00373{left:269.394800pt;}
.x3f_c00373{left:271.730133pt;}
.x4c_c00373{left:277.034533pt;}
.x3e_c00373{left:283.032533pt;}
.x27_c00373{left:292.231067pt;}
.x4d_c00373{left:295.419600pt;}
.x9_c00373{left:297.600000pt;}
.xa_c00373{left:307.914000pt;}
.x47_c00373{left:322.806000pt;}
.xb_c00373{left:323.914000pt;}
.x1f_c00373{left:329.247733pt;}
.x40_c00373{left:337.695333pt;}
.x1b_c00373{left:347.449200pt;}
.x13_c00373{left:348.353867pt;}
.x2b_c00373{left:351.987333pt;}
.x28_c00373{left:357.699200pt;}
.x31_c00373{left:365.154000pt;}
.x20_c00373{left:370.006800pt;}
.x21_c00373{left:379.401333pt;}
.xc_c00373{left:380.472667pt;}
.x2c_c00373{left:381.613333pt;}
.x32_c00373{left:392.566400pt;}
.x2d_c00373{left:396.965867pt;}
.x3b_c00373{left:398.413067pt;}
.x3a_c00373{left:410.163733pt;}
.x22_c00373{left:411.987333pt;}
.x16_c00373{left:417.569067pt;}
.x2e_c00373{left:424.378267pt;}
.x17_c00373{left:425.715467pt;}
.x48_c00373{left:447.218800pt;}
.x37_c00373{left:453.009733pt;}
.x1e_c00373{left:456.454800pt;}
.xd_c00373{left:457.920000pt;}
.x38_c00373{left:462.623067pt;}
.x3c_c00373{left:467.863600pt;}
.xe_c00373{left:472.657467pt;}
.x2f_c00373{left:486.672133pt;}
.x49_c00373{left:511.683333pt;}
.x14_c00373{left:520.520533pt;}
.x23_c00373{left:521.970933pt;}
.x18_c00373{left:531.227600pt;}
.x15_c00373{left:534.744133pt;}
.x30_c00373{left:541.014000pt;}
.x24_c00373{left:544.698933pt;}
.x33_c00373{left:580.513733pt;}
.x19_c00373{left:581.671200pt;}
.x5_c00373{left:583.836000pt;}
.x34_c00373{left:593.846933pt;}
.x50_c00373{left:602.451867pt;}
.xf_c00373{left:617.280000pt;}
.x51_c00373{left:620.361333pt;}
.x41_c00373{left:624.774667pt;}
.x10_c00373{left:627.617867pt;}
.x35_c00373{left:632.812800pt;}
.x36_c00373{left:640.659867pt;}
.x4b_c00373{left:644.774400pt;}
.x6_c00373{left:657.376267pt;}
.x52_c00373{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e6952ab34dd0a0ee731465a.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.134000;font-style:normal;font-weight:normal;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_3ed67d8f97ffb29f4bd525a1.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;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:ff3_c00374;src:url('chunks/assets/font_822cfc7c0c01d2a4c4532bc3.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00374{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00374{vertical-align:-24.480000px;}
.v0_c00374{vertical-align:0.000000px;}
.v1_c00374{vertical-align:30.240000px;}
.ls8_c00374{letter-spacing:-0.179568px;}
.ls7_c00374{letter-spacing:0.000000px;}
.lsa_c00374{letter-spacing:0.144000px;}
.lse_c00374{letter-spacing:0.265680px;}
.ls2_c00374{letter-spacing:0.295200px;}
.lsd_c00374{letter-spacing:0.318816px;}
.ls3_c00374{letter-spacing:0.327292px;}
.ls4_c00374{letter-spacing:0.494773px;}
.ls1_c00374{letter-spacing:0.531360px;}
.ls10_c00374{letter-spacing:0.547713px;}
.lsc_c00374{letter-spacing:0.797040px;}
.lsb_c00374{letter-spacing:0.867888px;}
.ls11_c00374{letter-spacing:1.623600px;}
.ls9_c00374{letter-spacing:5.335200px;}
.ls0_c00374{letter-spacing:5.955600px;}
.ls5_c00374{letter-spacing:5.976000px;}
.ls6_c00374{letter-spacing:6.159920px;}
.lsf_c00374{letter-spacing:9.977760px;}
.sc__c00374{text-shadow:none;}
.sc1_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00374{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc1_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00374{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00374{word-spacing:-20.947680px;}
.ws0_c00374{word-spacing:-20.016000px;}
.ws4_c00374{word-spacing:-17.465970px;}
.ws5_c00374{word-spacing:-16.944480px;}
.ws1_c00374{word-spacing:-11.429712px;}
.ws3_c00374{word-spacing:-10.152000px;}
.ws6_c00374{word-spacing:0.000000px;}
._e_c00374{margin-left:-9.675360px;}
._f_c00374{margin-left:-8.618400px;}
._d_c00374{margin-left:-1.350720px;}
._6_c00374{width:1.872000px;}
._7_c00374{width:3.774216px;}
._9_c00374{width:5.400000px;}
._1_c00374{width:6.984000px;}
._b_c00374{width:8.496000px;}
._5_c00374{width:9.576000px;}
._2_c00374{width:11.448000px;}
._4_c00374{width:13.176000px;}
._3_c00374{width:21.600000px;}
._a_c00374{width:23.303793px;}
._0_c00374{width:29.592000px;}
._8_c00374{width:37.512000px;}
._c_c00374{width:38.592000px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs4_c00374{font-size:36.000000px;}
.fs2_c00374{font-size:41.760000px;}
.fs7_c00374{font-size:48.982495px;}
.fs3_c00374{font-size:56.160000px;}
.fs5_c00374{font-size:59.040000px;}
.fs8_c00374{font-size:60.000000px;}
.fs6_c00374{font-size:60.857039px;}
.fs0_c00374{font-size:72.000000px;}
.fs1_c00374{font-size:74.215901px;}
.y0_c00374{bottom:0.000000px;}
.y2a_c00374{bottom:3.120000px;}
.y29_c00374{bottom:34.744580px;}
.y1_c00374{bottom:54.000000px;}
.y28_c00374{bottom:55.485000px;}
.y27_c00374{bottom:61.605000px;}
.y26_c00374{bottom:72.766800px;}
.y24_c00374{bottom:90.401040px;}
.y25_c00374{bottom:90.405000px;}
.y23_c00374{bottom:113.805000px;}
.y22_c00374{bottom:131.445000px;}
.y21_c00374{bottom:142.962840px;}
.y20_c00374{bottom:160.246800px;}
.y1f_c00374{bottom:184.005000px;}
.y1e_c00374{bottom:210.645000px;}
.y1d_c00374{bottom:433.845000px;}
.y1c_c00374{bottom:469.845000px;}
.y1b_c00374{bottom:505.845000px;}
.y1a_c00374{bottom:541.845000px;}
.y19_c00374{bottom:577.845000px;}
.y18_c00374{bottom:598.725000px;}
.y17_c00374{bottom:619.965000px;}
.y16_c00374{bottom:640.845000px;}
.y15_c00374{bottom:661.725000px;}
.y14_c00374{bottom:682.965000px;}
.y13_c00374{bottom:703.845000px;}
.y12_c00374{bottom:725.085000px;}
.y11_c00374{bottom:745.965000px;}
.y10_c00374{bottom:781.965000px;}
.yf_c00374{bottom:802.845000px;}
.ye_c00374{bottom:824.085000px;}
.yd_c00374{bottom:844.965000px;}
.yc_c00374{bottom:865.845000px;}
.yb_c00374{bottom:887.085000px;}
.ya_c00374{bottom:907.965000px;}
.y9_c00374{bottom:943.965000px;}
.y8_c00374{bottom:964.845000px;}
.y7_c00374{bottom:986.085000px;}
.y6_c00374{bottom:1006.965000px;}
.y5_c00374{bottom:1027.845000px;}
.y4_c00374{bottom:1063.845000px;}
.y3_c00374{bottom:1085.085000px;}
.y2_c00374{bottom:1138.365000px;}
.h9_c00374{height:19.255605px;}
.h6_c00374{height:32.616000px;}
.h8_c00374{height:46.981634px;}
.h7_c00374{height:53.490240px;}
.ha_c00374{height:56.640000px;}
.h4_c00374{height:57.294676px;}
.h3_c00374{height:65.232000px;}
.h5_c00374{height:68.074560px;}
.h2_c00374{height:1201.365000px;}
.h0_c00374{height:1262.835000px;}
.h1_c00374{height:1263.000000px;}
.w3_c00374{width:16.680000px;}
.w2_c00374{width:863.955000px;}
.w0_c00374{width:892.935000px;}
.w1_c00374{width:893.250000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:14.490000px;}
.x2_c00374{left:113.040150px;}
.x3_c00374{left:154.025400px;}
.x4_c00374{left:216.466950px;}
.x5_c00374{left:336.092700px;}
.x6_c00374{left:361.112250px;}
.x7_c00374{left:372.109800px;}
.x13_c00374{left:388.117650px;}
.x8_c00374{left:418.134900px;}
.xe_c00374{left:444.391500px;}
.x9_c00374{left:504.324450px;}
.xf_c00374{left:520.476150px;}
.xa_c00374{left:563.581800px;}
.x11_c00374{left:566.814300px;}
.xb_c00374{left:569.575500px;}
.x10_c00374{left:583.475100px;}
.x12_c00374{left:611.827500px;}
.xc_c00374{left:647.859000px;}
.xd_c00374{left:731.382150px;}
.x14_c00374{left:768.254608px;}
@media print{
.v2_c00374{vertical-align:-21.760000pt;}
.v0_c00374{vertical-align:0.000000pt;}
.v1_c00374{vertical-align:26.880000pt;}
.ls8_c00374{letter-spacing:-0.159616pt;}
.ls7_c00374{letter-spacing:0.000000pt;}
.lsa_c00374{letter-spacing:0.128000pt;}
.lse_c00374{letter-spacing:0.236160pt;}
.ls2_c00374{letter-spacing:0.262400pt;}
.lsd_c00374{letter-spacing:0.283392pt;}
.ls3_c00374{letter-spacing:0.290926pt;}
.ls4_c00374{letter-spacing:0.439798pt;}
.ls1_c00374{letter-spacing:0.472320pt;}
.ls10_c00374{letter-spacing:0.486856pt;}
.lsc_c00374{letter-spacing:0.708480pt;}
.lsb_c00374{letter-spacing:0.771456pt;}
.ls11_c00374{letter-spacing:1.443200pt;}
.ls9_c00374{letter-spacing:4.742400pt;}
.ls0_c00374{letter-spacing:5.293867pt;}
.ls5_c00374{letter-spacing:5.312000pt;}
.ls6_c00374{letter-spacing:5.475484pt;}
.lsf_c00374{letter-spacing:8.869120pt;}
.ws2_c00374{word-spacing:-18.620160pt;}
.ws0_c00374{word-spacing:-17.792000pt;}
.ws4_c00374{word-spacing:-15.525307pt;}
.ws5_c00374{word-spacing:-15.061760pt;}
.ws1_c00374{word-spacing:-10.159744pt;}
.ws3_c00374{word-spacing:-9.024000pt;}
.ws6_c00374{word-spacing:0.000000pt;}
._e_c00374{margin-left:-8.600320pt;}
._f_c00374{margin-left:-7.660800pt;}
._d_c00374{margin-left:-1.200640pt;}
._6_c00374{width:1.664000pt;}
._7_c00374{width:3.354859pt;}
._9_c00374{width:4.800000pt;}
._1_c00374{width:6.208000pt;}
._b_c00374{width:7.552000pt;}
._5_c00374{width:8.512000pt;}
._2_c00374{width:10.176000pt;}
._4_c00374{width:11.712000pt;}
._3_c00374{width:19.200000pt;}
._a_c00374{width:20.714483pt;}
._0_c00374{width:26.304000pt;}
._8_c00374{width:33.344000pt;}
._c_c00374{width:34.304000pt;}
.fs4_c00374{font-size:32.000000pt;}
.fs2_c00374{font-size:37.120000pt;}
.fs7_c00374{font-size:43.539995pt;}
.fs3_c00374{font-size:49.920000pt;}
.fs5_c00374{font-size:52.480000pt;}
.fs8_c00374{font-size:53.333333pt;}
.fs6_c00374{font-size:54.095146pt;}
.fs0_c00374{font-size:64.000000pt;}
.fs1_c00374{font-size:65.969690pt;}
.y0_c00374{bottom:0.000000pt;}
.y2a_c00374{bottom:2.773333pt;}
.y29_c00374{bottom:30.884071pt;}
.y1_c00374{bottom:48.000000pt;}
.y28_c00374{bottom:49.320000pt;}
.y27_c00374{bottom:54.760000pt;}
.y26_c00374{bottom:64.681600pt;}
.y24_c00374{bottom:80.356480pt;}
.y25_c00374{bottom:80.360000pt;}
.y23_c00374{bottom:101.160000pt;}
.y22_c00374{bottom:116.840000pt;}
.y21_c00374{bottom:127.078080pt;}
.y20_c00374{bottom:142.441600pt;}
.y1f_c00374{bottom:163.560000pt;}
.y1e_c00374{bottom:187.240000pt;}
.y1d_c00374{bottom:385.640000pt;}
.y1c_c00374{bottom:417.640000pt;}
.y1b_c00374{bottom:449.640000pt;}
.y1a_c00374{bottom:481.640000pt;}
.y19_c00374{bottom:513.640000pt;}
.y18_c00374{bottom:532.200000pt;}
.y17_c00374{bottom:551.080000pt;}
.y16_c00374{bottom:569.640000pt;}
.y15_c00374{bottom:588.200000pt;}
.y14_c00374{bottom:607.080000pt;}
.y13_c00374{bottom:625.640000pt;}
.y12_c00374{bottom:644.520000pt;}
.y11_c00374{bottom:663.080000pt;}
.y10_c00374{bottom:695.080000pt;}
.yf_c00374{bottom:713.640000pt;}
.ye_c00374{bottom:732.520000pt;}
.yd_c00374{bottom:751.080000pt;}
.yc_c00374{bottom:769.640000pt;}
.yb_c00374{bottom:788.520000pt;}
.ya_c00374{bottom:807.080000pt;}
.y9_c00374{bottom:839.080000pt;}
.y8_c00374{bottom:857.640000pt;}
.y7_c00374{bottom:876.520000pt;}
.y6_c00374{bottom:895.080000pt;}
.y5_c00374{bottom:913.640000pt;}
.y4_c00374{bottom:945.640000pt;}
.y3_c00374{bottom:964.520000pt;}
.y2_c00374{bottom:1011.880000pt;}
.h9_c00374{height:17.116093pt;}
.h6_c00374{height:28.992000pt;}
.h8_c00374{height:41.761453pt;}
.h7_c00374{height:47.546880pt;}
.ha_c00374{height:50.346667pt;}
.h4_c00374{height:50.928601pt;}
.h3_c00374{height:57.984000pt;}
.h5_c00374{height:60.510720pt;}
.h2_c00374{height:1067.880000pt;}
.h0_c00374{height:1122.520000pt;}
.h1_c00374{height:1122.666667pt;}
.w3_c00374{width:14.826667pt;}
.w2_c00374{width:767.960000pt;}
.w0_c00374{width:793.720000pt;}
.w1_c00374{width:794.000000pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:12.880000pt;}
.x2_c00374{left:100.480133pt;}
.x3_c00374{left:136.911467pt;}
.x4_c00374{left:192.415067pt;}
.x5_c00374{left:298.749067pt;}
.x6_c00374{left:320.988667pt;}
.x7_c00374{left:330.764267pt;}
.x13_c00374{left:344.993467pt;}
.x8_c00374{left:371.675467pt;}
.xe_c00374{left:395.014667pt;}
.x9_c00374{left:448.288400pt;}
.xf_c00374{left:462.645467pt;}
.xa_c00374{left:500.961600pt;}
.x11_c00374{left:503.834933pt;}
.xb_c00374{left:506.289333pt;}
.x10_c00374{left:518.644533pt;}
.x12_c00374{left:543.846667pt;}
.xc_c00374{left:575.874667pt;}
.xd_c00374{left:650.117467pt;}
.x14_c00374{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18aeab74ba8ade7e55e29bb9.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;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_c00375;src:url('chunks/assets/font_37d0863a3deba31fd96bc2bb.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:0.787000;font-style:normal;font-weight:normal;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_da5a0d75e1ae628bf19935bc.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00375{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00375{letter-spacing:0.000000px;}
.ls3_c00375{letter-spacing:0.399600px;}
.ls0_c00375{letter-spacing:5.976000px;}
.ls1_c00375{letter-spacing:6.159920px;}
.sc__c00375{text-shadow:none;}
.sc1_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00375{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc1_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00375{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00375{word-spacing:0.000000px;}
._0_c00375{margin-left:-1.118880px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs2_c00375{font-size:53.280000px;}
.fs3_c00375{font-size:60.000000px;}
.fs0_c00375{font-size:72.000000px;}
.fs1_c00375{font-size:74.215901px;}
.y0_c00375{bottom:0.000000px;}
.y22_c00375{bottom:3.120000px;}
.y20_c00375{bottom:34.560000px;}
.y21_c00375{bottom:34.744580px;}
.y1_c00375{bottom:54.000000px;}
.y1e_c00375{bottom:112.725000px;}
.y1d_c00375{bottom:148.725000px;}
.y1c_c00375{bottom:184.725000px;}
.y1b_c00375{bottom:220.725000px;}
.y1a_c00375{bottom:256.725000px;}
.y19_c00375{bottom:292.725000px;}
.y1f_c00375{bottom:295.245000px;}
.y18_c00375{bottom:328.725000px;}
.y17_c00375{bottom:364.725000px;}
.y16_c00375{bottom:400.725000px;}
.y15_c00375{bottom:436.725000px;}
.y14_c00375{bottom:472.725000px;}
.y13_c00375{bottom:509.085000px;}
.y12_c00375{bottom:545.085000px;}
.y11_c00375{bottom:581.085000px;}
.y10_c00375{bottom:617.085000px;}
.yf_c00375{bottom:653.085000px;}
.ye_c00375{bottom:689.085000px;}
.yd_c00375{bottom:725.085000px;}
.yc_c00375{bottom:761.085000px;}
.yb_c00375{bottom:797.085000px;}
.ya_c00375{bottom:833.085000px;}
.y9_c00375{bottom:869.085000px;}
.y8_c00375{bottom:905.085000px;}
.y7_c00375{bottom:941.085000px;}
.y6_c00375{bottom:977.085000px;}
.y5_c00375{bottom:1013.085000px;}
.y4_c00375{bottom:1049.085000px;}
.y3_c00375{bottom:1085.085000px;}
.y2_c00375{bottom:1138.365000px;}
.h7_c00375{height:19.255605px;}
.h6_c00375{height:41.132160px;}
.h5_c00375{height:47.160000px;}
.h3_c00375{height:55.584000px;}
.h8_c00375{height:56.640000px;}
.h4_c00375{height:57.294676px;}
.h2_c00375{height:1201.365000px;}
.h0_c00375{height:1262.835000px;}
.h1_c00375{height:1263.000000px;}
.w4_c00375{width:16.680000px;}
.w3_c00375{width:642.600000px;}
.w2_c00375{width:863.955000px;}
.w0_c00375{width:892.935000px;}
.w1_c00375{width:893.250000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:14.490000px;}
.x6_c00375{left:105.537750px;}
.x2_c00375{left:113.040150px;}
.x5_c00375{left:127.170000px;}
.x3_c00375{left:154.025400px;}
.x4_c00375{left:216.466950px;}
.x7_c00375{left:768.254608px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls2_c00375{letter-spacing:0.000000pt;}
.ls3_c00375{letter-spacing:0.355200pt;}
.ls0_c00375{letter-spacing:5.312000pt;}
.ls1_c00375{letter-spacing:5.475484pt;}
.ws0_c00375{word-spacing:0.000000pt;}
._0_c00375{margin-left:-0.994560pt;}
.fs2_c00375{font-size:47.360000pt;}
.fs3_c00375{font-size:53.333333pt;}
.fs0_c00375{font-size:64.000000pt;}
.fs1_c00375{font-size:65.969690pt;}
.y0_c00375{bottom:0.000000pt;}
.y22_c00375{bottom:2.773333pt;}
.y20_c00375{bottom:30.720000pt;}
.y21_c00375{bottom:30.884071pt;}
.y1_c00375{bottom:48.000000pt;}
.y1e_c00375{bottom:100.200000pt;}
.y1d_c00375{bottom:132.200000pt;}
.y1c_c00375{bottom:164.200000pt;}
.y1b_c00375{bottom:196.200000pt;}
.y1a_c00375{bottom:228.200000pt;}
.y19_c00375{bottom:260.200000pt;}
.y1f_c00375{bottom:262.440000pt;}
.y18_c00375{bottom:292.200000pt;}
.y17_c00375{bottom:324.200000pt;}
.y16_c00375{bottom:356.200000pt;}
.y15_c00375{bottom:388.200000pt;}
.y14_c00375{bottom:420.200000pt;}
.y13_c00375{bottom:452.520000pt;}
.y12_c00375{bottom:484.520000pt;}
.y11_c00375{bottom:516.520000pt;}
.y10_c00375{bottom:548.520000pt;}
.yf_c00375{bottom:580.520000pt;}
.ye_c00375{bottom:612.520000pt;}
.yd_c00375{bottom:644.520000pt;}
.yc_c00375{bottom:676.520000pt;}
.yb_c00375{bottom:708.520000pt;}
.ya_c00375{bottom:740.520000pt;}
.y9_c00375{bottom:772.520000pt;}
.y8_c00375{bottom:804.520000pt;}
.y7_c00375{bottom:836.520000pt;}
.y6_c00375{bottom:868.520000pt;}
.y5_c00375{bottom:900.520000pt;}
.y4_c00375{bottom:932.520000pt;}
.y3_c00375{bottom:964.520000pt;}
.y2_c00375{bottom:1011.880000pt;}
.h7_c00375{height:17.116093pt;}
.h6_c00375{height:36.561920pt;}
.h5_c00375{height:41.920000pt;}
.h3_c00375{height:49.408000pt;}
.h8_c00375{height:50.346667pt;}
.h4_c00375{height:50.928601pt;}
.h2_c00375{height:1067.880000pt;}
.h0_c00375{height:1122.520000pt;}
.h1_c00375{height:1122.666667pt;}
.w4_c00375{width:14.826667pt;}
.w3_c00375{width:571.200000pt;}
.w2_c00375{width:767.960000pt;}
.w0_c00375{width:793.720000pt;}
.w1_c00375{width:794.000000pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:12.880000pt;}
.x6_c00375{left:93.811333pt;}
.x2_c00375{left:100.480133pt;}
.x5_c00375{left:113.040000pt;}
.x3_c00375{left:136.911467pt;}
.x4_c00375{left:192.415067pt;}
.x7_c00375{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4029bd3cd04ed5537dda0947.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;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_c00376;src:url('chunks/assets/font_37d0863a3deba31fd96bc2bb.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:0.787000;font-style:normal;font-weight:normal;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_9431aa33d88faafa1ae6f7a5.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00376{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls2_c00376{letter-spacing:0.000000px;}
.ls4_c00376{letter-spacing:0.202464px;}
.ls3_c00376{letter-spacing:0.399600px;}
.ls0_c00376{letter-spacing:5.976000px;}
.ls1_c00376{letter-spacing:6.159920px;}
.sc__c00376{text-shadow:none;}
.sc1_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00376{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc1_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00376{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00376{word-spacing:0.000000px;}
._0_c00376{width:1.014120px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs2_c00376{font-size:53.280000px;}
.fs3_c00376{font-size:60.000000px;}
.fs0_c00376{font-size:72.000000px;}
.fs1_c00376{font-size:74.215901px;}
.y0_c00376{bottom:0.000000px;}
.y23_c00376{bottom:3.120000px;}
.y20_c00376{bottom:34.560000px;}
.y22_c00376{bottom:34.744580px;}
.y1_c00376{bottom:54.000000px;}
.y1e_c00376{bottom:112.725000px;}
.y1d_c00376{bottom:148.725000px;}
.y21_c00376{bottom:164.565000px;}
.y1c_c00376{bottom:184.725000px;}
.y1b_c00376{bottom:220.725000px;}
.y1a_c00376{bottom:256.725000px;}
.y19_c00376{bottom:292.725000px;}
.y18_c00376{bottom:328.725000px;}
.y17_c00376{bottom:364.725000px;}
.y16_c00376{bottom:400.725000px;}
.y15_c00376{bottom:436.725000px;}
.y14_c00376{bottom:472.725000px;}
.y13_c00376{bottom:509.085000px;}
.y12_c00376{bottom:545.085000px;}
.y11_c00376{bottom:581.085000px;}
.y10_c00376{bottom:617.085000px;}
.y1f_c00376{bottom:625.725000px;}
.yf_c00376{bottom:653.085000px;}
.ye_c00376{bottom:689.085000px;}
.yd_c00376{bottom:725.085000px;}
.yc_c00376{bottom:761.085000px;}
.yb_c00376{bottom:797.085000px;}
.ya_c00376{bottom:833.085000px;}
.y9_c00376{bottom:869.085000px;}
.y8_c00376{bottom:905.085000px;}
.y7_c00376{bottom:941.085000px;}
.y6_c00376{bottom:977.085000px;}
.y5_c00376{bottom:1013.085000px;}
.y4_c00376{bottom:1049.085000px;}
.y3_c00376{bottom:1085.085000px;}
.y2_c00376{bottom:1138.365000px;}
.h7_c00376{height:19.255605px;}
.h6_c00376{height:41.132160px;}
.h5_c00376{height:47.160000px;}
.h3_c00376{height:55.584000px;}
.h8_c00376{height:56.640000px;}
.h4_c00376{height:57.294676px;}
.h2_c00376{height:1201.365000px;}
.h0_c00376{height:1262.835000px;}
.h1_c00376{height:1263.000000px;}
.w5_c00376{width:16.680000px;}
.w4_c00376{width:410.400000px;}
.w3_c00376{width:465.480000px;}
.w2_c00376{width:863.955000px;}
.w0_c00376{width:892.935000px;}
.w1_c00376{width:893.250000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:14.490000px;}
.x8_c00376{left:73.642650px;}
.x6_c00376{left:98.219850px;}
.x2_c00376{left:113.040150px;}
.x3_c00376{left:154.025400px;}
.x4_c00376{left:216.466950px;}
.x5_c00376{left:232.290000px;}
.x7_c00376{left:260.730000px;}
.x9_c00376{left:768.254608px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls2_c00376{letter-spacing:0.000000pt;}
.ls4_c00376{letter-spacing:0.179968pt;}
.ls3_c00376{letter-spacing:0.355200pt;}
.ls0_c00376{letter-spacing:5.312000pt;}
.ls1_c00376{letter-spacing:5.475484pt;}
.ws0_c00376{word-spacing:0.000000pt;}
._0_c00376{width:0.901440pt;}
.fs2_c00376{font-size:47.360000pt;}
.fs3_c00376{font-size:53.333333pt;}
.fs0_c00376{font-size:64.000000pt;}
.fs1_c00376{font-size:65.969690pt;}
.y0_c00376{bottom:0.000000pt;}
.y23_c00376{bottom:2.773333pt;}
.y20_c00376{bottom:30.720000pt;}
.y22_c00376{bottom:30.884071pt;}
.y1_c00376{bottom:48.000000pt;}
.y1e_c00376{bottom:100.200000pt;}
.y1d_c00376{bottom:132.200000pt;}
.y21_c00376{bottom:146.280000pt;}
.y1c_c00376{bottom:164.200000pt;}
.y1b_c00376{bottom:196.200000pt;}
.y1a_c00376{bottom:228.200000pt;}
.y19_c00376{bottom:260.200000pt;}
.y18_c00376{bottom:292.200000pt;}
.y17_c00376{bottom:324.200000pt;}
.y16_c00376{bottom:356.200000pt;}
.y15_c00376{bottom:388.200000pt;}
.y14_c00376{bottom:420.200000pt;}
.y13_c00376{bottom:452.520000pt;}
.y12_c00376{bottom:484.520000pt;}
.y11_c00376{bottom:516.520000pt;}
.y10_c00376{bottom:548.520000pt;}
.y1f_c00376{bottom:556.200000pt;}
.yf_c00376{bottom:580.520000pt;}
.ye_c00376{bottom:612.520000pt;}
.yd_c00376{bottom:644.520000pt;}
.yc_c00376{bottom:676.520000pt;}
.yb_c00376{bottom:708.520000pt;}
.ya_c00376{bottom:740.520000pt;}
.y9_c00376{bottom:772.520000pt;}
.y8_c00376{bottom:804.520000pt;}
.y7_c00376{bottom:836.520000pt;}
.y6_c00376{bottom:868.520000pt;}
.y5_c00376{bottom:900.520000pt;}
.y4_c00376{bottom:932.520000pt;}
.y3_c00376{bottom:964.520000pt;}
.y2_c00376{bottom:1011.880000pt;}
.h7_c00376{height:17.116093pt;}
.h6_c00376{height:36.561920pt;}
.h5_c00376{height:41.920000pt;}
.h3_c00376{height:49.408000pt;}
.h8_c00376{height:50.346667pt;}
.h4_c00376{height:50.928601pt;}
.h2_c00376{height:1067.880000pt;}
.h0_c00376{height:1122.520000pt;}
.h1_c00376{height:1122.666667pt;}
.w5_c00376{width:14.826667pt;}
.w4_c00376{width:364.800000pt;}
.w3_c00376{width:413.760000pt;}
.w2_c00376{width:767.960000pt;}
.w0_c00376{width:793.720000pt;}
.w1_c00376{width:794.000000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:12.880000pt;}
.x8_c00376{left:65.460133pt;}
.x6_c00376{left:87.306533pt;}
.x2_c00376{left:100.480133pt;}
.x3_c00376{left:136.911467pt;}
.x4_c00376{left:192.415067pt;}
.x5_c00376{left:206.480000pt;}
.x7_c00376{left:231.760000pt;}
.x9_c00376{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f7bc8fddbf2c4abfded0a6e.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.134000;font-style:normal;font-weight:normal;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_774af3fd5e3ea1149110a42f.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;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:ff3_c00377;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_a5223e46d39ce5dde67c853e.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00377{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00377{vertical-align:-24.480000px;}
.v0_c00377{vertical-align:0.000000px;}
.v1_c00377{vertical-align:30.240000px;}
.lse_c00377{letter-spacing:0.000000px;}
.ls5_c00377{letter-spacing:0.176040px;}
.ls6_c00377{letter-spacing:0.236160px;}
.ls11_c00377{letter-spacing:0.265680px;}
.ls12_c00377{letter-spacing:0.273857px;}
.ls9_c00377{letter-spacing:0.295200px;}
.ls7_c00377{letter-spacing:0.327292px;}
.lsa_c00377{letter-spacing:0.327911px;}
.lsb_c00377{letter-spacing:0.328900px;}
.ls18_c00377{letter-spacing:0.371952px;}
.ls16_c00377{letter-spacing:0.425088px;}
.ls2_c00377{letter-spacing:0.488040px;}
.ls8_c00377{letter-spacing:0.494773px;}
.ls14_c00377{letter-spacing:0.531360px;}
.ls0_c00377{letter-spacing:0.541440px;}
.ls15_c00377{letter-spacing:0.657256px;}
.ls17_c00377{letter-spacing:0.690768px;}
.lsc_c00377{letter-spacing:0.712027px;}
.ls19_c00377{letter-spacing:0.797040px;}
.ls13_c00377{letter-spacing:2.816208px;}
.lsf_c00377{letter-spacing:5.430672px;}
.lsd_c00377{letter-spacing:5.976000px;}
.ls3_c00377{letter-spacing:5.983200px;}
.ls1_c00377{letter-spacing:6.004800px;}
.ls10_c00377{letter-spacing:10.001376px;}
.ls4_c00377{letter-spacing:54.864000px;}
.sc__c00377{text-shadow:none;}
.sc1_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00377{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc1_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00377{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00377{word-spacing:-21.043152px;}
.ws5_c00377{word-spacing:-17.630284px;}
.ws4_c00377{word-spacing:-17.192114px;}
.ws3_c00377{word-spacing:-16.678800px;}
.ws1_c00377{word-spacing:-11.609280px;}
.ws2_c00377{word-spacing:-10.008000px;}
.ws6_c00377{word-spacing:0.000000px;}
._a_c00377{margin-left:-10.662624px;}
._9_c00377{margin-left:-9.446400px;}
._c_c00377{margin-left:-3.430224px;}
._b_c00377{margin-left:-2.302560px;}
._3_c00377{margin-left:-1.179360px;}
._1_c00377{width:1.021200px;}
._d_c00377{width:3.450240px;}
._8_c00377{width:4.464000px;}
._2_c00377{width:6.192000px;}
._4_c00377{width:7.200000px;}
._0_c00377{width:13.752000px;}
._5_c00377{width:16.056000px;}
._7_c00377{width:18.288000px;}
._6_c00377{width:41.472000px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs4_c00377{font-size:36.000000px;}
.fs2_c00377{font-size:41.760000px;}
.fs7_c00377{font-size:48.982495px;}
.fs3_c00377{font-size:56.160000px;}
.fs5_c00377{font-size:59.040000px;}
.fs8_c00377{font-size:60.000000px;}
.fs6_c00377{font-size:60.857039px;}
.fs0_c00377{font-size:72.000000px;}
.fs1_c00377{font-size:74.215901px;}
.y0_c00377{bottom:0.000000px;}
.y2e_c00377{bottom:3.120000px;}
.y2d_c00377{bottom:34.744580px;}
.y1_c00377{bottom:54.000000px;}
.y2c_c00377{bottom:55.485000px;}
.y2b_c00377{bottom:61.605000px;}
.y2a_c00377{bottom:72.765000px;}
.y29_c00377{bottom:78.885000px;}
.y28_c00377{bottom:90.405000px;}
.y27_c00377{bottom:96.525000px;}
.y26_c00377{bottom:107.688600px;}
.y25_c00377{bottom:125.326800px;}
.y23_c00377{bottom:142.961040px;}
.y24_c00377{bottom:142.965000px;}
.y22_c00377{bottom:160.245000px;}
.y21_c00377{bottom:160.246800px;}
.y20_c00377{bottom:177.885000px;}
.y1f_c00377{bottom:201.645000px;}
.y1e_c00377{bottom:228.285000px;}
.y1d_c00377{bottom:279.405000px;}
.y1c_c00377{bottom:300.285000px;}
.y1b_c00377{bottom:321.525000px;}
.y1a_c00377{bottom:342.405000px;}
.y19_c00377{bottom:363.285000px;}
.y18_c00377{bottom:399.285000px;}
.y17_c00377{bottom:435.285000px;}
.y16_c00377{bottom:471.285000px;}
.y15_c00377{bottom:492.525000px;}
.y14_c00377{bottom:528.525000px;}
.y13_c00377{bottom:564.525000px;}
.y12_c00377{bottom:585.405000px;}
.y11_c00377{bottom:621.405000px;}
.y10_c00377{bottom:657.405000px;}
.yf_c00377{bottom:693.405000px;}
.ye_c00377{bottom:729.405000px;}
.yd_c00377{bottom:765.405000px;}
.yc_c00377{bottom:786.285000px;}
.yb_c00377{bottom:822.285000px;}
.ya_c00377{bottom:843.525000px;}
.y9_c00377{bottom:879.525000px;}
.y8_c00377{bottom:915.525000px;}
.y7_c00377{bottom:951.525000px;}
.y6_c00377{bottom:972.405000px;}
.y5_c00377{bottom:1008.405000px;}
.y4_c00377{bottom:1044.405000px;}
.y3_c00377{bottom:1082.925000px;}
.y2_c00377{bottom:1138.365000px;}
.h9_c00377{height:19.255605px;}
.h6_c00377{height:32.616000px;}
.h7_c00377{height:46.981634px;}
.h8_c00377{height:53.490240px;}
.ha_c00377{height:56.640000px;}
.h4_c00377{height:57.294676px;}
.h3_c00377{height:65.232000px;}
.h5_c00377{height:68.074560px;}
.h2_c00377{height:1201.365000px;}
.h0_c00377{height:1262.835000px;}
.h1_c00377{height:1263.000000px;}
.w3_c00377{width:16.680000px;}
.w2_c00377{width:863.955000px;}
.w0_c00377{width:892.935000px;}
.w1_c00377{width:893.250000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:14.490000px;}
.x2_c00377{left:113.040150px;}
.x1b_c00377{left:122.213700px;}
.x9_c00377{left:140.037600px;}
.x1c_c00377{left:147.188250px;}
.x14_c00377{left:153.058950px;}
.x1d_c00377{left:155.527650px;}
.x18_c00377{left:170.533500px;}
.x1e_c00377{left:189.648600px;}
.xe_c00377{left:201.713400px;}
.xf_c00377{left:214.691100px;}
.x19_c00377{left:283.877850px;}
.xa_c00377{left:308.161050px;}
.x1a_c00377{left:313.829250px;}
.x10_c00377{left:320.711100px;}
.xb_c00377{left:323.154750px;}
.x11_c00377{left:331.708650px;}
.x4_c00377{left:334.093800px;}
.xc_c00377{left:351.309150px;}
.xd_c00377{left:369.309000px;}
.x7_c00377{left:373.081500px;}
.x5_c00377{left:395.441850px;}
.x3_c00377{left:418.719000px;}
.x17_c00377{left:502.873950px;}
.x6_c00377{left:516.031200px;}
.x12_c00377{left:521.025450px;}
.x13_c00377{left:532.023150px;}
.x8_c00377{left:654.092250px;}
.x15_c00377{left:711.274350px;}
.x16_c00377{left:741.225600px;}
.x1f_c00377{left:768.254608px;}
@media print{
.v2_c00377{vertical-align:-21.760000pt;}
.v0_c00377{vertical-align:0.000000pt;}
.v1_c00377{vertical-align:26.880000pt;}
.lse_c00377{letter-spacing:0.000000pt;}
.ls5_c00377{letter-spacing:0.156480pt;}
.ls6_c00377{letter-spacing:0.209920pt;}
.ls11_c00377{letter-spacing:0.236160pt;}
.ls12_c00377{letter-spacing:0.243428pt;}
.ls9_c00377{letter-spacing:0.262400pt;}
.ls7_c00377{letter-spacing:0.290926pt;}
.lsa_c00377{letter-spacing:0.291476pt;}
.lsb_c00377{letter-spacing:0.292356pt;}
.ls18_c00377{letter-spacing:0.330624pt;}
.ls16_c00377{letter-spacing:0.377856pt;}
.ls2_c00377{letter-spacing:0.433813pt;}
.ls8_c00377{letter-spacing:0.439798pt;}
.ls14_c00377{letter-spacing:0.472320pt;}
.ls0_c00377{letter-spacing:0.481280pt;}
.ls15_c00377{letter-spacing:0.584228pt;}
.ls17_c00377{letter-spacing:0.614016pt;}
.lsc_c00377{letter-spacing:0.632913pt;}
.ls19_c00377{letter-spacing:0.708480pt;}
.ls13_c00377{letter-spacing:2.503296pt;}
.lsf_c00377{letter-spacing:4.827264pt;}
.lsd_c00377{letter-spacing:5.312000pt;}
.ls3_c00377{letter-spacing:5.318400pt;}
.ls1_c00377{letter-spacing:5.337600pt;}
.ls10_c00377{letter-spacing:8.890112pt;}
.ls4_c00377{letter-spacing:48.768000pt;}
.ws0_c00377{word-spacing:-18.705024pt;}
.ws5_c00377{word-spacing:-15.671364pt;}
.ws4_c00377{word-spacing:-15.281879pt;}
.ws3_c00377{word-spacing:-14.825600pt;}
.ws1_c00377{word-spacing:-10.319360pt;}
.ws2_c00377{word-spacing:-8.896000pt;}
.ws6_c00377{word-spacing:0.000000pt;}
._a_c00377{margin-left:-9.477888pt;}
._9_c00377{margin-left:-8.396800pt;}
._c_c00377{margin-left:-3.049088pt;}
._b_c00377{margin-left:-2.046720pt;}
._3_c00377{margin-left:-1.048320pt;}
._1_c00377{width:0.907733pt;}
._d_c00377{width:3.066880pt;}
._8_c00377{width:3.968000pt;}
._2_c00377{width:5.504000pt;}
._4_c00377{width:6.400000pt;}
._0_c00377{width:12.224000pt;}
._5_c00377{width:14.272000pt;}
._7_c00377{width:16.256000pt;}
._6_c00377{width:36.864000pt;}
.fs4_c00377{font-size:32.000000pt;}
.fs2_c00377{font-size:37.120000pt;}
.fs7_c00377{font-size:43.539995pt;}
.fs3_c00377{font-size:49.920000pt;}
.fs5_c00377{font-size:52.480000pt;}
.fs8_c00377{font-size:53.333333pt;}
.fs6_c00377{font-size:54.095146pt;}
.fs0_c00377{font-size:64.000000pt;}
.fs1_c00377{font-size:65.969690pt;}
.y0_c00377{bottom:0.000000pt;}
.y2e_c00377{bottom:2.773333pt;}
.y2d_c00377{bottom:30.884071pt;}
.y1_c00377{bottom:48.000000pt;}
.y2c_c00377{bottom:49.320000pt;}
.y2b_c00377{bottom:54.760000pt;}
.y2a_c00377{bottom:64.680000pt;}
.y29_c00377{bottom:70.120000pt;}
.y28_c00377{bottom:80.360000pt;}
.y27_c00377{bottom:85.800000pt;}
.y26_c00377{bottom:95.723200pt;}
.y25_c00377{bottom:111.401600pt;}
.y23_c00377{bottom:127.076480pt;}
.y24_c00377{bottom:127.080000pt;}
.y22_c00377{bottom:142.440000pt;}
.y21_c00377{bottom:142.441600pt;}
.y20_c00377{bottom:158.120000pt;}
.y1f_c00377{bottom:179.240000pt;}
.y1e_c00377{bottom:202.920000pt;}
.y1d_c00377{bottom:248.360000pt;}
.y1c_c00377{bottom:266.920000pt;}
.y1b_c00377{bottom:285.800000pt;}
.y1a_c00377{bottom:304.360000pt;}
.y19_c00377{bottom:322.920000pt;}
.y18_c00377{bottom:354.920000pt;}
.y17_c00377{bottom:386.920000pt;}
.y16_c00377{bottom:418.920000pt;}
.y15_c00377{bottom:437.800000pt;}
.y14_c00377{bottom:469.800000pt;}
.y13_c00377{bottom:501.800000pt;}
.y12_c00377{bottom:520.360000pt;}
.y11_c00377{bottom:552.360000pt;}
.y10_c00377{bottom:584.360000pt;}
.yf_c00377{bottom:616.360000pt;}
.ye_c00377{bottom:648.360000pt;}
.yd_c00377{bottom:680.360000pt;}
.yc_c00377{bottom:698.920000pt;}
.yb_c00377{bottom:730.920000pt;}
.ya_c00377{bottom:749.800000pt;}
.y9_c00377{bottom:781.800000pt;}
.y8_c00377{bottom:813.800000pt;}
.y7_c00377{bottom:845.800000pt;}
.y6_c00377{bottom:864.360000pt;}
.y5_c00377{bottom:896.360000pt;}
.y4_c00377{bottom:928.360000pt;}
.y3_c00377{bottom:962.600000pt;}
.y2_c00377{bottom:1011.880000pt;}
.h9_c00377{height:17.116093pt;}
.h6_c00377{height:28.992000pt;}
.h7_c00377{height:41.761453pt;}
.h8_c00377{height:47.546880pt;}
.ha_c00377{height:50.346667pt;}
.h4_c00377{height:50.928601pt;}
.h3_c00377{height:57.984000pt;}
.h5_c00377{height:60.510720pt;}
.h2_c00377{height:1067.880000pt;}
.h0_c00377{height:1122.520000pt;}
.h1_c00377{height:1122.666667pt;}
.w3_c00377{width:14.826667pt;}
.w2_c00377{width:767.960000pt;}
.w0_c00377{width:793.720000pt;}
.w1_c00377{width:794.000000pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:12.880000pt;}
.x2_c00377{left:100.480133pt;}
.x1b_c00377{left:108.634400pt;}
.x9_c00377{left:124.477867pt;}
.x1c_c00377{left:130.834000pt;}
.x14_c00377{left:136.052400pt;}
.x1d_c00377{left:138.246800pt;}
.x18_c00377{left:151.585333pt;}
.x1e_c00377{left:168.576533pt;}
.xe_c00377{left:179.300800pt;}
.xf_c00377{left:190.836533pt;}
.x19_c00377{left:252.335867pt;}
.xa_c00377{left:273.920933pt;}
.x1a_c00377{left:278.959333pt;}
.x10_c00377{left:285.076533pt;}
.xb_c00377{left:287.248667pt;}
.x11_c00377{left:294.852133pt;}
.x4_c00377{left:296.972267pt;}
.xc_c00377{left:312.274800pt;}
.xd_c00377{left:328.274667pt;}
.x7_c00377{left:331.628000pt;}
.x5_c00377{left:351.503867pt;}
.x3_c00377{left:372.194667pt;}
.x17_c00377{left:446.999067pt;}
.x6_c00377{left:458.694400pt;}
.x12_c00377{left:463.133733pt;}
.x13_c00377{left:472.909467pt;}
.x8_c00377{left:581.415333pt;}
.x15_c00377{left:632.243867pt;}
.x16_c00377{left:658.867200pt;}
.x1f_c00377{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6845e4cfcc2a239fe2d5ce47.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.134000;font-style:normal;font-weight:normal;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_1bfeb584b8f1ed5a83740ddd.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;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:ff3_c00378;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff3_c00378{font-family:ff3_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:ff4_c00378;src:url('chunks/assets/font_a409eb405148e25fc04e7ea4.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00378{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v3_c00378{vertical-align:-24.480000px;}
.v0_c00378{vertical-align:0.000000px;}
.v1_c00378{vertical-align:24.480000px;}
.v2_c00378{vertical-align:30.240000px;}
.ls13_c00378{letter-spacing:0.000000px;}
.lsa_c00378{letter-spacing:0.236160px;}
.ls11_c00378{letter-spacing:0.265680px;}
.ls16_c00378{letter-spacing:0.273857px;}
.ls4_c00378{letter-spacing:0.295200px;}
.ls7_c00378{letter-spacing:0.317520px;}
.lsb_c00378{letter-spacing:0.318816px;}
.ls1_c00378{letter-spacing:0.326550px;}
.ls3_c00378{letter-spacing:0.327292px;}
.ls15_c00378{letter-spacing:0.328628px;}
.ls21_c00378{letter-spacing:0.371952px;}
.ls19_c00378{letter-spacing:0.492942px;}
.ls2_c00378{letter-spacing:0.494773px;}
.ls9_c00378{letter-spacing:0.501840px;}
.ls5_c00378{letter-spacing:0.531360px;}
.lsd_c00378{letter-spacing:0.533400px;}
.ls6_c00378{letter-spacing:0.537264px;}
.ls0_c00378{letter-spacing:0.547713px;}
.ls10_c00378{letter-spacing:0.576039px;}
.ls14_c00378{letter-spacing:0.584496px;}
.ls1c_c00378{letter-spacing:0.602485px;}
.ls18_c00378{letter-spacing:0.690768px;}
.ls17_c00378{letter-spacing:0.712027px;}
.ls1d_c00378{letter-spacing:0.797040px;}
.ls20_c00378{letter-spacing:0.821570px;}
.lsf_c00378{letter-spacing:0.865852px;}
.ls1b_c00378{letter-spacing:0.962352px;}
.ls1f_c00378{letter-spacing:5.335200px;}
.ls1e_c00378{letter-spacing:5.430672px;}
.lsc_c00378{letter-spacing:5.975400px;}
.ls12_c00378{letter-spacing:5.976000px;}
.lse_c00378{letter-spacing:6.012000px;}
.ls8_c00378{letter-spacing:19.589040px;}
.ls1a_c00378{letter-spacing:19.725264px;}
.sc__c00378{text-shadow:none;}
.sc1_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00378{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc1_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00378{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00378{word-spacing:-21.043152px;}
.ws7_c00378{word-spacing:-20.947680px;}
.ws8_c00378{word-spacing:-20.632021px;}
.ws9_c00378{word-spacing:-17.739827px;}
.wsa_c00378{word-spacing:-17.630284px;}
.ws4_c00378{word-spacing:-17.520742px;}
.ws0_c00378{word-spacing:-17.465970px;}
.ws1_c00378{word-spacing:-17.246885px;}
.ws3_c00378{word-spacing:-16.914960px;}
.ws6_c00378{word-spacing:-11.609280px;}
.ws2_c00378{word-spacing:-10.008000px;}
.wsb_c00378{word-spacing:0.000000px;}
._a_c00378{margin-left:-19.010880px;}
._7_c00378{margin-left:-1.121760px;}
._0_c00378{width:1.512000px;}
._3_c00378{width:3.168000px;}
._b_c00378{width:4.464000px;}
._4_c00378{width:6.336000px;}
._5_c00378{width:7.498080px;}
._6_c00378{width:8.501760px;}
._d_c00378{width:13.824000px;}
._1_c00378{width:15.408000px;}
._2_c00378{width:16.560000px;}
._8_c00378{width:18.302400px;}
._9_c00378{width:19.565856px;}
._c_c00378{width:29.376000px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs5_c00378{font-size:36.000000px;}
.fs8_c00378{font-size:41.760000px;}
.fs6_c00378{font-size:47.520000px;}
.fs4_c00378{font-size:48.982495px;}
.fs7_c00378{font-size:56.160000px;}
.fs9_c00378{font-size:57.888403px;}
.fs2_c00378{font-size:59.040000px;}
.fsa_c00378{font-size:60.000000px;}
.fs3_c00378{font-size:60.857039px;}
.fs0_c00378{font-size:72.000000px;}
.fs1_c00378{font-size:74.215901px;}
.y0_c00378{bottom:0.000000px;}
.y2e_c00378{bottom:3.120000px;}
.y2d_c00378{bottom:34.744580px;}
.y1_c00378{bottom:54.000000px;}
.y2c_c00378{bottom:61.605000px;}
.y2b_c00378{bottom:72.765000px;}
.y2a_c00378{bottom:78.885000px;}
.y29_c00378{bottom:105.525000px;}
.y28_c00378{bottom:189.045000px;}
.y27_c00378{bottom:209.925000px;}
.y26_c00378{bottom:245.925000px;}
.y25_c00378{bottom:281.925000px;}
.y24_c00378{bottom:317.925000px;}
.y23_c00378{bottom:339.165000px;}
.y22_c00378{bottom:360.045000px;}
.y21_c00378{bottom:380.925000px;}
.y20_c00378{bottom:402.165000px;}
.y1f_c00378{bottom:423.045000px;}
.y1e_c00378{bottom:459.045000px;}
.y1d_c00378{bottom:479.925000px;}
.y1c_c00378{bottom:515.925000px;}
.y1b_c00378{bottom:551.925000px;}
.y1a_c00378{bottom:580.365000px;}
.y19_c00378{bottom:605.205000px;}
.y18_c00378{bottom:605.206800px;}
.y17_c00378{bottom:622.845000px;}
.y16_c00378{bottom:622.846800px;}
.y15_c00378{bottom:640.485000px;}
.y14_c00378{bottom:640.488600px;}
.y13_c00378{bottom:665.329680px;}
.y12_c00378{bottom:690.525000px;}
.y11_c00378{bottom:715.725000px;}
.y10_c00378{bottom:744.525000px;}
.yf_c00378{bottom:772.965000px;}
.ye_c00378{bottom:801.764850px;}
.yd_c00378{bottom:829.845000px;}
.yc_c00378{bottom:865.845000px;}
.yb_c00378{bottom:901.845000px;}
.ya_c00378{bottom:923.085000px;}
.y9_c00378{bottom:959.085000px;}
.y8_c00378{bottom:979.965000px;}
.y7_c00378{bottom:1000.845000px;}
.y6_c00378{bottom:1022.085000px;}
.y5_c00378{bottom:1042.965000px;}
.y4_c00378{bottom:1063.845000px;}
.y3_c00378{bottom:1085.085000px;}
.y2_c00378{bottom:1138.365000px;}
.hb_c00378{height:19.255605px;}
.ha_c00378{height:32.616000px;}
.h7_c00378{height:46.981634px;}
.h5_c00378{height:47.988281px;}
.h6_c00378{height:53.490240px;}
.hc_c00378{height:56.640000px;}
.h8_c00378{height:57.096000px;}
.h4_c00378{height:57.294676px;}
.h3_c00378{height:65.232000px;}
.h9_c00378{height:68.074560px;}
.h2_c00378{height:1201.365000px;}
.h0_c00378{height:1262.835000px;}
.h1_c00378{height:1263.000000px;}
.w3_c00378{width:16.680000px;}
.w2_c00378{width:863.955000px;}
.w0_c00378{width:892.935000px;}
.w1_c00378{width:893.250000px;}
.x0_c00378{left:0.000000px;}
.x1_c00378{left:14.490000px;}
.x2_c00378{left:113.040150px;}
.x2d_c00378{left:119.034000px;}
.xb_c00378{left:128.051850px;}
.x23_c00378{left:137.204250px;}
.x17_c00378{left:147.223350px;}
.x2e_c00378{left:165.723600px;}
.x2a_c00378{left:180.053100px;}
.x18_c00378{left:194.756850px;}
.x19_c00378{left:203.096100px;}
.x2b_c00378{left:211.635450px;}
.xc_c00378{left:223.036800px;}
.xd_c00378{left:232.036800px;}
.x22_c00378{left:234.761700px;}
.x2c_c00378{left:254.655000px;}
.x1a_c00378{left:283.865850px;}
.x1b_c00378{left:295.209150px;}
.x2f_c00378{left:300.572700px;}
.xe_c00378{left:303.063750px;}
.xf_c00378{left:316.077450px;}
.x10_c00378{left:325.671450px;}
.x28_c00378{left:334.389750px;}
.x30_c00378{left:363.046200px;}
.x15_c00378{left:390.644100px;}
.x16_c00378{left:395.144100px;}
.x1c_c00378{left:400.996650px;}
.x11_c00378{left:405.637950px;}
.x12_c00378{left:410.137950px;}
.x1f_c00378{left:415.651950px;}
.x3_c00378{left:432.219300px;}
.x4_c00378{left:442.227150px;}
.x9_c00378{left:450.650700px;}
.x31_c00378{left:452.233200px;}
.x26_c00378{left:454.392600px;}
.xa_c00378{left:460.676550px;}
.x13_c00378{left:466.153200px;}
.x32_c00378{left:468.072450px;}
.x14_c00378{left:470.653200px;}
.x29_c00378{left:484.852200px;}
.x1d_c00378{left:492.573150px;}
.x24_c00378{left:498.053850px;}
.x33_c00378{left:523.076250px;}
.x5_c00378{left:525.299550px;}
.x6_c00378{left:535.325250px;}
.x1e_c00378{left:541.415400px;}
.x27_c00378{left:559.617450px;}
.x25_c00378{left:573.022650px;}
.x20_c00378{left:641.541900px;}
.x21_c00378{left:671.493150px;}
.x7_c00378{left:740.382150px;}
.x8_c00378{left:750.390000px;}
.x34_c00378{left:768.254608px;}
@media print{
.v3_c00378{vertical-align:-21.760000pt;}
.v0_c00378{vertical-align:0.000000pt;}
.v1_c00378{vertical-align:21.760000pt;}
.v2_c00378{vertical-align:26.880000pt;}
.ls13_c00378{letter-spacing:0.000000pt;}
.lsa_c00378{letter-spacing:0.209920pt;}
.ls11_c00378{letter-spacing:0.236160pt;}
.ls16_c00378{letter-spacing:0.243428pt;}
.ls4_c00378{letter-spacing:0.262400pt;}
.ls7_c00378{letter-spacing:0.282240pt;}
.lsb_c00378{letter-spacing:0.283392pt;}
.ls1_c00378{letter-spacing:0.290267pt;}
.ls3_c00378{letter-spacing:0.290926pt;}
.ls15_c00378{letter-spacing:0.292114pt;}
.ls21_c00378{letter-spacing:0.330624pt;}
.ls19_c00378{letter-spacing:0.438171pt;}
.ls2_c00378{letter-spacing:0.439798pt;}
.ls9_c00378{letter-spacing:0.446080pt;}
.ls5_c00378{letter-spacing:0.472320pt;}
.lsd_c00378{letter-spacing:0.474133pt;}
.ls6_c00378{letter-spacing:0.477568pt;}
.ls0_c00378{letter-spacing:0.486856pt;}
.ls10_c00378{letter-spacing:0.512035pt;}
.ls14_c00378{letter-spacing:0.519552pt;}
.ls1c_c00378{letter-spacing:0.535542pt;}
.ls18_c00378{letter-spacing:0.614016pt;}
.ls17_c00378{letter-spacing:0.632913pt;}
.ls1d_c00378{letter-spacing:0.708480pt;}
.ls20_c00378{letter-spacing:0.730284pt;}
.lsf_c00378{letter-spacing:0.769646pt;}
.ls1b_c00378{letter-spacing:0.855424pt;}
.ls1f_c00378{letter-spacing:4.742400pt;}
.ls1e_c00378{letter-spacing:4.827264pt;}
.lsc_c00378{letter-spacing:5.311467pt;}
.ls12_c00378{letter-spacing:5.312000pt;}
.lse_c00378{letter-spacing:5.344000pt;}
.ls8_c00378{letter-spacing:17.412480pt;}
.ls1a_c00378{letter-spacing:17.533568pt;}
.ws5_c00378{word-spacing:-18.705024pt;}
.ws7_c00378{word-spacing:-18.620160pt;}
.ws8_c00378{word-spacing:-18.339574pt;}
.ws9_c00378{word-spacing:-15.768735pt;}
.wsa_c00378{word-spacing:-15.671364pt;}
.ws4_c00378{word-spacing:-15.573992pt;}
.ws0_c00378{word-spacing:-15.525307pt;}
.ws1_c00378{word-spacing:-15.330564pt;}
.ws3_c00378{word-spacing:-15.035520pt;}
.ws6_c00378{word-spacing:-10.319360pt;}
.ws2_c00378{word-spacing:-8.896000pt;}
.wsb_c00378{word-spacing:0.000000pt;}
._a_c00378{margin-left:-16.898560pt;}
._7_c00378{margin-left:-0.997120pt;}
._0_c00378{width:1.344000pt;}
._3_c00378{width:2.816000pt;}
._b_c00378{width:3.968000pt;}
._4_c00378{width:5.632000pt;}
._5_c00378{width:6.664960pt;}
._6_c00378{width:7.557120pt;}
._d_c00378{width:12.288000pt;}
._1_c00378{width:13.696000pt;}
._2_c00378{width:14.720000pt;}
._8_c00378{width:16.268800pt;}
._9_c00378{width:17.391872pt;}
._c_c00378{width:26.112000pt;}
.fs5_c00378{font-size:32.000000pt;}
.fs8_c00378{font-size:37.120000pt;}
.fs6_c00378{font-size:42.240000pt;}
.fs4_c00378{font-size:43.539995pt;}
.fs7_c00378{font-size:49.920000pt;}
.fs9_c00378{font-size:51.456358pt;}
.fs2_c00378{font-size:52.480000pt;}
.fsa_c00378{font-size:53.333333pt;}
.fs3_c00378{font-size:54.095146pt;}
.fs0_c00378{font-size:64.000000pt;}
.fs1_c00378{font-size:65.969690pt;}
.y0_c00378{bottom:0.000000pt;}
.y2e_c00378{bottom:2.773333pt;}
.y2d_c00378{bottom:30.884071pt;}
.y1_c00378{bottom:48.000000pt;}
.y2c_c00378{bottom:54.760000pt;}
.y2b_c00378{bottom:64.680000pt;}
.y2a_c00378{bottom:70.120000pt;}
.y29_c00378{bottom:93.800000pt;}
.y28_c00378{bottom:168.040000pt;}
.y27_c00378{bottom:186.600000pt;}
.y26_c00378{bottom:218.600000pt;}
.y25_c00378{bottom:250.600000pt;}
.y24_c00378{bottom:282.600000pt;}
.y23_c00378{bottom:301.480000pt;}
.y22_c00378{bottom:320.040000pt;}
.y21_c00378{bottom:338.600000pt;}
.y20_c00378{bottom:357.480000pt;}
.y1f_c00378{bottom:376.040000pt;}
.y1e_c00378{bottom:408.040000pt;}
.y1d_c00378{bottom:426.600000pt;}
.y1c_c00378{bottom:458.600000pt;}
.y1b_c00378{bottom:490.600000pt;}
.y1a_c00378{bottom:515.880000pt;}
.y19_c00378{bottom:537.960000pt;}
.y18_c00378{bottom:537.961600pt;}
.y17_c00378{bottom:553.640000pt;}
.y16_c00378{bottom:553.641600pt;}
.y15_c00378{bottom:569.320000pt;}
.y14_c00378{bottom:569.323200pt;}
.y13_c00378{bottom:591.404160pt;}
.y12_c00378{bottom:613.800000pt;}
.y11_c00378{bottom:636.200000pt;}
.y10_c00378{bottom:661.800000pt;}
.yf_c00378{bottom:687.080000pt;}
.ye_c00378{bottom:712.679867pt;}
.yd_c00378{bottom:737.640000pt;}
.yc_c00378{bottom:769.640000pt;}
.yb_c00378{bottom:801.640000pt;}
.ya_c00378{bottom:820.520000pt;}
.y9_c00378{bottom:852.520000pt;}
.y8_c00378{bottom:871.080000pt;}
.y7_c00378{bottom:889.640000pt;}
.y6_c00378{bottom:908.520000pt;}
.y5_c00378{bottom:927.080000pt;}
.y4_c00378{bottom:945.640000pt;}
.y3_c00378{bottom:964.520000pt;}
.y2_c00378{bottom:1011.880000pt;}
.hb_c00378{height:17.116093pt;}
.ha_c00378{height:28.992000pt;}
.h7_c00378{height:41.761453pt;}
.h5_c00378{height:42.656250pt;}
.h6_c00378{height:47.546880pt;}
.hc_c00378{height:50.346667pt;}
.h8_c00378{height:50.752000pt;}
.h4_c00378{height:50.928601pt;}
.h3_c00378{height:57.984000pt;}
.h9_c00378{height:60.510720pt;}
.h2_c00378{height:1067.880000pt;}
.h0_c00378{height:1122.520000pt;}
.h1_c00378{height:1122.666667pt;}
.w3_c00378{width:14.826667pt;}
.w2_c00378{width:767.960000pt;}
.w0_c00378{width:793.720000pt;}
.w1_c00378{width:794.000000pt;}
.x0_c00378{left:0.000000pt;}
.x1_c00378{left:12.880000pt;}
.x2_c00378{left:100.480133pt;}
.x2d_c00378{left:105.808000pt;}
.xb_c00378{left:113.823867pt;}
.x23_c00378{left:121.959333pt;}
.x17_c00378{left:130.865200pt;}
.x2e_c00378{left:147.309867pt;}
.x2a_c00378{left:160.047200pt;}
.x18_c00378{left:173.117200pt;}
.x19_c00378{left:180.529867pt;}
.x2b_c00378{left:188.120400pt;}
.xc_c00378{left:198.254933pt;}
.xd_c00378{left:206.254933pt;}
.x22_c00378{left:208.677067pt;}
.x2c_c00378{left:226.360000pt;}
.x1a_c00378{left:252.325200pt;}
.x1b_c00378{left:262.408133pt;}
.x2f_c00378{left:267.175733pt;}
.xe_c00378{left:269.390000pt;}
.xf_c00378{left:280.957733pt;}
.x10_c00378{left:289.485733pt;}
.x28_c00378{left:297.235333pt;}
.x30_c00378{left:322.707733pt;}
.x15_c00378{left:347.239200pt;}
.x16_c00378{left:351.239200pt;}
.x1c_c00378{left:356.441467pt;}
.x11_c00378{left:360.567067pt;}
.x12_c00378{left:364.567067pt;}
.x1f_c00378{left:369.468400pt;}
.x3_c00378{left:384.194933pt;}
.x4_c00378{left:393.090800pt;}
.x9_c00378{left:400.578400pt;}
.x31_c00378{left:401.985067pt;}
.x26_c00378{left:403.904533pt;}
.xa_c00378{left:409.490267pt;}
.x13_c00378{left:414.358400pt;}
.x32_c00378{left:416.064400pt;}
.x14_c00378{left:418.358400pt;}
.x29_c00378{left:430.979733pt;}
.x1d_c00378{left:437.842800pt;}
.x24_c00378{left:442.714533pt;}
.x33_c00378{left:464.956667pt;}
.x5_c00378{left:466.932933pt;}
.x6_c00378{left:475.844667pt;}
.x1e_c00378{left:481.258133pt;}
.x27_c00378{left:497.437733pt;}
.x25_c00378{left:509.353467pt;}
.x20_c00378{left:570.259467pt;}
.x21_c00378{left:596.882800pt;}
.x7_c00378{left:658.117467pt;}
.x8_c00378{left:667.013333pt;}
.x34_c00378{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35908c4263ce9e6629a9163b.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;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_c00379;src:url('chunks/assets/font_69f33fb9753e7b2c1a9dc604.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:0.781000;font-style:normal;font-weight:normal;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_016e208646d00d8f74e92577.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00379{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00379{letter-spacing:0.000000px;}
.ls7_c00379{letter-spacing:0.239760px;}
.ls0_c00379{letter-spacing:0.245160px;}
.ls3_c00379{letter-spacing:0.245778px;}
.ls2_c00379{letter-spacing:0.246768px;}
.ls1_c00379{letter-spacing:0.247386px;}
.ls6_c00379{letter-spacing:0.399600px;}
.ls4_c00379{letter-spacing:5.976000px;}
.sc__c00379{text-shadow:none;}
.sc1_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00379{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc1_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00379{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00379{word-spacing:-15.051600px;}
.ws1_c00379{word-spacing:0.000000px;}
._0_c00379{margin-left:-1.118880px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs3_c00379{font-size:43.045223px;}
.fs1_c00379{font-size:53.280000px;}
.fs2_c00379{font-size:54.919767px;}
.fs4_c00379{font-size:60.000000px;}
.fs0_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y22_c00379{bottom:3.120000px;}
.y1f_c00379{bottom:34.560000px;}
.y21_c00379{bottom:34.744580px;}
.y1_c00379{bottom:54.000000px;}
.y1d_c00379{bottom:148.725000px;}
.y1c_c00379{bottom:184.725000px;}
.y1b_c00379{bottom:220.725000px;}
.y20_c00379{bottom:245.565000px;}
.y1a_c00379{bottom:256.725000px;}
.y19_c00379{bottom:292.725000px;}
.y18_c00379{bottom:328.725000px;}
.y17_c00379{bottom:364.725000px;}
.y16_c00379{bottom:400.725000px;}
.y15_c00379{bottom:436.725000px;}
.y14_c00379{bottom:472.725000px;}
.y13_c00379{bottom:509.085000px;}
.y12_c00379{bottom:545.085000px;}
.y11_c00379{bottom:581.085000px;}
.y10_c00379{bottom:617.085000px;}
.yf_c00379{bottom:653.085000px;}
.ye_c00379{bottom:689.085000px;}
.y1e_c00379{bottom:704.565000px;}
.yd_c00379{bottom:725.085000px;}
.yc_c00379{bottom:761.085000px;}
.yb_c00379{bottom:797.085000px;}
.ya_c00379{bottom:833.085000px;}
.y9_c00379{bottom:869.085000px;}
.y8_c00379{bottom:905.085000px;}
.y7_c00379{bottom:941.085000px;}
.y6_c00379{bottom:977.085000px;}
.y5_c00379{bottom:1013.085000px;}
.y4_c00379{bottom:1049.085000px;}
.y3_c00379{bottom:1085.085000px;}
.y2_c00379{bottom:1138.365000px;}
.h7_c00379{height:19.255605px;}
.h5_c00379{height:41.132160px;}
.h6_c00379{height:42.398060px;}
.h4_c00379{height:47.160000px;}
.h3_c00379{height:55.584000px;}
.h8_c00379{height:56.640000px;}
.h2_c00379{height:1201.365000px;}
.h0_c00379{height:1262.835000px;}
.h1_c00379{height:1263.000000px;}
.w4_c00379{width:16.680000px;}
.w3_c00379{width:644.040000px;}
.w2_c00379{width:863.955000px;}
.w0_c00379{width:892.935000px;}
.w1_c00379{width:893.250000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:14.490000px;}
.x2_c00379{left:113.040150px;}
.x3_c00379{left:130.050000px;}
.x4_c00379{left:215.982900px;}
.x5_c00379{left:393.787350px;}
.x6_c00379{left:420.243600px;}
.x7_c00379{left:768.254608px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls5_c00379{letter-spacing:0.000000pt;}
.ls7_c00379{letter-spacing:0.213120pt;}
.ls0_c00379{letter-spacing:0.217920pt;}
.ls3_c00379{letter-spacing:0.218470pt;}
.ls2_c00379{letter-spacing:0.219349pt;}
.ls1_c00379{letter-spacing:0.219899pt;}
.ls6_c00379{letter-spacing:0.355200pt;}
.ls4_c00379{letter-spacing:5.312000pt;}
.ws0_c00379{word-spacing:-13.379200pt;}
.ws1_c00379{word-spacing:0.000000pt;}
._0_c00379{margin-left:-0.994560pt;}
.fs3_c00379{font-size:38.262420pt;}
.fs1_c00379{font-size:47.360000pt;}
.fs2_c00379{font-size:48.817571pt;}
.fs4_c00379{font-size:53.333333pt;}
.fs0_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y22_c00379{bottom:2.773333pt;}
.y1f_c00379{bottom:30.720000pt;}
.y21_c00379{bottom:30.884071pt;}
.y1_c00379{bottom:48.000000pt;}
.y1d_c00379{bottom:132.200000pt;}
.y1c_c00379{bottom:164.200000pt;}
.y1b_c00379{bottom:196.200000pt;}
.y20_c00379{bottom:218.280000pt;}
.y1a_c00379{bottom:228.200000pt;}
.y19_c00379{bottom:260.200000pt;}
.y18_c00379{bottom:292.200000pt;}
.y17_c00379{bottom:324.200000pt;}
.y16_c00379{bottom:356.200000pt;}
.y15_c00379{bottom:388.200000pt;}
.y14_c00379{bottom:420.200000pt;}
.y13_c00379{bottom:452.520000pt;}
.y12_c00379{bottom:484.520000pt;}
.y11_c00379{bottom:516.520000pt;}
.y10_c00379{bottom:548.520000pt;}
.yf_c00379{bottom:580.520000pt;}
.ye_c00379{bottom:612.520000pt;}
.y1e_c00379{bottom:626.280000pt;}
.yd_c00379{bottom:644.520000pt;}
.yc_c00379{bottom:676.520000pt;}
.yb_c00379{bottom:708.520000pt;}
.ya_c00379{bottom:740.520000pt;}
.y9_c00379{bottom:772.520000pt;}
.y8_c00379{bottom:804.520000pt;}
.y7_c00379{bottom:836.520000pt;}
.y6_c00379{bottom:868.520000pt;}
.y5_c00379{bottom:900.520000pt;}
.y4_c00379{bottom:932.520000pt;}
.y3_c00379{bottom:964.520000pt;}
.y2_c00379{bottom:1011.880000pt;}
.h7_c00379{height:17.116093pt;}
.h5_c00379{height:36.561920pt;}
.h6_c00379{height:37.687165pt;}
.h4_c00379{height:41.920000pt;}
.h3_c00379{height:49.408000pt;}
.h8_c00379{height:50.346667pt;}
.h2_c00379{height:1067.880000pt;}
.h0_c00379{height:1122.520000pt;}
.h1_c00379{height:1122.666667pt;}
.w4_c00379{width:14.826667pt;}
.w3_c00379{width:572.480000pt;}
.w2_c00379{width:767.960000pt;}
.w0_c00379{width:793.720000pt;}
.w1_c00379{width:794.000000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:12.880000pt;}
.x2_c00379{left:100.480133pt;}
.x3_c00379{left:115.600000pt;}
.x4_c00379{left:191.984800pt;}
.x5_c00379{left:350.033200pt;}
.x6_c00379{left:373.549867pt;}
.x7_c00379{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d148b9f87719b6827c956344.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.134000;font-style:normal;font-weight:normal;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_0f2112d8d70ff2a4cdf560b5.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;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:ff3_c00380;src:url('chunks/assets/font_56962b4c776ce315218bef3e.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:0.920000;font-style:normal;font-weight:normal;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_23392f79eb9e76c5a23ec4a2.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;}
@font-face{font-family:ff5_c00380;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff5_c00380{font-family:ff5_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:ff6_c00380;src:url('chunks/assets/font_b31c9990c92e9797bae6d6ff.woff2')format("woff");}.ff6_c00380{font-family:ff6_c00380;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00380{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00380{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00380{vertical-align:-30.240000px;}
.v0_c00380{vertical-align:0.000000px;}
.v1_c00380{vertical-align:30.240000px;}
.ls14_c00380{letter-spacing:0.000000px;}
.ls1c_c00380{letter-spacing:0.036000px;}
.ls10_c00380{letter-spacing:0.133440px;}
.ls1b_c00380{letter-spacing:0.265680px;}
.ls9_c00380{letter-spacing:0.295200px;}
.lsc_c00380{letter-spacing:0.327292px;}
.lse_c00380{letter-spacing:0.328900px;}
.ls1a_c00380{letter-spacing:0.492942px;}
.lsd_c00380{letter-spacing:0.494773px;}
.lsb_c00380{letter-spacing:0.513648px;}
.lsf_c00380{letter-spacing:0.519240px;}
.lsa_c00380{letter-spacing:0.531360px;}
.ls12_c00380{letter-spacing:0.576039px;}
.ls11_c00380{letter-spacing:0.865852px;}
.ls19_c00380{letter-spacing:0.962352px;}
.ls17_c00380{letter-spacing:4.964544px;}
.ls8_c00380{letter-spacing:5.166720px;}
.ls18_c00380{letter-spacing:5.245344px;}
.ls16_c00380{letter-spacing:5.430672px;}
.ls0_c00380{letter-spacing:5.976000px;}
.ls7_c00380{letter-spacing:5.978400px;}
.ls13_c00380{letter-spacing:6.159920px;}
.ls5_c00380{letter-spacing:6.617376px;}
.ls2_c00380{letter-spacing:6.671808px;}
.ls6_c00380{letter-spacing:6.853096px;}
.ls4_c00380{letter-spacing:8.285880px;}
.ls3_c00380{letter-spacing:8.320560px;}
.ls15_c00380{letter-spacing:8.496576px;}
.ls1_c00380{letter-spacing:8.658960px;}
.sc__c00380{text-shadow:none;}
.sc1_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00380{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc1_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00380{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00380{word-spacing:-34.917696px;}
.ws1_c00380{word-spacing:-29.135679px;}
.ws2_c00380{word-spacing:-20.857824px;}
.ws3_c00380{word-spacing:-20.632021px;}
.ws4_c00380{word-spacing:0.000000px;}
._3_c00380{margin-left:-1.179360px;}
._2_c00380{width:1.152000px;}
._6_c00380{width:2.496000px;}
._7_c00380{width:4.320000px;}
._0_c00380{width:5.976000px;}
._5_c00380{width:7.234430px;}
._1_c00380{width:8.268480px;}
._4_c00380{width:14.904000px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs9_c00380{font-size:41.760000px;}
.fs8_c00380{font-size:48.982495px;}
.fs5_c00380{font-size:56.160000px;}
.fsa_c00380{font-size:57.888403px;}
.fs6_c00380{font-size:59.040000px;}
.fsb_c00380{font-size:60.000000px;}
.fs7_c00380{font-size:60.857039px;}
.fs0_c00380{font-size:72.000000px;}
.fs1_c00380{font-size:74.215901px;}
.fs3_c00380{font-size:77.760000px;}
.fs4_c00380{font-size:80.153173px;}
.fs2_c00380{font-size:95.040000px;}
.y0_c00380{bottom:0.000000px;}
.y20_c00380{bottom:3.120000px;}
.y1f_c00380{bottom:34.744580px;}
.y1_c00380{bottom:54.000000px;}
.y1e_c00380{bottom:55.485000px;}
.y1d_c00380{bottom:63.045000px;}
.y1c_c00380{bottom:91.485000px;}
.y1b_c00380{bottom:331.965000px;}
.y1a_c00380{bottom:352.845000px;}
.y19_c00380{bottom:373.725000px;}
.y18_c00380{bottom:394.965000px;}
.y17_c00380{bottom:430.965000px;}
.y16_c00380{bottom:470.205000px;}
.y15_c00380{bottom:509.085000px;}
.y14_c00380{bottom:545.085000px;}
.y12_c00380{bottom:580.721040px;}
.y13_c00380{bottom:580.725000px;}
.y11_c00380{bottom:598.005000px;}
.y10_c00380{bottom:630.765000px;}
.yf_c00380{bottom:669.285000px;}
.ye_c00380{bottom:706.005000px;}
.yd_c00380{bottom:742.005000px;}
.yc_c00380{bottom:778.005000px;}
.yb_c00380{bottom:814.005000px;}
.ya_c00380{bottom:850.005000px;}
.y9_c00380{bottom:886.005000px;}
.y8_c00380{bottom:922.005000px;}
.y7_c00380{bottom:942.885000px;}
.y6_c00380{bottom:980.681400px;}
.y5_c00380{bottom:1015.965000px;}
.y4_c00380{bottom:1044.045000px;}
.y3_c00380{bottom:1079.685000px;}
.y2_c00380{bottom:1138.365000px;}
.hb_c00380{height:19.255605px;}
.ha_c00380{height:37.834560px;}
.h8_c00380{height:46.981634px;}
.h7_c00380{height:53.490240px;}
.hc_c00380{height:56.640000px;}
.h4_c00380{height:57.294676px;}
.h6_c00380{height:61.878250px;}
.h3_c00380{height:65.232000px;}
.h9_c00380{height:68.074560px;}
.h5_c00380{height:86.106240px;}
.h2_c00380{height:1201.365000px;}
.h0_c00380{height:1262.835000px;}
.h1_c00380{height:1263.000000px;}
.w3_c00380{width:16.680000px;}
.w2_c00380{width:863.955000px;}
.w0_c00380{width:892.935000px;}
.w1_c00380{width:893.250000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:14.490000px;}
.x2_c00380{left:113.040150px;}
.x19_c00380{left:123.881850px;}
.xa_c00380{left:141.047550px;}
.x6_c00380{left:163.060740px;}
.x15_c00380{left:170.648400px;}
.xb_c00380{left:193.066800px;}
.xd_c00380{left:219.058200px;}
.x10_c00380{left:263.109000px;}
.x11_c00380{left:297.229950px;}
.x12_c00380{left:325.674150px;}
.x13_c00380{left:354.721800px;}
.x5_c00380{left:373.524450px;}
.x7_c00380{left:382.982250px;}
.x16_c00380{left:385.133100px;}
.xc_c00380{left:420.213150px;}
.x9_c00380{left:431.724690px;}
.x14_c00380{left:454.426050px;}
.x8_c00380{left:471.784050px;}
.x3_c00380{left:482.339400px;}
.x4_c00380{left:543.322650px;}
.xe_c00380{left:591.582600px;}
.xf_c00380{left:609.072450px;}
.x17_c00380{left:720.420750px;}
.x18_c00380{left:750.390000px;}
.x1a_c00380{left:768.254608px;}
@media print{
.v2_c00380{vertical-align:-26.880000pt;}
.v0_c00380{vertical-align:0.000000pt;}
.v1_c00380{vertical-align:26.880000pt;}
.ls14_c00380{letter-spacing:0.000000pt;}
.ls1c_c00380{letter-spacing:0.032000pt;}
.ls10_c00380{letter-spacing:0.118613pt;}
.ls1b_c00380{letter-spacing:0.236160pt;}
.ls9_c00380{letter-spacing:0.262400pt;}
.lsc_c00380{letter-spacing:0.290926pt;}
.lse_c00380{letter-spacing:0.292356pt;}
.ls1a_c00380{letter-spacing:0.438171pt;}
.lsd_c00380{letter-spacing:0.439798pt;}
.lsb_c00380{letter-spacing:0.456576pt;}
.lsf_c00380{letter-spacing:0.461547pt;}
.lsa_c00380{letter-spacing:0.472320pt;}
.ls12_c00380{letter-spacing:0.512035pt;}
.ls11_c00380{letter-spacing:0.769646pt;}
.ls19_c00380{letter-spacing:0.855424pt;}
.ls17_c00380{letter-spacing:4.412928pt;}
.ls8_c00380{letter-spacing:4.592640pt;}
.ls18_c00380{letter-spacing:4.662528pt;}
.ls16_c00380{letter-spacing:4.827264pt;}
.ls0_c00380{letter-spacing:5.312000pt;}
.ls7_c00380{letter-spacing:5.314133pt;}
.ls13_c00380{letter-spacing:5.475484pt;}
.ls5_c00380{letter-spacing:5.882112pt;}
.ls2_c00380{letter-spacing:5.930496pt;}
.ls6_c00380{letter-spacing:6.091641pt;}
.ls4_c00380{letter-spacing:7.365227pt;}
.ls3_c00380{letter-spacing:7.396053pt;}
.ls15_c00380{letter-spacing:7.552512pt;}
.ls1_c00380{letter-spacing:7.696853pt;}
.ws0_c00380{word-spacing:-31.037952pt;}
.ws1_c00380{word-spacing:-25.898381pt;}
.ws2_c00380{word-spacing:-18.540288pt;}
.ws3_c00380{word-spacing:-18.339574pt;}
.ws4_c00380{word-spacing:0.000000pt;}
._3_c00380{margin-left:-1.048320pt;}
._2_c00380{width:1.024000pt;}
._6_c00380{width:2.218667pt;}
._7_c00380{width:3.840000pt;}
._0_c00380{width:5.312000pt;}
._5_c00380{width:6.430605pt;}
._1_c00380{width:7.349760pt;}
._4_c00380{width:13.248000pt;}
.fs9_c00380{font-size:37.120000pt;}
.fs8_c00380{font-size:43.539995pt;}
.fs5_c00380{font-size:49.920000pt;}
.fsa_c00380{font-size:51.456358pt;}
.fs6_c00380{font-size:52.480000pt;}
.fsb_c00380{font-size:53.333333pt;}
.fs7_c00380{font-size:54.095146pt;}
.fs0_c00380{font-size:64.000000pt;}
.fs1_c00380{font-size:65.969690pt;}
.fs3_c00380{font-size:69.120000pt;}
.fs4_c00380{font-size:71.247265pt;}
.fs2_c00380{font-size:84.480000pt;}
.y0_c00380{bottom:0.000000pt;}
.y20_c00380{bottom:2.773333pt;}
.y1f_c00380{bottom:30.884071pt;}
.y1_c00380{bottom:48.000000pt;}
.y1e_c00380{bottom:49.320000pt;}
.y1d_c00380{bottom:56.040000pt;}
.y1c_c00380{bottom:81.320000pt;}
.y1b_c00380{bottom:295.080000pt;}
.y1a_c00380{bottom:313.640000pt;}
.y19_c00380{bottom:332.200000pt;}
.y18_c00380{bottom:351.080000pt;}
.y17_c00380{bottom:383.080000pt;}
.y16_c00380{bottom:417.960000pt;}
.y15_c00380{bottom:452.520000pt;}
.y14_c00380{bottom:484.520000pt;}
.y12_c00380{bottom:516.196480pt;}
.y13_c00380{bottom:516.200000pt;}
.y11_c00380{bottom:531.560000pt;}
.y10_c00380{bottom:560.680000pt;}
.yf_c00380{bottom:594.920000pt;}
.ye_c00380{bottom:627.560000pt;}
.yd_c00380{bottom:659.560000pt;}
.yc_c00380{bottom:691.560000pt;}
.yb_c00380{bottom:723.560000pt;}
.ya_c00380{bottom:755.560000pt;}
.y9_c00380{bottom:787.560000pt;}
.y8_c00380{bottom:819.560000pt;}
.y7_c00380{bottom:838.120000pt;}
.y6_c00380{bottom:871.716800pt;}
.y5_c00380{bottom:903.080000pt;}
.y4_c00380{bottom:928.040000pt;}
.y3_c00380{bottom:959.720000pt;}
.y2_c00380{bottom:1011.880000pt;}
.hb_c00380{height:17.116093pt;}
.ha_c00380{height:33.630720pt;}
.h8_c00380{height:41.761453pt;}
.h7_c00380{height:47.546880pt;}
.hc_c00380{height:50.346667pt;}
.h4_c00380{height:50.928601pt;}
.h6_c00380{height:55.002889pt;}
.h3_c00380{height:57.984000pt;}
.h9_c00380{height:60.510720pt;}
.h5_c00380{height:76.538880pt;}
.h2_c00380{height:1067.880000pt;}
.h0_c00380{height:1122.520000pt;}
.h1_c00380{height:1122.666667pt;}
.w3_c00380{width:14.826667pt;}
.w2_c00380{width:767.960000pt;}
.w0_c00380{width:793.720000pt;}
.w1_c00380{width:794.000000pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:12.880000pt;}
.x2_c00380{left:100.480133pt;}
.x19_c00380{left:110.117200pt;}
.xa_c00380{left:125.375600pt;}
.x6_c00380{left:144.942880pt;}
.x15_c00380{left:151.687467pt;}
.xb_c00380{left:171.614933pt;}
.xd_c00380{left:194.718400pt;}
.x10_c00380{left:233.874667pt;}
.x11_c00380{left:264.204400pt;}
.x12_c00380{left:289.488133pt;}
.x13_c00380{left:315.308267pt;}
.x5_c00380{left:332.021733pt;}
.x7_c00380{left:340.428667pt;}
.x16_c00380{left:342.340533pt;}
.xc_c00380{left:373.522800pt;}
.x9_c00380{left:383.755280pt;}
.x14_c00380{left:403.934267pt;}
.x8_c00380{left:419.363600pt;}
.x3_c00380{left:428.746133pt;}
.x4_c00380{left:482.953467pt;}
.xe_c00380{left:525.851200pt;}
.xf_c00380{left:541.397733pt;}
.x17_c00380{left:640.374000pt;}
.x18_c00380{left:667.013333pt;}
.x1a_c00380{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d59673e309b7575e6bd34725.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.134000;font-style:normal;font-weight:normal;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_1e4f5be4673c0b4e275ed29f.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;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:ff3_c00381;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_fe6d88468b075e1c8c3c733f.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00381{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00381{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00381{vertical-align:-24.480000px;}
.v0_c00381{vertical-align:0.000000px;}
.v1_c00381{vertical-align:30.240000px;}
.lsa_c00381{letter-spacing:0.000000px;}
.ls2_c00381{letter-spacing:0.128640px;}
.ls12_c00381{letter-spacing:0.239760px;}
.lsf_c00381{letter-spacing:0.265680px;}
.ls10_c00381{letter-spacing:0.273857px;}
.ls5_c00381{letter-spacing:0.295200px;}
.ls7_c00381{letter-spacing:0.304285px;}
.ls11_c00381{letter-spacing:0.399600px;}
.ls8_c00381{letter-spacing:0.411898px;}
.ls4_c00381{letter-spacing:0.531360px;}
.ls3_c00381{letter-spacing:0.547713px;}
.ls6_c00381{letter-spacing:0.566040px;}
.lse_c00381{letter-spacing:0.690768px;}
.lsd_c00381{letter-spacing:0.696672px;}
.lsc_c00381{letter-spacing:5.335200px;}
.lsb_c00381{letter-spacing:5.385744px;}
.ls0_c00381{letter-spacing:5.976000px;}
.ls1_c00381{letter-spacing:6.003000px;}
.ls9_c00381{letter-spacing:6.159920px;}
.sc__c00381{text-shadow:none;}
.sc1_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00381{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc1_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00381{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00381{word-spacing:-20.016000px;}
.ws1_c00381{word-spacing:-17.465970px;}
.ws2_c00381{word-spacing:-16.944480px;}
.ws4_c00381{word-spacing:-15.679593px;}
.ws5_c00381{word-spacing:-15.051600px;}
.ws3_c00381{word-spacing:-10.008000px;}
.ws6_c00381{word-spacing:0.000000px;}
._1_c00381{margin-left:-1.347840px;}
._2_c00381{width:1.121760px;}
._4_c00381{width:2.167200px;}
._6_c00381{width:4.536000px;}
._0_c00381{width:5.976000px;}
._8_c00381{width:11.376000px;}
._7_c00381{width:13.896000px;}
._3_c00381{width:15.480000px;}
._5_c00381{width:22.536000px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs6_c00381{font-size:36.000000px;}
.fs3_c00381{font-size:41.760000px;}
.fs7_c00381{font-size:53.280000px;}
.fs8_c00381{font-size:54.919767px;}
.fs2_c00381{font-size:56.160000px;}
.fs4_c00381{font-size:59.040000px;}
.fs9_c00381{font-size:60.000000px;}
.fs5_c00381{font-size:60.857039px;}
.fs0_c00381{font-size:72.000000px;}
.fs1_c00381{font-size:74.215901px;}
.y0_c00381{bottom:0.000000px;}
.y22_c00381{bottom:3.120000px;}
.y20_c00381{bottom:14.040000px;}
.y21_c00381{bottom:34.744580px;}
.y1_c00381{bottom:54.000000px;}
.y1e_c00381{bottom:61.605000px;}
.y1d_c00381{bottom:72.765000px;}
.y1c_c00381{bottom:78.885000px;}
.y1b_c00381{bottom:105.525000px;}
.y1a_c00381{bottom:403.245000px;}
.y19_c00381{bottom:439.245000px;}
.y1f_c00381{bottom:469.125000px;}
.y18_c00381{bottom:475.245000px;}
.y17_c00381{bottom:511.245000px;}
.y16_c00381{bottom:547.245000px;}
.y15_c00381{bottom:583.245000px;}
.y14_c00381{bottom:604.125000px;}
.y13_c00381{bottom:625.005000px;}
.y12_c00381{bottom:646.245000px;}
.y11_c00381{bottom:667.125000px;}
.y10_c00381{bottom:688.005000px;}
.yf_c00381{bottom:709.245000px;}
.ye_c00381{bottom:730.125000px;}
.yd_c00381{bottom:766.125000px;}
.yc_c00381{bottom:795.285000px;}
.yb_c00381{bottom:823.725000px;}
.ya_c00381{bottom:851.805000px;}
.y9_c00381{bottom:887.805000px;}
.y8_c00381{bottom:923.801040px;}
.y7_c00381{bottom:941.085000px;}
.y6_c00381{bottom:973.845000px;}
.y5_c00381{bottom:1012.365000px;}
.y4_c00381{bottom:1049.085000px;}
.y3_c00381{bottom:1085.085000px;}
.y2_c00381{bottom:1138.365000px;}
.hd_c00381{height:19.255605px;}
.ha_c00381{height:26.640000px;}
.h9_c00381{height:32.616000px;}
.hc_c00381{height:42.398060px;}
.h7_c00381{height:46.981634px;}
.h8_c00381{height:47.988281px;}
.hb_c00381{height:48.271680px;}
.h6_c00381{height:53.490240px;}
.he_c00381{height:56.640000px;}
.h4_c00381{height:57.294676px;}
.h3_c00381{height:65.232000px;}
.h5_c00381{height:68.074560px;}
.h2_c00381{height:1201.365000px;}
.h0_c00381{height:1262.835000px;}
.h1_c00381{height:1263.000000px;}
.w4_c00381{width:16.680000px;}
.w3_c00381{width:357.840000px;}
.w2_c00381{width:863.955000px;}
.w0_c00381{width:892.935000px;}
.w1_c00381{width:893.250000px;}
.x0_c00381{left:0.000000px;}
.x19_c00381{left:3.240150px;}
.x1_c00381{left:14.490000px;}
.x2_c00381{left:113.040150px;}
.x11_c00381{left:119.034000px;}
.x15_c00381{left:122.213700px;}
.x12_c00381{left:143.749500px;}
.x16_c00381{left:147.202950px;}
.x17_c00381{left:155.542200px;}
.x10_c00381{left:217.391550px;}
.x1a_c00381{left:232.074450px;}
.x1b_c00381{left:254.564850px;}
.x18_c00381{left:286.290000px;}
.x8_c00381{left:325.674150px;}
.xb_c00381{left:340.694850px;}
.xc_c00381{left:349.694850px;}
.xd_c00381{left:365.696400px;}
.xe_c00381{left:374.696400px;}
.x9_c00381{left:384.667950px;}
.xa_c00381{left:393.667950px;}
.x5_c00381{left:420.213150px;}
.x6_c00381{left:473.656050px;}
.x3_c00381{left:482.339400px;}
.x7_c00381{left:498.645300px;}
.x4_c00381{left:543.322650px;}
.xf_c00381{left:655.405500px;}
.x13_c00381{left:736.386150px;}
.x14_c00381{left:750.390000px;}
.x1c_c00381{left:768.254608px;}
@media print{
.v2_c00381{vertical-align:-21.760000pt;}
.v0_c00381{vertical-align:0.000000pt;}
.v1_c00381{vertical-align:26.880000pt;}
.lsa_c00381{letter-spacing:0.000000pt;}
.ls2_c00381{letter-spacing:0.114347pt;}
.ls12_c00381{letter-spacing:0.213120pt;}
.lsf_c00381{letter-spacing:0.236160pt;}
.ls10_c00381{letter-spacing:0.243428pt;}
.ls5_c00381{letter-spacing:0.262400pt;}
.ls7_c00381{letter-spacing:0.270476pt;}
.ls11_c00381{letter-spacing:0.355200pt;}
.ls8_c00381{letter-spacing:0.366132pt;}
.ls4_c00381{letter-spacing:0.472320pt;}
.ls3_c00381{letter-spacing:0.486856pt;}
.ls6_c00381{letter-spacing:0.503147pt;}
.lse_c00381{letter-spacing:0.614016pt;}
.lsd_c00381{letter-spacing:0.619264pt;}
.lsc_c00381{letter-spacing:4.742400pt;}
.lsb_c00381{letter-spacing:4.787328pt;}
.ls0_c00381{letter-spacing:5.312000pt;}
.ls1_c00381{letter-spacing:5.336000pt;}
.ls9_c00381{letter-spacing:5.475484pt;}
.ws0_c00381{word-spacing:-17.792000pt;}
.ws1_c00381{word-spacing:-15.525307pt;}
.ws2_c00381{word-spacing:-15.061760pt;}
.ws4_c00381{word-spacing:-13.937416pt;}
.ws5_c00381{word-spacing:-13.379200pt;}
.ws3_c00381{word-spacing:-8.896000pt;}
.ws6_c00381{word-spacing:0.000000pt;}
._1_c00381{margin-left:-1.198080pt;}
._2_c00381{width:0.997120pt;}
._4_c00381{width:1.926400pt;}
._6_c00381{width:4.032000pt;}
._0_c00381{width:5.312000pt;}
._8_c00381{width:10.112000pt;}
._7_c00381{width:12.352000pt;}
._3_c00381{width:13.760000pt;}
._5_c00381{width:20.032000pt;}
.fs6_c00381{font-size:32.000000pt;}
.fs3_c00381{font-size:37.120000pt;}
.fs7_c00381{font-size:47.360000pt;}
.fs8_c00381{font-size:48.817571pt;}
.fs2_c00381{font-size:49.920000pt;}
.fs4_c00381{font-size:52.480000pt;}
.fs9_c00381{font-size:53.333333pt;}
.fs5_c00381{font-size:54.095146pt;}
.fs0_c00381{font-size:64.000000pt;}
.fs1_c00381{font-size:65.969690pt;}
.y0_c00381{bottom:0.000000pt;}
.y22_c00381{bottom:2.773333pt;}
.y20_c00381{bottom:12.480000pt;}
.y21_c00381{bottom:30.884071pt;}
.y1_c00381{bottom:48.000000pt;}
.y1e_c00381{bottom:54.760000pt;}
.y1d_c00381{bottom:64.680000pt;}
.y1c_c00381{bottom:70.120000pt;}
.y1b_c00381{bottom:93.800000pt;}
.y1a_c00381{bottom:358.440000pt;}
.y19_c00381{bottom:390.440000pt;}
.y1f_c00381{bottom:417.000000pt;}
.y18_c00381{bottom:422.440000pt;}
.y17_c00381{bottom:454.440000pt;}
.y16_c00381{bottom:486.440000pt;}
.y15_c00381{bottom:518.440000pt;}
.y14_c00381{bottom:537.000000pt;}
.y13_c00381{bottom:555.560000pt;}
.y12_c00381{bottom:574.440000pt;}
.y11_c00381{bottom:593.000000pt;}
.y10_c00381{bottom:611.560000pt;}
.yf_c00381{bottom:630.440000pt;}
.ye_c00381{bottom:649.000000pt;}
.yd_c00381{bottom:681.000000pt;}
.yc_c00381{bottom:706.920000pt;}
.yb_c00381{bottom:732.200000pt;}
.ya_c00381{bottom:757.160000pt;}
.y9_c00381{bottom:789.160000pt;}
.y8_c00381{bottom:821.156480pt;}
.y7_c00381{bottom:836.520000pt;}
.y6_c00381{bottom:865.640000pt;}
.y5_c00381{bottom:899.880000pt;}
.y4_c00381{bottom:932.520000pt;}
.y3_c00381{bottom:964.520000pt;}
.y2_c00381{bottom:1011.880000pt;}
.hd_c00381{height:17.116093pt;}
.ha_c00381{height:23.680000pt;}
.h9_c00381{height:28.992000pt;}
.hc_c00381{height:37.687165pt;}
.h7_c00381{height:41.761453pt;}
.h8_c00381{height:42.656250pt;}
.hb_c00381{height:42.908160pt;}
.h6_c00381{height:47.546880pt;}
.he_c00381{height:50.346667pt;}
.h4_c00381{height:50.928601pt;}
.h3_c00381{height:57.984000pt;}
.h5_c00381{height:60.510720pt;}
.h2_c00381{height:1067.880000pt;}
.h0_c00381{height:1122.520000pt;}
.h1_c00381{height:1122.666667pt;}
.w4_c00381{width:14.826667pt;}
.w3_c00381{width:318.080000pt;}
.w2_c00381{width:767.960000pt;}
.w0_c00381{width:793.720000pt;}
.w1_c00381{width:794.000000pt;}
.x0_c00381{left:0.000000pt;}
.x19_c00381{left:2.880133pt;}
.x1_c00381{left:12.880000pt;}
.x2_c00381{left:100.480133pt;}
.x11_c00381{left:105.808000pt;}
.x15_c00381{left:108.634400pt;}
.x12_c00381{left:127.777333pt;}
.x16_c00381{left:130.847067pt;}
.x17_c00381{left:138.259733pt;}
.x10_c00381{left:193.236933pt;}
.x1a_c00381{left:206.288400pt;}
.x1b_c00381{left:226.279867pt;}
.x18_c00381{left:254.480000pt;}
.x8_c00381{left:289.488133pt;}
.xb_c00381{left:302.839867pt;}
.xc_c00381{left:310.839867pt;}
.xd_c00381{left:325.063467pt;}
.xe_c00381{left:333.063467pt;}
.x9_c00381{left:341.927067pt;}
.xa_c00381{left:349.927067pt;}
.x5_c00381{left:373.522800pt;}
.x6_c00381{left:421.027600pt;}
.x3_c00381{left:428.746133pt;}
.x7_c00381{left:443.240267pt;}
.x4_c00381{left:482.953467pt;}
.xf_c00381{left:582.582667pt;}
.x13_c00381{left:654.565467pt;}
.x14_c00381{left:667.013333pt;}
.x1c_c00381{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e71e6f7156c900eacc47d24e.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.134000;font-style:normal;font-weight:normal;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_fbbf509383e7ca8ed1af41a3.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;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:ff3_c00382;src:url('chunks/assets/font_fe8f0894a4c35119ec3048d4.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;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:ff4_c00382;src:url('chunks/assets/font_d8058bca1d467c247ab53333.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00382{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00382{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00382{vertical-align:-24.480000px;}
.v0_c00382{vertical-align:0.000000px;}
.v1_c00382{vertical-align:30.240000px;}
.ls16_c00382{letter-spacing:0.000000px;}
.ls8_c00382{letter-spacing:0.070440px;}
.ls28_c00382{letter-spacing:0.202464px;}
.ls5_c00382{letter-spacing:0.236160px;}
.ls2a_c00382{letter-spacing:0.239760px;}
.ls1c_c00382{letter-spacing:0.265680px;}
.ls6_c00382{letter-spacing:0.292800px;}
.lsa_c00382{letter-spacing:0.295200px;}
.lsf_c00382{letter-spacing:0.304285px;}
.lse_c00382{letter-spacing:0.307008px;}
.ls1f_c00382{letter-spacing:0.318816px;}
.lsc_c00382{letter-spacing:0.324720px;}
.ls10_c00382{letter-spacing:0.328628px;}
.ls1e_c00382{letter-spacing:0.342432px;}
.ls23_c00382{letter-spacing:0.371952px;}
.ls27_c00382{letter-spacing:0.399600px;}
.ls13_c00382{letter-spacing:0.399720px;}
.ls22_c00382{letter-spacing:0.438171px;}
.lsb_c00382{letter-spacing:0.466416px;}
.ls1a_c00382{letter-spacing:0.478224px;}
.ls3_c00382{letter-spacing:0.501840px;}
.ls7_c00382{letter-spacing:0.526440px;}
.ls1_c00382{letter-spacing:0.531360px;}
.ls14_c00382{letter-spacing:0.532722px;}
.ls4_c00382{letter-spacing:0.547713px;}
.ls12_c00382{letter-spacing:0.549072px;}
.ls21_c00382{letter-spacing:0.584496px;}
.ls20_c00382{letter-spacing:0.596304px;}
.ls1b_c00382{letter-spacing:0.602485px;}
.ls2_c00382{letter-spacing:0.712027px;}
.lsd_c00382{letter-spacing:0.743904px;}
.ls9_c00382{letter-spacing:0.767520px;}
.ls17_c00382{letter-spacing:0.962352px;}
.ls29_c00382{letter-spacing:4.880448px;}
.ls24_c00382{letter-spacing:4.982976px;}
.ls1d_c00382{letter-spacing:5.032800px;}
.ls25_c00382{letter-spacing:5.402160px;}
.ls26_c00382{letter-spacing:5.780016px;}
.ls0_c00382{letter-spacing:5.976000px;}
.ls11_c00382{letter-spacing:6.081120px;}
.ls15_c00382{letter-spacing:6.159920px;}
.ls19_c00382{letter-spacing:6.494400px;}
.ls18_c00382{letter-spacing:11.973312px;}
.sc__c00382{text-shadow:none;}
.sc1_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00382{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc1_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00382{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsd_c00382{word-spacing:-22.193136px;}
.wsc_c00382{word-spacing:-21.815280px;}
.ws4_c00382{word-spacing:-20.016000px;}
.ws7_c00382{word-spacing:-19.784304px;}
.wsf_c00382{word-spacing:-19.692288px;}
.ws5_c00382{word-spacing:-19.654416px;}
.ws6_c00382{word-spacing:-19.530432px;}
.ws8_c00382{word-spacing:-19.188000px;}
.ws0_c00382{word-spacing:-17.630284px;}
.ws2_c00382{word-spacing:-17.520742px;}
.ws1_c00382{word-spacing:-17.465970px;}
.wsb_c00382{word-spacing:-16.944480px;}
.ws9_c00382{word-spacing:-16.891344px;}
.wse_c00382{word-spacing:-16.731936px;}
.ws10_c00382{word-spacing:-15.800417px;}
.ws11_c00382{word-spacing:-15.051600px;}
.ws3_c00382{word-spacing:-11.609280px;}
.wsa_c00382{word-spacing:-10.008000px;}
.ws12_c00382{word-spacing:0.000000px;}
._3_c00382{margin-left:-11.630880px;}
._4_c00382{margin-left:-6.199200px;}
._5_c00382{margin-left:-5.136480px;}
._11_c00382{margin-left:-3.896640px;}
._1_c00382{margin-left:-1.121760px;}
._6_c00382{width:1.003680px;}
._e_c00382{width:2.160000px;}
._9_c00382{width:3.312000px;}
._f_c00382{width:4.785480px;}
._0_c00382{width:5.976000px;}
._a_c00382{width:7.272000px;}
._7_c00382{width:8.335440px;}
._8_c00382{width:9.459360px;}
._2_c00382{width:10.568160px;}
._10_c00382{width:11.664000px;}
._d_c00382{width:17.928000px;}
._c_c00382{width:24.696000px;}
._b_c00382{width:26.424000px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs6_c00382{font-size:36.000000px;}
.fs4_c00382{font-size:41.760000px;}
.fs7_c00382{font-size:53.280000px;}
.fs8_c00382{font-size:54.919767px;}
.fs2_c00382{font-size:59.040000px;}
.fs9_c00382{font-size:60.000000px;}
.fs3_c00382{font-size:60.857039px;}
.fs5_c00382{font-size:64.800000px;}
.fs0_c00382{font-size:72.000000px;}
.fs1_c00382{font-size:74.215901px;}
.y0_c00382{bottom:0.000000px;}
.y32_c00382{bottom:3.120000px;}
.y30_c00382{bottom:34.560000px;}
.y31_c00382{bottom:34.744580px;}
.y1_c00382{bottom:54.000000px;}
.y2e_c00382{bottom:61.605000px;}
.y2d_c00382{bottom:72.765000px;}
.y2c_c00382{bottom:72.766800px;}
.y2b_c00382{bottom:96.525000px;}
.y2a_c00382{bottom:107.686800px;}
.y29_c00382{bottom:131.445000px;}
.y28_c00382{bottom:149.085000px;}
.y27_c00382{bottom:175.725000px;}
.y2f_c00382{bottom:209.205000px;}
.y26_c00382{bottom:220.005000px;}
.y25_c00382{bottom:256.005000px;}
.y24_c00382{bottom:284.445000px;}
.y23_c00382{bottom:318.645000px;}
.y22_c00382{bottom:347.085000px;}
.y21_c00382{bottom:364.365000px;}
.y20_c00382{bottom:364.369680px;}
.y1f_c00382{bottom:389.565000px;}
.y1e_c00382{bottom:407.205000px;}
.y1d_c00382{bottom:435.645000px;}
.y1c_c00382{bottom:471.645000px;}
.y1b_c00382{bottom:508.365000px;}
.y1a_c00382{bottom:544.005000px;}
.y19_c00382{bottom:580.005000px;}
.y18_c00382{bottom:600.885000px;}
.y17_c00382{bottom:621.765000px;}
.y16_c00382{bottom:643.005000px;}
.y15_c00382{bottom:663.885000px;}
.y14_c00382{bottom:684.765000px;}
.y13_c00382{bottom:706.005000px;}
.y12_c00382{bottom:726.885000px;}
.y11_c00382{bottom:747.765000px;}
.y10_c00382{bottom:769.005000px;}
.yf_c00382{bottom:789.885000px;}
.ye_c00382{bottom:811.125000px;}
.yd_c00382{bottom:832.005000px;}
.yc_c00382{bottom:852.885000px;}
.yb_c00382{bottom:888.885000px;}
.ya_c00382{bottom:917.325000px;}
.y9_c00382{bottom:942.165000px;}
.y7_c00382{bottom:959.801040px;}
.y8_c00382{bottom:959.805000px;}
.y6_c00382{bottom:977.085000px;}
.y5_c00382{bottom:1009.845000px;}
.y4_c00382{bottom:1048.365000px;}
.y3_c00382{bottom:1085.085000px;}
.y2_c00382{bottom:1138.365000px;}
.hd_c00382{height:19.255605px;}
.h9_c00382{height:32.616000px;}
.hc_c00382{height:42.398060px;}
.h6_c00382{height:46.981634px;}
.ha_c00382{height:47.160000px;}
.hb_c00382{height:48.271680px;}
.h5_c00382{height:53.490240px;}
.he_c00382{height:56.640000px;}
.h4_c00382{height:57.294676px;}
.h8_c00382{height:58.708800px;}
.h3_c00382{height:65.232000px;}
.h7_c00382{height:68.074560px;}
.h2_c00382{height:1201.365000px;}
.h0_c00382{height:1262.835000px;}
.h1_c00382{height:1263.000000px;}
.w4_c00382{width:16.680000px;}
.w3_c00382{width:271.800000px;}
.w2_c00382{width:863.955000px;}
.w0_c00382{width:892.935000px;}
.w1_c00382{width:893.250000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:14.490000px;}
.x28_c00382{left:56.541450px;}
.x2_c00382{left:113.040150px;}
.x25_c00382{left:118.034850px;}
.xd_c00382{left:133.034550px;}
.x26_c00382{left:138.028950px;}
.x1e_c00382{left:147.223350px;}
.xc_c00382{left:152.204550px;}
.xf_c00382{left:181.078800px;}
.x1a_c00382{left:184.722300px;}
.x16_c00382{left:192.076950px;}
.xe_c00382{left:196.262400px;}
.x29_c00382{left:206.590800px;}
.xa_c00382{left:253.620450px;}
.xb_c00382{left:278.609550px;}
.x1f_c00382{left:279.682950px;}
.x1b_c00382{left:299.677350px;}
.x27_c00382{left:313.290000px;}
.x17_c00382{left:321.116850px;}
.x18_c00382{left:325.670400px;}
.x20_c00382{left:334.686750px;}
.x12_c00382{left:339.660600px;}
.x10_c00382{left:354.455550px;}
.x13_c00382{left:369.648150px;}
.x1c_c00382{left:376.369650px;}
.x21_c00382{left:383.015250px;}
.x5_c00382{left:420.213150px;}
.x1d_c00382{left:424.698150px;}
.x11_c00382{left:433.456500px;}
.x22_c00382{left:454.697400px;}
.x3_c00382{left:482.339400px;}
.x4_c00382{left:543.322650px;}
.x6_c00382{left:592.871700px;}
.x7_c00382{left:620.758350px;}
.x23_c00382{left:630.460650px;}
.x14_c00382{left:644.826450px;}
.x8_c00382{left:665.383650px;}
.x9_c00382{left:690.358050px;}
.x24_c00382{left:694.628550px;}
.x19_c00382{left:706.231200px;}
.x15_c00382{left:710.412600px;}
.x2a_c00382{left:768.254608px;}
@media print{
.v2_c00382{vertical-align:-21.760000pt;}
.v0_c00382{vertical-align:0.000000pt;}
.v1_c00382{vertical-align:26.880000pt;}
.ls16_c00382{letter-spacing:0.000000pt;}
.ls8_c00382{letter-spacing:0.062613pt;}
.ls28_c00382{letter-spacing:0.179968pt;}
.ls5_c00382{letter-spacing:0.209920pt;}
.ls2a_c00382{letter-spacing:0.213120pt;}
.ls1c_c00382{letter-spacing:0.236160pt;}
.ls6_c00382{letter-spacing:0.260267pt;}
.lsa_c00382{letter-spacing:0.262400pt;}
.lsf_c00382{letter-spacing:0.270476pt;}
.lse_c00382{letter-spacing:0.272896pt;}
.ls1f_c00382{letter-spacing:0.283392pt;}
.lsc_c00382{letter-spacing:0.288640pt;}
.ls10_c00382{letter-spacing:0.292114pt;}
.ls1e_c00382{letter-spacing:0.304384pt;}
.ls23_c00382{letter-spacing:0.330624pt;}
.ls27_c00382{letter-spacing:0.355200pt;}
.ls13_c00382{letter-spacing:0.355307pt;}
.ls22_c00382{letter-spacing:0.389485pt;}
.lsb_c00382{letter-spacing:0.414592pt;}
.ls1a_c00382{letter-spacing:0.425088pt;}
.ls3_c00382{letter-spacing:0.446080pt;}
.ls7_c00382{letter-spacing:0.467947pt;}
.ls1_c00382{letter-spacing:0.472320pt;}
.ls14_c00382{letter-spacing:0.473530pt;}
.ls4_c00382{letter-spacing:0.486856pt;}
.ls12_c00382{letter-spacing:0.488064pt;}
.ls21_c00382{letter-spacing:0.519552pt;}
.ls20_c00382{letter-spacing:0.530048pt;}
.ls1b_c00382{letter-spacing:0.535542pt;}
.ls2_c00382{letter-spacing:0.632913pt;}
.lsd_c00382{letter-spacing:0.661248pt;}
.ls9_c00382{letter-spacing:0.682240pt;}
.ls17_c00382{letter-spacing:0.855424pt;}
.ls29_c00382{letter-spacing:4.338176pt;}
.ls24_c00382{letter-spacing:4.429312pt;}
.ls1d_c00382{letter-spacing:4.473600pt;}
.ls25_c00382{letter-spacing:4.801920pt;}
.ls26_c00382{letter-spacing:5.137792pt;}
.ls0_c00382{letter-spacing:5.312000pt;}
.ls11_c00382{letter-spacing:5.405440pt;}
.ls15_c00382{letter-spacing:5.475484pt;}
.ls19_c00382{letter-spacing:5.772800pt;}
.ls18_c00382{letter-spacing:10.642944pt;}
.wsd_c00382{word-spacing:-19.727232pt;}
.wsc_c00382{word-spacing:-19.391360pt;}
.ws4_c00382{word-spacing:-17.792000pt;}
.ws7_c00382{word-spacing:-17.586048pt;}
.wsf_c00382{word-spacing:-17.504256pt;}
.ws5_c00382{word-spacing:-17.470592pt;}
.ws6_c00382{word-spacing:-17.360384pt;}
.ws8_c00382{word-spacing:-17.056000pt;}
.ws0_c00382{word-spacing:-15.671364pt;}
.ws2_c00382{word-spacing:-15.573992pt;}
.ws1_c00382{word-spacing:-15.525307pt;}
.wsb_c00382{word-spacing:-15.061760pt;}
.ws9_c00382{word-spacing:-15.014528pt;}
.wse_c00382{word-spacing:-14.872832pt;}
.ws10_c00382{word-spacing:-14.044815pt;}
.ws11_c00382{word-spacing:-13.379200pt;}
.ws3_c00382{word-spacing:-10.319360pt;}
.wsa_c00382{word-spacing:-8.896000pt;}
.ws12_c00382{word-spacing:0.000000pt;}
._3_c00382{margin-left:-10.338560pt;}
._4_c00382{margin-left:-5.510400pt;}
._5_c00382{margin-left:-4.565760pt;}
._11_c00382{margin-left:-3.463680pt;}
._1_c00382{margin-left:-0.997120pt;}
._6_c00382{width:0.892160pt;}
._e_c00382{width:1.920000pt;}
._9_c00382{width:2.944000pt;}
._f_c00382{width:4.253760pt;}
._0_c00382{width:5.312000pt;}
._a_c00382{width:6.464000pt;}
._7_c00382{width:7.409280pt;}
._8_c00382{width:8.408320pt;}
._2_c00382{width:9.393920pt;}
._10_c00382{width:10.368000pt;}
._d_c00382{width:15.936000pt;}
._c_c00382{width:21.952000pt;}
._b_c00382{width:23.488000pt;}
.fs6_c00382{font-size:32.000000pt;}
.fs4_c00382{font-size:37.120000pt;}
.fs7_c00382{font-size:47.360000pt;}
.fs8_c00382{font-size:48.817571pt;}
.fs2_c00382{font-size:52.480000pt;}
.fs9_c00382{font-size:53.333333pt;}
.fs3_c00382{font-size:54.095146pt;}
.fs5_c00382{font-size:57.600000pt;}
.fs0_c00382{font-size:64.000000pt;}
.fs1_c00382{font-size:65.969690pt;}
.y0_c00382{bottom:0.000000pt;}
.y32_c00382{bottom:2.773333pt;}
.y30_c00382{bottom:30.720000pt;}
.y31_c00382{bottom:30.884071pt;}
.y1_c00382{bottom:48.000000pt;}
.y2e_c00382{bottom:54.760000pt;}
.y2d_c00382{bottom:64.680000pt;}
.y2c_c00382{bottom:64.681600pt;}
.y2b_c00382{bottom:85.800000pt;}
.y2a_c00382{bottom:95.721600pt;}
.y29_c00382{bottom:116.840000pt;}
.y28_c00382{bottom:132.520000pt;}
.y27_c00382{bottom:156.200000pt;}
.y2f_c00382{bottom:185.960000pt;}
.y26_c00382{bottom:195.560000pt;}
.y25_c00382{bottom:227.560000pt;}
.y24_c00382{bottom:252.840000pt;}
.y23_c00382{bottom:283.240000pt;}
.y22_c00382{bottom:308.520000pt;}
.y21_c00382{bottom:323.880000pt;}
.y20_c00382{bottom:323.884160pt;}
.y1f_c00382{bottom:346.280000pt;}
.y1e_c00382{bottom:361.960000pt;}
.y1d_c00382{bottom:387.240000pt;}
.y1c_c00382{bottom:419.240000pt;}
.y1b_c00382{bottom:451.880000pt;}
.y1a_c00382{bottom:483.560000pt;}
.y19_c00382{bottom:515.560000pt;}
.y18_c00382{bottom:534.120000pt;}
.y17_c00382{bottom:552.680000pt;}
.y16_c00382{bottom:571.560000pt;}
.y15_c00382{bottom:590.120000pt;}
.y14_c00382{bottom:608.680000pt;}
.y13_c00382{bottom:627.560000pt;}
.y12_c00382{bottom:646.120000pt;}
.y11_c00382{bottom:664.680000pt;}
.y10_c00382{bottom:683.560000pt;}
.yf_c00382{bottom:702.120000pt;}
.ye_c00382{bottom:721.000000pt;}
.yd_c00382{bottom:739.560000pt;}
.yc_c00382{bottom:758.120000pt;}
.yb_c00382{bottom:790.120000pt;}
.ya_c00382{bottom:815.400000pt;}
.y9_c00382{bottom:837.480000pt;}
.y7_c00382{bottom:853.156480pt;}
.y8_c00382{bottom:853.160000pt;}
.y6_c00382{bottom:868.520000pt;}
.y5_c00382{bottom:897.640000pt;}
.y4_c00382{bottom:931.880000pt;}
.y3_c00382{bottom:964.520000pt;}
.y2_c00382{bottom:1011.880000pt;}
.hd_c00382{height:17.116093pt;}
.h9_c00382{height:28.992000pt;}
.hc_c00382{height:37.687165pt;}
.h6_c00382{height:41.761453pt;}
.ha_c00382{height:41.920000pt;}
.hb_c00382{height:42.908160pt;}
.h5_c00382{height:47.546880pt;}
.he_c00382{height:50.346667pt;}
.h4_c00382{height:50.928601pt;}
.h8_c00382{height:52.185600pt;}
.h3_c00382{height:57.984000pt;}
.h7_c00382{height:60.510720pt;}
.h2_c00382{height:1067.880000pt;}
.h0_c00382{height:1122.520000pt;}
.h1_c00382{height:1122.666667pt;}
.w4_c00382{width:14.826667pt;}
.w3_c00382{width:241.600000pt;}
.w2_c00382{width:767.960000pt;}
.w0_c00382{width:793.720000pt;}
.w1_c00382{width:794.000000pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:12.880000pt;}
.x28_c00382{left:50.259067pt;}
.x2_c00382{left:100.480133pt;}
.x25_c00382{left:104.919867pt;}
.xd_c00382{left:118.252933pt;}
.x26_c00382{left:122.692400pt;}
.x1e_c00382{left:130.865200pt;}
.xc_c00382{left:135.292933pt;}
.xf_c00382{left:160.958933pt;}
.x1a_c00382{left:164.197600pt;}
.x16_c00382{left:170.735067pt;}
.xe_c00382{left:174.455467pt;}
.x29_c00382{left:183.636267pt;}
.xa_c00382{left:225.440400pt;}
.xb_c00382{left:247.652933pt;}
.x1f_c00382{left:248.607067pt;}
.x1b_c00382{left:266.379867pt;}
.x27_c00382{left:278.480000pt;}
.x17_c00382{left:285.437200pt;}
.x18_c00382{left:289.484800pt;}
.x20_c00382{left:297.499333pt;}
.x12_c00382{left:301.920533pt;}
.x10_c00382{left:315.071600pt;}
.x13_c00382{left:328.576133pt;}
.x1c_c00382{left:334.550800pt;}
.x21_c00382{left:340.458000pt;}
.x5_c00382{left:373.522800pt;}
.x1d_c00382{left:377.509467pt;}
.x11_c00382{left:385.294667pt;}
.x22_c00382{left:404.175467pt;}
.x3_c00382{left:428.746133pt;}
.x4_c00382{left:482.953467pt;}
.x6_c00382{left:526.997067pt;}
.x7_c00382{left:551.785200pt;}
.x23_c00382{left:560.409467pt;}
.x14_c00382{left:573.179067pt;}
.x8_c00382{left:591.452133pt;}
.x9_c00382{left:613.651600pt;}
.x24_c00382{left:617.447600pt;}
.x19_c00382{left:627.761067pt;}
.x15_c00382{left:631.477867pt;}
.x2a_c00382{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d609dee9af12f01f2e7e80b.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:0.000000px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs0_c00383{font-size:60.000000px;}
.y0_c00383{bottom:0.000000px;}
.y2_c00383{bottom:3.120000px;}
.y1_c00383{bottom:34.744580px;}
.h2_c00383{height:19.255605px;}
.h3_c00383{height:56.640000px;}
.h0_c00383{height:1262.835000px;}
.h1_c00383{height:1263.000000px;}
.w2_c00383{width:16.680000px;}
.w0_c00383{width:892.935000px;}
.w1_c00383{width:893.250000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:768.254608px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws0_c00383{word-spacing:0.000000pt;}
.fs0_c00383{font-size:53.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y2_c00383{bottom:2.773333pt;}
.y1_c00383{bottom:30.884071pt;}
.h2_c00383{height:17.116093pt;}
.h3_c00383{height:50.346667pt;}
.h0_c00383{height:1122.520000pt;}
.h1_c00383{height:1122.666667pt;}
.w2_c00383{width:14.826667pt;}
.w0_c00383{width:793.720000pt;}
.w1_c00383{width:794.000000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f5d641373a473112955c3d4.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:0.000000px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs0_c00384{font-size:60.000000px;}
.y0_c00384{bottom:0.000000px;}
.y2_c00384{bottom:3.120000px;}
.y1_c00384{bottom:34.744580px;}
.h2_c00384{height:19.255605px;}
.h3_c00384{height:56.640000px;}
.h0_c00384{height:1262.835000px;}
.h1_c00384{height:1263.000000px;}
.w2_c00384{width:16.680000px;}
.w0_c00384{width:892.920000px;}
.w1_c00384{width:893.250000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:768.239685px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws0_c00384{word-spacing:0.000000pt;}
.fs0_c00384{font-size:53.333333pt;}
.y0_c00384{bottom:0.000000pt;}
.y2_c00384{bottom:2.773333pt;}
.y1_c00384{bottom:30.884071pt;}
.h2_c00384{height:17.116093pt;}
.h3_c00384{height:50.346667pt;}
.h0_c00384{height:1122.520000pt;}
.h1_c00384{height:1122.666667pt;}
.w2_c00384{width:14.826667pt;}
.w0_c00384{width:793.706667pt;}
.w1_c00384{width:794.000000pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:682.879720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:0.772000;font-style:normal;font-weight:normal;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_9431aa33d88faafa1ae6f7a5.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls0_c00385{letter-spacing:0.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:0.000000px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs1_c00385{font-size:60.000000px;}
.fs0_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y4_c00385{bottom:3.120000px;}
.y3_c00385{bottom:34.744580px;}
.y1_c00385{bottom:54.000000px;}
.y2_c00385{bottom:1085.085000px;}
.h4_c00385{height:19.255605px;}
.h3_c00385{height:55.584000px;}
.h5_c00385{height:56.640000px;}
.h2_c00385{height:1201.365000px;}
.h0_c00385{height:1262.835000px;}
.h1_c00385{height:1263.000000px;}
.w3_c00385{width:16.680000px;}
.w2_c00385{width:863.955000px;}
.w0_c00385{width:892.935000px;}
.w1_c00385{width:893.250000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:14.490000px;}
.x2_c00385{left:113.040150px;}
.x3_c00385{left:768.254608px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.fs1_c00385{font-size:53.333333pt;}
.fs0_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y4_c00385{bottom:2.773333pt;}
.y3_c00385{bottom:30.884071pt;}
.y1_c00385{bottom:48.000000pt;}
.y2_c00385{bottom:964.520000pt;}
.h4_c00385{height:17.116093pt;}
.h3_c00385{height:49.408000pt;}
.h5_c00385{height:50.346667pt;}
.h2_c00385{height:1067.880000pt;}
.h0_c00385{height:1122.520000pt;}
.h1_c00385{height:1122.666667pt;}
.w3_c00385{width:14.826667pt;}
.w2_c00385{width:767.960000pt;}
.w0_c00385{width:793.720000pt;}
.w1_c00385{width:794.000000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:12.880000pt;}
.x2_c00385{left:100.480133pt;}
.x3_c00385{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0458e6b397383140f912bfb.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.134000;font-style:normal;font-weight:normal;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_5b95f9da553c8f10244341e0.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;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:ff3_c00386;src:url('chunks/assets/font_6e89a9d5789e5b19242536b6.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00386{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00386{vertical-align:-30.240000px;}
.v3_c00386{vertical-align:-24.480000px;}
.v0_c00386{vertical-align:0.000000px;}
.v1_c00386{vertical-align:30.240000px;}
.lsa_c00386{letter-spacing:0.000000px;}
.ls3_c00386{letter-spacing:0.112440px;}
.lsc_c00386{letter-spacing:0.265680px;}
.ls10_c00386{letter-spacing:0.371952px;}
.ls4_c00386{letter-spacing:0.413640px;}
.lsd_c00386{letter-spacing:0.438171px;}
.ls7_c00386{letter-spacing:0.501840px;}
.ls11_c00386{letter-spacing:0.531360px;}
.ls12_c00386{letter-spacing:0.547713px;}
.ls8_c00386{letter-spacing:0.560880px;}
.ls5_c00386{letter-spacing:0.817440px;}
.ls6_c00386{letter-spacing:0.837240px;}
.lsf_c00386{letter-spacing:0.962352px;}
.lsb_c00386{letter-spacing:5.245344px;}
.ls1_c00386{letter-spacing:5.510976px;}
.ls2_c00386{letter-spacing:5.973000px;}
.ls9_c00386{letter-spacing:5.976000px;}
.ls0_c00386{letter-spacing:6.159920px;}
.lse_c00386{letter-spacing:18.999072px;}
.sc__c00386{text-shadow:none;}
.sc1_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00386{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc1_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00386{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00386{word-spacing:-21.603952px;}
.ws1_c00386{word-spacing:-20.857824px;}
.ws4_c00386{word-spacing:-17.375472px;}
.ws2_c00386{word-spacing:-11.609280px;}
.ws3_c00386{word-spacing:-10.008000px;}
.ws5_c00386{word-spacing:0.000000px;}
._12_c00386{margin-left:-19.542240px;}
._11_c00386{margin-left:-18.538560px;}
._13_c00386{margin-left:-1.227456px;}
._b_c00386{width:1.440000px;}
._3_c00386{width:2.520000px;}
._5_c00386{width:3.672000px;}
._0_c00386{width:4.752000px;}
._10_c00386{width:5.832000px;}
._a_c00386{width:6.840000px;}
._6_c00386{width:8.064000px;}
._7_c00386{width:9.648000px;}
._e_c00386{width:11.808000px;}
._2_c00386{width:13.248000px;}
._4_c00386{width:14.400000px;}
._1_c00386{width:15.480000px;}
._c_c00386{width:16.560000px;}
._8_c00386{width:18.432000px;}
._d_c00386{width:25.056000px;}
._9_c00386{width:33.552000px;}
._f_c00386{width:40.608000px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs5_c00386{font-size:36.000000px;}
.fs4_c00386{font-size:41.760000px;}
.fs3_c00386{font-size:56.160000px;}
.fs2_c00386{font-size:57.888403px;}
.fs6_c00386{font-size:59.040000px;}
.fs8_c00386{font-size:60.000000px;}
.fs7_c00386{font-size:60.857039px;}
.fs0_c00386{font-size:72.000000px;}
.fs1_c00386{font-size:74.215901px;}
.y0_c00386{bottom:0.000000px;}
.y3_c00386{bottom:2.565000px;}
.y33_c00386{bottom:3.120000px;}
.y32_c00386{bottom:34.744580px;}
.y1_c00386{bottom:54.000000px;}
.y31_c00386{bottom:61.605000px;}
.y30_c00386{bottom:78.885000px;}
.y2f_c00386{bottom:90.405000px;}
.y2e_c00386{bottom:96.525000px;}
.y2d_c00386{bottom:113.805000px;}
.y2c_c00386{bottom:125.325000px;}
.y2b_c00386{bottom:125.326800px;}
.y2a_c00386{bottom:149.085000px;}
.y29_c00386{bottom:160.245000px;}
.y28_c00386{bottom:166.365000px;}
.y27_c00386{bottom:193.005000px;}
.y26_c00386{bottom:316.845000px;}
.y25_c00386{bottom:337.725000px;}
.y24_c00386{bottom:358.965000px;}
.y23_c00386{bottom:379.845000px;}
.y22_c00386{bottom:415.845000px;}
.y21_c00386{bottom:436.725000px;}
.y20_c00386{bottom:457.965000px;}
.y1f_c00386{bottom:478.845000px;}
.y1e_c00386{bottom:499.725000px;}
.y1d_c00386{bottom:520.965000px;}
.y1c_c00386{bottom:541.845000px;}
.y1b_c00386{bottom:562.725000px;}
.y1a_c00386{bottom:583.965000px;}
.y18_c00386{bottom:619.965000px;}
.y19_c00386{bottom:627.525000px;}
.y17_c00386{bottom:640.845000px;}
.y16_c00386{bottom:661.725000px;}
.y15_c00386{bottom:682.965000px;}
.y14_c00386{bottom:703.845000px;}
.y13_c00386{bottom:725.085000px;}
.y12_c00386{bottom:745.965000px;}
.y11_c00386{bottom:766.845000px;}
.y10_c00386{bottom:788.085000px;}
.yf_c00386{bottom:824.085000px;}
.ye_c00386{bottom:844.965000px;}
.yd_c00386{bottom:865.845000px;}
.yc_c00386{bottom:887.085000px;}
.yb_c00386{bottom:907.965000px;}
.ya_c00386{bottom:928.845000px;}
.y9_c00386{bottom:950.085000px;}
.y8_c00386{bottom:970.965000px;}
.y7_c00386{bottom:991.845000px;}
.y6_c00386{bottom:1013.085000px;}
.y5_c00386{bottom:1049.085000px;}
.y4_c00386{bottom:1085.085000px;}
.y2_c00386{bottom:1138.365000px;}
.ha_c00386{height:19.255605px;}
.h7_c00386{height:32.616000px;}
.h6_c00386{height:37.834560px;}
.h8_c00386{height:46.981634px;}
.h9_c00386{height:53.490240px;}
.hb_c00386{height:56.640000px;}
.h4_c00386{height:57.294676px;}
.h3_c00386{height:65.232000px;}
.h5_c00386{height:68.074560px;}
.h2_c00386{height:1201.365000px;}
.h0_c00386{height:1262.835000px;}
.h1_c00386{height:1263.000000px;}
.w3_c00386{width:16.680000px;}
.w2_c00386{width:863.955000px;}
.w0_c00386{width:892.935000px;}
.w1_c00386{width:893.250000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:14.490000px;}
.x2_c00386{left:113.040150px;}
.x1d_c00386{left:122.213700px;}
.x3_c00386{left:150.029250px;}
.x1e_c00386{left:151.372500px;}
.x6_c00386{left:192.994950px;}
.x5_c00386{left:200.094750px;}
.x13_c00386{left:223.054350px;}
.xf_c00386{left:229.699950px;}
.x4_c00386{left:234.988050px;}
.x19_c00386{left:242.254350px;}
.x9_c00386{left:244.107750px;}
.x1a_c00386{left:262.248450px;}
.x7_c00386{left:280.167150px;}
.xd_c00386{left:282.093750px;}
.x10_c00386{left:302.707050px;}
.x8_c00386{left:342.158250px;}
.xa_c00386{left:374.125500px;}
.x16_c00386{left:383.303850px;}
.x18_c00386{left:429.120000px;}
.xe_c00386{left:442.092750px;}
.x17_c00386{left:450.316350px;}
.xb_c00386{left:467.225400px;}
.x1b_c00386{left:475.593750px;}
.x1c_c00386{left:495.587700px;}
.x14_c00386{left:570.328500px;}
.x11_c00386{left:619.919700px;}
.x15_c00386{left:627.279450px;}
.xc_c00386{left:651.307950px;}
.x12_c00386{left:684.952800px;}
.x1f_c00386{left:768.254608px;}
@media print{
.v2_c00386{vertical-align:-26.880000pt;}
.v3_c00386{vertical-align:-21.760000pt;}
.v0_c00386{vertical-align:0.000000pt;}
.v1_c00386{vertical-align:26.880000pt;}
.lsa_c00386{letter-spacing:0.000000pt;}
.ls3_c00386{letter-spacing:0.099947pt;}
.lsc_c00386{letter-spacing:0.236160pt;}
.ls10_c00386{letter-spacing:0.330624pt;}
.ls4_c00386{letter-spacing:0.367680pt;}
.lsd_c00386{letter-spacing:0.389485pt;}
.ls7_c00386{letter-spacing:0.446080pt;}
.ls11_c00386{letter-spacing:0.472320pt;}
.ls12_c00386{letter-spacing:0.486856pt;}
.ls8_c00386{letter-spacing:0.498560pt;}
.ls5_c00386{letter-spacing:0.726613pt;}
.ls6_c00386{letter-spacing:0.744213pt;}
.lsf_c00386{letter-spacing:0.855424pt;}
.lsb_c00386{letter-spacing:4.662528pt;}
.ls1_c00386{letter-spacing:4.898645pt;}
.ls2_c00386{letter-spacing:5.309333pt;}
.ls9_c00386{letter-spacing:5.312000pt;}
.ls0_c00386{letter-spacing:5.475484pt;}
.lse_c00386{letter-spacing:16.888064pt;}
.ws0_c00386{word-spacing:-19.203513pt;}
.ws1_c00386{word-spacing:-18.540288pt;}
.ws4_c00386{word-spacing:-15.444864pt;}
.ws2_c00386{word-spacing:-10.319360pt;}
.ws3_c00386{word-spacing:-8.896000pt;}
.ws5_c00386{word-spacing:0.000000pt;}
._12_c00386{margin-left:-17.370880pt;}
._11_c00386{margin-left:-16.478720pt;}
._13_c00386{margin-left:-1.091072pt;}
._b_c00386{width:1.280000pt;}
._3_c00386{width:2.240000pt;}
._5_c00386{width:3.264000pt;}
._0_c00386{width:4.224000pt;}
._10_c00386{width:5.184000pt;}
._a_c00386{width:6.080000pt;}
._6_c00386{width:7.168000pt;}
._7_c00386{width:8.576000pt;}
._e_c00386{width:10.496000pt;}
._2_c00386{width:11.776000pt;}
._4_c00386{width:12.800000pt;}
._1_c00386{width:13.760000pt;}
._c_c00386{width:14.720000pt;}
._8_c00386{width:16.384000pt;}
._d_c00386{width:22.272000pt;}
._9_c00386{width:29.824000pt;}
._f_c00386{width:36.096000pt;}
.fs5_c00386{font-size:32.000000pt;}
.fs4_c00386{font-size:37.120000pt;}
.fs3_c00386{font-size:49.920000pt;}
.fs2_c00386{font-size:51.456358pt;}
.fs6_c00386{font-size:52.480000pt;}
.fs8_c00386{font-size:53.333333pt;}
.fs7_c00386{font-size:54.095146pt;}
.fs0_c00386{font-size:64.000000pt;}
.fs1_c00386{font-size:65.969690pt;}
.y0_c00386{bottom:0.000000pt;}
.y3_c00386{bottom:2.280000pt;}
.y33_c00386{bottom:2.773333pt;}
.y32_c00386{bottom:30.884071pt;}
.y1_c00386{bottom:48.000000pt;}
.y31_c00386{bottom:54.760000pt;}
.y30_c00386{bottom:70.120000pt;}
.y2f_c00386{bottom:80.360000pt;}
.y2e_c00386{bottom:85.800000pt;}
.y2d_c00386{bottom:101.160000pt;}
.y2c_c00386{bottom:111.400000pt;}
.y2b_c00386{bottom:111.401600pt;}
.y2a_c00386{bottom:132.520000pt;}
.y29_c00386{bottom:142.440000pt;}
.y28_c00386{bottom:147.880000pt;}
.y27_c00386{bottom:171.560000pt;}
.y26_c00386{bottom:281.640000pt;}
.y25_c00386{bottom:300.200000pt;}
.y24_c00386{bottom:319.080000pt;}
.y23_c00386{bottom:337.640000pt;}
.y22_c00386{bottom:369.640000pt;}
.y21_c00386{bottom:388.200000pt;}
.y20_c00386{bottom:407.080000pt;}
.y1f_c00386{bottom:425.640000pt;}
.y1e_c00386{bottom:444.200000pt;}
.y1d_c00386{bottom:463.080000pt;}
.y1c_c00386{bottom:481.640000pt;}
.y1b_c00386{bottom:500.200000pt;}
.y1a_c00386{bottom:519.080000pt;}
.y18_c00386{bottom:551.080000pt;}
.y19_c00386{bottom:557.800000pt;}
.y17_c00386{bottom:569.640000pt;}
.y16_c00386{bottom:588.200000pt;}
.y15_c00386{bottom:607.080000pt;}
.y14_c00386{bottom:625.640000pt;}
.y13_c00386{bottom:644.520000pt;}
.y12_c00386{bottom:663.080000pt;}
.y11_c00386{bottom:681.640000pt;}
.y10_c00386{bottom:700.520000pt;}
.yf_c00386{bottom:732.520000pt;}
.ye_c00386{bottom:751.080000pt;}
.yd_c00386{bottom:769.640000pt;}
.yc_c00386{bottom:788.520000pt;}
.yb_c00386{bottom:807.080000pt;}
.ya_c00386{bottom:825.640000pt;}
.y9_c00386{bottom:844.520000pt;}
.y8_c00386{bottom:863.080000pt;}
.y7_c00386{bottom:881.640000pt;}
.y6_c00386{bottom:900.520000pt;}
.y5_c00386{bottom:932.520000pt;}
.y4_c00386{bottom:964.520000pt;}
.y2_c00386{bottom:1011.880000pt;}
.ha_c00386{height:17.116093pt;}
.h7_c00386{height:28.992000pt;}
.h6_c00386{height:33.630720pt;}
.h8_c00386{height:41.761453pt;}
.h9_c00386{height:47.546880pt;}
.hb_c00386{height:50.346667pt;}
.h4_c00386{height:50.928601pt;}
.h3_c00386{height:57.984000pt;}
.h5_c00386{height:60.510720pt;}
.h2_c00386{height:1067.880000pt;}
.h0_c00386{height:1122.520000pt;}
.h1_c00386{height:1122.666667pt;}
.w3_c00386{width:14.826667pt;}
.w2_c00386{width:767.960000pt;}
.w0_c00386{width:793.720000pt;}
.w1_c00386{width:794.000000pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:12.880000pt;}
.x2_c00386{left:100.480133pt;}
.x1d_c00386{left:108.634400pt;}
.x3_c00386{left:133.359333pt;}
.x1e_c00386{left:134.553333pt;}
.x6_c00386{left:171.551067pt;}
.x5_c00386{left:177.862000pt;}
.x13_c00386{left:198.270533pt;}
.xf_c00386{left:204.177733pt;}
.x4_c00386{left:208.878267pt;}
.x19_c00386{left:215.337200pt;}
.x9_c00386{left:216.984667pt;}
.x1a_c00386{left:233.109733pt;}
.x7_c00386{left:249.037467pt;}
.xd_c00386{left:250.750000pt;}
.x10_c00386{left:269.072933pt;}
.x8_c00386{left:304.140667pt;}
.xa_c00386{left:332.556000pt;}
.x16_c00386{left:340.714533pt;}
.x18_c00386{left:381.440000pt;}
.xe_c00386{left:392.971333pt;}
.x17_c00386{left:400.281200pt;}
.xb_c00386{left:415.311467pt;}
.x1b_c00386{left:422.750000pt;}
.x1c_c00386{left:440.522400pt;}
.x14_c00386{left:506.958667pt;}
.x11_c00386{left:551.039733pt;}
.x15_c00386{left:557.581733pt;}
.xc_c00386{left:578.940400pt;}
.x12_c00386{left:608.846933pt;}
.x1f_c00386{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa4dd25590c622de20d611f7.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_29885bdf2dbda3f18171e70a.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;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:ff3_c00387;src:url('chunks/assets/font_027e2b6d764e02d9c6eedf26.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_cab9f1e04fa30f69ff4b696c.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00387;src:url('chunks/assets/font_3e5969cc9d74e98d6e4143d3.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00387{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00387{vertical-align:-24.480000px;}
.v0_c00387{vertical-align:0.000000px;}
.v1_c00387{vertical-align:30.240000px;}
.ls7_c00387{letter-spacing:-0.179568px;}
.ls5_c00387{letter-spacing:0.000000px;}
.lsc_c00387{letter-spacing:0.144000px;}
.ls8_c00387{letter-spacing:0.265680px;}
.ls1_c00387{letter-spacing:0.295200px;}
.lsa_c00387{letter-spacing:0.425088px;}
.ls2_c00387{letter-spacing:0.531360px;}
.lsb_c00387{letter-spacing:0.797040px;}
.ls6_c00387{letter-spacing:5.430672px;}
.ls0_c00387{letter-spacing:5.899200px;}
.ls3_c00387{letter-spacing:5.976000px;}
.ls4_c00387{letter-spacing:6.159920px;}
.ls9_c00387{letter-spacing:8.041248px;}
.sc__c00387{text-shadow:none;}
.sc1_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00387{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc1_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00387{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00387{word-spacing:-21.043152px;}
.ws4_c00387{word-spacing:-16.944480px;}
.ws0_c00387{word-spacing:-11.609280px;}
.ws2_c00387{word-spacing:-11.429712px;}
.ws5_c00387{word-spacing:-10.152000px;}
.ws3_c00387{word-spacing:-10.008000px;}
.ws6_c00387{word-spacing:0.000000px;}
._10_c00387{margin-left:-8.678880px;}
._f_c00387{margin-left:-7.498080px;}
._11_c00387{margin-left:-6.435360px;}
._e_c00387{margin-left:-1.003800px;}
._2_c00387{width:1.800000px;}
._9_c00387{width:3.096000px;}
._d_c00387{width:4.320000px;}
._6_c00387{width:5.760000px;}
._4_c00387{width:8.424000px;}
._a_c00387{width:10.512000px;}
._3_c00387{width:11.664000px;}
._1_c00387{width:13.104000px;}
._5_c00387{width:14.328000px;}
._b_c00387{width:15.840000px;}
._0_c00387{width:17.424000px;}
._7_c00387{width:18.644400px;}
._c_c00387{width:22.636800px;}
._8_c00387{width:24.048000px;}
.fc0_c00387{color:rgb(0,0,0);}
.fs4_c00387{font-size:36.000000px;}
.fs2_c00387{font-size:41.760000px;}
.fs3_c00387{font-size:56.160000px;}
.fs5_c00387{font-size:59.040000px;}
.fs6_c00387{font-size:60.000000px;}
.fs0_c00387{font-size:72.000000px;}
.fs1_c00387{font-size:74.215901px;}
.y0_c00387{bottom:0.000000px;}
.y3_c00387{bottom:2.565000px;}
.y2b_c00387{bottom:3.120000px;}
.y2a_c00387{bottom:34.744580px;}
.y1_c00387{bottom:54.000000px;}
.y29_c00387{bottom:61.605000px;}
.y28_c00387{bottom:72.766800px;}
.y27_c00387{bottom:96.525000px;}
.y26_c00387{bottom:113.805000px;}
.y25_c00387{bottom:131.445000px;}
.y24_c00387{bottom:158.085000px;}
.y23_c00387{bottom:276.165000px;}
.y22_c00387{bottom:312.165000px;}
.y21_c00387{bottom:333.405000px;}
.y20_c00387{bottom:372.645000px;}
.y1f_c00387{bottom:393.165000px;}
.y1e_c00387{bottom:414.405000px;}
.y1d_c00387{bottom:435.285000px;}
.y1c_c00387{bottom:456.525000px;}
.y1b_c00387{bottom:477.405000px;}
.y1a_c00387{bottom:498.285000px;}
.y19_c00387{bottom:519.525000px;}
.y18_c00387{bottom:540.405000px;}
.y17_c00387{bottom:561.285000px;}
.y16_c00387{bottom:597.285000px;}
.y15_c00387{bottom:633.285000px;}
.y14_c00387{bottom:669.285000px;}
.y13_c00387{bottom:705.285000px;}
.y12_c00387{bottom:726.525000px;}
.y11_c00387{bottom:747.405000px;}
.y10_c00387{bottom:768.285000px;}
.yf_c00387{bottom:789.525000px;}
.ye_c00387{bottom:810.405000px;}
.yd_c00387{bottom:831.285000px;}
.yc_c00387{bottom:852.525000px;}
.yb_c00387{bottom:888.525000px;}
.ya_c00387{bottom:909.405000px;}
.y9_c00387{bottom:930.645000px;}
.y8_c00387{bottom:951.525000px;}
.y7_c00387{bottom:972.405000px;}
.y6_c00387{bottom:1008.405000px;}
.y5_c00387{bottom:1046.925000px;}
.y4_c00387{bottom:1085.085000px;}
.y2_c00387{bottom:1138.365000px;}
.h8_c00387{height:19.255605px;}
.h6_c00387{height:32.616000px;}
.h7_c00387{height:53.490240px;}
.h9_c00387{height:56.640000px;}
.h4_c00387{height:57.294676px;}
.h3_c00387{height:65.232000px;}
.h5_c00387{height:68.074560px;}
.h2_c00387{height:1201.365000px;}
.h0_c00387{height:1262.835000px;}
.h1_c00387{height:1263.000000px;}
.w3_c00387{width:16.680000px;}
.w2_c00387{width:863.955000px;}
.w0_c00387{width:892.935000px;}
.w1_c00387{width:893.250000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:14.490000px;}
.x2_c00387{left:113.040150px;}
.x3_c00387{left:150.029250px;}
.xa_c00387{left:177.028950px;}
.x4_c00387{left:234.988050px;}
.xb_c00387{left:249.063750px;}
.x8_c00387{left:250.771050px;}
.x9_c00387{left:336.151200px;}
.x5_c00387{left:419.718000px;}
.x6_c00387{left:606.831000px;}
.x7_c00387{left:679.837950px;}
.xc_c00387{left:768.254608px;}
@media print{
.v2_c00387{vertical-align:-21.760000pt;}
.v0_c00387{vertical-align:0.000000pt;}
.v1_c00387{vertical-align:26.880000pt;}
.ls7_c00387{letter-spacing:-0.159616pt;}
.ls5_c00387{letter-spacing:0.000000pt;}
.lsc_c00387{letter-spacing:0.128000pt;}
.ls8_c00387{letter-spacing:0.236160pt;}
.ls1_c00387{letter-spacing:0.262400pt;}
.lsa_c00387{letter-spacing:0.377856pt;}
.ls2_c00387{letter-spacing:0.472320pt;}
.lsb_c00387{letter-spacing:0.708480pt;}
.ls6_c00387{letter-spacing:4.827264pt;}
.ls0_c00387{letter-spacing:5.243733pt;}
.ls3_c00387{letter-spacing:5.312000pt;}
.ls4_c00387{letter-spacing:5.475484pt;}
.ls9_c00387{letter-spacing:7.147776pt;}
.ws1_c00387{word-spacing:-18.705024pt;}
.ws4_c00387{word-spacing:-15.061760pt;}
.ws0_c00387{word-spacing:-10.319360pt;}
.ws2_c00387{word-spacing:-10.159744pt;}
.ws5_c00387{word-spacing:-9.024000pt;}
.ws3_c00387{word-spacing:-8.896000pt;}
.ws6_c00387{word-spacing:0.000000pt;}
._10_c00387{margin-left:-7.714560pt;}
._f_c00387{margin-left:-6.664960pt;}
._11_c00387{margin-left:-5.720320pt;}
._e_c00387{margin-left:-0.892267pt;}
._2_c00387{width:1.600000pt;}
._9_c00387{width:2.752000pt;}
._d_c00387{width:3.840000pt;}
._6_c00387{width:5.120000pt;}
._4_c00387{width:7.488000pt;}
._a_c00387{width:9.344000pt;}
._3_c00387{width:10.368000pt;}
._1_c00387{width:11.648000pt;}
._5_c00387{width:12.736000pt;}
._b_c00387{width:14.080000pt;}
._0_c00387{width:15.488000pt;}
._7_c00387{width:16.572800pt;}
._c_c00387{width:20.121600pt;}
._8_c00387{width:21.376000pt;}
.fs4_c00387{font-size:32.000000pt;}
.fs2_c00387{font-size:37.120000pt;}
.fs3_c00387{font-size:49.920000pt;}
.fs5_c00387{font-size:52.480000pt;}
.fs6_c00387{font-size:53.333333pt;}
.fs0_c00387{font-size:64.000000pt;}
.fs1_c00387{font-size:65.969690pt;}
.y0_c00387{bottom:0.000000pt;}
.y3_c00387{bottom:2.280000pt;}
.y2b_c00387{bottom:2.773333pt;}
.y2a_c00387{bottom:30.884071pt;}
.y1_c00387{bottom:48.000000pt;}
.y29_c00387{bottom:54.760000pt;}
.y28_c00387{bottom:64.681600pt;}
.y27_c00387{bottom:85.800000pt;}
.y26_c00387{bottom:101.160000pt;}
.y25_c00387{bottom:116.840000pt;}
.y24_c00387{bottom:140.520000pt;}
.y23_c00387{bottom:245.480000pt;}
.y22_c00387{bottom:277.480000pt;}
.y21_c00387{bottom:296.360000pt;}
.y20_c00387{bottom:331.240000pt;}
.y1f_c00387{bottom:349.480000pt;}
.y1e_c00387{bottom:368.360000pt;}
.y1d_c00387{bottom:386.920000pt;}
.y1c_c00387{bottom:405.800000pt;}
.y1b_c00387{bottom:424.360000pt;}
.y1a_c00387{bottom:442.920000pt;}
.y19_c00387{bottom:461.800000pt;}
.y18_c00387{bottom:480.360000pt;}
.y17_c00387{bottom:498.920000pt;}
.y16_c00387{bottom:530.920000pt;}
.y15_c00387{bottom:562.920000pt;}
.y14_c00387{bottom:594.920000pt;}
.y13_c00387{bottom:626.920000pt;}
.y12_c00387{bottom:645.800000pt;}
.y11_c00387{bottom:664.360000pt;}
.y10_c00387{bottom:682.920000pt;}
.yf_c00387{bottom:701.800000pt;}
.ye_c00387{bottom:720.360000pt;}
.yd_c00387{bottom:738.920000pt;}
.yc_c00387{bottom:757.800000pt;}
.yb_c00387{bottom:789.800000pt;}
.ya_c00387{bottom:808.360000pt;}
.y9_c00387{bottom:827.240000pt;}
.y8_c00387{bottom:845.800000pt;}
.y7_c00387{bottom:864.360000pt;}
.y6_c00387{bottom:896.360000pt;}
.y5_c00387{bottom:930.600000pt;}
.y4_c00387{bottom:964.520000pt;}
.y2_c00387{bottom:1011.880000pt;}
.h8_c00387{height:17.116093pt;}
.h6_c00387{height:28.992000pt;}
.h7_c00387{height:47.546880pt;}
.h9_c00387{height:50.346667pt;}
.h4_c00387{height:50.928601pt;}
.h3_c00387{height:57.984000pt;}
.h5_c00387{height:60.510720pt;}
.h2_c00387{height:1067.880000pt;}
.h0_c00387{height:1122.520000pt;}
.h1_c00387{height:1122.666667pt;}
.w3_c00387{width:14.826667pt;}
.w2_c00387{width:767.960000pt;}
.w0_c00387{width:793.720000pt;}
.w1_c00387{width:794.000000pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:12.880000pt;}
.x2_c00387{left:100.480133pt;}
.x3_c00387{left:133.359333pt;}
.xa_c00387{left:157.359067pt;}
.x4_c00387{left:208.878267pt;}
.xb_c00387{left:221.390000pt;}
.x8_c00387{left:222.907600pt;}
.x9_c00387{left:298.801067pt;}
.x5_c00387{left:373.082667pt;}
.x6_c00387{left:539.405333pt;}
.x7_c00387{left:604.300400pt;}
.xc_c00387{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b1e75b627e8e2e34f120c72.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.134000;font-style:normal;font-weight:normal;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_af3fd4ae4b8ee837cf2f49a5.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;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:ff3_c00388;src:url('chunks/assets/font_f7c771eff8c591be66c7fbbf.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00388;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00388;src:url('chunks/assets/font_56fe2641a5a8fc7d203b9a46.woff2')format("woff");}.ff6_c00388{font-family:ff6_c00388;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00388;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff7_c00388{font-family:ff7_c00388;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00388;src:url('chunks/assets/font_5659fc1a43d975d79df523c3.woff2')format("woff");}.ff8_c00388{font-family:ff8_c00388;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00388;src:url('chunks/assets/font_42c5ffdf0aefbeae0aa99838.woff2')format("woff");}.ff9_c00388{font-family:ff9_c00388;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:ffa_c00388;src:url('chunks/assets/font_1296891b375edb38d9473d67.woff2')format("woff");}.ffa_c00388{font-family:ffa_c00388;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00388{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00388{vertical-align:-24.480000px;}
.v0_c00388{vertical-align:0.000000px;}
.v1_c00388{vertical-align:30.240000px;}
.lsc_c00388{letter-spacing:-0.179568px;}
.lsa_c00388{letter-spacing:0.000000px;}
.lsd_c00388{letter-spacing:0.144000px;}
.ls1a_c00388{letter-spacing:0.265680px;}
.ls7_c00388{letter-spacing:0.318816px;}
.lsf_c00388{letter-spacing:0.371952px;}
.ls1c_c00388{letter-spacing:0.478224px;}
.ls10_c00388{letter-spacing:0.531360px;}
.ls18_c00388{letter-spacing:0.547713px;}
.ls19_c00388{letter-spacing:0.584496px;}
.ls12_c00388{letter-spacing:0.602485px;}
.ls11_c00388{letter-spacing:0.797040px;}
.ls17_c00388{letter-spacing:1.346112px;}
.ls1b_c00388{letter-spacing:2.963808px;}
.ls14_c00388{letter-spacing:3.318048px;}
.ls5_c00388{letter-spacing:5.248656px;}
.ls2_c00388{letter-spacing:5.328000px;}
.ls6_c00388{letter-spacing:5.372640px;}
.ls13_c00388{letter-spacing:5.402160px;}
.lsb_c00388{letter-spacing:5.430672px;}
.ls16_c00388{letter-spacing:5.461200px;}
.ls15_c00388{letter-spacing:5.514336px;}
.ls8_c00388{letter-spacing:5.567472px;}
.ls3_c00388{letter-spacing:5.976000px;}
.ls0_c00388{letter-spacing:5.984400px;}
.ls9_c00388{letter-spacing:6.159920px;}
.ls4_c00388{letter-spacing:11.304000px;}
.lse_c00388{letter-spacing:18.633024px;}
.ls1_c00388{letter-spacing:54.864000px;}
.sc__c00388{text-shadow:none;}
.sc1_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00388{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc1_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00388{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6_c00388{word-spacing:-21.927456px;}
.ws7_c00388{word-spacing:-21.874320px;}
.ws5_c00388{word-spacing:-21.815280px;}
.ws4_c00388{word-spacing:-21.661776px;}
.ws0_c00388{word-spacing:-21.043152px;}
.ws2_c00388{word-spacing:-20.016000px;}
.ws1_c00388{word-spacing:-11.429712px;}
.ws3_c00388{word-spacing:-10.152000px;}
.ws8_c00388{word-spacing:0.000000px;}
._b_c00388{margin-left:-18.413280px;}
._c_c00388{margin-left:-17.216640px;}
._8_c00388{margin-left:-5.904000px;}
._7_c00388{margin-left:-4.732584px;}
._f_c00388{margin-left:-3.003840px;}
._0_c00388{margin-left:-1.179360px;}
._2_c00388{width:1.944000px;}
._1_c00388{width:2.952000px;}
._9_c00388{width:4.104000px;}
._5_c00388{width:5.400000px;}
._a_c00388{width:7.344000px;}
._d_c00388{width:8.796960px;}
._e_c00388{width:12.751200px;}
._4_c00388{width:14.112000px;}
._3_c00388{width:21.096000px;}
._6_c00388{width:26.784000px;}
.fc0_c00388{color:rgb(0,0,0);}
.fs4_c00388{font-size:36.000000px;}
.fs3_c00388{font-size:41.760000px;}
.fs2_c00388{font-size:56.160000px;}
.fs5_c00388{font-size:59.040000px;}
.fs7_c00388{font-size:60.000000px;}
.fs6_c00388{font-size:60.857039px;}
.fs0_c00388{font-size:72.000000px;}
.fs1_c00388{font-size:74.215901px;}
.y0_c00388{bottom:0.000000px;}
.y3_c00388{bottom:2.565000px;}
.y2e_c00388{bottom:3.120000px;}
.y2d_c00388{bottom:34.744580px;}
.y1_c00388{bottom:54.000000px;}
.y2c_c00388{bottom:55.481040px;}
.y2b_c00388{bottom:78.885000px;}
.y2a_c00388{bottom:96.525000px;}
.y29_c00388{bottom:113.805000px;}
.y28_c00388{bottom:125.326800px;}
.y26_c00388{bottom:142.961040px;}
.y27_c00388{bottom:142.965000px;}
.y25_c00388{bottom:166.365000px;}
.y23_c00388{bottom:177.884640px;}
.y24_c00388{bottom:177.885000px;}
.y22_c00388{bottom:195.522840px;}
.y21_c00388{bottom:212.806800px;}
.y20_c00388{bottom:236.565000px;}
.y1f_c00388{bottom:263.205000px;}
.y1e_c00388{bottom:358.965000px;}
.y1d_c00388{bottom:387.045000px;}
.y1c_c00388{bottom:416.205000px;}
.y1b_c00388{bottom:451.845000px;}
.y1a_c00388{bottom:487.845000px;}
.y19_c00388{bottom:508.725000px;}
.y18_c00388{bottom:544.725000px;}
.y17_c00388{bottom:565.605000px;}
.y16_c00388{bottom:586.845000px;}
.y15_c00388{bottom:607.725000px;}
.y14_c00388{bottom:628.605000px;}
.y13_c00388{bottom:649.845000px;}
.y12_c00388{bottom:670.725000px;}
.y11_c00388{bottom:706.725000px;}
.y10_c00388{bottom:742.725000px;}
.yf_c00388{bottom:778.725000px;}
.ye_c00388{bottom:799.965000px;}
.yd_c00388{bottom:835.965000px;}
.yc_c00388{bottom:871.965000px;}
.yb_c00388{bottom:892.845000px;}
.ya_c00388{bottom:928.845000px;}
.y9_c00388{bottom:949.725000px;}
.y8_c00388{bottom:970.965000px;}
.y7_c00388{bottom:992.205000px;}
.y6_c00388{bottom:1013.085000px;}
.y5_c00388{bottom:1049.085000px;}
.y4_c00388{bottom:1085.085000px;}
.y2_c00388{bottom:1138.365000px;}
.ha_c00388{height:19.255605px;}
.h7_c00388{height:32.616000px;}
.h9_c00388{height:46.981634px;}
.h6_c00388{height:47.988281px;}
.h8_c00388{height:53.490240px;}
.hb_c00388{height:56.640000px;}
.h4_c00388{height:57.294676px;}
.h3_c00388{height:65.232000px;}
.h5_c00388{height:68.074560px;}
.h2_c00388{height:1201.365000px;}
.h0_c00388{height:1262.835000px;}
.h1_c00388{height:1263.000000px;}
.w3_c00388{width:16.680000px;}
.w2_c00388{width:863.955000px;}
.w0_c00388{width:892.935000px;}
.w1_c00388{width:893.250000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:14.490000px;}
.x2_c00388{left:113.040150px;}
.x9_c00388{left:140.037600px;}
.x3_c00388{left:150.029250px;}
.x7_c00388{left:175.595250px;}
.xc_c00388{left:198.090150px;}
.x4_c00388{left:234.988050px;}
.x8_c00388{left:247.630050px;}
.xd_c00388{left:280.078200px;}
.xe_c00388{left:284.578200px;}
.x17_c00388{left:300.533850px;}
.xf_c00388{left:365.576700px;}
.x10_c00388{left:374.576700px;}
.x18_c00388{left:388.041150px;}
.xa_c00388{left:401.053650px;}
.x19_c00388{left:405.950700px;}
.x1a_c00388{left:410.120400px;}
.x11_c00388{left:430.573200px;}
.x12_c00388{left:439.573200px;}
.x13_c00388{left:494.580000px;}
.x14_c00388{left:503.580000px;}
.xb_c00388{left:549.083100px;}
.x5_c00388{left:571.228350px;}
.x15_c00388{left:592.570350px;}
.x16_c00388{left:601.570350px;}
.x6_c00388{left:649.986600px;}
.x1b_c00388{left:680.927850px;}
.x1c_c00388{left:741.225600px;}
.x1d_c00388{left:768.254608px;}
@media print{
.v2_c00388{vertical-align:-21.760000pt;}
.v0_c00388{vertical-align:0.000000pt;}
.v1_c00388{vertical-align:26.880000pt;}
.lsc_c00388{letter-spacing:-0.159616pt;}
.lsa_c00388{letter-spacing:0.000000pt;}
.lsd_c00388{letter-spacing:0.128000pt;}
.ls1a_c00388{letter-spacing:0.236160pt;}
.ls7_c00388{letter-spacing:0.283392pt;}
.lsf_c00388{letter-spacing:0.330624pt;}
.ls1c_c00388{letter-spacing:0.425088pt;}
.ls10_c00388{letter-spacing:0.472320pt;}
.ls18_c00388{letter-spacing:0.486856pt;}
.ls19_c00388{letter-spacing:0.519552pt;}
.ls12_c00388{letter-spacing:0.535542pt;}
.ls11_c00388{letter-spacing:0.708480pt;}
.ls17_c00388{letter-spacing:1.196544pt;}
.ls1b_c00388{letter-spacing:2.634496pt;}
.ls14_c00388{letter-spacing:2.949376pt;}
.ls5_c00388{letter-spacing:4.665472pt;}
.ls2_c00388{letter-spacing:4.736000pt;}
.ls6_c00388{letter-spacing:4.775680pt;}
.ls13_c00388{letter-spacing:4.801920pt;}
.lsb_c00388{letter-spacing:4.827264pt;}
.ls16_c00388{letter-spacing:4.854400pt;}
.ls15_c00388{letter-spacing:4.901632pt;}
.ls8_c00388{letter-spacing:4.948864pt;}
.ls3_c00388{letter-spacing:5.312000pt;}
.ls0_c00388{letter-spacing:5.319467pt;}
.ls9_c00388{letter-spacing:5.475484pt;}
.ls4_c00388{letter-spacing:10.048000pt;}
.lse_c00388{letter-spacing:16.562688pt;}
.ls1_c00388{letter-spacing:48.768000pt;}
.ws6_c00388{word-spacing:-19.491072pt;}
.ws7_c00388{word-spacing:-19.443840pt;}
.ws5_c00388{word-spacing:-19.391360pt;}
.ws4_c00388{word-spacing:-19.254912pt;}
.ws0_c00388{word-spacing:-18.705024pt;}
.ws2_c00388{word-spacing:-17.792000pt;}
.ws1_c00388{word-spacing:-10.159744pt;}
.ws3_c00388{word-spacing:-9.024000pt;}
.ws8_c00388{word-spacing:0.000000pt;}
._b_c00388{margin-left:-16.367360pt;}
._c_c00388{margin-left:-15.303680pt;}
._8_c00388{margin-left:-5.248000pt;}
._7_c00388{margin-left:-4.206741pt;}
._f_c00388{margin-left:-2.670080pt;}
._0_c00388{margin-left:-1.048320pt;}
._2_c00388{width:1.728000pt;}
._1_c00388{width:2.624000pt;}
._9_c00388{width:3.648000pt;}
._5_c00388{width:4.800000pt;}
._a_c00388{width:6.528000pt;}
._d_c00388{width:7.819520pt;}
._e_c00388{width:11.334400pt;}
._4_c00388{width:12.544000pt;}
._3_c00388{width:18.752000pt;}
._6_c00388{width:23.808000pt;}
.fs4_c00388{font-size:32.000000pt;}
.fs3_c00388{font-size:37.120000pt;}
.fs2_c00388{font-size:49.920000pt;}
.fs5_c00388{font-size:52.480000pt;}
.fs7_c00388{font-size:53.333333pt;}
.fs6_c00388{font-size:54.095146pt;}
.fs0_c00388{font-size:64.000000pt;}
.fs1_c00388{font-size:65.969690pt;}
.y0_c00388{bottom:0.000000pt;}
.y3_c00388{bottom:2.280000pt;}
.y2e_c00388{bottom:2.773333pt;}
.y2d_c00388{bottom:30.884071pt;}
.y1_c00388{bottom:48.000000pt;}
.y2c_c00388{bottom:49.316480pt;}
.y2b_c00388{bottom:70.120000pt;}
.y2a_c00388{bottom:85.800000pt;}
.y29_c00388{bottom:101.160000pt;}
.y28_c00388{bottom:111.401600pt;}
.y26_c00388{bottom:127.076480pt;}
.y27_c00388{bottom:127.080000pt;}
.y25_c00388{bottom:147.880000pt;}
.y23_c00388{bottom:158.119680pt;}
.y24_c00388{bottom:158.120000pt;}
.y22_c00388{bottom:173.798080pt;}
.y21_c00388{bottom:189.161600pt;}
.y20_c00388{bottom:210.280000pt;}
.y1f_c00388{bottom:233.960000pt;}
.y1e_c00388{bottom:319.080000pt;}
.y1d_c00388{bottom:344.040000pt;}
.y1c_c00388{bottom:369.960000pt;}
.y1b_c00388{bottom:401.640000pt;}
.y1a_c00388{bottom:433.640000pt;}
.y19_c00388{bottom:452.200000pt;}
.y18_c00388{bottom:484.200000pt;}
.y17_c00388{bottom:502.760000pt;}
.y16_c00388{bottom:521.640000pt;}
.y15_c00388{bottom:540.200000pt;}
.y14_c00388{bottom:558.760000pt;}
.y13_c00388{bottom:577.640000pt;}
.y12_c00388{bottom:596.200000pt;}
.y11_c00388{bottom:628.200000pt;}
.y10_c00388{bottom:660.200000pt;}
.yf_c00388{bottom:692.200000pt;}
.ye_c00388{bottom:711.080000pt;}
.yd_c00388{bottom:743.080000pt;}
.yc_c00388{bottom:775.080000pt;}
.yb_c00388{bottom:793.640000pt;}
.ya_c00388{bottom:825.640000pt;}
.y9_c00388{bottom:844.200000pt;}
.y8_c00388{bottom:863.080000pt;}
.y7_c00388{bottom:881.960000pt;}
.y6_c00388{bottom:900.520000pt;}
.y5_c00388{bottom:932.520000pt;}
.y4_c00388{bottom:964.520000pt;}
.y2_c00388{bottom:1011.880000pt;}
.ha_c00388{height:17.116093pt;}
.h7_c00388{height:28.992000pt;}
.h9_c00388{height:41.761453pt;}
.h6_c00388{height:42.656250pt;}
.h8_c00388{height:47.546880pt;}
.hb_c00388{height:50.346667pt;}
.h4_c00388{height:50.928601pt;}
.h3_c00388{height:57.984000pt;}
.h5_c00388{height:60.510720pt;}
.h2_c00388{height:1067.880000pt;}
.h0_c00388{height:1122.520000pt;}
.h1_c00388{height:1122.666667pt;}
.w3_c00388{width:14.826667pt;}
.w2_c00388{width:767.960000pt;}
.w0_c00388{width:793.720000pt;}
.w1_c00388{width:794.000000pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:12.880000pt;}
.x2_c00388{left:100.480133pt;}
.x9_c00388{left:124.477867pt;}
.x3_c00388{left:133.359333pt;}
.x7_c00388{left:156.084667pt;}
.xc_c00388{left:176.080133pt;}
.x4_c00388{left:208.878267pt;}
.x8_c00388{left:220.115600pt;}
.xd_c00388{left:248.958400pt;}
.xe_c00388{left:252.958400pt;}
.x17_c00388{left:267.141200pt;}
.xf_c00388{left:324.957067pt;}
.x10_c00388{left:332.957067pt;}
.x18_c00388{left:344.925467pt;}
.xa_c00388{left:356.492133pt;}
.x19_c00388{left:360.845067pt;}
.x1a_c00388{left:364.551467pt;}
.x11_c00388{left:382.731733pt;}
.x12_c00388{left:390.731733pt;}
.x13_c00388{left:439.626667pt;}
.x14_c00388{left:447.626667pt;}
.xb_c00388{left:488.073867pt;}
.x5_c00388{left:507.758533pt;}
.x15_c00388{left:526.729200pt;}
.x16_c00388{left:534.729200pt;}
.x6_c00388{left:577.765867pt;}
.x1b_c00388{left:605.269200pt;}
.x1c_c00388{left:658.867200pt;}
.x1d_c00388{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ea4811a772ccdc0f56cd9b1.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.134000;font-style:normal;font-weight:normal;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_8483e1d4a0df684e1f07ad2f.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;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:ff3_c00389;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_1275b770ebf340d5ff49ad0f.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;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:ff5_c00389;src:url('chunks/assets/font_ab2492ee1edf41daa82e503f.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00389{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00389{vertical-align:-24.480000px;}
.v0_c00389{vertical-align:0.000000px;}
.v1_c00389{vertical-align:24.480000px;}
.v3_c00389{vertical-align:30.240000px;}
.ls29_c00389{letter-spacing:-0.179568px;}
.ls10_c00389{letter-spacing:0.000000px;}
.ls2a_c00389{letter-spacing:0.144000px;}
.ls13_c00389{letter-spacing:0.242064px;}
.ls14_c00389{letter-spacing:0.265680px;}
.ls0_c00389{letter-spacing:0.273857px;}
.lsa_c00389{letter-spacing:0.295200px;}
.ls6_c00389{letter-spacing:0.328628px;}
.lsb_c00389{letter-spacing:0.354240px;}
.ls18_c00389{letter-spacing:0.492942px;}
.ls9_c00389{letter-spacing:0.507744px;}
.ls5_c00389{letter-spacing:0.513648px;}
.ls3_c00389{letter-spacing:0.531360px;}
.ls1_c00389{letter-spacing:0.547713px;}
.ls7_c00389{letter-spacing:0.549072px;}
.lsc_c00389{letter-spacing:0.560880px;}
.ls11_c00389{letter-spacing:0.584496px;}
.ls22_c00389{letter-spacing:0.602485px;}
.ls26_c00389{letter-spacing:0.637632px;}
.ls8_c00389{letter-spacing:0.657256px;}
.ls15_c00389{letter-spacing:0.690768px;}
.ls4_c00389{letter-spacing:0.712027px;}
.ls2c_c00389{letter-spacing:0.718113px;}
.ls12_c00389{letter-spacing:0.743904px;}
.ls16_c00389{letter-spacing:0.797040px;}
.ls20_c00389{letter-spacing:0.821570px;}
.ls24_c00389{letter-spacing:0.962352px;}
.ls1a_c00389{letter-spacing:0.991970px;}
.ls1e_c00389{letter-spacing:1.381536px;}
.ls23_c00389{letter-spacing:3.164544px;}
.ls25_c00389{letter-spacing:4.498848px;}
.ls21_c00389{letter-spacing:5.030208px;}
.ls1b_c00389{letter-spacing:5.301792px;}
.ls1d_c00389{letter-spacing:5.402160px;}
.ls2_c00389{letter-spacing:5.455296px;}
.ls1c_c00389{letter-spacing:5.514336px;}
.ls28_c00389{letter-spacing:5.597809px;}
.lse_c00389{letter-spacing:5.976000px;}
.lsd_c00389{letter-spacing:6.159301px;}
.lsf_c00389{letter-spacing:6.159920px;}
.ls19_c00389{letter-spacing:8.129808px;}
.ls17_c00389{letter-spacing:8.380014px;}
.ls1f_c00389{letter-spacing:11.530512px;}
.ls2b_c00389{letter-spacing:11.595456px;}
.ls27_c00389{letter-spacing:13.455216px;}
.sc__c00389{text-shadow:none;}
.sc1_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00389{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc1_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00389{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00389{word-spacing:-21.927456px;}
.ws6_c00389{word-spacing:-21.714912px;}
.wsf_c00389{word-spacing:-21.690785px;}
.wsa_c00389{word-spacing:-17.739827px;}
.ws4_c00389{word-spacing:-17.630284px;}
.wsb_c00389{word-spacing:-17.575513px;}
.ws3_c00389{word-spacing:-17.465970px;}
.ws2_c00389{word-spacing:-17.411199px;}
.wsc_c00389{word-spacing:-17.375472px;}
.ws9_c00389{word-spacing:-17.246885px;}
.ws1_c00389{word-spacing:-17.192114px;}
.ws0_c00389{word-spacing:-17.103888px;}
.wse_c00389{word-spacing:-16.997616px;}
.wsd_c00389{word-spacing:-16.944480px;}
.ws7_c00389{word-spacing:-16.413120px;}
.ws10_c00389{word-spacing:-11.429712px;}
.ws11_c00389{word-spacing:-10.152000px;}
.ws8_c00389{word-spacing:-10.008000px;}
.ws12_c00389{word-spacing:0.000000px;}
._13_c00389{margin-left:-13.387085px;}
._14_c00389{margin-left:-12.370288px;}
._b_c00389{margin-left:-11.217600px;}
._c_c00389{margin-left:-10.213920px;}
._6_c00389{margin-left:-8.702557px;}
._5_c00389{margin-left:-7.667987px;}
._d_c00389{margin-left:-4.487040px;}
._11_c00389{margin-left:-3.483360px;}
._e_c00389{margin-left:-2.479680px;}
._1_c00389{margin-left:-1.095427px;}
._3_c00389{width:1.062720px;}
._0_c00389{width:2.420640px;}
._8_c00389{width:3.896640px;}
._9_c00389{width:4.962547px;}
._7_c00389{width:6.468067px;}
._4_c00389{width:7.648867px;}
._10_c00389{width:8.869586px;}
._15_c00389{width:9.898760px;}
._a_c00389{width:10.981440px;}
._12_c00389{width:12.162240px;}
._2_c00389{width:13.284000px;}
._f_c00389{width:14.287680px;}
._16_c00389{width:25.560000px;}
.fc0_c00389{color:rgb(0,0,0);}
.fs4_c00389{font-size:36.000000px;}
.fs6_c00389{font-size:41.760000px;}
.fs5_c00389{font-size:57.888403px;}
.fs2_c00389{font-size:59.040000px;}
.fs7_c00389{font-size:60.000000px;}
.fs3_c00389{font-size:60.857039px;}
.fs0_c00389{font-size:72.000000px;}
.fs1_c00389{font-size:74.215901px;}
.y0_c00389{bottom:0.000000px;}
.y3_c00389{bottom:2.565000px;}
.y3f_c00389{bottom:3.120000px;}
.y3e_c00389{bottom:34.744580px;}
.y1_c00389{bottom:54.000000px;}
.y3d_c00389{bottom:55.485000px;}
.y3c_c00389{bottom:61.605000px;}
.y3b_c00389{bottom:78.885000px;}
.y3a_c00389{bottom:90.401040px;}
.y39_c00389{bottom:113.805000px;}
.y38_c00389{bottom:140.445000px;}
.y37_c00389{bottom:178.965000px;}
.y36_c00389{bottom:200.205000px;}
.y35_c00389{bottom:221.085000px;}
.y34_c00389{bottom:241.965000px;}
.y33_c00389{bottom:263.205000px;}
.y32_c00389{bottom:299.205000px;}
.y31_c00389{bottom:320.085000px;}
.y30_c00389{bottom:340.965000px;}
.y2f_c00389{bottom:362.205000px;}
.y2e_c00389{bottom:383.085000px;}
.y2d_c00389{bottom:403.965000px;}
.y2c_c00389{bottom:439.965000px;}
.y2b_c00389{bottom:475.965000px;}
.y2a_c00389{bottom:504.401400px;}
.y29_c00389{bottom:522.039600px;}
.y28_c00389{bottom:539.323560px;}
.y27_c00389{bottom:556.961760px;}
.y26_c00389{bottom:574.245720px;}
.y25_c00389{bottom:591.883920px;}
.y24_c00389{bottom:609.522120px;}
.y23_c00389{bottom:626.806080px;}
.y22_c00389{bottom:644.444280px;}
.y21_c00389{bottom:662.082480px;}
.y20_c00389{bottom:679.366440px;}
.y1f_c00389{bottom:697.004640px;}
.y1e_c00389{bottom:714.288600px;}
.y1d_c00389{bottom:731.926800px;}
.y1c_c00389{bottom:749.565000px;}
.y1b_c00389{bottom:774.405000px;}
.y1a_c00389{bottom:774.406800px;}
.y18_c00389{bottom:792.041040px;}
.y19_c00389{bottom:792.045000px;}
.y17_c00389{bottom:809.325000px;}
.y16_c00389{bottom:809.326800px;}
.y15_c00389{bottom:826.965000px;}
.y14_c00389{bottom:826.966800px;}
.y13_c00389{bottom:844.605000px;}
.y12_c00389{bottom:861.885000px;}
.y11_c00389{bottom:861.886800px;}
.y10_c00389{bottom:879.525000px;}
.yf_c00389{bottom:879.528240px;}
.ye_c00389{bottom:897.166440px;}
.yd_c00389{bottom:914.450400px;}
.yc_c00389{bottom:939.645720px;}
.yb_c00389{bottom:964.486800px;}
.ya_c00389{bottom:982.125000px;}
.y9_c00389{bottom:1006.965000px;}
.y8_c00389{bottom:1024.604850px;}
.y7_c00389{bottom:1042.245000px;}
.y6_c00389{bottom:1042.246800px;}
.y5_c00389{bottom:1059.885000px;}
.y4_c00389{bottom:1085.085000px;}
.y2_c00389{bottom:1138.365000px;}
.hb_c00389{height:19.255605px;}
.ha_c00389{height:32.616000px;}
.h7_c00389{height:39.350391px;}
.h6_c00389{height:46.981634px;}
.h5_c00389{height:53.490240px;}
.hc_c00389{height:56.640000px;}
.h8_c00389{height:57.096000px;}
.h4_c00389{height:57.294676px;}
.h3_c00389{height:65.232000px;}
.h9_c00389{height:68.074560px;}
.h2_c00389{height:1201.365000px;}
.h0_c00389{height:1262.835000px;}
.h1_c00389{height:1263.000000px;}
.w3_c00389{width:16.680000px;}
.w2_c00389{width:863.955000px;}
.w0_c00389{width:892.935000px;}
.w1_c00389{width:893.250000px;}
.x0_c00389{left:0.000000px;}
.x1_c00389{left:14.490000px;}
.x2_c00389{left:113.040150px;}
.x36_c00389{left:127.217700px;}
.x33_c00389{left:128.864850px;}
.x24_c00389{left:134.684700px;}
.x6_c00389{left:148.735800px;}
.x3_c00389{left:150.029250px;}
.x25_c00389{left:186.186450px;}
.xe_c00389{left:189.656550px;}
.x1d_c00389{left:193.902450px;}
.x14_c00389{left:195.853950px;}
.x7_c00389{left:197.025150px;}
.x5_c00389{left:198.088050px;}
.x29_c00389{left:204.639750px;}
.xf_c00389{left:212.170500px;}
.x2a_c00389{left:229.980450px;}
.x4_c00389{left:234.988050px;}
.x2c_c00389{left:261.116850px;}
.x2d_c00389{left:280.271550px;}
.x10_c00389{left:282.169200px;}
.x15_c00389{left:287.595750px;}
.x8_c00389{left:360.972600px;}
.x9_c00389{left:375.888000px;}
.xa_c00389{left:384.143850px;}
.x11_c00389{left:421.313250px;}
.xb_c00389{left:427.393050px;}
.x16_c00389{left:437.700000px;}
.x31_c00389{left:456.121650px;}
.x20_c00389{left:461.434950px;}
.x26_c00389{left:465.499500px;}
.x12_c00389{left:480.438750px;}
.x21_c00389{left:486.409500px;}
.x32_c00389{left:499.455750px;}
.x17_c00389{left:513.300300px;}
.x27_c00389{left:517.000800px;}
.x18_c00389{left:523.606200px;}
.x28_c00389{left:545.320350px;}
.x19_c00389{left:548.595300px;}
.x22_c00389{left:553.933650px;}
.x2e_c00389{left:570.704850px;}
.x23_c00389{left:578.908050px;}
.x13_c00389{left:580.419450px;}
.xc_c00389{left:608.018550px;}
.x1a_c00389{left:616.141050px;}
.x2b_c00389{left:622.971300px;}
.x34_c00389{left:629.349900px;}
.x1b_c00389{left:649.470000px;}
.xd_c00389{left:657.942600px;}
.x1c_c00389{left:675.076200px;}
.x2f_c00389{left:686.791650px;}
.x35_c00389{left:688.399200px;}
.x30_c00389{left:706.771350px;}
.x1e_c00389{left:729.600600px;}
.x1f_c00389{left:750.390000px;}
.x37_c00389{left:768.254608px;}
@media print{
.v2_c00389{vertical-align:-21.760000pt;}
.v0_c00389{vertical-align:0.000000pt;}
.v1_c00389{vertical-align:21.760000pt;}
.v3_c00389{vertical-align:26.880000pt;}
.ls29_c00389{letter-spacing:-0.159616pt;}
.ls10_c00389{letter-spacing:0.000000pt;}
.ls2a_c00389{letter-spacing:0.128000pt;}
.ls13_c00389{letter-spacing:0.215168pt;}
.ls14_c00389{letter-spacing:0.236160pt;}
.ls0_c00389{letter-spacing:0.243428pt;}
.lsa_c00389{letter-spacing:0.262400pt;}
.ls6_c00389{letter-spacing:0.292114pt;}
.lsb_c00389{letter-spacing:0.314880pt;}
.ls18_c00389{letter-spacing:0.438171pt;}
.ls9_c00389{letter-spacing:0.451328pt;}
.ls5_c00389{letter-spacing:0.456576pt;}
.ls3_c00389{letter-spacing:0.472320pt;}
.ls1_c00389{letter-spacing:0.486856pt;}
.ls7_c00389{letter-spacing:0.488064pt;}
.lsc_c00389{letter-spacing:0.498560pt;}
.ls11_c00389{letter-spacing:0.519552pt;}
.ls22_c00389{letter-spacing:0.535542pt;}
.ls26_c00389{letter-spacing:0.566784pt;}
.ls8_c00389{letter-spacing:0.584228pt;}
.ls15_c00389{letter-spacing:0.614016pt;}
.ls4_c00389{letter-spacing:0.632913pt;}
.ls2c_c00389{letter-spacing:0.638323pt;}
.ls12_c00389{letter-spacing:0.661248pt;}
.ls16_c00389{letter-spacing:0.708480pt;}
.ls20_c00389{letter-spacing:0.730284pt;}
.ls24_c00389{letter-spacing:0.855424pt;}
.ls1a_c00389{letter-spacing:0.881751pt;}
.ls1e_c00389{letter-spacing:1.228032pt;}
.ls23_c00389{letter-spacing:2.812928pt;}
.ls25_c00389{letter-spacing:3.998976pt;}
.ls21_c00389{letter-spacing:4.471296pt;}
.ls1b_c00389{letter-spacing:4.712704pt;}
.ls1d_c00389{letter-spacing:4.801920pt;}
.ls2_c00389{letter-spacing:4.849152pt;}
.ls1c_c00389{letter-spacing:4.901632pt;}
.ls28_c00389{letter-spacing:4.975830pt;}
.lse_c00389{letter-spacing:5.312000pt;}
.lsd_c00389{letter-spacing:5.474935pt;}
.lsf_c00389{letter-spacing:5.475484pt;}
.ls19_c00389{letter-spacing:7.226496pt;}
.ls17_c00389{letter-spacing:7.448902pt;}
.ls1f_c00389{letter-spacing:10.249344pt;}
.ls2b_c00389{letter-spacing:10.307072pt;}
.ls27_c00389{letter-spacing:11.960192pt;}
.ws5_c00389{word-spacing:-19.491072pt;}
.ws6_c00389{word-spacing:-19.302144pt;}
.wsf_c00389{word-spacing:-19.280697pt;}
.wsa_c00389{word-spacing:-15.768735pt;}
.ws4_c00389{word-spacing:-15.671364pt;}
.wsb_c00389{word-spacing:-15.622678pt;}
.ws3_c00389{word-spacing:-15.525307pt;}
.ws2_c00389{word-spacing:-15.476621pt;}
.wsc_c00389{word-spacing:-15.444864pt;}
.ws9_c00389{word-spacing:-15.330564pt;}
.ws1_c00389{word-spacing:-15.281879pt;}
.ws0_c00389{word-spacing:-15.203456pt;}
.wse_c00389{word-spacing:-15.108992pt;}
.wsd_c00389{word-spacing:-15.061760pt;}
.ws7_c00389{word-spacing:-14.589440pt;}
.ws10_c00389{word-spacing:-10.159744pt;}
.ws11_c00389{word-spacing:-9.024000pt;}
.ws8_c00389{word-spacing:-8.896000pt;}
.ws12_c00389{word-spacing:0.000000pt;}
._13_c00389{margin-left:-11.899631pt;}
._14_c00389{margin-left:-10.995812pt;}
._b_c00389{margin-left:-9.971200pt;}
._c_c00389{margin-left:-9.079040pt;}
._6_c00389{margin-left:-7.735606pt;}
._5_c00389{margin-left:-6.815988pt;}
._d_c00389{margin-left:-3.988480pt;}
._11_c00389{margin-left:-3.096320pt;}
._e_c00389{margin-left:-2.204160pt;}
._1_c00389{margin-left:-0.973713pt;}
._3_c00389{width:0.944640pt;}
._0_c00389{width:2.151680pt;}
._8_c00389{width:3.463680pt;}
._9_c00389{width:4.411153pt;}
._7_c00389{width:5.749393pt;}
._4_c00389{width:6.798993pt;}
._10_c00389{width:7.884077pt;}
._15_c00389{width:8.798898pt;}
._a_c00389{width:9.761280pt;}
._12_c00389{width:10.810880pt;}
._2_c00389{width:11.808000pt;}
._f_c00389{width:12.700160pt;}
._16_c00389{width:22.720000pt;}
.fs4_c00389{font-size:32.000000pt;}
.fs6_c00389{font-size:37.120000pt;}
.fs5_c00389{font-size:51.456358pt;}
.fs2_c00389{font-size:52.480000pt;}
.fs7_c00389{font-size:53.333333pt;}
.fs3_c00389{font-size:54.095146pt;}
.fs0_c00389{font-size:64.000000pt;}
.fs1_c00389{font-size:65.969690pt;}
.y0_c00389{bottom:0.000000pt;}
.y3_c00389{bottom:2.280000pt;}
.y3f_c00389{bottom:2.773333pt;}
.y3e_c00389{bottom:30.884071pt;}
.y1_c00389{bottom:48.000000pt;}
.y3d_c00389{bottom:49.320000pt;}
.y3c_c00389{bottom:54.760000pt;}
.y3b_c00389{bottom:70.120000pt;}
.y3a_c00389{bottom:80.356480pt;}
.y39_c00389{bottom:101.160000pt;}
.y38_c00389{bottom:124.840000pt;}
.y37_c00389{bottom:159.080000pt;}
.y36_c00389{bottom:177.960000pt;}
.y35_c00389{bottom:196.520000pt;}
.y34_c00389{bottom:215.080000pt;}
.y33_c00389{bottom:233.960000pt;}
.y32_c00389{bottom:265.960000pt;}
.y31_c00389{bottom:284.520000pt;}
.y30_c00389{bottom:303.080000pt;}
.y2f_c00389{bottom:321.960000pt;}
.y2e_c00389{bottom:340.520000pt;}
.y2d_c00389{bottom:359.080000pt;}
.y2c_c00389{bottom:391.080000pt;}
.y2b_c00389{bottom:423.080000pt;}
.y2a_c00389{bottom:448.356800pt;}
.y29_c00389{bottom:464.035200pt;}
.y28_c00389{bottom:479.398720pt;}
.y27_c00389{bottom:495.077120pt;}
.y26_c00389{bottom:510.440640pt;}
.y25_c00389{bottom:526.119040pt;}
.y24_c00389{bottom:541.797440pt;}
.y23_c00389{bottom:557.160960pt;}
.y22_c00389{bottom:572.839360pt;}
.y21_c00389{bottom:588.517760pt;}
.y20_c00389{bottom:603.881280pt;}
.y1f_c00389{bottom:619.559680pt;}
.y1e_c00389{bottom:634.923200pt;}
.y1d_c00389{bottom:650.601600pt;}
.y1c_c00389{bottom:666.280000pt;}
.y1b_c00389{bottom:688.360000pt;}
.y1a_c00389{bottom:688.361600pt;}
.y18_c00389{bottom:704.036480pt;}
.y19_c00389{bottom:704.040000pt;}
.y17_c00389{bottom:719.400000pt;}
.y16_c00389{bottom:719.401600pt;}
.y15_c00389{bottom:735.080000pt;}
.y14_c00389{bottom:735.081600pt;}
.y13_c00389{bottom:750.760000pt;}
.y12_c00389{bottom:766.120000pt;}
.y11_c00389{bottom:766.121600pt;}
.y10_c00389{bottom:781.800000pt;}
.yf_c00389{bottom:781.802880pt;}
.ye_c00389{bottom:797.481280pt;}
.yd_c00389{bottom:812.844800pt;}
.yc_c00389{bottom:835.240640pt;}
.yb_c00389{bottom:857.321600pt;}
.ya_c00389{bottom:873.000000pt;}
.y9_c00389{bottom:895.080000pt;}
.y8_c00389{bottom:910.759867pt;}
.y7_c00389{bottom:926.440000pt;}
.y6_c00389{bottom:926.441600pt;}
.y5_c00389{bottom:942.120000pt;}
.y4_c00389{bottom:964.520000pt;}
.y2_c00389{bottom:1011.880000pt;}
.hb_c00389{height:17.116093pt;}
.ha_c00389{height:28.992000pt;}
.h7_c00389{height:34.978125pt;}
.h6_c00389{height:41.761453pt;}
.h5_c00389{height:47.546880pt;}
.hc_c00389{height:50.346667pt;}
.h8_c00389{height:50.752000pt;}
.h4_c00389{height:50.928601pt;}
.h3_c00389{height:57.984000pt;}
.h9_c00389{height:60.510720pt;}
.h2_c00389{height:1067.880000pt;}
.h0_c00389{height:1122.520000pt;}
.h1_c00389{height:1122.666667pt;}
.w3_c00389{width:14.826667pt;}
.w2_c00389{width:767.960000pt;}
.w0_c00389{width:793.720000pt;}
.w1_c00389{width:794.000000pt;}
.x0_c00389{left:0.000000pt;}
.x1_c00389{left:12.880000pt;}
.x2_c00389{left:100.480133pt;}
.x36_c00389{left:113.082400pt;}
.x33_c00389{left:114.546533pt;}
.x24_c00389{left:119.719733pt;}
.x6_c00389{left:132.209600pt;}
.x3_c00389{left:133.359333pt;}
.x25_c00389{left:165.499067pt;}
.xe_c00389{left:168.583600pt;}
.x1d_c00389{left:172.357733pt;}
.x14_c00389{left:174.092400pt;}
.x7_c00389{left:175.133467pt;}
.x5_c00389{left:176.078267pt;}
.x29_c00389{left:181.902000pt;}
.xf_c00389{left:188.596000pt;}
.x2a_c00389{left:204.427067pt;}
.x4_c00389{left:208.878267pt;}
.x2c_c00389{left:232.103867pt;}
.x2d_c00389{left:249.130267pt;}
.x10_c00389{left:250.817067pt;}
.x15_c00389{left:255.640667pt;}
.x8_c00389{left:320.864533pt;}
.x9_c00389{left:334.122667pt;}
.xa_c00389{left:341.461200pt;}
.x11_c00389{left:374.500667pt;}
.xb_c00389{left:379.904933pt;}
.x16_c00389{left:389.066667pt;}
.x31_c00389{left:405.441467pt;}
.x20_c00389{left:410.164400pt;}
.x26_c00389{left:413.777333pt;}
.x12_c00389{left:427.056667pt;}
.x21_c00389{left:432.364000pt;}
.x32_c00389{left:443.960667pt;}
.x17_c00389{left:456.266933pt;}
.x27_c00389{left:459.556267pt;}
.x18_c00389{left:465.427733pt;}
.x28_c00389{left:484.729200pt;}
.x19_c00389{left:487.640267pt;}
.x22_c00389{left:492.385467pt;}
.x2e_c00389{left:507.293200pt;}
.x23_c00389{left:514.584933pt;}
.x13_c00389{left:515.928400pt;}
.xc_c00389{left:540.460933pt;}
.x1a_c00389{left:547.680933pt;}
.x2b_c00389{left:553.752267pt;}
.x34_c00389{left:559.422133pt;}
.x1b_c00389{left:577.306667pt;}
.xd_c00389{left:584.837867pt;}
.x1c_c00389{left:600.067733pt;}
.x2f_c00389{left:610.481467pt;}
.x35_c00389{left:611.910400pt;}
.x30_c00389{left:628.241200pt;}
.x1e_c00389{left:648.533867pt;}
.x1f_c00389{left:667.013333pt;}
.x37_c00389{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14010ff8724e7c3d54de4e39.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.134000;font-style:normal;font-weight:normal;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_977f8a4309d9b0b8ef4d4e40.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;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:ff3_c00390;src:url('chunks/assets/font_5ea466bb053bca7f7fd96ff6.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_f133d5d451c6bba72ea05b10.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;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:ff5_c00390;src:url('chunks/assets/font_17e62316f40e6d5a5afefbb3.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00390;src:url('chunks/assets/font_910304ee2fbe12a5b98c4c78.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00390;src:url('chunks/assets/font_1c6b0a4544bb11552cfb00c6.woff2')format("woff");}.ff7_c00390{font-family:ff7_c00390;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00390{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00390{vertical-align:-30.240000px;}
.v4_c00390{vertical-align:-24.480000px;}
.v0_c00390{vertical-align:0.000000px;}
.v1_c00390{vertical-align:30.240000px;}
.v3_c00390{vertical-align:33.120000px;}
.ls17_c00390{letter-spacing:-0.465696px;}
.ls16_c00390{letter-spacing:-0.179568px;}
.ls15_c00390{letter-spacing:0.000000px;}
.ls1_c00390{letter-spacing:0.141000px;}
.ls18_c00390{letter-spacing:0.144000px;}
.ls7_c00390{letter-spacing:0.265680px;}
.ls12_c00390{letter-spacing:0.273857px;}
.ls1a_c00390{letter-spacing:0.318816px;}
.ls19_c00390{letter-spacing:0.328628px;}
.ls13_c00390{letter-spacing:0.354240px;}
.ls3d_c00390{letter-spacing:0.371952px;}
.ls29_c00390{letter-spacing:0.419184px;}
.ls1d_c00390{letter-spacing:0.425088px;}
.ls8_c00390{letter-spacing:0.425999px;}
.ls24_c00390{letter-spacing:0.438171px;}
.ls1e_c00390{letter-spacing:0.478224px;}
.ls25_c00390{letter-spacing:0.492942px;}
.ls6_c00390{letter-spacing:0.531360px;}
.ls5_c00390{letter-spacing:0.547713px;}
.ls9_c00390{letter-spacing:0.560880px;}
.ls3b_c00390{letter-spacing:0.584496px;}
.ls10_c00390{letter-spacing:0.602485px;}
.ls28_c00390{letter-spacing:0.637632px;}
.ls2f_c00390{letter-spacing:0.657256px;}
.ls27_c00390{letter-spacing:0.690768px;}
.ls36_c00390{letter-spacing:0.696672px;}
.ls20_c00390{letter-spacing:0.712027px;}
.ls38_c00390{letter-spacing:0.743904px;}
.ls22_c00390{letter-spacing:0.766799px;}
.ls32_c00390{letter-spacing:0.797040px;}
.ls21_c00390{letter-spacing:0.821570px;}
.ls2b_c00390{letter-spacing:0.962352px;}
.ls4_c00390{letter-spacing:1.228032px;}
.ls3e_c00390{letter-spacing:1.599984px;}
.ls3f_c00390{letter-spacing:1.688544px;}
.ls1c_c00390{letter-spacing:2.278944px;}
.ls2a_c00390{letter-spacing:3.846165px;}
.ls26_c00390{letter-spacing:4.244976px;}
.ls37_c00390{letter-spacing:5.248656px;}
.lse_c00390{letter-spacing:5.301792px;}
.lsb_c00390{letter-spacing:5.372640px;}
.ls3a_c00390{letter-spacing:5.413968px;}
.ls2_c00390{letter-spacing:5.428800px;}
.ls11_c00390{letter-spacing:5.431680px;}
.ls2d_c00390{letter-spacing:5.461200px;}
.lsd_c00390{letter-spacing:5.467104px;}
.ls31_c00390{letter-spacing:5.514336px;}
.ls33_c00390{letter-spacing:5.691456px;}
.ls2c_c00390{letter-spacing:5.780016px;}
.ls0_c00390{letter-spacing:5.976000px;}
.ls14_c00390{letter-spacing:6.159920px;}
.ls23_c00390{letter-spacing:6.237847px;}
.ls3c_c00390{letter-spacing:6.577056px;}
.ls1f_c00390{letter-spacing:6.842736px;}
.ls1b_c00390{letter-spacing:7.439040px;}
.ls2e_c00390{letter-spacing:7.598448px;}
.lsa_c00390{letter-spacing:7.616160px;}
.ls30_c00390{letter-spacing:9.044928px;}
.lsc_c00390{letter-spacing:9.323298px;}
.ls40_c00390{letter-spacing:10.213920px;}
.ls34_c00390{letter-spacing:10.674432px;}
.lsf_c00390{letter-spacing:10.798416px;}
.ls35_c00390{letter-spacing:11.130752px;}
.ls39_c00390{letter-spacing:13.691376px;}
.ls3_c00390{letter-spacing:19.224000px;}
.sc__c00390{text-shadow:none;}
.sc1_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00390{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc1_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00390{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc_c00390{word-spacing:-22.193136px;}
.wsd_c00390{word-spacing:-21.874320px;}
.wsf_c00390{word-spacing:-21.714912px;}
.ws1_c00390{word-spacing:-20.016000px;}
.ws7_c00390{word-spacing:-17.630284px;}
.wse_c00390{word-spacing:-17.575513px;}
.ws10_c00390{word-spacing:-17.520742px;}
.ws5_c00390{word-spacing:-17.465970px;}
.ws8_c00390{word-spacing:-17.411199px;}
.wsb_c00390{word-spacing:-17.375472px;}
.ws4_c00390{word-spacing:-17.246885px;}
.ws13_c00390{word-spacing:-17.192114px;}
.ws12_c00390{word-spacing:-17.157024px;}
.ws11_c00390{word-spacing:-17.109792px;}
.ws6_c00390{word-spacing:-16.838208px;}
.ws2_c00390{word-spacing:-14.978304px;}
.ws0_c00390{word-spacing:-11.429712px;}
.ws3_c00390{word-spacing:-10.152000px;}
.ws9_c00390{word-spacing:-0.696672px;}
.wsa_c00390{word-spacing:-0.478224px;}
.ws14_c00390{word-spacing:0.000000px;}
._1c_c00390{margin-left:-14.110560px;}
._1b_c00390{margin-left:-12.870720px;}
._19_c00390{margin-left:-11.288981px;}
._1d_c00390{margin-left:-10.271520px;}
._18_c00390{margin-left:-9.211680px;}
._10_c00390{margin-left:-7.968960px;}
._f_c00390{margin-left:-6.959520px;}
._11_c00390{margin-left:-5.919840px;}
._15_c00390{margin-left:-4.443736px;}
._12_c00390{margin-left:-2.913120px;}
._e_c00390{margin-left:-1.882080px;}
._9_c00390{width:1.008000px;}
._4_c00390{width:2.016000px;}
._5_c00390{width:3.456000px;}
._8_c00390{width:5.112000px;}
._16_c00390{width:6.191109px;}
._14_c00390{width:7.486272px;}
._17_c00390{width:9.205920px;}
._1a_c00390{width:10.209744px;}
._3_c00390{width:11.304000px;}
._0_c00390{width:12.816000px;}
._d_c00390{width:14.013408px;}
._13_c00390{width:15.030192px;}
._c_c00390{width:16.059984px;}
._b_c00390{width:17.348016px;}
._1_c00390{width:21.456000px;}
._6_c00390{width:22.680000px;}
._a_c00390{width:25.056000px;}
._2_c00390{width:27.360000px;}
._7_c00390{width:38.880000px;}
.fc0_c00390{color:rgb(0,0,0);}
.fs4_c00390{font-size:36.000000px;}
.fs2_c00390{font-size:41.760000px;}
.fs3_c00390{font-size:47.520000px;}
.fs5_c00390{font-size:59.040000px;}
.fs7_c00390{font-size:60.000000px;}
.fs6_c00390{font-size:60.857039px;}
.fs0_c00390{font-size:72.000000px;}
.fs1_c00390{font-size:74.215901px;}
.y0_c00390{bottom:0.000000px;}
.y3_c00390{bottom:2.565000px;}
.y48_c00390{bottom:3.120000px;}
.y47_c00390{bottom:34.744580px;}
.y1_c00390{bottom:54.000000px;}
.y46_c00390{bottom:61.605000px;}
.y45_c00390{bottom:72.762840px;}
.y44_c00390{bottom:90.401040px;}
.y43_c00390{bottom:107.685000px;}
.y42_c00390{bottom:107.688600px;}
.y41_c00390{bottom:125.326800px;}
.y40_c00390{bottom:149.085000px;}
.y3f_c00390{bottom:160.248600px;}
.y3e_c00390{bottom:177.886800px;}
.y3d_c00390{bottom:195.525000px;}
.y3c_c00390{bottom:195.526800px;}
.y3b_c00390{bottom:213.165000px;}
.y3a_c00390{bottom:230.449320px;}
.y39_c00390{bottom:249.165000px;}
.y38_c00390{bottom:249.166800px;}
.y37_c00390{bottom:272.925000px;}
.y36_c00390{bottom:284.445000px;}
.y35_c00390{bottom:290.565000px;}
.y34_c00390{bottom:301.725000px;}
.y33_c00390{bottom:301.730400px;}
.y32_c00390{bottom:319.368600px;}
.y31_c00390{bottom:337.006800px;}
.y2f_c00390{bottom:354.641040px;}
.y30_c00390{bottom:354.645000px;}
.y2e_c00390{bottom:371.925000px;}
.y2d_c00390{bottom:371.926440px;}
.y2c_c00390{bottom:389.564640px;}
.y2b_c00390{bottom:407.202840px;}
.y2a_c00390{bottom:424.486800px;}
.y28_c00390{bottom:442.122840px;}
.y29_c00390{bottom:442.125000px;}
.y27_c00390{bottom:459.406800px;}
.y26_c00390{bottom:477.045000px;}
.y25_c00390{bottom:477.046800px;}
.y23_c00390{bottom:494.681040px;}
.y24_c00390{bottom:494.685000px;}
.y22_c00390{bottom:511.965000px;}
.y21_c00390{bottom:511.968600px;}
.y20_c00390{bottom:529.606800px;}
.y1f_c00390{bottom:553.365000px;}
.y1e_c00390{bottom:564.526800px;}
.y1d_c00390{bottom:588.285000px;}
.y1c_c00390{bottom:599.445000px;}
.y1b_c00390{bottom:599.446800px;}
.y1a_c00390{bottom:617.085000px;}
.y19_c00390{bottom:623.205000px;}
.y18_c00390{bottom:649.845000px;}
.y17_c00390{bottom:698.085000px;}
.y16_c00390{bottom:718.965000px;}
.y15_c00390{bottom:739.845000px;}
.y14_c00390{bottom:761.085000px;}
.y13_c00390{bottom:781.965000px;}
.y11_c00390{bottom:817.965000px;}
.y12_c00390{bottom:825.525000px;}
.y10_c00390{bottom:838.845000px;}
.yf_c00390{bottom:860.085000px;}
.ye_c00390{bottom:880.965000px;}
.yd_c00390{bottom:901.845000px;}
.yc_c00390{bottom:923.085000px;}
.yb_c00390{bottom:943.965000px;}
.ya_c00390{bottom:964.845000px;}
.y9_c00390{bottom:1000.845000px;}
.y7_c00390{bottom:1022.085000px;}
.y8_c00390{bottom:1029.645000px;}
.y6_c00390{bottom:1042.965000px;}
.y5_c00390{bottom:1063.845000px;}
.y4_c00390{bottom:1085.085000px;}
.y2_c00390{bottom:1138.365000px;}
.hc_c00390{height:19.255605px;}
.h8_c00390{height:32.616000px;}
.h5_c00390{height:37.834560px;}
.hb_c00390{height:40.417031px;}
.h9_c00390{height:46.981634px;}
.ha_c00390{height:53.490240px;}
.hd_c00390{height:56.640000px;}
.h4_c00390{height:57.294676px;}
.h3_c00390{height:65.232000px;}
.h6_c00390{height:68.074560px;}
.h7_c00390{height:71.136000px;}
.h2_c00390{height:1201.365000px;}
.h0_c00390{height:1262.835000px;}
.h1_c00390{height:1263.000000px;}
.w3_c00390{width:16.680000px;}
.w2_c00390{width:863.955000px;}
.w0_c00390{width:892.935000px;}
.w1_c00390{width:893.250000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:14.490000px;}
.x2_c00390{left:113.040150px;}
.x3_c00390{left:150.029250px;}
.x2e_c00390{left:153.909300px;}
.x35_c00390{left:163.051800px;}
.x2b_c00390{left:165.970050px;}
.x1b_c00390{left:178.062750px;}
.x42_c00390{left:180.505800px;}
.x37_c00390{left:181.908300px;}
.x2c_c00390{left:187.213650px;}
.x36_c00390{left:197.205750px;}
.x3a_c00390{left:201.515700px;}
.x43_c00390{left:207.186750px;}
.x38_c00390{left:218.567550px;}
.x21_c00390{left:222.396900px;}
.x1c_c00390{left:226.391250px;}
.x4_c00390{left:234.988050px;}
.x22_c00390{left:238.221600px;}
.x3b_c00390{left:244.266000px;}
.x39_c00390{left:258.291150px;}
.x2f_c00390{left:265.758150px;}
.x2d_c00390{left:270.050100px;}
.x1d_c00390{left:284.662350px;}
.xd_c00390{left:292.566600px;}
.x47_c00390{left:307.149900px;}
.x48_c00390{left:315.489600px;}
.x23_c00390{left:326.934000px;}
.x5_c00390{left:328.419000px;}
.xe_c00390{left:338.556150px;}
.x24_c00390{left:353.690850px;}
.x1e_c00390{left:356.324400px;}
.x1f_c00390{left:369.637950px;}
.x6_c00390{left:380.438250px;}
.x44_c00390{left:383.117100px;}
.x3c_c00390{left:384.806700px;}
.x25_c00390{left:395.564550px;}
.x30_c00390{left:396.675600px;}
.x45_c00390{left:402.271800px;}
.x3d_c00390{left:410.764500px;}
.x15_c00390{left:414.708300px;}
.x20_c00390{left:428.826450px;}
.x31_c00390{left:442.195650px;}
.x34_c00390{left:462.168150px;}
.x16_c00390{left:489.136950px;}
.x32_c00390{left:490.620150px;}
.x7_c00390{left:516.134700px;}
.x3e_c00390{left:521.598600px;}
.x11_c00390{left:523.127550px;}
.x12_c00390{left:528.120000px;}
.xf_c00390{left:531.486300px;}
.x33_c00390{left:532.734450px;}
.x3f_c00390{left:547.556400px;}
.x17_c00390{left:551.297550px;}
.x13_c00390{left:565.903500px;}
.x10_c00390{left:604.493400px;}
.x18_c00390{left:617.145600px;}
.x49_c00390{left:622.063800px;}
.x14_c00390{left:628.920750px;}
.x19_c00390{left:634.307400px;}
.x4a_c00390{left:638.742900px;}
.x46_c00390{left:656.995200px;}
.x26_c00390{left:664.271100px;}
.x8_c00390{left:682.920000px;}
.x40_c00390{left:684.864300px;}
.x9_c00390{left:694.702050px;}
.x1a_c00390{left:698.475600px;}
.xb_c00390{left:701.394600px;}
.x27_c00390{left:702.784500px;}
.xa_c00390{left:706.544250px;}
.x41_c00390{left:710.821650px;}
.x28_c00390{left:721.114050px;}
.x29_c00390{left:725.371200px;}
.x2a_c00390{left:746.220300px;}
.xc_c00390{left:750.390000px;}
.x4b_c00390{left:768.254608px;}
@media print{
.v2_c00390{vertical-align:-26.880000pt;}
.v4_c00390{vertical-align:-21.760000pt;}
.v0_c00390{vertical-align:0.000000pt;}
.v1_c00390{vertical-align:26.880000pt;}
.v3_c00390{vertical-align:29.440000pt;}
.ls17_c00390{letter-spacing:-0.413952pt;}
.ls16_c00390{letter-spacing:-0.159616pt;}
.ls15_c00390{letter-spacing:0.000000pt;}
.ls1_c00390{letter-spacing:0.125333pt;}
.ls18_c00390{letter-spacing:0.128000pt;}
.ls7_c00390{letter-spacing:0.236160pt;}
.ls12_c00390{letter-spacing:0.243428pt;}
.ls1a_c00390{letter-spacing:0.283392pt;}
.ls19_c00390{letter-spacing:0.292114pt;}
.ls13_c00390{letter-spacing:0.314880pt;}
.ls3d_c00390{letter-spacing:0.330624pt;}
.ls29_c00390{letter-spacing:0.372608pt;}
.ls1d_c00390{letter-spacing:0.377856pt;}
.ls8_c00390{letter-spacing:0.378666pt;}
.ls24_c00390{letter-spacing:0.389485pt;}
.ls1e_c00390{letter-spacing:0.425088pt;}
.ls25_c00390{letter-spacing:0.438171pt;}
.ls6_c00390{letter-spacing:0.472320pt;}
.ls5_c00390{letter-spacing:0.486856pt;}
.ls9_c00390{letter-spacing:0.498560pt;}
.ls3b_c00390{letter-spacing:0.519552pt;}
.ls10_c00390{letter-spacing:0.535542pt;}
.ls28_c00390{letter-spacing:0.566784pt;}
.ls2f_c00390{letter-spacing:0.584228pt;}
.ls27_c00390{letter-spacing:0.614016pt;}
.ls36_c00390{letter-spacing:0.619264pt;}
.ls20_c00390{letter-spacing:0.632913pt;}
.ls38_c00390{letter-spacing:0.661248pt;}
.ls22_c00390{letter-spacing:0.681599pt;}
.ls32_c00390{letter-spacing:0.708480pt;}
.ls21_c00390{letter-spacing:0.730284pt;}
.ls2b_c00390{letter-spacing:0.855424pt;}
.ls4_c00390{letter-spacing:1.091584pt;}
.ls3e_c00390{letter-spacing:1.422208pt;}
.ls3f_c00390{letter-spacing:1.500928pt;}
.ls1c_c00390{letter-spacing:2.025728pt;}
.ls2a_c00390{letter-spacing:3.418813pt;}
.ls26_c00390{letter-spacing:3.773312pt;}
.ls37_c00390{letter-spacing:4.665472pt;}
.lse_c00390{letter-spacing:4.712704pt;}
.lsb_c00390{letter-spacing:4.775680pt;}
.ls3a_c00390{letter-spacing:4.812416pt;}
.ls2_c00390{letter-spacing:4.825600pt;}
.ls11_c00390{letter-spacing:4.828160pt;}
.ls2d_c00390{letter-spacing:4.854400pt;}
.lsd_c00390{letter-spacing:4.859648pt;}
.ls31_c00390{letter-spacing:4.901632pt;}
.ls33_c00390{letter-spacing:5.059072pt;}
.ls2c_c00390{letter-spacing:5.137792pt;}
.ls0_c00390{letter-spacing:5.312000pt;}
.ls14_c00390{letter-spacing:5.475484pt;}
.ls23_c00390{letter-spacing:5.544752pt;}
.ls3c_c00390{letter-spacing:5.846272pt;}
.ls1f_c00390{letter-spacing:6.082432pt;}
.ls1b_c00390{letter-spacing:6.612480pt;}
.ls2e_c00390{letter-spacing:6.754176pt;}
.lsa_c00390{letter-spacing:6.769920pt;}
.ls30_c00390{letter-spacing:8.039936pt;}
.lsc_c00390{letter-spacing:8.287376pt;}
.ls40_c00390{letter-spacing:9.079040pt;}
.ls34_c00390{letter-spacing:9.488384pt;}
.lsf_c00390{letter-spacing:9.598592pt;}
.ls35_c00390{letter-spacing:9.894002pt;}
.ls39_c00390{letter-spacing:12.170112pt;}
.ls3_c00390{letter-spacing:17.088000pt;}
.wsc_c00390{word-spacing:-19.727232pt;}
.wsd_c00390{word-spacing:-19.443840pt;}
.wsf_c00390{word-spacing:-19.302144pt;}
.ws1_c00390{word-spacing:-17.792000pt;}
.ws7_c00390{word-spacing:-15.671364pt;}
.wse_c00390{word-spacing:-15.622678pt;}
.ws10_c00390{word-spacing:-15.573992pt;}
.ws5_c00390{word-spacing:-15.525307pt;}
.ws8_c00390{word-spacing:-15.476621pt;}
.wsb_c00390{word-spacing:-15.444864pt;}
.ws4_c00390{word-spacing:-15.330564pt;}
.ws13_c00390{word-spacing:-15.281879pt;}
.ws12_c00390{word-spacing:-15.250688pt;}
.ws11_c00390{word-spacing:-15.208704pt;}
.ws6_c00390{word-spacing:-14.967296pt;}
.ws2_c00390{word-spacing:-13.314048pt;}
.ws0_c00390{word-spacing:-10.159744pt;}
.ws3_c00390{word-spacing:-9.024000pt;}
.ws9_c00390{word-spacing:-0.619264pt;}
.wsa_c00390{word-spacing:-0.425088pt;}
.ws14_c00390{word-spacing:0.000000pt;}
._1c_c00390{margin-left:-12.542720pt;}
._1b_c00390{margin-left:-11.440640pt;}
._19_c00390{margin-left:-10.034650pt;}
._1d_c00390{margin-left:-9.130240pt;}
._18_c00390{margin-left:-8.188160pt;}
._10_c00390{margin-left:-7.083520pt;}
._f_c00390{margin-left:-6.186240pt;}
._11_c00390{margin-left:-5.262080pt;}
._15_c00390{margin-left:-3.949988pt;}
._12_c00390{margin-left:-2.589440pt;}
._e_c00390{margin-left:-1.672960pt;}
._9_c00390{width:0.896000pt;}
._4_c00390{width:1.792000pt;}
._5_c00390{width:3.072000pt;}
._8_c00390{width:4.544000pt;}
._16_c00390{width:5.503208pt;}
._14_c00390{width:6.654464pt;}
._17_c00390{width:8.183040pt;}
._1a_c00390{width:9.075328pt;}
._3_c00390{width:10.048000pt;}
._0_c00390{width:11.392000pt;}
._d_c00390{width:12.456363pt;}
._13_c00390{width:13.360171pt;}
._c_c00390{width:14.275541pt;}
._b_c00390{width:15.420459pt;}
._1_c00390{width:19.072000pt;}
._6_c00390{width:20.160000pt;}
._a_c00390{width:22.272000pt;}
._2_c00390{width:24.320000pt;}
._7_c00390{width:34.560000pt;}
.fs4_c00390{font-size:32.000000pt;}
.fs2_c00390{font-size:37.120000pt;}
.fs3_c00390{font-size:42.240000pt;}
.fs5_c00390{font-size:52.480000pt;}
.fs7_c00390{font-size:53.333333pt;}
.fs6_c00390{font-size:54.095146pt;}
.fs0_c00390{font-size:64.000000pt;}
.fs1_c00390{font-size:65.969690pt;}
.y0_c00390{bottom:0.000000pt;}
.y3_c00390{bottom:2.280000pt;}
.y48_c00390{bottom:2.773333pt;}
.y47_c00390{bottom:30.884071pt;}
.y1_c00390{bottom:48.000000pt;}
.y46_c00390{bottom:54.760000pt;}
.y45_c00390{bottom:64.678080pt;}
.y44_c00390{bottom:80.356480pt;}
.y43_c00390{bottom:95.720000pt;}
.y42_c00390{bottom:95.723200pt;}
.y41_c00390{bottom:111.401600pt;}
.y40_c00390{bottom:132.520000pt;}
.y3f_c00390{bottom:142.443200pt;}
.y3e_c00390{bottom:158.121600pt;}
.y3d_c00390{bottom:173.800000pt;}
.y3c_c00390{bottom:173.801600pt;}
.y3b_c00390{bottom:189.480000pt;}
.y3a_c00390{bottom:204.843840pt;}
.y39_c00390{bottom:221.480000pt;}
.y38_c00390{bottom:221.481600pt;}
.y37_c00390{bottom:242.600000pt;}
.y36_c00390{bottom:252.840000pt;}
.y35_c00390{bottom:258.280000pt;}
.y34_c00390{bottom:268.200000pt;}
.y33_c00390{bottom:268.204800pt;}
.y32_c00390{bottom:283.883200pt;}
.y31_c00390{bottom:299.561600pt;}
.y2f_c00390{bottom:315.236480pt;}
.y30_c00390{bottom:315.240000pt;}
.y2e_c00390{bottom:330.600000pt;}
.y2d_c00390{bottom:330.601280pt;}
.y2c_c00390{bottom:346.279680pt;}
.y2b_c00390{bottom:361.958080pt;}
.y2a_c00390{bottom:377.321600pt;}
.y28_c00390{bottom:392.998080pt;}
.y29_c00390{bottom:393.000000pt;}
.y27_c00390{bottom:408.361600pt;}
.y26_c00390{bottom:424.040000pt;}
.y25_c00390{bottom:424.041600pt;}
.y23_c00390{bottom:439.716480pt;}
.y24_c00390{bottom:439.720000pt;}
.y22_c00390{bottom:455.080000pt;}
.y21_c00390{bottom:455.083200pt;}
.y20_c00390{bottom:470.761600pt;}
.y1f_c00390{bottom:491.880000pt;}
.y1e_c00390{bottom:501.801600pt;}
.y1d_c00390{bottom:522.920000pt;}
.y1c_c00390{bottom:532.840000pt;}
.y1b_c00390{bottom:532.841600pt;}
.y1a_c00390{bottom:548.520000pt;}
.y19_c00390{bottom:553.960000pt;}
.y18_c00390{bottom:577.640000pt;}
.y17_c00390{bottom:620.520000pt;}
.y16_c00390{bottom:639.080000pt;}
.y15_c00390{bottom:657.640000pt;}
.y14_c00390{bottom:676.520000pt;}
.y13_c00390{bottom:695.080000pt;}
.y11_c00390{bottom:727.080000pt;}
.y12_c00390{bottom:733.800000pt;}
.y10_c00390{bottom:745.640000pt;}
.yf_c00390{bottom:764.520000pt;}
.ye_c00390{bottom:783.080000pt;}
.yd_c00390{bottom:801.640000pt;}
.yc_c00390{bottom:820.520000pt;}
.yb_c00390{bottom:839.080000pt;}
.ya_c00390{bottom:857.640000pt;}
.y9_c00390{bottom:889.640000pt;}
.y7_c00390{bottom:908.520000pt;}
.y8_c00390{bottom:915.240000pt;}
.y6_c00390{bottom:927.080000pt;}
.y5_c00390{bottom:945.640000pt;}
.y4_c00390{bottom:964.520000pt;}
.y2_c00390{bottom:1011.880000pt;}
.hc_c00390{height:17.116093pt;}
.h8_c00390{height:28.992000pt;}
.h5_c00390{height:33.630720pt;}
.hb_c00390{height:35.926250pt;}
.h9_c00390{height:41.761453pt;}
.ha_c00390{height:47.546880pt;}
.hd_c00390{height:50.346667pt;}
.h4_c00390{height:50.928601pt;}
.h3_c00390{height:57.984000pt;}
.h6_c00390{height:60.510720pt;}
.h7_c00390{height:63.232000pt;}
.h2_c00390{height:1067.880000pt;}
.h0_c00390{height:1122.520000pt;}
.h1_c00390{height:1122.666667pt;}
.w3_c00390{width:14.826667pt;}
.w2_c00390{width:767.960000pt;}
.w0_c00390{width:793.720000pt;}
.w1_c00390{width:794.000000pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:12.880000pt;}
.x2_c00390{left:100.480133pt;}
.x3_c00390{left:133.359333pt;}
.x2e_c00390{left:136.808267pt;}
.x35_c00390{left:144.934933pt;}
.x2b_c00390{left:147.528933pt;}
.x1b_c00390{left:158.278000pt;}
.x42_c00390{left:160.449600pt;}
.x37_c00390{left:161.696267pt;}
.x2c_c00390{left:166.412133pt;}
.x36_c00390{left:175.294000pt;}
.x3a_c00390{left:179.125067pt;}
.x43_c00390{left:184.166000pt;}
.x38_c00390{left:194.282267pt;}
.x21_c00390{left:197.686133pt;}
.x1c_c00390{left:201.236667pt;}
.x4_c00390{left:208.878267pt;}
.x22_c00390{left:211.752533pt;}
.x3b_c00390{left:217.125333pt;}
.x39_c00390{left:229.592133pt;}
.x2f_c00390{left:236.229467pt;}
.x2d_c00390{left:240.044533pt;}
.x1d_c00390{left:253.033200pt;}
.xd_c00390{left:260.059200pt;}
.x47_c00390{left:273.022133pt;}
.x48_c00390{left:280.435200pt;}
.x23_c00390{left:290.608000pt;}
.x5_c00390{left:291.928000pt;}
.xe_c00390{left:300.938800pt;}
.x24_c00390{left:314.391867pt;}
.x1e_c00390{left:316.732800pt;}
.x1f_c00390{left:328.567067pt;}
.x6_c00390{left:338.167333pt;}
.x44_c00390{left:340.548533pt;}
.x3c_c00390{left:342.050400pt;}
.x25_c00390{left:351.612933pt;}
.x30_c00390{left:352.600533pt;}
.x45_c00390{left:357.574933pt;}
.x3d_c00390{left:365.124000pt;}
.x15_c00390{left:368.629600pt;}
.x20_c00390{left:381.179067pt;}
.x31_c00390{left:393.062800pt;}
.x34_c00390{left:410.816133pt;}
.x16_c00390{left:434.788400pt;}
.x32_c00390{left:436.106800pt;}
.x7_c00390{left:458.786400pt;}
.x3e_c00390{left:463.643200pt;}
.x11_c00390{left:465.002267pt;}
.x12_c00390{left:469.440000pt;}
.xf_c00390{left:472.432267pt;}
.x33_c00390{left:473.541733pt;}
.x3f_c00390{left:486.716800pt;}
.x17_c00390{left:490.042267pt;}
.x13_c00390{left:503.025333pt;}
.x10_c00390{left:537.327467pt;}
.x18_c00390{left:548.573867pt;}
.x49_c00390{left:552.945600pt;}
.x14_c00390{left:559.040667pt;}
.x19_c00390{left:563.828800pt;}
.x4a_c00390{left:567.771467pt;}
.x46_c00390{left:583.995733pt;}
.x26_c00390{left:590.463200pt;}
.x8_c00390{left:607.040000pt;}
.x40_c00390{left:608.768267pt;}
.x9_c00390{left:617.512933pt;}
.x1a_c00390{left:620.867200pt;}
.xb_c00390{left:623.461867pt;}
.x27_c00390{left:624.697333pt;}
.xa_c00390{left:628.039333pt;}
.x41_c00390{left:631.841467pt;}
.x28_c00390{left:640.990267pt;}
.x29_c00390{left:644.774400pt;}
.x2a_c00390{left:663.306933pt;}
.xc_c00390{left:667.013333pt;}
.x4b_c00390{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a519786c995f9d1ce83240d7.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.134000;font-style:normal;font-weight:normal;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_361465e60557d71cb85da379.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;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:ff3_c00391;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_56fe2641a5a8fc7d203b9a46.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00391;src:url('chunks/assets/font_e8944edfeae95cfe66e1181a.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;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:ff6_c00391;src:url('chunks/assets/font_77a95a185194347ca102534a.woff2')format("woff");}.ff6_c00391{font-family:ff6_c00391;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00391;src:url('chunks/assets/font_7c406d0ff53426ab6c68d81f.woff2')format("woff");}.ff7_c00391{font-family:ff7_c00391;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00391{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00391{vertical-align:-24.480000px;}
.v0_c00391{vertical-align:0.000000px;}
.v1_c00391{vertical-align:30.240000px;}
.lsf_c00391{letter-spacing:-0.179568px;}
.lse_c00391{letter-spacing:0.000000px;}
.ls10_c00391{letter-spacing:0.144000px;}
.lsb_c00391{letter-spacing:0.236160px;}
.ls13_c00391{letter-spacing:0.265680px;}
.ls7_c00391{letter-spacing:0.295200px;}
.ls1a_c00391{letter-spacing:0.318816px;}
.ls16_c00391{letter-spacing:0.328628px;}
.ls22_c00391{letter-spacing:0.371952px;}
.ls12_c00391{letter-spacing:0.425088px;}
.ls20_c00391{letter-spacing:0.438171px;}
.ls1d_c00391{letter-spacing:0.478224px;}
.ls5_c00391{letter-spacing:0.490032px;}
.ls24_c00391{letter-spacing:0.492942px;}
.lsa_c00391{letter-spacing:0.531360px;}
.ls6_c00391{letter-spacing:0.537264px;}
.ls8_c00391{letter-spacing:0.547713px;}
.ls2a_c00391{letter-spacing:0.584496px;}
.ls21_c00391{letter-spacing:0.690768px;}
.ls1e_c00391{letter-spacing:0.696672px;}
.ls1c_c00391{letter-spacing:0.712027px;}
.ls9_c00391{letter-spacing:0.944640px;}
.ls27_c00391{letter-spacing:2.125440px;}
.ls1b_c00391{letter-spacing:2.196288px;}
.ls15_c00391{letter-spacing:3.117312px;}
.ls17_c00391{letter-spacing:3.318048px;}
.ls11_c00391{letter-spacing:4.705488px;}
.ls23_c00391{letter-spacing:5.071536px;}
.ls18_c00391{letter-spacing:5.301792px;}
.ls28_c00391{letter-spacing:5.402160px;}
.ls25_c00391{letter-spacing:5.413968px;}
.lsc_c00391{letter-spacing:5.431680px;}
.ls29_c00391{letter-spacing:5.461200px;}
.ls1f_c00391{letter-spacing:5.567472px;}
.ls0_c00391{letter-spacing:5.976000px;}
.lsd_c00391{letter-spacing:6.159920px;}
.ls14_c00391{letter-spacing:6.429456px;}
.ls19_c00391{letter-spacing:11.117232px;}
.ls4_c00391{letter-spacing:13.896000px;}
.ls3_c00391{letter-spacing:18.432000px;}
.ls2_c00391{letter-spacing:18.504000px;}
.ls1_c00391{letter-spacing:18.576000px;}
.ls26_c00391{letter-spacing:21.466944px;}
.sc__c00391{text-shadow:none;}
.sc1_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00391{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc1_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00391{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00391{word-spacing:-21.980592px;}
.wsc_c00391{word-spacing:-21.874320px;}
.wsb_c00391{word-spacing:-21.815280px;}
.ws4_c00391{word-spacing:-21.714912px;}
.ws5_c00391{word-spacing:-19.678032px;}
.ws6_c00391{word-spacing:-17.630284px;}
.ws2_c00391{word-spacing:-17.465970px;}
.ws9_c00391{word-spacing:-17.411199px;}
.ws8_c00391{word-spacing:-17.356428px;}
.ws3_c00391{word-spacing:-17.246885px;}
.wsa_c00391{word-spacing:-16.918257px;}
.ws0_c00391{word-spacing:-11.429712px;}
.ws1_c00391{word-spacing:-10.152000px;}
.wsd_c00391{word-spacing:0.000000px;}
._16_c00391{margin-left:-21.018240px;}
._14_c00391{margin-left:-10.856160px;}
._12_c00391{margin-left:-6.192000px;}
._f_c00391{margin-left:-4.302720px;}
._10_c00391{margin-left:-3.288960px;}
._13_c00391{margin-left:-2.201760px;}
._11_c00391{margin-left:-1.121760px;}
._5_c00391{width:1.152000px;}
._2_c00391{width:2.592000px;}
._e_c00391{width:3.600000px;}
._7_c00391{width:5.184000px;}
._b_c00391{width:7.056000px;}
._d_c00391{width:8.136000px;}
._8_c00391{width:9.864000px;}
._0_c00391{width:11.016000px;}
._a_c00391{width:12.600000px;}
._c_c00391{width:13.896000px;}
._3_c00391{width:17.568000px;}
._6_c00391{width:18.756816px;}
._15_c00391{width:20.122272px;}
._1_c00391{width:21.744000px;}
._9_c00391{width:24.192000px;}
._4_c00391{width:25.416000px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs3_c00391{font-size:36.000000px;}
.fs2_c00391{font-size:41.760000px;}
.fs4_c00391{font-size:59.040000px;}
.fs6_c00391{font-size:60.000000px;}
.fs5_c00391{font-size:60.857039px;}
.fs0_c00391{font-size:72.000000px;}
.fs1_c00391{font-size:74.215901px;}
.y0_c00391{bottom:0.000000px;}
.y3_c00391{bottom:2.565000px;}
.y3d_c00391{bottom:3.120000px;}
.y3c_c00391{bottom:34.744580px;}
.y1_c00391{bottom:54.000000px;}
.y3b_c00391{bottom:55.485000px;}
.y3a_c00391{bottom:61.605000px;}
.y39_c00391{bottom:72.766800px;}
.y38_c00391{bottom:90.405000px;}
.y37_c00391{bottom:107.685000px;}
.y36_c00391{bottom:107.686800px;}
.y34_c00391{bottom:125.322840px;}
.y35_c00391{bottom:125.325000px;}
.y33_c00391{bottom:142.961040px;}
.y32_c00391{bottom:160.245000px;}
.y31_c00391{bottom:160.252920px;}
.y30_c00391{bottom:178.968600px;}
.y2f_c00391{bottom:196.606800px;}
.y2d_c00391{bottom:214.242840px;}
.y2e_c00391{bottom:214.245000px;}
.y2c_c00391{bottom:231.881040px;}
.y2b_c00391{bottom:249.165000px;}
.y2a_c00391{bottom:255.285000px;}
.y29_c00391{bottom:272.925000px;}
.y28_c00391{bottom:290.205000px;}
.y27_c00391{bottom:301.725000px;}
.y26_c00391{bottom:301.726800px;}
.y25_c00391{bottom:325.485000px;}
.y24_c00391{bottom:343.125000px;}
.y23_c00391{bottom:354.286800px;}
.y22_c00391{bottom:371.925000px;}
.y21_c00391{bottom:389.205000px;}
.y20_c00391{bottom:412.965000px;}
.y1f_c00391{bottom:430.605000px;}
.y1e_c00391{bottom:441.766800px;}
.y1d_c00391{bottom:465.525000px;}
.y1c_c00391{bottom:492.165000px;}
.y1b_c00391{bottom:556.605000px;}
.y1a_c00391{bottom:577.845000px;}
.y19_c00391{bottom:598.725000px;}
.y18_c00391{bottom:619.965000px;}
.y17_c00391{bottom:640.845000px;}
.y16_c00391{bottom:662.085000px;}
.y15_c00391{bottom:682.965000px;}
.y14_c00391{bottom:718.965000px;}
.y13_c00391{bottom:739.845000px;}
.y12_c00391{bottom:761.085000px;}
.y11_c00391{bottom:781.965000px;}
.y10_c00391{bottom:802.845000px;}
.yf_c00391{bottom:824.085000px;}
.ye_c00391{bottom:844.965000px;}
.yd_c00391{bottom:880.965000px;}
.yc_c00391{bottom:901.845000px;}
.yb_c00391{bottom:923.085000px;}
.ya_c00391{bottom:943.965000px;}
.y9_c00391{bottom:964.845000px;}
.y8_c00391{bottom:986.085000px;}
.y7_c00391{bottom:1022.085000px;}
.y6_c00391{bottom:1042.965000px;}
.y5_c00391{bottom:1063.845000px;}
.y4_c00391{bottom:1085.085000px;}
.y2_c00391{bottom:1138.365000px;}
.ha_c00391{height:19.255605px;}
.h7_c00391{height:32.616000px;}
.h9_c00391{height:46.981634px;}
.h8_c00391{height:53.490240px;}
.hb_c00391{height:56.640000px;}
.h4_c00391{height:57.294676px;}
.h6_c00391{height:59.372721px;}
.h3_c00391{height:65.232000px;}
.h5_c00391{height:68.074560px;}
.h2_c00391{height:1201.365000px;}
.h0_c00391{height:1262.835000px;}
.h1_c00391{height:1263.000000px;}
.w3_c00391{width:16.680000px;}
.w2_c00391{width:863.955000px;}
.w0_c00391{width:892.935000px;}
.w1_c00391{width:893.250000px;}
.x0_c00391{left:0.000000px;}
.x1_c00391{left:14.490000px;}
.x2_c00391{left:113.040150px;}
.x3_c00391{left:150.029250px;}
.xa_c00391{left:151.393800px;}
.x5_c00391{left:154.061700px;}
.x21_c00391{left:185.533500px;}
.x1a_c00391{left:210.174300px;}
.xd_c00391{left:227.093550px;}
.x4_c00391{left:234.988050px;}
.x12_c00391{left:256.706550px;}
.x10_c00391{left:263.890050px;}
.x11_c00391{left:288.879300px;}
.x13_c00391{left:305.020800px;}
.x22_c00391{left:309.551550px;}
.x23_c00391{left:320.381100px;}
.x1b_c00391{left:326.200200px;}
.x24_c00391{left:389.332650px;}
.x16_c00391{left:395.741400px;}
.x1c_c00391{left:398.693550px;}
.x6_c00391{left:405.958050px;}
.x25_c00391{left:413.496900px;}
.x17_c00391{left:439.885650px;}
.x18_c00391{left:449.013450px;}
.x19_c00391{left:469.795950px;}
.x1f_c00391{left:498.818100px;}
.xb_c00391{left:501.877800px;}
.xc_c00391{left:533.556450px;}
.x7_c00391{left:552.583800px;}
.x20_c00391{left:559.656450px;}
.x8_c00391{left:594.418650px;}
.xe_c00391{left:648.022050px;}
.x9_c00391{left:657.435750px;}
.x14_c00391{left:662.414400px;}
.xf_c00391{left:682.206000px;}
.x1d_c00391{left:690.391800px;}
.x15_c00391{left:716.578050px;}
.x1e_c00391{left:750.390000px;}
.x26_c00391{left:768.254608px;}
@media print{
.v2_c00391{vertical-align:-21.760000pt;}
.v0_c00391{vertical-align:0.000000pt;}
.v1_c00391{vertical-align:26.880000pt;}
.lsf_c00391{letter-spacing:-0.159616pt;}
.lse_c00391{letter-spacing:0.000000pt;}
.ls10_c00391{letter-spacing:0.128000pt;}
.lsb_c00391{letter-spacing:0.209920pt;}
.ls13_c00391{letter-spacing:0.236160pt;}
.ls7_c00391{letter-spacing:0.262400pt;}
.ls1a_c00391{letter-spacing:0.283392pt;}
.ls16_c00391{letter-spacing:0.292114pt;}
.ls22_c00391{letter-spacing:0.330624pt;}
.ls12_c00391{letter-spacing:0.377856pt;}
.ls20_c00391{letter-spacing:0.389485pt;}
.ls1d_c00391{letter-spacing:0.425088pt;}
.ls5_c00391{letter-spacing:0.435584pt;}
.ls24_c00391{letter-spacing:0.438171pt;}
.lsa_c00391{letter-spacing:0.472320pt;}
.ls6_c00391{letter-spacing:0.477568pt;}
.ls8_c00391{letter-spacing:0.486856pt;}
.ls2a_c00391{letter-spacing:0.519552pt;}
.ls21_c00391{letter-spacing:0.614016pt;}
.ls1e_c00391{letter-spacing:0.619264pt;}
.ls1c_c00391{letter-spacing:0.632913pt;}
.ls9_c00391{letter-spacing:0.839680pt;}
.ls27_c00391{letter-spacing:1.889280pt;}
.ls1b_c00391{letter-spacing:1.952256pt;}
.ls15_c00391{letter-spacing:2.770944pt;}
.ls17_c00391{letter-spacing:2.949376pt;}
.ls11_c00391{letter-spacing:4.182656pt;}
.ls23_c00391{letter-spacing:4.508032pt;}
.ls18_c00391{letter-spacing:4.712704pt;}
.ls28_c00391{letter-spacing:4.801920pt;}
.ls25_c00391{letter-spacing:4.812416pt;}
.lsc_c00391{letter-spacing:4.828160pt;}
.ls29_c00391{letter-spacing:4.854400pt;}
.ls1f_c00391{letter-spacing:4.948864pt;}
.ls0_c00391{letter-spacing:5.312000pt;}
.lsd_c00391{letter-spacing:5.475484pt;}
.ls14_c00391{letter-spacing:5.715072pt;}
.ls19_c00391{letter-spacing:9.881984pt;}
.ls4_c00391{letter-spacing:12.352000pt;}
.ls3_c00391{letter-spacing:16.384000pt;}
.ls2_c00391{letter-spacing:16.448000pt;}
.ls1_c00391{letter-spacing:16.512000pt;}
.ls26_c00391{letter-spacing:19.081728pt;}
.ws7_c00391{word-spacing:-19.538304pt;}
.wsc_c00391{word-spacing:-19.443840pt;}
.wsb_c00391{word-spacing:-19.391360pt;}
.ws4_c00391{word-spacing:-19.302144pt;}
.ws5_c00391{word-spacing:-17.491584pt;}
.ws6_c00391{word-spacing:-15.671364pt;}
.ws2_c00391{word-spacing:-15.525307pt;}
.ws9_c00391{word-spacing:-15.476621pt;}
.ws8_c00391{word-spacing:-15.427936pt;}
.ws3_c00391{word-spacing:-15.330564pt;}
.wsa_c00391{word-spacing:-15.038451pt;}
.ws0_c00391{word-spacing:-10.159744pt;}
.ws1_c00391{word-spacing:-9.024000pt;}
.wsd_c00391{word-spacing:0.000000pt;}
._16_c00391{margin-left:-18.682880pt;}
._14_c00391{margin-left:-9.649920pt;}
._12_c00391{margin-left:-5.504000pt;}
._f_c00391{margin-left:-3.824640pt;}
._10_c00391{margin-left:-2.923520pt;}
._13_c00391{margin-left:-1.957120pt;}
._11_c00391{margin-left:-0.997120pt;}
._5_c00391{width:1.024000pt;}
._2_c00391{width:2.304000pt;}
._e_c00391{width:3.200000pt;}
._7_c00391{width:4.608000pt;}
._b_c00391{width:6.272000pt;}
._d_c00391{width:7.232000pt;}
._8_c00391{width:8.768000pt;}
._0_c00391{width:9.792000pt;}
._a_c00391{width:11.200000pt;}
._c_c00391{width:12.352000pt;}
._3_c00391{width:15.616000pt;}
._6_c00391{width:16.672725pt;}
._15_c00391{width:17.886464pt;}
._1_c00391{width:19.328000pt;}
._9_c00391{width:21.504000pt;}
._4_c00391{width:22.592000pt;}
.fs3_c00391{font-size:32.000000pt;}
.fs2_c00391{font-size:37.120000pt;}
.fs4_c00391{font-size:52.480000pt;}
.fs6_c00391{font-size:53.333333pt;}
.fs5_c00391{font-size:54.095146pt;}
.fs0_c00391{font-size:64.000000pt;}
.fs1_c00391{font-size:65.969690pt;}
.y0_c00391{bottom:0.000000pt;}
.y3_c00391{bottom:2.280000pt;}
.y3d_c00391{bottom:2.773333pt;}
.y3c_c00391{bottom:30.884071pt;}
.y1_c00391{bottom:48.000000pt;}
.y3b_c00391{bottom:49.320000pt;}
.y3a_c00391{bottom:54.760000pt;}
.y39_c00391{bottom:64.681600pt;}
.y38_c00391{bottom:80.360000pt;}
.y37_c00391{bottom:95.720000pt;}
.y36_c00391{bottom:95.721600pt;}
.y34_c00391{bottom:111.398080pt;}
.y35_c00391{bottom:111.400000pt;}
.y33_c00391{bottom:127.076480pt;}
.y32_c00391{bottom:142.440000pt;}
.y31_c00391{bottom:142.447040pt;}
.y30_c00391{bottom:159.083200pt;}
.y2f_c00391{bottom:174.761600pt;}
.y2d_c00391{bottom:190.438080pt;}
.y2e_c00391{bottom:190.440000pt;}
.y2c_c00391{bottom:206.116480pt;}
.y2b_c00391{bottom:221.480000pt;}
.y2a_c00391{bottom:226.920000pt;}
.y29_c00391{bottom:242.600000pt;}
.y28_c00391{bottom:257.960000pt;}
.y27_c00391{bottom:268.200000pt;}
.y26_c00391{bottom:268.201600pt;}
.y25_c00391{bottom:289.320000pt;}
.y24_c00391{bottom:305.000000pt;}
.y23_c00391{bottom:314.921600pt;}
.y22_c00391{bottom:330.600000pt;}
.y21_c00391{bottom:345.960000pt;}
.y20_c00391{bottom:367.080000pt;}
.y1f_c00391{bottom:382.760000pt;}
.y1e_c00391{bottom:392.681600pt;}
.y1d_c00391{bottom:413.800000pt;}
.y1c_c00391{bottom:437.480000pt;}
.y1b_c00391{bottom:494.760000pt;}
.y1a_c00391{bottom:513.640000pt;}
.y19_c00391{bottom:532.200000pt;}
.y18_c00391{bottom:551.080000pt;}
.y17_c00391{bottom:569.640000pt;}
.y16_c00391{bottom:588.520000pt;}
.y15_c00391{bottom:607.080000pt;}
.y14_c00391{bottom:639.080000pt;}
.y13_c00391{bottom:657.640000pt;}
.y12_c00391{bottom:676.520000pt;}
.y11_c00391{bottom:695.080000pt;}
.y10_c00391{bottom:713.640000pt;}
.yf_c00391{bottom:732.520000pt;}
.ye_c00391{bottom:751.080000pt;}
.yd_c00391{bottom:783.080000pt;}
.yc_c00391{bottom:801.640000pt;}
.yb_c00391{bottom:820.520000pt;}
.ya_c00391{bottom:839.080000pt;}
.y9_c00391{bottom:857.640000pt;}
.y8_c00391{bottom:876.520000pt;}
.y7_c00391{bottom:908.520000pt;}
.y6_c00391{bottom:927.080000pt;}
.y5_c00391{bottom:945.640000pt;}
.y4_c00391{bottom:964.520000pt;}
.y2_c00391{bottom:1011.880000pt;}
.ha_c00391{height:17.116093pt;}
.h7_c00391{height:28.992000pt;}
.h9_c00391{height:41.761453pt;}
.h8_c00391{height:47.546880pt;}
.hb_c00391{height:50.346667pt;}
.h4_c00391{height:50.928601pt;}
.h6_c00391{height:52.775752pt;}
.h3_c00391{height:57.984000pt;}
.h5_c00391{height:60.510720pt;}
.h2_c00391{height:1067.880000pt;}
.h0_c00391{height:1122.520000pt;}
.h1_c00391{height:1122.666667pt;}
.w3_c00391{width:14.826667pt;}
.w2_c00391{width:767.960000pt;}
.w0_c00391{width:793.720000pt;}
.w1_c00391{width:794.000000pt;}
.x0_c00391{left:0.000000pt;}
.x1_c00391{left:12.880000pt;}
.x2_c00391{left:100.480133pt;}
.x3_c00391{left:133.359333pt;}
.xa_c00391{left:134.572267pt;}
.x5_c00391{left:136.943733pt;}
.x21_c00391{left:164.918667pt;}
.x1a_c00391{left:186.821600pt;}
.xd_c00391{left:201.860933pt;}
.x4_c00391{left:208.878267pt;}
.x12_c00391{left:228.183600pt;}
.x10_c00391{left:234.568933pt;}
.x11_c00391{left:256.781600pt;}
.x13_c00391{left:271.129600pt;}
.x22_c00391{left:275.156933pt;}
.x23_c00391{left:284.783200pt;}
.x1b_c00391{left:289.955733pt;}
.x24_c00391{left:346.073467pt;}
.x16_c00391{left:351.770133pt;}
.x1c_c00391{left:354.394267pt;}
.x6_c00391{left:360.851600pt;}
.x25_c00391{left:367.552800pt;}
.x17_c00391{left:391.009467pt;}
.x18_c00391{left:399.123067pt;}
.x19_c00391{left:417.596400pt;}
.x1f_c00391{left:443.393867pt;}
.xb_c00391{left:446.113600pt;}
.xc_c00391{left:474.272400pt;}
.x7_c00391{left:491.185600pt;}
.x20_c00391{left:497.472400pt;}
.x8_c00391{left:528.372133pt;}
.xe_c00391{left:576.019600pt;}
.x9_c00391{left:584.387333pt;}
.x14_c00391{left:588.812800pt;}
.xf_c00391{left:606.405333pt;}
.x1d_c00391{left:613.681600pt;}
.x15_c00391{left:636.958267pt;}
.x1e_c00391{left:667.013333pt;}
.x26_c00391{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f22e1afe0006c42e2c5f645.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.134000;font-style:normal;font-weight:normal;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_cea7dc79b6a9661b60ee3b0d.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;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:ff3_c00392;src:url('chunks/assets/font_77a95a185194347ca102534a.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_56fe2641a5a8fc7d203b9a46.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_e5c11c50fad14b2176680a32.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00392{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00392{vertical-align:-24.480000px;}
.v0_c00392{vertical-align:0.000000px;}
.v1_c00392{vertical-align:30.240000px;}
.ls7_c00392{letter-spacing:-0.179568px;}
.ls5_c00392{letter-spacing:0.000000px;}
.ls8_c00392{letter-spacing:0.144000px;}
.ls3_c00392{letter-spacing:0.265680px;}
.lsb_c00392{letter-spacing:0.371952px;}
.lsa_c00392{letter-spacing:0.962352px;}
.ls1_c00392{letter-spacing:3.096000px;}
.ls6_c00392{letter-spacing:5.335200px;}
.ls2_c00392{letter-spacing:5.956800px;}
.ls9_c00392{letter-spacing:5.963040px;}
.ls0_c00392{letter-spacing:5.976000px;}
.ls4_c00392{letter-spacing:6.159920px;}
.sc__c00392{text-shadow:none;}
.sc1_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00392{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc1_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00392{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00392{word-spacing:-20.947680px;}
.ws3_c00392{word-spacing:-17.375472px;}
.ws4_c00392{word-spacing:-16.678800px;}
.ws1_c00392{word-spacing:-11.429712px;}
.ws2_c00392{word-spacing:-10.152000px;}
.ws5_c00392{word-spacing:0.000000px;}
._d_c00392{margin-left:-5.542560px;}
._e_c00392{margin-left:-4.517400px;}
._5_c00392{margin-left:-3.096000px;}
._c_c00392{margin-left:-1.897800px;}
._6_c00392{width:1.080000px;}
._4_c00392{width:2.304000px;}
._2_c00392{width:3.312000px;}
._b_c00392{width:5.184000px;}
._a_c00392{width:6.624000px;}
._0_c00392{width:10.872000px;}
._1_c00392{width:12.024000px;}
._7_c00392{width:13.320000px;}
._3_c00392{width:14.544000px;}
._9_c00392{width:15.624000px;}
._8_c00392{width:18.360000px;}
.fc0_c00392{color:rgb(0,0,0);}
.fs4_c00392{font-size:36.000000px;}
.fs3_c00392{font-size:41.760000px;}
.fs2_c00392{font-size:56.160000px;}
.fs5_c00392{font-size:59.040000px;}
.fs6_c00392{font-size:60.000000px;}
.fs0_c00392{font-size:72.000000px;}
.fs1_c00392{font-size:74.215901px;}
.y0_c00392{bottom:0.000000px;}
.y3_c00392{bottom:2.565000px;}
.y22_c00392{bottom:3.120000px;}
.y21_c00392{bottom:34.744580px;}
.y1_c00392{bottom:54.000000px;}
.y20_c00392{bottom:55.482840px;}
.y1f_c00392{bottom:72.766800px;}
.y1e_c00392{bottom:96.525000px;}
.y1d_c00392{bottom:123.165000px;}
.y1c_c00392{bottom:474.165000px;}
.y1b_c00392{bottom:510.165000px;}
.y1a_c00392{bottom:546.165000px;}
.y19_c00392{bottom:582.165000px;}
.y18_c00392{bottom:618.165000px;}
.y17_c00392{bottom:639.405000px;}
.y16_c00392{bottom:660.285000px;}
.y15_c00392{bottom:681.165000px;}
.y14_c00392{bottom:702.405000px;}
.y13_c00392{bottom:723.285000px;}
.y12_c00392{bottom:744.165000px;}
.y11_c00392{bottom:765.405000px;}
.y10_c00392{bottom:786.285000px;}
.yf_c00392{bottom:807.165000px;}
.ye_c00392{bottom:828.405000px;}
.yd_c00392{bottom:864.405000px;}
.yc_c00392{bottom:900.405000px;}
.yb_c00392{bottom:936.405000px;}
.ya_c00392{bottom:957.285000px;}
.y9_c00392{bottom:978.165000px;}
.y8_c00392{bottom:999.405000px;}
.y7_c00392{bottom:1020.285000px;}
.y6_c00392{bottom:1041.525000px;}
.y5_c00392{bottom:1062.405000px;}
.y4_c00392{bottom:1085.445000px;}
.y2_c00392{bottom:1138.365000px;}
.h8_c00392{height:19.255605px;}
.h6_c00392{height:32.616000px;}
.h7_c00392{height:53.490240px;}
.h9_c00392{height:56.640000px;}
.h4_c00392{height:57.294676px;}
.h3_c00392{height:65.232000px;}
.h5_c00392{height:68.074560px;}
.h2_c00392{height:1201.365000px;}
.h0_c00392{height:1262.835000px;}
.h1_c00392{height:1263.000000px;}
.w3_c00392{width:16.680000px;}
.w2_c00392{width:863.955000px;}
.w0_c00392{width:892.935000px;}
.w1_c00392{width:893.250000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:14.490000px;}
.x2_c00392{left:113.040150px;}
.xb_c00392{left:127.446150px;}
.x3_c00392{left:150.029250px;}
.x5_c00392{left:172.894050px;}
.xc_c00392{left:211.468800px;}
.x4_c00392{left:234.988050px;}
.x6_c00392{left:256.602150px;}
.xf_c00392{left:369.288150px;}
.x13_c00392{left:390.484800px;}
.x10_c00392{left:404.279550px;}
.x11_c00392{left:438.709050px;}
.x14_c00392{left:457.497450px;}
.xd_c00392{left:485.494200px;}
.x12_c00392{left:495.935250px;}
.x7_c00392{left:581.098050px;}
.xe_c00392{left:611.692650px;}
.x8_c00392{left:646.095000px;}
.x9_c00392{left:679.363050px;}
.xa_c00392{left:750.390000px;}
.x15_c00392{left:768.254608px;}
@media print{
.v2_c00392{vertical-align:-21.760000pt;}
.v0_c00392{vertical-align:0.000000pt;}
.v1_c00392{vertical-align:26.880000pt;}
.ls7_c00392{letter-spacing:-0.159616pt;}
.ls5_c00392{letter-spacing:0.000000pt;}
.ls8_c00392{letter-spacing:0.128000pt;}
.ls3_c00392{letter-spacing:0.236160pt;}
.lsb_c00392{letter-spacing:0.330624pt;}
.lsa_c00392{letter-spacing:0.855424pt;}
.ls1_c00392{letter-spacing:2.752000pt;}
.ls6_c00392{letter-spacing:4.742400pt;}
.ls2_c00392{letter-spacing:5.294933pt;}
.ls9_c00392{letter-spacing:5.300480pt;}
.ls0_c00392{letter-spacing:5.312000pt;}
.ls4_c00392{letter-spacing:5.475484pt;}
.ws0_c00392{word-spacing:-18.620160pt;}
.ws3_c00392{word-spacing:-15.444864pt;}
.ws4_c00392{word-spacing:-14.825600pt;}
.ws1_c00392{word-spacing:-10.159744pt;}
.ws2_c00392{word-spacing:-9.024000pt;}
.ws5_c00392{word-spacing:0.000000pt;}
._d_c00392{margin-left:-4.926720pt;}
._e_c00392{margin-left:-4.015467pt;}
._5_c00392{margin-left:-2.752000pt;}
._c_c00392{margin-left:-1.686933pt;}
._6_c00392{width:0.960000pt;}
._4_c00392{width:2.048000pt;}
._2_c00392{width:2.944000pt;}
._b_c00392{width:4.608000pt;}
._a_c00392{width:5.888000pt;}
._0_c00392{width:9.664000pt;}
._1_c00392{width:10.688000pt;}
._7_c00392{width:11.840000pt;}
._3_c00392{width:12.928000pt;}
._9_c00392{width:13.888000pt;}
._8_c00392{width:16.320000pt;}
.fs4_c00392{font-size:32.000000pt;}
.fs3_c00392{font-size:37.120000pt;}
.fs2_c00392{font-size:49.920000pt;}
.fs5_c00392{font-size:52.480000pt;}
.fs6_c00392{font-size:53.333333pt;}
.fs0_c00392{font-size:64.000000pt;}
.fs1_c00392{font-size:65.969690pt;}
.y0_c00392{bottom:0.000000pt;}
.y3_c00392{bottom:2.280000pt;}
.y22_c00392{bottom:2.773333pt;}
.y21_c00392{bottom:30.884071pt;}
.y1_c00392{bottom:48.000000pt;}
.y20_c00392{bottom:49.318080pt;}
.y1f_c00392{bottom:64.681600pt;}
.y1e_c00392{bottom:85.800000pt;}
.y1d_c00392{bottom:109.480000pt;}
.y1c_c00392{bottom:421.480000pt;}
.y1b_c00392{bottom:453.480000pt;}
.y1a_c00392{bottom:485.480000pt;}
.y19_c00392{bottom:517.480000pt;}
.y18_c00392{bottom:549.480000pt;}
.y17_c00392{bottom:568.360000pt;}
.y16_c00392{bottom:586.920000pt;}
.y15_c00392{bottom:605.480000pt;}
.y14_c00392{bottom:624.360000pt;}
.y13_c00392{bottom:642.920000pt;}
.y12_c00392{bottom:661.480000pt;}
.y11_c00392{bottom:680.360000pt;}
.y10_c00392{bottom:698.920000pt;}
.yf_c00392{bottom:717.480000pt;}
.ye_c00392{bottom:736.360000pt;}
.yd_c00392{bottom:768.360000pt;}
.yc_c00392{bottom:800.360000pt;}
.yb_c00392{bottom:832.360000pt;}
.ya_c00392{bottom:850.920000pt;}
.y9_c00392{bottom:869.480000pt;}
.y8_c00392{bottom:888.360000pt;}
.y7_c00392{bottom:906.920000pt;}
.y6_c00392{bottom:925.800000pt;}
.y5_c00392{bottom:944.360000pt;}
.y4_c00392{bottom:964.840000pt;}
.y2_c00392{bottom:1011.880000pt;}
.h8_c00392{height:17.116093pt;}
.h6_c00392{height:28.992000pt;}
.h7_c00392{height:47.546880pt;}
.h9_c00392{height:50.346667pt;}
.h4_c00392{height:50.928601pt;}
.h3_c00392{height:57.984000pt;}
.h5_c00392{height:60.510720pt;}
.h2_c00392{height:1067.880000pt;}
.h0_c00392{height:1122.520000pt;}
.h1_c00392{height:1122.666667pt;}
.w3_c00392{width:14.826667pt;}
.w2_c00392{width:767.960000pt;}
.w0_c00392{width:793.720000pt;}
.w1_c00392{width:794.000000pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:12.880000pt;}
.x2_c00392{left:100.480133pt;}
.xb_c00392{left:113.285467pt;}
.x3_c00392{left:133.359333pt;}
.x5_c00392{left:153.683600pt;}
.xc_c00392{left:187.972267pt;}
.x4_c00392{left:208.878267pt;}
.x6_c00392{left:228.090800pt;}
.xf_c00392{left:328.256133pt;}
.x13_c00392{left:347.097600pt;}
.x10_c00392{left:359.359600pt;}
.x11_c00392{left:389.963600pt;}
.x14_c00392{left:406.664400pt;}
.xd_c00392{left:431.550400pt;}
.x12_c00392{left:440.831333pt;}
.x7_c00392{left:516.531600pt;}
.xe_c00392{left:543.726800pt;}
.x8_c00392{left:574.306667pt;}
.x9_c00392{left:603.878267pt;}
.xa_c00392{left:667.013333pt;}
.x15_c00392{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9edc5a74ac91061674cb4715.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;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_c00393;src:url('chunks/assets/font_0b2ad77f20a19ec41f6af9e8.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_cb3d85554b8233dcf0f6af5c.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00393{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls2_c00393{letter-spacing:0.000000px;}
.ls4_c00393{letter-spacing:0.202464px;}
.ls3_c00393{letter-spacing:0.399600px;}
.ls0_c00393{letter-spacing:5.976000px;}
.ls1_c00393{letter-spacing:6.159920px;}
.sc__c00393{text-shadow:none;}
.sc1_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00393{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc1_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00393{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00393{word-spacing:0.000000px;}
._0_c00393{margin-left:-1.118880px;}
._1_c00393{width:1.065600px;}
.fc0_c00393{color:rgb(0,0,0);}
.fs2_c00393{font-size:53.280000px;}
.fs3_c00393{font-size:60.000000px;}
.fs0_c00393{font-size:72.000000px;}
.fs1_c00393{font-size:74.215901px;}
.y0_c00393{bottom:0.000000px;}
.y23_c00393{bottom:3.120000px;}
.y21_c00393{bottom:25.560000px;}
.y22_c00393{bottom:34.744580px;}
.y20_c00393{bottom:41.400000px;}
.y1_c00393{bottom:54.000000px;}
.y1e_c00393{bottom:112.725000px;}
.y1d_c00393{bottom:148.725000px;}
.y1f_c00393{bottom:176.445000px;}
.y1c_c00393{bottom:184.725000px;}
.y1b_c00393{bottom:220.725000px;}
.y1a_c00393{bottom:256.725000px;}
.y19_c00393{bottom:292.725000px;}
.y18_c00393{bottom:328.725000px;}
.y17_c00393{bottom:364.725000px;}
.y16_c00393{bottom:400.725000px;}
.y15_c00393{bottom:436.725000px;}
.y14_c00393{bottom:472.725000px;}
.y13_c00393{bottom:509.085000px;}
.y12_c00393{bottom:545.085000px;}
.y11_c00393{bottom:581.085000px;}
.y10_c00393{bottom:617.085000px;}
.yf_c00393{bottom:653.085000px;}
.ye_c00393{bottom:689.085000px;}
.yd_c00393{bottom:725.085000px;}
.yc_c00393{bottom:761.085000px;}
.yb_c00393{bottom:797.085000px;}
.ya_c00393{bottom:833.085000px;}
.y9_c00393{bottom:869.085000px;}
.y8_c00393{bottom:905.085000px;}
.y7_c00393{bottom:941.085000px;}
.y6_c00393{bottom:977.085000px;}
.y5_c00393{bottom:1013.085000px;}
.y4_c00393{bottom:1049.085000px;}
.y3_c00393{bottom:1085.085000px;}
.y2_c00393{bottom:1138.365000px;}
.h7_c00393{height:19.255605px;}
.h6_c00393{height:41.132160px;}
.h5_c00393{height:54.000000px;}
.h3_c00393{height:55.584000px;}
.h8_c00393{height:56.640000px;}
.h4_c00393{height:57.294676px;}
.h2_c00393{height:1201.365000px;}
.h0_c00393{height:1262.835000px;}
.h1_c00393{height:1263.000000px;}
.w4_c00393{width:16.680000px;}
.w3_c00393{width:168.840000px;}
.w2_c00393{width:863.955000px;}
.w0_c00393{width:892.935000px;}
.w1_c00393{width:893.250000px;}
.x0_c00393{left:0.000000px;}
.x7_c00393{left:3.240150px;}
.x1_c00393{left:14.490000px;}
.x2_c00393{left:113.040150px;}
.x3_c00393{left:150.029250px;}
.x5_c00393{left:166.138050px;}
.x4_c00393{left:234.988050px;}
.x6_c00393{left:610.290000px;}
.x8_c00393{left:768.254608px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls2_c00393{letter-spacing:0.000000pt;}
.ls4_c00393{letter-spacing:0.179968pt;}
.ls3_c00393{letter-spacing:0.355200pt;}
.ls0_c00393{letter-spacing:5.312000pt;}
.ls1_c00393{letter-spacing:5.475484pt;}
.ws0_c00393{word-spacing:0.000000pt;}
._0_c00393{margin-left:-0.994560pt;}
._1_c00393{width:0.947200pt;}
.fs2_c00393{font-size:47.360000pt;}
.fs3_c00393{font-size:53.333333pt;}
.fs0_c00393{font-size:64.000000pt;}
.fs1_c00393{font-size:65.969690pt;}
.y0_c00393{bottom:0.000000pt;}
.y23_c00393{bottom:2.773333pt;}
.y21_c00393{bottom:22.720000pt;}
.y22_c00393{bottom:30.884071pt;}
.y20_c00393{bottom:36.800000pt;}
.y1_c00393{bottom:48.000000pt;}
.y1e_c00393{bottom:100.200000pt;}
.y1d_c00393{bottom:132.200000pt;}
.y1f_c00393{bottom:156.840000pt;}
.y1c_c00393{bottom:164.200000pt;}
.y1b_c00393{bottom:196.200000pt;}
.y1a_c00393{bottom:228.200000pt;}
.y19_c00393{bottom:260.200000pt;}
.y18_c00393{bottom:292.200000pt;}
.y17_c00393{bottom:324.200000pt;}
.y16_c00393{bottom:356.200000pt;}
.y15_c00393{bottom:388.200000pt;}
.y14_c00393{bottom:420.200000pt;}
.y13_c00393{bottom:452.520000pt;}
.y12_c00393{bottom:484.520000pt;}
.y11_c00393{bottom:516.520000pt;}
.y10_c00393{bottom:548.520000pt;}
.yf_c00393{bottom:580.520000pt;}
.ye_c00393{bottom:612.520000pt;}
.yd_c00393{bottom:644.520000pt;}
.yc_c00393{bottom:676.520000pt;}
.yb_c00393{bottom:708.520000pt;}
.ya_c00393{bottom:740.520000pt;}
.y9_c00393{bottom:772.520000pt;}
.y8_c00393{bottom:804.520000pt;}
.y7_c00393{bottom:836.520000pt;}
.y6_c00393{bottom:868.520000pt;}
.y5_c00393{bottom:900.520000pt;}
.y4_c00393{bottom:932.520000pt;}
.y3_c00393{bottom:964.520000pt;}
.y2_c00393{bottom:1011.880000pt;}
.h7_c00393{height:17.116093pt;}
.h6_c00393{height:36.561920pt;}
.h5_c00393{height:48.000000pt;}
.h3_c00393{height:49.408000pt;}
.h8_c00393{height:50.346667pt;}
.h4_c00393{height:50.928601pt;}
.h2_c00393{height:1067.880000pt;}
.h0_c00393{height:1122.520000pt;}
.h1_c00393{height:1122.666667pt;}
.w4_c00393{width:14.826667pt;}
.w3_c00393{width:150.080000pt;}
.w2_c00393{width:767.960000pt;}
.w0_c00393{width:793.720000pt;}
.w1_c00393{width:794.000000pt;}
.x0_c00393{left:0.000000pt;}
.x7_c00393{left:2.880133pt;}
.x1_c00393{left:12.880000pt;}
.x2_c00393{left:100.480133pt;}
.x3_c00393{left:133.359333pt;}
.x5_c00393{left:147.678267pt;}
.x4_c00393{left:208.878267pt;}
.x6_c00393{left:542.480000pt;}
.x8_c00393{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a2174e31146adb7515eb585.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;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_c00394;src:url('chunks/assets/font_0b2ad77f20a19ec41f6af9e8.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_d61293a41f1609812a942719.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00394{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls4_c00394{letter-spacing:0.000000px;}
.ls1_c00394{letter-spacing:0.202464px;}
.ls0_c00394{letter-spacing:0.280080px;}
.ls5_c00394{letter-spacing:0.399600px;}
.ls6_c00394{letter-spacing:0.719280px;}
.ls2_c00394{letter-spacing:5.976000px;}
.ls3_c00394{letter-spacing:6.159920px;}
.sc__c00394{text-shadow:none;}
.sc1_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00394{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc1_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00394{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00394{word-spacing:-15.531120px;}
.ws0_c00394{word-spacing:-15.211440px;}
.ws1_c00394{word-spacing:-14.811840px;}
.ws3_c00394{word-spacing:0.000000px;}
._1_c00394{margin-left:-1.069824px;}
._0_c00394{width:1.071648px;}
.fc1_c00394{color:transparent;}
.fc0_c00394{color:rgb(0,0,0);}
.fs2_c00394{font-size:53.280000px;}
.fs3_c00394{font-size:60.000000px;}
.fs0_c00394{font-size:72.000000px;}
.fs1_c00394{font-size:74.215901px;}
.y0_c00394{bottom:0.000000px;}
.y11_c00394{bottom:3.120000px;}
.yf_c00394{bottom:34.560000px;}
.y10_c00394{bottom:34.744580px;}
.y1_c00394{bottom:54.000000px;}
.ye_c00394{bottom:218.205000px;}
.yd_c00394{bottom:725.085000px;}
.yc_c00394{bottom:761.085000px;}
.yb_c00394{bottom:797.085000px;}
.ya_c00394{bottom:833.085000px;}
.y9_c00394{bottom:869.085000px;}
.y8_c00394{bottom:905.085000px;}
.y7_c00394{bottom:941.085000px;}
.y6_c00394{bottom:977.085000px;}
.y5_c00394{bottom:1013.085000px;}
.y4_c00394{bottom:1049.085000px;}
.y3_c00394{bottom:1085.085000px;}
.y2_c00394{bottom:1138.365000px;}
.h7_c00394{height:19.255605px;}
.h6_c00394{height:41.132160px;}
.h5_c00394{height:47.160000px;}
.h3_c00394{height:55.584000px;}
.h8_c00394{height:56.640000px;}
.h4_c00394{height:57.294676px;}
.h2_c00394{height:1201.365000px;}
.h0_c00394{height:1262.835000px;}
.h1_c00394{height:1263.000000px;}
.w4_c00394{width:16.680000px;}
.w3_c00394{width:331.920000px;}
.w2_c00394{width:863.955000px;}
.w0_c00394{width:892.935000px;}
.w1_c00394{width:893.250000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:14.490000px;}
.x6_c00394{left:37.201350px;}
.x2_c00394{left:113.040150px;}
.x3_c00394{left:150.029250px;}
.x4_c00394{left:234.988050px;}
.x5_c00394{left:271.170000px;}
.x7_c00394{left:768.254608px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls4_c00394{letter-spacing:0.000000pt;}
.ls1_c00394{letter-spacing:0.179968pt;}
.ls0_c00394{letter-spacing:0.248960pt;}
.ls5_c00394{letter-spacing:0.355200pt;}
.ls6_c00394{letter-spacing:0.639360pt;}
.ls2_c00394{letter-spacing:5.312000pt;}
.ls3_c00394{letter-spacing:5.475484pt;}
.ws2_c00394{word-spacing:-13.805440pt;}
.ws0_c00394{word-spacing:-13.521280pt;}
.ws1_c00394{word-spacing:-13.166080pt;}
.ws3_c00394{word-spacing:0.000000pt;}
._1_c00394{margin-left:-0.950955pt;}
._0_c00394{width:0.952576pt;}
.fs2_c00394{font-size:47.360000pt;}
.fs3_c00394{font-size:53.333333pt;}
.fs0_c00394{font-size:64.000000pt;}
.fs1_c00394{font-size:65.969690pt;}
.y0_c00394{bottom:0.000000pt;}
.y11_c00394{bottom:2.773333pt;}
.yf_c00394{bottom:30.720000pt;}
.y10_c00394{bottom:30.884071pt;}
.y1_c00394{bottom:48.000000pt;}
.ye_c00394{bottom:193.960000pt;}
.yd_c00394{bottom:644.520000pt;}
.yc_c00394{bottom:676.520000pt;}
.yb_c00394{bottom:708.520000pt;}
.ya_c00394{bottom:740.520000pt;}
.y9_c00394{bottom:772.520000pt;}
.y8_c00394{bottom:804.520000pt;}
.y7_c00394{bottom:836.520000pt;}
.y6_c00394{bottom:868.520000pt;}
.y5_c00394{bottom:900.520000pt;}
.y4_c00394{bottom:932.520000pt;}
.y3_c00394{bottom:964.520000pt;}
.y2_c00394{bottom:1011.880000pt;}
.h7_c00394{height:17.116093pt;}
.h6_c00394{height:36.561920pt;}
.h5_c00394{height:41.920000pt;}
.h3_c00394{height:49.408000pt;}
.h8_c00394{height:50.346667pt;}
.h4_c00394{height:50.928601pt;}
.h2_c00394{height:1067.880000pt;}
.h0_c00394{height:1122.520000pt;}
.h1_c00394{height:1122.666667pt;}
.w4_c00394{width:14.826667pt;}
.w3_c00394{width:295.040000pt;}
.w2_c00394{width:767.960000pt;}
.w0_c00394{width:793.720000pt;}
.w1_c00394{width:794.000000pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:12.880000pt;}
.x6_c00394{left:33.067867pt;}
.x2_c00394{left:100.480133pt;}
.x3_c00394{left:133.359333pt;}
.x4_c00394{left:208.878267pt;}
.x5_c00394{left:241.040000pt;}
.x7_c00394{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5be6de3fc3db129a26c02bac.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.134000;font-style:normal;font-weight:normal;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_91fc7cc168881ed113b96b9e.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;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:ff3_c00395;src:url('chunks/assets/font_a5223e46d39ce5dde67c853e.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00395{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00395{vertical-align:-24.480000px;}
.v0_c00395{vertical-align:0.000000px;}
.v1_c00395{vertical-align:30.240000px;}
.lsa_c00395{letter-spacing:0.000000px;}
.ls5_c00395{letter-spacing:0.105840px;}
.lse_c00395{letter-spacing:0.328628px;}
.ls10_c00395{letter-spacing:0.425088px;}
.lsc_c00395{letter-spacing:0.478224px;}
.ls7_c00395{letter-spacing:0.501840px;}
.ls6_c00395{letter-spacing:0.531360px;}
.lsd_c00395{letter-spacing:0.690768px;}
.ls8_c00395{letter-spacing:0.712027px;}
.ls4_c00395{letter-spacing:3.423840px;}
.ls3_c00395{letter-spacing:5.335200px;}
.ls1_c00395{letter-spacing:5.499398px;}
.ls2_c00395{letter-spacing:5.973000px;}
.ls9_c00395{letter-spacing:5.976000px;}
.ls0_c00395{letter-spacing:6.159920px;}
.lsf_c00395{letter-spacing:16.855920px;}
.lsb_c00395{letter-spacing:20.681712px;}
.sc__c00395{text-shadow:none;}
.sc1_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00395{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc1_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00395{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00395{word-spacing:-21.592374px;}
.ws1_c00395{word-spacing:-20.947680px;}
.ws3_c00395{word-spacing:-17.246885px;}
.ws2_c00395{word-spacing:-10.008000px;}
.ws4_c00395{word-spacing:0.000000px;}
._11_c00395{margin-left:-21.195360px;}
._10_c00395{margin-left:-20.073600px;}
._13_c00395{margin-left:-16.354080px;}
._12_c00395{margin-left:-1.062720px;}
._2_c00395{width:1.872000px;}
._0_c00395{width:3.528000px;}
._5_c00395{width:4.536000px;}
._1_c00395{width:5.832000px;}
._3_c00395{width:7.704000px;}
._b_c00395{width:9.144000px;}
._c_c00395{width:10.512000px;}
._6_c00395{width:12.960000px;}
._d_c00395{width:14.112000px;}
._8_c00395{width:15.624000px;}
._7_c00395{width:16.704000px;}
._9_c00395{width:18.936000px;}
._4_c00395{width:23.688000px;}
._a_c00395{width:24.984000px;}
._e_c00395{width:26.136000px;}
._f_c00395{width:40.608000px;}
.fc0_c00395{color:rgb(0,0,0);}
.fs5_c00395{font-size:36.000000px;}
.fs4_c00395{font-size:41.760000px;}
.fs3_c00395{font-size:56.160000px;}
.fs2_c00395{font-size:57.888403px;}
.fs6_c00395{font-size:59.040000px;}
.fs8_c00395{font-size:60.000000px;}
.fs7_c00395{font-size:60.857039px;}
.fs0_c00395{font-size:72.000000px;}
.fs1_c00395{font-size:74.215901px;}
.y0_c00395{bottom:0.000000px;}
.y33_c00395{bottom:3.120000px;}
.y32_c00395{bottom:34.744580px;}
.y1_c00395{bottom:54.000000px;}
.y30_c00395{bottom:55.481040px;}
.y31_c00395{bottom:55.485000px;}
.y2f_c00395{bottom:72.765000px;}
.y2e_c00395{bottom:78.885000px;}
.y2d_c00395{bottom:90.401040px;}
.y2c_c00395{bottom:113.805000px;}
.y2b_c00395{bottom:140.445000px;}
.y2a_c00395{bottom:175.725000px;}
.y29_c00395{bottom:196.605000px;}
.y28_c00395{bottom:232.605000px;}
.y27_c00395{bottom:253.845000px;}
.y26_c00395{bottom:274.725000px;}
.y25_c00395{bottom:295.965000px;}
.y24_c00395{bottom:316.845000px;}
.y23_c00395{bottom:352.845000px;}
.y22_c00395{bottom:373.725000px;}
.y21_c00395{bottom:394.965000px;}
.y20_c00395{bottom:415.845000px;}
.y1f_c00395{bottom:436.725000px;}
.y1e_c00395{bottom:457.965000px;}
.y1d_c00395{bottom:478.845000px;}
.y1c_c00395{bottom:499.725000px;}
.y1b_c00395{bottom:520.965000px;}
.y1a_c00395{bottom:541.845000px;}
.y19_c00395{bottom:577.845000px;}
.y18_c00395{bottom:598.725000px;}
.y17_c00395{bottom:619.965000px;}
.y16_c00395{bottom:640.845000px;}
.y15_c00395{bottom:661.725000px;}
.y14_c00395{bottom:682.965000px;}
.y13_c00395{bottom:703.845000px;}
.y12_c00395{bottom:725.085000px;}
.y11_c00395{bottom:761.085000px;}
.y10_c00395{bottom:781.965000px;}
.yf_c00395{bottom:802.845000px;}
.ye_c00395{bottom:824.085000px;}
.yd_c00395{bottom:844.965000px;}
.yc_c00395{bottom:865.845000px;}
.yb_c00395{bottom:887.085000px;}
.ya_c00395{bottom:907.965000px;}
.y9_c00395{bottom:943.965000px;}
.y8_c00395{bottom:964.845000px;}
.y7_c00395{bottom:986.085000px;}
.y6_c00395{bottom:1006.965000px;}
.y5_c00395{bottom:1027.845000px;}
.y4_c00395{bottom:1049.085000px;}
.y3_c00395{bottom:1085.085000px;}
.y2_c00395{bottom:1138.365000px;}
.h9_c00395{height:19.255605px;}
.h6_c00395{height:32.616000px;}
.h8_c00395{height:46.981634px;}
.h7_c00395{height:53.490240px;}
.ha_c00395{height:56.640000px;}
.h4_c00395{height:57.294676px;}
.h3_c00395{height:65.232000px;}
.h5_c00395{height:68.074560px;}
.h2_c00395{height:1201.365000px;}
.h0_c00395{height:1262.835000px;}
.h1_c00395{height:1263.000000px;}
.w3_c00395{width:16.680000px;}
.w2_c00395{width:863.955000px;}
.w0_c00395{width:892.935000px;}
.w1_c00395{width:893.250000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:14.490000px;}
.x2_c00395{left:113.040150px;}
.x1a_c00395{left:119.034000px;}
.x1b_c00395{left:149.003100px;}
.x3_c00395{left:150.029250px;}
.x13_c00395{left:164.058150px;}
.x1f_c00395{left:179.026950px;}
.xe_c00395{left:183.994950px;}
.x6_c00395{left:202.820400px;}
.x5_c00395{left:203.848350px;}
.x1c_c00395{left:225.072900px;}
.x1d_c00395{left:230.076750px;}
.x4_c00395{left:232.936200px;}
.x27_c00395{left:242.995650px;}
.x22_c00395{left:252.212100px;}
.xc_c00395{left:254.267250px;}
.x11_c00395{left:260.133900px;}
.xf_c00395{left:268.543200px;}
.x7_c00395{left:273.775200px;}
.x23_c00395{left:280.508400px;}
.x12_c00395{left:290.139450px;}
.x14_c00395{left:298.096800px;}
.x15_c00395{left:304.090500px;}
.xd_c00395{left:305.278200px;}
.x16_c00395{left:334.059750px;}
.x10_c00395{left:365.024100px;}
.xa_c00395{left:378.706800px;}
.x24_c00395{left:396.355200px;}
.x17_c00395{left:416.133150px;}
.x18_c00395{left:421.137000px;}
.x25_c00395{left:436.358550px;}
.xb_c00395{left:443.703750px;}
.x20_c00395{left:462.042150px;}
.x8_c00395{left:496.994400px;}
.x21_c00395{left:532.996950px;}
.x9_c00395{left:548.479950px;}
.x19_c00395{left:595.334550px;}
.x26_c00395{left:641.247450px;}
.x1e_c00395{left:689.407050px;}
.x28_c00395{left:768.254608px;}
@media print{
.v2_c00395{vertical-align:-21.760000pt;}
.v0_c00395{vertical-align:0.000000pt;}
.v1_c00395{vertical-align:26.880000pt;}
.lsa_c00395{letter-spacing:0.000000pt;}
.ls5_c00395{letter-spacing:0.094080pt;}
.lse_c00395{letter-spacing:0.292114pt;}
.ls10_c00395{letter-spacing:0.377856pt;}
.lsc_c00395{letter-spacing:0.425088pt;}
.ls7_c00395{letter-spacing:0.446080pt;}
.ls6_c00395{letter-spacing:0.472320pt;}
.lsd_c00395{letter-spacing:0.614016pt;}
.ls8_c00395{letter-spacing:0.632913pt;}
.ls4_c00395{letter-spacing:3.043413pt;}
.ls3_c00395{letter-spacing:4.742400pt;}
.ls1_c00395{letter-spacing:4.888354pt;}
.ls2_c00395{letter-spacing:5.309333pt;}
.ls9_c00395{letter-spacing:5.312000pt;}
.ls0_c00395{letter-spacing:5.475484pt;}
.lsf_c00395{letter-spacing:14.983040pt;}
.lsb_c00395{letter-spacing:18.383744pt;}
.ws0_c00395{word-spacing:-19.193222pt;}
.ws1_c00395{word-spacing:-18.620160pt;}
.ws3_c00395{word-spacing:-15.330564pt;}
.ws2_c00395{word-spacing:-8.896000pt;}
.ws4_c00395{word-spacing:0.000000pt;}
._11_c00395{margin-left:-18.840320pt;}
._10_c00395{margin-left:-17.843200pt;}
._13_c00395{margin-left:-14.536960pt;}
._12_c00395{margin-left:-0.944640pt;}
._2_c00395{width:1.664000pt;}
._0_c00395{width:3.136000pt;}
._5_c00395{width:4.032000pt;}
._1_c00395{width:5.184000pt;}
._3_c00395{width:6.848000pt;}
._b_c00395{width:8.128000pt;}
._c_c00395{width:9.344000pt;}
._6_c00395{width:11.520000pt;}
._d_c00395{width:12.544000pt;}
._8_c00395{width:13.888000pt;}
._7_c00395{width:14.848000pt;}
._9_c00395{width:16.832000pt;}
._4_c00395{width:21.056000pt;}
._a_c00395{width:22.208000pt;}
._e_c00395{width:23.232000pt;}
._f_c00395{width:36.096000pt;}
.fs5_c00395{font-size:32.000000pt;}
.fs4_c00395{font-size:37.120000pt;}
.fs3_c00395{font-size:49.920000pt;}
.fs2_c00395{font-size:51.456358pt;}
.fs6_c00395{font-size:52.480000pt;}
.fs8_c00395{font-size:53.333333pt;}
.fs7_c00395{font-size:54.095146pt;}
.fs0_c00395{font-size:64.000000pt;}
.fs1_c00395{font-size:65.969690pt;}
.y0_c00395{bottom:0.000000pt;}
.y33_c00395{bottom:2.773333pt;}
.y32_c00395{bottom:30.884071pt;}
.y1_c00395{bottom:48.000000pt;}
.y30_c00395{bottom:49.316480pt;}
.y31_c00395{bottom:49.320000pt;}
.y2f_c00395{bottom:64.680000pt;}
.y2e_c00395{bottom:70.120000pt;}
.y2d_c00395{bottom:80.356480pt;}
.y2c_c00395{bottom:101.160000pt;}
.y2b_c00395{bottom:124.840000pt;}
.y2a_c00395{bottom:156.200000pt;}
.y29_c00395{bottom:174.760000pt;}
.y28_c00395{bottom:206.760000pt;}
.y27_c00395{bottom:225.640000pt;}
.y26_c00395{bottom:244.200000pt;}
.y25_c00395{bottom:263.080000pt;}
.y24_c00395{bottom:281.640000pt;}
.y23_c00395{bottom:313.640000pt;}
.y22_c00395{bottom:332.200000pt;}
.y21_c00395{bottom:351.080000pt;}
.y20_c00395{bottom:369.640000pt;}
.y1f_c00395{bottom:388.200000pt;}
.y1e_c00395{bottom:407.080000pt;}
.y1d_c00395{bottom:425.640000pt;}
.y1c_c00395{bottom:444.200000pt;}
.y1b_c00395{bottom:463.080000pt;}
.y1a_c00395{bottom:481.640000pt;}
.y19_c00395{bottom:513.640000pt;}
.y18_c00395{bottom:532.200000pt;}
.y17_c00395{bottom:551.080000pt;}
.y16_c00395{bottom:569.640000pt;}
.y15_c00395{bottom:588.200000pt;}
.y14_c00395{bottom:607.080000pt;}
.y13_c00395{bottom:625.640000pt;}
.y12_c00395{bottom:644.520000pt;}
.y11_c00395{bottom:676.520000pt;}
.y10_c00395{bottom:695.080000pt;}
.yf_c00395{bottom:713.640000pt;}
.ye_c00395{bottom:732.520000pt;}
.yd_c00395{bottom:751.080000pt;}
.yc_c00395{bottom:769.640000pt;}
.yb_c00395{bottom:788.520000pt;}
.ya_c00395{bottom:807.080000pt;}
.y9_c00395{bottom:839.080000pt;}
.y8_c00395{bottom:857.640000pt;}
.y7_c00395{bottom:876.520000pt;}
.y6_c00395{bottom:895.080000pt;}
.y5_c00395{bottom:913.640000pt;}
.y4_c00395{bottom:932.520000pt;}
.y3_c00395{bottom:964.520000pt;}
.y2_c00395{bottom:1011.880000pt;}
.h9_c00395{height:17.116093pt;}
.h6_c00395{height:28.992000pt;}
.h8_c00395{height:41.761453pt;}
.h7_c00395{height:47.546880pt;}
.ha_c00395{height:50.346667pt;}
.h4_c00395{height:50.928601pt;}
.h3_c00395{height:57.984000pt;}
.h5_c00395{height:60.510720pt;}
.h2_c00395{height:1067.880000pt;}
.h0_c00395{height:1122.520000pt;}
.h1_c00395{height:1122.666667pt;}
.w3_c00395{width:14.826667pt;}
.w2_c00395{width:767.960000pt;}
.w0_c00395{width:793.720000pt;}
.w1_c00395{width:794.000000pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:12.880000pt;}
.x2_c00395{left:100.480133pt;}
.x1a_c00395{left:105.808000pt;}
.x1b_c00395{left:132.447200pt;}
.x3_c00395{left:133.359333pt;}
.x13_c00395{left:145.829467pt;}
.x1f_c00395{left:159.135067pt;}
.xe_c00395{left:163.551067pt;}
.x6_c00395{left:180.284800pt;}
.x5_c00395{left:181.198533pt;}
.x1c_c00395{left:200.064800pt;}
.x1d_c00395{left:204.512667pt;}
.x4_c00395{left:207.054400pt;}
.x27_c00395{left:215.996133pt;}
.x22_c00395{left:224.188533pt;}
.xc_c00395{left:226.015333pt;}
.x11_c00395{left:231.230133pt;}
.xf_c00395{left:238.705067pt;}
.x7_c00395{left:243.355733pt;}
.x23_c00395{left:249.340800pt;}
.x12_c00395{left:257.901733pt;}
.x14_c00395{left:264.974933pt;}
.x15_c00395{left:270.302667pt;}
.xd_c00395{left:271.358400pt;}
.x16_c00395{left:296.942000pt;}
.x10_c00395{left:324.465867pt;}
.xa_c00395{left:336.628267pt;}
.x24_c00395{left:352.315733pt;}
.x17_c00395{left:369.896133pt;}
.x18_c00395{left:374.344000pt;}
.x25_c00395{left:387.874267pt;}
.xb_c00395{left:394.403333pt;}
.x20_c00395{left:410.704133pt;}
.x8_c00395{left:441.772800pt;}
.x21_c00395{left:473.775067pt;}
.x9_c00395{left:487.537733pt;}
.x19_c00395{left:529.186267pt;}
.x26_c00395{left:569.997733pt;}
.x1e_c00395{left:612.806267pt;}
.x28_c00395{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9f44b49666bb5107631d0c8.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.134000;font-style:normal;font-weight:normal;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_bdaed7a172dfd3e15f2cb907.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;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:ff3_c00396;src:url('chunks/assets/font_2534873f30ccaaa8c781abf0.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_3e5969cc9d74e98d6e4143d3.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00396{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00396{vertical-align:-30.240000px;}
.v3_c00396{vertical-align:-24.480000px;}
.v0_c00396{vertical-align:0.000000px;}
.v1_c00396{vertical-align:30.240000px;}
.lsc_c00396{letter-spacing:0.000000px;}
.ls4_c00396{letter-spacing:0.065040px;}
.lsd_c00396{letter-spacing:0.265680px;}
.ls1a_c00396{letter-spacing:0.273857px;}
.ls6_c00396{letter-spacing:0.307008px;}
.ls15_c00396{letter-spacing:0.318816px;}
.ls13_c00396{letter-spacing:0.371952px;}
.ls18_c00396{letter-spacing:0.407376px;}
.lse_c00396{letter-spacing:0.438171px;}
.ls17_c00396{letter-spacing:0.478224px;}
.ls12_c00396{letter-spacing:0.531360px;}
.ls0_c00396{letter-spacing:0.545640px;}
.ls8_c00396{letter-spacing:0.547713px;}
.ls10_c00396{letter-spacing:0.602485px;}
.lsf_c00396{letter-spacing:0.690768px;}
.ls7_c00396{letter-spacing:0.712027px;}
.ls3_c00396{letter-spacing:0.734640px;}
.ls1_c00396{letter-spacing:0.770640px;}
.ls2_c00396{letter-spacing:0.936000px;}
.ls9_c00396{letter-spacing:0.944640px;}
.ls19_c00396{letter-spacing:2.816208px;}
.ls16_c00396{letter-spacing:5.354928px;}
.ls14_c00396{letter-spacing:5.402160px;}
.ls5_c00396{letter-spacing:5.549760px;}
.lsa_c00396{letter-spacing:5.976000px;}
.lsb_c00396{letter-spacing:6.159920px;}
.ls11_c00396{letter-spacing:11.140848px;}
.ls1b_c00396{letter-spacing:26.632944px;}
.sc__c00396{text-shadow:none;}
.sc1_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00396{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc1_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00396{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00396{word-spacing:-21.815280px;}
.ws5_c00396{word-spacing:-21.768048px;}
.ws0_c00396{word-spacing:-20.016000px;}
.ws6_c00396{word-spacing:-17.630284px;}
.ws3_c00396{word-spacing:-17.520742px;}
.ws7_c00396{word-spacing:-17.465970px;}
.ws1_c00396{word-spacing:-11.609280px;}
.ws2_c00396{word-spacing:-10.008000px;}
.ws8_c00396{word-spacing:0.000000px;}
._15_c00396{margin-left:-27.099360px;}
._14_c00396{margin-left:-26.095680px;}
._16_c00396{margin-left:-25.032960px;}
._11_c00396{margin-left:-11.571840px;}
._10_c00396{margin-left:-10.568160px;}
._13_c00396{margin-left:-3.306240px;}
._12_c00396{margin-left:-2.243520px;}
._f_c00396{margin-left:-1.062720px;}
._0_c00396{width:1.008000px;}
._6_c00396{width:2.304000px;}
._1_c00396{width:3.528000px;}
._7_c00396{width:4.680000px;}
._2_c00396{width:6.120000px;}
._5_c00396{width:7.200000px;}
._d_c00396{width:8.280000px;}
._3_c00396{width:9.576000px;}
._4_c00396{width:11.088000px;}
._8_c00396{width:12.528000px;}
._e_c00396{width:14.749200px;}
._c_c00396{width:15.819600px;}
._b_c00396{width:16.893240px;}
._a_c00396{width:21.312000px;}
._9_c00396{width:30.816000px;}
.fc0_c00396{color:rgb(0,0,0);}
.fs3_c00396{font-size:36.000000px;}
.fs2_c00396{font-size:41.760000px;}
.fs4_c00396{font-size:59.040000px;}
.fs6_c00396{font-size:60.000000px;}
.fs5_c00396{font-size:60.857039px;}
.fs0_c00396{font-size:72.000000px;}
.fs1_c00396{font-size:74.215901px;}
.y0_c00396{bottom:0.000000px;}
.y38_c00396{bottom:3.120000px;}
.y37_c00396{bottom:34.744580px;}
.y1_c00396{bottom:54.000000px;}
.y35_c00396{bottom:56.200320px;}
.y36_c00396{bottom:56.205000px;}
.y34_c00396{bottom:75.285000px;}
.y33_c00396{bottom:75.286800px;}
.y32_c00396{bottom:92.925000px;}
.y31_c00396{bottom:99.045000px;}
.y30_c00396{bottom:110.566800px;}
.y2f_c00396{bottom:134.325000px;}
.y2e_c00396{bottom:145.484640px;}
.y2d_c00396{bottom:163.122840px;}
.y2c_c00396{bottom:180.406800px;}
.y2a_c00396{bottom:198.044280px;}
.y2b_c00396{bottom:198.045000px;}
.y29_c00396{bottom:215.682480px;}
.y28_c00396{bottom:232.966440px;}
.y27_c00396{bottom:250.604640px;}
.y26_c00396{bottom:268.242840px;}
.y25_c00396{bottom:285.526800px;}
.y24_c00396{bottom:309.285000px;}
.y23_c00396{bottom:320.805000px;}
.y22_c00396{bottom:326.925000px;}
.y21_c00396{bottom:338.085000px;}
.y20_c00396{bottom:344.205000px;}
.y1f_c00396{bottom:370.845000px;}
.y1d_c00396{bottom:444.285000px;}
.y1e_c00396{bottom:451.845000px;}
.y1c_c00396{bottom:465.525000px;}
.y1b_c00396{bottom:486.405000px;}
.y1a_c00396{bottom:507.285000px;}
.y19_c00396{bottom:528.525000px;}
.y18_c00396{bottom:564.525000px;}
.y17_c00396{bottom:602.685000px;}
.y16_c00396{bottom:640.845000px;}
.y15_c00396{bottom:676.845000px;}
.y14_c00396{bottom:697.725000px;}
.y13_c00396{bottom:718.965000px;}
.y12_c00396{bottom:739.845000px;}
.y11_c00396{bottom:761.085000px;}
.y10_c00396{bottom:781.965000px;}
.yf_c00396{bottom:802.845000px;}
.ye_c00396{bottom:824.085000px;}
.yd_c00396{bottom:844.965000px;}
.yc_c00396{bottom:880.965000px;}
.yb_c00396{bottom:901.845000px;}
.ya_c00396{bottom:923.085000px;}
.y9_c00396{bottom:943.965000px;}
.y8_c00396{bottom:964.845000px;}
.y7_c00396{bottom:986.085000px;}
.y6_c00396{bottom:1022.085000px;}
.y5_c00396{bottom:1042.965000px;}
.y4_c00396{bottom:1063.845000px;}
.y3_c00396{bottom:1085.085000px;}
.y2_c00396{bottom:1138.365000px;}
.ha_c00396{height:19.255605px;}
.h7_c00396{height:32.616000px;}
.h6_c00396{height:37.834560px;}
.h8_c00396{height:46.981634px;}
.h9_c00396{height:53.490240px;}
.hb_c00396{height:56.640000px;}
.h4_c00396{height:57.294676px;}
.h3_c00396{height:65.232000px;}
.h5_c00396{height:68.074560px;}
.h2_c00396{height:1201.365000px;}
.h0_c00396{height:1262.835000px;}
.h1_c00396{height:1263.000000px;}
.w3_c00396{width:16.680000px;}
.w2_c00396{width:863.955000px;}
.w0_c00396{width:892.935000px;}
.w1_c00396{width:893.250000px;}
.x0_c00396{left:0.000000px;}
.x1_c00396{left:14.490000px;}
.x2_c00396{left:113.040150px;}
.xf_c00396{left:122.213700px;}
.x17_c00396{left:146.384100px;}
.x3_c00396{left:150.029250px;}
.x4_c00396{left:232.936200px;}
.xa_c00396{left:358.319850px;}
.x1e_c00396{left:368.077500px;}
.x10_c00396{left:384.783000px;}
.x11_c00396{left:400.607700px;}
.x18_c00396{left:401.846550px;}
.x12_c00396{left:413.774850px;}
.xb_c00396{left:418.331100px;}
.x5_c00396{left:419.718000px;}
.x1f_c00396{left:424.746900px;}
.x19_c00396{left:426.821100px;}
.x13_c00396{left:438.749250px;}
.xd_c00396{left:485.533350px;}
.xe_c00396{left:505.527450px;}
.x6_c00396{left:508.270350px;}
.x7_c00396{left:565.293900px;}
.x1a_c00396{left:597.323700px;}
.x8_c00396{left:610.367700px;}
.x1b_c00396{left:635.662650px;}
.x9_c00396{left:650.381100px;}
.x14_c00396{left:658.276650px;}
.x15_c00396{left:687.421500px;}
.x16_c00396{left:692.229150px;}
.x1c_c00396{left:720.459600px;}
.x1d_c00396{left:724.629300px;}
.xc_c00396{left:727.920000px;}
.x20_c00396{left:768.254608px;}
@media print{
.v2_c00396{vertical-align:-26.880000pt;}
.v3_c00396{vertical-align:-21.760000pt;}
.v0_c00396{vertical-align:0.000000pt;}
.v1_c00396{vertical-align:26.880000pt;}
.lsc_c00396{letter-spacing:0.000000pt;}
.ls4_c00396{letter-spacing:0.057813pt;}
.lsd_c00396{letter-spacing:0.236160pt;}
.ls1a_c00396{letter-spacing:0.243428pt;}
.ls6_c00396{letter-spacing:0.272896pt;}
.ls15_c00396{letter-spacing:0.283392pt;}
.ls13_c00396{letter-spacing:0.330624pt;}
.ls18_c00396{letter-spacing:0.362112pt;}
.lse_c00396{letter-spacing:0.389485pt;}
.ls17_c00396{letter-spacing:0.425088pt;}
.ls12_c00396{letter-spacing:0.472320pt;}
.ls0_c00396{letter-spacing:0.485013pt;}
.ls8_c00396{letter-spacing:0.486856pt;}
.ls10_c00396{letter-spacing:0.535542pt;}
.lsf_c00396{letter-spacing:0.614016pt;}
.ls7_c00396{letter-spacing:0.632913pt;}
.ls3_c00396{letter-spacing:0.653013pt;}
.ls1_c00396{letter-spacing:0.685013pt;}
.ls2_c00396{letter-spacing:0.832000pt;}
.ls9_c00396{letter-spacing:0.839680pt;}
.ls19_c00396{letter-spacing:2.503296pt;}
.ls16_c00396{letter-spacing:4.759936pt;}
.ls14_c00396{letter-spacing:4.801920pt;}
.ls5_c00396{letter-spacing:4.933120pt;}
.lsa_c00396{letter-spacing:5.312000pt;}
.lsb_c00396{letter-spacing:5.475484pt;}
.ls11_c00396{letter-spacing:9.902976pt;}
.ls1b_c00396{letter-spacing:23.673728pt;}
.ws4_c00396{word-spacing:-19.391360pt;}
.ws5_c00396{word-spacing:-19.349376pt;}
.ws0_c00396{word-spacing:-17.792000pt;}
.ws6_c00396{word-spacing:-15.671364pt;}
.ws3_c00396{word-spacing:-15.573992pt;}
.ws7_c00396{word-spacing:-15.525307pt;}
.ws1_c00396{word-spacing:-10.319360pt;}
.ws2_c00396{word-spacing:-8.896000pt;}
.ws8_c00396{word-spacing:0.000000pt;}
._15_c00396{margin-left:-24.088320pt;}
._14_c00396{margin-left:-23.196160pt;}
._16_c00396{margin-left:-22.251520pt;}
._11_c00396{margin-left:-10.286080pt;}
._10_c00396{margin-left:-9.393920pt;}
._13_c00396{margin-left:-2.938880pt;}
._12_c00396{margin-left:-1.994240pt;}
._f_c00396{margin-left:-0.944640pt;}
._0_c00396{width:0.896000pt;}
._6_c00396{width:2.048000pt;}
._1_c00396{width:3.136000pt;}
._7_c00396{width:4.160000pt;}
._2_c00396{width:5.440000pt;}
._5_c00396{width:6.400000pt;}
._d_c00396{width:7.360000pt;}
._3_c00396{width:8.512000pt;}
._4_c00396{width:9.856000pt;}
._8_c00396{width:11.136000pt;}
._e_c00396{width:13.110400pt;}
._c_c00396{width:14.061867pt;}
._b_c00396{width:15.016213pt;}
._a_c00396{width:18.944000pt;}
._9_c00396{width:27.392000pt;}
.fs3_c00396{font-size:32.000000pt;}
.fs2_c00396{font-size:37.120000pt;}
.fs4_c00396{font-size:52.480000pt;}
.fs6_c00396{font-size:53.333333pt;}
.fs5_c00396{font-size:54.095146pt;}
.fs0_c00396{font-size:64.000000pt;}
.fs1_c00396{font-size:65.969690pt;}
.y0_c00396{bottom:0.000000pt;}
.y38_c00396{bottom:2.773333pt;}
.y37_c00396{bottom:30.884071pt;}
.y1_c00396{bottom:48.000000pt;}
.y35_c00396{bottom:49.955840pt;}
.y36_c00396{bottom:49.960000pt;}
.y34_c00396{bottom:66.920000pt;}
.y33_c00396{bottom:66.921600pt;}
.y32_c00396{bottom:82.600000pt;}
.y31_c00396{bottom:88.040000pt;}
.y30_c00396{bottom:98.281600pt;}
.y2f_c00396{bottom:119.400000pt;}
.y2e_c00396{bottom:129.319680pt;}
.y2d_c00396{bottom:144.998080pt;}
.y2c_c00396{bottom:160.361600pt;}
.y2a_c00396{bottom:176.039360pt;}
.y2b_c00396{bottom:176.040000pt;}
.y29_c00396{bottom:191.717760pt;}
.y28_c00396{bottom:207.081280pt;}
.y27_c00396{bottom:222.759680pt;}
.y26_c00396{bottom:238.438080pt;}
.y25_c00396{bottom:253.801600pt;}
.y24_c00396{bottom:274.920000pt;}
.y23_c00396{bottom:285.160000pt;}
.y22_c00396{bottom:290.600000pt;}
.y21_c00396{bottom:300.520000pt;}
.y20_c00396{bottom:305.960000pt;}
.y1f_c00396{bottom:329.640000pt;}
.y1d_c00396{bottom:394.920000pt;}
.y1e_c00396{bottom:401.640000pt;}
.y1c_c00396{bottom:413.800000pt;}
.y1b_c00396{bottom:432.360000pt;}
.y1a_c00396{bottom:450.920000pt;}
.y19_c00396{bottom:469.800000pt;}
.y18_c00396{bottom:501.800000pt;}
.y17_c00396{bottom:535.720000pt;}
.y16_c00396{bottom:569.640000pt;}
.y15_c00396{bottom:601.640000pt;}
.y14_c00396{bottom:620.200000pt;}
.y13_c00396{bottom:639.080000pt;}
.y12_c00396{bottom:657.640000pt;}
.y11_c00396{bottom:676.520000pt;}
.y10_c00396{bottom:695.080000pt;}
.yf_c00396{bottom:713.640000pt;}
.ye_c00396{bottom:732.520000pt;}
.yd_c00396{bottom:751.080000pt;}
.yc_c00396{bottom:783.080000pt;}
.yb_c00396{bottom:801.640000pt;}
.ya_c00396{bottom:820.520000pt;}
.y9_c00396{bottom:839.080000pt;}
.y8_c00396{bottom:857.640000pt;}
.y7_c00396{bottom:876.520000pt;}
.y6_c00396{bottom:908.520000pt;}
.y5_c00396{bottom:927.080000pt;}
.y4_c00396{bottom:945.640000pt;}
.y3_c00396{bottom:964.520000pt;}
.y2_c00396{bottom:1011.880000pt;}
.ha_c00396{height:17.116093pt;}
.h7_c00396{height:28.992000pt;}
.h6_c00396{height:33.630720pt;}
.h8_c00396{height:41.761453pt;}
.h9_c00396{height:47.546880pt;}
.hb_c00396{height:50.346667pt;}
.h4_c00396{height:50.928601pt;}
.h3_c00396{height:57.984000pt;}
.h5_c00396{height:60.510720pt;}
.h2_c00396{height:1067.880000pt;}
.h0_c00396{height:1122.520000pt;}
.h1_c00396{height:1122.666667pt;}
.w3_c00396{width:14.826667pt;}
.w2_c00396{width:767.960000pt;}
.w0_c00396{width:793.720000pt;}
.w1_c00396{width:794.000000pt;}
.x0_c00396{left:0.000000pt;}
.x1_c00396{left:12.880000pt;}
.x2_c00396{left:100.480133pt;}
.xf_c00396{left:108.634400pt;}
.x17_c00396{left:130.119200pt;}
.x3_c00396{left:133.359333pt;}
.x4_c00396{left:207.054400pt;}
.xa_c00396{left:318.506533pt;}
.x1e_c00396{left:327.180000pt;}
.x10_c00396{left:342.029333pt;}
.x11_c00396{left:356.095733pt;}
.x18_c00396{left:357.196933pt;}
.x12_c00396{left:367.799867pt;}
.xb_c00396{left:371.849867pt;}
.x5_c00396{left:373.082667pt;}
.x1f_c00396{left:377.552800pt;}
.x19_c00396{left:379.396533pt;}
.x13_c00396{left:389.999333pt;}
.xd_c00396{left:431.585200pt;}
.xe_c00396{left:449.357733pt;}
.x6_c00396{left:451.795867pt;}
.x7_c00396{left:502.483467pt;}
.x1a_c00396{left:530.954400pt;}
.x8_c00396{left:542.549067pt;}
.x1b_c00396{left:565.033467pt;}
.x9_c00396{left:578.116533pt;}
.x14_c00396{left:585.134800pt;}
.x15_c00396{left:611.041333pt;}
.x16_c00396{left:615.314800pt;}
.x1c_c00396{left:640.408533pt;}
.x1d_c00396{left:644.114933pt;}
.xc_c00396{left:647.040000pt;}
.x20_c00396{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b47ba3e77dbed874e1d4bee.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.134000;font-style:normal;font-weight:normal;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_1a594d511086a70450aff216.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;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:ff3_c00397;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_dd43e2b9391eb531a4ad92ca.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00397{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00397{vertical-align:-24.480000px;}
.v0_c00397{vertical-align:0.000000px;}
.v1_c00397{vertical-align:31.170679px;}
.lsb_c00397{letter-spacing:-0.179568px;}
.ls8_c00397{letter-spacing:0.000000px;}
.ls12_c00397{letter-spacing:0.144000px;}
.ls13_c00397{letter-spacing:0.265680px;}
.ls4_c00397{letter-spacing:0.295200px;}
.lsf_c00397{letter-spacing:0.425088px;}
.ls11_c00397{letter-spacing:0.478224px;}
.ls5_c00397{letter-spacing:0.531360px;}
.ls3_c00397{letter-spacing:0.547713px;}
.lsc_c00397{letter-spacing:0.602208px;}
.lsd_c00397{letter-spacing:0.712027px;}
.lse_c00397{letter-spacing:0.743904px;}
.ls9_c00397{letter-spacing:2.066400px;}
.ls10_c00397{letter-spacing:2.337984px;}
.lsa_c00397{letter-spacing:5.430672px;}
.ls0_c00397{letter-spacing:5.975400px;}
.ls6_c00397{letter-spacing:5.976000px;}
.ls1_c00397{letter-spacing:5.980200px;}
.ls7_c00397{letter-spacing:6.159920px;}
.ls2_c00397{letter-spacing:54.864000px;}
.sc__c00397{text-shadow:none;}
.sc1_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00397{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc1_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00397{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00397{word-spacing:-21.043152px;}
.ws0_c00397{word-spacing:-20.632021px;}
.ws5_c00397{word-spacing:-17.630284px;}
.ws6_c00397{word-spacing:-17.465970px;}
.ws7_c00397{word-spacing:-16.838208px;}
.ws2_c00397{word-spacing:-11.609280px;}
.ws3_c00397{word-spacing:-11.429712px;}
.ws8_c00397{word-spacing:-10.152000px;}
.ws4_c00397{word-spacing:-10.008000px;}
.ws9_c00397{word-spacing:0.000000px;}
._1_c00397{margin-left:-7.390048px;}
._e_c00397{margin-left:-2.757600px;}
._4_c00397{margin-left:-1.756800px;}
._3_c00397{width:1.512000px;}
._2_c00397{width:2.664000px;}
._6_c00397{width:4.752000px;}
._d_c00397{width:6.264000px;}
._5_c00397{width:8.712000px;}
._9_c00397{width:9.859800px;}
._8_c00397{width:13.464000px;}
._a_c00397{width:14.544000px;}
._c_c00397{width:15.696000px;}
._b_c00397{width:16.704000px;}
._0_c00397{width:21.456000px;}
._7_c00397{width:27.360000px;}
.fc0_c00397{color:rgb(0,0,0);}
.fs5_c00397{font-size:36.000000px;}
.fs4_c00397{font-size:41.760000px;}
.fs2_c00397{font-size:43.045223px;}
.fs3_c00397{font-size:56.160000px;}
.fs6_c00397{font-size:59.040000px;}
.fs8_c00397{font-size:60.000000px;}
.fs7_c00397{font-size:60.857039px;}
.fs0_c00397{font-size:72.000000px;}
.fs1_c00397{font-size:74.215901px;}
.y0_c00397{bottom:0.000000px;}
.y2c_c00397{bottom:3.120000px;}
.y2b_c00397{bottom:34.744580px;}
.y1_c00397{bottom:54.000000px;}
.y2a_c00397{bottom:61.605000px;}
.y29_c00397{bottom:78.885000px;}
.y28_c00397{bottom:90.401040px;}
.y27_c00397{bottom:113.805000px;}
.y26_c00397{bottom:125.322840px;}
.y25_c00397{bottom:142.961040px;}
.y24_c00397{bottom:160.245000px;}
.y23_c00397{bottom:166.365000px;}
.y22_c00397{bottom:193.005000px;}
.y21_c00397{bottom:244.845000px;}
.y20_c00397{bottom:265.725000px;}
.y1f_c00397{bottom:286.965000px;}
.y1e_c00397{bottom:307.845000px;}
.y1d_c00397{bottom:343.845000px;}
.y1c_c00397{bottom:379.845000px;}
.y1b_c00397{bottom:415.845000px;}
.y1a_c00397{bottom:436.725000px;}
.y19_c00397{bottom:457.965000px;}
.y18_c00397{bottom:478.845000px;}
.y17_c00397{bottom:514.845000px;}
.y16_c00397{bottom:535.725000px;}
.y15_c00397{bottom:556.965000px;}
.y14_c00397{bottom:577.845000px;}
.y13_c00397{bottom:613.845000px;}
.y12_c00397{bottom:649.845000px;}
.y11_c00397{bottom:685.845000px;}
.y10_c00397{bottom:721.845000px;}
.yf_c00397{bottom:757.845000px;}
.ye_c00397{bottom:779.085000px;}
.yd_c00397{bottom:799.965000px;}
.yc_c00397{bottom:835.965000px;}
.yb_c00397{bottom:856.845000px;}
.ya_c00397{bottom:878.085000px;}
.y9_c00397{bottom:914.085000px;}
.y8_c00397{bottom:950.085000px;}
.y7_c00397{bottom:986.085000px;}
.y6_c00397{bottom:1006.965000px;}
.y5_c00397{bottom:1027.845000px;}
.y4_c00397{bottom:1063.845000px;}
.y3_c00397{bottom:1085.085000px;}
.y2_c00397{bottom:1138.365000px;}
.ha_c00397{height:19.255605px;}
.h7_c00397{height:32.616000px;}
.h8_c00397{height:46.981634px;}
.h9_c00397{height:53.490240px;}
.hb_c00397{height:56.640000px;}
.h4_c00397{height:57.294676px;}
.h5_c00397{height:64.401590px;}
.h3_c00397{height:65.232000px;}
.h6_c00397{height:68.074560px;}
.h2_c00397{height:1201.365000px;}
.h0_c00397{height:1262.835000px;}
.h1_c00397{height:1263.000000px;}
.w3_c00397{width:16.680000px;}
.w2_c00397{width:863.955000px;}
.w0_c00397{width:892.935000px;}
.w1_c00397{width:893.250000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:14.490000px;}
.x2_c00397{left:113.040150px;}
.xf_c00397{left:130.636950px;}
.xd_c00397{left:140.037600px;}
.x9_c00397{left:143.236050px;}
.x3_c00397{left:150.029250px;}
.xe_c00397{left:167.037600px;}
.x10_c00397{left:191.460150px;}
.xa_c00397{left:215.270850px;}
.x4_c00397{left:232.936200px;}
.x11_c00397{left:277.552650px;}
.x7_c00397{left:369.085650px;}
.x5_c00397{left:394.318350px;}
.x8_c00397{left:440.113050px;}
.x6_c00397{left:461.139000px;}
.x12_c00397{left:561.528750px;}
.x13_c00397{left:590.756100px;}
.xb_c00397{left:630.117600px;}
.xc_c00397{left:648.117150px;}
.x14_c00397{left:768.254608px;}
@media print{
.v2_c00397{vertical-align:-21.760000pt;}
.v0_c00397{vertical-align:0.000000pt;}
.v1_c00397{vertical-align:27.707270pt;}
.lsb_c00397{letter-spacing:-0.159616pt;}
.ls8_c00397{letter-spacing:0.000000pt;}
.ls12_c00397{letter-spacing:0.128000pt;}
.ls13_c00397{letter-spacing:0.236160pt;}
.ls4_c00397{letter-spacing:0.262400pt;}
.lsf_c00397{letter-spacing:0.377856pt;}
.ls11_c00397{letter-spacing:0.425088pt;}
.ls5_c00397{letter-spacing:0.472320pt;}
.ls3_c00397{letter-spacing:0.486856pt;}
.lsc_c00397{letter-spacing:0.535296pt;}
.lsd_c00397{letter-spacing:0.632913pt;}
.lse_c00397{letter-spacing:0.661248pt;}
.ls9_c00397{letter-spacing:1.836800pt;}
.ls10_c00397{letter-spacing:2.078208pt;}
.lsa_c00397{letter-spacing:4.827264pt;}
.ls0_c00397{letter-spacing:5.311467pt;}
.ls6_c00397{letter-spacing:5.312000pt;}
.ls1_c00397{letter-spacing:5.315733pt;}
.ls7_c00397{letter-spacing:5.475484pt;}
.ls2_c00397{letter-spacing:48.768000pt;}
.ws1_c00397{word-spacing:-18.705024pt;}
.ws0_c00397{word-spacing:-18.339574pt;}
.ws5_c00397{word-spacing:-15.671364pt;}
.ws6_c00397{word-spacing:-15.525307pt;}
.ws7_c00397{word-spacing:-14.967296pt;}
.ws2_c00397{word-spacing:-10.319360pt;}
.ws3_c00397{word-spacing:-10.159744pt;}
.ws8_c00397{word-spacing:-9.024000pt;}
.ws4_c00397{word-spacing:-8.896000pt;}
.ws9_c00397{word-spacing:0.000000pt;}
._1_c00397{margin-left:-6.568932pt;}
._e_c00397{margin-left:-2.451200pt;}
._4_c00397{margin-left:-1.561600pt;}
._3_c00397{width:1.344000pt;}
._2_c00397{width:2.368000pt;}
._6_c00397{width:4.224000pt;}
._d_c00397{width:5.568000pt;}
._5_c00397{width:7.744000pt;}
._9_c00397{width:8.764267pt;}
._8_c00397{width:11.968000pt;}
._a_c00397{width:12.928000pt;}
._c_c00397{width:13.952000pt;}
._b_c00397{width:14.848000pt;}
._0_c00397{width:19.072000pt;}
._7_c00397{width:24.320000pt;}
.fs5_c00397{font-size:32.000000pt;}
.fs4_c00397{font-size:37.120000pt;}
.fs2_c00397{font-size:38.262420pt;}
.fs3_c00397{font-size:49.920000pt;}
.fs6_c00397{font-size:52.480000pt;}
.fs8_c00397{font-size:53.333333pt;}
.fs7_c00397{font-size:54.095146pt;}
.fs0_c00397{font-size:64.000000pt;}
.fs1_c00397{font-size:65.969690pt;}
.y0_c00397{bottom:0.000000pt;}
.y2c_c00397{bottom:2.773333pt;}
.y2b_c00397{bottom:30.884071pt;}
.y1_c00397{bottom:48.000000pt;}
.y2a_c00397{bottom:54.760000pt;}
.y29_c00397{bottom:70.120000pt;}
.y28_c00397{bottom:80.356480pt;}
.y27_c00397{bottom:101.160000pt;}
.y26_c00397{bottom:111.398080pt;}
.y25_c00397{bottom:127.076480pt;}
.y24_c00397{bottom:142.440000pt;}
.y23_c00397{bottom:147.880000pt;}
.y22_c00397{bottom:171.560000pt;}
.y21_c00397{bottom:217.640000pt;}
.y20_c00397{bottom:236.200000pt;}
.y1f_c00397{bottom:255.080000pt;}
.y1e_c00397{bottom:273.640000pt;}
.y1d_c00397{bottom:305.640000pt;}
.y1c_c00397{bottom:337.640000pt;}
.y1b_c00397{bottom:369.640000pt;}
.y1a_c00397{bottom:388.200000pt;}
.y19_c00397{bottom:407.080000pt;}
.y18_c00397{bottom:425.640000pt;}
.y17_c00397{bottom:457.640000pt;}
.y16_c00397{bottom:476.200000pt;}
.y15_c00397{bottom:495.080000pt;}
.y14_c00397{bottom:513.640000pt;}
.y13_c00397{bottom:545.640000pt;}
.y12_c00397{bottom:577.640000pt;}
.y11_c00397{bottom:609.640000pt;}
.y10_c00397{bottom:641.640000pt;}
.yf_c00397{bottom:673.640000pt;}
.ye_c00397{bottom:692.520000pt;}
.yd_c00397{bottom:711.080000pt;}
.yc_c00397{bottom:743.080000pt;}
.yb_c00397{bottom:761.640000pt;}
.ya_c00397{bottom:780.520000pt;}
.y9_c00397{bottom:812.520000pt;}
.y8_c00397{bottom:844.520000pt;}
.y7_c00397{bottom:876.520000pt;}
.y6_c00397{bottom:895.080000pt;}
.y5_c00397{bottom:913.640000pt;}
.y4_c00397{bottom:945.640000pt;}
.y3_c00397{bottom:964.520000pt;}
.y2_c00397{bottom:1011.880000pt;}
.ha_c00397{height:17.116093pt;}
.h7_c00397{height:28.992000pt;}
.h8_c00397{height:41.761453pt;}
.h9_c00397{height:47.546880pt;}
.hb_c00397{height:50.346667pt;}
.h4_c00397{height:50.928601pt;}
.h5_c00397{height:57.245858pt;}
.h3_c00397{height:57.984000pt;}
.h6_c00397{height:60.510720pt;}
.h2_c00397{height:1067.880000pt;}
.h0_c00397{height:1122.520000pt;}
.h1_c00397{height:1122.666667pt;}
.w3_c00397{width:14.826667pt;}
.w2_c00397{width:767.960000pt;}
.w0_c00397{width:793.720000pt;}
.w1_c00397{width:794.000000pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:12.880000pt;}
.x2_c00397{left:100.480133pt;}
.xf_c00397{left:116.121733pt;}
.xd_c00397{left:124.477867pt;}
.x9_c00397{left:127.320933pt;}
.x3_c00397{left:133.359333pt;}
.xe_c00397{left:148.477867pt;}
.x10_c00397{left:170.186800pt;}
.xa_c00397{left:191.351867pt;}
.x4_c00397{left:207.054400pt;}
.x11_c00397{left:246.713467pt;}
.x7_c00397{left:328.076133pt;}
.x5_c00397{left:350.505200pt;}
.x8_c00397{left:391.211600pt;}
.x6_c00397{left:409.901333pt;}
.x12_c00397{left:499.136667pt;}
.x13_c00397{left:525.116533pt;}
.xb_c00397{left:560.104533pt;}
.xc_c00397{left:576.104133pt;}
.x14_c00397{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15b4b7be74b1d2ab0708650a.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.134000;font-style:normal;font-weight:normal;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_14fa455ca9ad46183ce71fd1.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;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:ff3_c00398;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_f43b16a7af167861cdb07139.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00398;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff6_c00398{font-family:ff6_c00398;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00398;src:url('chunks/assets/font_2534873f30ccaaa8c781abf0.woff2')format("woff");}.ff7_c00398{font-family:ff7_c00398;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00398;src:url('chunks/assets/font_936519d609e500024f867ba8.woff2')format("woff");}.ff8_c00398{font-family:ff8_c00398;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00398;src:url('chunks/assets/font_6a1bd0dd38ee91ba175f172b.woff2')format("woff");}.ff9_c00398{font-family:ff9_c00398;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00398{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00398{vertical-align:-24.480000px;}
.v0_c00398{vertical-align:0.000000px;}
.v1_c00398{vertical-align:30.240000px;}
.ls17_c00398{letter-spacing:-0.179568px;}
.lsd_c00398{letter-spacing:0.000000px;}
.lse_c00398{letter-spacing:0.036000px;}
.ls18_c00398{letter-spacing:0.144000px;}
.ls10_c00398{letter-spacing:0.265680px;}
.ls6_c00398{letter-spacing:0.295200px;}
.ls8_c00398{letter-spacing:0.407742px;}
.ls7_c00398{letter-spacing:0.531360px;}
.lsf_c00398{letter-spacing:0.584496px;}
.ls14_c00398{letter-spacing:0.602485px;}
.ls13_c00398{letter-spacing:0.657256px;}
.ls15_c00398{letter-spacing:0.712027px;}
.ls12_c00398{letter-spacing:0.962352px;}
.ls2_c00398{letter-spacing:5.254560px;}
.ls5_c00398{letter-spacing:5.372640px;}
.ls16_c00398{letter-spacing:5.430672px;}
.ls3_c00398{letter-spacing:5.431680px;}
.ls11_c00398{letter-spacing:5.461200px;}
.ls1_c00398{letter-spacing:5.514336px;}
.ls4_c00398{letter-spacing:5.549760px;}
.ls9_c00398{letter-spacing:5.975400px;}
.ls0_c00398{letter-spacing:5.976000px;}
.lsa_c00398{letter-spacing:6.004800px;}
.lsc_c00398{letter-spacing:6.159920px;}
.lsb_c00398{letter-spacing:9.100800px;}
.sc__c00398{text-shadow:none;}
.sc1_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00398{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc1_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00398{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00398{word-spacing:-21.927456px;}
.ws1_c00398{word-spacing:-21.874320px;}
.ws3_c00398{word-spacing:-21.043152px;}
.ws2_c00398{word-spacing:-16.944480px;}
.ws4_c00398{word-spacing:-11.429712px;}
.ws5_c00398{word-spacing:-10.152000px;}
.ws6_c00398{word-spacing:0.000000px;}
._a_c00398{margin-left:-2.748096px;}
._6_c00398{margin-left:-1.322496px;}
._3_c00398{width:1.584000px;}
._9_c00398{width:2.700864px;}
._7_c00398{width:3.707712px;}
._0_c00398{width:5.328000px;}
._8_c00398{width:6.768000px;}
._1_c00398{width:8.064000px;}
._b_c00398{width:9.360000px;}
._c_c00398{width:10.584000px;}
._d_c00398{width:11.808000px;}
._5_c00398{width:12.816000px;}
._e_c00398{width:14.904000px;}
._f_c00398{width:21.168000px;}
._4_c00398{width:23.040000px;}
._2_c00398{width:28.800000px;}
.fc0_c00398{color:rgb(0,0,0);}
.fs7_c00398{font-size:36.000000px;}
.fs6_c00398{font-size:41.760000px;}
.fs5_c00398{font-size:56.160000px;}
.fs2_c00398{font-size:59.040000px;}
.fs8_c00398{font-size:60.000000px;}
.fs3_c00398{font-size:60.857039px;}
.fs4_c00398{font-size:64.800000px;}
.fs0_c00398{font-size:72.000000px;}
.fs1_c00398{font-size:74.215901px;}
.y0_c00398{bottom:0.000000px;}
.y30_c00398{bottom:3.120000px;}
.y2f_c00398{bottom:34.744580px;}
.y1_c00398{bottom:54.000000px;}
.y2e_c00398{bottom:61.605000px;}
.y2d_c00398{bottom:88.245000px;}
.y2c_c00398{bottom:109.845000px;}
.y2b_c00398{bottom:131.085000px;}
.y2a_c00398{bottom:167.085000px;}
.y29_c00398{bottom:187.965000px;}
.y28_c00398{bottom:208.845000px;}
.y27_c00398{bottom:230.085000px;}
.y26_c00398{bottom:250.965000px;}
.y25_c00398{bottom:271.845000px;}
.y24_c00398{bottom:293.085000px;}
.y23_c00398{bottom:313.965000px;}
.y22_c00398{bottom:335.205000px;}
.y21_c00398{bottom:356.445000px;}
.y20_c00398{bottom:377.325000px;}
.y1f_c00398{bottom:398.205000px;}
.y1e_c00398{bottom:434.205000px;}
.y1d_c00398{bottom:470.205000px;}
.y1c_c00398{bottom:496.842840px;}
.y1b_c00398{bottom:514.126800px;}
.y1a_c00398{bottom:531.765000px;}
.y19_c00398{bottom:556.605000px;}
.y18_c00398{bottom:556.606800px;}
.y16_c00398{bottom:574.239600px;}
.y17_c00398{bottom:574.245000px;}
.y15_c00398{bottom:599.080680px;}
.y14_c00398{bottom:626.799960px;}
.y13_c00398{bottom:654.165000px;}
.y12_c00398{bottom:679.365000px;}
.y11_c00398{bottom:708.525000px;}
.y10_c00398{bottom:736.965000px;}
.yf_c00398{bottom:765.405000px;}
.ye_c00398{bottom:794.205000px;}
.yd_c00398{bottom:829.845000px;}
.yc_c00398{bottom:865.845000px;}
.yb_c00398{bottom:887.085000px;}
.ya_c00398{bottom:907.965000px;}
.y9_c00398{bottom:928.845000px;}
.y8_c00398{bottom:950.085000px;}
.y7_c00398{bottom:970.965000px;}
.y6_c00398{bottom:991.845000px;}
.y5_c00398{bottom:1027.845000px;}
.y4_c00398{bottom:1063.845000px;}
.y3_c00398{bottom:1085.085000px;}
.y2_c00398{bottom:1138.365000px;}
.hb_c00398{height:19.255605px;}
.ha_c00398{height:32.616000px;}
.h7_c00398{height:46.981634px;}
.h5_c00398{height:47.988281px;}
.h6_c00398{height:53.490240px;}
.hc_c00398{height:56.640000px;}
.h4_c00398{height:57.294676px;}
.h8_c00398{height:58.708800px;}
.h3_c00398{height:65.232000px;}
.h9_c00398{height:68.074560px;}
.h2_c00398{height:1201.365000px;}
.h0_c00398{height:1262.835000px;}
.h1_c00398{height:1263.000000px;}
.w3_c00398{width:16.680000px;}
.w2_c00398{width:863.955000px;}
.w0_c00398{width:892.935000px;}
.w1_c00398{width:893.250000px;}
.x0_c00398{left:0.000000px;}
.x1_c00398{left:14.490000px;}
.x2_c00398{left:113.040150px;}
.x11_c00398{left:140.036100px;}
.x22_c00398{left:141.758400px;}
.x23_c00398{left:143.009400px;}
.x3_c00398{left:150.029250px;}
.x20_c00398{left:176.412600px;}
.x21_c00398{left:195.567300px;}
.x4_c00398{left:232.936200px;}
.x24_c00398{left:279.285300px;}
.xf_c00398{left:294.081300px;}
.x25_c00398{left:304.304850px;}
.x5_c00398{left:314.632350px;}
.x6_c00398{left:324.640050px;}
.x12_c00398{left:325.665150px;}
.x1a_c00398{left:345.102900px;}
.x1b_c00398{left:350.489550px;}
.xd_c00398{left:357.833850px;}
.x10_c00398{left:366.116100px;}
.x9_c00398{left:377.403750px;}
.xa_c00398{left:388.401450px;}
.x13_c00398{left:399.661800px;}
.x14_c00398{left:404.161800px;}
.xe_c00398{left:408.844800px;}
.xb_c00398{left:426.988350px;}
.xc_c00398{left:437.014200px;}
.x7_c00398{left:476.419950px;}
.x15_c00398{left:481.182450px;}
.x16_c00398{left:485.682450px;}
.x8_c00398{left:494.419950px;}
.x17_c00398{left:540.671250px;}
.x18_c00398{left:545.171250px;}
.x1c_c00398{left:594.224400px;}
.x19_c00398{left:605.181900px;}
.x1d_c00398{left:627.930450px;}
.x1e_c00398{left:662.506050px;}
.x1f_c00398{left:712.861350px;}
.x26_c00398{left:768.254608px;}
@media print{
.v2_c00398{vertical-align:-21.760000pt;}
.v0_c00398{vertical-align:0.000000pt;}
.v1_c00398{vertical-align:26.880000pt;}
.ls17_c00398{letter-spacing:-0.159616pt;}
.lsd_c00398{letter-spacing:0.000000pt;}
.lse_c00398{letter-spacing:0.032000pt;}
.ls18_c00398{letter-spacing:0.128000pt;}
.ls10_c00398{letter-spacing:0.236160pt;}
.ls6_c00398{letter-spacing:0.262400pt;}
.ls8_c00398{letter-spacing:0.362437pt;}
.ls7_c00398{letter-spacing:0.472320pt;}
.lsf_c00398{letter-spacing:0.519552pt;}
.ls14_c00398{letter-spacing:0.535542pt;}
.ls13_c00398{letter-spacing:0.584228pt;}
.ls15_c00398{letter-spacing:0.632913pt;}
.ls12_c00398{letter-spacing:0.855424pt;}
.ls2_c00398{letter-spacing:4.670720pt;}
.ls5_c00398{letter-spacing:4.775680pt;}
.ls16_c00398{letter-spacing:4.827264pt;}
.ls3_c00398{letter-spacing:4.828160pt;}
.ls11_c00398{letter-spacing:4.854400pt;}
.ls1_c00398{letter-spacing:4.901632pt;}
.ls4_c00398{letter-spacing:4.933120pt;}
.ls9_c00398{letter-spacing:5.311467pt;}
.ls0_c00398{letter-spacing:5.312000pt;}
.lsa_c00398{letter-spacing:5.337600pt;}
.lsc_c00398{letter-spacing:5.475484pt;}
.lsb_c00398{letter-spacing:8.089600pt;}
.ws0_c00398{word-spacing:-19.491072pt;}
.ws1_c00398{word-spacing:-19.443840pt;}
.ws3_c00398{word-spacing:-18.705024pt;}
.ws2_c00398{word-spacing:-15.061760pt;}
.ws4_c00398{word-spacing:-10.159744pt;}
.ws5_c00398{word-spacing:-9.024000pt;}
.ws6_c00398{word-spacing:0.000000pt;}
._a_c00398{margin-left:-2.442752pt;}
._6_c00398{margin-left:-1.175552pt;}
._3_c00398{width:1.408000pt;}
._9_c00398{width:2.400768pt;}
._7_c00398{width:3.295744pt;}
._0_c00398{width:4.736000pt;}
._8_c00398{width:6.016000pt;}
._1_c00398{width:7.168000pt;}
._b_c00398{width:8.320000pt;}
._c_c00398{width:9.408000pt;}
._d_c00398{width:10.496000pt;}
._5_c00398{width:11.392000pt;}
._e_c00398{width:13.248000pt;}
._f_c00398{width:18.816000pt;}
._4_c00398{width:20.480000pt;}
._2_c00398{width:25.600000pt;}
.fs7_c00398{font-size:32.000000pt;}
.fs6_c00398{font-size:37.120000pt;}
.fs5_c00398{font-size:49.920000pt;}
.fs2_c00398{font-size:52.480000pt;}
.fs8_c00398{font-size:53.333333pt;}
.fs3_c00398{font-size:54.095146pt;}
.fs4_c00398{font-size:57.600000pt;}
.fs0_c00398{font-size:64.000000pt;}
.fs1_c00398{font-size:65.969690pt;}
.y0_c00398{bottom:0.000000pt;}
.y30_c00398{bottom:2.773333pt;}
.y2f_c00398{bottom:30.884071pt;}
.y1_c00398{bottom:48.000000pt;}
.y2e_c00398{bottom:54.760000pt;}
.y2d_c00398{bottom:78.440000pt;}
.y2c_c00398{bottom:97.640000pt;}
.y2b_c00398{bottom:116.520000pt;}
.y2a_c00398{bottom:148.520000pt;}
.y29_c00398{bottom:167.080000pt;}
.y28_c00398{bottom:185.640000pt;}
.y27_c00398{bottom:204.520000pt;}
.y26_c00398{bottom:223.080000pt;}
.y25_c00398{bottom:241.640000pt;}
.y24_c00398{bottom:260.520000pt;}
.y23_c00398{bottom:279.080000pt;}
.y22_c00398{bottom:297.960000pt;}
.y21_c00398{bottom:316.840000pt;}
.y20_c00398{bottom:335.400000pt;}
.y1f_c00398{bottom:353.960000pt;}
.y1e_c00398{bottom:385.960000pt;}
.y1d_c00398{bottom:417.960000pt;}
.y1c_c00398{bottom:441.638080pt;}
.y1b_c00398{bottom:457.001600pt;}
.y1a_c00398{bottom:472.680000pt;}
.y19_c00398{bottom:494.760000pt;}
.y18_c00398{bottom:494.761600pt;}
.y16_c00398{bottom:510.435200pt;}
.y17_c00398{bottom:510.440000pt;}
.y15_c00398{bottom:532.516160pt;}
.y14_c00398{bottom:557.155520pt;}
.y13_c00398{bottom:581.480000pt;}
.y12_c00398{bottom:603.880000pt;}
.y11_c00398{bottom:629.800000pt;}
.y10_c00398{bottom:655.080000pt;}
.yf_c00398{bottom:680.360000pt;}
.ye_c00398{bottom:705.960000pt;}
.yd_c00398{bottom:737.640000pt;}
.yc_c00398{bottom:769.640000pt;}
.yb_c00398{bottom:788.520000pt;}
.ya_c00398{bottom:807.080000pt;}
.y9_c00398{bottom:825.640000pt;}
.y8_c00398{bottom:844.520000pt;}
.y7_c00398{bottom:863.080000pt;}
.y6_c00398{bottom:881.640000pt;}
.y5_c00398{bottom:913.640000pt;}
.y4_c00398{bottom:945.640000pt;}
.y3_c00398{bottom:964.520000pt;}
.y2_c00398{bottom:1011.880000pt;}
.hb_c00398{height:17.116093pt;}
.ha_c00398{height:28.992000pt;}
.h7_c00398{height:41.761453pt;}
.h5_c00398{height:42.656250pt;}
.h6_c00398{height:47.546880pt;}
.hc_c00398{height:50.346667pt;}
.h4_c00398{height:50.928601pt;}
.h8_c00398{height:52.185600pt;}
.h3_c00398{height:57.984000pt;}
.h9_c00398{height:60.510720pt;}
.h2_c00398{height:1067.880000pt;}
.h0_c00398{height:1122.520000pt;}
.h1_c00398{height:1122.666667pt;}
.w3_c00398{width:14.826667pt;}
.w2_c00398{width:767.960000pt;}
.w0_c00398{width:793.720000pt;}
.w1_c00398{width:794.000000pt;}
.x0_c00398{left:0.000000pt;}
.x1_c00398{left:12.880000pt;}
.x2_c00398{left:100.480133pt;}
.x11_c00398{left:124.476533pt;}
.x22_c00398{left:126.007467pt;}
.x23_c00398{left:127.119467pt;}
.x3_c00398{left:133.359333pt;}
.x20_c00398{left:156.811200pt;}
.x21_c00398{left:173.837600pt;}
.x4_c00398{left:207.054400pt;}
.x24_c00398{left:248.253600pt;}
.xf_c00398{left:261.405600pt;}
.x25_c00398{left:270.493200pt;}
.x5_c00398{left:279.673200pt;}
.x6_c00398{left:288.568933pt;}
.x12_c00398{left:289.480133pt;}
.x1a_c00398{left:306.758133pt;}
.x1b_c00398{left:311.546267pt;}
.xd_c00398{left:318.074533pt;}
.x10_c00398{left:325.436533pt;}
.x9_c00398{left:335.470000pt;}
.xa_c00398{left:345.245733pt;}
.x13_c00398{left:355.254933pt;}
.x14_c00398{left:359.254933pt;}
.xe_c00398{left:363.417600pt;}
.xb_c00398{left:379.545200pt;}
.xc_c00398{left:388.457067pt;}
.x7_c00398{left:423.484400pt;}
.x15_c00398{left:427.717733pt;}
.x16_c00398{left:431.717733pt;}
.x8_c00398{left:439.484400pt;}
.x17_c00398{left:480.596667pt;}
.x18_c00398{left:484.596667pt;}
.x1c_c00398{left:528.199467pt;}
.x19_c00398{left:537.939467pt;}
.x1d_c00398{left:558.160400pt;}
.x1e_c00398{left:588.894267pt;}
.x1f_c00398{left:633.654533pt;}
.x26_c00398{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bde8bc598a5601980b56533f.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.134000;font-style:normal;font-weight:normal;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_33771b9d63dbdca5abef51a8.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;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:ff3_c00399;src:url('chunks/assets/font_bc7bb5dab72ffc76f5c0f069.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_760337a7e9b7154db5913073.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00399{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00399{vertical-align:-24.480000px;}
.v0_c00399{vertical-align:0.000000px;}
.v1_c00399{vertical-align:30.240000px;}
.ls11_c00399{letter-spacing:-0.179568px;}
.ls10_c00399{letter-spacing:0.000000px;}
.ls13_c00399{letter-spacing:0.144000px;}
.lsb_c00399{letter-spacing:0.265680px;}
.ls1f_c00399{letter-spacing:0.273857px;}
.ls2_c00399{letter-spacing:0.295200px;}
.lsa_c00399{letter-spacing:0.304285px;}
.ls1b_c00399{letter-spacing:0.318816px;}
.ls1d_c00399{letter-spacing:0.371952px;}
.ls1c_c00399{letter-spacing:0.425088px;}
.ls20_c00399{letter-spacing:0.438171px;}
.ls16_c00399{letter-spacing:0.478224px;}
.ls8_c00399{letter-spacing:0.486856px;}
.ls24_c00399{letter-spacing:0.492942px;}
.ls6_c00399{letter-spacing:0.531360px;}
.ls5_c00399{letter-spacing:0.547713px;}
.ls3_c00399{letter-spacing:0.559885px;}
.ls19_c00399{letter-spacing:0.584496px;}
.ls17_c00399{letter-spacing:0.602485px;}
.ls1e_c00399{letter-spacing:0.608112px;}
.ls4_c00399{letter-spacing:0.712027px;}
.ls25_c00399{letter-spacing:0.802944px;}
.ls1a_c00399{letter-spacing:0.814752px;}
.ls9_c00399{letter-spacing:1.151280px;}
.ls22_c00399{letter-spacing:2.981520px;}
.lsd_c00399{letter-spacing:5.313600px;}
.ls12_c00399{letter-spacing:5.335200px;}
.lsc_c00399{letter-spacing:5.431680px;}
.lse_c00399{letter-spacing:5.461200px;}
.ls15_c00399{letter-spacing:5.514336px;}
.ls21_c00399{letter-spacing:5.567472px;}
.ls0_c00399{letter-spacing:5.976000px;}
.ls1_c00399{letter-spacing:5.999400px;}
.lsf_c00399{letter-spacing:6.159920px;}
.ls14_c00399{letter-spacing:8.212464px;}
.ls23_c00399{letter-spacing:8.283312px;}
.ls7_c00399{letter-spacing:9.351936px;}
.ls18_c00399{letter-spacing:11.005056px;}
.sc__c00399{text-shadow:none;}
.sc1_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00399{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc1_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00399{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00399{word-spacing:-25.992000px;}
.wsa_c00399{word-spacing:-21.980592px;}
.ws5_c00399{word-spacing:-21.927456px;}
.wsc_c00399{word-spacing:-21.874320px;}
.ws3_c00399{word-spacing:-20.947680px;}
.ws1_c00399{word-spacing:-20.016000px;}
.ws7_c00399{word-spacing:-17.630284px;}
.ws6_c00399{word-spacing:-17.520742px;}
.ws8_c00399{word-spacing:-17.465970px;}
.wsd_c00399{word-spacing:-16.944480px;}
.ws9_c00399{word-spacing:-16.918257px;}
.wsb_c00399{word-spacing:-16.731936px;}
.ws0_c00399{word-spacing:-11.429712px;}
.ws4_c00399{word-spacing:-10.152000px;}
.wse_c00399{word-spacing:0.000000px;}
._f_c00399{margin-left:-10.568160px;}
._10_c00399{margin-left:-9.165600px;}
._d_c00399{margin-left:-7.904160px;}
._e_c00399{margin-left:-6.757920px;}
._11_c00399{margin-left:-2.590560px;}
._c_c00399{margin-left:-1.256400px;}
._1_c00399{width:1.296000px;}
._3_c00399{width:2.664000px;}
._4_c00399{width:3.888000px;}
._2_c00399{width:5.688000px;}
._a_c00399{width:6.696000px;}
._b_c00399{width:7.920000px;}
._7_c00399{width:9.000000px;}
._0_c00399{width:10.224000px;}
._6_c00399{width:12.096000px;}
._9_c00399{width:13.536000px;}
._8_c00399{width:14.544000px;}
._5_c00399{width:42.984000px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs4_c00399{font-size:36.000000px;}
.fs2_c00399{font-size:41.760000px;}
.fs3_c00399{font-size:56.160000px;}
.fs5_c00399{font-size:59.040000px;}
.fs7_c00399{font-size:60.000000px;}
.fs6_c00399{font-size:60.857039px;}
.fs0_c00399{font-size:72.000000px;}
.fs1_c00399{font-size:74.215901px;}
.y0_c00399{bottom:0.000000px;}
.y36_c00399{bottom:3.120000px;}
.y35_c00399{bottom:34.744580px;}
.y1_c00399{bottom:54.000000px;}
.y34_c00399{bottom:55.481040px;}
.y33_c00399{bottom:78.885000px;}
.y31_c00399{bottom:90.401040px;}
.y32_c00399{bottom:90.405000px;}
.y30_c00399{bottom:113.805000px;}
.y2f_c00399{bottom:125.326800px;}
.y2e_c00399{bottom:142.965000px;}
.y2d_c00399{bottom:149.085000px;}
.y2c_c00399{bottom:160.245000px;}
.y2b_c00399{bottom:160.246800px;}
.y2a_c00399{bottom:177.885000px;}
.y29_c00399{bottom:177.886800px;}
.y27_c00399{bottom:195.521040px;}
.y28_c00399{bottom:195.525000px;}
.y26_c00399{bottom:212.805000px;}
.y25_c00399{bottom:212.806800px;}
.y24_c00399{bottom:230.445000px;}
.y23_c00399{bottom:230.446800px;}
.y21_c00399{bottom:248.081040px;}
.y22_c00399{bottom:248.085000px;}
.y20_c00399{bottom:265.365000px;}
.y1f_c00399{bottom:265.366800px;}
.y1d_c00399{bottom:283.001040px;}
.y1e_c00399{bottom:283.005000px;}
.y1c_c00399{bottom:300.285000px;}
.y1b_c00399{bottom:306.405000px;}
.y1a_c00399{bottom:324.045000px;}
.y19_c00399{bottom:350.685000px;}
.y18_c00399{bottom:568.845000px;}
.y17_c00399{bottom:589.725000px;}
.y16_c00399{bottom:610.965000px;}
.y15_c00399{bottom:631.845000px;}
.y14_c00399{bottom:667.845000px;}
.y13_c00399{bottom:703.845000px;}
.y12_c00399{bottom:739.845000px;}
.y11_c00399{bottom:761.085000px;}
.y10_c00399{bottom:781.965000px;}
.yf_c00399{bottom:802.845000px;}
.ye_c00399{bottom:824.085000px;}
.yd_c00399{bottom:844.965000px;}
.yc_c00399{bottom:880.965000px;}
.yb_c00399{bottom:901.845000px;}
.ya_c00399{bottom:923.085000px;}
.y9_c00399{bottom:943.965000px;}
.y8_c00399{bottom:964.845000px;}
.y7_c00399{bottom:986.085000px;}
.y6_c00399{bottom:1006.965000px;}
.y5_c00399{bottom:1042.965000px;}
.y4_c00399{bottom:1063.845000px;}
.y3_c00399{bottom:1085.085000px;}
.y2_c00399{bottom:1138.365000px;}
.h9_c00399{height:19.255605px;}
.h6_c00399{height:32.616000px;}
.h7_c00399{height:46.981634px;}
.h8_c00399{height:53.490240px;}
.ha_c00399{height:56.640000px;}
.h4_c00399{height:57.294676px;}
.h3_c00399{height:65.232000px;}
.h5_c00399{height:68.074560px;}
.h2_c00399{height:1201.365000px;}
.h0_c00399{height:1262.835000px;}
.h1_c00399{height:1263.000000px;}
.w3_c00399{width:16.680000px;}
.w2_c00399{width:863.955000px;}
.w0_c00399{width:892.935000px;}
.w1_c00399{width:893.250000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:14.490000px;}
.x2_c00399{left:113.040150px;}
.x25_c00399{left:125.549550px;}
.xb_c00399{left:139.679850px;}
.x3_c00399{left:150.029250px;}
.x2d_c00399{left:155.196150px;}
.x26_c00399{left:156.575250px;}
.x31_c00399{left:163.873500px;}
.x1a_c00399{left:168.180600px;}
.x2e_c00399{left:172.700250px;}
.x36_c00399{left:175.557900px;}
.x18_c00399{left:179.068050px;}
.x27_c00399{left:186.675300px;}
.x1b_c00399{left:193.155000px;}
.x11_c00399{left:204.046500px;}
.xc_c00399{left:210.634650px;}
.x4_c00399{left:232.936200px;}
.x19_c00399{left:234.911550px;}
.x32_c00399{left:253.075200px;}
.x5_c00399{left:270.135900px;}
.x33_c00399{left:288.909000px;}
.x37_c00399{left:294.758400px;}
.x2f_c00399{left:300.269850px;}
.x30_c00399{left:324.654750px;}
.x16_c00399{left:329.154750px;}
.x6_c00399{left:350.126550px;}
.x28_c00399{left:370.357950px;}
.x17_c00399{left:383.670000px;}
.x12_c00399{left:387.103350px;}
.x29_c00399{left:393.697650px;}
.x13_c00399{left:417.126750px;}
.x14_c00399{left:422.130600px;}
.x9_c00399{left:443.739600px;}
.x1e_c00399{left:454.664400px;}
.x15_c00399{left:465.150150px;}
.x2a_c00399{left:466.448400px;}
.x2b_c00399{left:486.457800px;}
.x1f_c00399{left:514.677600px;}
.xa_c00399{left:530.732250px;}
.xf_c00399{left:543.259950px;}
.x10_c00399{left:618.313500px;}
.xd_c00399{left:652.076250px;}
.x7_c00399{left:658.393350px;}
.x20_c00399{left:669.169200px;}
.x34_c00399{left:677.896800px;}
.x1c_c00399{left:681.059700px;}
.x22_c00399{left:694.129350px;}
.x1d_c00399{left:717.748950px;}
.x21_c00399{left:725.012700px;}
.xe_c00399{left:727.386450px;}
.x23_c00399{left:733.710600px;}
.x2c_c00399{left:736.145100px;}
.x24_c00399{left:742.890000px;}
.x8_c00399{left:745.386150px;}
.x35_c00399{left:750.390000px;}
.x38_c00399{left:768.254608px;}
@media print{
.v2_c00399{vertical-align:-21.760000pt;}
.v0_c00399{vertical-align:0.000000pt;}
.v1_c00399{vertical-align:26.880000pt;}
.ls11_c00399{letter-spacing:-0.159616pt;}
.ls10_c00399{letter-spacing:0.000000pt;}
.ls13_c00399{letter-spacing:0.128000pt;}
.lsb_c00399{letter-spacing:0.236160pt;}
.ls1f_c00399{letter-spacing:0.243428pt;}
.ls2_c00399{letter-spacing:0.262400pt;}
.lsa_c00399{letter-spacing:0.270476pt;}
.ls1b_c00399{letter-spacing:0.283392pt;}
.ls1d_c00399{letter-spacing:0.330624pt;}
.ls1c_c00399{letter-spacing:0.377856pt;}
.ls20_c00399{letter-spacing:0.389485pt;}
.ls16_c00399{letter-spacing:0.425088pt;}
.ls8_c00399{letter-spacing:0.432761pt;}
.ls24_c00399{letter-spacing:0.438171pt;}
.ls6_c00399{letter-spacing:0.472320pt;}
.ls5_c00399{letter-spacing:0.486856pt;}
.ls3_c00399{letter-spacing:0.497675pt;}
.ls19_c00399{letter-spacing:0.519552pt;}
.ls17_c00399{letter-spacing:0.535542pt;}
.ls1e_c00399{letter-spacing:0.540544pt;}
.ls4_c00399{letter-spacing:0.632913pt;}
.ls25_c00399{letter-spacing:0.713728pt;}
.ls1a_c00399{letter-spacing:0.724224pt;}
.ls9_c00399{letter-spacing:1.023360pt;}
.ls22_c00399{letter-spacing:2.650240pt;}
.lsd_c00399{letter-spacing:4.723200pt;}
.ls12_c00399{letter-spacing:4.742400pt;}
.lsc_c00399{letter-spacing:4.828160pt;}
.lse_c00399{letter-spacing:4.854400pt;}
.ls15_c00399{letter-spacing:4.901632pt;}
.ls21_c00399{letter-spacing:4.948864pt;}
.ls0_c00399{letter-spacing:5.312000pt;}
.ls1_c00399{letter-spacing:5.332800pt;}
.lsf_c00399{letter-spacing:5.475484pt;}
.ls14_c00399{letter-spacing:7.299968pt;}
.ls23_c00399{letter-spacing:7.362944pt;}
.ls7_c00399{letter-spacing:8.312832pt;}
.ls18_c00399{letter-spacing:9.782272pt;}
.ws2_c00399{word-spacing:-23.104000pt;}
.wsa_c00399{word-spacing:-19.538304pt;}
.ws5_c00399{word-spacing:-19.491072pt;}
.wsc_c00399{word-spacing:-19.443840pt;}
.ws3_c00399{word-spacing:-18.620160pt;}
.ws1_c00399{word-spacing:-17.792000pt;}
.ws7_c00399{word-spacing:-15.671364pt;}
.ws6_c00399{word-spacing:-15.573992pt;}
.ws8_c00399{word-spacing:-15.525307pt;}
.wsd_c00399{word-spacing:-15.061760pt;}
.ws9_c00399{word-spacing:-15.038451pt;}
.wsb_c00399{word-spacing:-14.872832pt;}
.ws0_c00399{word-spacing:-10.159744pt;}
.ws4_c00399{word-spacing:-9.024000pt;}
.wse_c00399{word-spacing:0.000000pt;}
._f_c00399{margin-left:-9.393920pt;}
._10_c00399{margin-left:-8.147200pt;}
._d_c00399{margin-left:-7.025920pt;}
._e_c00399{margin-left:-6.007040pt;}
._11_c00399{margin-left:-2.302720pt;}
._c_c00399{margin-left:-1.116800pt;}
._1_c00399{width:1.152000pt;}
._3_c00399{width:2.368000pt;}
._4_c00399{width:3.456000pt;}
._2_c00399{width:5.056000pt;}
._a_c00399{width:5.952000pt;}
._b_c00399{width:7.040000pt;}
._7_c00399{width:8.000000pt;}
._0_c00399{width:9.088000pt;}
._6_c00399{width:10.752000pt;}
._9_c00399{width:12.032000pt;}
._8_c00399{width:12.928000pt;}
._5_c00399{width:38.208000pt;}
.fs4_c00399{font-size:32.000000pt;}
.fs2_c00399{font-size:37.120000pt;}
.fs3_c00399{font-size:49.920000pt;}
.fs5_c00399{font-size:52.480000pt;}
.fs7_c00399{font-size:53.333333pt;}
.fs6_c00399{font-size:54.095146pt;}
.fs0_c00399{font-size:64.000000pt;}
.fs1_c00399{font-size:65.969690pt;}
.y0_c00399{bottom:0.000000pt;}
.y36_c00399{bottom:2.773333pt;}
.y35_c00399{bottom:30.884071pt;}
.y1_c00399{bottom:48.000000pt;}
.y34_c00399{bottom:49.316480pt;}
.y33_c00399{bottom:70.120000pt;}
.y31_c00399{bottom:80.356480pt;}
.y32_c00399{bottom:80.360000pt;}
.y30_c00399{bottom:101.160000pt;}
.y2f_c00399{bottom:111.401600pt;}
.y2e_c00399{bottom:127.080000pt;}
.y2d_c00399{bottom:132.520000pt;}
.y2c_c00399{bottom:142.440000pt;}
.y2b_c00399{bottom:142.441600pt;}
.y2a_c00399{bottom:158.120000pt;}
.y29_c00399{bottom:158.121600pt;}
.y27_c00399{bottom:173.796480pt;}
.y28_c00399{bottom:173.800000pt;}
.y26_c00399{bottom:189.160000pt;}
.y25_c00399{bottom:189.161600pt;}
.y24_c00399{bottom:204.840000pt;}
.y23_c00399{bottom:204.841600pt;}
.y21_c00399{bottom:220.516480pt;}
.y22_c00399{bottom:220.520000pt;}
.y20_c00399{bottom:235.880000pt;}
.y1f_c00399{bottom:235.881600pt;}
.y1d_c00399{bottom:251.556480pt;}
.y1e_c00399{bottom:251.560000pt;}
.y1c_c00399{bottom:266.920000pt;}
.y1b_c00399{bottom:272.360000pt;}
.y1a_c00399{bottom:288.040000pt;}
.y19_c00399{bottom:311.720000pt;}
.y18_c00399{bottom:505.640000pt;}
.y17_c00399{bottom:524.200000pt;}
.y16_c00399{bottom:543.080000pt;}
.y15_c00399{bottom:561.640000pt;}
.y14_c00399{bottom:593.640000pt;}
.y13_c00399{bottom:625.640000pt;}
.y12_c00399{bottom:657.640000pt;}
.y11_c00399{bottom:676.520000pt;}
.y10_c00399{bottom:695.080000pt;}
.yf_c00399{bottom:713.640000pt;}
.ye_c00399{bottom:732.520000pt;}
.yd_c00399{bottom:751.080000pt;}
.yc_c00399{bottom:783.080000pt;}
.yb_c00399{bottom:801.640000pt;}
.ya_c00399{bottom:820.520000pt;}
.y9_c00399{bottom:839.080000pt;}
.y8_c00399{bottom:857.640000pt;}
.y7_c00399{bottom:876.520000pt;}
.y6_c00399{bottom:895.080000pt;}
.y5_c00399{bottom:927.080000pt;}
.y4_c00399{bottom:945.640000pt;}
.y3_c00399{bottom:964.520000pt;}
.y2_c00399{bottom:1011.880000pt;}
.h9_c00399{height:17.116093pt;}
.h6_c00399{height:28.992000pt;}
.h7_c00399{height:41.761453pt;}
.h8_c00399{height:47.546880pt;}
.ha_c00399{height:50.346667pt;}
.h4_c00399{height:50.928601pt;}
.h3_c00399{height:57.984000pt;}
.h5_c00399{height:60.510720pt;}
.h2_c00399{height:1067.880000pt;}
.h0_c00399{height:1122.520000pt;}
.h1_c00399{height:1122.666667pt;}
.w3_c00399{width:14.826667pt;}
.w2_c00399{width:767.960000pt;}
.w0_c00399{width:793.720000pt;}
.w1_c00399{width:794.000000pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:12.880000pt;}
.x2_c00399{left:100.480133pt;}
.x25_c00399{left:111.599600pt;}
.xb_c00399{left:124.159867pt;}
.x3_c00399{left:133.359333pt;}
.x2d_c00399{left:137.952133pt;}
.x26_c00399{left:139.178000pt;}
.x31_c00399{left:145.665333pt;}
.x1a_c00399{left:149.493867pt;}
.x2e_c00399{left:153.511333pt;}
.x36_c00399{left:156.051467pt;}
.x18_c00399{left:159.171600pt;}
.x27_c00399{left:165.933600pt;}
.x1b_c00399{left:171.693333pt;}
.x11_c00399{left:181.374667pt;}
.xc_c00399{left:187.230800pt;}
.x4_c00399{left:207.054400pt;}
.x19_c00399{left:208.810267pt;}
.x32_c00399{left:224.955733pt;}
.x5_c00399{left:240.120800pt;}
.x33_c00399{left:256.808000pt;}
.x37_c00399{left:262.007467pt;}
.x2f_c00399{left:266.906533pt;}
.x30_c00399{left:288.582000pt;}
.x16_c00399{left:292.582000pt;}
.x6_c00399{left:311.223600pt;}
.x28_c00399{left:329.207067pt;}
.x17_c00399{left:341.040000pt;}
.x12_c00399{left:344.091867pt;}
.x29_c00399{left:349.953467pt;}
.x13_c00399{left:370.779333pt;}
.x14_c00399{left:375.227200pt;}
.x9_c00399{left:394.435200pt;}
.x1e_c00399{left:404.146133pt;}
.x15_c00399{left:413.466800pt;}
.x2a_c00399{left:414.620800pt;}
.x2b_c00399{left:432.406933pt;}
.x1f_c00399{left:457.491200pt;}
.xa_c00399{left:471.762000pt;}
.xf_c00399{left:482.897733pt;}
.x10_c00399{left:549.612000pt;}
.xd_c00399{left:579.623333pt;}
.x7_c00399{left:585.238533pt;}
.x20_c00399{left:594.817067pt;}
.x34_c00399{left:602.574933pt;}
.x1c_c00399{left:605.386400pt;}
.x22_c00399{left:617.003867pt;}
.x1d_c00399{left:637.999067pt;}
.x21_c00399{left:644.455733pt;}
.xe_c00399{left:646.565733pt;}
.x23_c00399{left:652.187200pt;}
.x2c_c00399{left:654.351200pt;}
.x24_c00399{left:660.346667pt;}
.x8_c00399{left:662.565467pt;}
.x35_c00399{left:667.013333pt;}
.x38_c00399{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aefa4d4fad7a1f116adfcfd4.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_1b78c40fc1673dd8fa037ff3.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;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:ff3_c00400;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_370267361d24681f260f4721.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00400{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls5_c00400{letter-spacing:0.000000px;}
.ls7_c00400{letter-spacing:0.202464px;}
.ls6_c00400{letter-spacing:0.399600px;}
.ls0_c00400{letter-spacing:0.399720px;}
.ls2_c00400{letter-spacing:4.721160px;}
.ls1_c00400{letter-spacing:4.760880px;}
.lsa_c00400{letter-spacing:4.843152px;}
.ls9_c00400{letter-spacing:4.880448px;}
.ls8_c00400{letter-spacing:4.923072px;}
.ls3_c00400{letter-spacing:5.976000px;}
.ls4_c00400{letter-spacing:6.159920px;}
.sc__c00400{text-shadow:none;}
.sc1_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00400{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc1_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00400{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00400{word-spacing:-19.734912px;}
.ws3_c00400{word-spacing:-19.692288px;}
.ws4_c00400{word-spacing:-19.654992px;}
.ws0_c00400{word-spacing:-15.211440px;}
.ws2_c00400{word-spacing:-14.811840px;}
.ws5_c00400{word-spacing:0.000000px;}
._1_c00400{margin-left:-1.015848px;}
._2_c00400{width:1.283808px;}
._3_c00400{width:5.162784px;}
._0_c00400{width:632.808000px;}
.fc0_c00400{color:rgb(0,0,0);}
.fs2_c00400{font-size:53.280000px;}
.fs3_c00400{font-size:60.000000px;}
.fs0_c00400{font-size:72.000000px;}
.fs1_c00400{font-size:74.215901px;}
.y0_c00400{bottom:0.000000px;}
.y25_c00400{bottom:3.120000px;}
.y20_c00400{bottom:14.400000px;}
.y23_c00400{bottom:25.560000px;}
.y24_c00400{bottom:34.744580px;}
.y22_c00400{bottom:41.400000px;}
.y1_c00400{bottom:54.000000px;}
.y1e_c00400{bottom:70.965000px;}
.y1d_c00400{bottom:106.965000px;}
.y1c_c00400{bottom:142.965000px;}
.y21_c00400{bottom:178.245000px;}
.y1b_c00400{bottom:178.965000px;}
.y1a_c00400{bottom:214.965000px;}
.y19_c00400{bottom:250.965000px;}
.y18_c00400{bottom:286.965000px;}
.y17_c00400{bottom:322.965000px;}
.y16_c00400{bottom:358.965000px;}
.y15_c00400{bottom:394.965000px;}
.y14_c00400{bottom:430.965000px;}
.y13_c00400{bottom:466.965000px;}
.y12_c00400{bottom:502.965000px;}
.y11_c00400{bottom:538.965000px;}
.y10_c00400{bottom:574.965000px;}
.yf_c00400{bottom:653.085000px;}
.y1f_c00400{bottom:661.365000px;}
.ye_c00400{bottom:689.085000px;}
.yd_c00400{bottom:725.085000px;}
.yc_c00400{bottom:761.085000px;}
.yb_c00400{bottom:797.085000px;}
.ya_c00400{bottom:833.085000px;}
.y9_c00400{bottom:869.085000px;}
.y8_c00400{bottom:905.085000px;}
.y7_c00400{bottom:941.085000px;}
.y6_c00400{bottom:977.085000px;}
.y5_c00400{bottom:1013.085000px;}
.y4_c00400{bottom:1049.085000px;}
.y3_c00400{bottom:1085.085000px;}
.y2_c00400{bottom:1138.365000px;}
.h8_c00400{height:19.255605px;}
.h5_c00400{height:27.000000px;}
.h6_c00400{height:48.271680px;}
.h7_c00400{height:54.000000px;}
.h9_c00400{height:56.640000px;}
.h4_c00400{height:57.294676px;}
.h3_c00400{height:65.232000px;}
.h2_c00400{height:1201.365000px;}
.h0_c00400{height:1262.835000px;}
.h1_c00400{height:1263.000000px;}
.w5_c00400{width:16.680000px;}
.w4_c00400{width:466.920000px;}
.w3_c00400{width:649.080000px;}
.w2_c00400{width:863.955000px;}
.w0_c00400{width:892.935000px;}
.w1_c00400{width:893.250000px;}
.x0_c00400{left:0.000000px;}
.x1_c00400{left:14.490000px;}
.x7_c00400{left:28.481250px;}
.x2_c00400{left:113.040150px;}
.x5_c00400{left:130.050000px;}
.x3_c00400{left:150.029250px;}
.x8_c00400{left:183.977700px;}
.x6_c00400{left:205.112550px;}
.x4_c00400{left:232.936200px;}
.x9_c00400{left:768.254608px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls5_c00400{letter-spacing:0.000000pt;}
.ls7_c00400{letter-spacing:0.179968pt;}
.ls6_c00400{letter-spacing:0.355200pt;}
.ls0_c00400{letter-spacing:0.355307pt;}
.ls2_c00400{letter-spacing:4.196587pt;}
.ls1_c00400{letter-spacing:4.231893pt;}
.lsa_c00400{letter-spacing:4.305024pt;}
.ls9_c00400{letter-spacing:4.338176pt;}
.ls8_c00400{letter-spacing:4.376064pt;}
.ls3_c00400{letter-spacing:5.312000pt;}
.ls4_c00400{letter-spacing:5.475484pt;}
.ws1_c00400{word-spacing:-17.542144pt;}
.ws3_c00400{word-spacing:-17.504256pt;}
.ws4_c00400{word-spacing:-17.471104pt;}
.ws0_c00400{word-spacing:-13.521280pt;}
.ws2_c00400{word-spacing:-13.166080pt;}
.ws5_c00400{word-spacing:0.000000pt;}
._1_c00400{margin-left:-0.902976pt;}
._2_c00400{width:1.141163pt;}
._3_c00400{width:4.589141pt;}
._0_c00400{width:562.496000pt;}
.fs2_c00400{font-size:47.360000pt;}
.fs3_c00400{font-size:53.333333pt;}
.fs0_c00400{font-size:64.000000pt;}
.fs1_c00400{font-size:65.969690pt;}
.y0_c00400{bottom:0.000000pt;}
.y25_c00400{bottom:2.773333pt;}
.y20_c00400{bottom:12.800000pt;}
.y23_c00400{bottom:22.720000pt;}
.y24_c00400{bottom:30.884071pt;}
.y22_c00400{bottom:36.800000pt;}
.y1_c00400{bottom:48.000000pt;}
.y1e_c00400{bottom:63.080000pt;}
.y1d_c00400{bottom:95.080000pt;}
.y1c_c00400{bottom:127.080000pt;}
.y21_c00400{bottom:158.440000pt;}
.y1b_c00400{bottom:159.080000pt;}
.y1a_c00400{bottom:191.080000pt;}
.y19_c00400{bottom:223.080000pt;}
.y18_c00400{bottom:255.080000pt;}
.y17_c00400{bottom:287.080000pt;}
.y16_c00400{bottom:319.080000pt;}
.y15_c00400{bottom:351.080000pt;}
.y14_c00400{bottom:383.080000pt;}
.y13_c00400{bottom:415.080000pt;}
.y12_c00400{bottom:447.080000pt;}
.y11_c00400{bottom:479.080000pt;}
.y10_c00400{bottom:511.080000pt;}
.yf_c00400{bottom:580.520000pt;}
.y1f_c00400{bottom:587.880000pt;}
.ye_c00400{bottom:612.520000pt;}
.yd_c00400{bottom:644.520000pt;}
.yc_c00400{bottom:676.520000pt;}
.yb_c00400{bottom:708.520000pt;}
.ya_c00400{bottom:740.520000pt;}
.y9_c00400{bottom:772.520000pt;}
.y8_c00400{bottom:804.520000pt;}
.y7_c00400{bottom:836.520000pt;}
.y6_c00400{bottom:868.520000pt;}
.y5_c00400{bottom:900.520000pt;}
.y4_c00400{bottom:932.520000pt;}
.y3_c00400{bottom:964.520000pt;}
.y2_c00400{bottom:1011.880000pt;}
.h8_c00400{height:17.116093pt;}
.h5_c00400{height:24.000000pt;}
.h6_c00400{height:42.908160pt;}
.h7_c00400{height:48.000000pt;}
.h9_c00400{height:50.346667pt;}
.h4_c00400{height:50.928601pt;}
.h3_c00400{height:57.984000pt;}
.h2_c00400{height:1067.880000pt;}
.h0_c00400{height:1122.520000pt;}
.h1_c00400{height:1122.666667pt;}
.w5_c00400{width:14.826667pt;}
.w4_c00400{width:415.040000pt;}
.w3_c00400{width:576.960000pt;}
.w2_c00400{width:767.960000pt;}
.w0_c00400{width:793.720000pt;}
.w1_c00400{width:794.000000pt;}
.x0_c00400{left:0.000000pt;}
.x1_c00400{left:12.880000pt;}
.x7_c00400{left:25.316667pt;}
.x2_c00400{left:100.480133pt;}
.x5_c00400{left:115.600000pt;}
.x3_c00400{left:133.359333pt;}
.x8_c00400{left:163.535733pt;}
.x6_c00400{left:182.322267pt;}
.x4_c00400{left:207.054400pt;}
.x9_c00400{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95a230f3a4ee5e6893c11ac9.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_fde6e8549e2328571a55f9e7.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;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:ff3_c00401;src:url('chunks/assets/font_21e336ac524b0eba558e4778.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00401{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00401{vertical-align:-24.480000px;}
.v0_c00401{vertical-align:0.000000px;}
.v1_c00401{vertical-align:30.240000px;}
.ls9_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:0.099240px;}
.lse_c00401{letter-spacing:0.265680px;}
.ls2_c00401{letter-spacing:0.321000px;}
.lsf_c00401{letter-spacing:0.492942px;}
.ls6_c00401{letter-spacing:0.531360px;}
.ls5_c00401{letter-spacing:0.553799px;}
.ls4_c00401{letter-spacing:0.602485px;}
.lsb_c00401{letter-spacing:0.690768px;}
.lsd_c00401{letter-spacing:0.712027px;}
.ls10_c00401{letter-spacing:0.743904px;}
.lsc_c00401{letter-spacing:2.343888px;}
.lsa_c00401{letter-spacing:5.430672px;}
.ls7_c00401{letter-spacing:5.976000px;}
.ls3_c00401{letter-spacing:5.980200px;}
.ls1_c00401{letter-spacing:5.986200px;}
.ls8_c00401{letter-spacing:6.159920px;}
.sc__c00401{text-shadow:none;}
.sc1_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00401{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc1_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00401{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00401{word-spacing:-21.043152px;}
.ws2_c00401{word-spacing:-20.016000px;}
.ws4_c00401{word-spacing:-16.944480px;}
.ws0_c00401{word-spacing:-11.609280px;}
.ws3_c00401{word-spacing:-10.008000px;}
.ws5_c00401{word-spacing:0.000000px;}
._c_c00401{margin-left:-2.363040px;}
._6_c00401{margin-left:-1.179360px;}
._8_c00401{width:1.944000px;}
._1_c00401{width:2.952000px;}
._2_c00401{width:4.608000px;}
._3_c00401{width:6.552000px;}
._9_c00401{width:10.440000px;}
._0_c00401{width:11.520000px;}
._4_c00401{width:15.048000px;}
._b_c00401{width:16.128000px;}
._a_c00401{width:22.968000px;}
._5_c00401{width:24.408000px;}
._7_c00401{width:25.483800px;}
.fc0_c00401{color:rgb(0,0,0);}
.fs4_c00401{font-size:36.000000px;}
.fs2_c00401{font-size:41.760000px;}
.fs3_c00401{font-size:56.160000px;}
.fs5_c00401{font-size:59.040000px;}
.fs7_c00401{font-size:60.000000px;}
.fs6_c00401{font-size:60.857039px;}
.fs0_c00401{font-size:72.000000px;}
.fs1_c00401{font-size:74.215901px;}
.y0_c00401{bottom:0.000000px;}
.y2b_c00401{bottom:3.120000px;}
.y2a_c00401{bottom:34.744580px;}
.y1_c00401{bottom:54.000000px;}
.y29_c00401{bottom:61.605000px;}
.y28_c00401{bottom:72.765000px;}
.y27_c00401{bottom:78.885000px;}
.y26_c00401{bottom:90.405000px;}
.y25_c00401{bottom:107.685000px;}
.y24_c00401{bottom:113.805000px;}
.y23_c00401{bottom:125.325000px;}
.y22_c00401{bottom:131.445000px;}
.y21_c00401{bottom:158.085000px;}
.y20_c00401{bottom:261.405000px;}
.y1f_c00401{bottom:282.285000px;}
.y1e_c00401{bottom:318.285000px;}
.y1d_c00401{bottom:339.525000px;}
.y1c_c00401{bottom:360.405000px;}
.y1b_c00401{bottom:381.285000px;}
.y1a_c00401{bottom:402.525000px;}
.y19_c00401{bottom:423.405000px;}
.y18_c00401{bottom:444.285000px;}
.y17_c00401{bottom:480.285000px;}
.y16_c00401{bottom:501.525000px;}
.y15_c00401{bottom:522.405000px;}
.y14_c00401{bottom:558.405000px;}
.y13_c00401{bottom:594.405000px;}
.y12_c00401{bottom:630.405000px;}
.y11_c00401{bottom:666.405000px;}
.y10_c00401{bottom:687.285000px;}
.yf_c00401{bottom:708.525000px;}
.ye_c00401{bottom:744.525000px;}
.yd_c00401{bottom:780.525000px;}
.yc_c00401{bottom:816.525000px;}
.yb_c00401{bottom:852.525000px;}
.ya_c00401{bottom:873.405000px;}
.y9_c00401{bottom:894.645000px;}
.y8_c00401{bottom:915.525000px;}
.y7_c00401{bottom:951.525000px;}
.y6_c00401{bottom:972.405000px;}
.y5_c00401{bottom:1008.405000px;}
.y4_c00401{bottom:1046.925000px;}
.y3_c00401{bottom:1085.085000px;}
.y2_c00401{bottom:1138.365000px;}
.h9_c00401{height:19.255605px;}
.h6_c00401{height:32.616000px;}
.h7_c00401{height:46.981634px;}
.h8_c00401{height:53.490240px;}
.ha_c00401{height:56.640000px;}
.h4_c00401{height:57.294676px;}
.h3_c00401{height:65.232000px;}
.h5_c00401{height:68.074560px;}
.h2_c00401{height:1201.365000px;}
.h0_c00401{height:1262.835000px;}
.h1_c00401{height:1263.000000px;}
.w3_c00401{width:16.680000px;}
.w2_c00401{width:863.955000px;}
.w0_c00401{width:892.935000px;}
.w1_c00401{width:893.250000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:14.490000px;}
.x2_c00401{left:113.040150px;}
.xc_c00401{left:122.213700px;}
.xd_c00401{left:145.538100px;}
.x3_c00401{left:150.029250px;}
.x14_c00401{left:151.357950px;}
.x7_c00401{left:166.031250px;}
.x15_c00401{left:168.007350px;}
.x16_c00401{left:172.177050px;}
.x12_c00401{left:188.878050px;}
.x4_c00401{left:232.936200px;}
.x13_c00401{left:298.943850px;}
.xe_c00401{left:360.917700px;}
.x5_c00401{left:419.718000px;}
.xf_c00401{left:433.104150px;}
.x10_c00401{left:524.395350px;}
.x8_c00401{left:555.130350px;}
.x11_c00401{left:561.602700px;}
.x9_c00401{left:610.155750px;}
.xa_c00401{left:678.355200px;}
.xb_c00401{left:750.390000px;}
.x6_c00401{left:755.393850px;}
.x17_c00401{left:768.254608px;}
@media print{
.v2_c00401{vertical-align:-21.760000pt;}
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:26.880000pt;}
.ls9_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:0.088213pt;}
.lse_c00401{letter-spacing:0.236160pt;}
.ls2_c00401{letter-spacing:0.285333pt;}
.lsf_c00401{letter-spacing:0.438171pt;}
.ls6_c00401{letter-spacing:0.472320pt;}
.ls5_c00401{letter-spacing:0.492266pt;}
.ls4_c00401{letter-spacing:0.535542pt;}
.lsb_c00401{letter-spacing:0.614016pt;}
.lsd_c00401{letter-spacing:0.632913pt;}
.ls10_c00401{letter-spacing:0.661248pt;}
.lsc_c00401{letter-spacing:2.083456pt;}
.lsa_c00401{letter-spacing:4.827264pt;}
.ls7_c00401{letter-spacing:5.312000pt;}
.ls3_c00401{letter-spacing:5.315733pt;}
.ls1_c00401{letter-spacing:5.321067pt;}
.ls8_c00401{letter-spacing:5.475484pt;}
.ws1_c00401{word-spacing:-18.705024pt;}
.ws2_c00401{word-spacing:-17.792000pt;}
.ws4_c00401{word-spacing:-15.061760pt;}
.ws0_c00401{word-spacing:-10.319360pt;}
.ws3_c00401{word-spacing:-8.896000pt;}
.ws5_c00401{word-spacing:0.000000pt;}
._c_c00401{margin-left:-2.100480pt;}
._6_c00401{margin-left:-1.048320pt;}
._8_c00401{width:1.728000pt;}
._1_c00401{width:2.624000pt;}
._2_c00401{width:4.096000pt;}
._3_c00401{width:5.824000pt;}
._9_c00401{width:9.280000pt;}
._0_c00401{width:10.240000pt;}
._4_c00401{width:13.376000pt;}
._b_c00401{width:14.336000pt;}
._a_c00401{width:20.416000pt;}
._5_c00401{width:21.696000pt;}
._7_c00401{width:22.652267pt;}
.fs4_c00401{font-size:32.000000pt;}
.fs2_c00401{font-size:37.120000pt;}
.fs3_c00401{font-size:49.920000pt;}
.fs5_c00401{font-size:52.480000pt;}
.fs7_c00401{font-size:53.333333pt;}
.fs6_c00401{font-size:54.095146pt;}
.fs0_c00401{font-size:64.000000pt;}
.fs1_c00401{font-size:65.969690pt;}
.y0_c00401{bottom:0.000000pt;}
.y2b_c00401{bottom:2.773333pt;}
.y2a_c00401{bottom:30.884071pt;}
.y1_c00401{bottom:48.000000pt;}
.y29_c00401{bottom:54.760000pt;}
.y28_c00401{bottom:64.680000pt;}
.y27_c00401{bottom:70.120000pt;}
.y26_c00401{bottom:80.360000pt;}
.y25_c00401{bottom:95.720000pt;}
.y24_c00401{bottom:101.160000pt;}
.y23_c00401{bottom:111.400000pt;}
.y22_c00401{bottom:116.840000pt;}
.y21_c00401{bottom:140.520000pt;}
.y20_c00401{bottom:232.360000pt;}
.y1f_c00401{bottom:250.920000pt;}
.y1e_c00401{bottom:282.920000pt;}
.y1d_c00401{bottom:301.800000pt;}
.y1c_c00401{bottom:320.360000pt;}
.y1b_c00401{bottom:338.920000pt;}
.y1a_c00401{bottom:357.800000pt;}
.y19_c00401{bottom:376.360000pt;}
.y18_c00401{bottom:394.920000pt;}
.y17_c00401{bottom:426.920000pt;}
.y16_c00401{bottom:445.800000pt;}
.y15_c00401{bottom:464.360000pt;}
.y14_c00401{bottom:496.360000pt;}
.y13_c00401{bottom:528.360000pt;}
.y12_c00401{bottom:560.360000pt;}
.y11_c00401{bottom:592.360000pt;}
.y10_c00401{bottom:610.920000pt;}
.yf_c00401{bottom:629.800000pt;}
.ye_c00401{bottom:661.800000pt;}
.yd_c00401{bottom:693.800000pt;}
.yc_c00401{bottom:725.800000pt;}
.yb_c00401{bottom:757.800000pt;}
.ya_c00401{bottom:776.360000pt;}
.y9_c00401{bottom:795.240000pt;}
.y8_c00401{bottom:813.800000pt;}
.y7_c00401{bottom:845.800000pt;}
.y6_c00401{bottom:864.360000pt;}
.y5_c00401{bottom:896.360000pt;}
.y4_c00401{bottom:930.600000pt;}
.y3_c00401{bottom:964.520000pt;}
.y2_c00401{bottom:1011.880000pt;}
.h9_c00401{height:17.116093pt;}
.h6_c00401{height:28.992000pt;}
.h7_c00401{height:41.761453pt;}
.h8_c00401{height:47.546880pt;}
.ha_c00401{height:50.346667pt;}
.h4_c00401{height:50.928601pt;}
.h3_c00401{height:57.984000pt;}
.h5_c00401{height:60.510720pt;}
.h2_c00401{height:1067.880000pt;}
.h0_c00401{height:1122.520000pt;}
.h1_c00401{height:1122.666667pt;}
.w3_c00401{width:14.826667pt;}
.w2_c00401{width:767.960000pt;}
.w0_c00401{width:793.720000pt;}
.w1_c00401{width:794.000000pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:12.880000pt;}
.x2_c00401{left:100.480133pt;}
.xc_c00401{left:108.634400pt;}
.xd_c00401{left:129.367200pt;}
.x3_c00401{left:133.359333pt;}
.x14_c00401{left:134.540400pt;}
.x7_c00401{left:147.583333pt;}
.x15_c00401{left:149.339867pt;}
.x16_c00401{left:153.046267pt;}
.x12_c00401{left:167.891600pt;}
.x4_c00401{left:207.054400pt;}
.x13_c00401{left:265.727867pt;}
.xe_c00401{left:320.815733pt;}
.x5_c00401{left:373.082667pt;}
.xf_c00401{left:384.981467pt;}
.x10_c00401{left:466.129200pt;}
.x8_c00401{left:493.449200pt;}
.x11_c00401{left:499.202400pt;}
.x9_c00401{left:542.360667pt;}
.xa_c00401{left:602.982400pt;}
.xb_c00401{left:667.013333pt;}
.x6_c00401{left:671.461200pt;}
.x17_c00401{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3458151db599a34974b37401.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_17bd74ee08d501c5861fcd7e.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;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:ff3_c00402;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00402;src:url('chunks/assets/font_dec4387ea6673427388c37a0.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00402;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff6_c00402{font-family:ff6_c00402;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00402;src:url('chunks/assets/font_2e4c4c385dbf9acf1f01c618.woff2')format("woff");}.ff7_c00402{font-family:ff7_c00402;line-height:0.791992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00402;src:url('chunks/assets/font_0c5a030f11f62916fa2dddf3.woff2')format("woff");}.ff8_c00402{font-family:ff8_c00402;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00402;src:url('chunks/assets/font_0da486f4533e7d33ae2f3fd7.woff2')format("woff");}.ff9_c00402{font-family:ff9_c00402;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00402;src:url('chunks/assets/font_9a77340e1dc29636318b0bd0.woff2')format("woff");}.ffa_c00402{font-family:ffa_c00402;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00402{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.v1_c00402{vertical-align:24.480000px;}
.ls10_c00402{letter-spacing:0.000000px;}
.lse_c00402{letter-spacing:0.236160px;}
.ls1f_c00402{letter-spacing:0.242064px;}
.ls14_c00402{letter-spacing:0.265680px;}
.ls21_c00402{letter-spacing:0.273857px;}
.ls9_c00402{letter-spacing:0.295200px;}
.lsb_c00402{letter-spacing:0.317520px;}
.lsc_c00402{letter-spacing:0.354240px;}
.lsa_c00402{letter-spacing:0.531360px;}
.ls1e_c00402{letter-spacing:0.547713px;}
.ls11_c00402{letter-spacing:0.584496px;}
.lsd_c00402{letter-spacing:0.602485px;}
.ls24_c00402{letter-spacing:0.657256px;}
.ls1d_c00402{letter-spacing:0.690768px;}
.ls3_c00402{letter-spacing:0.712027px;}
.ls19_c00402{letter-spacing:0.743904px;}
.ls20_c00402{letter-spacing:0.962352px;}
.ls23_c00402{letter-spacing:3.619152px;}
.ls1b_c00402{letter-spacing:5.248656px;}
.ls5_c00402{letter-spacing:5.254560px;}
.ls7_c00402{letter-spacing:5.313600px;}
.ls18_c00402{letter-spacing:5.354928px;}
.ls13_c00402{letter-spacing:5.402160px;}
.ls4_c00402{letter-spacing:5.431680px;}
.ls12_c00402{letter-spacing:5.461200px;}
.ls8_c00402{letter-spacing:5.490720px;}
.ls17_c00402{letter-spacing:5.514336px;}
.ls2_c00402{letter-spacing:5.549760px;}
.ls1c_c00402{letter-spacing:5.673744px;}
.ls1_c00402{letter-spacing:5.976000px;}
.lsf_c00402{letter-spacing:6.159920px;}
.ls15_c00402{letter-spacing:10.969632px;}
.ls22_c00402{letter-spacing:12.486960px;}
.ls16_c00402{letter-spacing:15.952608px;}
.ls1a_c00402{letter-spacing:20.699424px;}
.ls6_c00402{letter-spacing:25.682400px;}
.ls0_c00402{letter-spacing:54.864000px;}
.sc__c00402{text-shadow:none;}
.sc1_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00402{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc1_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00402{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00402{word-spacing:-21.927456px;}
.ws0_c00402{word-spacing:-21.874320px;}
.ws1_c00402{word-spacing:-21.815280px;}
.ws4_c00402{word-spacing:-21.661776px;}
.ws2_c00402{word-spacing:-17.630284px;}
.ws7_c00402{word-spacing:-17.520742px;}
.ws6_c00402{word-spacing:-17.375472px;}
.ws5_c00402{word-spacing:-17.103888px;}
.ws8_c00402{word-spacing:0.000000px;}
._c_c00402{margin-left:-20.585520px;}
._f_c00402{margin-left:-12.693600px;}
._8_c00402{margin-left:-11.630880px;}
._7_c00402{margin-left:-10.213920px;}
._12_c00402{margin-left:-4.132800px;}
._11_c00402{margin-left:-3.070080px;}
._b_c00402{margin-left:-1.003680px;}
._0_c00402{width:1.584000px;}
._e_c00402{width:2.599200px;}
._4_c00402{width:3.744000px;}
._2_c00402{width:4.896000px;}
._6_c00402{width:10.095840px;}
._5_c00402{width:11.232000px;}
._10_c00402{width:12.428640px;}
._3_c00402{width:17.208000px;}
._1_c00402{width:18.864000px;}
._d_c00402{width:19.896480px;}
._9_c00402{width:51.040080px;}
._a_c00402{width:52.112880px;}
.fc0_c00402{color:rgb(0,0,0);}
.fs4_c00402{font-size:36.000000px;}
.fs5_c00402{font-size:37.107951px;}
.fs2_c00402{font-size:59.040000px;}
.fs6_c00402{font-size:60.000000px;}
.fs3_c00402{font-size:60.857039px;}
.fs0_c00402{font-size:72.000000px;}
.fs1_c00402{font-size:74.215901px;}
.y0_c00402{bottom:0.000000px;}
.y31_c00402{bottom:3.120000px;}
.y30_c00402{bottom:34.744580px;}
.y1_c00402{bottom:54.000000px;}
.y2f_c00402{bottom:163.485000px;}
.y2e_c00402{bottom:163.486800px;}
.y2c_c00402{bottom:181.125000px;}
.y2d_c00402{bottom:187.245000px;}
.y2a_c00402{bottom:198.761040px;}
.y2b_c00402{bottom:198.765000px;}
.y29_c00402{bottom:216.045000px;}
.y28_c00402{bottom:216.046800px;}
.y26_c00402{bottom:233.681040px;}
.y27_c00402{bottom:233.685000px;}
.y25_c00402{bottom:250.965000px;}
.y24_c00402{bottom:276.165000px;}
.y23_c00402{bottom:301.005000px;}
.y22_c00402{bottom:301.013280px;}
.y21_c00402{bottom:325.854360px;}
.y20_c00402{bottom:343.492560px;}
.y1f_c00402{bottom:371.211840px;}
.y1e_c00402{bottom:391.005000px;}
.y1d_c00402{bottom:391.008600px;}
.y1c_c00402{bottom:408.646800px;}
.y1b_c00402{bottom:426.285000px;}
.y1a_c00402{bottom:451.485000px;}
.y19_c00402{bottom:479.925000px;}
.y18_c00402{bottom:509.085000px;}
.y17_c00402{bottom:537.525000px;}
.y16_c00402{bottom:566.325000px;}
.y15_c00402{bottom:601.965000px;}
.y14_c00402{bottom:637.965000px;}
.y13_c00402{bottom:658.845000px;}
.y12_c00402{bottom:680.085000px;}
.y11_c00402{bottom:700.965000px;}
.y10_c00402{bottom:721.845000px;}
.yf_c00402{bottom:757.845000px;}
.ye_c00402{bottom:779.085000px;}
.yd_c00402{bottom:799.965000px;}
.yc_c00402{bottom:820.845000px;}
.yb_c00402{bottom:856.845000px;}
.ya_c00402{bottom:878.085000px;}
.y9_c00402{bottom:898.965000px;}
.y8_c00402{bottom:934.965000px;}
.y7_c00402{bottom:970.965000px;}
.y6_c00402{bottom:991.845000px;}
.y5_c00402{bottom:1013.085000px;}
.y4_c00402{bottom:1049.085000px;}
.y3_c00402{bottom:1085.085000px;}
.y2_c00402{bottom:1138.365000px;}
.hb_c00402{height:19.255605px;}
.ha_c00402{height:28.647338px;}
.h8_c00402{height:39.350391px;}
.h7_c00402{height:46.981634px;}
.h5_c00402{height:47.988281px;}
.h6_c00402{height:53.490240px;}
.hc_c00402{height:56.640000px;}
.h9_c00402{height:57.096000px;}
.h4_c00402{height:57.294676px;}
.h3_c00402{height:65.232000px;}
.h2_c00402{height:1201.365000px;}
.h0_c00402{height:1262.835000px;}
.h1_c00402{height:1263.000000px;}
.w3_c00402{width:16.680000px;}
.w2_c00402{width:863.955000px;}
.w0_c00402{width:892.935000px;}
.w1_c00402{width:893.250000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:14.490000px;}
.x2_c00402{left:113.040150px;}
.xc_c00402{left:131.039850px;}
.x5_c00402{left:140.037600px;}
.x24_c00402{left:147.223350px;}
.x3_c00402{left:150.029250px;}
.x27_c00402{left:198.424500px;}
.x25_c00402{left:215.605650px;}
.x4_c00402{left:232.936200px;}
.x2e_c00402{left:246.950700px;}
.x37_c00402{left:271.478400px;}
.x2f_c00402{left:276.273150px;}
.x26_c00402{left:278.094300px;}
.x38_c00402{left:294.802650px;}
.x2a_c00402{left:316.465200px;}
.x2b_c00402{left:320.634900px;}
.x16_c00402{left:325.680150px;}
.xd_c00402{left:331.015800px;}
.x30_c00402{left:339.147150px;}
.x1f_c00402{left:357.903750px;}
.x31_c00402{left:368.469750px;}
.x20_c00402{left:378.693300px;}
.x32_c00402{left:381.133650px;}
.x2c_c00402{left:384.851850px;}
.x17_c00402{left:405.673500px;}
.x18_c00402{left:410.173500px;}
.x33_c00402{left:423.010200px;}
.xa_c00402{left:430.658850px;}
.x6_c00402{left:435.747750px;}
.x21_c00402{left:441.119400px;}
.x34_c00402{left:452.332650px;}
.x22_c00402{left:466.093950px;}
.x19_c00402{left:477.240300px;}
.x1a_c00402{left:481.740300px;}
.x35_c00402{left:485.869650px;}
.x39_c00402{left:516.118950px;}
.x36_c00402{left:518.537100px;}
.xb_c00402{left:519.569400px;}
.x10_c00402{left:521.022150px;}
.x7_c00402{left:522.740550px;}
.x11_c00402{left:531.030000px;}
.x1b_c00402{left:536.728950px;}
.x1c_c00402{left:541.228950px;}
.xe_c00402{left:553.612800px;}
.xf_c00402{left:568.606500px;}
.x8_c00402{left:574.556400px;}
.x12_c00402{left:594.222000px;}
.x13_c00402{left:599.418450px;}
.x1d_c00402{left:601.239600px;}
.x1e_c00402{left:605.739600px;}
.x23_c00402{left:618.108000px;}
.x9_c00402{left:627.547500px;}
.x28_c00402{left:677.472000px;}
.x29_c00402{left:686.414400px;}
.x14_c00402{left:727.386150px;}
.x15_c00402{left:745.386150px;}
.x2d_c00402{left:750.390000px;}
.x3a_c00402{left:768.254608px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.v1_c00402{vertical-align:21.760000pt;}
.ls10_c00402{letter-spacing:0.000000pt;}
.lse_c00402{letter-spacing:0.209920pt;}
.ls1f_c00402{letter-spacing:0.215168pt;}
.ls14_c00402{letter-spacing:0.236160pt;}
.ls21_c00402{letter-spacing:0.243428pt;}
.ls9_c00402{letter-spacing:0.262400pt;}
.lsb_c00402{letter-spacing:0.282240pt;}
.lsc_c00402{letter-spacing:0.314880pt;}
.lsa_c00402{letter-spacing:0.472320pt;}
.ls1e_c00402{letter-spacing:0.486856pt;}
.ls11_c00402{letter-spacing:0.519552pt;}
.lsd_c00402{letter-spacing:0.535542pt;}
.ls24_c00402{letter-spacing:0.584228pt;}
.ls1d_c00402{letter-spacing:0.614016pt;}
.ls3_c00402{letter-spacing:0.632913pt;}
.ls19_c00402{letter-spacing:0.661248pt;}
.ls20_c00402{letter-spacing:0.855424pt;}
.ls23_c00402{letter-spacing:3.217024pt;}
.ls1b_c00402{letter-spacing:4.665472pt;}
.ls5_c00402{letter-spacing:4.670720pt;}
.ls7_c00402{letter-spacing:4.723200pt;}
.ls18_c00402{letter-spacing:4.759936pt;}
.ls13_c00402{letter-spacing:4.801920pt;}
.ls4_c00402{letter-spacing:4.828160pt;}
.ls12_c00402{letter-spacing:4.854400pt;}
.ls8_c00402{letter-spacing:4.880640pt;}
.ls17_c00402{letter-spacing:4.901632pt;}
.ls2_c00402{letter-spacing:4.933120pt;}
.ls1c_c00402{letter-spacing:5.043328pt;}
.ls1_c00402{letter-spacing:5.312000pt;}
.lsf_c00402{letter-spacing:5.475484pt;}
.ls15_c00402{letter-spacing:9.750784pt;}
.ls22_c00402{letter-spacing:11.099520pt;}
.ls16_c00402{letter-spacing:14.180096pt;}
.ls1a_c00402{letter-spacing:18.399488pt;}
.ls6_c00402{letter-spacing:22.828800pt;}
.ls0_c00402{letter-spacing:48.768000pt;}
.ws3_c00402{word-spacing:-19.491072pt;}
.ws0_c00402{word-spacing:-19.443840pt;}
.ws1_c00402{word-spacing:-19.391360pt;}
.ws4_c00402{word-spacing:-19.254912pt;}
.ws2_c00402{word-spacing:-15.671364pt;}
.ws7_c00402{word-spacing:-15.573992pt;}
.ws6_c00402{word-spacing:-15.444864pt;}
.ws5_c00402{word-spacing:-15.203456pt;}
.ws8_c00402{word-spacing:0.000000pt;}
._c_c00402{margin-left:-18.298240pt;}
._f_c00402{margin-left:-11.283200pt;}
._8_c00402{margin-left:-10.338560pt;}
._7_c00402{margin-left:-9.079040pt;}
._12_c00402{margin-left:-3.673600pt;}
._11_c00402{margin-left:-2.728960pt;}
._b_c00402{margin-left:-0.892160pt;}
._0_c00402{width:1.408000pt;}
._e_c00402{width:2.310400pt;}
._4_c00402{width:3.328000pt;}
._2_c00402{width:4.352000pt;}
._6_c00402{width:8.974080pt;}
._5_c00402{width:9.984000pt;}
._10_c00402{width:11.047680pt;}
._3_c00402{width:15.296000pt;}
._1_c00402{width:16.768000pt;}
._d_c00402{width:17.685760pt;}
._9_c00402{width:45.368960pt;}
._a_c00402{width:46.322560pt;}
.fs4_c00402{font-size:32.000000pt;}
.fs5_c00402{font-size:32.984845pt;}
.fs2_c00402{font-size:52.480000pt;}
.fs6_c00402{font-size:53.333333pt;}
.fs3_c00402{font-size:54.095146pt;}
.fs0_c00402{font-size:64.000000pt;}
.fs1_c00402{font-size:65.969690pt;}
.y0_c00402{bottom:0.000000pt;}
.y31_c00402{bottom:2.773333pt;}
.y30_c00402{bottom:30.884071pt;}
.y1_c00402{bottom:48.000000pt;}
.y2f_c00402{bottom:145.320000pt;}
.y2e_c00402{bottom:145.321600pt;}
.y2c_c00402{bottom:161.000000pt;}
.y2d_c00402{bottom:166.440000pt;}
.y2a_c00402{bottom:176.676480pt;}
.y2b_c00402{bottom:176.680000pt;}
.y29_c00402{bottom:192.040000pt;}
.y28_c00402{bottom:192.041600pt;}
.y26_c00402{bottom:207.716480pt;}
.y27_c00402{bottom:207.720000pt;}
.y25_c00402{bottom:223.080000pt;}
.y24_c00402{bottom:245.480000pt;}
.y23_c00402{bottom:267.560000pt;}
.y22_c00402{bottom:267.567360pt;}
.y21_c00402{bottom:289.648320pt;}
.y20_c00402{bottom:305.326720pt;}
.y1f_c00402{bottom:329.966080pt;}
.y1e_c00402{bottom:347.560000pt;}
.y1d_c00402{bottom:347.563200pt;}
.y1c_c00402{bottom:363.241600pt;}
.y1b_c00402{bottom:378.920000pt;}
.y1a_c00402{bottom:401.320000pt;}
.y19_c00402{bottom:426.600000pt;}
.y18_c00402{bottom:452.520000pt;}
.y17_c00402{bottom:477.800000pt;}
.y16_c00402{bottom:503.400000pt;}
.y15_c00402{bottom:535.080000pt;}
.y14_c00402{bottom:567.080000pt;}
.y13_c00402{bottom:585.640000pt;}
.y12_c00402{bottom:604.520000pt;}
.y11_c00402{bottom:623.080000pt;}
.y10_c00402{bottom:641.640000pt;}
.yf_c00402{bottom:673.640000pt;}
.ye_c00402{bottom:692.520000pt;}
.yd_c00402{bottom:711.080000pt;}
.yc_c00402{bottom:729.640000pt;}
.yb_c00402{bottom:761.640000pt;}
.ya_c00402{bottom:780.520000pt;}
.y9_c00402{bottom:799.080000pt;}
.y8_c00402{bottom:831.080000pt;}
.y7_c00402{bottom:863.080000pt;}
.y6_c00402{bottom:881.640000pt;}
.y5_c00402{bottom:900.520000pt;}
.y4_c00402{bottom:932.520000pt;}
.y3_c00402{bottom:964.520000pt;}
.y2_c00402{bottom:1011.880000pt;}
.hb_c00402{height:17.116093pt;}
.ha_c00402{height:25.464300pt;}
.h8_c00402{height:34.978125pt;}
.h7_c00402{height:41.761453pt;}
.h5_c00402{height:42.656250pt;}
.h6_c00402{height:47.546880pt;}
.hc_c00402{height:50.346667pt;}
.h9_c00402{height:50.752000pt;}
.h4_c00402{height:50.928601pt;}
.h3_c00402{height:57.984000pt;}
.h2_c00402{height:1067.880000pt;}
.h0_c00402{height:1122.520000pt;}
.h1_c00402{height:1122.666667pt;}
.w3_c00402{width:14.826667pt;}
.w2_c00402{width:767.960000pt;}
.w0_c00402{width:793.720000pt;}
.w1_c00402{width:794.000000pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:12.880000pt;}
.x2_c00402{left:100.480133pt;}
.xc_c00402{left:116.479867pt;}
.x5_c00402{left:124.477867pt;}
.x24_c00402{left:130.865200pt;}
.x3_c00402{left:133.359333pt;}
.x27_c00402{left:176.377333pt;}
.x25_c00402{left:191.649467pt;}
.x4_c00402{left:207.054400pt;}
.x2e_c00402{left:219.511733pt;}
.x37_c00402{left:241.314133pt;}
.x2f_c00402{left:245.576133pt;}
.x26_c00402{left:247.194933pt;}
.x38_c00402{left:262.046800pt;}
.x2a_c00402{left:281.302400pt;}
.x2b_c00402{left:285.008800pt;}
.x16_c00402{left:289.493467pt;}
.xd_c00402{left:294.236267pt;}
.x30_c00402{left:301.464133pt;}
.x1f_c00402{left:318.136667pt;}
.x31_c00402{left:327.528667pt;}
.x20_c00402{left:336.616267pt;}
.x32_c00402{left:338.785467pt;}
.x2c_c00402{left:342.090533pt;}
.x17_c00402{left:360.598667pt;}
.x18_c00402{left:364.598667pt;}
.x33_c00402{left:376.009067pt;}
.xa_c00402{left:382.807867pt;}
.x6_c00402{left:387.331333pt;}
.x21_c00402{left:392.106133pt;}
.x34_c00402{left:402.073467pt;}
.x22_c00402{left:414.305733pt;}
.x19_c00402{left:424.213600pt;}
.x1a_c00402{left:428.213600pt;}
.x35_c00402{left:431.884133pt;}
.x39_c00402{left:458.772400pt;}
.x36_c00402{left:460.921867pt;}
.xb_c00402{left:461.839467pt;}
.x10_c00402{left:463.130800pt;}
.x7_c00402{left:464.658267pt;}
.x11_c00402{left:472.026667pt;}
.x1b_c00402{left:477.092400pt;}
.x1c_c00402{left:481.092400pt;}
.xe_c00402{left:492.100267pt;}
.xf_c00402{left:505.428000pt;}
.x8_c00402{left:510.716800pt;}
.x12_c00402{left:528.197333pt;}
.x13_c00402{left:532.816400pt;}
.x1d_c00402{left:534.435200pt;}
.x1e_c00402{left:538.435200pt;}
.x23_c00402{left:549.429333pt;}
.x9_c00402{left:557.820000pt;}
.x28_c00402{left:602.197333pt;}
.x29_c00402{left:610.146133pt;}
.x14_c00402{left:646.565467pt;}
.x15_c00402{left:662.565467pt;}
.x2d_c00402{left:667.013333pt;}
.x3a_c00402{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e4eea6c71f334627a8edf0b.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_d389a054e6325c26eeb81916.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;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:ff3_c00403;src:url('chunks/assets/font_cb344ca3b05699589bfb38de.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_dec4387ea6673427388c37a0.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00403;src:url('chunks/assets/font_c368ce87a76713bf2c3d2c19.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00403{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00403{vertical-align:-24.480000px;}
.v0_c00403{vertical-align:0.000000px;}
.v1_c00403{vertical-align:30.240000px;}
.lsf_c00403{letter-spacing:0.000000px;}
.ls10_c00403{letter-spacing:0.265680px;}
.ls1_c00403{letter-spacing:0.295200px;}
.ls6_c00403{letter-spacing:0.298200px;}
.ls1d_c00403{letter-spacing:0.318816px;}
.ls3_c00403{letter-spacing:0.354240px;}
.ls18_c00403{letter-spacing:0.371952px;}
.ls1a_c00403{letter-spacing:0.425088px;}
.ls5_c00403{letter-spacing:0.468840px;}
.ls1e_c00403{letter-spacing:0.478224px;}
.ls2_c00403{letter-spacing:0.531360px;}
.ls8_c00403{letter-spacing:0.547713px;}
.ls16_c00403{letter-spacing:0.584496px;}
.ls1f_c00403{letter-spacing:0.602485px;}
.ls17_c00403{letter-spacing:0.690768px;}
.ls0_c00403{letter-spacing:0.712027px;}
.ls15_c00403{letter-spacing:0.743904px;}
.ls11_c00403{letter-spacing:0.797040px;}
.ls14_c00403{letter-spacing:0.950544px;}
.ls19_c00403{letter-spacing:3.288528px;}
.lsc_c00403{letter-spacing:5.254560px;}
.ls13_c00403{letter-spacing:5.335200px;}
.ls21_c00403{letter-spacing:5.402160px;}
.lsa_c00403{letter-spacing:5.408064px;}
.ls12_c00403{letter-spacing:5.430672px;}
.lsb_c00403{letter-spacing:5.431680px;}
.ls4_c00403{letter-spacing:5.975400px;}
.lsd_c00403{letter-spacing:5.976000px;}
.ls7_c00403{letter-spacing:5.980200px;}
.lse_c00403{letter-spacing:6.159920px;}
.ls20_c00403{letter-spacing:6.411744px;}
.ls1b_c00403{letter-spacing:10.845648px;}
.ls9_c00403{letter-spacing:10.863360px;}
.ls1c_c00403{letter-spacing:17.097984px;}
.sc__c00403{text-shadow:none;}
.sc1_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00403{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc1_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00403{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00403{word-spacing:-21.815280px;}
.ws1_c00403{word-spacing:-21.043152px;}
.ws4_c00403{word-spacing:-20.947680px;}
.ws2_c00403{word-spacing:-20.632021px;}
.ws0_c00403{word-spacing:-17.630284px;}
.ws6_c00403{word-spacing:-17.465970px;}
.ws7_c00403{word-spacing:-16.838208px;}
.ws8_c00403{word-spacing:-16.731936px;}
.ws3_c00403{word-spacing:-11.609280px;}
.ws5_c00403{word-spacing:-10.008000px;}
.wsa_c00403{word-spacing:0.000000px;}
._15_c00403{margin-left:-16.914240px;}
._16_c00403{margin-left:-15.824160px;}
._13_c00403{margin-left:-10.532736px;}
._14_c00403{margin-left:-9.481824px;}
._b_c00403{margin-left:-7.717835px;}
._17_c00403{margin-left:-5.726880px;}
._12_c00403{margin-left:-2.864160px;}
._2_c00403{margin-left:-1.151280px;}
._1_c00403{width:1.121760px;}
._d_c00403{width:2.160000px;}
._5_c00403{width:3.744000px;}
._0_c00403{width:5.018400px;}
._f_c00403{width:6.768000px;}
._3_c00403{width:9.033120px;}
._4_c00403{width:10.095840px;}
._9_c00403{width:11.344320px;}
._e_c00403{width:13.824000px;}
._7_c00403{width:14.832000px;}
._a_c00403{width:16.416000px;}
._10_c00403{width:18.504000px;}
._c_c00403{width:21.024000px;}
._11_c00403{width:22.536000px;}
._6_c00403{width:31.392000px;}
._8_c00403{width:35.208000px;}
.fc0_c00403{color:rgb(0,0,0);}
.fs7_c00403{font-size:36.000000px;}
.fs5_c00403{font-size:41.760000px;}
.fs6_c00403{font-size:43.045223px;}
.fs4_c00403{font-size:56.160000px;}
.fs2_c00403{font-size:59.040000px;}
.fs8_c00403{font-size:60.000000px;}
.fs3_c00403{font-size:60.857039px;}
.fs0_c00403{font-size:72.000000px;}
.fs1_c00403{font-size:74.215901px;}
.y0_c00403{bottom:0.000000px;}
.y36_c00403{bottom:3.120000px;}
.y35_c00403{bottom:34.744580px;}
.y1_c00403{bottom:54.000000px;}
.y34_c00403{bottom:55.485000px;}
.y33_c00403{bottom:61.605000px;}
.y32_c00403{bottom:72.766800px;}
.y31_c00403{bottom:90.405000px;}
.y30_c00403{bottom:90.406800px;}
.y2f_c00403{bottom:114.165000px;}
.y2e_c00403{bottom:125.328600px;}
.y2d_c00403{bottom:142.966800px;}
.y2b_c00403{bottom:160.601040px;}
.y2c_c00403{bottom:160.605000px;}
.y2a_c00403{bottom:177.885000px;}
.y29_c00403{bottom:177.886800px;}
.y28_c00403{bottom:195.525000px;}
.y27_c00403{bottom:195.526800px;}
.y26_c00403{bottom:213.165000px;}
.y25_c00403{bottom:219.285000px;}
.y24_c00403{bottom:245.925000px;}
.y23_c00403{bottom:287.325000px;}
.y22_c00403{bottom:323.325000px;}
.y21_c00403{bottom:344.205000px;}
.y20_c00403{bottom:365.085000px;}
.y1f_c00403{bottom:386.325000px;}
.y1e_c00403{bottom:422.325000px;}
.y1d_c00403{bottom:458.325000px;}
.y1c_c00403{bottom:494.325000px;}
.y1b_c00403{bottom:515.205000px;}
.y1a_c00403{bottom:536.445000px;}
.y19_c00403{bottom:572.445000px;}
.y18_c00403{bottom:593.325000px;}
.y17_c00403{bottom:614.205000px;}
.y16_c00403{bottom:635.805000px;}
.y15_c00403{bottom:656.325000px;}
.y14_c00403{bottom:677.565000px;}
.y13_c00403{bottom:698.445000px;}
.y12_c00403{bottom:734.445000px;}
.y11_c00403{bottom:755.325000px;}
.y10_c00403{bottom:776.565000px;}
.yf_c00403{bottom:797.445000px;}
.ye_c00403{bottom:818.325000px;}
.yd_c00403{bottom:854.325000px;}
.yc_c00403{bottom:875.565000px;}
.yb_c00403{bottom:896.445000px;}
.ya_c00403{bottom:932.445000px;}
.y9_c00403{bottom:968.085360px;}
.y8_c00403{bottom:993.280680px;}
.y7_c00403{bottom:1010.564640px;}
.y6_c00403{bottom:1028.202840px;}
.y5_c00403{bottom:1045.841040px;}
.y4_c00403{bottom:1063.125000px;}
.y3_c00403{bottom:1088.325000px;}
.y2_c00403{bottom:1138.365000px;}
.ha_c00403{height:19.255605px;}
.h9_c00403{height:32.616000px;}
.h6_c00403{height:46.981634px;}
.h5_c00403{height:53.490240px;}
.hb_c00403{height:56.640000px;}
.h4_c00403{height:57.294676px;}
.h8_c00403{height:64.401590px;}
.h3_c00403{height:65.232000px;}
.h7_c00403{height:68.074560px;}
.h2_c00403{height:1201.365000px;}
.h0_c00403{height:1262.835000px;}
.h1_c00403{height:1263.000000px;}
.w3_c00403{width:16.680000px;}
.w2_c00403{width:863.955000px;}
.w0_c00403{width:892.935000px;}
.w1_c00403{width:893.250000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:14.490000px;}
.x2_c00403{left:113.040150px;}
.x23_c00403{left:122.385450px;}
.x5_c00403{left:133.034550px;}
.x3_c00403{left:150.029250px;}
.x2d_c00403{left:165.424500px;}
.x24_c00403{left:169.933650px;}
.x11_c00403{left:184.301850px;}
.x1e_c00403{left:188.044950px;}
.x1c_c00403{left:191.050800px;}
.x1b_c00403{left:215.170500px;}
.x4_c00403{left:232.936200px;}
.x12_c00403{left:239.458650px;}
.x1d_c00403{left:271.041450px;}
.xb_c00403{left:298.077750px;}
.x7_c00403{left:302.109000px;}
.x26_c00403{left:344.298000px;}
.xd_c00403{left:361.290150px;}
.x8_c00403{left:373.063800px;}
.x27_c00403{left:397.609800px;}
.xe_c00403{left:401.339400px;}
.x2b_c00403{left:403.326750px;}
.xc_c00403{left:413.131650px;}
.x17_c00403{left:427.683450px;}
.x2c_c00403{left:450.874800px;}
.x9_c00403{left:460.092300px;}
.x18_c00403{left:490.428600px;}
.x2e_c00403{left:494.982000px;}
.x13_c00403{left:496.086900px;}
.x19_c00403{left:505.168650px;}
.xa_c00403{left:538.139250px;}
.x1a_c00403{left:550.167900px;}
.x21_c00403{left:555.108450px;}
.x14_c00403{left:559.103700px;}
.x28_c00403{left:568.129650px;}
.x15_c00403{left:588.624750px;}
.x25_c00403{left:606.384600px;}
.x1f_c00403{left:610.056150px;}
.xf_c00403{left:612.766500px;}
.x29_c00403{left:618.052350px;}
.x22_c00403{left:635.099100px;}
.x16_c00403{left:648.888450px;}
.x6_c00403{left:679.435200px;}
.x20_c00403{left:681.010950px;}
.x10_c00403{left:705.771300px;}
.x2a_c00403{left:750.390000px;}
.x2f_c00403{left:768.254608px;}
@media print{
.v2_c00403{vertical-align:-21.760000pt;}
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:26.880000pt;}
.lsf_c00403{letter-spacing:0.000000pt;}
.ls10_c00403{letter-spacing:0.236160pt;}
.ls1_c00403{letter-spacing:0.262400pt;}
.ls6_c00403{letter-spacing:0.265067pt;}
.ls1d_c00403{letter-spacing:0.283392pt;}
.ls3_c00403{letter-spacing:0.314880pt;}
.ls18_c00403{letter-spacing:0.330624pt;}
.ls1a_c00403{letter-spacing:0.377856pt;}
.ls5_c00403{letter-spacing:0.416747pt;}
.ls1e_c00403{letter-spacing:0.425088pt;}
.ls2_c00403{letter-spacing:0.472320pt;}
.ls8_c00403{letter-spacing:0.486856pt;}
.ls16_c00403{letter-spacing:0.519552pt;}
.ls1f_c00403{letter-spacing:0.535542pt;}
.ls17_c00403{letter-spacing:0.614016pt;}
.ls0_c00403{letter-spacing:0.632913pt;}
.ls15_c00403{letter-spacing:0.661248pt;}
.ls11_c00403{letter-spacing:0.708480pt;}
.ls14_c00403{letter-spacing:0.844928pt;}
.ls19_c00403{letter-spacing:2.923136pt;}
.lsc_c00403{letter-spacing:4.670720pt;}
.ls13_c00403{letter-spacing:4.742400pt;}
.ls21_c00403{letter-spacing:4.801920pt;}
.lsa_c00403{letter-spacing:4.807168pt;}
.ls12_c00403{letter-spacing:4.827264pt;}
.lsb_c00403{letter-spacing:4.828160pt;}
.ls4_c00403{letter-spacing:5.311467pt;}
.lsd_c00403{letter-spacing:5.312000pt;}
.ls7_c00403{letter-spacing:5.315733pt;}
.lse_c00403{letter-spacing:5.475484pt;}
.ls20_c00403{letter-spacing:5.699328pt;}
.ls1b_c00403{letter-spacing:9.640576pt;}
.ls9_c00403{letter-spacing:9.656320pt;}
.ls1c_c00403{letter-spacing:15.198208pt;}
.ws9_c00403{word-spacing:-19.391360pt;}
.ws1_c00403{word-spacing:-18.705024pt;}
.ws4_c00403{word-spacing:-18.620160pt;}
.ws2_c00403{word-spacing:-18.339574pt;}
.ws0_c00403{word-spacing:-15.671364pt;}
.ws6_c00403{word-spacing:-15.525307pt;}
.ws7_c00403{word-spacing:-14.967296pt;}
.ws8_c00403{word-spacing:-14.872832pt;}
.ws3_c00403{word-spacing:-10.319360pt;}
.ws5_c00403{word-spacing:-8.896000pt;}
.wsa_c00403{word-spacing:0.000000pt;}
._15_c00403{margin-left:-15.034880pt;}
._16_c00403{margin-left:-14.065920pt;}
._13_c00403{margin-left:-9.362432pt;}
._14_c00403{margin-left:-8.428288pt;}
._b_c00403{margin-left:-6.860298pt;}
._17_c00403{margin-left:-5.090560pt;}
._12_c00403{margin-left:-2.545920pt;}
._2_c00403{margin-left:-1.023360pt;}
._1_c00403{width:0.997120pt;}
._d_c00403{width:1.920000pt;}
._5_c00403{width:3.328000pt;}
._0_c00403{width:4.460800pt;}
._f_c00403{width:6.016000pt;}
._3_c00403{width:8.029440pt;}
._4_c00403{width:8.974080pt;}
._9_c00403{width:10.083840pt;}
._e_c00403{width:12.288000pt;}
._7_c00403{width:13.184000pt;}
._a_c00403{width:14.592000pt;}
._10_c00403{width:16.448000pt;}
._c_c00403{width:18.688000pt;}
._11_c00403{width:20.032000pt;}
._6_c00403{width:27.904000pt;}
._8_c00403{width:31.296000pt;}
.fs7_c00403{font-size:32.000000pt;}
.fs5_c00403{font-size:37.120000pt;}
.fs6_c00403{font-size:38.262420pt;}
.fs4_c00403{font-size:49.920000pt;}
.fs2_c00403{font-size:52.480000pt;}
.fs8_c00403{font-size:53.333333pt;}
.fs3_c00403{font-size:54.095146pt;}
.fs0_c00403{font-size:64.000000pt;}
.fs1_c00403{font-size:65.969690pt;}
.y0_c00403{bottom:0.000000pt;}
.y36_c00403{bottom:2.773333pt;}
.y35_c00403{bottom:30.884071pt;}
.y1_c00403{bottom:48.000000pt;}
.y34_c00403{bottom:49.320000pt;}
.y33_c00403{bottom:54.760000pt;}
.y32_c00403{bottom:64.681600pt;}
.y31_c00403{bottom:80.360000pt;}
.y30_c00403{bottom:80.361600pt;}
.y2f_c00403{bottom:101.480000pt;}
.y2e_c00403{bottom:111.403200pt;}
.y2d_c00403{bottom:127.081600pt;}
.y2b_c00403{bottom:142.756480pt;}
.y2c_c00403{bottom:142.760000pt;}
.y2a_c00403{bottom:158.120000pt;}
.y29_c00403{bottom:158.121600pt;}
.y28_c00403{bottom:173.800000pt;}
.y27_c00403{bottom:173.801600pt;}
.y26_c00403{bottom:189.480000pt;}
.y25_c00403{bottom:194.920000pt;}
.y24_c00403{bottom:218.600000pt;}
.y23_c00403{bottom:255.400000pt;}
.y22_c00403{bottom:287.400000pt;}
.y21_c00403{bottom:305.960000pt;}
.y20_c00403{bottom:324.520000pt;}
.y1f_c00403{bottom:343.400000pt;}
.y1e_c00403{bottom:375.400000pt;}
.y1d_c00403{bottom:407.400000pt;}
.y1c_c00403{bottom:439.400000pt;}
.y1b_c00403{bottom:457.960000pt;}
.y1a_c00403{bottom:476.840000pt;}
.y19_c00403{bottom:508.840000pt;}
.y18_c00403{bottom:527.400000pt;}
.y17_c00403{bottom:545.960000pt;}
.y16_c00403{bottom:565.160000pt;}
.y15_c00403{bottom:583.400000pt;}
.y14_c00403{bottom:602.280000pt;}
.y13_c00403{bottom:620.840000pt;}
.y12_c00403{bottom:652.840000pt;}
.y11_c00403{bottom:671.400000pt;}
.y10_c00403{bottom:690.280000pt;}
.yf_c00403{bottom:708.840000pt;}
.ye_c00403{bottom:727.400000pt;}
.yd_c00403{bottom:759.400000pt;}
.yc_c00403{bottom:778.280000pt;}
.yb_c00403{bottom:796.840000pt;}
.ya_c00403{bottom:828.840000pt;}
.y9_c00403{bottom:860.520320pt;}
.y8_c00403{bottom:882.916160pt;}
.y7_c00403{bottom:898.279680pt;}
.y6_c00403{bottom:913.958080pt;}
.y5_c00403{bottom:929.636480pt;}
.y4_c00403{bottom:945.000000pt;}
.y3_c00403{bottom:967.400000pt;}
.y2_c00403{bottom:1011.880000pt;}
.ha_c00403{height:17.116093pt;}
.h9_c00403{height:28.992000pt;}
.h6_c00403{height:41.761453pt;}
.h5_c00403{height:47.546880pt;}
.hb_c00403{height:50.346667pt;}
.h4_c00403{height:50.928601pt;}
.h8_c00403{height:57.245858pt;}
.h3_c00403{height:57.984000pt;}
.h7_c00403{height:60.510720pt;}
.h2_c00403{height:1067.880000pt;}
.h0_c00403{height:1122.520000pt;}
.h1_c00403{height:1122.666667pt;}
.w3_c00403{width:14.826667pt;}
.w2_c00403{width:767.960000pt;}
.w0_c00403{width:793.720000pt;}
.w1_c00403{width:794.000000pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:12.880000pt;}
.x2_c00403{left:100.480133pt;}
.x23_c00403{left:108.787067pt;}
.x5_c00403{left:118.252933pt;}
.x3_c00403{left:133.359333pt;}
.x2d_c00403{left:147.044000pt;}
.x24_c00403{left:151.052133pt;}
.x11_c00403{left:163.823867pt;}
.x1e_c00403{left:167.151067pt;}
.x1c_c00403{left:169.822933pt;}
.x1b_c00403{left:191.262667pt;}
.x4_c00403{left:207.054400pt;}
.x12_c00403{left:212.852133pt;}
.x1d_c00403{left:240.925733pt;}
.xb_c00403{left:264.958000pt;}
.x7_c00403{left:268.541333pt;}
.x26_c00403{left:306.042667pt;}
.xd_c00403{left:321.146800pt;}
.x8_c00403{left:331.612267pt;}
.x27_c00403{left:353.430933pt;}
.xe_c00403{left:356.746133pt;}
.x2b_c00403{left:358.512667pt;}
.xc_c00403{left:367.228133pt;}
.x17_c00403{left:380.163067pt;}
.x2c_c00403{left:400.777600pt;}
.x9_c00403{left:408.970933pt;}
.x18_c00403{left:435.936533pt;}
.x2e_c00403{left:439.984000pt;}
.x13_c00403{left:440.966133pt;}
.x19_c00403{left:449.038800pt;}
.xa_c00403{left:478.346000pt;}
.x1a_c00403{left:489.038133pt;}
.x21_c00403{left:493.429733pt;}
.x14_c00403{left:496.981067pt;}
.x28_c00403{left:505.004133pt;}
.x15_c00403{left:523.222000pt;}
.x25_c00403{left:539.008533pt;}
.x1f_c00403{left:542.272133pt;}
.xf_c00403{left:544.681333pt;}
.x29_c00403{left:549.379867pt;}
.x22_c00403{left:564.532533pt;}
.x16_c00403{left:576.789733pt;}
.x6_c00403{left:603.942400pt;}
.x20_c00403{left:605.343067pt;}
.x10_c00403{left:627.352267pt;}
.x2a_c00403{left:667.013333pt;}
.x2f_c00403{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17a7e9266e6f82e605e70027.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;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_c00404;src:url('chunks/assets/font_e10401530151a6ad57bb9d7d.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_0adb7f065a6d6ec3135b64e8.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00404{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls2_c00404{letter-spacing:0.000000px;}
.ls4_c00404{letter-spacing:0.202464px;}
.ls3_c00404{letter-spacing:0.399600px;}
.ls6_c00404{letter-spacing:0.516816px;}
.ls5_c00404{letter-spacing:4.923072px;}
.ls0_c00404{letter-spacing:5.976000px;}
.ls1_c00404{letter-spacing:6.159920px;}
.sc__c00404{text-shadow:none;}
.sc1_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00404{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc1_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00404{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00404{word-spacing:-19.734912px;}
.ws0_c00404{word-spacing:-15.211440px;}
.ws2_c00404{word-spacing:0.000000px;}
._1_c00404{margin-left:-1.171464px;}
._0_c00404{width:1.088712px;}
.fc1_c00404{color:transparent;}
.fc0_c00404{color:rgb(0,0,0);}
.fs2_c00404{font-size:53.280000px;}
.fs3_c00404{font-size:60.000000px;}
.fs0_c00404{font-size:72.000000px;}
.fs1_c00404{font-size:74.215901px;}
.y11_c00404{bottom:-20.160000px;}
.y0_c00404{bottom:0.000000px;}
.y13_c00404{bottom:3.120000px;}
.y10_c00404{bottom:10.440000px;}
.y12_c00404{bottom:34.744580px;}
.yf_c00404{bottom:41.400000px;}
.y1_c00404{bottom:54.000000px;}
.ye_c00404{bottom:616.365000px;}
.yd_c00404{bottom:725.085000px;}
.yc_c00404{bottom:761.085000px;}
.yb_c00404{bottom:797.085000px;}
.ya_c00404{bottom:833.085000px;}
.y9_c00404{bottom:869.085000px;}
.y8_c00404{bottom:905.085000px;}
.y7_c00404{bottom:941.085000px;}
.y6_c00404{bottom:977.085000px;}
.y5_c00404{bottom:1013.085000px;}
.y4_c00404{bottom:1049.085000px;}
.y3_c00404{bottom:1085.085000px;}
.y2_c00404{bottom:1138.365000px;}
.h7_c00404{height:19.255605px;}
.h6_c00404{height:41.132160px;}
.h5_c00404{height:54.000000px;}
.h3_c00404{height:55.584000px;}
.h8_c00404{height:56.640000px;}
.h4_c00404{height:57.294676px;}
.h2_c00404{height:1201.365000px;}
.h0_c00404{height:1262.835000px;}
.h1_c00404{height:1263.000000px;}
.w4_c00404{width:16.680000px;}
.w3_c00404{width:654.840000px;}
.w2_c00404{width:863.955000px;}
.w0_c00404{width:892.935000px;}
.w1_c00404{width:893.250000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:14.490000px;}
.x6_c00404{left:84.889500px;}
.x2_c00404{left:113.040150px;}
.x3_c00404{left:150.029250px;}
.x5_c00404{left:151.290000px;}
.x4_c00404{left:232.936200px;}
.x7_c00404{left:327.202350px;}
.x8_c00404{left:768.254608px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls2_c00404{letter-spacing:0.000000pt;}
.ls4_c00404{letter-spacing:0.179968pt;}
.ls3_c00404{letter-spacing:0.355200pt;}
.ls6_c00404{letter-spacing:0.459392pt;}
.ls5_c00404{letter-spacing:4.376064pt;}
.ls0_c00404{letter-spacing:5.312000pt;}
.ls1_c00404{letter-spacing:5.475484pt;}
.ws1_c00404{word-spacing:-17.542144pt;}
.ws0_c00404{word-spacing:-13.521280pt;}
.ws2_c00404{word-spacing:0.000000pt;}
._1_c00404{margin-left:-1.041301pt;}
._0_c00404{width:0.967744pt;}
.fs2_c00404{font-size:47.360000pt;}
.fs3_c00404{font-size:53.333333pt;}
.fs0_c00404{font-size:64.000000pt;}
.fs1_c00404{font-size:65.969690pt;}
.y11_c00404{bottom:-17.920000pt;}
.y0_c00404{bottom:0.000000pt;}
.y13_c00404{bottom:2.773333pt;}
.y10_c00404{bottom:9.280000pt;}
.y12_c00404{bottom:30.884071pt;}
.yf_c00404{bottom:36.800000pt;}
.y1_c00404{bottom:48.000000pt;}
.ye_c00404{bottom:547.880000pt;}
.yd_c00404{bottom:644.520000pt;}
.yc_c00404{bottom:676.520000pt;}
.yb_c00404{bottom:708.520000pt;}
.ya_c00404{bottom:740.520000pt;}
.y9_c00404{bottom:772.520000pt;}
.y8_c00404{bottom:804.520000pt;}
.y7_c00404{bottom:836.520000pt;}
.y6_c00404{bottom:868.520000pt;}
.y5_c00404{bottom:900.520000pt;}
.y4_c00404{bottom:932.520000pt;}
.y3_c00404{bottom:964.520000pt;}
.y2_c00404{bottom:1011.880000pt;}
.h7_c00404{height:17.116093pt;}
.h6_c00404{height:36.561920pt;}
.h5_c00404{height:48.000000pt;}
.h3_c00404{height:49.408000pt;}
.h8_c00404{height:50.346667pt;}
.h4_c00404{height:50.928601pt;}
.h2_c00404{height:1067.880000pt;}
.h0_c00404{height:1122.520000pt;}
.h1_c00404{height:1122.666667pt;}
.w4_c00404{width:14.826667pt;}
.w3_c00404{width:582.080000pt;}
.w2_c00404{width:767.960000pt;}
.w0_c00404{width:793.720000pt;}
.w1_c00404{width:794.000000pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:12.880000pt;}
.x6_c00404{left:75.457333pt;}
.x2_c00404{left:100.480133pt;}
.x3_c00404{left:133.359333pt;}
.x5_c00404{left:134.480000pt;}
.x4_c00404{left:207.054400pt;}
.x7_c00404{left:290.846533pt;}
.x8_c00404{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c447dd17f1254666bc065bf9.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_e16126f8e9f4f68fa59f07f9.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;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:ff3_c00405;src:url('chunks/assets/font_a409eb405148e25fc04e7ea4.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00405{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00405{vertical-align:-24.480000px;}
.v0_c00405{vertical-align:0.000000px;}
.v3_c00405{vertical-align:24.480000px;}
.v1_c00405{vertical-align:30.240000px;}
.ls7_c00405{letter-spacing:0.000000px;}
.ls3_c00405{letter-spacing:0.265680px;}
.lsa_c00405{letter-spacing:0.318816px;}
.ls0_c00405{letter-spacing:0.351240px;}
.ls4_c00405{letter-spacing:0.712027px;}
.ls9_c00405{letter-spacing:1.497600px;}
.ls8_c00405{letter-spacing:5.430672px;}
.ls1_c00405{letter-spacing:5.950800px;}
.ls5_c00405{letter-spacing:5.976000px;}
.ls2_c00405{letter-spacing:5.980200px;}
.ls6_c00405{letter-spacing:6.159920px;}
.sc__c00405{text-shadow:none;}
.sc1_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00405{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc1_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00405{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00405{word-spacing:-21.043152px;}
.ws3_c00405{word-spacing:-17.630284px;}
.ws4_c00405{word-spacing:-16.731936px;}
.ws1_c00405{word-spacing:-11.609280px;}
.ws2_c00405{word-spacing:-10.008000px;}
.ws5_c00405{word-spacing:0.000000px;}
._7_c00405{margin-left:-1.627200px;}
._6_c00405{width:1.512000px;}
._9_c00405{width:3.384000px;}
._3_c00405{width:6.840000px;}
._0_c00405{width:7.848000px;}
._8_c00405{width:8.856000px;}
._2_c00405{width:13.752000px;}
._5_c00405{width:14.904000px;}
._4_c00405{width:16.056000px;}
._1_c00405{width:21.240000px;}
._a_c00405{width:29.736000px;}
.fc0_c00405{color:rgb(0,0,0);}
.fs4_c00405{font-size:36.000000px;}
.fs2_c00405{font-size:41.760000px;}
.fs3_c00405{font-size:56.160000px;}
.fs5_c00405{font-size:59.040000px;}
.fs7_c00405{font-size:60.000000px;}
.fs6_c00405{font-size:60.857039px;}
.fs0_c00405{font-size:72.000000px;}
.fs1_c00405{font-size:74.215901px;}
.y0_c00405{bottom:0.000000px;}
.y2a_c00405{bottom:3.120000px;}
.y29_c00405{bottom:34.744580px;}
.y1_c00405{bottom:54.000000px;}
.y28_c00405{bottom:61.605000px;}
.y27_c00405{bottom:78.885000px;}
.y26_c00405{bottom:90.405000px;}
.y25_c00405{bottom:96.525000px;}
.y24_c00405{bottom:123.165000px;}
.y23_c00405{bottom:198.405000px;}
.y22_c00405{bottom:234.405000px;}
.y21_c00405{bottom:255.285000px;}
.y20_c00405{bottom:276.165000px;}
.y1f_c00405{bottom:297.405000px;}
.y1e_c00405{bottom:318.285000px;}
.y1d_c00405{bottom:339.525000px;}
.y1c_c00405{bottom:360.405000px;}
.y1b_c00405{bottom:396.405000px;}
.y1a_c00405{bottom:432.405000px;}
.y19_c00405{bottom:468.405000px;}
.y18_c00405{bottom:504.405000px;}
.y17_c00405{bottom:525.285000px;}
.y16_c00405{bottom:546.525000px;}
.y15_c00405{bottom:567.405000px;}
.y14_c00405{bottom:588.285000px;}
.y13_c00405{bottom:609.525000px;}
.y12_c00405{bottom:630.405000px;}
.y11_c00405{bottom:651.285000px;}
.y10_c00405{bottom:672.525000px;}
.yf_c00405{bottom:708.525000px;}
.ye_c00405{bottom:744.525000px;}
.yd_c00405{bottom:780.525000px;}
.yc_c00405{bottom:816.525000px;}
.yb_c00405{bottom:852.525000px;}
.ya_c00405{bottom:873.405000px;}
.y9_c00405{bottom:894.645000px;}
.y8_c00405{bottom:930.645000px;}
.y7_c00405{bottom:951.525000px;}
.y6_c00405{bottom:972.405000px;}
.y5_c00405{bottom:1008.405000px;}
.y4_c00405{bottom:1046.925000px;}
.y3_c00405{bottom:1085.085000px;}
.y2_c00405{bottom:1138.365000px;}
.ha_c00405{height:19.255605px;}
.h6_c00405{height:32.616000px;}
.h7_c00405{height:46.981634px;}
.h8_c00405{height:53.490240px;}
.hb_c00405{height:56.640000px;}
.h9_c00405{height:57.096000px;}
.h4_c00405{height:57.294676px;}
.h3_c00405{height:65.232000px;}
.h5_c00405{height:68.074560px;}
.h2_c00405{height:1201.365000px;}
.h0_c00405{height:1262.835000px;}
.h1_c00405{height:1263.000000px;}
.w3_c00405{width:16.680000px;}
.w2_c00405{width:863.955000px;}
.w0_c00405{width:892.935000px;}
.w1_c00405{width:893.250000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:14.490000px;}
.x2_c00405{left:113.040150px;}
.x3_c00405{left:150.029250px;}
.x6_c00405{left:178.037100px;}
.xa_c00405{left:186.410850px;}
.xb_c00405{left:211.385400px;}
.x4_c00405{left:232.936200px;}
.xc_c00405{left:240.543900px;}
.xd_c00405{left:265.518300px;}
.x7_c00405{left:321.116850px;}
.x8_c00405{left:327.110550px;}
.x9_c00405{left:332.114550px;}
.xe_c00405{left:382.242900px;}
.xf_c00405{left:407.217300px;}
.x5_c00405{left:419.718000px;}
.x10_c00405{left:768.254608px;}
@media print{
.v2_c00405{vertical-align:-21.760000pt;}
.v0_c00405{vertical-align:0.000000pt;}
.v3_c00405{vertical-align:21.760000pt;}
.v1_c00405{vertical-align:26.880000pt;}
.ls7_c00405{letter-spacing:0.000000pt;}
.ls3_c00405{letter-spacing:0.236160pt;}
.lsa_c00405{letter-spacing:0.283392pt;}
.ls0_c00405{letter-spacing:0.312213pt;}
.ls4_c00405{letter-spacing:0.632913pt;}
.ls9_c00405{letter-spacing:1.331200pt;}
.ls8_c00405{letter-spacing:4.827264pt;}
.ls1_c00405{letter-spacing:5.289600pt;}
.ls5_c00405{letter-spacing:5.312000pt;}
.ls2_c00405{letter-spacing:5.315733pt;}
.ls6_c00405{letter-spacing:5.475484pt;}
.ws0_c00405{word-spacing:-18.705024pt;}
.ws3_c00405{word-spacing:-15.671364pt;}
.ws4_c00405{word-spacing:-14.872832pt;}
.ws1_c00405{word-spacing:-10.319360pt;}
.ws2_c00405{word-spacing:-8.896000pt;}
.ws5_c00405{word-spacing:0.000000pt;}
._7_c00405{margin-left:-1.446400pt;}
._6_c00405{width:1.344000pt;}
._9_c00405{width:3.008000pt;}
._3_c00405{width:6.080000pt;}
._0_c00405{width:6.976000pt;}
._8_c00405{width:7.872000pt;}
._2_c00405{width:12.224000pt;}
._5_c00405{width:13.248000pt;}
._4_c00405{width:14.272000pt;}
._1_c00405{width:18.880000pt;}
._a_c00405{width:26.432000pt;}
.fs4_c00405{font-size:32.000000pt;}
.fs2_c00405{font-size:37.120000pt;}
.fs3_c00405{font-size:49.920000pt;}
.fs5_c00405{font-size:52.480000pt;}
.fs7_c00405{font-size:53.333333pt;}
.fs6_c00405{font-size:54.095146pt;}
.fs0_c00405{font-size:64.000000pt;}
.fs1_c00405{font-size:65.969690pt;}
.y0_c00405{bottom:0.000000pt;}
.y2a_c00405{bottom:2.773333pt;}
.y29_c00405{bottom:30.884071pt;}
.y1_c00405{bottom:48.000000pt;}
.y28_c00405{bottom:54.760000pt;}
.y27_c00405{bottom:70.120000pt;}
.y26_c00405{bottom:80.360000pt;}
.y25_c00405{bottom:85.800000pt;}
.y24_c00405{bottom:109.480000pt;}
.y23_c00405{bottom:176.360000pt;}
.y22_c00405{bottom:208.360000pt;}
.y21_c00405{bottom:226.920000pt;}
.y20_c00405{bottom:245.480000pt;}
.y1f_c00405{bottom:264.360000pt;}
.y1e_c00405{bottom:282.920000pt;}
.y1d_c00405{bottom:301.800000pt;}
.y1c_c00405{bottom:320.360000pt;}
.y1b_c00405{bottom:352.360000pt;}
.y1a_c00405{bottom:384.360000pt;}
.y19_c00405{bottom:416.360000pt;}
.y18_c00405{bottom:448.360000pt;}
.y17_c00405{bottom:466.920000pt;}
.y16_c00405{bottom:485.800000pt;}
.y15_c00405{bottom:504.360000pt;}
.y14_c00405{bottom:522.920000pt;}
.y13_c00405{bottom:541.800000pt;}
.y12_c00405{bottom:560.360000pt;}
.y11_c00405{bottom:578.920000pt;}
.y10_c00405{bottom:597.800000pt;}
.yf_c00405{bottom:629.800000pt;}
.ye_c00405{bottom:661.800000pt;}
.yd_c00405{bottom:693.800000pt;}
.yc_c00405{bottom:725.800000pt;}
.yb_c00405{bottom:757.800000pt;}
.ya_c00405{bottom:776.360000pt;}
.y9_c00405{bottom:795.240000pt;}
.y8_c00405{bottom:827.240000pt;}
.y7_c00405{bottom:845.800000pt;}
.y6_c00405{bottom:864.360000pt;}
.y5_c00405{bottom:896.360000pt;}
.y4_c00405{bottom:930.600000pt;}
.y3_c00405{bottom:964.520000pt;}
.y2_c00405{bottom:1011.880000pt;}
.ha_c00405{height:17.116093pt;}
.h6_c00405{height:28.992000pt;}
.h7_c00405{height:41.761453pt;}
.h8_c00405{height:47.546880pt;}
.hb_c00405{height:50.346667pt;}
.h9_c00405{height:50.752000pt;}
.h4_c00405{height:50.928601pt;}
.h3_c00405{height:57.984000pt;}
.h5_c00405{height:60.510720pt;}
.h2_c00405{height:1067.880000pt;}
.h0_c00405{height:1122.520000pt;}
.h1_c00405{height:1122.666667pt;}
.w3_c00405{width:14.826667pt;}
.w2_c00405{width:767.960000pt;}
.w0_c00405{width:793.720000pt;}
.w1_c00405{width:794.000000pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:12.880000pt;}
.x2_c00405{left:100.480133pt;}
.x3_c00405{left:133.359333pt;}
.x6_c00405{left:158.255200pt;}
.xa_c00405{left:165.698533pt;}
.xb_c00405{left:187.898133pt;}
.x4_c00405{left:207.054400pt;}
.xc_c00405{left:213.816800pt;}
.xd_c00405{left:236.016267pt;}
.x7_c00405{left:285.437200pt;}
.x8_c00405{left:290.764933pt;}
.x9_c00405{left:295.212933pt;}
.xe_c00405{left:339.771467pt;}
.xf_c00405{left:361.970933pt;}
.x5_c00405{left:373.082667pt;}
.x10_c00405{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ba9d455f86fb047d5b371b3.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_9f6856dce3556a7ea034a75b.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;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:ff3_c00406;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00406;src:url('chunks/assets/font_909c11d57392d93ddd4b4685.woff2')format("woff");}.ff6_c00406{font-family:ff6_c00406;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00406;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff7_c00406{font-family:ff7_c00406;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00406;src:url('chunks/assets/font_8d6a4c055f3ac141c5ec6932.woff2')format("woff");}.ff8_c00406{font-family:ff8_c00406;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00406;src:url('chunks/assets/font_b131612d9fd077b47c94937a.woff2')format("woff");}.ff9_c00406{font-family:ff9_c00406;line-height:0.921000;font-style:normal;font-weight: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_c00406;src:url('chunks/assets/font_1296891b375edb38d9473d67.woff2')format("woff");}.ffa_c00406{font-family:ffa_c00406;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00406{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00406{vertical-align:-24.480000px;}
.v0_c00406{vertical-align:0.000000px;}
.v2_c00406{vertical-align:24.480000px;}
.v1_c00406{vertical-align:30.240000px;}
.ls16_c00406{letter-spacing:0.000000px;}
.ls13_c00406{letter-spacing:0.236160px;}
.ls5_c00406{letter-spacing:0.265680px;}
.ls3_c00406{letter-spacing:0.273857px;}
.ls14_c00406{letter-spacing:0.295200px;}
.ls6_c00406{letter-spacing:0.317520px;}
.ls11_c00406{letter-spacing:0.318120px;}
.ls1e_c00406{letter-spacing:0.318816px;}
.ls8_c00406{letter-spacing:0.354240px;}
.lsf_c00406{letter-spacing:0.377856px;}
.ls18_c00406{letter-spacing:0.383399px;}
.ls12_c00406{letter-spacing:0.531360px;}
.ls17_c00406{letter-spacing:0.584496px;}
.ls7_c00406{letter-spacing:0.602485px;}
.lsc_c00406{letter-spacing:0.657256px;}
.ls21_c00406{letter-spacing:0.690768px;}
.ls4_c00406{letter-spacing:0.712027px;}
.ls1c_c00406{letter-spacing:0.743904px;}
.ls23_c00406{letter-spacing:2.597760px;}
.ls20_c00406{letter-spacing:3.955680px;}
.ls10_c00406{letter-spacing:4.574400px;}
.ls1f_c00406{letter-spacing:4.841280px;}
.lsd_c00406{letter-spacing:5.254560px;}
.ls1b_c00406{letter-spacing:5.402160px;}
.lsa_c00406{letter-spacing:5.431680px;}
.ls1a_c00406{letter-spacing:5.461200px;}
.lsb_c00406{letter-spacing:5.490720px;}
.ls1d_c00406{letter-spacing:5.514336px;}
.ls24_c00406{letter-spacing:5.567472px;}
.ls1_c00406{letter-spacing:5.976000px;}
.ls2_c00406{letter-spacing:6.048000px;}
.ls15_c00406{letter-spacing:6.159920px;}
.ls9_c00406{letter-spacing:7.025760px;}
.ls22_c00406{letter-spacing:9.717984px;}
.lse_c00406{letter-spacing:11.996928px;}
.ls19_c00406{letter-spacing:12.002832px;}
.ls0_c00406{letter-spacing:54.864000px;}
.sc__c00406{text-shadow:none;}
.sc1_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00406{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc1_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00406{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8_c00406{word-spacing:-21.980592px;}
.ws3_c00406{word-spacing:-21.874320px;}
.ws5_c00406{word-spacing:-21.815280px;}
.ws1_c00406{word-spacing:-17.630284px;}
.ws4_c00406{word-spacing:-17.575513px;}
.ws2_c00406{word-spacing:-17.520742px;}
.ws0_c00406{word-spacing:-17.301656px;}
.ws6_c00406{word-spacing:-17.157024px;}
.ws7_c00406{word-spacing:-10.008000px;}
.ws9_c00406{word-spacing:0.000000px;}
._e_c00406{margin-left:-9.361440px;}
._6_c00406{margin-left:-7.243920px;}
._5_c00406{margin-left:-6.040080px;}
._8_c00406{margin-left:-4.309920px;}
._a_c00406{margin-left:-3.188160px;}
._f_c00406{margin-left:-2.164320px;}
._7_c00406{margin-left:-1.102320px;}
._4_c00406{width:1.008000px;}
._9_c00406{width:2.952000px;}
._2_c00406{width:4.104000px;}
._3_c00406{width:5.184000px;}
._1_c00406{width:6.840000px;}
._0_c00406{width:8.712000px;}
._d_c00406{width:9.889920px;}
._c_c00406{width:14.494320px;}
._b_c00406{width:15.527520px;}
.fc0_c00406{color:rgb(0,0,0);}
.fs5_c00406{font-size:36.000000px;}
.fs2_c00406{font-size:41.760000px;}
.fs3_c00406{font-size:59.040000px;}
.fs6_c00406{font-size:60.000000px;}
.fs4_c00406{font-size:60.857039px;}
.fs0_c00406{font-size:72.000000px;}
.fs1_c00406{font-size:74.215901px;}
.y0_c00406{bottom:0.000000px;}
.y2e_c00406{bottom:3.120000px;}
.y2d_c00406{bottom:34.744580px;}
.y1_c00406{bottom:54.000000px;}
.y2c_c00406{bottom:55.481040px;}
.y2b_c00406{bottom:78.885000px;}
.y2a_c00406{bottom:105.525000px;}
.y29_c00406{bottom:218.202480px;}
.y28_c00406{bottom:235.486440px;}
.y27_c00406{bottom:253.124640px;}
.y26_c00406{bottom:270.762840px;}
.y25_c00406{bottom:288.046800px;}
.y24_c00406{bottom:305.685000px;}
.y23_c00406{bottom:330.525000px;}
.y22_c00406{bottom:330.526800px;}
.y21_c00406{bottom:348.165000px;}
.y20_c00406{bottom:348.166800px;}
.y1f_c00406{bottom:365.805000px;}
.y1e_c00406{bottom:365.815440px;}
.y1d_c00406{bottom:390.656520px;}
.y1c_c00406{bottom:415.851840px;}
.y1b_c00406{bottom:435.645000px;}
.y1a_c00406{bottom:435.649680px;}
.y19_c00406{bottom:460.845000px;}
.y18_c00406{bottom:486.045000px;}
.y17_c00406{bottom:515.205000px;}
.y16_c00406{bottom:543.285000px;}
.y15_c00406{bottom:572.085000px;}
.y14_c00406{bottom:607.725000px;}
.y13_c00406{bottom:644.085000px;}
.y12_c00406{bottom:664.965000px;}
.y11_c00406{bottom:685.845000px;}
.y10_c00406{bottom:721.845000px;}
.yf_c00406{bottom:743.085000px;}
.ye_c00406{bottom:763.965000px;}
.yd_c00406{bottom:784.845000px;}
.yc_c00406{bottom:820.845000px;}
.yb_c00406{bottom:842.085000px;}
.ya_c00406{bottom:862.965000px;}
.y9_c00406{bottom:898.965000px;}
.y8_c00406{bottom:934.965000px;}
.y7_c00406{bottom:970.965000px;}
.y6_c00406{bottom:991.845000px;}
.y5_c00406{bottom:1013.085000px;}
.y4_c00406{bottom:1049.085000px;}
.y3_c00406{bottom:1085.085000px;}
.y2_c00406{bottom:1138.365000px;}
.hd_c00406{height:19.255605px;}
.hc_c00406{height:32.616000px;}
.ha_c00406{height:39.350391px;}
.h8_c00406{height:46.981634px;}
.h6_c00406{height:47.988281px;}
.h7_c00406{height:53.490240px;}
.he_c00406{height:56.640000px;}
.hb_c00406{height:57.054240px;}
.h9_c00406{height:57.096000px;}
.h4_c00406{height:57.294676px;}
.h3_c00406{height:65.232000px;}
.h5_c00406{height:68.074560px;}
.h2_c00406{height:1201.365000px;}
.h0_c00406{height:1262.835000px;}
.h1_c00406{height:1263.000000px;}
.w3_c00406{width:16.680000px;}
.w2_c00406{width:863.955000px;}
.w0_c00406{width:892.935000px;}
.w1_c00406{width:893.250000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:14.490000px;}
.x2_c00406{left:113.040150px;}
.x2f_c00406{left:128.864850px;}
.x7_c00406{left:132.066000px;}
.x5_c00406{left:140.037600px;}
.x8_c00406{left:142.091700px;}
.x3_c00406{left:150.029250px;}
.x6_c00406{left:167.037600px;}
.x4_c00406{left:232.936200px;}
.x14_c00406{left:253.074900px;}
.x15_c00406{left:270.578550px;}
.x2d_c00406{left:291.022350px;}
.x16_c00406{left:292.237800px;}
.x17_c00406{left:300.577200px;}
.xe_c00406{left:325.665150px;}
.x2e_c00406{left:330.186750px;}
.x18_c00406{left:354.710100px;}
.x19_c00406{left:383.854200px;}
.xf_c00406{left:386.665950px;}
.x10_c00406{left:391.165950px;}
.x1a_c00406{left:396.339750px;}
.x25_c00406{left:413.570400px;}
.x1b_c00406{left:419.678850px;}
.x9_c00406{left:423.102900px;}
.xa_c00406{left:434.100600px;}
.x26_c00406{left:438.544950px;}
.xb_c00406{left:445.098300px;}
.xc_c00406{left:480.125550px;}
.x1c_c00406{left:483.862050px;}
.x1d_c00406{left:493.026450px;}
.x1e_c00406{left:501.365850px;}
.x11_c00406{left:508.182150px;}
.x12_c00406{left:512.682150px;}
.x1f_c00406{left:524.690250px;}
.x20_c00406{left:537.366600px;}
.xd_c00406{left:548.998950px;}
.x13_c00406{left:572.692800px;}
.x27_c00406{left:599.192100px;}
.x21_c00406{left:606.576450px;}
.x23_c00406{left:607.794000px;}
.x28_c00406{left:624.166650px;}
.x24_c00406{left:628.583550px;}
.x22_c00406{left:634.895850px;}
.x29_c00406{left:663.541200px;}
.x2a_c00406{left:696.953550px;}
.x2b_c00406{left:731.235300px;}
.x2c_c00406{left:750.390000px;}
.x30_c00406{left:768.254608px;}
@media print{
.v3_c00406{vertical-align:-21.760000pt;}
.v0_c00406{vertical-align:0.000000pt;}
.v2_c00406{vertical-align:21.760000pt;}
.v1_c00406{vertical-align:26.880000pt;}
.ls16_c00406{letter-spacing:0.000000pt;}
.ls13_c00406{letter-spacing:0.209920pt;}
.ls5_c00406{letter-spacing:0.236160pt;}
.ls3_c00406{letter-spacing:0.243428pt;}
.ls14_c00406{letter-spacing:0.262400pt;}
.ls6_c00406{letter-spacing:0.282240pt;}
.ls11_c00406{letter-spacing:0.282773pt;}
.ls1e_c00406{letter-spacing:0.283392pt;}
.ls8_c00406{letter-spacing:0.314880pt;}
.lsf_c00406{letter-spacing:0.335872pt;}
.ls18_c00406{letter-spacing:0.340799pt;}
.ls12_c00406{letter-spacing:0.472320pt;}
.ls17_c00406{letter-spacing:0.519552pt;}
.ls7_c00406{letter-spacing:0.535542pt;}
.lsc_c00406{letter-spacing:0.584228pt;}
.ls21_c00406{letter-spacing:0.614016pt;}
.ls4_c00406{letter-spacing:0.632913pt;}
.ls1c_c00406{letter-spacing:0.661248pt;}
.ls23_c00406{letter-spacing:2.309120pt;}
.ls20_c00406{letter-spacing:3.516160pt;}
.ls10_c00406{letter-spacing:4.066133pt;}
.ls1f_c00406{letter-spacing:4.303360pt;}
.lsd_c00406{letter-spacing:4.670720pt;}
.ls1b_c00406{letter-spacing:4.801920pt;}
.lsa_c00406{letter-spacing:4.828160pt;}
.ls1a_c00406{letter-spacing:4.854400pt;}
.lsb_c00406{letter-spacing:4.880640pt;}
.ls1d_c00406{letter-spacing:4.901632pt;}
.ls24_c00406{letter-spacing:4.948864pt;}
.ls1_c00406{letter-spacing:5.312000pt;}
.ls2_c00406{letter-spacing:5.376000pt;}
.ls15_c00406{letter-spacing:5.475484pt;}
.ls9_c00406{letter-spacing:6.245120pt;}
.ls22_c00406{letter-spacing:8.638208pt;}
.lse_c00406{letter-spacing:10.663936pt;}
.ls19_c00406{letter-spacing:10.669184pt;}
.ls0_c00406{letter-spacing:48.768000pt;}
.ws8_c00406{word-spacing:-19.538304pt;}
.ws3_c00406{word-spacing:-19.443840pt;}
.ws5_c00406{word-spacing:-19.391360pt;}
.ws1_c00406{word-spacing:-15.671364pt;}
.ws4_c00406{word-spacing:-15.622678pt;}
.ws2_c00406{word-spacing:-15.573992pt;}
.ws0_c00406{word-spacing:-15.379250pt;}
.ws6_c00406{word-spacing:-15.250688pt;}
.ws7_c00406{word-spacing:-8.896000pt;}
.ws9_c00406{word-spacing:0.000000pt;}
._e_c00406{margin-left:-8.321280pt;}
._6_c00406{margin-left:-6.439040pt;}
._5_c00406{margin-left:-5.368960pt;}
._8_c00406{margin-left:-3.831040pt;}
._a_c00406{margin-left:-2.833920pt;}
._f_c00406{margin-left:-1.923840pt;}
._7_c00406{margin-left:-0.979840pt;}
._4_c00406{width:0.896000pt;}
._9_c00406{width:2.624000pt;}
._2_c00406{width:3.648000pt;}
._3_c00406{width:4.608000pt;}
._1_c00406{width:6.080000pt;}
._0_c00406{width:7.744000pt;}
._d_c00406{width:8.791040pt;}
._c_c00406{width:12.883840pt;}
._b_c00406{width:13.802240pt;}
.fs5_c00406{font-size:32.000000pt;}
.fs2_c00406{font-size:37.120000pt;}
.fs3_c00406{font-size:52.480000pt;}
.fs6_c00406{font-size:53.333333pt;}
.fs4_c00406{font-size:54.095146pt;}
.fs0_c00406{font-size:64.000000pt;}
.fs1_c00406{font-size:65.969690pt;}
.y0_c00406{bottom:0.000000pt;}
.y2e_c00406{bottom:2.773333pt;}
.y2d_c00406{bottom:30.884071pt;}
.y1_c00406{bottom:48.000000pt;}
.y2c_c00406{bottom:49.316480pt;}
.y2b_c00406{bottom:70.120000pt;}
.y2a_c00406{bottom:93.800000pt;}
.y29_c00406{bottom:193.957760pt;}
.y28_c00406{bottom:209.321280pt;}
.y27_c00406{bottom:224.999680pt;}
.y26_c00406{bottom:240.678080pt;}
.y25_c00406{bottom:256.041600pt;}
.y24_c00406{bottom:271.720000pt;}
.y23_c00406{bottom:293.800000pt;}
.y22_c00406{bottom:293.801600pt;}
.y21_c00406{bottom:309.480000pt;}
.y20_c00406{bottom:309.481600pt;}
.y1f_c00406{bottom:325.160000pt;}
.y1e_c00406{bottom:325.169280pt;}
.y1d_c00406{bottom:347.250240pt;}
.y1c_c00406{bottom:369.646080pt;}
.y1b_c00406{bottom:387.240000pt;}
.y1a_c00406{bottom:387.244160pt;}
.y19_c00406{bottom:409.640000pt;}
.y18_c00406{bottom:432.040000pt;}
.y17_c00406{bottom:457.960000pt;}
.y16_c00406{bottom:482.920000pt;}
.y15_c00406{bottom:508.520000pt;}
.y14_c00406{bottom:540.200000pt;}
.y13_c00406{bottom:572.520000pt;}
.y12_c00406{bottom:591.080000pt;}
.y11_c00406{bottom:609.640000pt;}
.y10_c00406{bottom:641.640000pt;}
.yf_c00406{bottom:660.520000pt;}
.ye_c00406{bottom:679.080000pt;}
.yd_c00406{bottom:697.640000pt;}
.yc_c00406{bottom:729.640000pt;}
.yb_c00406{bottom:748.520000pt;}
.ya_c00406{bottom:767.080000pt;}
.y9_c00406{bottom:799.080000pt;}
.y8_c00406{bottom:831.080000pt;}
.y7_c00406{bottom:863.080000pt;}
.y6_c00406{bottom:881.640000pt;}
.y5_c00406{bottom:900.520000pt;}
.y4_c00406{bottom:932.520000pt;}
.y3_c00406{bottom:964.520000pt;}
.y2_c00406{bottom:1011.880000pt;}
.hd_c00406{height:17.116093pt;}
.hc_c00406{height:28.992000pt;}
.ha_c00406{height:34.978125pt;}
.h8_c00406{height:41.761453pt;}
.h6_c00406{height:42.656250pt;}
.h7_c00406{height:47.546880pt;}
.he_c00406{height:50.346667pt;}
.hb_c00406{height:50.714880pt;}
.h9_c00406{height:50.752000pt;}
.h4_c00406{height:50.928601pt;}
.h3_c00406{height:57.984000pt;}
.h5_c00406{height:60.510720pt;}
.h2_c00406{height:1067.880000pt;}
.h0_c00406{height:1122.520000pt;}
.h1_c00406{height:1122.666667pt;}
.w3_c00406{width:14.826667pt;}
.w2_c00406{width:767.960000pt;}
.w0_c00406{width:793.720000pt;}
.w1_c00406{width:794.000000pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:12.880000pt;}
.x2_c00406{left:100.480133pt;}
.x2f_c00406{left:114.546533pt;}
.x7_c00406{left:117.392000pt;}
.x5_c00406{left:124.477867pt;}
.x8_c00406{left:126.303733pt;}
.x3_c00406{left:133.359333pt;}
.x6_c00406{left:148.477867pt;}
.x4_c00406{left:207.054400pt;}
.x14_c00406{left:224.955467pt;}
.x15_c00406{left:240.514267pt;}
.x2d_c00406{left:258.686533pt;}
.x16_c00406{left:259.766933pt;}
.x17_c00406{left:267.179733pt;}
.xe_c00406{left:289.480133pt;}
.x2e_c00406{left:293.499333pt;}
.x18_c00406{left:315.297867pt;}
.x19_c00406{left:341.203733pt;}
.xf_c00406{left:343.703067pt;}
.x10_c00406{left:347.703067pt;}
.x1a_c00406{left:352.302000pt;}
.x25_c00406{left:367.618133pt;}
.x1b_c00406{left:373.047867pt;}
.x9_c00406{left:376.091467pt;}
.xa_c00406{left:385.867200pt;}
.x26_c00406{left:389.817733pt;}
.xb_c00406{left:395.642933pt;}
.xc_c00406{left:426.778267pt;}
.x1c_c00406{left:430.099600pt;}
.x1d_c00406{left:438.245733pt;}
.x1e_c00406{left:445.658533pt;}
.x11_c00406{left:451.717467pt;}
.x12_c00406{left:455.717467pt;}
.x1f_c00406{left:466.391333pt;}
.x20_c00406{left:477.659200pt;}
.xd_c00406{left:487.999067pt;}
.x13_c00406{left:509.060267pt;}
.x27_c00406{left:532.615200pt;}
.x21_c00406{left:539.179067pt;}
.x23_c00406{left:540.261333pt;}
.x28_c00406{left:554.814800pt;}
.x24_c00406{left:558.740933pt;}
.x22_c00406{left:564.351867pt;}
.x29_c00406{left:589.814400pt;}
.x2a_c00406{left:619.514267pt;}
.x2b_c00406{left:649.986933pt;}
.x2c_c00406{left:667.013333pt;}
.x30_c00406{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19b7acf0de3f1636f9d969d9.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_e3b462a048c82d983e684f41.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;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:ff3_c00407;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00407;src:url('chunks/assets/font_6a1bd0dd38ee91ba175f172b.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00407{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00407{vertical-align:-24.480000px;}
.v0_c00407{vertical-align:0.000000px;}
.v1_c00407{vertical-align:30.240000px;}
.ls12_c00407{letter-spacing:0.000000px;}
.ls18_c00407{letter-spacing:0.242352px;}
.ls15_c00407{letter-spacing:0.265680px;}
.lsd_c00407{letter-spacing:0.273857px;}
.ls1c_c00407{letter-spacing:0.294624px;}
.ls6_c00407{letter-spacing:0.295200px;}
.ls1a_c00407{letter-spacing:0.318384px;}
.lsc_c00407{letter-spacing:0.318480px;}
.ls1e_c00407{letter-spacing:0.318816px;}
.lsb_c00407{letter-spacing:0.344520px;}
.ls19_c00407{letter-spacing:0.346896px;}
.ls23_c00407{letter-spacing:0.383399px;}
.ls1b_c00407{letter-spacing:0.399168px;}
.ls16_c00407{letter-spacing:0.425088px;}
.ls25_c00407{letter-spacing:0.438171px;}
.ls17_c00407{letter-spacing:0.478224px;}
.ls20_c00407{letter-spacing:0.492942px;}
.lsf_c00407{letter-spacing:0.507744px;}
.ls7_c00407{letter-spacing:0.531360px;}
.lsa_c00407{letter-spacing:0.539640px;}
.ls4_c00407{letter-spacing:0.547713px;}
.ls9_c00407{letter-spacing:0.583968px;}
.ls2_c00407{letter-spacing:0.683400px;}
.ls22_c00407{letter-spacing:0.690768px;}
.ls21_c00407{letter-spacing:0.712027px;}
.ls1_c00407{letter-spacing:0.720240px;}
.ls10_c00407{letter-spacing:0.944640px;}
.lse_c00407{letter-spacing:0.973713px;}
.ls1f_c00407{letter-spacing:1.470096px;}
.ls24_c00407{letter-spacing:4.492944px;}
.ls13_c00407{letter-spacing:5.430672px;}
.ls1d_c00407{letter-spacing:5.431680px;}
.ls14_c00407{letter-spacing:5.567472px;}
.ls3_c00407{letter-spacing:5.976000px;}
.ls0_c00407{letter-spacing:5.983200px;}
.ls11_c00407{letter-spacing:6.159920px;}
.ls5_c00407{letter-spacing:13.874400px;}
.ls8_c00407{letter-spacing:29.230704px;}
.sc__c00407{text-shadow:none;}
.sc1_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00407{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc1_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00407{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00407{word-spacing:-21.980592px;}
.ws0_c00407{word-spacing:-21.043152px;}
.ws2_c00407{word-spacing:-20.632021px;}
.wsc_c00407{word-spacing:-17.630284px;}
.ws4_c00407{word-spacing:-17.465970px;}
.wsb_c00407{word-spacing:-17.411199px;}
.wsa_c00407{word-spacing:-16.918257px;}
.ws6_c00407{word-spacing:-16.838208px;}
.wsd_c00407{word-spacing:-16.731936px;}
.ws8_c00407{word-spacing:-13.528944px;}
.ws9_c00407{word-spacing:-13.505184px;}
.ws7_c00407{word-spacing:-13.452912px;}
.ws1_c00407{word-spacing:-11.609280px;}
.ws3_c00407{word-spacing:-10.008000px;}
.wse_c00407{word-spacing:0.000000px;}
._12_c00407{margin-left:-27.809856px;}
._11_c00407{margin-left:-14.346720px;}
._10_c00407{margin-left:-13.284000px;}
._6_c00407{margin-left:-7.830396px;}
._13_c00407{margin-left:-5.018400px;}
._15_c00407{margin-left:-3.896640px;}
._14_c00407{margin-left:-2.056920px;}
._f_c00407{margin-left:-1.041000px;}
._2_c00407{width:1.728000px;}
._7_c00407{width:3.312000px;}
._e_c00407{width:4.320000px;}
._4_c00407{width:5.328000px;}
._9_c00407{width:6.480000px;}
._a_c00407{width:7.488000px;}
._c_c00407{width:9.360000px;}
._1_c00407{width:10.728000px;}
._5_c00407{width:12.096000px;}
._d_c00407{width:14.544000px;}
._8_c00407{width:19.008000px;}
._0_c00407{width:21.312000px;}
._3_c00407{width:28.152000px;}
._b_c00407{width:29.376000px;}
.fc0_c00407{color:rgb(0,0,0);}
.fs5_c00407{font-size:36.000000px;}
.fs3_c00407{font-size:41.760000px;}
.fs4_c00407{font-size:43.045223px;}
.fs8_c00407{font-size:47.520000px;}
.fs2_c00407{font-size:56.160000px;}
.fs6_c00407{font-size:59.040000px;}
.fs9_c00407{font-size:60.000000px;}
.fs7_c00407{font-size:60.857039px;}
.fs0_c00407{font-size:72.000000px;}
.fs1_c00407{font-size:74.215901px;}
.y0_c00407{bottom:0.000000px;}
.y34_c00407{bottom:3.120000px;}
.y33_c00407{bottom:34.744580px;}
.y1_c00407{bottom:54.000000px;}
.y32_c00407{bottom:55.481040px;}
.y31_c00407{bottom:72.765000px;}
.y30_c00407{bottom:78.885000px;}
.y2e_c00407{bottom:90.403560px;}
.y2f_c00407{bottom:90.405000px;}
.y2c_c00407{bottom:108.760320px;}
.y2d_c00407{bottom:108.765000px;}
.y2b_c00407{bottom:127.845000px;}
.y2a_c00407{bottom:133.965000px;}
.y29_c00407{bottom:145.485000px;}
.y28_c00407{bottom:145.486800px;}
.y26_c00407{bottom:163.121040px;}
.y27_c00407{bottom:163.125000px;}
.y25_c00407{bottom:180.405000px;}
.y24_c00407{bottom:180.406800px;}
.y23_c00407{bottom:198.045000px;}
.y22_c00407{bottom:204.165000px;}
.y21_c00407{bottom:230.805000px;}
.y20_c00407{bottom:406.845000px;}
.y1f_c00407{bottom:427.725000px;}
.y1e_c00407{bottom:448.605000px;}
.y1d_c00407{bottom:469.845000px;}
.y1c_c00407{bottom:490.725000px;}
.y1b_c00407{bottom:511.605000px;}
.y1a_c00407{bottom:547.605000px;}
.y19_c00407{bottom:568.845000px;}
.y18_c00407{bottom:589.725000px;}
.y17_c00407{bottom:610.605000px;}
.y16_c00407{bottom:631.845000px;}
.y15_c00407{bottom:652.725000px;}
.y14_c00407{bottom:673.605000px;}
.y13_c00407{bottom:694.845000px;}
.y12_c00407{bottom:715.725000px;}
.y11_c00407{bottom:736.965000px;}
.y10_c00407{bottom:772.965000px;}
.yf_c00407{bottom:793.845000px;}
.ye_c00407{bottom:814.725000px;}
.yd_c00407{bottom:835.965000px;}
.yc_c00407{bottom:856.845000px;}
.yb_c00407{bottom:892.845000px;}
.ya_c00407{bottom:915.885000px;}
.y9_c00407{bottom:936.405000px;}
.y8_c00407{bottom:957.645000px;}
.y7_c00407{bottom:978.525000px;}
.y6_c00407{bottom:999.405000px;}
.y5_c00407{bottom:1020.645000px;}
.y4_c00407{bottom:1056.645000px;}
.y3_c00407{bottom:1085.085000px;}
.y2_c00407{bottom:1138.365000px;}
.hc_c00407{height:19.255605px;}
.h8_c00407{height:32.616000px;}
.h9_c00407{height:46.981634px;}
.h6_c00407{height:50.765625px;}
.ha_c00407{height:53.490240px;}
.hb_c00407{height:53.506080px;}
.hd_c00407{height:56.640000px;}
.h4_c00407{height:57.294676px;}
.h7_c00407{height:64.401590px;}
.h3_c00407{height:65.232000px;}
.h5_c00407{height:68.074560px;}
.h2_c00407{height:1201.365000px;}
.h0_c00407{height:1262.835000px;}
.h1_c00407{height:1263.000000px;}
.w3_c00407{width:16.680000px;}
.w2_c00407{width:863.955000px;}
.w0_c00407{width:892.935000px;}
.w1_c00407{width:893.250000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:14.490000px;}
.x2_c00407{left:113.040150px;}
.xc_c00407{left:131.040150px;}
.x2c_c00407{left:141.830250px;}
.x28_c00407{left:143.864100px;}
.x29_c00407{left:148.033800px;}
.x3_c00407{left:150.029250px;}
.x1a_c00407{left:163.858500px;}
.x1b_c00407{left:179.438550px;}
.xd_c00407{left:193.049550px;}
.x4_c00407{left:232.936200px;}
.x20_c00407{left:239.859000px;}
.x18_c00407{left:251.681700px;}
.x21_c00407{left:268.193400px;}
.x22_c00407{left:272.663850px;}
.x1e_c00407{left:283.869900px;}
.xe_c00407{left:295.409550px;}
.x19_c00407{left:300.850350px;}
.x1f_c00407{left:308.033550px;}
.x23_c00407{left:314.333100px;}
.x13_c00407{left:316.023150px;}
.x5_c00407{left:368.344500px;}
.xf_c00407{left:394.744200px;}
.x2a_c00407{left:398.885700px;}
.x14_c00407{left:403.015800px;}
.x6_c00407{left:421.335600px;}
.x2b_c00407{left:456.364050px;}
.x7_c00407{left:481.783500px;}
.x10_c00407{left:504.068850px;}
.x8_c00407{left:516.774900px;}
.x11_c00407{left:525.728700px;}
.x15_c00407{left:541.055850px;}
.x12_c00407{left:568.712400px;}
.x26_c00407{left:578.621400px;}
.x24_c00407{left:588.648600px;}
.xb_c00407{left:606.338700px;}
.x27_c00407{left:607.947450px;}
.x9_c00407{left:636.291900px;}
.x16_c00407{left:639.064500px;}
.x17_c00407{left:658.304400px;}
.x25_c00407{left:673.081800px;}
.xa_c00407{left:694.305150px;}
.x1c_c00407{left:701.129850px;}
.x1d_c00407{left:712.799550px;}
.x2d_c00407{left:768.254608px;}
@media print{
.v2_c00407{vertical-align:-21.760000pt;}
.v0_c00407{vertical-align:0.000000pt;}
.v1_c00407{vertical-align:26.880000pt;}
.ls12_c00407{letter-spacing:0.000000pt;}
.ls18_c00407{letter-spacing:0.215424pt;}
.ls15_c00407{letter-spacing:0.236160pt;}
.lsd_c00407{letter-spacing:0.243428pt;}
.ls1c_c00407{letter-spacing:0.261888pt;}
.ls6_c00407{letter-spacing:0.262400pt;}
.ls1a_c00407{letter-spacing:0.283008pt;}
.lsc_c00407{letter-spacing:0.283093pt;}
.ls1e_c00407{letter-spacing:0.283392pt;}
.lsb_c00407{letter-spacing:0.306240pt;}
.ls19_c00407{letter-spacing:0.308352pt;}
.ls23_c00407{letter-spacing:0.340799pt;}
.ls1b_c00407{letter-spacing:0.354816pt;}
.ls16_c00407{letter-spacing:0.377856pt;}
.ls25_c00407{letter-spacing:0.389485pt;}
.ls17_c00407{letter-spacing:0.425088pt;}
.ls20_c00407{letter-spacing:0.438171pt;}
.lsf_c00407{letter-spacing:0.451328pt;}
.ls7_c00407{letter-spacing:0.472320pt;}
.lsa_c00407{letter-spacing:0.479680pt;}
.ls4_c00407{letter-spacing:0.486856pt;}
.ls9_c00407{letter-spacing:0.519083pt;}
.ls2_c00407{letter-spacing:0.607467pt;}
.ls22_c00407{letter-spacing:0.614016pt;}
.ls21_c00407{letter-spacing:0.632913pt;}
.ls1_c00407{letter-spacing:0.640213pt;}
.ls10_c00407{letter-spacing:0.839680pt;}
.lse_c00407{letter-spacing:0.865522pt;}
.ls1f_c00407{letter-spacing:1.306752pt;}
.ls24_c00407{letter-spacing:3.993728pt;}
.ls13_c00407{letter-spacing:4.827264pt;}
.ls1d_c00407{letter-spacing:4.828160pt;}
.ls14_c00407{letter-spacing:4.948864pt;}
.ls3_c00407{letter-spacing:5.312000pt;}
.ls0_c00407{letter-spacing:5.318400pt;}
.ls11_c00407{letter-spacing:5.475484pt;}
.ls5_c00407{letter-spacing:12.332800pt;}
.ls8_c00407{letter-spacing:25.982848pt;}
.ws5_c00407{word-spacing:-19.538304pt;}
.ws0_c00407{word-spacing:-18.705024pt;}
.ws2_c00407{word-spacing:-18.339574pt;}
.wsc_c00407{word-spacing:-15.671364pt;}
.ws4_c00407{word-spacing:-15.525307pt;}
.wsb_c00407{word-spacing:-15.476621pt;}
.wsa_c00407{word-spacing:-15.038451pt;}
.ws6_c00407{word-spacing:-14.967296pt;}
.wsd_c00407{word-spacing:-14.872832pt;}
.ws8_c00407{word-spacing:-12.025728pt;}
.ws9_c00407{word-spacing:-12.004608pt;}
.ws7_c00407{word-spacing:-11.958144pt;}
.ws1_c00407{word-spacing:-10.319360pt;}
.ws3_c00407{word-spacing:-8.896000pt;}
.wse_c00407{word-spacing:0.000000pt;}
._12_c00407{margin-left:-24.719872pt;}
._11_c00407{margin-left:-12.752640pt;}
._10_c00407{margin-left:-11.808000pt;}
._6_c00407{margin-left:-6.960352pt;}
._13_c00407{margin-left:-4.460800pt;}
._15_c00407{margin-left:-3.463680pt;}
._14_c00407{margin-left:-1.828373pt;}
._f_c00407{margin-left:-0.925333pt;}
._2_c00407{width:1.536000pt;}
._7_c00407{width:2.944000pt;}
._e_c00407{width:3.840000pt;}
._4_c00407{width:4.736000pt;}
._9_c00407{width:5.760000pt;}
._a_c00407{width:6.656000pt;}
._c_c00407{width:8.320000pt;}
._1_c00407{width:9.536000pt;}
._5_c00407{width:10.752000pt;}
._d_c00407{width:12.928000pt;}
._8_c00407{width:16.896000pt;}
._0_c00407{width:18.944000pt;}
._3_c00407{width:25.024000pt;}
._b_c00407{width:26.112000pt;}
.fs5_c00407{font-size:32.000000pt;}
.fs3_c00407{font-size:37.120000pt;}
.fs4_c00407{font-size:38.262420pt;}
.fs8_c00407{font-size:42.240000pt;}
.fs2_c00407{font-size:49.920000pt;}
.fs6_c00407{font-size:52.480000pt;}
.fs9_c00407{font-size:53.333333pt;}
.fs7_c00407{font-size:54.095146pt;}
.fs0_c00407{font-size:64.000000pt;}
.fs1_c00407{font-size:65.969690pt;}
.y0_c00407{bottom:0.000000pt;}
.y34_c00407{bottom:2.773333pt;}
.y33_c00407{bottom:30.884071pt;}
.y1_c00407{bottom:48.000000pt;}
.y32_c00407{bottom:49.316480pt;}
.y31_c00407{bottom:64.680000pt;}
.y30_c00407{bottom:70.120000pt;}
.y2e_c00407{bottom:80.358720pt;}
.y2f_c00407{bottom:80.360000pt;}
.y2c_c00407{bottom:96.675840pt;}
.y2d_c00407{bottom:96.680000pt;}
.y2b_c00407{bottom:113.640000pt;}
.y2a_c00407{bottom:119.080000pt;}
.y29_c00407{bottom:129.320000pt;}
.y28_c00407{bottom:129.321600pt;}
.y26_c00407{bottom:144.996480pt;}
.y27_c00407{bottom:145.000000pt;}
.y25_c00407{bottom:160.360000pt;}
.y24_c00407{bottom:160.361600pt;}
.y23_c00407{bottom:176.040000pt;}
.y22_c00407{bottom:181.480000pt;}
.y21_c00407{bottom:205.160000pt;}
.y20_c00407{bottom:361.640000pt;}
.y1f_c00407{bottom:380.200000pt;}
.y1e_c00407{bottom:398.760000pt;}
.y1d_c00407{bottom:417.640000pt;}
.y1c_c00407{bottom:436.200000pt;}
.y1b_c00407{bottom:454.760000pt;}
.y1a_c00407{bottom:486.760000pt;}
.y19_c00407{bottom:505.640000pt;}
.y18_c00407{bottom:524.200000pt;}
.y17_c00407{bottom:542.760000pt;}
.y16_c00407{bottom:561.640000pt;}
.y15_c00407{bottom:580.200000pt;}
.y14_c00407{bottom:598.760000pt;}
.y13_c00407{bottom:617.640000pt;}
.y12_c00407{bottom:636.200000pt;}
.y11_c00407{bottom:655.080000pt;}
.y10_c00407{bottom:687.080000pt;}
.yf_c00407{bottom:705.640000pt;}
.ye_c00407{bottom:724.200000pt;}
.yd_c00407{bottom:743.080000pt;}
.yc_c00407{bottom:761.640000pt;}
.yb_c00407{bottom:793.640000pt;}
.ya_c00407{bottom:814.120000pt;}
.y9_c00407{bottom:832.360000pt;}
.y8_c00407{bottom:851.240000pt;}
.y7_c00407{bottom:869.800000pt;}
.y6_c00407{bottom:888.360000pt;}
.y5_c00407{bottom:907.240000pt;}
.y4_c00407{bottom:939.240000pt;}
.y3_c00407{bottom:964.520000pt;}
.y2_c00407{bottom:1011.880000pt;}
.hc_c00407{height:17.116093pt;}
.h8_c00407{height:28.992000pt;}
.h9_c00407{height:41.761453pt;}
.h6_c00407{height:45.125000pt;}
.ha_c00407{height:47.546880pt;}
.hb_c00407{height:47.560960pt;}
.hd_c00407{height:50.346667pt;}
.h4_c00407{height:50.928601pt;}
.h7_c00407{height:57.245858pt;}
.h3_c00407{height:57.984000pt;}
.h5_c00407{height:60.510720pt;}
.h2_c00407{height:1067.880000pt;}
.h0_c00407{height:1122.520000pt;}
.h1_c00407{height:1122.666667pt;}
.w3_c00407{width:14.826667pt;}
.w2_c00407{width:767.960000pt;}
.w0_c00407{width:793.720000pt;}
.w1_c00407{width:794.000000pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:12.880000pt;}
.x2_c00407{left:100.480133pt;}
.xc_c00407{left:116.480133pt;}
.x2c_c00407{left:126.071333pt;}
.x28_c00407{left:127.879200pt;}
.x29_c00407{left:131.585600pt;}
.x3_c00407{left:133.359333pt;}
.x1a_c00407{left:145.652000pt;}
.x1b_c00407{left:159.500933pt;}
.xd_c00407{left:171.599600pt;}
.x4_c00407{left:207.054400pt;}
.x20_c00407{left:213.208000pt;}
.x18_c00407{left:223.717067pt;}
.x21_c00407{left:238.394133pt;}
.x22_c00407{left:242.367867pt;}
.x1e_c00407{left:252.328800pt;}
.xe_c00407{left:262.586267pt;}
.x19_c00407{left:267.422533pt;}
.x1f_c00407{left:273.807600pt;}
.x23_c00407{left:279.407200pt;}
.x13_c00407{left:280.909467pt;}
.x5_c00407{left:327.417333pt;}
.xf_c00407{left:350.883733pt;}
.x2a_c00407{left:354.565067pt;}
.x14_c00407{left:358.236267pt;}
.x6_c00407{left:374.520533pt;}
.x2b_c00407{left:405.656933pt;}
.x7_c00407{left:428.252000pt;}
.x10_c00407{left:448.061200pt;}
.x8_c00407{left:459.355467pt;}
.x11_c00407{left:467.314400pt;}
.x15_c00407{left:480.938533pt;}
.x12_c00407{left:505.522133pt;}
.x26_c00407{left:514.330133pt;}
.x24_c00407{left:523.243200pt;}
.xb_c00407{left:538.967733pt;}
.x27_c00407{left:540.397733pt;}
.x9_c00407{left:565.592800pt;}
.x16_c00407{left:568.057333pt;}
.x17_c00407{left:585.159467pt;}
.x25_c00407{left:598.294933pt;}
.xa_c00407{left:617.160133pt;}
.x1c_c00407{left:623.226533pt;}
.x1d_c00407{left:633.599600pt;}
.x2d_c00407{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c056b7adb223032330383332.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_9f8777705234aa58c87585d7.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;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:ff3_c00408;src:url('chunks/assets/font_ac7c4a37c1b25053c12d880b.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00408{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00408{vertical-align:-24.480000px;}
.v0_c00408{vertical-align:0.000000px;}
.v1_c00408{vertical-align:30.240000px;}
.ls5_c00408{letter-spacing:0.000000px;}
.ls10_c00408{letter-spacing:0.202464px;}
.ls7_c00408{letter-spacing:0.265680px;}
.ls1_c00408{letter-spacing:0.295200px;}
.lsc_c00408{letter-spacing:0.318816px;}
.lse_c00408{letter-spacing:0.399600px;}
.ls2_c00408{letter-spacing:0.531360px;}
.ls9_c00408{letter-spacing:0.584496px;}
.ls8_c00408{letter-spacing:0.712027px;}
.lsa_c00408{letter-spacing:2.184480px;}
.lsf_c00408{letter-spacing:4.923072px;}
.ls6_c00408{letter-spacing:5.335200px;}
.lsb_c00408{letter-spacing:5.567472px;}
.ls3_c00408{letter-spacing:5.976000px;}
.ls0_c00408{letter-spacing:5.983200px;}
.ls4_c00408{letter-spacing:6.159920px;}
.lsd_c00408{letter-spacing:7.338672px;}
.sc__c00408{text-shadow:none;}
.sc1_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00408{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc1_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00408{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00408{word-spacing:-21.980592px;}
.ws0_c00408{word-spacing:-20.947680px;}
.ws4_c00408{word-spacing:-19.734912px;}
.ws1_c00408{word-spacing:-11.609280px;}
.ws2_c00408{word-spacing:-10.008000px;}
.ws5_c00408{word-spacing:0.000000px;}
._7_c00408{margin-left:-7.310130px;}
._8_c00408{margin-left:-5.866619px;}
._5_c00408{margin-left:-2.340690px;}
._4_c00408{margin-left:-1.338855px;}
._3_c00408{width:1.003680px;}
._6_c00408{width:2.199456px;}
._0_c00408{width:3.240000px;}
._2_c00408{width:4.320000px;}
._1_c00408{width:6.984000px;}
.fc0_c00408{color:rgb(0,0,0);}
.fs4_c00408{font-size:36.000000px;}
.fs3_c00408{font-size:41.760000px;}
.fs7_c00408{font-size:53.280000px;}
.fs2_c00408{font-size:56.160000px;}
.fs5_c00408{font-size:59.040000px;}
.fs8_c00408{font-size:60.000000px;}
.fs6_c00408{font-size:60.857039px;}
.fs0_c00408{font-size:72.000000px;}
.fs1_c00408{font-size:74.215901px;}
.y0_c00408{bottom:0.000000px;}
.y26_c00408{bottom:3.120000px;}
.y24_c00408{bottom:14.400000px;}
.y25_c00408{bottom:34.744580px;}
.y1_c00408{bottom:54.000000px;}
.y22_c00408{bottom:55.478880px;}
.y21_c00408{bottom:72.762840px;}
.y20_c00408{bottom:90.401040px;}
.y1f_c00408{bottom:113.805000px;}
.y1e_c00408{bottom:125.325000px;}
.y1d_c00408{bottom:131.445000px;}
.y1c_c00408{bottom:158.085000px;}
.y1b_c00408{bottom:250.965000px;}
.y1a_c00408{bottom:286.965000px;}
.y23_c00408{bottom:319.365000px;}
.y19_c00408{bottom:322.965000px;}
.y18_c00408{bottom:358.965000px;}
.y17_c00408{bottom:394.965000px;}
.y16_c00408{bottom:430.965000px;}
.y15_c00408{bottom:466.965000px;}
.y14_c00408{bottom:502.965000px;}
.y13_c00408{bottom:538.965000px;}
.y12_c00408{bottom:574.965000px;}
.y11_c00408{bottom:610.965000px;}
.y10_c00408{bottom:646.965000px;}
.yf_c00408{bottom:682.965000px;}
.ye_c00408{bottom:718.965000px;}
.yd_c00408{bottom:754.965000px;}
.yc_c00408{bottom:790.965000px;}
.yb_c00408{bottom:826.965000px;}
.ya_c00408{bottom:862.965000px;}
.y9_c00408{bottom:898.965000px;}
.y8_c00408{bottom:934.965000px;}
.y7_c00408{bottom:970.965000px;}
.y6_c00408{bottom:991.845000px;}
.y5_c00408{bottom:1013.085000px;}
.y4_c00408{bottom:1049.085000px;}
.y3_c00408{bottom:1085.085000px;}
.y2_c00408{bottom:1138.365000px;}
.hb_c00408{height:19.255605px;}
.h9_c00408{height:27.000000px;}
.h6_c00408{height:32.616000px;}
.h7_c00408{height:46.981634px;}
.ha_c00408{height:48.271680px;}
.h8_c00408{height:53.490240px;}
.hc_c00408{height:56.640000px;}
.h4_c00408{height:57.294676px;}
.h3_c00408{height:65.232000px;}
.h5_c00408{height:68.074560px;}
.h2_c00408{height:1201.365000px;}
.h0_c00408{height:1262.835000px;}
.h1_c00408{height:1263.000000px;}
.w4_c00408{width:16.680000px;}
.w3_c00408{width:600.840000px;}
.w2_c00408{width:863.955000px;}
.w0_c00408{width:892.935000px;}
.w1_c00408{width:893.250000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:14.490000px;}
.x2_c00408{left:113.040150px;}
.x3_c00408{left:150.029250px;}
.x7_c00408{left:151.290000px;}
.x5_c00408{left:187.236300px;}
.x8_c00408{left:196.346100px;}
.x4_c00408{left:232.936200px;}
.x6_c00408{left:246.409050px;}
.x9_c00408{left:768.254608px;}
@media print{
.v2_c00408{vertical-align:-21.760000pt;}
.v0_c00408{vertical-align:0.000000pt;}
.v1_c00408{vertical-align:26.880000pt;}
.ls5_c00408{letter-spacing:0.000000pt;}
.ls10_c00408{letter-spacing:0.179968pt;}
.ls7_c00408{letter-spacing:0.236160pt;}
.ls1_c00408{letter-spacing:0.262400pt;}
.lsc_c00408{letter-spacing:0.283392pt;}
.lse_c00408{letter-spacing:0.355200pt;}
.ls2_c00408{letter-spacing:0.472320pt;}
.ls9_c00408{letter-spacing:0.519552pt;}
.ls8_c00408{letter-spacing:0.632913pt;}
.lsa_c00408{letter-spacing:1.941760pt;}
.lsf_c00408{letter-spacing:4.376064pt;}
.ls6_c00408{letter-spacing:4.742400pt;}
.lsb_c00408{letter-spacing:4.948864pt;}
.ls3_c00408{letter-spacing:5.312000pt;}
.ls0_c00408{letter-spacing:5.318400pt;}
.ls4_c00408{letter-spacing:5.475484pt;}
.lsd_c00408{letter-spacing:6.523264pt;}
.ws3_c00408{word-spacing:-19.538304pt;}
.ws0_c00408{word-spacing:-18.620160pt;}
.ws4_c00408{word-spacing:-17.542144pt;}
.ws1_c00408{word-spacing:-10.319360pt;}
.ws2_c00408{word-spacing:-8.896000pt;}
.ws5_c00408{word-spacing:0.000000pt;}
._7_c00408{margin-left:-6.497894pt;}
._8_c00408{margin-left:-5.214773pt;}
._5_c00408{margin-left:-2.080614pt;}
._4_c00408{margin-left:-1.190093pt;}
._3_c00408{width:0.892160pt;}
._6_c00408{width:1.955072pt;}
._0_c00408{width:2.880000pt;}
._2_c00408{width:3.840000pt;}
._1_c00408{width:6.208000pt;}
.fs4_c00408{font-size:32.000000pt;}
.fs3_c00408{font-size:37.120000pt;}
.fs7_c00408{font-size:47.360000pt;}
.fs2_c00408{font-size:49.920000pt;}
.fs5_c00408{font-size:52.480000pt;}
.fs8_c00408{font-size:53.333333pt;}
.fs6_c00408{font-size:54.095146pt;}
.fs0_c00408{font-size:64.000000pt;}
.fs1_c00408{font-size:65.969690pt;}
.y0_c00408{bottom:0.000000pt;}
.y26_c00408{bottom:2.773333pt;}
.y24_c00408{bottom:12.800000pt;}
.y25_c00408{bottom:30.884071pt;}
.y1_c00408{bottom:48.000000pt;}
.y22_c00408{bottom:49.314560pt;}
.y21_c00408{bottom:64.678080pt;}
.y20_c00408{bottom:80.356480pt;}
.y1f_c00408{bottom:101.160000pt;}
.y1e_c00408{bottom:111.400000pt;}
.y1d_c00408{bottom:116.840000pt;}
.y1c_c00408{bottom:140.520000pt;}
.y1b_c00408{bottom:223.080000pt;}
.y1a_c00408{bottom:255.080000pt;}
.y23_c00408{bottom:283.880000pt;}
.y19_c00408{bottom:287.080000pt;}
.y18_c00408{bottom:319.080000pt;}
.y17_c00408{bottom:351.080000pt;}
.y16_c00408{bottom:383.080000pt;}
.y15_c00408{bottom:415.080000pt;}
.y14_c00408{bottom:447.080000pt;}
.y13_c00408{bottom:479.080000pt;}
.y12_c00408{bottom:511.080000pt;}
.y11_c00408{bottom:543.080000pt;}
.y10_c00408{bottom:575.080000pt;}
.yf_c00408{bottom:607.080000pt;}
.ye_c00408{bottom:639.080000pt;}
.yd_c00408{bottom:671.080000pt;}
.yc_c00408{bottom:703.080000pt;}
.yb_c00408{bottom:735.080000pt;}
.ya_c00408{bottom:767.080000pt;}
.y9_c00408{bottom:799.080000pt;}
.y8_c00408{bottom:831.080000pt;}
.y7_c00408{bottom:863.080000pt;}
.y6_c00408{bottom:881.640000pt;}
.y5_c00408{bottom:900.520000pt;}
.y4_c00408{bottom:932.520000pt;}
.y3_c00408{bottom:964.520000pt;}
.y2_c00408{bottom:1011.880000pt;}
.hb_c00408{height:17.116093pt;}
.h9_c00408{height:24.000000pt;}
.h6_c00408{height:28.992000pt;}
.h7_c00408{height:41.761453pt;}
.ha_c00408{height:42.908160pt;}
.h8_c00408{height:47.546880pt;}
.hc_c00408{height:50.346667pt;}
.h4_c00408{height:50.928601pt;}
.h3_c00408{height:57.984000pt;}
.h5_c00408{height:60.510720pt;}
.h2_c00408{height:1067.880000pt;}
.h0_c00408{height:1122.520000pt;}
.h1_c00408{height:1122.666667pt;}
.w4_c00408{width:14.826667pt;}
.w3_c00408{width:534.080000pt;}
.w2_c00408{width:767.960000pt;}
.w0_c00408{width:793.720000pt;}
.w1_c00408{width:794.000000pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:12.880000pt;}
.x2_c00408{left:100.480133pt;}
.x3_c00408{left:133.359333pt;}
.x7_c00408{left:134.480000pt;}
.x5_c00408{left:166.432267pt;}
.x8_c00408{left:174.529867pt;}
.x4_c00408{left:207.054400pt;}
.x6_c00408{left:219.030267pt;}
.x9_c00408{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5604a9131f162c50871c32fd.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_0bbb6603ea45971b6ce45c4b.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;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:ff3_c00409;src:url('chunks/assets/font_0e1ebec3f392b4c8e1861b7e.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00409{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00409{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls2_c00409{letter-spacing:0.000000px;}
.ls4_c00409{letter-spacing:0.239760px;}
.ls3_c00409{letter-spacing:0.399600px;}
.ls0_c00409{letter-spacing:5.976000px;}
.ls1_c00409{letter-spacing:6.159920px;}
.sc__c00409{text-shadow:none;}
.sc1_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00409{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc1_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00409{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00409{word-spacing:-15.051600px;}
.ws1_c00409{word-spacing:0.000000px;}
._0_c00409{margin-left:-1.118880px;}
._1_c00409{width:1.012320px;}
.fc0_c00409{color:rgb(0,0,0);}
.fs2_c00409{font-size:53.280000px;}
.fs3_c00409{font-size:54.919767px;}
.fs4_c00409{font-size:60.000000px;}
.fs0_c00409{font-size:72.000000px;}
.fs1_c00409{font-size:74.215901px;}
.y0_c00409{bottom:0.000000px;}
.y1f_c00409{bottom:3.120000px;}
.y1d_c00409{bottom:14.400000px;}
.y1b_c00409{bottom:18.720000px;}
.y1a_c00409{bottom:34.560000px;}
.y1e_c00409{bottom:34.744580px;}
.y1_c00409{bottom:54.000000px;}
.y18_c00409{bottom:328.725000px;}
.y17_c00409{bottom:364.725000px;}
.y16_c00409{bottom:400.725000px;}
.y1c_c00409{bottom:427.365000px;}
.y15_c00409{bottom:436.725000px;}
.y14_c00409{bottom:472.725000px;}
.y13_c00409{bottom:509.085000px;}
.y12_c00409{bottom:545.085000px;}
.y11_c00409{bottom:581.085000px;}
.y10_c00409{bottom:617.085000px;}
.y19_c00409{bottom:623.205000px;}
.yf_c00409{bottom:653.085000px;}
.ye_c00409{bottom:689.085000px;}
.yd_c00409{bottom:725.085000px;}
.yc_c00409{bottom:761.085000px;}
.yb_c00409{bottom:797.085000px;}
.ya_c00409{bottom:833.085000px;}
.y9_c00409{bottom:869.085000px;}
.y8_c00409{bottom:905.085000px;}
.y7_c00409{bottom:941.085000px;}
.y6_c00409{bottom:977.085000px;}
.y5_c00409{bottom:1013.085000px;}
.y4_c00409{bottom:1049.085000px;}
.y3_c00409{bottom:1085.085000px;}
.y2_c00409{bottom:1138.365000px;}
.h9_c00409{height:19.255605px;}
.h8_c00409{height:27.000000px;}
.h7_c00409{height:42.398060px;}
.h5_c00409{height:47.160000px;}
.h6_c00409{height:48.271680px;}
.ha_c00409{height:56.640000px;}
.h4_c00409{height:57.294676px;}
.h3_c00409{height:65.232000px;}
.h2_c00409{height:1201.365000px;}
.h0_c00409{height:1262.835000px;}
.h1_c00409{height:1263.000000px;}
.w5_c00409{width:16.680000px;}
.w3_c00409{width:332.640000px;}
.w4_c00409{width:636.480000px;}
.w2_c00409{width:863.955000px;}
.w0_c00409{width:892.935000px;}
.w1_c00409{width:893.250000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:14.490000px;}
.x6_c00409{left:16.543800px;}
.x2_c00409{left:113.040150px;}
.x7_c00409{left:141.848100px;}
.x3_c00409{left:150.029250px;}
.x9_c00409{left:151.290000px;}
.xa_c00409{left:179.016600px;}
.x8_c00409{left:190.581900px;}
.x4_c00409{left:232.936200px;}
.x5_c00409{left:286.290000px;}
.xb_c00409{left:768.254608px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls2_c00409{letter-spacing:0.000000pt;}
.ls4_c00409{letter-spacing:0.213120pt;}
.ls3_c00409{letter-spacing:0.355200pt;}
.ls0_c00409{letter-spacing:5.312000pt;}
.ls1_c00409{letter-spacing:5.475484pt;}
.ws0_c00409{word-spacing:-13.379200pt;}
.ws1_c00409{word-spacing:0.000000pt;}
._0_c00409{margin-left:-0.994560pt;}
._1_c00409{width:0.899840pt;}
.fs2_c00409{font-size:47.360000pt;}
.fs3_c00409{font-size:48.817571pt;}
.fs4_c00409{font-size:53.333333pt;}
.fs0_c00409{font-size:64.000000pt;}
.fs1_c00409{font-size:65.969690pt;}
.y0_c00409{bottom:0.000000pt;}
.y1f_c00409{bottom:2.773333pt;}
.y1d_c00409{bottom:12.800000pt;}
.y1b_c00409{bottom:16.640000pt;}
.y1a_c00409{bottom:30.720000pt;}
.y1e_c00409{bottom:30.884071pt;}
.y1_c00409{bottom:48.000000pt;}
.y18_c00409{bottom:292.200000pt;}
.y17_c00409{bottom:324.200000pt;}
.y16_c00409{bottom:356.200000pt;}
.y1c_c00409{bottom:379.880000pt;}
.y15_c00409{bottom:388.200000pt;}
.y14_c00409{bottom:420.200000pt;}
.y13_c00409{bottom:452.520000pt;}
.y12_c00409{bottom:484.520000pt;}
.y11_c00409{bottom:516.520000pt;}
.y10_c00409{bottom:548.520000pt;}
.y19_c00409{bottom:553.960000pt;}
.yf_c00409{bottom:580.520000pt;}
.ye_c00409{bottom:612.520000pt;}
.yd_c00409{bottom:644.520000pt;}
.yc_c00409{bottom:676.520000pt;}
.yb_c00409{bottom:708.520000pt;}
.ya_c00409{bottom:740.520000pt;}
.y9_c00409{bottom:772.520000pt;}
.y8_c00409{bottom:804.520000pt;}
.y7_c00409{bottom:836.520000pt;}
.y6_c00409{bottom:868.520000pt;}
.y5_c00409{bottom:900.520000pt;}
.y4_c00409{bottom:932.520000pt;}
.y3_c00409{bottom:964.520000pt;}
.y2_c00409{bottom:1011.880000pt;}
.h9_c00409{height:17.116093pt;}
.h8_c00409{height:24.000000pt;}
.h7_c00409{height:37.687165pt;}
.h5_c00409{height:41.920000pt;}
.h6_c00409{height:42.908160pt;}
.ha_c00409{height:50.346667pt;}
.h4_c00409{height:50.928601pt;}
.h3_c00409{height:57.984000pt;}
.h2_c00409{height:1067.880000pt;}
.h0_c00409{height:1122.520000pt;}
.h1_c00409{height:1122.666667pt;}
.w5_c00409{width:14.826667pt;}
.w3_c00409{width:295.680000pt;}
.w4_c00409{width:565.760000pt;}
.w2_c00409{width:767.960000pt;}
.w0_c00409{width:793.720000pt;}
.w1_c00409{width:794.000000pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:12.880000pt;}
.x6_c00409{left:14.705600pt;}
.x2_c00409{left:100.480133pt;}
.x7_c00409{left:126.087200pt;}
.x3_c00409{left:133.359333pt;}
.x9_c00409{left:134.480000pt;}
.xa_c00409{left:159.125867pt;}
.x8_c00409{left:169.406133pt;}
.x4_c00409{left:207.054400pt;}
.x5_c00409{left:254.480000pt;}
.xb_c00409{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ac73e872cb6b927125621db.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_3fff71c570af6bb11d1f2d33.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;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:ff3_c00410;src:url('chunks/assets/font_0d611209018009a34d423c47.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00410{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00410{vertical-align:-24.480000px;}
.v0_c00410{vertical-align:0.000000px;}
.v1_c00410{vertical-align:30.240000px;}
.ls8_c00410{letter-spacing:0.000000px;}
.lsd_c00410{letter-spacing:0.265680px;}
.ls3_c00410{letter-spacing:0.293640px;}
.ls14_c00410{letter-spacing:0.371952px;}
.ls12_c00410{letter-spacing:0.425088px;}
.ls10_c00410{letter-spacing:0.438171px;}
.ls6_c00410{letter-spacing:0.501840px;}
.lsf_c00410{letter-spacing:0.531360px;}
.ls13_c00410{letter-spacing:0.690768px;}
.ls4_c00410{letter-spacing:0.702240px;}
.ls7_c00410{letter-spacing:0.712027px;}
.ls2_c00410{letter-spacing:4.993080px;}
.lsb_c00410{letter-spacing:5.009472px;}
.lsa_c00410{letter-spacing:5.245344px;}
.lsc_c00410{letter-spacing:5.290272px;}
.ls9_c00410{letter-spacing:5.406777px;}
.ls5_c00410{letter-spacing:5.549760px;}
.ls1_c00410{letter-spacing:5.976000px;}
.ls0_c00410{letter-spacing:6.159920px;}
.ls11_c00410{letter-spacing:8.407296px;}
.lse_c00410{letter-spacing:8.548992px;}
.sc__c00410{text-shadow:none;}
.sc1_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00410{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc1_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00410{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00410{word-spacing:-25.992000px;}
.ws7_c00410{word-spacing:-21.962880px;}
.ws0_c00410{word-spacing:-21.499753px;}
.ws4_c00410{word-spacing:-20.902752px;}
.ws1_c00410{word-spacing:-20.857824px;}
.ws2_c00410{word-spacing:-20.621952px;}
.ws5_c00410{word-spacing:-20.016000px;}
.ws8_c00410{word-spacing:-17.630284px;}
.ws9_c00410{word-spacing:-17.103888px;}
.ws6_c00410{word-spacing:-10.008000px;}
.wsa_c00410{word-spacing:0.000000px;}
._14_c00410{margin-left:-9.092160px;}
._13_c00410{margin-left:-7.970400px;}
._15_c00410{margin-left:-1.089360px;}
._c_c00410{width:1.224000px;}
._5_c00410{width:2.232000px;}
._7_c00410{width:3.744000px;}
._f_c00410{width:4.968000px;}
._0_c00410{width:6.912000px;}
._9_c00410{width:7.920000px;}
._4_c00410{width:9.072000px;}
._e_c00410{width:10.800000px;}
._11_c00410{width:12.024000px;}
._1_c00410{width:13.176000px;}
._2_c00410{width:14.472000px;}
._a_c00410{width:15.552000px;}
._3_c00410{width:17.280000px;}
._8_c00410{width:18.288000px;}
._12_c00410{width:22.608000px;}
._6_c00410{width:24.120000px;}
._b_c00410{width:28.728000px;}
._10_c00410{width:30.096000px;}
._d_c00410{width:37.872000px;}
.fc0_c00410{color:rgb(0,0,0);}
.fs5_c00410{font-size:36.000000px;}
.fs4_c00410{font-size:41.760000px;}
.fs3_c00410{font-size:56.160000px;}
.fs2_c00410{font-size:57.888403px;}
.fs6_c00410{font-size:59.040000px;}
.fs8_c00410{font-size:60.000000px;}
.fs7_c00410{font-size:60.857039px;}
.fs0_c00410{font-size:72.000000px;}
.fs1_c00410{font-size:74.215901px;}
.y0_c00410{bottom:0.000000px;}
.y35_c00410{bottom:3.120000px;}
.y34_c00410{bottom:34.744580px;}
.y1_c00410{bottom:54.000000px;}
.y32_c00410{bottom:55.481040px;}
.y33_c00410{bottom:55.485000px;}
.y31_c00410{bottom:72.765000px;}
.y30_c00410{bottom:72.766800px;}
.y2e_c00410{bottom:90.402840px;}
.y2f_c00410{bottom:90.405000px;}
.y2d_c00410{bottom:107.686800px;}
.y2c_c00410{bottom:131.445000px;}
.y2b_c00410{bottom:149.085000px;}
.y2a_c00410{bottom:175.725000px;}
.y29_c00410{bottom:211.725000px;}
.y28_c00410{bottom:232.605000px;}
.y27_c00410{bottom:253.845000px;}
.y26_c00410{bottom:289.845000px;}
.y25_c00410{bottom:310.725000px;}
.y24_c00410{bottom:331.965000px;}
.y23_c00410{bottom:352.845000px;}
.y22_c00410{bottom:373.725000px;}
.y21_c00410{bottom:394.965000px;}
.y20_c00410{bottom:430.965000px;}
.y1f_c00410{bottom:451.845000px;}
.y1e_c00410{bottom:472.725000px;}
.y1d_c00410{bottom:493.965000px;}
.y1c_c00410{bottom:514.845000px;}
.y1b_c00410{bottom:535.725000px;}
.y1a_c00410{bottom:556.965000px;}
.y19_c00410{bottom:577.845000px;}
.y18_c00410{bottom:598.725000px;}
.y17_c00410{bottom:634.725000px;}
.y16_c00410{bottom:655.965000px;}
.y15_c00410{bottom:676.845000px;}
.y14_c00410{bottom:697.725000px;}
.y13_c00410{bottom:718.965000px;}
.y12_c00410{bottom:739.845000px;}
.y11_c00410{bottom:761.085000px;}
.y10_c00410{bottom:781.965000px;}
.yf_c00410{bottom:802.845000px;}
.ye_c00410{bottom:824.085000px;}
.yd_c00410{bottom:844.965000px;}
.yc_c00410{bottom:880.965000px;}
.yb_c00410{bottom:901.845000px;}
.ya_c00410{bottom:923.085000px;}
.y9_c00410{bottom:943.965000px;}
.y8_c00410{bottom:964.845000px;}
.y7_c00410{bottom:986.085000px;}
.y6_c00410{bottom:1006.965000px;}
.y5_c00410{bottom:1027.845000px;}
.y4_c00410{bottom:1049.085000px;}
.y3_c00410{bottom:1085.085000px;}
.y2_c00410{bottom:1138.365000px;}
.h9_c00410{height:19.255605px;}
.h6_c00410{height:32.616000px;}
.h8_c00410{height:46.981634px;}
.h7_c00410{height:53.490240px;}
.ha_c00410{height:56.640000px;}
.h4_c00410{height:57.294676px;}
.h3_c00410{height:65.232000px;}
.h5_c00410{height:68.074560px;}
.h2_c00410{height:1201.365000px;}
.h0_c00410{height:1262.835000px;}
.h1_c00410{height:1263.000000px;}
.w3_c00410{width:16.680000px;}
.w2_c00410{width:863.955000px;}
.w0_c00410{width:892.935000px;}
.w1_c00410{width:893.250000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:14.490000px;}
.x2_c00410{left:113.040150px;}
.x3_c00410{left:150.029250px;}
.x5_c00410{left:183.065850px;}
.x8_c00410{left:206.026650px;}
.x4_c00410{left:216.502050px;}
.x14_c00410{left:238.886400px;}
.x15_c00410{left:258.880350px;}
.x11_c00410{left:263.367600px;}
.x12_c00410{left:288.342000px;}
.xd_c00410{left:314.692350px;}
.x9_c00410{left:355.408800px;}
.xe_c00410{left:370.707600px;}
.x6_c00410{left:397.762200px;}
.x13_c00410{left:416.909550px;}
.xb_c00410{left:423.884400px;}
.xf_c00410{left:447.252600px;}
.x7_c00410{left:453.777450px;}
.xa_c00410{left:499.075950px;}
.xc_c00410{left:552.580800px;}
.x10_c00410{left:593.384400px;}
.x16_c00410{left:768.254608px;}
@media print{
.v2_c00410{vertical-align:-21.760000pt;}
.v0_c00410{vertical-align:0.000000pt;}
.v1_c00410{vertical-align:26.880000pt;}
.ls8_c00410{letter-spacing:0.000000pt;}
.lsd_c00410{letter-spacing:0.236160pt;}
.ls3_c00410{letter-spacing:0.261013pt;}
.ls14_c00410{letter-spacing:0.330624pt;}
.ls12_c00410{letter-spacing:0.377856pt;}
.ls10_c00410{letter-spacing:0.389485pt;}
.ls6_c00410{letter-spacing:0.446080pt;}
.lsf_c00410{letter-spacing:0.472320pt;}
.ls13_c00410{letter-spacing:0.614016pt;}
.ls4_c00410{letter-spacing:0.624213pt;}
.ls7_c00410{letter-spacing:0.632913pt;}
.ls2_c00410{letter-spacing:4.438293pt;}
.lsb_c00410{letter-spacing:4.452864pt;}
.lsa_c00410{letter-spacing:4.662528pt;}
.lsc_c00410{letter-spacing:4.702464pt;}
.ls9_c00410{letter-spacing:4.806024pt;}
.ls5_c00410{letter-spacing:4.933120pt;}
.ls1_c00410{letter-spacing:5.312000pt;}
.ls0_c00410{letter-spacing:5.475484pt;}
.ls11_c00410{letter-spacing:7.473152pt;}
.lse_c00410{letter-spacing:7.599104pt;}
.ws3_c00410{word-spacing:-23.104000pt;}
.ws7_c00410{word-spacing:-19.522560pt;}
.ws0_c00410{word-spacing:-19.110891pt;}
.ws4_c00410{word-spacing:-18.580224pt;}
.ws1_c00410{word-spacing:-18.540288pt;}
.ws2_c00410{word-spacing:-18.330624pt;}
.ws5_c00410{word-spacing:-17.792000pt;}
.ws8_c00410{word-spacing:-15.671364pt;}
.ws9_c00410{word-spacing:-15.203456pt;}
.ws6_c00410{word-spacing:-8.896000pt;}
.wsa_c00410{word-spacing:0.000000pt;}
._14_c00410{margin-left:-8.081920pt;}
._13_c00410{margin-left:-7.084800pt;}
._15_c00410{margin-left:-0.968320pt;}
._c_c00410{width:1.088000pt;}
._5_c00410{width:1.984000pt;}
._7_c00410{width:3.328000pt;}
._f_c00410{width:4.416000pt;}
._0_c00410{width:6.144000pt;}
._9_c00410{width:7.040000pt;}
._4_c00410{width:8.064000pt;}
._e_c00410{width:9.600000pt;}
._11_c00410{width:10.688000pt;}
._1_c00410{width:11.712000pt;}
._2_c00410{width:12.864000pt;}
._a_c00410{width:13.824000pt;}
._3_c00410{width:15.360000pt;}
._8_c00410{width:16.256000pt;}
._12_c00410{width:20.096000pt;}
._6_c00410{width:21.440000pt;}
._b_c00410{width:25.536000pt;}
._10_c00410{width:26.752000pt;}
._d_c00410{width:33.664000pt;}
.fs5_c00410{font-size:32.000000pt;}
.fs4_c00410{font-size:37.120000pt;}
.fs3_c00410{font-size:49.920000pt;}
.fs2_c00410{font-size:51.456358pt;}
.fs6_c00410{font-size:52.480000pt;}
.fs8_c00410{font-size:53.333333pt;}
.fs7_c00410{font-size:54.095146pt;}
.fs0_c00410{font-size:64.000000pt;}
.fs1_c00410{font-size:65.969690pt;}
.y0_c00410{bottom:0.000000pt;}
.y35_c00410{bottom:2.773333pt;}
.y34_c00410{bottom:30.884071pt;}
.y1_c00410{bottom:48.000000pt;}
.y32_c00410{bottom:49.316480pt;}
.y33_c00410{bottom:49.320000pt;}
.y31_c00410{bottom:64.680000pt;}
.y30_c00410{bottom:64.681600pt;}
.y2e_c00410{bottom:80.358080pt;}
.y2f_c00410{bottom:80.360000pt;}
.y2d_c00410{bottom:95.721600pt;}
.y2c_c00410{bottom:116.840000pt;}
.y2b_c00410{bottom:132.520000pt;}
.y2a_c00410{bottom:156.200000pt;}
.y29_c00410{bottom:188.200000pt;}
.y28_c00410{bottom:206.760000pt;}
.y27_c00410{bottom:225.640000pt;}
.y26_c00410{bottom:257.640000pt;}
.y25_c00410{bottom:276.200000pt;}
.y24_c00410{bottom:295.080000pt;}
.y23_c00410{bottom:313.640000pt;}
.y22_c00410{bottom:332.200000pt;}
.y21_c00410{bottom:351.080000pt;}
.y20_c00410{bottom:383.080000pt;}
.y1f_c00410{bottom:401.640000pt;}
.y1e_c00410{bottom:420.200000pt;}
.y1d_c00410{bottom:439.080000pt;}
.y1c_c00410{bottom:457.640000pt;}
.y1b_c00410{bottom:476.200000pt;}
.y1a_c00410{bottom:495.080000pt;}
.y19_c00410{bottom:513.640000pt;}
.y18_c00410{bottom:532.200000pt;}
.y17_c00410{bottom:564.200000pt;}
.y16_c00410{bottom:583.080000pt;}
.y15_c00410{bottom:601.640000pt;}
.y14_c00410{bottom:620.200000pt;}
.y13_c00410{bottom:639.080000pt;}
.y12_c00410{bottom:657.640000pt;}
.y11_c00410{bottom:676.520000pt;}
.y10_c00410{bottom:695.080000pt;}
.yf_c00410{bottom:713.640000pt;}
.ye_c00410{bottom:732.520000pt;}
.yd_c00410{bottom:751.080000pt;}
.yc_c00410{bottom:783.080000pt;}
.yb_c00410{bottom:801.640000pt;}
.ya_c00410{bottom:820.520000pt;}
.y9_c00410{bottom:839.080000pt;}
.y8_c00410{bottom:857.640000pt;}
.y7_c00410{bottom:876.520000pt;}
.y6_c00410{bottom:895.080000pt;}
.y5_c00410{bottom:913.640000pt;}
.y4_c00410{bottom:932.520000pt;}
.y3_c00410{bottom:964.520000pt;}
.y2_c00410{bottom:1011.880000pt;}
.h9_c00410{height:17.116093pt;}
.h6_c00410{height:28.992000pt;}
.h8_c00410{height:41.761453pt;}
.h7_c00410{height:47.546880pt;}
.ha_c00410{height:50.346667pt;}
.h4_c00410{height:50.928601pt;}
.h3_c00410{height:57.984000pt;}
.h5_c00410{height:60.510720pt;}
.h2_c00410{height:1067.880000pt;}
.h0_c00410{height:1122.520000pt;}
.h1_c00410{height:1122.666667pt;}
.w3_c00410{width:14.826667pt;}
.w2_c00410{width:767.960000pt;}
.w0_c00410{width:793.720000pt;}
.w1_c00410{width:794.000000pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:12.880000pt;}
.x2_c00410{left:100.480133pt;}
.x3_c00410{left:133.359333pt;}
.x5_c00410{left:162.725200pt;}
.x8_c00410{left:183.134800pt;}
.x4_c00410{left:192.446267pt;}
.x14_c00410{left:212.343467pt;}
.x15_c00410{left:230.115867pt;}
.x11_c00410{left:234.104533pt;}
.x12_c00410{left:256.304000pt;}
.xd_c00410{left:279.726533pt;}
.x9_c00410{left:315.918933pt;}
.xe_c00410{left:329.517867pt;}
.x6_c00410{left:353.566400pt;}
.x13_c00410{left:370.586267pt;}
.xb_c00410{left:376.786133pt;}
.xf_c00410{left:397.557867pt;}
.x7_c00410{left:403.357733pt;}
.xa_c00410{left:443.623067pt;}
.xc_c00410{left:491.182933pt;}
.x10_c00410{left:527.452800pt;}
.x16_c00410{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b9e039ff99efa8124865fc5.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_f368b1bac9e3f6e8b01a8a44.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;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:ff3_c00411;src:url('chunks/assets/font_b36f569f9240a11a48a6a40b.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00411{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00411{vertical-align:-30.240000px;}
.v3_c00411{vertical-align:-24.480000px;}
.v0_c00411{vertical-align:0.000000px;}
.v1_c00411{vertical-align:30.240000px;}
.ls9_c00411{letter-spacing:0.000000px;}
.ls3_c00411{letter-spacing:0.059640px;}
.ls1_c00411{letter-spacing:0.176640px;}
.lsf_c00411{letter-spacing:0.265680px;}
.ls7_c00411{letter-spacing:0.295200px;}
.ls6_c00411{letter-spacing:0.311640px;}
.ls16_c00411{letter-spacing:0.318816px;}
.ls4_c00411{letter-spacing:0.346440px;}
.ls2_c00411{letter-spacing:0.376440px;}
.lsc_c00411{letter-spacing:0.438171px;}
.ls0_c00411{letter-spacing:0.461040px;}
.lsd_c00411{letter-spacing:0.478224px;}
.lse_c00411{letter-spacing:0.531360px;}
.ls10_c00411{letter-spacing:0.584496px;}
.ls15_c00411{letter-spacing:0.602485px;}
.ls11_c00411{letter-spacing:0.712027px;}
.ls13_c00411{letter-spacing:0.718113px;}
.ls14_c00411{letter-spacing:3.973392px;}
.ls17_c00411{letter-spacing:5.567472px;}
.ls5_c00411{letter-spacing:5.976000px;}
.ls8_c00411{letter-spacing:6.159920px;}
.lsb_c00411{letter-spacing:6.258240px;}
.ls12_c00411{letter-spacing:8.206560px;}
.lsa_c00411{letter-spacing:11.253600px;}
.sc__c00411{text-shadow:none;}
.sc1_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00411{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc1_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00411{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00411{word-spacing:-21.980592px;}
.ws0_c00411{word-spacing:-20.016000px;}
.ws4_c00411{word-spacing:-17.636370px;}
.ws3_c00411{word-spacing:-17.630284px;}
.ws5_c00411{word-spacing:-17.520742px;}
.ws6_c00411{word-spacing:-16.731936px;}
.ws1_c00411{word-spacing:-11.609280px;}
.ws2_c00411{word-spacing:-10.008000px;}
.ws8_c00411{word-spacing:0.000000px;}
._c_c00411{margin-left:-11.013000px;}
._12_c00411{margin-left:-8.619840px;}
._10_c00411{margin-left:-6.789600px;}
._f_c00411{margin-left:-5.785920px;}
._14_c00411{margin-left:-4.605120px;}
._13_c00411{margin-left:-3.483360px;}
._11_c00411{margin-left:-1.239840px;}
._8_c00411{width:1.440000px;}
._5_c00411{width:2.520000px;}
._4_c00411{width:3.871200px;}
._3_c00411{width:4.976400px;}
._2_c00411{width:6.048000px;}
._6_c00411{width:7.488000px;}
._7_c00411{width:8.640000px;}
._b_c00411{width:10.512000px;}
._a_c00411{width:11.592000px;}
._0_c00411{width:13.320000px;}
._9_c00411{width:14.400000px;}
._e_c00411{width:16.056000px;}
._d_c00411{width:18.504000px;}
._1_c00411{width:26.280000px;}
.fc0_c00411{color:rgb(0,0,0);}
.fs3_c00411{font-size:36.000000px;}
.fs2_c00411{font-size:41.760000px;}
.fs4_c00411{font-size:59.040000px;}
.fs6_c00411{font-size:60.000000px;}
.fs5_c00411{font-size:60.857039px;}
.fs0_c00411{font-size:72.000000px;}
.fs1_c00411{font-size:74.215901px;}
.y0_c00411{bottom:0.000000px;}
.y30_c00411{bottom:3.120000px;}
.y2f_c00411{bottom:34.744580px;}
.y1_c00411{bottom:54.000000px;}
.y2e_c00411{bottom:61.605000px;}
.y2d_c00411{bottom:78.885000px;}
.y2c_c00411{bottom:96.525000px;}
.y2b_c00411{bottom:113.805000px;}
.y2a_c00411{bottom:125.325000px;}
.y29_c00411{bottom:125.326800px;}
.y28_c00411{bottom:149.085000px;}
.y27_c00411{bottom:160.245000px;}
.y26_c00411{bottom:160.246800px;}
.y25_c00411{bottom:184.005000px;}
.y24_c00411{bottom:195.525000px;}
.y23_c00411{bottom:212.805000px;}
.y22_c00411{bottom:212.806800px;}
.y21_c00411{bottom:230.445000px;}
.y20_c00411{bottom:236.565000px;}
.y1f_c00411{bottom:263.205000px;}
.y1e_c00411{bottom:493.965000px;}
.y1d_c00411{bottom:529.965000px;}
.y1c_c00411{bottom:550.845000px;}
.y1b_c00411{bottom:571.725000px;}
.y1a_c00411{bottom:592.965000px;}
.y19_c00411{bottom:613.845000px;}
.y18_c00411{bottom:634.725000px;}
.y17_c00411{bottom:655.965000px;}
.y16_c00411{bottom:676.845000px;}
.y15_c00411{bottom:697.725000px;}
.y14_c00411{bottom:718.965000px;}
.y13_c00411{bottom:739.845000px;}
.y12_c00411{bottom:761.085000px;}
.y11_c00411{bottom:781.965000px;}
.yf_c00411{bottom:817.965000px;}
.y10_c00411{bottom:825.525000px;}
.ye_c00411{bottom:838.845000px;}
.yd_c00411{bottom:860.085000px;}
.yc_c00411{bottom:880.965000px;}
.yb_c00411{bottom:901.845000px;}
.ya_c00411{bottom:923.085000px;}
.y9_c00411{bottom:943.965000px;}
.y8_c00411{bottom:964.845000px;}
.y7_c00411{bottom:986.085000px;}
.y6_c00411{bottom:1006.965000px;}
.y5_c00411{bottom:1042.965000px;}
.y4_c00411{bottom:1063.845000px;}
.y3_c00411{bottom:1085.085000px;}
.y2_c00411{bottom:1138.365000px;}
.ha_c00411{height:19.255605px;}
.h7_c00411{height:32.616000px;}
.h6_c00411{height:37.834560px;}
.h8_c00411{height:46.981634px;}
.h9_c00411{height:53.490240px;}
.hb_c00411{height:56.640000px;}
.h4_c00411{height:57.294676px;}
.h3_c00411{height:65.232000px;}
.h5_c00411{height:68.074560px;}
.h2_c00411{height:1201.365000px;}
.h0_c00411{height:1262.835000px;}
.h1_c00411{height:1263.000000px;}
.w3_c00411{width:16.680000px;}
.w2_c00411{width:863.955000px;}
.w0_c00411{width:892.935000px;}
.w1_c00411{width:893.250000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:14.490000px;}
.x2_c00411{left:113.040150px;}
.x18_c00411{left:121.379850px;}
.x17_c00411{left:145.544250px;}
.x3_c00411{left:150.029250px;}
.xd_c00411{left:166.049550px;}
.xe_c00411{left:200.902950px;}
.x4_c00411{left:216.502050px;}
.x12_c00411{left:220.082550px;}
.x19_c00411{left:256.391250px;}
.x1a_c00411{left:264.730500px;}
.x7_c00411{left:276.950700px;}
.x1b_c00411{left:284.724600px;}
.xf_c00411{left:318.909300px;}
.x1c_c00411{left:339.712650px;}
.x8_c00411{left:341.947650px;}
.x15_c00411{left:359.073900px;}
.x10_c00411{left:360.920700px;}
.x1d_c00411{left:378.877050px;}
.x16_c00411{left:380.594250px;}
.x13_c00411{left:458.781750px;}
.x11_c00411{left:465.120000px;}
.x14_c00411{left:480.273900px;}
.x5_c00411{left:502.103400px;}
.x9_c00411{left:515.236800px;}
.x6_c00411{left:527.122950px;}
.xa_c00411{left:554.241900px;}
.xb_c00411{left:619.112550px;}
.xc_c00411{left:692.137200px;}
.x1e_c00411{left:768.254608px;}
@media print{
.v2_c00411{vertical-align:-26.880000pt;}
.v3_c00411{vertical-align:-21.760000pt;}
.v0_c00411{vertical-align:0.000000pt;}
.v1_c00411{vertical-align:26.880000pt;}
.ls9_c00411{letter-spacing:0.000000pt;}
.ls3_c00411{letter-spacing:0.053013pt;}
.ls1_c00411{letter-spacing:0.157013pt;}
.lsf_c00411{letter-spacing:0.236160pt;}
.ls7_c00411{letter-spacing:0.262400pt;}
.ls6_c00411{letter-spacing:0.277013pt;}
.ls16_c00411{letter-spacing:0.283392pt;}
.ls4_c00411{letter-spacing:0.307947pt;}
.ls2_c00411{letter-spacing:0.334613pt;}
.lsc_c00411{letter-spacing:0.389485pt;}
.ls0_c00411{letter-spacing:0.409813pt;}
.lsd_c00411{letter-spacing:0.425088pt;}
.lse_c00411{letter-spacing:0.472320pt;}
.ls10_c00411{letter-spacing:0.519552pt;}
.ls15_c00411{letter-spacing:0.535542pt;}
.ls11_c00411{letter-spacing:0.632913pt;}
.ls13_c00411{letter-spacing:0.638323pt;}
.ls14_c00411{letter-spacing:3.531904pt;}
.ls17_c00411{letter-spacing:4.948864pt;}
.ls5_c00411{letter-spacing:5.312000pt;}
.ls8_c00411{letter-spacing:5.475484pt;}
.lsb_c00411{letter-spacing:5.562880pt;}
.ls12_c00411{letter-spacing:7.294720pt;}
.lsa_c00411{letter-spacing:10.003200pt;}
.ws7_c00411{word-spacing:-19.538304pt;}
.ws0_c00411{word-spacing:-17.792000pt;}
.ws4_c00411{word-spacing:-15.676773pt;}
.ws3_c00411{word-spacing:-15.671364pt;}
.ws5_c00411{word-spacing:-15.573992pt;}
.ws6_c00411{word-spacing:-14.872832pt;}
.ws1_c00411{word-spacing:-10.319360pt;}
.ws2_c00411{word-spacing:-8.896000pt;}
.ws8_c00411{word-spacing:0.000000pt;}
._c_c00411{margin-left:-9.789333pt;}
._12_c00411{margin-left:-7.662080pt;}
._10_c00411{margin-left:-6.035200pt;}
._f_c00411{margin-left:-5.143040pt;}
._14_c00411{margin-left:-4.093440pt;}
._13_c00411{margin-left:-3.096320pt;}
._11_c00411{margin-left:-1.102080pt;}
._8_c00411{width:1.280000pt;}
._5_c00411{width:2.240000pt;}
._4_c00411{width:3.441067pt;}
._3_c00411{width:4.423467pt;}
._2_c00411{width:5.376000pt;}
._6_c00411{width:6.656000pt;}
._7_c00411{width:7.680000pt;}
._b_c00411{width:9.344000pt;}
._a_c00411{width:10.304000pt;}
._0_c00411{width:11.840000pt;}
._9_c00411{width:12.800000pt;}
._e_c00411{width:14.272000pt;}
._d_c00411{width:16.448000pt;}
._1_c00411{width:23.360000pt;}
.fs3_c00411{font-size:32.000000pt;}
.fs2_c00411{font-size:37.120000pt;}
.fs4_c00411{font-size:52.480000pt;}
.fs6_c00411{font-size:53.333333pt;}
.fs5_c00411{font-size:54.095146pt;}
.fs0_c00411{font-size:64.000000pt;}
.fs1_c00411{font-size:65.969690pt;}
.y0_c00411{bottom:0.000000pt;}
.y30_c00411{bottom:2.773333pt;}
.y2f_c00411{bottom:30.884071pt;}
.y1_c00411{bottom:48.000000pt;}
.y2e_c00411{bottom:54.760000pt;}
.y2d_c00411{bottom:70.120000pt;}
.y2c_c00411{bottom:85.800000pt;}
.y2b_c00411{bottom:101.160000pt;}
.y2a_c00411{bottom:111.400000pt;}
.y29_c00411{bottom:111.401600pt;}
.y28_c00411{bottom:132.520000pt;}
.y27_c00411{bottom:142.440000pt;}
.y26_c00411{bottom:142.441600pt;}
.y25_c00411{bottom:163.560000pt;}
.y24_c00411{bottom:173.800000pt;}
.y23_c00411{bottom:189.160000pt;}
.y22_c00411{bottom:189.161600pt;}
.y21_c00411{bottom:204.840000pt;}
.y20_c00411{bottom:210.280000pt;}
.y1f_c00411{bottom:233.960000pt;}
.y1e_c00411{bottom:439.080000pt;}
.y1d_c00411{bottom:471.080000pt;}
.y1c_c00411{bottom:489.640000pt;}
.y1b_c00411{bottom:508.200000pt;}
.y1a_c00411{bottom:527.080000pt;}
.y19_c00411{bottom:545.640000pt;}
.y18_c00411{bottom:564.200000pt;}
.y17_c00411{bottom:583.080000pt;}
.y16_c00411{bottom:601.640000pt;}
.y15_c00411{bottom:620.200000pt;}
.y14_c00411{bottom:639.080000pt;}
.y13_c00411{bottom:657.640000pt;}
.y12_c00411{bottom:676.520000pt;}
.y11_c00411{bottom:695.080000pt;}
.yf_c00411{bottom:727.080000pt;}
.y10_c00411{bottom:733.800000pt;}
.ye_c00411{bottom:745.640000pt;}
.yd_c00411{bottom:764.520000pt;}
.yc_c00411{bottom:783.080000pt;}
.yb_c00411{bottom:801.640000pt;}
.ya_c00411{bottom:820.520000pt;}
.y9_c00411{bottom:839.080000pt;}
.y8_c00411{bottom:857.640000pt;}
.y7_c00411{bottom:876.520000pt;}
.y6_c00411{bottom:895.080000pt;}
.y5_c00411{bottom:927.080000pt;}
.y4_c00411{bottom:945.640000pt;}
.y3_c00411{bottom:964.520000pt;}
.y2_c00411{bottom:1011.880000pt;}
.ha_c00411{height:17.116093pt;}
.h7_c00411{height:28.992000pt;}
.h6_c00411{height:33.630720pt;}
.h8_c00411{height:41.761453pt;}
.h9_c00411{height:47.546880pt;}
.hb_c00411{height:50.346667pt;}
.h4_c00411{height:50.928601pt;}
.h3_c00411{height:57.984000pt;}
.h5_c00411{height:60.510720pt;}
.h2_c00411{height:1067.880000pt;}
.h0_c00411{height:1122.520000pt;}
.h1_c00411{height:1122.666667pt;}
.w3_c00411{width:14.826667pt;}
.w2_c00411{width:767.960000pt;}
.w0_c00411{width:793.720000pt;}
.w1_c00411{width:794.000000pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:12.880000pt;}
.x2_c00411{left:100.480133pt;}
.x18_c00411{left:107.893200pt;}
.x17_c00411{left:129.372667pt;}
.x3_c00411{left:133.359333pt;}
.xd_c00411{left:147.599600pt;}
.xe_c00411{left:178.580400pt;}
.x4_c00411{left:192.446267pt;}
.x12_c00411{left:195.628933pt;}
.x19_c00411{left:227.903333pt;}
.x1a_c00411{left:235.316000pt;}
.x7_c00411{left:246.178400pt;}
.x1b_c00411{left:253.088533pt;}
.xf_c00411{left:283.474933pt;}
.x1c_c00411{left:301.966800pt;}
.x8_c00411{left:303.953467pt;}
.x15_c00411{left:319.176800pt;}
.x10_c00411{left:320.818400pt;}
.x1d_c00411{left:336.779600pt;}
.x16_c00411{left:338.306000pt;}
.x13_c00411{left:407.806000pt;}
.x11_c00411{left:413.440000pt;}
.x14_c00411{left:426.910133pt;}
.x5_c00411{left:446.314133pt;}
.x9_c00411{left:457.988267pt;}
.x6_c00411{left:468.553733pt;}
.xa_c00411{left:492.659467pt;}
.xb_c00411{left:550.322267pt;}
.xc_c00411{left:615.233067pt;}
.x1e_c00411{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22fadd160419484ae576688a.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_6041bb01da5047103d4b75b6.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;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:ff3_c00412;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00412;src:url('chunks/assets/font_c4a48cec784b42db5648f313.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00412{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00412{vertical-align:-24.480000px;}
.v0_c00412{vertical-align:0.000000px;}
.v1_c00412{vertical-align:30.240000px;}
.lsb_c00412{letter-spacing:-0.179568px;}
.lsa_c00412{letter-spacing:0.000000px;}
.lse_c00412{letter-spacing:0.144000px;}
.lsf_c00412{letter-spacing:0.265680px;}
.ls5_c00412{letter-spacing:0.295200px;}
.ls11_c00412{letter-spacing:0.425088px;}
.ls6_c00412{letter-spacing:0.531360px;}
.ls4_c00412{letter-spacing:0.560880px;}
.ls3_c00412{letter-spacing:0.712027px;}
.ls7_c00412{letter-spacing:0.991970px;}
.lsd_c00412{letter-spacing:1.058400px;}
.ls10_c00412{letter-spacing:2.615472px;}
.lsc_c00412{letter-spacing:5.430672px;}
.ls8_c00412{letter-spacing:5.976000px;}
.ls1_c00412{letter-spacing:5.980200px;}
.ls0_c00412{letter-spacing:6.004800px;}
.ls9_c00412{letter-spacing:6.159920px;}
.ls2_c00412{letter-spacing:54.864000px;}
.sc__c00412{text-shadow:none;}
.sc1_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00412{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc1_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00412{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00412{word-spacing:-21.043152px;}
.ws1_c00412{word-spacing:-20.016000px;}
.ws6_c00412{word-spacing:-17.910227px;}
.ws4_c00412{word-spacing:-17.630284px;}
.ws5_c00412{word-spacing:-16.944480px;}
.ws0_c00412{word-spacing:-11.429712px;}
.ws3_c00412{word-spacing:-10.152000px;}
.ws7_c00412{word-spacing:0.000000px;}
._a_c00412{margin-left:-2.295360px;}
._9_c00412{margin-left:-1.179360px;}
._7_c00412{width:1.296000px;}
._3_c00412{width:2.581200px;}
._0_c00412{width:3.816000px;}
._2_c00412{width:4.896000px;}
._4_c00412{width:5.904000px;}
._5_c00412{width:9.792000px;}
._6_c00412{width:12.600000px;}
._1_c00412{width:14.832000px;}
._8_c00412{width:16.488000px;}
.fc0_c00412{color:rgb(0,0,0);}
.fs4_c00412{font-size:36.000000px;}
.fs2_c00412{font-size:41.760000px;}
.fs3_c00412{font-size:56.160000px;}
.fs5_c00412{font-size:59.040000px;}
.fs7_c00412{font-size:60.000000px;}
.fs6_c00412{font-size:60.857039px;}
.fs0_c00412{font-size:72.000000px;}
.fs1_c00412{font-size:74.215901px;}
.y0_c00412{bottom:0.000000px;}
.y2d_c00412{bottom:3.120000px;}
.y2c_c00412{bottom:34.744580px;}
.y1_c00412{bottom:54.000000px;}
.y2b_c00412{bottom:55.482840px;}
.y2a_c00412{bottom:72.766800px;}
.y29_c00412{bottom:90.405000px;}
.y28_c00412{bottom:96.525000px;}
.y27_c00412{bottom:107.685000px;}
.y26_c00412{bottom:113.805000px;}
.y25_c00412{bottom:131.445000px;}
.y24_c00412{bottom:158.085000px;}
.y23_c00412{bottom:183.285000px;}
.y22_c00412{bottom:204.165000px;}
.y21_c00412{bottom:240.165000px;}
.y20_c00412{bottom:276.165000px;}
.y1f_c00412{bottom:297.405000px;}
.y1e_c00412{bottom:318.285000px;}
.y1d_c00412{bottom:339.525000px;}
.y1c_c00412{bottom:375.525000px;}
.y1b_c00412{bottom:411.525000px;}
.y1a_c00412{bottom:447.525000px;}
.y19_c00412{bottom:483.525000px;}
.y18_c00412{bottom:504.405000px;}
.y17_c00412{bottom:525.285000px;}
.y16_c00412{bottom:546.525000px;}
.y15_c00412{bottom:582.525000px;}
.y14_c00412{bottom:603.405000px;}
.y13_c00412{bottom:624.285000px;}
.y12_c00412{bottom:645.525000px;}
.y11_c00412{bottom:666.405000px;}
.y10_c00412{bottom:702.405000px;}
.yf_c00412{bottom:738.405000px;}
.ye_c00412{bottom:774.405000px;}
.yd_c00412{bottom:810.405000px;}
.yc_c00412{bottom:831.285000px;}
.yb_c00412{bottom:852.525000px;}
.ya_c00412{bottom:888.525000px;}
.y9_c00412{bottom:909.405000px;}
.y8_c00412{bottom:930.645000px;}
.y7_c00412{bottom:951.525000px;}
.y6_c00412{bottom:972.405000px;}
.y5_c00412{bottom:1008.405000px;}
.y4_c00412{bottom:1046.925000px;}
.y3_c00412{bottom:1085.085000px;}
.y2_c00412{bottom:1138.365000px;}
.h9_c00412{height:19.255605px;}
.h6_c00412{height:32.616000px;}
.h7_c00412{height:46.981634px;}
.h8_c00412{height:53.490240px;}
.ha_c00412{height:56.640000px;}
.h4_c00412{height:57.294676px;}
.h3_c00412{height:65.232000px;}
.h5_c00412{height:68.074560px;}
.h2_c00412{height:1201.365000px;}
.h0_c00412{height:1262.835000px;}
.h1_c00412{height:1263.000000px;}
.w3_c00412{width:16.680000px;}
.w2_c00412{width:863.955000px;}
.w0_c00412{width:892.935000px;}
.w1_c00412{width:893.250000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:14.490000px;}
.x2_c00412{left:113.040150px;}
.x9_c00412{left:127.217700px;}
.x8_c00412{left:140.037600px;}
.x6_c00412{left:143.774700px;}
.xb_c00412{left:145.895850px;}
.x3_c00412{left:150.029250px;}
.xa_c00412{left:152.192100px;}
.xc_c00412{left:184.205550px;}
.x4_c00412{left:216.502050px;}
.x7_c00412{left:224.809200px;}
.x5_c00412{left:419.718000px;}
.xd_c00412{left:768.254608px;}
@media print{
.v2_c00412{vertical-align:-21.760000pt;}
.v0_c00412{vertical-align:0.000000pt;}
.v1_c00412{vertical-align:26.880000pt;}
.lsb_c00412{letter-spacing:-0.159616pt;}
.lsa_c00412{letter-spacing:0.000000pt;}
.lse_c00412{letter-spacing:0.128000pt;}
.lsf_c00412{letter-spacing:0.236160pt;}
.ls5_c00412{letter-spacing:0.262400pt;}
.ls11_c00412{letter-spacing:0.377856pt;}
.ls6_c00412{letter-spacing:0.472320pt;}
.ls4_c00412{letter-spacing:0.498560pt;}
.ls3_c00412{letter-spacing:0.632913pt;}
.ls7_c00412{letter-spacing:0.881751pt;}
.lsd_c00412{letter-spacing:0.940800pt;}
.ls10_c00412{letter-spacing:2.324864pt;}
.lsc_c00412{letter-spacing:4.827264pt;}
.ls8_c00412{letter-spacing:5.312000pt;}
.ls1_c00412{letter-spacing:5.315733pt;}
.ls0_c00412{letter-spacing:5.337600pt;}
.ls9_c00412{letter-spacing:5.475484pt;}
.ls2_c00412{letter-spacing:48.768000pt;}
.ws2_c00412{word-spacing:-18.705024pt;}
.ws1_c00412{word-spacing:-17.792000pt;}
.ws6_c00412{word-spacing:-15.920201pt;}
.ws4_c00412{word-spacing:-15.671364pt;}
.ws5_c00412{word-spacing:-15.061760pt;}
.ws0_c00412{word-spacing:-10.159744pt;}
.ws3_c00412{word-spacing:-9.024000pt;}
.ws7_c00412{word-spacing:0.000000pt;}
._a_c00412{margin-left:-2.040320pt;}
._9_c00412{margin-left:-1.048320pt;}
._7_c00412{width:1.152000pt;}
._3_c00412{width:2.294400pt;}
._0_c00412{width:3.392000pt;}
._2_c00412{width:4.352000pt;}
._4_c00412{width:5.248000pt;}
._5_c00412{width:8.704000pt;}
._6_c00412{width:11.200000pt;}
._1_c00412{width:13.184000pt;}
._8_c00412{width:14.656000pt;}
.fs4_c00412{font-size:32.000000pt;}
.fs2_c00412{font-size:37.120000pt;}
.fs3_c00412{font-size:49.920000pt;}
.fs5_c00412{font-size:52.480000pt;}
.fs7_c00412{font-size:53.333333pt;}
.fs6_c00412{font-size:54.095146pt;}
.fs0_c00412{font-size:64.000000pt;}
.fs1_c00412{font-size:65.969690pt;}
.y0_c00412{bottom:0.000000pt;}
.y2d_c00412{bottom:2.773333pt;}
.y2c_c00412{bottom:30.884071pt;}
.y1_c00412{bottom:48.000000pt;}
.y2b_c00412{bottom:49.318080pt;}
.y2a_c00412{bottom:64.681600pt;}
.y29_c00412{bottom:80.360000pt;}
.y28_c00412{bottom:85.800000pt;}
.y27_c00412{bottom:95.720000pt;}
.y26_c00412{bottom:101.160000pt;}
.y25_c00412{bottom:116.840000pt;}
.y24_c00412{bottom:140.520000pt;}
.y23_c00412{bottom:162.920000pt;}
.y22_c00412{bottom:181.480000pt;}
.y21_c00412{bottom:213.480000pt;}
.y20_c00412{bottom:245.480000pt;}
.y1f_c00412{bottom:264.360000pt;}
.y1e_c00412{bottom:282.920000pt;}
.y1d_c00412{bottom:301.800000pt;}
.y1c_c00412{bottom:333.800000pt;}
.y1b_c00412{bottom:365.800000pt;}
.y1a_c00412{bottom:397.800000pt;}
.y19_c00412{bottom:429.800000pt;}
.y18_c00412{bottom:448.360000pt;}
.y17_c00412{bottom:466.920000pt;}
.y16_c00412{bottom:485.800000pt;}
.y15_c00412{bottom:517.800000pt;}
.y14_c00412{bottom:536.360000pt;}
.y13_c00412{bottom:554.920000pt;}
.y12_c00412{bottom:573.800000pt;}
.y11_c00412{bottom:592.360000pt;}
.y10_c00412{bottom:624.360000pt;}
.yf_c00412{bottom:656.360000pt;}
.ye_c00412{bottom:688.360000pt;}
.yd_c00412{bottom:720.360000pt;}
.yc_c00412{bottom:738.920000pt;}
.yb_c00412{bottom:757.800000pt;}
.ya_c00412{bottom:789.800000pt;}
.y9_c00412{bottom:808.360000pt;}
.y8_c00412{bottom:827.240000pt;}
.y7_c00412{bottom:845.800000pt;}
.y6_c00412{bottom:864.360000pt;}
.y5_c00412{bottom:896.360000pt;}
.y4_c00412{bottom:930.600000pt;}
.y3_c00412{bottom:964.520000pt;}
.y2_c00412{bottom:1011.880000pt;}
.h9_c00412{height:17.116093pt;}
.h6_c00412{height:28.992000pt;}
.h7_c00412{height:41.761453pt;}
.h8_c00412{height:47.546880pt;}
.ha_c00412{height:50.346667pt;}
.h4_c00412{height:50.928601pt;}
.h3_c00412{height:57.984000pt;}
.h5_c00412{height:60.510720pt;}
.h2_c00412{height:1067.880000pt;}
.h0_c00412{height:1122.520000pt;}
.h1_c00412{height:1122.666667pt;}
.w3_c00412{width:14.826667pt;}
.w2_c00412{width:767.960000pt;}
.w0_c00412{width:793.720000pt;}
.w1_c00412{width:794.000000pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:12.880000pt;}
.x2_c00412{left:100.480133pt;}
.x9_c00412{left:113.082400pt;}
.x8_c00412{left:124.477867pt;}
.x6_c00412{left:127.799733pt;}
.xb_c00412{left:129.685200pt;}
.x3_c00412{left:133.359333pt;}
.xa_c00412{left:135.281867pt;}
.xc_c00412{left:163.738267pt;}
.x4_c00412{left:192.446267pt;}
.x7_c00412{left:199.830400pt;}
.x5_c00412{left:373.082667pt;}
.xd_c00412{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff21acf0e6673785b4931507.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_0acaec47fdba61b30ce63628.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;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:ff3_c00413;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_910304ee2fbe12a5b98c4c78.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00413;src:url('chunks/assets/font_0bd5d4e258be6e165a1365cc.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00413;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff6_c00413{font-family:ff6_c00413;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00413;src:url('chunks/assets/font_d1e49174a1b2f30c491f425b.woff2')format("woff");}.ff7_c00413{font-family:ff7_c00413;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00413{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00413{vertical-align:-30.240000px;}
.v2_c00413{vertical-align:-24.480000px;}
.v0_c00413{vertical-align:0.000000px;}
.v1_c00413{vertical-align:24.480000px;}
.v4_c00413{vertical-align:30.240000px;}
.ls25_c00413{letter-spacing:-0.179568px;}
.ls13_c00413{letter-spacing:0.000000px;}
.ls26_c00413{letter-spacing:0.144000px;}
.ls3_c00413{letter-spacing:0.265680px;}
.ls18_c00413{letter-spacing:0.273857px;}
.ls4_c00413{letter-spacing:0.295200px;}
.ls28_c00413{letter-spacing:0.425088px;}
.ls16_c00413{letter-spacing:0.492942px;}
.ls8_c00413{letter-spacing:0.531360px;}
.ls9_c00413{letter-spacing:0.543168px;}
.lse_c00413{letter-spacing:0.547713px;}
.ls14_c00413{letter-spacing:0.584496px;}
.ls15_c00413{letter-spacing:0.602485px;}
.lsa_c00413{letter-spacing:0.657256px;}
.ls1_c00413{letter-spacing:0.712027px;}
.ls1c_c00413{letter-spacing:0.743904px;}
.ls22_c00413{letter-spacing:0.797040px;}
.ls21_c00413{letter-spacing:1.192608px;}
.ls27_c00413{letter-spacing:1.505520px;}
.ls1a_c00413{letter-spacing:3.135024px;}
.ls20_c00413{letter-spacing:3.489264px;}
.ls29_c00413{letter-spacing:3.878928px;}
.ls17_c00413{letter-spacing:3.920256px;}
.ls2_c00413{letter-spacing:4.040907px;}
.ls1f_c00413{letter-spacing:5.089248px;}
.ls1b_c00413{letter-spacing:5.248656px;}
.ls5_c00413{letter-spacing:5.254560px;}
.ls19_c00413{letter-spacing:5.354928px;}
.ls1e_c00413{letter-spacing:5.384448px;}
.ls24_c00413{letter-spacing:5.430672px;}
.ls10_c00413{letter-spacing:5.431680px;}
.ls7_c00413{letter-spacing:5.467104px;}
.lsd_c00413{letter-spacing:5.490720px;}
.lsb_c00413{letter-spacing:5.975400px;}
.ls0_c00413{letter-spacing:5.976000px;}
.ls12_c00413{letter-spacing:6.159920px;}
.ls1d_c00413{letter-spacing:6.582960px;}
.ls6_c00413{letter-spacing:6.612480px;}
.lsf_c00413{letter-spacing:12.569616px;}
.ls23_c00413{letter-spacing:12.699504px;}
.ls11_c00413{letter-spacing:17.534880px;}
.lsc_c00413{letter-spacing:31.680000px;}
.sc__c00413{text-shadow:none;}
.sc1_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00413{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc1_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00413{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00413{word-spacing:-21.768048px;}
.ws6_c00413{word-spacing:-21.661776px;}
.ws7_c00413{word-spacing:-21.043152px;}
.ws9_c00413{word-spacing:-20.016000px;}
.ws2_c00413{word-spacing:-17.630284px;}
.ws4_c00413{word-spacing:-17.575513px;}
.ws1_c00413{word-spacing:-17.520742px;}
.wsb_c00413{word-spacing:-17.465970px;}
.ws0_c00413{word-spacing:-17.411199px;}
.ws8_c00413{word-spacing:-11.429712px;}
.wsa_c00413{word-spacing:-10.152000px;}
.ws3_c00413{word-spacing:-10.008000px;}
.wsc_c00413{word-spacing:0.000000px;}
._d_c00413{margin-left:-12.516480px;}
._e_c00413{margin-left:-11.276640px;}
._9_c00413{margin-left:-6.848640px;}
._8_c00413{margin-left:-5.844960px;}
._a_c00413{margin-left:-4.841280px;}
._3_c00413{margin-left:-3.712279px;}
._5_c00413{margin-left:-2.567682px;}
._6_c00413{margin-left:-1.180800px;}
._4_c00413{width:1.062720px;}
._2_c00413{width:3.070080px;}
._1_c00413{width:4.608000px;}
._7_c00413{width:6.317280px;}
._b_c00413{width:7.793280px;}
._0_c00413{width:9.432000px;}
._c_c00413{width:11.867040px;}
._12_c00413{width:12.929760px;}
._10_c00413{width:16.776000px;}
._11_c00413{width:25.704000px;}
._f_c00413{width:28.512000px;}
.fc0_c00413{color:rgb(0,0,0);}
.fs4_c00413{font-size:36.000000px;}
.fs6_c00413{font-size:41.760000px;}
.fs5_c00413{font-size:56.160000px;}
.fs2_c00413{font-size:59.040000px;}
.fs7_c00413{font-size:60.000000px;}
.fs3_c00413{font-size:60.857039px;}
.fs0_c00413{font-size:72.000000px;}
.fs1_c00413{font-size:74.215901px;}
.y0_c00413{bottom:0.000000px;}
.y3c_c00413{bottom:3.120000px;}
.y3b_c00413{bottom:34.744580px;}
.y1_c00413{bottom:54.000000px;}
.y39_c00413{bottom:55.483560px;}
.y3a_c00413{bottom:55.485000px;}
.y38_c00413{bottom:73.845000px;}
.y37_c00413{bottom:79.965000px;}
.y35_c00413{bottom:91.841040px;}
.y36_c00413{bottom:91.845000px;}
.y34_c00413{bottom:109.125000px;}
.y33_c00413{bottom:115.245000px;}
.y32_c00413{bottom:141.885000px;}
.y31_c00413{bottom:182.205000px;}
.y30_c00413{bottom:205.245000px;}
.y2f_c00413{bottom:240.885000px;}
.y2d_c00413{bottom:261.765000px;}
.y2e_c00413{bottom:269.325000px;}
.y2c_c00413{bottom:283.005000px;}
.y2b_c00413{bottom:303.885000px;}
.y2a_c00413{bottom:324.765000px;}
.y29_c00413{bottom:346.005000px;}
.y28_c00413{bottom:382.005000px;}
.y27_c00413{bottom:418.005000px;}
.y26_c00413{bottom:446.086440px;}
.y25_c00413{bottom:463.724640px;}
.y24_c00413{bottom:481.362840px;}
.y23_c00413{bottom:498.646800px;}
.y21_c00413{bottom:516.284640px;}
.y22_c00413{bottom:516.285000px;}
.y20_c00413{bottom:533.568600px;}
.y1f_c00413{bottom:551.206800px;}
.y1e_c00413{bottom:568.845000px;}
.y1d_c00413{bottom:593.685000px;}
.y1c_c00413{bottom:593.686800px;}
.y1a_c00413{bottom:611.321040px;}
.y1b_c00413{bottom:611.325000px;}
.y19_c00413{bottom:628.605000px;}
.y18_c00413{bottom:628.609680px;}
.y17_c00413{bottom:653.805000px;}
.y16_c00413{bottom:678.645000px;}
.y15_c00413{bottom:678.649320px;}
.y14_c00413{bottom:697.365000px;}
.y13_c00413{bottom:697.366800px;}
.y12_c00413{bottom:715.005000px;}
.y11_c00413{bottom:715.009680px;}
.y10_c00413{bottom:740.205000px;}
.yf_c00413{bottom:740.206800px;}
.ye_c00413{bottom:757.845000px;}
.yd_c00413{bottom:783.045000px;}
.yc_c00413{bottom:813.645000px;}
.yb_c00413{bottom:841.725000px;}
.ya_c00413{bottom:870.885000px;}
.y9_c00413{bottom:898.965000px;}
.y8_c00413{bottom:934.965000px;}
.y7_c00413{bottom:970.965000px;}
.y6_c00413{bottom:991.845000px;}
.y5_c00413{bottom:1013.085000px;}
.y4_c00413{bottom:1049.085000px;}
.y3_c00413{bottom:1085.085000px;}
.y2_c00413{bottom:1138.365000px;}
.hd_c00413{height:19.255605px;}
.hc_c00413{height:32.616000px;}
.ha_c00413{height:37.834560px;}
.h8_c00413{height:39.350391px;}
.h7_c00413{height:46.981634px;}
.h5_c00413{height:47.988281px;}
.h6_c00413{height:53.490240px;}
.he_c00413{height:56.640000px;}
.h9_c00413{height:57.096000px;}
.h4_c00413{height:57.294676px;}
.h3_c00413{height:65.232000px;}
.hb_c00413{height:68.074560px;}
.h2_c00413{height:1201.365000px;}
.h0_c00413{height:1262.835000px;}
.h1_c00413{height:1263.000000px;}
.w3_c00413{width:16.680000px;}
.w2_c00413{width:863.955000px;}
.w0_c00413{width:892.935000px;}
.w1_c00413{width:893.250000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:14.490000px;}
.x2_c00413{left:113.040150px;}
.x42_c00413{left:137.204250px;}
.x3_c00413{left:150.029250px;}
.x23_c00413{left:158.039100px;}
.x49_c00413{left:160.200000px;}
.x12_c00413{left:163.297800px;}
.x13_c00413{left:167.047800px;}
.x38_c00413{left:177.970050px;}
.x35_c00413{left:199.352850px;}
.x39_c00413{left:202.944600px;}
.x14_c00413{left:206.284800px;}
.x4_c00413{left:216.502050px;}
.x36_c00413{left:231.871950px;}
.x2c_c00413{left:234.097050px;}
.x3e_c00413{left:251.469300px;}
.x2d_c00413{left:259.071450px;}
.x3a_c00413{left:266.584650px;}
.x3f_c00413{left:270.624000px;}
.x7_c00413{left:283.143150px;}
.x4e_c00413{left:284.923050px;}
.x8_c00413{left:288.143850px;}
.x4a_c00413{left:289.773150px;}
.x3b_c00413{left:291.559200px;}
.x24_c00413{left:298.044000px;}
.x15_c00413{left:301.483500px;}
.x25_c00413{left:323.018550px;}
.x4c_c00413{left:328.000500px;}
.x16_c00413{left:334.002600px;}
.x32_c00413{left:337.267800px;}
.x5_c00413{left:340.905450px;}
.x2a_c00413{left:345.102900px;}
.x6_c00413{left:350.913150px;}
.x26_c00413{left:352.177050px;}
.x9_c00413{left:356.146350px;}
.xa_c00413{left:360.646350px;}
.x2e_c00413{left:363.392550px;}
.x4f_c00413{left:366.081300px;}
.x2b_c00413{left:377.622150px;}
.x4d_c00413{left:380.991600px;}
.x2f_c00413{left:388.367100px;}
.x17_c00413{left:394.206300px;}
.x45_c00413{left:407.217750px;}
.x27_c00413{left:410.525400px;}
.x28_c00413{left:414.275400px;}
.x30_c00413{left:420.685200px;}
.x43_c00413{left:424.817850px;}
.x33_c00413{left:426.455250px;}
.x11_c00413{left:431.711400px;}
.x34_c00413{left:434.794500px;}
.x44_c00413{left:437.222850px;}
.x4b_c00413{left:439.209600px;}
.x46_c00413{left:445.233000px;}
.x47_c00413{left:450.237000px;}
.xb_c00413{left:453.650700px;}
.xc_c00413{left:458.150700px;}
.x31_c00413{left:459.849600px;}
.x29_c00413{left:465.949200px;}
.x40_c00413{left:476.144850px;}
.x18_c00413{left:492.601650px;}
.x52_c00413{left:504.159300px;}
.x41_c00413{left:519.478950px;}
.xd_c00413{left:533.155800px;}
.xe_c00413{left:537.655800px;}
.x53_c00413{left:544.178400px;}
.x3c_c00413{left:552.607500px;}
.x54_c00413{left:554.245650px;}
.x19_c00413{left:556.931400px;}
.x50_c00413{left:558.886200px;}
.x1a_c00413{left:560.681400px;}
.x3d_c00413{left:580.927050px;}
.x51_c00413{left:583.860750px;}
.x55_c00413{left:590.904750px;}
.x56_c00413{left:606.419700px;}
.x1b_c00413{left:610.762950px;}
.xf_c00413{left:617.664150px;}
.x1c_c00413{left:620.015250px;}
.x10_c00413{left:622.164150px;}
.x1d_c00413{left:644.989800px;}
.x57_c00413{left:648.928350px;}
.x1e_c00413{left:669.308250px;}
.x48_c00413{left:705.390450px;}
.x37_c00413{left:725.415450px;}
.x1f_c00413{left:728.555100px;}
.x20_c00413{left:732.304950px;}
.x21_c00413{left:746.640000px;}
.x22_c00413{left:750.390000px;}
.x58_c00413{left:768.254608px;}
@media print{
.v3_c00413{vertical-align:-26.880000pt;}
.v2_c00413{vertical-align:-21.760000pt;}
.v0_c00413{vertical-align:0.000000pt;}
.v1_c00413{vertical-align:21.760000pt;}
.v4_c00413{vertical-align:26.880000pt;}
.ls25_c00413{letter-spacing:-0.159616pt;}
.ls13_c00413{letter-spacing:0.000000pt;}
.ls26_c00413{letter-spacing:0.128000pt;}
.ls3_c00413{letter-spacing:0.236160pt;}
.ls18_c00413{letter-spacing:0.243428pt;}
.ls4_c00413{letter-spacing:0.262400pt;}
.ls28_c00413{letter-spacing:0.377856pt;}
.ls16_c00413{letter-spacing:0.438171pt;}
.ls8_c00413{letter-spacing:0.472320pt;}
.ls9_c00413{letter-spacing:0.482816pt;}
.lse_c00413{letter-spacing:0.486856pt;}
.ls14_c00413{letter-spacing:0.519552pt;}
.ls15_c00413{letter-spacing:0.535542pt;}
.lsa_c00413{letter-spacing:0.584228pt;}
.ls1_c00413{letter-spacing:0.632913pt;}
.ls1c_c00413{letter-spacing:0.661248pt;}
.ls22_c00413{letter-spacing:0.708480pt;}
.ls21_c00413{letter-spacing:1.060096pt;}
.ls27_c00413{letter-spacing:1.338240pt;}
.ls1a_c00413{letter-spacing:2.786688pt;}
.ls20_c00413{letter-spacing:3.101568pt;}
.ls29_c00413{letter-spacing:3.447936pt;}
.ls17_c00413{letter-spacing:3.484672pt;}
.ls2_c00413{letter-spacing:3.591918pt;}
.ls1f_c00413{letter-spacing:4.523776pt;}
.ls1b_c00413{letter-spacing:4.665472pt;}
.ls5_c00413{letter-spacing:4.670720pt;}
.ls19_c00413{letter-spacing:4.759936pt;}
.ls1e_c00413{letter-spacing:4.786176pt;}
.ls24_c00413{letter-spacing:4.827264pt;}
.ls10_c00413{letter-spacing:4.828160pt;}
.ls7_c00413{letter-spacing:4.859648pt;}
.lsd_c00413{letter-spacing:4.880640pt;}
.lsb_c00413{letter-spacing:5.311467pt;}
.ls0_c00413{letter-spacing:5.312000pt;}
.ls12_c00413{letter-spacing:5.475484pt;}
.ls1d_c00413{letter-spacing:5.851520pt;}
.ls6_c00413{letter-spacing:5.877760pt;}
.lsf_c00413{letter-spacing:11.172992pt;}
.ls23_c00413{letter-spacing:11.288448pt;}
.ls11_c00413{letter-spacing:15.586560pt;}
.lsc_c00413{letter-spacing:28.160000pt;}
.ws5_c00413{word-spacing:-19.349376pt;}
.ws6_c00413{word-spacing:-19.254912pt;}
.ws7_c00413{word-spacing:-18.705024pt;}
.ws9_c00413{word-spacing:-17.792000pt;}
.ws2_c00413{word-spacing:-15.671364pt;}
.ws4_c00413{word-spacing:-15.622678pt;}
.ws1_c00413{word-spacing:-15.573992pt;}
.wsb_c00413{word-spacing:-15.525307pt;}
.ws0_c00413{word-spacing:-15.476621pt;}
.ws8_c00413{word-spacing:-10.159744pt;}
.wsa_c00413{word-spacing:-9.024000pt;}
.ws3_c00413{word-spacing:-8.896000pt;}
.wsc_c00413{word-spacing:0.000000pt;}
._d_c00413{margin-left:-11.125760pt;}
._e_c00413{margin-left:-10.023680pt;}
._9_c00413{margin-left:-6.087680pt;}
._8_c00413{margin-left:-5.195520pt;}
._a_c00413{margin-left:-4.303360pt;}
._3_c00413{margin-left:-3.299804pt;}
._5_c00413{margin-left:-2.282384pt;}
._6_c00413{margin-left:-1.049600pt;}
._4_c00413{width:0.944640pt;}
._2_c00413{width:2.728960pt;}
._1_c00413{width:4.096000pt;}
._7_c00413{width:5.615360pt;}
._b_c00413{width:6.927360pt;}
._0_c00413{width:8.384000pt;}
._c_c00413{width:10.548480pt;}
._12_c00413{width:11.493120pt;}
._10_c00413{width:14.912000pt;}
._11_c00413{width:22.848000pt;}
._f_c00413{width:25.344000pt;}
.fs4_c00413{font-size:32.000000pt;}
.fs6_c00413{font-size:37.120000pt;}
.fs5_c00413{font-size:49.920000pt;}
.fs2_c00413{font-size:52.480000pt;}
.fs7_c00413{font-size:53.333333pt;}
.fs3_c00413{font-size:54.095146pt;}
.fs0_c00413{font-size:64.000000pt;}
.fs1_c00413{font-size:65.969690pt;}
.y0_c00413{bottom:0.000000pt;}
.y3c_c00413{bottom:2.773333pt;}
.y3b_c00413{bottom:30.884071pt;}
.y1_c00413{bottom:48.000000pt;}
.y39_c00413{bottom:49.318720pt;}
.y3a_c00413{bottom:49.320000pt;}
.y38_c00413{bottom:65.640000pt;}
.y37_c00413{bottom:71.080000pt;}
.y35_c00413{bottom:81.636480pt;}
.y36_c00413{bottom:81.640000pt;}
.y34_c00413{bottom:97.000000pt;}
.y33_c00413{bottom:102.440000pt;}
.y32_c00413{bottom:126.120000pt;}
.y31_c00413{bottom:161.960000pt;}
.y30_c00413{bottom:182.440000pt;}
.y2f_c00413{bottom:214.120000pt;}
.y2d_c00413{bottom:232.680000pt;}
.y2e_c00413{bottom:239.400000pt;}
.y2c_c00413{bottom:251.560000pt;}
.y2b_c00413{bottom:270.120000pt;}
.y2a_c00413{bottom:288.680000pt;}
.y29_c00413{bottom:307.560000pt;}
.y28_c00413{bottom:339.560000pt;}
.y27_c00413{bottom:371.560000pt;}
.y26_c00413{bottom:396.521280pt;}
.y25_c00413{bottom:412.199680pt;}
.y24_c00413{bottom:427.878080pt;}
.y23_c00413{bottom:443.241600pt;}
.y21_c00413{bottom:458.919680pt;}
.y22_c00413{bottom:458.920000pt;}
.y20_c00413{bottom:474.283200pt;}
.y1f_c00413{bottom:489.961600pt;}
.y1e_c00413{bottom:505.640000pt;}
.y1d_c00413{bottom:527.720000pt;}
.y1c_c00413{bottom:527.721600pt;}
.y1a_c00413{bottom:543.396480pt;}
.y1b_c00413{bottom:543.400000pt;}
.y19_c00413{bottom:558.760000pt;}
.y18_c00413{bottom:558.764160pt;}
.y17_c00413{bottom:581.160000pt;}
.y16_c00413{bottom:603.240000pt;}
.y15_c00413{bottom:603.243840pt;}
.y14_c00413{bottom:619.880000pt;}
.y13_c00413{bottom:619.881600pt;}
.y12_c00413{bottom:635.560000pt;}
.y11_c00413{bottom:635.564160pt;}
.y10_c00413{bottom:657.960000pt;}
.yf_c00413{bottom:657.961600pt;}
.ye_c00413{bottom:673.640000pt;}
.yd_c00413{bottom:696.040000pt;}
.yc_c00413{bottom:723.240000pt;}
.yb_c00413{bottom:748.200000pt;}
.ya_c00413{bottom:774.120000pt;}
.y9_c00413{bottom:799.080000pt;}
.y8_c00413{bottom:831.080000pt;}
.y7_c00413{bottom:863.080000pt;}
.y6_c00413{bottom:881.640000pt;}
.y5_c00413{bottom:900.520000pt;}
.y4_c00413{bottom:932.520000pt;}
.y3_c00413{bottom:964.520000pt;}
.y2_c00413{bottom:1011.880000pt;}
.hd_c00413{height:17.116093pt;}
.hc_c00413{height:28.992000pt;}
.ha_c00413{height:33.630720pt;}
.h8_c00413{height:34.978125pt;}
.h7_c00413{height:41.761453pt;}
.h5_c00413{height:42.656250pt;}
.h6_c00413{height:47.546880pt;}
.he_c00413{height:50.346667pt;}
.h9_c00413{height:50.752000pt;}
.h4_c00413{height:50.928601pt;}
.h3_c00413{height:57.984000pt;}
.hb_c00413{height:60.510720pt;}
.h2_c00413{height:1067.880000pt;}
.h0_c00413{height:1122.520000pt;}
.h1_c00413{height:1122.666667pt;}
.w3_c00413{width:14.826667pt;}
.w2_c00413{width:767.960000pt;}
.w0_c00413{width:793.720000pt;}
.w1_c00413{width:794.000000pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:12.880000pt;}
.x2_c00413{left:100.480133pt;}
.x42_c00413{left:121.959333pt;}
.x3_c00413{left:133.359333pt;}
.x23_c00413{left:140.479200pt;}
.x49_c00413{left:142.400000pt;}
.x12_c00413{left:145.153600pt;}
.x13_c00413{left:148.486933pt;}
.x38_c00413{left:158.195600pt;}
.x35_c00413{left:177.202533pt;}
.x39_c00413{left:180.395200pt;}
.x14_c00413{left:183.364267pt;}
.x4_c00413{left:192.446267pt;}
.x36_c00413{left:206.108400pt;}
.x2c_c00413{left:208.086267pt;}
.x3e_c00413{left:223.528267pt;}
.x2d_c00413{left:230.285733pt;}
.x3a_c00413{left:236.964133pt;}
.x3f_c00413{left:240.554667pt;}
.x7_c00413{left:251.682800pt;}
.x4e_c00413{left:253.264933pt;}
.x8_c00413{left:256.127867pt;}
.x4a_c00413{left:257.576133pt;}
.x3b_c00413{left:259.163733pt;}
.x24_c00413{left:264.928000pt;}
.x15_c00413{left:267.985333pt;}
.x25_c00413{left:287.127600pt;}
.x4c_c00413{left:291.556000pt;}
.x16_c00413{left:296.891200pt;}
.x32_c00413{left:299.793600pt;}
.x5_c00413{left:303.027067pt;}
.x2a_c00413{left:306.758133pt;}
.x6_c00413{left:311.922800pt;}
.x26_c00413{left:313.046267pt;}
.x9_c00413{left:316.574533pt;}
.xa_c00413{left:320.574533pt;}
.x2e_c00413{left:323.015600pt;}
.x4f_c00413{left:325.405600pt;}
.x2b_c00413{left:335.664133pt;}
.x4d_c00413{left:338.659200pt;}
.x2f_c00413{left:345.215200pt;}
.x17_c00413{left:350.405600pt;}
.x45_c00413{left:361.971333pt;}
.x27_c00413{left:364.911467pt;}
.x28_c00413{left:368.244800pt;}
.x30_c00413{left:373.942400pt;}
.x43_c00413{left:377.615867pt;}
.x33_c00413{left:379.071333pt;}
.x11_c00413{left:383.743467pt;}
.x34_c00413{left:386.484000pt;}
.x44_c00413{left:388.642533pt;}
.x4b_c00413{left:390.408533pt;}
.x46_c00413{left:395.762667pt;}
.x47_c00413{left:400.210667pt;}
.xb_c00413{left:403.245067pt;}
.xc_c00413{left:407.245067pt;}
.x31_c00413{left:408.755200pt;}
.x29_c00413{left:414.177067pt;}
.x40_c00413{left:423.239867pt;}
.x18_c00413{left:437.868133pt;}
.x52_c00413{left:448.141600pt;}
.x41_c00413{left:461.759067pt;}
.xd_c00413{left:473.916267pt;}
.xe_c00413{left:477.916267pt;}
.x53_c00413{left:483.714133pt;}
.x3c_c00413{left:491.206667pt;}
.x54_c00413{left:492.662800pt;}
.x19_c00413{left:495.050133pt;}
.x50_c00413{left:496.787733pt;}
.x1a_c00413{left:498.383467pt;}
.x3d_c00413{left:516.379600pt;}
.x51_c00413{left:518.987333pt;}
.x55_c00413{left:525.248667pt;}
.x56_c00413{left:539.039733pt;}
.x1b_c00413{left:542.900400pt;}
.xf_c00413{left:549.034800pt;}
.x1c_c00413{left:551.124667pt;}
.x10_c00413{left:553.034800pt;}
.x1d_c00413{left:573.324267pt;}
.x57_c00413{left:576.825200pt;}
.x1e_c00413{left:594.940667pt;}
.x48_c00413{left:627.013733pt;}
.x37_c00413{left:644.813733pt;}
.x1f_c00413{left:647.604533pt;}
.x20_c00413{left:650.937733pt;}
.x21_c00413{left:663.680000pt;}
.x22_c00413{left:667.013333pt;}
.x58_c00413{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0886a87549a4e0e5a7d150db.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_bb727542830e5981bf2d4be3.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;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:ff3_c00414;src:url('chunks/assets/font_77a95a185194347ca102534a.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00414;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_bceaae32b9534d3fbcdb8bbb.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00414{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00414{vertical-align:-24.480000px;}
.v0_c00414{vertical-align:0.000000px;}
.v1_c00414{vertical-align:30.240000px;}
.ls11_c00414{letter-spacing:-0.179568px;}
.ls10_c00414{letter-spacing:0.000000px;}
.ls1b_c00414{letter-spacing:0.144000px;}
.ls1a_c00414{letter-spacing:0.156816px;}
.ls7_c00414{letter-spacing:0.236160px;}
.ls16_c00414{letter-spacing:0.242352px;}
.ls17_c00414{letter-spacing:0.265680px;}
.ls22_c00414{letter-spacing:0.273857px;}
.ls4_c00414{letter-spacing:0.294624px;}
.ls6_c00414{letter-spacing:0.295200px;}
.ls19_c00414{letter-spacing:0.318384px;}
.ls5_c00414{letter-spacing:0.318480px;}
.ls13_c00414{letter-spacing:0.318816px;}
.ls18_c00414{letter-spacing:0.346896px;}
.ls2b_c00414{letter-spacing:0.371952px;}
.lsd_c00414{letter-spacing:0.413280px;}
.ls1f_c00414{letter-spacing:0.425088px;}
.ls28_c00414{letter-spacing:0.438171px;}
.ls1e_c00414{letter-spacing:0.492942px;}
.lsb_c00414{letter-spacing:0.513648px;}
.ls8_c00414{letter-spacing:0.531360px;}
.ls2c_c00414{letter-spacing:0.547713px;}
.ls2e_c00414{letter-spacing:0.584496px;}
.ls3_c00414{letter-spacing:0.585360px;}
.ls26_c00414{letter-spacing:0.637632px;}
.ls2a_c00414{letter-spacing:0.696672px;}
.ls9_c00414{letter-spacing:0.712027px;}
.ls20_c00414{letter-spacing:0.743904px;}
.lsa_c00414{letter-spacing:0.973713px;}
.ls25_c00414{letter-spacing:0.991970px;}
.ls1c_c00414{letter-spacing:2.828016px;}
.ls24_c00414{letter-spacing:2.869344px;}
.ls23_c00414{letter-spacing:2.928384px;}
.ls1d_c00414{letter-spacing:3.323952px;}
.ls27_c00414{letter-spacing:4.652352px;}
.ls21_c00414{letter-spacing:5.248656px;}
.ls12_c00414{letter-spacing:5.335200px;}
.lsc_c00414{letter-spacing:5.490720px;}
.ls29_c00414{letter-spacing:5.514336px;}
.ls14_c00414{letter-spacing:5.567472px;}
.ls1_c00414{letter-spacing:5.958600px;}
.lse_c00414{letter-spacing:5.976000px;}
.lsf_c00414{letter-spacing:6.159920px;}
.ls2d_c00414{letter-spacing:6.394032px;}
.ls0_c00414{letter-spacing:7.128000px;}
.ls15_c00414{letter-spacing:14.045616px;}
.ls2_c00414{letter-spacing:14.051520px;}
.sc__c00414{text-shadow:none;}
.sc1_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00414{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc1_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00414{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00414{word-spacing:-21.980592px;}
.wsb_c00414{word-spacing:-21.661776px;}
.ws2_c00414{word-spacing:-20.947680px;}
.ws1_c00414{word-spacing:-20.016000px;}
.wsa_c00414{word-spacing:-17.630284px;}
.wsd_c00414{word-spacing:-17.356428px;}
.wsc_c00414{word-spacing:-17.192114px;}
.ws5_c00414{word-spacing:-16.944480px;}
.ws8_c00414{word-spacing:-13.557456px;}
.ws6_c00414{word-spacing:-13.528944px;}
.ws7_c00414{word-spacing:-13.505184px;}
.ws4_c00414{word-spacing:-13.452912px;}
.ws0_c00414{word-spacing:-11.429712px;}
.ws9_c00414{word-spacing:-10.152000px;}
.wse_c00414{word-spacing:0.000000px;}
._9_c00414{margin-left:-13.203072px;}
._10_c00414{margin-left:-6.501600px;}
._e_c00414{margin-left:-5.188320px;}
._c_c00414{margin-left:-3.483360px;}
._a_c00414{margin-left:-2.413440px;}
._b_c00414{margin-left:-1.296000px;}
._6_c00414{width:1.368000px;}
._2_c00414{width:2.808000px;}
._1_c00414{width:3.816000px;}
._f_c00414{width:5.958144px;}
._5_c00414{width:7.128000px;}
._d_c00414{width:8.659008px;}
._0_c00414{width:9.720000px;}
._7_c00414{width:11.160000px;}
._4_c00414{width:12.384000px;}
._8_c00414{width:13.569120px;}
._3_c00414{width:21.096000px;}
.fc0_c00414{color:rgb(0,0,0);}
.fs7_c00414{font-size:36.000000px;}
.fs2_c00414{font-size:41.760000px;}
.fs6_c00414{font-size:47.520000px;}
.fs3_c00414{font-size:56.160000px;}
.fs4_c00414{font-size:59.040000px;}
.fs8_c00414{font-size:60.000000px;}
.fs5_c00414{font-size:60.857039px;}
.fs0_c00414{font-size:72.000000px;}
.fs1_c00414{font-size:74.215901px;}
.y0_c00414{bottom:0.000000px;}
.y37_c00414{bottom:3.120000px;}
.y36_c00414{bottom:34.744580px;}
.y1_c00414{bottom:54.000000px;}
.y35_c00414{bottom:61.605000px;}
.y34_c00414{bottom:72.765000px;}
.y33_c00414{bottom:78.885000px;}
.y31_c00414{bottom:90.402840px;}
.y32_c00414{bottom:90.405000px;}
.y30_c00414{bottom:107.686800px;}
.y2f_c00414{bottom:125.325000px;}
.y2e_c00414{bottom:125.326800px;}
.y2d_c00414{bottom:142.965000px;}
.y2c_c00414{bottom:149.085000px;}
.y2b_c00414{bottom:160.245000px;}
.y2a_c00414{bottom:177.885000px;}
.y29_c00414{bottom:184.005000px;}
.y28_c00414{bottom:195.525000px;}
.y27_c00414{bottom:195.525360px;}
.y26_c00414{bottom:212.809320px;}
.y25_c00414{bottom:231.525000px;}
.y24_c00414{bottom:231.528600px;}
.y23_c00414{bottom:249.166800px;}
.y22_c00414{bottom:272.925000px;}
.y21_c00414{bottom:284.085000px;}
.y20_c00414{bottom:290.205000px;}
.y1f_c00414{bottom:301.725000px;}
.y1e_c00414{bottom:301.726800px;}
.y1d_c00414{bottom:319.365000px;}
.y1c_c00414{bottom:325.485000px;}
.y1b_c00414{bottom:336.645000px;}
.y1a_c00414{bottom:360.405000px;}
.y19_c00414{bottom:371.919600px;}
.y18_c00414{bottom:389.205000px;}
.y17_c00414{bottom:421.965000px;}
.y16_c00414{bottom:634.725000px;}
.y15_c00414{bottom:670.725000px;}
.y14_c00414{bottom:691.605000px;}
.y13_c00414{bottom:712.485000px;}
.y12_c00414{bottom:748.485000px;}
.y11_c00414{bottom:784.845000px;}
.y10_c00414{bottom:820.845000px;}
.yf_c00414{bottom:841.725000px;}
.yd_c00414{bottom:877.724850px;}
.ye_c00414{bottom:877.725000px;}
.yc_c00414{bottom:900.764850px;}
.yb_c00414{bottom:900.765000px;}
.ya_c00414{bottom:921.285000px;}
.y9_c00414{bottom:942.165000px;}
.y8_c00414{bottom:963.405000px;}
.y7_c00414{bottom:999.405000px;}
.y6_c00414{bottom:1020.285000px;}
.y5_c00414{bottom:1043.325000px;}
.y4_c00414{bottom:1063.845000px;}
.y3_c00414{bottom:1085.085000px;}
.y2_c00414{bottom:1138.365000px;}
.ha_c00414{height:19.255605px;}
.h9_c00414{height:32.616000px;}
.h7_c00414{height:46.981634px;}
.h6_c00414{height:53.490240px;}
.h8_c00414{height:53.511840px;}
.hb_c00414{height:56.640000px;}
.h4_c00414{height:57.294676px;}
.h3_c00414{height:65.232000px;}
.h5_c00414{height:68.074560px;}
.h2_c00414{height:1201.365000px;}
.h0_c00414{height:1262.835000px;}
.h1_c00414{height:1263.000000px;}
.w3_c00414{width:16.680000px;}
.w2_c00414{width:863.955000px;}
.w0_c00414{width:892.935000px;}
.w1_c00414{width:893.250000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:14.490000px;}
.x2_c00414{left:113.040150px;}
.x2b_c00414{left:127.217700px;}
.x14_c00414{left:134.559900px;}
.x3_c00414{left:150.029250px;}
.x2c_c00414{left:151.381650px;}
.x18_c00414{left:158.039400px;}
.x9_c00414{left:215.214450px;}
.x4_c00414{left:216.502050px;}
.x1f_c00414{left:255.011400px;}
.x15_c00414{left:259.092000px;}
.xa_c00414{left:263.237850px;}
.x7_c00414{left:277.595250px;}
.x16_c00414{left:279.841950px;}
.x29_c00414{left:303.848100px;}
.x17_c00414{left:307.450950px;}
.x2a_c00414{left:323.842200px;}
.x8_c00414{left:342.610500px;}
.x19_c00414{left:344.210100px;}
.x20_c00414{left:347.799300px;}
.x1d_c00414{left:355.540200px;}
.xb_c00414{left:359.548800px;}
.xf_c00414{left:379.690800px;}
.x23_c00414{left:388.189800px;}
.x1e_c00414{left:403.883400px;}
.xc_c00414{left:419.560200px;}
.x5_c00414{left:438.717300px;}
.x11_c00414{left:446.690550px;}
.x24_c00414{left:454.848300px;}
.x1a_c00414{left:457.501500px;}
.x25_c00414{left:462.908100px;}
.x12_c00414{left:468.138750px;}
.x6_c00414{left:489.710850px;}
.x26_c00414{left:495.427350px;}
.x1b_c00414{left:501.422550px;}
.x10_c00414{left:510.802800px;}
.x21_c00414{left:517.217700px;}
.x1c_c00414{left:530.566800px;}
.xd_c00414{left:535.980150px;}
.x27_c00414{left:564.088950px;}
.xe_c00414{left:600.995250px;}
.x13_c00414{left:603.154500px;}
.x28_c00414{left:630.747450px;}
.x22_c00414{left:734.565750px;}
.x2d_c00414{left:768.254608px;}
@media print{
.v2_c00414{vertical-align:-21.760000pt;}
.v0_c00414{vertical-align:0.000000pt;}
.v1_c00414{vertical-align:26.880000pt;}
.ls11_c00414{letter-spacing:-0.159616pt;}
.ls10_c00414{letter-spacing:0.000000pt;}
.ls1b_c00414{letter-spacing:0.128000pt;}
.ls1a_c00414{letter-spacing:0.139392pt;}
.ls7_c00414{letter-spacing:0.209920pt;}
.ls16_c00414{letter-spacing:0.215424pt;}
.ls17_c00414{letter-spacing:0.236160pt;}
.ls22_c00414{letter-spacing:0.243428pt;}
.ls4_c00414{letter-spacing:0.261888pt;}
.ls6_c00414{letter-spacing:0.262400pt;}
.ls19_c00414{letter-spacing:0.283008pt;}
.ls5_c00414{letter-spacing:0.283093pt;}
.ls13_c00414{letter-spacing:0.283392pt;}
.ls18_c00414{letter-spacing:0.308352pt;}
.ls2b_c00414{letter-spacing:0.330624pt;}
.lsd_c00414{letter-spacing:0.367360pt;}
.ls1f_c00414{letter-spacing:0.377856pt;}
.ls28_c00414{letter-spacing:0.389485pt;}
.ls1e_c00414{letter-spacing:0.438171pt;}
.lsb_c00414{letter-spacing:0.456576pt;}
.ls8_c00414{letter-spacing:0.472320pt;}
.ls2c_c00414{letter-spacing:0.486856pt;}
.ls2e_c00414{letter-spacing:0.519552pt;}
.ls3_c00414{letter-spacing:0.520320pt;}
.ls26_c00414{letter-spacing:0.566784pt;}
.ls2a_c00414{letter-spacing:0.619264pt;}
.ls9_c00414{letter-spacing:0.632913pt;}
.ls20_c00414{letter-spacing:0.661248pt;}
.lsa_c00414{letter-spacing:0.865522pt;}
.ls25_c00414{letter-spacing:0.881751pt;}
.ls1c_c00414{letter-spacing:2.513792pt;}
.ls24_c00414{letter-spacing:2.550528pt;}
.ls23_c00414{letter-spacing:2.603008pt;}
.ls1d_c00414{letter-spacing:2.954624pt;}
.ls27_c00414{letter-spacing:4.135424pt;}
.ls21_c00414{letter-spacing:4.665472pt;}
.ls12_c00414{letter-spacing:4.742400pt;}
.lsc_c00414{letter-spacing:4.880640pt;}
.ls29_c00414{letter-spacing:4.901632pt;}
.ls14_c00414{letter-spacing:4.948864pt;}
.ls1_c00414{letter-spacing:5.296533pt;}
.lse_c00414{letter-spacing:5.312000pt;}
.lsf_c00414{letter-spacing:5.475484pt;}
.ls2d_c00414{letter-spacing:5.683584pt;}
.ls0_c00414{letter-spacing:6.336000pt;}
.ls15_c00414{letter-spacing:12.484992pt;}
.ls2_c00414{letter-spacing:12.490240pt;}
.ws3_c00414{word-spacing:-19.538304pt;}
.wsb_c00414{word-spacing:-19.254912pt;}
.ws2_c00414{word-spacing:-18.620160pt;}
.ws1_c00414{word-spacing:-17.792000pt;}
.wsa_c00414{word-spacing:-15.671364pt;}
.wsd_c00414{word-spacing:-15.427936pt;}
.wsc_c00414{word-spacing:-15.281879pt;}
.ws5_c00414{word-spacing:-15.061760pt;}
.ws8_c00414{word-spacing:-12.051072pt;}
.ws6_c00414{word-spacing:-12.025728pt;}
.ws7_c00414{word-spacing:-12.004608pt;}
.ws4_c00414{word-spacing:-11.958144pt;}
.ws0_c00414{word-spacing:-10.159744pt;}
.ws9_c00414{word-spacing:-9.024000pt;}
.wse_c00414{word-spacing:0.000000pt;}
._9_c00414{margin-left:-11.736064pt;}
._10_c00414{margin-left:-5.779200pt;}
._e_c00414{margin-left:-4.611840pt;}
._c_c00414{margin-left:-3.096320pt;}
._a_c00414{margin-left:-2.145280pt;}
._b_c00414{margin-left:-1.152000pt;}
._6_c00414{width:1.216000pt;}
._2_c00414{width:2.496000pt;}
._1_c00414{width:3.392000pt;}
._f_c00414{width:5.296128pt;}
._5_c00414{width:6.336000pt;}
._d_c00414{width:7.696896pt;}
._0_c00414{width:8.640000pt;}
._7_c00414{width:9.920000pt;}
._4_c00414{width:11.008000pt;}
._8_c00414{width:12.061440pt;}
._3_c00414{width:18.752000pt;}
.fs7_c00414{font-size:32.000000pt;}
.fs2_c00414{font-size:37.120000pt;}
.fs6_c00414{font-size:42.240000pt;}
.fs3_c00414{font-size:49.920000pt;}
.fs4_c00414{font-size:52.480000pt;}
.fs8_c00414{font-size:53.333333pt;}
.fs5_c00414{font-size:54.095146pt;}
.fs0_c00414{font-size:64.000000pt;}
.fs1_c00414{font-size:65.969690pt;}
.y0_c00414{bottom:0.000000pt;}
.y37_c00414{bottom:2.773333pt;}
.y36_c00414{bottom:30.884071pt;}
.y1_c00414{bottom:48.000000pt;}
.y35_c00414{bottom:54.760000pt;}
.y34_c00414{bottom:64.680000pt;}
.y33_c00414{bottom:70.120000pt;}
.y31_c00414{bottom:80.358080pt;}
.y32_c00414{bottom:80.360000pt;}
.y30_c00414{bottom:95.721600pt;}
.y2f_c00414{bottom:111.400000pt;}
.y2e_c00414{bottom:111.401600pt;}
.y2d_c00414{bottom:127.080000pt;}
.y2c_c00414{bottom:132.520000pt;}
.y2b_c00414{bottom:142.440000pt;}
.y2a_c00414{bottom:158.120000pt;}
.y29_c00414{bottom:163.560000pt;}
.y28_c00414{bottom:173.800000pt;}
.y27_c00414{bottom:173.800320pt;}
.y26_c00414{bottom:189.163840pt;}
.y25_c00414{bottom:205.800000pt;}
.y24_c00414{bottom:205.803200pt;}
.y23_c00414{bottom:221.481600pt;}
.y22_c00414{bottom:242.600000pt;}
.y21_c00414{bottom:252.520000pt;}
.y20_c00414{bottom:257.960000pt;}
.y1f_c00414{bottom:268.200000pt;}
.y1e_c00414{bottom:268.201600pt;}
.y1d_c00414{bottom:283.880000pt;}
.y1c_c00414{bottom:289.320000pt;}
.y1b_c00414{bottom:299.240000pt;}
.y1a_c00414{bottom:320.360000pt;}
.y19_c00414{bottom:330.595200pt;}
.y18_c00414{bottom:345.960000pt;}
.y17_c00414{bottom:375.080000pt;}
.y16_c00414{bottom:564.200000pt;}
.y15_c00414{bottom:596.200000pt;}
.y14_c00414{bottom:614.760000pt;}
.y13_c00414{bottom:633.320000pt;}
.y12_c00414{bottom:665.320000pt;}
.y11_c00414{bottom:697.640000pt;}
.y10_c00414{bottom:729.640000pt;}
.yf_c00414{bottom:748.200000pt;}
.yd_c00414{bottom:780.199867pt;}
.ye_c00414{bottom:780.200000pt;}
.yc_c00414{bottom:800.679867pt;}
.yb_c00414{bottom:800.680000pt;}
.ya_c00414{bottom:818.920000pt;}
.y9_c00414{bottom:837.480000pt;}
.y8_c00414{bottom:856.360000pt;}
.y7_c00414{bottom:888.360000pt;}
.y6_c00414{bottom:906.920000pt;}
.y5_c00414{bottom:927.400000pt;}
.y4_c00414{bottom:945.640000pt;}
.y3_c00414{bottom:964.520000pt;}
.y2_c00414{bottom:1011.880000pt;}
.ha_c00414{height:17.116093pt;}
.h9_c00414{height:28.992000pt;}
.h7_c00414{height:41.761453pt;}
.h6_c00414{height:47.546880pt;}
.h8_c00414{height:47.566080pt;}
.hb_c00414{height:50.346667pt;}
.h4_c00414{height:50.928601pt;}
.h3_c00414{height:57.984000pt;}
.h5_c00414{height:60.510720pt;}
.h2_c00414{height:1067.880000pt;}
.h0_c00414{height:1122.520000pt;}
.h1_c00414{height:1122.666667pt;}
.w3_c00414{width:14.826667pt;}
.w2_c00414{width:767.960000pt;}
.w0_c00414{width:793.720000pt;}
.w1_c00414{width:794.000000pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:12.880000pt;}
.x2_c00414{left:100.480133pt;}
.x2b_c00414{left:113.082400pt;}
.x14_c00414{left:119.608800pt;}
.x3_c00414{left:133.359333pt;}
.x2c_c00414{left:134.561467pt;}
.x18_c00414{left:140.479467pt;}
.x9_c00414{left:191.301733pt;}
.x4_c00414{left:192.446267pt;}
.x1f_c00414{left:226.676800pt;}
.x15_c00414{left:230.304000pt;}
.xa_c00414{left:233.989200pt;}
.x7_c00414{left:246.751333pt;}
.x16_c00414{left:248.748400pt;}
.x29_c00414{left:270.087200pt;}
.x17_c00414{left:273.289733pt;}
.x2a_c00414{left:287.859733pt;}
.x8_c00414{left:304.542667pt;}
.x19_c00414{left:305.964533pt;}
.x20_c00414{left:309.154933pt;}
.x1d_c00414{left:316.035733pt;}
.xb_c00414{left:319.598933pt;}
.xf_c00414{left:337.502933pt;}
.x23_c00414{left:345.057600pt;}
.x1e_c00414{left:359.007467pt;}
.xc_c00414{left:372.942400pt;}
.x5_c00414{left:389.970933pt;}
.x11_c00414{left:397.058267pt;}
.x24_c00414{left:404.309600pt;}
.x1a_c00414{left:406.668000pt;}
.x25_c00414{left:411.473867pt;}
.x12_c00414{left:416.123333pt;}
.x6_c00414{left:435.298533pt;}
.x26_c00414{left:440.379867pt;}
.x1b_c00414{left:445.708933pt;}
.x10_c00414{left:454.046933pt;}
.x21_c00414{left:459.749067pt;}
.x1c_c00414{left:471.614933pt;}
.xd_c00414{left:476.426800pt;}
.x27_c00414{left:501.412400pt;}
.xe_c00414{left:534.218000pt;}
.x13_c00414{left:536.137333pt;}
.x28_c00414{left:560.664400pt;}
.x22_c00414{left:652.947333pt;}
.x2d_c00414{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22431b24176a3223b7079dc5.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;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_c00415;src:url('chunks/assets/font_405dc644df6bb271b8544d76.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_016e208646d00d8f74e92577.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00415{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls2_c00415{letter-spacing:0.000000px;}
.ls3_c00415{letter-spacing:0.399600px;}
.ls0_c00415{letter-spacing:5.976000px;}
.ls1_c00415{letter-spacing:6.159920px;}
.sc__c00415{text-shadow:none;}
.sc1_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00415{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc1_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00415{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00415{word-spacing:0.000000px;}
._0_c00415{margin-left:-1.118880px;}
.fc0_c00415{color:rgb(0,0,0);}
.fs2_c00415{font-size:53.280000px;}
.fs3_c00415{font-size:60.000000px;}
.fs0_c00415{font-size:72.000000px;}
.fs1_c00415{font-size:74.215901px;}
.y0_c00415{bottom:0.000000px;}
.y22_c00415{bottom:3.120000px;}
.y20_c00415{bottom:34.560000px;}
.y21_c00415{bottom:34.744580px;}
.y1_c00415{bottom:54.000000px;}
.y1e_c00415{bottom:112.725000px;}
.y1d_c00415{bottom:148.725000px;}
.y1c_c00415{bottom:184.725000px;}
.y1b_c00415{bottom:220.725000px;}
.y1a_c00415{bottom:256.725000px;}
.y19_c00415{bottom:292.725000px;}
.y18_c00415{bottom:328.725000px;}
.y1f_c00415{bottom:341.685000px;}
.y17_c00415{bottom:364.725000px;}
.y16_c00415{bottom:400.725000px;}
.y15_c00415{bottom:436.725000px;}
.y14_c00415{bottom:472.725000px;}
.y13_c00415{bottom:509.085000px;}
.y12_c00415{bottom:545.085000px;}
.y11_c00415{bottom:581.085000px;}
.y10_c00415{bottom:617.085000px;}
.yf_c00415{bottom:653.085000px;}
.ye_c00415{bottom:689.085000px;}
.yd_c00415{bottom:725.085000px;}
.yc_c00415{bottom:761.085000px;}
.yb_c00415{bottom:797.085000px;}
.ya_c00415{bottom:833.085000px;}
.y9_c00415{bottom:869.085000px;}
.y8_c00415{bottom:905.085000px;}
.y7_c00415{bottom:941.085000px;}
.y6_c00415{bottom:977.085000px;}
.y5_c00415{bottom:1013.085000px;}
.y4_c00415{bottom:1049.085000px;}
.y3_c00415{bottom:1085.085000px;}
.y2_c00415{bottom:1138.365000px;}
.h7_c00415{height:19.255605px;}
.h6_c00415{height:41.132160px;}
.h5_c00415{height:47.160000px;}
.h3_c00415{height:55.584000px;}
.h8_c00415{height:56.640000px;}
.h4_c00415{height:57.294676px;}
.h2_c00415{height:1201.365000px;}
.h0_c00415{height:1262.835000px;}
.h1_c00415{height:1263.000000px;}
.w4_c00415{width:16.680000px;}
.w3_c00415{width:644.400000px;}
.w2_c00415{width:863.955000px;}
.w0_c00415{width:892.935000px;}
.w1_c00415{width:893.250000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:14.490000px;}
.x2_c00415{left:113.040150px;}
.x5_c00415{left:130.050000px;}
.x3_c00415{left:150.029250px;}
.x6_c00415{left:191.398350px;}
.x4_c00415{left:216.502050px;}
.x7_c00415{left:768.254608px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls2_c00415{letter-spacing:0.000000pt;}
.ls3_c00415{letter-spacing:0.355200pt;}
.ls0_c00415{letter-spacing:5.312000pt;}
.ls1_c00415{letter-spacing:5.475484pt;}
.ws0_c00415{word-spacing:0.000000pt;}
._0_c00415{margin-left:-0.994560pt;}
.fs2_c00415{font-size:47.360000pt;}
.fs3_c00415{font-size:53.333333pt;}
.fs0_c00415{font-size:64.000000pt;}
.fs1_c00415{font-size:65.969690pt;}
.y0_c00415{bottom:0.000000pt;}
.y22_c00415{bottom:2.773333pt;}
.y20_c00415{bottom:30.720000pt;}
.y21_c00415{bottom:30.884071pt;}
.y1_c00415{bottom:48.000000pt;}
.y1e_c00415{bottom:100.200000pt;}
.y1d_c00415{bottom:132.200000pt;}
.y1c_c00415{bottom:164.200000pt;}
.y1b_c00415{bottom:196.200000pt;}
.y1a_c00415{bottom:228.200000pt;}
.y19_c00415{bottom:260.200000pt;}
.y18_c00415{bottom:292.200000pt;}
.y1f_c00415{bottom:303.720000pt;}
.y17_c00415{bottom:324.200000pt;}
.y16_c00415{bottom:356.200000pt;}
.y15_c00415{bottom:388.200000pt;}
.y14_c00415{bottom:420.200000pt;}
.y13_c00415{bottom:452.520000pt;}
.y12_c00415{bottom:484.520000pt;}
.y11_c00415{bottom:516.520000pt;}
.y10_c00415{bottom:548.520000pt;}
.yf_c00415{bottom:580.520000pt;}
.ye_c00415{bottom:612.520000pt;}
.yd_c00415{bottom:644.520000pt;}
.yc_c00415{bottom:676.520000pt;}
.yb_c00415{bottom:708.520000pt;}
.ya_c00415{bottom:740.520000pt;}
.y9_c00415{bottom:772.520000pt;}
.y8_c00415{bottom:804.520000pt;}
.y7_c00415{bottom:836.520000pt;}
.y6_c00415{bottom:868.520000pt;}
.y5_c00415{bottom:900.520000pt;}
.y4_c00415{bottom:932.520000pt;}
.y3_c00415{bottom:964.520000pt;}
.y2_c00415{bottom:1011.880000pt;}
.h7_c00415{height:17.116093pt;}
.h6_c00415{height:36.561920pt;}
.h5_c00415{height:41.920000pt;}
.h3_c00415{height:49.408000pt;}
.h8_c00415{height:50.346667pt;}
.h4_c00415{height:50.928601pt;}
.h2_c00415{height:1067.880000pt;}
.h0_c00415{height:1122.520000pt;}
.h1_c00415{height:1122.666667pt;}
.w4_c00415{width:14.826667pt;}
.w3_c00415{width:572.800000pt;}
.w2_c00415{width:767.960000pt;}
.w0_c00415{width:793.720000pt;}
.w1_c00415{width:794.000000pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:12.880000pt;}
.x2_c00415{left:100.480133pt;}
.x5_c00415{left:115.600000pt;}
.x3_c00415{left:133.359333pt;}
.x6_c00415{left:170.131867pt;}
.x4_c00415{left:192.446267pt;}
.x7_c00415{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03876b4b6562fb683be99418.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;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_c00416;src:url('chunks/assets/font_405dc644df6bb271b8544d76.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_ab2492ee1edf41daa82e503f.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00416{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls2_c00416{letter-spacing:0.000000px;}
.ls4_c00416{letter-spacing:0.202464px;}
.ls3_c00416{letter-spacing:0.399600px;}
.ls0_c00416{letter-spacing:5.976000px;}
.ls1_c00416{letter-spacing:6.159920px;}
.sc__c00416{text-shadow:none;}
.sc1_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00416{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc1_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00416{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00416{word-spacing:0.000000px;}
._1_c00416{margin-left:-1.118880px;}
._0_c00416{width:1.027200px;}
.fc0_c00416{color:rgb(0,0,0);}
.fs2_c00416{font-size:53.280000px;}
.fs3_c00416{font-size:60.000000px;}
.fs0_c00416{font-size:72.000000px;}
.fs1_c00416{font-size:74.215901px;}
.y0_c00416{bottom:0.000000px;}
.y24_c00416{bottom:3.120000px;}
.y21_c00416{bottom:34.560000px;}
.y23_c00416{bottom:34.744580px;}
.y1_c00416{bottom:54.000000px;}
.y1f_c00416{bottom:76.725000px;}
.y1e_c00416{bottom:112.725000px;}
.y1d_c00416{bottom:148.725000px;}
.y22_c00416{bottom:184.365000px;}
.y1c_c00416{bottom:184.725000px;}
.y1b_c00416{bottom:220.725000px;}
.y1a_c00416{bottom:256.725000px;}
.y19_c00416{bottom:292.725000px;}
.y18_c00416{bottom:328.725000px;}
.y17_c00416{bottom:364.725000px;}
.y16_c00416{bottom:400.725000px;}
.y15_c00416{bottom:436.725000px;}
.y14_c00416{bottom:472.725000px;}
.y13_c00416{bottom:509.085000px;}
.y12_c00416{bottom:545.085000px;}
.y11_c00416{bottom:581.085000px;}
.y10_c00416{bottom:617.085000px;}
.yf_c00416{bottom:653.085000px;}
.y20_c00416{bottom:675.765000px;}
.ye_c00416{bottom:689.085000px;}
.yd_c00416{bottom:725.085000px;}
.yc_c00416{bottom:761.085000px;}
.yb_c00416{bottom:797.085000px;}
.ya_c00416{bottom:833.085000px;}
.y9_c00416{bottom:869.085000px;}
.y8_c00416{bottom:905.085000px;}
.y7_c00416{bottom:941.085000px;}
.y6_c00416{bottom:977.085000px;}
.y5_c00416{bottom:1013.085000px;}
.y4_c00416{bottom:1049.085000px;}
.y3_c00416{bottom:1085.085000px;}
.y2_c00416{bottom:1138.365000px;}
.h7_c00416{height:19.255605px;}
.h6_c00416{height:41.132160px;}
.h5_c00416{height:47.160000px;}
.h3_c00416{height:55.584000px;}
.h8_c00416{height:56.640000px;}
.h4_c00416{height:57.294676px;}
.h2_c00416{height:1201.365000px;}
.h0_c00416{height:1262.835000px;}
.h1_c00416{height:1263.000000px;}
.w5_c00416{width:16.680000px;}
.w3_c00416{width:435.600000px;}
.w4_c00416{width:489.600000px;}
.w2_c00416{width:863.955000px;}
.w0_c00416{width:892.935000px;}
.w1_c00416{width:893.250000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:14.490000px;}
.x6_c00416{left:69.958650px;}
.x7_c00416{left:74.475150px;}
.x2_c00416{left:113.040150px;}
.x3_c00416{left:150.029250px;}
.x5_c00416{left:206.010000px;}
.x4_c00416{left:216.502050px;}
.x8_c00416{left:768.254608px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls2_c00416{letter-spacing:0.000000pt;}
.ls4_c00416{letter-spacing:0.179968pt;}
.ls3_c00416{letter-spacing:0.355200pt;}
.ls0_c00416{letter-spacing:5.312000pt;}
.ls1_c00416{letter-spacing:5.475484pt;}
.ws0_c00416{word-spacing:0.000000pt;}
._1_c00416{margin-left:-0.994560pt;}
._0_c00416{width:0.913067pt;}
.fs2_c00416{font-size:47.360000pt;}
.fs3_c00416{font-size:53.333333pt;}
.fs0_c00416{font-size:64.000000pt;}
.fs1_c00416{font-size:65.969690pt;}
.y0_c00416{bottom:0.000000pt;}
.y24_c00416{bottom:2.773333pt;}
.y21_c00416{bottom:30.720000pt;}
.y23_c00416{bottom:30.884071pt;}
.y1_c00416{bottom:48.000000pt;}
.y1f_c00416{bottom:68.200000pt;}
.y1e_c00416{bottom:100.200000pt;}
.y1d_c00416{bottom:132.200000pt;}
.y22_c00416{bottom:163.880000pt;}
.y1c_c00416{bottom:164.200000pt;}
.y1b_c00416{bottom:196.200000pt;}
.y1a_c00416{bottom:228.200000pt;}
.y19_c00416{bottom:260.200000pt;}
.y18_c00416{bottom:292.200000pt;}
.y17_c00416{bottom:324.200000pt;}
.y16_c00416{bottom:356.200000pt;}
.y15_c00416{bottom:388.200000pt;}
.y14_c00416{bottom:420.200000pt;}
.y13_c00416{bottom:452.520000pt;}
.y12_c00416{bottom:484.520000pt;}
.y11_c00416{bottom:516.520000pt;}
.y10_c00416{bottom:548.520000pt;}
.yf_c00416{bottom:580.520000pt;}
.y20_c00416{bottom:600.680000pt;}
.ye_c00416{bottom:612.520000pt;}
.yd_c00416{bottom:644.520000pt;}
.yc_c00416{bottom:676.520000pt;}
.yb_c00416{bottom:708.520000pt;}
.ya_c00416{bottom:740.520000pt;}
.y9_c00416{bottom:772.520000pt;}
.y8_c00416{bottom:804.520000pt;}
.y7_c00416{bottom:836.520000pt;}
.y6_c00416{bottom:868.520000pt;}
.y5_c00416{bottom:900.520000pt;}
.y4_c00416{bottom:932.520000pt;}
.y3_c00416{bottom:964.520000pt;}
.y2_c00416{bottom:1011.880000pt;}
.h7_c00416{height:17.116093pt;}
.h6_c00416{height:36.561920pt;}
.h5_c00416{height:41.920000pt;}
.h3_c00416{height:49.408000pt;}
.h8_c00416{height:50.346667pt;}
.h4_c00416{height:50.928601pt;}
.h2_c00416{height:1067.880000pt;}
.h0_c00416{height:1122.520000pt;}
.h1_c00416{height:1122.666667pt;}
.w5_c00416{width:14.826667pt;}
.w3_c00416{width:387.200000pt;}
.w4_c00416{width:435.200000pt;}
.w2_c00416{width:767.960000pt;}
.w0_c00416{width:793.720000pt;}
.w1_c00416{width:794.000000pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:12.880000pt;}
.x6_c00416{left:62.185467pt;}
.x7_c00416{left:66.200133pt;}
.x2_c00416{left:100.480133pt;}
.x3_c00416{left:133.359333pt;}
.x5_c00416{left:183.120000pt;}
.x4_c00416{left:192.446267pt;}
.x8_c00416{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccc805c3a265e27f7dc7fa5b.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_399a6619b5475262784bcde0.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;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:ff3_c00417;src:url('chunks/assets/font_760337a7e9b7154db5913073.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00417{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00417{vertical-align:-24.480000px;}
.v0_c00417{vertical-align:0.000000px;}
.v1_c00417{vertical-align:30.240000px;}
.ls5_c00417{letter-spacing:0.000000px;}
.ls7_c00417{letter-spacing:0.265680px;}
.lsa_c00417{letter-spacing:0.318816px;}
.ls9_c00417{letter-spacing:0.425088px;}
.ls1_c00417{letter-spacing:0.851040px;}
.ls8_c00417{letter-spacing:4.221360px;}
.ls6_c00417{letter-spacing:5.430672px;}
.ls3_c00417{letter-spacing:5.976000px;}
.ls2_c00417{letter-spacing:5.980200px;}
.ls0_c00417{letter-spacing:5.998200px;}
.ls4_c00417{letter-spacing:6.159920px;}
.lsb_c00417{letter-spacing:9.239760px;}
.sc__c00417{text-shadow:none;}
.sc1_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00417{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc1_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00417{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00417{word-spacing:-21.043152px;}
.ws2_c00417{word-spacing:-20.016000px;}
.ws4_c00417{word-spacing:-16.731936px;}
.ws0_c00417{word-spacing:-11.609280px;}
.ws3_c00417{word-spacing:-10.008000px;}
.ws5_c00417{word-spacing:0.000000px;}
._10_c00417{margin-left:-9.682560px;}
._f_c00417{margin-left:-8.678880px;}
._11_c00417{margin-left:-7.675200px;}
._e_c00417{margin-left:-4.723200px;}
._d_c00417{margin-left:-3.660480px;}
._a_c00417{margin-left:-1.179360px;}
._4_c00417{width:1.080000px;}
._7_c00417{width:2.664000px;}
._0_c00417{width:3.816000px;}
._3_c00417{width:5.112000px;}
._6_c00417{width:6.840000px;}
._9_c00417{width:8.064000px;}
._5_c00417{width:11.304000px;}
._8_c00417{width:12.456000px;}
._1_c00417{width:13.464000px;}
._c_c00417{width:21.024000px;}
._2_c00417{width:24.120000px;}
._b_c00417{width:47.736000px;}
.fc0_c00417{color:rgb(0,0,0);}
.fs4_c00417{font-size:36.000000px;}
.fs2_c00417{font-size:41.760000px;}
.fs3_c00417{font-size:56.160000px;}
.fs5_c00417{font-size:59.040000px;}
.fs6_c00417{font-size:60.000000px;}
.fs0_c00417{font-size:72.000000px;}
.fs1_c00417{font-size:74.215901px;}
.y0_c00417{bottom:0.000000px;}
.y2c_c00417{bottom:3.120000px;}
.y2b_c00417{bottom:34.744580px;}
.y1_c00417{bottom:54.000000px;}
.y2a_c00417{bottom:55.481040px;}
.y29_c00417{bottom:78.885000px;}
.y28_c00417{bottom:96.525000px;}
.y27_c00417{bottom:107.686800px;}
.y26_c00417{bottom:131.445000px;}
.y25_c00417{bottom:149.085000px;}
.y24_c00417{bottom:175.725000px;}
.y23_c00417{bottom:228.285000px;}
.y22_c00417{bottom:249.165000px;}
.y21_c00417{bottom:270.405000px;}
.y20_c00417{bottom:291.285000px;}
.y1f_c00417{bottom:312.165000px;}
.y1e_c00417{bottom:333.405000px;}
.y1d_c00417{bottom:354.285000px;}
.y1c_c00417{bottom:375.525000px;}
.y1b_c00417{bottom:411.525000px;}
.y1a_c00417{bottom:447.525000px;}
.y19_c00417{bottom:483.525000px;}
.y18_c00417{bottom:519.525000px;}
.y17_c00417{bottom:540.405000px;}
.y16_c00417{bottom:561.285000px;}
.y15_c00417{bottom:582.525000px;}
.y14_c00417{bottom:603.405000px;}
.y13_c00417{bottom:624.285000px;}
.y12_c00417{bottom:645.525000px;}
.y11_c00417{bottom:681.525000px;}
.y10_c00417{bottom:717.525000px;}
.yf_c00417{bottom:738.405000px;}
.ye_c00417{bottom:759.285000px;}
.yd_c00417{bottom:780.525000px;}
.yc_c00417{bottom:816.525000px;}
.yb_c00417{bottom:852.525000px;}
.ya_c00417{bottom:888.525000px;}
.y9_c00417{bottom:909.405000px;}
.y8_c00417{bottom:930.645000px;}
.y7_c00417{bottom:966.645000px;}
.y6_c00417{bottom:987.525000px;}
.y5_c00417{bottom:1008.405000px;}
.y4_c00417{bottom:1044.405000px;}
.y3_c00417{bottom:1082.925000px;}
.y2_c00417{bottom:1138.365000px;}
.h8_c00417{height:19.255605px;}
.h6_c00417{height:32.616000px;}
.h7_c00417{height:53.490240px;}
.h9_c00417{height:56.640000px;}
.h4_c00417{height:57.294676px;}
.h3_c00417{height:65.232000px;}
.h5_c00417{height:68.074560px;}
.h2_c00417{height:1201.365000px;}
.h0_c00417{height:1262.835000px;}
.h1_c00417{height:1263.000000px;}
.w3_c00417{width:16.680000px;}
.w2_c00417{width:863.955000px;}
.w0_c00417{width:892.935000px;}
.w1_c00417{width:893.250000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:14.490000px;}
.x2_c00417{left:113.040150px;}
.x3_c00417{left:150.029250px;}
.x4_c00417{left:216.502050px;}
.x8_c00417{left:297.033300px;}
.x5_c00417{left:419.718000px;}
.x6_c00417{left:579.234000px;}
.x7_c00417{left:618.239100px;}
.x9_c00417{left:768.254608px;}
@media print{
.v2_c00417{vertical-align:-21.760000pt;}
.v0_c00417{vertical-align:0.000000pt;}
.v1_c00417{vertical-align:26.880000pt;}
.ls5_c00417{letter-spacing:0.000000pt;}
.ls7_c00417{letter-spacing:0.236160pt;}
.lsa_c00417{letter-spacing:0.283392pt;}
.ls9_c00417{letter-spacing:0.377856pt;}
.ls1_c00417{letter-spacing:0.756480pt;}
.ls8_c00417{letter-spacing:3.752320pt;}
.ls6_c00417{letter-spacing:4.827264pt;}
.ls3_c00417{letter-spacing:5.312000pt;}
.ls2_c00417{letter-spacing:5.315733pt;}
.ls0_c00417{letter-spacing:5.331733pt;}
.ls4_c00417{letter-spacing:5.475484pt;}
.lsb_c00417{letter-spacing:8.213120pt;}
.ws1_c00417{word-spacing:-18.705024pt;}
.ws2_c00417{word-spacing:-17.792000pt;}
.ws4_c00417{word-spacing:-14.872832pt;}
.ws0_c00417{word-spacing:-10.319360pt;}
.ws3_c00417{word-spacing:-8.896000pt;}
.ws5_c00417{word-spacing:0.000000pt;}
._10_c00417{margin-left:-8.606720pt;}
._f_c00417{margin-left:-7.714560pt;}
._11_c00417{margin-left:-6.822400pt;}
._e_c00417{margin-left:-4.198400pt;}
._d_c00417{margin-left:-3.253760pt;}
._a_c00417{margin-left:-1.048320pt;}
._4_c00417{width:0.960000pt;}
._7_c00417{width:2.368000pt;}
._0_c00417{width:3.392000pt;}
._3_c00417{width:4.544000pt;}
._6_c00417{width:6.080000pt;}
._9_c00417{width:7.168000pt;}
._5_c00417{width:10.048000pt;}
._8_c00417{width:11.072000pt;}
._1_c00417{width:11.968000pt;}
._c_c00417{width:18.688000pt;}
._2_c00417{width:21.440000pt;}
._b_c00417{width:42.432000pt;}
.fs4_c00417{font-size:32.000000pt;}
.fs2_c00417{font-size:37.120000pt;}
.fs3_c00417{font-size:49.920000pt;}
.fs5_c00417{font-size:52.480000pt;}
.fs6_c00417{font-size:53.333333pt;}
.fs0_c00417{font-size:64.000000pt;}
.fs1_c00417{font-size:65.969690pt;}
.y0_c00417{bottom:0.000000pt;}
.y2c_c00417{bottom:2.773333pt;}
.y2b_c00417{bottom:30.884071pt;}
.y1_c00417{bottom:48.000000pt;}
.y2a_c00417{bottom:49.316480pt;}
.y29_c00417{bottom:70.120000pt;}
.y28_c00417{bottom:85.800000pt;}
.y27_c00417{bottom:95.721600pt;}
.y26_c00417{bottom:116.840000pt;}
.y25_c00417{bottom:132.520000pt;}
.y24_c00417{bottom:156.200000pt;}
.y23_c00417{bottom:202.920000pt;}
.y22_c00417{bottom:221.480000pt;}
.y21_c00417{bottom:240.360000pt;}
.y20_c00417{bottom:258.920000pt;}
.y1f_c00417{bottom:277.480000pt;}
.y1e_c00417{bottom:296.360000pt;}
.y1d_c00417{bottom:314.920000pt;}
.y1c_c00417{bottom:333.800000pt;}
.y1b_c00417{bottom:365.800000pt;}
.y1a_c00417{bottom:397.800000pt;}
.y19_c00417{bottom:429.800000pt;}
.y18_c00417{bottom:461.800000pt;}
.y17_c00417{bottom:480.360000pt;}
.y16_c00417{bottom:498.920000pt;}
.y15_c00417{bottom:517.800000pt;}
.y14_c00417{bottom:536.360000pt;}
.y13_c00417{bottom:554.920000pt;}
.y12_c00417{bottom:573.800000pt;}
.y11_c00417{bottom:605.800000pt;}
.y10_c00417{bottom:637.800000pt;}
.yf_c00417{bottom:656.360000pt;}
.ye_c00417{bottom:674.920000pt;}
.yd_c00417{bottom:693.800000pt;}
.yc_c00417{bottom:725.800000pt;}
.yb_c00417{bottom:757.800000pt;}
.ya_c00417{bottom:789.800000pt;}
.y9_c00417{bottom:808.360000pt;}
.y8_c00417{bottom:827.240000pt;}
.y7_c00417{bottom:859.240000pt;}
.y6_c00417{bottom:877.800000pt;}
.y5_c00417{bottom:896.360000pt;}
.y4_c00417{bottom:928.360000pt;}
.y3_c00417{bottom:962.600000pt;}
.y2_c00417{bottom:1011.880000pt;}
.h8_c00417{height:17.116093pt;}
.h6_c00417{height:28.992000pt;}
.h7_c00417{height:47.546880pt;}
.h9_c00417{height:50.346667pt;}
.h4_c00417{height:50.928601pt;}
.h3_c00417{height:57.984000pt;}
.h5_c00417{height:60.510720pt;}
.h2_c00417{height:1067.880000pt;}
.h0_c00417{height:1122.520000pt;}
.h1_c00417{height:1122.666667pt;}
.w3_c00417{width:14.826667pt;}
.w2_c00417{width:767.960000pt;}
.w0_c00417{width:793.720000pt;}
.w1_c00417{width:794.000000pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:12.880000pt;}
.x2_c00417{left:100.480133pt;}
.x3_c00417{left:133.359333pt;}
.x4_c00417{left:192.446267pt;}
.x8_c00417{left:264.029600pt;}
.x5_c00417{left:373.082667pt;}
.x6_c00417{left:514.874667pt;}
.x7_c00417{left:549.545867pt;}
.x9_c00417{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b29333531637c7f8e5782ef8.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_fb88741889f9b4246b0efc5e.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;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:ff3_c00418;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_83b4aecf948155b1a9ef4b28.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00418;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00418;src:url('chunks/assets/font_0e1ebec3f392b4c8e1861b7e.woff2')format("woff");}.ff7_c00418{font-family:ff7_c00418;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00418{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00418{vertical-align:-24.480000px;}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:24.480000px;}
.v3_c00418{vertical-align:30.240000px;}
.lsa_c00418{letter-spacing:0.000000px;}
.lsf_c00418{letter-spacing:0.265680px;}
.ls4_c00418{letter-spacing:0.295200px;}
.ls6_c00418{letter-spacing:0.328628px;}
.ls8_c00418{letter-spacing:0.385440px;}
.ls14_c00418{letter-spacing:0.425088px;}
.ls13_c00418{letter-spacing:0.478224px;}
.ls5_c00418{letter-spacing:0.531360px;}
.ls3_c00418{letter-spacing:0.554976px;}
.ls16_c00418{letter-spacing:0.584496px;}
.lse_c00418{letter-spacing:0.602485px;}
.ls2_c00418{letter-spacing:0.712027px;}
.ls10_c00418{letter-spacing:0.797040px;}
.ls12_c00418{letter-spacing:3.967488px;}
.ls11_c00418{letter-spacing:5.430672px;}
.ls7_c00418{letter-spacing:5.975400px;}
.ls1_c00418{letter-spacing:5.976000px;}
.ls9_c00418{letter-spacing:6.159920px;}
.lsd_c00418{letter-spacing:6.872256px;}
.lsb_c00418{letter-spacing:10.922400px;}
.ls15_c00418{letter-spacing:12.103200px;}
.lsc_c00418{letter-spacing:16.898400px;}
.ls0_c00418{letter-spacing:54.864000px;}
.sc__c00418{text-shadow:none;}
.sc1_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00418{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc1_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00418{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00418{word-spacing:-21.043152px;}
.ws0_c00418{word-spacing:-17.630284px;}
.ws2_c00418{word-spacing:-17.246885px;}
.ws1_c00418{word-spacing:-10.008000px;}
.ws4_c00418{word-spacing:0.000000px;}
._12_c00418{margin-left:-12.422880px;}
._2_c00418{margin-left:-11.116800px;}
._8_c00418{margin-left:-7.261920px;}
._7_c00418{margin-left:-6.140160px;}
._10_c00418{margin-left:-4.546080px;}
._f_c00418{margin-left:-3.247200px;}
._a_c00418{margin-left:-1.062720px;}
._5_c00418{width:1.512000px;}
._0_c00418{width:2.664000px;}
._6_c00418{width:3.747600px;}
._3_c00418{width:4.752000px;}
._9_c00418{width:6.317280px;}
._d_c00418{width:7.669440px;}
._b_c00418{width:9.216000px;}
._1_c00418{width:10.944000px;}
._11_c00418{width:12.376800px;}
._c_c00418{width:16.704000px;}
._e_c00418{width:21.888000px;}
._4_c00418{width:27.360000px;}
.fc0_c00418{color:rgb(0,0,0);}
.fs5_c00418{font-size:36.000000px;}
.fs7_c00418{font-size:41.760000px;}
.fs6_c00418{font-size:56.160000px;}
.fs4_c00418{font-size:59.040000px;}
.fs8_c00418{font-size:60.000000px;}
.fs3_c00418{font-size:60.857039px;}
.fs2_c00418{font-size:64.800000px;}
.fs0_c00418{font-size:72.000000px;}
.fs1_c00418{font-size:74.215901px;}
.y0_c00418{bottom:0.000000px;}
.y2c_c00418{bottom:3.120000px;}
.y2b_c00418{bottom:34.744580px;}
.y1_c00418{bottom:54.000000px;}
.y2a_c00418{bottom:55.478880px;}
.y29_c00418{bottom:72.762840px;}
.y28_c00418{bottom:90.401040px;}
.y27_c00418{bottom:113.805000px;}
.y26_c00418{bottom:140.445000px;}
.y25_c00418{bottom:185.805000px;}
.y24_c00418{bottom:206.685000px;}
.y23_c00418{bottom:227.925000px;}
.y22_c00418{bottom:248.805000px;}
.y21_c00418{bottom:284.805000px;}
.y20_c00418{bottom:305.685000px;}
.y1f_c00418{bottom:326.925000px;}
.y1e_c00418{bottom:362.925000px;}
.y1d_c00418{bottom:398.925000px;}
.y1c_c00418{bottom:434.562840px;}
.y1b_c00418{bottom:452.201040px;}
.y1a_c00418{bottom:469.485000px;}
.y18_c00418{bottom:502.241040px;}
.y19_c00418{bottom:502.245000px;}
.y17_c00418{bottom:519.525000px;}
.y16_c00418{bottom:552.285000px;}
.y15_c00418{bottom:579.645000px;}
.y14_c00418{bottom:608.085000px;}
.y13_c00418{bottom:644.085000px;}
.y12_c00418{bottom:680.085000px;}
.y11_c00418{bottom:700.965000px;}
.y10_c00418{bottom:736.965000px;}
.yf_c00418{bottom:757.845000px;}
.ye_c00418{bottom:779.085000px;}
.yd_c00418{bottom:815.085000px;}
.yc_c00418{bottom:851.085000px;}
.yb_c00418{bottom:871.965000px;}
.ya_c00418{bottom:892.845000px;}
.y9_c00418{bottom:928.845000px;}
.y8_c00418{bottom:950.085000px;}
.y7_c00418{bottom:970.965000px;}
.y6_c00418{bottom:991.845000px;}
.y5_c00418{bottom:1027.845000px;}
.y4_c00418{bottom:1063.845000px;}
.y3_c00418{bottom:1085.085000px;}
.y2_c00418{bottom:1138.365000px;}
.hc_c00418{height:19.255605px;}
.hb_c00418{height:32.616000px;}
.h7_c00418{height:46.981634px;}
.h5_c00418{height:47.988281px;}
.h8_c00418{height:53.490240px;}
.hd_c00418{height:56.640000px;}
.h9_c00418{height:57.096000px;}
.h4_c00418{height:57.294676px;}
.h6_c00418{height:58.708800px;}
.h3_c00418{height:65.232000px;}
.ha_c00418{height:68.074560px;}
.h2_c00418{height:1201.365000px;}
.h0_c00418{height:1262.835000px;}
.h1_c00418{height:1263.000000px;}
.w3_c00418{width:16.680000px;}
.w2_c00418{width:863.955000px;}
.w0_c00418{width:892.935000px;}
.w1_c00418{width:893.250000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:14.490000px;}
.x2_c00418{left:113.040150px;}
.x21_c00418{left:133.034550px;}
.x16_c00418{left:138.014700px;}
.x5_c00418{left:140.037600px;}
.x3_c00418{left:150.029250px;}
.x6_c00418{left:167.037600px;}
.x1f_c00418{left:201.851100px;}
.x17_c00418{left:209.657550px;}
.x4_c00418{left:216.502050px;}
.x18_c00418{left:234.632100px;}
.x20_c00418{left:245.185200px;}
.x19_c00418{left:283.803900px;}
.x1a_c00418{left:308.778450px;}
.xf_c00418{left:333.502650px;}
.x10_c00418{left:335.975100px;}
.x7_c00418{left:379.041150px;}
.xd_c00418{left:389.259600px;}
.x8_c00418{left:392.018850px;}
.x11_c00418{left:397.965750px;}
.x12_c00418{left:402.465750px;}
.x9_c00418{left:422.042250px;}
.xa_c00418{left:435.038100px;}
.x13_c00418{left:477.451800px;}
.xb_c00418{left:480.073200px;}
.xc_c00418{left:493.086900px;}
.xe_c00418{left:507.091950px;}
.x14_c00418{left:521.460900px;}
.x15_c00418{left:527.454750px;}
.x1b_c00418{left:537.943050px;}
.x1c_c00418{left:559.587600px;}
.x22_c00418{left:617.820900px;}
.x1d_c00418{left:622.080000px;}
.x1e_c00418{left:641.234550px;}
.x23_c00418{left:664.818150px;}
.x24_c00418{left:768.254608px;}
@media print{
.v2_c00418{vertical-align:-21.760000pt;}
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:21.760000pt;}
.v3_c00418{vertical-align:26.880000pt;}
.lsa_c00418{letter-spacing:0.000000pt;}
.lsf_c00418{letter-spacing:0.236160pt;}
.ls4_c00418{letter-spacing:0.262400pt;}
.ls6_c00418{letter-spacing:0.292114pt;}
.ls8_c00418{letter-spacing:0.342613pt;}
.ls14_c00418{letter-spacing:0.377856pt;}
.ls13_c00418{letter-spacing:0.425088pt;}
.ls5_c00418{letter-spacing:0.472320pt;}
.ls3_c00418{letter-spacing:0.493312pt;}
.ls16_c00418{letter-spacing:0.519552pt;}
.lse_c00418{letter-spacing:0.535542pt;}
.ls2_c00418{letter-spacing:0.632913pt;}
.ls10_c00418{letter-spacing:0.708480pt;}
.ls12_c00418{letter-spacing:3.526656pt;}
.ls11_c00418{letter-spacing:4.827264pt;}
.ls7_c00418{letter-spacing:5.311467pt;}
.ls1_c00418{letter-spacing:5.312000pt;}
.ls9_c00418{letter-spacing:5.475484pt;}
.lsd_c00418{letter-spacing:6.108672pt;}
.lsb_c00418{letter-spacing:9.708800pt;}
.ls15_c00418{letter-spacing:10.758400pt;}
.lsc_c00418{letter-spacing:15.020800pt;}
.ls0_c00418{letter-spacing:48.768000pt;}
.ws3_c00418{word-spacing:-18.705024pt;}
.ws0_c00418{word-spacing:-15.671364pt;}
.ws2_c00418{word-spacing:-15.330564pt;}
.ws1_c00418{word-spacing:-8.896000pt;}
.ws4_c00418{word-spacing:0.000000pt;}
._12_c00418{margin-left:-11.042560pt;}
._2_c00418{margin-left:-9.881600pt;}
._8_c00418{margin-left:-6.455040pt;}
._7_c00418{margin-left:-5.457920pt;}
._10_c00418{margin-left:-4.040960pt;}
._f_c00418{margin-left:-2.886400pt;}
._a_c00418{margin-left:-0.944640pt;}
._5_c00418{width:1.344000pt;}
._0_c00418{width:2.368000pt;}
._6_c00418{width:3.331200pt;}
._3_c00418{width:4.224000pt;}
._9_c00418{width:5.615360pt;}
._d_c00418{width:6.817280pt;}
._b_c00418{width:8.192000pt;}
._1_c00418{width:9.728000pt;}
._11_c00418{width:11.001600pt;}
._c_c00418{width:14.848000pt;}
._e_c00418{width:19.456000pt;}
._4_c00418{width:24.320000pt;}
.fs5_c00418{font-size:32.000000pt;}
.fs7_c00418{font-size:37.120000pt;}
.fs6_c00418{font-size:49.920000pt;}
.fs4_c00418{font-size:52.480000pt;}
.fs8_c00418{font-size:53.333333pt;}
.fs3_c00418{font-size:54.095146pt;}
.fs2_c00418{font-size:57.600000pt;}
.fs0_c00418{font-size:64.000000pt;}
.fs1_c00418{font-size:65.969690pt;}
.y0_c00418{bottom:0.000000pt;}
.y2c_c00418{bottom:2.773333pt;}
.y2b_c00418{bottom:30.884071pt;}
.y1_c00418{bottom:48.000000pt;}
.y2a_c00418{bottom:49.314560pt;}
.y29_c00418{bottom:64.678080pt;}
.y28_c00418{bottom:80.356480pt;}
.y27_c00418{bottom:101.160000pt;}
.y26_c00418{bottom:124.840000pt;}
.y25_c00418{bottom:165.160000pt;}
.y24_c00418{bottom:183.720000pt;}
.y23_c00418{bottom:202.600000pt;}
.y22_c00418{bottom:221.160000pt;}
.y21_c00418{bottom:253.160000pt;}
.y20_c00418{bottom:271.720000pt;}
.y1f_c00418{bottom:290.600000pt;}
.y1e_c00418{bottom:322.600000pt;}
.y1d_c00418{bottom:354.600000pt;}
.y1c_c00418{bottom:386.278080pt;}
.y1b_c00418{bottom:401.956480pt;}
.y1a_c00418{bottom:417.320000pt;}
.y18_c00418{bottom:446.436480pt;}
.y19_c00418{bottom:446.440000pt;}
.y17_c00418{bottom:461.800000pt;}
.y16_c00418{bottom:490.920000pt;}
.y15_c00418{bottom:515.240000pt;}
.y14_c00418{bottom:540.520000pt;}
.y13_c00418{bottom:572.520000pt;}
.y12_c00418{bottom:604.520000pt;}
.y11_c00418{bottom:623.080000pt;}
.y10_c00418{bottom:655.080000pt;}
.yf_c00418{bottom:673.640000pt;}
.ye_c00418{bottom:692.520000pt;}
.yd_c00418{bottom:724.520000pt;}
.yc_c00418{bottom:756.520000pt;}
.yb_c00418{bottom:775.080000pt;}
.ya_c00418{bottom:793.640000pt;}
.y9_c00418{bottom:825.640000pt;}
.y8_c00418{bottom:844.520000pt;}
.y7_c00418{bottom:863.080000pt;}
.y6_c00418{bottom:881.640000pt;}
.y5_c00418{bottom:913.640000pt;}
.y4_c00418{bottom:945.640000pt;}
.y3_c00418{bottom:964.520000pt;}
.y2_c00418{bottom:1011.880000pt;}
.hc_c00418{height:17.116093pt;}
.hb_c00418{height:28.992000pt;}
.h7_c00418{height:41.761453pt;}
.h5_c00418{height:42.656250pt;}
.h8_c00418{height:47.546880pt;}
.hd_c00418{height:50.346667pt;}
.h9_c00418{height:50.752000pt;}
.h4_c00418{height:50.928601pt;}
.h6_c00418{height:52.185600pt;}
.h3_c00418{height:57.984000pt;}
.ha_c00418{height:60.510720pt;}
.h2_c00418{height:1067.880000pt;}
.h0_c00418{height:1122.520000pt;}
.h1_c00418{height:1122.666667pt;}
.w3_c00418{width:14.826667pt;}
.w2_c00418{width:767.960000pt;}
.w0_c00418{width:793.720000pt;}
.w1_c00418{width:794.000000pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:12.880000pt;}
.x2_c00418{left:100.480133pt;}
.x21_c00418{left:118.252933pt;}
.x16_c00418{left:122.679733pt;}
.x5_c00418{left:124.477867pt;}
.x3_c00418{left:133.359333pt;}
.x6_c00418{left:148.477867pt;}
.x1f_c00418{left:179.423200pt;}
.x17_c00418{left:186.362267pt;}
.x4_c00418{left:192.446267pt;}
.x18_c00418{left:208.561867pt;}
.x20_c00418{left:217.942400pt;}
.x19_c00418{left:252.270133pt;}
.x1a_c00418{left:274.469733pt;}
.xf_c00418{left:296.446800pt;}
.x10_c00418{left:298.644533pt;}
.x7_c00418{left:336.925467pt;}
.xd_c00418{left:346.008533pt;}
.x8_c00418{left:348.461200pt;}
.x11_c00418{left:353.747333pt;}
.x12_c00418{left:357.747333pt;}
.x9_c00418{left:375.148667pt;}
.xa_c00418{left:386.700533pt;}
.x13_c00418{left:424.401600pt;}
.xb_c00418{left:426.731733pt;}
.xc_c00418{left:438.299467pt;}
.xe_c00418{left:450.748400pt;}
.x14_c00418{left:463.520800pt;}
.x15_c00418{left:468.848667pt;}
.x1b_c00418{left:478.171600pt;}
.x1c_c00418{left:497.411200pt;}
.x22_c00418{left:549.174133pt;}
.x1d_c00418{left:552.960000pt;}
.x1e_c00418{left:569.986267pt;}
.x23_c00418{left:590.949467pt;}
.x24_c00418{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64d9917f3bc6c396bbf7ffa1.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_c8afb9154ae801a140a93431.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;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:ff3_c00419;src:url('chunks/assets/font_eaffb90e3b2c20ecf6f83604.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00419{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00419{vertical-align:-30.240000px;}
.v3_c00419{vertical-align:-24.480000px;}
.v0_c00419{vertical-align:0.000000px;}
.v1_c00419{vertical-align:30.240000px;}
.lse_c00419{letter-spacing:-0.179568px;}
.lsd_c00419{letter-spacing:0.000000px;}
.ls1a_c00419{letter-spacing:0.144000px;}
.ls7_c00419{letter-spacing:0.236160px;}
.ls4_c00419{letter-spacing:0.255240px;}
.lsb_c00419{letter-spacing:0.265680px;}
.lsa_c00419{letter-spacing:0.295200px;}
.ls2_c00419{letter-spacing:0.300840px;}
.ls17_c00419{letter-spacing:0.438171px;}
.ls6_c00419{letter-spacing:0.531360px;}
.ls8_c00419{letter-spacing:0.547713px;}
.ls11_c00419{letter-spacing:0.584496px;}
.ls0_c00419{letter-spacing:0.594240px;}
.ls13_c00419{letter-spacing:0.602485px;}
.ls12_c00419{letter-spacing:0.712027px;}
.ls19_c00419{letter-spacing:0.718113px;}
.ls14_c00419{letter-spacing:0.743904px;}
.ls18_c00419{letter-spacing:0.797040px;}
.ls9_c00419{letter-spacing:4.841280px;}
.ls16_c00419{letter-spacing:4.858992px;}
.lsf_c00419{letter-spacing:5.335200px;}
.ls15_c00419{letter-spacing:5.354928px;}
.ls1_c00419{letter-spacing:5.976000px;}
.ls5_c00419{letter-spacing:5.988000px;}
.lsc_c00419{letter-spacing:6.159920px;}
.ls10_c00419{letter-spacing:11.093616px;}
.ls3_c00419{letter-spacing:13.032000px;}
.sc__c00419{text-shadow:none;}
.sc1_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00419{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc1_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00419{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8_c00419{word-spacing:-21.768048px;}
.ws3_c00419{word-spacing:-20.947680px;}
.ws0_c00419{word-spacing:-20.016000px;}
.ws6_c00419{word-spacing:-17.630284px;}
.ws7_c00419{word-spacing:-17.465970px;}
.ws5_c00419{word-spacing:-16.944480px;}
.ws1_c00419{word-spacing:-11.609280px;}
.ws2_c00419{word-spacing:-11.429712px;}
.ws9_c00419{word-spacing:-10.152000px;}
.ws4_c00419{word-spacing:-10.008000px;}
.wsa_c00419{word-spacing:0.000000px;}
._b_c00419{margin-left:-11.512800px;}
._a_c00419{margin-left:-10.509120px;}
._d_c00419{margin-left:-5.444520px;}
._e_c00419{margin-left:-4.309920px;}
._9_c00419{margin-left:-1.061400px;}
._3_c00419{width:1.944000px;}
._1_c00419{width:3.096000px;}
._8_c00419{width:4.392000px;}
._f_c00419{width:5.528208px;}
._4_c00419{width:7.056000px;}
._5_c00419{width:8.568000px;}
._2_c00419{width:9.576000px;}
._c_c00419{width:10.579968px;}
._0_c00419{width:11.808000px;}
._6_c00419{width:17.424000px;}
._7_c00419{width:18.432000px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs4_c00419{font-size:36.000000px;}
.fs2_c00419{font-size:41.760000px;}
.fs3_c00419{font-size:56.160000px;}
.fs5_c00419{font-size:59.040000px;}
.fs7_c00419{font-size:60.000000px;}
.fs6_c00419{font-size:60.857039px;}
.fs0_c00419{font-size:72.000000px;}
.fs1_c00419{font-size:74.215901px;}
.y0_c00419{bottom:0.000000px;}
.y26_c00419{bottom:3.120000px;}
.y25_c00419{bottom:34.744580px;}
.y1_c00419{bottom:54.000000px;}
.y24_c00419{bottom:61.605000px;}
.y23_c00419{bottom:72.765000px;}
.y22_c00419{bottom:78.885000px;}
.y20_c00419{bottom:90.401040px;}
.y21_c00419{bottom:90.405000px;}
.y1f_c00419{bottom:107.685000px;}
.y1e_c00419{bottom:113.805000px;}
.y1c_c00419{bottom:131.441040px;}
.y1d_c00419{bottom:131.445000px;}
.y1b_c00419{bottom:148.725000px;}
.y1a_c00419{bottom:154.845000px;}
.y19_c00419{bottom:166.366800px;}
.y18_c00419{bottom:190.125000px;}
.y17_c00419{bottom:216.765000px;}
.y16_c00419{bottom:616.725000px;}
.y15_c00419{bottom:652.725000px;}
.y14_c00419{bottom:673.965000px;}
.y13_c00419{bottom:694.845000px;}
.y12_c00419{bottom:730.845000px;}
.y11_c00419{bottom:766.845000px;}
.y10_c00419{bottom:802.845000px;}
.yf_c00419{bottom:824.085000px;}
.ye_c00419{bottom:844.965000px;}
.yd_c00419{bottom:865.845000px;}
.yc_c00419{bottom:887.085000px;}
.yb_c00419{bottom:907.965000px;}
.ya_c00419{bottom:928.845000px;}
.y9_c00419{bottom:950.085000px;}
.y7_c00419{bottom:986.085000px;}
.y8_c00419{bottom:993.645000px;}
.y6_c00419{bottom:1006.965000px;}
.y5_c00419{bottom:1027.845000px;}
.y4_c00419{bottom:1063.845000px;}
.y3_c00419{bottom:1085.085000px;}
.y2_c00419{bottom:1138.365000px;}
.ha_c00419{height:19.255605px;}
.h7_c00419{height:32.616000px;}
.h6_c00419{height:37.834560px;}
.h9_c00419{height:46.981634px;}
.h8_c00419{height:53.490240px;}
.hb_c00419{height:56.640000px;}
.h4_c00419{height:57.294676px;}
.h3_c00419{height:65.232000px;}
.h5_c00419{height:68.074560px;}
.h2_c00419{height:1201.365000px;}
.h0_c00419{height:1262.835000px;}
.h1_c00419{height:1263.000000px;}
.w3_c00419{width:16.680000px;}
.w2_c00419{width:863.955000px;}
.w0_c00419{width:892.935000px;}
.w1_c00419{width:893.250000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:14.490000px;}
.x2_c00419{left:113.040150px;}
.x24_c00419{left:122.213700px;}
.x20_c00419{left:128.864850px;}
.x13_c00419{left:136.043700px;}
.x1b_c00419{left:148.049250px;}
.x3_c00419{left:150.029250px;}
.x25_c00419{left:153.907500px;}
.xd_c00419{left:157.031250px;}
.x1c_c00419{left:186.357750px;}
.x26_c00419{left:195.591000px;}
.xe_c00419{left:199.024650px;}
.xf_c00419{left:209.032500px;}
.x9_c00419{left:213.127500px;}
.x4_c00419{left:216.502050px;}
.x14_c00419{left:233.080050px;}
.x15_c00419{left:248.091750px;}
.x19_c00419{left:253.069050px;}
.x10_c00419{left:261.033600px;}
.xa_c00419{left:266.118150px;}
.x16_c00419{left:304.107000px;}
.x17_c00419{left:383.543700px;}
.x5_c00419{left:397.093950px;}
.x11_c00419{left:430.032600px;}
.x6_c00419{left:450.084900px;}
.x12_c00419{left:478.080000px;}
.x7_c00419{left:487.320150px;}
.x21_c00419{left:520.665150px;}
.x18_c00419{left:534.829500px;}
.x22_c00419{left:540.659250px;}
.x8_c00419{left:544.306950px;}
.x1a_c00419{left:587.242350px;}
.x1d_c00419{left:654.010950px;}
.xb_c00419{left:656.982750px;}
.xc_c00419{left:698.976150px;}
.x1e_c00419{left:706.509150px;}
.x1f_c00419{left:707.881350px;}
.x23_c00419{left:726.577800px;}
.x27_c00419{left:768.254608px;}
@media print{
.v2_c00419{vertical-align:-26.880000pt;}
.v3_c00419{vertical-align:-21.760000pt;}
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:26.880000pt;}
.lse_c00419{letter-spacing:-0.159616pt;}
.lsd_c00419{letter-spacing:0.000000pt;}
.ls1a_c00419{letter-spacing:0.128000pt;}
.ls7_c00419{letter-spacing:0.209920pt;}
.ls4_c00419{letter-spacing:0.226880pt;}
.lsb_c00419{letter-spacing:0.236160pt;}
.lsa_c00419{letter-spacing:0.262400pt;}
.ls2_c00419{letter-spacing:0.267413pt;}
.ls17_c00419{letter-spacing:0.389485pt;}
.ls6_c00419{letter-spacing:0.472320pt;}
.ls8_c00419{letter-spacing:0.486856pt;}
.ls11_c00419{letter-spacing:0.519552pt;}
.ls0_c00419{letter-spacing:0.528213pt;}
.ls13_c00419{letter-spacing:0.535542pt;}
.ls12_c00419{letter-spacing:0.632913pt;}
.ls19_c00419{letter-spacing:0.638323pt;}
.ls14_c00419{letter-spacing:0.661248pt;}
.ls18_c00419{letter-spacing:0.708480pt;}
.ls9_c00419{letter-spacing:4.303360pt;}
.ls16_c00419{letter-spacing:4.319104pt;}
.lsf_c00419{letter-spacing:4.742400pt;}
.ls15_c00419{letter-spacing:4.759936pt;}
.ls1_c00419{letter-spacing:5.312000pt;}
.ls5_c00419{letter-spacing:5.322667pt;}
.lsc_c00419{letter-spacing:5.475484pt;}
.ls10_c00419{letter-spacing:9.860992pt;}
.ls3_c00419{letter-spacing:11.584000pt;}
.ws8_c00419{word-spacing:-19.349376pt;}
.ws3_c00419{word-spacing:-18.620160pt;}
.ws0_c00419{word-spacing:-17.792000pt;}
.ws6_c00419{word-spacing:-15.671364pt;}
.ws7_c00419{word-spacing:-15.525307pt;}
.ws5_c00419{word-spacing:-15.061760pt;}
.ws1_c00419{word-spacing:-10.319360pt;}
.ws2_c00419{word-spacing:-10.159744pt;}
.ws9_c00419{word-spacing:-9.024000pt;}
.ws4_c00419{word-spacing:-8.896000pt;}
.wsa_c00419{word-spacing:0.000000pt;}
._b_c00419{margin-left:-10.233600pt;}
._a_c00419{margin-left:-9.341440pt;}
._d_c00419{margin-left:-4.839573pt;}
._e_c00419{margin-left:-3.831040pt;}
._9_c00419{margin-left:-0.943467pt;}
._3_c00419{width:1.728000pt;}
._1_c00419{width:2.752000pt;}
._8_c00419{width:3.904000pt;}
._f_c00419{width:4.913963pt;}
._4_c00419{width:6.272000pt;}
._5_c00419{width:7.616000pt;}
._2_c00419{width:8.512000pt;}
._c_c00419{width:9.404416pt;}
._0_c00419{width:10.496000pt;}
._6_c00419{width:15.488000pt;}
._7_c00419{width:16.384000pt;}
.fs4_c00419{font-size:32.000000pt;}
.fs2_c00419{font-size:37.120000pt;}
.fs3_c00419{font-size:49.920000pt;}
.fs5_c00419{font-size:52.480000pt;}
.fs7_c00419{font-size:53.333333pt;}
.fs6_c00419{font-size:54.095146pt;}
.fs0_c00419{font-size:64.000000pt;}
.fs1_c00419{font-size:65.969690pt;}
.y0_c00419{bottom:0.000000pt;}
.y26_c00419{bottom:2.773333pt;}
.y25_c00419{bottom:30.884071pt;}
.y1_c00419{bottom:48.000000pt;}
.y24_c00419{bottom:54.760000pt;}
.y23_c00419{bottom:64.680000pt;}
.y22_c00419{bottom:70.120000pt;}
.y20_c00419{bottom:80.356480pt;}
.y21_c00419{bottom:80.360000pt;}
.y1f_c00419{bottom:95.720000pt;}
.y1e_c00419{bottom:101.160000pt;}
.y1c_c00419{bottom:116.836480pt;}
.y1d_c00419{bottom:116.840000pt;}
.y1b_c00419{bottom:132.200000pt;}
.y1a_c00419{bottom:137.640000pt;}
.y19_c00419{bottom:147.881600pt;}
.y18_c00419{bottom:169.000000pt;}
.y17_c00419{bottom:192.680000pt;}
.y16_c00419{bottom:548.200000pt;}
.y15_c00419{bottom:580.200000pt;}
.y14_c00419{bottom:599.080000pt;}
.y13_c00419{bottom:617.640000pt;}
.y12_c00419{bottom:649.640000pt;}
.y11_c00419{bottom:681.640000pt;}
.y10_c00419{bottom:713.640000pt;}
.yf_c00419{bottom:732.520000pt;}
.ye_c00419{bottom:751.080000pt;}
.yd_c00419{bottom:769.640000pt;}
.yc_c00419{bottom:788.520000pt;}
.yb_c00419{bottom:807.080000pt;}
.ya_c00419{bottom:825.640000pt;}
.y9_c00419{bottom:844.520000pt;}
.y7_c00419{bottom:876.520000pt;}
.y8_c00419{bottom:883.240000pt;}
.y6_c00419{bottom:895.080000pt;}
.y5_c00419{bottom:913.640000pt;}
.y4_c00419{bottom:945.640000pt;}
.y3_c00419{bottom:964.520000pt;}
.y2_c00419{bottom:1011.880000pt;}
.ha_c00419{height:17.116093pt;}
.h7_c00419{height:28.992000pt;}
.h6_c00419{height:33.630720pt;}
.h9_c00419{height:41.761453pt;}
.h8_c00419{height:47.546880pt;}
.hb_c00419{height:50.346667pt;}
.h4_c00419{height:50.928601pt;}
.h3_c00419{height:57.984000pt;}
.h5_c00419{height:60.510720pt;}
.h2_c00419{height:1067.880000pt;}
.h0_c00419{height:1122.520000pt;}
.h1_c00419{height:1122.666667pt;}
.w3_c00419{width:14.826667pt;}
.w2_c00419{width:767.960000pt;}
.w0_c00419{width:793.720000pt;}
.w1_c00419{width:794.000000pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:12.880000pt;}
.x2_c00419{left:100.480133pt;}
.x24_c00419{left:108.634400pt;}
.x20_c00419{left:114.546533pt;}
.x13_c00419{left:120.927733pt;}
.x1b_c00419{left:131.599333pt;}
.x3_c00419{left:133.359333pt;}
.x25_c00419{left:136.806667pt;}
.xd_c00419{left:139.583333pt;}
.x1c_c00419{left:165.651333pt;}
.x26_c00419{left:173.858667pt;}
.xe_c00419{left:176.910800pt;}
.xf_c00419{left:185.806667pt;}
.x9_c00419{left:189.446667pt;}
.x4_c00419{left:192.446267pt;}
.x14_c00419{left:207.182267pt;}
.x15_c00419{left:220.526000pt;}
.x19_c00419{left:224.950267pt;}
.x10_c00419{left:232.029867pt;}
.xa_c00419{left:236.549467pt;}
.x16_c00419{left:270.317333pt;}
.x17_c00419{left:340.927733pt;}
.x5_c00419{left:352.972400pt;}
.x11_c00419{left:382.251200pt;}
.x6_c00419{left:400.075467pt;}
.x12_c00419{left:424.960000pt;}
.x7_c00419{left:433.173467pt;}
.x21_c00419{left:462.813467pt;}
.x18_c00419{left:475.404000pt;}
.x22_c00419{left:480.586000pt;}
.x8_c00419{left:483.828400pt;}
.x1a_c00419{left:521.993200pt;}
.x1d_c00419{left:581.343067pt;}
.xb_c00419{left:583.984667pt;}
.xc_c00419{left:621.312133pt;}
.x1e_c00419{left:628.008133pt;}
.x1f_c00419{left:629.227867pt;}
.x23_c00419{left:645.846933pt;}
.x27_c00419{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a5868a3060a4cd2b1eda6cc.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;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_c00420;src:url('chunks/assets/font_83ad1e9270ddbf99c4cf6fed.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_828481748a9284e986d8ba35.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00420{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls2_c00420{letter-spacing:0.000000px;}
.ls3_c00420{letter-spacing:0.399600px;}
.ls0_c00420{letter-spacing:5.976000px;}
.ls1_c00420{letter-spacing:6.159920px;}
.sc__c00420{text-shadow:none;}
.sc1_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00420{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc1_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00420{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00420{word-spacing:0.000000px;}
._0_c00420{margin-left:-1.118880px;}
.fc1_c00420{color:transparent;}
.fc0_c00420{color:rgb(0,0,0);}
.fs2_c00420{font-size:53.280000px;}
.fs3_c00420{font-size:60.000000px;}
.fs0_c00420{font-size:72.000000px;}
.fs1_c00420{font-size:74.215901px;}
.y0_c00420{bottom:0.000000px;}
.y25_c00420{bottom:3.120000px;}
.y21_c00420{bottom:14.400000px;}
.y23_c00420{bottom:34.560000px;}
.y24_c00420{bottom:34.744580px;}
.y1_c00420{bottom:54.000000px;}
.y1f_c00420{bottom:76.725000px;}
.y1e_c00420{bottom:112.725000px;}
.y1d_c00420{bottom:148.725000px;}
.y1c_c00420{bottom:184.725000px;}
.y22_c00420{bottom:211.365000px;}
.y1b_c00420{bottom:220.725000px;}
.y1a_c00420{bottom:256.725000px;}
.y19_c00420{bottom:292.725000px;}
.y18_c00420{bottom:328.725000px;}
.y17_c00420{bottom:364.725000px;}
.y16_c00420{bottom:400.725000px;}
.y15_c00420{bottom:436.725000px;}
.y14_c00420{bottom:472.725000px;}
.y13_c00420{bottom:509.085000px;}
.y12_c00420{bottom:545.085000px;}
.y11_c00420{bottom:581.085000px;}
.y20_c00420{bottom:589.365000px;}
.y10_c00420{bottom:617.085000px;}
.yf_c00420{bottom:653.085000px;}
.ye_c00420{bottom:689.085000px;}
.yd_c00420{bottom:725.085000px;}
.yc_c00420{bottom:761.085000px;}
.yb_c00420{bottom:797.085000px;}
.ya_c00420{bottom:833.085000px;}
.y9_c00420{bottom:869.085000px;}
.y8_c00420{bottom:905.085000px;}
.y7_c00420{bottom:941.085000px;}
.y6_c00420{bottom:977.085000px;}
.y5_c00420{bottom:1013.085000px;}
.y4_c00420{bottom:1049.085000px;}
.y3_c00420{bottom:1085.085000px;}
.y2_c00420{bottom:1138.365000px;}
.h8_c00420{height:19.255605px;}
.h5_c00420{height:27.000000px;}
.h6_c00420{height:41.132160px;}
.h7_c00420{height:47.160000px;}
.h3_c00420{height:55.584000px;}
.h9_c00420{height:56.640000px;}
.h4_c00420{height:57.294676px;}
.h2_c00420{height:1201.365000px;}
.h0_c00420{height:1262.835000px;}
.h1_c00420{height:1263.000000px;}
.w5_c00420{width:16.680000px;}
.w3_c00420{width:541.800000px;}
.w4_c00420{width:681.840000px;}
.w2_c00420{width:863.955000px;}
.w0_c00420{width:892.935000px;}
.w1_c00420{width:893.250000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:14.490000px;}
.x6_c00420{left:44.985000px;}
.x2_c00420{left:113.040150px;}
.x7_c00420{left:124.290000px;}
.x3_c00420{left:150.029250px;}
.x5_c00420{left:177.210000px;}
.x8_c00420{left:187.700250px;}
.x4_c00420{left:216.502050px;}
.x9_c00420{left:768.254608px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls2_c00420{letter-spacing:0.000000pt;}
.ls3_c00420{letter-spacing:0.355200pt;}
.ls0_c00420{letter-spacing:5.312000pt;}
.ls1_c00420{letter-spacing:5.475484pt;}
.ws0_c00420{word-spacing:0.000000pt;}
._0_c00420{margin-left:-0.994560pt;}
.fs2_c00420{font-size:47.360000pt;}
.fs3_c00420{font-size:53.333333pt;}
.fs0_c00420{font-size:64.000000pt;}
.fs1_c00420{font-size:65.969690pt;}
.y0_c00420{bottom:0.000000pt;}
.y25_c00420{bottom:2.773333pt;}
.y21_c00420{bottom:12.800000pt;}
.y23_c00420{bottom:30.720000pt;}
.y24_c00420{bottom:30.884071pt;}
.y1_c00420{bottom:48.000000pt;}
.y1f_c00420{bottom:68.200000pt;}
.y1e_c00420{bottom:100.200000pt;}
.y1d_c00420{bottom:132.200000pt;}
.y1c_c00420{bottom:164.200000pt;}
.y22_c00420{bottom:187.880000pt;}
.y1b_c00420{bottom:196.200000pt;}
.y1a_c00420{bottom:228.200000pt;}
.y19_c00420{bottom:260.200000pt;}
.y18_c00420{bottom:292.200000pt;}
.y17_c00420{bottom:324.200000pt;}
.y16_c00420{bottom:356.200000pt;}
.y15_c00420{bottom:388.200000pt;}
.y14_c00420{bottom:420.200000pt;}
.y13_c00420{bottom:452.520000pt;}
.y12_c00420{bottom:484.520000pt;}
.y11_c00420{bottom:516.520000pt;}
.y20_c00420{bottom:523.880000pt;}
.y10_c00420{bottom:548.520000pt;}
.yf_c00420{bottom:580.520000pt;}
.ye_c00420{bottom:612.520000pt;}
.yd_c00420{bottom:644.520000pt;}
.yc_c00420{bottom:676.520000pt;}
.yb_c00420{bottom:708.520000pt;}
.ya_c00420{bottom:740.520000pt;}
.y9_c00420{bottom:772.520000pt;}
.y8_c00420{bottom:804.520000pt;}
.y7_c00420{bottom:836.520000pt;}
.y6_c00420{bottom:868.520000pt;}
.y5_c00420{bottom:900.520000pt;}
.y4_c00420{bottom:932.520000pt;}
.y3_c00420{bottom:964.520000pt;}
.y2_c00420{bottom:1011.880000pt;}
.h8_c00420{height:17.116093pt;}
.h5_c00420{height:24.000000pt;}
.h6_c00420{height:36.561920pt;}
.h7_c00420{height:41.920000pt;}
.h3_c00420{height:49.408000pt;}
.h9_c00420{height:50.346667pt;}
.h4_c00420{height:50.928601pt;}
.h2_c00420{height:1067.880000pt;}
.h0_c00420{height:1122.520000pt;}
.h1_c00420{height:1122.666667pt;}
.w5_c00420{width:14.826667pt;}
.w3_c00420{width:481.600000pt;}
.w4_c00420{width:606.080000pt;}
.w2_c00420{width:767.960000pt;}
.w0_c00420{width:793.720000pt;}
.w1_c00420{width:794.000000pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:12.880000pt;}
.x6_c00420{left:39.986667pt;}
.x2_c00420{left:100.480133pt;}
.x7_c00420{left:110.480000pt;}
.x3_c00420{left:133.359333pt;}
.x5_c00420{left:157.520000pt;}
.x8_c00420{left:166.844667pt;}
.x4_c00420{left:192.446267pt;}
.x9_c00420{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9872b886d5c5404c35afc323.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;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_c00421;src:url('chunks/assets/font_83ad1e9270ddbf99c4cf6fed.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_510b61393240d1063bd49bab.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00421{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls2_c00421{letter-spacing:0.000000px;}
.ls4_c00421{letter-spacing:0.202464px;}
.ls5_c00421{letter-spacing:0.239760px;}
.ls3_c00421{letter-spacing:0.399600px;}
.ls0_c00421{letter-spacing:5.976000px;}
.ls1_c00421{letter-spacing:6.159920px;}
.sc__c00421{text-shadow:none;}
.sc1_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00421{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc1_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00421{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00421{word-spacing:-15.051600px;}
.ws1_c00421{word-spacing:0.000000px;}
._0_c00421{width:1.173960px;}
.fc0_c00421{color:rgb(0,0,0);}
.fs2_c00421{font-size:53.280000px;}
.fs3_c00421{font-size:60.000000px;}
.fs0_c00421{font-size:72.000000px;}
.fs1_c00421{font-size:74.215901px;}
.y0_c00421{bottom:0.000000px;}
.y25_c00421{bottom:3.120000px;}
.y23_c00421{bottom:18.720000px;}
.y21_c00421{bottom:34.560000px;}
.y24_c00421{bottom:34.744580px;}
.y1_c00421{bottom:54.000000px;}
.y1f_c00421{bottom:76.725000px;}
.y22_c00421{bottom:103.365000px;}
.y1e_c00421{bottom:112.725000px;}
.y1d_c00421{bottom:148.725000px;}
.y1c_c00421{bottom:184.725000px;}
.y1b_c00421{bottom:220.725000px;}
.y1a_c00421{bottom:256.725000px;}
.y19_c00421{bottom:292.725000px;}
.y18_c00421{bottom:328.725000px;}
.y17_c00421{bottom:364.725000px;}
.y16_c00421{bottom:400.725000px;}
.y15_c00421{bottom:436.725000px;}
.y14_c00421{bottom:472.725000px;}
.y13_c00421{bottom:509.085000px;}
.y20_c00421{bottom:515.205000px;}
.y12_c00421{bottom:545.085000px;}
.y11_c00421{bottom:581.085000px;}
.y10_c00421{bottom:617.085000px;}
.yf_c00421{bottom:653.085000px;}
.ye_c00421{bottom:689.085000px;}
.yd_c00421{bottom:725.085000px;}
.yc_c00421{bottom:761.085000px;}
.yb_c00421{bottom:797.085000px;}
.ya_c00421{bottom:833.085000px;}
.y9_c00421{bottom:869.085000px;}
.y8_c00421{bottom:905.085000px;}
.y7_c00421{bottom:941.085000px;}
.y6_c00421{bottom:977.085000px;}
.y5_c00421{bottom:1013.085000px;}
.y4_c00421{bottom:1049.085000px;}
.y3_c00421{bottom:1085.085000px;}
.y2_c00421{bottom:1138.365000px;}
.h7_c00421{height:19.255605px;}
.h6_c00421{height:41.132160px;}
.h5_c00421{height:47.160000px;}
.h3_c00421{height:55.584000px;}
.h8_c00421{height:56.640000px;}
.h4_c00421{height:57.294676px;}
.h2_c00421{height:1201.365000px;}
.h0_c00421{height:1262.835000px;}
.h1_c00421{height:1263.000000px;}
.w5_c00421{width:16.680000px;}
.w4_c00421{width:476.280000px;}
.w3_c00421{width:643.320000px;}
.w2_c00421{width:863.955000px;}
.w0_c00421{width:892.935000px;}
.w1_c00421{width:893.250000px;}
.x0_c00421{left:0.000000px;}
.x8_c00421{left:3.628650px;}
.x1_c00421{left:14.490000px;}
.x6_c00421{left:95.872800px;}
.x2_c00421{left:113.040150px;}
.x5_c00421{left:125.730000px;}
.x3_c00421{left:150.029250px;}
.x7_c00421{left:205.650000px;}
.x9_c00421{left:213.698250px;}
.x4_c00421{left:216.502050px;}
.xa_c00421{left:768.254608px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls2_c00421{letter-spacing:0.000000pt;}
.ls4_c00421{letter-spacing:0.179968pt;}
.ls5_c00421{letter-spacing:0.213120pt;}
.ls3_c00421{letter-spacing:0.355200pt;}
.ls0_c00421{letter-spacing:5.312000pt;}
.ls1_c00421{letter-spacing:5.475484pt;}
.ws0_c00421{word-spacing:-13.379200pt;}
.ws1_c00421{word-spacing:0.000000pt;}
._0_c00421{width:1.043520pt;}
.fs2_c00421{font-size:47.360000pt;}
.fs3_c00421{font-size:53.333333pt;}
.fs0_c00421{font-size:64.000000pt;}
.fs1_c00421{font-size:65.969690pt;}
.y0_c00421{bottom:0.000000pt;}
.y25_c00421{bottom:2.773333pt;}
.y23_c00421{bottom:16.640000pt;}
.y21_c00421{bottom:30.720000pt;}
.y24_c00421{bottom:30.884071pt;}
.y1_c00421{bottom:48.000000pt;}
.y1f_c00421{bottom:68.200000pt;}
.y22_c00421{bottom:91.880000pt;}
.y1e_c00421{bottom:100.200000pt;}
.y1d_c00421{bottom:132.200000pt;}
.y1c_c00421{bottom:164.200000pt;}
.y1b_c00421{bottom:196.200000pt;}
.y1a_c00421{bottom:228.200000pt;}
.y19_c00421{bottom:260.200000pt;}
.y18_c00421{bottom:292.200000pt;}
.y17_c00421{bottom:324.200000pt;}
.y16_c00421{bottom:356.200000pt;}
.y15_c00421{bottom:388.200000pt;}
.y14_c00421{bottom:420.200000pt;}
.y13_c00421{bottom:452.520000pt;}
.y20_c00421{bottom:457.960000pt;}
.y12_c00421{bottom:484.520000pt;}
.y11_c00421{bottom:516.520000pt;}
.y10_c00421{bottom:548.520000pt;}
.yf_c00421{bottom:580.520000pt;}
.ye_c00421{bottom:612.520000pt;}
.yd_c00421{bottom:644.520000pt;}
.yc_c00421{bottom:676.520000pt;}
.yb_c00421{bottom:708.520000pt;}
.ya_c00421{bottom:740.520000pt;}
.y9_c00421{bottom:772.520000pt;}
.y8_c00421{bottom:804.520000pt;}
.y7_c00421{bottom:836.520000pt;}
.y6_c00421{bottom:868.520000pt;}
.y5_c00421{bottom:900.520000pt;}
.y4_c00421{bottom:932.520000pt;}
.y3_c00421{bottom:964.520000pt;}
.y2_c00421{bottom:1011.880000pt;}
.h7_c00421{height:17.116093pt;}
.h6_c00421{height:36.561920pt;}
.h5_c00421{height:41.920000pt;}
.h3_c00421{height:49.408000pt;}
.h8_c00421{height:50.346667pt;}
.h4_c00421{height:50.928601pt;}
.h2_c00421{height:1067.880000pt;}
.h0_c00421{height:1122.520000pt;}
.h1_c00421{height:1122.666667pt;}
.w5_c00421{width:14.826667pt;}
.w4_c00421{width:423.360000pt;}
.w3_c00421{width:571.840000pt;}
.w2_c00421{width:767.960000pt;}
.w0_c00421{width:793.720000pt;}
.w1_c00421{width:794.000000pt;}
.x0_c00421{left:0.000000pt;}
.x8_c00421{left:3.225467pt;}
.x1_c00421{left:12.880000pt;}
.x6_c00421{left:85.220267pt;}
.x2_c00421{left:100.480133pt;}
.x5_c00421{left:111.760000pt;}
.x3_c00421{left:133.359333pt;}
.x7_c00421{left:182.800000pt;}
.x9_c00421{left:189.954000pt;}
.x4_c00421{left:192.446267pt;}
.xa_c00421{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc9c32b94206c413199ea995.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;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_c00422;src:url('chunks/assets/font_d32f7a2bb71d0e7a27886cab.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_6a85d896eb87c130081cf2a3.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00422{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00422{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls2_c00422{letter-spacing:0.000000px;}
.ls4_c00422{letter-spacing:0.202464px;}
.ls6_c00422{letter-spacing:0.239760px;}
.ls3_c00422{letter-spacing:0.399600px;}
.ls7_c00422{letter-spacing:0.436896px;}
.ls5_c00422{letter-spacing:0.532722px;}
.ls0_c00422{letter-spacing:5.976000px;}
.ls1_c00422{letter-spacing:6.159920px;}
.sc__c00422{text-shadow:none;}
.sc1_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00422{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc1_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00422{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00422{word-spacing:0.000000px;}
._1_c00422{margin-left:-1.043476px;}
._0_c00422{width:1.115472px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs2_c00422{font-size:53.280000px;}
.fs3_c00422{font-size:54.919767px;}
.fs4_c00422{font-size:60.000000px;}
.fs0_c00422{font-size:72.000000px;}
.fs1_c00422{font-size:74.215901px;}
.y0_c00422{bottom:0.000000px;}
.y25_c00422{bottom:3.120000px;}
.y21_c00422{bottom:25.560000px;}
.y23_c00422{bottom:34.560000px;}
.y24_c00422{bottom:34.744580px;}
.y20_c00422{bottom:41.400000px;}
.y1_c00422{bottom:54.000000px;}
.y1e_c00422{bottom:112.725000px;}
.y1f_c00422{bottom:130.365000px;}
.y1d_c00422{bottom:148.725000px;}
.y1c_c00422{bottom:184.725000px;}
.y1b_c00422{bottom:220.725000px;}
.y1a_c00422{bottom:256.725000px;}
.y19_c00422{bottom:292.725000px;}
.y18_c00422{bottom:328.725000px;}
.y17_c00422{bottom:364.725000px;}
.y16_c00422{bottom:400.725000px;}
.y15_c00422{bottom:436.725000px;}
.y14_c00422{bottom:472.725000px;}
.y13_c00422{bottom:509.085000px;}
.y12_c00422{bottom:545.085000px;}
.y11_c00422{bottom:581.085000px;}
.y10_c00422{bottom:617.085000px;}
.yf_c00422{bottom:653.085000px;}
.ye_c00422{bottom:689.085000px;}
.yd_c00422{bottom:725.085000px;}
.y22_c00422{bottom:749.925000px;}
.yc_c00422{bottom:761.085000px;}
.yb_c00422{bottom:797.085000px;}
.ya_c00422{bottom:833.085000px;}
.y9_c00422{bottom:869.085000px;}
.y8_c00422{bottom:905.085000px;}
.y7_c00422{bottom:941.085000px;}
.y6_c00422{bottom:977.085000px;}
.y5_c00422{bottom:1013.085000px;}
.y4_c00422{bottom:1049.085000px;}
.y3_c00422{bottom:1085.085000px;}
.y2_c00422{bottom:1138.365000px;}
.h9_c00422{height:19.255605px;}
.h6_c00422{height:41.132160px;}
.h7_c00422{height:42.398060px;}
.h8_c00422{height:47.160000px;}
.h5_c00422{height:54.000000px;}
.h3_c00422{height:55.584000px;}
.ha_c00422{height:56.640000px;}
.h4_c00422{height:57.294676px;}
.h2_c00422{height:1201.365000px;}
.h0_c00422{height:1262.835000px;}
.h1_c00422{height:1263.000000px;}
.w5_c00422{width:16.680000px;}
.w3_c00422{width:330.840000px;}
.w4_c00422{width:438.840000px;}
.w2_c00422{width:863.955000px;}
.w0_c00422{width:892.935000px;}
.w1_c00422{width:893.250000px;}
.x0_c00422{left:0.000000px;}
.xb_c00422{left:3.240150px;}
.x6_c00422{left:8.371650px;}
.x1_c00422{left:14.490000px;}
.x9_c00422{left:48.910800px;}
.x2_c00422{left:113.040150px;}
.x3_c00422{left:150.029250px;}
.x7_c00422{left:198.232200px;}
.xa_c00422{left:205.290000px;}
.x4_c00422{left:216.502050px;}
.x8_c00422{left:231.238800px;}
.x5_c00422{left:265.050000px;}
.xc_c00422{left:768.254608px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls2_c00422{letter-spacing:0.000000pt;}
.ls4_c00422{letter-spacing:0.179968pt;}
.ls6_c00422{letter-spacing:0.213120pt;}
.ls3_c00422{letter-spacing:0.355200pt;}
.ls7_c00422{letter-spacing:0.388352pt;}
.ls5_c00422{letter-spacing:0.473530pt;}
.ls0_c00422{letter-spacing:5.312000pt;}
.ls1_c00422{letter-spacing:5.475484pt;}
.ws0_c00422{word-spacing:0.000000pt;}
._1_c00422{margin-left:-0.927534pt;}
._0_c00422{width:0.991531pt;}
.fs2_c00422{font-size:47.360000pt;}
.fs3_c00422{font-size:48.817571pt;}
.fs4_c00422{font-size:53.333333pt;}
.fs0_c00422{font-size:64.000000pt;}
.fs1_c00422{font-size:65.969690pt;}
.y0_c00422{bottom:0.000000pt;}
.y25_c00422{bottom:2.773333pt;}
.y21_c00422{bottom:22.720000pt;}
.y23_c00422{bottom:30.720000pt;}
.y24_c00422{bottom:30.884071pt;}
.y20_c00422{bottom:36.800000pt;}
.y1_c00422{bottom:48.000000pt;}
.y1e_c00422{bottom:100.200000pt;}
.y1f_c00422{bottom:115.880000pt;}
.y1d_c00422{bottom:132.200000pt;}
.y1c_c00422{bottom:164.200000pt;}
.y1b_c00422{bottom:196.200000pt;}
.y1a_c00422{bottom:228.200000pt;}
.y19_c00422{bottom:260.200000pt;}
.y18_c00422{bottom:292.200000pt;}
.y17_c00422{bottom:324.200000pt;}
.y16_c00422{bottom:356.200000pt;}
.y15_c00422{bottom:388.200000pt;}
.y14_c00422{bottom:420.200000pt;}
.y13_c00422{bottom:452.520000pt;}
.y12_c00422{bottom:484.520000pt;}
.y11_c00422{bottom:516.520000pt;}
.y10_c00422{bottom:548.520000pt;}
.yf_c00422{bottom:580.520000pt;}
.ye_c00422{bottom:612.520000pt;}
.yd_c00422{bottom:644.520000pt;}
.y22_c00422{bottom:666.600000pt;}
.yc_c00422{bottom:676.520000pt;}
.yb_c00422{bottom:708.520000pt;}
.ya_c00422{bottom:740.520000pt;}
.y9_c00422{bottom:772.520000pt;}
.y8_c00422{bottom:804.520000pt;}
.y7_c00422{bottom:836.520000pt;}
.y6_c00422{bottom:868.520000pt;}
.y5_c00422{bottom:900.520000pt;}
.y4_c00422{bottom:932.520000pt;}
.y3_c00422{bottom:964.520000pt;}
.y2_c00422{bottom:1011.880000pt;}
.h9_c00422{height:17.116093pt;}
.h6_c00422{height:36.561920pt;}
.h7_c00422{height:37.687165pt;}
.h8_c00422{height:41.920000pt;}
.h5_c00422{height:48.000000pt;}
.h3_c00422{height:49.408000pt;}
.ha_c00422{height:50.346667pt;}
.h4_c00422{height:50.928601pt;}
.h2_c00422{height:1067.880000pt;}
.h0_c00422{height:1122.520000pt;}
.h1_c00422{height:1122.666667pt;}
.w5_c00422{width:14.826667pt;}
.w3_c00422{width:294.080000pt;}
.w4_c00422{width:390.080000pt;}
.w2_c00422{width:767.960000pt;}
.w0_c00422{width:793.720000pt;}
.w1_c00422{width:794.000000pt;}
.x0_c00422{left:0.000000pt;}
.xb_c00422{left:2.880133pt;}
.x6_c00422{left:7.441467pt;}
.x1_c00422{left:12.880000pt;}
.x9_c00422{left:43.476267pt;}
.x2_c00422{left:100.480133pt;}
.x3_c00422{left:133.359333pt;}
.x7_c00422{left:176.206400pt;}
.xa_c00422{left:182.480000pt;}
.x4_c00422{left:192.446267pt;}
.x8_c00422{left:205.545600pt;}
.x5_c00422{left:235.600000pt;}
.xc_c00422{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df8ec200a6d168691bdc65ce.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_d75553362a9be6a59c3d5973.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;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:ff3_c00423;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00423;src:url('chunks/assets/font_f87e46ccb1d5b2b9913d2697.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00423{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00423{vertical-align:-24.480000px;}
.v0_c00423{vertical-align:0.000000px;}
.v2_c00423{vertical-align:27.360000px;}
.v1_c00423{vertical-align:30.240000px;}
.lsc_c00423{letter-spacing:0.000000px;}
.ls1_c00423{letter-spacing:0.181320px;}
.ls0_c00423{letter-spacing:0.207840px;}
.lse_c00423{letter-spacing:0.265680px;}
.ls10_c00423{letter-spacing:0.318816px;}
.ls5_c00423{letter-spacing:0.404040px;}
.ls13_c00423{letter-spacing:0.478224px;}
.ls12_c00423{letter-spacing:0.531360px;}
.ls8_c00423{letter-spacing:0.547713px;}
.ls11_c00423{letter-spacing:0.584496px;}
.lsf_c00423{letter-spacing:0.602485px;}
.ls7_c00423{letter-spacing:0.712027px;}
.ls9_c00423{letter-spacing:4.067856px;}
.ls6_c00423{letter-spacing:4.723200px;}
.lsd_c00423{letter-spacing:5.430672px;}
.lsa_c00423{letter-spacing:5.976000px;}
.ls3_c00423{letter-spacing:5.980200px;}
.ls2_c00423{letter-spacing:5.993400px;}
.lsb_c00423{letter-spacing:6.159920px;}
.ls4_c00423{letter-spacing:54.864000px;}
.sc__c00423{text-shadow:none;}
.sc1_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00423{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc1_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00423{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00423{word-spacing:-21.043152px;}
.ws3_c00423{word-spacing:-17.630284px;}
.ws4_c00423{word-spacing:-17.465970px;}
.ws1_c00423{word-spacing:-11.609280px;}
.ws2_c00423{word-spacing:-10.008000px;}
.ws5_c00423{word-spacing:0.000000px;}
._7_c00423{margin-left:-3.719520px;}
._8_c00423{margin-left:-2.715840px;}
._1_c00423{margin-left:-1.179360px;}
._0_c00423{width:1.080000px;}
._5_c00423{width:2.736000px;}
._6_c00423{width:4.320000px;}
._2_c00423{width:9.000000px;}
._3_c00423{width:14.400000px;}
._4_c00423{width:18.792000px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs5_c00423{font-size:36.000000px;}
.fs3_c00423{font-size:38.880000px;}
.fs2_c00423{font-size:41.760000px;}
.fs4_c00423{font-size:56.160000px;}
.fs6_c00423{font-size:59.040000px;}
.fs8_c00423{font-size:60.000000px;}
.fs7_c00423{font-size:60.857039px;}
.fs0_c00423{font-size:72.000000px;}
.fs1_c00423{font-size:74.215901px;}
.y0_c00423{bottom:0.000000px;}
.y2a_c00423{bottom:3.120000px;}
.y29_c00423{bottom:34.744580px;}
.y1_c00423{bottom:54.000000px;}
.y28_c00423{bottom:61.605000px;}
.y27_c00423{bottom:72.765000px;}
.y25_c00423{bottom:90.401040px;}
.y26_c00423{bottom:90.405000px;}
.y24_c00423{bottom:113.805000px;}
.y23_c00423{bottom:131.445000px;}
.y22_c00423{bottom:142.965000px;}
.y21_c00423{bottom:149.085000px;}
.y20_c00423{bottom:175.725000px;}
.y1f_c00423{bottom:207.405000px;}
.y1e_c00423{bottom:228.285000px;}
.y1d_c00423{bottom:264.285000px;}
.y1c_c00423{bottom:300.285000px;}
.y1b_c00423{bottom:321.525000px;}
.y1a_c00423{bottom:342.405000px;}
.y19_c00423{bottom:378.405000px;}
.y18_c00423{bottom:414.405000px;}
.y17_c00423{bottom:450.405000px;}
.y16_c00423{bottom:471.285000px;}
.y15_c00423{bottom:492.525000px;}
.y14_c00423{bottom:528.525000px;}
.y13_c00423{bottom:549.405000px;}
.y12_c00423{bottom:570.285000px;}
.y11_c00423{bottom:606.285000px;}
.y10_c00423{bottom:642.285000px;}
.yf_c00423{bottom:678.285000px;}
.ye_c00423{bottom:714.285000px;}
.yd_c00423{bottom:750.285000px;}
.yc_c00423{bottom:786.285000px;}
.yb_c00423{bottom:822.285000px;}
.ya_c00423{bottom:858.645000px;}
.y9_c00423{bottom:894.645000px;}
.y8_c00423{bottom:930.645000px;}
.y7_c00423{bottom:951.525000px;}
.y6_c00423{bottom:972.405000px;}
.y5_c00423{bottom:1008.405000px;}
.y4_c00423{bottom:1046.925000px;}
.y3_c00423{bottom:1085.085000px;}
.y2_c00423{bottom:1138.365000px;}
.h9_c00423{height:19.255605px;}
.h6_c00423{height:32.616000px;}
.h7_c00423{height:46.981634px;}
.h8_c00423{height:53.490240px;}
.ha_c00423{height:56.640000px;}
.h4_c00423{height:57.294676px;}
.h3_c00423{height:65.232000px;}
.h5_c00423{height:68.074560px;}
.h2_c00423{height:1201.365000px;}
.h0_c00423{height:1262.835000px;}
.h1_c00423{height:1263.000000px;}
.w3_c00423{width:16.680000px;}
.w2_c00423{width:863.955000px;}
.w0_c00423{width:892.935000px;}
.w1_c00423{width:893.250000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:14.490000px;}
.x2_c00423{left:113.040150px;}
.xa_c00423{left:140.037600px;}
.x3_c00423{left:150.029250px;}
.x14_c00423{left:169.723350px;}
.x4_c00423{left:216.502050px;}
.x15_c00423{left:247.240800px;}
.x16_c00423{left:312.263250px;}
.xb_c00423{left:390.308700px;}
.x5_c00423{left:419.718000px;}
.xc_c00423{left:425.739600px;}
.xf_c00423{left:448.947900px;}
.x10_c00423{left:468.102450px;}
.xd_c00423{left:497.645850px;}
.x11_c00423{left:503.839200px;}
.x6_c00423{left:523.625550px;}
.xe_c00423{left:528.054900px;}
.x7_c00423{left:652.302300px;}
.x8_c00423{left:657.306150px;}
.x9_c00423{left:667.004550px;}
.x12_c00423{left:706.915650px;}
.x13_c00423{left:736.929900px;}
.x17_c00423{left:768.254608px;}
@media print{
.v3_c00423{vertical-align:-21.760000pt;}
.v0_c00423{vertical-align:0.000000pt;}
.v2_c00423{vertical-align:24.320000pt;}
.v1_c00423{vertical-align:26.880000pt;}
.lsc_c00423{letter-spacing:0.000000pt;}
.ls1_c00423{letter-spacing:0.161173pt;}
.ls0_c00423{letter-spacing:0.184747pt;}
.lse_c00423{letter-spacing:0.236160pt;}
.ls10_c00423{letter-spacing:0.283392pt;}
.ls5_c00423{letter-spacing:0.359147pt;}
.ls13_c00423{letter-spacing:0.425088pt;}
.ls12_c00423{letter-spacing:0.472320pt;}
.ls8_c00423{letter-spacing:0.486856pt;}
.ls11_c00423{letter-spacing:0.519552pt;}
.lsf_c00423{letter-spacing:0.535542pt;}
.ls7_c00423{letter-spacing:0.632913pt;}
.ls9_c00423{letter-spacing:3.615872pt;}
.ls6_c00423{letter-spacing:4.198400pt;}
.lsd_c00423{letter-spacing:4.827264pt;}
.lsa_c00423{letter-spacing:5.312000pt;}
.ls3_c00423{letter-spacing:5.315733pt;}
.ls2_c00423{letter-spacing:5.327467pt;}
.lsb_c00423{letter-spacing:5.475484pt;}
.ls4_c00423{letter-spacing:48.768000pt;}
.ws0_c00423{word-spacing:-18.705024pt;}
.ws3_c00423{word-spacing:-15.671364pt;}
.ws4_c00423{word-spacing:-15.525307pt;}
.ws1_c00423{word-spacing:-10.319360pt;}
.ws2_c00423{word-spacing:-8.896000pt;}
.ws5_c00423{word-spacing:0.000000pt;}
._7_c00423{margin-left:-3.306240pt;}
._8_c00423{margin-left:-2.414080pt;}
._1_c00423{margin-left:-1.048320pt;}
._0_c00423{width:0.960000pt;}
._5_c00423{width:2.432000pt;}
._6_c00423{width:3.840000pt;}
._2_c00423{width:8.000000pt;}
._3_c00423{width:12.800000pt;}
._4_c00423{width:16.704000pt;}
.fs5_c00423{font-size:32.000000pt;}
.fs3_c00423{font-size:34.560000pt;}
.fs2_c00423{font-size:37.120000pt;}
.fs4_c00423{font-size:49.920000pt;}
.fs6_c00423{font-size:52.480000pt;}
.fs8_c00423{font-size:53.333333pt;}
.fs7_c00423{font-size:54.095146pt;}
.fs0_c00423{font-size:64.000000pt;}
.fs1_c00423{font-size:65.969690pt;}
.y0_c00423{bottom:0.000000pt;}
.y2a_c00423{bottom:2.773333pt;}
.y29_c00423{bottom:30.884071pt;}
.y1_c00423{bottom:48.000000pt;}
.y28_c00423{bottom:54.760000pt;}
.y27_c00423{bottom:64.680000pt;}
.y25_c00423{bottom:80.356480pt;}
.y26_c00423{bottom:80.360000pt;}
.y24_c00423{bottom:101.160000pt;}
.y23_c00423{bottom:116.840000pt;}
.y22_c00423{bottom:127.080000pt;}
.y21_c00423{bottom:132.520000pt;}
.y20_c00423{bottom:156.200000pt;}
.y1f_c00423{bottom:184.360000pt;}
.y1e_c00423{bottom:202.920000pt;}
.y1d_c00423{bottom:234.920000pt;}
.y1c_c00423{bottom:266.920000pt;}
.y1b_c00423{bottom:285.800000pt;}
.y1a_c00423{bottom:304.360000pt;}
.y19_c00423{bottom:336.360000pt;}
.y18_c00423{bottom:368.360000pt;}
.y17_c00423{bottom:400.360000pt;}
.y16_c00423{bottom:418.920000pt;}
.y15_c00423{bottom:437.800000pt;}
.y14_c00423{bottom:469.800000pt;}
.y13_c00423{bottom:488.360000pt;}
.y12_c00423{bottom:506.920000pt;}
.y11_c00423{bottom:538.920000pt;}
.y10_c00423{bottom:570.920000pt;}
.yf_c00423{bottom:602.920000pt;}
.ye_c00423{bottom:634.920000pt;}
.yd_c00423{bottom:666.920000pt;}
.yc_c00423{bottom:698.920000pt;}
.yb_c00423{bottom:730.920000pt;}
.ya_c00423{bottom:763.240000pt;}
.y9_c00423{bottom:795.240000pt;}
.y8_c00423{bottom:827.240000pt;}
.y7_c00423{bottom:845.800000pt;}
.y6_c00423{bottom:864.360000pt;}
.y5_c00423{bottom:896.360000pt;}
.y4_c00423{bottom:930.600000pt;}
.y3_c00423{bottom:964.520000pt;}
.y2_c00423{bottom:1011.880000pt;}
.h9_c00423{height:17.116093pt;}
.h6_c00423{height:28.992000pt;}
.h7_c00423{height:41.761453pt;}
.h8_c00423{height:47.546880pt;}
.ha_c00423{height:50.346667pt;}
.h4_c00423{height:50.928601pt;}
.h3_c00423{height:57.984000pt;}
.h5_c00423{height:60.510720pt;}
.h2_c00423{height:1067.880000pt;}
.h0_c00423{height:1122.520000pt;}
.h1_c00423{height:1122.666667pt;}
.w3_c00423{width:14.826667pt;}
.w2_c00423{width:767.960000pt;}
.w0_c00423{width:793.720000pt;}
.w1_c00423{width:794.000000pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:12.880000pt;}
.x2_c00423{left:100.480133pt;}
.xa_c00423{left:124.477867pt;}
.x3_c00423{left:133.359333pt;}
.x14_c00423{left:150.865200pt;}
.x4_c00423{left:192.446267pt;}
.x15_c00423{left:219.769600pt;}
.x16_c00423{left:277.567333pt;}
.xb_c00423{left:346.941067pt;}
.x5_c00423{left:373.082667pt;}
.xc_c00423{left:378.435200pt;}
.xf_c00423{left:399.064800pt;}
.x10_c00423{left:416.091067pt;}
.xd_c00423{left:442.351867pt;}
.x11_c00423{left:447.857067pt;}
.x6_c00423{left:465.444933pt;}
.xe_c00423{left:469.382133pt;}
.x7_c00423{left:579.824267pt;}
.x8_c00423{left:584.272133pt;}
.x9_c00423{left:592.892933pt;}
.x12_c00423{left:628.369467pt;}
.x13_c00423{left:655.048800pt;}
.x17_c00423{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_730220c8a8931cd44f40863f.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_ed902593232c7d866110bc09.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;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:ff3_c00424;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00424;src:url('chunks/assets/font_19055787216daab4059d2c79.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00424;src:url('chunks/assets/font_fc00453e01a0e828d70a274d.woff2')format("woff");}.ff6_c00424{font-family:ff6_c00424;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00424{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00424{vertical-align:-24.480000px;}
.v0_c00424{vertical-align:0.000000px;}
.v1_c00424{vertical-align:24.480000px;}
.v2_c00424{vertical-align:30.240000px;}
.ls11_c00424{letter-spacing:0.000000px;}
.ls9_c00424{letter-spacing:0.120840px;}
.lse_c00424{letter-spacing:0.236160px;}
.lsf_c00424{letter-spacing:0.265680px;}
.ls1_c00424{letter-spacing:0.295200px;}
.lsa_c00424{letter-spacing:0.421440px;}
.ls1b_c00424{letter-spacing:0.425088px;}
.ls6_c00424{letter-spacing:0.513648px;}
.ls7_c00424{letter-spacing:0.525456px;}
.ls4_c00424{letter-spacing:0.531360px;}
.ls3_c00424{letter-spacing:0.560880px;}
.ls14_c00424{letter-spacing:0.584496px;}
.ls13_c00424{letter-spacing:0.602485px;}
.ls5_c00424{letter-spacing:0.657256px;}
.ls12_c00424{letter-spacing:0.696672px;}
.ls2_c00424{letter-spacing:0.712027px;}
.ls15_c00424{letter-spacing:0.743904px;}
.lsb_c00424{letter-spacing:0.771240px;}
.ls18_c00424{letter-spacing:5.248656px;}
.ls16_c00424{letter-spacing:5.430672px;}
.lsd_c00424{letter-spacing:5.431680px;}
.ls17_c00424{letter-spacing:5.461200px;}
.ls1a_c00424{letter-spacing:5.780016px;}
.ls8_c00424{letter-spacing:5.975400px;}
.ls0_c00424{letter-spacing:5.976000px;}
.ls10_c00424{letter-spacing:6.159920px;}
.lsc_c00424{letter-spacing:9.800640px;}
.ls19_c00424{letter-spacing:9.812448px;}
.sc__c00424{text-shadow:none;}
.sc1_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00424{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc1_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00424{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00424{word-spacing:-21.874320px;}
.ws6_c00424{word-spacing:-21.661776px;}
.ws4_c00424{word-spacing:-21.043152px;}
.ws0_c00424{word-spacing:-17.630284px;}
.ws2_c00424{word-spacing:-17.575513px;}
.ws3_c00424{word-spacing:-17.520742px;}
.ws1_c00424{word-spacing:-10.008000px;}
.ws7_c00424{word-spacing:0.000000px;}
._10_c00424{margin-left:-10.408752px;}
._f_c00424{margin-left:-9.346032px;}
._11_c00424{margin-left:-8.318736px;}
._2_c00424{margin-left:-1.180800px;}
._3_c00424{width:1.180800px;}
._6_c00424{width:2.563200px;}
._a_c00424{width:3.744000px;}
._1_c00424{width:4.752000px;}
._9_c00424{width:5.904000px;}
._d_c00424{width:7.200000px;}
._8_c00424{width:8.496000px;}
._5_c00424{width:10.080000px;}
._4_c00424{width:12.096000px;}
._7_c00424{width:13.392000px;}
._0_c00424{width:15.768000px;}
._c_c00424{width:21.096000px;}
._e_c00424{width:39.024000px;}
._b_c00424{width:45.000000px;}
.fc0_c00424{color:rgb(0,0,0);}
.fs5_c00424{font-size:36.000000px;}
.fs7_c00424{font-size:41.760000px;}
.fs6_c00424{font-size:56.160000px;}
.fs3_c00424{font-size:59.040000px;}
.fs8_c00424{font-size:60.000000px;}
.fs4_c00424{font-size:60.857039px;}
.fs2_c00424{font-size:64.800000px;}
.fs0_c00424{font-size:72.000000px;}
.fs1_c00424{font-size:74.215901px;}
.y0_c00424{bottom:0.000000px;}
.y30_c00424{bottom:3.120000px;}
.y2f_c00424{bottom:34.744580px;}
.y1_c00424{bottom:54.000000px;}
.y2e_c00424{bottom:55.485000px;}
.y2d_c00424{bottom:61.605000px;}
.y2c_c00424{bottom:72.765000px;}
.y2b_c00424{bottom:78.885000px;}
.y2a_c00424{bottom:90.405000px;}
.y29_c00424{bottom:90.406800px;}
.y28_c00424{bottom:114.165000px;}
.y27_c00424{bottom:140.805000px;}
.y26_c00424{bottom:307.125000px;}
.y25_c00424{bottom:328.005000px;}
.y24_c00424{bottom:349.245000px;}
.y23_c00424{bottom:370.125000px;}
.y22_c00424{bottom:391.005000px;}
.y21_c00424{bottom:412.245000px;}
.y20_c00424{bottom:433.125000px;}
.y1f_c00424{bottom:454.005000px;}
.y1e_c00424{bottom:475.245000px;}
.y1d_c00424{bottom:511.245000px;}
.y1c_c00424{bottom:532.125000px;}
.y1b_c00424{bottom:553.365000px;}
.y1a_c00424{bottom:574.245000px;}
.y19_c00424{bottom:595.125000px;}
.y18_c00424{bottom:631.125000px;}
.y17_c00424{bottom:667.125000px;}
.y16_c00424{bottom:695.564640px;}
.y15_c00424{bottom:712.848600px;}
.y14_c00424{bottom:730.486800px;}
.y12_c00424{bottom:748.121040px;}
.y13_c00424{bottom:748.125000px;}
.y11_c00424{bottom:765.405000px;}
.yf_c00424{bottom:790.601040px;}
.y10_c00424{bottom:790.605000px;}
.ye_c00424{bottom:807.885000px;}
.yd_c00424{bottom:807.886800px;}
.yc_c00424{bottom:825.525000px;}
.yb_c00424{bottom:850.725000px;}
.ya_c00424{bottom:878.085000px;}
.y9_c00424{bottom:906.525000px;}
.y8_c00424{bottom:935.325000px;}
.y7_c00424{bottom:970.965000px;}
.y6_c00424{bottom:1006.965000px;}
.y5_c00424{bottom:1027.845000px;}
.y4_c00424{bottom:1063.845000px;}
.y3_c00424{bottom:1085.085000px;}
.y2_c00424{bottom:1138.365000px;}
.hc_c00424{height:19.255605px;}
.hb_c00424{height:32.616000px;}
.h8_c00424{height:46.981634px;}
.h5_c00424{height:47.988281px;}
.h7_c00424{height:53.490240px;}
.hd_c00424{height:56.640000px;}
.h9_c00424{height:57.096000px;}
.h4_c00424{height:57.294676px;}
.h6_c00424{height:58.708800px;}
.h3_c00424{height:65.232000px;}
.ha_c00424{height:68.074560px;}
.h2_c00424{height:1201.365000px;}
.h0_c00424{height:1262.835000px;}
.h1_c00424{height:1263.000000px;}
.w3_c00424{width:16.680000px;}
.w2_c00424{width:863.955000px;}
.w0_c00424{width:892.935000px;}
.w1_c00424{width:893.250000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:14.490000px;}
.x2_c00424{left:113.040150px;}
.x1d_c00424{left:133.034550px;}
.x3_c00424{left:150.029250px;}
.x15_c00424{left:154.738350px;}
.x16_c00424{left:179.712900px;}
.x29_c00424{left:203.060250px;}
.x4_c00424{left:216.502050px;}
.x17_c00424{left:225.580800px;}
.x2a_c00424{left:228.874500px;}
.x1e_c00424{left:248.964450px;}
.x18_c00424{left:253.900200px;}
.x23_c00424{left:264.569850px;}
.x24_c00424{left:280.571400px;}
.x19_c00424{left:291.428400px;}
.x1a_c00424{left:310.583100px;}
.x25_c00424{left:320.587950px;}
.x9_c00424{left:325.656150px;}
.x26_c00424{left:336.412800px;}
.x10_c00424{left:346.010700px;}
.x27_c00424{left:375.134400px;}
.xf_c00424{left:377.666700px;}
.xa_c00424{left:381.661800px;}
.xb_c00424{left:386.161800px;}
.x28_c00424{left:395.128800px;}
.x7_c00424{left:398.065800px;}
.x8_c00424{left:411.061500px;}
.xc_c00424{left:438.162600px;}
.xd_c00424{left:442.662600px;}
.x5_c00424{left:467.651400px;}
.x6_c00424{left:492.598650px;}
.xe_c00424{left:497.147850px;}
.x1b_c00424{left:516.103950px;}
.x1c_c00424{left:555.268500px;}
.x11_c00424{left:595.795950px;}
.x21_c00424{left:614.128800px;}
.x12_c00424{left:620.770350px;}
.x1f_c00424{left:664.827450px;}
.x13_c00424{left:680.791650px;}
.x22_c00424{left:701.121450px;}
.x14_c00424{left:705.766050px;}
.x20_c00424{left:745.386150px;}
.x2b_c00424{left:768.254608px;}
@media print{
.v3_c00424{vertical-align:-21.760000pt;}
.v0_c00424{vertical-align:0.000000pt;}
.v1_c00424{vertical-align:21.760000pt;}
.v2_c00424{vertical-align:26.880000pt;}
.ls11_c00424{letter-spacing:0.000000pt;}
.ls9_c00424{letter-spacing:0.107413pt;}
.lse_c00424{letter-spacing:0.209920pt;}
.lsf_c00424{letter-spacing:0.236160pt;}
.ls1_c00424{letter-spacing:0.262400pt;}
.lsa_c00424{letter-spacing:0.374613pt;}
.ls1b_c00424{letter-spacing:0.377856pt;}
.ls6_c00424{letter-spacing:0.456576pt;}
.ls7_c00424{letter-spacing:0.467072pt;}
.ls4_c00424{letter-spacing:0.472320pt;}
.ls3_c00424{letter-spacing:0.498560pt;}
.ls14_c00424{letter-spacing:0.519552pt;}
.ls13_c00424{letter-spacing:0.535542pt;}
.ls5_c00424{letter-spacing:0.584228pt;}
.ls12_c00424{letter-spacing:0.619264pt;}
.ls2_c00424{letter-spacing:0.632913pt;}
.ls15_c00424{letter-spacing:0.661248pt;}
.lsb_c00424{letter-spacing:0.685547pt;}
.ls18_c00424{letter-spacing:4.665472pt;}
.ls16_c00424{letter-spacing:4.827264pt;}
.lsd_c00424{letter-spacing:4.828160pt;}
.ls17_c00424{letter-spacing:4.854400pt;}
.ls1a_c00424{letter-spacing:5.137792pt;}
.ls8_c00424{letter-spacing:5.311467pt;}
.ls0_c00424{letter-spacing:5.312000pt;}
.ls10_c00424{letter-spacing:5.475484pt;}
.lsc_c00424{letter-spacing:8.711680pt;}
.ls19_c00424{letter-spacing:8.722176pt;}
.ws5_c00424{word-spacing:-19.443840pt;}
.ws6_c00424{word-spacing:-19.254912pt;}
.ws4_c00424{word-spacing:-18.705024pt;}
.ws0_c00424{word-spacing:-15.671364pt;}
.ws2_c00424{word-spacing:-15.622678pt;}
.ws3_c00424{word-spacing:-15.573992pt;}
.ws1_c00424{word-spacing:-8.896000pt;}
.ws7_c00424{word-spacing:0.000000pt;}
._10_c00424{margin-left:-9.252224pt;}
._f_c00424{margin-left:-8.307584pt;}
._11_c00424{margin-left:-7.394432pt;}
._2_c00424{margin-left:-1.049600pt;}
._3_c00424{width:1.049600pt;}
._6_c00424{width:2.278400pt;}
._a_c00424{width:3.328000pt;}
._1_c00424{width:4.224000pt;}
._9_c00424{width:5.248000pt;}
._d_c00424{width:6.400000pt;}
._8_c00424{width:7.552000pt;}
._5_c00424{width:8.960000pt;}
._4_c00424{width:10.752000pt;}
._7_c00424{width:11.904000pt;}
._0_c00424{width:14.016000pt;}
._c_c00424{width:18.752000pt;}
._e_c00424{width:34.688000pt;}
._b_c00424{width:40.000000pt;}
.fs5_c00424{font-size:32.000000pt;}
.fs7_c00424{font-size:37.120000pt;}
.fs6_c00424{font-size:49.920000pt;}
.fs3_c00424{font-size:52.480000pt;}
.fs8_c00424{font-size:53.333333pt;}
.fs4_c00424{font-size:54.095146pt;}
.fs2_c00424{font-size:57.600000pt;}
.fs0_c00424{font-size:64.000000pt;}
.fs1_c00424{font-size:65.969690pt;}
.y0_c00424{bottom:0.000000pt;}
.y30_c00424{bottom:2.773333pt;}
.y2f_c00424{bottom:30.884071pt;}
.y1_c00424{bottom:48.000000pt;}
.y2e_c00424{bottom:49.320000pt;}
.y2d_c00424{bottom:54.760000pt;}
.y2c_c00424{bottom:64.680000pt;}
.y2b_c00424{bottom:70.120000pt;}
.y2a_c00424{bottom:80.360000pt;}
.y29_c00424{bottom:80.361600pt;}
.y28_c00424{bottom:101.480000pt;}
.y27_c00424{bottom:125.160000pt;}
.y26_c00424{bottom:273.000000pt;}
.y25_c00424{bottom:291.560000pt;}
.y24_c00424{bottom:310.440000pt;}
.y23_c00424{bottom:329.000000pt;}
.y22_c00424{bottom:347.560000pt;}
.y21_c00424{bottom:366.440000pt;}
.y20_c00424{bottom:385.000000pt;}
.y1f_c00424{bottom:403.560000pt;}
.y1e_c00424{bottom:422.440000pt;}
.y1d_c00424{bottom:454.440000pt;}
.y1c_c00424{bottom:473.000000pt;}
.y1b_c00424{bottom:491.880000pt;}
.y1a_c00424{bottom:510.440000pt;}
.y19_c00424{bottom:529.000000pt;}
.y18_c00424{bottom:561.000000pt;}
.y17_c00424{bottom:593.000000pt;}
.y16_c00424{bottom:618.279680pt;}
.y15_c00424{bottom:633.643200pt;}
.y14_c00424{bottom:649.321600pt;}
.y12_c00424{bottom:664.996480pt;}
.y13_c00424{bottom:665.000000pt;}
.y11_c00424{bottom:680.360000pt;}
.yf_c00424{bottom:702.756480pt;}
.y10_c00424{bottom:702.760000pt;}
.ye_c00424{bottom:718.120000pt;}
.yd_c00424{bottom:718.121600pt;}
.yc_c00424{bottom:733.800000pt;}
.yb_c00424{bottom:756.200000pt;}
.ya_c00424{bottom:780.520000pt;}
.y9_c00424{bottom:805.800000pt;}
.y8_c00424{bottom:831.400000pt;}
.y7_c00424{bottom:863.080000pt;}
.y6_c00424{bottom:895.080000pt;}
.y5_c00424{bottom:913.640000pt;}
.y4_c00424{bottom:945.640000pt;}
.y3_c00424{bottom:964.520000pt;}
.y2_c00424{bottom:1011.880000pt;}
.hc_c00424{height:17.116093pt;}
.hb_c00424{height:28.992000pt;}
.h8_c00424{height:41.761453pt;}
.h5_c00424{height:42.656250pt;}
.h7_c00424{height:47.546880pt;}
.hd_c00424{height:50.346667pt;}
.h9_c00424{height:50.752000pt;}
.h4_c00424{height:50.928601pt;}
.h6_c00424{height:52.185600pt;}
.h3_c00424{height:57.984000pt;}
.ha_c00424{height:60.510720pt;}
.h2_c00424{height:1067.880000pt;}
.h0_c00424{height:1122.520000pt;}
.h1_c00424{height:1122.666667pt;}
.w3_c00424{width:14.826667pt;}
.w2_c00424{width:767.960000pt;}
.w0_c00424{width:793.720000pt;}
.w1_c00424{width:794.000000pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:12.880000pt;}
.x2_c00424{left:100.480133pt;}
.x1d_c00424{left:118.252933pt;}
.x3_c00424{left:133.359333pt;}
.x15_c00424{left:137.545200pt;}
.x16_c00424{left:159.744800pt;}
.x29_c00424{left:180.498000pt;}
.x4_c00424{left:192.446267pt;}
.x17_c00424{left:200.516267pt;}
.x2a_c00424{left:203.444000pt;}
.x1e_c00424{left:221.301733pt;}
.x18_c00424{left:225.689067pt;}
.x23_c00424{left:235.173200pt;}
.x24_c00424{left:249.396800pt;}
.x19_c00424{left:259.047467pt;}
.x1a_c00424{left:276.073867pt;}
.x25_c00424{left:284.967067pt;}
.x9_c00424{left:289.472133pt;}
.x26_c00424{left:299.033600pt;}
.x10_c00424{left:307.565067pt;}
.x27_c00424{left:333.452800pt;}
.xf_c00424{left:335.703733pt;}
.xa_c00424{left:339.254933pt;}
.xb_c00424{left:343.254933pt;}
.x28_c00424{left:351.225600pt;}
.x7_c00424{left:353.836267pt;}
.x8_c00424{left:365.388000pt;}
.xc_c00424{left:389.477867pt;}
.xd_c00424{left:393.477867pt;}
.x5_c00424{left:415.690133pt;}
.x6_c00424{left:437.865467pt;}
.xe_c00424{left:441.909200pt;}
.x1b_c00424{left:458.759067pt;}
.x1c_c00424{left:493.572000pt;}
.x11_c00424{left:529.596400pt;}
.x21_c00424{left:545.892267pt;}
.x12_c00424{left:551.795867pt;}
.x1f_c00424{left:590.957733pt;}
.x13_c00424{left:605.148133pt;}
.x22_c00424{left:623.219067pt;}
.x14_c00424{left:627.347600pt;}
.x20_c00424{left:662.565467pt;}
.x2b_c00424{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_430df43b6f43c4547108d17a.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_b6d3d3884f99810bb39c8a55.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;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:ff3_c00425;src:url('chunks/assets/font_b31c9990c92e9797bae6d6ff.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00425{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00425{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00425{vertical-align:-24.480000px;}
.v0_c00425{vertical-align:0.000000px;}
.v1_c00425{vertical-align:30.240000px;}
.ls8_c00425{letter-spacing:0.000000px;}
.ls3_c00425{letter-spacing:0.202464px;}
.lsa_c00425{letter-spacing:0.265680px;}
.ls2_c00425{letter-spacing:0.279480px;}
.lsc_c00425{letter-spacing:0.282384px;}
.lsb_c00425{letter-spacing:0.399600px;}
.ls4_c00425{letter-spacing:0.399720px;}
.ls1_c00425{letter-spacing:0.458040px;}
.ls5_c00425{letter-spacing:0.532722px;}
.ls9_c00425{letter-spacing:5.335200px;}
.ls6_c00425{letter-spacing:5.976000px;}
.ls0_c00425{letter-spacing:5.983800px;}
.ls7_c00425{letter-spacing:6.159920px;}
.sc__c00425{text-shadow:none;}
.sc2_c00425{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00425{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc2_c00425{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00425{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00425{word-spacing:-20.947680px;}
.ws4_c00425{word-spacing:-15.800417px;}
.ws2_c00425{word-spacing:-15.211440px;}
.ws3_c00425{word-spacing:-14.811840px;}
.ws1_c00425{word-spacing:-10.008000px;}
.ws5_c00425{word-spacing:0.000000px;}
._1_c00425{width:1.003680px;}
._0_c00425{width:4.320000px;}
.fc1_c00425{color:rgb(79,129,189);}
.fc0_c00425{color:rgb(0,0,0);}
.fs4_c00425{font-size:36.000000px;}
.fs3_c00425{font-size:41.760000px;}
.fs6_c00425{font-size:53.280000px;}
.fs7_c00425{font-size:54.919767px;}
.fs2_c00425{font-size:56.160000px;}
.fs5_c00425{font-size:59.040000px;}
.fs8_c00425{font-size:60.000000px;}
.fs0_c00425{font-size:72.000000px;}
.fs1_c00425{font-size:74.215901px;}
.y1f_c00425{bottom:-5.040000px;}
.y0_c00425{bottom:0.000000px;}
.y21_c00425{bottom:3.120000px;}
.y1e_c00425{bottom:25.560000px;}
.y20_c00425{bottom:34.744580px;}
.y1d_c00425{bottom:41.400000px;}
.y1_c00425{bottom:54.000000px;}
.y1b_c00425{bottom:61.605000px;}
.y1a_c00425{bottom:88.245000px;}
.y19_c00425{bottom:337.725000px;}
.y18_c00425{bottom:373.725000px;}
.y17_c00425{bottom:409.725000px;}
.y16_c00425{bottom:445.725000px;}
.y1c_c00425{bottom:481.365000px;}
.y15_c00425{bottom:481.725000px;}
.y14_c00425{bottom:517.725000px;}
.y13_c00425{bottom:554.085000px;}
.y12_c00425{bottom:590.085000px;}
.y11_c00425{bottom:626.085000px;}
.y10_c00425{bottom:662.085000px;}
.yf_c00425{bottom:698.085000px;}
.ye_c00425{bottom:734.085000px;}
.yd_c00425{bottom:770.085000px;}
.yc_c00425{bottom:806.085000px;}
.yb_c00425{bottom:842.085000px;}
.ya_c00425{bottom:878.085000px;}
.y9_c00425{bottom:914.085000px;}
.y8_c00425{bottom:950.085000px;}
.y7_c00425{bottom:970.965000px;}
.y6_c00425{bottom:991.845000px;}
.y5_c00425{bottom:1013.085000px;}
.y4_c00425{bottom:1049.085000px;}
.y3_c00425{bottom:1085.085000px;}
.y2_c00425{bottom:1138.365000px;}
.ha_c00425{height:19.255605px;}
.h6_c00425{height:32.616000px;}
.h9_c00425{height:42.398060px;}
.h8_c00425{height:48.271680px;}
.h7_c00425{height:54.000000px;}
.hb_c00425{height:56.640000px;}
.h4_c00425{height:57.294676px;}
.h3_c00425{height:65.232000px;}
.h5_c00425{height:68.074560px;}
.h2_c00425{height:1201.365000px;}
.h0_c00425{height:1262.835000px;}
.h1_c00425{height:1263.000000px;}
.w4_c00425{width:16.680000px;}
.w3_c00425{width:464.400000px;}
.w2_c00425{width:863.955000px;}
.w0_c00425{width:892.935000px;}
.w1_c00425{width:893.250000px;}
.x0_c00425{left:0.000000px;}
.xc_c00425{left:3.240150px;}
.x8_c00425{left:9.673800px;}
.x1_c00425{left:14.490000px;}
.x2_c00425{left:113.040150px;}
.x9_c00425{left:144.354750px;}
.x3_c00425{left:150.029250px;}
.x7_c00425{left:205.290000px;}
.x5_c00425{left:207.016500px;}
.x4_c00425{left:216.502050px;}
.x6_c00425{left:283.011150px;}
.xa_c00425{left:296.645100px;}
.xb_c00425{left:315.355200px;}
.xd_c00425{left:768.254608px;}
@media print{
.v2_c00425{vertical-align:-21.760000pt;}
.v0_c00425{vertical-align:0.000000pt;}
.v1_c00425{vertical-align:26.880000pt;}
.ls8_c00425{letter-spacing:0.000000pt;}
.ls3_c00425{letter-spacing:0.179968pt;}
.lsa_c00425{letter-spacing:0.236160pt;}
.ls2_c00425{letter-spacing:0.248427pt;}
.lsc_c00425{letter-spacing:0.251008pt;}
.lsb_c00425{letter-spacing:0.355200pt;}
.ls4_c00425{letter-spacing:0.355307pt;}
.ls1_c00425{letter-spacing:0.407147pt;}
.ls5_c00425{letter-spacing:0.473530pt;}
.ls9_c00425{letter-spacing:4.742400pt;}
.ls6_c00425{letter-spacing:5.312000pt;}
.ls0_c00425{letter-spacing:5.318933pt;}
.ls7_c00425{letter-spacing:5.475484pt;}
.ws0_c00425{word-spacing:-18.620160pt;}
.ws4_c00425{word-spacing:-14.044815pt;}
.ws2_c00425{word-spacing:-13.521280pt;}
.ws3_c00425{word-spacing:-13.166080pt;}
.ws1_c00425{word-spacing:-8.896000pt;}
.ws5_c00425{word-spacing:0.000000pt;}
._1_c00425{width:0.892160pt;}
._0_c00425{width:3.840000pt;}
.fs4_c00425{font-size:32.000000pt;}
.fs3_c00425{font-size:37.120000pt;}
.fs6_c00425{font-size:47.360000pt;}
.fs7_c00425{font-size:48.817571pt;}
.fs2_c00425{font-size:49.920000pt;}
.fs5_c00425{font-size:52.480000pt;}
.fs8_c00425{font-size:53.333333pt;}
.fs0_c00425{font-size:64.000000pt;}
.fs1_c00425{font-size:65.969690pt;}
.y1f_c00425{bottom:-4.480000pt;}
.y0_c00425{bottom:0.000000pt;}
.y21_c00425{bottom:2.773333pt;}
.y1e_c00425{bottom:22.720000pt;}
.y20_c00425{bottom:30.884071pt;}
.y1d_c00425{bottom:36.800000pt;}
.y1_c00425{bottom:48.000000pt;}
.y1b_c00425{bottom:54.760000pt;}
.y1a_c00425{bottom:78.440000pt;}
.y19_c00425{bottom:300.200000pt;}
.y18_c00425{bottom:332.200000pt;}
.y17_c00425{bottom:364.200000pt;}
.y16_c00425{bottom:396.200000pt;}
.y1c_c00425{bottom:427.880000pt;}
.y15_c00425{bottom:428.200000pt;}
.y14_c00425{bottom:460.200000pt;}
.y13_c00425{bottom:492.520000pt;}
.y12_c00425{bottom:524.520000pt;}
.y11_c00425{bottom:556.520000pt;}
.y10_c00425{bottom:588.520000pt;}
.yf_c00425{bottom:620.520000pt;}
.ye_c00425{bottom:652.520000pt;}
.yd_c00425{bottom:684.520000pt;}
.yc_c00425{bottom:716.520000pt;}
.yb_c00425{bottom:748.520000pt;}
.ya_c00425{bottom:780.520000pt;}
.y9_c00425{bottom:812.520000pt;}
.y8_c00425{bottom:844.520000pt;}
.y7_c00425{bottom:863.080000pt;}
.y6_c00425{bottom:881.640000pt;}
.y5_c00425{bottom:900.520000pt;}
.y4_c00425{bottom:932.520000pt;}
.y3_c00425{bottom:964.520000pt;}
.y2_c00425{bottom:1011.880000pt;}
.ha_c00425{height:17.116093pt;}
.h6_c00425{height:28.992000pt;}
.h9_c00425{height:37.687165pt;}
.h8_c00425{height:42.908160pt;}
.h7_c00425{height:48.000000pt;}
.hb_c00425{height:50.346667pt;}
.h4_c00425{height:50.928601pt;}
.h3_c00425{height:57.984000pt;}
.h5_c00425{height:60.510720pt;}
.h2_c00425{height:1067.880000pt;}
.h0_c00425{height:1122.520000pt;}
.h1_c00425{height:1122.666667pt;}
.w4_c00425{width:14.826667pt;}
.w3_c00425{width:412.800000pt;}
.w2_c00425{width:767.960000pt;}
.w0_c00425{width:793.720000pt;}
.w1_c00425{width:794.000000pt;}
.x0_c00425{left:0.000000pt;}
.xc_c00425{left:2.880133pt;}
.x8_c00425{left:8.598933pt;}
.x1_c00425{left:12.880000pt;}
.x2_c00425{left:100.480133pt;}
.x9_c00425{left:128.315333pt;}
.x3_c00425{left:133.359333pt;}
.x7_c00425{left:182.480000pt;}
.x5_c00425{left:184.014667pt;}
.x4_c00425{left:192.446267pt;}
.x6_c00425{left:251.565467pt;}
.xa_c00425{left:263.684533pt;}
.xb_c00425{left:280.315733pt;}
.xd_c00425{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d14b91a498fc6d601fcbeec7.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_12fd6e56724d3cd956a8550a.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;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:ff3_c00426;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00426;src:url('chunks/assets/font_1c6b0a4544bb11552cfb00c6.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00426{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00426{vertical-align:-24.480000px;}
.v0_c00426{vertical-align:0.000000px;}
.v1_c00426{vertical-align:30.240000px;}
.ls5_c00426{letter-spacing:0.000000px;}
.ls7_c00426{letter-spacing:0.265680px;}
.ls6_c00426{letter-spacing:5.430672px;}
.ls3_c00426{letter-spacing:5.976000px;}
.ls1_c00426{letter-spacing:5.980200px;}
.ls0_c00426{letter-spacing:5.992200px;}
.ls4_c00426{letter-spacing:6.159920px;}
.ls2_c00426{letter-spacing:54.864000px;}
.sc__c00426{text-shadow:none;}
.sc1_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00426{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc1_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00426{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00426{word-spacing:-21.043152px;}
.ws0_c00426{word-spacing:-11.609280px;}
.ws2_c00426{word-spacing:-10.008000px;}
.ws3_c00426{word-spacing:0.000000px;}
._4_c00426{margin-left:-1.179360px;}
._9_c00426{width:1.239840px;}
._8_c00426{width:4.320000px;}
._5_c00426{width:5.760000px;}
._7_c00426{width:6.768000px;}
._0_c00426{width:8.928000px;}
._6_c00426{width:10.800000px;}
._1_c00426{width:15.336000px;}
._3_c00426{width:18.504000px;}
._2_c00426{width:32.832000px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs4_c00426{font-size:36.000000px;}
.fs2_c00426{font-size:41.760000px;}
.fs3_c00426{font-size:56.160000px;}
.fs5_c00426{font-size:59.040000px;}
.fs6_c00426{font-size:60.000000px;}
.fs0_c00426{font-size:72.000000px;}
.fs1_c00426{font-size:74.215901px;}
.y0_c00426{bottom:0.000000px;}
.y23_c00426{bottom:3.120000px;}
.y22_c00426{bottom:34.744580px;}
.y1_c00426{bottom:54.000000px;}
.y21_c00426{bottom:61.605000px;}
.y20_c00426{bottom:78.885000px;}
.y1f_c00426{bottom:105.525000px;}
.y1e_c00426{bottom:258.165000px;}
.y1d_c00426{bottom:294.525000px;}
.y1c_c00426{bottom:315.405000px;}
.y1b_c00426{bottom:336.285000px;}
.y1a_c00426{bottom:357.525000px;}
.y19_c00426{bottom:393.525000px;}
.y18_c00426{bottom:429.525000px;}
.y17_c00426{bottom:450.405000px;}
.y16_c00426{bottom:471.285000px;}
.y15_c00426{bottom:507.285000px;}
.y14_c00426{bottom:543.285000px;}
.y13_c00426{bottom:564.525000px;}
.y12_c00426{bottom:600.525000px;}
.y11_c00426{bottom:636.525000px;}
.y10_c00426{bottom:672.525000px;}
.yf_c00426{bottom:708.525000px;}
.ye_c00426{bottom:744.525000px;}
.yd_c00426{bottom:780.525000px;}
.yc_c00426{bottom:816.525000px;}
.yb_c00426{bottom:852.525000px;}
.ya_c00426{bottom:888.525000px;}
.y9_c00426{bottom:909.405000px;}
.y8_c00426{bottom:945.405000px;}
.y7_c00426{bottom:966.645000px;}
.y6_c00426{bottom:987.525000px;}
.y5_c00426{bottom:1008.405000px;}
.y4_c00426{bottom:1044.405000px;}
.y3_c00426{bottom:1082.925000px;}
.y2_c00426{bottom:1138.365000px;}
.h7_c00426{height:19.255605px;}
.h6_c00426{height:32.616000px;}
.h8_c00426{height:56.640000px;}
.h4_c00426{height:57.294676px;}
.h3_c00426{height:65.232000px;}
.h5_c00426{height:68.074560px;}
.h2_c00426{height:1201.365000px;}
.h0_c00426{height:1262.835000px;}
.h1_c00426{height:1263.000000px;}
.w3_c00426{width:16.680000px;}
.w2_c00426{width:863.955000px;}
.w0_c00426{width:892.935000px;}
.w1_c00426{width:893.250000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:14.490000px;}
.x2_c00426{left:113.040150px;}
.x6_c00426{left:140.037600px;}
.x3_c00426{left:150.029250px;}
.x4_c00426{left:218.500050px;}
.x5_c00426{left:419.718000px;}
.x7_c00426{left:768.254608px;}
@media print{
.v2_c00426{vertical-align:-21.760000pt;}
.v0_c00426{vertical-align:0.000000pt;}
.v1_c00426{vertical-align:26.880000pt;}
.ls5_c00426{letter-spacing:0.000000pt;}
.ls7_c00426{letter-spacing:0.236160pt;}
.ls6_c00426{letter-spacing:4.827264pt;}
.ls3_c00426{letter-spacing:5.312000pt;}
.ls1_c00426{letter-spacing:5.315733pt;}
.ls0_c00426{letter-spacing:5.326400pt;}
.ls4_c00426{letter-spacing:5.475484pt;}
.ls2_c00426{letter-spacing:48.768000pt;}
.ws1_c00426{word-spacing:-18.705024pt;}
.ws0_c00426{word-spacing:-10.319360pt;}
.ws2_c00426{word-spacing:-8.896000pt;}
.ws3_c00426{word-spacing:0.000000pt;}
._4_c00426{margin-left:-1.048320pt;}
._9_c00426{width:1.102080pt;}
._8_c00426{width:3.840000pt;}
._5_c00426{width:5.120000pt;}
._7_c00426{width:6.016000pt;}
._0_c00426{width:7.936000pt;}
._6_c00426{width:9.600000pt;}
._1_c00426{width:13.632000pt;}
._3_c00426{width:16.448000pt;}
._2_c00426{width:29.184000pt;}
.fs4_c00426{font-size:32.000000pt;}
.fs2_c00426{font-size:37.120000pt;}
.fs3_c00426{font-size:49.920000pt;}
.fs5_c00426{font-size:52.480000pt;}
.fs6_c00426{font-size:53.333333pt;}
.fs0_c00426{font-size:64.000000pt;}
.fs1_c00426{font-size:65.969690pt;}
.y0_c00426{bottom:0.000000pt;}
.y23_c00426{bottom:2.773333pt;}
.y22_c00426{bottom:30.884071pt;}
.y1_c00426{bottom:48.000000pt;}
.y21_c00426{bottom:54.760000pt;}
.y20_c00426{bottom:70.120000pt;}
.y1f_c00426{bottom:93.800000pt;}
.y1e_c00426{bottom:229.480000pt;}
.y1d_c00426{bottom:261.800000pt;}
.y1c_c00426{bottom:280.360000pt;}
.y1b_c00426{bottom:298.920000pt;}
.y1a_c00426{bottom:317.800000pt;}
.y19_c00426{bottom:349.800000pt;}
.y18_c00426{bottom:381.800000pt;}
.y17_c00426{bottom:400.360000pt;}
.y16_c00426{bottom:418.920000pt;}
.y15_c00426{bottom:450.920000pt;}
.y14_c00426{bottom:482.920000pt;}
.y13_c00426{bottom:501.800000pt;}
.y12_c00426{bottom:533.800000pt;}
.y11_c00426{bottom:565.800000pt;}
.y10_c00426{bottom:597.800000pt;}
.yf_c00426{bottom:629.800000pt;}
.ye_c00426{bottom:661.800000pt;}
.yd_c00426{bottom:693.800000pt;}
.yc_c00426{bottom:725.800000pt;}
.yb_c00426{bottom:757.800000pt;}
.ya_c00426{bottom:789.800000pt;}
.y9_c00426{bottom:808.360000pt;}
.y8_c00426{bottom:840.360000pt;}
.y7_c00426{bottom:859.240000pt;}
.y6_c00426{bottom:877.800000pt;}
.y5_c00426{bottom:896.360000pt;}
.y4_c00426{bottom:928.360000pt;}
.y3_c00426{bottom:962.600000pt;}
.y2_c00426{bottom:1011.880000pt;}
.h7_c00426{height:17.116093pt;}
.h6_c00426{height:28.992000pt;}
.h8_c00426{height:50.346667pt;}
.h4_c00426{height:50.928601pt;}
.h3_c00426{height:57.984000pt;}
.h5_c00426{height:60.510720pt;}
.h2_c00426{height:1067.880000pt;}
.h0_c00426{height:1122.520000pt;}
.h1_c00426{height:1122.666667pt;}
.w3_c00426{width:14.826667pt;}
.w2_c00426{width:767.960000pt;}
.w0_c00426{width:793.720000pt;}
.w1_c00426{width:794.000000pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:12.880000pt;}
.x2_c00426{left:100.480133pt;}
.x6_c00426{left:124.477867pt;}
.x3_c00426{left:133.359333pt;}
.x4_c00426{left:194.222267pt;}
.x5_c00426{left:373.082667pt;}
.x7_c00426{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_536de8c0ec71c094ff0623c5.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_29b65bb00f9848a6951a92d2.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;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:ff3_c00427;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_b3199d841dd7277de250b47c.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_370267361d24681f260f4721.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00427{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00427{vertical-align:-24.480000px;}
.v0_c00427{vertical-align:0.000000px;}
.v1_c00427{vertical-align:24.480000px;}
.v3_c00427{vertical-align:30.240000px;}
.lsc_c00427{letter-spacing:0.000000px;}
.ls2_c00427{letter-spacing:0.265680px;}
.lse_c00427{letter-spacing:0.273857px;}
.ls6_c00427{letter-spacing:0.295200px;}
.ls3_c00427{letter-spacing:0.317520px;}
.ls12_c00427{letter-spacing:0.318816px;}
.ls5_c00427{letter-spacing:0.531360px;}
.ls4_c00427{letter-spacing:0.543168px;}
.lsd_c00427{letter-spacing:0.584496px;}
.ls14_c00427{letter-spacing:0.602485px;}
.ls10_c00427{letter-spacing:0.696672px;}
.ls1_c00427{letter-spacing:0.712027px;}
.ls11_c00427{letter-spacing:0.743904px;}
.ls8_c00427{letter-spacing:0.748440px;}
.ls13_c00427{letter-spacing:2.255328px;}
.lsa_c00427{letter-spacing:4.250880px;}
.ls18_c00427{letter-spacing:4.664160px;}
.ls15_c00427{letter-spacing:5.082912px;}
.ls17_c00427{letter-spacing:5.335200px;}
.lsf_c00427{letter-spacing:5.461200px;}
.ls0_c00427{letter-spacing:5.976000px;}
.ls9_c00427{letter-spacing:5.985000px;}
.lsb_c00427{letter-spacing:6.159920px;}
.ls7_c00427{letter-spacing:6.344400px;}
.ls16_c00427{letter-spacing:9.417600px;}
.sc__c00427{text-shadow:none;}
.sc1_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00427{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc1_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00427{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6_c00427{word-spacing:-20.947680px;}
.ws0_c00427{word-spacing:-20.016000px;}
.ws4_c00427{word-spacing:-19.894752px;}
.ws2_c00427{word-spacing:-17.630284px;}
.ws3_c00427{word-spacing:-17.520742px;}
.ws7_c00427{word-spacing:-16.918257px;}
.ws5_c00427{word-spacing:-11.609280px;}
.ws1_c00427{word-spacing:-10.008000px;}
.ws8_c00427{word-spacing:0.000000px;}
._f_c00427{margin-left:-4.959360px;}
._e_c00427{margin-left:-3.896640px;}
._6_c00427{margin-left:-2.386116px;}
._2_c00427{margin-left:-1.156284px;}
._1_c00427{width:1.217141px;}
._5_c00427{width:2.488738px;}
._a_c00427{width:3.662525px;}
._8_c00427{width:4.752000px;}
._0_c00427{width:5.976000px;}
._7_c00427{width:7.734240px;}
._9_c00427{width:8.817193px;}
._3_c00427{width:10.046807px;}
._4_c00427{width:11.271134px;}
._d_c00427{width:12.344866px;}
._b_c00427{width:16.992000px;}
._c_c00427{width:18.432000px;}
.fc0_c00427{color:rgb(0,0,0);}
.fs4_c00427{font-size:36.000000px;}
.fs7_c00427{font-size:41.760000px;}
.fs6_c00427{font-size:53.280000px;}
.fs8_c00427{font-size:56.160000px;}
.fs2_c00427{font-size:59.040000px;}
.fs9_c00427{font-size:60.000000px;}
.fs3_c00427{font-size:60.857039px;}
.fs5_c00427{font-size:64.800000px;}
.fs0_c00427{font-size:72.000000px;}
.fs1_c00427{font-size:74.215901px;}
.y0_c00427{bottom:0.000000px;}
.y33_c00427{bottom:3.120000px;}
.y32_c00427{bottom:34.744580px;}
.y1_c00427{bottom:54.000000px;}
.y31_c00427{bottom:55.485000px;}
.y30_c00427{bottom:78.885000px;}
.y2f_c00427{bottom:90.401040px;}
.y2e_c00427{bottom:107.685000px;}
.y2d_c00427{bottom:113.805000px;}
.y2c_c00427{bottom:140.445000px;}
.y2b_c00427{bottom:171.765000px;}
.y2a_c00427{bottom:200.205000px;}
.y29_c00427{bottom:228.645000px;}
.y28_c00427{bottom:264.645000px;}
.y27_c00427{bottom:285.885000px;}
.y26_c00427{bottom:306.765000px;}
.y25_c00427{bottom:327.645000px;}
.y24_c00427{bottom:348.885000px;}
.y23_c00427{bottom:384.885000px;}
.y22_c00427{bottom:405.765000px;}
.y21_c00427{bottom:427.005000px;}
.y20_c00427{bottom:463.005000px;}
.y1f_c00427{bottom:483.885000px;}
.y1e_c00427{bottom:504.765000px;}
.y1d_c00427{bottom:526.005000px;}
.y1c_c00427{bottom:546.885000px;}
.y1b_c00427{bottom:567.765000px;}
.y1a_c00427{bottom:589.005000px;}
.y19_c00427{bottom:609.885000px;}
.y18_c00427{bottom:630.765000px;}
.y17_c00427{bottom:666.765000px;}
.y16_c00427{bottom:693.405720px;}
.y15_c00427{bottom:718.246800px;}
.y14_c00427{bottom:735.885000px;}
.y13_c00427{bottom:760.725000px;}
.y12_c00427{bottom:778.365000px;}
.y11_c00427{bottom:778.366800px;}
.yf_c00427{bottom:796.001040px;}
.y10_c00427{bottom:796.005000px;}
.ye_c00427{bottom:813.285000px;}
.yd_c00427{bottom:838.485000px;}
.yc_c00427{bottom:863.325000px;}
.yb_c00427{bottom:863.329680px;}
.ya_c00427{bottom:888.525000px;}
.y9_c00427{bottom:913.725000px;}
.y8_c00427{bottom:942.885000px;}
.y7_c00427{bottom:970.965000px;}
.y6_c00427{bottom:999.405000px;}
.y5_c00427{bottom:1027.845000px;}
.y4_c00427{bottom:1056.645000px;}
.y3_c00427{bottom:1085.085000px;}
.y2_c00427{bottom:1138.365000px;}
.hc_c00427{height:19.255605px;}
.hb_c00427{height:32.616000px;}
.h7_c00427{height:39.350391px;}
.h6_c00427{height:46.981634px;}
.h5_c00427{height:53.490240px;}
.hd_c00427{height:56.640000px;}
.h8_c00427{height:57.096000px;}
.h4_c00427{height:57.294676px;}
.h9_c00427{height:58.708800px;}
.h3_c00427{height:65.232000px;}
.ha_c00427{height:68.074560px;}
.h2_c00427{height:1201.365000px;}
.h0_c00427{height:1262.835000px;}
.h1_c00427{height:1263.000000px;}
.w3_c00427{width:16.680000px;}
.w2_c00427{width:863.955000px;}
.w0_c00427{width:892.935000px;}
.w1_c00427{width:893.250000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:14.490000px;}
.x2_c00427{left:113.040150px;}
.x22_c00427{left:119.034000px;}
.x1b_c00427{left:133.034550px;}
.x7_c00427{left:147.223350px;}
.x3_c00427{left:150.029250px;}
.x20_c00427{left:153.053400px;}
.x13_c00427{left:161.881050px;}
.x8_c00427{left:168.042900px;}
.x9_c00427{left:171.792900px;}
.x1e_c00427{left:173.308950px;}
.x27_c00427{left:175.558200px;}
.x14_c00427{left:186.855450px;}
.x4_c00427{left:218.500050px;}
.xa_c00427{left:225.971250px;}
.x23_c00427{left:230.019600px;}
.x24_c00427{left:235.023600px;}
.x15_c00427{left:248.369700px;}
.x1f_c00427{left:260.301600px;}
.x16_c00427{left:278.011650px;}
.x1c_c00427{left:303.090150px;}
.xb_c00427{left:315.157500px;}
.x1a_c00427{left:316.432950px;}
.xd_c00427{left:322.207350px;}
.x5_c00427{left:325.672050px;}
.xc_c00427{left:373.430400px;}
.xe_c00427{left:376.310700px;}
.x1d_c00427{left:395.854200px;}
.x17_c00427{left:483.067350px;}
.x18_c00427{left:502.222050px;}
.x6_c00427{left:530.419500px;}
.xf_c00427{left:543.376350px;}
.x11_c00427{left:549.811950px;}
.x10_c00427{left:571.123200px;}
.x12_c00427{left:579.068100px;}
.x21_c00427{left:606.345000px;}
.x19_c00427{left:711.225600px;}
.x25_c00427{left:738.720300px;}
.x26_c00427{left:750.390000px;}
.x28_c00427{left:768.254608px;}
@media print{
.v2_c00427{vertical-align:-21.760000pt;}
.v0_c00427{vertical-align:0.000000pt;}
.v1_c00427{vertical-align:21.760000pt;}
.v3_c00427{vertical-align:26.880000pt;}
.lsc_c00427{letter-spacing:0.000000pt;}
.ls2_c00427{letter-spacing:0.236160pt;}
.lse_c00427{letter-spacing:0.243428pt;}
.ls6_c00427{letter-spacing:0.262400pt;}
.ls3_c00427{letter-spacing:0.282240pt;}
.ls12_c00427{letter-spacing:0.283392pt;}
.ls5_c00427{letter-spacing:0.472320pt;}
.ls4_c00427{letter-spacing:0.482816pt;}
.lsd_c00427{letter-spacing:0.519552pt;}
.ls14_c00427{letter-spacing:0.535542pt;}
.ls10_c00427{letter-spacing:0.619264pt;}
.ls1_c00427{letter-spacing:0.632913pt;}
.ls11_c00427{letter-spacing:0.661248pt;}
.ls8_c00427{letter-spacing:0.665280pt;}
.ls13_c00427{letter-spacing:2.004736pt;}
.lsa_c00427{letter-spacing:3.778560pt;}
.ls18_c00427{letter-spacing:4.145920pt;}
.ls15_c00427{letter-spacing:4.518144pt;}
.ls17_c00427{letter-spacing:4.742400pt;}
.lsf_c00427{letter-spacing:4.854400pt;}
.ls0_c00427{letter-spacing:5.312000pt;}
.ls9_c00427{letter-spacing:5.320000pt;}
.lsb_c00427{letter-spacing:5.475484pt;}
.ls7_c00427{letter-spacing:5.639467pt;}
.ls16_c00427{letter-spacing:8.371200pt;}
.ws6_c00427{word-spacing:-18.620160pt;}
.ws0_c00427{word-spacing:-17.792000pt;}
.ws4_c00427{word-spacing:-17.684224pt;}
.ws2_c00427{word-spacing:-15.671364pt;}
.ws3_c00427{word-spacing:-15.573992pt;}
.ws7_c00427{word-spacing:-15.038451pt;}
.ws5_c00427{word-spacing:-10.319360pt;}
.ws1_c00427{word-spacing:-8.896000pt;}
.ws8_c00427{word-spacing:0.000000pt;}
._f_c00427{margin-left:-4.408320pt;}
._e_c00427{margin-left:-3.463680pt;}
._6_c00427{margin-left:-2.120992pt;}
._2_c00427{margin-left:-1.027808pt;}
._1_c00427{width:1.081903pt;}
._5_c00427{width:2.212211pt;}
._a_c00427{width:3.255577pt;}
._8_c00427{width:4.224000pt;}
._0_c00427{width:5.312000pt;}
._7_c00427{width:6.874880pt;}
._9_c00427{width:7.837504pt;}
._3_c00427{width:8.930496pt;}
._4_c00427{width:10.018786pt;}
._d_c00427{width:10.973214pt;}
._b_c00427{width:15.104000pt;}
._c_c00427{width:16.384000pt;}
.fs4_c00427{font-size:32.000000pt;}
.fs7_c00427{font-size:37.120000pt;}
.fs6_c00427{font-size:47.360000pt;}
.fs8_c00427{font-size:49.920000pt;}
.fs2_c00427{font-size:52.480000pt;}
.fs9_c00427{font-size:53.333333pt;}
.fs3_c00427{font-size:54.095146pt;}
.fs5_c00427{font-size:57.600000pt;}
.fs0_c00427{font-size:64.000000pt;}
.fs1_c00427{font-size:65.969690pt;}
.y0_c00427{bottom:0.000000pt;}
.y33_c00427{bottom:2.773333pt;}
.y32_c00427{bottom:30.884071pt;}
.y1_c00427{bottom:48.000000pt;}
.y31_c00427{bottom:49.320000pt;}
.y30_c00427{bottom:70.120000pt;}
.y2f_c00427{bottom:80.356480pt;}
.y2e_c00427{bottom:95.720000pt;}
.y2d_c00427{bottom:101.160000pt;}
.y2c_c00427{bottom:124.840000pt;}
.y2b_c00427{bottom:152.680000pt;}
.y2a_c00427{bottom:177.960000pt;}
.y29_c00427{bottom:203.240000pt;}
.y28_c00427{bottom:235.240000pt;}
.y27_c00427{bottom:254.120000pt;}
.y26_c00427{bottom:272.680000pt;}
.y25_c00427{bottom:291.240000pt;}
.y24_c00427{bottom:310.120000pt;}
.y23_c00427{bottom:342.120000pt;}
.y22_c00427{bottom:360.680000pt;}
.y21_c00427{bottom:379.560000pt;}
.y20_c00427{bottom:411.560000pt;}
.y1f_c00427{bottom:430.120000pt;}
.y1e_c00427{bottom:448.680000pt;}
.y1d_c00427{bottom:467.560000pt;}
.y1c_c00427{bottom:486.120000pt;}
.y1b_c00427{bottom:504.680000pt;}
.y1a_c00427{bottom:523.560000pt;}
.y19_c00427{bottom:542.120000pt;}
.y18_c00427{bottom:560.680000pt;}
.y17_c00427{bottom:592.680000pt;}
.y16_c00427{bottom:616.360640pt;}
.y15_c00427{bottom:638.441600pt;}
.y14_c00427{bottom:654.120000pt;}
.y13_c00427{bottom:676.200000pt;}
.y12_c00427{bottom:691.880000pt;}
.y11_c00427{bottom:691.881600pt;}
.yf_c00427{bottom:707.556480pt;}
.y10_c00427{bottom:707.560000pt;}
.ye_c00427{bottom:722.920000pt;}
.yd_c00427{bottom:745.320000pt;}
.yc_c00427{bottom:767.400000pt;}
.yb_c00427{bottom:767.404160pt;}
.ya_c00427{bottom:789.800000pt;}
.y9_c00427{bottom:812.200000pt;}
.y8_c00427{bottom:838.120000pt;}
.y7_c00427{bottom:863.080000pt;}
.y6_c00427{bottom:888.360000pt;}
.y5_c00427{bottom:913.640000pt;}
.y4_c00427{bottom:939.240000pt;}
.y3_c00427{bottom:964.520000pt;}
.y2_c00427{bottom:1011.880000pt;}
.hc_c00427{height:17.116093pt;}
.hb_c00427{height:28.992000pt;}
.h7_c00427{height:34.978125pt;}
.h6_c00427{height:41.761453pt;}
.h5_c00427{height:47.546880pt;}
.hd_c00427{height:50.346667pt;}
.h8_c00427{height:50.752000pt;}
.h4_c00427{height:50.928601pt;}
.h9_c00427{height:52.185600pt;}
.h3_c00427{height:57.984000pt;}
.ha_c00427{height:60.510720pt;}
.h2_c00427{height:1067.880000pt;}
.h0_c00427{height:1122.520000pt;}
.h1_c00427{height:1122.666667pt;}
.w3_c00427{width:14.826667pt;}
.w2_c00427{width:767.960000pt;}
.w0_c00427{width:793.720000pt;}
.w1_c00427{width:794.000000pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:12.880000pt;}
.x2_c00427{left:100.480133pt;}
.x22_c00427{left:105.808000pt;}
.x1b_c00427{left:118.252933pt;}
.x7_c00427{left:130.865200pt;}
.x3_c00427{left:133.359333pt;}
.x20_c00427{left:136.047467pt;}
.x13_c00427{left:143.894267pt;}
.x8_c00427{left:149.371467pt;}
.x9_c00427{left:152.704800pt;}
.x1e_c00427{left:154.052400pt;}
.x27_c00427{left:156.051733pt;}
.x14_c00427{left:166.093733pt;}
.x4_c00427{left:194.222267pt;}
.xa_c00427{left:200.863333pt;}
.x23_c00427{left:204.461867pt;}
.x24_c00427{left:208.909867pt;}
.x15_c00427{left:220.773067pt;}
.x1f_c00427{left:231.379200pt;}
.x16_c00427{left:247.121467pt;}
.x1c_c00427{left:269.413467pt;}
.xb_c00427{left:280.140000pt;}
.x1a_c00427{left:281.273733pt;}
.xd_c00427{left:286.406533pt;}
.x5_c00427{left:289.486267pt;}
.xc_c00427{left:331.938133pt;}
.xe_c00427{left:334.498400pt;}
.x1d_c00427{left:351.870400pt;}
.x17_c00427{left:429.393200pt;}
.x18_c00427{left:446.419600pt;}
.x6_c00427{left:471.484000pt;}
.xf_c00427{left:483.001200pt;}
.x11_c00427{left:488.721733pt;}
.x10_c00427{left:507.665067pt;}
.x12_c00427{left:514.727200pt;}
.x21_c00427{left:538.973333pt;}
.x19_c00427{left:632.200533pt;}
.x25_c00427{left:656.640267pt;}
.x26_c00427{left:667.013333pt;}
.x28_c00427{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_773ac922c3d9b1c5c6e65260.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_857162f59d8d3c91f952d777.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;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:ff3_c00428;src:url('chunks/assets/font_0d611209018009a34d423c47.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00428{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00428{vertical-align:-24.480000px;}
.v0_c00428{vertical-align:0.000000px;}
.v1_c00428{vertical-align:30.240000px;}
.lsc_c00428{letter-spacing:0.000000px;}
.ls4_c00428{letter-spacing:0.011040px;}
.ls1_c00428{letter-spacing:0.059040px;}
.ls5_c00428{letter-spacing:0.171240px;}
.ls3_c00428{letter-spacing:0.200640px;}
.ls14_c00428{letter-spacing:0.265680px;}
.ls9_c00428{letter-spacing:0.295200px;}
.ls0_c00428{letter-spacing:0.352440px;}
.ls12_c00428{letter-spacing:0.371952px;}
.ls6_c00428{letter-spacing:0.438171px;}
.ls13_c00428{letter-spacing:0.478224px;}
.lsa_c00428{letter-spacing:0.531360px;}
.ls7_c00428{letter-spacing:0.560880px;}
.lsf_c00428{letter-spacing:0.584496px;}
.ls11_c00428{letter-spacing:0.690768px;}
.ls8_c00428{letter-spacing:0.712027px;}
.ls10_c00428{letter-spacing:0.797040px;}
.ls16_c00428{letter-spacing:1.281168px;}
.lse_c00428{letter-spacing:1.399248px;}
.lsd_c00428{letter-spacing:5.430672px;}
.ls2_c00428{letter-spacing:5.954400px;}
.lsb_c00428{letter-spacing:5.976000px;}
.ls15_c00428{letter-spacing:8.802864px;}
.sc__c00428{text-shadow:none;}
.sc1_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00428{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc1_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00428{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00428{word-spacing:-21.043152px;}
.ws1_c00428{word-spacing:-20.016000px;}
.ws5_c00428{word-spacing:-17.630284px;}
.ws4_c00428{word-spacing:-17.356428px;}
.ws6_c00428{word-spacing:-16.944480px;}
.ws7_c00428{word-spacing:-16.785072px;}
.ws0_c00428{word-spacing:-11.609280px;}
.ws3_c00428{word-spacing:-10.008000px;}
.ws8_c00428{word-spacing:0.000000px;}
._f_c00428{margin-left:-9.092160px;}
._e_c00428{margin-left:-8.088480px;}
._c_c00428{margin-left:-1.069200px;}
._0_c00428{width:1.656000px;}
._1_c00428{width:3.096000px;}
._5_c00428{width:4.392000px;}
._8_c00428{width:5.542800px;}
._6_c00428{width:6.624000px;}
._2_c00428{width:7.776000px;}
._9_c00428{width:8.982000px;}
._7_c00428{width:11.160000px;}
._d_c00428{width:12.713040px;}
._3_c00428{width:16.416000px;}
._b_c00428{width:18.360000px;}
._4_c00428{width:21.096000px;}
._a_c00428{width:52.128000px;}
.fc0_c00428{color:rgb(0,0,0);}
.fs4_c00428{font-size:36.000000px;}
.fs1_c00428{font-size:41.760000px;}
.fs3_c00428{font-size:56.160000px;}
.fs5_c00428{font-size:59.040000px;}
.fs7_c00428{font-size:60.000000px;}
.fs6_c00428{font-size:60.857039px;}
.fs0_c00428{font-size:72.000000px;}
.fs2_c00428{font-size:74.215901px;}
.y0_c00428{bottom:0.000000px;}
.y34_c00428{bottom:3.120000px;}
.y33_c00428{bottom:34.744580px;}
.y1_c00428{bottom:54.000000px;}
.y32_c00428{bottom:61.605000px;}
.y31_c00428{bottom:72.766800px;}
.y30_c00428{bottom:90.405000px;}
.y2f_c00428{bottom:96.525000px;}
.y2e_c00428{bottom:113.805000px;}
.y2d_c00428{bottom:125.326800px;}
.y2c_c00428{bottom:149.085000px;}
.y2b_c00428{bottom:160.245000px;}
.y2a_c00428{bottom:166.365000px;}
.y29_c00428{bottom:177.885000px;}
.y28_c00428{bottom:184.005000px;}
.y26_c00428{bottom:195.521040px;}
.y27_c00428{bottom:195.525000px;}
.y25_c00428{bottom:212.805000px;}
.y24_c00428{bottom:212.806800px;}
.y23_c00428{bottom:230.445000px;}
.y22_c00428{bottom:253.845000px;}
.y21_c00428{bottom:280.485000px;}
.y20_c00428{bottom:351.405000px;}
.y1f_c00428{bottom:372.285000px;}
.y1e_c00428{bottom:393.165000px;}
.y1d_c00428{bottom:414.405000px;}
.y1c_c00428{bottom:435.285000px;}
.y1b_c00428{bottom:456.525000px;}
.y1a_c00428{bottom:477.405000px;}
.y19_c00428{bottom:513.405000px;}
.y18_c00428{bottom:534.285000px;}
.y17_c00428{bottom:555.525000px;}
.y16_c00428{bottom:576.405000px;}
.y15_c00428{bottom:597.285000px;}
.y14_c00428{bottom:618.525000px;}
.y13_c00428{bottom:639.405000px;}
.y12_c00428{bottom:675.405000px;}
.y11_c00428{bottom:696.285000px;}
.y10_c00428{bottom:732.285000px;}
.yf_c00428{bottom:768.285000px;}
.ye_c00428{bottom:804.285000px;}
.yd_c00428{bottom:825.525000px;}
.yc_c00428{bottom:846.405000px;}
.yb_c00428{bottom:867.285000px;}
.ya_c00428{bottom:888.525000px;}
.y9_c00428{bottom:909.405000px;}
.y8_c00428{bottom:930.645000px;}
.y7_c00428{bottom:966.645000px;}
.y6_c00428{bottom:987.525000px;}
.y5_c00428{bottom:1008.405000px;}
.y4_c00428{bottom:1044.405000px;}
.y3_c00428{bottom:1082.925000px;}
.y2_c00428{bottom:1138.365000px;}
.h9_c00428{height:19.255605px;}
.h6_c00428{height:32.616000px;}
.h7_c00428{height:46.981634px;}
.h8_c00428{height:53.490240px;}
.ha_c00428{height:56.640000px;}
.h5_c00428{height:57.294676px;}
.h3_c00428{height:65.232000px;}
.h4_c00428{height:68.074560px;}
.h2_c00428{height:1201.365000px;}
.h0_c00428{height:1262.835000px;}
.h1_c00428{height:1263.000000px;}
.w3_c00428{width:16.680000px;}
.w2_c00428{width:863.955000px;}
.w0_c00428{width:892.935000px;}
.w1_c00428{width:893.250000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:14.490000px;}
.x2_c00428{left:113.040150px;}
.xd_c00428{left:122.213700px;}
.x8_c00428{left:133.430100px;}
.xe_c00428{left:147.188250px;}
.x11_c00428{left:342.370200px;}
.x12_c00428{left:362.617950px;}
.x6_c00428{left:365.568900px;}
.x4_c00428{left:415.724550px;}
.x9_c00428{left:417.137700px;}
.x3_c00428{left:419.718000px;}
.xa_c00428{left:440.553150px;}
.xf_c00428{left:443.922300px;}
.x7_c00428{left:451.660050px;}
.x10_c00428{left:463.916400px;}
.x5_c00428{left:465.688500px;}
.xb_c00428{left:474.753300px;}
.xc_c00428{left:490.577700px;}
.x13_c00428{left:768.254608px;}
@media print{
.v2_c00428{vertical-align:-21.760000pt;}
.v0_c00428{vertical-align:0.000000pt;}
.v1_c00428{vertical-align:26.880000pt;}
.lsc_c00428{letter-spacing:0.000000pt;}
.ls4_c00428{letter-spacing:0.009813pt;}
.ls1_c00428{letter-spacing:0.052480pt;}
.ls5_c00428{letter-spacing:0.152213pt;}
.ls3_c00428{letter-spacing:0.178347pt;}
.ls14_c00428{letter-spacing:0.236160pt;}
.ls9_c00428{letter-spacing:0.262400pt;}
.ls0_c00428{letter-spacing:0.313280pt;}
.ls12_c00428{letter-spacing:0.330624pt;}
.ls6_c00428{letter-spacing:0.389485pt;}
.ls13_c00428{letter-spacing:0.425088pt;}
.lsa_c00428{letter-spacing:0.472320pt;}
.ls7_c00428{letter-spacing:0.498560pt;}
.lsf_c00428{letter-spacing:0.519552pt;}
.ls11_c00428{letter-spacing:0.614016pt;}
.ls8_c00428{letter-spacing:0.632913pt;}
.ls10_c00428{letter-spacing:0.708480pt;}
.ls16_c00428{letter-spacing:1.138816pt;}
.lse_c00428{letter-spacing:1.243776pt;}
.lsd_c00428{letter-spacing:4.827264pt;}
.ls2_c00428{letter-spacing:5.292800pt;}
.lsb_c00428{letter-spacing:5.312000pt;}
.ls15_c00428{letter-spacing:7.824768pt;}
.ws2_c00428{word-spacing:-18.705024pt;}
.ws1_c00428{word-spacing:-17.792000pt;}
.ws5_c00428{word-spacing:-15.671364pt;}
.ws4_c00428{word-spacing:-15.427936pt;}
.ws6_c00428{word-spacing:-15.061760pt;}
.ws7_c00428{word-spacing:-14.920064pt;}
.ws0_c00428{word-spacing:-10.319360pt;}
.ws3_c00428{word-spacing:-8.896000pt;}
.ws8_c00428{word-spacing:0.000000pt;}
._f_c00428{margin-left:-8.081920pt;}
._e_c00428{margin-left:-7.189760pt;}
._c_c00428{margin-left:-0.950400pt;}
._0_c00428{width:1.472000pt;}
._1_c00428{width:2.752000pt;}
._5_c00428{width:3.904000pt;}
._8_c00428{width:4.926933pt;}
._6_c00428{width:5.888000pt;}
._2_c00428{width:6.912000pt;}
._9_c00428{width:7.984000pt;}
._7_c00428{width:9.920000pt;}
._d_c00428{width:11.300480pt;}
._3_c00428{width:14.592000pt;}
._b_c00428{width:16.320000pt;}
._4_c00428{width:18.752000pt;}
._a_c00428{width:46.336000pt;}
.fs4_c00428{font-size:32.000000pt;}
.fs1_c00428{font-size:37.120000pt;}
.fs3_c00428{font-size:49.920000pt;}
.fs5_c00428{font-size:52.480000pt;}
.fs7_c00428{font-size:53.333333pt;}
.fs6_c00428{font-size:54.095146pt;}
.fs0_c00428{font-size:64.000000pt;}
.fs2_c00428{font-size:65.969690pt;}
.y0_c00428{bottom:0.000000pt;}
.y34_c00428{bottom:2.773333pt;}
.y33_c00428{bottom:30.884071pt;}
.y1_c00428{bottom:48.000000pt;}
.y32_c00428{bottom:54.760000pt;}
.y31_c00428{bottom:64.681600pt;}
.y30_c00428{bottom:80.360000pt;}
.y2f_c00428{bottom:85.800000pt;}
.y2e_c00428{bottom:101.160000pt;}
.y2d_c00428{bottom:111.401600pt;}
.y2c_c00428{bottom:132.520000pt;}
.y2b_c00428{bottom:142.440000pt;}
.y2a_c00428{bottom:147.880000pt;}
.y29_c00428{bottom:158.120000pt;}
.y28_c00428{bottom:163.560000pt;}
.y26_c00428{bottom:173.796480pt;}
.y27_c00428{bottom:173.800000pt;}
.y25_c00428{bottom:189.160000pt;}
.y24_c00428{bottom:189.161600pt;}
.y23_c00428{bottom:204.840000pt;}
.y22_c00428{bottom:225.640000pt;}
.y21_c00428{bottom:249.320000pt;}
.y20_c00428{bottom:312.360000pt;}
.y1f_c00428{bottom:330.920000pt;}
.y1e_c00428{bottom:349.480000pt;}
.y1d_c00428{bottom:368.360000pt;}
.y1c_c00428{bottom:386.920000pt;}
.y1b_c00428{bottom:405.800000pt;}
.y1a_c00428{bottom:424.360000pt;}
.y19_c00428{bottom:456.360000pt;}
.y18_c00428{bottom:474.920000pt;}
.y17_c00428{bottom:493.800000pt;}
.y16_c00428{bottom:512.360000pt;}
.y15_c00428{bottom:530.920000pt;}
.y14_c00428{bottom:549.800000pt;}
.y13_c00428{bottom:568.360000pt;}
.y12_c00428{bottom:600.360000pt;}
.y11_c00428{bottom:618.920000pt;}
.y10_c00428{bottom:650.920000pt;}
.yf_c00428{bottom:682.920000pt;}
.ye_c00428{bottom:714.920000pt;}
.yd_c00428{bottom:733.800000pt;}
.yc_c00428{bottom:752.360000pt;}
.yb_c00428{bottom:770.920000pt;}
.ya_c00428{bottom:789.800000pt;}
.y9_c00428{bottom:808.360000pt;}
.y8_c00428{bottom:827.240000pt;}
.y7_c00428{bottom:859.240000pt;}
.y6_c00428{bottom:877.800000pt;}
.y5_c00428{bottom:896.360000pt;}
.y4_c00428{bottom:928.360000pt;}
.y3_c00428{bottom:962.600000pt;}
.y2_c00428{bottom:1011.880000pt;}
.h9_c00428{height:17.116093pt;}
.h6_c00428{height:28.992000pt;}
.h7_c00428{height:41.761453pt;}
.h8_c00428{height:47.546880pt;}
.ha_c00428{height:50.346667pt;}
.h5_c00428{height:50.928601pt;}
.h3_c00428{height:57.984000pt;}
.h4_c00428{height:60.510720pt;}
.h2_c00428{height:1067.880000pt;}
.h0_c00428{height:1122.520000pt;}
.h1_c00428{height:1122.666667pt;}
.w3_c00428{width:14.826667pt;}
.w2_c00428{width:767.960000pt;}
.w0_c00428{width:793.720000pt;}
.w1_c00428{width:794.000000pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:12.880000pt;}
.x2_c00428{left:100.480133pt;}
.xd_c00428{left:108.634400pt;}
.x8_c00428{left:118.604533pt;}
.xe_c00428{left:130.834000pt;}
.x11_c00428{left:304.329067pt;}
.x12_c00428{left:322.327067pt;}
.x6_c00428{left:324.950133pt;}
.x4_c00428{left:369.532933pt;}
.x9_c00428{left:370.789067pt;}
.x3_c00428{left:373.082667pt;}
.xa_c00428{left:391.602800pt;}
.xf_c00428{left:394.597600pt;}
.x7_c00428{left:401.475600pt;}
.x10_c00428{left:412.370133pt;}
.x5_c00428{left:413.945333pt;}
.xb_c00428{left:422.002933pt;}
.xc_c00428{left:436.069067pt;}
.x13_c00428{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a64d16b94b483cfc95957e2.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_6b5f327f79d6c7113271ac97.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;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:ff3_c00429;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_828481748a9284e986d8ba35.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00429{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00429{vertical-align:-24.480000px;}
.v0_c00429{vertical-align:0.000000px;}
.v1_c00429{vertical-align:30.240000px;}
.ls5_c00429{letter-spacing:-0.179568px;}
.ls4_c00429{letter-spacing:0.000000px;}
.ls9_c00429{letter-spacing:0.144000px;}
.ls7_c00429{letter-spacing:0.265680px;}
.ls1_c00429{letter-spacing:0.764640px;}
.ls8_c00429{letter-spacing:0.766799px;}
.ls0_c00429{letter-spacing:0.812640px;}
.ls6_c00429{letter-spacing:5.430672px;}
.ls3_c00429{letter-spacing:5.976000px;}
.ls2_c00429{letter-spacing:5.980200px;}
.sc__c00429{text-shadow:none;}
.sc1_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00429{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc1_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00429{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00429{word-spacing:-21.043152px;}
.ws0_c00429{word-spacing:-20.016000px;}
.ws1_c00429{word-spacing:-11.429712px;}
.ws4_c00429{word-spacing:-10.152000px;}
.ws3_c00429{word-spacing:-10.008000px;}
.ws5_c00429{word-spacing:0.000000px;}
._10_c00429{margin-left:-1.179360px;}
._e_c00429{width:1.080000px;}
._4_c00429{width:2.376000px;}
._5_c00429{width:3.384000px;}
._d_c00429{width:4.824000px;}
._3_c00429{width:5.832000px;}
._9_c00429{width:6.912000px;}
._2_c00429{width:8.064000px;}
._12_c00429{width:9.504000px;}
._8_c00429{width:10.656000px;}
._7_c00429{width:12.384000px;}
._c_c00429{width:13.824000px;}
._6_c00429{width:16.056000px;}
._b_c00429{width:17.208000px;}
._11_c00429{width:18.216000px;}
._a_c00429{width:21.096000px;}
._f_c00429{width:24.120000px;}
._0_c00429{width:26.280000px;}
._1_c00429{width:31.392000px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs4_c00429{font-size:36.000000px;}
.fs2_c00429{font-size:41.760000px;}
.fs3_c00429{font-size:56.160000px;}
.fs5_c00429{font-size:59.040000px;}
.fs7_c00429{font-size:60.000000px;}
.fs6_c00429{font-size:60.857039px;}
.fs0_c00429{font-size:72.000000px;}
.fs1_c00429{font-size:74.215901px;}
.y0_c00429{bottom:0.000000px;}
.y31_c00429{bottom:3.120000px;}
.y30_c00429{bottom:34.744580px;}
.y1_c00429{bottom:54.000000px;}
.y2f_c00429{bottom:61.605000px;}
.y2e_c00429{bottom:78.885000px;}
.y2d_c00429{bottom:90.405000px;}
.y2c_c00429{bottom:96.525000px;}
.y2b_c00429{bottom:113.805000px;}
.y2a_c00429{bottom:140.445000px;}
.y29_c00429{bottom:180.045000px;}
.y28_c00429{bottom:201.285000px;}
.y27_c00429{bottom:222.165000px;}
.y26_c00429{bottom:243.045000px;}
.y25_c00429{bottom:264.285000px;}
.y24_c00429{bottom:285.165000px;}
.y23_c00429{bottom:306.045000px;}
.y22_c00429{bottom:342.045000px;}
.y21_c00429{bottom:378.045000px;}
.y20_c00429{bottom:414.045000px;}
.y1f_c00429{bottom:450.045000px;}
.y1e_c00429{bottom:486.045000px;}
.y1d_c00429{bottom:507.285000px;}
.y1c_c00429{bottom:528.165000px;}
.y1b_c00429{bottom:551.205000px;}
.y1a_c00429{bottom:571.725000px;}
.y19_c00429{bottom:592.965000px;}
.y18_c00429{bottom:628.965000px;}
.y17_c00429{bottom:649.845000px;}
.y16_c00429{bottom:670.725000px;}
.y15_c00429{bottom:691.965000px;}
.y14_c00429{bottom:712.845000px;}
.y13_c00429{bottom:734.085000px;}
.y12_c00429{bottom:754.965000px;}
.y11_c00429{bottom:775.845000px;}
.y10_c00429{bottom:797.085000px;}
.yf_c00429{bottom:817.965000px;}
.ye_c00429{bottom:838.845000px;}
.yd_c00429{bottom:860.085000px;}
.yc_c00429{bottom:896.085000px;}
.yb_c00429{bottom:916.965000px;}
.ya_c00429{bottom:937.845000px;}
.y9_c00429{bottom:959.085000px;}
.y8_c00429{bottom:979.965000px;}
.y7_c00429{bottom:1000.845000px;}
.y6_c00429{bottom:1022.085000px;}
.y5_c00429{bottom:1042.965000px;}
.y4_c00429{bottom:1063.845000px;}
.y3_c00429{bottom:1085.085000px;}
.y2_c00429{bottom:1138.365000px;}
.h9_c00429{height:19.255605px;}
.h6_c00429{height:32.616000px;}
.h7_c00429{height:46.981634px;}
.h8_c00429{height:53.490240px;}
.ha_c00429{height:56.640000px;}
.h4_c00429{height:57.294676px;}
.h3_c00429{height:65.232000px;}
.h5_c00429{height:68.074560px;}
.h2_c00429{height:1201.365000px;}
.h0_c00429{height:1262.835000px;}
.h1_c00429{height:1263.000000px;}
.w3_c00429{width:16.680000px;}
.w2_c00429{width:863.955000px;}
.w0_c00429{width:892.935000px;}
.w1_c00429{width:893.250000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:14.490000px;}
.x2_c00429{left:113.040150px;}
.xb_c00429{left:122.213700px;}
.x8_c00429{left:177.029250px;}
.xc_c00429{left:180.532050px;}
.x5_c00429{left:423.688050px;}
.x3_c00429{left:448.839900px;}
.x4_c00429{left:523.286100px;}
.x9_c00429{left:543.857250px;}
.x6_c00429{left:568.576800px;}
.xa_c00429{left:588.856500px;}
.x7_c00429{left:702.366900px;}
.xd_c00429{left:768.254608px;}
@media print{
.v2_c00429{vertical-align:-21.760000pt;}
.v0_c00429{vertical-align:0.000000pt;}
.v1_c00429{vertical-align:26.880000pt;}
.ls5_c00429{letter-spacing:-0.159616pt;}
.ls4_c00429{letter-spacing:0.000000pt;}
.ls9_c00429{letter-spacing:0.128000pt;}
.ls7_c00429{letter-spacing:0.236160pt;}
.ls1_c00429{letter-spacing:0.679680pt;}
.ls8_c00429{letter-spacing:0.681599pt;}
.ls0_c00429{letter-spacing:0.722347pt;}
.ls6_c00429{letter-spacing:4.827264pt;}
.ls3_c00429{letter-spacing:5.312000pt;}
.ls2_c00429{letter-spacing:5.315733pt;}
.ws2_c00429{word-spacing:-18.705024pt;}
.ws0_c00429{word-spacing:-17.792000pt;}
.ws1_c00429{word-spacing:-10.159744pt;}
.ws4_c00429{word-spacing:-9.024000pt;}
.ws3_c00429{word-spacing:-8.896000pt;}
.ws5_c00429{word-spacing:0.000000pt;}
._10_c00429{margin-left:-1.048320pt;}
._e_c00429{width:0.960000pt;}
._4_c00429{width:2.112000pt;}
._5_c00429{width:3.008000pt;}
._d_c00429{width:4.288000pt;}
._3_c00429{width:5.184000pt;}
._9_c00429{width:6.144000pt;}
._2_c00429{width:7.168000pt;}
._12_c00429{width:8.448000pt;}
._8_c00429{width:9.472000pt;}
._7_c00429{width:11.008000pt;}
._c_c00429{width:12.288000pt;}
._6_c00429{width:14.272000pt;}
._b_c00429{width:15.296000pt;}
._11_c00429{width:16.192000pt;}
._a_c00429{width:18.752000pt;}
._f_c00429{width:21.440000pt;}
._0_c00429{width:23.360000pt;}
._1_c00429{width:27.904000pt;}
.fs4_c00429{font-size:32.000000pt;}
.fs2_c00429{font-size:37.120000pt;}
.fs3_c00429{font-size:49.920000pt;}
.fs5_c00429{font-size:52.480000pt;}
.fs7_c00429{font-size:53.333333pt;}
.fs6_c00429{font-size:54.095146pt;}
.fs0_c00429{font-size:64.000000pt;}
.fs1_c00429{font-size:65.969690pt;}
.y0_c00429{bottom:0.000000pt;}
.y31_c00429{bottom:2.773333pt;}
.y30_c00429{bottom:30.884071pt;}
.y1_c00429{bottom:48.000000pt;}
.y2f_c00429{bottom:54.760000pt;}
.y2e_c00429{bottom:70.120000pt;}
.y2d_c00429{bottom:80.360000pt;}
.y2c_c00429{bottom:85.800000pt;}
.y2b_c00429{bottom:101.160000pt;}
.y2a_c00429{bottom:124.840000pt;}
.y29_c00429{bottom:160.040000pt;}
.y28_c00429{bottom:178.920000pt;}
.y27_c00429{bottom:197.480000pt;}
.y26_c00429{bottom:216.040000pt;}
.y25_c00429{bottom:234.920000pt;}
.y24_c00429{bottom:253.480000pt;}
.y23_c00429{bottom:272.040000pt;}
.y22_c00429{bottom:304.040000pt;}
.y21_c00429{bottom:336.040000pt;}
.y20_c00429{bottom:368.040000pt;}
.y1f_c00429{bottom:400.040000pt;}
.y1e_c00429{bottom:432.040000pt;}
.y1d_c00429{bottom:450.920000pt;}
.y1c_c00429{bottom:469.480000pt;}
.y1b_c00429{bottom:489.960000pt;}
.y1a_c00429{bottom:508.200000pt;}
.y19_c00429{bottom:527.080000pt;}
.y18_c00429{bottom:559.080000pt;}
.y17_c00429{bottom:577.640000pt;}
.y16_c00429{bottom:596.200000pt;}
.y15_c00429{bottom:615.080000pt;}
.y14_c00429{bottom:633.640000pt;}
.y13_c00429{bottom:652.520000pt;}
.y12_c00429{bottom:671.080000pt;}
.y11_c00429{bottom:689.640000pt;}
.y10_c00429{bottom:708.520000pt;}
.yf_c00429{bottom:727.080000pt;}
.ye_c00429{bottom:745.640000pt;}
.yd_c00429{bottom:764.520000pt;}
.yc_c00429{bottom:796.520000pt;}
.yb_c00429{bottom:815.080000pt;}
.ya_c00429{bottom:833.640000pt;}
.y9_c00429{bottom:852.520000pt;}
.y8_c00429{bottom:871.080000pt;}
.y7_c00429{bottom:889.640000pt;}
.y6_c00429{bottom:908.520000pt;}
.y5_c00429{bottom:927.080000pt;}
.y4_c00429{bottom:945.640000pt;}
.y3_c00429{bottom:964.520000pt;}
.y2_c00429{bottom:1011.880000pt;}
.h9_c00429{height:17.116093pt;}
.h6_c00429{height:28.992000pt;}
.h7_c00429{height:41.761453pt;}
.h8_c00429{height:47.546880pt;}
.ha_c00429{height:50.346667pt;}
.h4_c00429{height:50.928601pt;}
.h3_c00429{height:57.984000pt;}
.h5_c00429{height:60.510720pt;}
.h2_c00429{height:1067.880000pt;}
.h0_c00429{height:1122.520000pt;}
.h1_c00429{height:1122.666667pt;}
.w3_c00429{width:14.826667pt;}
.w2_c00429{width:767.960000pt;}
.w0_c00429{width:793.720000pt;}
.w1_c00429{width:794.000000pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:12.880000pt;}
.x2_c00429{left:100.480133pt;}
.xb_c00429{left:108.634400pt;}
.x8_c00429{left:157.359333pt;}
.xc_c00429{left:160.472933pt;}
.x5_c00429{left:376.611600pt;}
.x3_c00429{left:398.968800pt;}
.x4_c00429{left:465.143200pt;}
.x9_c00429{left:483.428667pt;}
.x6_c00429{left:505.401600pt;}
.xa_c00429{left:523.428000pt;}
.x7_c00429{left:624.326133pt;}
.xd_c00429{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e75902495aca39d720990e1.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_170c9bd381b8e1fcb12b06e3.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;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:ff5_c00430;src:url('chunks/assets/font_66ee6280f95447bd1c4fe559.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00430;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00430;src:url('chunks/assets/font_28dea3694a07e4dbe7e47d24.woff2')format("woff");}.ff7_c00430{font-family:ff7_c00430;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00430{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00430{vertical-align:-24.480000px;}
.v0_c00430{vertical-align:0.000000px;}
.v2_c00430{vertical-align:24.495840px;}
.v1_c00430{vertical-align:30.240000px;}
.lsd_c00430{letter-spacing:-0.179568px;}
.lsc_c00430{letter-spacing:0.000000px;}
.ls18_c00430{letter-spacing:0.144000px;}
.ls10_c00430{letter-spacing:0.265680px;}
.ls2_c00430{letter-spacing:0.295200px;}
.ls6_c00430{letter-spacing:0.324360px;}
.ls8_c00430{letter-spacing:0.328628px;}
.lsb_c00430{letter-spacing:0.354240px;}
.ls16_c00430{letter-spacing:0.425088px;}
.ls13_c00430{letter-spacing:0.478224px;}
.ls9_c00430{letter-spacing:0.519552px;}
.ls5_c00430{letter-spacing:0.525456px;}
.ls3_c00430{letter-spacing:0.531360px;}
.lsa_c00430{letter-spacing:0.560880px;}
.lse_c00430{letter-spacing:0.584496px;}
.ls14_c00430{letter-spacing:0.602485px;}
.ls7_c00430{letter-spacing:0.657256px;}
.ls15_c00430{letter-spacing:0.690768px;}
.ls4_c00430{letter-spacing:0.712027px;}
.ls17_c00430{letter-spacing:0.962352px;}
.ls11_c00430{letter-spacing:1.233936px;}
.ls12_c00430{letter-spacing:1.346112px;}
.lsf_c00430{letter-spacing:5.402160px;}
.ls1_c00430{letter-spacing:5.976000px;}
.ls0_c00430{letter-spacing:54.864000px;}
.sc__c00430{text-shadow:none;}
.sc1_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00430{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc1_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00430{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00430{word-spacing:-21.815280px;}
.ws2_c00430{word-spacing:-17.630284px;}
.ws3_c00430{word-spacing:-17.575513px;}
.ws4_c00430{word-spacing:-17.246885px;}
.ws5_c00430{word-spacing:-17.103888px;}
.ws0_c00430{word-spacing:-11.429712px;}
.ws6_c00430{word-spacing:-10.152000px;}
.ws7_c00430{word-spacing:0.000000px;}
._7_c00430{margin-left:-1.322496px;}
._0_c00430{width:1.296000px;}
._a_c00430{width:2.315232px;}
._4_c00430{width:3.384000px;}
._8_c00430{width:4.392576px;}
._3_c00430{width:5.400000px;}
._6_c00430{width:7.768800px;}
._1_c00430{width:9.072000px;}
._2_c00430{width:10.171800px;}
._9_c00430{width:11.571840px;}
._5_c00430{width:21.600000px;}
.fc0_c00430{color:rgb(0,0,0);}
.fs5_c00430{font-size:36.000000px;}
.fs2_c00430{font-size:41.760000px;}
.fs3_c00430{font-size:59.040000px;}
.fs6_c00430{font-size:60.000000px;}
.fs4_c00430{font-size:60.857039px;}
.fs0_c00430{font-size:72.000000px;}
.fs1_c00430{font-size:74.215901px;}
.y0_c00430{bottom:0.000000px;}
.y31_c00430{bottom:3.120000px;}
.y30_c00430{bottom:34.744580px;}
.y1_c00430{bottom:54.000000px;}
.y2f_c00430{bottom:61.605000px;}
.y2e_c00430{bottom:88.245000px;}
.y2d_c00430{bottom:112.006440px;}
.y2c_c00430{bottom:129.644640px;}
.y2b_c00430{bottom:146.928600px;}
.y2a_c00430{bottom:164.566800px;}
.y29_c00430{bottom:182.205000px;}
.y28_c00430{bottom:207.046800px;}
.y26_c00430{bottom:224.681040px;}
.y27_c00430{bottom:224.685000px;}
.y25_c00430{bottom:241.965000px;}
.y24_c00430{bottom:241.966800px;}
.y23_c00430{bottom:259.605000px;}
.y22_c00430{bottom:259.610400px;}
.y21_c00430{bottom:277.248600px;}
.y20_c00430{bottom:302.089680px;}
.y1f_c00430{bottom:327.285000px;}
.y1e_c00430{bottom:352.485000px;}
.y1d_c00430{bottom:381.285000px;}
.y1c_c00430{bottom:410.085000px;}
.y1b_c00430{bottom:438.165000px;}
.y1a_c00430{bottom:466.605000px;}
.y19_c00430{bottom:495.765000px;}
.y18_c00430{bottom:523.845000px;}
.y17_c00430{bottom:559.845000px;}
.y16_c00430{bottom:595.845000px;}
.y15_c00430{bottom:616.725000px;}
.y14_c00430{bottom:637.965000px;}
.y13_c00430{bottom:658.845000px;}
.y12_c00430{bottom:680.085000px;}
.y11_c00430{bottom:716.085000px;}
.y10_c00430{bottom:736.965000px;}
.yf_c00430{bottom:772.965000px;}
.ye_c00430{bottom:793.845000px;}
.yd_c00430{bottom:815.085000px;}
.yc_c00430{bottom:851.085000px;}
.yb_c00430{bottom:871.965000px;}
.ya_c00430{bottom:892.845000px;}
.y9_c00430{bottom:914.085000px;}
.y8_c00430{bottom:950.085000px;}
.y7_c00430{bottom:970.965000px;}
.y6_c00430{bottom:1006.965000px;}
.y5_c00430{bottom:1042.965000px;}
.y4_c00430{bottom:1063.845000px;}
.y3_c00430{bottom:1085.085000px;}
.y2_c00430{bottom:1138.365000px;}
.hb_c00430{height:19.255605px;}
.ha_c00430{height:32.616000px;}
.h8_c00430{height:46.981634px;}
.h6_c00430{height:47.988281px;}
.h7_c00430{height:53.490240px;}
.hc_c00430{height:56.640000px;}
.h9_c00430{height:57.111840px;}
.h4_c00430{height:57.294676px;}
.h3_c00430{height:65.232000px;}
.h5_c00430{height:68.074560px;}
.h2_c00430{height:1201.365000px;}
.h0_c00430{height:1262.835000px;}
.h1_c00430{height:1263.000000px;}
.w3_c00430{width:16.680000px;}
.w2_c00430{width:863.955000px;}
.w0_c00430{width:892.935000px;}
.w1_c00430{width:893.250000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:14.490000px;}
.x2_c00430{left:113.040150px;}
.x2c_c00430{left:133.034550px;}
.x3_c00430{left:140.037600px;}
.x26_c00430{left:167.764500px;}
.x27_c00430{left:196.084050px;}
.x6_c00430{left:216.070350px;}
.x28_c00430{left:234.152700px;}
.x7_c00430{left:246.039600px;}
.x29_c00430{left:255.797250px;}
.x12_c00430{left:283.136700px;}
.x10_c00430{left:304.575450px;}
.x11_c00430{left:339.602700px;}
.x1b_c00430{left:345.131100px;}
.x1c_c00430{left:349.631100px;}
.x13_c00430{left:357.172500px;}
.x14_c00430{left:361.672500px;}
.x4_c00430{left:365.054400px;}
.x1d_c00430{left:401.650200px;}
.x1e_c00430{left:406.150200px;}
.x5_c00430{left:444.037350px;}
.x15_c00430{left:456.710850px;}
.x16_c00430{left:461.210850px;}
.x1f_c00430{left:464.032500px;}
.xa_c00430{left:476.733300px;}
.xb_c00430{left:488.721300px;}
.x20_c00430{left:490.423350px;}
.xc_c00430{left:503.995200px;}
.xd_c00430{left:514.992900px;}
.x17_c00430{left:516.199500px;}
.x18_c00430{left:520.699500px;}
.x2a_c00430{left:527.993100px;}
.xe_c00430{left:544.533000px;}
.x2b_c00430{left:547.147650px;}
.xf_c00430{left:559.562550px;}
.x21_c00430{left:561.699450px;}
.x19_c00430{left:580.710150px;}
.x1a_c00430{left:585.210150px;}
.x22_c00430{left:586.674000px;}
.x23_c00430{left:654.088200px;}
.x24_c00430{left:679.062750px;}
.x8_c00430{left:683.227350px;}
.x9_c00430{left:725.238600px;}
.x25_c00430{left:750.390000px;}
.x2d_c00430{left:768.254608px;}
@media print{
.v3_c00430{vertical-align:-21.760000pt;}
.v0_c00430{vertical-align:0.000000pt;}
.v2_c00430{vertical-align:21.774080pt;}
.v1_c00430{vertical-align:26.880000pt;}
.lsd_c00430{letter-spacing:-0.159616pt;}
.lsc_c00430{letter-spacing:0.000000pt;}
.ls18_c00430{letter-spacing:0.128000pt;}
.ls10_c00430{letter-spacing:0.236160pt;}
.ls2_c00430{letter-spacing:0.262400pt;}
.ls6_c00430{letter-spacing:0.288320pt;}
.ls8_c00430{letter-spacing:0.292114pt;}
.lsb_c00430{letter-spacing:0.314880pt;}
.ls16_c00430{letter-spacing:0.377856pt;}
.ls13_c00430{letter-spacing:0.425088pt;}
.ls9_c00430{letter-spacing:0.461824pt;}
.ls5_c00430{letter-spacing:0.467072pt;}
.ls3_c00430{letter-spacing:0.472320pt;}
.lsa_c00430{letter-spacing:0.498560pt;}
.lse_c00430{letter-spacing:0.519552pt;}
.ls14_c00430{letter-spacing:0.535542pt;}
.ls7_c00430{letter-spacing:0.584228pt;}
.ls15_c00430{letter-spacing:0.614016pt;}
.ls4_c00430{letter-spacing:0.632913pt;}
.ls17_c00430{letter-spacing:0.855424pt;}
.ls11_c00430{letter-spacing:1.096832pt;}
.ls12_c00430{letter-spacing:1.196544pt;}
.lsf_c00430{letter-spacing:4.801920pt;}
.ls1_c00430{letter-spacing:5.312000pt;}
.ls0_c00430{letter-spacing:48.768000pt;}
.ws1_c00430{word-spacing:-19.391360pt;}
.ws2_c00430{word-spacing:-15.671364pt;}
.ws3_c00430{word-spacing:-15.622678pt;}
.ws4_c00430{word-spacing:-15.330564pt;}
.ws5_c00430{word-spacing:-15.203456pt;}
.ws0_c00430{word-spacing:-10.159744pt;}
.ws6_c00430{word-spacing:-9.024000pt;}
.ws7_c00430{word-spacing:0.000000pt;}
._7_c00430{margin-left:-1.175552pt;}
._0_c00430{width:1.152000pt;}
._a_c00430{width:2.057984pt;}
._4_c00430{width:3.008000pt;}
._8_c00430{width:3.904512pt;}
._3_c00430{width:4.800000pt;}
._6_c00430{width:6.905600pt;}
._1_c00430{width:8.064000pt;}
._2_c00430{width:9.041600pt;}
._9_c00430{width:10.286080pt;}
._5_c00430{width:19.200000pt;}
.fs5_c00430{font-size:32.000000pt;}
.fs2_c00430{font-size:37.120000pt;}
.fs3_c00430{font-size:52.480000pt;}
.fs6_c00430{font-size:53.333333pt;}
.fs4_c00430{font-size:54.095146pt;}
.fs0_c00430{font-size:64.000000pt;}
.fs1_c00430{font-size:65.969690pt;}
.y0_c00430{bottom:0.000000pt;}
.y31_c00430{bottom:2.773333pt;}
.y30_c00430{bottom:30.884071pt;}
.y1_c00430{bottom:48.000000pt;}
.y2f_c00430{bottom:54.760000pt;}
.y2e_c00430{bottom:78.440000pt;}
.y2d_c00430{bottom:99.561280pt;}
.y2c_c00430{bottom:115.239680pt;}
.y2b_c00430{bottom:130.603200pt;}
.y2a_c00430{bottom:146.281600pt;}
.y29_c00430{bottom:161.960000pt;}
.y28_c00430{bottom:184.041600pt;}
.y26_c00430{bottom:199.716480pt;}
.y27_c00430{bottom:199.720000pt;}
.y25_c00430{bottom:215.080000pt;}
.y24_c00430{bottom:215.081600pt;}
.y23_c00430{bottom:230.760000pt;}
.y22_c00430{bottom:230.764800pt;}
.y21_c00430{bottom:246.443200pt;}
.y20_c00430{bottom:268.524160pt;}
.y1f_c00430{bottom:290.920000pt;}
.y1e_c00430{bottom:313.320000pt;}
.y1d_c00430{bottom:338.920000pt;}
.y1c_c00430{bottom:364.520000pt;}
.y1b_c00430{bottom:389.480000pt;}
.y1a_c00430{bottom:414.760000pt;}
.y19_c00430{bottom:440.680000pt;}
.y18_c00430{bottom:465.640000pt;}
.y17_c00430{bottom:497.640000pt;}
.y16_c00430{bottom:529.640000pt;}
.y15_c00430{bottom:548.200000pt;}
.y14_c00430{bottom:567.080000pt;}
.y13_c00430{bottom:585.640000pt;}
.y12_c00430{bottom:604.520000pt;}
.y11_c00430{bottom:636.520000pt;}
.y10_c00430{bottom:655.080000pt;}
.yf_c00430{bottom:687.080000pt;}
.ye_c00430{bottom:705.640000pt;}
.yd_c00430{bottom:724.520000pt;}
.yc_c00430{bottom:756.520000pt;}
.yb_c00430{bottom:775.080000pt;}
.ya_c00430{bottom:793.640000pt;}
.y9_c00430{bottom:812.520000pt;}
.y8_c00430{bottom:844.520000pt;}
.y7_c00430{bottom:863.080000pt;}
.y6_c00430{bottom:895.080000pt;}
.y5_c00430{bottom:927.080000pt;}
.y4_c00430{bottom:945.640000pt;}
.y3_c00430{bottom:964.520000pt;}
.y2_c00430{bottom:1011.880000pt;}
.hb_c00430{height:17.116093pt;}
.ha_c00430{height:28.992000pt;}
.h8_c00430{height:41.761453pt;}
.h6_c00430{height:42.656250pt;}
.h7_c00430{height:47.546880pt;}
.hc_c00430{height:50.346667pt;}
.h9_c00430{height:50.766080pt;}
.h4_c00430{height:50.928601pt;}
.h3_c00430{height:57.984000pt;}
.h5_c00430{height:60.510720pt;}
.h2_c00430{height:1067.880000pt;}
.h0_c00430{height:1122.520000pt;}
.h1_c00430{height:1122.666667pt;}
.w3_c00430{width:14.826667pt;}
.w2_c00430{width:767.960000pt;}
.w0_c00430{width:793.720000pt;}
.w1_c00430{width:794.000000pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:12.880000pt;}
.x2_c00430{left:100.480133pt;}
.x2c_c00430{left:118.252933pt;}
.x3_c00430{left:124.477867pt;}
.x26_c00430{left:149.124000pt;}
.x27_c00430{left:174.296933pt;}
.x6_c00430{left:192.062533pt;}
.x28_c00430{left:208.135733pt;}
.x7_c00430{left:218.701867pt;}
.x29_c00430{left:227.375333pt;}
.x12_c00430{left:251.677067pt;}
.x10_c00430{left:270.733733pt;}
.x11_c00430{left:301.869067pt;}
.x1b_c00430{left:306.783200pt;}
.x1c_c00430{left:310.783200pt;}
.x13_c00430{left:317.486667pt;}
.x14_c00430{left:321.486667pt;}
.x4_c00430{left:324.492800pt;}
.x1d_c00430{left:357.022400pt;}
.x1e_c00430{left:361.022400pt;}
.x5_c00430{left:394.699867pt;}
.x15_c00430{left:405.965200pt;}
.x16_c00430{left:409.965200pt;}
.x1f_c00430{left:412.473333pt;}
.xa_c00430{left:423.762933pt;}
.xb_c00430{left:434.418933pt;}
.x20_c00430{left:435.931867pt;}
.xc_c00430{left:447.995733pt;}
.xd_c00430{left:457.771467pt;}
.x17_c00430{left:458.844000pt;}
.x18_c00430{left:462.844000pt;}
.x2a_c00430{left:469.327200pt;}
.xe_c00430{left:484.029333pt;}
.x2b_c00430{left:486.353467pt;}
.xf_c00430{left:497.388933pt;}
.x21_c00430{left:499.288400pt;}
.x19_c00430{left:516.186800pt;}
.x1a_c00430{left:520.186800pt;}
.x22_c00430{left:521.488000pt;}
.x23_c00430{left:581.411733pt;}
.x24_c00430{left:603.611333pt;}
.x8_c00430{left:607.313200pt;}
.x9_c00430{left:644.656533pt;}
.x25_c00430{left:667.013333pt;}
.x2d_c00430{left:682.892985pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4e777a4a31924832dfb985f.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_0a0e8c89581108a97df43b1e.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;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:ff3_c00431;src:url('chunks/assets/font_2624a2637adf02c07e8992f0.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00431{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00431{vertical-align:-24.480000px;}
.v0_c00431{vertical-align:0.000000px;}
.v1_c00431{vertical-align:30.240000px;}
.ls15_c00431{letter-spacing:-0.179568px;}
.lsc_c00431{letter-spacing:0.000000px;}
.ls16_c00431{letter-spacing:0.144000px;}
.ls23_c00431{letter-spacing:0.156816px;}
.ls5_c00431{letter-spacing:0.236160px;}
.ls20_c00431{letter-spacing:0.242352px;}
.ls11_c00431{letter-spacing:0.265680px;}
.ls2_c00431{letter-spacing:0.283392px;}
.ls24_c00431{letter-spacing:0.294624px;}
.ls1_c00431{letter-spacing:0.295200px;}
.ls22_c00431{letter-spacing:0.318384px;}
.lsa_c00431{letter-spacing:0.318480px;}
.ls26_c00431{letter-spacing:0.318816px;}
.ls9_c00431{letter-spacing:0.342144px;}
.ls21_c00431{letter-spacing:0.346896px;}
.ls3_c00431{letter-spacing:0.354240px;}
.ls27_c00431{letter-spacing:0.383399px;}
.lsf_c00431{letter-spacing:0.425088px;}
.ls6_c00431{letter-spacing:0.438171px;}
.ls17_c00431{letter-spacing:0.478224px;}
.ls0_c00431{letter-spacing:0.531360px;}
.ls7_c00431{letter-spacing:0.537264px;}
.ls1a_c00431{letter-spacing:0.547713px;}
.ls12_c00431{letter-spacing:0.584496px;}
.ls8_c00431{letter-spacing:0.585960px;}
.ls10_c00431{letter-spacing:0.690768px;}
.ls13_c00431{letter-spacing:0.696672px;}
.ls1c_c00431{letter-spacing:0.712027px;}
.lse_c00431{letter-spacing:0.743904px;}
.lsd_c00431{letter-spacing:0.797040px;}
.ls28_c00431{letter-spacing:1.741680px;}
.ls1b_c00431{letter-spacing:2.166768px;}
.ls18_c00431{letter-spacing:2.326176px;}
.ls14_c00431{letter-spacing:5.430672px;}
.ls1e_c00431{letter-spacing:5.567472px;}
.ls4_c00431{letter-spacing:5.975400px;}
.lsb_c00431{letter-spacing:5.976000px;}
.ls25_c00431{letter-spacing:7.675200px;}
.ls1d_c00431{letter-spacing:7.893648px;}
.ls1f_c00431{letter-spacing:9.534960px;}
.ls19_c00431{letter-spacing:10.757088px;}
.sc__c00431{text-shadow:none;}
.sc1_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00431{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc1_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00431{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8_c00431{word-spacing:-21.980592px;}
.ws2_c00431{word-spacing:-21.043152px;}
.ws4_c00431{word-spacing:-20.016000px;}
.ws7_c00431{word-spacing:-17.465970px;}
.ws6_c00431{word-spacing:-17.356428px;}
.wse_c00431{word-spacing:-17.301656px;}
.ws1_c00431{word-spacing:-17.157024px;}
.wsa_c00431{word-spacing:-16.944480px;}
.ws0_c00431{word-spacing:-16.413120px;}
.wsc_c00431{word-spacing:-13.552704px;}
.wsb_c00431{word-spacing:-13.528944px;}
.wsd_c00431{word-spacing:-13.505184px;}
.ws9_c00431{word-spacing:-13.452912px;}
.ws3_c00431{word-spacing:-11.429712px;}
.ws5_c00431{word-spacing:-10.152000px;}
.wsf_c00431{word-spacing:0.000000px;}
._14_c00431{margin-left:-10.383840px;}
._15_c00431{margin-left:-9.339840px;}
._16_c00431{margin-left:-7.498080px;}
._17_c00431{margin-left:-6.487200px;}
._13_c00431{margin-left:-2.944800px;}
._1_c00431{margin-left:-1.062720px;}
._2_c00431{width:1.269360px;}
._0_c00431{width:2.302560px;}
._5_c00431{width:3.695904px;}
._8_c00431{width:4.920192px;}
._a_c00431{width:6.071040px;}
._3_c00431{width:7.320960px;}
._7_c00431{width:9.174816px;}
._11_c00431{width:10.337184px;}
._c_c00431{width:11.736000px;}
._6_c00431{width:13.992480px;}
._4_c00431{width:15.291360px;}
._10_c00431{width:16.366536px;}
._12_c00431{width:18.576000px;}
._e_c00431{width:26.280000px;}
._d_c00431{width:27.432000px;}
._9_c00431{width:34.776000px;}
._b_c00431{width:40.104000px;}
._f_c00431{width:54.792000px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs5_c00431{font-size:36.000000px;}
.fs3_c00431{font-size:41.760000px;}
.fs7_c00431{font-size:47.520000px;}
.fs2_c00431{font-size:56.160000px;}
.fs1_c00431{font-size:59.040000px;}
.fs8_c00431{font-size:60.000000px;}
.fs6_c00431{font-size:60.857039px;}
.fs0_c00431{font-size:72.000000px;}
.fs4_c00431{font-size:74.215901px;}
.y0_c00431{bottom:0.000000px;}
.y3b_c00431{bottom:3.120000px;}
.y3a_c00431{bottom:34.744580px;}
.y1_c00431{bottom:54.000000px;}
.y39_c00431{bottom:55.481040px;}
.y38_c00431{bottom:72.765000px;}
.y37_c00431{bottom:72.766800px;}
.y36_c00431{bottom:90.405000px;}
.y35_c00431{bottom:96.525000px;}
.y34_c00431{bottom:107.683200px;}
.y33_c00431{bottom:125.325000px;}
.y32_c00431{bottom:125.326800px;}
.y30_c00431{bottom:142.961040px;}
.y31_c00431{bottom:142.965000px;}
.y2f_c00431{bottom:160.245000px;}
.y2e_c00431{bottom:166.365000px;}
.y2d_c00431{bottom:177.886800px;}
.y2c_c00431{bottom:195.525000px;}
.y2b_c00431{bottom:201.645000px;}
.y2a_c00431{bottom:212.806800px;}
.y29_c00431{bottom:236.565000px;}
.y28_c00431{bottom:247.725000px;}
.y27_c00431{bottom:253.845000px;}
.y26_c00431{bottom:280.485000px;}
.y25_c00431{bottom:338.445000px;}
.y24_c00431{bottom:359.325000px;}
.y23_c00431{bottom:380.205000px;}
.y22_c00431{bottom:401.445000px;}
.y21_c00431{bottom:422.325000px;}
.y20_c00431{bottom:443.205000px;}
.y1f_c00431{bottom:464.445000px;}
.y1e_c00431{bottom:485.325000px;}
.y1d_c00431{bottom:521.325000px;}
.y1c_c00431{bottom:542.205000px;}
.y1b_c00431{bottom:563.445000px;}
.y1a_c00431{bottom:584.325000px;}
.y19_c00431{bottom:605.205000px;}
.y18_c00431{bottom:626.445000px;}
.y17_c00431{bottom:662.445000px;}
.y16_c00431{bottom:683.325000px;}
.y15_c00431{bottom:704.565000px;}
.y14_c00431{bottom:725.445000px;}
.y13_c00431{bottom:746.325000px;}
.y12_c00431{bottom:767.565000px;}
.y11_c00431{bottom:788.445000px;}
.y10_c00431{bottom:809.325000px;}
.yf_c00431{bottom:830.565000px;}
.ye_c00431{bottom:866.565000px;}
.yd_c00431{bottom:902.565000px;}
.yc_c00431{bottom:930.643920px;}
.yb_c00431{bottom:948.282120px;}
.ya_c00431{bottom:965.566080px;}
.y9_c00431{bottom:983.204280px;}
.y8_c00431{bottom:1000.842480px;}
.y7_c00431{bottom:1018.126440px;}
.y6_c00431{bottom:1035.764640px;}
.y5_c00431{bottom:1053.402840px;}
.y4_c00431{bottom:1070.686800px;}
.y3_c00431{bottom:1088.325000px;}
.y2_c00431{bottom:1138.365000px;}
.ha_c00431{height:19.255605px;}
.h7_c00431{height:32.616000px;}
.h8_c00431{height:46.981634px;}
.h4_c00431{height:53.490240px;}
.h9_c00431{height:53.497440px;}
.hb_c00431{height:56.640000px;}
.h6_c00431{height:57.294676px;}
.h3_c00431{height:65.232000px;}
.h5_c00431{height:68.074560px;}
.h2_c00431{height:1201.365000px;}
.h0_c00431{height:1262.835000px;}
.h1_c00431{height:1263.000000px;}
.w3_c00431{width:25.020000px;}
.w2_c00431{width:863.955000px;}
.w0_c00431{width:892.935000px;}
.w1_c00431{width:893.250000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:14.490000px;}
.x2_c00431{left:113.040150px;}
.x1b_c00431{left:189.601650px;}
.x5_c00431{left:200.032800px;}
.x1c_c00431{left:219.115350px;}
.x1d_c00431{left:261.183150px;}
.x6_c00431{left:288.505050px;}
.x16_c00431{left:291.907800px;}
.x1e_c00431{left:297.857250px;}
.x17_c00431{left:314.218800px;}
.x1f_c00431{left:329.449950px;}
.xc_c00431{left:344.126550px;}
.x7_c00431{left:350.550000px;}
.x20_c00431{left:371.488050px;}
.xd_c00431{left:406.117650px;}
.xe_c00431{left:453.907050px;}
.xf_c00431{left:469.731450px;}
.x14_c00431{left:499.962150px;}
.x12_c00431{left:520.440300px;}
.x8_c00431{left:526.467750px;}
.x3_c00431{left:535.171800px;}
.x13_c00431{left:545.080050px;}
.x15_c00431{left:572.455500px;}
.x18_c00431{left:577.969500px;}
.x4_c00431{left:583.194900px;}
.x9_c00431{left:592.472850px;}
.x19_c00431{left:617.523150px;}
.x1a_c00431{left:625.862850px;}
.xa_c00431{left:662.640000px;}
.x10_c00431{left:706.231500px;}
.xb_c00431{left:710.663400px;}
.x11_c00431{left:750.390000px;}
.x21_c00431{left:759.914612px;}
@media print{
.v2_c00431{vertical-align:-21.760000pt;}
.v0_c00431{vertical-align:0.000000pt;}
.v1_c00431{vertical-align:26.880000pt;}
.ls15_c00431{letter-spacing:-0.159616pt;}
.lsc_c00431{letter-spacing:0.000000pt;}
.ls16_c00431{letter-spacing:0.128000pt;}
.ls23_c00431{letter-spacing:0.139392pt;}
.ls5_c00431{letter-spacing:0.209920pt;}
.ls20_c00431{letter-spacing:0.215424pt;}
.ls11_c00431{letter-spacing:0.236160pt;}
.ls2_c00431{letter-spacing:0.251904pt;}
.ls24_c00431{letter-spacing:0.261888pt;}
.ls1_c00431{letter-spacing:0.262400pt;}
.ls22_c00431{letter-spacing:0.283008pt;}
.lsa_c00431{letter-spacing:0.283093pt;}
.ls26_c00431{letter-spacing:0.283392pt;}
.ls9_c00431{letter-spacing:0.304128pt;}
.ls21_c00431{letter-spacing:0.308352pt;}
.ls3_c00431{letter-spacing:0.314880pt;}
.ls27_c00431{letter-spacing:0.340799pt;}
.lsf_c00431{letter-spacing:0.377856pt;}
.ls6_c00431{letter-spacing:0.389485pt;}
.ls17_c00431{letter-spacing:0.425088pt;}
.ls0_c00431{letter-spacing:0.472320pt;}
.ls7_c00431{letter-spacing:0.477568pt;}
.ls1a_c00431{letter-spacing:0.486856pt;}
.ls12_c00431{letter-spacing:0.519552pt;}
.ls8_c00431{letter-spacing:0.520853pt;}
.ls10_c00431{letter-spacing:0.614016pt;}
.ls13_c00431{letter-spacing:0.619264pt;}
.ls1c_c00431{letter-spacing:0.632913pt;}
.lse_c00431{letter-spacing:0.661248pt;}
.lsd_c00431{letter-spacing:0.708480pt;}
.ls28_c00431{letter-spacing:1.548160pt;}
.ls1b_c00431{letter-spacing:1.926016pt;}
.ls18_c00431{letter-spacing:2.067712pt;}
.ls14_c00431{letter-spacing:4.827264pt;}
.ls1e_c00431{letter-spacing:4.948864pt;}
.ls4_c00431{letter-spacing:5.311467pt;}
.lsb_c00431{letter-spacing:5.312000pt;}
.ls25_c00431{letter-spacing:6.822400pt;}
.ls1d_c00431{letter-spacing:7.016576pt;}
.ls1f_c00431{letter-spacing:8.475520pt;}
.ls19_c00431{letter-spacing:9.561856pt;}
.ws8_c00431{word-spacing:-19.538304pt;}
.ws2_c00431{word-spacing:-18.705024pt;}
.ws4_c00431{word-spacing:-17.792000pt;}
.ws7_c00431{word-spacing:-15.525307pt;}
.ws6_c00431{word-spacing:-15.427936pt;}
.wse_c00431{word-spacing:-15.379250pt;}
.ws1_c00431{word-spacing:-15.250688pt;}
.wsa_c00431{word-spacing:-15.061760pt;}
.ws0_c00431{word-spacing:-14.589440pt;}
.wsc_c00431{word-spacing:-12.046848pt;}
.wsb_c00431{word-spacing:-12.025728pt;}
.wsd_c00431{word-spacing:-12.004608pt;}
.ws9_c00431{word-spacing:-11.958144pt;}
.ws3_c00431{word-spacing:-10.159744pt;}
.ws5_c00431{word-spacing:-9.024000pt;}
.wsf_c00431{word-spacing:0.000000pt;}
._14_c00431{margin-left:-9.230080pt;}
._15_c00431{margin-left:-8.302080pt;}
._16_c00431{margin-left:-6.664960pt;}
._17_c00431{margin-left:-5.766400pt;}
._13_c00431{margin-left:-2.617600pt;}
._1_c00431{margin-left:-0.944640pt;}
._2_c00431{width:1.128320pt;}
._0_c00431{width:2.046720pt;}
._5_c00431{width:3.285248pt;}
._8_c00431{width:4.373504pt;}
._a_c00431{width:5.396480pt;}
._3_c00431{width:6.507520pt;}
._7_c00431{width:8.155392pt;}
._11_c00431{width:9.188608pt;}
._c_c00431{width:10.432000pt;}
._6_c00431{width:12.437760pt;}
._4_c00431{width:13.592320pt;}
._10_c00431{width:14.548032pt;}
._12_c00431{width:16.512000pt;}
._e_c00431{width:23.360000pt;}
._d_c00431{width:24.384000pt;}
._9_c00431{width:30.912000pt;}
._b_c00431{width:35.648000pt;}
._f_c00431{width:48.704000pt;}
.fs5_c00431{font-size:32.000000pt;}
.fs3_c00431{font-size:37.120000pt;}
.fs7_c00431{font-size:42.240000pt;}
.fs2_c00431{font-size:49.920000pt;}
.fs1_c00431{font-size:52.480000pt;}
.fs8_c00431{font-size:53.333333pt;}
.fs6_c00431{font-size:54.095146pt;}
.fs0_c00431{font-size:64.000000pt;}
.fs4_c00431{font-size:65.969690pt;}
.y0_c00431{bottom:0.000000pt;}
.y3b_c00431{bottom:2.773333pt;}
.y3a_c00431{bottom:30.884071pt;}
.y1_c00431{bottom:48.000000pt;}
.y39_c00431{bottom:49.316480pt;}
.y38_c00431{bottom:64.680000pt;}
.y37_c00431{bottom:64.681600pt;}
.y36_c00431{bottom:80.360000pt;}
.y35_c00431{bottom:85.800000pt;}
.y34_c00431{bottom:95.718400pt;}
.y33_c00431{bottom:111.400000pt;}
.y32_c00431{bottom:111.401600pt;}
.y30_c00431{bottom:127.076480pt;}
.y31_c00431{bottom:127.080000pt;}
.y2f_c00431{bottom:142.440000pt;}
.y2e_c00431{bottom:147.880000pt;}
.y2d_c00431{bottom:158.121600pt;}
.y2c_c00431{bottom:173.800000pt;}
.y2b_c00431{bottom:179.240000pt;}
.y2a_c00431{bottom:189.161600pt;}
.y29_c00431{bottom:210.280000pt;}
.y28_c00431{bottom:220.200000pt;}
.y27_c00431{bottom:225.640000pt;}
.y26_c00431{bottom:249.320000pt;}
.y25_c00431{bottom:300.840000pt;}
.y24_c00431{bottom:319.400000pt;}
.y23_c00431{bottom:337.960000pt;}
.y22_c00431{bottom:356.840000pt;}
.y21_c00431{bottom:375.400000pt;}
.y20_c00431{bottom:393.960000pt;}
.y1f_c00431{bottom:412.840000pt;}
.y1e_c00431{bottom:431.400000pt;}
.y1d_c00431{bottom:463.400000pt;}
.y1c_c00431{bottom:481.960000pt;}
.y1b_c00431{bottom:500.840000pt;}
.y1a_c00431{bottom:519.400000pt;}
.y19_c00431{bottom:537.960000pt;}
.y18_c00431{bottom:556.840000pt;}
.y17_c00431{bottom:588.840000pt;}
.y16_c00431{bottom:607.400000pt;}
.y15_c00431{bottom:626.280000pt;}
.y14_c00431{bottom:644.840000pt;}
.y13_c00431{bottom:663.400000pt;}
.y12_c00431{bottom:682.280000pt;}
.y11_c00431{bottom:700.840000pt;}
.y10_c00431{bottom:719.400000pt;}
.yf_c00431{bottom:738.280000pt;}
.ye_c00431{bottom:770.280000pt;}
.yd_c00431{bottom:802.280000pt;}
.yc_c00431{bottom:827.239040pt;}
.yb_c00431{bottom:842.917440pt;}
.ya_c00431{bottom:858.280960pt;}
.y9_c00431{bottom:873.959360pt;}
.y8_c00431{bottom:889.637760pt;}
.y7_c00431{bottom:905.001280pt;}
.y6_c00431{bottom:920.679680pt;}
.y5_c00431{bottom:936.358080pt;}
.y4_c00431{bottom:951.721600pt;}
.y3_c00431{bottom:967.400000pt;}
.y2_c00431{bottom:1011.880000pt;}
.ha_c00431{height:17.116093pt;}
.h7_c00431{height:28.992000pt;}
.h8_c00431{height:41.761453pt;}
.h4_c00431{height:47.546880pt;}
.h9_c00431{height:47.553280pt;}
.hb_c00431{height:50.346667pt;}
.h6_c00431{height:50.928601pt;}
.h3_c00431{height:57.984000pt;}
.h5_c00431{height:60.510720pt;}
.h2_c00431{height:1067.880000pt;}
.h0_c00431{height:1122.520000pt;}
.h1_c00431{height:1122.666667pt;}
.w3_c00431{width:22.240000pt;}
.w2_c00431{width:767.960000pt;}
.w0_c00431{width:793.720000pt;}
.w1_c00431{width:794.000000pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:12.880000pt;}
.x2_c00431{left:100.480133pt;}
.x1b_c00431{left:168.534800pt;}
.x5_c00431{left:177.806933pt;}
.x1c_c00431{left:194.769200pt;}
.x1d_c00431{left:232.162800pt;}
.x6_c00431{left:256.448933pt;}
.x16_c00431{left:259.473600pt;}
.x1e_c00431{left:264.762000pt;}
.x17_c00431{left:279.305600pt;}
.x1f_c00431{left:292.844400pt;}
.xc_c00431{left:305.890267pt;}
.x7_c00431{left:311.600000pt;}
.x20_c00431{left:330.211600pt;}
.xd_c00431{left:360.993467pt;}
.xe_c00431{left:403.472933pt;}
.xf_c00431{left:417.539067pt;}
.x14_c00431{left:444.410800pt;}
.x12_c00431{left:462.613600pt;}
.x8_c00431{left:467.971333pt;}
.x3_c00431{left:475.708267pt;}
.x13_c00431{left:484.515600pt;}
.x15_c00431{left:508.849333pt;}
.x18_c00431{left:513.750667pt;}
.x4_c00431{left:518.395467pt;}
.x9_c00431{left:526.642533pt;}
.x19_c00431{left:548.909467pt;}
.x1a_c00431{left:556.322533pt;}
.xa_c00431{left:589.013333pt;}
.x10_c00431{left:627.761333pt;}
.xb_c00431{left:631.700800pt;}
.x11_c00431{left:667.013333pt;}
.x21_c00431{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec51b2ff8948cd6df24ab517.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_7f61f69e49239079e8c26c3d.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;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:ff3_c00432;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_59a21bce23cdc0eda48ba471.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:0.806000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_2624a2637adf02c07e8992f0.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00432{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00432{vertical-align:-24.480000px;}
.v0_c00432{vertical-align:0.000000px;}
.v1_c00432{vertical-align:30.240000px;}
.ls9_c00432{letter-spacing:-0.179568px;}
.ls8_c00432{letter-spacing:0.000000px;}
.lsb_c00432{letter-spacing:0.144000px;}
.ls6_c00432{letter-spacing:0.236160px;}
.lsc_c00432{letter-spacing:0.265680px;}
.ls4_c00432{letter-spacing:0.295200px;}
.ls11_c00432{letter-spacing:0.318816px;}
.ls3_c00432{letter-spacing:0.328628px;}
.ls12_c00432{letter-spacing:0.425088px;}
.ls2_c00432{letter-spacing:0.425999px;}
.lse_c00432{letter-spacing:0.438171px;}
.ls1_c00432{letter-spacing:0.507000px;}
.ls5_c00432{letter-spacing:0.531360px;}
.ls1a_c00432{letter-spacing:0.547713px;}
.ls1e_c00432{letter-spacing:0.584496px;}
.ls13_c00432{letter-spacing:0.602485px;}
.lsf_c00432{letter-spacing:0.657256px;}
.ls10_c00432{letter-spacing:0.712027px;}
.ls16_c00432{letter-spacing:0.718113px;}
.ls19_c00432{letter-spacing:0.766799px;}
.ls18_c00432{letter-spacing:0.797040px;}
.ls17_c00432{letter-spacing:2.402928px;}
.ls1b_c00432{letter-spacing:2.509200px;}
.ls1c_c00432{letter-spacing:3.584480px;}
.lsa_c00432{letter-spacing:5.335200px;}
.ls7_c00432{letter-spacing:5.976000px;}
.ls0_c00432{letter-spacing:5.996400px;}
.ls1d_c00432{letter-spacing:7.551216px;}
.lsd_c00432{letter-spacing:10.733472px;}
.ls15_c00432{letter-spacing:12.640464px;}
.ls14_c00432{letter-spacing:12.646368px;}
.sc__c00432{text-shadow:none;}
.sc1_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00432{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc1_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00432{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00432{word-spacing:-20.947680px;}
.ws6_c00432{word-spacing:-17.465970px;}
.ws3_c00432{word-spacing:-17.356428px;}
.ws5_c00432{word-spacing:-17.246885px;}
.ws4_c00432{word-spacing:-16.838208px;}
.ws0_c00432{word-spacing:-11.429712px;}
.ws2_c00432{word-spacing:-10.152000px;}
.ws7_c00432{word-spacing:-0.060857px;}
.ws8_c00432{word-spacing:0.000000px;}
._12_c00432{margin-left:-12.466080px;}
._10_c00432{margin-left:-11.268000px;}
._f_c00432{margin-left:-10.206720px;}
._15_c00432{margin-left:-7.254720px;}
._16_c00432{margin-left:-6.035040px;}
._14_c00432{margin-left:-4.153632px;}
._13_c00432{margin-left:-2.679499px;}
._11_c00432{margin-left:-1.217141px;}
._e_c00432{width:1.010880px;}
._3_c00432{width:2.232000px;}
._2_c00432{width:3.744000px;}
._7_c00432{width:4.896000px;}
._9_c00432{width:6.120000px;}
._5_c00432{width:10.152000px;}
._0_c00432{width:11.160000px;}
._6_c00432{width:12.384000px;}
._4_c00432{width:16.560000px;}
._a_c00432{width:18.720000px;}
._1_c00432{width:21.384000px;}
._c_c00432{width:26.280000px;}
._8_c00432{width:27.288000px;}
._b_c00432{width:29.736000px;}
._d_c00432{width:33.624000px;}
.fc0_c00432{color:rgb(0,0,0);}
.fs4_c00432{font-size:36.000000px;}
.fs2_c00432{font-size:41.760000px;}
.fs3_c00432{font-size:56.160000px;}
.fs5_c00432{font-size:59.040000px;}
.fs7_c00432{font-size:60.000000px;}
.fs6_c00432{font-size:60.857039px;}
.fs0_c00432{font-size:72.000000px;}
.fs1_c00432{font-size:74.215901px;}
.y0_c00432{bottom:0.000000px;}
.y33_c00432{bottom:3.120000px;}
.y32_c00432{bottom:34.744580px;}
.y1_c00432{bottom:54.000000px;}
.y31_c00432{bottom:55.481040px;}
.y30_c00432{bottom:78.885000px;}
.y2f_c00432{bottom:90.405000px;}
.y2e_c00432{bottom:90.406800px;}
.y2c_c00432{bottom:108.041040px;}
.y2d_c00432{bottom:108.045000px;}
.y2b_c00432{bottom:125.325000px;}
.y2a_c00432{bottom:125.326800px;}
.y28_c00432{bottom:142.961040px;}
.y29_c00432{bottom:142.965000px;}
.y27_c00432{bottom:160.245000px;}
.y26_c00432{bottom:177.885000px;}
.y25_c00432{bottom:177.886800px;}
.y23_c00432{bottom:195.521040px;}
.y24_c00432{bottom:195.525000px;}
.y22_c00432{bottom:212.805000px;}
.y21_c00432{bottom:230.445000px;}
.y20_c00432{bottom:236.565000px;}
.y1f_c00432{bottom:254.205000px;}
.y1e_c00432{bottom:280.845000px;}
.y1d_c00432{bottom:430.605000px;}
.y1c_c00432{bottom:466.605000px;}
.y1b_c00432{bottom:487.485000px;}
.y1a_c00432{bottom:508.725000px;}
.y19_c00432{bottom:529.605000px;}
.y18_c00432{bottom:550.485000px;}
.y17_c00432{bottom:586.485000px;}
.y16_c00432{bottom:622.485000px;}
.y15_c00432{bottom:658.485000px;}
.y14_c00432{bottom:679.725000px;}
.y13_c00432{bottom:700.605000px;}
.y12_c00432{bottom:721.485000px;}
.y11_c00432{bottom:744.525000px;}
.y10_c00432{bottom:767.205000px;}
.yf_c00432{bottom:788.085000px;}
.ye_c00432{bottom:808.965000px;}
.yd_c00432{bottom:844.965000px;}
.yc_c00432{bottom:865.845000px;}
.yb_c00432{bottom:887.085000px;}
.ya_c00432{bottom:907.965000px;}
.y9_c00432{bottom:928.845000px;}
.y8_c00432{bottom:950.085000px;}
.y7_c00432{bottom:986.085000px;}
.y6_c00432{bottom:1006.965000px;}
.y5_c00432{bottom:1027.845000px;}
.y4_c00432{bottom:1063.845000px;}
.y3_c00432{bottom:1085.085000px;}
.y2_c00432{bottom:1138.365000px;}
.ha_c00432{height:19.255605px;}
.h6_c00432{height:32.616000px;}
.h7_c00432{height:46.981634px;}
.h9_c00432{height:48.685631px;}
.h8_c00432{height:53.490240px;}
.hb_c00432{height:56.640000px;}
.h4_c00432{height:57.294676px;}
.h3_c00432{height:65.232000px;}
.h5_c00432{height:68.074560px;}
.h2_c00432{height:1201.365000px;}
.h0_c00432{height:1262.835000px;}
.h1_c00432{height:1263.000000px;}
.w3_c00432{width:25.020000px;}
.w2_c00432{width:863.955000px;}
.w0_c00432{width:892.935000px;}
.w1_c00432{width:893.250000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:14.490000px;}
.x2_c00432{left:113.040150px;}
.x1f_c00432{left:118.034850px;}
.x20_c00432{left:157.198650px;}
.x8_c00432{left:169.037400px;}
.x16_c00432{left:174.443100px;}
.x14_c00432{left:186.029250px;}
.xa_c00432{left:193.030950px;}
.x7_c00432{left:198.070650px;}
.x17_c00432{left:204.166650px;}
.x9_c00432{left:228.040650px;}
.x21_c00432{left:236.845050px;}
.xe_c00432{left:243.069900px;}
.x22_c00432{left:257.903400px;}
.x12_c00432{left:298.369650px;}
.x3_c00432{left:300.138000px;}
.xb_c00432{left:325.184250px;}
.x4_c00432{left:353.129100px;}
.x28_c00432{left:365.586150px;}
.x29_c00432{left:378.920700px;}
.x2a_c00432{left:383.090250px;}
.xf_c00432{left:385.015800px;}
.x10_c00432{left:396.013500px;}
.x1a_c00432{left:399.181650px;}
.x27_c00432{left:413.731950px;}
.x11_c00432{left:431.040900px;}
.x13_c00432{left:452.172750px;}
.x1c_c00432{left:524.674350px;}
.xc_c00432{left:534.649950px;}
.x25_c00432{left:536.752050px;}
.x15_c00432{left:549.193350px;}
.x18_c00432{left:555.817050px;}
.x19_c00432{left:585.540150px;}
.x1d_c00432{left:591.332850px;}
.x26_c00432{left:596.721000px;}
.xd_c00432{left:615.076200px;}
.x23_c00432{left:622.147050px;}
.x1b_c00432{left:627.080550px;}
.x5_c00432{left:670.048050px;}
.x24_c00432{left:694.894050px;}
.x1e_c00432{left:724.545750px;}
.x6_c00432{left:731.031450px;}
.x2b_c00432{left:759.914612px;}
@media print{
.v2_c00432{vertical-align:-21.760000pt;}
.v0_c00432{vertical-align:0.000000pt;}
.v1_c00432{vertical-align:26.880000pt;}
.ls9_c00432{letter-spacing:-0.159616pt;}
.ls8_c00432{letter-spacing:0.000000pt;}
.lsb_c00432{letter-spacing:0.128000pt;}
.ls6_c00432{letter-spacing:0.209920pt;}
.lsc_c00432{letter-spacing:0.236160pt;}
.ls4_c00432{letter-spacing:0.262400pt;}
.ls11_c00432{letter-spacing:0.283392pt;}
.ls3_c00432{letter-spacing:0.292114pt;}
.ls12_c00432{letter-spacing:0.377856pt;}
.ls2_c00432{letter-spacing:0.378666pt;}
.lse_c00432{letter-spacing:0.389485pt;}
.ls1_c00432{letter-spacing:0.450667pt;}
.ls5_c00432{letter-spacing:0.472320pt;}
.ls1a_c00432{letter-spacing:0.486856pt;}
.ls1e_c00432{letter-spacing:0.519552pt;}
.ls13_c00432{letter-spacing:0.535542pt;}
.lsf_c00432{letter-spacing:0.584228pt;}
.ls10_c00432{letter-spacing:0.632913pt;}
.ls16_c00432{letter-spacing:0.638323pt;}
.ls19_c00432{letter-spacing:0.681599pt;}
.ls18_c00432{letter-spacing:0.708480pt;}
.ls17_c00432{letter-spacing:2.135936pt;}
.ls1b_c00432{letter-spacing:2.230400pt;}
.ls1c_c00432{letter-spacing:3.186204pt;}
.lsa_c00432{letter-spacing:4.742400pt;}
.ls7_c00432{letter-spacing:5.312000pt;}
.ls0_c00432{letter-spacing:5.330133pt;}
.ls1d_c00432{letter-spacing:6.712192pt;}
.lsd_c00432{letter-spacing:9.540864pt;}
.ls15_c00432{letter-spacing:11.235968pt;}
.ls14_c00432{letter-spacing:11.241216pt;}
.ws1_c00432{word-spacing:-18.620160pt;}
.ws6_c00432{word-spacing:-15.525307pt;}
.ws3_c00432{word-spacing:-15.427936pt;}
.ws5_c00432{word-spacing:-15.330564pt;}
.ws4_c00432{word-spacing:-14.967296pt;}
.ws0_c00432{word-spacing:-10.159744pt;}
.ws2_c00432{word-spacing:-9.024000pt;}
.ws7_c00432{word-spacing:-0.054095pt;}
.ws8_c00432{word-spacing:0.000000pt;}
._12_c00432{margin-left:-11.080960pt;}
._10_c00432{margin-left:-10.016000pt;}
._f_c00432{margin-left:-9.072640pt;}
._15_c00432{margin-left:-6.448640pt;}
._16_c00432{margin-left:-5.364480pt;}
._14_c00432{margin-left:-3.692118pt;}
._13_c00432{margin-left:-2.381777pt;}
._11_c00432{margin-left:-1.081903pt;}
._e_c00432{width:0.898560pt;}
._3_c00432{width:1.984000pt;}
._2_c00432{width:3.328000pt;}
._7_c00432{width:4.352000pt;}
._9_c00432{width:5.440000pt;}
._5_c00432{width:9.024000pt;}
._0_c00432{width:9.920000pt;}
._6_c00432{width:11.008000pt;}
._4_c00432{width:14.720000pt;}
._a_c00432{width:16.640000pt;}
._1_c00432{width:19.008000pt;}
._c_c00432{width:23.360000pt;}
._8_c00432{width:24.256000pt;}
._b_c00432{width:26.432000pt;}
._d_c00432{width:29.888000pt;}
.fs4_c00432{font-size:32.000000pt;}
.fs2_c00432{font-size:37.120000pt;}
.fs3_c00432{font-size:49.920000pt;}
.fs5_c00432{font-size:52.480000pt;}
.fs7_c00432{font-size:53.333333pt;}
.fs6_c00432{font-size:54.095146pt;}
.fs0_c00432{font-size:64.000000pt;}
.fs1_c00432{font-size:65.969690pt;}
.y0_c00432{bottom:0.000000pt;}
.y33_c00432{bottom:2.773333pt;}
.y32_c00432{bottom:30.884071pt;}
.y1_c00432{bottom:48.000000pt;}
.y31_c00432{bottom:49.316480pt;}
.y30_c00432{bottom:70.120000pt;}
.y2f_c00432{bottom:80.360000pt;}
.y2e_c00432{bottom:80.361600pt;}
.y2c_c00432{bottom:96.036480pt;}
.y2d_c00432{bottom:96.040000pt;}
.y2b_c00432{bottom:111.400000pt;}
.y2a_c00432{bottom:111.401600pt;}
.y28_c00432{bottom:127.076480pt;}
.y29_c00432{bottom:127.080000pt;}
.y27_c00432{bottom:142.440000pt;}
.y26_c00432{bottom:158.120000pt;}
.y25_c00432{bottom:158.121600pt;}
.y23_c00432{bottom:173.796480pt;}
.y24_c00432{bottom:173.800000pt;}
.y22_c00432{bottom:189.160000pt;}
.y21_c00432{bottom:204.840000pt;}
.y20_c00432{bottom:210.280000pt;}
.y1f_c00432{bottom:225.960000pt;}
.y1e_c00432{bottom:249.640000pt;}
.y1d_c00432{bottom:382.760000pt;}
.y1c_c00432{bottom:414.760000pt;}
.y1b_c00432{bottom:433.320000pt;}
.y1a_c00432{bottom:452.200000pt;}
.y19_c00432{bottom:470.760000pt;}
.y18_c00432{bottom:489.320000pt;}
.y17_c00432{bottom:521.320000pt;}
.y16_c00432{bottom:553.320000pt;}
.y15_c00432{bottom:585.320000pt;}
.y14_c00432{bottom:604.200000pt;}
.y13_c00432{bottom:622.760000pt;}
.y12_c00432{bottom:641.320000pt;}
.y11_c00432{bottom:661.800000pt;}
.y10_c00432{bottom:681.960000pt;}
.yf_c00432{bottom:700.520000pt;}
.ye_c00432{bottom:719.080000pt;}
.yd_c00432{bottom:751.080000pt;}
.yc_c00432{bottom:769.640000pt;}
.yb_c00432{bottom:788.520000pt;}
.ya_c00432{bottom:807.080000pt;}
.y9_c00432{bottom:825.640000pt;}
.y8_c00432{bottom:844.520000pt;}
.y7_c00432{bottom:876.520000pt;}
.y6_c00432{bottom:895.080000pt;}
.y5_c00432{bottom:913.640000pt;}
.y4_c00432{bottom:945.640000pt;}
.y3_c00432{bottom:964.520000pt;}
.y2_c00432{bottom:1011.880000pt;}
.ha_c00432{height:17.116093pt;}
.h6_c00432{height:28.992000pt;}
.h7_c00432{height:41.761453pt;}
.h9_c00432{height:43.276117pt;}
.h8_c00432{height:47.546880pt;}
.hb_c00432{height:50.346667pt;}
.h4_c00432{height:50.928601pt;}
.h3_c00432{height:57.984000pt;}
.h5_c00432{height:60.510720pt;}
.h2_c00432{height:1067.880000pt;}
.h0_c00432{height:1122.520000pt;}
.h1_c00432{height:1122.666667pt;}
.w3_c00432{width:22.240000pt;}
.w2_c00432{width:767.960000pt;}
.w0_c00432{width:793.720000pt;}
.w1_c00432{width:794.000000pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:12.880000pt;}
.x2_c00432{left:100.480133pt;}
.x1f_c00432{left:104.919867pt;}
.x20_c00432{left:139.732133pt;}
.x8_c00432{left:150.255467pt;}
.x16_c00432{left:155.060533pt;}
.x14_c00432{left:165.359333pt;}
.xa_c00432{left:171.583067pt;}
.x7_c00432{left:176.062800pt;}
.x17_c00432{left:181.481467pt;}
.x9_c00432{left:202.702800pt;}
.x21_c00432{left:210.528933pt;}
.xe_c00432{left:216.062133pt;}
.x22_c00432{left:229.247467pt;}
.x12_c00432{left:265.217467pt;}
.x3_c00432{left:266.789333pt;}
.xb_c00432{left:289.052667pt;}
.x4_c00432{left:313.892533pt;}
.x28_c00432{left:324.965467pt;}
.x29_c00432{left:336.818400pt;}
.x2a_c00432{left:340.524667pt;}
.xf_c00432{left:342.236267pt;}
.x10_c00432{left:352.012000pt;}
.x1a_c00432{left:354.828133pt;}
.x27_c00432{left:367.761733pt;}
.x11_c00432{left:383.147467pt;}
.x13_c00432{left:401.931333pt;}
.x1c_c00432{left:466.377200pt;}
.xc_c00432{left:475.244400pt;}
.x25_c00432{left:477.112933pt;}
.x15_c00432{left:488.171867pt;}
.x18_c00432{left:494.059600pt;}
.x19_c00432{left:520.480133pt;}
.x1d_c00432{left:525.629200pt;}
.x26_c00432{left:530.418667pt;}
.xd_c00432{left:546.734400pt;}
.x23_c00432{left:553.019600pt;}
.x1b_c00432{left:557.404933pt;}
.x5_c00432{left:595.598267pt;}
.x24_c00432{left:617.683600pt;}
.x1e_c00432{left:644.040667pt;}
.x6_c00432{left:649.805733pt;}
.x2b_c00432{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb8d8b135821826b3396f82e.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;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_c00433;src:url('chunks/assets/font_fd76293285d9eb72c15ee263.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls1_c00433{letter-spacing:0.000000px;}
.ls3_c00433{letter-spacing:0.239760px;}
.ls2_c00433{letter-spacing:0.399600px;}
.ls0_c00433{letter-spacing:5.976000px;}
.sc__c00433{text-shadow:none;}
.sc1_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00433{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc1_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00433{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00433{word-spacing:-15.051600px;}
.ws1_c00433{word-spacing:0.000000px;}
._0_c00433{margin-left:-1.118880px;}
._1_c00433{width:1.012320px;}
.fc0_c00433{color:rgb(0,0,0);}
.fs1_c00433{font-size:53.280000px;}
.fs2_c00433{font-size:60.000000px;}
.fs0_c00433{font-size:72.000000px;}
.y0_c00433{bottom:0.000000px;}
.y27_c00433{bottom:3.120000px;}
.y25_c00433{bottom:18.720000px;}
.y22_c00433{bottom:25.560000px;}
.y24_c00433{bottom:34.560000px;}
.y26_c00433{bottom:34.744580px;}
.y21_c00433{bottom:41.400000px;}
.y1_c00433{bottom:54.000000px;}
.y1f_c00433{bottom:76.725000px;}
.y23_c00433{bottom:105.165000px;}
.y1e_c00433{bottom:112.725000px;}
.y1d_c00433{bottom:148.725000px;}
.y1c_c00433{bottom:184.725000px;}
.y1b_c00433{bottom:220.725000px;}
.y1a_c00433{bottom:256.725000px;}
.y19_c00433{bottom:292.725000px;}
.y18_c00433{bottom:328.725000px;}
.y17_c00433{bottom:364.725000px;}
.y16_c00433{bottom:400.725000px;}
.y15_c00433{bottom:436.725000px;}
.y14_c00433{bottom:472.725000px;}
.y13_c00433{bottom:509.085000px;}
.y12_c00433{bottom:545.085000px;}
.y11_c00433{bottom:581.085000px;}
.y20_c00433{bottom:589.365000px;}
.y10_c00433{bottom:617.085000px;}
.yf_c00433{bottom:653.085000px;}
.ye_c00433{bottom:689.085000px;}
.yd_c00433{bottom:725.085000px;}
.yc_c00433{bottom:761.085000px;}
.yb_c00433{bottom:797.085000px;}
.ya_c00433{bottom:833.085000px;}
.y9_c00433{bottom:869.085000px;}
.y8_c00433{bottom:905.085000px;}
.y7_c00433{bottom:941.085000px;}
.y6_c00433{bottom:977.085000px;}
.y5_c00433{bottom:1013.085000px;}
.y4_c00433{bottom:1049.085000px;}
.y3_c00433{bottom:1085.085000px;}
.y2_c00433{bottom:1138.365000px;}
.h7_c00433{height:19.255605px;}
.h5_c00433{height:41.132160px;}
.h6_c00433{height:47.160000px;}
.h4_c00433{height:54.000000px;}
.h3_c00433{height:55.584000px;}
.h8_c00433{height:56.640000px;}
.h2_c00433{height:1201.365000px;}
.h0_c00433{height:1262.835000px;}
.h1_c00433{height:1263.000000px;}
.w5_c00433{width:25.020000px;}
.w3_c00433{width:363.240000px;}
.w4_c00433{width:543.960000px;}
.w2_c00433{width:863.955000px;}
.w0_c00433{width:892.935000px;}
.w1_c00433{width:893.250000px;}
.x0_c00433{left:0.000000px;}
.x4_c00433{left:5.950500px;}
.x1_c00433{left:14.490000px;}
.x7_c00433{left:20.970300px;}
.x2_c00433{left:113.040150px;}
.x5_c00433{left:157.147800px;}
.x6_c00433{left:178.290000px;}
.x3_c00433{left:230.130000px;}
.x8_c00433{left:247.522950px;}
.x9_c00433{left:759.914612px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls1_c00433{letter-spacing:0.000000pt;}
.ls3_c00433{letter-spacing:0.213120pt;}
.ls2_c00433{letter-spacing:0.355200pt;}
.ls0_c00433{letter-spacing:5.312000pt;}
.ws0_c00433{word-spacing:-13.379200pt;}
.ws1_c00433{word-spacing:0.000000pt;}
._0_c00433{margin-left:-0.994560pt;}
._1_c00433{width:0.899840pt;}
.fs1_c00433{font-size:47.360000pt;}
.fs2_c00433{font-size:53.333333pt;}
.fs0_c00433{font-size:64.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y27_c00433{bottom:2.773333pt;}
.y25_c00433{bottom:16.640000pt;}
.y22_c00433{bottom:22.720000pt;}
.y24_c00433{bottom:30.720000pt;}
.y26_c00433{bottom:30.884071pt;}
.y21_c00433{bottom:36.800000pt;}
.y1_c00433{bottom:48.000000pt;}
.y1f_c00433{bottom:68.200000pt;}
.y23_c00433{bottom:93.480000pt;}
.y1e_c00433{bottom:100.200000pt;}
.y1d_c00433{bottom:132.200000pt;}
.y1c_c00433{bottom:164.200000pt;}
.y1b_c00433{bottom:196.200000pt;}
.y1a_c00433{bottom:228.200000pt;}
.y19_c00433{bottom:260.200000pt;}
.y18_c00433{bottom:292.200000pt;}
.y17_c00433{bottom:324.200000pt;}
.y16_c00433{bottom:356.200000pt;}
.y15_c00433{bottom:388.200000pt;}
.y14_c00433{bottom:420.200000pt;}
.y13_c00433{bottom:452.520000pt;}
.y12_c00433{bottom:484.520000pt;}
.y11_c00433{bottom:516.520000pt;}
.y20_c00433{bottom:523.880000pt;}
.y10_c00433{bottom:548.520000pt;}
.yf_c00433{bottom:580.520000pt;}
.ye_c00433{bottom:612.520000pt;}
.yd_c00433{bottom:644.520000pt;}
.yc_c00433{bottom:676.520000pt;}
.yb_c00433{bottom:708.520000pt;}
.ya_c00433{bottom:740.520000pt;}
.y9_c00433{bottom:772.520000pt;}
.y8_c00433{bottom:804.520000pt;}
.y7_c00433{bottom:836.520000pt;}
.y6_c00433{bottom:868.520000pt;}
.y5_c00433{bottom:900.520000pt;}
.y4_c00433{bottom:932.520000pt;}
.y3_c00433{bottom:964.520000pt;}
.y2_c00433{bottom:1011.880000pt;}
.h7_c00433{height:17.116093pt;}
.h5_c00433{height:36.561920pt;}
.h6_c00433{height:41.920000pt;}
.h4_c00433{height:48.000000pt;}
.h3_c00433{height:49.408000pt;}
.h8_c00433{height:50.346667pt;}
.h2_c00433{height:1067.880000pt;}
.h0_c00433{height:1122.520000pt;}
.h1_c00433{height:1122.666667pt;}
.w5_c00433{width:22.240000pt;}
.w3_c00433{width:322.880000pt;}
.w4_c00433{width:483.520000pt;}
.w2_c00433{width:767.960000pt;}
.w0_c00433{width:793.720000pt;}
.w1_c00433{width:794.000000pt;}
.x0_c00433{left:0.000000pt;}
.x4_c00433{left:5.289333pt;}
.x1_c00433{left:12.880000pt;}
.x7_c00433{left:18.640267pt;}
.x2_c00433{left:100.480133pt;}
.x5_c00433{left:139.686933pt;}
.x6_c00433{left:158.480000pt;}
.x3_c00433{left:204.560000pt;}
.x8_c00433{left:220.020400pt;}
.x9_c00433{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b29c4e666f7922da25ff4f9.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;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_c00434;src:url('chunks/assets/font_ae8a7376b7e33e4ae8782eab.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls2_c00434{letter-spacing:0.399600px;}
.ls0_c00434{letter-spacing:5.976000px;}
.sc__c00434{text-shadow:none;}
.sc1_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00434{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc1_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00434{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00434{word-spacing:0.000000px;}
._0_c00434{margin-left:-1.118880px;}
.fc0_c00434{color:rgb(0,0,0);}
.fs1_c00434{font-size:53.280000px;}
.fs2_c00434{font-size:60.000000px;}
.fs0_c00434{font-size:72.000000px;}
.y0_c00434{bottom:0.000000px;}
.y23_c00434{bottom:3.120000px;}
.y20_c00434{bottom:34.560000px;}
.y22_c00434{bottom:34.744580px;}
.y1_c00434{bottom:54.000000px;}
.y21_c00434{bottom:111.645000px;}
.y1e_c00434{bottom:112.725000px;}
.y1d_c00434{bottom:148.725000px;}
.y1c_c00434{bottom:184.725000px;}
.y1b_c00434{bottom:220.725000px;}
.y1a_c00434{bottom:256.725000px;}
.y19_c00434{bottom:292.725000px;}
.y18_c00434{bottom:328.725000px;}
.y17_c00434{bottom:364.725000px;}
.y16_c00434{bottom:400.725000px;}
.y15_c00434{bottom:436.725000px;}
.y14_c00434{bottom:472.725000px;}
.y13_c00434{bottom:509.085000px;}
.y12_c00434{bottom:545.085000px;}
.y11_c00434{bottom:581.085000px;}
.y10_c00434{bottom:617.085000px;}
.y1f_c00434{bottom:624.285000px;}
.yf_c00434{bottom:653.085000px;}
.ye_c00434{bottom:689.085000px;}
.yd_c00434{bottom:725.085000px;}
.yc_c00434{bottom:761.085000px;}
.yb_c00434{bottom:797.085000px;}
.ya_c00434{bottom:833.085000px;}
.y9_c00434{bottom:869.085000px;}
.y8_c00434{bottom:905.085000px;}
.y7_c00434{bottom:941.085000px;}
.y6_c00434{bottom:977.085000px;}
.y5_c00434{bottom:1013.085000px;}
.y4_c00434{bottom:1049.085000px;}
.y3_c00434{bottom:1085.085000px;}
.y2_c00434{bottom:1138.365000px;}
.h6_c00434{height:19.255605px;}
.h5_c00434{height:41.132160px;}
.h4_c00434{height:47.160000px;}
.h3_c00434{height:55.584000px;}
.h7_c00434{height:56.640000px;}
.h2_c00434{height:1201.365000px;}
.h0_c00434{height:1262.835000px;}
.h1_c00434{height:1263.000000px;}
.w4_c00434{width:25.020000px;}
.w3_c00434{width:643.320000px;}
.w2_c00434{width:863.955000px;}
.w0_c00434{width:892.935000px;}
.w1_c00434{width:893.250000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:14.490000px;}
.x4_c00434{left:46.562400px;}
.x2_c00434{left:113.040150px;}
.x5_c00434{left:121.923900px;}
.x3_c00434{left:126.810000px;}
.x6_c00434{left:759.914612px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls2_c00434{letter-spacing:0.355200pt;}
.ls0_c00434{letter-spacing:5.312000pt;}
.ws0_c00434{word-spacing:0.000000pt;}
._0_c00434{margin-left:-0.994560pt;}
.fs1_c00434{font-size:47.360000pt;}
.fs2_c00434{font-size:53.333333pt;}
.fs0_c00434{font-size:64.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y23_c00434{bottom:2.773333pt;}
.y20_c00434{bottom:30.720000pt;}
.y22_c00434{bottom:30.884071pt;}
.y1_c00434{bottom:48.000000pt;}
.y21_c00434{bottom:99.240000pt;}
.y1e_c00434{bottom:100.200000pt;}
.y1d_c00434{bottom:132.200000pt;}
.y1c_c00434{bottom:164.200000pt;}
.y1b_c00434{bottom:196.200000pt;}
.y1a_c00434{bottom:228.200000pt;}
.y19_c00434{bottom:260.200000pt;}
.y18_c00434{bottom:292.200000pt;}
.y17_c00434{bottom:324.200000pt;}
.y16_c00434{bottom:356.200000pt;}
.y15_c00434{bottom:388.200000pt;}
.y14_c00434{bottom:420.200000pt;}
.y13_c00434{bottom:452.520000pt;}
.y12_c00434{bottom:484.520000pt;}
.y11_c00434{bottom:516.520000pt;}
.y10_c00434{bottom:548.520000pt;}
.y1f_c00434{bottom:554.920000pt;}
.yf_c00434{bottom:580.520000pt;}
.ye_c00434{bottom:612.520000pt;}
.yd_c00434{bottom:644.520000pt;}
.yc_c00434{bottom:676.520000pt;}
.yb_c00434{bottom:708.520000pt;}
.ya_c00434{bottom:740.520000pt;}
.y9_c00434{bottom:772.520000pt;}
.y8_c00434{bottom:804.520000pt;}
.y7_c00434{bottom:836.520000pt;}
.y6_c00434{bottom:868.520000pt;}
.y5_c00434{bottom:900.520000pt;}
.y4_c00434{bottom:932.520000pt;}
.y3_c00434{bottom:964.520000pt;}
.y2_c00434{bottom:1011.880000pt;}
.h6_c00434{height:17.116093pt;}
.h5_c00434{height:36.561920pt;}
.h4_c00434{height:41.920000pt;}
.h3_c00434{height:49.408000pt;}
.h7_c00434{height:50.346667pt;}
.h2_c00434{height:1067.880000pt;}
.h0_c00434{height:1122.520000pt;}
.h1_c00434{height:1122.666667pt;}
.w4_c00434{width:22.240000pt;}
.w3_c00434{width:571.840000pt;}
.w2_c00434{width:767.960000pt;}
.w0_c00434{width:793.720000pt;}
.w1_c00434{width:794.000000pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:12.880000pt;}
.x4_c00434{left:41.388800pt;}
.x2_c00434{left:100.480133pt;}
.x5_c00434{left:108.376800pt;}
.x3_c00434{left:112.720000pt;}
.x6_c00434{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d3b4ed0c358fc198ac69adc.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;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_c00435;src:url('chunks/assets/font_b61170aaf3e746b11b88184a.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls2_c00435{letter-spacing:0.000000px;}
.ls4_c00435{letter-spacing:0.202464px;}
.ls3_c00435{letter-spacing:0.399600px;}
.ls0_c00435{letter-spacing:0.399720px;}
.ls1_c00435{letter-spacing:5.976000px;}
.sc__c00435{text-shadow:none;}
.sc1_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00435{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc1_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00435{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00435{word-spacing:0.000000px;}
._1_c00435{margin-left:-1.118880px;}
._0_c00435{width:1.014000px;}
.fc1_c00435{color:transparent;}
.fc0_c00435{color:rgb(0,0,0);}
.fs1_c00435{font-size:53.280000px;}
.fs2_c00435{font-size:60.000000px;}
.fs0_c00435{font-size:72.000000px;}
.y0_c00435{bottom:0.000000px;}
.y23_c00435{bottom:3.120000px;}
.y1f_c00435{bottom:26.325000px;}
.y21_c00435{bottom:34.560000px;}
.y22_c00435{bottom:34.744580px;}
.y1_c00435{bottom:54.000000px;}
.y1e_c00435{bottom:112.725000px;}
.y1d_c00435{bottom:148.725000px;}
.y1c_c00435{bottom:184.725000px;}
.y1b_c00435{bottom:220.725000px;}
.y1a_c00435{bottom:256.725000px;}
.y19_c00435{bottom:292.725000px;}
.y18_c00435{bottom:328.725000px;}
.y17_c00435{bottom:364.725000px;}
.y16_c00435{bottom:400.725000px;}
.y15_c00435{bottom:436.725000px;}
.y14_c00435{bottom:472.725000px;}
.y13_c00435{bottom:509.085000px;}
.y12_c00435{bottom:545.085000px;}
.y11_c00435{bottom:581.085000px;}
.y20_c00435{bottom:588.285000px;}
.y10_c00435{bottom:617.085000px;}
.yf_c00435{bottom:653.085000px;}
.ye_c00435{bottom:689.085000px;}
.yd_c00435{bottom:725.085000px;}
.yc_c00435{bottom:761.085000px;}
.yb_c00435{bottom:797.085000px;}
.ya_c00435{bottom:833.085000px;}
.y9_c00435{bottom:869.085000px;}
.y8_c00435{bottom:905.085000px;}
.y7_c00435{bottom:941.085000px;}
.y6_c00435{bottom:977.085000px;}
.y5_c00435{bottom:1013.085000px;}
.y4_c00435{bottom:1049.085000px;}
.y3_c00435{bottom:1085.085000px;}
.y2_c00435{bottom:1138.365000px;}
.h7_c00435{height:19.255605px;}
.h4_c00435{height:38.925000px;}
.h5_c00435{height:41.132160px;}
.h6_c00435{height:47.160000px;}
.h3_c00435{height:55.584000px;}
.h8_c00435{height:56.640000px;}
.h2_c00435{height:1201.365000px;}
.h0_c00435{height:1262.835000px;}
.h1_c00435{height:1263.000000px;}
.w5_c00435{width:25.020000px;}
.w4_c00435{width:643.320000px;}
.w3_c00435{width:644.400000px;}
.w2_c00435{width:863.955000px;}
.w0_c00435{width:892.935000px;}
.w1_c00435{width:893.250000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:14.490000px;}
.x2_c00435{left:113.040150px;}
.x3_c00435{left:124.290000px;}
.x5_c00435{left:126.810000px;}
.x4_c00435{left:142.805400px;}
.x6_c00435{left:162.443700px;}
.x7_c00435{left:759.914612px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls2_c00435{letter-spacing:0.000000pt;}
.ls4_c00435{letter-spacing:0.179968pt;}
.ls3_c00435{letter-spacing:0.355200pt;}
.ls0_c00435{letter-spacing:0.355307pt;}
.ls1_c00435{letter-spacing:5.312000pt;}
.ws0_c00435{word-spacing:0.000000pt;}
._1_c00435{margin-left:-0.994560pt;}
._0_c00435{width:0.901333pt;}
.fs1_c00435{font-size:47.360000pt;}
.fs2_c00435{font-size:53.333333pt;}
.fs0_c00435{font-size:64.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y23_c00435{bottom:2.773333pt;}
.y1f_c00435{bottom:23.400000pt;}
.y21_c00435{bottom:30.720000pt;}
.y22_c00435{bottom:30.884071pt;}
.y1_c00435{bottom:48.000000pt;}
.y1e_c00435{bottom:100.200000pt;}
.y1d_c00435{bottom:132.200000pt;}
.y1c_c00435{bottom:164.200000pt;}
.y1b_c00435{bottom:196.200000pt;}
.y1a_c00435{bottom:228.200000pt;}
.y19_c00435{bottom:260.200000pt;}
.y18_c00435{bottom:292.200000pt;}
.y17_c00435{bottom:324.200000pt;}
.y16_c00435{bottom:356.200000pt;}
.y15_c00435{bottom:388.200000pt;}
.y14_c00435{bottom:420.200000pt;}
.y13_c00435{bottom:452.520000pt;}
.y12_c00435{bottom:484.520000pt;}
.y11_c00435{bottom:516.520000pt;}
.y20_c00435{bottom:522.920000pt;}
.y10_c00435{bottom:548.520000pt;}
.yf_c00435{bottom:580.520000pt;}
.ye_c00435{bottom:612.520000pt;}
.yd_c00435{bottom:644.520000pt;}
.yc_c00435{bottom:676.520000pt;}
.yb_c00435{bottom:708.520000pt;}
.ya_c00435{bottom:740.520000pt;}
.y9_c00435{bottom:772.520000pt;}
.y8_c00435{bottom:804.520000pt;}
.y7_c00435{bottom:836.520000pt;}
.y6_c00435{bottom:868.520000pt;}
.y5_c00435{bottom:900.520000pt;}
.y4_c00435{bottom:932.520000pt;}
.y3_c00435{bottom:964.520000pt;}
.y2_c00435{bottom:1011.880000pt;}
.h7_c00435{height:17.116093pt;}
.h4_c00435{height:34.600000pt;}
.h5_c00435{height:36.561920pt;}
.h6_c00435{height:41.920000pt;}
.h3_c00435{height:49.408000pt;}
.h8_c00435{height:50.346667pt;}
.h2_c00435{height:1067.880000pt;}
.h0_c00435{height:1122.520000pt;}
.h1_c00435{height:1122.666667pt;}
.w5_c00435{width:22.240000pt;}
.w4_c00435{width:571.840000pt;}
.w3_c00435{width:572.800000pt;}
.w2_c00435{width:767.960000pt;}
.w0_c00435{width:793.720000pt;}
.w1_c00435{width:794.000000pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:12.880000pt;}
.x2_c00435{left:100.480133pt;}
.x3_c00435{left:110.480000pt;}
.x5_c00435{left:112.720000pt;}
.x4_c00435{left:126.938133pt;}
.x6_c00435{left:144.394400pt;}
.x7_c00435{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4125720a460636e8e9b42d21.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;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_c00436;src:url('chunks/assets/font_c2249761a35123c441b6ebe1.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_495b281a206a13f07e473266.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00436{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls3_c00436{letter-spacing:0.000000px;}
.ls5_c00436{letter-spacing:0.202464px;}
.ls0_c00436{letter-spacing:0.238560px;}
.ls6_c00436{letter-spacing:0.239760px;}
.ls4_c00436{letter-spacing:0.399600px;}
.ls1_c00436{letter-spacing:0.411898px;}
.ls7_c00436{letter-spacing:0.559440px;}
.ls2_c00436{letter-spacing:5.976000px;}
.sc__c00436{text-shadow:none;}
.sc1_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00436{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc1_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00436{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00436{word-spacing:-15.211440px;}
.ws1_c00436{word-spacing:-15.051600px;}
.ws2_c00436{word-spacing:-15.014304px;}
.ws3_c00436{word-spacing:-0.466818px;}
.ws4_c00436{word-spacing:0.000000px;}
._1_c00436{margin-left:-1.037040px;}
._0_c00436{width:1.088712px;}
.fc1_c00436{color:transparent;}
.fc0_c00436{color:rgb(0,0,0);}
.fs1_c00436{font-size:53.280000px;}
.fs2_c00436{font-size:54.919767px;}
.fs3_c00436{font-size:60.000000px;}
.fs0_c00436{font-size:72.000000px;}
.y0_c00436{bottom:0.000000px;}
.y1e_c00436{bottom:3.120000px;}
.y1a_c00436{bottom:8.640000px;}
.y19_c00436{bottom:24.480000px;}
.y1c_c00436{bottom:34.560000px;}
.y1d_c00436{bottom:34.744580px;}
.y18_c00436{bottom:40.320000px;}
.y1_c00436{bottom:54.000000px;}
.y1b_c00436{bottom:136.845000px;}
.y16_c00436{bottom:400.725000px;}
.y15_c00436{bottom:436.725000px;}
.y14_c00436{bottom:472.725000px;}
.y13_c00436{bottom:509.085000px;}
.y12_c00436{bottom:545.085000px;}
.y11_c00436{bottom:581.085000px;}
.y10_c00436{bottom:617.085000px;}
.yf_c00436{bottom:653.085000px;}
.ye_c00436{bottom:689.085000px;}
.yd_c00436{bottom:725.085000px;}
.y17_c00436{bottom:751.365000px;}
.yc_c00436{bottom:761.085000px;}
.yb_c00436{bottom:797.085000px;}
.ya_c00436{bottom:833.085000px;}
.y9_c00436{bottom:869.085000px;}
.y8_c00436{bottom:905.085000px;}
.y7_c00436{bottom:941.085000px;}
.y6_c00436{bottom:977.085000px;}
.y5_c00436{bottom:1013.085000px;}
.y4_c00436{bottom:1049.085000px;}
.y3_c00436{bottom:1085.085000px;}
.y2_c00436{bottom:1138.365000px;}
.h8_c00436{height:19.255605px;}
.h5_c00436{height:41.132160px;}
.h7_c00436{height:42.398060px;}
.h6_c00436{height:47.160000px;}
.h4_c00436{height:52.920000px;}
.h3_c00436{height:55.584000px;}
.h9_c00436{height:56.640000px;}
.h2_c00436{height:1201.365000px;}
.h0_c00436{height:1262.835000px;}
.h1_c00436{height:1263.000000px;}
.w5_c00436{width:25.020000px;}
.w3_c00436{width:480.960000px;}
.w4_c00436{width:682.200000px;}
.w2_c00436{width:863.955000px;}
.w0_c00436{width:892.935000px;}
.w1_c00436{width:893.250000px;}
.x0_c00436{left:0.000000px;}
.x4_c00436{left:3.240000px;}
.x1_c00436{left:14.490000px;}
.x2_c00436{left:113.040150px;}
.x5_c00436{left:124.290000px;}
.x6_c00436{left:181.213200px;}
.x3_c00436{left:218.250000px;}
.x7_c00436{left:409.291200px;}
.x8_c00436{left:440.799600px;}
.x9_c00436{left:759.914612px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls3_c00436{letter-spacing:0.000000pt;}
.ls5_c00436{letter-spacing:0.179968pt;}
.ls0_c00436{letter-spacing:0.212053pt;}
.ls6_c00436{letter-spacing:0.213120pt;}
.ls4_c00436{letter-spacing:0.355200pt;}
.ls1_c00436{letter-spacing:0.366132pt;}
.ls7_c00436{letter-spacing:0.497280pt;}
.ls2_c00436{letter-spacing:5.312000pt;}
.ws0_c00436{word-spacing:-13.521280pt;}
.ws1_c00436{word-spacing:-13.379200pt;}
.ws2_c00436{word-spacing:-13.346048pt;}
.ws3_c00436{word-spacing:-0.414949pt;}
.ws4_c00436{word-spacing:0.000000pt;}
._1_c00436{margin-left:-0.921813pt;}
._0_c00436{width:0.967744pt;}
.fs1_c00436{font-size:47.360000pt;}
.fs2_c00436{font-size:48.817571pt;}
.fs3_c00436{font-size:53.333333pt;}
.fs0_c00436{font-size:64.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y1e_c00436{bottom:2.773333pt;}
.y1a_c00436{bottom:7.680000pt;}
.y19_c00436{bottom:21.760000pt;}
.y1c_c00436{bottom:30.720000pt;}
.y1d_c00436{bottom:30.884071pt;}
.y18_c00436{bottom:35.840000pt;}
.y1_c00436{bottom:48.000000pt;}
.y1b_c00436{bottom:121.640000pt;}
.y16_c00436{bottom:356.200000pt;}
.y15_c00436{bottom:388.200000pt;}
.y14_c00436{bottom:420.200000pt;}
.y13_c00436{bottom:452.520000pt;}
.y12_c00436{bottom:484.520000pt;}
.y11_c00436{bottom:516.520000pt;}
.y10_c00436{bottom:548.520000pt;}
.yf_c00436{bottom:580.520000pt;}
.ye_c00436{bottom:612.520000pt;}
.yd_c00436{bottom:644.520000pt;}
.y17_c00436{bottom:667.880000pt;}
.yc_c00436{bottom:676.520000pt;}
.yb_c00436{bottom:708.520000pt;}
.ya_c00436{bottom:740.520000pt;}
.y9_c00436{bottom:772.520000pt;}
.y8_c00436{bottom:804.520000pt;}
.y7_c00436{bottom:836.520000pt;}
.y6_c00436{bottom:868.520000pt;}
.y5_c00436{bottom:900.520000pt;}
.y4_c00436{bottom:932.520000pt;}
.y3_c00436{bottom:964.520000pt;}
.y2_c00436{bottom:1011.880000pt;}
.h8_c00436{height:17.116093pt;}
.h5_c00436{height:36.561920pt;}
.h7_c00436{height:37.687165pt;}
.h6_c00436{height:41.920000pt;}
.h4_c00436{height:47.040000pt;}
.h3_c00436{height:49.408000pt;}
.h9_c00436{height:50.346667pt;}
.h2_c00436{height:1067.880000pt;}
.h0_c00436{height:1122.520000pt;}
.h1_c00436{height:1122.666667pt;}
.w5_c00436{width:22.240000pt;}
.w3_c00436{width:427.520000pt;}
.w4_c00436{width:606.400000pt;}
.w2_c00436{width:767.960000pt;}
.w0_c00436{width:793.720000pt;}
.w1_c00436{width:794.000000pt;}
.x0_c00436{left:0.000000pt;}
.x4_c00436{left:2.880000pt;}
.x1_c00436{left:12.880000pt;}
.x2_c00436{left:100.480133pt;}
.x5_c00436{left:110.480000pt;}
.x6_c00436{left:161.078400pt;}
.x3_c00436{left:194.000000pt;}
.x7_c00436{left:363.814400pt;}
.x8_c00436{left:391.821867pt;}
.x9_c00436{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73cc40f670e1b8695aee6177.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_04b187d08e9bf6bbed2d043d.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;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:ff3_c00437;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_929cf688ac48f736bfa4c1f8.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00437{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00437{vertical-align:-30.240000px;}
.v3_c00437{vertical-align:-24.480000px;}
.v0_c00437{vertical-align:0.000000px;}
.v2_c00437{vertical-align:30.240000px;}
.ls11_c00437{letter-spacing:0.000000px;}
.ls1a_c00437{letter-spacing:0.265680px;}
.ls10_c00437{letter-spacing:0.273857px;}
.ls8_c00437{letter-spacing:0.278040px;}
.lsc_c00437{letter-spacing:0.295200px;}
.lse_c00437{letter-spacing:0.413280px;}
.ls1d_c00437{letter-spacing:0.425088px;}
.ls9_c00437{letter-spacing:0.438171px;}
.ls19_c00437{letter-spacing:0.478224px;}
.ls1b_c00437{letter-spacing:0.492942px;}
.lsf_c00437{letter-spacing:0.525456px;}
.ls5_c00437{letter-spacing:0.527040px;}
.lsa_c00437{letter-spacing:0.531360px;}
.ls3_c00437{letter-spacing:0.533640px;}
.lsb_c00437{letter-spacing:0.602485px;}
.ls7_c00437{letter-spacing:0.653400px;}
.ls1c_c00437{letter-spacing:0.690768px;}
.ls14_c00437{letter-spacing:0.696384px;}
.ls4_c00437{letter-spacing:0.711840px;}
.ls1f_c00437{letter-spacing:0.797040px;}
.ls17_c00437{letter-spacing:0.962352px;}
.ls15_c00437{letter-spacing:1.239840px;}
.ls1e_c00437{letter-spacing:2.190384px;}
.ls2_c00437{letter-spacing:3.893040px;}
.ls16_c00437{letter-spacing:4.398480px;}
.ls13_c00437{letter-spacing:5.406777px;}
.ls12_c00437{letter-spacing:5.551498px;}
.ls18_c00437{letter-spacing:5.591088px;}
.ls6_c00437{letter-spacing:5.976000px;}
.ls1_c00437{letter-spacing:6.159301px;}
.ls0_c00437{letter-spacing:6.159920px;}
.lsd_c00437{letter-spacing:17.948160px;}
.sc__c00437{text-shadow:none;}
.sc1_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00437{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc1_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00437{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00437{word-spacing:-21.499753px;}
.ws2_c00437{word-spacing:-20.016000px;}
.ws6_c00437{word-spacing:-17.520742px;}
.ws4_c00437{word-spacing:-17.356428px;}
.ws8_c00437{word-spacing:-17.210160px;}
.ws5_c00437{word-spacing:-16.944480px;}
.ws7_c00437{word-spacing:-16.838208px;}
.ws1_c00437{word-spacing:-11.609280px;}
.ws3_c00437{word-spacing:-10.008000px;}
.ws9_c00437{word-spacing:0.000000px;}
._14_c00437{margin-left:-5.751360px;}
._13_c00437{margin-left:-4.403520px;}
._12_c00437{margin-left:-3.389760px;}
._b_c00437{margin-left:-1.469218px;}
._10_c00437{width:1.440000px;}
._2_c00437{width:2.520000px;}
._a_c00437{width:4.176000px;}
._8_c00437{width:5.256000px;}
._4_c00437{width:6.264000px;}
._1_c00437{width:7.488000px;}
._7_c00437{width:8.640000px;}
._e_c00437{width:10.008000px;}
._c_c00437{width:12.096000px;}
._f_c00437{width:14.040000px;}
._d_c00437{width:16.128000px;}
._9_c00437{width:17.255474px;}
._6_c00437{width:18.353218px;}
._5_c00437{width:19.518782px;}
._0_c00437{width:21.024000px;}
._11_c00437{width:22.032000px;}
._3_c00437{width:24.408000px;}
.fc0_c00437{color:rgb(0,0,0);}
.fs5_c00437{font-size:36.000000px;}
.fs3_c00437{font-size:41.760000px;}
.fs4_c00437{font-size:56.160000px;}
.fs2_c00437{font-size:57.888403px;}
.fs6_c00437{font-size:59.040000px;}
.fs8_c00437{font-size:60.000000px;}
.fs7_c00437{font-size:60.857039px;}
.fs0_c00437{font-size:72.000000px;}
.fs1_c00437{font-size:74.215901px;}
.y0_c00437{bottom:0.000000px;}
.y3c_c00437{bottom:3.120000px;}
.y3b_c00437{bottom:34.744580px;}
.y1_c00437{bottom:54.000000px;}
.y3a_c00437{bottom:55.485000px;}
.y39_c00437{bottom:61.605000px;}
.y38_c00437{bottom:72.765000px;}
.y37_c00437{bottom:78.885000px;}
.y36_c00437{bottom:96.525000px;}
.y35_c00437{bottom:107.688600px;}
.y34_c00437{bottom:125.326800px;}
.y33_c00437{bottom:149.085000px;}
.y32_c00437{bottom:166.365000px;}
.y31_c00437{bottom:177.885000px;}
.y30_c00437{bottom:184.005000px;}
.y2f_c00437{bottom:195.525000px;}
.y2e_c00437{bottom:201.645000px;}
.y2d_c00437{bottom:212.806800px;}
.y2c_c00437{bottom:230.445000px;}
.y2b_c00437{bottom:236.565000px;}
.y2a_c00437{bottom:247.726800px;}
.y28_c00437{bottom:265.362840px;}
.y29_c00437{bottom:265.365000px;}
.y27_c00437{bottom:283.001040px;}
.y26_c00437{bottom:300.285000px;}
.y25_c00437{bottom:306.405000px;}
.y24_c00437{bottom:333.045000px;}
.y23_c00437{bottom:372.285000px;}
.y22_c00437{bottom:393.165000px;}
.y21_c00437{bottom:414.045000px;}
.y20_c00437{bottom:435.285000px;}
.y1f_c00437{bottom:456.165000px;}
.y1e_c00437{bottom:477.045000px;}
.y1d_c00437{bottom:498.285000px;}
.y1c_c00437{bottom:519.165000px;}
.y1b_c00437{bottom:540.405000px;}
.y1a_c00437{bottom:576.405000px;}
.y19_c00437{bottom:597.285000px;}
.y18_c00437{bottom:618.165000px;}
.y17_c00437{bottom:639.405000px;}
.y16_c00437{bottom:660.285000px;}
.y15_c00437{bottom:681.165000px;}
.y14_c00437{bottom:702.405000px;}
.y13_c00437{bottom:725.445000px;}
.y12_c00437{bottom:745.965000px;}
.y11_c00437{bottom:781.965000px;}
.y10_c00437{bottom:802.845000px;}
.yf_c00437{bottom:824.085000px;}
.ye_c00437{bottom:844.965000px;}
.yd_c00437{bottom:865.845000px;}
.yc_c00437{bottom:887.085000px;}
.yb_c00437{bottom:907.965000px;}
.ya_c00437{bottom:928.845000px;}
.y9_c00437{bottom:950.085000px;}
.y8_c00437{bottom:970.965000px;}
.y7_c00437{bottom:991.845000px;}
.y6_c00437{bottom:1013.085000px;}
.y4_c00437{bottom:1049.085000px;}
.y5_c00437{bottom:1056.645000px;}
.y3_c00437{bottom:1085.085000px;}
.y2_c00437{bottom:1138.365000px;}
.ha_c00437{height:19.255605px;}
.h7_c00437{height:32.616000px;}
.h5_c00437{height:37.834560px;}
.h8_c00437{height:46.981634px;}
.h9_c00437{height:53.490240px;}
.hb_c00437{height:56.640000px;}
.h4_c00437{height:57.294676px;}
.h3_c00437{height:65.232000px;}
.h6_c00437{height:68.074560px;}
.h2_c00437{height:1201.365000px;}
.h0_c00437{height:1262.835000px;}
.h1_c00437{height:1263.000000px;}
.w3_c00437{width:25.020000px;}
.w2_c00437{width:863.955000px;}
.w0_c00437{width:892.935000px;}
.w1_c00437{width:893.250000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:14.490000px;}
.x2_c00437{left:113.040150px;}
.x1c_c00437{left:122.213700px;}
.x1a_c00437{left:123.544500px;}
.xa_c00437{left:140.774100px;}
.x1b_c00437{left:146.868900px;}
.x3_c00437{left:161.531250px;}
.x11_c00437{left:184.900950px;}
.x6_c00437{left:211.559700px;}
.x16_c00437{left:213.811500px;}
.x17_c00437{left:229.635900px;}
.x4_c00437{left:236.986050px;}
.x5_c00437{left:249.120000px;}
.xb_c00437{left:252.513000px;}
.x8_c00437{left:265.516050px;}
.x7_c00437{left:276.556650px;}
.x1f_c00437{left:294.752550px;}
.x20_c00437{left:314.746650px;}
.x9_c00437{left:351.500550px;}
.x21_c00437{left:376.440000px;}
.x14_c00437{left:385.170750px;}
.x12_c00437{left:388.228650px;}
.x13_c00437{left:425.254050px;}
.xd_c00437{left:442.057200px;}
.x15_c00437{left:450.167700px;}
.xe_c00437{left:479.583600px;}
.x1d_c00437{left:531.519600px;}
.x18_c00437{left:563.891250px;}
.x19_c00437{left:584.918400px;}
.x1e_c00437{left:619.041900px;}
.xf_c00437{left:666.893250px;}
.x10_c00437{left:696.862500px;}
.xc_c00437{left:720.420750px;}
.x22_c00437{left:759.914612px;}
@media print{
.v1_c00437{vertical-align:-26.880000pt;}
.v3_c00437{vertical-align:-21.760000pt;}
.v0_c00437{vertical-align:0.000000pt;}
.v2_c00437{vertical-align:26.880000pt;}
.ls11_c00437{letter-spacing:0.000000pt;}
.ls1a_c00437{letter-spacing:0.236160pt;}
.ls10_c00437{letter-spacing:0.243428pt;}
.ls8_c00437{letter-spacing:0.247147pt;}
.lsc_c00437{letter-spacing:0.262400pt;}
.lse_c00437{letter-spacing:0.367360pt;}
.ls1d_c00437{letter-spacing:0.377856pt;}
.ls9_c00437{letter-spacing:0.389485pt;}
.ls19_c00437{letter-spacing:0.425088pt;}
.ls1b_c00437{letter-spacing:0.438171pt;}
.lsf_c00437{letter-spacing:0.467072pt;}
.ls5_c00437{letter-spacing:0.468480pt;}
.lsa_c00437{letter-spacing:0.472320pt;}
.ls3_c00437{letter-spacing:0.474347pt;}
.lsb_c00437{letter-spacing:0.535542pt;}
.ls7_c00437{letter-spacing:0.580800pt;}
.ls1c_c00437{letter-spacing:0.614016pt;}
.ls14_c00437{letter-spacing:0.619008pt;}
.ls4_c00437{letter-spacing:0.632747pt;}
.ls1f_c00437{letter-spacing:0.708480pt;}
.ls17_c00437{letter-spacing:0.855424pt;}
.ls15_c00437{letter-spacing:1.102080pt;}
.ls1e_c00437{letter-spacing:1.947008pt;}
.ls2_c00437{letter-spacing:3.460480pt;}
.ls16_c00437{letter-spacing:3.909760pt;}
.ls13_c00437{letter-spacing:4.806024pt;}
.ls12_c00437{letter-spacing:4.934665pt;}
.ls18_c00437{letter-spacing:4.969856pt;}
.ls6_c00437{letter-spacing:5.312000pt;}
.ls1_c00437{letter-spacing:5.474935pt;}
.ls0_c00437{letter-spacing:5.475484pt;}
.lsd_c00437{letter-spacing:15.953920pt;}
.ws0_c00437{word-spacing:-19.110891pt;}
.ws2_c00437{word-spacing:-17.792000pt;}
.ws6_c00437{word-spacing:-15.573992pt;}
.ws4_c00437{word-spacing:-15.427936pt;}
.ws8_c00437{word-spacing:-15.297920pt;}
.ws5_c00437{word-spacing:-15.061760pt;}
.ws7_c00437{word-spacing:-14.967296pt;}
.ws1_c00437{word-spacing:-10.319360pt;}
.ws3_c00437{word-spacing:-8.896000pt;}
.ws9_c00437{word-spacing:0.000000pt;}
._14_c00437{margin-left:-5.112320pt;}
._13_c00437{margin-left:-3.914240pt;}
._12_c00437{margin-left:-3.013120pt;}
._b_c00437{margin-left:-1.305972pt;}
._10_c00437{width:1.280000pt;}
._2_c00437{width:2.240000pt;}
._a_c00437{width:3.712000pt;}
._8_c00437{width:4.672000pt;}
._4_c00437{width:5.568000pt;}
._1_c00437{width:6.656000pt;}
._7_c00437{width:7.680000pt;}
._e_c00437{width:8.896000pt;}
._c_c00437{width:10.752000pt;}
._f_c00437{width:12.480000pt;}
._d_c00437{width:14.336000pt;}
._9_c00437{width:15.338199pt;}
._6_c00437{width:16.313972pt;}
._5_c00437{width:17.350028pt;}
._0_c00437{width:18.688000pt;}
._11_c00437{width:19.584000pt;}
._3_c00437{width:21.696000pt;}
.fs5_c00437{font-size:32.000000pt;}
.fs3_c00437{font-size:37.120000pt;}
.fs4_c00437{font-size:49.920000pt;}
.fs2_c00437{font-size:51.456358pt;}
.fs6_c00437{font-size:52.480000pt;}
.fs8_c00437{font-size:53.333333pt;}
.fs7_c00437{font-size:54.095146pt;}
.fs0_c00437{font-size:64.000000pt;}
.fs1_c00437{font-size:65.969690pt;}
.y0_c00437{bottom:0.000000pt;}
.y3c_c00437{bottom:2.773333pt;}
.y3b_c00437{bottom:30.884071pt;}
.y1_c00437{bottom:48.000000pt;}
.y3a_c00437{bottom:49.320000pt;}
.y39_c00437{bottom:54.760000pt;}
.y38_c00437{bottom:64.680000pt;}
.y37_c00437{bottom:70.120000pt;}
.y36_c00437{bottom:85.800000pt;}
.y35_c00437{bottom:95.723200pt;}
.y34_c00437{bottom:111.401600pt;}
.y33_c00437{bottom:132.520000pt;}
.y32_c00437{bottom:147.880000pt;}
.y31_c00437{bottom:158.120000pt;}
.y30_c00437{bottom:163.560000pt;}
.y2f_c00437{bottom:173.800000pt;}
.y2e_c00437{bottom:179.240000pt;}
.y2d_c00437{bottom:189.161600pt;}
.y2c_c00437{bottom:204.840000pt;}
.y2b_c00437{bottom:210.280000pt;}
.y2a_c00437{bottom:220.201600pt;}
.y28_c00437{bottom:235.878080pt;}
.y29_c00437{bottom:235.880000pt;}
.y27_c00437{bottom:251.556480pt;}
.y26_c00437{bottom:266.920000pt;}
.y25_c00437{bottom:272.360000pt;}
.y24_c00437{bottom:296.040000pt;}
.y23_c00437{bottom:330.920000pt;}
.y22_c00437{bottom:349.480000pt;}
.y21_c00437{bottom:368.040000pt;}
.y20_c00437{bottom:386.920000pt;}
.y1f_c00437{bottom:405.480000pt;}
.y1e_c00437{bottom:424.040000pt;}
.y1d_c00437{bottom:442.920000pt;}
.y1c_c00437{bottom:461.480000pt;}
.y1b_c00437{bottom:480.360000pt;}
.y1a_c00437{bottom:512.360000pt;}
.y19_c00437{bottom:530.920000pt;}
.y18_c00437{bottom:549.480000pt;}
.y17_c00437{bottom:568.360000pt;}
.y16_c00437{bottom:586.920000pt;}
.y15_c00437{bottom:605.480000pt;}
.y14_c00437{bottom:624.360000pt;}
.y13_c00437{bottom:644.840000pt;}
.y12_c00437{bottom:663.080000pt;}
.y11_c00437{bottom:695.080000pt;}
.y10_c00437{bottom:713.640000pt;}
.yf_c00437{bottom:732.520000pt;}
.ye_c00437{bottom:751.080000pt;}
.yd_c00437{bottom:769.640000pt;}
.yc_c00437{bottom:788.520000pt;}
.yb_c00437{bottom:807.080000pt;}
.ya_c00437{bottom:825.640000pt;}
.y9_c00437{bottom:844.520000pt;}
.y8_c00437{bottom:863.080000pt;}
.y7_c00437{bottom:881.640000pt;}
.y6_c00437{bottom:900.520000pt;}
.y4_c00437{bottom:932.520000pt;}
.y5_c00437{bottom:939.240000pt;}
.y3_c00437{bottom:964.520000pt;}
.y2_c00437{bottom:1011.880000pt;}
.ha_c00437{height:17.116093pt;}
.h7_c00437{height:28.992000pt;}
.h5_c00437{height:33.630720pt;}
.h8_c00437{height:41.761453pt;}
.h9_c00437{height:47.546880pt;}
.hb_c00437{height:50.346667pt;}
.h4_c00437{height:50.928601pt;}
.h3_c00437{height:57.984000pt;}
.h6_c00437{height:60.510720pt;}
.h2_c00437{height:1067.880000pt;}
.h0_c00437{height:1122.520000pt;}
.h1_c00437{height:1122.666667pt;}
.w3_c00437{width:22.240000pt;}
.w2_c00437{width:767.960000pt;}
.w0_c00437{width:793.720000pt;}
.w1_c00437{width:794.000000pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:12.880000pt;}
.x2_c00437{left:100.480133pt;}
.x1c_c00437{left:108.634400pt;}
.x1a_c00437{left:109.817333pt;}
.xa_c00437{left:125.132533pt;}
.x1b_c00437{left:130.550133pt;}
.x3_c00437{left:143.583333pt;}
.x11_c00437{left:164.356400pt;}
.x6_c00437{left:188.053067pt;}
.x16_c00437{left:190.054667pt;}
.x17_c00437{left:204.120800pt;}
.x4_c00437{left:210.654267pt;}
.x5_c00437{left:221.440000pt;}
.xb_c00437{left:224.456000pt;}
.x8_c00437{left:236.014267pt;}
.x7_c00437{left:245.828133pt;}
.x1f_c00437{left:262.002267pt;}
.x20_c00437{left:279.774800pt;}
.x9_c00437{left:312.444933pt;}
.x21_c00437{left:334.613333pt;}
.x14_c00437{left:342.374000pt;}
.x12_c00437{left:345.092133pt;}
.x13_c00437{left:378.003600pt;}
.xd_c00437{left:392.939733pt;}
.x15_c00437{left:400.149067pt;}
.xe_c00437{left:426.296533pt;}
.x1d_c00437{left:472.461867pt;}
.x18_c00437{left:501.236667pt;}
.x19_c00437{left:519.927467pt;}
.x1e_c00437{left:550.259467pt;}
.xf_c00437{left:592.794000pt;}
.x10_c00437{left:619.433333pt;}
.xc_c00437{left:640.374000pt;}
.x22_c00437{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_931de576502b14debc3c4237.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_c5e6e4dc95bf71a65a45068c.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;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:ff3_c00438;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_4a2c68ce4ac6e889e4a10c07.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00438{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00438{vertical-align:-30.240000px;}
.v3_c00438{vertical-align:-24.480000px;}
.v0_c00438{vertical-align:0.000000px;}
.v2_c00438{vertical-align:30.240000px;}
.lsb_c00438{letter-spacing:-0.179568px;}
.lsa_c00438{letter-spacing:0.000000px;}
.lsd_c00438{letter-spacing:0.144000px;}
.lsf_c00438{letter-spacing:0.265680px;}
.ls8_c00438{letter-spacing:0.295200px;}
.ls1_c00438{letter-spacing:0.318480px;}
.ls11_c00438{letter-spacing:0.438171px;}
.ls6_c00438{letter-spacing:0.531360px;}
.ls7_c00438{letter-spacing:0.712027px;}
.lse_c00438{letter-spacing:0.743904px;}
.lsc_c00438{letter-spacing:4.142592px;}
.ls4_c00438{letter-spacing:5.904000px;}
.ls2_c00438{letter-spacing:5.976000px;}
.ls3_c00438{letter-spacing:6.048000px;}
.ls9_c00438{letter-spacing:6.159920px;}
.ls10_c00438{letter-spacing:7.273728px;}
.ls5_c00438{letter-spacing:10.944000px;}
.ls0_c00438{letter-spacing:19.485000px;}
.sc__c00438{text-shadow:none;}
.sc1_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00438{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc1_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00438{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00438{word-spacing:-17.630284px;}
.ws1_c00438{word-spacing:-15.751872px;}
.ws0_c00438{word-spacing:-11.429712px;}
.ws2_c00438{word-spacing:-10.152000px;}
.ws4_c00438{word-spacing:0.000000px;}
._10_c00438{margin-left:-6.959520px;}
._11_c00438{margin-left:-5.821920px;}
._c_c00438{margin-left:-1.628904px;}
._3_c00438{width:1.512000px;}
._9_c00438{width:3.219855px;}
._8_c00438{width:4.230306px;}
._6_c00438{width:6.120000px;}
._4_c00438{width:8.568000px;}
._1_c00438{width:9.720000px;}
._0_c00438{width:11.160000px;}
._f_c00438{width:12.456000px;}
._d_c00438{width:14.616000px;}
._a_c00438{width:16.344000px;}
._2_c00438{width:17.496000px;}
._7_c00438{width:19.480176px;}
._5_c00438{width:21.312000px;}
._b_c00438{width:23.256000px;}
._e_c00438{width:24.984000px;}
.fc0_c00438{color:rgb(0,0,0);}
.fs4_c00438{font-size:36.000000px;}
.fs2_c00438{font-size:41.760000px;}
.fs3_c00438{font-size:59.040000px;}
.fs6_c00438{font-size:60.000000px;}
.fs5_c00438{font-size:60.857039px;}
.fs0_c00438{font-size:72.000000px;}
.fs1_c00438{font-size:74.215901px;}
.y0_c00438{bottom:0.000000px;}
.y36_c00438{bottom:3.120000px;}
.y35_c00438{bottom:34.744580px;}
.y1_c00438{bottom:54.000000px;}
.y34_c00438{bottom:61.605000px;}
.y33_c00438{bottom:72.765000px;}
.y32_c00438{bottom:78.885000px;}
.y31_c00438{bottom:90.402840px;}
.y30_c00438{bottom:107.686800px;}
.y2f_c00438{bottom:125.325000px;}
.y2e_c00438{bottom:131.445000px;}
.y2d_c00438{bottom:149.085000px;}
.y2c_c00438{bottom:160.245000px;}
.y2b_c00438{bottom:166.365000px;}
.y2a_c00438{bottom:193.005000px;}
.y29_c00438{bottom:220.365000px;}
.y28_c00438{bottom:241.605000px;}
.y27_c00438{bottom:262.485000px;}
.y26_c00438{bottom:283.365000px;}
.y25_c00438{bottom:304.605000px;}
.y24_c00438{bottom:325.485000px;}
.y23_c00438{bottom:346.725000px;}
.y22_c00438{bottom:369.405000px;}
.y21_c00438{bottom:390.285000px;}
.y20_c00438{bottom:413.325000px;}
.y1f_c00438{bottom:433.845000px;}
.y1e_c00438{bottom:454.725000px;}
.y1c_c00438{bottom:490.725000px;}
.y1d_c00438{bottom:498.285000px;}
.y1b_c00438{bottom:526.725000px;}
.y1a_c00438{bottom:562.725000px;}
.y19_c00438{bottom:583.965000px;}
.y18_c00438{bottom:604.845000px;}
.y17_c00438{bottom:625.725000px;}
.y16_c00438{bottom:661.725000px;}
.y15_c00438{bottom:682.965000px;}
.y14_c00438{bottom:703.845000px;}
.y13_c00438{bottom:725.085000px;}
.y12_c00438{bottom:761.085000px;}
.y11_c00438{bottom:781.965000px;}
.y10_c00438{bottom:802.845000px;}
.yf_c00438{bottom:824.085000px;}
.yd_c00438{bottom:844.965000px;}
.ye_c00438{bottom:852.525000px;}
.yc_c00438{bottom:865.845000px;}
.yb_c00438{bottom:887.085000px;}
.ya_c00438{bottom:923.085000px;}
.y9_c00438{bottom:943.965000px;}
.y8_c00438{bottom:964.845000px;}
.y7_c00438{bottom:986.085000px;}
.y6_c00438{bottom:1006.965000px;}
.y5_c00438{bottom:1027.845000px;}
.y4_c00438{bottom:1063.845000px;}
.y3_c00438{bottom:1085.085000px;}
.y2_c00438{bottom:1138.365000px;}
.ha_c00438{height:19.255605px;}
.h7_c00438{height:32.616000px;}
.h5_c00438{height:37.834560px;}
.h8_c00438{height:46.981634px;}
.h9_c00438{height:53.490240px;}
.hb_c00438{height:56.640000px;}
.h4_c00438{height:57.294676px;}
.h3_c00438{height:65.232000px;}
.h6_c00438{height:68.074560px;}
.h2_c00438{height:1201.365000px;}
.h0_c00438{height:1262.835000px;}
.h1_c00438{height:1263.000000px;}
.w3_c00438{width:25.020000px;}
.w2_c00438{width:863.955000px;}
.w0_c00438{width:892.935000px;}
.w1_c00438{width:893.250000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:14.490000px;}
.x2_c00438{left:113.040150px;}
.x11_c00438{left:127.217700px;}
.xa_c00438{left:151.930950px;}
.x12_c00438{left:156.361800px;}
.x3_c00438{left:161.531250px;}
.x13_c00438{left:173.011200px;}
.x14_c00438{left:177.180900px;}
.x5_c00438{left:182.032800px;}
.x15_c00438{left:235.558200px;}
.x4_c00438{left:236.986050px;}
.x1b_c00438{left:247.228650px;}
.x10_c00438{left:251.640000px;}
.x16_c00438{left:260.532750px;}
.x1c_c00438{left:267.222600px;}
.xb_c00438{left:270.720000px;}
.xd_c00438{left:297.073950px;}
.x17_c00438{left:334.719750px;}
.x18_c00438{left:359.694150px;}
.x8_c00438{left:512.633400px;}
.x19_c00438{left:514.085850px;}
.x6_c00438{left:525.035550px;}
.x1a_c00438{left:568.249200px;}
.xe_c00438{left:593.310450px;}
.x9_c00438{left:614.844000px;}
.xf_c00438{left:658.307400px;}
.x7_c00438{left:680.012700px;}
.xc_c00438{left:685.375200px;}
.x1d_c00438{left:759.914612px;}
@media print{
.v1_c00438{vertical-align:-26.880000pt;}
.v3_c00438{vertical-align:-21.760000pt;}
.v0_c00438{vertical-align:0.000000pt;}
.v2_c00438{vertical-align:26.880000pt;}
.lsb_c00438{letter-spacing:-0.159616pt;}
.lsa_c00438{letter-spacing:0.000000pt;}
.lsd_c00438{letter-spacing:0.128000pt;}
.lsf_c00438{letter-spacing:0.236160pt;}
.ls8_c00438{letter-spacing:0.262400pt;}
.ls1_c00438{letter-spacing:0.283093pt;}
.ls11_c00438{letter-spacing:0.389485pt;}
.ls6_c00438{letter-spacing:0.472320pt;}
.ls7_c00438{letter-spacing:0.632913pt;}
.lse_c00438{letter-spacing:0.661248pt;}
.lsc_c00438{letter-spacing:3.682304pt;}
.ls4_c00438{letter-spacing:5.248000pt;}
.ls2_c00438{letter-spacing:5.312000pt;}
.ls3_c00438{letter-spacing:5.376000pt;}
.ls9_c00438{letter-spacing:5.475484pt;}
.ls10_c00438{letter-spacing:6.465536pt;}
.ls5_c00438{letter-spacing:9.728000pt;}
.ls0_c00438{letter-spacing:17.320000pt;}
.ws3_c00438{word-spacing:-15.671364pt;}
.ws1_c00438{word-spacing:-14.001664pt;}
.ws0_c00438{word-spacing:-10.159744pt;}
.ws2_c00438{word-spacing:-9.024000pt;}
.ws4_c00438{word-spacing:0.000000pt;}
._10_c00438{margin-left:-6.186240pt;}
._11_c00438{margin-left:-5.175040pt;}
._c_c00438{margin-left:-1.447915pt;}
._3_c00438{width:1.344000pt;}
._9_c00438{width:2.862094pt;}
._8_c00438{width:3.760272pt;}
._6_c00438{width:5.440000pt;}
._4_c00438{width:7.616000pt;}
._1_c00438{width:8.640000pt;}
._0_c00438{width:9.920000pt;}
._f_c00438{width:11.072000pt;}
._d_c00438{width:12.992000pt;}
._a_c00438{width:14.528000pt;}
._2_c00438{width:15.552000pt;}
._7_c00438{width:17.315712pt;}
._5_c00438{width:18.944000pt;}
._b_c00438{width:20.672000pt;}
._e_c00438{width:22.208000pt;}
.fs4_c00438{font-size:32.000000pt;}
.fs2_c00438{font-size:37.120000pt;}
.fs3_c00438{font-size:52.480000pt;}
.fs6_c00438{font-size:53.333333pt;}
.fs5_c00438{font-size:54.095146pt;}
.fs0_c00438{font-size:64.000000pt;}
.fs1_c00438{font-size:65.969690pt;}
.y0_c00438{bottom:0.000000pt;}
.y36_c00438{bottom:2.773333pt;}
.y35_c00438{bottom:30.884071pt;}
.y1_c00438{bottom:48.000000pt;}
.y34_c00438{bottom:54.760000pt;}
.y33_c00438{bottom:64.680000pt;}
.y32_c00438{bottom:70.120000pt;}
.y31_c00438{bottom:80.358080pt;}
.y30_c00438{bottom:95.721600pt;}
.y2f_c00438{bottom:111.400000pt;}
.y2e_c00438{bottom:116.840000pt;}
.y2d_c00438{bottom:132.520000pt;}
.y2c_c00438{bottom:142.440000pt;}
.y2b_c00438{bottom:147.880000pt;}
.y2a_c00438{bottom:171.560000pt;}
.y29_c00438{bottom:195.880000pt;}
.y28_c00438{bottom:214.760000pt;}
.y27_c00438{bottom:233.320000pt;}
.y26_c00438{bottom:251.880000pt;}
.y25_c00438{bottom:270.760000pt;}
.y24_c00438{bottom:289.320000pt;}
.y23_c00438{bottom:308.200000pt;}
.y22_c00438{bottom:328.360000pt;}
.y21_c00438{bottom:346.920000pt;}
.y20_c00438{bottom:367.400000pt;}
.y1f_c00438{bottom:385.640000pt;}
.y1e_c00438{bottom:404.200000pt;}
.y1c_c00438{bottom:436.200000pt;}
.y1d_c00438{bottom:442.920000pt;}
.y1b_c00438{bottom:468.200000pt;}
.y1a_c00438{bottom:500.200000pt;}
.y19_c00438{bottom:519.080000pt;}
.y18_c00438{bottom:537.640000pt;}
.y17_c00438{bottom:556.200000pt;}
.y16_c00438{bottom:588.200000pt;}
.y15_c00438{bottom:607.080000pt;}
.y14_c00438{bottom:625.640000pt;}
.y13_c00438{bottom:644.520000pt;}
.y12_c00438{bottom:676.520000pt;}
.y11_c00438{bottom:695.080000pt;}
.y10_c00438{bottom:713.640000pt;}
.yf_c00438{bottom:732.520000pt;}
.yd_c00438{bottom:751.080000pt;}
.ye_c00438{bottom:757.800000pt;}
.yc_c00438{bottom:769.640000pt;}
.yb_c00438{bottom:788.520000pt;}
.ya_c00438{bottom:820.520000pt;}
.y9_c00438{bottom:839.080000pt;}
.y8_c00438{bottom:857.640000pt;}
.y7_c00438{bottom:876.520000pt;}
.y6_c00438{bottom:895.080000pt;}
.y5_c00438{bottom:913.640000pt;}
.y4_c00438{bottom:945.640000pt;}
.y3_c00438{bottom:964.520000pt;}
.y2_c00438{bottom:1011.880000pt;}
.ha_c00438{height:17.116093pt;}
.h7_c00438{height:28.992000pt;}
.h5_c00438{height:33.630720pt;}
.h8_c00438{height:41.761453pt;}
.h9_c00438{height:47.546880pt;}
.hb_c00438{height:50.346667pt;}
.h4_c00438{height:50.928601pt;}
.h3_c00438{height:57.984000pt;}
.h6_c00438{height:60.510720pt;}
.h2_c00438{height:1067.880000pt;}
.h0_c00438{height:1122.520000pt;}
.h1_c00438{height:1122.666667pt;}
.w3_c00438{width:22.240000pt;}
.w2_c00438{width:767.960000pt;}
.w0_c00438{width:793.720000pt;}
.w1_c00438{width:794.000000pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:12.880000pt;}
.x2_c00438{left:100.480133pt;}
.x11_c00438{left:113.082400pt;}
.xa_c00438{left:135.049733pt;}
.x12_c00438{left:138.988267pt;}
.x3_c00438{left:143.583333pt;}
.x13_c00438{left:153.787733pt;}
.x14_c00438{left:157.494133pt;}
.x5_c00438{left:161.806933pt;}
.x15_c00438{left:209.385067pt;}
.x4_c00438{left:210.654267pt;}
.x1b_c00438{left:219.758800pt;}
.x10_c00438{left:223.680000pt;}
.x16_c00438{left:231.584667pt;}
.x1c_c00438{left:237.531200pt;}
.xb_c00438{left:240.640000pt;}
.xd_c00438{left:264.065733pt;}
.x17_c00438{left:297.528667pt;}
.x18_c00438{left:319.728133pt;}
.x8_c00438{left:455.674133pt;}
.x19_c00438{left:456.965200pt;}
.x6_c00438{left:466.698267pt;}
.x1a_c00438{left:505.110400pt;}
.xe_c00438{left:527.387067pt;}
.x9_c00438{left:546.528000pt;}
.xf_c00438{left:585.162133pt;}
.x7_c00438{left:604.455733pt;}
.xc_c00438{left:609.222400pt;}
.x1d_c00438{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03a4892bfbeef04f6b0ffc3d.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_8d63a600792fb0fb6a630ff9.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;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:ff3_c00439;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00439;src:url('chunks/assets/font_922aa5e5a017b0c451d2d3fd.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00439{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00439{vertical-align:-24.480000px;}
.v0_c00439{vertical-align:0.000000px;}
.v1_c00439{vertical-align:30.240000px;}
.ls7_c00439{letter-spacing:-0.179568px;}
.ls6_c00439{letter-spacing:0.000000px;}
.ls9_c00439{letter-spacing:0.144000px;}
.lsa_c00439{letter-spacing:0.265680px;}
.ls10_c00439{letter-spacing:0.371952px;}
.ls12_c00439{letter-spacing:0.425088px;}
.lsb_c00439{letter-spacing:0.438171px;}
.lse_c00439{letter-spacing:0.478224px;}
.lsc_c00439{letter-spacing:0.531360px;}
.ls4_c00439{letter-spacing:0.712027px;}
.ls16_c00439{letter-spacing:0.797040px;}
.ls2_c00439{letter-spacing:0.944640px;}
.ls14_c00439{letter-spacing:3.713616px;}
.ls13_c00439{letter-spacing:4.061952px;}
.ls15_c00439{letter-spacing:5.183712px;}
.ls3_c00439{letter-spacing:5.254560px;}
.ls8_c00439{letter-spacing:5.421600px;}
.lsf_c00439{letter-spacing:5.567472px;}
.ls1_c00439{letter-spacing:5.976000px;}
.ls5_c00439{letter-spacing:6.159920px;}
.lsd_c00439{letter-spacing:12.073680px;}
.ls11_c00439{letter-spacing:15.545232px;}
.ls0_c00439{letter-spacing:25.056000px;}
.sc__c00439{text-shadow:none;}
.sc1_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00439{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc1_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00439{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00439{word-spacing:-21.980592px;}
.ws4_c00439{word-spacing:-17.630284px;}
.ws3_c00439{word-spacing:-16.785072px;}
.ws0_c00439{word-spacing:-11.429712px;}
.ws1_c00439{word-spacing:-10.152000px;}
.ws5_c00439{word-spacing:0.000000px;}
._11_c00439{margin-left:-15.284160px;}
._12_c00439{margin-left:-14.014080px;}
._f_c00439{margin-left:-11.859840px;}
._10_c00439{margin-left:-10.656000px;}
._b_c00439{margin-left:-5.906784px;}
._16_c00439{margin-left:-4.893120px;}
._14_c00439{margin-left:-3.889440px;}
._15_c00439{margin-left:-2.744640px;}
._e_c00439{margin-left:-1.180800px;}
._9_c00439{width:1.800000px;}
._c_c00439{width:3.621600px;}
._a_c00439{width:4.752000px;}
._8_c00439{width:6.048000px;}
._7_c00439{width:8.064000px;}
._2_c00439{width:11.520000px;}
._6_c00439{width:12.888000px;}
._13_c00439{width:14.496912px;}
._5_c00439{width:15.912000px;}
._d_c00439{width:21.384000px;}
._0_c00439{width:24.840000px;}
._3_c00439{width:28.512000px;}
._1_c00439{width:29.808000px;}
._4_c00439{width:35.064000px;}
.fc0_c00439{color:rgb(0,0,0);}
.fs3_c00439{font-size:36.000000px;}
.fs2_c00439{font-size:41.760000px;}
.fs4_c00439{font-size:59.040000px;}
.fs6_c00439{font-size:60.000000px;}
.fs5_c00439{font-size:60.857039px;}
.fs0_c00439{font-size:72.000000px;}
.fs1_c00439{font-size:74.215901px;}
.y0_c00439{bottom:0.000000px;}
.y31_c00439{bottom:3.120000px;}
.y30_c00439{bottom:34.744580px;}
.y1_c00439{bottom:54.000000px;}
.y2f_c00439{bottom:55.481040px;}
.y2e_c00439{bottom:78.885000px;}
.y2d_c00439{bottom:90.402840px;}
.y2c_c00439{bottom:107.686800px;}
.y2b_c00439{bottom:125.325000px;}
.y2a_c00439{bottom:125.326800px;}
.y29_c00439{bottom:149.085000px;}
.y28_c00439{bottom:161.322120px;}
.y27_c00439{bottom:180.037800px;}
.y26_c00439{bottom:204.165000px;}
.y25_c00439{bottom:215.681040px;}
.y24_c00439{bottom:239.085000px;}
.y23_c00439{bottom:250.605000px;}
.y22_c00439{bottom:256.725000px;}
.y21_c00439{bottom:283.365000px;}
.y20_c00439{bottom:312.165000px;}
.y1f_c00439{bottom:348.165000px;}
.y1e_c00439{bottom:369.405000px;}
.y1d_c00439{bottom:390.285000px;}
.y1c_c00439{bottom:426.285000px;}
.y1b_c00439{bottom:447.525000px;}
.y1a_c00439{bottom:468.405000px;}
.y19_c00439{bottom:504.405000px;}
.y18_c00439{bottom:542.565000px;}
.y17_c00439{bottom:580.725000px;}
.y16_c00439{bottom:616.725000px;}
.y15_c00439{bottom:637.965000px;}
.y14_c00439{bottom:658.845000px;}
.y13_c00439{bottom:680.085000px;}
.y12_c00439{bottom:716.085000px;}
.y11_c00439{bottom:736.965000px;}
.y10_c00439{bottom:757.845000px;}
.yf_c00439{bottom:779.085000px;}
.ye_c00439{bottom:799.965000px;}
.yd_c00439{bottom:820.845000px;}
.yc_c00439{bottom:856.845000px;}
.yb_c00439{bottom:892.845000px;}
.ya_c00439{bottom:928.845000px;}
.y9_c00439{bottom:950.085000px;}
.y8_c00439{bottom:970.965000px;}
.y7_c00439{bottom:991.845000px;}
.y6_c00439{bottom:1013.085000px;}
.y4_c00439{bottom:1049.085000px;}
.y5_c00439{bottom:1056.645000px;}
.y3_c00439{bottom:1085.085000px;}
.y2_c00439{bottom:1138.365000px;}
.ha_c00439{height:19.255605px;}
.h7_c00439{height:32.616000px;}
.h5_c00439{height:37.834560px;}
.h8_c00439{height:46.981634px;}
.h9_c00439{height:53.490240px;}
.hb_c00439{height:56.640000px;}
.h4_c00439{height:57.294676px;}
.h3_c00439{height:65.232000px;}
.h6_c00439{height:68.074560px;}
.h2_c00439{height:1201.365000px;}
.h0_c00439{height:1262.835000px;}
.h1_c00439{height:1263.000000px;}
.w3_c00439{width:25.020000px;}
.w2_c00439{width:863.955000px;}
.w0_c00439{width:892.935000px;}
.w1_c00439{width:893.250000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:14.490000px;}
.x2_c00439{left:113.040150px;}
.x16_c00439{left:152.255850px;}
.x3_c00439{left:161.531250px;}
.x17_c00439{left:172.250250px;}
.xc_c00439{left:192.994950px;}
.x5_c00439{left:217.080000px;}
.x6_c00439{left:228.682200px;}
.x4_c00439{left:236.986050px;}
.x14_c00439{left:363.940800px;}
.x15_c00439{left:383.934750px;}
.x11_c00439{left:413.967000px;}
.x9_c00439{left:528.019350px;}
.xa_c00439{left:535.906500px;}
.xf_c00439{left:548.182200px;}
.xd_c00439{left:609.938550px;}
.x10_c00439{left:615.195150px;}
.x7_c00439{left:625.929900px;}
.xe_c00439{left:646.928100px;}
.x8_c00439{left:672.927150px;}
.x12_c00439{left:676.241100px;}
.xb_c00439{left:683.499300px;}
.x13_c00439{left:721.222050px;}
.x18_c00439{left:759.914612px;}
@media print{
.v2_c00439{vertical-align:-21.760000pt;}
.v0_c00439{vertical-align:0.000000pt;}
.v1_c00439{vertical-align:26.880000pt;}
.ls7_c00439{letter-spacing:-0.159616pt;}
.ls6_c00439{letter-spacing:0.000000pt;}
.ls9_c00439{letter-spacing:0.128000pt;}
.lsa_c00439{letter-spacing:0.236160pt;}
.ls10_c00439{letter-spacing:0.330624pt;}
.ls12_c00439{letter-spacing:0.377856pt;}
.lsb_c00439{letter-spacing:0.389485pt;}
.lse_c00439{letter-spacing:0.425088pt;}
.lsc_c00439{letter-spacing:0.472320pt;}
.ls4_c00439{letter-spacing:0.632913pt;}
.ls16_c00439{letter-spacing:0.708480pt;}
.ls2_c00439{letter-spacing:0.839680pt;}
.ls14_c00439{letter-spacing:3.300992pt;}
.ls13_c00439{letter-spacing:3.610624pt;}
.ls15_c00439{letter-spacing:4.607744pt;}
.ls3_c00439{letter-spacing:4.670720pt;}
.ls8_c00439{letter-spacing:4.819200pt;}
.lsf_c00439{letter-spacing:4.948864pt;}
.ls1_c00439{letter-spacing:5.312000pt;}
.ls5_c00439{letter-spacing:5.475484pt;}
.lsd_c00439{letter-spacing:10.732160pt;}
.ls11_c00439{letter-spacing:13.817984pt;}
.ls0_c00439{letter-spacing:22.272000pt;}
.ws2_c00439{word-spacing:-19.538304pt;}
.ws4_c00439{word-spacing:-15.671364pt;}
.ws3_c00439{word-spacing:-14.920064pt;}
.ws0_c00439{word-spacing:-10.159744pt;}
.ws1_c00439{word-spacing:-9.024000pt;}
.ws5_c00439{word-spacing:0.000000pt;}
._11_c00439{margin-left:-13.585920pt;}
._12_c00439{margin-left:-12.456960pt;}
._f_c00439{margin-left:-10.542080pt;}
._10_c00439{margin-left:-9.472000pt;}
._b_c00439{margin-left:-5.250475pt;}
._16_c00439{margin-left:-4.349440pt;}
._14_c00439{margin-left:-3.457280pt;}
._15_c00439{margin-left:-2.439680pt;}
._e_c00439{margin-left:-1.049600pt;}
._9_c00439{width:1.600000pt;}
._c_c00439{width:3.219200pt;}
._a_c00439{width:4.224000pt;}
._8_c00439{width:5.376000pt;}
._7_c00439{width:7.168000pt;}
._2_c00439{width:10.240000pt;}
._6_c00439{width:11.456000pt;}
._13_c00439{width:12.886144pt;}
._5_c00439{width:14.144000pt;}
._d_c00439{width:19.008000pt;}
._0_c00439{width:22.080000pt;}
._3_c00439{width:25.344000pt;}
._1_c00439{width:26.496000pt;}
._4_c00439{width:31.168000pt;}
.fs3_c00439{font-size:32.000000pt;}
.fs2_c00439{font-size:37.120000pt;}
.fs4_c00439{font-size:52.480000pt;}
.fs6_c00439{font-size:53.333333pt;}
.fs5_c00439{font-size:54.095146pt;}
.fs0_c00439{font-size:64.000000pt;}
.fs1_c00439{font-size:65.969690pt;}
.y0_c00439{bottom:0.000000pt;}
.y31_c00439{bottom:2.773333pt;}
.y30_c00439{bottom:30.884071pt;}
.y1_c00439{bottom:48.000000pt;}
.y2f_c00439{bottom:49.316480pt;}
.y2e_c00439{bottom:70.120000pt;}
.y2d_c00439{bottom:80.358080pt;}
.y2c_c00439{bottom:95.721600pt;}
.y2b_c00439{bottom:111.400000pt;}
.y2a_c00439{bottom:111.401600pt;}
.y29_c00439{bottom:132.520000pt;}
.y28_c00439{bottom:143.397440pt;}
.y27_c00439{bottom:160.033600pt;}
.y26_c00439{bottom:181.480000pt;}
.y25_c00439{bottom:191.716480pt;}
.y24_c00439{bottom:212.520000pt;}
.y23_c00439{bottom:222.760000pt;}
.y22_c00439{bottom:228.200000pt;}
.y21_c00439{bottom:251.880000pt;}
.y20_c00439{bottom:277.480000pt;}
.y1f_c00439{bottom:309.480000pt;}
.y1e_c00439{bottom:328.360000pt;}
.y1d_c00439{bottom:346.920000pt;}
.y1c_c00439{bottom:378.920000pt;}
.y1b_c00439{bottom:397.800000pt;}
.y1a_c00439{bottom:416.360000pt;}
.y19_c00439{bottom:448.360000pt;}
.y18_c00439{bottom:482.280000pt;}
.y17_c00439{bottom:516.200000pt;}
.y16_c00439{bottom:548.200000pt;}
.y15_c00439{bottom:567.080000pt;}
.y14_c00439{bottom:585.640000pt;}
.y13_c00439{bottom:604.520000pt;}
.y12_c00439{bottom:636.520000pt;}
.y11_c00439{bottom:655.080000pt;}
.y10_c00439{bottom:673.640000pt;}
.yf_c00439{bottom:692.520000pt;}
.ye_c00439{bottom:711.080000pt;}
.yd_c00439{bottom:729.640000pt;}
.yc_c00439{bottom:761.640000pt;}
.yb_c00439{bottom:793.640000pt;}
.ya_c00439{bottom:825.640000pt;}
.y9_c00439{bottom:844.520000pt;}
.y8_c00439{bottom:863.080000pt;}
.y7_c00439{bottom:881.640000pt;}
.y6_c00439{bottom:900.520000pt;}
.y4_c00439{bottom:932.520000pt;}
.y5_c00439{bottom:939.240000pt;}
.y3_c00439{bottom:964.520000pt;}
.y2_c00439{bottom:1011.880000pt;}
.ha_c00439{height:17.116093pt;}
.h7_c00439{height:28.992000pt;}
.h5_c00439{height:33.630720pt;}
.h8_c00439{height:41.761453pt;}
.h9_c00439{height:47.546880pt;}
.hb_c00439{height:50.346667pt;}
.h4_c00439{height:50.928601pt;}
.h3_c00439{height:57.984000pt;}
.h6_c00439{height:60.510720pt;}
.h2_c00439{height:1067.880000pt;}
.h0_c00439{height:1122.520000pt;}
.h1_c00439{height:1122.666667pt;}
.w3_c00439{width:22.240000pt;}
.w2_c00439{width:767.960000pt;}
.w0_c00439{width:793.720000pt;}
.w1_c00439{width:794.000000pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:12.880000pt;}
.x2_c00439{left:100.480133pt;}
.x16_c00439{left:135.338533pt;}
.x3_c00439{left:143.583333pt;}
.x17_c00439{left:153.111333pt;}
.xc_c00439{left:171.551067pt;}
.x5_c00439{left:192.960000pt;}
.x6_c00439{left:203.273067pt;}
.x4_c00439{left:210.654267pt;}
.x14_c00439{left:323.502933pt;}
.x15_c00439{left:341.275333pt;}
.x11_c00439{left:367.970667pt;}
.x9_c00439{left:469.350533pt;}
.xa_c00439{left:476.361333pt;}
.xf_c00439{left:487.273067pt;}
.xd_c00439{left:542.167600pt;}
.x10_c00439{left:546.840133pt;}
.x7_c00439{left:556.382133pt;}
.xe_c00439{left:575.047200pt;}
.x8_c00439{left:598.157467pt;}
.x12_c00439{left:601.103200pt;}
.xb_c00439{left:607.554933pt;}
.x13_c00439{left:641.086267pt;}
.x18_c00439{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a99f8d0103ca6bde86a974f.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_5a6ee9598d8a462fdfdffe77.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;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:ff3_c00440;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00440;src:url('chunks/assets/font_cdb7f0784b5c3129db15bd25.woff2')format("woff");}.ff6_c00440{font-family:ff6_c00440;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00440;src:url('chunks/assets/font_9fb4f2a8ab0e848deb4e6005.woff2')format("woff");}.ff7_c00440{font-family:ff7_c00440;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00440;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff8_c00440{font-family:ff8_c00440;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00440;src:url('chunks/assets/font_ececedda34c80d05f88546dc.woff2')format("woff");}.ff9_c00440{font-family:ff9_c00440;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00440{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00440{vertical-align:-24.480000px;}
.v0_c00440{vertical-align:0.000000px;}
.v1_c00440{vertical-align:30.240000px;}
.ls8_c00440{letter-spacing:-0.179568px;}
.ls6_c00440{letter-spacing:0.000000px;}
.ls9_c00440{letter-spacing:0.144000px;}
.lse_c00440{letter-spacing:0.265680px;}
.ls11_c00440{letter-spacing:0.318816px;}
.ls13_c00440{letter-spacing:0.328628px;}
.ls12_c00440{letter-spacing:0.438171px;}
.ls10_c00440{letter-spacing:0.478224px;}
.lsc_c00440{letter-spacing:0.531360px;}
.ls4_c00440{letter-spacing:0.712027px;}
.lsb_c00440{letter-spacing:0.797040px;}
.lsf_c00440{letter-spacing:0.821570px;}
.lsd_c00440{letter-spacing:3.536496px;}
.lsa_c00440{letter-spacing:3.749040px;}
.ls7_c00440{letter-spacing:5.430672px;}
.ls1_c00440{letter-spacing:5.944200px;}
.ls3_c00440{letter-spacing:5.976000px;}
.ls0_c00440{letter-spacing:5.983800px;}
.ls5_c00440{letter-spacing:6.159920px;}
.ls2_c00440{letter-spacing:54.864000px;}
.sc__c00440{text-shadow:none;}
.sc1_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00440{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc1_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00440{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00440{word-spacing:-21.043152px;}
.ws4_c00440{word-spacing:-17.630284px;}
.ws3_c00440{word-spacing:-17.356428px;}
.ws1_c00440{word-spacing:-11.429712px;}
.ws2_c00440{word-spacing:-10.152000px;}
.ws5_c00440{word-spacing:0.000000px;}
._b_c00440{margin-left:-3.476160px;}
._c_c00440{margin-left:-2.472480px;}
._1_c00440{margin-left:-1.179360px;}
._7_c00440{width:1.656000px;}
._6_c00440{width:2.808000px;}
._a_c00440{width:4.320000px;}
._5_c00440{width:5.400000px;}
._3_c00440{width:7.128000px;}
._9_c00440{width:8.280000px;}
._2_c00440{width:12.456000px;}
._0_c00440{width:16.128000px;}
._4_c00440{width:17.928000px;}
._8_c00440{width:28.296000px;}
.fc0_c00440{color:rgb(0,0,0);}
.fs4_c00440{font-size:36.000000px;}
.fs3_c00440{font-size:41.760000px;}
.fs2_c00440{font-size:56.160000px;}
.fs5_c00440{font-size:59.040000px;}
.fs7_c00440{font-size:60.000000px;}
.fs6_c00440{font-size:60.857039px;}
.fs0_c00440{font-size:72.000000px;}
.fs1_c00440{font-size:74.215901px;}
.y0_c00440{bottom:0.000000px;}
.y31_c00440{bottom:3.120000px;}
.y30_c00440{bottom:34.744580px;}
.y1_c00440{bottom:54.000000px;}
.y2f_c00440{bottom:61.605000px;}
.y2e_c00440{bottom:72.765000px;}
.y2d_c00440{bottom:78.885000px;}
.y2c_c00440{bottom:90.405000px;}
.y2b_c00440{bottom:96.525000px;}
.y2a_c00440{bottom:107.685000px;}
.y29_c00440{bottom:113.805000px;}
.y28_c00440{bottom:131.445000px;}
.y26_c00440{bottom:142.962840px;}
.y27_c00440{bottom:142.965000px;}
.y25_c00440{bottom:160.246800px;}
.y24_c00440{bottom:177.885000px;}
.y23_c00440{bottom:177.886800px;}
.y22_c00440{bottom:201.645000px;}
.y21_c00440{bottom:212.806800px;}
.y20_c00440{bottom:236.565000px;}
.y1f_c00440{bottom:263.205000px;}
.y1e_c00440{bottom:297.765000px;}
.y1d_c00440{bottom:329.085000px;}
.y1c_c00440{bottom:364.725000px;}
.y1b_c00440{bottom:400.725000px;}
.y1a_c00440{bottom:421.965000px;}
.y19_c00440{bottom:442.845000px;}
.y18_c00440{bottom:463.725000px;}
.y17_c00440{bottom:484.965000px;}
.y16_c00440{bottom:505.845000px;}
.y15_c00440{bottom:526.725000px;}
.y14_c00440{bottom:547.965000px;}
.y13_c00440{bottom:568.845000px;}
.y12_c00440{bottom:604.845000px;}
.y11_c00440{bottom:640.845000px;}
.y10_c00440{bottom:662.085000px;}
.yf_c00440{bottom:698.085000px;}
.ye_c00440{bottom:718.965000px;}
.yd_c00440{bottom:739.845000px;}
.yc_c00440{bottom:775.845000px;}
.yb_c00440{bottom:811.845000px;}
.ya_c00440{bottom:847.845000px;}
.y9_c00440{bottom:883.845000px;}
.y8_c00440{bottom:919.845000px;}
.y7_c00440{bottom:955.845000px;}
.y6_c00440{bottom:991.845000px;}
.y5_c00440{bottom:1013.085000px;}
.y4_c00440{bottom:1049.085000px;}
.y3_c00440{bottom:1085.085000px;}
.y2_c00440{bottom:1138.365000px;}
.ha_c00440{height:19.255605px;}
.h7_c00440{height:32.616000px;}
.h9_c00440{height:46.981634px;}
.h6_c00440{height:47.988281px;}
.h8_c00440{height:53.490240px;}
.hb_c00440{height:56.640000px;}
.h4_c00440{height:57.294676px;}
.h3_c00440{height:65.232000px;}
.h5_c00440{height:68.074560px;}
.h2_c00440{height:1201.365000px;}
.h0_c00440{height:1262.835000px;}
.h1_c00440{height:1263.000000px;}
.w3_c00440{width:25.020000px;}
.w2_c00440{width:863.955000px;}
.w0_c00440{width:892.935000px;}
.w1_c00440{width:893.250000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:14.490000px;}
.x2_c00440{left:113.040150px;}
.x16_c00440{left:127.217700px;}
.x6_c00440{left:140.037600px;}
.x17_c00440{left:152.192100px;}
.x18_c00440{left:156.361800px;}
.x3_c00440{left:161.531250px;}
.x15_c00440{left:173.878050px;}
.x13_c00440{left:184.178400px;}
.xa_c00440{left:197.044500px;}
.x19_c00440{left:217.230150px;}
.x14_c00440{left:223.489800px;}
.x4_c00440{left:236.986050px;}
.x1a_c00440{left:246.374250px;}
.xb_c00440{left:325.665150px;}
.x7_c00440{left:364.631850px;}
.xc_c00440{left:374.660100px;}
.x8_c00440{left:379.625550px;}
.xd_c00440{left:433.176900px;}
.xe_c00440{left:442.176900px;}
.xf_c00440{left:496.175850px;}
.x10_c00440{left:505.175850px;}
.x11_c00440{left:548.176800px;}
.x12_c00440{left:552.676800px;}
.x1b_c00440{left:661.471050px;}
.x9_c00440{left:731.382150px;}
.x5_c00440{left:743.137200px;}
.x1c_c00440{left:759.914612px;}
@media print{
.v2_c00440{vertical-align:-21.760000pt;}
.v0_c00440{vertical-align:0.000000pt;}
.v1_c00440{vertical-align:26.880000pt;}
.ls8_c00440{letter-spacing:-0.159616pt;}
.ls6_c00440{letter-spacing:0.000000pt;}
.ls9_c00440{letter-spacing:0.128000pt;}
.lse_c00440{letter-spacing:0.236160pt;}
.ls11_c00440{letter-spacing:0.283392pt;}
.ls13_c00440{letter-spacing:0.292114pt;}
.ls12_c00440{letter-spacing:0.389485pt;}
.ls10_c00440{letter-spacing:0.425088pt;}
.lsc_c00440{letter-spacing:0.472320pt;}
.ls4_c00440{letter-spacing:0.632913pt;}
.lsb_c00440{letter-spacing:0.708480pt;}
.lsf_c00440{letter-spacing:0.730284pt;}
.lsd_c00440{letter-spacing:3.143552pt;}
.lsa_c00440{letter-spacing:3.332480pt;}
.ls7_c00440{letter-spacing:4.827264pt;}
.ls1_c00440{letter-spacing:5.283733pt;}
.ls3_c00440{letter-spacing:5.312000pt;}
.ls0_c00440{letter-spacing:5.318933pt;}
.ls5_c00440{letter-spacing:5.475484pt;}
.ls2_c00440{letter-spacing:48.768000pt;}
.ws0_c00440{word-spacing:-18.705024pt;}
.ws4_c00440{word-spacing:-15.671364pt;}
.ws3_c00440{word-spacing:-15.427936pt;}
.ws1_c00440{word-spacing:-10.159744pt;}
.ws2_c00440{word-spacing:-9.024000pt;}
.ws5_c00440{word-spacing:0.000000pt;}
._b_c00440{margin-left:-3.089920pt;}
._c_c00440{margin-left:-2.197760pt;}
._1_c00440{margin-left:-1.048320pt;}
._7_c00440{width:1.472000pt;}
._6_c00440{width:2.496000pt;}
._a_c00440{width:3.840000pt;}
._5_c00440{width:4.800000pt;}
._3_c00440{width:6.336000pt;}
._9_c00440{width:7.360000pt;}
._2_c00440{width:11.072000pt;}
._0_c00440{width:14.336000pt;}
._4_c00440{width:15.936000pt;}
._8_c00440{width:25.152000pt;}
.fs4_c00440{font-size:32.000000pt;}
.fs3_c00440{font-size:37.120000pt;}
.fs2_c00440{font-size:49.920000pt;}
.fs5_c00440{font-size:52.480000pt;}
.fs7_c00440{font-size:53.333333pt;}
.fs6_c00440{font-size:54.095146pt;}
.fs0_c00440{font-size:64.000000pt;}
.fs1_c00440{font-size:65.969690pt;}
.y0_c00440{bottom:0.000000pt;}
.y31_c00440{bottom:2.773333pt;}
.y30_c00440{bottom:30.884071pt;}
.y1_c00440{bottom:48.000000pt;}
.y2f_c00440{bottom:54.760000pt;}
.y2e_c00440{bottom:64.680000pt;}
.y2d_c00440{bottom:70.120000pt;}
.y2c_c00440{bottom:80.360000pt;}
.y2b_c00440{bottom:85.800000pt;}
.y2a_c00440{bottom:95.720000pt;}
.y29_c00440{bottom:101.160000pt;}
.y28_c00440{bottom:116.840000pt;}
.y26_c00440{bottom:127.078080pt;}
.y27_c00440{bottom:127.080000pt;}
.y25_c00440{bottom:142.441600pt;}
.y24_c00440{bottom:158.120000pt;}
.y23_c00440{bottom:158.121600pt;}
.y22_c00440{bottom:179.240000pt;}
.y21_c00440{bottom:189.161600pt;}
.y20_c00440{bottom:210.280000pt;}
.y1f_c00440{bottom:233.960000pt;}
.y1e_c00440{bottom:264.680000pt;}
.y1d_c00440{bottom:292.520000pt;}
.y1c_c00440{bottom:324.200000pt;}
.y1b_c00440{bottom:356.200000pt;}
.y1a_c00440{bottom:375.080000pt;}
.y19_c00440{bottom:393.640000pt;}
.y18_c00440{bottom:412.200000pt;}
.y17_c00440{bottom:431.080000pt;}
.y16_c00440{bottom:449.640000pt;}
.y15_c00440{bottom:468.200000pt;}
.y14_c00440{bottom:487.080000pt;}
.y13_c00440{bottom:505.640000pt;}
.y12_c00440{bottom:537.640000pt;}
.y11_c00440{bottom:569.640000pt;}
.y10_c00440{bottom:588.520000pt;}
.yf_c00440{bottom:620.520000pt;}
.ye_c00440{bottom:639.080000pt;}
.yd_c00440{bottom:657.640000pt;}
.yc_c00440{bottom:689.640000pt;}
.yb_c00440{bottom:721.640000pt;}
.ya_c00440{bottom:753.640000pt;}
.y9_c00440{bottom:785.640000pt;}
.y8_c00440{bottom:817.640000pt;}
.y7_c00440{bottom:849.640000pt;}
.y6_c00440{bottom:881.640000pt;}
.y5_c00440{bottom:900.520000pt;}
.y4_c00440{bottom:932.520000pt;}
.y3_c00440{bottom:964.520000pt;}
.y2_c00440{bottom:1011.880000pt;}
.ha_c00440{height:17.116093pt;}
.h7_c00440{height:28.992000pt;}
.h9_c00440{height:41.761453pt;}
.h6_c00440{height:42.656250pt;}
.h8_c00440{height:47.546880pt;}
.hb_c00440{height:50.346667pt;}
.h4_c00440{height:50.928601pt;}
.h3_c00440{height:57.984000pt;}
.h5_c00440{height:60.510720pt;}
.h2_c00440{height:1067.880000pt;}
.h0_c00440{height:1122.520000pt;}
.h1_c00440{height:1122.666667pt;}
.w3_c00440{width:22.240000pt;}
.w2_c00440{width:767.960000pt;}
.w0_c00440{width:793.720000pt;}
.w1_c00440{width:794.000000pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:12.880000pt;}
.x2_c00440{left:100.480133pt;}
.x16_c00440{left:113.082400pt;}
.x6_c00440{left:124.477867pt;}
.x17_c00440{left:135.281867pt;}
.x18_c00440{left:138.988267pt;}
.x3_c00440{left:143.583333pt;}
.x15_c00440{left:154.558267pt;}
.x13_c00440{left:163.714133pt;}
.xa_c00440{left:175.150667pt;}
.x19_c00440{left:193.093467pt;}
.x14_c00440{left:198.657600pt;}
.x4_c00440{left:210.654267pt;}
.x1a_c00440{left:218.999333pt;}
.xb_c00440{left:289.480133pt;}
.x7_c00440{left:324.117200pt;}
.xc_c00440{left:333.031200pt;}
.x8_c00440{left:337.444933pt;}
.xd_c00440{left:385.046133pt;}
.xe_c00440{left:393.046133pt;}
.xf_c00440{left:441.045200pt;}
.x10_c00440{left:449.045200pt;}
.x11_c00440{left:487.268267pt;}
.x12_c00440{left:491.268267pt;}
.x1b_c00440{left:587.974267pt;}
.x9_c00440{left:650.117467pt;}
.x5_c00440{left:660.566400pt;}
.x1c_c00440{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff2c046831b62cfaad1dfffe.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_c5020d0122e0d990442f791d.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;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:ff3_c00441;src:url('chunks/assets/font_8194133ff60fb143a73b04df.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00441;src:url('chunks/assets/font_b78f2050b8085927376fe32c.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00441;src:url('chunks/assets/font_2624a2637adf02c07e8992f0.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00441{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00441{vertical-align:-30.240000px;}
.v3_c00441{vertical-align:-24.480000px;}
.v0_c00441{vertical-align:0.000000px;}
.v1_c00441{vertical-align:30.240000px;}
.ls1d_c00441{letter-spacing:-0.179568px;}
.lsc_c00441{letter-spacing:0.000000px;}
.ls1f_c00441{letter-spacing:0.144000px;}
.ls4_c00441{letter-spacing:0.236160px;}
.ls10_c00441{letter-spacing:0.265680px;}
.ls3_c00441{letter-spacing:0.273857px;}
.ls5_c00441{letter-spacing:0.295200px;}
.ls1_c00441{letter-spacing:0.328628px;}
.ls23_c00441{letter-spacing:0.371952px;}
.ls1a_c00441{letter-spacing:0.425088px;}
.ls16_c00441{letter-spacing:0.478224px;}
.ls6_c00441{letter-spacing:0.531360px;}
.lsd_c00441{letter-spacing:0.584496px;}
.lsf_c00441{letter-spacing:0.602485px;}
.ls19_c00441{letter-spacing:0.657256px;}
.ls1b_c00441{letter-spacing:0.690768px;}
.ls7_c00441{letter-spacing:0.712027px;}
.ls20_c00441{letter-spacing:0.718113px;}
.ls2_c00441{letter-spacing:0.730284px;}
.ls18_c00441{letter-spacing:0.743904px;}
.lse_c00441{letter-spacing:0.797040px;}
.ls11_c00441{letter-spacing:0.821570px;}
.ls15_c00441{letter-spacing:0.962352px;}
.ls1c_c00441{letter-spacing:1.163088px;}
.ls24_c00441{letter-spacing:3.146832px;}
.ls17_c00441{letter-spacing:3.501072px;}
.ls22_c00441{letter-spacing:5.248656px;}
.ls12_c00441{letter-spacing:5.301792px;}
.ls1e_c00441{letter-spacing:5.335200px;}
.ls14_c00441{letter-spacing:5.354928px;}
.ls13_c00441{letter-spacing:5.514336px;}
.ls8_c00441{letter-spacing:5.976000px;}
.lsa_c00441{letter-spacing:5.984400px;}
.lsb_c00441{letter-spacing:6.159920px;}
.ls21_c00441{letter-spacing:7.810992px;}
.ls0_c00441{letter-spacing:9.986640px;}
.ls9_c00441{letter-spacing:23.328000px;}
.sc__c00441{text-shadow:none;}
.sc1_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00441{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc1_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00441{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00441{word-spacing:-21.927456px;}
.ws4_c00441{word-spacing:-21.768048px;}
.ws2_c00441{word-spacing:-21.714912px;}
.wsa_c00441{word-spacing:-21.661776px;}
.ws8_c00441{word-spacing:-20.947680px;}
.ws1_c00441{word-spacing:-17.739827px;}
.ws5_c00441{word-spacing:-17.630284px;}
.ws0_c00441{word-spacing:-17.520742px;}
.ws6_c00441{word-spacing:-16.944480px;}
.ws7_c00441{word-spacing:-11.429712px;}
.ws9_c00441{word-spacing:-10.152000px;}
.wsb_c00441{word-spacing:0.000000px;}
._2_c00441{margin-left:-9.250270px;}
._10_c00441{margin-left:-7.313760px;}
._a_c00441{margin-left:-4.014720px;}
._9_c00441{margin-left:-2.952000px;}
._1_c00441{margin-left:-1.250687px;}
._3_c00441{width:1.180800px;}
._7_c00441{width:2.365582px;}
._8_c00441{width:3.654298px;}
._5_c00441{width:4.664160px;}
._6_c00441{width:6.104736px;}
._b_c00441{width:7.616160px;}
._0_c00441{width:8.796960px;}
._4_c00441{width:9.980554px;}
._f_c00441{width:12.888000px;}
._c_c00441{width:15.264000px;}
._d_c00441{width:16.992000px;}
._e_c00441{width:23.328000px;}
.fc0_c00441{color:rgb(0,0,0);}
.fs7_c00441{font-size:36.000000px;}
.fs5_c00441{font-size:41.760000px;}
.fs6_c00441{font-size:56.160000px;}
.fs2_c00441{font-size:59.040000px;}
.fs8_c00441{font-size:60.000000px;}
.fs3_c00441{font-size:60.857039px;}
.fs4_c00441{font-size:64.800000px;}
.fs0_c00441{font-size:72.000000px;}
.fs1_c00441{font-size:74.215901px;}
.y0_c00441{bottom:0.000000px;}
.y39_c00441{bottom:3.120000px;}
.y38_c00441{bottom:34.744580px;}
.y1_c00441{bottom:54.000000px;}
.y37_c00441{bottom:61.605000px;}
.y36_c00441{bottom:78.885000px;}
.y35_c00441{bottom:90.401040px;}
.y34_c00441{bottom:113.805000px;}
.y32_c00441{bottom:125.322840px;}
.y33_c00441{bottom:125.325000px;}
.y31_c00441{bottom:142.961040px;}
.y30_c00441{bottom:166.365000px;}
.y2f_c00441{bottom:184.005000px;}
.y2e_c00441{bottom:195.525000px;}
.y2d_c00441{bottom:201.645000px;}
.y2c_c00441{bottom:228.285000px;}
.y2b_c00441{bottom:251.325000px;}
.y2a_c00441{bottom:287.325000px;}
.y29_c00441{bottom:308.565000px;}
.y28_c00441{bottom:329.445000px;}
.y27_c00441{bottom:365.445000px;}
.y26_c00441{bottom:401.445000px;}
.y25_c00441{bottom:437.445000px;}
.y24_c00441{bottom:458.325000px;}
.y23_c00441{bottom:479.565000px;}
.y22_c00441{bottom:500.445000px;}
.y20_c00441{bottom:521.325000px;}
.y21_c00441{bottom:528.885000px;}
.y1f_c00441{bottom:542.565000px;}
.y1e_c00441{bottom:563.445000px;}
.y1d_c00441{bottom:599.445000px;}
.y1c_c00441{bottom:620.685000px;}
.y1b_c00441{bottom:641.565000px;}
.y1a_c00441{bottom:662.445000px;}
.y19_c00441{bottom:698.445000px;}
.y18_c00441{bottom:726.882480px;}
.y17_c00441{bottom:744.166440px;}
.y16_c00441{bottom:761.804640px;}
.y15_c00441{bottom:779.442840px;}
.y14_c00441{bottom:796.726800px;}
.y13_c00441{bottom:814.365000px;}
.y12_c00441{bottom:839.205000px;}
.y11_c00441{bottom:856.845000px;}
.y10_c00441{bottom:856.846800px;}
.ye_c00441{bottom:874.480890px;}
.yf_c00441{bottom:874.485000px;}
.yd_c00441{bottom:891.764850px;}
.yc_c00441{bottom:916.965000px;}
.yb_c00441{bottom:943.605000px;}
.ya_c00441{bottom:961.243920px;}
.y8_c00441{bottom:986.079960px;}
.y9_c00441{bottom:986.085000px;}
.y7_c00441{bottom:1013.445000px;}
.y6_c00441{bottom:1013.446800px;}
.y5_c00441{bottom:1031.085000px;}
.y4_c00441{bottom:1056.645000px;}
.y3_c00441{bottom:1085.085000px;}
.y2_c00441{bottom:1138.365000px;}
.hc_c00441{height:19.255605px;}
.hb_c00441{height:32.616000px;}
.ha_c00441{height:37.834560px;}
.h7_c00441{height:39.350391px;}
.h6_c00441{height:46.981634px;}
.h5_c00441{height:53.490240px;}
.hd_c00441{height:56.640000px;}
.h4_c00441{height:57.294676px;}
.h8_c00441{height:58.708800px;}
.h3_c00441{height:65.232000px;}
.h9_c00441{height:68.074560px;}
.h2_c00441{height:1201.365000px;}
.h0_c00441{height:1262.835000px;}
.h1_c00441{height:1263.000000px;}
.w3_c00441{width:25.020000px;}
.w2_c00441{width:863.955000px;}
.w0_c00441{width:892.935000px;}
.w1_c00441{width:893.250000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:14.490000px;}
.x2_c00441{left:113.040150px;}
.x36_c00441{left:127.217700px;}
.x2c_c00441{left:132.843450px;}
.x28_c00441{left:141.730200px;}
.x1c_c00441{left:147.223350px;}
.x6_c00441{left:151.935750px;}
.x3_c00441{left:161.531250px;}
.x25_c00441{left:165.553350px;}
.x37_c00441{left:194.760450px;}
.x7_c00441{left:216.660600px;}
.x8_c00441{left:220.410600px;}
.x2d_c00441{left:225.720000px;}
.x4_c00441{left:236.986050px;}
.x32_c00441{left:241.053900px;}
.x9_c00441{left:244.292400px;}
.xa_c00441{left:248.042400px;}
.x11_c00441{left:264.714900px;}
.xb_c00441{left:266.088900px;}
.x12_c00441{left:268.464900px;}
.xc_c00441{left:269.838900px;}
.xd_c00441{left:276.364800px;}
.x38_c00441{left:292.269300px;}
.x39_c00441{left:296.439000px;}
.x1d_c00441{left:313.012200px;}
.x5_c00441{left:325.672050px;}
.x13_c00441{left:338.466750px;}
.x14_c00441{left:342.216750px;}
.x15_c00441{left:355.550850px;}
.x16_c00441{left:359.300850px;}
.x26_c00441{left:366.049800px;}
.x30_c00441{left:391.246500px;}
.x17_c00441{left:402.634350px;}
.x27_c00441{left:409.383900px;}
.x31_c00441{left:435.256050px;}
.x20_c00441{left:446.167200px;}
.x18_c00441{left:465.962100px;}
.x21_c00441{left:476.774400px;}
.x29_c00441{left:480.673800px;}
.x22_c00441{left:511.596000px;}
.x19_c00441{left:539.279250px;}
.x23_c00441{left:542.203050px;}
.x1a_c00441{left:547.618650px;}
.xe_c00441{left:552.781800px;}
.x2a_c00441{left:560.664450px;}
.x2b_c00441{left:566.901150px;}
.xf_c00441{left:585.285600px;}
.x2e_c00441{left:587.243700px;}
.x1b_c00441{left:590.952750px;}
.x1e_c00441{left:608.799300px;}
.x1f_c00441{left:629.588700px;}
.x10_c00441{left:639.990900px;}
.x33_c00441{left:658.769550px;}
.x35_c00441{left:664.108950px;}
.x2f_c00441{left:674.236500px;}
.x34_c00441{left:703.750500px;}
.x24_c00441{left:722.070600px;}
.x3a_c00441{left:759.914612px;}
@media print{
.v2_c00441{vertical-align:-26.880000pt;}
.v3_c00441{vertical-align:-21.760000pt;}
.v0_c00441{vertical-align:0.000000pt;}
.v1_c00441{vertical-align:26.880000pt;}
.ls1d_c00441{letter-spacing:-0.159616pt;}
.lsc_c00441{letter-spacing:0.000000pt;}
.ls1f_c00441{letter-spacing:0.128000pt;}
.ls4_c00441{letter-spacing:0.209920pt;}
.ls10_c00441{letter-spacing:0.236160pt;}
.ls3_c00441{letter-spacing:0.243428pt;}
.ls5_c00441{letter-spacing:0.262400pt;}
.ls1_c00441{letter-spacing:0.292114pt;}
.ls23_c00441{letter-spacing:0.330624pt;}
.ls1a_c00441{letter-spacing:0.377856pt;}
.ls16_c00441{letter-spacing:0.425088pt;}
.ls6_c00441{letter-spacing:0.472320pt;}
.lsd_c00441{letter-spacing:0.519552pt;}
.lsf_c00441{letter-spacing:0.535542pt;}
.ls19_c00441{letter-spacing:0.584228pt;}
.ls1b_c00441{letter-spacing:0.614016pt;}
.ls7_c00441{letter-spacing:0.632913pt;}
.ls20_c00441{letter-spacing:0.638323pt;}
.ls2_c00441{letter-spacing:0.649142pt;}
.ls18_c00441{letter-spacing:0.661248pt;}
.lse_c00441{letter-spacing:0.708480pt;}
.ls11_c00441{letter-spacing:0.730284pt;}
.ls15_c00441{letter-spacing:0.855424pt;}
.ls1c_c00441{letter-spacing:1.033856pt;}
.ls24_c00441{letter-spacing:2.797184pt;}
.ls17_c00441{letter-spacing:3.112064pt;}
.ls22_c00441{letter-spacing:4.665472pt;}
.ls12_c00441{letter-spacing:4.712704pt;}
.ls1e_c00441{letter-spacing:4.742400pt;}
.ls14_c00441{letter-spacing:4.759936pt;}
.ls13_c00441{letter-spacing:4.901632pt;}
.ls8_c00441{letter-spacing:5.312000pt;}
.lsa_c00441{letter-spacing:5.319467pt;}
.lsb_c00441{letter-spacing:5.475484pt;}
.ls21_c00441{letter-spacing:6.943104pt;}
.ls0_c00441{letter-spacing:8.877013pt;}
.ls9_c00441{letter-spacing:20.736000pt;}
.ws3_c00441{word-spacing:-19.491072pt;}
.ws4_c00441{word-spacing:-19.349376pt;}
.ws2_c00441{word-spacing:-19.302144pt;}
.wsa_c00441{word-spacing:-19.254912pt;}
.ws8_c00441{word-spacing:-18.620160pt;}
.ws1_c00441{word-spacing:-15.768735pt;}
.ws5_c00441{word-spacing:-15.671364pt;}
.ws0_c00441{word-spacing:-15.573992pt;}
.ws6_c00441{word-spacing:-15.061760pt;}
.ws7_c00441{word-spacing:-10.159744pt;}
.ws9_c00441{word-spacing:-9.024000pt;}
.wsb_c00441{word-spacing:0.000000pt;}
._2_c00441{margin-left:-8.222462pt;}
._10_c00441{margin-left:-6.501120pt;}
._a_c00441{margin-left:-3.568640pt;}
._9_c00441{margin-left:-2.624000pt;}
._1_c00441{margin-left:-1.111722pt;}
._3_c00441{width:1.049600pt;}
._7_c00441{width:2.102740pt;}
._8_c00441{width:3.248265pt;}
._5_c00441{width:4.145920pt;}
._6_c00441{width:5.426432pt;}
._b_c00441{width:6.769920pt;}
._0_c00441{width:7.819520pt;}
._4_c00441{width:8.871604pt;}
._f_c00441{width:11.456000pt;}
._c_c00441{width:13.568000pt;}
._d_c00441{width:15.104000pt;}
._e_c00441{width:20.736000pt;}
.fs7_c00441{font-size:32.000000pt;}
.fs5_c00441{font-size:37.120000pt;}
.fs6_c00441{font-size:49.920000pt;}
.fs2_c00441{font-size:52.480000pt;}
.fs8_c00441{font-size:53.333333pt;}
.fs3_c00441{font-size:54.095146pt;}
.fs4_c00441{font-size:57.600000pt;}
.fs0_c00441{font-size:64.000000pt;}
.fs1_c00441{font-size:65.969690pt;}
.y0_c00441{bottom:0.000000pt;}
.y39_c00441{bottom:2.773333pt;}
.y38_c00441{bottom:30.884071pt;}
.y1_c00441{bottom:48.000000pt;}
.y37_c00441{bottom:54.760000pt;}
.y36_c00441{bottom:70.120000pt;}
.y35_c00441{bottom:80.356480pt;}
.y34_c00441{bottom:101.160000pt;}
.y32_c00441{bottom:111.398080pt;}
.y33_c00441{bottom:111.400000pt;}
.y31_c00441{bottom:127.076480pt;}
.y30_c00441{bottom:147.880000pt;}
.y2f_c00441{bottom:163.560000pt;}
.y2e_c00441{bottom:173.800000pt;}
.y2d_c00441{bottom:179.240000pt;}
.y2c_c00441{bottom:202.920000pt;}
.y2b_c00441{bottom:223.400000pt;}
.y2a_c00441{bottom:255.400000pt;}
.y29_c00441{bottom:274.280000pt;}
.y28_c00441{bottom:292.840000pt;}
.y27_c00441{bottom:324.840000pt;}
.y26_c00441{bottom:356.840000pt;}
.y25_c00441{bottom:388.840000pt;}
.y24_c00441{bottom:407.400000pt;}
.y23_c00441{bottom:426.280000pt;}
.y22_c00441{bottom:444.840000pt;}
.y20_c00441{bottom:463.400000pt;}
.y21_c00441{bottom:470.120000pt;}
.y1f_c00441{bottom:482.280000pt;}
.y1e_c00441{bottom:500.840000pt;}
.y1d_c00441{bottom:532.840000pt;}
.y1c_c00441{bottom:551.720000pt;}
.y1b_c00441{bottom:570.280000pt;}
.y1a_c00441{bottom:588.840000pt;}
.y19_c00441{bottom:620.840000pt;}
.y18_c00441{bottom:646.117760pt;}
.y17_c00441{bottom:661.481280pt;}
.y16_c00441{bottom:677.159680pt;}
.y15_c00441{bottom:692.838080pt;}
.y14_c00441{bottom:708.201600pt;}
.y13_c00441{bottom:723.880000pt;}
.y12_c00441{bottom:745.960000pt;}
.y11_c00441{bottom:761.640000pt;}
.y10_c00441{bottom:761.641600pt;}
.ye_c00441{bottom:777.316347pt;}
.yf_c00441{bottom:777.320000pt;}
.yd_c00441{bottom:792.679867pt;}
.yc_c00441{bottom:815.080000pt;}
.yb_c00441{bottom:838.760000pt;}
.ya_c00441{bottom:854.439040pt;}
.y8_c00441{bottom:876.515520pt;}
.y9_c00441{bottom:876.520000pt;}
.y7_c00441{bottom:900.840000pt;}
.y6_c00441{bottom:900.841600pt;}
.y5_c00441{bottom:916.520000pt;}
.y4_c00441{bottom:939.240000pt;}
.y3_c00441{bottom:964.520000pt;}
.y2_c00441{bottom:1011.880000pt;}
.hc_c00441{height:17.116093pt;}
.hb_c00441{height:28.992000pt;}
.ha_c00441{height:33.630720pt;}
.h7_c00441{height:34.978125pt;}
.h6_c00441{height:41.761453pt;}
.h5_c00441{height:47.546880pt;}
.hd_c00441{height:50.346667pt;}
.h4_c00441{height:50.928601pt;}
.h8_c00441{height:52.185600pt;}
.h3_c00441{height:57.984000pt;}
.h9_c00441{height:60.510720pt;}
.h2_c00441{height:1067.880000pt;}
.h0_c00441{height:1122.520000pt;}
.h1_c00441{height:1122.666667pt;}
.w3_c00441{width:22.240000pt;}
.w2_c00441{width:767.960000pt;}
.w0_c00441{width:793.720000pt;}
.w1_c00441{width:794.000000pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:12.880000pt;}
.x2_c00441{left:100.480133pt;}
.x36_c00441{left:113.082400pt;}
.x2c_c00441{left:118.083067pt;}
.x28_c00441{left:125.982400pt;}
.x1c_c00441{left:130.865200pt;}
.x6_c00441{left:135.054000pt;}
.x3_c00441{left:143.583333pt;}
.x25_c00441{left:147.158533pt;}
.x37_c00441{left:173.120400pt;}
.x7_c00441{left:192.587200pt;}
.x8_c00441{left:195.920533pt;}
.x2d_c00441{left:200.640000pt;}
.x4_c00441{left:210.654267pt;}
.x32_c00441{left:214.270133pt;}
.x9_c00441{left:217.148800pt;}
.xa_c00441{left:220.482133pt;}
.x11_c00441{left:235.302133pt;}
.xb_c00441{left:236.523467pt;}
.x12_c00441{left:238.635467pt;}
.xc_c00441{left:239.856800pt;}
.xd_c00441{left:245.657600pt;}
.x38_c00441{left:259.794933pt;}
.x39_c00441{left:263.501333pt;}
.x1d_c00441{left:278.233067pt;}
.x5_c00441{left:289.486267pt;}
.x13_c00441{left:300.859333pt;}
.x14_c00441{left:304.192667pt;}
.x15_c00441{left:316.045200pt;}
.x16_c00441{left:319.378533pt;}
.x26_c00441{left:325.377600pt;}
.x30_c00441{left:347.774667pt;}
.x17_c00441{left:357.897200pt;}
.x27_c00441{left:363.896800pt;}
.x31_c00441{left:386.894267pt;}
.x20_c00441{left:396.593067pt;}
.x18_c00441{left:414.188533pt;}
.x21_c00441{left:423.799467pt;}
.x29_c00441{left:427.265600pt;}
.x22_c00441{left:454.752000pt;}
.x19_c00441{left:479.359333pt;}
.x23_c00441{left:481.958267pt;}
.x1a_c00441{left:486.772133pt;}
.xe_c00441{left:491.361600pt;}
.x2a_c00441{left:498.368400pt;}
.x2b_c00441{left:503.912133pt;}
.xf_c00441{left:520.253867pt;}
.x2e_c00441{left:521.994400pt;}
.x1b_c00441{left:525.291333pt;}
.x1e_c00441{left:541.154933pt;}
.x1f_c00441{left:559.634400pt;}
.x10_c00441{left:568.880800pt;}
.x33_c00441{left:585.572933pt;}
.x35_c00441{left:590.319067pt;}
.x2f_c00441{left:599.321333pt;}
.x34_c00441{left:625.556000pt;}
.x24_c00441{left:641.840533pt;}
.x3a_c00441{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_247e29b6f97199ab420aa886.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_eb8b3fff7d757ab8234c1358.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;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:ff3_c00442;src:url('chunks/assets/font_74e3e5eb534beb916fda706b.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00442{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00442{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls3_c00442{letter-spacing:0.000000px;}
.ls5_c00442{letter-spacing:0.202464px;}
.ls0_c00442{letter-spacing:0.280080px;}
.ls8_c00442{letter-spacing:0.362304px;}
.ls4_c00442{letter-spacing:0.399600px;}
.ls7_c00442{letter-spacing:0.516816px;}
.ls6_c00442{letter-spacing:0.532722px;}
.ls1_c00442{letter-spacing:5.976000px;}
.ls2_c00442{letter-spacing:6.159920px;}
.sc__c00442{text-shadow:none;}
.sc1_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00442{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc1_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00442{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00442{word-spacing:-15.211440px;}
.ws1_c00442{word-spacing:-14.811840px;}
.ws2_c00442{word-spacing:0.000000px;}
._1_c00442{margin-left:-1.065600px;}
._0_c00442{width:1.077720px;}
.fc1_c00442{color:transparent;}
.fc0_c00442{color:rgb(0,0,0);}
.fs2_c00442{font-size:53.280000px;}
.fs3_c00442{font-size:54.919767px;}
.fs4_c00442{font-size:60.000000px;}
.fs0_c00442{font-size:72.000000px;}
.fs1_c00442{font-size:74.215901px;}
.y0_c00442{bottom:0.000000px;}
.y13_c00442{bottom:3.120000px;}
.y11_c00442{bottom:14.400000px;}
.y12_c00442{bottom:34.744580px;}
.y1_c00442{bottom:54.000000px;}
.yf_c00442{bottom:610.965000px;}
.ye_c00442{bottom:646.965000px;}
.y10_c00442{bottom:721.485000px;}
.yd_c00442{bottom:725.085000px;}
.yc_c00442{bottom:761.085000px;}
.yb_c00442{bottom:797.085000px;}
.ya_c00442{bottom:833.085000px;}
.y9_c00442{bottom:869.085000px;}
.y8_c00442{bottom:905.085000px;}
.y7_c00442{bottom:941.085000px;}
.y6_c00442{bottom:977.085000px;}
.y5_c00442{bottom:1013.085000px;}
.y4_c00442{bottom:1049.085000px;}
.y3_c00442{bottom:1085.085000px;}
.y2_c00442{bottom:1138.365000px;}
.h8_c00442{height:19.255605px;}
.h5_c00442{height:27.000000px;}
.h7_c00442{height:42.398060px;}
.h6_c00442{height:48.271680px;}
.h9_c00442{height:56.640000px;}
.h4_c00442{height:57.294676px;}
.h3_c00442{height:65.232000px;}
.h2_c00442{height:1201.365000px;}
.h0_c00442{height:1262.835000px;}
.h1_c00442{height:1263.000000px;}
.w4_c00442{width:25.020000px;}
.w3_c00442{width:629.280000px;}
.w2_c00442{width:863.955000px;}
.w0_c00442{width:892.935000px;}
.w1_c00442{width:893.250000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:14.490000px;}
.x6_c00442{left:95.419500px;}
.x2_c00442{left:113.040150px;}
.x5_c00442{left:123.570000px;}
.x3_c00442{left:161.531250px;}
.x4_c00442{left:236.986050px;}
.x7_c00442{left:321.243150px;}
.x8_c00442{left:351.225450px;}
.x9_c00442{left:759.914612px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls3_c00442{letter-spacing:0.000000pt;}
.ls5_c00442{letter-spacing:0.179968pt;}
.ls0_c00442{letter-spacing:0.248960pt;}
.ls8_c00442{letter-spacing:0.322048pt;}
.ls4_c00442{letter-spacing:0.355200pt;}
.ls7_c00442{letter-spacing:0.459392pt;}
.ls6_c00442{letter-spacing:0.473530pt;}
.ls1_c00442{letter-spacing:5.312000pt;}
.ls2_c00442{letter-spacing:5.475484pt;}
.ws0_c00442{word-spacing:-13.521280pt;}
.ws1_c00442{word-spacing:-13.166080pt;}
.ws2_c00442{word-spacing:0.000000pt;}
._1_c00442{margin-left:-0.947200pt;}
._0_c00442{width:0.957973pt;}
.fs2_c00442{font-size:47.360000pt;}
.fs3_c00442{font-size:48.817571pt;}
.fs4_c00442{font-size:53.333333pt;}
.fs0_c00442{font-size:64.000000pt;}
.fs1_c00442{font-size:65.969690pt;}
.y0_c00442{bottom:0.000000pt;}
.y13_c00442{bottom:2.773333pt;}
.y11_c00442{bottom:12.800000pt;}
.y12_c00442{bottom:30.884071pt;}
.y1_c00442{bottom:48.000000pt;}
.yf_c00442{bottom:543.080000pt;}
.ye_c00442{bottom:575.080000pt;}
.y10_c00442{bottom:641.320000pt;}
.yd_c00442{bottom:644.520000pt;}
.yc_c00442{bottom:676.520000pt;}
.yb_c00442{bottom:708.520000pt;}
.ya_c00442{bottom:740.520000pt;}
.y9_c00442{bottom:772.520000pt;}
.y8_c00442{bottom:804.520000pt;}
.y7_c00442{bottom:836.520000pt;}
.y6_c00442{bottom:868.520000pt;}
.y5_c00442{bottom:900.520000pt;}
.y4_c00442{bottom:932.520000pt;}
.y3_c00442{bottom:964.520000pt;}
.y2_c00442{bottom:1011.880000pt;}
.h8_c00442{height:17.116093pt;}
.h5_c00442{height:24.000000pt;}
.h7_c00442{height:37.687165pt;}
.h6_c00442{height:42.908160pt;}
.h9_c00442{height:50.346667pt;}
.h4_c00442{height:50.928601pt;}
.h3_c00442{height:57.984000pt;}
.h2_c00442{height:1067.880000pt;}
.h0_c00442{height:1122.520000pt;}
.h1_c00442{height:1122.666667pt;}
.w4_c00442{width:22.240000pt;}
.w3_c00442{width:559.360000pt;}
.w2_c00442{width:767.960000pt;}
.w0_c00442{width:793.720000pt;}
.w1_c00442{width:794.000000pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:12.880000pt;}
.x6_c00442{left:84.817333pt;}
.x2_c00442{left:100.480133pt;}
.x5_c00442{left:109.840000pt;}
.x3_c00442{left:143.583333pt;}
.x4_c00442{left:210.654267pt;}
.x7_c00442{left:285.549467pt;}
.x8_c00442{left:312.200400pt;}
.x9_c00442{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_917812c2a0060a0bc24708d0.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_7094235b692bf01aaca5b0c3.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;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:ff3_c00443;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00443;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00443;src:url('chunks/assets/font_94ebcf710eb7ce262e8e3516.woff2')format("woff");}.ff5_c00443{font-family:ff5_c00443;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00443{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00443{vertical-align:-27.360000px;}
.v0_c00443{vertical-align:0.000000px;}
.v1_c00443{vertical-align:30.240000px;}
.ls8_c00443{letter-spacing:0.000000px;}
.ls5_c00443{letter-spacing:0.066120px;}
.lsc_c00443{letter-spacing:0.330480px;}
.ls0_c00443{letter-spacing:0.401040px;}
.ls4_c00443{letter-spacing:0.471840px;}
.ls6_c00443{letter-spacing:0.648000px;}
.lsb_c00443{letter-spacing:0.667440px;}
.ls9_c00443{letter-spacing:5.430672px;}
.ls7_c00443{letter-spacing:5.976000px;}
.ls2_c00443{letter-spacing:5.980200px;}
.ls1_c00443{letter-spacing:6.032400px;}
.lsa_c00443{letter-spacing:10.497600px;}
.ls3_c00443{letter-spacing:54.864000px;}
.sc__c00443{text-shadow:none;}
.sc1_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00443{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc1_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00443{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00443{word-spacing:-21.043152px;}
.ws1_c00443{word-spacing:0.000000px;}
._5_c00443{margin-left:-10.562400px;}
._4_c00443{margin-left:-9.331200px;}
._1_c00443{margin-left:-1.179360px;}
._7_c00443{width:1.179360px;}
._3_c00443{width:4.320000px;}
._6_c00443{width:7.063200px;}
._0_c00443{width:8.784000px;}
._2_c00443{width:15.768000px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs4_c00443{font-size:38.880000px;}
.fs1_c00443{font-size:41.760000px;}
.fs2_c00443{font-size:56.160000px;}
.fs6_c00443{font-size:60.000000px;}
.fs5_c00443{font-size:64.800000px;}
.fs0_c00443{font-size:72.000000px;}
.fs3_c00443{font-size:74.215901px;}
.y0_c00443{bottom:0.000000px;}
.y20_c00443{bottom:3.120000px;}
.y1f_c00443{bottom:34.744580px;}
.y1_c00443{bottom:54.000000px;}
.y1e_c00443{bottom:62.325000px;}
.y1d_c00443{bottom:74.921400px;}
.y1c_c00443{bottom:94.005000px;}
.y1b_c00443{bottom:120.285000px;}
.y1a_c00443{bottom:147.645000px;}
.y19_c00443{bottom:348.525000px;}
.y18_c00443{bottom:384.525000px;}
.y17_c00443{bottom:420.525000px;}
.y16_c00443{bottom:456.525000px;}
.y15_c00443{bottom:477.405000px;}
.y14_c00443{bottom:498.285000px;}
.y13_c00443{bottom:534.285000px;}
.y12_c00443{bottom:570.285000px;}
.y11_c00443{bottom:606.285000px;}
.y10_c00443{bottom:627.525000px;}
.yf_c00443{bottom:663.525000px;}
.ye_c00443{bottom:699.525000px;}
.yd_c00443{bottom:735.525000px;}
.yc_c00443{bottom:771.525000px;}
.yb_c00443{bottom:807.525000px;}
.ya_c00443{bottom:843.525000px;}
.y9_c00443{bottom:879.525000px;}
.y8_c00443{bottom:915.525000px;}
.y7_c00443{bottom:951.525000px;}
.y6_c00443{bottom:972.405000px;}
.y5_c00443{bottom:1008.405000px;}
.y4_c00443{bottom:1044.405000px;}
.y3_c00443{bottom:1082.925000px;}
.y2_c00443{bottom:1138.365000px;}
.h8_c00443{height:19.255605px;}
.h6_c00443{height:35.225280px;}
.h9_c00443{height:56.640000px;}
.h5_c00443{height:57.294676px;}
.h7_c00443{height:58.708800px;}
.h3_c00443{height:65.232000px;}
.h4_c00443{height:68.074560px;}
.h2_c00443{height:1201.365000px;}
.h0_c00443{height:1262.835000px;}
.h1_c00443{height:1263.000000px;}
.w3_c00443{width:25.020000px;}
.w2_c00443{width:863.955000px;}
.w0_c00443{width:892.935000px;}
.w1_c00443{width:893.250000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:14.490000px;}
.x2_c00443{left:113.040150px;}
.x5_c00443{left:140.037600px;}
.x4_c00443{left:270.069600px;}
.x3_c00443{left:413.967000px;}
.x6_c00443{left:759.914612px;}
@media print{
.v2_c00443{vertical-align:-24.320000pt;}
.v0_c00443{vertical-align:0.000000pt;}
.v1_c00443{vertical-align:26.880000pt;}
.ls8_c00443{letter-spacing:0.000000pt;}
.ls5_c00443{letter-spacing:0.058773pt;}
.lsc_c00443{letter-spacing:0.293760pt;}
.ls0_c00443{letter-spacing:0.356480pt;}
.ls4_c00443{letter-spacing:0.419413pt;}
.ls6_c00443{letter-spacing:0.576000pt;}
.lsb_c00443{letter-spacing:0.593280pt;}
.ls9_c00443{letter-spacing:4.827264pt;}
.ls7_c00443{letter-spacing:5.312000pt;}
.ls2_c00443{letter-spacing:5.315733pt;}
.ls1_c00443{letter-spacing:5.362133pt;}
.lsa_c00443{letter-spacing:9.331200pt;}
.ls3_c00443{letter-spacing:48.768000pt;}
.ws0_c00443{word-spacing:-18.705024pt;}
.ws1_c00443{word-spacing:0.000000pt;}
._5_c00443{margin-left:-9.388800pt;}
._4_c00443{margin-left:-8.294400pt;}
._1_c00443{margin-left:-1.048320pt;}
._7_c00443{width:1.048320pt;}
._3_c00443{width:3.840000pt;}
._6_c00443{width:6.278400pt;}
._0_c00443{width:7.808000pt;}
._2_c00443{width:14.016000pt;}
.fs4_c00443{font-size:34.560000pt;}
.fs1_c00443{font-size:37.120000pt;}
.fs2_c00443{font-size:49.920000pt;}
.fs6_c00443{font-size:53.333333pt;}
.fs5_c00443{font-size:57.600000pt;}
.fs0_c00443{font-size:64.000000pt;}
.fs3_c00443{font-size:65.969690pt;}
.y0_c00443{bottom:0.000000pt;}
.y20_c00443{bottom:2.773333pt;}
.y1f_c00443{bottom:30.884071pt;}
.y1_c00443{bottom:48.000000pt;}
.y1e_c00443{bottom:55.400000pt;}
.y1d_c00443{bottom:66.596800pt;}
.y1c_c00443{bottom:83.560000pt;}
.y1b_c00443{bottom:106.920000pt;}
.y1a_c00443{bottom:131.240000pt;}
.y19_c00443{bottom:309.800000pt;}
.y18_c00443{bottom:341.800000pt;}
.y17_c00443{bottom:373.800000pt;}
.y16_c00443{bottom:405.800000pt;}
.y15_c00443{bottom:424.360000pt;}
.y14_c00443{bottom:442.920000pt;}
.y13_c00443{bottom:474.920000pt;}
.y12_c00443{bottom:506.920000pt;}
.y11_c00443{bottom:538.920000pt;}
.y10_c00443{bottom:557.800000pt;}
.yf_c00443{bottom:589.800000pt;}
.ye_c00443{bottom:621.800000pt;}
.yd_c00443{bottom:653.800000pt;}
.yc_c00443{bottom:685.800000pt;}
.yb_c00443{bottom:717.800000pt;}
.ya_c00443{bottom:749.800000pt;}
.y9_c00443{bottom:781.800000pt;}
.y8_c00443{bottom:813.800000pt;}
.y7_c00443{bottom:845.800000pt;}
.y6_c00443{bottom:864.360000pt;}
.y5_c00443{bottom:896.360000pt;}
.y4_c00443{bottom:928.360000pt;}
.y3_c00443{bottom:962.600000pt;}
.y2_c00443{bottom:1011.880000pt;}
.h8_c00443{height:17.116093pt;}
.h6_c00443{height:31.311360pt;}
.h9_c00443{height:50.346667pt;}
.h5_c00443{height:50.928601pt;}
.h7_c00443{height:52.185600pt;}
.h3_c00443{height:57.984000pt;}
.h4_c00443{height:60.510720pt;}
.h2_c00443{height:1067.880000pt;}
.h0_c00443{height:1122.520000pt;}
.h1_c00443{height:1122.666667pt;}
.w3_c00443{width:22.240000pt;}
.w2_c00443{width:767.960000pt;}
.w0_c00443{width:793.720000pt;}
.w1_c00443{width:794.000000pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:12.880000pt;}
.x2_c00443{left:100.480133pt;}
.x5_c00443{left:124.477867pt;}
.x4_c00443{left:240.061867pt;}
.x3_c00443{left:367.970667pt;}
.x6_c00443{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c0b3e5fb73e3c4f9f138f5a.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_de035341b4b83ece821b0261.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;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:ff3_c00444;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_65e4e69d7d78501fe86cb057.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00444;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00444;src:url('chunks/assets/font_916bfe8bfab89a9b1aa9615f.woff2')format("woff");}.ff6_c00444{font-family:ff6_c00444;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00444;src:url('chunks/assets/font_6722362cb6c6248aa872c97b.woff2')format("woff");}.ff7_c00444{font-family:ff7_c00444;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00444;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff8_c00444{font-family:ff8_c00444;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00444;src:url('chunks/assets/font_fce711dca136bd8d035223d5.woff2')format("woff");}.ff9_c00444{font-family:ff9_c00444;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:ffa_c00444;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ffa_c00444{font-family:ffa_c00444;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00444;src:url('chunks/assets/font_f03976665c0c66527e0080de.woff2')format("woff");}.ffb_c00444{font-family:ffb_c00444;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00444{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00444{vertical-align:-27.360000px;}
.v0_c00444{vertical-align:0.000000px;}
.v1_c00444{vertical-align:30.240000px;}
.ls1c_c00444{letter-spacing:0.000000px;}
.ls1a_c00444{letter-spacing:0.066120px;}
.ls13_c00444{letter-spacing:0.242064px;}
.ls1f_c00444{letter-spacing:0.265680px;}
.ls15_c00444{letter-spacing:0.295200px;}
.ls8_c00444{letter-spacing:0.304285px;}
.ls27_c00444{letter-spacing:0.318816px;}
.ls21_c00444{letter-spacing:0.328628px;}
.ls26_c00444{letter-spacing:0.348336px;}
.ls9_c00444{letter-spacing:0.354240px;}
.lsf_c00444{letter-spacing:0.360144px;}
.ls31_c00444{letter-spacing:0.401760px;}
.ls7_c00444{letter-spacing:0.413828px;}
.ls5_c00444{letter-spacing:0.462513px;}
.ls6_c00444{letter-spacing:0.468599px;}
.ls4_c00444{letter-spacing:0.486856px;}
.ls2_c00444{letter-spacing:0.492942px;}
.ls16_c00444{letter-spacing:0.531360px;}
.ls1d_c00444{letter-spacing:0.584496px;}
.ls20_c00444{letter-spacing:0.602485px;}
.ls2f_c00444{letter-spacing:0.667440px;}
.ls2a_c00444{letter-spacing:0.690768px;}
.ls3_c00444{letter-spacing:0.712027px;}
.ls33_c00444{letter-spacing:0.732240px;}
.ls17_c00444{letter-spacing:0.744840px;}
.ls30_c00444{letter-spacing:0.754776px;}
.ls22_c00444{letter-spacing:0.797040px;}
.ls1b_c00444{letter-spacing:0.895044px;}
.ls24_c00444{letter-spacing:0.962352px;}
.lsa_c00444{letter-spacing:1.659024px;}
.ls32_c00444{letter-spacing:2.339280px;}
.ls2e_c00444{letter-spacing:3.304800px;}
.ls1e_c00444{letter-spacing:4.886820px;}
.ls14_c00444{letter-spacing:5.242752px;}
.lsb_c00444{letter-spacing:5.301792px;}
.ls2d_c00444{letter-spacing:5.335200px;}
.ls10_c00444{letter-spacing:5.364720px;}
.lsc_c00444{letter-spacing:5.408064px;}
.ls2c_c00444{letter-spacing:5.430672px;}
.ls12_c00444{letter-spacing:5.431680px;}
.ls23_c00444{letter-spacing:5.461200px;}
.ls29_c00444{letter-spacing:5.673744px;}
.ls11_c00444{letter-spacing:5.975400px;}
.ls0_c00444{letter-spacing:5.976000px;}
.ls19_c00444{letter-spacing:5.992800px;}
.ls1_c00444{letter-spacing:6.048000px;}
.ls25_c00444{letter-spacing:6.647904px;}
.ls2b_c00444{letter-spacing:8.956368px;}
.ls18_c00444{letter-spacing:10.656000px;}
.lsd_c00444{letter-spacing:17.593920px;}
.ls28_c00444{letter-spacing:17.605728px;}
.lse_c00444{letter-spacing:17.611632px;}
.sc__c00444{text-shadow:none;}
.sc1_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00444{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc1_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00444{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00444{word-spacing:-21.874320px;}
.ws2_c00444{word-spacing:-21.714912px;}
.ws5_c00444{word-spacing:-21.043152px;}
.ws6_c00444{word-spacing:-20.947680px;}
.ws7_c00444{word-spacing:-19.463862px;}
.ws8_c00444{word-spacing:-18.746640px;}
.ws0_c00444{word-spacing:-17.630284px;}
.ws4_c00444{word-spacing:-17.520742px;}
.ws1_c00444{word-spacing:-17.411199px;}
.ws9_c00444{word-spacing:0.000000px;}
._7_c00444{margin-left:-12.221280px;}
._b_c00444{margin-left:-9.328320px;}
._a_c00444{margin-left:-8.206560px;}
._2_c00444{margin-left:-5.233705px;}
._1_c00444{margin-left:-4.199136px;}
._6_c00444{margin-left:-2.243520px;}
._5_c00444{margin-left:-1.003680px;}
._3_c00444{width:1.357920px;}
._d_c00444{width:2.656800px;}
._0_c00444{width:3.837600px;}
._4_c00444{width:5.018400px;}
._9_c00444{width:7.734240px;}
._c_c00444{width:8.885520px;}
._11_c00444{width:10.143936px;}
._e_c00444{width:11.168064px;}
._8_c00444{width:12.303936px;}
._f_c00444{width:13.896000px;}
._10_c00444{width:14.976000px;}
._12_c00444{width:37.008000px;}
.fc0_c00444{color:rgb(0,0,0);}
.fs6_c00444{font-size:38.880000px;}
.fs5_c00444{font-size:41.760000px;}
.fs4_c00444{font-size:56.160000px;}
.fs2_c00444{font-size:59.040000px;}
.fs9_c00444{font-size:60.000000px;}
.fs3_c00444{font-size:60.857039px;}
.fs7_c00444{font-size:64.800000px;}
.fs8_c00444{font-size:66.794311px;}
.fs0_c00444{font-size:72.000000px;}
.fs1_c00444{font-size:74.215901px;}
.y0_c00444{bottom:0.000000px;}
.y30_c00444{bottom:3.120000px;}
.y2f_c00444{bottom:34.744580px;}
.y1_c00444{bottom:54.000000px;}
.y2e_c00444{bottom:55.485000px;}
.y2c_c00444{bottom:74.921400px;}
.y2d_c00444{bottom:74.925000px;}
.y2b_c00444{bottom:100.845000px;}
.y2a_c00444{bottom:128.205000px;}
.y29_c00444{bottom:283.725000px;}
.y28_c00444{bottom:319.725000px;}
.y27_c00444{bottom:355.725000px;}
.y26_c00444{bottom:391.725000px;}
.y25_c00444{bottom:412.605000px;}
.y24_c00444{bottom:433.845000px;}
.y23_c00444{bottom:469.845000px;}
.y22_c00444{bottom:492.885000px;}
.y21_c00444{bottom:515.205000px;}
.y20_c00444{bottom:536.085000px;}
.y1f_c00444{bottom:556.965000px;}
.y1e_c00444{bottom:592.965000px;}
.y1d_c00444{bottom:614.205000px;}
.y1c_c00444{bottom:635.085000px;}
.y1b_c00444{bottom:671.085000px;}
.y1a_c00444{bottom:707.085000px;}
.y19_c00444{bottom:735.166800px;}
.y18_c00444{bottom:752.805000px;}
.y17_c00444{bottom:777.645000px;}
.y16_c00444{bottom:777.646800px;}
.y15_c00444{bottom:795.285000px;}
.y14_c00444{bottom:795.286800px;}
.y12_c00444{bottom:812.923770px;}
.y13_c00444{bottom:812.925000px;}
.y11_c00444{bottom:837.764850px;}
.y10_c00444{bottom:862.965000px;}
.yf_c00444{bottom:862.971690px;}
.ye_c00444{bottom:882.763560px;}
.yd_c00444{bottom:901.125000px;}
.yc_c00444{bottom:901.125720px;}
.yb_c00444{bottom:928.845000px;}
.ya_c00444{bottom:928.851840px;}
.y9_c00444{bottom:948.645000px;}
.y8_c00444{bottom:948.646800px;}
.y7_c00444{bottom:966.285000px;}
.y6_c00444{bottom:991.845000px;}
.y5_c00444{bottom:1020.645000px;}
.y4_c00444{bottom:1049.445000px;}
.y3_c00444{bottom:1085.085000px;}
.y2_c00444{bottom:1138.365000px;}
.he_c00444{height:19.255605px;}
.hb_c00444{height:35.225280px;}
.h8_c00444{height:39.350391px;}
.h7_c00444{height:46.981634px;}
.h5_c00444{height:47.988281px;}
.hd_c00444{height:51.565208px;}
.h6_c00444{height:53.490240px;}
.hf_c00444{height:56.640000px;}
.h4_c00444{height:57.294676px;}
.h9_c00444{height:57.605160px;}
.hc_c00444{height:58.708800px;}
.h3_c00444{height:65.232000px;}
.ha_c00444{height:68.074560px;}
.h2_c00444{height:1201.365000px;}
.h0_c00444{height:1262.835000px;}
.h1_c00444{height:1263.000000px;}
.w3_c00444{width:25.020000px;}
.w2_c00444{width:863.955000px;}
.w0_c00444{width:892.935000px;}
.w1_c00444{width:893.250000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:14.490000px;}
.x2_c00444{left:113.040150px;}
.x47_c00444{left:118.534500px;}
.x3d_c00444{left:133.034550px;}
.x48_c00444{left:139.604700px;}
.xc_c00444{left:149.462400px;}
.x29_c00444{left:156.360000px;}
.x39_c00444{left:179.757150px;}
.xd_c00444{left:183.071100px;}
.xe_c00444{left:186.821100px;}
.x2e_c00444{left:190.092750px;}
.x42_c00444{left:193.030950px;}
.x3a_c00444{left:198.911850px;}
.x2f_c00444{left:209.247450px;}
.xf_c00444{left:224.614050px;}
.x45_c00444{left:259.071150px;}
.x18_c00444{left:268.210350px;}
.x3_c00444{left:283.140000px;}
.x19_c00444{left:315.732450px;}
.x1a_c00444{left:319.482450px;}
.x46_c00444{left:339.061800px;}
.x49_c00444{left:342.477900px;}
.x4_c00444{left:345.130650px;}
.x5_c00444{left:349.630650px;}
.x4a_c00444{left:369.949950px;}
.x35_c00444{left:383.314800px;}
.x1b_c00444{left:391.223100px;}
.x10_c00444{left:399.094800px;}
.x6_c00444{left:404.637750px;}
.x36_c00444{left:408.289350px;}
.x7_c00444{left:413.637750px;}
.x11_c00444{left:419.884350px;}
.x1c_c00444{left:424.571100px;}
.x12_c00444{left:429.342750px;}
.x1d_c00444{left:432.944400px;}
.x2a_c00444{left:448.725600px;}
.x8_c00444{left:463.622700px;}
.x9_c00444{left:468.122700px;}
.x2b_c00444{left:473.700000px;}
.x1e_c00444{left:476.264250px;}
.x37_c00444{left:481.494450px;}
.x13_c00444{left:492.095250px;}
.x3e_c00444{left:502.786800px;}
.x31_c00444{left:504.118650px;}
.x38_c00444{left:506.469000px;}
.x32_c00444{left:524.908050px;}
.xa_c00444{left:528.133350px;}
.xb_c00444{left:532.633350px;}
.x14_c00444{left:546.860550px;}
.x1f_c00444{left:553.912050px;}
.x30_c00444{left:556.246650px;}
.x4b_c00444{left:567.811950px;}
.x3b_c00444{left:570.789900px;}
.x3f_c00444{left:589.779450px;}
.x4c_c00444{left:595.284000px;}
.x40_c00444{left:603.315000px;}
.x15_c00444{left:608.803050px;}
.x16_c00444{left:612.552900px;}
.x3c_c00444{left:614.124000px;}
.x20_c00444{left:618.099600px;}
.x21_c00444{left:637.254300px;}
.x43_c00444{left:643.709550px;}
.x22_c00444{left:645.627300px;}
.x17_c00444{left:650.345850px;}
.x41_c00444{left:656.305950px;}
.x33_c00444{left:670.782600px;}
.x34_c00444{left:676.303650px;}
.x2c_c00444{left:697.211850px;}
.x23_c00444{left:706.516800px;}
.x24_c00444{left:710.266800px;}
.x2d_c00444{left:722.186250px;}
.x25_c00444{left:729.488550px;}
.x26_c00444{left:733.238550px;}
.x44_c00444{left:745.386150px;}
.x27_c00444{left:746.640000px;}
.x28_c00444{left:750.390000px;}
.x4d_c00444{left:759.914612px;}
@media print{
.v2_c00444{vertical-align:-24.320000pt;}
.v0_c00444{vertical-align:0.000000pt;}
.v1_c00444{vertical-align:26.880000pt;}
.ls1c_c00444{letter-spacing:0.000000pt;}
.ls1a_c00444{letter-spacing:0.058773pt;}
.ls13_c00444{letter-spacing:0.215168pt;}
.ls1f_c00444{letter-spacing:0.236160pt;}
.ls15_c00444{letter-spacing:0.262400pt;}
.ls8_c00444{letter-spacing:0.270476pt;}
.ls27_c00444{letter-spacing:0.283392pt;}
.ls21_c00444{letter-spacing:0.292114pt;}
.ls26_c00444{letter-spacing:0.309632pt;}
.ls9_c00444{letter-spacing:0.314880pt;}
.lsf_c00444{letter-spacing:0.320128pt;}
.ls31_c00444{letter-spacing:0.357120pt;}
.ls7_c00444{letter-spacing:0.367847pt;}
.ls5_c00444{letter-spacing:0.411123pt;}
.ls6_c00444{letter-spacing:0.416533pt;}
.ls4_c00444{letter-spacing:0.432761pt;}
.ls2_c00444{letter-spacing:0.438171pt;}
.ls16_c00444{letter-spacing:0.472320pt;}
.ls1d_c00444{letter-spacing:0.519552pt;}
.ls20_c00444{letter-spacing:0.535542pt;}
.ls2f_c00444{letter-spacing:0.593280pt;}
.ls2a_c00444{letter-spacing:0.614016pt;}
.ls3_c00444{letter-spacing:0.632913pt;}
.ls33_c00444{letter-spacing:0.650880pt;}
.ls17_c00444{letter-spacing:0.662080pt;}
.ls30_c00444{letter-spacing:0.670912pt;}
.ls22_c00444{letter-spacing:0.708480pt;}
.ls1b_c00444{letter-spacing:0.795594pt;}
.ls24_c00444{letter-spacing:0.855424pt;}
.lsa_c00444{letter-spacing:1.474688pt;}
.ls32_c00444{letter-spacing:2.079360pt;}
.ls2e_c00444{letter-spacing:2.937600pt;}
.ls1e_c00444{letter-spacing:4.343840pt;}
.ls14_c00444{letter-spacing:4.660224pt;}
.lsb_c00444{letter-spacing:4.712704pt;}
.ls2d_c00444{letter-spacing:4.742400pt;}
.ls10_c00444{letter-spacing:4.768640pt;}
.lsc_c00444{letter-spacing:4.807168pt;}
.ls2c_c00444{letter-spacing:4.827264pt;}
.ls12_c00444{letter-spacing:4.828160pt;}
.ls23_c00444{letter-spacing:4.854400pt;}
.ls29_c00444{letter-spacing:5.043328pt;}
.ls11_c00444{letter-spacing:5.311467pt;}
.ls0_c00444{letter-spacing:5.312000pt;}
.ls19_c00444{letter-spacing:5.326933pt;}
.ls1_c00444{letter-spacing:5.376000pt;}
.ls25_c00444{letter-spacing:5.909248pt;}
.ls2b_c00444{letter-spacing:7.961216pt;}
.ls18_c00444{letter-spacing:9.472000pt;}
.lsd_c00444{letter-spacing:15.639040pt;}
.ls28_c00444{letter-spacing:15.649536pt;}
.lse_c00444{letter-spacing:15.654784pt;}
.ws3_c00444{word-spacing:-19.443840pt;}
.ws2_c00444{word-spacing:-19.302144pt;}
.ws5_c00444{word-spacing:-18.705024pt;}
.ws6_c00444{word-spacing:-18.620160pt;}
.ws7_c00444{word-spacing:-17.301211pt;}
.ws8_c00444{word-spacing:-16.663680pt;}
.ws0_c00444{word-spacing:-15.671364pt;}
.ws4_c00444{word-spacing:-15.573992pt;}
.ws1_c00444{word-spacing:-15.476621pt;}
.ws9_c00444{word-spacing:0.000000pt;}
._7_c00444{margin-left:-10.863360pt;}
._b_c00444{margin-left:-8.291840pt;}
._a_c00444{margin-left:-7.294720pt;}
._2_c00444{margin-left:-4.652183pt;}
._1_c00444{margin-left:-3.732565pt;}
._6_c00444{margin-left:-1.994240pt;}
._5_c00444{margin-left:-0.892160pt;}
._3_c00444{width:1.207040pt;}
._d_c00444{width:2.361600pt;}
._0_c00444{width:3.411200pt;}
._4_c00444{width:4.460800pt;}
._9_c00444{width:6.874880pt;}
._c_c00444{width:7.898240pt;}
._11_c00444{width:9.016832pt;}
._e_c00444{width:9.927168pt;}
._8_c00444{width:10.936832pt;}
._f_c00444{width:12.352000pt;}
._10_c00444{width:13.312000pt;}
._12_c00444{width:32.896000pt;}
.fs6_c00444{font-size:34.560000pt;}
.fs5_c00444{font-size:37.120000pt;}
.fs4_c00444{font-size:49.920000pt;}
.fs2_c00444{font-size:52.480000pt;}
.fs9_c00444{font-size:53.333333pt;}
.fs3_c00444{font-size:54.095146pt;}
.fs7_c00444{font-size:57.600000pt;}
.fs8_c00444{font-size:59.372721pt;}
.fs0_c00444{font-size:64.000000pt;}
.fs1_c00444{font-size:65.969690pt;}
.y0_c00444{bottom:0.000000pt;}
.y30_c00444{bottom:2.773333pt;}
.y2f_c00444{bottom:30.884071pt;}
.y1_c00444{bottom:48.000000pt;}
.y2e_c00444{bottom:49.320000pt;}
.y2c_c00444{bottom:66.596800pt;}
.y2d_c00444{bottom:66.600000pt;}
.y2b_c00444{bottom:89.640000pt;}
.y2a_c00444{bottom:113.960000pt;}
.y29_c00444{bottom:252.200000pt;}
.y28_c00444{bottom:284.200000pt;}
.y27_c00444{bottom:316.200000pt;}
.y26_c00444{bottom:348.200000pt;}
.y25_c00444{bottom:366.760000pt;}
.y24_c00444{bottom:385.640000pt;}
.y23_c00444{bottom:417.640000pt;}
.y22_c00444{bottom:438.120000pt;}
.y21_c00444{bottom:457.960000pt;}
.y20_c00444{bottom:476.520000pt;}
.y1f_c00444{bottom:495.080000pt;}
.y1e_c00444{bottom:527.080000pt;}
.y1d_c00444{bottom:545.960000pt;}
.y1c_c00444{bottom:564.520000pt;}
.y1b_c00444{bottom:596.520000pt;}
.y1a_c00444{bottom:628.520000pt;}
.y19_c00444{bottom:653.481600pt;}
.y18_c00444{bottom:669.160000pt;}
.y17_c00444{bottom:691.240000pt;}
.y16_c00444{bottom:691.241600pt;}
.y15_c00444{bottom:706.920000pt;}
.y14_c00444{bottom:706.921600pt;}
.y12_c00444{bottom:722.598907pt;}
.y13_c00444{bottom:722.600000pt;}
.y11_c00444{bottom:744.679867pt;}
.y10_c00444{bottom:767.080000pt;}
.yf_c00444{bottom:767.085947pt;}
.ye_c00444{bottom:784.678720pt;}
.yd_c00444{bottom:801.000000pt;}
.yc_c00444{bottom:801.000640pt;}
.yb_c00444{bottom:825.640000pt;}
.ya_c00444{bottom:825.646080pt;}
.y9_c00444{bottom:843.240000pt;}
.y8_c00444{bottom:843.241600pt;}
.y7_c00444{bottom:858.920000pt;}
.y6_c00444{bottom:881.640000pt;}
.y5_c00444{bottom:907.240000pt;}
.y4_c00444{bottom:932.840000pt;}
.y3_c00444{bottom:964.520000pt;}
.y2_c00444{bottom:1011.880000pt;}
.he_c00444{height:17.116093pt;}
.hb_c00444{height:31.311360pt;}
.h8_c00444{height:34.978125pt;}
.h7_c00444{height:41.761453pt;}
.h5_c00444{height:42.656250pt;}
.hd_c00444{height:45.835741pt;}
.h6_c00444{height:47.546880pt;}
.hf_c00444{height:50.346667pt;}
.h4_c00444{height:50.928601pt;}
.h9_c00444{height:51.204587pt;}
.hc_c00444{height:52.185600pt;}
.h3_c00444{height:57.984000pt;}
.ha_c00444{height:60.510720pt;}
.h2_c00444{height:1067.880000pt;}
.h0_c00444{height:1122.520000pt;}
.h1_c00444{height:1122.666667pt;}
.w3_c00444{width:22.240000pt;}
.w2_c00444{width:767.960000pt;}
.w0_c00444{width:793.720000pt;}
.w1_c00444{width:794.000000pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:12.880000pt;}
.x2_c00444{left:100.480133pt;}
.x47_c00444{left:105.364000pt;}
.x3d_c00444{left:118.252933pt;}
.x48_c00444{left:124.093067pt;}
.xc_c00444{left:132.855467pt;}
.x29_c00444{left:138.986667pt;}
.x39_c00444{left:159.784133pt;}
.xd_c00444{left:162.729867pt;}
.xe_c00444{left:166.063200pt;}
.x2e_c00444{left:168.971333pt;}
.x42_c00444{left:171.583067pt;}
.x3a_c00444{left:176.810533pt;}
.x2f_c00444{left:185.997733pt;}
.xf_c00444{left:199.656933pt;}
.x45_c00444{left:230.285467pt;}
.x18_c00444{left:238.409200pt;}
.x3_c00444{left:251.680000pt;}
.x19_c00444{left:280.651067pt;}
.x1a_c00444{left:283.984400pt;}
.x46_c00444{left:301.388267pt;}
.x49_c00444{left:304.424800pt;}
.x4_c00444{left:306.782800pt;}
.x5_c00444{left:310.782800pt;}
.x4a_c00444{left:328.844400pt;}
.x35_c00444{left:340.724267pt;}
.x1b_c00444{left:347.753867pt;}
.x10_c00444{left:354.750933pt;}
.x6_c00444{left:359.678000pt;}
.x36_c00444{left:362.923867pt;}
.x7_c00444{left:367.678000pt;}
.x11_c00444{left:373.230533pt;}
.x1c_c00444{left:377.396533pt;}
.x12_c00444{left:381.638000pt;}
.x1d_c00444{left:384.839467pt;}
.x2a_c00444{left:398.867200pt;}
.x8_c00444{left:412.109067pt;}
.x9_c00444{left:416.109067pt;}
.x2b_c00444{left:421.066667pt;}
.x1e_c00444{left:423.346000pt;}
.x37_c00444{left:427.995067pt;}
.x13_c00444{left:437.418000pt;}
.x3e_c00444{left:446.921600pt;}
.x31_c00444{left:448.105467pt;}
.x38_c00444{left:450.194667pt;}
.x32_c00444{left:466.584933pt;}
.xa_c00444{left:469.451867pt;}
.xb_c00444{left:473.451867pt;}
.x14_c00444{left:486.098267pt;}
.x1f_c00444{left:492.366267pt;}
.x30_c00444{left:494.441467pt;}
.x4b_c00444{left:504.721733pt;}
.x3b_c00444{left:507.368800pt;}
.x3f_c00444{left:524.248400pt;}
.x4c_c00444{left:529.141333pt;}
.x40_c00444{left:536.280000pt;}
.x15_c00444{left:541.158267pt;}
.x16_c00444{left:544.491467pt;}
.x3c_c00444{left:545.888000pt;}
.x20_c00444{left:549.421867pt;}
.x21_c00444{left:566.448267pt;}
.x43_c00444{left:572.186267pt;}
.x22_c00444{left:573.890933pt;}
.x17_c00444{left:578.085200pt;}
.x41_c00444{left:583.383067pt;}
.x33_c00444{left:596.251200pt;}
.x34_c00444{left:601.158800pt;}
.x2c_c00444{left:619.743867pt;}
.x23_c00444{left:628.014933pt;}
.x24_c00444{left:631.348267pt;}
.x2d_c00444{left:641.943333pt;}
.x25_c00444{left:648.434267pt;}
.x26_c00444{left:651.767600pt;}
.x44_c00444{left:662.565467pt;}
.x27_c00444{left:663.680000pt;}
.x28_c00444{left:667.013333pt;}
.x4d_c00444{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7681148859d1bb7b103419b5.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_de0fda9f3f740025715f7a8e.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;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:ff3_c00445;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_8194133ff60fb143a73b04df.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00445;src:url('chunks/assets/font_c441d70658821f48fcabe033.woff2')format("woff");}.ff6_c00445{font-family:ff6_c00445;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00445{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00445{vertical-align:-24.480000px;}
.v0_c00445{vertical-align:0.000000px;}
.v1_c00445{vertical-align:30.240000px;}
.ls5_c00445{letter-spacing:0.000000px;}
.ls7_c00445{letter-spacing:0.265680px;}
.ls9_c00445{letter-spacing:0.478224px;}
.ls3_c00445{letter-spacing:0.621840px;}
.ls8_c00445{letter-spacing:0.712027px;}
.ls6_c00445{letter-spacing:5.430672px;}
.ls1_c00445{letter-spacing:5.941200px;}
.ls0_c00445{letter-spacing:5.976000px;}
.ls2_c00445{letter-spacing:5.980200px;}
.ls4_c00445{letter-spacing:54.864000px;}
.sc__c00445{text-shadow:none;}
.sc1_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00445{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc1_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00445{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00445{word-spacing:-21.043152px;}
.ws1_c00445{word-spacing:-10.008000px;}
.ws2_c00445{word-spacing:0.000000px;}
._6_c00445{margin-left:-1.179360px;}
._9_c00445{width:1.003680px;}
._1_c00445{width:3.384000px;}
._7_c00445{width:4.896000px;}
._3_c00445{width:9.432000px;}
._0_c00445{width:11.736000px;}
._8_c00445{width:23.328000px;}
._2_c00445{width:30.744000px;}
._4_c00445{width:41.904000px;}
._5_c00445{width:43.193655px;}
.fc0_c00445{color:rgb(0,0,0);}
.fs4_c00445{font-size:36.000000px;}
.fs3_c00445{font-size:41.760000px;}
.fs2_c00445{font-size:56.160000px;}
.fs5_c00445{font-size:59.040000px;}
.fs7_c00445{font-size:60.000000px;}
.fs6_c00445{font-size:60.857039px;}
.fs0_c00445{font-size:72.000000px;}
.fs1_c00445{font-size:74.215901px;}
.y0_c00445{bottom:0.000000px;}
.y24_c00445{bottom:3.120000px;}
.y23_c00445{bottom:34.744580px;}
.y1_c00445{bottom:54.000000px;}
.y22_c00445{bottom:55.485000px;}
.y21_c00445{bottom:61.605000px;}
.y20_c00445{bottom:88.245000px;}
.y1f_c00445{bottom:237.285000px;}
.y1e_c00445{bottom:258.525000px;}
.y1d_c00445{bottom:279.405000px;}
.y1c_c00445{bottom:315.405000px;}
.y1b_c00445{bottom:351.405000px;}
.y1a_c00445{bottom:372.285000px;}
.y19_c00445{bottom:393.525000px;}
.y18_c00445{bottom:414.405000px;}
.y17_c00445{bottom:450.405000px;}
.y16_c00445{bottom:486.405000px;}
.y15_c00445{bottom:522.405000px;}
.y14_c00445{bottom:543.285000px;}
.y13_c00445{bottom:579.285000px;}
.y12_c00445{bottom:615.285000px;}
.y11_c00445{bottom:651.285000px;}
.y10_c00445{bottom:687.285000px;}
.yf_c00445{bottom:723.285000px;}
.ye_c00445{bottom:759.285000px;}
.yd_c00445{bottom:795.285000px;}
.yc_c00445{bottom:831.285000px;}
.yb_c00445{bottom:867.285000px;}
.ya_c00445{bottom:888.525000px;}
.y9_c00445{bottom:909.405000px;}
.y8_c00445{bottom:930.645000px;}
.y7_c00445{bottom:951.525000px;}
.y6_c00445{bottom:987.525000px;}
.y5_c00445{bottom:1008.405000px;}
.y4_c00445{bottom:1044.405000px;}
.y3_c00445{bottom:1082.925000px;}
.y2_c00445{bottom:1138.365000px;}
.ha_c00445{height:19.255605px;}
.h7_c00445{height:32.616000px;}
.h8_c00445{height:46.981634px;}
.h6_c00445{height:47.988281px;}
.h9_c00445{height:53.490240px;}
.hb_c00445{height:56.640000px;}
.h4_c00445{height:57.294676px;}
.h3_c00445{height:65.232000px;}
.h5_c00445{height:68.074560px;}
.h2_c00445{height:1201.365000px;}
.h0_c00445{height:1262.835000px;}
.h1_c00445{height:1263.000000px;}
.w3_c00445{width:25.020000px;}
.w2_c00445{width:863.955000px;}
.w0_c00445{width:892.935000px;}
.w1_c00445{width:893.250000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:14.490000px;}
.x2_c00445{left:113.040150px;}
.x9_c00445{left:140.037600px;}
.xa_c00445{left:167.037600px;}
.xb_c00445{left:315.748500px;}
.xc_c00445{left:364.688550px;}
.xd_c00445{left:369.188550px;}
.xe_c00445{left:400.110750px;}
.x3_c00445{left:413.967000px;}
.x6_c00445{left:500.915100px;}
.x11_c00445{left:573.113550px;}
.x12_c00445{left:602.257650px;}
.x7_c00445{left:604.916700px;}
.x8_c00445{left:655.119900px;}
.x4_c00445{left:688.481700px;}
.x5_c00445{left:718.450950px;}
.xf_c00445{left:720.420750px;}
.x10_c00445{left:750.390000px;}
.x13_c00445{left:759.914612px;}
@media print{
.v2_c00445{vertical-align:-21.760000pt;}
.v0_c00445{vertical-align:0.000000pt;}
.v1_c00445{vertical-align:26.880000pt;}
.ls5_c00445{letter-spacing:0.000000pt;}
.ls7_c00445{letter-spacing:0.236160pt;}
.ls9_c00445{letter-spacing:0.425088pt;}
.ls3_c00445{letter-spacing:0.552747pt;}
.ls8_c00445{letter-spacing:0.632913pt;}
.ls6_c00445{letter-spacing:4.827264pt;}
.ls1_c00445{letter-spacing:5.281067pt;}
.ls0_c00445{letter-spacing:5.312000pt;}
.ls2_c00445{letter-spacing:5.315733pt;}
.ls4_c00445{letter-spacing:48.768000pt;}
.ws0_c00445{word-spacing:-18.705024pt;}
.ws1_c00445{word-spacing:-8.896000pt;}
.ws2_c00445{word-spacing:0.000000pt;}
._6_c00445{margin-left:-1.048320pt;}
._9_c00445{width:0.892160pt;}
._1_c00445{width:3.008000pt;}
._7_c00445{width:4.352000pt;}
._3_c00445{width:8.384000pt;}
._0_c00445{width:10.432000pt;}
._8_c00445{width:20.736000pt;}
._2_c00445{width:27.328000pt;}
._4_c00445{width:37.248000pt;}
._5_c00445{width:38.394360pt;}
.fs4_c00445{font-size:32.000000pt;}
.fs3_c00445{font-size:37.120000pt;}
.fs2_c00445{font-size:49.920000pt;}
.fs5_c00445{font-size:52.480000pt;}
.fs7_c00445{font-size:53.333333pt;}
.fs6_c00445{font-size:54.095146pt;}
.fs0_c00445{font-size:64.000000pt;}
.fs1_c00445{font-size:65.969690pt;}
.y0_c00445{bottom:0.000000pt;}
.y24_c00445{bottom:2.773333pt;}
.y23_c00445{bottom:30.884071pt;}
.y1_c00445{bottom:48.000000pt;}
.y22_c00445{bottom:49.320000pt;}
.y21_c00445{bottom:54.760000pt;}
.y20_c00445{bottom:78.440000pt;}
.y1f_c00445{bottom:210.920000pt;}
.y1e_c00445{bottom:229.800000pt;}
.y1d_c00445{bottom:248.360000pt;}
.y1c_c00445{bottom:280.360000pt;}
.y1b_c00445{bottom:312.360000pt;}
.y1a_c00445{bottom:330.920000pt;}
.y19_c00445{bottom:349.800000pt;}
.y18_c00445{bottom:368.360000pt;}
.y17_c00445{bottom:400.360000pt;}
.y16_c00445{bottom:432.360000pt;}
.y15_c00445{bottom:464.360000pt;}
.y14_c00445{bottom:482.920000pt;}
.y13_c00445{bottom:514.920000pt;}
.y12_c00445{bottom:546.920000pt;}
.y11_c00445{bottom:578.920000pt;}
.y10_c00445{bottom:610.920000pt;}
.yf_c00445{bottom:642.920000pt;}
.ye_c00445{bottom:674.920000pt;}
.yd_c00445{bottom:706.920000pt;}
.yc_c00445{bottom:738.920000pt;}
.yb_c00445{bottom:770.920000pt;}
.ya_c00445{bottom:789.800000pt;}
.y9_c00445{bottom:808.360000pt;}
.y8_c00445{bottom:827.240000pt;}
.y7_c00445{bottom:845.800000pt;}
.y6_c00445{bottom:877.800000pt;}
.y5_c00445{bottom:896.360000pt;}
.y4_c00445{bottom:928.360000pt;}
.y3_c00445{bottom:962.600000pt;}
.y2_c00445{bottom:1011.880000pt;}
.ha_c00445{height:17.116093pt;}
.h7_c00445{height:28.992000pt;}
.h8_c00445{height:41.761453pt;}
.h6_c00445{height:42.656250pt;}
.h9_c00445{height:47.546880pt;}
.hb_c00445{height:50.346667pt;}
.h4_c00445{height:50.928601pt;}
.h3_c00445{height:57.984000pt;}
.h5_c00445{height:60.510720pt;}
.h2_c00445{height:1067.880000pt;}
.h0_c00445{height:1122.520000pt;}
.h1_c00445{height:1122.666667pt;}
.w3_c00445{width:22.240000pt;}
.w2_c00445{width:767.960000pt;}
.w0_c00445{width:793.720000pt;}
.w1_c00445{width:794.000000pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:12.880000pt;}
.x2_c00445{left:100.480133pt;}
.x9_c00445{left:124.477867pt;}
.xa_c00445{left:148.477867pt;}
.xb_c00445{left:280.665333pt;}
.xc_c00445{left:324.167600pt;}
.xd_c00445{left:328.167600pt;}
.xe_c00445{left:355.654000pt;}
.x3_c00445{left:367.970667pt;}
.x6_c00445{left:445.257867pt;}
.x11_c00445{left:509.434267pt;}
.x12_c00445{left:535.340133pt;}
.x7_c00445{left:537.703733pt;}
.x8_c00445{left:582.328800pt;}
.x4_c00445{left:611.983733pt;}
.x5_c00445{left:638.623067pt;}
.xf_c00445{left:640.374000pt;}
.x10_c00445{left:667.013333pt;}
.x13_c00445{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_522bfb4374764b3104306571.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_e3fa9ac80719ee93504293d1.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;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:ff4_c00446;src:url('chunks/assets/font_ad3a10838c62b9eb36d82484.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_c6e6eb4a7baac3b1573895be.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00446;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff6_c00446{font-family:ff6_c00446;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00446;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff7_c00446{font-family:ff7_c00446;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00446;src:url('chunks/assets/font_a02d4762a9cee6fac5be9524.woff2')format("woff");}.ff8_c00446{font-family:ff8_c00446;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:ff9_c00446;src:url('chunks/assets/font_51565dced8580767ad2f7c03.woff2')format("woff");}.ff9_c00446{font-family:ff9_c00446;line-height:0.920000;font-style:normal;font-weight: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_c00446;src:url('chunks/assets/font_d8058bca1d467c247ab53333.woff2')format("woff");}.ffa_c00446{font-family:ffa_c00446;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00446{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00446{vertical-align:-24.480000px;}
.v0_c00446{vertical-align:0.000000px;}
.v2_c00446{vertical-align:30.240000px;}
.ls10_c00446{letter-spacing:0.000000px;}
.ls8_c00446{letter-spacing:0.236160px;}
.ls13_c00446{letter-spacing:0.265680px;}
.ls19_c00446{letter-spacing:0.273857px;}
.ls9_c00446{letter-spacing:0.295200px;}
.lsc_c00446{letter-spacing:0.301104px;}
.ls1a_c00446{letter-spacing:0.307008px;}
.ls3_c00446{letter-spacing:0.318816px;}
.ls15_c00446{letter-spacing:0.383399px;}
.lsf_c00446{letter-spacing:0.416040px;}
.ls22_c00446{letter-spacing:0.438171px;}
.lsd_c00446{letter-spacing:0.501840px;}
.lsa_c00446{letter-spacing:0.531360px;}
.lsb_c00446{letter-spacing:0.554976px;}
.ls11_c00446{letter-spacing:0.584496px;}
.ls17_c00446{letter-spacing:0.602485px;}
.ls5_c00446{letter-spacing:0.657256px;}
.ls1f_c00446{letter-spacing:0.690768px;}
.ls4_c00446{letter-spacing:0.712027px;}
.ls1e_c00446{letter-spacing:0.743904px;}
.ls18_c00446{letter-spacing:0.962352px;}
.ls21_c00446{letter-spacing:3.825792px;}
.ls14_c00446{letter-spacing:5.248656px;}
.ls1_c00446{letter-spacing:5.254560px;}
.ls7_c00446{letter-spacing:5.313600px;}
.ls6_c00446{letter-spacing:5.402160px;}
.ls20_c00446{letter-spacing:5.430672px;}
.ls2_c00446{letter-spacing:5.431680px;}
.ls12_c00446{letter-spacing:5.461200px;}
.ls16_c00446{letter-spacing:5.514336px;}
.lse_c00446{letter-spacing:5.975400px;}
.ls0_c00446{letter-spacing:5.976000px;}
.ls1c_c00446{letter-spacing:11.164464px;}
.ls1b_c00446{letter-spacing:11.170368px;}
.ls1d_c00446{letter-spacing:12.481056px;}
.sc__c00446{text-shadow:none;}
.sc1_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00446{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc1_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00446{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa_c00446{word-spacing:-25.992000px;}
.ws4_c00446{word-spacing:-21.927456px;}
.ws0_c00446{word-spacing:-21.874320px;}
.ws2_c00446{word-spacing:-21.815280px;}
.ws1_c00446{word-spacing:-21.661776px;}
.ws8_c00446{word-spacing:-21.043152px;}
.ws9_c00446{word-spacing:-20.016000px;}
.ws3_c00446{word-spacing:-17.630284px;}
.ws5_c00446{word-spacing:-17.575513px;}
.wsb_c00446{word-spacing:-11.609280px;}
.ws7_c00446{word-spacing:-10.008000px;}
.ws6_c00446{word-spacing:-5.461200px;}
.wsc_c00446{word-spacing:0.000000px;}
._c_c00446{margin-left:-12.988800px;}
._b_c00446{margin-left:-11.808000px;}
._a_c00446{margin-left:-10.627200px;}
._10_c00446{margin-left:-3.365280px;}
._8_c00446{margin-left:-1.197216px;}
._3_c00446{width:1.080000px;}
._1_c00446{width:2.088000px;}
._2_c00446{width:3.384000px;}
._7_c00446{width:5.040000px;}
._0_c00446{width:6.120000px;}
._d_c00446{width:8.501760px;}
._9_c00446{width:10.332000px;}
._4_c00446{width:12.096000px;}
._f_c00446{width:14.544000px;}
._e_c00446{width:15.696000px;}
._5_c00446{width:18.072000px;}
._6_c00446{width:30.312000px;}
.fc0_c00446{color:rgb(0,0,0);}
.fs5_c00446{font-size:36.000000px;}
.fs7_c00446{font-size:41.760000px;}
.fs6_c00446{font-size:56.160000px;}
.fs2_c00446{font-size:59.040000px;}
.fs8_c00446{font-size:60.000000px;}
.fs3_c00446{font-size:60.857039px;}
.fs4_c00446{font-size:64.800000px;}
.fs0_c00446{font-size:72.000000px;}
.fs1_c00446{font-size:74.215901px;}
.y0_c00446{bottom:0.000000px;}
.y3a_c00446{bottom:3.120000px;}
.y39_c00446{bottom:34.744580px;}
.y1_c00446{bottom:54.000000px;}
.y38_c00446{bottom:55.481040px;}
.y37_c00446{bottom:72.765000px;}
.y36_c00446{bottom:78.885000px;}
.y35_c00446{bottom:90.405000px;}
.y34_c00446{bottom:96.525000px;}
.y33_c00446{bottom:123.165000px;}
.y32_c00446{bottom:147.645000px;}
.y31_c00446{bottom:168.885000px;}
.y30_c00446{bottom:189.765000px;}
.y2f_c00446{bottom:210.645000px;}
.y2e_c00446{bottom:231.525000px;}
.y2d_c00446{bottom:267.525000px;}
.y2c_c00446{bottom:303.525000px;}
.y2b_c00446{bottom:331.962480px;}
.y2a_c00446{bottom:349.600680px;}
.y29_c00446{bottom:366.884640px;}
.y28_c00446{bottom:384.522840px;}
.y27_c00446{bottom:401.806800px;}
.y26_c00446{bottom:419.445000px;}
.y25_c00446{bottom:444.285000px;}
.y24_c00446{bottom:444.286800px;}
.y22_c00446{bottom:461.925000px;}
.y21_c00446{bottom:461.926800px;}
.y23_c00446{bottom:468.045000px;}
.y1f_c00446{bottom:479.561040px;}
.y20_c00446{bottom:479.565000px;}
.y1e_c00446{bottom:496.845000px;}
.y1d_c00446{bottom:496.846800px;}
.y1c_c00446{bottom:514.485000px;}
.y1b_c00446{bottom:539.685000px;}
.y19_c00446{bottom:568.839960px;}
.y1a_c00446{bottom:568.845000px;}
.y18_c00446{bottom:596.205000px;}
.y17_c00446{bottom:614.205000px;}
.y16_c00446{bottom:639.405000px;}
.y15_c00446{bottom:667.845000px;}
.y14_c00446{bottom:697.005000px;}
.y13_c00446{bottom:725.084850px;}
.y12_c00446{bottom:754.244850px;}
.y11_c00446{bottom:782.324850px;}
.y10_c00446{bottom:810.764850px;}
.yf_c00446{bottom:810.765000px;}
.ye_c00446{bottom:831.645000px;}
.yd_c00446{bottom:852.885000px;}
.yc_c00446{bottom:873.765000px;}
.yb_c00446{bottom:902.205000px;}
.ya_c00446{bottom:923.445000px;}
.y9_c00446{bottom:944.325000px;}
.y8_c00446{bottom:965.205000px;}
.y7_c00446{bottom:986.445000px;}
.y6_c00446{bottom:1007.325000px;}
.y5_c00446{bottom:1028.205000px;}
.y4_c00446{bottom:1049.445000px;}
.y3_c00446{bottom:1085.805000px;}
.y2_c00446{bottom:1138.365000px;}
.hb_c00446{height:19.255605px;}
.h9_c00446{height:32.616000px;}
.h7_c00446{height:46.981634px;}
.h4_c00446{height:47.988281px;}
.h6_c00446{height:53.490240px;}
.hc_c00446{height:56.640000px;}
.h5_c00446{height:57.294676px;}
.h8_c00446{height:58.708800px;}
.h3_c00446{height:65.232000px;}
.ha_c00446{height:68.074560px;}
.h2_c00446{height:1201.365000px;}
.h0_c00446{height:1262.835000px;}
.h1_c00446{height:1263.000000px;}
.w3_c00446{width:25.020000px;}
.w2_c00446{width:863.955000px;}
.w0_c00446{width:892.935000px;}
.w1_c00446{width:893.250000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:14.490000px;}
.x2_c00446{left:113.040150px;}
.x31_c00446{left:119.034000px;}
.x13_c00446{left:138.014700px;}
.x2e_c00446{left:146.050350px;}
.x25_c00446{left:157.792950px;}
.x26_c00446{left:182.767500px;}
.x32_c00446{left:186.830850px;}
.x27_c00446{left:194.971500px;}
.x38_c00446{left:224.779500px;}
.x28_c00446{left:251.951700px;}
.x2f_c00446{left:261.901200px;}
.x1a_c00446{left:269.599350px;}
.x1b_c00446{left:275.371200px;}
.x29_c00446{left:276.926100px;}
.x7_c00446{left:283.131450px;}
.x39_c00446{left:293.804850px;}
.x30_c00446{left:314.892300px;}
.x2a_c00446{left:320.562750px;}
.x35_c00446{left:323.330850px;}
.x8_c00446{left:344.140800px;}
.x9_c00446{left:348.640800px;}
.x33_c00446{left:351.234000px;}
.x14_c00446{left:354.231450px;}
.x22_c00446{left:377.639700px;}
.x15_c00446{left:382.550850px;}
.x34_c00446{left:410.237250px;}
.xa_c00446{left:417.651900px;}
.xb_c00446{left:422.151900px;}
.x18_c00446{left:435.529200px;}
.x19_c00446{left:454.683750px;}
.x1c_c00446{left:462.378600px;}
.x1d_c00446{left:470.728950px;}
.xc_c00446{left:476.150700px;}
.xd_c00446{left:480.650700px;}
.x2d_c00446{left:504.913350px;}
.x36_c00446{left:526.018800px;}
.xe_c00446{left:540.661350px;}
.xf_c00446{left:545.161350px;}
.x3_c00446{left:561.125550px;}
.x37_c00446{left:570.028200px;}
.x4_c00446{left:574.103400px;}
.x10_c00446{left:598.188750px;}
.x5_c00446{left:622.143750px;}
.x6_c00446{left:637.155450px;}
.x11_c00446{left:646.795500px;}
.x1e_c00446{left:657.915900px;}
.x12_c00446{left:676.277700px;}
.x1f_c00446{left:678.705300px;}
.x23_c00446{left:701.871150px;}
.x2b_c00446{left:704.842200px;}
.x20_c00446{left:716.255550px;}
.x16_c00446{left:719.648100px;}
.x2c_c00446{left:723.996900px;}
.x24_c00446{left:726.845550px;}
.x17_c00446{left:738.802650px;}
.x21_c00446{left:741.229950px;}
.x3a_c00446{left:759.914612px;}
@media print{
.v1_c00446{vertical-align:-21.760000pt;}
.v0_c00446{vertical-align:0.000000pt;}
.v2_c00446{vertical-align:26.880000pt;}
.ls10_c00446{letter-spacing:0.000000pt;}
.ls8_c00446{letter-spacing:0.209920pt;}
.ls13_c00446{letter-spacing:0.236160pt;}
.ls19_c00446{letter-spacing:0.243428pt;}
.ls9_c00446{letter-spacing:0.262400pt;}
.lsc_c00446{letter-spacing:0.267648pt;}
.ls1a_c00446{letter-spacing:0.272896pt;}
.ls3_c00446{letter-spacing:0.283392pt;}
.ls15_c00446{letter-spacing:0.340799pt;}
.lsf_c00446{letter-spacing:0.369813pt;}
.ls22_c00446{letter-spacing:0.389485pt;}
.lsd_c00446{letter-spacing:0.446080pt;}
.lsa_c00446{letter-spacing:0.472320pt;}
.lsb_c00446{letter-spacing:0.493312pt;}
.ls11_c00446{letter-spacing:0.519552pt;}
.ls17_c00446{letter-spacing:0.535542pt;}
.ls5_c00446{letter-spacing:0.584228pt;}
.ls1f_c00446{letter-spacing:0.614016pt;}
.ls4_c00446{letter-spacing:0.632913pt;}
.ls1e_c00446{letter-spacing:0.661248pt;}
.ls18_c00446{letter-spacing:0.855424pt;}
.ls21_c00446{letter-spacing:3.400704pt;}
.ls14_c00446{letter-spacing:4.665472pt;}
.ls1_c00446{letter-spacing:4.670720pt;}
.ls7_c00446{letter-spacing:4.723200pt;}
.ls6_c00446{letter-spacing:4.801920pt;}
.ls20_c00446{letter-spacing:4.827264pt;}
.ls2_c00446{letter-spacing:4.828160pt;}
.ls12_c00446{letter-spacing:4.854400pt;}
.ls16_c00446{letter-spacing:4.901632pt;}
.lse_c00446{letter-spacing:5.311467pt;}
.ls0_c00446{letter-spacing:5.312000pt;}
.ls1c_c00446{letter-spacing:9.923968pt;}
.ls1b_c00446{letter-spacing:9.929216pt;}
.ls1d_c00446{letter-spacing:11.094272pt;}
.wsa_c00446{word-spacing:-23.104000pt;}
.ws4_c00446{word-spacing:-19.491072pt;}
.ws0_c00446{word-spacing:-19.443840pt;}
.ws2_c00446{word-spacing:-19.391360pt;}
.ws1_c00446{word-spacing:-19.254912pt;}
.ws8_c00446{word-spacing:-18.705024pt;}
.ws9_c00446{word-spacing:-17.792000pt;}
.ws3_c00446{word-spacing:-15.671364pt;}
.ws5_c00446{word-spacing:-15.622678pt;}
.wsb_c00446{word-spacing:-10.319360pt;}
.ws7_c00446{word-spacing:-8.896000pt;}
.ws6_c00446{word-spacing:-4.854400pt;}
.wsc_c00446{word-spacing:0.000000pt;}
._c_c00446{margin-left:-11.545600pt;}
._b_c00446{margin-left:-10.496000pt;}
._a_c00446{margin-left:-9.446400pt;}
._10_c00446{margin-left:-2.991360pt;}
._8_c00446{margin-left:-1.064192pt;}
._3_c00446{width:0.960000pt;}
._1_c00446{width:1.856000pt;}
._2_c00446{width:3.008000pt;}
._7_c00446{width:4.480000pt;}
._0_c00446{width:5.440000pt;}
._d_c00446{width:7.557120pt;}
._9_c00446{width:9.184000pt;}
._4_c00446{width:10.752000pt;}
._f_c00446{width:12.928000pt;}
._e_c00446{width:13.952000pt;}
._5_c00446{width:16.064000pt;}
._6_c00446{width:26.944000pt;}
.fs5_c00446{font-size:32.000000pt;}
.fs7_c00446{font-size:37.120000pt;}
.fs6_c00446{font-size:49.920000pt;}
.fs2_c00446{font-size:52.480000pt;}
.fs8_c00446{font-size:53.333333pt;}
.fs3_c00446{font-size:54.095146pt;}
.fs4_c00446{font-size:57.600000pt;}
.fs0_c00446{font-size:64.000000pt;}
.fs1_c00446{font-size:65.969690pt;}
.y0_c00446{bottom:0.000000pt;}
.y3a_c00446{bottom:2.773333pt;}
.y39_c00446{bottom:30.884071pt;}
.y1_c00446{bottom:48.000000pt;}
.y38_c00446{bottom:49.316480pt;}
.y37_c00446{bottom:64.680000pt;}
.y36_c00446{bottom:70.120000pt;}
.y35_c00446{bottom:80.360000pt;}
.y34_c00446{bottom:85.800000pt;}
.y33_c00446{bottom:109.480000pt;}
.y32_c00446{bottom:131.240000pt;}
.y31_c00446{bottom:150.120000pt;}
.y30_c00446{bottom:168.680000pt;}
.y2f_c00446{bottom:187.240000pt;}
.y2e_c00446{bottom:205.800000pt;}
.y2d_c00446{bottom:237.800000pt;}
.y2c_c00446{bottom:269.800000pt;}
.y2b_c00446{bottom:295.077760pt;}
.y2a_c00446{bottom:310.756160pt;}
.y29_c00446{bottom:326.119680pt;}
.y28_c00446{bottom:341.798080pt;}
.y27_c00446{bottom:357.161600pt;}
.y26_c00446{bottom:372.840000pt;}
.y25_c00446{bottom:394.920000pt;}
.y24_c00446{bottom:394.921600pt;}
.y22_c00446{bottom:410.600000pt;}
.y21_c00446{bottom:410.601600pt;}
.y23_c00446{bottom:416.040000pt;}
.y1f_c00446{bottom:426.276480pt;}
.y20_c00446{bottom:426.280000pt;}
.y1e_c00446{bottom:441.640000pt;}
.y1d_c00446{bottom:441.641600pt;}
.y1c_c00446{bottom:457.320000pt;}
.y1b_c00446{bottom:479.720000pt;}
.y19_c00446{bottom:505.635520pt;}
.y1a_c00446{bottom:505.640000pt;}
.y18_c00446{bottom:529.960000pt;}
.y17_c00446{bottom:545.960000pt;}
.y16_c00446{bottom:568.360000pt;}
.y15_c00446{bottom:593.640000pt;}
.y14_c00446{bottom:619.560000pt;}
.y13_c00446{bottom:644.519867pt;}
.y12_c00446{bottom:670.439867pt;}
.y11_c00446{bottom:695.399867pt;}
.y10_c00446{bottom:720.679867pt;}
.yf_c00446{bottom:720.680000pt;}
.ye_c00446{bottom:739.240000pt;}
.yd_c00446{bottom:758.120000pt;}
.yc_c00446{bottom:776.680000pt;}
.yb_c00446{bottom:801.960000pt;}
.ya_c00446{bottom:820.840000pt;}
.y9_c00446{bottom:839.400000pt;}
.y8_c00446{bottom:857.960000pt;}
.y7_c00446{bottom:876.840000pt;}
.y6_c00446{bottom:895.400000pt;}
.y5_c00446{bottom:913.960000pt;}
.y4_c00446{bottom:932.840000pt;}
.y3_c00446{bottom:965.160000pt;}
.y2_c00446{bottom:1011.880000pt;}
.hb_c00446{height:17.116093pt;}
.h9_c00446{height:28.992000pt;}
.h7_c00446{height:41.761453pt;}
.h4_c00446{height:42.656250pt;}
.h6_c00446{height:47.546880pt;}
.hc_c00446{height:50.346667pt;}
.h5_c00446{height:50.928601pt;}
.h8_c00446{height:52.185600pt;}
.h3_c00446{height:57.984000pt;}
.ha_c00446{height:60.510720pt;}
.h2_c00446{height:1067.880000pt;}
.h0_c00446{height:1122.520000pt;}
.h1_c00446{height:1122.666667pt;}
.w3_c00446{width:22.240000pt;}
.w2_c00446{width:767.960000pt;}
.w0_c00446{width:793.720000pt;}
.w1_c00446{width:794.000000pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:12.880000pt;}
.x2_c00446{left:100.480133pt;}
.x31_c00446{left:105.808000pt;}
.x13_c00446{left:122.679733pt;}
.x2e_c00446{left:129.822533pt;}
.x25_c00446{left:140.260400pt;}
.x26_c00446{left:162.460000pt;}
.x32_c00446{left:166.071867pt;}
.x27_c00446{left:173.308000pt;}
.x38_c00446{left:199.804000pt;}
.x28_c00446{left:223.957067pt;}
.x2f_c00446{left:232.801067pt;}
.x1a_c00446{left:239.643867pt;}
.x1b_c00446{left:244.774400pt;}
.x29_c00446{left:246.156533pt;}
.x7_c00446{left:251.672400pt;}
.x39_c00446{left:261.159867pt;}
.x30_c00446{left:279.904267pt;}
.x2a_c00446{left:284.944667pt;}
.x35_c00446{left:287.405200pt;}
.x8_c00446{left:305.902933pt;}
.x9_c00446{left:309.902933pt;}
.x33_c00446{left:312.208000pt;}
.x14_c00446{left:314.872400pt;}
.x22_c00446{left:335.679733pt;}
.x15_c00446{left:340.045200pt;}
.x34_c00446{left:364.655333pt;}
.xa_c00446{left:371.246133pt;}
.xb_c00446{left:375.246133pt;}
.x18_c00446{left:387.137067pt;}
.x19_c00446{left:404.163333pt;}
.x1c_c00446{left:411.003200pt;}
.x1d_c00446{left:418.425733pt;}
.xc_c00446{left:423.245067pt;}
.xd_c00446{left:427.245067pt;}
.x2d_c00446{left:448.811867pt;}
.x36_c00446{left:467.572267pt;}
.xe_c00446{left:480.587867pt;}
.xf_c00446{left:484.587867pt;}
.x3_c00446{left:498.778267pt;}
.x37_c00446{left:506.691733pt;}
.x4_c00446{left:510.314133pt;}
.x10_c00446{left:531.723333pt;}
.x5_c00446{left:553.016667pt;}
.x6_c00446{left:566.360400pt;}
.x11_c00446{left:574.929333pt;}
.x1e_c00446{left:584.814133pt;}
.x12_c00446{left:601.135733pt;}
.x1f_c00446{left:603.293600pt;}
.x23_c00446{left:623.885467pt;}
.x2b_c00446{left:626.526400pt;}
.x20_c00446{left:636.671600pt;}
.x16_c00446{left:639.687200pt;}
.x2c_c00446{left:643.552800pt;}
.x24_c00446{left:646.084933pt;}
.x17_c00446{left:656.713467pt;}
.x21_c00446{left:658.871067pt;}
.x3a_c00446{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd9b8fff65258ef5b4bf9871.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_588caedb6b2141060754c87c.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;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:ff3_c00447;src:url('chunks/assets/font_e5c11c50fad14b2176680a32.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00447{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00447{vertical-align:-24.480000px;}
.v0_c00447{vertical-align:0.000000px;}
.v1_c00447{vertical-align:30.240000px;}
.ls4_c00447{letter-spacing:0.000000px;}
.ls8_c00447{letter-spacing:0.202464px;}
.ls6_c00447{letter-spacing:0.265680px;}
.ls2_c00447{letter-spacing:0.295200px;}
.ls7_c00447{letter-spacing:0.399600px;}
.ls3_c00447{letter-spacing:0.531360px;}
.ls5_c00447{letter-spacing:5.335200px;}
.ls1_c00447{letter-spacing:5.974200px;}
.ls0_c00447{letter-spacing:5.976000px;}
.sc__c00447{text-shadow:none;}
.sc1_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00447{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc1_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00447{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00447{word-spacing:-20.947680px;}
.ws3_c00447{word-spacing:-16.944480px;}
.ws0_c00447{word-spacing:-11.609280px;}
.ws2_c00447{word-spacing:-10.008000px;}
.ws4_c00447{word-spacing:0.000000px;}
._5_c00447{margin-left:-1.118880px;}
._4_c00447{width:1.003680px;}
._3_c00447{width:3.384000px;}
._1_c00447{width:5.040000px;}
._0_c00447{width:11.304000px;}
._2_c00447{width:18.936000px;}
.fc0_c00447{color:rgb(0,0,0);}
.fs4_c00447{font-size:36.000000px;}
.fs2_c00447{font-size:41.760000px;}
.fs6_c00447{font-size:53.280000px;}
.fs3_c00447{font-size:56.160000px;}
.fs5_c00447{font-size:59.040000px;}
.fs7_c00447{font-size:60.000000px;}
.fs0_c00447{font-size:72.000000px;}
.fs1_c00447{font-size:74.215901px;}
.y0_c00447{bottom:0.000000px;}
.y16_c00447{bottom:3.120000px;}
.y14_c00447{bottom:14.400000px;}
.y15_c00447{bottom:34.744580px;}
.y1_c00447{bottom:54.000000px;}
.y12_c00447{bottom:61.605000px;}
.y11_c00447{bottom:88.245000px;}
.y13_c00447{bottom:409.365000px;}
.y10_c00447{bottom:676.845000px;}
.yf_c00447{bottom:712.845000px;}
.ye_c00447{bottom:748.845000px;}
.yd_c00447{bottom:784.845000px;}
.yc_c00447{bottom:820.845000px;}
.yb_c00447{bottom:856.845000px;}
.ya_c00447{bottom:892.845000px;}
.y9_c00447{bottom:914.085000px;}
.y8_c00447{bottom:950.085000px;}
.y7_c00447{bottom:986.085000px;}
.y6_c00447{bottom:1022.085000px;}
.y5_c00447{bottom:1042.965000px;}
.y4_c00447{bottom:1063.845000px;}
.y3_c00447{bottom:1085.085000px;}
.y2_c00447{bottom:1138.365000px;}
.h9_c00447{height:19.255605px;}
.h7_c00447{height:27.000000px;}
.h6_c00447{height:32.616000px;}
.h8_c00447{height:48.271680px;}
.ha_c00447{height:56.640000px;}
.h4_c00447{height:57.294676px;}
.h3_c00447{height:65.232000px;}
.h5_c00447{height:68.074560px;}
.h2_c00447{height:1201.365000px;}
.h0_c00447{height:1262.835000px;}
.h1_c00447{height:1263.000000px;}
.w4_c00447{width:25.020000px;}
.w3_c00447{width:547.920000px;}
.w2_c00447{width:863.955000px;}
.w0_c00447{width:892.935000px;}
.w1_c00447{width:893.250000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:14.490000px;}
.xc_c00447{left:78.765000px;}
.x2_c00447{left:113.040150px;}
.xb_c00447{left:177.210000px;}
.x3_c00447{left:311.440350px;}
.x9_c00447{left:398.670750px;}
.x4_c00447{left:404.307450px;}
.xa_c00447{left:459.623700px;}
.x5_c00447{left:626.664900px;}
.x6_c00447{left:674.688300px;}
.x7_c00447{left:699.360750px;}
.x8_c00447{left:750.390000px;}
.xd_c00447{left:759.914612px;}
@media print{
.v2_c00447{vertical-align:-21.760000pt;}
.v0_c00447{vertical-align:0.000000pt;}
.v1_c00447{vertical-align:26.880000pt;}
.ls4_c00447{letter-spacing:0.000000pt;}
.ls8_c00447{letter-spacing:0.179968pt;}
.ls6_c00447{letter-spacing:0.236160pt;}
.ls2_c00447{letter-spacing:0.262400pt;}
.ls7_c00447{letter-spacing:0.355200pt;}
.ls3_c00447{letter-spacing:0.472320pt;}
.ls5_c00447{letter-spacing:4.742400pt;}
.ls1_c00447{letter-spacing:5.310400pt;}
.ls0_c00447{letter-spacing:5.312000pt;}
.ws1_c00447{word-spacing:-18.620160pt;}
.ws3_c00447{word-spacing:-15.061760pt;}
.ws0_c00447{word-spacing:-10.319360pt;}
.ws2_c00447{word-spacing:-8.896000pt;}
.ws4_c00447{word-spacing:0.000000pt;}
._5_c00447{margin-left:-0.994560pt;}
._4_c00447{width:0.892160pt;}
._3_c00447{width:3.008000pt;}
._1_c00447{width:4.480000pt;}
._0_c00447{width:10.048000pt;}
._2_c00447{width:16.832000pt;}
.fs4_c00447{font-size:32.000000pt;}
.fs2_c00447{font-size:37.120000pt;}
.fs6_c00447{font-size:47.360000pt;}
.fs3_c00447{font-size:49.920000pt;}
.fs5_c00447{font-size:52.480000pt;}
.fs7_c00447{font-size:53.333333pt;}
.fs0_c00447{font-size:64.000000pt;}
.fs1_c00447{font-size:65.969690pt;}
.y0_c00447{bottom:0.000000pt;}
.y16_c00447{bottom:2.773333pt;}
.y14_c00447{bottom:12.800000pt;}
.y15_c00447{bottom:30.884071pt;}
.y1_c00447{bottom:48.000000pt;}
.y12_c00447{bottom:54.760000pt;}
.y11_c00447{bottom:78.440000pt;}
.y13_c00447{bottom:363.880000pt;}
.y10_c00447{bottom:601.640000pt;}
.yf_c00447{bottom:633.640000pt;}
.ye_c00447{bottom:665.640000pt;}
.yd_c00447{bottom:697.640000pt;}
.yc_c00447{bottom:729.640000pt;}
.yb_c00447{bottom:761.640000pt;}
.ya_c00447{bottom:793.640000pt;}
.y9_c00447{bottom:812.520000pt;}
.y8_c00447{bottom:844.520000pt;}
.y7_c00447{bottom:876.520000pt;}
.y6_c00447{bottom:908.520000pt;}
.y5_c00447{bottom:927.080000pt;}
.y4_c00447{bottom:945.640000pt;}
.y3_c00447{bottom:964.520000pt;}
.y2_c00447{bottom:1011.880000pt;}
.h9_c00447{height:17.116093pt;}
.h7_c00447{height:24.000000pt;}
.h6_c00447{height:28.992000pt;}
.h8_c00447{height:42.908160pt;}
.ha_c00447{height:50.346667pt;}
.h4_c00447{height:50.928601pt;}
.h3_c00447{height:57.984000pt;}
.h5_c00447{height:60.510720pt;}
.h2_c00447{height:1067.880000pt;}
.h0_c00447{height:1122.520000pt;}
.h1_c00447{height:1122.666667pt;}
.w4_c00447{width:22.240000pt;}
.w3_c00447{width:487.040000pt;}
.w2_c00447{width:767.960000pt;}
.w0_c00447{width:793.720000pt;}
.w1_c00447{width:794.000000pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:12.880000pt;}
.xc_c00447{left:70.013333pt;}
.x2_c00447{left:100.480133pt;}
.xb_c00447{left:157.520000pt;}
.x3_c00447{left:276.835867pt;}
.x9_c00447{left:354.374000pt;}
.x4_c00447{left:359.384400pt;}
.xa_c00447{left:408.554400pt;}
.x5_c00447{left:557.035467pt;}
.x6_c00447{left:599.722933pt;}
.x7_c00447{left:621.654000pt;}
.x8_c00447{left:667.013333pt;}
.xd_c00447{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b958aba456a12fce5b71539a.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_4ce4d52bf9269daa5f6faa10.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;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:ff3_c00448;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00448;src:url('chunks/assets/font_9a77340e1dc29636318b0bd0.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00448{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00448{vertical-align:-24.480000px;}
.v0_c00448{vertical-align:0.000000px;}
.v1_c00448{vertical-align:30.240000px;}
.ls4_c00448{letter-spacing:0.000000px;}
.ls7_c00448{letter-spacing:0.265680px;}
.lsa_c00448{letter-spacing:0.318816px;}
.ls9_c00448{letter-spacing:0.547713px;}
.ls8_c00448{letter-spacing:0.797040px;}
.ls5_c00448{letter-spacing:5.430672px;}
.ls0_c00448{letter-spacing:5.933400px;}
.ls1_c00448{letter-spacing:5.973000px;}
.ls3_c00448{letter-spacing:5.976000px;}
.ls6_c00448{letter-spacing:13.768128px;}
.ls2_c00448{letter-spacing:54.864000px;}
.sc__c00448{text-shadow:none;}
.sc1_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00448{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc1_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00448{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00448{word-spacing:-21.043152px;}
.ws3_c00448{word-spacing:-16.918257px;}
.ws4_c00448{word-spacing:-16.731936px;}
.ws0_c00448{word-spacing:-11.609280px;}
.ws2_c00448{word-spacing:-10.008000px;}
.ws5_c00448{word-spacing:0.000000px;}
._b_c00448{margin-left:-14.464800px;}
._a_c00448{margin-left:-13.165920px;}
._6_c00448{margin-left:-1.179360px;}
._1_c00448{width:1.008000px;}
._2_c00448{width:2.304000px;}
._0_c00448{width:3.528000px;}
._3_c00448{width:5.616000px;}
._4_c00448{width:7.776000px;}
._8_c00448{width:10.944000px;}
._5_c00448{width:12.096000px;}
._9_c00448{width:13.104000px;}
._7_c00448{width:17.280000px;}
.fc0_c00448{color:rgb(0,0,0);}
.fs4_c00448{font-size:36.000000px;}
.fs1_c00448{font-size:41.760000px;}
.fs2_c00448{font-size:56.160000px;}
.fs5_c00448{font-size:59.040000px;}
.fs7_c00448{font-size:60.000000px;}
.fs6_c00448{font-size:60.857039px;}
.fs0_c00448{font-size:72.000000px;}
.fs3_c00448{font-size:74.215901px;}
.y0_c00448{bottom:0.000000px;}
.y2b_c00448{bottom:3.120000px;}
.y2a_c00448{bottom:34.744580px;}
.y1_c00448{bottom:54.000000px;}
.y28_c00448{bottom:55.481040px;}
.y29_c00448{bottom:55.485000px;}
.y27_c00448{bottom:78.885000px;}
.y25_c00448{bottom:90.401040px;}
.y26_c00448{bottom:90.405000px;}
.y24_c00448{bottom:113.805000px;}
.y23_c00448{bottom:140.445000px;}
.y22_c00448{bottom:189.405000px;}
.y21_c00448{bottom:225.405000px;}
.y20_c00448{bottom:246.285000px;}
.y1f_c00448{bottom:282.285000px;}
.y1e_c00448{bottom:318.285000px;}
.y1d_c00448{bottom:354.285000px;}
.y1c_c00448{bottom:375.525000px;}
.y1b_c00448{bottom:396.405000px;}
.y1a_c00448{bottom:417.285000px;}
.y19_c00448{bottom:438.525000px;}
.y18_c00448{bottom:459.405000px;}
.y17_c00448{bottom:495.405000px;}
.y16_c00448{bottom:531.405000px;}
.y15_c00448{bottom:567.405000px;}
.y14_c00448{bottom:603.405000px;}
.y13_c00448{bottom:639.405000px;}
.y12_c00448{bottom:660.285000px;}
.y11_c00448{bottom:681.525000px;}
.y10_c00448{bottom:717.525000px;}
.yf_c00448{bottom:738.405000px;}
.ye_c00448{bottom:774.405000px;}
.yd_c00448{bottom:810.405000px;}
.yc_c00448{bottom:846.405000px;}
.yb_c00448{bottom:867.285000px;}
.ya_c00448{bottom:888.525000px;}
.y9_c00448{bottom:909.405000px;}
.y8_c00448{bottom:930.645000px;}
.y7_c00448{bottom:951.525000px;}
.y6_c00448{bottom:987.525000px;}
.y5_c00448{bottom:1008.405000px;}
.y4_c00448{bottom:1044.405000px;}
.y3_c00448{bottom:1082.925000px;}
.y2_c00448{bottom:1138.365000px;}
.h9_c00448{height:19.255605px;}
.h6_c00448{height:32.616000px;}
.h8_c00448{height:46.981634px;}
.h7_c00448{height:53.490240px;}
.ha_c00448{height:56.640000px;}
.h5_c00448{height:57.294676px;}
.h3_c00448{height:65.232000px;}
.h4_c00448{height:68.074560px;}
.h2_c00448{height:1201.365000px;}
.h0_c00448{height:1262.835000px;}
.h1_c00448{height:1263.000000px;}
.w3_c00448{width:25.020000px;}
.w2_c00448{width:863.955000px;}
.w0_c00448{width:892.935000px;}
.w1_c00448{width:893.250000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:14.490000px;}
.x2_c00448{left:113.040150px;}
.x9_c00448{left:118.034850px;}
.x6_c00448{left:140.037600px;}
.xa_c00448{left:183.072450px;}
.x7_c00448{left:317.213700px;}
.x8_c00448{left:328.868400px;}
.x3_c00448{left:413.967000px;}
.x4_c00448{left:433.731450px;}
.x5_c00448{left:484.742400px;}
.xb_c00448{left:759.914612px;}
@media print{
.v2_c00448{vertical-align:-21.760000pt;}
.v0_c00448{vertical-align:0.000000pt;}
.v1_c00448{vertical-align:26.880000pt;}
.ls4_c00448{letter-spacing:0.000000pt;}
.ls7_c00448{letter-spacing:0.236160pt;}
.lsa_c00448{letter-spacing:0.283392pt;}
.ls9_c00448{letter-spacing:0.486856pt;}
.ls8_c00448{letter-spacing:0.708480pt;}
.ls5_c00448{letter-spacing:4.827264pt;}
.ls0_c00448{letter-spacing:5.274133pt;}
.ls1_c00448{letter-spacing:5.309333pt;}
.ls3_c00448{letter-spacing:5.312000pt;}
.ls6_c00448{letter-spacing:12.238336pt;}
.ls2_c00448{letter-spacing:48.768000pt;}
.ws1_c00448{word-spacing:-18.705024pt;}
.ws3_c00448{word-spacing:-15.038451pt;}
.ws4_c00448{word-spacing:-14.872832pt;}
.ws0_c00448{word-spacing:-10.319360pt;}
.ws2_c00448{word-spacing:-8.896000pt;}
.ws5_c00448{word-spacing:0.000000pt;}
._b_c00448{margin-left:-12.857600pt;}
._a_c00448{margin-left:-11.703040pt;}
._6_c00448{margin-left:-1.048320pt;}
._1_c00448{width:0.896000pt;}
._2_c00448{width:2.048000pt;}
._0_c00448{width:3.136000pt;}
._3_c00448{width:4.992000pt;}
._4_c00448{width:6.912000pt;}
._8_c00448{width:9.728000pt;}
._5_c00448{width:10.752000pt;}
._9_c00448{width:11.648000pt;}
._7_c00448{width:15.360000pt;}
.fs4_c00448{font-size:32.000000pt;}
.fs1_c00448{font-size:37.120000pt;}
.fs2_c00448{font-size:49.920000pt;}
.fs5_c00448{font-size:52.480000pt;}
.fs7_c00448{font-size:53.333333pt;}
.fs6_c00448{font-size:54.095146pt;}
.fs0_c00448{font-size:64.000000pt;}
.fs3_c00448{font-size:65.969690pt;}
.y0_c00448{bottom:0.000000pt;}
.y2b_c00448{bottom:2.773333pt;}
.y2a_c00448{bottom:30.884071pt;}
.y1_c00448{bottom:48.000000pt;}
.y28_c00448{bottom:49.316480pt;}
.y29_c00448{bottom:49.320000pt;}
.y27_c00448{bottom:70.120000pt;}
.y25_c00448{bottom:80.356480pt;}
.y26_c00448{bottom:80.360000pt;}
.y24_c00448{bottom:101.160000pt;}
.y23_c00448{bottom:124.840000pt;}
.y22_c00448{bottom:168.360000pt;}
.y21_c00448{bottom:200.360000pt;}
.y20_c00448{bottom:218.920000pt;}
.y1f_c00448{bottom:250.920000pt;}
.y1e_c00448{bottom:282.920000pt;}
.y1d_c00448{bottom:314.920000pt;}
.y1c_c00448{bottom:333.800000pt;}
.y1b_c00448{bottom:352.360000pt;}
.y1a_c00448{bottom:370.920000pt;}
.y19_c00448{bottom:389.800000pt;}
.y18_c00448{bottom:408.360000pt;}
.y17_c00448{bottom:440.360000pt;}
.y16_c00448{bottom:472.360000pt;}
.y15_c00448{bottom:504.360000pt;}
.y14_c00448{bottom:536.360000pt;}
.y13_c00448{bottom:568.360000pt;}
.y12_c00448{bottom:586.920000pt;}
.y11_c00448{bottom:605.800000pt;}
.y10_c00448{bottom:637.800000pt;}
.yf_c00448{bottom:656.360000pt;}
.ye_c00448{bottom:688.360000pt;}
.yd_c00448{bottom:720.360000pt;}
.yc_c00448{bottom:752.360000pt;}
.yb_c00448{bottom:770.920000pt;}
.ya_c00448{bottom:789.800000pt;}
.y9_c00448{bottom:808.360000pt;}
.y8_c00448{bottom:827.240000pt;}
.y7_c00448{bottom:845.800000pt;}
.y6_c00448{bottom:877.800000pt;}
.y5_c00448{bottom:896.360000pt;}
.y4_c00448{bottom:928.360000pt;}
.y3_c00448{bottom:962.600000pt;}
.y2_c00448{bottom:1011.880000pt;}
.h9_c00448{height:17.116093pt;}
.h6_c00448{height:28.992000pt;}
.h8_c00448{height:41.761453pt;}
.h7_c00448{height:47.546880pt;}
.ha_c00448{height:50.346667pt;}
.h5_c00448{height:50.928601pt;}
.h3_c00448{height:57.984000pt;}
.h4_c00448{height:60.510720pt;}
.h2_c00448{height:1067.880000pt;}
.h0_c00448{height:1122.520000pt;}
.h1_c00448{height:1122.666667pt;}
.w3_c00448{width:22.240000pt;}
.w2_c00448{width:767.960000pt;}
.w0_c00448{width:793.720000pt;}
.w1_c00448{width:794.000000pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:12.880000pt;}
.x2_c00448{left:100.480133pt;}
.x9_c00448{left:104.919867pt;}
.x6_c00448{left:124.477867pt;}
.xa_c00448{left:162.731067pt;}
.x7_c00448{left:281.967733pt;}
.x8_c00448{left:292.327467pt;}
.x3_c00448{left:367.970667pt;}
.x4_c00448{left:385.539067pt;}
.x5_c00448{left:430.882133pt;}
.xb_c00448{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6e6a6ed095279a18a81584.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00449;src:url('chunks/assets/font_6880135399582e263eb627ca.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00449;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00449;src:url('chunks/assets/font_3d4f55567eae27cf597a4a79.woff2')format("woff");}.ff6_c00449{font-family:ff6_c00449;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:ff7_c00449;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff7_c00449{font-family:ff7_c00449;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00449;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff8_c00449{font-family:ff8_c00449;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00449;src:url('chunks/assets/font_c4a48cec784b42db5648f313.woff2')format("woff");}.ff9_c00449{font-family:ff9_c00449;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00449{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00449{vertical-align:-24.480000px;}
.v0_c00449{vertical-align:0.000000px;}
.v1_c00449{vertical-align:30.240000px;}
.ls13_c00449{letter-spacing:0.000000px;}
.lsf_c00449{letter-spacing:0.125640px;}
.ls2c_c00449{letter-spacing:0.156816px;}
.ls3_c00449{letter-spacing:0.236160px;}
.ls29_c00449{letter-spacing:0.242352px;}
.lsd_c00449{letter-spacing:0.252240px;}
.ls11_c00449{letter-spacing:0.265680px;}
.ls9_c00449{letter-spacing:0.289296px;}
.ls2d_c00449{letter-spacing:0.294624px;}
.ls8_c00449{letter-spacing:0.295200px;}
.ls2b_c00449{letter-spacing:0.318384px;}
.ls12_c00449{letter-spacing:0.318480px;}
.ls1a_c00449{letter-spacing:0.318816px;}
.ls2a_c00449{letter-spacing:0.346896px;}
.ls31_c00449{letter-spacing:0.383399px;}
.ls24_c00449{letter-spacing:0.413280px;}
.ls21_c00449{letter-spacing:0.425088px;}
.ls27_c00449{letter-spacing:0.438171px;}
.lsb_c00449{letter-spacing:0.458040px;}
.ls26_c00449{letter-spacing:0.478224px;}
.ls23_c00449{letter-spacing:0.492942px;}
.ls5_c00449{letter-spacing:0.531360px;}
.ls14_c00449{letter-spacing:0.584496px;}
.ls10_c00449{letter-spacing:0.585960px;}
.ls1e_c00449{letter-spacing:0.602485px;}
.lse_c00449{letter-spacing:0.648000px;}
.ls7_c00449{letter-spacing:0.657256px;}
.ls1f_c00449{letter-spacing:0.690768px;}
.ls6_c00449{letter-spacing:0.712027px;}
.ls1c_c00449{letter-spacing:0.743904px;}
.lsc_c00449{letter-spacing:0.788040px;}
.ls28_c00449{letter-spacing:0.797040px;}
.ls25_c00449{letter-spacing:0.821570px;}
.ls18_c00449{letter-spacing:0.962352px;}
.ls2e_c00449{letter-spacing:3.152736px;}
.ls1b_c00449{letter-spacing:3.264912px;}
.ls1d_c00449{letter-spacing:4.014720px;}
.ls16_c00449{letter-spacing:5.354928px;}
.ls2_c00449{letter-spacing:5.372640px;}
.ls15_c00449{letter-spacing:5.402160px;}
.ls22_c00449{letter-spacing:5.430672px;}
.ls19_c00449{letter-spacing:5.461200px;}
.ls30_c00449{letter-spacing:5.567472px;}
.ls20_c00449{letter-spacing:5.939424px;}
.lsa_c00449{letter-spacing:5.975400px;}
.ls1_c00449{letter-spacing:5.976000px;}
.ls32_c00449{letter-spacing:6.447168px;}
.ls33_c00449{letter-spacing:8.832384px;}
.ls2f_c00449{letter-spacing:12.498768px;}
.ls4_c00449{letter-spacing:13.933440px;}
.ls17_c00449{letter-spacing:13.951152px;}
.ls0_c00449{letter-spacing:54.864000px;}
.sc__c00449{text-shadow:none;}
.sc1_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00449{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc1_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00449{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsf_c00449{word-spacing:-21.980592px;}
.ws2_c00449{word-spacing:-21.874320px;}
.ws0_c00449{word-spacing:-21.815280px;}
.ws1_c00449{word-spacing:-21.768048px;}
.ws5_c00449{word-spacing:-21.043152px;}
.ws6_c00449{word-spacing:-20.016000px;}
.ws9_c00449{word-spacing:-17.739827px;}
.ws3_c00449{word-spacing:-17.630284px;}
.ws4_c00449{word-spacing:-17.575513px;}
.ws8_c00449{word-spacing:-17.411199px;}
.ws12_c00449{word-spacing:-17.356428px;}
.ws11_c00449{word-spacing:-17.301656px;}
.wse_c00449{word-spacing:-17.103888px;}
.wsa_c00449{word-spacing:-16.944480px;}
.ws10_c00449{word-spacing:-16.838208px;}
.wsc_c00449{word-spacing:-13.528944px;}
.wsd_c00449{word-spacing:-13.505184px;}
.wsb_c00449{word-spacing:-13.452912px;}
.ws7_c00449{word-spacing:-10.008000px;}
.ws13_c00449{word-spacing:0.000000px;}
._13_c00449{margin-left:-13.169376px;}
._14_c00449{margin-left:-11.149200px;}
._4_c00449{margin-left:-9.355392px;}
._3_c00449{margin-left:-8.104464px;}
._b_c00449{margin-left:-6.376320px;}
._a_c00449{margin-left:-5.372640px;}
._9_c00449{margin-left:-4.250880px;}
._7_c00449{margin-left:-2.715840px;}
._5_c00449{margin-left:-1.200960px;}
._0_c00449{width:1.440000px;}
._6_c00449{width:2.715840px;}
._8_c00449{width:3.798720px;}
._d_c00449{width:4.964256px;}
._c_c00449{width:6.128352px;}
._1_c00449{width:8.088480px;}
._2_c00449{width:9.324144px;}
._e_c00449{width:10.863360px;}
._12_c00449{width:12.312000px;}
._11_c00449{width:14.142240px;}
._10_c00449{width:15.665760px;}
._f_c00449{width:18.295488px;}
.fc0_c00449{color:rgb(0,0,0);}
.fs6_c00449{font-size:36.000000px;}
.fs5_c00449{font-size:41.760000px;}
.fs7_c00449{font-size:47.520000px;}
.fs4_c00449{font-size:56.160000px;}
.fs2_c00449{font-size:59.040000px;}
.fs8_c00449{font-size:60.000000px;}
.fs3_c00449{font-size:60.857039px;}
.fs0_c00449{font-size:72.000000px;}
.fs1_c00449{font-size:74.215901px;}
.y0_c00449{bottom:0.000000px;}
.y3e_c00449{bottom:3.120000px;}
.y3d_c00449{bottom:34.744580px;}
.y1_c00449{bottom:54.000000px;}
.y3c_c00449{bottom:55.481040px;}
.y3b_c00449{bottom:72.765000px;}
.y3a_c00449{bottom:72.766800px;}
.y38_c00449{bottom:90.402840px;}
.y39_c00449{bottom:90.405000px;}
.y37_c00449{bottom:107.686800px;}
.y36_c00449{bottom:125.325000px;}
.y35_c00449{bottom:125.326800px;}
.y34_c00449{bottom:142.965000px;}
.y33_c00449{bottom:149.085000px;}
.y32_c00449{bottom:160.245000px;}
.y31_c00449{bottom:166.365000px;}
.y30_c00449{bottom:177.885000px;}
.y2f_c00449{bottom:177.886800px;}
.y2e_c00449{bottom:195.525000px;}
.y2d_c00449{bottom:201.645000px;}
.y2c_c00449{bottom:212.805000px;}
.y2b_c00449{bottom:218.925000px;}
.y2a_c00449{bottom:245.565000px;}
.y29_c00449{bottom:304.245000px;}
.y28_c00449{bottom:325.125000px;}
.y27_c00449{bottom:361.125000px;}
.y26_c00449{bottom:382.005000px;}
.y25_c00449{bottom:402.885000px;}
.y24_c00449{bottom:424.125000px;}
.y23_c00449{bottom:445.005000px;}
.y22_c00449{bottom:466.245000px;}
.y21_c00449{bottom:502.245000px;}
.y20_c00449{bottom:538.245000px;}
.y1f_c00449{bottom:566.322480px;}
.y1e_c00449{bottom:583.960680px;}
.y1d_c00449{bottom:601.244640px;}
.y1c_c00449{bottom:618.882840px;}
.y1b_c00449{bottom:636.521040px;}
.y1a_c00449{bottom:653.805000px;}
.y19_c00449{bottom:653.806800px;}
.y18_c00449{bottom:671.445000px;}
.y17_c00449{bottom:696.285000px;}
.y16_c00449{bottom:696.286800px;}
.y14_c00449{bottom:713.921040px;}
.y15_c00449{bottom:713.925000px;}
.y13_c00449{bottom:731.205000px;}
.y12_c00449{bottom:731.206800px;}
.y11_c00449{bottom:748.845000px;}
.y10_c00449{bottom:748.849680px;}
.yf_c00449{bottom:774.045000px;}
.ye_c00449{bottom:798.885000px;}
.yd_c00449{bottom:798.886800px;}
.yc_c00449{bottom:816.525000px;}
.yb_c00449{bottom:841.725000px;}
.ya_c00449{bottom:870.525000px;}
.y9_c00449{bottom:899.325000px;}
.y8_c00449{bottom:934.965000px;}
.y7_c00449{bottom:970.965000px;}
.y6_c00449{bottom:991.845000px;}
.y5_c00449{bottom:1027.845000px;}
.y4_c00449{bottom:1049.085000px;}
.y3_c00449{bottom:1085.085000px;}
.y2_c00449{bottom:1138.365000px;}
.ha_c00449{height:19.255605px;}
.h9_c00449{height:32.616000px;}
.h7_c00449{height:46.981634px;}
.h5_c00449{height:47.988281px;}
.h6_c00449{height:53.490240px;}
.hb_c00449{height:56.640000px;}
.h4_c00449{height:57.294676px;}
.h3_c00449{height:65.232000px;}
.h8_c00449{height:68.074560px;}
.h2_c00449{height:1201.365000px;}
.h0_c00449{height:1262.835000px;}
.h1_c00449{height:1263.000000px;}
.w3_c00449{width:25.020000px;}
.w2_c00449{width:863.955000px;}
.w0_c00449{width:892.935000px;}
.w1_c00449{width:893.250000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:14.490000px;}
.x2_c00449{left:113.040150px;}
.x36_c00449{left:122.213700px;}
.x22_c00449{left:137.204250px;}
.x37_c00449{left:146.377800px;}
.x2e_c00449{left:149.722800px;}
.x28_c00449{left:153.543150px;}
.x3_c00449{left:167.037750px;}
.x2f_c00449{left:185.556450px;}
.x2d_c00449{left:193.030950px;}
.x2c_c00449{left:200.032800px;}
.x29_c00449{left:216.559950px;}
.x38_c00449{left:230.112000px;}
.x30_c00449{left:236.506650px;}
.x39_c00449{left:259.977900px;}
.x3c_c00449{left:266.816550px;}
.x4_c00449{left:283.138650px;}
.x31_c00449{left:289.019850px;}
.xf_c00449{left:313.824450px;}
.x2a_c00449{left:316.536300px;}
.x20_c00449{left:318.561000px;}
.x24_c00449{left:332.195850px;}
.x21_c00449{left:361.895100px;}
.x5_c00449{left:363.148350px;}
.x16_c00449{left:364.161600px;}
.x6_c00449{left:367.648350px;}
.x17_c00449{left:369.268800px;}
.x2b_c00449{left:376.546800px;}
.x34_c00449{left:396.335100px;}
.x35_c00449{left:416.329050px;}
.x25_c00449{left:419.188500px;}
.x26_c00449{left:424.192350px;}
.x7_c00449{left:432.663150px;}
.x3e_c00449{left:435.603450px;}
.x8_c00449{left:441.663150px;}
.x3f_c00449{left:455.597850px;}
.x3a_c00449{left:462.558450px;}
.x27_c00449{left:482.227350px;}
.x3b_c00449{left:489.614100px;}
.x18_c00449{left:496.321350px;}
.x9_c00449{left:497.659800px;}
.xa_c00449{left:502.159800px;}
.x19_c00449{left:521.295750px;}
.x32_c00449{left:545.946900px;}
.x3d_c00449{left:549.439800px;}
.x10_c00449{left:551.870400px;}
.x11_c00449{left:556.739550px;}
.xb_c00449{left:562.170450px;}
.x33_c00449{left:565.101600px;}
.xc_c00449{left:566.670450px;}
.x1a_c00449{left:590.795250px;}
.x1b_c00449{left:615.769800px;}
.xd_c00449{left:617.663850px;}
.xe_c00449{left:622.163850px;}
.x12_c00449{left:648.123000px;}
.x13_c00449{left:653.043000px;}
.x23_c00449{left:654.634650px;}
.x1c_c00449{left:663.512700px;}
.x1d_c00449{left:691.832100px;}
.x14_c00449{left:695.491650px;}
.x15_c00449{left:716.281200px;}
.x1e_c00449{left:731.235300px;}
.x1f_c00449{left:750.390000px;}
.x40_c00449{left:759.914612px;}
@media print{
.v2_c00449{vertical-align:-21.760000pt;}
.v0_c00449{vertical-align:0.000000pt;}
.v1_c00449{vertical-align:26.880000pt;}
.ls13_c00449{letter-spacing:0.000000pt;}
.lsf_c00449{letter-spacing:0.111680pt;}
.ls2c_c00449{letter-spacing:0.139392pt;}
.ls3_c00449{letter-spacing:0.209920pt;}
.ls29_c00449{letter-spacing:0.215424pt;}
.lsd_c00449{letter-spacing:0.224213pt;}
.ls11_c00449{letter-spacing:0.236160pt;}
.ls9_c00449{letter-spacing:0.257152pt;}
.ls2d_c00449{letter-spacing:0.261888pt;}
.ls8_c00449{letter-spacing:0.262400pt;}
.ls2b_c00449{letter-spacing:0.283008pt;}
.ls12_c00449{letter-spacing:0.283093pt;}
.ls1a_c00449{letter-spacing:0.283392pt;}
.ls2a_c00449{letter-spacing:0.308352pt;}
.ls31_c00449{letter-spacing:0.340799pt;}
.ls24_c00449{letter-spacing:0.367360pt;}
.ls21_c00449{letter-spacing:0.377856pt;}
.ls27_c00449{letter-spacing:0.389485pt;}
.lsb_c00449{letter-spacing:0.407147pt;}
.ls26_c00449{letter-spacing:0.425088pt;}
.ls23_c00449{letter-spacing:0.438171pt;}
.ls5_c00449{letter-spacing:0.472320pt;}
.ls14_c00449{letter-spacing:0.519552pt;}
.ls10_c00449{letter-spacing:0.520853pt;}
.ls1e_c00449{letter-spacing:0.535542pt;}
.lse_c00449{letter-spacing:0.576000pt;}
.ls7_c00449{letter-spacing:0.584228pt;}
.ls1f_c00449{letter-spacing:0.614016pt;}
.ls6_c00449{letter-spacing:0.632913pt;}
.ls1c_c00449{letter-spacing:0.661248pt;}
.lsc_c00449{letter-spacing:0.700480pt;}
.ls28_c00449{letter-spacing:0.708480pt;}
.ls25_c00449{letter-spacing:0.730284pt;}
.ls18_c00449{letter-spacing:0.855424pt;}
.ls2e_c00449{letter-spacing:2.802432pt;}
.ls1b_c00449{letter-spacing:2.902144pt;}
.ls1d_c00449{letter-spacing:3.568640pt;}
.ls16_c00449{letter-spacing:4.759936pt;}
.ls2_c00449{letter-spacing:4.775680pt;}
.ls15_c00449{letter-spacing:4.801920pt;}
.ls22_c00449{letter-spacing:4.827264pt;}
.ls19_c00449{letter-spacing:4.854400pt;}
.ls30_c00449{letter-spacing:4.948864pt;}
.ls20_c00449{letter-spacing:5.279488pt;}
.lsa_c00449{letter-spacing:5.311467pt;}
.ls1_c00449{letter-spacing:5.312000pt;}
.ls32_c00449{letter-spacing:5.730816pt;}
.ls33_c00449{letter-spacing:7.851008pt;}
.ls2f_c00449{letter-spacing:11.110016pt;}
.ls4_c00449{letter-spacing:12.385280pt;}
.ls17_c00449{letter-spacing:12.401024pt;}
.ls0_c00449{letter-spacing:48.768000pt;}
.wsf_c00449{word-spacing:-19.538304pt;}
.ws2_c00449{word-spacing:-19.443840pt;}
.ws0_c00449{word-spacing:-19.391360pt;}
.ws1_c00449{word-spacing:-19.349376pt;}
.ws5_c00449{word-spacing:-18.705024pt;}
.ws6_c00449{word-spacing:-17.792000pt;}
.ws9_c00449{word-spacing:-15.768735pt;}
.ws3_c00449{word-spacing:-15.671364pt;}
.ws4_c00449{word-spacing:-15.622678pt;}
.ws8_c00449{word-spacing:-15.476621pt;}
.ws12_c00449{word-spacing:-15.427936pt;}
.ws11_c00449{word-spacing:-15.379250pt;}
.wse_c00449{word-spacing:-15.203456pt;}
.wsa_c00449{word-spacing:-15.061760pt;}
.ws10_c00449{word-spacing:-14.967296pt;}
.wsc_c00449{word-spacing:-12.025728pt;}
.wsd_c00449{word-spacing:-12.004608pt;}
.wsb_c00449{word-spacing:-11.958144pt;}
.ws7_c00449{word-spacing:-8.896000pt;}
.ws13_c00449{word-spacing:0.000000pt;}
._13_c00449{margin-left:-11.706112pt;}
._14_c00449{margin-left:-9.910400pt;}
._4_c00449{margin-left:-8.315904pt;}
._3_c00449{margin-left:-7.203968pt;}
._b_c00449{margin-left:-5.667840pt;}
._a_c00449{margin-left:-4.775680pt;}
._9_c00449{margin-left:-3.778560pt;}
._7_c00449{margin-left:-2.414080pt;}
._5_c00449{margin-left:-1.067520pt;}
._0_c00449{width:1.280000pt;}
._6_c00449{width:2.414080pt;}
._8_c00449{width:3.376640pt;}
._d_c00449{width:4.412672pt;}
._c_c00449{width:5.447424pt;}
._1_c00449{width:7.189760pt;}
._2_c00449{width:8.288128pt;}
._e_c00449{width:9.656320pt;}
._12_c00449{width:10.944000pt;}
._11_c00449{width:12.570880pt;}
._10_c00449{width:13.925120pt;}
._f_c00449{width:16.262656pt;}
.fs6_c00449{font-size:32.000000pt;}
.fs5_c00449{font-size:37.120000pt;}
.fs7_c00449{font-size:42.240000pt;}
.fs4_c00449{font-size:49.920000pt;}
.fs2_c00449{font-size:52.480000pt;}
.fs8_c00449{font-size:53.333333pt;}
.fs3_c00449{font-size:54.095146pt;}
.fs0_c00449{font-size:64.000000pt;}
.fs1_c00449{font-size:65.969690pt;}
.y0_c00449{bottom:0.000000pt;}
.y3e_c00449{bottom:2.773333pt;}
.y3d_c00449{bottom:30.884071pt;}
.y1_c00449{bottom:48.000000pt;}
.y3c_c00449{bottom:49.316480pt;}
.y3b_c00449{bottom:64.680000pt;}
.y3a_c00449{bottom:64.681600pt;}
.y38_c00449{bottom:80.358080pt;}
.y39_c00449{bottom:80.360000pt;}
.y37_c00449{bottom:95.721600pt;}
.y36_c00449{bottom:111.400000pt;}
.y35_c00449{bottom:111.401600pt;}
.y34_c00449{bottom:127.080000pt;}
.y33_c00449{bottom:132.520000pt;}
.y32_c00449{bottom:142.440000pt;}
.y31_c00449{bottom:147.880000pt;}
.y30_c00449{bottom:158.120000pt;}
.y2f_c00449{bottom:158.121600pt;}
.y2e_c00449{bottom:173.800000pt;}
.y2d_c00449{bottom:179.240000pt;}
.y2c_c00449{bottom:189.160000pt;}
.y2b_c00449{bottom:194.600000pt;}
.y2a_c00449{bottom:218.280000pt;}
.y29_c00449{bottom:270.440000pt;}
.y28_c00449{bottom:289.000000pt;}
.y27_c00449{bottom:321.000000pt;}
.y26_c00449{bottom:339.560000pt;}
.y25_c00449{bottom:358.120000pt;}
.y24_c00449{bottom:377.000000pt;}
.y23_c00449{bottom:395.560000pt;}
.y22_c00449{bottom:414.440000pt;}
.y21_c00449{bottom:446.440000pt;}
.y20_c00449{bottom:478.440000pt;}
.y1f_c00449{bottom:503.397760pt;}
.y1e_c00449{bottom:519.076160pt;}
.y1d_c00449{bottom:534.439680pt;}
.y1c_c00449{bottom:550.118080pt;}
.y1b_c00449{bottom:565.796480pt;}
.y1a_c00449{bottom:581.160000pt;}
.y19_c00449{bottom:581.161600pt;}
.y18_c00449{bottom:596.840000pt;}
.y17_c00449{bottom:618.920000pt;}
.y16_c00449{bottom:618.921600pt;}
.y14_c00449{bottom:634.596480pt;}
.y15_c00449{bottom:634.600000pt;}
.y13_c00449{bottom:649.960000pt;}
.y12_c00449{bottom:649.961600pt;}
.y11_c00449{bottom:665.640000pt;}
.y10_c00449{bottom:665.644160pt;}
.yf_c00449{bottom:688.040000pt;}
.ye_c00449{bottom:710.120000pt;}
.yd_c00449{bottom:710.121600pt;}
.yc_c00449{bottom:725.800000pt;}
.yb_c00449{bottom:748.200000pt;}
.ya_c00449{bottom:773.800000pt;}
.y9_c00449{bottom:799.400000pt;}
.y8_c00449{bottom:831.080000pt;}
.y7_c00449{bottom:863.080000pt;}
.y6_c00449{bottom:881.640000pt;}
.y5_c00449{bottom:913.640000pt;}
.y4_c00449{bottom:932.520000pt;}
.y3_c00449{bottom:964.520000pt;}
.y2_c00449{bottom:1011.880000pt;}
.ha_c00449{height:17.116093pt;}
.h9_c00449{height:28.992000pt;}
.h7_c00449{height:41.761453pt;}
.h5_c00449{height:42.656250pt;}
.h6_c00449{height:47.546880pt;}
.hb_c00449{height:50.346667pt;}
.h4_c00449{height:50.928601pt;}
.h3_c00449{height:57.984000pt;}
.h8_c00449{height:60.510720pt;}
.h2_c00449{height:1067.880000pt;}
.h0_c00449{height:1122.520000pt;}
.h1_c00449{height:1122.666667pt;}
.w3_c00449{width:22.240000pt;}
.w2_c00449{width:767.960000pt;}
.w0_c00449{width:793.720000pt;}
.w1_c00449{width:794.000000pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:12.880000pt;}
.x2_c00449{left:100.480133pt;}
.x36_c00449{left:108.634400pt;}
.x22_c00449{left:121.959333pt;}
.x37_c00449{left:130.113600pt;}
.x2e_c00449{left:133.086933pt;}
.x28_c00449{left:136.482800pt;}
.x3_c00449{left:148.478000pt;}
.x2f_c00449{left:164.939067pt;}
.x2d_c00449{left:171.583067pt;}
.x2c_c00449{left:177.806933pt;}
.x29_c00449{left:192.497733pt;}
.x38_c00449{left:204.544000pt;}
.x30_c00449{left:210.228133pt;}
.x39_c00449{left:231.091467pt;}
.x3c_c00449{left:237.170267pt;}
.x4_c00449{left:251.678800pt;}
.x31_c00449{left:256.906533pt;}
.xf_c00449{left:278.955067pt;}
.x2a_c00449{left:281.365600pt;}
.x20_c00449{left:283.165333pt;}
.x24_c00449{left:295.285200pt;}
.x21_c00449{left:321.684533pt;}
.x5_c00449{left:322.798533pt;}
.x16_c00449{left:323.699200pt;}
.x6_c00449{left:326.798533pt;}
.x17_c00449{left:328.238933pt;}
.x2b_c00449{left:334.708267pt;}
.x34_c00449{left:352.297867pt;}
.x35_c00449{left:370.070267pt;}
.x25_c00449{left:372.612000pt;}
.x26_c00449{left:377.059867pt;}
.x7_c00449{left:384.589467pt;}
.x3e_c00449{left:387.203067pt;}
.x8_c00449{left:392.589467pt;}
.x3f_c00449{left:404.975867pt;}
.x3a_c00449{left:411.163067pt;}
.x27_c00449{left:428.646533pt;}
.x3b_c00449{left:435.212533pt;}
.x18_c00449{left:441.174533pt;}
.x9_c00449{left:442.364267pt;}
.xa_c00449{left:446.364267pt;}
.x19_c00449{left:463.374000pt;}
.x32_c00449{left:485.286133pt;}
.x3d_c00449{left:488.390933pt;}
.x10_c00449{left:490.551467pt;}
.x11_c00449{left:494.879600pt;}
.xb_c00449{left:499.707067pt;}
.x33_c00449{left:502.312533pt;}
.xc_c00449{left:503.707067pt;}
.x1a_c00449{left:525.151333pt;}
.x1b_c00449{left:547.350933pt;}
.xd_c00449{left:549.034533pt;}
.xe_c00449{left:553.034533pt;}
.x12_c00449{left:576.109333pt;}
.x13_c00449{left:580.482667pt;}
.x23_c00449{left:581.897467pt;}
.x1c_c00449{left:589.789067pt;}
.x1d_c00449{left:614.961867pt;}
.x14_c00449{left:618.214800pt;}
.x15_c00449{left:636.694400pt;}
.x1e_c00449{left:649.986933pt;}
.x1f_c00449{left:667.013333pt;}
.x40_c00449{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed0d3b31c5dfd90b6b6c6237.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_8e317ab3a295f2bfd19953b4.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;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:ff3_c00450;src:url('chunks/assets/font_6a85d896eb87c130081cf2a3.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00450{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00450{vertical-align:-24.480000px;}
.v0_c00450{vertical-align:0.000000px;}
.v1_c00450{vertical-align:30.240000px;}
.ls5_c00450{letter-spacing:0.000000px;}
.ls2_c00450{letter-spacing:0.265680px;}
.lsa_c00450{letter-spacing:0.478224px;}
.ls7_c00450{letter-spacing:0.492942px;}
.ls0_c00450{letter-spacing:0.525840px;}
.ls8_c00450{letter-spacing:0.712027px;}
.ls3_c00450{letter-spacing:5.254560px;}
.ls6_c00450{letter-spacing:5.335200px;}
.ls9_c00450{letter-spacing:5.567472px;}
.ls1_c00450{letter-spacing:5.955600px;}
.ls4_c00450{letter-spacing:5.976000px;}
.sc__c00450{text-shadow:none;}
.sc1_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00450{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc1_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00450{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00450{word-spacing:-21.980592px;}
.ws0_c00450{word-spacing:-20.947680px;}
.ws2_c00450{word-spacing:-17.411199px;}
.ws1_c00450{word-spacing:-10.008000px;}
.ws4_c00450{word-spacing:0.000000px;}
._8_c00450{margin-left:-1.034570px;}
._7_c00450{width:1.512000px;}
._4_c00450{width:3.384000px;}
._5_c00450{width:4.536000px;}
._2_c00450{width:5.544000px;}
._0_c00450{width:12.816000px;}
._6_c00450{width:14.760000px;}
._1_c00450{width:17.496000px;}
._3_c00450{width:37.008000px;}
.fc0_c00450{color:rgb(0,0,0);}
.fs4_c00450{font-size:36.000000px;}
.fs1_c00450{font-size:41.760000px;}
.fs3_c00450{font-size:56.160000px;}
.fs5_c00450{font-size:59.040000px;}
.fs7_c00450{font-size:60.000000px;}
.fs6_c00450{font-size:60.857039px;}
.fs0_c00450{font-size:72.000000px;}
.fs2_c00450{font-size:74.215901px;}
.y0_c00450{bottom:0.000000px;}
.y17_c00450{bottom:3.120000px;}
.y16_c00450{bottom:34.744580px;}
.y1_c00450{bottom:54.000000px;}
.y15_c00450{bottom:55.485000px;}
.y14_c00450{bottom:61.605000px;}
.y13_c00450{bottom:88.245000px;}
.y12_c00450{bottom:680.085000px;}
.y11_c00450{bottom:716.085000px;}
.y10_c00450{bottom:736.965000px;}
.yf_c00450{bottom:757.845000px;}
.ye_c00450{bottom:793.845000px;}
.yd_c00450{bottom:829.845000px;}
.yc_c00450{bottom:865.845000px;}
.yb_c00450{bottom:887.085000px;}
.ya_c00450{bottom:907.965000px;}
.y9_c00450{bottom:928.845000px;}
.y8_c00450{bottom:964.845000px;}
.y7_c00450{bottom:986.085000px;}
.y6_c00450{bottom:1006.965000px;}
.y5_c00450{bottom:1027.845000px;}
.y4_c00450{bottom:1063.845000px;}
.y3_c00450{bottom:1085.085000px;}
.y2_c00450{bottom:1138.365000px;}
.h9_c00450{height:19.255605px;}
.h6_c00450{height:32.616000px;}
.h7_c00450{height:46.981634px;}
.h8_c00450{height:53.490240px;}
.ha_c00450{height:56.640000px;}
.h5_c00450{height:57.294676px;}
.h3_c00450{height:65.232000px;}
.h4_c00450{height:68.074560px;}
.h2_c00450{height:1201.365000px;}
.h0_c00450{height:1262.835000px;}
.h1_c00450{height:1263.000000px;}
.w3_c00450{width:25.020000px;}
.w2_c00450{width:863.955000px;}
.w0_c00450{width:892.935000px;}
.w1_c00450{width:893.250000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:14.490000px;}
.x2_c00450{left:113.040150px;}
.x5_c00450{left:231.410100px;}
.x6_c00450{left:270.588900px;}
.x3_c00450{left:286.638450px;}
.x7_c00450{left:349.771050px;}
.x4_c00450{left:373.631100px;}
.x8_c00450{left:759.914612px;}
@media print{
.v2_c00450{vertical-align:-21.760000pt;}
.v0_c00450{vertical-align:0.000000pt;}
.v1_c00450{vertical-align:26.880000pt;}
.ls5_c00450{letter-spacing:0.000000pt;}
.ls2_c00450{letter-spacing:0.236160pt;}
.lsa_c00450{letter-spacing:0.425088pt;}
.ls7_c00450{letter-spacing:0.438171pt;}
.ls0_c00450{letter-spacing:0.467413pt;}
.ls8_c00450{letter-spacing:0.632913pt;}
.ls3_c00450{letter-spacing:4.670720pt;}
.ls6_c00450{letter-spacing:4.742400pt;}
.ls9_c00450{letter-spacing:4.948864pt;}
.ls1_c00450{letter-spacing:5.293867pt;}
.ls4_c00450{letter-spacing:5.312000pt;}
.ws3_c00450{word-spacing:-19.538304pt;}
.ws0_c00450{word-spacing:-18.620160pt;}
.ws2_c00450{word-spacing:-15.476621pt;}
.ws1_c00450{word-spacing:-8.896000pt;}
.ws4_c00450{word-spacing:0.000000pt;}
._8_c00450{margin-left:-0.919617pt;}
._7_c00450{width:1.344000pt;}
._4_c00450{width:3.008000pt;}
._5_c00450{width:4.032000pt;}
._2_c00450{width:4.928000pt;}
._0_c00450{width:11.392000pt;}
._6_c00450{width:13.120000pt;}
._1_c00450{width:15.552000pt;}
._3_c00450{width:32.896000pt;}
.fs4_c00450{font-size:32.000000pt;}
.fs1_c00450{font-size:37.120000pt;}
.fs3_c00450{font-size:49.920000pt;}
.fs5_c00450{font-size:52.480000pt;}
.fs7_c00450{font-size:53.333333pt;}
.fs6_c00450{font-size:54.095146pt;}
.fs0_c00450{font-size:64.000000pt;}
.fs2_c00450{font-size:65.969690pt;}
.y0_c00450{bottom:0.000000pt;}
.y17_c00450{bottom:2.773333pt;}
.y16_c00450{bottom:30.884071pt;}
.y1_c00450{bottom:48.000000pt;}
.y15_c00450{bottom:49.320000pt;}
.y14_c00450{bottom:54.760000pt;}
.y13_c00450{bottom:78.440000pt;}
.y12_c00450{bottom:604.520000pt;}
.y11_c00450{bottom:636.520000pt;}
.y10_c00450{bottom:655.080000pt;}
.yf_c00450{bottom:673.640000pt;}
.ye_c00450{bottom:705.640000pt;}
.yd_c00450{bottom:737.640000pt;}
.yc_c00450{bottom:769.640000pt;}
.yb_c00450{bottom:788.520000pt;}
.ya_c00450{bottom:807.080000pt;}
.y9_c00450{bottom:825.640000pt;}
.y8_c00450{bottom:857.640000pt;}
.y7_c00450{bottom:876.520000pt;}
.y6_c00450{bottom:895.080000pt;}
.y5_c00450{bottom:913.640000pt;}
.y4_c00450{bottom:945.640000pt;}
.y3_c00450{bottom:964.520000pt;}
.y2_c00450{bottom:1011.880000pt;}
.h9_c00450{height:17.116093pt;}
.h6_c00450{height:28.992000pt;}
.h7_c00450{height:41.761453pt;}
.h8_c00450{height:47.546880pt;}
.ha_c00450{height:50.346667pt;}
.h5_c00450{height:50.928601pt;}
.h3_c00450{height:57.984000pt;}
.h4_c00450{height:60.510720pt;}
.h2_c00450{height:1067.880000pt;}
.h0_c00450{height:1122.520000pt;}
.h1_c00450{height:1122.666667pt;}
.w3_c00450{width:22.240000pt;}
.w2_c00450{width:767.960000pt;}
.w0_c00450{width:793.720000pt;}
.w1_c00450{width:794.000000pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:12.880000pt;}
.x2_c00450{left:100.480133pt;}
.x5_c00450{left:205.697867pt;}
.x6_c00450{left:240.523467pt;}
.x3_c00450{left:254.789733pt;}
.x7_c00450{left:310.907600pt;}
.x4_c00450{left:332.116533pt;}
.x8_c00450{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fce7f5c0abe14d9c29d17a1c.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;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_c00451;src:url('chunks/assets/font_fd76293285d9eb72c15ee263.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls3_c00451{letter-spacing:0.000000px;}
.ls5_c00451{letter-spacing:0.202464px;}
.ls6_c00451{letter-spacing:0.239760px;}
.ls0_c00451{letter-spacing:0.280080px;}
.ls4_c00451{letter-spacing:0.399600px;}
.ls1_c00451{letter-spacing:0.399720px;}
.ls2_c00451{letter-spacing:5.976000px;}
.sc__c00451{text-shadow:none;}
.sc1_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00451{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc1_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00451{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00451{word-spacing:-15.211440px;}
.ws1_c00451{word-spacing:-15.051600px;}
.ws2_c00451{word-spacing:0.000000px;}
._0_c00451{margin-left:-1.149168px;}
._1_c00451{width:1.173840px;}
.fc1_c00451{color:transparent;}
.fc0_c00451{color:rgb(0,0,0);}
.fs1_c00451{font-size:53.280000px;}
.fs2_c00451{font-size:60.000000px;}
.fs0_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y24_c00451{bottom:3.120000px;}
.y20_c00451{bottom:14.399850px;}
.y22_c00451{bottom:14.400000px;}
.y23_c00451{bottom:34.744580px;}
.y1_c00451{bottom:54.000000px;}
.y1e_c00451{bottom:91.845000px;}
.y1d_c00451{bottom:127.845000px;}
.y1c_c00451{bottom:163.845000px;}
.y1b_c00451{bottom:199.845000px;}
.y1a_c00451{bottom:235.845000px;}
.y19_c00451{bottom:271.845000px;}
.y18_c00451{bottom:328.725000px;}
.y21_c00451{bottom:346.365000px;}
.y17_c00451{bottom:364.725000px;}
.y16_c00451{bottom:400.725000px;}
.y15_c00451{bottom:436.725000px;}
.y14_c00451{bottom:472.725000px;}
.y13_c00451{bottom:509.085000px;}
.y12_c00451{bottom:545.085000px;}
.y11_c00451{bottom:581.085000px;}
.y10_c00451{bottom:617.085000px;}
.yf_c00451{bottom:653.085000px;}
.ye_c00451{bottom:689.085000px;}
.yd_c00451{bottom:725.085000px;}
.yc_c00451{bottom:761.085000px;}
.yb_c00451{bottom:797.085000px;}
.ya_c00451{bottom:833.085000px;}
.y9_c00451{bottom:869.085000px;}
.y8_c00451{bottom:905.085000px;}
.y1f_c00451{bottom:913.365000px;}
.y7_c00451{bottom:941.085000px;}
.y6_c00451{bottom:977.085000px;}
.y5_c00451{bottom:1013.085000px;}
.y4_c00451{bottom:1049.085000px;}
.y3_c00451{bottom:1085.085000px;}
.y2_c00451{bottom:1138.365000px;}
.h6_c00451{height:19.255605px;}
.h4_c00451{height:27.000000px;}
.h5_c00451{height:41.132160px;}
.h3_c00451{height:55.584000px;}
.h7_c00451{height:56.640000px;}
.h2_c00451{height:1201.365000px;}
.h0_c00451{height:1262.835000px;}
.h1_c00451{height:1263.000000px;}
.w4_c00451{width:25.020000px;}
.w3_c00451{width:655.920000px;}
.w2_c00451{width:863.955000px;}
.w0_c00451{width:892.935000px;}
.w1_c00451{width:893.250000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:14.490000px;}
.x2_c00451{left:113.040150px;}
.x5_c00451{left:117.375000px;}
.x3_c00451{left:122.850000px;}
.x4_c00451{left:208.882950px;}
.x6_c00451{left:759.914612px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls3_c00451{letter-spacing:0.000000pt;}
.ls5_c00451{letter-spacing:0.179968pt;}
.ls6_c00451{letter-spacing:0.213120pt;}
.ls0_c00451{letter-spacing:0.248960pt;}
.ls4_c00451{letter-spacing:0.355200pt;}
.ls1_c00451{letter-spacing:0.355307pt;}
.ls2_c00451{letter-spacing:5.312000pt;}
.ws0_c00451{word-spacing:-13.521280pt;}
.ws1_c00451{word-spacing:-13.379200pt;}
.ws2_c00451{word-spacing:0.000000pt;}
._0_c00451{margin-left:-1.021483pt;}
._1_c00451{width:1.043413pt;}
.fs1_c00451{font-size:47.360000pt;}
.fs2_c00451{font-size:53.333333pt;}
.fs0_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y24_c00451{bottom:2.773333pt;}
.y20_c00451{bottom:12.799867pt;}
.y22_c00451{bottom:12.800000pt;}
.y23_c00451{bottom:30.884071pt;}
.y1_c00451{bottom:48.000000pt;}
.y1e_c00451{bottom:81.640000pt;}
.y1d_c00451{bottom:113.640000pt;}
.y1c_c00451{bottom:145.640000pt;}
.y1b_c00451{bottom:177.640000pt;}
.y1a_c00451{bottom:209.640000pt;}
.y19_c00451{bottom:241.640000pt;}
.y18_c00451{bottom:292.200000pt;}
.y21_c00451{bottom:307.880000pt;}
.y17_c00451{bottom:324.200000pt;}
.y16_c00451{bottom:356.200000pt;}
.y15_c00451{bottom:388.200000pt;}
.y14_c00451{bottom:420.200000pt;}
.y13_c00451{bottom:452.520000pt;}
.y12_c00451{bottom:484.520000pt;}
.y11_c00451{bottom:516.520000pt;}
.y10_c00451{bottom:548.520000pt;}
.yf_c00451{bottom:580.520000pt;}
.ye_c00451{bottom:612.520000pt;}
.yd_c00451{bottom:644.520000pt;}
.yc_c00451{bottom:676.520000pt;}
.yb_c00451{bottom:708.520000pt;}
.ya_c00451{bottom:740.520000pt;}
.y9_c00451{bottom:772.520000pt;}
.y8_c00451{bottom:804.520000pt;}
.y1f_c00451{bottom:811.880000pt;}
.y7_c00451{bottom:836.520000pt;}
.y6_c00451{bottom:868.520000pt;}
.y5_c00451{bottom:900.520000pt;}
.y4_c00451{bottom:932.520000pt;}
.y3_c00451{bottom:964.520000pt;}
.y2_c00451{bottom:1011.880000pt;}
.h6_c00451{height:17.116093pt;}
.h4_c00451{height:24.000000pt;}
.h5_c00451{height:36.561920pt;}
.h3_c00451{height:49.408000pt;}
.h7_c00451{height:50.346667pt;}
.h2_c00451{height:1067.880000pt;}
.h0_c00451{height:1122.520000pt;}
.h1_c00451{height:1122.666667pt;}
.w4_c00451{width:22.240000pt;}
.w3_c00451{width:583.040000pt;}
.w2_c00451{width:767.960000pt;}
.w0_c00451{width:793.720000pt;}
.w1_c00451{width:794.000000pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:12.880000pt;}
.x2_c00451{left:100.480133pt;}
.x5_c00451{left:104.333333pt;}
.x3_c00451{left:109.200000pt;}
.x4_c00451{left:185.673733pt;}
.x6_c00451{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a197d85d7c6b23ed9dc1e330.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_a17c1f87c215eef3d248dc4c.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;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:ff3_c00452;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_94ebcf710eb7ce262e8e3516.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00452{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00452{vertical-align:-30.240000px;}
.v2_c00452{vertical-align:-27.360000px;}
.v0_c00452{vertical-align:0.000000px;}
.ls5_c00452{letter-spacing:0.000000px;}
.ls4_c00452{letter-spacing:0.066120px;}
.ls8_c00452{letter-spacing:0.531360px;}
.ls6_c00452{letter-spacing:5.430672px;}
.ls0_c00452{letter-spacing:5.976000px;}
.ls2_c00452{letter-spacing:5.980200px;}
.ls1_c00452{letter-spacing:6.036600px;}
.ls7_c00452{letter-spacing:13.115520px;}
.ls3_c00452{letter-spacing:54.864000px;}
.sc__c00452{text-shadow:none;}
.sc1_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00452{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc1_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00452{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00452{word-spacing:-21.043152px;}
.ws2_c00452{word-spacing:-18.545760px;}
.ws0_c00452{word-spacing:-11.609280px;}
.ws3_c00452{word-spacing:0.000000px;}
._c_c00452{margin-left:-13.543200px;}
._b_c00452{margin-left:-12.247200px;}
._4_c00452{margin-left:-1.179360px;}
._3_c00452{width:1.368000px;}
._0_c00452{width:2.664000px;}
._8_c00452{width:3.744000px;}
._9_c00452{width:4.824000px;}
._5_c00452{width:6.048000px;}
._1_c00452{width:13.968000px;}
._6_c00452{width:15.696000px;}
._7_c00452{width:16.776000px;}
._2_c00452{width:37.152000px;}
._a_c00452{width:39.672000px;}
.fc0_c00452{color:rgb(0,0,0);}
.fs4_c00452{font-size:38.880000px;}
.fs2_c00452{font-size:41.760000px;}
.fs3_c00452{font-size:56.160000px;}
.fs6_c00452{font-size:60.000000px;}
.fs5_c00452{font-size:64.800000px;}
.fs0_c00452{font-size:72.000000px;}
.fs1_c00452{font-size:74.215901px;}
.y0_c00452{bottom:0.000000px;}
.y2a_c00452{bottom:3.120000px;}
.y29_c00452{bottom:34.744580px;}
.y1_c00452{bottom:54.000000px;}
.y28_c00452{bottom:55.485000px;}
.y27_c00452{bottom:81.765000px;}
.y26_c00452{bottom:109.125000px;}
.y25_c00452{bottom:132.165000px;}
.y24_c00452{bottom:153.405000px;}
.y23_c00452{bottom:174.285000px;}
.y22_c00452{bottom:210.285000px;}
.y21_c00452{bottom:231.165000px;}
.y20_c00452{bottom:267.165000px;}
.y1f_c00452{bottom:303.165000px;}
.y1e_c00452{bottom:324.405000px;}
.y1d_c00452{bottom:360.405000px;}
.y1c_c00452{bottom:396.405000px;}
.y1b_c00452{bottom:432.405000px;}
.y1a_c00452{bottom:453.285000px;}
.y19_c00452{bottom:474.525000px;}
.y18_c00452{bottom:495.405000px;}
.y17_c00452{bottom:516.285000px;}
.y16_c00452{bottom:537.525000px;}
.y15_c00452{bottom:558.405000px;}
.y14_c00452{bottom:579.285000px;}
.y13_c00452{bottom:615.285000px;}
.y12_c00452{bottom:651.285000px;}
.y11_c00452{bottom:672.525000px;}
.y10_c00452{bottom:708.525000px;}
.yf_c00452{bottom:744.525000px;}
.ye_c00452{bottom:780.525000px;}
.yd_c00452{bottom:816.525000px;}
.yc_c00452{bottom:852.525000px;}
.yb_c00452{bottom:888.525000px;}
.ya_c00452{bottom:909.405000px;}
.y9_c00452{bottom:930.645000px;}
.y8_c00452{bottom:966.645000px;}
.y6_c00452{bottom:987.525000px;}
.y7_c00452{bottom:995.085000px;}
.y5_c00452{bottom:1008.405000px;}
.y4_c00452{bottom:1044.405000px;}
.y3_c00452{bottom:1082.925000px;}
.y2_c00452{bottom:1138.365000px;}
.h8_c00452{height:19.255605px;}
.h6_c00452{height:35.225280px;}
.h5_c00452{height:37.834560px;}
.h9_c00452{height:56.640000px;}
.h4_c00452{height:57.294676px;}
.h7_c00452{height:58.708800px;}
.h3_c00452{height:65.232000px;}
.h2_c00452{height:1201.365000px;}
.h0_c00452{height:1262.835000px;}
.h1_c00452{height:1263.000000px;}
.w3_c00452{width:25.020000px;}
.w2_c00452{width:863.955000px;}
.w0_c00452{width:892.935000px;}
.w1_c00452{width:893.250000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:14.490000px;}
.x2_c00452{left:113.040150px;}
.x8_c00452{left:140.037600px;}
.x4_c00452{left:212.515200px;}
.x5_c00452{left:344.160000px;}
.x3_c00452{left:413.967000px;}
.x6_c00452{left:580.935750px;}
.x7_c00452{left:652.970550px;}
.x9_c00452{left:759.914612px;}
@media print{
.v1_c00452{vertical-align:-26.880000pt;}
.v2_c00452{vertical-align:-24.320000pt;}
.v0_c00452{vertical-align:0.000000pt;}
.ls5_c00452{letter-spacing:0.000000pt;}
.ls4_c00452{letter-spacing:0.058773pt;}
.ls8_c00452{letter-spacing:0.472320pt;}
.ls6_c00452{letter-spacing:4.827264pt;}
.ls0_c00452{letter-spacing:5.312000pt;}
.ls2_c00452{letter-spacing:5.315733pt;}
.ls1_c00452{letter-spacing:5.365867pt;}
.ls7_c00452{letter-spacing:11.658240pt;}
.ls3_c00452{letter-spacing:48.768000pt;}
.ws1_c00452{word-spacing:-18.705024pt;}
.ws2_c00452{word-spacing:-16.485120pt;}
.ws0_c00452{word-spacing:-10.319360pt;}
.ws3_c00452{word-spacing:0.000000pt;}
._c_c00452{margin-left:-12.038400pt;}
._b_c00452{margin-left:-10.886400pt;}
._4_c00452{margin-left:-1.048320pt;}
._3_c00452{width:1.216000pt;}
._0_c00452{width:2.368000pt;}
._8_c00452{width:3.328000pt;}
._9_c00452{width:4.288000pt;}
._5_c00452{width:5.376000pt;}
._1_c00452{width:12.416000pt;}
._6_c00452{width:13.952000pt;}
._7_c00452{width:14.912000pt;}
._2_c00452{width:33.024000pt;}
._a_c00452{width:35.264000pt;}
.fs4_c00452{font-size:34.560000pt;}
.fs2_c00452{font-size:37.120000pt;}
.fs3_c00452{font-size:49.920000pt;}
.fs6_c00452{font-size:53.333333pt;}
.fs5_c00452{font-size:57.600000pt;}
.fs0_c00452{font-size:64.000000pt;}
.fs1_c00452{font-size:65.969690pt;}
.y0_c00452{bottom:0.000000pt;}
.y2a_c00452{bottom:2.773333pt;}
.y29_c00452{bottom:30.884071pt;}
.y1_c00452{bottom:48.000000pt;}
.y28_c00452{bottom:49.320000pt;}
.y27_c00452{bottom:72.680000pt;}
.y26_c00452{bottom:97.000000pt;}
.y25_c00452{bottom:117.480000pt;}
.y24_c00452{bottom:136.360000pt;}
.y23_c00452{bottom:154.920000pt;}
.y22_c00452{bottom:186.920000pt;}
.y21_c00452{bottom:205.480000pt;}
.y20_c00452{bottom:237.480000pt;}
.y1f_c00452{bottom:269.480000pt;}
.y1e_c00452{bottom:288.360000pt;}
.y1d_c00452{bottom:320.360000pt;}
.y1c_c00452{bottom:352.360000pt;}
.y1b_c00452{bottom:384.360000pt;}
.y1a_c00452{bottom:402.920000pt;}
.y19_c00452{bottom:421.800000pt;}
.y18_c00452{bottom:440.360000pt;}
.y17_c00452{bottom:458.920000pt;}
.y16_c00452{bottom:477.800000pt;}
.y15_c00452{bottom:496.360000pt;}
.y14_c00452{bottom:514.920000pt;}
.y13_c00452{bottom:546.920000pt;}
.y12_c00452{bottom:578.920000pt;}
.y11_c00452{bottom:597.800000pt;}
.y10_c00452{bottom:629.800000pt;}
.yf_c00452{bottom:661.800000pt;}
.ye_c00452{bottom:693.800000pt;}
.yd_c00452{bottom:725.800000pt;}
.yc_c00452{bottom:757.800000pt;}
.yb_c00452{bottom:789.800000pt;}
.ya_c00452{bottom:808.360000pt;}
.y9_c00452{bottom:827.240000pt;}
.y8_c00452{bottom:859.240000pt;}
.y6_c00452{bottom:877.800000pt;}
.y7_c00452{bottom:884.520000pt;}
.y5_c00452{bottom:896.360000pt;}
.y4_c00452{bottom:928.360000pt;}
.y3_c00452{bottom:962.600000pt;}
.y2_c00452{bottom:1011.880000pt;}
.h8_c00452{height:17.116093pt;}
.h6_c00452{height:31.311360pt;}
.h5_c00452{height:33.630720pt;}
.h9_c00452{height:50.346667pt;}
.h4_c00452{height:50.928601pt;}
.h7_c00452{height:52.185600pt;}
.h3_c00452{height:57.984000pt;}
.h2_c00452{height:1067.880000pt;}
.h0_c00452{height:1122.520000pt;}
.h1_c00452{height:1122.666667pt;}
.w3_c00452{width:22.240000pt;}
.w2_c00452{width:767.960000pt;}
.w0_c00452{width:793.720000pt;}
.w1_c00452{width:794.000000pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:12.880000pt;}
.x2_c00452{left:100.480133pt;}
.x8_c00452{left:124.477867pt;}
.x4_c00452{left:188.902400pt;}
.x5_c00452{left:305.920000pt;}
.x3_c00452{left:367.970667pt;}
.x6_c00452{left:516.387333pt;}
.x7_c00452{left:580.418267pt;}
.x9_c00452{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a40b6e95bca62ec7c99f91f6.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_848f03113218240a50efd3f9.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_0bec6b0fbcd1446ae1d970d9.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;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:ff4_c00453;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_773b1698c7adb0d6b39153eb.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00453;src:url('chunks/assets/font_94ebcf710eb7ce262e8e3516.woff2')format("woff");}.ff6_c00453{font-family:ff6_c00453;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00453{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00453{vertical-align:-27.360000px;}
.v0_c00453{vertical-align:0.000000px;}
.v1_c00453{vertical-align:24.480000px;}
.v2_c00453{vertical-align:30.240000px;}
.lsc_c00453{letter-spacing:0.000000px;}
.lsb_c00453{letter-spacing:0.066120px;}
.ls6_c00453{letter-spacing:0.236160px;}
.lse_c00453{letter-spacing:0.265680px;}
.ls7_c00453{letter-spacing:0.295200px;}
.ls9_c00453{letter-spacing:0.297000px;}
.ls16_c00453{letter-spacing:0.330480px;}
.ls3_c00453{letter-spacing:0.531360px;}
.ls4_c00453{letter-spacing:0.560880px;}
.lsd_c00453{letter-spacing:0.584496px;}
.ls12_c00453{letter-spacing:0.602485px;}
.ls5_c00453{letter-spacing:0.657256px;}
.ls17_c00453{letter-spacing:0.687981px;}
.ls13_c00453{letter-spacing:0.690768px;}
.ls2_c00453{letter-spacing:0.712027px;}
.lsf_c00453{letter-spacing:0.743904px;}
.ls11_c00453{letter-spacing:2.273040px;}
.ls1_c00453{letter-spacing:5.254560px;}
.ls15_c00453{letter-spacing:5.335200px;}
.ls14_c00453{letter-spacing:5.430672px;}
.lsa_c00453{letter-spacing:5.962200px;}
.ls8_c00453{letter-spacing:5.975400px;}
.ls0_c00453{letter-spacing:5.976000px;}
.ls10_c00453{letter-spacing:11.081808px;}
.sc__c00453{text-shadow:none;}
.sc1_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00453{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc1_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00453{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00453{word-spacing:-21.043152px;}
.ws5_c00453{word-spacing:-20.947680px;}
.ws0_c00453{word-spacing:-17.630284px;}
.ws1_c00453{word-spacing:-17.575513px;}
.ws2_c00453{word-spacing:-16.944480px;}
.ws4_c00453{word-spacing:-11.609280px;}
.ws6_c00453{word-spacing:0.000000px;}
._3_c00453{margin-left:-10.568160px;}
._1_c00453{margin-left:-1.322496px;}
._5_c00453{width:1.027296px;}
._4_c00453{width:2.030976px;}
._a_c00453{width:3.036096px;}
._9_c00453{width:4.456800px;}
._8_c00453{width:6.199200px;}
._7_c00453{width:7.970400px;}
._2_c00453{width:9.859680px;}
._c_c00453{width:11.520000px;}
._0_c00453{width:13.104000px;}
._6_c00453{width:14.266944px;}
._b_c00453{width:15.768000px;}
._d_c00453{width:17.496000px;}
.fc0_c00453{color:rgb(0,0,0);}
.fs4_c00453{font-size:36.000000px;}
.fs7_c00453{font-size:38.880000px;}
.fs6_c00453{font-size:41.760000px;}
.fs5_c00453{font-size:56.160000px;}
.fs2_c00453{font-size:59.040000px;}
.fsa_c00453{font-size:60.000000px;}
.fs3_c00453{font-size:60.857039px;}
.fs8_c00453{font-size:64.800000px;}
.fs9_c00453{font-size:66.794311px;}
.fs0_c00453{font-size:72.000000px;}
.fs1_c00453{font-size:74.215901px;}
.y0_c00453{bottom:0.000000px;}
.y2b_c00453{bottom:3.120000px;}
.y2a_c00453{bottom:34.744580px;}
.y1_c00453{bottom:54.000000px;}
.y29_c00453{bottom:55.485000px;}
.y28_c00453{bottom:62.325000px;}
.y27_c00453{bottom:89.685000px;}
.y26_c00453{bottom:218.925000px;}
.y25_c00453{bottom:254.925000px;}
.y24_c00453{bottom:290.925000px;}
.y23_c00453{bottom:326.925000px;}
.y22_c00453{bottom:362.925000px;}
.y21_c00453{bottom:398.925000px;}
.y20_c00453{bottom:420.165000px;}
.y1f_c00453{bottom:441.045000px;}
.y1e_c00453{bottom:477.045000px;}
.y1d_c00453{bottom:497.925000px;}
.y1c_c00453{bottom:519.165000px;}
.y1b_c00453{bottom:555.165000px;}
.y1a_c00453{bottom:576.045000px;}
.y19_c00453{bottom:596.925000px;}
.y18_c00453{bottom:618.165000px;}
.y17_c00453{bottom:639.045000px;}
.y16_c00453{bottom:675.045000px;}
.y15_c00453{bottom:711.045000px;}
.y14_c00453{bottom:747.038880px;}
.y13_c00453{bottom:764.322840px;}
.y12_c00453{bottom:781.961040px;}
.y11_c00453{bottom:799.245000px;}
.yf_c00453{bottom:832.001040px;}
.y10_c00453{bottom:832.005000px;}
.ye_c00453{bottom:849.285000px;}
.yd_c00453{bottom:849.286800px;}
.yb_c00453{bottom:866.922840px;}
.yc_c00453{bottom:866.925000px;}
.ya_c00453{bottom:901.845000px;}
.y9_c00453{bottom:934.604850px;}
.y8_c00453{bottom:963.764850px;}
.y7_c00453{bottom:963.765000px;}
.y6_c00453{bottom:992.205000px;}
.y5_c00453{bottom:1027.845000px;}
.y4_c00453{bottom:1063.845000px;}
.y3_c00453{bottom:1085.085000px;}
.y2_c00453{bottom:1138.365000px;}
.hd_c00453{height:19.255605px;}
.ha_c00453{height:35.225280px;}
.h7_c00453{height:46.981634px;}
.h5_c00453{height:47.988281px;}
.hb_c00453{height:51.565208px;}
.h6_c00453{height:53.490240px;}
.he_c00453{height:56.640000px;}
.h8_c00453{height:57.096000px;}
.h4_c00453{height:57.294676px;}
.hc_c00453{height:58.708800px;}
.h3_c00453{height:65.232000px;}
.h9_c00453{height:68.074560px;}
.h2_c00453{height:1201.365000px;}
.h0_c00453{height:1262.835000px;}
.h1_c00453{height:1263.000000px;}
.w3_c00453{width:25.020000px;}
.w2_c00453{width:863.955000px;}
.w0_c00453{width:892.935000px;}
.w1_c00453{width:893.250000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:14.490000px;}
.x2_c00453{left:113.040150px;}
.x19_c00453{left:128.864850px;}
.x10_c00453{left:154.738350px;}
.x11_c00453{left:179.712900px;}
.x12_c00453{left:225.580800px;}
.x1e_c00453{left:242.764500px;}
.x13_c00453{left:250.555350px;}
.x20_c00453{left:258.707100px;}
.x1f_c00453{left:289.761750px;}
.x14_c00453{left:308.908800px;}
.x3_c00453{left:325.674150px;}
.x21_c00453{left:330.249750px;}
.x4_c00453{left:332.162850px;}
.x1a_c00453{left:335.804850px;}
.x5_c00453{left:337.166700px;}
.x6_c00453{left:341.666700px;}
.x15_c00453{left:374.756550px;}
.x16_c00453{left:393.911100px;}
.x7_c00453{left:398.671950px;}
.x8_c00453{left:403.171950px;}
.x1b_c00453{left:422.797500px;}
.x9_c00453{left:463.164600px;}
.xa_c00453{left:467.664600px;}
.xb_c00453{left:514.661400px;}
.x1c_c00453{left:521.171250px;}
.x17_c00453{left:603.601650px;}
.x1d_c00453{left:608.163900px;}
.x18_c00453{left:646.935750px;}
.xc_c00453{left:693.537600px;}
.xe_c00453{left:704.094000px;}
.xd_c00453{left:714.327000px;}
.xf_c00453{left:729.068400px;}
.x22_c00453{left:759.914612px;}
@media print{
.v3_c00453{vertical-align:-24.320000pt;}
.v0_c00453{vertical-align:0.000000pt;}
.v1_c00453{vertical-align:21.760000pt;}
.v2_c00453{vertical-align:26.880000pt;}
.lsc_c00453{letter-spacing:0.000000pt;}
.lsb_c00453{letter-spacing:0.058773pt;}
.ls6_c00453{letter-spacing:0.209920pt;}
.lse_c00453{letter-spacing:0.236160pt;}
.ls7_c00453{letter-spacing:0.262400pt;}
.ls9_c00453{letter-spacing:0.264000pt;}
.ls16_c00453{letter-spacing:0.293760pt;}
.ls3_c00453{letter-spacing:0.472320pt;}
.ls4_c00453{letter-spacing:0.498560pt;}
.lsd_c00453{letter-spacing:0.519552pt;}
.ls12_c00453{letter-spacing:0.535542pt;}
.ls5_c00453{letter-spacing:0.584228pt;}
.ls17_c00453{letter-spacing:0.611539pt;}
.ls13_c00453{letter-spacing:0.614016pt;}
.ls2_c00453{letter-spacing:0.632913pt;}
.lsf_c00453{letter-spacing:0.661248pt;}
.ls11_c00453{letter-spacing:2.020480pt;}
.ls1_c00453{letter-spacing:4.670720pt;}
.ls15_c00453{letter-spacing:4.742400pt;}
.ls14_c00453{letter-spacing:4.827264pt;}
.lsa_c00453{letter-spacing:5.299733pt;}
.ls8_c00453{letter-spacing:5.311467pt;}
.ls0_c00453{letter-spacing:5.312000pt;}
.ls10_c00453{letter-spacing:9.850496pt;}
.ws3_c00453{word-spacing:-18.705024pt;}
.ws5_c00453{word-spacing:-18.620160pt;}
.ws0_c00453{word-spacing:-15.671364pt;}
.ws1_c00453{word-spacing:-15.622678pt;}
.ws2_c00453{word-spacing:-15.061760pt;}
.ws4_c00453{word-spacing:-10.319360pt;}
.ws6_c00453{word-spacing:0.000000pt;}
._3_c00453{margin-left:-9.393920pt;}
._1_c00453{margin-left:-1.175552pt;}
._5_c00453{width:0.913152pt;}
._4_c00453{width:1.805312pt;}
._a_c00453{width:2.698752pt;}
._9_c00453{width:3.961600pt;}
._8_c00453{width:5.510400pt;}
._7_c00453{width:7.084800pt;}
._2_c00453{width:8.764160pt;}
._c_c00453{width:10.240000pt;}
._0_c00453{width:11.648000pt;}
._6_c00453{width:12.681728pt;}
._b_c00453{width:14.016000pt;}
._d_c00453{width:15.552000pt;}
.fs4_c00453{font-size:32.000000pt;}
.fs7_c00453{font-size:34.560000pt;}
.fs6_c00453{font-size:37.120000pt;}
.fs5_c00453{font-size:49.920000pt;}
.fs2_c00453{font-size:52.480000pt;}
.fsa_c00453{font-size:53.333333pt;}
.fs3_c00453{font-size:54.095146pt;}
.fs8_c00453{font-size:57.600000pt;}
.fs9_c00453{font-size:59.372721pt;}
.fs0_c00453{font-size:64.000000pt;}
.fs1_c00453{font-size:65.969690pt;}
.y0_c00453{bottom:0.000000pt;}
.y2b_c00453{bottom:2.773333pt;}
.y2a_c00453{bottom:30.884071pt;}
.y1_c00453{bottom:48.000000pt;}
.y29_c00453{bottom:49.320000pt;}
.y28_c00453{bottom:55.400000pt;}
.y27_c00453{bottom:79.720000pt;}
.y26_c00453{bottom:194.600000pt;}
.y25_c00453{bottom:226.600000pt;}
.y24_c00453{bottom:258.600000pt;}
.y23_c00453{bottom:290.600000pt;}
.y22_c00453{bottom:322.600000pt;}
.y21_c00453{bottom:354.600000pt;}
.y20_c00453{bottom:373.480000pt;}
.y1f_c00453{bottom:392.040000pt;}
.y1e_c00453{bottom:424.040000pt;}
.y1d_c00453{bottom:442.600000pt;}
.y1c_c00453{bottom:461.480000pt;}
.y1b_c00453{bottom:493.480000pt;}
.y1a_c00453{bottom:512.040000pt;}
.y19_c00453{bottom:530.600000pt;}
.y18_c00453{bottom:549.480000pt;}
.y17_c00453{bottom:568.040000pt;}
.y16_c00453{bottom:600.040000pt;}
.y15_c00453{bottom:632.040000pt;}
.y14_c00453{bottom:664.034560pt;}
.y13_c00453{bottom:679.398080pt;}
.y12_c00453{bottom:695.076480pt;}
.y11_c00453{bottom:710.440000pt;}
.yf_c00453{bottom:739.556480pt;}
.y10_c00453{bottom:739.560000pt;}
.ye_c00453{bottom:754.920000pt;}
.yd_c00453{bottom:754.921600pt;}
.yb_c00453{bottom:770.598080pt;}
.yc_c00453{bottom:770.600000pt;}
.ya_c00453{bottom:801.640000pt;}
.y9_c00453{bottom:830.759867pt;}
.y8_c00453{bottom:856.679867pt;}
.y7_c00453{bottom:856.680000pt;}
.y6_c00453{bottom:881.960000pt;}
.y5_c00453{bottom:913.640000pt;}
.y4_c00453{bottom:945.640000pt;}
.y3_c00453{bottom:964.520000pt;}
.y2_c00453{bottom:1011.880000pt;}
.hd_c00453{height:17.116093pt;}
.ha_c00453{height:31.311360pt;}
.h7_c00453{height:41.761453pt;}
.h5_c00453{height:42.656250pt;}
.hb_c00453{height:45.835741pt;}
.h6_c00453{height:47.546880pt;}
.he_c00453{height:50.346667pt;}
.h8_c00453{height:50.752000pt;}
.h4_c00453{height:50.928601pt;}
.hc_c00453{height:52.185600pt;}
.h3_c00453{height:57.984000pt;}
.h9_c00453{height:60.510720pt;}
.h2_c00453{height:1067.880000pt;}
.h0_c00453{height:1122.520000pt;}
.h1_c00453{height:1122.666667pt;}
.w3_c00453{width:22.240000pt;}
.w2_c00453{width:767.960000pt;}
.w0_c00453{width:793.720000pt;}
.w1_c00453{width:794.000000pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:12.880000pt;}
.x2_c00453{left:100.480133pt;}
.x19_c00453{left:114.546533pt;}
.x10_c00453{left:137.545200pt;}
.x11_c00453{left:159.744800pt;}
.x12_c00453{left:200.516267pt;}
.x1e_c00453{left:215.790667pt;}
.x13_c00453{left:222.715867pt;}
.x20_c00453{left:229.961867pt;}
.x1f_c00453{left:257.566000pt;}
.x14_c00453{left:274.585600pt;}
.x3_c00453{left:289.488133pt;}
.x21_c00453{left:293.555333pt;}
.x4_c00453{left:295.255867pt;}
.x1a_c00453{left:298.493200pt;}
.x5_c00453{left:299.703733pt;}
.x6_c00453{left:303.703733pt;}
.x15_c00453{left:333.116933pt;}
.x16_c00453{left:350.143200pt;}
.x7_c00453{left:354.375067pt;}
.x8_c00453{left:358.375067pt;}
.x1b_c00453{left:375.820000pt;}
.x9_c00453{left:411.701867pt;}
.xa_c00453{left:415.701867pt;}
.xb_c00453{left:457.476800pt;}
.x1c_c00453{left:463.263333pt;}
.x17_c00453{left:536.534800pt;}
.x1d_c00453{left:540.590133pt;}
.x18_c00453{left:575.054000pt;}
.xc_c00453{left:616.477867pt;}
.xe_c00453{left:625.861333pt;}
.xd_c00453{left:634.957333pt;}
.xf_c00453{left:648.060800pt;}
.x22_c00453{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a9c4639ce3f43bb5f31a2b3.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;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_c00454;src:url('chunks/assets/font_7d6245efb71a18324fef6cb9.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls1_c00454{letter-spacing:0.000000px;}
.ls4_c00454{letter-spacing:0.202464px;}
.ls2_c00454{letter-spacing:0.399600px;}
.ls3_c00454{letter-spacing:4.923072px;}
.ls0_c00454{letter-spacing:5.976000px;}
.sc__c00454{text-shadow:none;}
.sc1_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00454{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc1_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00454{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00454{word-spacing:-19.734912px;}
.ws1_c00454{word-spacing:0.000000px;}
._0_c00454{margin-left:-1.118880px;}
._1_c00454{width:1.183440px;}
.fc1_c00454{color:transparent;}
.fc0_c00454{color:rgb(0,0,0);}
.fs1_c00454{font-size:53.280000px;}
.fs2_c00454{font-size:60.000000px;}
.fs0_c00454{font-size:72.000000px;}
.y0_c00454{bottom:0.000000px;}
.y12_c00454{bottom:3.120000px;}
.ye_c00454{bottom:34.560000px;}
.y11_c00454{bottom:34.744580px;}
.y10_c00454{bottom:34.920000px;}
.y1_c00454{bottom:54.000000px;}
.yf_c00454{bottom:80.685000px;}
.yd_c00454{bottom:515.565000px;}
.yc_c00454{bottom:761.085000px;}
.yb_c00454{bottom:797.085000px;}
.ya_c00454{bottom:833.085000px;}
.y9_c00454{bottom:869.085000px;}
.y8_c00454{bottom:905.085000px;}
.y7_c00454{bottom:941.085000px;}
.y6_c00454{bottom:977.085000px;}
.y5_c00454{bottom:1013.085000px;}
.y4_c00454{bottom:1049.085000px;}
.y3_c00454{bottom:1085.085000px;}
.y2_c00454{bottom:1138.365000px;}
.h7_c00454{height:19.255605px;}
.h5_c00454{height:41.132160px;}
.h4_c00454{height:47.160000px;}
.h6_c00454{height:47.520000px;}
.h3_c00454{height:55.584000px;}
.h8_c00454{height:56.640000px;}
.h2_c00454{height:1201.365000px;}
.h0_c00454{height:1262.835000px;}
.h1_c00454{height:1263.000000px;}
.w5_c00454{width:25.020000px;}
.w4_c00454{width:516.600000px;}
.w3_c00454{width:644.400000px;}
.w2_c00454{width:863.955000px;}
.w0_c00454{width:892.935000px;}
.w1_c00454{width:893.250000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:14.490000px;}
.x6_c00454{left:45.912600px;}
.x2_c00454{left:113.040150px;}
.x3_c00454{left:127.170000px;}
.x5_c00454{left:205.290000px;}
.x4_c00454{left:213.745050px;}
.x7_c00454{left:759.914612px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.ls4_c00454{letter-spacing:0.179968pt;}
.ls2_c00454{letter-spacing:0.355200pt;}
.ls3_c00454{letter-spacing:4.376064pt;}
.ls0_c00454{letter-spacing:5.312000pt;}
.ws0_c00454{word-spacing:-17.542144pt;}
.ws1_c00454{word-spacing:0.000000pt;}
._0_c00454{margin-left:-0.994560pt;}
._1_c00454{width:1.051947pt;}
.fs1_c00454{font-size:47.360000pt;}
.fs2_c00454{font-size:53.333333pt;}
.fs0_c00454{font-size:64.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y12_c00454{bottom:2.773333pt;}
.ye_c00454{bottom:30.720000pt;}
.y11_c00454{bottom:30.884071pt;}
.y10_c00454{bottom:31.040000pt;}
.y1_c00454{bottom:48.000000pt;}
.yf_c00454{bottom:71.720000pt;}
.yd_c00454{bottom:458.280000pt;}
.yc_c00454{bottom:676.520000pt;}
.yb_c00454{bottom:708.520000pt;}
.ya_c00454{bottom:740.520000pt;}
.y9_c00454{bottom:772.520000pt;}
.y8_c00454{bottom:804.520000pt;}
.y7_c00454{bottom:836.520000pt;}
.y6_c00454{bottom:868.520000pt;}
.y5_c00454{bottom:900.520000pt;}
.y4_c00454{bottom:932.520000pt;}
.y3_c00454{bottom:964.520000pt;}
.y2_c00454{bottom:1011.880000pt;}
.h7_c00454{height:17.116093pt;}
.h5_c00454{height:36.561920pt;}
.h4_c00454{height:41.920000pt;}
.h6_c00454{height:42.240000pt;}
.h3_c00454{height:49.408000pt;}
.h8_c00454{height:50.346667pt;}
.h2_c00454{height:1067.880000pt;}
.h0_c00454{height:1122.520000pt;}
.h1_c00454{height:1122.666667pt;}
.w5_c00454{width:22.240000pt;}
.w4_c00454{width:459.200000pt;}
.w3_c00454{width:572.800000pt;}
.w2_c00454{width:767.960000pt;}
.w0_c00454{width:793.720000pt;}
.w1_c00454{width:794.000000pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:12.880000pt;}
.x6_c00454{left:40.811200pt;}
.x2_c00454{left:100.480133pt;}
.x3_c00454{left:113.040000pt;}
.x5_c00454{left:182.480000pt;}
.x4_c00454{left:189.995600pt;}
.x7_c00454{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88260ae4e0c002d485c28ca8.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_f4bfa31ca1183693c780972a.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;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:ff3_c00455;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_cb51894c36463b83069abe53.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00455{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls5_c00455{letter-spacing:0.000000px;}
.ls6_c00455{letter-spacing:5.430672px;}
.ls4_c00455{letter-spacing:5.976000px;}
.ls2_c00455{letter-spacing:5.980200px;}
.ls1_c00455{letter-spacing:6.021600px;}
.ls0_c00455{letter-spacing:6.336000px;}
.ls3_c00455{letter-spacing:54.864000px;}
.sc__c00455{text-shadow:none;}
.sc1_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00455{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc1_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00455{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00455{word-spacing:-21.043152px;}
.ws1_c00455{word-spacing:0.000000px;}
._7_c00455{margin-left:-1.179360px;}
._8_c00455{width:1.296000px;}
._6_c00455{width:2.520000px;}
._0_c00455{width:3.600000px;}
._3_c00455{width:5.400000px;}
._2_c00455{width:6.408000px;}
._b_c00455{width:9.720000px;}
._9_c00455{width:10.800000px;}
._1_c00455{width:12.024000px;}
._4_c00455{width:16.992000px;}
._a_c00455{width:18.432000px;}
._5_c00455{width:30.240000px;}
.fc0_c00455{color:rgb(0,0,0);}
.fs1_c00455{font-size:56.160000px;}
.fs3_c00455{font-size:60.000000px;}
.fs0_c00455{font-size:72.000000px;}
.fs2_c00455{font-size:74.215901px;}
.y0_c00455{bottom:0.000000px;}
.y28_c00455{bottom:3.120000px;}
.y27_c00455{bottom:34.744580px;}
.y1_c00455{bottom:54.000000px;}
.y26_c00455{bottom:76.725000px;}
.y25_c00455{bottom:97.965000px;}
.y24_c00455{bottom:133.965000px;}
.y23_c00455{bottom:169.965000px;}
.y22_c00455{bottom:205.965000px;}
.y21_c00455{bottom:226.845000px;}
.y20_c00455{bottom:262.845000px;}
.y1f_c00455{bottom:298.845000px;}
.y1e_c00455{bottom:334.845000px;}
.y1d_c00455{bottom:355.725000px;}
.y1c_c00455{bottom:376.965000px;}
.y1b_c00455{bottom:397.845000px;}
.y1a_c00455{bottom:418.725000px;}
.y19_c00455{bottom:439.965000px;}
.y18_c00455{bottom:460.845000px;}
.y17_c00455{bottom:496.845000px;}
.y16_c00455{bottom:532.845000px;}
.y15_c00455{bottom:568.845000px;}
.y14_c00455{bottom:604.845000px;}
.y13_c00455{bottom:640.845000px;}
.y12_c00455{bottom:662.085000px;}
.y11_c00455{bottom:682.965000px;}
.y10_c00455{bottom:703.845000px;}
.yf_c00455{bottom:725.085000px;}
.ye_c00455{bottom:761.085000px;}
.yd_c00455{bottom:797.085000px;}
.yc_c00455{bottom:833.085000px;}
.yb_c00455{bottom:869.085000px;}
.ya_c00455{bottom:889.965000px;}
.y9_c00455{bottom:910.845000px;}
.y8_c00455{bottom:946.845000px;}
.y7_c00455{bottom:968.085000px;}
.y6_c00455{bottom:988.965000px;}
.y5_c00455{bottom:1009.845000px;}
.y4_c00455{bottom:1045.845000px;}
.y3_c00455{bottom:1082.925000px;}
.y2_c00455{bottom:1138.365000px;}
.h5_c00455{height:19.255605px;}
.h6_c00455{height:56.640000px;}
.h4_c00455{height:57.294676px;}
.h3_c00455{height:65.232000px;}
.h2_c00455{height:1201.365000px;}
.h0_c00455{height:1262.835000px;}
.h1_c00455{height:1263.000000px;}
.w3_c00455{width:25.020000px;}
.w2_c00455{width:863.955000px;}
.w0_c00455{width:892.935000px;}
.w1_c00455{width:893.250000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:14.490000px;}
.x2_c00455{left:113.040150px;}
.x8_c00455{left:140.037600px;}
.x4_c00455{left:261.894600px;}
.x6_c00455{left:275.055150px;}
.x7_c00455{left:288.050850px;}
.x5_c00455{left:333.929400px;}
.x3_c00455{left:413.967000px;}
.x9_c00455{left:759.914612px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls5_c00455{letter-spacing:0.000000pt;}
.ls6_c00455{letter-spacing:4.827264pt;}
.ls4_c00455{letter-spacing:5.312000pt;}
.ls2_c00455{letter-spacing:5.315733pt;}
.ls1_c00455{letter-spacing:5.352533pt;}
.ls0_c00455{letter-spacing:5.632000pt;}
.ls3_c00455{letter-spacing:48.768000pt;}
.ws0_c00455{word-spacing:-18.705024pt;}
.ws1_c00455{word-spacing:0.000000pt;}
._7_c00455{margin-left:-1.048320pt;}
._8_c00455{width:1.152000pt;}
._6_c00455{width:2.240000pt;}
._0_c00455{width:3.200000pt;}
._3_c00455{width:4.800000pt;}
._2_c00455{width:5.696000pt;}
._b_c00455{width:8.640000pt;}
._9_c00455{width:9.600000pt;}
._1_c00455{width:10.688000pt;}
._4_c00455{width:15.104000pt;}
._a_c00455{width:16.384000pt;}
._5_c00455{width:26.880000pt;}
.fs1_c00455{font-size:49.920000pt;}
.fs3_c00455{font-size:53.333333pt;}
.fs0_c00455{font-size:64.000000pt;}
.fs2_c00455{font-size:65.969690pt;}
.y0_c00455{bottom:0.000000pt;}
.y28_c00455{bottom:2.773333pt;}
.y27_c00455{bottom:30.884071pt;}
.y1_c00455{bottom:48.000000pt;}
.y26_c00455{bottom:68.200000pt;}
.y25_c00455{bottom:87.080000pt;}
.y24_c00455{bottom:119.080000pt;}
.y23_c00455{bottom:151.080000pt;}
.y22_c00455{bottom:183.080000pt;}
.y21_c00455{bottom:201.640000pt;}
.y20_c00455{bottom:233.640000pt;}
.y1f_c00455{bottom:265.640000pt;}
.y1e_c00455{bottom:297.640000pt;}
.y1d_c00455{bottom:316.200000pt;}
.y1c_c00455{bottom:335.080000pt;}
.y1b_c00455{bottom:353.640000pt;}
.y1a_c00455{bottom:372.200000pt;}
.y19_c00455{bottom:391.080000pt;}
.y18_c00455{bottom:409.640000pt;}
.y17_c00455{bottom:441.640000pt;}
.y16_c00455{bottom:473.640000pt;}
.y15_c00455{bottom:505.640000pt;}
.y14_c00455{bottom:537.640000pt;}
.y13_c00455{bottom:569.640000pt;}
.y12_c00455{bottom:588.520000pt;}
.y11_c00455{bottom:607.080000pt;}
.y10_c00455{bottom:625.640000pt;}
.yf_c00455{bottom:644.520000pt;}
.ye_c00455{bottom:676.520000pt;}
.yd_c00455{bottom:708.520000pt;}
.yc_c00455{bottom:740.520000pt;}
.yb_c00455{bottom:772.520000pt;}
.ya_c00455{bottom:791.080000pt;}
.y9_c00455{bottom:809.640000pt;}
.y8_c00455{bottom:841.640000pt;}
.y7_c00455{bottom:860.520000pt;}
.y6_c00455{bottom:879.080000pt;}
.y5_c00455{bottom:897.640000pt;}
.y4_c00455{bottom:929.640000pt;}
.y3_c00455{bottom:962.600000pt;}
.y2_c00455{bottom:1011.880000pt;}
.h5_c00455{height:17.116093pt;}
.h6_c00455{height:50.346667pt;}
.h4_c00455{height:50.928601pt;}
.h3_c00455{height:57.984000pt;}
.h2_c00455{height:1067.880000pt;}
.h0_c00455{height:1122.520000pt;}
.h1_c00455{height:1122.666667pt;}
.w3_c00455{width:22.240000pt;}
.w2_c00455{width:767.960000pt;}
.w0_c00455{width:793.720000pt;}
.w1_c00455{width:794.000000pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:12.880000pt;}
.x2_c00455{left:100.480133pt;}
.x8_c00455{left:124.477867pt;}
.x4_c00455{left:232.795200pt;}
.x6_c00455{left:244.493467pt;}
.x7_c00455{left:256.045200pt;}
.x5_c00455{left:296.826133pt;}
.x3_c00455{left:367.970667pt;}
.x9_c00455{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3cdddf7cb602cbb30aef084b.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_c6300d59a7de9a4a9b80a08f.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;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:ff3_c00456;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_06a07cf75342ca441989a7b9.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00456;src:url('chunks/assets/font_2227e0b3b08139421aa9d6eb.woff2')format("woff");}.ff5_c00456{font-family:ff5_c00456;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00456;src:url('chunks/assets/font_b131612d9fd077b47c94937a.woff2')format("woff");}.ff6_c00456{font-family:ff6_c00456;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00456;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff7_c00456{font-family:ff7_c00456;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00456;src:url('chunks/assets/font_0031a422c5f8cd823f5863d5.woff2')format("woff");}.ff8_c00456{font-family:ff8_c00456;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00456{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00456{vertical-align:-31.170679px;}
.v3_c00456{vertical-align:-24.480000px;}
.v0_c00456{vertical-align:0.000000px;}
.v1_c00456{vertical-align:31.170679px;}
.ls12_c00456{letter-spacing:0.000000px;}
.ls25_c00456{letter-spacing:0.156816px;}
.lsd_c00456{letter-spacing:0.236160px;}
.ls22_c00456{letter-spacing:0.242352px;}
.ls10_c00456{letter-spacing:0.265680px;}
.ls24_c00456{letter-spacing:0.294624px;}
.ls5_c00456{letter-spacing:0.295200px;}
.ls11_c00456{letter-spacing:0.318480px;}
.ls1f_c00456{letter-spacing:0.318816px;}
.ls23_c00456{letter-spacing:0.346896px;}
.lsa_c00456{letter-spacing:0.421440px;}
.ls21_c00456{letter-spacing:0.438171px;}
.ls6_c00456{letter-spacing:0.513648px;}
.ls3_c00456{letter-spacing:0.519552px;}
.ls4_c00456{letter-spacing:0.531360px;}
.ls16_c00456{letter-spacing:0.547713px;}
.lsb_c00456{letter-spacing:0.560880px;}
.ls13_c00456{letter-spacing:0.584496px;}
.lse_c00456{letter-spacing:0.585360px;}
.ls17_c00456{letter-spacing:0.602485px;}
.lsf_c00456{letter-spacing:0.627600px;}
.ls1_c00456{letter-spacing:0.657256px;}
.ls1c_c00456{letter-spacing:0.696672px;}
.ls2_c00456{letter-spacing:0.712027px;}
.ls19_c00456{letter-spacing:0.743904px;}
.ls9_c00456{letter-spacing:0.751440px;}
.ls15_c00456{letter-spacing:0.797040px;}
.ls14_c00456{letter-spacing:0.821570px;}
.ls1a_c00456{letter-spacing:3.943872px;}
.lsc_c00456{letter-spacing:3.955680px;}
.ls1d_c00456{letter-spacing:5.430672px;}
.ls18_c00456{letter-spacing:5.514336px;}
.ls20_c00456{letter-spacing:5.567472px;}
.ls7_c00456{letter-spacing:5.975400px;}
.ls0_c00456{letter-spacing:5.976000px;}
.ls8_c00456{letter-spacing:7.298144px;}
.ls1e_c00456{letter-spacing:14.984352px;}
.ls1b_c00456{letter-spacing:18.609408px;}
.sc__c00456{text-shadow:none;}
.sc1_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00456{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc1_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00456{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00456{word-spacing:-21.927456px;}
.ws7_c00456{word-spacing:-21.043152px;}
.ws8_c00456{word-spacing:-20.632021px;}
.ws9_c00456{word-spacing:-20.016000px;}
.ws4_c00456{word-spacing:-17.630284px;}
.ws3_c00456{word-spacing:-17.575513px;}
.ws1_c00456{word-spacing:-17.520742px;}
.ws0_c00456{word-spacing:-17.465970px;}
.ws6_c00456{word-spacing:-17.109792px;}
.ws5_c00456{word-spacing:-16.944480px;}
.wsb_c00456{word-spacing:-16.731936px;}
.wsd_c00456{word-spacing:-13.505184px;}
.wsc_c00456{word-spacing:-13.452912px;}
.wsa_c00456{word-spacing:-10.008000px;}
.wse_c00456{word-spacing:0.000000px;}
._9_c00456{margin-left:-19.306080px;}
._8_c00456{margin-left:-17.948160px;}
._15_c00456{margin-left:-15.468480px;}
._14_c00456{margin-left:-14.169600px;}
._10_c00456{margin-left:-7.164308px;}
._7_c00456{margin-left:-4.309920px;}
._6_c00456{margin-left:-3.188160px;}
._3_c00456{margin-left:-1.338855px;}
._b_c00456{width:1.218930px;}
._5_c00456{width:2.321625px;}
._4_c00456{width:3.504270px;}
._c_c00456{width:4.782240px;}
._2_c00456{width:5.976000px;}
._11_c00456{width:8.352000px;}
._0_c00456{width:10.080000px;}
._d_c00456{width:11.485440px;}
._13_c00456{width:14.904000px;}
._1_c00456{width:17.064000px;}
._a_c00456{width:18.749664px;}
._f_c00456{width:25.331628px;}
._e_c00456{width:26.940372px;}
._12_c00456{width:31.752000px;}
.fc0_c00456{color:rgb(0,0,0);}
.fs7_c00456{font-size:36.000000px;}
.fs6_c00456{font-size:41.760000px;}
.fs5_c00456{font-size:43.045223px;}
.fs8_c00456{font-size:47.520000px;}
.fs4_c00456{font-size:56.160000px;}
.fs2_c00456{font-size:59.040000px;}
.fs9_c00456{font-size:60.000000px;}
.fs3_c00456{font-size:60.857039px;}
.fs0_c00456{font-size:72.000000px;}
.fs1_c00456{font-size:74.215901px;}
.y0_c00456{bottom:0.000000px;}
.y33_c00456{bottom:3.120000px;}
.y32_c00456{bottom:34.744580px;}
.y1_c00456{bottom:54.000000px;}
.y31_c00456{bottom:55.479600px;}
.y30_c00456{bottom:72.765000px;}
.y2f_c00456{bottom:78.885000px;}
.y2e_c00456{bottom:96.525000px;}
.y2d_c00456{bottom:107.686800px;}
.y2c_c00456{bottom:125.325000px;}
.y2b_c00456{bottom:131.445000px;}
.y2a_c00456{bottom:158.085000px;}
.y29_c00456{bottom:234.765000px;}
.y28_c00456{bottom:255.645000px;}
.y27_c00456{bottom:276.525000px;}
.y26_c00456{bottom:297.765000px;}
.y25_c00456{bottom:333.765000px;}
.y24_c00456{bottom:354.645000px;}
.y23_c00456{bottom:377.685000px;}
.y22_c00456{bottom:398.205000px;}
.y21_c00456{bottom:419.805000px;}
.y20_c00456{bottom:440.325000px;}
.y1f_c00456{bottom:461.565000px;}
.y1e_c00456{bottom:497.565000px;}
.y1d_c00456{bottom:518.445000px;}
.y1c_c00456{bottom:539.325000px;}
.y1b_c00456{bottom:560.565000px;}
.y1a_c00456{bottom:596.565000px;}
.y19_c00456{bottom:632.565000px;}
.y18_c00456{bottom:660.646800px;}
.y16_c00456{bottom:678.284640px;}
.y17_c00456{bottom:678.285000px;}
.y15_c00456{bottom:695.568600px;}
.y14_c00456{bottom:713.206800px;}
.y13_c00456{bottom:730.845000px;}
.y12_c00456{bottom:755.686800px;}
.y10_c00456{bottom:773.321040px;}
.y11_c00456{bottom:773.325000px;}
.yf_c00456{bottom:790.605000px;}
.ye_c00456{bottom:790.608600px;}
.yd_c00456{bottom:815.803920px;}
.yc_c00456{bottom:840.645000px;}
.yb_c00456{bottom:865.845000px;}
.ya_c00456{bottom:891.045000px;}
.y9_c00456{bottom:921.645000px;}
.y8_c00456{bottom:950.085000px;}
.y7_c00456{bottom:978.885000px;}
.y6_c00456{bottom:1006.965000px;}
.y5_c00456{bottom:1042.965000px;}
.y4_c00456{bottom:1063.845000px;}
.y3_c00456{bottom:1085.085000px;}
.y2_c00456{bottom:1138.365000px;}
.hc_c00456{height:19.255605px;}
.ha_c00456{height:32.616000px;}
.h7_c00456{height:46.981634px;}
.h5_c00456{height:47.988281px;}
.h6_c00456{height:53.490240px;}
.hb_c00456{height:53.511840px;}
.hd_c00456{height:56.640000px;}
.h4_c00456{height:57.294676px;}
.h8_c00456{height:64.401590px;}
.h3_c00456{height:65.232000px;}
.h9_c00456{height:68.074560px;}
.h2_c00456{height:1201.365000px;}
.h0_c00456{height:1262.835000px;}
.h1_c00456{height:1263.000000px;}
.w3_c00456{width:25.020000px;}
.w2_c00456{width:863.955000px;}
.w0_c00456{width:892.935000px;}
.w1_c00456{width:893.250000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:14.490000px;}
.x2_c00456{left:113.040150px;}
.x1c_c00456{left:133.034550px;}
.xb_c00456{left:147.223350px;}
.x19_c00456{left:150.984000px;}
.x22_c00456{left:160.055400px;}
.x1a_c00456{left:170.138700px;}
.x11_c00456{left:204.282000px;}
.x1f_c00456{left:221.552850px;}
.x12_c00456{left:232.601400px;}
.xc_c00456{left:241.404750px;}
.x23_c00456{left:264.051600px;}
.x2a_c00456{left:287.140500px;}
.x1d_c00456{left:293.621250px;}
.x1e_c00456{left:298.879800px;}
.x2c_c00456{left:300.927600px;}
.x3_c00456{left:325.665150px;}
.x24_c00456{left:328.382400px;}
.xd_c00456{left:338.931450px;}
.x2d_c00456{left:343.421250px;}
.x4_c00456{left:386.665950px;}
.x5_c00456{left:391.165950px;}
.xa_c00456{left:409.669500px;}
.xe_c00456{left:417.273600px;}
.x6_c00456{left:450.169200px;}
.xf_c00456{left:456.438000px;}
.x7_c00456{left:459.169200px;}
.x10_c00456{left:464.777400px;}
.x25_c00456{left:498.893250px;}
.x2f_c00456{left:501.814050px;}
.x27_c00456{left:504.428850px;}
.x8_c00456{left:508.164150px;}
.x9_c00456{left:512.664150px;}
.x30_c00456{left:522.728100px;}
.x26_c00456{left:549.394050px;}
.x13_c00456{left:554.967000px;}
.x14_c00456{left:579.941550px;}
.x15_c00456{left:649.388250px;}
.x2e_c00456{left:671.207550px;}
.x16_c00456{left:674.362800px;}
.x2b_c00456{left:683.377050px;}
.x20_c00456{left:692.395050px;}
.x28_c00456{left:695.538900px;}
.x1b_c00456{left:711.225600px;}
.x17_c00456{left:722.070600px;}
.x29_c00456{left:739.548300px;}
.x21_c00456{left:745.386150px;}
.x18_c00456{left:750.390000px;}
.x31_c00456{left:759.914612px;}
@media print{
.v2_c00456{vertical-align:-27.707270pt;}
.v3_c00456{vertical-align:-21.760000pt;}
.v0_c00456{vertical-align:0.000000pt;}
.v1_c00456{vertical-align:27.707270pt;}
.ls12_c00456{letter-spacing:0.000000pt;}
.ls25_c00456{letter-spacing:0.139392pt;}
.lsd_c00456{letter-spacing:0.209920pt;}
.ls22_c00456{letter-spacing:0.215424pt;}
.ls10_c00456{letter-spacing:0.236160pt;}
.ls24_c00456{letter-spacing:0.261888pt;}
.ls5_c00456{letter-spacing:0.262400pt;}
.ls11_c00456{letter-spacing:0.283093pt;}
.ls1f_c00456{letter-spacing:0.283392pt;}
.ls23_c00456{letter-spacing:0.308352pt;}
.lsa_c00456{letter-spacing:0.374613pt;}
.ls21_c00456{letter-spacing:0.389485pt;}
.ls6_c00456{letter-spacing:0.456576pt;}
.ls3_c00456{letter-spacing:0.461824pt;}
.ls4_c00456{letter-spacing:0.472320pt;}
.ls16_c00456{letter-spacing:0.486856pt;}
.lsb_c00456{letter-spacing:0.498560pt;}
.ls13_c00456{letter-spacing:0.519552pt;}
.lse_c00456{letter-spacing:0.520320pt;}
.ls17_c00456{letter-spacing:0.535542pt;}
.lsf_c00456{letter-spacing:0.557867pt;}
.ls1_c00456{letter-spacing:0.584228pt;}
.ls1c_c00456{letter-spacing:0.619264pt;}
.ls2_c00456{letter-spacing:0.632913pt;}
.ls19_c00456{letter-spacing:0.661248pt;}
.ls9_c00456{letter-spacing:0.667947pt;}
.ls15_c00456{letter-spacing:0.708480pt;}
.ls14_c00456{letter-spacing:0.730284pt;}
.ls1a_c00456{letter-spacing:3.505664pt;}
.lsc_c00456{letter-spacing:3.516160pt;}
.ls1d_c00456{letter-spacing:4.827264pt;}
.ls18_c00456{letter-spacing:4.901632pt;}
.ls20_c00456{letter-spacing:4.948864pt;}
.ls7_c00456{letter-spacing:5.311467pt;}
.ls0_c00456{letter-spacing:5.312000pt;}
.ls8_c00456{letter-spacing:6.487239pt;}
.ls1e_c00456{letter-spacing:13.319424pt;}
.ls1b_c00456{letter-spacing:16.541696pt;}
.ws2_c00456{word-spacing:-19.491072pt;}
.ws7_c00456{word-spacing:-18.705024pt;}
.ws8_c00456{word-spacing:-18.339574pt;}
.ws9_c00456{word-spacing:-17.792000pt;}
.ws4_c00456{word-spacing:-15.671364pt;}
.ws3_c00456{word-spacing:-15.622678pt;}
.ws1_c00456{word-spacing:-15.573992pt;}
.ws0_c00456{word-spacing:-15.525307pt;}
.ws6_c00456{word-spacing:-15.208704pt;}
.ws5_c00456{word-spacing:-15.061760pt;}
.wsb_c00456{word-spacing:-14.872832pt;}
.wsd_c00456{word-spacing:-12.004608pt;}
.wsc_c00456{word-spacing:-11.958144pt;}
.wsa_c00456{word-spacing:-8.896000pt;}
.wse_c00456{word-spacing:0.000000pt;}
._9_c00456{margin-left:-17.160960pt;}
._8_c00456{margin-left:-15.953920pt;}
._15_c00456{margin-left:-13.749760pt;}
._14_c00456{margin-left:-12.595200pt;}
._10_c00456{margin-left:-6.368274pt;}
._7_c00456{margin-left:-3.831040pt;}
._6_c00456{margin-left:-2.833920pt;}
._3_c00456{margin-left:-1.190093pt;}
._b_c00456{width:1.083494pt;}
._5_c00456{width:2.063667pt;}
._4_c00456{width:3.114906pt;}
._c_c00456{width:4.250880pt;}
._2_c00456{width:5.312000pt;}
._11_c00456{width:7.424000pt;}
._0_c00456{width:8.960000pt;}
._d_c00456{width:10.209280pt;}
._13_c00456{width:13.248000pt;}
._1_c00456{width:15.168000pt;}
._a_c00456{width:16.666368pt;}
._f_c00456{width:22.517003pt;}
._e_c00456{width:23.946997pt;}
._12_c00456{width:28.224000pt;}
.fs7_c00456{font-size:32.000000pt;}
.fs6_c00456{font-size:37.120000pt;}
.fs5_c00456{font-size:38.262420pt;}
.fs8_c00456{font-size:42.240000pt;}
.fs4_c00456{font-size:49.920000pt;}
.fs2_c00456{font-size:52.480000pt;}
.fs9_c00456{font-size:53.333333pt;}
.fs3_c00456{font-size:54.095146pt;}
.fs0_c00456{font-size:64.000000pt;}
.fs1_c00456{font-size:65.969690pt;}
.y0_c00456{bottom:0.000000pt;}
.y33_c00456{bottom:2.773333pt;}
.y32_c00456{bottom:30.884071pt;}
.y1_c00456{bottom:48.000000pt;}
.y31_c00456{bottom:49.315200pt;}
.y30_c00456{bottom:64.680000pt;}
.y2f_c00456{bottom:70.120000pt;}
.y2e_c00456{bottom:85.800000pt;}
.y2d_c00456{bottom:95.721600pt;}
.y2c_c00456{bottom:111.400000pt;}
.y2b_c00456{bottom:116.840000pt;}
.y2a_c00456{bottom:140.520000pt;}
.y29_c00456{bottom:208.680000pt;}
.y28_c00456{bottom:227.240000pt;}
.y27_c00456{bottom:245.800000pt;}
.y26_c00456{bottom:264.680000pt;}
.y25_c00456{bottom:296.680000pt;}
.y24_c00456{bottom:315.240000pt;}
.y23_c00456{bottom:335.720000pt;}
.y22_c00456{bottom:353.960000pt;}
.y21_c00456{bottom:373.160000pt;}
.y20_c00456{bottom:391.400000pt;}
.y1f_c00456{bottom:410.280000pt;}
.y1e_c00456{bottom:442.280000pt;}
.y1d_c00456{bottom:460.840000pt;}
.y1c_c00456{bottom:479.400000pt;}
.y1b_c00456{bottom:498.280000pt;}
.y1a_c00456{bottom:530.280000pt;}
.y19_c00456{bottom:562.280000pt;}
.y18_c00456{bottom:587.241600pt;}
.y16_c00456{bottom:602.919680pt;}
.y17_c00456{bottom:602.920000pt;}
.y15_c00456{bottom:618.283200pt;}
.y14_c00456{bottom:633.961600pt;}
.y13_c00456{bottom:649.640000pt;}
.y12_c00456{bottom:671.721600pt;}
.y10_c00456{bottom:687.396480pt;}
.y11_c00456{bottom:687.400000pt;}
.yf_c00456{bottom:702.760000pt;}
.ye_c00456{bottom:702.763200pt;}
.yd_c00456{bottom:725.159040pt;}
.yc_c00456{bottom:747.240000pt;}
.yb_c00456{bottom:769.640000pt;}
.ya_c00456{bottom:792.040000pt;}
.y9_c00456{bottom:819.240000pt;}
.y8_c00456{bottom:844.520000pt;}
.y7_c00456{bottom:870.120000pt;}
.y6_c00456{bottom:895.080000pt;}
.y5_c00456{bottom:927.080000pt;}
.y4_c00456{bottom:945.640000pt;}
.y3_c00456{bottom:964.520000pt;}
.y2_c00456{bottom:1011.880000pt;}
.hc_c00456{height:17.116093pt;}
.ha_c00456{height:28.992000pt;}
.h7_c00456{height:41.761453pt;}
.h5_c00456{height:42.656250pt;}
.h6_c00456{height:47.546880pt;}
.hb_c00456{height:47.566080pt;}
.hd_c00456{height:50.346667pt;}
.h4_c00456{height:50.928601pt;}
.h8_c00456{height:57.245858pt;}
.h3_c00456{height:57.984000pt;}
.h9_c00456{height:60.510720pt;}
.h2_c00456{height:1067.880000pt;}
.h0_c00456{height:1122.520000pt;}
.h1_c00456{height:1122.666667pt;}
.w3_c00456{width:22.240000pt;}
.w2_c00456{width:767.960000pt;}
.w0_c00456{width:793.720000pt;}
.w1_c00456{width:794.000000pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:12.880000pt;}
.x2_c00456{left:100.480133pt;}
.x1c_c00456{left:118.252933pt;}
.xb_c00456{left:130.865200pt;}
.x19_c00456{left:134.208000pt;}
.x22_c00456{left:142.271467pt;}
.x1a_c00456{left:151.234400pt;}
.x11_c00456{left:181.584000pt;}
.x1f_c00456{left:196.935867pt;}
.x12_c00456{left:206.756800pt;}
.xc_c00456{left:214.582000pt;}
.x23_c00456{left:234.712533pt;}
.x2a_c00456{left:255.236000pt;}
.x1d_c00456{left:260.996667pt;}
.x1e_c00456{left:265.670933pt;}
.x2c_c00456{left:267.491200pt;}
.x3_c00456{left:289.480133pt;}
.x24_c00456{left:291.895467pt;}
.xd_c00456{left:301.272400pt;}
.x2d_c00456{left:305.263333pt;}
.x4_c00456{left:343.703067pt;}
.x5_c00456{left:347.703067pt;}
.xa_c00456{left:364.150667pt;}
.xe_c00456{left:370.909867pt;}
.x6_c00456{left:400.150400pt;}
.xf_c00456{left:405.722667pt;}
.x7_c00456{left:408.150400pt;}
.x10_c00456{left:413.135467pt;}
.x25_c00456{left:443.460667pt;}
.x2f_c00456{left:446.056933pt;}
.x27_c00456{left:448.381200pt;}
.x8_c00456{left:451.701467pt;}
.x9_c00456{left:455.701467pt;}
.x30_c00456{left:464.647200pt;}
.x26_c00456{left:488.350267pt;}
.x13_c00456{left:493.304000pt;}
.x14_c00456{left:515.503600pt;}
.x15_c00456{left:577.234000pt;}
.x2e_c00456{left:596.628933pt;}
.x16_c00456{left:599.433600pt;}
.x2b_c00456{left:607.446267pt;}
.x20_c00456{left:615.462267pt;}
.x28_c00456{left:618.256800pt;}
.x1b_c00456{left:632.200533pt;}
.x17_c00456{left:641.840533pt;}
.x29_c00456{left:657.376267pt;}
.x21_c00456{left:662.565467pt;}
.x18_c00456{left:667.013333pt;}
.x31_c00456{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe2c07ccfd7d88f61a7bb341.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_a1ccfa0f885e6a05a7f3f24d.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;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:ff3_c00457;src:url('chunks/assets/font_8f6a7a3f036c121a1cf43555.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00457{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00457{vertical-align:-30.240000px;}
.v3_c00457{vertical-align:-24.480000px;}
.v0_c00457{vertical-align:0.000000px;}
.v2_c00457{vertical-align:30.240000px;}
.ls7_c00457{letter-spacing:0.000000px;}
.ls10_c00457{letter-spacing:0.202464px;}
.ls11_c00457{letter-spacing:0.239760px;}
.lsc_c00457{letter-spacing:0.265680px;}
.ls6_c00457{letter-spacing:0.295200px;}
.ls4_c00457{letter-spacing:0.324720px;}
.ls3_c00457{letter-spacing:0.328628px;}
.lsf_c00457{letter-spacing:0.399600px;}
.lsa_c00457{letter-spacing:0.438171px;}
.ls5_c00457{letter-spacing:0.531360px;}
.lsb_c00457{letter-spacing:0.584496px;}
.lsd_c00457{letter-spacing:0.696672px;}
.ls2_c00457{letter-spacing:0.730284px;}
.lse_c00457{letter-spacing:5.248656px;}
.ls8_c00457{letter-spacing:5.335200px;}
.ls0_c00457{letter-spacing:5.976000px;}
.ls1_c00457{letter-spacing:5.995200px;}
.ls9_c00457{letter-spacing:11.630880px;}
.sc__c00457{text-shadow:none;}
.sc1_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00457{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc1_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00457{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00457{word-spacing:-20.947680px;}
.ws3_c00457{word-spacing:-17.109792px;}
.ws4_c00457{word-spacing:-15.051600px;}
.ws0_c00457{word-spacing:-11.609280px;}
.ws2_c00457{word-spacing:-10.008000px;}
.ws5_c00457{word-spacing:0.000000px;}
._6_c00457{margin-left:-12.103200px;}
._5_c00457{margin-left:-11.040480px;}
._4_c00457{margin-left:-1.005000px;}
._7_c00457{width:1.182120px;}
._0_c00457{width:2.304000px;}
._3_c00457{width:4.320000px;}
._2_c00457{width:11.088000px;}
._1_c00457{width:48.960000px;}
.fc1_c00457{color:transparent;}
.fc0_c00457{color:rgb(0,0,0);}
.fs4_c00457{font-size:36.000000px;}
.fs2_c00457{font-size:41.760000px;}
.fs7_c00457{font-size:53.280000px;}
.fs3_c00457{font-size:56.160000px;}
.fs5_c00457{font-size:59.040000px;}
.fs8_c00457{font-size:60.000000px;}
.fs6_c00457{font-size:60.857039px;}
.fs0_c00457{font-size:72.000000px;}
.fs1_c00457{font-size:74.215901px;}
.y0_c00457{bottom:0.000000px;}
.y28_c00457{bottom:3.120000px;}
.y26_c00457{bottom:19.800000px;}
.y27_c00457{bottom:34.744580px;}
.y1_c00457{bottom:54.000000px;}
.y24_c00457{bottom:55.485000px;}
.y23_c00457{bottom:61.605000px;}
.y22_c00457{bottom:72.765000px;}
.y21_c00457{bottom:90.401040px;}
.y20_c00457{bottom:113.805000px;}
.y1f_c00457{bottom:140.445000px;}
.y1e_c00457{bottom:208.845000px;}
.y1d_c00457{bottom:244.845000px;}
.y1c_c00457{bottom:280.845000px;}
.y25_c00457{bottom:313.965000px;}
.y1b_c00457{bottom:316.845000px;}
.y1a_c00457{bottom:352.845000px;}
.y19_c00457{bottom:388.845000px;}
.y18_c00457{bottom:424.845000px;}
.y17_c00457{bottom:460.845000px;}
.y16_c00457{bottom:496.845000px;}
.y15_c00457{bottom:532.845000px;}
.y14_c00457{bottom:568.845000px;}
.y13_c00457{bottom:604.845000px;}
.y12_c00457{bottom:640.845000px;}
.y11_c00457{bottom:676.845000px;}
.y10_c00457{bottom:712.845000px;}
.yf_c00457{bottom:748.845000px;}
.ye_c00457{bottom:784.845000px;}
.yd_c00457{bottom:820.845000px;}
.yc_c00457{bottom:856.845000px;}
.yb_c00457{bottom:892.845000px;}
.ya_c00457{bottom:928.845000px;}
.y9_c00457{bottom:964.845000px;}
.y8_c00457{bottom:1000.845000px;}
.y7_c00457{bottom:1022.085000px;}
.y6_c00457{bottom:1042.965000px;}
.y5_c00457{bottom:1063.845000px;}
.y3_c00457{bottom:1085.085000px;}
.y4_c00457{bottom:1092.645000px;}
.y2_c00457{bottom:1138.365000px;}
.hc_c00457{height:19.255605px;}
.ha_c00457{height:32.400000px;}
.h7_c00457{height:32.616000px;}
.h5_c00457{height:37.834560px;}
.h9_c00457{height:46.981634px;}
.hb_c00457{height:48.271680px;}
.h8_c00457{height:53.490240px;}
.hd_c00457{height:56.640000px;}
.h4_c00457{height:57.294676px;}
.h3_c00457{height:65.232000px;}
.h6_c00457{height:68.074560px;}
.h2_c00457{height:1201.365000px;}
.h0_c00457{height:1262.835000px;}
.h1_c00457{height:1263.000000px;}
.w4_c00457{width:25.020000px;}
.w3_c00457{width:592.560000px;}
.w2_c00457{width:863.955000px;}
.w0_c00457{width:892.935000px;}
.w1_c00457{width:893.250000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:14.490000px;}
.x2_c00457{left:113.040150px;}
.xa_c00457{left:132.570000px;}
.x5_c00457{left:142.184400px;}
.xb_c00457{left:147.106200px;}
.x8_c00457{left:225.560700px;}
.x9_c00457{left:229.730400px;}
.x6_c00457{left:380.586150px;}
.x7_c00457{left:400.580250px;}
.x3_c00457{left:454.673250px;}
.x4_c00457{left:505.800000px;}
.xc_c00457{left:759.914612px;}
@media print{
.v1_c00457{vertical-align:-26.880000pt;}
.v3_c00457{vertical-align:-21.760000pt;}
.v0_c00457{vertical-align:0.000000pt;}
.v2_c00457{vertical-align:26.880000pt;}
.ls7_c00457{letter-spacing:0.000000pt;}
.ls10_c00457{letter-spacing:0.179968pt;}
.ls11_c00457{letter-spacing:0.213120pt;}
.lsc_c00457{letter-spacing:0.236160pt;}
.ls6_c00457{letter-spacing:0.262400pt;}
.ls4_c00457{letter-spacing:0.288640pt;}
.ls3_c00457{letter-spacing:0.292114pt;}
.lsf_c00457{letter-spacing:0.355200pt;}
.lsa_c00457{letter-spacing:0.389485pt;}
.ls5_c00457{letter-spacing:0.472320pt;}
.lsb_c00457{letter-spacing:0.519552pt;}
.lsd_c00457{letter-spacing:0.619264pt;}
.ls2_c00457{letter-spacing:0.649142pt;}
.lse_c00457{letter-spacing:4.665472pt;}
.ls8_c00457{letter-spacing:4.742400pt;}
.ls0_c00457{letter-spacing:5.312000pt;}
.ls1_c00457{letter-spacing:5.329067pt;}
.ls9_c00457{letter-spacing:10.338560pt;}
.ws1_c00457{word-spacing:-18.620160pt;}
.ws3_c00457{word-spacing:-15.208704pt;}
.ws4_c00457{word-spacing:-13.379200pt;}
.ws0_c00457{word-spacing:-10.319360pt;}
.ws2_c00457{word-spacing:-8.896000pt;}
.ws5_c00457{word-spacing:0.000000pt;}
._6_c00457{margin-left:-10.758400pt;}
._5_c00457{margin-left:-9.813760pt;}
._4_c00457{margin-left:-0.893333pt;}
._7_c00457{width:1.050773pt;}
._0_c00457{width:2.048000pt;}
._3_c00457{width:3.840000pt;}
._2_c00457{width:9.856000pt;}
._1_c00457{width:43.520000pt;}
.fs4_c00457{font-size:32.000000pt;}
.fs2_c00457{font-size:37.120000pt;}
.fs7_c00457{font-size:47.360000pt;}
.fs3_c00457{font-size:49.920000pt;}
.fs5_c00457{font-size:52.480000pt;}
.fs8_c00457{font-size:53.333333pt;}
.fs6_c00457{font-size:54.095146pt;}
.fs0_c00457{font-size:64.000000pt;}
.fs1_c00457{font-size:65.969690pt;}
.y0_c00457{bottom:0.000000pt;}
.y28_c00457{bottom:2.773333pt;}
.y26_c00457{bottom:17.600000pt;}
.y27_c00457{bottom:30.884071pt;}
.y1_c00457{bottom:48.000000pt;}
.y24_c00457{bottom:49.320000pt;}
.y23_c00457{bottom:54.760000pt;}
.y22_c00457{bottom:64.680000pt;}
.y21_c00457{bottom:80.356480pt;}
.y20_c00457{bottom:101.160000pt;}
.y1f_c00457{bottom:124.840000pt;}
.y1e_c00457{bottom:185.640000pt;}
.y1d_c00457{bottom:217.640000pt;}
.y1c_c00457{bottom:249.640000pt;}
.y25_c00457{bottom:279.080000pt;}
.y1b_c00457{bottom:281.640000pt;}
.y1a_c00457{bottom:313.640000pt;}
.y19_c00457{bottom:345.640000pt;}
.y18_c00457{bottom:377.640000pt;}
.y17_c00457{bottom:409.640000pt;}
.y16_c00457{bottom:441.640000pt;}
.y15_c00457{bottom:473.640000pt;}
.y14_c00457{bottom:505.640000pt;}
.y13_c00457{bottom:537.640000pt;}
.y12_c00457{bottom:569.640000pt;}
.y11_c00457{bottom:601.640000pt;}
.y10_c00457{bottom:633.640000pt;}
.yf_c00457{bottom:665.640000pt;}
.ye_c00457{bottom:697.640000pt;}
.yd_c00457{bottom:729.640000pt;}
.yc_c00457{bottom:761.640000pt;}
.yb_c00457{bottom:793.640000pt;}
.ya_c00457{bottom:825.640000pt;}
.y9_c00457{bottom:857.640000pt;}
.y8_c00457{bottom:889.640000pt;}
.y7_c00457{bottom:908.520000pt;}
.y6_c00457{bottom:927.080000pt;}
.y5_c00457{bottom:945.640000pt;}
.y3_c00457{bottom:964.520000pt;}
.y4_c00457{bottom:971.240000pt;}
.y2_c00457{bottom:1011.880000pt;}
.hc_c00457{height:17.116093pt;}
.ha_c00457{height:28.800000pt;}
.h7_c00457{height:28.992000pt;}
.h5_c00457{height:33.630720pt;}
.h9_c00457{height:41.761453pt;}
.hb_c00457{height:42.908160pt;}
.h8_c00457{height:47.546880pt;}
.hd_c00457{height:50.346667pt;}
.h4_c00457{height:50.928601pt;}
.h3_c00457{height:57.984000pt;}
.h6_c00457{height:60.510720pt;}
.h2_c00457{height:1067.880000pt;}
.h0_c00457{height:1122.520000pt;}
.h1_c00457{height:1122.666667pt;}
.w4_c00457{width:22.240000pt;}
.w3_c00457{width:526.720000pt;}
.w2_c00457{width:767.960000pt;}
.w0_c00457{width:793.720000pt;}
.w1_c00457{width:794.000000pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:12.880000pt;}
.x2_c00457{left:100.480133pt;}
.xa_c00457{left:117.840000pt;}
.x5_c00457{left:126.386133pt;}
.xb_c00457{left:130.761067pt;}
.x8_c00457{left:200.498400pt;}
.x9_c00457{left:204.204800pt;}
.x6_c00457{left:338.298800pt;}
.x7_c00457{left:356.071333pt;}
.x3_c00457{left:404.154000pt;}
.x4_c00457{left:449.600000pt;}
.xc_c00457{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6036d90bacfb782b7d875fe2.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_b131612d9fd077b47c94937a.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_d14ff5f5460a48ba60d5dece.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls6_c00458{letter-spacing:0.000000px;}
.ls1_c00458{letter-spacing:0.202464px;}
.ls0_c00458{letter-spacing:0.280080px;}
.ls8_c00458{letter-spacing:0.319680px;}
.ls7_c00458{letter-spacing:0.399600px;}
.ls2_c00458{letter-spacing:0.399720px;}
.ls4_c00458{letter-spacing:4.680360px;}
.ls3_c00458{letter-spacing:4.841400px;}
.ls5_c00458{letter-spacing:5.976000px;}
.sc__c00458{text-shadow:none;}
.sc1_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00458{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc1_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00458{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00458{word-spacing:-15.211440px;}
.ws1_c00458{word-spacing:-14.811840px;}
.ws2_c00458{word-spacing:0.000000px;}
._0_c00458{width:1.071648px;}
.fc0_c00458{color:rgb(0,0,0);}
.fs1_c00458{font-size:53.280000px;}
.fs2_c00458{font-size:60.000000px;}
.fs0_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y1f_c00458{bottom:3.120000px;}
.y1d_c00458{bottom:14.400000px;}
.y1b_c00458{bottom:25.560000px;}
.y1e_c00458{bottom:34.744580px;}
.y1a_c00458{bottom:41.400000px;}
.y1_c00458{bottom:54.000000px;}
.y1c_c00458{bottom:211.365000px;}
.y18_c00458{bottom:328.725000px;}
.y17_c00458{bottom:364.725000px;}
.y16_c00458{bottom:400.725000px;}
.y15_c00458{bottom:436.725000px;}
.y14_c00458{bottom:472.725000px;}
.y13_c00458{bottom:509.085000px;}
.y12_c00458{bottom:545.085000px;}
.y11_c00458{bottom:581.085000px;}
.y10_c00458{bottom:617.085000px;}
.yf_c00458{bottom:653.085000px;}
.ye_c00458{bottom:689.085000px;}
.y19_c00458{bottom:724.365000px;}
.yd_c00458{bottom:725.085000px;}
.yc_c00458{bottom:761.085000px;}
.yb_c00458{bottom:797.085000px;}
.ya_c00458{bottom:833.085000px;}
.y9_c00458{bottom:869.085000px;}
.y8_c00458{bottom:905.085000px;}
.y7_c00458{bottom:941.085000px;}
.y6_c00458{bottom:977.085000px;}
.y5_c00458{bottom:1013.085000px;}
.y4_c00458{bottom:1049.085000px;}
.y3_c00458{bottom:1085.085000px;}
.y2_c00458{bottom:1138.365000px;}
.h7_c00458{height:19.255605px;}
.h6_c00458{height:27.000000px;}
.h5_c00458{height:48.271680px;}
.h4_c00458{height:54.000000px;}
.h8_c00458{height:56.640000px;}
.h3_c00458{height:65.232000px;}
.h2_c00458{height:1201.365000px;}
.h0_c00458{height:1262.835000px;}
.h1_c00458{height:1263.000000px;}
.w5_c00458{width:25.020000px;}
.w4_c00458{width:357.480000px;}
.w3_c00458{width:439.920000px;}
.w2_c00458{width:863.955000px;}
.w0_c00458{width:892.935000px;}
.w1_c00458{width:893.250000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:14.490000px;}
.x4_c00458{left:22.504200px;}
.x7_c00458{left:78.411900px;}
.x2_c00458{left:113.040150px;}
.x5_c00458{left:143.691450px;}
.x3_c00458{left:180.450000px;}
.x6_c00458{left:232.650000px;}
.x8_c00458{left:759.914612px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls6_c00458{letter-spacing:0.000000pt;}
.ls1_c00458{letter-spacing:0.179968pt;}
.ls0_c00458{letter-spacing:0.248960pt;}
.ls8_c00458{letter-spacing:0.284160pt;}
.ls7_c00458{letter-spacing:0.355200pt;}
.ls2_c00458{letter-spacing:0.355307pt;}
.ls4_c00458{letter-spacing:4.160320pt;}
.ls3_c00458{letter-spacing:4.303467pt;}
.ls5_c00458{letter-spacing:5.312000pt;}
.ws0_c00458{word-spacing:-13.521280pt;}
.ws1_c00458{word-spacing:-13.166080pt;}
.ws2_c00458{word-spacing:0.000000pt;}
._0_c00458{width:0.952576pt;}
.fs1_c00458{font-size:47.360000pt;}
.fs2_c00458{font-size:53.333333pt;}
.fs0_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y1f_c00458{bottom:2.773333pt;}
.y1d_c00458{bottom:12.800000pt;}
.y1b_c00458{bottom:22.720000pt;}
.y1e_c00458{bottom:30.884071pt;}
.y1a_c00458{bottom:36.800000pt;}
.y1_c00458{bottom:48.000000pt;}
.y1c_c00458{bottom:187.880000pt;}
.y18_c00458{bottom:292.200000pt;}
.y17_c00458{bottom:324.200000pt;}
.y16_c00458{bottom:356.200000pt;}
.y15_c00458{bottom:388.200000pt;}
.y14_c00458{bottom:420.200000pt;}
.y13_c00458{bottom:452.520000pt;}
.y12_c00458{bottom:484.520000pt;}
.y11_c00458{bottom:516.520000pt;}
.y10_c00458{bottom:548.520000pt;}
.yf_c00458{bottom:580.520000pt;}
.ye_c00458{bottom:612.520000pt;}
.y19_c00458{bottom:643.880000pt;}
.yd_c00458{bottom:644.520000pt;}
.yc_c00458{bottom:676.520000pt;}
.yb_c00458{bottom:708.520000pt;}
.ya_c00458{bottom:740.520000pt;}
.y9_c00458{bottom:772.520000pt;}
.y8_c00458{bottom:804.520000pt;}
.y7_c00458{bottom:836.520000pt;}
.y6_c00458{bottom:868.520000pt;}
.y5_c00458{bottom:900.520000pt;}
.y4_c00458{bottom:932.520000pt;}
.y3_c00458{bottom:964.520000pt;}
.y2_c00458{bottom:1011.880000pt;}
.h7_c00458{height:17.116093pt;}
.h6_c00458{height:24.000000pt;}
.h5_c00458{height:42.908160pt;}
.h4_c00458{height:48.000000pt;}
.h8_c00458{height:50.346667pt;}
.h3_c00458{height:57.984000pt;}
.h2_c00458{height:1067.880000pt;}
.h0_c00458{height:1122.520000pt;}
.h1_c00458{height:1122.666667pt;}
.w5_c00458{width:22.240000pt;}
.w4_c00458{width:317.760000pt;}
.w3_c00458{width:391.040000pt;}
.w2_c00458{width:767.960000pt;}
.w0_c00458{width:793.720000pt;}
.w1_c00458{width:794.000000pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:12.880000pt;}
.x4_c00458{left:20.003733pt;}
.x7_c00458{left:69.699467pt;}
.x2_c00458{left:100.480133pt;}
.x5_c00458{left:127.725733pt;}
.x3_c00458{left:160.400000pt;}
.x6_c00458{left:206.800000pt;}
.x8_c00458{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5143affe9947d50a7886dd9b.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_21c7d9fd7b61d7a16db26cad.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;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:ff3_c00459;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00459;src:url('chunks/assets/font_ba3726b9543f96d24c581f01.woff2')format("woff");}.ff5_c00459{font-family:ff5_c00459;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00459{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls4_c00459{letter-spacing:0.000000px;}
.ls5_c00459{letter-spacing:5.430672px;}
.ls1_c00459{letter-spacing:5.956200px;}
.ls0_c00459{letter-spacing:5.976000px;}
.ls2_c00459{letter-spacing:5.980200px;}
.ls3_c00459{letter-spacing:54.864000px;}
.sc__c00459{text-shadow:none;}
.sc1_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00459{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc1_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00459{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00459{word-spacing:-21.043152px;}
.ws1_c00459{word-spacing:0.000000px;}
._3_c00459{margin-left:-1.179360px;}
._2_c00459{width:1.296000px;}
._6_c00459{width:3.168000px;}
._9_c00459{width:4.176000px;}
._4_c00459{width:5.616000px;}
._5_c00459{width:7.488000px;}
._1_c00459{width:9.000000px;}
._8_c00459{width:10.296000px;}
._a_c00459{width:14.112000px;}
._7_c00459{width:23.112000px;}
._0_c00459{width:24.120000px;}
.fc0_c00459{color:rgb(0,0,0);}
.fs2_c00459{font-size:56.160000px;}
.fs3_c00459{font-size:60.000000px;}
.fs0_c00459{font-size:72.000000px;}
.fs1_c00459{font-size:74.215901px;}
.y0_c00459{bottom:0.000000px;}
.y28_c00459{bottom:3.120000px;}
.y27_c00459{bottom:34.744580px;}
.y1_c00459{bottom:54.000000px;}
.y26_c00459{bottom:60.165000px;}
.y25_c00459{bottom:81.405000px;}
.y24_c00459{bottom:117.405000px;}
.y23_c00459{bottom:153.405000px;}
.y22_c00459{bottom:189.405000px;}
.y21_c00459{bottom:210.285000px;}
.y20_c00459{bottom:231.165000px;}
.y1f_c00459{bottom:252.405000px;}
.y1e_c00459{bottom:273.285000px;}
.y1d_c00459{bottom:309.285000px;}
.y1c_c00459{bottom:345.285000px;}
.y1b_c00459{bottom:381.285000px;}
.y1a_c00459{bottom:417.285000px;}
.y19_c00459{bottom:438.525000px;}
.y18_c00459{bottom:459.405000px;}
.y17_c00459{bottom:480.285000px;}
.y16_c00459{bottom:501.525000px;}
.y15_c00459{bottom:522.405000px;}
.y14_c00459{bottom:543.285000px;}
.y13_c00459{bottom:564.525000px;}
.y12_c00459{bottom:585.405000px;}
.y11_c00459{bottom:621.405000px;}
.y10_c00459{bottom:657.405000px;}
.yf_c00459{bottom:693.405000px;}
.ye_c00459{bottom:729.405000px;}
.yd_c00459{bottom:765.405000px;}
.yc_c00459{bottom:786.285000px;}
.yb_c00459{bottom:822.285000px;}
.ya_c00459{bottom:858.645000px;}
.y9_c00459{bottom:894.645000px;}
.y8_c00459{bottom:930.645000px;}
.y7_c00459{bottom:951.525000px;}
.y6_c00459{bottom:972.405000px;}
.y5_c00459{bottom:1008.405000px;}
.y4_c00459{bottom:1044.405000px;}
.y3_c00459{bottom:1082.925000px;}
.y2_c00459{bottom:1138.365000px;}
.h5_c00459{height:19.255605px;}
.h6_c00459{height:56.640000px;}
.h4_c00459{height:57.294676px;}
.h3_c00459{height:65.232000px;}
.h2_c00459{height:1201.365000px;}
.h0_c00459{height:1262.835000px;}
.h1_c00459{height:1263.000000px;}
.w3_c00459{width:25.020000px;}
.w2_c00459{width:863.955000px;}
.w0_c00459{width:892.935000px;}
.w1_c00459{width:893.250000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:14.490000px;}
.x2_c00459{left:113.040150px;}
.x8_c00459{left:140.037600px;}
.x9_c00459{left:167.037600px;}
.x6_c00459{left:204.477600px;}
.x7_c00459{left:216.689550px;}
.xa_c00459{left:244.268250px;}
.xb_c00459{left:295.279200px;}
.x3_c00459{left:413.967000px;}
.x4_c00459{left:620.128800px;}
.x5_c00459{left:655.156200px;}
.xc_c00459{left:759.914612px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls4_c00459{letter-spacing:0.000000pt;}
.ls5_c00459{letter-spacing:4.827264pt;}
.ls1_c00459{letter-spacing:5.294400pt;}
.ls0_c00459{letter-spacing:5.312000pt;}
.ls2_c00459{letter-spacing:5.315733pt;}
.ls3_c00459{letter-spacing:48.768000pt;}
.ws0_c00459{word-spacing:-18.705024pt;}
.ws1_c00459{word-spacing:0.000000pt;}
._3_c00459{margin-left:-1.048320pt;}
._2_c00459{width:1.152000pt;}
._6_c00459{width:2.816000pt;}
._9_c00459{width:3.712000pt;}
._4_c00459{width:4.992000pt;}
._5_c00459{width:6.656000pt;}
._1_c00459{width:8.000000pt;}
._8_c00459{width:9.152000pt;}
._a_c00459{width:12.544000pt;}
._7_c00459{width:20.544000pt;}
._0_c00459{width:21.440000pt;}
.fs2_c00459{font-size:49.920000pt;}
.fs3_c00459{font-size:53.333333pt;}
.fs0_c00459{font-size:64.000000pt;}
.fs1_c00459{font-size:65.969690pt;}
.y0_c00459{bottom:0.000000pt;}
.y28_c00459{bottom:2.773333pt;}
.y27_c00459{bottom:30.884071pt;}
.y1_c00459{bottom:48.000000pt;}
.y26_c00459{bottom:53.480000pt;}
.y25_c00459{bottom:72.360000pt;}
.y24_c00459{bottom:104.360000pt;}
.y23_c00459{bottom:136.360000pt;}
.y22_c00459{bottom:168.360000pt;}
.y21_c00459{bottom:186.920000pt;}
.y20_c00459{bottom:205.480000pt;}
.y1f_c00459{bottom:224.360000pt;}
.y1e_c00459{bottom:242.920000pt;}
.y1d_c00459{bottom:274.920000pt;}
.y1c_c00459{bottom:306.920000pt;}
.y1b_c00459{bottom:338.920000pt;}
.y1a_c00459{bottom:370.920000pt;}
.y19_c00459{bottom:389.800000pt;}
.y18_c00459{bottom:408.360000pt;}
.y17_c00459{bottom:426.920000pt;}
.y16_c00459{bottom:445.800000pt;}
.y15_c00459{bottom:464.360000pt;}
.y14_c00459{bottom:482.920000pt;}
.y13_c00459{bottom:501.800000pt;}
.y12_c00459{bottom:520.360000pt;}
.y11_c00459{bottom:552.360000pt;}
.y10_c00459{bottom:584.360000pt;}
.yf_c00459{bottom:616.360000pt;}
.ye_c00459{bottom:648.360000pt;}
.yd_c00459{bottom:680.360000pt;}
.yc_c00459{bottom:698.920000pt;}
.yb_c00459{bottom:730.920000pt;}
.ya_c00459{bottom:763.240000pt;}
.y9_c00459{bottom:795.240000pt;}
.y8_c00459{bottom:827.240000pt;}
.y7_c00459{bottom:845.800000pt;}
.y6_c00459{bottom:864.360000pt;}
.y5_c00459{bottom:896.360000pt;}
.y4_c00459{bottom:928.360000pt;}
.y3_c00459{bottom:962.600000pt;}
.y2_c00459{bottom:1011.880000pt;}
.h5_c00459{height:17.116093pt;}
.h6_c00459{height:50.346667pt;}
.h4_c00459{height:50.928601pt;}
.h3_c00459{height:57.984000pt;}
.h2_c00459{height:1067.880000pt;}
.h0_c00459{height:1122.520000pt;}
.h1_c00459{height:1122.666667pt;}
.w3_c00459{width:22.240000pt;}
.w2_c00459{width:767.960000pt;}
.w0_c00459{width:793.720000pt;}
.w1_c00459{width:794.000000pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:12.880000pt;}
.x2_c00459{left:100.480133pt;}
.x8_c00459{left:124.477867pt;}
.x9_c00459{left:148.477867pt;}
.x6_c00459{left:181.757867pt;}
.x7_c00459{left:192.612933pt;}
.xa_c00459{left:217.127333pt;}
.xb_c00459{left:262.470400pt;}
.x3_c00459{left:367.970667pt;}
.x4_c00459{left:551.225600pt;}
.x5_c00459{left:582.361067pt;}
.xc_c00459{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5272196e3cbe3f5a395c13d.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_d0539665b7b0ef28988ef922.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;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:ff3_c00460;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_380edcbf19f19cd4ed636694.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00460;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff6_c00460{font-family:ff6_c00460;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00460;src:url('chunks/assets/font_1792d9a02d91971803a0bb9c.woff2')format("woff");}.ff7_c00460{font-family:ff7_c00460;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00460;src:url('chunks/assets/font_16504b29d9f8b34fc2fe4649.woff2')format("woff");}.ff8_c00460{font-family:ff8_c00460;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00460;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff9_c00460{font-family:ff9_c00460;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00460;src:url('chunks/assets/font_2866be37e727774a805a573f.woff2')format("woff");}.ffa_c00460{font-family:ffa_c00460;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00460{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00460{vertical-align:-30.240000px;}
.v3_c00460{vertical-align:-24.480000px;}
.v0_c00460{vertical-align:0.000000px;}
.v2_c00460{vertical-align:30.240000px;}
.ls10_c00460{letter-spacing:0.000000px;}
.lsc_c00460{letter-spacing:0.195240px;}
.lsf_c00460{letter-spacing:0.236160px;}
.ls12_c00460{letter-spacing:0.265680px;}
.ls2_c00460{letter-spacing:0.289296px;}
.ls5_c00460{letter-spacing:0.295200px;}
.ls17_c00460{letter-spacing:0.318816px;}
.ls1a_c00460{letter-spacing:0.371952px;}
.ls20_c00460{letter-spacing:0.438171px;}
.ls1f_c00460{letter-spacing:0.478224px;}
.ls3_c00460{letter-spacing:0.519552px;}
.ls6_c00460{letter-spacing:0.531360px;}
.lse_c00460{letter-spacing:0.547713px;}
.ls7_c00460{letter-spacing:0.560880px;}
.ls11_c00460{letter-spacing:0.584496px;}
.ls14_c00460{letter-spacing:0.602485px;}
.ls4_c00460{letter-spacing:0.657256px;}
.ls9_c00460{letter-spacing:0.681240px;}
.ls16_c00460{letter-spacing:0.690768px;}
.ls1b_c00460{letter-spacing:0.696672px;}
.ls1_c00460{letter-spacing:0.712027px;}
.lsd_c00460{letter-spacing:0.741240px;}
.ls13_c00460{letter-spacing:0.743904px;}
.lsa_c00460{letter-spacing:0.751440px;}
.ls21_c00460{letter-spacing:0.797040px;}
.ls1e_c00460{letter-spacing:3.087792px;}
.lsb_c00460{letter-spacing:4.392000px;}
.ls1c_c00460{letter-spacing:5.430672px;}
.ls15_c00460{letter-spacing:5.461200px;}
.ls1d_c00460{letter-spacing:5.567472px;}
.ls8_c00460{letter-spacing:5.975400px;}
.ls0_c00460{letter-spacing:5.976000px;}
.ls18_c00460{letter-spacing:7.545312px;}
.ls19_c00460{letter-spacing:9.954144px;}
.sc__c00460{text-shadow:none;}
.sc1_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00460{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc1_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00460{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00460{word-spacing:-21.980592px;}
.ws5_c00460{word-spacing:-21.043152px;}
.ws6_c00460{word-spacing:-20.016000px;}
.ws0_c00460{word-spacing:-17.630284px;}
.ws3_c00460{word-spacing:-17.575513px;}
.ws2_c00460{word-spacing:-17.520742px;}
.ws8_c00460{word-spacing:-17.465970px;}
.ws1_c00460{word-spacing:-17.157024px;}
.ws4_c00460{word-spacing:-17.109792px;}
.ws7_c00460{word-spacing:-10.008000px;}
.wsa_c00460{word-spacing:0.000000px;}
._8_c00460{margin-left:-10.391040px;}
._7_c00460{margin-left:-9.387360px;}
._6_c00460{margin-left:-7.911360px;}
._5_c00460{margin-left:-6.789600px;}
._14_c00460{margin-left:-2.597760px;}
._1_c00460{margin-left:-1.180800px;}
._3_c00460{width:1.003680px;}
._2_c00460{width:2.243520px;}
._e_c00460{width:3.504960px;}
._b_c00460{width:4.822560px;}
._0_c00460{width:6.120000px;}
._4_c00460{width:7.498080px;}
._9_c00460{width:8.761536px;}
._a_c00460{width:9.812448px;}
._10_c00460{width:11.016000px;}
._11_c00460{width:12.312000px;}
._c_c00460{width:14.760000px;}
._13_c00460{width:16.128000px;}
._f_c00460{width:22.392000px;}
._12_c00460{width:24.840000px;}
._d_c00460{width:29.592000px;}
.fc0_c00460{color:rgb(0,0,0);}
.fs7_c00460{font-size:36.000000px;}
.fs6_c00460{font-size:41.760000px;}
.fs5_c00460{font-size:56.160000px;}
.fs3_c00460{font-size:59.040000px;}
.fs8_c00460{font-size:60.000000px;}
.fs4_c00460{font-size:60.857039px;}
.fs2_c00460{font-size:64.800000px;}
.fs0_c00460{font-size:72.000000px;}
.fs1_c00460{font-size:74.215901px;}
.y0_c00460{bottom:0.000000px;}
.y38_c00460{bottom:3.120000px;}
.y37_c00460{bottom:34.744580px;}
.y1_c00460{bottom:54.000000px;}
.y36_c00460{bottom:55.481040px;}
.y35_c00460{bottom:72.765000px;}
.y34_c00460{bottom:72.766800px;}
.y33_c00460{bottom:90.405000px;}
.y32_c00460{bottom:96.525000px;}
.y31_c00460{bottom:113.805000px;}
.y30_c00460{bottom:125.325000px;}
.y2f_c00460{bottom:131.445000px;}
.y2e_c00460{bottom:158.085000px;}
.y2d_c00460{bottom:198.405000px;}
.y2c_c00460{bottom:219.285000px;}
.y2b_c00460{bottom:240.165000px;}
.y2a_c00460{bottom:276.165000px;}
.y29_c00460{bottom:299.205000px;}
.y28_c00460{bottom:321.885000px;}
.y27_c00460{bottom:357.525000px;}
.y26_c00460{bottom:378.405000px;}
.y25_c00460{bottom:399.645000px;}
.y23_c00460{bottom:420.525000px;}
.y24_c00460{bottom:428.085000px;}
.y22_c00460{bottom:441.405000px;}
.y21_c00460{bottom:462.645000px;}
.y20_c00460{bottom:498.645000px;}
.y1f_c00460{bottom:519.525000px;}
.y1e_c00460{bottom:540.765000px;}
.y1d_c00460{bottom:561.645000px;}
.y1c_c00460{bottom:582.525000px;}
.y1b_c00460{bottom:618.525000px;}
.y1a_c00460{bottom:654.525000px;}
.y19_c00460{bottom:682.961040px;}
.y18_c00460{bottom:700.245000px;}
.y17_c00460{bottom:700.246800px;}
.y15_c00460{bottom:717.882840px;}
.y16_c00460{bottom:717.885000px;}
.y14_c00460{bottom:735.521040px;}
.y13_c00460{bottom:752.805000px;}
.y11_c00460{bottom:778.001040px;}
.y12_c00460{bottom:778.005000px;}
.y10_c00460{bottom:795.285000px;}
.yf_c00460{bottom:795.286800px;}
.yd_c00460{bottom:812.922840px;}
.ye_c00460{bottom:812.925000px;}
.yc_c00460{bottom:838.118160px;}
.yb_c00460{bottom:862.605000px;}
.ya_c00460{bottom:890.325000px;}
.y9_c00460{bottom:915.525000px;}
.y8_c00460{bottom:942.165000px;}
.y7_c00460{bottom:971.325000px;}
.y6_c00460{bottom:999.764850px;}
.y5_c00460{bottom:1027.845000px;}
.y4_c00460{bottom:1063.845000px;}
.y3_c00460{bottom:1085.085000px;}
.y2_c00460{bottom:1138.365000px;}
.hd_c00460{height:19.255605px;}
.hc_c00460{height:32.616000px;}
.ha_c00460{height:37.834560px;}
.h9_c00460{height:39.350391px;}
.h8_c00460{height:46.981634px;}
.h5_c00460{height:47.988281px;}
.h7_c00460{height:53.490240px;}
.he_c00460{height:56.640000px;}
.h4_c00460{height:57.294676px;}
.h6_c00460{height:58.708800px;}
.h3_c00460{height:65.232000px;}
.hb_c00460{height:68.074560px;}
.h2_c00460{height:1201.365000px;}
.h0_c00460{height:1262.835000px;}
.h1_c00460{height:1263.000000px;}
.w3_c00460{width:25.020000px;}
.w2_c00460{width:863.955000px;}
.w0_c00460{width:892.935000px;}
.w1_c00460{width:893.250000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:14.490000px;}
.x2_c00460{left:113.040150px;}
.x1e_c00460{left:137.204250px;}
.x29_c00460{left:140.304150px;}
.xc_c00460{left:147.223350px;}
.x14_c00460{left:170.872950px;}
.xd_c00460{left:174.717750px;}
.x1c_c00460{left:188.097000px;}
.x2a_c00460{left:191.160000px;}
.x15_c00460{left:195.847350px;}
.x1d_c00460{left:227.261400px;}
.x37_c00460{left:245.539650px;}
.x21_c00460{left:256.644300px;}
.x31_c00460{left:258.063750px;}
.x22_c00460{left:262.273650px;}
.x16_c00460{left:267.994650px;}
.x38_c00460{left:270.558450px;}
.x25_c00460{left:283.758150px;}
.x17_c00460{left:292.969050px;}
.x32_c00460{left:311.054850px;}
.x3_c00460{left:325.665150px;}
.x18_c00460{left:342.477150px;}
.xe_c00460{left:353.886450px;}
.x33_c00460{left:366.079800px;}
.x19_c00460{left:370.796550px;}
.xf_c00460{left:378.875250px;}
.x4_c00460{left:386.665950px;}
.x26_c00460{left:389.167650px;}
.x5_c00460{left:391.165950px;}
.x10_c00460{left:403.864800px;}
.x1a_c00460{left:411.964950px;}
.x27_c00460{left:422.976900px;}
.x34_c00460{left:427.062750px;}
.x1b_c00460{left:431.119650px;}
.x3b_c00460{left:445.888200px;}
.x2f_c00460{left:450.871500px;}
.x6_c00460{left:462.156750px;}
.x7_c00460{left:466.656750px;}
.x2d_c00460{left:490.349850px;}
.x11_c00460{left:494.686950px;}
.x13_c00460{left:498.319350px;}
.x12_c00460{left:503.026200px;}
.x30_c00460{left:517.866600px;}
.x23_c00460{left:520.862550px;}
.x24_c00460{left:525.411600px;}
.x28_c00460{left:532.363800px;}
.x2e_c00460{left:546.365100px;}
.x8_c00460{left:548.645100px;}
.x9_c00460{left:553.145100px;}
.xa_c00460{left:604.138500px;}
.xb_c00460{left:608.638500px;}
.x35_c00460{left:648.117600px;}
.x2b_c00460{left:657.139200px;}
.x1f_c00460{left:716.289900px;}
.x20_c00460{left:722.880900px;}
.x39_c00460{left:725.400450px;}
.x36_c00460{left:728.108250px;}
.x2c_c00460{left:745.386150px;}
.x3a_c00460{left:750.390000px;}
.x3c_c00460{left:759.914612px;}
@media print{
.v1_c00460{vertical-align:-26.880000pt;}
.v3_c00460{vertical-align:-21.760000pt;}
.v0_c00460{vertical-align:0.000000pt;}
.v2_c00460{vertical-align:26.880000pt;}
.ls10_c00460{letter-spacing:0.000000pt;}
.lsc_c00460{letter-spacing:0.173547pt;}
.lsf_c00460{letter-spacing:0.209920pt;}
.ls12_c00460{letter-spacing:0.236160pt;}
.ls2_c00460{letter-spacing:0.257152pt;}
.ls5_c00460{letter-spacing:0.262400pt;}
.ls17_c00460{letter-spacing:0.283392pt;}
.ls1a_c00460{letter-spacing:0.330624pt;}
.ls20_c00460{letter-spacing:0.389485pt;}
.ls1f_c00460{letter-spacing:0.425088pt;}
.ls3_c00460{letter-spacing:0.461824pt;}
.ls6_c00460{letter-spacing:0.472320pt;}
.lse_c00460{letter-spacing:0.486856pt;}
.ls7_c00460{letter-spacing:0.498560pt;}
.ls11_c00460{letter-spacing:0.519552pt;}
.ls14_c00460{letter-spacing:0.535542pt;}
.ls4_c00460{letter-spacing:0.584228pt;}
.ls9_c00460{letter-spacing:0.605547pt;}
.ls16_c00460{letter-spacing:0.614016pt;}
.ls1b_c00460{letter-spacing:0.619264pt;}
.ls1_c00460{letter-spacing:0.632913pt;}
.lsd_c00460{letter-spacing:0.658880pt;}
.ls13_c00460{letter-spacing:0.661248pt;}
.lsa_c00460{letter-spacing:0.667947pt;}
.ls21_c00460{letter-spacing:0.708480pt;}
.ls1e_c00460{letter-spacing:2.744704pt;}
.lsb_c00460{letter-spacing:3.904000pt;}
.ls1c_c00460{letter-spacing:4.827264pt;}
.ls15_c00460{letter-spacing:4.854400pt;}
.ls1d_c00460{letter-spacing:4.948864pt;}
.ls8_c00460{letter-spacing:5.311467pt;}
.ls0_c00460{letter-spacing:5.312000pt;}
.ls18_c00460{letter-spacing:6.706944pt;}
.ls19_c00460{letter-spacing:8.848128pt;}
.ws9_c00460{word-spacing:-19.538304pt;}
.ws5_c00460{word-spacing:-18.705024pt;}
.ws6_c00460{word-spacing:-17.792000pt;}
.ws0_c00460{word-spacing:-15.671364pt;}
.ws3_c00460{word-spacing:-15.622678pt;}
.ws2_c00460{word-spacing:-15.573992pt;}
.ws8_c00460{word-spacing:-15.525307pt;}
.ws1_c00460{word-spacing:-15.250688pt;}
.ws4_c00460{word-spacing:-15.208704pt;}
.ws7_c00460{word-spacing:-8.896000pt;}
.wsa_c00460{word-spacing:0.000000pt;}
._8_c00460{margin-left:-9.236480pt;}
._7_c00460{margin-left:-8.344320pt;}
._6_c00460{margin-left:-7.032320pt;}
._5_c00460{margin-left:-6.035200pt;}
._14_c00460{margin-left:-2.309120pt;}
._1_c00460{margin-left:-1.049600pt;}
._3_c00460{width:0.892160pt;}
._2_c00460{width:1.994240pt;}
._e_c00460{width:3.115520pt;}
._b_c00460{width:4.286720pt;}
._0_c00460{width:5.440000pt;}
._4_c00460{width:6.664960pt;}
._9_c00460{width:7.788032pt;}
._a_c00460{width:8.722176pt;}
._10_c00460{width:9.792000pt;}
._11_c00460{width:10.944000pt;}
._c_c00460{width:13.120000pt;}
._13_c00460{width:14.336000pt;}
._f_c00460{width:19.904000pt;}
._12_c00460{width:22.080000pt;}
._d_c00460{width:26.304000pt;}
.fs7_c00460{font-size:32.000000pt;}
.fs6_c00460{font-size:37.120000pt;}
.fs5_c00460{font-size:49.920000pt;}
.fs3_c00460{font-size:52.480000pt;}
.fs8_c00460{font-size:53.333333pt;}
.fs4_c00460{font-size:54.095146pt;}
.fs2_c00460{font-size:57.600000pt;}
.fs0_c00460{font-size:64.000000pt;}
.fs1_c00460{font-size:65.969690pt;}
.y0_c00460{bottom:0.000000pt;}
.y38_c00460{bottom:2.773333pt;}
.y37_c00460{bottom:30.884071pt;}
.y1_c00460{bottom:48.000000pt;}
.y36_c00460{bottom:49.316480pt;}
.y35_c00460{bottom:64.680000pt;}
.y34_c00460{bottom:64.681600pt;}
.y33_c00460{bottom:80.360000pt;}
.y32_c00460{bottom:85.800000pt;}
.y31_c00460{bottom:101.160000pt;}
.y30_c00460{bottom:111.400000pt;}
.y2f_c00460{bottom:116.840000pt;}
.y2e_c00460{bottom:140.520000pt;}
.y2d_c00460{bottom:176.360000pt;}
.y2c_c00460{bottom:194.920000pt;}
.y2b_c00460{bottom:213.480000pt;}
.y2a_c00460{bottom:245.480000pt;}
.y29_c00460{bottom:265.960000pt;}
.y28_c00460{bottom:286.120000pt;}
.y27_c00460{bottom:317.800000pt;}
.y26_c00460{bottom:336.360000pt;}
.y25_c00460{bottom:355.240000pt;}
.y23_c00460{bottom:373.800000pt;}
.y24_c00460{bottom:380.520000pt;}
.y22_c00460{bottom:392.360000pt;}
.y21_c00460{bottom:411.240000pt;}
.y20_c00460{bottom:443.240000pt;}
.y1f_c00460{bottom:461.800000pt;}
.y1e_c00460{bottom:480.680000pt;}
.y1d_c00460{bottom:499.240000pt;}
.y1c_c00460{bottom:517.800000pt;}
.y1b_c00460{bottom:549.800000pt;}
.y1a_c00460{bottom:581.800000pt;}
.y19_c00460{bottom:607.076480pt;}
.y18_c00460{bottom:622.440000pt;}
.y17_c00460{bottom:622.441600pt;}
.y15_c00460{bottom:638.118080pt;}
.y16_c00460{bottom:638.120000pt;}
.y14_c00460{bottom:653.796480pt;}
.y13_c00460{bottom:669.160000pt;}
.y11_c00460{bottom:691.556480pt;}
.y12_c00460{bottom:691.560000pt;}
.y10_c00460{bottom:706.920000pt;}
.yf_c00460{bottom:706.921600pt;}
.yd_c00460{bottom:722.598080pt;}
.ye_c00460{bottom:722.600000pt;}
.yc_c00460{bottom:744.993920pt;}
.yb_c00460{bottom:766.760000pt;}
.ya_c00460{bottom:791.400000pt;}
.y9_c00460{bottom:813.800000pt;}
.y8_c00460{bottom:837.480000pt;}
.y7_c00460{bottom:863.400000pt;}
.y6_c00460{bottom:888.679867pt;}
.y5_c00460{bottom:913.640000pt;}
.y4_c00460{bottom:945.640000pt;}
.y3_c00460{bottom:964.520000pt;}
.y2_c00460{bottom:1011.880000pt;}
.hd_c00460{height:17.116093pt;}
.hc_c00460{height:28.992000pt;}
.ha_c00460{height:33.630720pt;}
.h9_c00460{height:34.978125pt;}
.h8_c00460{height:41.761453pt;}
.h5_c00460{height:42.656250pt;}
.h7_c00460{height:47.546880pt;}
.he_c00460{height:50.346667pt;}
.h4_c00460{height:50.928601pt;}
.h6_c00460{height:52.185600pt;}
.h3_c00460{height:57.984000pt;}
.hb_c00460{height:60.510720pt;}
.h2_c00460{height:1067.880000pt;}
.h0_c00460{height:1122.520000pt;}
.h1_c00460{height:1122.666667pt;}
.w3_c00460{width:22.240000pt;}
.w2_c00460{width:767.960000pt;}
.w0_c00460{width:793.720000pt;}
.w1_c00460{width:794.000000pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:12.880000pt;}
.x2_c00460{left:100.480133pt;}
.x1e_c00460{left:121.959333pt;}
.x29_c00460{left:124.714800pt;}
.xc_c00460{left:130.865200pt;}
.x14_c00460{left:151.887067pt;}
.xd_c00460{left:155.304667pt;}
.x1c_c00460{left:167.197333pt;}
.x2a_c00460{left:169.920000pt;}
.x15_c00460{left:174.086533pt;}
.x1d_c00460{left:202.010133pt;}
.x37_c00460{left:218.257467pt;}
.x21_c00460{left:228.128267pt;}
.x31_c00460{left:229.390000pt;}
.x22_c00460{left:233.132133pt;}
.x16_c00460{left:238.217467pt;}
.x38_c00460{left:240.496400pt;}
.x25_c00460{left:252.229467pt;}
.x17_c00460{left:260.416933pt;}
.x32_c00460{left:276.493200pt;}
.x3_c00460{left:289.480133pt;}
.x18_c00460{left:304.424133pt;}
.xe_c00460{left:314.565733pt;}
.x33_c00460{left:325.404267pt;}
.x19_c00460{left:329.596933pt;}
.xf_c00460{left:336.778000pt;}
.x4_c00460{left:343.703067pt;}
.x26_c00460{left:345.926800pt;}
.x5_c00460{left:347.703067pt;}
.x10_c00460{left:358.990933pt;}
.x1a_c00460{left:366.191067pt;}
.x27_c00460{left:375.979467pt;}
.x34_c00460{left:379.611333pt;}
.x1b_c00460{left:383.217467pt;}
.x3b_c00460{left:396.345067pt;}
.x2f_c00460{left:400.774667pt;}
.x6_c00460{left:410.806000pt;}
.x7_c00460{left:414.806000pt;}
.x2d_c00460{left:435.866533pt;}
.x11_c00460{left:439.721733pt;}
.x13_c00460{left:442.950533pt;}
.x12_c00460{left:447.134400pt;}
.x30_c00460{left:460.325867pt;}
.x23_c00460{left:462.988933pt;}
.x24_c00460{left:467.032533pt;}
.x28_c00460{left:473.212267pt;}
.x2e_c00460{left:485.657867pt;}
.x8_c00460{left:487.684533pt;}
.x9_c00460{left:491.684533pt;}
.xa_c00460{left:537.012000pt;}
.xb_c00460{left:541.012000pt;}
.x35_c00460{left:576.104533pt;}
.x2b_c00460{left:584.123733pt;}
.x1f_c00460{left:636.702133pt;}
.x20_c00460{left:642.560800pt;}
.x39_c00460{left:644.800400pt;}
.x36_c00460{left:647.207333pt;}
.x2c_c00460{left:662.565467pt;}
.x3a_c00460{left:667.013333pt;}
.x3c_c00460{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3850dfc28bf765c4689480e.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_ae8a7376b7e33e4ae8782eab.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00461{vertical-align:-24.480000px;}
.v0_c00461{vertical-align:0.000000px;}
.ls2_c00461{letter-spacing:0.000000px;}
.lsa_c00461{letter-spacing:0.202464px;}
.ls7_c00461{letter-spacing:0.265680px;}
.ls8_c00461{letter-spacing:0.399600px;}
.ls9_c00461{letter-spacing:4.923072px;}
.ls3_c00461{letter-spacing:5.335200px;}
.ls6_c00461{letter-spacing:5.461200px;}
.ls0_c00461{letter-spacing:5.975400px;}
.ls1_c00461{letter-spacing:5.976000px;}
.ls5_c00461{letter-spacing:9.068544px;}
.ls4_c00461{letter-spacing:9.074448px;}
.sc__c00461{text-shadow:none;}
.sc1_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00461{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc1_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00461{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2_c00461{word-spacing:-21.874320px;}
.ws0_c00461{word-spacing:-20.947680px;}
.ws3_c00461{word-spacing:-19.734912px;}
.ws1_c00461{word-spacing:-10.008000px;}
.ws4_c00461{word-spacing:0.000000px;}
._3_c00461{margin-left:-9.505440px;}
._2_c00461{margin-left:-8.383680px;}
._1_c00461{margin-left:-1.005000px;}
._4_c00461{width:1.003680px;}
._0_c00461{width:4.320000px;}
.fc0_c00461{color:rgb(0,0,0);}
.fs2_c00461{font-size:36.000000px;}
.fs4_c00461{font-size:53.280000px;}
.fs1_c00461{font-size:56.160000px;}
.fs3_c00461{font-size:59.040000px;}
.fs5_c00461{font-size:60.000000px;}
.fs0_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y23_c00461{bottom:3.120000px;}
.y22_c00461{bottom:34.744580px;}
.y21_c00461{bottom:39.600000px;}
.y1_c00461{bottom:54.000000px;}
.y1f_c00461{bottom:55.481040px;}
.y1e_c00461{bottom:78.885000px;}
.y1d_c00461{bottom:105.525000px;}
.y1c_c00461{bottom:184.725000px;}
.y1b_c00461{bottom:220.725000px;}
.y1a_c00461{bottom:256.725000px;}
.y20_c00461{bottom:265.365000px;}
.y19_c00461{bottom:292.725000px;}
.y18_c00461{bottom:328.725000px;}
.y17_c00461{bottom:364.725000px;}
.y16_c00461{bottom:400.725000px;}
.y15_c00461{bottom:436.725000px;}
.y14_c00461{bottom:472.725000px;}
.y13_c00461{bottom:509.085000px;}
.y12_c00461{bottom:545.085000px;}
.y11_c00461{bottom:581.085000px;}
.y10_c00461{bottom:617.085000px;}
.yf_c00461{bottom:653.085000px;}
.ye_c00461{bottom:689.085000px;}
.yd_c00461{bottom:725.085000px;}
.yc_c00461{bottom:761.085000px;}
.yb_c00461{bottom:797.085000px;}
.ya_c00461{bottom:833.085000px;}
.y9_c00461{bottom:869.085000px;}
.y8_c00461{bottom:905.085000px;}
.y7_c00461{bottom:941.085000px;}
.y6_c00461{bottom:977.085000px;}
.y5_c00461{bottom:1013.085000px;}
.y4_c00461{bottom:1049.085000px;}
.y3_c00461{bottom:1085.085000px;}
.y2_c00461{bottom:1138.365000px;}
.h8_c00461{height:19.255605px;}
.h4_c00461{height:32.616000px;}
.h7_c00461{height:48.271680px;}
.h6_c00461{height:52.200000px;}
.h5_c00461{height:53.490240px;}
.h9_c00461{height:56.640000px;}
.h3_c00461{height:65.232000px;}
.h2_c00461{height:1201.365000px;}
.h0_c00461{height:1262.835000px;}
.h1_c00461{height:1263.000000px;}
.w4_c00461{width:25.020000px;}
.w3_c00461{width:538.920000px;}
.w2_c00461{width:863.955000px;}
.w0_c00461{width:892.935000px;}
.w1_c00461{width:893.250000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:14.490000px;}
.x2_c00461{left:113.040150px;}
.x4_c00461{left:143.947950px;}
.x3_c00461{left:159.570000px;}
.x5_c00461{left:759.914612px;}
@media print{
.v1_c00461{vertical-align:-21.760000pt;}
.v0_c00461{vertical-align:0.000000pt;}
.ls2_c00461{letter-spacing:0.000000pt;}
.lsa_c00461{letter-spacing:0.179968pt;}
.ls7_c00461{letter-spacing:0.236160pt;}
.ls8_c00461{letter-spacing:0.355200pt;}
.ls9_c00461{letter-spacing:4.376064pt;}
.ls3_c00461{letter-spacing:4.742400pt;}
.ls6_c00461{letter-spacing:4.854400pt;}
.ls0_c00461{letter-spacing:5.311467pt;}
.ls1_c00461{letter-spacing:5.312000pt;}
.ls5_c00461{letter-spacing:8.060928pt;}
.ls4_c00461{letter-spacing:8.066176pt;}
.ws2_c00461{word-spacing:-19.443840pt;}
.ws0_c00461{word-spacing:-18.620160pt;}
.ws3_c00461{word-spacing:-17.542144pt;}
.ws1_c00461{word-spacing:-8.896000pt;}
.ws4_c00461{word-spacing:0.000000pt;}
._3_c00461{margin-left:-8.449280pt;}
._2_c00461{margin-left:-7.452160pt;}
._1_c00461{margin-left:-0.893333pt;}
._4_c00461{width:0.892160pt;}
._0_c00461{width:3.840000pt;}
.fs2_c00461{font-size:32.000000pt;}
.fs4_c00461{font-size:47.360000pt;}
.fs1_c00461{font-size:49.920000pt;}
.fs3_c00461{font-size:52.480000pt;}
.fs5_c00461{font-size:53.333333pt;}
.fs0_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y23_c00461{bottom:2.773333pt;}
.y22_c00461{bottom:30.884071pt;}
.y21_c00461{bottom:35.200000pt;}
.y1_c00461{bottom:48.000000pt;}
.y1f_c00461{bottom:49.316480pt;}
.y1e_c00461{bottom:70.120000pt;}
.y1d_c00461{bottom:93.800000pt;}
.y1c_c00461{bottom:164.200000pt;}
.y1b_c00461{bottom:196.200000pt;}
.y1a_c00461{bottom:228.200000pt;}
.y20_c00461{bottom:235.880000pt;}
.y19_c00461{bottom:260.200000pt;}
.y18_c00461{bottom:292.200000pt;}
.y17_c00461{bottom:324.200000pt;}
.y16_c00461{bottom:356.200000pt;}
.y15_c00461{bottom:388.200000pt;}
.y14_c00461{bottom:420.200000pt;}
.y13_c00461{bottom:452.520000pt;}
.y12_c00461{bottom:484.520000pt;}
.y11_c00461{bottom:516.520000pt;}
.y10_c00461{bottom:548.520000pt;}
.yf_c00461{bottom:580.520000pt;}
.ye_c00461{bottom:612.520000pt;}
.yd_c00461{bottom:644.520000pt;}
.yc_c00461{bottom:676.520000pt;}
.yb_c00461{bottom:708.520000pt;}
.ya_c00461{bottom:740.520000pt;}
.y9_c00461{bottom:772.520000pt;}
.y8_c00461{bottom:804.520000pt;}
.y7_c00461{bottom:836.520000pt;}
.y6_c00461{bottom:868.520000pt;}
.y5_c00461{bottom:900.520000pt;}
.y4_c00461{bottom:932.520000pt;}
.y3_c00461{bottom:964.520000pt;}
.y2_c00461{bottom:1011.880000pt;}
.h8_c00461{height:17.116093pt;}
.h4_c00461{height:28.992000pt;}
.h7_c00461{height:42.908160pt;}
.h6_c00461{height:46.400000pt;}
.h5_c00461{height:47.546880pt;}
.h9_c00461{height:50.346667pt;}
.h3_c00461{height:57.984000pt;}
.h2_c00461{height:1067.880000pt;}
.h0_c00461{height:1122.520000pt;}
.h1_c00461{height:1122.666667pt;}
.w4_c00461{width:22.240000pt;}
.w3_c00461{width:479.040000pt;}
.w2_c00461{width:767.960000pt;}
.w0_c00461{width:793.720000pt;}
.w1_c00461{width:794.000000pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:12.880000pt;}
.x2_c00461{left:100.480133pt;}
.x4_c00461{left:127.953733pt;}
.x3_c00461{left:141.840000pt;}
.x5_c00461{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf5c225b4e9abf0fa10b1deb.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_f03976665c0c66527e0080de.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls1_c00462{letter-spacing:0.000000px;}
.ls2_c00462{letter-spacing:0.399600px;}
.ls0_c00462{letter-spacing:5.976000px;}
.sc__c00462{text-shadow:none;}
.sc1_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00462{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc1_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00462{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00462{word-spacing:0.000000px;}
._0_c00462{margin-left:-1.118880px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs1_c00462{font-size:53.280000px;}
.fs2_c00462{font-size:60.000000px;}
.fs0_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y19_c00462{bottom:3.120000px;}
.y16_c00462{bottom:14.400000px;}
.y18_c00462{bottom:34.744580px;}
.y1_c00462{bottom:54.000000px;}
.y14_c00462{bottom:203.085000px;}
.y13_c00462{bottom:239.085000px;}
.y12_c00462{bottom:275.085000px;}
.y11_c00462{bottom:311.085000px;}
.y17_c00462{bottom:319.365000px;}
.y10_c00462{bottom:347.085000px;}
.yf_c00462{bottom:383.085000px;}
.ye_c00462{bottom:419.085000px;}
.yd_c00462{bottom:455.085000px;}
.yc_c00462{bottom:491.085000px;}
.yb_c00462{bottom:527.085000px;}
.ya_c00462{bottom:563.085000px;}
.y9_c00462{bottom:599.085000px;}
.y8_c00462{bottom:635.085000px;}
.y7_c00462{bottom:671.085000px;}
.y6_c00462{bottom:707.085000px;}
.y5_c00462{bottom:743.085000px;}
.y4_c00462{bottom:775.485000px;}
.y15_c00462{bottom:778.365000px;}
.y3_c00462{bottom:1085.085000px;}
.y2_c00462{bottom:1138.365000px;}
.h6_c00462{height:19.255605px;}
.h4_c00462{height:27.000000px;}
.h5_c00462{height:48.271680px;}
.h7_c00462{height:56.640000px;}
.h3_c00462{height:65.232000px;}
.h2_c00462{height:1201.365000px;}
.h0_c00462{height:1262.835000px;}
.h1_c00462{height:1263.000000px;}
.w5_c00462{width:25.020000px;}
.w4_c00462{width:278.280000px;}
.w3_c00462{width:612.720000px;}
.w2_c00462{width:863.955000px;}
.w0_c00462{width:892.935000px;}
.w1_c00462{width:893.250000px;}
.x0_c00462{left:0.000000px;}
.x8_c00462{left:9.285150px;}
.x1_c00462{left:14.490000px;}
.x6_c00462{left:93.139500px;}
.x2_c00462{left:113.040150px;}
.x5_c00462{left:124.290000px;}
.x7_c00462{left:285.570000px;}
.x3_c00462{left:725.040150px;}
.x4_c00462{left:732.600150px;}
.x9_c00462{left:759.914612px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls1_c00462{letter-spacing:0.000000pt;}
.ls2_c00462{letter-spacing:0.355200pt;}
.ls0_c00462{letter-spacing:5.312000pt;}
.ws0_c00462{word-spacing:0.000000pt;}
._0_c00462{margin-left:-0.994560pt;}
.fs1_c00462{font-size:47.360000pt;}
.fs2_c00462{font-size:53.333333pt;}
.fs0_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y19_c00462{bottom:2.773333pt;}
.y16_c00462{bottom:12.800000pt;}
.y18_c00462{bottom:30.884071pt;}
.y1_c00462{bottom:48.000000pt;}
.y14_c00462{bottom:180.520000pt;}
.y13_c00462{bottom:212.520000pt;}
.y12_c00462{bottom:244.520000pt;}
.y11_c00462{bottom:276.520000pt;}
.y17_c00462{bottom:283.880000pt;}
.y10_c00462{bottom:308.520000pt;}
.yf_c00462{bottom:340.520000pt;}
.ye_c00462{bottom:372.520000pt;}
.yd_c00462{bottom:404.520000pt;}
.yc_c00462{bottom:436.520000pt;}
.yb_c00462{bottom:468.520000pt;}
.ya_c00462{bottom:500.520000pt;}
.y9_c00462{bottom:532.520000pt;}
.y8_c00462{bottom:564.520000pt;}
.y7_c00462{bottom:596.520000pt;}
.y6_c00462{bottom:628.520000pt;}
.y5_c00462{bottom:660.520000pt;}
.y4_c00462{bottom:689.320000pt;}
.y15_c00462{bottom:691.880000pt;}
.y3_c00462{bottom:964.520000pt;}
.y2_c00462{bottom:1011.880000pt;}
.h6_c00462{height:17.116093pt;}
.h4_c00462{height:24.000000pt;}
.h5_c00462{height:42.908160pt;}
.h7_c00462{height:50.346667pt;}
.h3_c00462{height:57.984000pt;}
.h2_c00462{height:1067.880000pt;}
.h0_c00462{height:1122.520000pt;}
.h1_c00462{height:1122.666667pt;}
.w5_c00462{width:22.240000pt;}
.w4_c00462{width:247.360000pt;}
.w3_c00462{width:544.640000pt;}
.w2_c00462{width:767.960000pt;}
.w0_c00462{width:793.720000pt;}
.w1_c00462{width:794.000000pt;}
.x0_c00462{left:0.000000pt;}
.x8_c00462{left:8.253467pt;}
.x1_c00462{left:12.880000pt;}
.x6_c00462{left:82.790667pt;}
.x2_c00462{left:100.480133pt;}
.x5_c00462{left:110.480000pt;}
.x7_c00462{left:253.840000pt;}
.x3_c00462{left:644.480133pt;}
.x4_c00462{left:651.200133pt;}
.x9_c00462{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d97dcff5da34af1b73f325a.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_f7a8e6cbb12d7715347a50c9.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;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:ff3_c00463;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00463;src:url('chunks/assets/font_8194133ff60fb143a73b04df.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00463;src:url('chunks/assets/font_7d6245efb71a18324fef6cb9.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00463{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00463{vertical-align:-24.480000px;}
.v0_c00463{vertical-align:0.000000px;}
.v1_c00463{vertical-align:30.240000px;}
.ls9_c00463{letter-spacing:0.000000px;}
.lse_c00463{letter-spacing:0.265680px;}
.lsd_c00463{letter-spacing:0.273857px;}
.ls5_c00463{letter-spacing:0.407040px;}
.ls8_c00463{letter-spacing:0.531360px;}
.ls1_c00463{letter-spacing:0.623640px;}
.ls6_c00463{letter-spacing:0.712027px;}
.ls7_c00463{letter-spacing:1.068624px;}
.lsc_c00463{letter-spacing:1.101512px;}
.lsa_c00463{letter-spacing:5.430672px;}
.lsb_c00463{letter-spacing:5.514336px;}
.ls2_c00463{letter-spacing:5.964600px;}
.ls0_c00463{letter-spacing:5.976000px;}
.ls3_c00463{letter-spacing:5.980200px;}
.ls4_c00463{letter-spacing:54.864000px;}
.sc__c00463{text-shadow:none;}
.sc1_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00463{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc1_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00463{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00463{word-spacing:-21.043152px;}
.ws2_c00463{word-spacing:-17.630284px;}
.ws1_c00463{word-spacing:-10.008000px;}
.ws3_c00463{word-spacing:0.000000px;}
._4_c00463{margin-left:-1.179360px;}
._8_c00463{width:1.440000px;}
._5_c00463{width:4.032000px;}
._7_c00463{width:5.112000px;}
._0_c00463{width:6.912000px;}
._2_c00463{width:11.376000px;}
._6_c00463{width:15.759600px;}
._3_c00463{width:17.640000px;}
._1_c00463{width:23.040000px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs4_c00463{font-size:36.000000px;}
.fs1_c00463{font-size:41.760000px;}
.fs2_c00463{font-size:56.160000px;}
.fs5_c00463{font-size:59.040000px;}
.fs7_c00463{font-size:60.000000px;}
.fs6_c00463{font-size:60.857039px;}
.fs0_c00463{font-size:72.000000px;}
.fs3_c00463{font-size:74.215901px;}
.y0_c00463{bottom:0.000000px;}
.y29_c00463{bottom:3.120000px;}
.y28_c00463{bottom:34.744580px;}
.y1_c00463{bottom:54.000000px;}
.y27_c00463{bottom:55.485000px;}
.y26_c00463{bottom:61.605000px;}
.y25_c00463{bottom:72.765000px;}
.y24_c00463{bottom:90.405000px;}
.y23_c00463{bottom:96.525000px;}
.y22_c00463{bottom:123.165000px;}
.y21_c00463{bottom:165.285000px;}
.y20_c00463{bottom:186.165000px;}
.y1f_c00463{bottom:207.405000px;}
.y1e_c00463{bottom:243.405000px;}
.y1d_c00463{bottom:279.405000px;}
.y1c_c00463{bottom:315.405000px;}
.y1b_c00463{bottom:336.285000px;}
.y1a_c00463{bottom:357.525000px;}
.y19_c00463{bottom:378.405000px;}
.y18_c00463{bottom:414.405000px;}
.y17_c00463{bottom:450.405000px;}
.y16_c00463{bottom:486.405000px;}
.y15_c00463{bottom:507.285000px;}
.y14_c00463{bottom:543.285000px;}
.y13_c00463{bottom:579.285000px;}
.y12_c00463{bottom:615.285000px;}
.y11_c00463{bottom:651.285000px;}
.y10_c00463{bottom:687.285000px;}
.yf_c00463{bottom:723.285000px;}
.ye_c00463{bottom:759.285000px;}
.yd_c00463{bottom:795.285000px;}
.yc_c00463{bottom:831.285000px;}
.yb_c00463{bottom:852.525000px;}
.ya_c00463{bottom:888.525000px;}
.y9_c00463{bottom:909.405000px;}
.y8_c00463{bottom:930.645000px;}
.y7_c00463{bottom:951.525000px;}
.y6_c00463{bottom:972.405000px;}
.y5_c00463{bottom:1008.405000px;}
.y4_c00463{bottom:1046.925000px;}
.y3_c00463{bottom:1085.085000px;}
.y2_c00463{bottom:1138.365000px;}
.ha_c00463{height:19.255605px;}
.h6_c00463{height:32.616000px;}
.h9_c00463{height:39.350391px;}
.h7_c00463{height:46.981634px;}
.h8_c00463{height:53.490240px;}
.hb_c00463{height:56.640000px;}
.h5_c00463{height:57.294676px;}
.h3_c00463{height:65.232000px;}
.h4_c00463{height:68.074560px;}
.h2_c00463{height:1201.365000px;}
.h0_c00463{height:1262.835000px;}
.h1_c00463{height:1263.000000px;}
.w3_c00463{width:25.020000px;}
.w2_c00463{width:863.955000px;}
.w0_c00463{width:892.935000px;}
.w1_c00463{width:893.250000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:14.490000px;}
.x2_c00463{left:113.040150px;}
.x1c_c00463{left:116.790150px;}
.x13_c00463{left:122.414850px;}
.x5_c00463{left:140.037600px;}
.x14_c00463{left:147.389250px;}
.xd_c00463{left:155.788350px;}
.x6_c00463{left:167.042400px;}
.x15_c00463{left:168.409350px;}
.x9_c00463{left:170.336400px;}
.x16_c00463{left:172.780200px;}
.xe_c00463{left:177.162300px;}
.x1d_c00463{left:180.118200px;}
.xa_c00463{left:181.334100px;}
.xb_c00463{left:202.903950px;}
.xc_c00463{left:215.881650px;}
.x4_c00463{left:282.057150px;}
.x3_c00463{left:413.967000px;}
.xf_c00463{left:475.468200px;}
.x10_c00463{left:485.844300px;}
.x7_c00463{left:487.660050px;}
.x8_c00463{left:548.679150px;}
.x17_c00463{left:557.318550px;}
.x18_c00463{left:582.292950px;}
.x19_c00463{left:649.582050px;}
.x11_c00463{left:664.055400px;}
.x12_c00463{left:677.033250px;}
.x1a_c00463{left:690.611250px;}
.x1b_c00463{left:694.361250px;}
.x1e_c00463{left:759.914612px;}
@media print{
.v2_c00463{vertical-align:-21.760000pt;}
.v0_c00463{vertical-align:0.000000pt;}
.v1_c00463{vertical-align:26.880000pt;}
.ls9_c00463{letter-spacing:0.000000pt;}
.lse_c00463{letter-spacing:0.236160pt;}
.lsd_c00463{letter-spacing:0.243428pt;}
.ls5_c00463{letter-spacing:0.361813pt;}
.ls8_c00463{letter-spacing:0.472320pt;}
.ls1_c00463{letter-spacing:0.554347pt;}
.ls6_c00463{letter-spacing:0.632913pt;}
.ls7_c00463{letter-spacing:0.949888pt;}
.lsc_c00463{letter-spacing:0.979122pt;}
.lsa_c00463{letter-spacing:4.827264pt;}
.lsb_c00463{letter-spacing:4.901632pt;}
.ls2_c00463{letter-spacing:5.301867pt;}
.ls0_c00463{letter-spacing:5.312000pt;}
.ls3_c00463{letter-spacing:5.315733pt;}
.ls4_c00463{letter-spacing:48.768000pt;}
.ws0_c00463{word-spacing:-18.705024pt;}
.ws2_c00463{word-spacing:-15.671364pt;}
.ws1_c00463{word-spacing:-8.896000pt;}
.ws3_c00463{word-spacing:0.000000pt;}
._4_c00463{margin-left:-1.048320pt;}
._8_c00463{width:1.280000pt;}
._5_c00463{width:3.584000pt;}
._7_c00463{width:4.544000pt;}
._0_c00463{width:6.144000pt;}
._2_c00463{width:10.112000pt;}
._6_c00463{width:14.008533pt;}
._3_c00463{width:15.680000pt;}
._1_c00463{width:20.480000pt;}
.fs4_c00463{font-size:32.000000pt;}
.fs1_c00463{font-size:37.120000pt;}
.fs2_c00463{font-size:49.920000pt;}
.fs5_c00463{font-size:52.480000pt;}
.fs7_c00463{font-size:53.333333pt;}
.fs6_c00463{font-size:54.095146pt;}
.fs0_c00463{font-size:64.000000pt;}
.fs3_c00463{font-size:65.969690pt;}
.y0_c00463{bottom:0.000000pt;}
.y29_c00463{bottom:2.773333pt;}
.y28_c00463{bottom:30.884071pt;}
.y1_c00463{bottom:48.000000pt;}
.y27_c00463{bottom:49.320000pt;}
.y26_c00463{bottom:54.760000pt;}
.y25_c00463{bottom:64.680000pt;}
.y24_c00463{bottom:80.360000pt;}
.y23_c00463{bottom:85.800000pt;}
.y22_c00463{bottom:109.480000pt;}
.y21_c00463{bottom:146.920000pt;}
.y20_c00463{bottom:165.480000pt;}
.y1f_c00463{bottom:184.360000pt;}
.y1e_c00463{bottom:216.360000pt;}
.y1d_c00463{bottom:248.360000pt;}
.y1c_c00463{bottom:280.360000pt;}
.y1b_c00463{bottom:298.920000pt;}
.y1a_c00463{bottom:317.800000pt;}
.y19_c00463{bottom:336.360000pt;}
.y18_c00463{bottom:368.360000pt;}
.y17_c00463{bottom:400.360000pt;}
.y16_c00463{bottom:432.360000pt;}
.y15_c00463{bottom:450.920000pt;}
.y14_c00463{bottom:482.920000pt;}
.y13_c00463{bottom:514.920000pt;}
.y12_c00463{bottom:546.920000pt;}
.y11_c00463{bottom:578.920000pt;}
.y10_c00463{bottom:610.920000pt;}
.yf_c00463{bottom:642.920000pt;}
.ye_c00463{bottom:674.920000pt;}
.yd_c00463{bottom:706.920000pt;}
.yc_c00463{bottom:738.920000pt;}
.yb_c00463{bottom:757.800000pt;}
.ya_c00463{bottom:789.800000pt;}
.y9_c00463{bottom:808.360000pt;}
.y8_c00463{bottom:827.240000pt;}
.y7_c00463{bottom:845.800000pt;}
.y6_c00463{bottom:864.360000pt;}
.y5_c00463{bottom:896.360000pt;}
.y4_c00463{bottom:930.600000pt;}
.y3_c00463{bottom:964.520000pt;}
.y2_c00463{bottom:1011.880000pt;}
.ha_c00463{height:17.116093pt;}
.h6_c00463{height:28.992000pt;}
.h9_c00463{height:34.978125pt;}
.h7_c00463{height:41.761453pt;}
.h8_c00463{height:47.546880pt;}
.hb_c00463{height:50.346667pt;}
.h5_c00463{height:50.928601pt;}
.h3_c00463{height:57.984000pt;}
.h4_c00463{height:60.510720pt;}
.h2_c00463{height:1067.880000pt;}
.h0_c00463{height:1122.520000pt;}
.h1_c00463{height:1122.666667pt;}
.w3_c00463{width:22.240000pt;}
.w2_c00463{width:767.960000pt;}
.w0_c00463{width:793.720000pt;}
.w1_c00463{width:794.000000pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:12.880000pt;}
.x2_c00463{left:100.480133pt;}
.x1c_c00463{left:103.813467pt;}
.x13_c00463{left:108.813200pt;}
.x5_c00463{left:124.477867pt;}
.x14_c00463{left:131.012667pt;}
.xd_c00463{left:138.478533pt;}
.x6_c00463{left:148.482133pt;}
.x15_c00463{left:149.697200pt;}
.x9_c00463{left:151.410133pt;}
.x16_c00463{left:153.582400pt;}
.xe_c00463{left:157.477600pt;}
.x1d_c00463{left:160.105067pt;}
.xa_c00463{left:161.185867pt;}
.xb_c00463{left:180.359067pt;}
.xc_c00463{left:191.894800pt;}
.x4_c00463{left:250.717467pt;}
.x3_c00463{left:367.970667pt;}
.xf_c00463{left:422.638400pt;}
.x10_c00463{left:431.861600pt;}
.x7_c00463{left:433.475600pt;}
.x8_c00463{left:487.714800pt;}
.x17_c00463{left:495.394267pt;}
.x18_c00463{left:517.593733pt;}
.x19_c00463{left:577.406267pt;}
.x11_c00463{left:590.271467pt;}
.x12_c00463{left:601.807333pt;}
.x1a_c00463{left:613.876667pt;}
.x1b_c00463{left:617.210000pt;}
.x1e_c00463{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ae9a755e7801d815aa89f5f.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_a96a9645dccca585f5e821c1.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;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:ff3_c00464;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00464;src:url('chunks/assets/font_f03976665c0c66527e0080de.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00464{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00464{vertical-align:-24.480000px;}
.v0_c00464{vertical-align:0.000000px;}
.v1_c00464{vertical-align:30.240000px;}
.ls11_c00464{letter-spacing:0.000000px;}
.lsc_c00464{letter-spacing:0.265680px;}
.ls1_c00464{letter-spacing:0.273857px;}
.ls6_c00464{letter-spacing:0.295200px;}
.ls21_c00464{letter-spacing:0.318816px;}
.ls1b_c00464{letter-spacing:0.328628px;}
.ls3_c00464{letter-spacing:0.365142px;}
.ls1a_c00464{letter-spacing:0.383399px;}
.ls0_c00464{letter-spacing:0.387240px;}
.lsa_c00464{letter-spacing:0.407040px;}
.ls1e_c00464{letter-spacing:0.425088px;}
.lsb_c00464{letter-spacing:0.425999px;}
.ls13_c00464{letter-spacing:0.438171px;}
.ls16_c00464{letter-spacing:0.478224px;}
.ls7_c00464{letter-spacing:0.531360px;}
.ls1d_c00464{letter-spacing:0.547713px;}
.ls4_c00464{letter-spacing:0.560880px;}
.ls12_c00464{letter-spacing:0.584496px;}
.ls14_c00464{letter-spacing:0.602485px;}
.ls5_c00464{letter-spacing:0.657256px;}
.ls9_c00464{letter-spacing:0.680400px;}
.ls20_c00464{letter-spacing:0.690768px;}
.ls2_c00464{letter-spacing:0.712027px;}
.ls15_c00464{letter-spacing:0.743904px;}
.ls1f_c00464{letter-spacing:0.797040px;}
.lsf_c00464{letter-spacing:0.821570px;}
.ls19_c00464{letter-spacing:1.104048px;}
.ls1c_c00464{letter-spacing:3.170448px;}
.ls18_c00464{letter-spacing:4.693680px;}
.ls17_c00464{letter-spacing:5.430672px;}
.lse_c00464{letter-spacing:5.490720px;}
.ls8_c00464{letter-spacing:5.975400px;}
.ls10_c00464{letter-spacing:5.976000px;}
.lsd_c00464{letter-spacing:6.258240px;}
.ls22_c00464{letter-spacing:6.275952px;}
.ls24_c00464{letter-spacing:17.688384px;}
.ls23_c00464{letter-spacing:17.694288px;}
.sc__c00464{text-shadow:none;}
.sc1_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00464{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc1_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00464{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00464{word-spacing:-21.043152px;}
.ws5_c00464{word-spacing:-20.016000px;}
.ws2_c00464{word-spacing:-17.739827px;}
.ws1_c00464{word-spacing:-17.630284px;}
.ws3_c00464{word-spacing:-17.575513px;}
.ws7_c00464{word-spacing:-17.301656px;}
.ws8_c00464{word-spacing:-16.731936px;}
.ws0_c00464{word-spacing:-11.609280px;}
.ws6_c00464{word-spacing:-10.008000px;}
.ws9_c00464{word-spacing:0.000000px;}
._11_c00464{margin-left:-17.239680px;}
._10_c00464{margin-left:-6.703344px;}
._e_c00464{margin-left:-5.372640px;}
._d_c00464{margin-left:-4.191840px;}
._f_c00464{margin-left:-2.774880px;}
._5_c00464{margin-left:-1.338855px;}
._0_c00464{width:1.152000px;}
._a_c00464{width:2.588430px;}
._4_c00464{width:3.744000px;}
._6_c00464{width:5.018400px;}
._7_c00464{width:6.081120px;}
._12_c00464{width:7.360935px;}
._8_c00464{width:8.501760px;}
._9_c00464{width:9.663495px;}
._b_c00464{width:10.708066px;}
._2_c00464{width:12.312000px;}
._1_c00464{width:15.480000px;}
._c_c00464{width:39.168000px;}
._3_c00464{width:42.480000px;}
.fc0_c00464{color:rgb(0,0,0);}
.fs6_c00464{font-size:36.000000px;}
.fs2_c00464{font-size:41.760000px;}
.fs5_c00464{font-size:56.160000px;}
.fs3_c00464{font-size:59.040000px;}
.fs7_c00464{font-size:60.000000px;}
.fs4_c00464{font-size:60.857039px;}
.fs0_c00464{font-size:72.000000px;}
.fs1_c00464{font-size:74.215901px;}
.y0_c00464{bottom:0.000000px;}
.y36_c00464{bottom:3.120000px;}
.y35_c00464{bottom:34.744580px;}
.y1_c00464{bottom:54.000000px;}
.y33_c00464{bottom:55.481040px;}
.y34_c00464{bottom:55.485000px;}
.y32_c00464{bottom:72.765000px;}
.y31_c00464{bottom:72.766800px;}
.y30_c00464{bottom:90.405000px;}
.y2f_c00464{bottom:96.525000px;}
.y2e_c00464{bottom:107.688600px;}
.y2d_c00464{bottom:125.326800px;}
.y2b_c00464{bottom:142.962840px;}
.y2c_c00464{bottom:142.965000px;}
.y2a_c00464{bottom:160.246800px;}
.y29_c00464{bottom:177.885000px;}
.y28_c00464{bottom:177.886800px;}
.y27_c00464{bottom:195.525000px;}
.y26_c00464{bottom:201.645000px;}
.y25_c00464{bottom:212.806800px;}
.y24_c00464{bottom:236.565000px;}
.y23_c00464{bottom:247.725000px;}
.y22_c00464{bottom:253.845000px;}
.y21_c00464{bottom:280.485000px;}
.y20_c00464{bottom:360.405000px;}
.y1f_c00464{bottom:396.405000px;}
.y1e_c00464{bottom:417.645000px;}
.y1d_c00464{bottom:438.525000px;}
.y1c_c00464{bottom:459.765000px;}
.y1b_c00464{bottom:480.645000px;}
.y1a_c00464{bottom:516.645000px;}
.y19_c00464{bottom:552.645000px;}
.y18_c00464{bottom:580.724280px;}
.y17_c00464{bottom:598.362480px;}
.y16_c00464{bottom:616.000680px;}
.y15_c00464{bottom:633.284640px;}
.y14_c00464{bottom:650.922840px;}
.y13_c00464{bottom:668.206800px;}
.y12_c00464{bottom:685.845000px;}
.y11_c00464{bottom:711.045000px;}
.y10_c00464{bottom:735.885000px;}
.yf_c00464{bottom:761.085000px;}
.ye_c00464{bottom:786.285000px;}
.yd_c00464{bottom:814.725000px;}
.yc_c00464{bottom:843.165000px;}
.yb_c00464{bottom:872.325000px;}
.ya_c00464{bottom:907.965000px;}
.y9_c00464{bottom:943.965000px;}
.y8_c00464{bottom:964.845000px;}
.y7_c00464{bottom:986.085000px;}
.y6_c00464{bottom:1022.085000px;}
.y5_c00464{bottom:1042.965000px;}
.y4_c00464{bottom:1063.845000px;}
.y3_c00464{bottom:1085.085000px;}
.y2_c00464{bottom:1138.365000px;}
.hb_c00464{height:19.255605px;}
.ha_c00464{height:32.616000px;}
.h9_c00464{height:39.350391px;}
.h8_c00464{height:46.981634px;}
.h6_c00464{height:47.988281px;}
.h7_c00464{height:53.490240px;}
.hc_c00464{height:56.640000px;}
.h4_c00464{height:57.294676px;}
.h3_c00464{height:65.232000px;}
.h5_c00464{height:68.074560px;}
.h2_c00464{height:1201.365000px;}
.h0_c00464{height:1262.835000px;}
.h1_c00464{height:1263.000000px;}
.w3_c00464{width:25.020000px;}
.w2_c00464{width:863.955000px;}
.w0_c00464{width:892.935000px;}
.w1_c00464{width:893.250000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:14.490000px;}
.x2_c00464{left:113.040150px;}
.x25_c00464{left:119.034000px;}
.x24_c00464{left:133.034550px;}
.x1e_c00464{left:138.014700px;}
.x26_c00464{left:145.814550px;}
.x11_c00464{left:147.223350px;}
.x2d_c00464{left:158.467200px;}
.x37_c00464{left:163.723800px;}
.x29_c00464{left:178.055100px;}
.x38_c00464{left:186.058650px;}
.x2e_c00464{left:203.465700px;}
.x1f_c00464{left:204.701700px;}
.x12_c00464{left:209.711400px;}
.x13_c00464{left:213.461400px;}
.x27_c00464{left:226.775400px;}
.x20_c00464{left:229.676100px;}
.x14_c00464{left:237.625050px;}
.x15_c00464{left:245.964450px;}
.x2a_c00464{left:263.031000px;}
.x16_c00464{left:270.939000px;}
.x21_c00464{left:275.544000px;}
.x17_c00464{left:279.278400px;}
.x9_c00464{left:304.089150px;}
.x28_c00464{left:316.791900px;}
.xb_c00464{left:325.665150px;}
.x39_c00464{left:337.586400px;}
.x22_c00464{left:341.391750px;}
.x18_c00464{left:344.271600px;}
.x19_c00464{left:352.611000px;}
.x23_c00464{left:360.546450px;}
.xc_c00464{left:386.665950px;}
.xa_c00464{left:388.129650px;}
.xd_c00464{left:391.165950px;}
.x3a_c00464{left:399.234450px;}
.x2f_c00464{left:403.933200px;}
.x1a_c00464{left:408.424500px;}
.x1b_c00464{left:416.763750px;}
.x3_c00464{left:421.034850px;}
.x33_c00464{left:429.675000px;}
.x4_c00464{left:432.032550px;}
.x34_c00464{left:434.669700px;}
.xe_c00464{left:436.669200px;}
.x3b_c00464{left:448.992150px;}
.x30_c00464{left:471.431100px;}
.x1c_c00464{left:475.921500px;}
.x2b_c00464{left:480.612300px;}
.x2c_c00464{left:500.606400px;}
.x35_c00464{left:505.072200px;}
.xf_c00464{left:514.624950px;}
.x36_c00464{left:518.307750px;}
.x10_c00464{left:523.624950px;}
.x1d_c00464{left:560.938500px;}
.x5_c00464{left:576.984000px;}
.x6_c00464{left:591.995700px;}
.x31_c00464{left:615.005100px;}
.x32_c00464{left:630.829500px;}
.x7_c00464{left:632.760900px;}
.x3c_c00464{left:667.812000px;}
.x8_c00464{left:694.751550px;}
.x3d_c00464{left:759.914612px;}
@media print{
.v2_c00464{vertical-align:-21.760000pt;}
.v0_c00464{vertical-align:0.000000pt;}
.v1_c00464{vertical-align:26.880000pt;}
.ls11_c00464{letter-spacing:0.000000pt;}
.lsc_c00464{letter-spacing:0.236160pt;}
.ls1_c00464{letter-spacing:0.243428pt;}
.ls6_c00464{letter-spacing:0.262400pt;}
.ls21_c00464{letter-spacing:0.283392pt;}
.ls1b_c00464{letter-spacing:0.292114pt;}
.ls3_c00464{letter-spacing:0.324571pt;}
.ls1a_c00464{letter-spacing:0.340799pt;}
.ls0_c00464{letter-spacing:0.344213pt;}
.lsa_c00464{letter-spacing:0.361813pt;}
.ls1e_c00464{letter-spacing:0.377856pt;}
.lsb_c00464{letter-spacing:0.378666pt;}
.ls13_c00464{letter-spacing:0.389485pt;}
.ls16_c00464{letter-spacing:0.425088pt;}
.ls7_c00464{letter-spacing:0.472320pt;}
.ls1d_c00464{letter-spacing:0.486856pt;}
.ls4_c00464{letter-spacing:0.498560pt;}
.ls12_c00464{letter-spacing:0.519552pt;}
.ls14_c00464{letter-spacing:0.535542pt;}
.ls5_c00464{letter-spacing:0.584228pt;}
.ls9_c00464{letter-spacing:0.604800pt;}
.ls20_c00464{letter-spacing:0.614016pt;}
.ls2_c00464{letter-spacing:0.632913pt;}
.ls15_c00464{letter-spacing:0.661248pt;}
.ls1f_c00464{letter-spacing:0.708480pt;}
.lsf_c00464{letter-spacing:0.730284pt;}
.ls19_c00464{letter-spacing:0.981376pt;}
.ls1c_c00464{letter-spacing:2.818176pt;}
.ls18_c00464{letter-spacing:4.172160pt;}
.ls17_c00464{letter-spacing:4.827264pt;}
.lse_c00464{letter-spacing:4.880640pt;}
.ls8_c00464{letter-spacing:5.311467pt;}
.ls10_c00464{letter-spacing:5.312000pt;}
.lsd_c00464{letter-spacing:5.562880pt;}
.ls22_c00464{letter-spacing:5.578624pt;}
.ls24_c00464{letter-spacing:15.723008pt;}
.ls23_c00464{letter-spacing:15.728256pt;}
.ws4_c00464{word-spacing:-18.705024pt;}
.ws5_c00464{word-spacing:-17.792000pt;}
.ws2_c00464{word-spacing:-15.768735pt;}
.ws1_c00464{word-spacing:-15.671364pt;}
.ws3_c00464{word-spacing:-15.622678pt;}
.ws7_c00464{word-spacing:-15.379250pt;}
.ws8_c00464{word-spacing:-14.872832pt;}
.ws0_c00464{word-spacing:-10.319360pt;}
.ws6_c00464{word-spacing:-8.896000pt;}
.ws9_c00464{word-spacing:0.000000pt;}
._11_c00464{margin-left:-15.324160pt;}
._10_c00464{margin-left:-5.958528pt;}
._e_c00464{margin-left:-4.775680pt;}
._d_c00464{margin-left:-3.726080pt;}
._f_c00464{margin-left:-2.466560pt;}
._5_c00464{margin-left:-1.190093pt;}
._0_c00464{width:1.024000pt;}
._a_c00464{width:2.300826pt;}
._4_c00464{width:3.328000pt;}
._6_c00464{width:4.460800pt;}
._7_c00464{width:5.405440pt;}
._12_c00464{width:6.543053pt;}
._8_c00464{width:7.557120pt;}
._9_c00464{width:8.589773pt;}
._b_c00464{width:9.518281pt;}
._2_c00464{width:10.944000pt;}
._1_c00464{width:13.760000pt;}
._c_c00464{width:34.816000pt;}
._3_c00464{width:37.760000pt;}
.fs6_c00464{font-size:32.000000pt;}
.fs2_c00464{font-size:37.120000pt;}
.fs5_c00464{font-size:49.920000pt;}
.fs3_c00464{font-size:52.480000pt;}
.fs7_c00464{font-size:53.333333pt;}
.fs4_c00464{font-size:54.095146pt;}
.fs0_c00464{font-size:64.000000pt;}
.fs1_c00464{font-size:65.969690pt;}
.y0_c00464{bottom:0.000000pt;}
.y36_c00464{bottom:2.773333pt;}
.y35_c00464{bottom:30.884071pt;}
.y1_c00464{bottom:48.000000pt;}
.y33_c00464{bottom:49.316480pt;}
.y34_c00464{bottom:49.320000pt;}
.y32_c00464{bottom:64.680000pt;}
.y31_c00464{bottom:64.681600pt;}
.y30_c00464{bottom:80.360000pt;}
.y2f_c00464{bottom:85.800000pt;}
.y2e_c00464{bottom:95.723200pt;}
.y2d_c00464{bottom:111.401600pt;}
.y2b_c00464{bottom:127.078080pt;}
.y2c_c00464{bottom:127.080000pt;}
.y2a_c00464{bottom:142.441600pt;}
.y29_c00464{bottom:158.120000pt;}
.y28_c00464{bottom:158.121600pt;}
.y27_c00464{bottom:173.800000pt;}
.y26_c00464{bottom:179.240000pt;}
.y25_c00464{bottom:189.161600pt;}
.y24_c00464{bottom:210.280000pt;}
.y23_c00464{bottom:220.200000pt;}
.y22_c00464{bottom:225.640000pt;}
.y21_c00464{bottom:249.320000pt;}
.y20_c00464{bottom:320.360000pt;}
.y1f_c00464{bottom:352.360000pt;}
.y1e_c00464{bottom:371.240000pt;}
.y1d_c00464{bottom:389.800000pt;}
.y1c_c00464{bottom:408.680000pt;}
.y1b_c00464{bottom:427.240000pt;}
.y1a_c00464{bottom:459.240000pt;}
.y19_c00464{bottom:491.240000pt;}
.y18_c00464{bottom:516.199360pt;}
.y17_c00464{bottom:531.877760pt;}
.y16_c00464{bottom:547.556160pt;}
.y15_c00464{bottom:562.919680pt;}
.y14_c00464{bottom:578.598080pt;}
.y13_c00464{bottom:593.961600pt;}
.y12_c00464{bottom:609.640000pt;}
.y11_c00464{bottom:632.040000pt;}
.y10_c00464{bottom:654.120000pt;}
.yf_c00464{bottom:676.520000pt;}
.ye_c00464{bottom:698.920000pt;}
.yd_c00464{bottom:724.200000pt;}
.yc_c00464{bottom:749.480000pt;}
.yb_c00464{bottom:775.400000pt;}
.ya_c00464{bottom:807.080000pt;}
.y9_c00464{bottom:839.080000pt;}
.y8_c00464{bottom:857.640000pt;}
.y7_c00464{bottom:876.520000pt;}
.y6_c00464{bottom:908.520000pt;}
.y5_c00464{bottom:927.080000pt;}
.y4_c00464{bottom:945.640000pt;}
.y3_c00464{bottom:964.520000pt;}
.y2_c00464{bottom:1011.880000pt;}
.hb_c00464{height:17.116093pt;}
.ha_c00464{height:28.992000pt;}
.h9_c00464{height:34.978125pt;}
.h8_c00464{height:41.761453pt;}
.h6_c00464{height:42.656250pt;}
.h7_c00464{height:47.546880pt;}
.hc_c00464{height:50.346667pt;}
.h4_c00464{height:50.928601pt;}
.h3_c00464{height:57.984000pt;}
.h5_c00464{height:60.510720pt;}
.h2_c00464{height:1067.880000pt;}
.h0_c00464{height:1122.520000pt;}
.h1_c00464{height:1122.666667pt;}
.w3_c00464{width:22.240000pt;}
.w2_c00464{width:767.960000pt;}
.w0_c00464{width:793.720000pt;}
.w1_c00464{width:794.000000pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:12.880000pt;}
.x2_c00464{left:100.480133pt;}
.x25_c00464{left:105.808000pt;}
.x24_c00464{left:118.252933pt;}
.x1e_c00464{left:122.679733pt;}
.x26_c00464{left:129.612933pt;}
.x11_c00464{left:130.865200pt;}
.x2d_c00464{left:140.859733pt;}
.x37_c00464{left:145.532267pt;}
.x29_c00464{left:158.271200pt;}
.x38_c00464{left:165.385467pt;}
.x2e_c00464{left:180.858400pt;}
.x1f_c00464{left:181.957067pt;}
.x12_c00464{left:186.410133pt;}
.x13_c00464{left:189.743467pt;}
.x27_c00464{left:201.578133pt;}
.x20_c00464{left:204.156533pt;}
.x14_c00464{left:211.222267pt;}
.x15_c00464{left:218.635067pt;}
.x2a_c00464{left:233.805333pt;}
.x16_c00464{left:240.834667pt;}
.x21_c00464{left:244.928000pt;}
.x17_c00464{left:248.247467pt;}
.x9_c00464{left:270.301467pt;}
.x28_c00464{left:281.592800pt;}
.xb_c00464{left:289.480133pt;}
.x39_c00464{left:300.076800pt;}
.x22_c00464{left:303.459333pt;}
.x18_c00464{left:306.019200pt;}
.x19_c00464{left:313.432000pt;}
.x23_c00464{left:320.485733pt;}
.xc_c00464{left:343.703067pt;}
.xa_c00464{left:345.004133pt;}
.xd_c00464{left:347.703067pt;}
.x3a_c00464{left:354.875067pt;}
.x2f_c00464{left:359.051733pt;}
.x1a_c00464{left:363.044000pt;}
.x1b_c00464{left:370.456667pt;}
.x3_c00464{left:374.253200pt;}
.x33_c00464{left:381.933333pt;}
.x4_c00464{left:384.028933pt;}
.x34_c00464{left:386.373067pt;}
.xe_c00464{left:388.150400pt;}
.x3b_c00464{left:399.104133pt;}
.x30_c00464{left:419.049867pt;}
.x1c_c00464{left:423.041333pt;}
.x2b_c00464{left:427.210933pt;}
.x2c_c00464{left:444.983467pt;}
.x35_c00464{left:448.953067pt;}
.xf_c00464{left:457.444400pt;}
.x36_c00464{left:460.718000pt;}
.x10_c00464{left:465.444400pt;}
.x1d_c00464{left:498.612000pt;}
.x5_c00464{left:512.874667pt;}
.x6_c00464{left:526.218400pt;}
.x31_c00464{left:546.671200pt;}
.x32_c00464{left:560.737333pt;}
.x7_c00464{left:562.454133pt;}
.x3c_c00464{left:593.610667pt;}
.x8_c00464{left:617.556933pt;}
.x3d_c00464{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8a90fce01eda6dc49f58ec7.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_8588df8b82ad5c728e696bb8.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;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:ff3_c00465;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_0caa79e850ae2e320d935767.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00465;src:url('chunks/assets/font_cda856edbc7a28a538ce6f1e.woff2')format("woff");}.ff5_c00465{font-family:ff5_c00465;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00465{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00465{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00465{vertical-align:-24.480000px;}
.v0_c00465{vertical-align:0.000000px;}
.v1_c00465{vertical-align:30.240000px;}
.lse_c00465{letter-spacing:-0.179568px;}
.lsd_c00465{letter-spacing:0.000000px;}
.ls17_c00465{letter-spacing:0.144000px;}
.ls0_c00465{letter-spacing:0.171840px;}
.ls1c_c00465{letter-spacing:0.202464px;}
.lsb_c00465{letter-spacing:0.239760px;}
.ls10_c00465{letter-spacing:0.265680px;}
.ls8_c00465{letter-spacing:0.295200px;}
.ls14_c00465{letter-spacing:0.318816px;}
.ls16_c00465{letter-spacing:0.371952px;}
.ls1b_c00465{letter-spacing:0.399600px;}
.ls15_c00465{letter-spacing:0.425088px;}
.ls3_c00465{letter-spacing:0.438171px;}
.ls1_c00465{letter-spacing:0.465840px;}
.ls9_c00465{letter-spacing:0.531360px;}
.lsa_c00465{letter-spacing:0.532722px;}
.ls1a_c00465{letter-spacing:0.690768px;}
.ls5_c00465{letter-spacing:0.712027px;}
.ls11_c00465{letter-spacing:0.743904px;}
.ls18_c00465{letter-spacing:0.797040px;}
.ls13_c00465{letter-spacing:0.821570px;}
.ls6_c00465{letter-spacing:0.826560px;}
.ls7_c00465{letter-spacing:0.844272px;}
.ls1d_c00465{letter-spacing:4.923072px;}
.lsf_c00465{letter-spacing:5.335200px;}
.ls19_c00465{letter-spacing:5.402160px;}
.ls12_c00465{letter-spacing:5.697360px;}
.ls2_c00465{letter-spacing:5.955000px;}
.lsc_c00465{letter-spacing:5.976000px;}
.ls4_c00465{letter-spacing:6.258240px;}
.sc__c00465{text-shadow:none;}
.sc1_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00465{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc1_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00465{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00465{word-spacing:-21.815280px;}
.ws2_c00465{word-spacing:-20.947680px;}
.wsc_c00465{word-spacing:-19.734912px;}
.ws6_c00465{word-spacing:-17.739827px;}
.ws5_c00465{word-spacing:-17.630284px;}
.ws4_c00465{word-spacing:-17.356428px;}
.wsa_c00465{word-spacing:-16.944480px;}
.ws7_c00465{word-spacing:-16.785072px;}
.wsb_c00465{word-spacing:-15.800417px;}
.ws0_c00465{word-spacing:-11.609280px;}
.ws1_c00465{word-spacing:-11.429712px;}
.ws8_c00465{word-spacing:-10.152000px;}
.ws3_c00465{word-spacing:-10.008000px;}
.wsd_c00465{word-spacing:0.000000px;}
._9_c00465{margin-left:-6.199200px;}
._8_c00465{margin-left:-5.136480px;}
._6_c00465{margin-left:-1.005000px;}
._1_c00465{width:1.944000px;}
._3_c00465{width:2.952000px;}
._5_c00465{width:4.320000px;}
._7_c00465{width:5.343600px;}
._2_c00465{width:6.408000px;}
._4_c00465{width:8.640000px;}
._0_c00465{width:14.472000px;}
._a_c00465{width:35.010720px;}
.fc1_c00465{color:transparent;}
.fc0_c00465{color:rgb(0,0,0);}
.fs3_c00465{font-size:36.000000px;}
.fs1_c00465{font-size:41.760000px;}
.fs6_c00465{font-size:53.280000px;}
.fs7_c00465{font-size:54.919767px;}
.fs2_c00465{font-size:56.160000px;}
.fs4_c00465{font-size:59.040000px;}
.fs8_c00465{font-size:60.000000px;}
.fs5_c00465{font-size:60.857039px;}
.fs0_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y34_c00465{bottom:3.120000px;}
.y30_c00465{bottom:9.720000px;}
.y32_c00465{bottom:14.400000px;}
.y2c_c00465{bottom:18.720000px;}
.y2f_c00465{bottom:25.560000px;}
.y2b_c00465{bottom:34.560000px;}
.y33_c00465{bottom:34.744580px;}
.y2e_c00465{bottom:41.400000px;}
.y1_c00465{bottom:54.000000px;}
.y28_c00465{bottom:55.481040px;}
.y29_c00465{bottom:55.485000px;}
.y27_c00465{bottom:78.885000px;}
.y26_c00465{bottom:90.401040px;}
.y25_c00465{bottom:107.685000px;}
.y24_c00465{bottom:107.686800px;}
.y23_c00465{bottom:125.325000px;}
.y22_c00465{bottom:131.445000px;}
.y21_c00465{bottom:142.961040px;}
.y20_c00465{bottom:166.365000px;}
.y1f_c00465{bottom:177.885000px;}
.y1e_c00465{bottom:184.005000px;}
.y1d_c00465{bottom:210.645000px;}
.y1c_c00465{bottom:263.565000px;}
.y1b_c00465{bottom:299.565000px;}
.y1a_c00465{bottom:335.565000px;}
.y31_c00465{bottom:346.365000px;}
.y19_c00465{bottom:371.565000px;}
.y18_c00465{bottom:407.565000px;}
.y17_c00465{bottom:443.565000px;}
.y16_c00465{bottom:479.925000px;}
.y15_c00465{bottom:515.925000px;}
.y14_c00465{bottom:551.925000px;}
.y2d_c00465{bottom:562.365000px;}
.y13_c00465{bottom:599.085000px;}
.y2a_c00465{bottom:623.205000px;}
.y12_c00465{bottom:635.085000px;}
.y11_c00465{bottom:671.085000px;}
.y10_c00465{bottom:707.085000px;}
.yf_c00465{bottom:743.085000px;}
.ye_c00465{bottom:779.085000px;}
.yd_c00465{bottom:815.085000px;}
.yc_c00465{bottom:851.085000px;}
.yb_c00465{bottom:887.085000px;}
.ya_c00465{bottom:907.965000px;}
.y9_c00465{bottom:928.845000px;}
.y8_c00465{bottom:964.845000px;}
.y7_c00465{bottom:986.085000px;}
.y6_c00465{bottom:1006.965000px;}
.y5_c00465{bottom:1027.845000px;}
.y4_c00465{bottom:1063.845000px;}
.y3_c00465{bottom:1085.085000px;}
.y2_c00465{bottom:1138.365000px;}
.hd_c00465{height:19.255605px;}
.hc_c00465{height:27.000000px;}
.h5_c00465{height:32.616000px;}
.ha_c00465{height:42.398060px;}
.h6_c00465{height:46.981634px;}
.h8_c00465{height:47.160000px;}
.h9_c00465{height:48.271680px;}
.h7_c00465{height:53.490240px;}
.hb_c00465{height:54.000000px;}
.he_c00465{height:56.640000px;}
.h3_c00465{height:65.232000px;}
.h4_c00465{height:68.074560px;}
.h2_c00465{height:1201.365000px;}
.h0_c00465{height:1262.835000px;}
.h1_c00465{height:1263.000000px;}
.w6_c00465{width:25.020000px;}
.w4_c00465{width:247.680000px;}
.w5_c00465{width:292.680000px;}
.w3_c00465{width:311.760000px;}
.w2_c00465{width:863.955000px;}
.w0_c00465{width:892.935000px;}
.w1_c00465{width:893.250000px;}
.x0_c00465{left:0.000000px;}
.xf_c00465{left:4.826700px;}
.x15_c00465{left:8.299200px;}
.x1_c00465{left:14.490000px;}
.x18_c00465{left:18.396450px;}
.x1b_c00465{left:56.860050px;}
.x19_c00465{left:70.343400px;}
.x13_c00465{left:102.503250px;}
.x2_c00465{left:113.040150px;}
.x8_c00465{left:118.034850px;}
.x4_c00465{left:122.213700px;}
.x1a_c00465{left:123.570000px;}
.xe_c00465{left:128.970000px;}
.x5_c00465{left:138.038100px;}
.x9_c00465{left:143.009400px;}
.x10_c00465{left:144.346200px;}
.xc_c00465{left:178.887750px;}
.xd_c00465{left:198.881850px;}
.x11_c00465{left:205.108200px;}
.x16_c00465{left:208.580850px;}
.x6_c00465{left:222.089700px;}
.x12_c00465{left:227.584800px;}
.x17_c00465{left:231.057300px;}
.x7_c00465{left:242.099550px;}
.xa_c00465{left:358.937250px;}
.xb_c00465{left:407.281050px;}
.x3_c00465{left:436.319400px;}
.x14_c00465{left:503.730000px;}
.x1c_c00465{left:759.914612px;}
@media print{
.v2_c00465{vertical-align:-21.760000pt;}
.v0_c00465{vertical-align:0.000000pt;}
.v1_c00465{vertical-align:26.880000pt;}
.lse_c00465{letter-spacing:-0.159616pt;}
.lsd_c00465{letter-spacing:0.000000pt;}
.ls17_c00465{letter-spacing:0.128000pt;}
.ls0_c00465{letter-spacing:0.152747pt;}
.ls1c_c00465{letter-spacing:0.179968pt;}
.lsb_c00465{letter-spacing:0.213120pt;}
.ls10_c00465{letter-spacing:0.236160pt;}
.ls8_c00465{letter-spacing:0.262400pt;}
.ls14_c00465{letter-spacing:0.283392pt;}
.ls16_c00465{letter-spacing:0.330624pt;}
.ls1b_c00465{letter-spacing:0.355200pt;}
.ls15_c00465{letter-spacing:0.377856pt;}
.ls3_c00465{letter-spacing:0.389485pt;}
.ls1_c00465{letter-spacing:0.414080pt;}
.ls9_c00465{letter-spacing:0.472320pt;}
.lsa_c00465{letter-spacing:0.473530pt;}
.ls1a_c00465{letter-spacing:0.614016pt;}
.ls5_c00465{letter-spacing:0.632913pt;}
.ls11_c00465{letter-spacing:0.661248pt;}
.ls18_c00465{letter-spacing:0.708480pt;}
.ls13_c00465{letter-spacing:0.730284pt;}
.ls6_c00465{letter-spacing:0.734720pt;}
.ls7_c00465{letter-spacing:0.750464pt;}
.ls1d_c00465{letter-spacing:4.376064pt;}
.lsf_c00465{letter-spacing:4.742400pt;}
.ls19_c00465{letter-spacing:4.801920pt;}
.ls12_c00465{letter-spacing:5.064320pt;}
.ls2_c00465{letter-spacing:5.293333pt;}
.lsc_c00465{letter-spacing:5.312000pt;}
.ls4_c00465{letter-spacing:5.562880pt;}
.ws9_c00465{word-spacing:-19.391360pt;}
.ws2_c00465{word-spacing:-18.620160pt;}
.wsc_c00465{word-spacing:-17.542144pt;}
.ws6_c00465{word-spacing:-15.768735pt;}
.ws5_c00465{word-spacing:-15.671364pt;}
.ws4_c00465{word-spacing:-15.427936pt;}
.wsa_c00465{word-spacing:-15.061760pt;}
.ws7_c00465{word-spacing:-14.920064pt;}
.wsb_c00465{word-spacing:-14.044815pt;}
.ws0_c00465{word-spacing:-10.319360pt;}
.ws1_c00465{word-spacing:-10.159744pt;}
.ws8_c00465{word-spacing:-9.024000pt;}
.ws3_c00465{word-spacing:-8.896000pt;}
.wsd_c00465{word-spacing:0.000000pt;}
._9_c00465{margin-left:-5.510400pt;}
._8_c00465{margin-left:-4.565760pt;}
._6_c00465{margin-left:-0.893333pt;}
._1_c00465{width:1.728000pt;}
._3_c00465{width:2.624000pt;}
._5_c00465{width:3.840000pt;}
._7_c00465{width:4.749867pt;}
._2_c00465{width:5.696000pt;}
._4_c00465{width:7.680000pt;}
._0_c00465{width:12.864000pt;}
._a_c00465{width:31.120640pt;}
.fs3_c00465{font-size:32.000000pt;}
.fs1_c00465{font-size:37.120000pt;}
.fs6_c00465{font-size:47.360000pt;}
.fs7_c00465{font-size:48.817571pt;}
.fs2_c00465{font-size:49.920000pt;}
.fs4_c00465{font-size:52.480000pt;}
.fs8_c00465{font-size:53.333333pt;}
.fs5_c00465{font-size:54.095146pt;}
.fs0_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y34_c00465{bottom:2.773333pt;}
.y30_c00465{bottom:8.640000pt;}
.y32_c00465{bottom:12.800000pt;}
.y2c_c00465{bottom:16.640000pt;}
.y2f_c00465{bottom:22.720000pt;}
.y2b_c00465{bottom:30.720000pt;}
.y33_c00465{bottom:30.884071pt;}
.y2e_c00465{bottom:36.800000pt;}
.y1_c00465{bottom:48.000000pt;}
.y28_c00465{bottom:49.316480pt;}
.y29_c00465{bottom:49.320000pt;}
.y27_c00465{bottom:70.120000pt;}
.y26_c00465{bottom:80.356480pt;}
.y25_c00465{bottom:95.720000pt;}
.y24_c00465{bottom:95.721600pt;}
.y23_c00465{bottom:111.400000pt;}
.y22_c00465{bottom:116.840000pt;}
.y21_c00465{bottom:127.076480pt;}
.y20_c00465{bottom:147.880000pt;}
.y1f_c00465{bottom:158.120000pt;}
.y1e_c00465{bottom:163.560000pt;}
.y1d_c00465{bottom:187.240000pt;}
.y1c_c00465{bottom:234.280000pt;}
.y1b_c00465{bottom:266.280000pt;}
.y1a_c00465{bottom:298.280000pt;}
.y31_c00465{bottom:307.880000pt;}
.y19_c00465{bottom:330.280000pt;}
.y18_c00465{bottom:362.280000pt;}
.y17_c00465{bottom:394.280000pt;}
.y16_c00465{bottom:426.600000pt;}
.y15_c00465{bottom:458.600000pt;}
.y14_c00465{bottom:490.600000pt;}
.y2d_c00465{bottom:499.880000pt;}
.y13_c00465{bottom:532.520000pt;}
.y2a_c00465{bottom:553.960000pt;}
.y12_c00465{bottom:564.520000pt;}
.y11_c00465{bottom:596.520000pt;}
.y10_c00465{bottom:628.520000pt;}
.yf_c00465{bottom:660.520000pt;}
.ye_c00465{bottom:692.520000pt;}
.yd_c00465{bottom:724.520000pt;}
.yc_c00465{bottom:756.520000pt;}
.yb_c00465{bottom:788.520000pt;}
.ya_c00465{bottom:807.080000pt;}
.y9_c00465{bottom:825.640000pt;}
.y8_c00465{bottom:857.640000pt;}
.y7_c00465{bottom:876.520000pt;}
.y6_c00465{bottom:895.080000pt;}
.y5_c00465{bottom:913.640000pt;}
.y4_c00465{bottom:945.640000pt;}
.y3_c00465{bottom:964.520000pt;}
.y2_c00465{bottom:1011.880000pt;}
.hd_c00465{height:17.116093pt;}
.hc_c00465{height:24.000000pt;}
.h5_c00465{height:28.992000pt;}
.ha_c00465{height:37.687165pt;}
.h6_c00465{height:41.761453pt;}
.h8_c00465{height:41.920000pt;}
.h9_c00465{height:42.908160pt;}
.h7_c00465{height:47.546880pt;}
.hb_c00465{height:48.000000pt;}
.he_c00465{height:50.346667pt;}
.h3_c00465{height:57.984000pt;}
.h4_c00465{height:60.510720pt;}
.h2_c00465{height:1067.880000pt;}
.h0_c00465{height:1122.520000pt;}
.h1_c00465{height:1122.666667pt;}
.w6_c00465{width:22.240000pt;}
.w4_c00465{width:220.160000pt;}
.w5_c00465{width:260.160000pt;}
.w3_c00465{width:277.120000pt;}
.w2_c00465{width:767.960000pt;}
.w0_c00465{width:793.720000pt;}
.w1_c00465{width:794.000000pt;}
.x0_c00465{left:0.000000pt;}
.xf_c00465{left:4.290400pt;}
.x15_c00465{left:7.377067pt;}
.x1_c00465{left:12.880000pt;}
.x18_c00465{left:16.352400pt;}
.x1b_c00465{left:50.542267pt;}
.x19_c00465{left:62.527467pt;}
.x13_c00465{left:91.114000pt;}
.x2_c00465{left:100.480133pt;}
.x8_c00465{left:104.919867pt;}
.x4_c00465{left:108.634400pt;}
.x1a_c00465{left:109.840000pt;}
.xe_c00465{left:114.640000pt;}
.x5_c00465{left:122.700533pt;}
.x9_c00465{left:127.119467pt;}
.x10_c00465{left:128.307733pt;}
.xc_c00465{left:159.011333pt;}
.xd_c00465{left:176.783867pt;}
.x11_c00465{left:182.318400pt;}
.x16_c00465{left:185.405200pt;}
.x6_c00465{left:197.413067pt;}
.x12_c00465{left:202.297600pt;}
.x17_c00465{left:205.384267pt;}
.x7_c00465{left:215.199600pt;}
.xa_c00465{left:319.055333pt;}
.xb_c00465{left:362.027600pt;}
.x3_c00465{left:387.839467pt;}
.x14_c00465{left:447.760000pt;}
.x1c_c00465{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0d84ffb03b1f157ad4fa59b.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_ea0111d4a840c57fd178b25d.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;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:ff3_c00466;src:url('chunks/assets/font_d847f8d3ffa626b389472fcb.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00466{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00466{vertical-align:-24.480000px;}
.v0_c00466{vertical-align:0.000000px;}
.v1_c00466{vertical-align:30.240000px;}
.ls12_c00466{letter-spacing:0.000000px;}
.ls1_c00466{letter-spacing:0.119640px;}
.ls8_c00466{letter-spacing:0.236160px;}
.ls14_c00466{letter-spacing:0.265680px;}
.ls7_c00466{letter-spacing:0.295200px;}
.lsb_c00466{letter-spacing:0.318816px;}
.lsd_c00466{letter-spacing:0.328628px;}
.ls3_c00466{letter-spacing:0.336840px;}
.ls1d_c00466{letter-spacing:0.438171px;}
.ls0_c00466{letter-spacing:0.468840px;}
.ls1c_c00466{letter-spacing:0.478224px;}
.ls1f_c00466{letter-spacing:0.492942px;}
.lsf_c00466{letter-spacing:0.525456px;}
.ls16_c00466{letter-spacing:0.531360px;}
.lsa_c00466{letter-spacing:0.547713px;}
.lsc_c00466{letter-spacing:0.549072px;}
.lse_c00466{letter-spacing:0.560880px;}
.ls19_c00466{letter-spacing:0.602485px;}
.ls5_c00466{letter-spacing:0.700440px;}
.ls9_c00466{letter-spacing:0.712027px;}
.ls20_c00466{letter-spacing:0.718113px;}
.ls15_c00466{letter-spacing:0.743904px;}
.ls4_c00466{letter-spacing:0.751440px;}
.ls22_c00466{letter-spacing:0.766799px;}
.ls1e_c00466{letter-spacing:0.821570px;}
.ls23_c00466{letter-spacing:1.269360px;}
.ls17_c00466{letter-spacing:1.617696px;}
.ls21_c00466{letter-spacing:2.290752px;}
.ls1a_c00466{letter-spacing:3.070080px;}
.ls18_c00466{letter-spacing:5.402160px;}
.ls13_c00466{letter-spacing:5.430672px;}
.ls1b_c00466{letter-spacing:5.567472px;}
.ls2_c00466{letter-spacing:5.958000px;}
.ls10_c00466{letter-spacing:5.976000px;}
.ls6_c00466{letter-spacing:5.996400px;}
.ls11_c00466{letter-spacing:6.159920px;}
.sc__c00466{text-shadow:none;}
.sc1_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00466{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc1_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00466{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00466{word-spacing:-21.980592px;}
.ws4_c00466{word-spacing:-21.815280px;}
.ws2_c00466{word-spacing:-21.043152px;}
.ws0_c00466{word-spacing:-20.016000px;}
.ws9_c00466{word-spacing:-17.739827px;}
.wsc_c00466{word-spacing:-17.685056px;}
.ws5_c00466{word-spacing:-17.630284px;}
.ws6_c00466{word-spacing:-17.465970px;}
.wsa_c00466{word-spacing:-17.411199px;}
.ws8_c00466{word-spacing:-17.356428px;}
.wsb_c00466{word-spacing:-16.944480px;}
.ws1_c00466{word-spacing:-11.609280px;}
.ws3_c00466{word-spacing:-10.008000px;}
.wsd_c00466{word-spacing:0.000000px;}
._9_c00466{margin-left:-3.232800px;}
._8_c00466{margin-left:-2.191680px;}
._6_c00466{margin-left:-1.179360px;}
._1_c00466{width:1.080000px;}
._7_c00466{width:2.466000px;}
._4_c00466{width:4.032000px;}
._2_c00466{width:12.888000px;}
._0_c00466{width:14.256000px;}
._5_c00466{width:18.000000px;}
._3_c00466{width:26.280000px;}
.fc0_c00466{color:rgb(0,0,0);}
.fs4_c00466{font-size:36.000000px;}
.fs2_c00466{font-size:41.760000px;}
.fs3_c00466{font-size:56.160000px;}
.fs5_c00466{font-size:59.040000px;}
.fs7_c00466{font-size:60.000000px;}
.fs6_c00466{font-size:60.857039px;}
.fs0_c00466{font-size:72.000000px;}
.fs1_c00466{font-size:74.215901px;}
.y0_c00466{bottom:0.000000px;}
.y2d_c00466{bottom:3.120000px;}
.y2c_c00466{bottom:34.744580px;}
.y1_c00466{bottom:54.000000px;}
.y2b_c00466{bottom:55.481040px;}
.y2a_c00466{bottom:72.765000px;}
.y29_c00466{bottom:78.885000px;}
.y28_c00466{bottom:96.525000px;}
.y27_c00466{bottom:113.805000px;}
.y26_c00466{bottom:125.325000px;}
.y25_c00466{bottom:125.326800px;}
.y24_c00466{bottom:142.965000px;}
.y23_c00466{bottom:149.085000px;}
.y22_c00466{bottom:166.365000px;}
.y21_c00466{bottom:177.885000px;}
.y20_c00466{bottom:177.886800px;}
.y1e_c00466{bottom:195.521040px;}
.y1f_c00466{bottom:195.525000px;}
.y1d_c00466{bottom:218.925000px;}
.y1c_c00466{bottom:230.445000px;}
.y1b_c00466{bottom:236.565000px;}
.y1a_c00466{bottom:263.205000px;}
.y19_c00466{bottom:423.405000px;}
.y18_c00466{bottom:459.405000px;}
.y17_c00466{bottom:480.285000px;}
.y16_c00466{bottom:516.285000px;}
.y15_c00466{bottom:552.285000px;}
.y14_c00466{bottom:588.285000px;}
.y13_c00466{bottom:609.525000px;}
.y12_c00466{bottom:645.525000px;}
.y11_c00466{bottom:666.405000px;}
.y10_c00466{bottom:687.285000px;}
.yf_c00466{bottom:723.285000px;}
.ye_c00466{bottom:744.525000px;}
.yd_c00466{bottom:780.525000px;}
.yc_c00466{bottom:816.525000px;}
.yb_c00466{bottom:852.525000px;}
.ya_c00466{bottom:888.525000px;}
.y9_c00466{bottom:909.405000px;}
.y8_c00466{bottom:930.645000px;}
.y7_c00466{bottom:966.645000px;}
.y6_c00466{bottom:987.525000px;}
.y5_c00466{bottom:1008.405000px;}
.y4_c00466{bottom:1044.405000px;}
.y3_c00466{bottom:1082.925000px;}
.y2_c00466{bottom:1138.365000px;}
.h9_c00466{height:19.255605px;}
.h6_c00466{height:32.616000px;}
.h7_c00466{height:46.981634px;}
.h8_c00466{height:53.490240px;}
.ha_c00466{height:56.640000px;}
.h4_c00466{height:57.294676px;}
.h3_c00466{height:65.232000px;}
.h5_c00466{height:68.074560px;}
.h2_c00466{height:1201.365000px;}
.h0_c00466{height:1262.835000px;}
.h1_c00466{height:1263.000000px;}
.w3_c00466{width:25.020000px;}
.w2_c00466{width:863.955000px;}
.w0_c00466{width:892.935000px;}
.w1_c00466{width:893.250000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:14.490000px;}
.x2_c00466{left:113.040150px;}
.x3_c00466{left:161.531250px;}
.x8_c00466{left:173.033250px;}
.x1c_c00466{left:184.693350px;}
.x13_c00466{left:197.217000px;}
.x9_c00466{left:198.891000px;}
.xa_c00466{left:228.035100px;}
.x4_c00466{left:236.986050px;}
.x14_c00466{left:268.885200px;}
.x15_c00466{left:273.054900px;}
.x16_c00466{left:338.092950px;}
.x17_c00466{left:349.762500px;}
.xb_c00466{left:382.965900px;}
.x18_c00466{left:395.616150px;}
.x19_c00466{left:404.780550px;}
.x5_c00466{left:413.967000px;}
.x1a_c00466{left:436.474350px;}
.xc_c00466{left:445.316550px;}
.xd_c00466{left:450.311250px;}
.xe_c00466{left:475.285800px;}
.xf_c00466{left:553.943850px;}
.x6_c00466{left:579.272100px;}
.x10_c00466{left:598.972050px;}
.x11_c00466{left:608.838150px;}
.x1d_c00466{left:617.912550px;}
.x12_c00466{left:633.812550px;}
.x7_c00466{left:635.269050px;}
.x1e_c00466{left:638.157600px;}
.x1b_c00466{left:703.742100px;}
.x1f_c00466{left:759.914612px;}
@media print{
.v2_c00466{vertical-align:-21.760000pt;}
.v0_c00466{vertical-align:0.000000pt;}
.v1_c00466{vertical-align:26.880000pt;}
.ls12_c00466{letter-spacing:0.000000pt;}
.ls1_c00466{letter-spacing:0.106347pt;}
.ls8_c00466{letter-spacing:0.209920pt;}
.ls14_c00466{letter-spacing:0.236160pt;}
.ls7_c00466{letter-spacing:0.262400pt;}
.lsb_c00466{letter-spacing:0.283392pt;}
.lsd_c00466{letter-spacing:0.292114pt;}
.ls3_c00466{letter-spacing:0.299413pt;}
.ls1d_c00466{letter-spacing:0.389485pt;}
.ls0_c00466{letter-spacing:0.416747pt;}
.ls1c_c00466{letter-spacing:0.425088pt;}
.ls1f_c00466{letter-spacing:0.438171pt;}
.lsf_c00466{letter-spacing:0.467072pt;}
.ls16_c00466{letter-spacing:0.472320pt;}
.lsa_c00466{letter-spacing:0.486856pt;}
.lsc_c00466{letter-spacing:0.488064pt;}
.lse_c00466{letter-spacing:0.498560pt;}
.ls19_c00466{letter-spacing:0.535542pt;}
.ls5_c00466{letter-spacing:0.622613pt;}
.ls9_c00466{letter-spacing:0.632913pt;}
.ls20_c00466{letter-spacing:0.638323pt;}
.ls15_c00466{letter-spacing:0.661248pt;}
.ls4_c00466{letter-spacing:0.667947pt;}
.ls22_c00466{letter-spacing:0.681599pt;}
.ls1e_c00466{letter-spacing:0.730284pt;}
.ls23_c00466{letter-spacing:1.128320pt;}
.ls17_c00466{letter-spacing:1.437952pt;}
.ls21_c00466{letter-spacing:2.036224pt;}
.ls1a_c00466{letter-spacing:2.728960pt;}
.ls18_c00466{letter-spacing:4.801920pt;}
.ls13_c00466{letter-spacing:4.827264pt;}
.ls1b_c00466{letter-spacing:4.948864pt;}
.ls2_c00466{letter-spacing:5.296000pt;}
.ls10_c00466{letter-spacing:5.312000pt;}
.ls6_c00466{letter-spacing:5.330133pt;}
.ls11_c00466{letter-spacing:5.475484pt;}
.ws7_c00466{word-spacing:-19.538304pt;}
.ws4_c00466{word-spacing:-19.391360pt;}
.ws2_c00466{word-spacing:-18.705024pt;}
.ws0_c00466{word-spacing:-17.792000pt;}
.ws9_c00466{word-spacing:-15.768735pt;}
.wsc_c00466{word-spacing:-15.720049pt;}
.ws5_c00466{word-spacing:-15.671364pt;}
.ws6_c00466{word-spacing:-15.525307pt;}
.wsa_c00466{word-spacing:-15.476621pt;}
.ws8_c00466{word-spacing:-15.427936pt;}
.wsb_c00466{word-spacing:-15.061760pt;}
.ws1_c00466{word-spacing:-10.319360pt;}
.ws3_c00466{word-spacing:-8.896000pt;}
.wsd_c00466{word-spacing:0.000000pt;}
._9_c00466{margin-left:-2.873600pt;}
._8_c00466{margin-left:-1.948160pt;}
._6_c00466{margin-left:-1.048320pt;}
._1_c00466{width:0.960000pt;}
._7_c00466{width:2.192000pt;}
._4_c00466{width:3.584000pt;}
._2_c00466{width:11.456000pt;}
._0_c00466{width:12.672000pt;}
._5_c00466{width:16.000000pt;}
._3_c00466{width:23.360000pt;}
.fs4_c00466{font-size:32.000000pt;}
.fs2_c00466{font-size:37.120000pt;}
.fs3_c00466{font-size:49.920000pt;}
.fs5_c00466{font-size:52.480000pt;}
.fs7_c00466{font-size:53.333333pt;}
.fs6_c00466{font-size:54.095146pt;}
.fs0_c00466{font-size:64.000000pt;}
.fs1_c00466{font-size:65.969690pt;}
.y0_c00466{bottom:0.000000pt;}
.y2d_c00466{bottom:2.773333pt;}
.y2c_c00466{bottom:30.884071pt;}
.y1_c00466{bottom:48.000000pt;}
.y2b_c00466{bottom:49.316480pt;}
.y2a_c00466{bottom:64.680000pt;}
.y29_c00466{bottom:70.120000pt;}
.y28_c00466{bottom:85.800000pt;}
.y27_c00466{bottom:101.160000pt;}
.y26_c00466{bottom:111.400000pt;}
.y25_c00466{bottom:111.401600pt;}
.y24_c00466{bottom:127.080000pt;}
.y23_c00466{bottom:132.520000pt;}
.y22_c00466{bottom:147.880000pt;}
.y21_c00466{bottom:158.120000pt;}
.y20_c00466{bottom:158.121600pt;}
.y1e_c00466{bottom:173.796480pt;}
.y1f_c00466{bottom:173.800000pt;}
.y1d_c00466{bottom:194.600000pt;}
.y1c_c00466{bottom:204.840000pt;}
.y1b_c00466{bottom:210.280000pt;}
.y1a_c00466{bottom:233.960000pt;}
.y19_c00466{bottom:376.360000pt;}
.y18_c00466{bottom:408.360000pt;}
.y17_c00466{bottom:426.920000pt;}
.y16_c00466{bottom:458.920000pt;}
.y15_c00466{bottom:490.920000pt;}
.y14_c00466{bottom:522.920000pt;}
.y13_c00466{bottom:541.800000pt;}
.y12_c00466{bottom:573.800000pt;}
.y11_c00466{bottom:592.360000pt;}
.y10_c00466{bottom:610.920000pt;}
.yf_c00466{bottom:642.920000pt;}
.ye_c00466{bottom:661.800000pt;}
.yd_c00466{bottom:693.800000pt;}
.yc_c00466{bottom:725.800000pt;}
.yb_c00466{bottom:757.800000pt;}
.ya_c00466{bottom:789.800000pt;}
.y9_c00466{bottom:808.360000pt;}
.y8_c00466{bottom:827.240000pt;}
.y7_c00466{bottom:859.240000pt;}
.y6_c00466{bottom:877.800000pt;}
.y5_c00466{bottom:896.360000pt;}
.y4_c00466{bottom:928.360000pt;}
.y3_c00466{bottom:962.600000pt;}
.y2_c00466{bottom:1011.880000pt;}
.h9_c00466{height:17.116093pt;}
.h6_c00466{height:28.992000pt;}
.h7_c00466{height:41.761453pt;}
.h8_c00466{height:47.546880pt;}
.ha_c00466{height:50.346667pt;}
.h4_c00466{height:50.928601pt;}
.h3_c00466{height:57.984000pt;}
.h5_c00466{height:60.510720pt;}
.h2_c00466{height:1067.880000pt;}
.h0_c00466{height:1122.520000pt;}
.h1_c00466{height:1122.666667pt;}
.w3_c00466{width:22.240000pt;}
.w2_c00466{width:767.960000pt;}
.w0_c00466{width:793.720000pt;}
.w1_c00466{width:794.000000pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:12.880000pt;}
.x2_c00466{left:100.480133pt;}
.x3_c00466{left:143.583333pt;}
.x8_c00466{left:153.807333pt;}
.x1c_c00466{left:164.171867pt;}
.x13_c00466{left:175.304000pt;}
.x9_c00466{left:176.792000pt;}
.xa_c00466{left:202.697867pt;}
.x4_c00466{left:210.654267pt;}
.x14_c00466{left:239.009067pt;}
.x15_c00466{left:242.715467pt;}
.x16_c00466{left:300.527067pt;}
.x17_c00466{left:310.900000pt;}
.xb_c00466{left:340.414133pt;}
.x18_c00466{left:351.658800pt;}
.x19_c00466{left:359.804933pt;}
.x5_c00466{left:367.970667pt;}
.x1a_c00466{left:387.977200pt;}
.xc_c00466{left:395.836933pt;}
.xd_c00466{left:400.276667pt;}
.xe_c00466{left:422.476267pt;}
.xf_c00466{left:492.394533pt;}
.x6_c00466{left:514.908533pt;}
.x10_c00466{left:532.419600pt;}
.x11_c00466{left:541.189467pt;}
.x1d_c00466{left:549.255600pt;}
.x12_c00466{left:563.388933pt;}
.x7_c00466{left:564.683600pt;}
.x1e_c00466{left:567.251200pt;}
.x1b_c00466{left:625.548533pt;}
.x1f_c00466{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae1298601dfe57421314673d.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_e2b2bfbf8b8d92882ff89f4d.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;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:ff3_c00467;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00467;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00467;src:url('chunks/assets/font_910304ee2fbe12a5b98c4c78.woff2')format("woff");}.ff5_c00467{font-family:ff5_c00467;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00467;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff6_c00467{font-family:ff6_c00467;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00467;src:url('chunks/assets/font_b9f79e7ae35b8be914fa26c9.woff2')format("woff");}.ff7_c00467{font-family:ff7_c00467;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00467{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00467{vertical-align:-30.240000px;}
.v3_c00467{vertical-align:-24.480000px;}
.v0_c00467{vertical-align:0.000000px;}
.v1_c00467{vertical-align:30.240000px;}
.ls15_c00467{letter-spacing:-0.179568px;}
.lsc_c00467{letter-spacing:0.000000px;}
.ls17_c00467{letter-spacing:0.144000px;}
.ls1_c00467{letter-spacing:0.263640px;}
.ls13_c00467{letter-spacing:0.265680px;}
.ls18_c00467{letter-spacing:0.273857px;}
.ls3_c00467{letter-spacing:0.295200px;}
.ls16_c00467{letter-spacing:0.371952px;}
.lse_c00467{letter-spacing:0.425088px;}
.ls19_c00467{letter-spacing:0.438171px;}
.ls8_c00467{letter-spacing:0.501840px;}
.ls5_c00467{letter-spacing:0.513648px;}
.ls9_c00467{letter-spacing:0.519552px;}
.ls6_c00467{letter-spacing:0.531360px;}
.ls7_c00467{letter-spacing:0.560880px;}
.ls12_c00467{letter-spacing:0.602485px;}
.ls11_c00467{letter-spacing:0.657256px;}
.ls4_c00467{letter-spacing:0.712027px;}
.lsf_c00467{letter-spacing:0.743904px;}
.lsd_c00467{letter-spacing:0.962352px;}
.ls1b_c00467{letter-spacing:2.143152px;}
.ls14_c00467{letter-spacing:5.430672px;}
.ls1a_c00467{letter-spacing:5.567472px;}
.lsa_c00467{letter-spacing:5.975400px;}
.ls2_c00467{letter-spacing:5.976000px;}
.lsb_c00467{letter-spacing:6.159920px;}
.ls10_c00467{letter-spacing:9.015408px;}
.ls0_c00467{letter-spacing:54.864000px;}
.sc__c00467{text-shadow:none;}
.sc1_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00467{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc1_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00467{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8_c00467{word-spacing:-21.980592px;}
.ws4_c00467{word-spacing:-21.043152px;}
.ws1_c00467{word-spacing:-17.630284px;}
.ws2_c00467{word-spacing:-17.575513px;}
.ws3_c00467{word-spacing:-17.520742px;}
.ws9_c00467{word-spacing:-16.944480px;}
.ws0_c00467{word-spacing:-11.609280px;}
.ws5_c00467{word-spacing:-11.429712px;}
.ws7_c00467{word-spacing:-10.152000px;}
.ws6_c00467{word-spacing:-10.008000px;}
.wsa_c00467{word-spacing:0.000000px;}
._7_c00467{margin-left:-9.387360px;}
._6_c00467{margin-left:-8.265600px;}
._c_c00467{margin-left:-2.649600px;}
._2_c00467{margin-left:-1.003680px;}
._4_c00467{width:1.062720px;}
._0_c00467{width:2.808000px;}
._3_c00467{width:4.546080px;}
._5_c00467{width:5.785920px;}
._9_c00467{width:7.261920px;}
._1_c00467{width:8.352000px;}
._8_c00467{width:10.304640px;}
._a_c00467{width:11.808000px;}
._b_c00467{width:15.408000px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs6_c00467{font-size:36.000000px;}
.fs2_c00467{font-size:41.760000px;}
.fs5_c00467{font-size:56.160000px;}
.fs3_c00467{font-size:59.040000px;}
.fs7_c00467{font-size:60.000000px;}
.fs4_c00467{font-size:60.857039px;}
.fs0_c00467{font-size:72.000000px;}
.fs1_c00467{font-size:74.215901px;}
.y0_c00467{bottom:0.000000px;}
.y34_c00467{bottom:3.120000px;}
.y33_c00467{bottom:34.744580px;}
.y1_c00467{bottom:54.000000px;}
.y32_c00467{bottom:55.481040px;}
.y31_c00467{bottom:78.885000px;}
.y30_c00467{bottom:90.405000px;}
.y2f_c00467{bottom:96.525000px;}
.y2e_c00467{bottom:114.165000px;}
.y2d_c00467{bottom:131.445000px;}
.y2c_c00467{bottom:158.085000px;}
.y2b_c00467{bottom:196.605000px;}
.y29_c00467{bottom:217.485000px;}
.y2a_c00467{bottom:225.045000px;}
.y28_c00467{bottom:238.365000px;}
.y27_c00467{bottom:259.605000px;}
.y26_c00467{bottom:295.605000px;}
.y25_c00467{bottom:316.485000px;}
.y24_c00467{bottom:337.725000px;}
.y23_c00467{bottom:358.605000px;}
.y22_c00467{bottom:379.485000px;}
.y21_c00467{bottom:400.725000px;}
.y20_c00467{bottom:436.725000px;}
.y1f_c00467{bottom:472.365360px;}
.y1e_c00467{bottom:497.206440px;}
.y1d_c00467{bottom:514.844640px;}
.y1c_c00467{bottom:532.482840px;}
.y1b_c00467{bottom:549.766800px;}
.y19_c00467{bottom:567.401040px;}
.y1a_c00467{bottom:567.405000px;}
.y18_c00467{bottom:584.685000px;}
.y17_c00467{bottom:609.885000px;}
.y16_c00467{bottom:609.886800px;}
.y14_c00467{bottom:627.521760px;}
.y15_c00467{bottom:627.525000px;}
.y13_c00467{bottom:644.805720px;}
.y12_c00467{bottom:662.443920px;}
.y11_c00467{bottom:687.285000px;}
.y10_c00467{bottom:713.205000px;}
.yf_c00467{bottom:743.445000px;}
.ye_c00467{bottom:771.525000px;}
.yd_c00467{bottom:799.965000px;}
.yc_c00467{bottom:835.965000px;}
.yb_c00467{bottom:856.845000px;}
.ya_c00467{bottom:892.845000px;}
.y9_c00467{bottom:914.085000px;}
.y8_c00467{bottom:950.085000px;}
.y7_c00467{bottom:970.965000px;}
.y6_c00467{bottom:991.845000px;}
.y5_c00467{bottom:1013.085000px;}
.y4_c00467{bottom:1049.085000px;}
.y3_c00467{bottom:1085.085000px;}
.y2_c00467{bottom:1138.365000px;}
.hc_c00467{height:19.255605px;}
.ha_c00467{height:32.616000px;}
.h9_c00467{height:37.834560px;}
.hb_c00467{height:39.350391px;}
.h8_c00467{height:46.981634px;}
.h6_c00467{height:47.988281px;}
.h7_c00467{height:53.490240px;}
.hd_c00467{height:56.640000px;}
.h4_c00467{height:57.294676px;}
.h3_c00467{height:65.232000px;}
.h5_c00467{height:68.074560px;}
.h2_c00467{height:1201.365000px;}
.h0_c00467{height:1262.835000px;}
.h1_c00467{height:1263.000000px;}
.w3_c00467{width:25.020000px;}
.w2_c00467{width:863.955000px;}
.w0_c00467{width:892.935000px;}
.w1_c00467{width:893.250000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:14.490000px;}
.x2_c00467{left:113.040150px;}
.x1f_c00467{left:127.217700px;}
.x18_c00467{left:133.034550px;}
.x5_c00467{left:140.037600px;}
.x20_c00467{left:152.192100px;}
.x3_c00467{left:161.531250px;}
.x6_c00467{left:167.037600px;}
.x1b_c00467{left:189.370950px;}
.x21_c00467{left:198.060000px;}
.x22_c00467{left:213.044700px;}
.x23_c00467{left:216.794700px;}
.x1c_c00467{left:223.408500px;}
.x19_c00467{left:235.540950px;}
.x4_c00467{left:236.986050px;}
.x1a_c00467{left:242.178300px;}
.x24_c00467{left:253.498200px;}
.x25_c00467{left:257.248200px;}
.xf_c00467{left:260.161800px;}
.x10_c00467{left:285.136200px;}
.x17_c00467{left:295.222050px;}
.x26_c00467{left:308.081250px;}
.xa_c00467{left:325.654800px;}
.x11_c00467{left:335.379600px;}
.x12_c00467{left:360.354150px;}
.xb_c00467{left:387.655950px;}
.xc_c00467{left:392.155950px;}
.x9_c00467{left:431.710800px;}
.x13_c00467{left:433.604400px;}
.x14_c00467{left:461.923800px;}
.xd_c00467{left:465.198450px;}
.xe_c00467{left:469.698450px;}
.x7_c00467{left:507.840000px;}
.x8_c00467{left:544.905000px;}
.x1d_c00467{left:582.675300px;}
.x1e_c00467{left:633.600000px;}
.x27_c00467{left:696.478650px;}
.x15_c00467{left:705.708600px;}
.x28_c00467{left:716.472600px;}
.x16_c00467{left:724.863300px;}
.x29_c00467{left:759.914612px;}
@media print{
.v2_c00467{vertical-align:-26.880000pt;}
.v3_c00467{vertical-align:-21.760000pt;}
.v0_c00467{vertical-align:0.000000pt;}
.v1_c00467{vertical-align:26.880000pt;}
.ls15_c00467{letter-spacing:-0.159616pt;}
.lsc_c00467{letter-spacing:0.000000pt;}
.ls17_c00467{letter-spacing:0.128000pt;}
.ls1_c00467{letter-spacing:0.234347pt;}
.ls13_c00467{letter-spacing:0.236160pt;}
.ls18_c00467{letter-spacing:0.243428pt;}
.ls3_c00467{letter-spacing:0.262400pt;}
.ls16_c00467{letter-spacing:0.330624pt;}
.lse_c00467{letter-spacing:0.377856pt;}
.ls19_c00467{letter-spacing:0.389485pt;}
.ls8_c00467{letter-spacing:0.446080pt;}
.ls5_c00467{letter-spacing:0.456576pt;}
.ls9_c00467{letter-spacing:0.461824pt;}
.ls6_c00467{letter-spacing:0.472320pt;}
.ls7_c00467{letter-spacing:0.498560pt;}
.ls12_c00467{letter-spacing:0.535542pt;}
.ls11_c00467{letter-spacing:0.584228pt;}
.ls4_c00467{letter-spacing:0.632913pt;}
.lsf_c00467{letter-spacing:0.661248pt;}
.lsd_c00467{letter-spacing:0.855424pt;}
.ls1b_c00467{letter-spacing:1.905024pt;}
.ls14_c00467{letter-spacing:4.827264pt;}
.ls1a_c00467{letter-spacing:4.948864pt;}
.lsa_c00467{letter-spacing:5.311467pt;}
.ls2_c00467{letter-spacing:5.312000pt;}
.lsb_c00467{letter-spacing:5.475484pt;}
.ls10_c00467{letter-spacing:8.013696pt;}
.ls0_c00467{letter-spacing:48.768000pt;}
.ws8_c00467{word-spacing:-19.538304pt;}
.ws4_c00467{word-spacing:-18.705024pt;}
.ws1_c00467{word-spacing:-15.671364pt;}
.ws2_c00467{word-spacing:-15.622678pt;}
.ws3_c00467{word-spacing:-15.573992pt;}
.ws9_c00467{word-spacing:-15.061760pt;}
.ws0_c00467{word-spacing:-10.319360pt;}
.ws5_c00467{word-spacing:-10.159744pt;}
.ws7_c00467{word-spacing:-9.024000pt;}
.ws6_c00467{word-spacing:-8.896000pt;}
.wsa_c00467{word-spacing:0.000000pt;}
._7_c00467{margin-left:-8.344320pt;}
._6_c00467{margin-left:-7.347200pt;}
._c_c00467{margin-left:-2.355200pt;}
._2_c00467{margin-left:-0.892160pt;}
._4_c00467{width:0.944640pt;}
._0_c00467{width:2.496000pt;}
._3_c00467{width:4.040960pt;}
._5_c00467{width:5.143040pt;}
._9_c00467{width:6.455040pt;}
._1_c00467{width:7.424000pt;}
._8_c00467{width:9.159680pt;}
._a_c00467{width:10.496000pt;}
._b_c00467{width:13.696000pt;}
.fs6_c00467{font-size:32.000000pt;}
.fs2_c00467{font-size:37.120000pt;}
.fs5_c00467{font-size:49.920000pt;}
.fs3_c00467{font-size:52.480000pt;}
.fs7_c00467{font-size:53.333333pt;}
.fs4_c00467{font-size:54.095146pt;}
.fs0_c00467{font-size:64.000000pt;}
.fs1_c00467{font-size:65.969690pt;}
.y0_c00467{bottom:0.000000pt;}
.y34_c00467{bottom:2.773333pt;}
.y33_c00467{bottom:30.884071pt;}
.y1_c00467{bottom:48.000000pt;}
.y32_c00467{bottom:49.316480pt;}
.y31_c00467{bottom:70.120000pt;}
.y30_c00467{bottom:80.360000pt;}
.y2f_c00467{bottom:85.800000pt;}
.y2e_c00467{bottom:101.480000pt;}
.y2d_c00467{bottom:116.840000pt;}
.y2c_c00467{bottom:140.520000pt;}
.y2b_c00467{bottom:174.760000pt;}
.y29_c00467{bottom:193.320000pt;}
.y2a_c00467{bottom:200.040000pt;}
.y28_c00467{bottom:211.880000pt;}
.y27_c00467{bottom:230.760000pt;}
.y26_c00467{bottom:262.760000pt;}
.y25_c00467{bottom:281.320000pt;}
.y24_c00467{bottom:300.200000pt;}
.y23_c00467{bottom:318.760000pt;}
.y22_c00467{bottom:337.320000pt;}
.y21_c00467{bottom:356.200000pt;}
.y20_c00467{bottom:388.200000pt;}
.y1f_c00467{bottom:419.880320pt;}
.y1e_c00467{bottom:441.961280pt;}
.y1d_c00467{bottom:457.639680pt;}
.y1c_c00467{bottom:473.318080pt;}
.y1b_c00467{bottom:488.681600pt;}
.y19_c00467{bottom:504.356480pt;}
.y1a_c00467{bottom:504.360000pt;}
.y18_c00467{bottom:519.720000pt;}
.y17_c00467{bottom:542.120000pt;}
.y16_c00467{bottom:542.121600pt;}
.y14_c00467{bottom:557.797120pt;}
.y15_c00467{bottom:557.800000pt;}
.y13_c00467{bottom:573.160640pt;}
.y12_c00467{bottom:588.839040pt;}
.y11_c00467{bottom:610.920000pt;}
.y10_c00467{bottom:633.960000pt;}
.yf_c00467{bottom:660.840000pt;}
.ye_c00467{bottom:685.800000pt;}
.yd_c00467{bottom:711.080000pt;}
.yc_c00467{bottom:743.080000pt;}
.yb_c00467{bottom:761.640000pt;}
.ya_c00467{bottom:793.640000pt;}
.y9_c00467{bottom:812.520000pt;}
.y8_c00467{bottom:844.520000pt;}
.y7_c00467{bottom:863.080000pt;}
.y6_c00467{bottom:881.640000pt;}
.y5_c00467{bottom:900.520000pt;}
.y4_c00467{bottom:932.520000pt;}
.y3_c00467{bottom:964.520000pt;}
.y2_c00467{bottom:1011.880000pt;}
.hc_c00467{height:17.116093pt;}
.ha_c00467{height:28.992000pt;}
.h9_c00467{height:33.630720pt;}
.hb_c00467{height:34.978125pt;}
.h8_c00467{height:41.761453pt;}
.h6_c00467{height:42.656250pt;}
.h7_c00467{height:47.546880pt;}
.hd_c00467{height:50.346667pt;}
.h4_c00467{height:50.928601pt;}
.h3_c00467{height:57.984000pt;}
.h5_c00467{height:60.510720pt;}
.h2_c00467{height:1067.880000pt;}
.h0_c00467{height:1122.520000pt;}
.h1_c00467{height:1122.666667pt;}
.w3_c00467{width:22.240000pt;}
.w2_c00467{width:767.960000pt;}
.w0_c00467{width:793.720000pt;}
.w1_c00467{width:794.000000pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:12.880000pt;}
.x2_c00467{left:100.480133pt;}
.x1f_c00467{left:113.082400pt;}
.x18_c00467{left:118.252933pt;}
.x5_c00467{left:124.477867pt;}
.x20_c00467{left:135.281867pt;}
.x3_c00467{left:143.583333pt;}
.x6_c00467{left:148.477867pt;}
.x1b_c00467{left:168.329733pt;}
.x21_c00467{left:176.053333pt;}
.x22_c00467{left:189.373067pt;}
.x23_c00467{left:192.706400pt;}
.x1c_c00467{left:198.585333pt;}
.x19_c00467{left:209.369733pt;}
.x4_c00467{left:210.654267pt;}
.x1a_c00467{left:215.269600pt;}
.x24_c00467{left:225.331733pt;}
.x25_c00467{left:228.665067pt;}
.xf_c00467{left:231.254933pt;}
.x10_c00467{left:253.454400pt;}
.x17_c00467{left:262.419600pt;}
.x26_c00467{left:273.850000pt;}
.xa_c00467{left:289.470933pt;}
.x11_c00467{left:298.115200pt;}
.x12_c00467{left:320.314800pt;}
.xb_c00467{left:344.583067pt;}
.xc_c00467{left:348.583067pt;}
.x9_c00467{left:383.742933pt;}
.x13_c00467{left:385.426133pt;}
.x14_c00467{left:410.598933pt;}
.xd_c00467{left:413.509733pt;}
.xe_c00467{left:417.509733pt;}
.x7_c00467{left:451.413333pt;}
.x8_c00467{left:484.360000pt;}
.x1d_c00467{left:517.933600pt;}
.x1e_c00467{left:563.200000pt;}
.x27_c00467{left:619.092133pt;}
.x15_c00467{left:627.296533pt;}
.x28_c00467{left:636.864533pt;}
.x16_c00467{left:644.322933pt;}
.x29_c00467{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9bf7552bd1a7331928ef1182.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_6865fa2cbfbd171b4790ca36.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;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:ff3_c00468;src:url('chunks/assets/font_77a95a185194347ca102534a.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00468;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00468;src:url('chunks/assets/font_35f60f79f0db4d31aef448d0.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00468{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00468{vertical-align:-24.480000px;}
.v0_c00468{vertical-align:0.000000px;}
.v1_c00468{vertical-align:30.240000px;}
.lsd_c00468{letter-spacing:-0.179568px;}
.lsc_c00468{letter-spacing:0.000000px;}
.ls10_c00468{letter-spacing:0.144000px;}
.ls0_c00468{letter-spacing:0.217200px;}
.ls9_c00468{letter-spacing:0.236160px;}
.ls14_c00468{letter-spacing:0.265680px;}
.ls3_c00468{letter-spacing:0.273857px;}
.ls7_c00468{letter-spacing:0.295200px;}
.ls22_c00468{letter-spacing:0.318816px;}
.ls19_c00468{letter-spacing:0.328628px;}
.ls17_c00468{letter-spacing:0.371952px;}
.ls1c_c00468{letter-spacing:0.425088px;}
.ls2_c00468{letter-spacing:0.425999px;}
.ls12_c00468{letter-spacing:0.438171px;}
.ls1b_c00468{letter-spacing:0.478224px;}
.ls4_c00468{letter-spacing:0.513648px;}
.ls8_c00468{letter-spacing:0.531360px;}
.ls6_c00468{letter-spacing:0.547713px;}
.ls5_c00468{letter-spacing:0.572056px;}
.ls16_c00468{letter-spacing:0.696672px;}
.ls15_c00468{letter-spacing:0.712027px;}
.ls1f_c00468{letter-spacing:0.797040px;}
.ls1a_c00468{letter-spacing:1.682640px;}
.ls20_c00468{letter-spacing:3.294432px;}
.ls13_c00468{letter-spacing:3.347568px;}
.lsf_c00468{letter-spacing:5.335200px;}
.ls21_c00468{letter-spacing:5.567472px;}
.ls1d_c00468{letter-spacing:5.768208px;}
.lsa_c00468{letter-spacing:5.976000px;}
.ls1_c00468{letter-spacing:5.995800px;}
.lsb_c00468{letter-spacing:6.159920px;}
.lse_c00468{letter-spacing:10.137600px;}
.ls1e_c00468{letter-spacing:17.989488px;}
.ls18_c00468{letter-spacing:19.252944px;}
.ls11_c00468{letter-spacing:25.162848px;}
.sc__c00468{text-shadow:none;}
.sc1_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00468{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc1_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00468{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00468{word-spacing:-21.980592px;}
.ws2_c00468{word-spacing:-20.947680px;}
.ws0_c00468{word-spacing:-20.016000px;}
.ws5_c00468{word-spacing:-17.490313px;}
.ws8_c00468{word-spacing:-17.465970px;}
.ws6_c00468{word-spacing:-17.246885px;}
.ws4_c00468{word-spacing:-17.192114px;}
.ws7_c00468{word-spacing:-16.838208px;}
.wsa_c00468{word-spacing:-16.731936px;}
.ws1_c00468{word-spacing:-11.429712px;}
.ws3_c00468{word-spacing:-10.152000px;}
.wsb_c00468{word-spacing:0.000000px;}
._c_c00468{margin-left:-24.789600px;}
._d_c00468{margin-left:-23.784480px;}
._13_c00468{margin-left:-18.833760px;}
._14_c00468{margin-left:-17.830080px;}
._18_c00468{margin-left:-16.701120px;}
._17_c00468{margin-left:-6.258240px;}
._16_c00468{margin-left:-5.077440px;}
._11_c00468{margin-left:-3.863520px;}
._10_c00468{margin-left:-2.826720px;}
._f_c00468{margin-left:-1.180800px;}
._3_c00468{width:1.224000px;}
._a_c00468{width:2.304000px;}
._7_c00468{width:3.528000px;}
._2_c00468{width:4.608000px;}
._5_c00468{width:5.616000px;}
._1_c00468{width:7.272000px;}
._b_c00468{width:8.352000px;}
._8_c00468{width:10.152000px;}
._9_c00468{width:13.464000px;}
._12_c00468{width:18.892800px;}
._15_c00468{width:20.604960px;}
._6_c00468{width:21.888000px;}
._0_c00468{width:23.328000px;}
._e_c00468{width:24.890529px;}
._4_c00468{width:35.640000px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs4_c00468{font-size:36.000000px;}
.fs2_c00468{font-size:41.760000px;}
.fs3_c00468{font-size:56.160000px;}
.fs5_c00468{font-size:59.040000px;}
.fs7_c00468{font-size:60.000000px;}
.fs6_c00468{font-size:60.857039px;}
.fs0_c00468{font-size:72.000000px;}
.fs1_c00468{font-size:74.215901px;}
.y0_c00468{bottom:0.000000px;}
.y36_c00468{bottom:3.120000px;}
.y35_c00468{bottom:34.744580px;}
.y1_c00468{bottom:54.000000px;}
.y34_c00468{bottom:55.485000px;}
.y33_c00468{bottom:61.605000px;}
.y32_c00468{bottom:72.765000px;}
.y31_c00468{bottom:72.766800px;}
.y30_c00468{bottom:96.525000px;}
.y2f_c00468{bottom:107.686800px;}
.y2e_c00468{bottom:125.325000px;}
.y2d_c00468{bottom:131.445000px;}
.y2b_c00468{bottom:142.964640px;}
.y2c_c00468{bottom:142.965000px;}
.y2a_c00468{bottom:160.248600px;}
.y29_c00468{bottom:177.886800px;}
.y27_c00468{bottom:195.521040px;}
.y28_c00468{bottom:195.525000px;}
.y26_c00468{bottom:212.805000px;}
.y25_c00468{bottom:212.806800px;}
.y23_c00468{bottom:230.441040px;}
.y24_c00468{bottom:230.445000px;}
.y22_c00468{bottom:247.725000px;}
.y21_c00468{bottom:247.726800px;}
.y20_c00468{bottom:265.365000px;}
.y1f_c00468{bottom:271.485000px;}
.y1d_c00468{bottom:283.001040px;}
.y1e_c00468{bottom:283.005000px;}
.y1c_c00468{bottom:300.285000px;}
.y1b_c00468{bottom:306.405000px;}
.y1a_c00468{bottom:333.045000px;}
.y19_c00468{bottom:531.405000px;}
.y18_c00468{bottom:567.405000px;}
.y17_c00468{bottom:603.405000px;}
.y16_c00468{bottom:639.405000px;}
.y15_c00468{bottom:675.405000px;}
.y14_c00468{bottom:696.285000px;}
.y13_c00468{bottom:717.165000px;}
.y12_c00468{bottom:738.405000px;}
.y11_c00468{bottom:759.285000px;}
.y10_c00468{bottom:780.165000px;}
.yf_c00468{bottom:803.205000px;}
.ye_c00468{bottom:824.085000px;}
.yd_c00468{bottom:844.965000px;}
.yc_c00468{bottom:880.965000px;}
.yb_c00468{bottom:901.845000px;}
.ya_c00468{bottom:923.085000px;}
.y9_c00468{bottom:943.965000px;}
.y8_c00468{bottom:964.845000px;}
.y7_c00468{bottom:986.085000px;}
.y6_c00468{bottom:1006.965000px;}
.y5_c00468{bottom:1027.845000px;}
.y4_c00468{bottom:1063.845000px;}
.y3_c00468{bottom:1085.085000px;}
.y2_c00468{bottom:1138.365000px;}
.hc_c00468{height:19.255605px;}
.h8_c00468{height:32.616000px;}
.h9_c00468{height:46.981634px;}
.hb_c00468{height:48.685631px;}
.h6_c00468{height:50.765625px;}
.ha_c00468{height:53.490240px;}
.hd_c00468{height:56.640000px;}
.h4_c00468{height:57.294676px;}
.h3_c00468{height:65.232000px;}
.h7_c00468{height:68.073960px;}
.h5_c00468{height:68.074560px;}
.h2_c00468{height:1201.365000px;}
.h0_c00468{height:1262.835000px;}
.h1_c00468{height:1263.000000px;}
.w3_c00468{width:25.020000px;}
.w2_c00468{width:863.955000px;}
.w0_c00468{width:892.935000px;}
.w1_c00468{width:893.250000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:14.490000px;}
.x2_c00468{left:113.040150px;}
.x11_c00468{left:131.040150px;}
.x3_c00468{left:161.531250px;}
.x1e_c00468{left:200.547000px;}
.x12_c00468{left:202.048800px;}
.x1f_c00468{left:220.540950px;}
.x30_c00468{left:232.181400px;}
.x4_c00468{left:236.986050px;}
.x1b_c00468{left:250.060950px;}
.x31_c00468{left:261.369900px;}
.x7_c00468{left:264.684750px;}
.x32_c00468{left:266.398350px;}
.x2b_c00468{left:269.535300px;}
.x17_c00468{left:273.075000px;}
.x33_c00468{left:278.052900px;}
.x24_c00468{left:282.877800px;}
.x2e_c00468{left:299.414850px;}
.x28_c00468{left:301.866600px;}
.x2c_c00468{left:303.900900px;}
.x25_c00468{left:342.050850px;}
.x2f_c00468{left:343.573650px;}
.x18_c00468{left:353.065800px;}
.x19_c00468{left:358.069650px;}
.x1c_c00468{left:381.276150px;}
.x8_c00468{left:402.084600px;}
.x1a_c00468{left:413.095050px;}
.x9_c00468{left:432.483000px;}
.x20_c00468{left:438.358050px;}
.x2d_c00468{left:470.643000px;}
.x21_c00468{left:497.531250px;}
.x26_c00468{left:508.280550px;}
.xa_c00468{left:512.473800px;}
.x27_c00468{left:542.171250px;}
.x22_c00468{left:555.700200px;}
.x1d_c00468{left:574.899150px;}
.xb_c00468{left:578.449950px;}
.xd_c00468{left:593.190600px;}
.x23_c00468{left:606.533550px;}
.x5_c00468{left:615.729900px;}
.x13_c00468{left:643.653000px;}
.xe_c00468{left:646.181700px;}
.x29_c00468{left:661.097100px;}
.xc_c00468{left:673.433700px;}
.xf_c00468{left:678.391050px;}
.x15_c00468{left:693.349350px;}
.x2a_c00468{left:703.590900px;}
.x14_c00468{left:712.628250px;}
.x16_c00468{left:723.318600px;}
.x6_c00468{left:730.374450px;}
.x10_c00468{left:750.390000px;}
.x34_c00468{left:759.914612px;}
@media print{
.v2_c00468{vertical-align:-21.760000pt;}
.v0_c00468{vertical-align:0.000000pt;}
.v1_c00468{vertical-align:26.880000pt;}
.lsd_c00468{letter-spacing:-0.159616pt;}
.lsc_c00468{letter-spacing:0.000000pt;}
.ls10_c00468{letter-spacing:0.128000pt;}
.ls0_c00468{letter-spacing:0.193067pt;}
.ls9_c00468{letter-spacing:0.209920pt;}
.ls14_c00468{letter-spacing:0.236160pt;}
.ls3_c00468{letter-spacing:0.243428pt;}
.ls7_c00468{letter-spacing:0.262400pt;}
.ls22_c00468{letter-spacing:0.283392pt;}
.ls19_c00468{letter-spacing:0.292114pt;}
.ls17_c00468{letter-spacing:0.330624pt;}
.ls1c_c00468{letter-spacing:0.377856pt;}
.ls2_c00468{letter-spacing:0.378666pt;}
.ls12_c00468{letter-spacing:0.389485pt;}
.ls1b_c00468{letter-spacing:0.425088pt;}
.ls4_c00468{letter-spacing:0.456576pt;}
.ls8_c00468{letter-spacing:0.472320pt;}
.ls6_c00468{letter-spacing:0.486856pt;}
.ls5_c00468{letter-spacing:0.508494pt;}
.ls16_c00468{letter-spacing:0.619264pt;}
.ls15_c00468{letter-spacing:0.632913pt;}
.ls1f_c00468{letter-spacing:0.708480pt;}
.ls1a_c00468{letter-spacing:1.495680pt;}
.ls20_c00468{letter-spacing:2.928384pt;}
.ls13_c00468{letter-spacing:2.975616pt;}
.lsf_c00468{letter-spacing:4.742400pt;}
.ls21_c00468{letter-spacing:4.948864pt;}
.ls1d_c00468{letter-spacing:5.127296pt;}
.lsa_c00468{letter-spacing:5.312000pt;}
.ls1_c00468{letter-spacing:5.329600pt;}
.lsb_c00468{letter-spacing:5.475484pt;}
.lse_c00468{letter-spacing:9.011200pt;}
.ls1e_c00468{letter-spacing:15.990656pt;}
.ls18_c00468{letter-spacing:17.113728pt;}
.ls11_c00468{letter-spacing:22.366976pt;}
.ws9_c00468{word-spacing:-19.538304pt;}
.ws2_c00468{word-spacing:-18.620160pt;}
.ws0_c00468{word-spacing:-17.792000pt;}
.ws5_c00468{word-spacing:-15.546945pt;}
.ws8_c00468{word-spacing:-15.525307pt;}
.ws6_c00468{word-spacing:-15.330564pt;}
.ws4_c00468{word-spacing:-15.281879pt;}
.ws7_c00468{word-spacing:-14.967296pt;}
.wsa_c00468{word-spacing:-14.872832pt;}
.ws1_c00468{word-spacing:-10.159744pt;}
.ws3_c00468{word-spacing:-9.024000pt;}
.wsb_c00468{word-spacing:0.000000pt;}
._c_c00468{margin-left:-22.035200pt;}
._d_c00468{margin-left:-21.141760pt;}
._13_c00468{margin-left:-16.741120pt;}
._14_c00468{margin-left:-15.848960pt;}
._18_c00468{margin-left:-14.845440pt;}
._17_c00468{margin-left:-5.562880pt;}
._16_c00468{margin-left:-4.513280pt;}
._11_c00468{margin-left:-3.434240pt;}
._10_c00468{margin-left:-2.512640pt;}
._f_c00468{margin-left:-1.049600pt;}
._3_c00468{width:1.088000pt;}
._a_c00468{width:2.048000pt;}
._7_c00468{width:3.136000pt;}
._2_c00468{width:4.096000pt;}
._5_c00468{width:4.992000pt;}
._1_c00468{width:6.464000pt;}
._b_c00468{width:7.424000pt;}
._8_c00468{width:9.024000pt;}
._9_c00468{width:11.968000pt;}
._12_c00468{width:16.793600pt;}
._15_c00468{width:18.315520pt;}
._6_c00468{width:19.456000pt;}
._0_c00468{width:20.736000pt;}
._e_c00468{width:22.124915pt;}
._4_c00468{width:31.680000pt;}
.fs4_c00468{font-size:32.000000pt;}
.fs2_c00468{font-size:37.120000pt;}
.fs3_c00468{font-size:49.920000pt;}
.fs5_c00468{font-size:52.480000pt;}
.fs7_c00468{font-size:53.333333pt;}
.fs6_c00468{font-size:54.095146pt;}
.fs0_c00468{font-size:64.000000pt;}
.fs1_c00468{font-size:65.969690pt;}
.y0_c00468{bottom:0.000000pt;}
.y36_c00468{bottom:2.773333pt;}
.y35_c00468{bottom:30.884071pt;}
.y1_c00468{bottom:48.000000pt;}
.y34_c00468{bottom:49.320000pt;}
.y33_c00468{bottom:54.760000pt;}
.y32_c00468{bottom:64.680000pt;}
.y31_c00468{bottom:64.681600pt;}
.y30_c00468{bottom:85.800000pt;}
.y2f_c00468{bottom:95.721600pt;}
.y2e_c00468{bottom:111.400000pt;}
.y2d_c00468{bottom:116.840000pt;}
.y2b_c00468{bottom:127.079680pt;}
.y2c_c00468{bottom:127.080000pt;}
.y2a_c00468{bottom:142.443200pt;}
.y29_c00468{bottom:158.121600pt;}
.y27_c00468{bottom:173.796480pt;}
.y28_c00468{bottom:173.800000pt;}
.y26_c00468{bottom:189.160000pt;}
.y25_c00468{bottom:189.161600pt;}
.y23_c00468{bottom:204.836480pt;}
.y24_c00468{bottom:204.840000pt;}
.y22_c00468{bottom:220.200000pt;}
.y21_c00468{bottom:220.201600pt;}
.y20_c00468{bottom:235.880000pt;}
.y1f_c00468{bottom:241.320000pt;}
.y1d_c00468{bottom:251.556480pt;}
.y1e_c00468{bottom:251.560000pt;}
.y1c_c00468{bottom:266.920000pt;}
.y1b_c00468{bottom:272.360000pt;}
.y1a_c00468{bottom:296.040000pt;}
.y19_c00468{bottom:472.360000pt;}
.y18_c00468{bottom:504.360000pt;}
.y17_c00468{bottom:536.360000pt;}
.y16_c00468{bottom:568.360000pt;}
.y15_c00468{bottom:600.360000pt;}
.y14_c00468{bottom:618.920000pt;}
.y13_c00468{bottom:637.480000pt;}
.y12_c00468{bottom:656.360000pt;}
.y11_c00468{bottom:674.920000pt;}
.y10_c00468{bottom:693.480000pt;}
.yf_c00468{bottom:713.960000pt;}
.ye_c00468{bottom:732.520000pt;}
.yd_c00468{bottom:751.080000pt;}
.yc_c00468{bottom:783.080000pt;}
.yb_c00468{bottom:801.640000pt;}
.ya_c00468{bottom:820.520000pt;}
.y9_c00468{bottom:839.080000pt;}
.y8_c00468{bottom:857.640000pt;}
.y7_c00468{bottom:876.520000pt;}
.y6_c00468{bottom:895.080000pt;}
.y5_c00468{bottom:913.640000pt;}
.y4_c00468{bottom:945.640000pt;}
.y3_c00468{bottom:964.520000pt;}
.y2_c00468{bottom:1011.880000pt;}
.hc_c00468{height:17.116093pt;}
.h8_c00468{height:28.992000pt;}
.h9_c00468{height:41.761453pt;}
.hb_c00468{height:43.276117pt;}
.h6_c00468{height:45.125000pt;}
.ha_c00468{height:47.546880pt;}
.hd_c00468{height:50.346667pt;}
.h4_c00468{height:50.928601pt;}
.h3_c00468{height:57.984000pt;}
.h7_c00468{height:60.510187pt;}
.h5_c00468{height:60.510720pt;}
.h2_c00468{height:1067.880000pt;}
.h0_c00468{height:1122.520000pt;}
.h1_c00468{height:1122.666667pt;}
.w3_c00468{width:22.240000pt;}
.w2_c00468{width:767.960000pt;}
.w0_c00468{width:793.720000pt;}
.w1_c00468{width:794.000000pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:12.880000pt;}
.x2_c00468{left:100.480133pt;}
.x11_c00468{left:116.480133pt;}
.x3_c00468{left:143.583333pt;}
.x1e_c00468{left:178.264000pt;}
.x12_c00468{left:179.598933pt;}
.x1f_c00468{left:196.036400pt;}
.x30_c00468{left:206.383467pt;}
.x4_c00468{left:210.654267pt;}
.x1b_c00468{left:222.276400pt;}
.x31_c00468{left:232.328800pt;}
.x7_c00468{left:235.275333pt;}
.x32_c00468{left:236.798533pt;}
.x2b_c00468{left:239.586933pt;}
.x17_c00468{left:242.733333pt;}
.x33_c00468{left:247.158133pt;}
.x24_c00468{left:251.446933pt;}
.x2e_c00468{left:266.146533pt;}
.x28_c00468{left:268.325867pt;}
.x2c_c00468{left:270.134133pt;}
.x25_c00468{left:304.045200pt;}
.x2f_c00468{left:305.398800pt;}
.x18_c00468{left:313.836267pt;}
.x19_c00468{left:318.284133pt;}
.x1c_c00468{left:338.912133pt;}
.x8_c00468{left:357.408533pt;}
.x1a_c00468{left:367.195600pt;}
.x9_c00468{left:384.429333pt;}
.x20_c00468{left:389.651600pt;}
.x2d_c00468{left:418.349333pt;}
.x21_c00468{left:442.250000pt;}
.x26_c00468{left:451.804933pt;}
.xa_c00468{left:455.532267pt;}
.x27_c00468{left:481.930000pt;}
.x22_c00468{left:493.955733pt;}
.x1d_c00468{left:511.021467pt;}
.xb_c00468{left:514.177733pt;}
.xd_c00468{left:527.280533pt;}
.x23_c00468{left:539.140933pt;}
.x5_c00468{left:547.315467pt;}
.x13_c00468{left:572.136000pt;}
.xe_c00468{left:574.383733pt;}
.x29_c00468{left:587.641867pt;}
.xc_c00468{left:598.607733pt;}
.xf_c00468{left:603.014267pt;}
.x15_c00468{left:616.310533pt;}
.x2a_c00468{left:625.414133pt;}
.x14_c00468{left:633.447333pt;}
.x16_c00468{left:642.949867pt;}
.x6_c00468{left:649.221733pt;}
.x10_c00468{left:667.013333pt;}
.x34_c00468{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c425397dc16b996d1ec8bfb7.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_a4d16468ff61054d8631a7bc.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;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:ff3_c00469;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00469;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00469;src:url('chunks/assets/font_a067bae0d93ae90748e8fd54.woff2')format("woff");}.ff5_c00469{font-family:ff5_c00469;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00469;src:url('chunks/assets/font_775544c57d920027b4e7f93b.woff2')format("woff");}.ff6_c00469{font-family:ff6_c00469;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00469{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00469{vertical-align:-24.480000px;}
.v0_c00469{vertical-align:0.000000px;}
.v1_c00469{vertical-align:30.240000px;}
.lsd_c00469{letter-spacing:0.000000px;}
.ls8_c00469{letter-spacing:0.052200px;}
.ls9_c00469{letter-spacing:0.080040px;}
.ls5_c00469{letter-spacing:0.245040px;}
.lsf_c00469{letter-spacing:0.265680px;}
.ls11_c00469{letter-spacing:0.438171px;}
.lsb_c00469{letter-spacing:0.531360px;}
.lsa_c00469{letter-spacing:0.560880px;}
.ls13_c00469{letter-spacing:0.602485px;}
.ls7_c00469{letter-spacing:0.665640px;}
.ls2_c00469{letter-spacing:0.704040px;}
.ls10_c00469{letter-spacing:0.712027px;}
.ls12_c00469{letter-spacing:1.788912px;}
.lse_c00469{letter-spacing:5.430672px;}
.ls6_c00469{letter-spacing:5.444400px;}
.ls1_c00469{letter-spacing:5.957400px;}
.ls0_c00469{letter-spacing:5.976000px;}
.ls3_c00469{letter-spacing:5.979600px;}
.lsc_c00469{letter-spacing:6.159920px;}
.ls4_c00469{letter-spacing:54.864000px;}
.sc__c00469{text-shadow:none;}
.sc1_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00469{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc1_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00469{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00469{word-spacing:-21.043152px;}
.ws2_c00469{word-spacing:-17.630284px;}
.ws1_c00469{word-spacing:-10.008000px;}
.ws3_c00469{word-spacing:0.000000px;}
._8_c00469{margin-left:-2.311200px;}
._5_c00469{margin-left:-1.179360px;}
._3_c00469{width:2.016000px;}
._6_c00469{width:3.744000px;}
._4_c00469{width:8.712000px;}
._7_c00469{width:9.864000px;}
._0_c00469{width:12.384000px;}
._1_c00469{width:35.352000px;}
._2_c00469{width:36.440008px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs4_c00469{font-size:36.000000px;}
.fs3_c00469{font-size:41.760000px;}
.fs2_c00469{font-size:56.160000px;}
.fs5_c00469{font-size:59.040000px;}
.fs7_c00469{font-size:60.000000px;}
.fs6_c00469{font-size:60.857039px;}
.fs0_c00469{font-size:72.000000px;}
.fs1_c00469{font-size:74.215901px;}
.y0_c00469{bottom:0.000000px;}
.y2b_c00469{bottom:3.120000px;}
.y2a_c00469{bottom:34.744580px;}
.y1_c00469{bottom:54.000000px;}
.y29_c00469{bottom:55.482840px;}
.y28_c00469{bottom:72.766800px;}
.y27_c00469{bottom:90.405000px;}
.y26_c00469{bottom:96.525000px;}
.y25_c00469{bottom:107.685000px;}
.y24_c00469{bottom:113.805000px;}
.y23_c00469{bottom:125.325000px;}
.y22_c00469{bottom:131.445000px;}
.y21_c00469{bottom:149.085000px;}
.y20_c00469{bottom:175.725000px;}
.y1f_c00469{bottom:222.525000px;}
.y1e_c00469{bottom:243.405000px;}
.y1d_c00469{bottom:264.285000px;}
.y1c_c00469{bottom:300.285000px;}
.y1b_c00469{bottom:336.285000px;}
.y1a_c00469{bottom:372.285000px;}
.y19_c00469{bottom:393.525000px;}
.y18_c00469{bottom:414.405000px;}
.y17_c00469{bottom:435.285000px;}
.y16_c00469{bottom:471.285000px;}
.y15_c00469{bottom:507.285000px;}
.y14_c00469{bottom:543.285000px;}
.y13_c00469{bottom:564.525000px;}
.y12_c00469{bottom:600.525000px;}
.y11_c00469{bottom:636.525000px;}
.y10_c00469{bottom:672.525000px;}
.yf_c00469{bottom:693.405000px;}
.ye_c00469{bottom:729.405000px;}
.yd_c00469{bottom:765.405000px;}
.yc_c00469{bottom:786.285000px;}
.yb_c00469{bottom:807.525000px;}
.ya_c00469{bottom:843.525000px;}
.y9_c00469{bottom:879.525000px;}
.y8_c00469{bottom:915.525000px;}
.y7_c00469{bottom:951.525000px;}
.y6_c00469{bottom:972.405000px;}
.y5_c00469{bottom:1008.405000px;}
.y4_c00469{bottom:1044.405000px;}
.y3_c00469{bottom:1082.925000px;}
.y2_c00469{bottom:1138.365000px;}
.h9_c00469{height:19.255605px;}
.h6_c00469{height:32.616000px;}
.h7_c00469{height:46.981634px;}
.h8_c00469{height:53.490240px;}
.ha_c00469{height:56.640000px;}
.h4_c00469{height:57.294676px;}
.h3_c00469{height:65.232000px;}
.h5_c00469{height:68.074560px;}
.h2_c00469{height:1201.365000px;}
.h0_c00469{height:1262.835000px;}
.h1_c00469{height:1263.000000px;}
.w3_c00469{width:25.020000px;}
.w2_c00469{width:863.955000px;}
.w0_c00469{width:892.935000px;}
.w1_c00469{width:893.250000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:14.490000px;}
.x2_c00469{left:113.040150px;}
.x18_c00469{left:122.213700px;}
.xc_c00469{left:140.037600px;}
.x3_c00469{left:161.531250px;}
.xd_c00469{left:167.037600px;}
.xa_c00469{left:174.077250px;}
.x4_c00469{left:236.986050px;}
.xb_c00469{left:282.093750px;}
.xe_c00469{left:337.046250px;}
.x12_c00469{left:352.810200px;}
.x13_c00469{left:361.810200px;}
.x19_c00469{left:371.429850px;}
.x6_c00469{left:385.283550px;}
.x1a_c00469{left:391.423800px;}
.x5_c00469{left:413.967000px;}
.xf_c00469{left:442.074150px;}
.x1b_c00469{left:483.112050px;}
.x1c_c00469{left:487.281750px;}
.x7_c00469{left:508.152450px;}
.x14_c00469{left:576.834900px;}
.x8_c00469{left:618.020850px;}
.x15_c00469{left:620.844300px;}
.x9_c00469{left:647.990100px;}
.x16_c00469{left:658.859550px;}
.x10_c00469{left:674.881650px;}
.x1d_c00469{left:709.195650px;}
.x11_c00469{left:728.916900px;}
.x17_c00469{left:730.822950px;}
.x1e_c00469{left:759.914612px;}
@media print{
.v2_c00469{vertical-align:-21.760000pt;}
.v0_c00469{vertical-align:0.000000pt;}
.v1_c00469{vertical-align:26.880000pt;}
.lsd_c00469{letter-spacing:0.000000pt;}
.ls8_c00469{letter-spacing:0.046400pt;}
.ls9_c00469{letter-spacing:0.071147pt;}
.ls5_c00469{letter-spacing:0.217813pt;}
.lsf_c00469{letter-spacing:0.236160pt;}
.ls11_c00469{letter-spacing:0.389485pt;}
.lsb_c00469{letter-spacing:0.472320pt;}
.lsa_c00469{letter-spacing:0.498560pt;}
.ls13_c00469{letter-spacing:0.535542pt;}
.ls7_c00469{letter-spacing:0.591680pt;}
.ls2_c00469{letter-spacing:0.625813pt;}
.ls10_c00469{letter-spacing:0.632913pt;}
.ls12_c00469{letter-spacing:1.590144pt;}
.lse_c00469{letter-spacing:4.827264pt;}
.ls6_c00469{letter-spacing:4.839467pt;}
.ls1_c00469{letter-spacing:5.295467pt;}
.ls0_c00469{letter-spacing:5.312000pt;}
.ls3_c00469{letter-spacing:5.315200pt;}
.lsc_c00469{letter-spacing:5.475484pt;}
.ls4_c00469{letter-spacing:48.768000pt;}
.ws0_c00469{word-spacing:-18.705024pt;}
.ws2_c00469{word-spacing:-15.671364pt;}
.ws1_c00469{word-spacing:-8.896000pt;}
.ws3_c00469{word-spacing:0.000000pt;}
._8_c00469{margin-left:-2.054400pt;}
._5_c00469{margin-left:-1.048320pt;}
._3_c00469{width:1.792000pt;}
._6_c00469{width:3.328000pt;}
._4_c00469{width:7.744000pt;}
._7_c00469{width:8.768000pt;}
._0_c00469{width:11.008000pt;}
._1_c00469{width:31.424000pt;}
._2_c00469{width:32.391118pt;}
.fs4_c00469{font-size:32.000000pt;}
.fs3_c00469{font-size:37.120000pt;}
.fs2_c00469{font-size:49.920000pt;}
.fs5_c00469{font-size:52.480000pt;}
.fs7_c00469{font-size:53.333333pt;}
.fs6_c00469{font-size:54.095146pt;}
.fs0_c00469{font-size:64.000000pt;}
.fs1_c00469{font-size:65.969690pt;}
.y0_c00469{bottom:0.000000pt;}
.y2b_c00469{bottom:2.773333pt;}
.y2a_c00469{bottom:30.884071pt;}
.y1_c00469{bottom:48.000000pt;}
.y29_c00469{bottom:49.318080pt;}
.y28_c00469{bottom:64.681600pt;}
.y27_c00469{bottom:80.360000pt;}
.y26_c00469{bottom:85.800000pt;}
.y25_c00469{bottom:95.720000pt;}
.y24_c00469{bottom:101.160000pt;}
.y23_c00469{bottom:111.400000pt;}
.y22_c00469{bottom:116.840000pt;}
.y21_c00469{bottom:132.520000pt;}
.y20_c00469{bottom:156.200000pt;}
.y1f_c00469{bottom:197.800000pt;}
.y1e_c00469{bottom:216.360000pt;}
.y1d_c00469{bottom:234.920000pt;}
.y1c_c00469{bottom:266.920000pt;}
.y1b_c00469{bottom:298.920000pt;}
.y1a_c00469{bottom:330.920000pt;}
.y19_c00469{bottom:349.800000pt;}
.y18_c00469{bottom:368.360000pt;}
.y17_c00469{bottom:386.920000pt;}
.y16_c00469{bottom:418.920000pt;}
.y15_c00469{bottom:450.920000pt;}
.y14_c00469{bottom:482.920000pt;}
.y13_c00469{bottom:501.800000pt;}
.y12_c00469{bottom:533.800000pt;}
.y11_c00469{bottom:565.800000pt;}
.y10_c00469{bottom:597.800000pt;}
.yf_c00469{bottom:616.360000pt;}
.ye_c00469{bottom:648.360000pt;}
.yd_c00469{bottom:680.360000pt;}
.yc_c00469{bottom:698.920000pt;}
.yb_c00469{bottom:717.800000pt;}
.ya_c00469{bottom:749.800000pt;}
.y9_c00469{bottom:781.800000pt;}
.y8_c00469{bottom:813.800000pt;}
.y7_c00469{bottom:845.800000pt;}
.y6_c00469{bottom:864.360000pt;}
.y5_c00469{bottom:896.360000pt;}
.y4_c00469{bottom:928.360000pt;}
.y3_c00469{bottom:962.600000pt;}
.y2_c00469{bottom:1011.880000pt;}
.h9_c00469{height:17.116093pt;}
.h6_c00469{height:28.992000pt;}
.h7_c00469{height:41.761453pt;}
.h8_c00469{height:47.546880pt;}
.ha_c00469{height:50.346667pt;}
.h4_c00469{height:50.928601pt;}
.h3_c00469{height:57.984000pt;}
.h5_c00469{height:60.510720pt;}
.h2_c00469{height:1067.880000pt;}
.h0_c00469{height:1122.520000pt;}
.h1_c00469{height:1122.666667pt;}
.w3_c00469{width:22.240000pt;}
.w2_c00469{width:767.960000pt;}
.w0_c00469{width:793.720000pt;}
.w1_c00469{width:794.000000pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:12.880000pt;}
.x2_c00469{left:100.480133pt;}
.x18_c00469{left:108.634400pt;}
.xc_c00469{left:124.477867pt;}
.x3_c00469{left:143.583333pt;}
.xd_c00469{left:148.477867pt;}
.xa_c00469{left:154.735333pt;}
.x4_c00469{left:210.654267pt;}
.xb_c00469{left:250.750000pt;}
.xe_c00469{left:299.596667pt;}
.x12_c00469{left:313.609067pt;}
.x13_c00469{left:321.609067pt;}
.x19_c00469{left:330.159867pt;}
.x6_c00469{left:342.474267pt;}
.x1a_c00469{left:347.932267pt;}
.x5_c00469{left:367.970667pt;}
.xf_c00469{left:392.954800pt;}
.x1b_c00469{left:429.432933pt;}
.x1c_c00469{left:433.139333pt;}
.x7_c00469{left:451.691067pt;}
.x14_c00469{left:512.742133pt;}
.x8_c00469{left:549.351867pt;}
.x15_c00469{left:551.861600pt;}
.x9_c00469{left:575.991200pt;}
.x16_c00469{left:585.652933pt;}
.x10_c00469{left:599.894800pt;}
.x1d_c00469{left:630.396133pt;}
.x11_c00469{left:647.926133pt;}
.x17_c00469{left:649.620400pt;}
.x1e_c00469{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f17434cce2824e50d6d5ff5.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_76d1d76b7c045f1a00eddd85.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;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:ff3_c00470;src:url('chunks/assets/font_0a320fa1f07bd05c50078f53.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00470;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_a067bae0d93ae90748e8fd54.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00470;src:url('chunks/assets/font_30a2c29df2923a5a03b8ada9.woff2')format("woff");}.ff6_c00470{font-family:ff6_c00470;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00470;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff7_c00470{font-family:ff7_c00470;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00470;src:url('chunks/assets/font_23a21a7a9035a6411c3344a0.woff2')format("woff");}.ff8_c00470{font-family:ff8_c00470;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00470;src:url('chunks/assets/font_7a1de03b9ab9d4a2941e80ad.woff2')format("woff");}.ff9_c00470{font-family:ff9_c00470;line-height:0.666504;font-style:normal;font-weight: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_c00470;src:url('chunks/assets/font_4de7db51e944c5efa3593eab.woff2')format("woff");}.ffa_c00470{font-family:ffa_c00470;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00470{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00470{vertical-align:-30.240600px;}
.v3_c00470{vertical-align:-24.480000px;}
.v0_c00470{vertical-align:0.000000px;}
.v2_c00470{vertical-align:24.480000px;}
.v4_c00470{vertical-align:30.240000px;}
.ls3c_c00470{letter-spacing:-0.179568px;}
.ls23_c00470{letter-spacing:0.000000px;}
.ls24_c00470{letter-spacing:0.036000px;}
.ls1f_c00470{letter-spacing:0.054240px;}
.ls3f_c00470{letter-spacing:0.144000px;}
.ls19_c00470{letter-spacing:0.236160px;}
.lsd_c00470{letter-spacing:0.242064px;}
.ls15_c00470{letter-spacing:0.243428px;}
.ls27_c00470{letter-spacing:0.265680px;}
.ls20_c00470{letter-spacing:0.266400px;}
.ls30_c00470{letter-spacing:0.273857px;}
.ls6_c00470{letter-spacing:0.295200px;}
.ls38_c00470{letter-spacing:0.318816px;}
.ls7_c00470{letter-spacing:0.324720px;}
.ls16_c00470{letter-spacing:0.328628px;}
.ls1b_c00470{letter-spacing:0.348336px;}
.ls35_c00470{letter-spacing:0.371952px;}
.ls14_c00470{letter-spacing:0.425999px;}
.ls32_c00470{letter-spacing:0.438171px;}
.ls18_c00470{letter-spacing:0.444256px;}
.ls39_c00470{letter-spacing:0.478224px;}
.ls1a_c00470{letter-spacing:0.513648px;}
.ls21_c00470{letter-spacing:0.525456px;}
.ls11_c00470{letter-spacing:0.531360px;}
.ls10_c00470{letter-spacing:0.547713px;}
.ls1c_c00470{letter-spacing:0.560880px;}
.ls25_c00470{letter-spacing:0.584496px;}
.ls2d_c00470{letter-spacing:0.602485px;}
.ls13_c00470{letter-spacing:0.608570px;}
.ls17_c00470{letter-spacing:0.657256px;}
.ls1e_c00470{letter-spacing:0.680040px;}
.ls2c_c00470{letter-spacing:0.690768px;}
.lsa_c00470{letter-spacing:0.712027px;}
.ls2e_c00470{letter-spacing:0.743904px;}
.ls3b_c00470{letter-spacing:0.770400px;}
.ls33_c00470{letter-spacing:0.797040px;}
.ls1_c00470{letter-spacing:0.824040px;}
.ls34_c00470{letter-spacing:0.962352px;}
.ls8_c00470{letter-spacing:2.007360px;}
.ls9_c00470{letter-spacing:2.013264px;}
.ls37_c00470{letter-spacing:3.790368px;}
.ls31_c00470{letter-spacing:4.079664px;}
.ls26_c00470{letter-spacing:5.248656px;}
.ls5_c00470{letter-spacing:5.254560px;}
.ls3e_c00470{letter-spacing:5.307696px;}
.lse_c00470{letter-spacing:5.313600px;}
.ls29_c00470{letter-spacing:5.354928px;}
.ls2a_c00470{letter-spacing:5.402160px;}
.ls3_c00470{letter-spacing:5.408064px;}
.ls3a_c00470{letter-spacing:5.430672px;}
.ls4_c00470{letter-spacing:5.431680px;}
.ls2_c00470{letter-spacing:5.490720px;}
.ls28_c00470{letter-spacing:5.514336px;}
.ls1d_c00470{letter-spacing:5.975400px;}
.ls0_c00470{letter-spacing:5.976000px;}
.ls22_c00470{letter-spacing:6.159920px;}
.ls36_c00470{letter-spacing:6.181488px;}
.ls12_c00470{letter-spacing:6.511703px;}
.ls2f_c00470{letter-spacing:6.517789px;}
.ls3d_c00470{letter-spacing:12.870720px;}
.lsf_c00470{letter-spacing:13.631977px;}
.lsc_c00470{letter-spacing:15.651504px;}
.lsb_c00470{letter-spacing:15.663312px;}
.ls2b_c00470{letter-spacing:20.640384px;}
.sc__c00470{text-shadow:none;}
.sc1_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00470{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc1_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00470{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00470{word-spacing:-21.927456px;}
.ws2_c00470{word-spacing:-21.768048px;}
.ws0_c00470{word-spacing:-21.661776px;}
.wsd_c00470{word-spacing:-21.043152px;}
.ws3_c00470{word-spacing:-17.630284px;}
.ws9_c00470{word-spacing:-17.575513px;}
.ws4_c00470{word-spacing:-17.520742px;}
.ws7_c00470{word-spacing:-17.465970px;}
.wsa_c00470{word-spacing:-17.362513px;}
.wsb_c00470{word-spacing:-17.356428px;}
.ws8_c00470{word-spacing:-17.246885px;}
.ws6_c00470{word-spacing:-16.944480px;}
.ws10_c00470{word-spacing:-16.731936px;}
.wse_c00470{word-spacing:-11.609280px;}
.wsf_c00470{word-spacing:-11.429712px;}
.ws11_c00470{word-spacing:-10.152000px;}
.wsc_c00470{word-spacing:-10.008000px;}
.ws5_c00470{word-spacing:-0.608570px;}
.ws12_c00470{word-spacing:0.000000px;}
._4_c00470{margin-left:-16.324560px;}
._5_c00470{margin-left:-15.232320px;}
._8_c00470{margin-left:-13.084263px;}
._15_c00470{margin-left:-11.712537px;}
._c_c00470{margin-left:-6.998559px;}
._a_c00470{margin-left:-5.903133px;}
._f_c00470{margin-left:-4.605120px;}
._e_c00470{margin-left:-3.483360px;}
._10_c00470{margin-left:-2.302560px;}
._6_c00470{margin-left:-1.003680px;}
._0_c00470{width:1.121760px;}
._1_c00470{width:2.379312px;}
._d_c00470{width:3.837600px;}
._9_c00470{width:5.254560px;}
._b_c00470{width:6.730560px;}
._13_c00470{width:7.911360px;}
._11_c00470{width:9.387360px;}
._12_c00470{width:10.745280px;}
._7_c00470{width:12.339360px;}
._3_c00470{width:14.376240px;}
._2_c00470{width:15.409440px;}
._14_c00470{width:19.008000px;}
.fc0_c00470{color:rgb(0,0,0);}
.fs5_c00470{font-size:36.000000px;}
.fs2_c00470{font-size:41.760000px;}
.fs6_c00470{font-size:56.160000px;}
.fs3_c00470{font-size:59.040000px;}
.fs7_c00470{font-size:60.000000px;}
.fs4_c00470{font-size:60.857039px;}
.fs0_c00470{font-size:72.000000px;}
.fs1_c00470{font-size:74.215901px;}
.y0_c00470{bottom:0.000000px;}
.y40_c00470{bottom:3.120000px;}
.y3f_c00470{bottom:34.744580px;}
.y1_c00470{bottom:54.000000px;}
.y3e_c00470{bottom:61.605000px;}
.y3d_c00470{bottom:78.885000px;}
.y3c_c00470{bottom:90.405000px;}
.y3b_c00470{bottom:96.525000px;}
.y3a_c00470{bottom:107.685000px;}
.y39_c00470{bottom:113.805000px;}
.y38_c00470{bottom:125.326800px;}
.y36_c00470{bottom:142.961040px;}
.y37_c00470{bottom:142.965000px;}
.y35_c00470{bottom:160.245000px;}
.y34_c00470{bottom:166.365000px;}
.y33_c00470{bottom:184.005000px;}
.y32_c00470{bottom:210.645000px;}
.y31_c00470{bottom:259.245000px;}
.y30_c00470{bottom:280.125000px;}
.y2f_c00470{bottom:301.005000px;}
.y2e_c00470{bottom:322.245000px;}
.y2d_c00470{bottom:343.125000px;}
.y2c_c00470{bottom:379.125000px;}
.y2b_c00470{bottom:400.365000px;}
.y2a_c00470{bottom:421.245000px;}
.y29_c00470{bottom:442.125000px;}
.y28_c00470{bottom:463.365000px;}
.y27_c00470{bottom:499.365000px;}
.y25_c00470{bottom:520.245000px;}
.y26_c00470{bottom:527.805000px;}
.y24_c00470{bottom:556.245000px;}
.y23_c00470{bottom:592.245000px;}
.y22_c00470{bottom:620.328240px;}
.y21_c00470{bottom:637.966440px;}
.y20_c00470{bottom:655.604640px;}
.y1f_c00470{bottom:672.888600px;}
.y1e_c00470{bottom:690.526800px;}
.y1d_c00470{bottom:708.165000px;}
.y1c_c00470{bottom:733.005000px;}
.y1a_c00470{bottom:750.641040px;}
.y1b_c00470{bottom:750.645000px;}
.y19_c00470{bottom:767.925000px;}
.y18_c00470{bottom:767.926800px;}
.y16_c00470{bottom:785.563920px;}
.y17_c00470{bottom:785.565000px;}
.y15_c00470{bottom:810.405000px;}
.y14_c00470{bottom:835.605000px;}
.y13_c00470{bottom:835.611840px;}
.y11_c00470{bottom:855.402840px;}
.y12_c00470{bottom:855.405000px;}
.yf_c00470{bottom:875.562840px;}
.y10_c00470{bottom:875.565000px;}
.yd_c00470{bottom:895.719960px;}
.ye_c00470{bottom:895.725000px;}
.yc_c00470{bottom:923.085000px;}
.yb_c00470{bottom:923.086800px;}
.y9_c00470{bottom:940.722840px;}
.ya_c00470{bottom:940.725000px;}
.y8_c00470{bottom:960.885000px;}
.y7_c00470{bottom:986.084850px;}
.y5_c00470{bottom:1017.764850px;}
.y6_c00470{bottom:1025.325000px;}
.y4_c00470{bottom:1049.445000px;}
.y3_c00470{bottom:1085.085000px;}
.y2_c00470{bottom:1138.365000px;}
.he_c00470{height:19.255605px;}
.hd_c00470{height:32.616000px;}
.h6_c00470{height:37.834560px;}
.h9_c00470{height:39.350391px;}
.ha_c00470{height:45.578880px;}
.h8_c00470{height:46.981634px;}
.h5_c00470{height:47.988281px;}
.h7_c00470{height:53.490240px;}
.hf_c00470{height:56.640000px;}
.hb_c00470{height:57.096000px;}
.h4_c00470{height:57.294676px;}
.h3_c00470{height:65.232000px;}
.hc_c00470{height:68.074560px;}
.h2_c00470{height:1201.365000px;}
.h0_c00470{height:1262.835000px;}
.h1_c00470{height:1263.000000px;}
.w3_c00470{width:25.020000px;}
.w2_c00470{width:863.955000px;}
.w0_c00470{width:892.935000px;}
.w1_c00470{width:893.250000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:14.490000px;}
.x2_c00470{left:113.040150px;}
.x66_c00470{left:122.213700px;}
.x50_c00470{left:133.034550px;}
.x67_c00470{left:146.377800px;}
.x36_c00470{left:148.874250px;}
.x4f_c00470{left:152.204550px;}
.x17_c00470{left:153.703050px;}
.x37_c00470{left:158.166900px;}
.x5d_c00470{left:159.340950px;}
.x3_c00470{left:161.531250px;}
.x18_c00470{left:170.277450px;}
.x19_c00470{left:174.027450px;}
.x13_c00470{left:181.026450px;}
.x38_c00470{left:183.141300px;}
.x39_c00470{left:192.433950px;}
.x51_c00470{left:194.619900px;}
.x14_c00470{left:201.815850px;}
.x56_c00470{left:203.289600px;}
.x3a_c00470{left:228.268050px;}
.x27_c00470{left:230.273850px;}
.x1a_c00470{left:233.874300px;}
.x4_c00470{left:236.986050px;}
.x46_c00470{left:243.071100px;}
.x57_c00470{left:252.284550px;}
.x5e_c00470{left:253.930950px;}
.x1b_c00470{left:261.607500px;}
.x1c_c00470{left:272.347050px;}
.x28_c00470{left:274.281000px;}
.x29_c00470{left:278.031000px;}
.x47_c00470{left:280.898100px;}
.x5_c00470{left:283.138050px;}
.x3b_c00470{left:296.007150px;}
.x48_c00470{left:306.516750px;}
.x1d_c00470{left:308.181150px;}
.x2a_c00470{left:319.548750px;}
.x3c_c00470{left:324.326700px;}
.x3d_c00470{left:333.619200px;}
.x6_c00470{left:351.142500px;}
.x7_c00470{left:355.642500px;}
.x5f_c00470{left:364.389000px;}
.x58_c00470{left:365.418900px;}
.x65_c00470{left:378.930150px;}
.x3e_c00470{left:384.437700px;}
.x60_c00470{left:394.793700px;}
.x2b_c00470{left:417.446700px;}
.x8_c00470{left:419.685450px;}
.x9_c00470{left:428.685450px;}
.x59_c00470{left:445.409550px;}
.x2c_c00470{left:453.280800px;}
.x5a_c00470{left:470.662050px;}
.x3f_c00470{left:473.962950px;}
.xa_c00470{left:484.681950px;}
.xb_c00470{left:489.181950px;}
.x2d_c00470{left:495.652950px;}
.x61_c00470{left:501.516750px;}
.x40_c00470{left:518.106750px;}
.x2e_c00470{left:520.354200px;}
.x2f_c00470{left:524.104200px;}
.x41_c00470{left:527.398950px;}
.x4e_c00470{left:539.584650px;}
.x42_c00470{left:546.553650px;}
.x49_c00470{left:548.975850px;}
.x43_c00470{left:555.845850px;}
.x52_c00470{left:560.793450px;}
.x5b_c00470{left:563.278950px;}
.x54_c00470{left:564.438300px;}
.x62_c00470{left:567.364350px;}
.xc_c00470{left:569.190300px;}
.x1e_c00470{left:571.915350px;}
.x63_c00470{left:576.964200px;}
.xd_c00470{left:578.190300px;}
.x30_c00470{left:580.498950px;}
.x31_c00470{left:584.248800px;}
.x1f_c00470{left:588.489300px;}
.x20_c00470{left:592.239150px;}
.x4a_c00470{left:597.801300px;}
.x32_c00470{left:604.780050px;}
.x33_c00470{left:613.793700px;}
.x4b_c00470{left:622.775700px;}
.x55_c00470{left:628.463400px;}
.x5c_c00470{left:630.894000px;}
.x44_c00470{left:633.484050px;}
.xe_c00470{left:639.000000px;}
.xf_c00470{left:641.373000px;}
.x21_c00470{left:652.085850px;}
.x15_c00470{left:654.096000px;}
.x22_c00470{left:655.835850px;}
.x10_c00470{left:662.162550px;}
.x11_c00470{left:666.332100px;}
.x12_c00470{left:670.940850px;}
.x23_c00470{left:679.818900px;}
.x16_c00470{left:683.240100px;}
.x4c_c00470{left:687.233250px;}
.x45_c00470{left:695.401950px;}
.x24_c00470{left:702.556950px;}
.x25_c00470{left:706.306950px;}
.x64_c00470{left:707.431650px;}
.x4d_c00470{left:715.552800px;}
.x53_c00470{left:718.619400px;}
.x34_c00470{left:721.939050px;}
.x26_c00470{left:746.220300px;}
.x35_c00470{left:750.390000px;}
.x68_c00470{left:759.914612px;}
@media print{
.v1_c00470{vertical-align:-26.880533pt;}
.v3_c00470{vertical-align:-21.760000pt;}
.v0_c00470{vertical-align:0.000000pt;}
.v2_c00470{vertical-align:21.760000pt;}
.v4_c00470{vertical-align:26.880000pt;}
.ls3c_c00470{letter-spacing:-0.159616pt;}
.ls23_c00470{letter-spacing:0.000000pt;}
.ls24_c00470{letter-spacing:0.032000pt;}
.ls1f_c00470{letter-spacing:0.048213pt;}
.ls3f_c00470{letter-spacing:0.128000pt;}
.ls19_c00470{letter-spacing:0.209920pt;}
.lsd_c00470{letter-spacing:0.215168pt;}
.ls15_c00470{letter-spacing:0.216381pt;}
.ls27_c00470{letter-spacing:0.236160pt;}
.ls20_c00470{letter-spacing:0.236800pt;}
.ls30_c00470{letter-spacing:0.243428pt;}
.ls6_c00470{letter-spacing:0.262400pt;}
.ls38_c00470{letter-spacing:0.283392pt;}
.ls7_c00470{letter-spacing:0.288640pt;}
.ls16_c00470{letter-spacing:0.292114pt;}
.ls1b_c00470{letter-spacing:0.309632pt;}
.ls35_c00470{letter-spacing:0.330624pt;}
.ls14_c00470{letter-spacing:0.378666pt;}
.ls32_c00470{letter-spacing:0.389485pt;}
.ls18_c00470{letter-spacing:0.394895pt;}
.ls39_c00470{letter-spacing:0.425088pt;}
.ls1a_c00470{letter-spacing:0.456576pt;}
.ls21_c00470{letter-spacing:0.467072pt;}
.ls11_c00470{letter-spacing:0.472320pt;}
.ls10_c00470{letter-spacing:0.486856pt;}
.ls1c_c00470{letter-spacing:0.498560pt;}
.ls25_c00470{letter-spacing:0.519552pt;}
.ls2d_c00470{letter-spacing:0.535542pt;}
.ls13_c00470{letter-spacing:0.540951pt;}
.ls17_c00470{letter-spacing:0.584228pt;}
.ls1e_c00470{letter-spacing:0.604480pt;}
.ls2c_c00470{letter-spacing:0.614016pt;}
.lsa_c00470{letter-spacing:0.632913pt;}
.ls2e_c00470{letter-spacing:0.661248pt;}
.ls3b_c00470{letter-spacing:0.684800pt;}
.ls33_c00470{letter-spacing:0.708480pt;}
.ls1_c00470{letter-spacing:0.732480pt;}
.ls34_c00470{letter-spacing:0.855424pt;}
.ls8_c00470{letter-spacing:1.784320pt;}
.ls9_c00470{letter-spacing:1.789568pt;}
.ls37_c00470{letter-spacing:3.369216pt;}
.ls31_c00470{letter-spacing:3.626368pt;}
.ls26_c00470{letter-spacing:4.665472pt;}
.ls5_c00470{letter-spacing:4.670720pt;}
.ls3e_c00470{letter-spacing:4.717952pt;}
.lse_c00470{letter-spacing:4.723200pt;}
.ls29_c00470{letter-spacing:4.759936pt;}
.ls2a_c00470{letter-spacing:4.801920pt;}
.ls3_c00470{letter-spacing:4.807168pt;}
.ls3a_c00470{letter-spacing:4.827264pt;}
.ls4_c00470{letter-spacing:4.828160pt;}
.ls2_c00470{letter-spacing:4.880640pt;}
.ls28_c00470{letter-spacing:4.901632pt;}
.ls1d_c00470{letter-spacing:5.311467pt;}
.ls0_c00470{letter-spacing:5.312000pt;}
.ls22_c00470{letter-spacing:5.475484pt;}
.ls36_c00470{letter-spacing:5.494656pt;}
.ls12_c00470{letter-spacing:5.788181pt;}
.ls2f_c00470{letter-spacing:5.793590pt;}
.ls3d_c00470{letter-spacing:11.440640pt;}
.lsf_c00470{letter-spacing:12.117313pt;}
.lsc_c00470{letter-spacing:13.912448pt;}
.lsb_c00470{letter-spacing:13.922944pt;}
.ls2b_c00470{letter-spacing:18.347008pt;}
.ws1_c00470{word-spacing:-19.491072pt;}
.ws2_c00470{word-spacing:-19.349376pt;}
.ws0_c00470{word-spacing:-19.254912pt;}
.wsd_c00470{word-spacing:-18.705024pt;}
.ws3_c00470{word-spacing:-15.671364pt;}
.ws9_c00470{word-spacing:-15.622678pt;}
.ws4_c00470{word-spacing:-15.573992pt;}
.ws7_c00470{word-spacing:-15.525307pt;}
.wsa_c00470{word-spacing:-15.433345pt;}
.wsb_c00470{word-spacing:-15.427936pt;}
.ws8_c00470{word-spacing:-15.330564pt;}
.ws6_c00470{word-spacing:-15.061760pt;}
.ws10_c00470{word-spacing:-14.872832pt;}
.wse_c00470{word-spacing:-10.319360pt;}
.wsf_c00470{word-spacing:-10.159744pt;}
.ws11_c00470{word-spacing:-9.024000pt;}
.wsc_c00470{word-spacing:-8.896000pt;}
.ws5_c00470{word-spacing:-0.540951pt;}
.ws12_c00470{word-spacing:0.000000pt;}
._4_c00470{margin-left:-14.510720pt;}
._5_c00470{margin-left:-13.539840pt;}
._8_c00470{margin-left:-11.630456pt;}
._15_c00470{margin-left:-10.411144pt;}
._c_c00470{margin-left:-6.220942pt;}
._a_c00470{margin-left:-5.247229pt;}
._f_c00470{margin-left:-4.093440pt;}
._e_c00470{margin-left:-3.096320pt;}
._10_c00470{margin-left:-2.046720pt;}
._6_c00470{margin-left:-0.892160pt;}
._0_c00470{width:0.997120pt;}
._1_c00470{width:2.114944pt;}
._d_c00470{width:3.411200pt;}
._9_c00470{width:4.670720pt;}
._b_c00470{width:5.982720pt;}
._13_c00470{width:7.032320pt;}
._11_c00470{width:8.344320pt;}
._12_c00470{width:9.551360pt;}
._7_c00470{width:10.968320pt;}
._3_c00470{width:12.778880pt;}
._2_c00470{width:13.697280pt;}
._14_c00470{width:16.896000pt;}
.fs5_c00470{font-size:32.000000pt;}
.fs2_c00470{font-size:37.120000pt;}
.fs6_c00470{font-size:49.920000pt;}
.fs3_c00470{font-size:52.480000pt;}
.fs7_c00470{font-size:53.333333pt;}
.fs4_c00470{font-size:54.095146pt;}
.fs0_c00470{font-size:64.000000pt;}
.fs1_c00470{font-size:65.969690pt;}
.y0_c00470{bottom:0.000000pt;}
.y40_c00470{bottom:2.773333pt;}
.y3f_c00470{bottom:30.884071pt;}
.y1_c00470{bottom:48.000000pt;}
.y3e_c00470{bottom:54.760000pt;}
.y3d_c00470{bottom:70.120000pt;}
.y3c_c00470{bottom:80.360000pt;}
.y3b_c00470{bottom:85.800000pt;}
.y3a_c00470{bottom:95.720000pt;}
.y39_c00470{bottom:101.160000pt;}
.y38_c00470{bottom:111.401600pt;}
.y36_c00470{bottom:127.076480pt;}
.y37_c00470{bottom:127.080000pt;}
.y35_c00470{bottom:142.440000pt;}
.y34_c00470{bottom:147.880000pt;}
.y33_c00470{bottom:163.560000pt;}
.y32_c00470{bottom:187.240000pt;}
.y31_c00470{bottom:230.440000pt;}
.y30_c00470{bottom:249.000000pt;}
.y2f_c00470{bottom:267.560000pt;}
.y2e_c00470{bottom:286.440000pt;}
.y2d_c00470{bottom:305.000000pt;}
.y2c_c00470{bottom:337.000000pt;}
.y2b_c00470{bottom:355.880000pt;}
.y2a_c00470{bottom:374.440000pt;}
.y29_c00470{bottom:393.000000pt;}
.y28_c00470{bottom:411.880000pt;}
.y27_c00470{bottom:443.880000pt;}
.y25_c00470{bottom:462.440000pt;}
.y26_c00470{bottom:469.160000pt;}
.y24_c00470{bottom:494.440000pt;}
.y23_c00470{bottom:526.440000pt;}
.y22_c00470{bottom:551.402880pt;}
.y21_c00470{bottom:567.081280pt;}
.y20_c00470{bottom:582.759680pt;}
.y1f_c00470{bottom:598.123200pt;}
.y1e_c00470{bottom:613.801600pt;}
.y1d_c00470{bottom:629.480000pt;}
.y1c_c00470{bottom:651.560000pt;}
.y1a_c00470{bottom:667.236480pt;}
.y1b_c00470{bottom:667.240000pt;}
.y19_c00470{bottom:682.600000pt;}
.y18_c00470{bottom:682.601600pt;}
.y16_c00470{bottom:698.279040pt;}
.y17_c00470{bottom:698.280000pt;}
.y15_c00470{bottom:720.360000pt;}
.y14_c00470{bottom:742.760000pt;}
.y13_c00470{bottom:742.766080pt;}
.y11_c00470{bottom:760.358080pt;}
.y12_c00470{bottom:760.360000pt;}
.yf_c00470{bottom:778.278080pt;}
.y10_c00470{bottom:778.280000pt;}
.yd_c00470{bottom:796.195520pt;}
.ye_c00470{bottom:796.200000pt;}
.yc_c00470{bottom:820.520000pt;}
.yb_c00470{bottom:820.521600pt;}
.y9_c00470{bottom:836.198080pt;}
.ya_c00470{bottom:836.200000pt;}
.y8_c00470{bottom:854.120000pt;}
.y7_c00470{bottom:876.519867pt;}
.y5_c00470{bottom:904.679867pt;}
.y6_c00470{bottom:911.400000pt;}
.y4_c00470{bottom:932.840000pt;}
.y3_c00470{bottom:964.520000pt;}
.y2_c00470{bottom:1011.880000pt;}
.he_c00470{height:17.116093pt;}
.hd_c00470{height:28.992000pt;}
.h6_c00470{height:33.630720pt;}
.h9_c00470{height:34.978125pt;}
.ha_c00470{height:40.514560pt;}
.h8_c00470{height:41.761453pt;}
.h5_c00470{height:42.656250pt;}
.h7_c00470{height:47.546880pt;}
.hf_c00470{height:50.346667pt;}
.hb_c00470{height:50.752000pt;}
.h4_c00470{height:50.928601pt;}
.h3_c00470{height:57.984000pt;}
.hc_c00470{height:60.510720pt;}
.h2_c00470{height:1067.880000pt;}
.h0_c00470{height:1122.520000pt;}
.h1_c00470{height:1122.666667pt;}
.w3_c00470{width:22.240000pt;}
.w2_c00470{width:767.960000pt;}
.w0_c00470{width:793.720000pt;}
.w1_c00470{width:794.000000pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:12.880000pt;}
.x2_c00470{left:100.480133pt;}
.x66_c00470{left:108.634400pt;}
.x50_c00470{left:118.252933pt;}
.x67_c00470{left:130.113600pt;}
.x36_c00470{left:132.332667pt;}
.x4f_c00470{left:135.292933pt;}
.x17_c00470{left:136.624933pt;}
.x37_c00470{left:140.592800pt;}
.x5d_c00470{left:141.636400pt;}
.x3_c00470{left:143.583333pt;}
.x18_c00470{left:151.357733pt;}
.x19_c00470{left:154.691067pt;}
.x13_c00470{left:160.912400pt;}
.x38_c00470{left:162.792267pt;}
.x39_c00470{left:171.052400pt;}
.x51_c00470{left:172.995467pt;}
.x14_c00470{left:179.391867pt;}
.x56_c00470{left:180.701867pt;}
.x3a_c00470{left:202.904933pt;}
.x27_c00470{left:204.687867pt;}
.x1a_c00470{left:207.888267pt;}
.x4_c00470{left:210.654267pt;}
.x46_c00470{left:216.063200pt;}
.x57_c00470{left:224.252933pt;}
.x5e_c00470{left:225.716400pt;}
.x1b_c00470{left:232.540000pt;}
.x1c_c00470{left:242.086267pt;}
.x28_c00470{left:243.805333pt;}
.x29_c00470{left:247.138667pt;}
.x47_c00470{left:249.687200pt;}
.x5_c00470{left:251.678267pt;}
.x3b_c00470{left:263.117467pt;}
.x48_c00470{left:272.459333pt;}
.x1d_c00470{left:273.938800pt;}
.x2a_c00470{left:284.043333pt;}
.x3c_c00470{left:288.290400pt;}
.x3d_c00470{left:296.550400pt;}
.x6_c00470{left:312.126667pt;}
.x7_c00470{left:316.126667pt;}
.x5f_c00470{left:323.901333pt;}
.x58_c00470{left:324.816800pt;}
.x65_c00470{left:336.826800pt;}
.x3e_c00470{left:341.722400pt;}
.x60_c00470{left:350.927733pt;}
.x2b_c00470{left:371.063733pt;}
.x8_c00470{left:373.053733pt;}
.x9_c00470{left:381.053733pt;}
.x59_c00470{left:395.919600pt;}
.x2c_c00470{left:402.916267pt;}
.x5a_c00470{left:418.366267pt;}
.x3f_c00470{left:421.300400pt;}
.xa_c00470{left:430.828400pt;}
.xb_c00470{left:434.828400pt;}
.x2d_c00470{left:440.580400pt;}
.x61_c00470{left:445.792667pt;}
.x40_c00470{left:460.539333pt;}
.x2e_c00470{left:462.537067pt;}
.x2f_c00470{left:465.870400pt;}
.x41_c00470{left:468.799067pt;}
.x4e_c00470{left:479.630800pt;}
.x42_c00470{left:485.825467pt;}
.x49_c00470{left:487.978533pt;}
.x43_c00470{left:494.085200pt;}
.x52_c00470{left:498.483067pt;}
.x5b_c00470{left:500.692400pt;}
.x54_c00470{left:501.722933pt;}
.x62_c00470{left:504.323867pt;}
.xc_c00470{left:505.946933pt;}
.x1e_c00470{left:508.369200pt;}
.x63_c00470{left:512.857067pt;}
.xd_c00470{left:513.946933pt;}
.x30_c00470{left:515.999067pt;}
.x31_c00470{left:519.332267pt;}
.x1f_c00470{left:523.101600pt;}
.x20_c00470{left:526.434800pt;}
.x4a_c00470{left:531.378933pt;}
.x32_c00470{left:537.582267pt;}
.x33_c00470{left:545.594400pt;}
.x4b_c00470{left:553.578400pt;}
.x55_c00470{left:558.634133pt;}
.x5c_c00470{left:560.794667pt;}
.x44_c00470{left:563.096933pt;}
.xe_c00470{left:568.000000pt;}
.xf_c00470{left:570.109333pt;}
.x21_c00470{left:579.631867pt;}
.x15_c00470{left:581.418667pt;}
.x22_c00470{left:582.965200pt;}
.x10_c00470{left:588.588933pt;}
.x11_c00470{left:592.295200pt;}
.x12_c00470{left:596.391867pt;}
.x23_c00470{left:604.283467pt;}
.x16_c00470{left:607.324533pt;}
.x4c_c00470{left:610.874000pt;}
.x45_c00470{left:618.135067pt;}
.x24_c00470{left:624.495067pt;}
.x25_c00470{left:627.828400pt;}
.x64_c00470{left:628.828133pt;}
.x4d_c00470{left:636.046933pt;}
.x53_c00470{left:638.772800pt;}
.x34_c00470{left:641.723600pt;}
.x26_c00470{left:663.306933pt;}
.x35_c00470{left:667.013333pt;}
.x68_c00470{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_23136282b045999f64237a19.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_bb2c4cb83253f11c5f611c25.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;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:ff3_c00471;src:url('chunks/assets/font_b61170aaf3e746b11b88184a.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00471{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00471{vertical-align:-24.480000px;}
.v0_c00471{vertical-align:0.000000px;}
.v1_c00471{vertical-align:30.240000px;}
.ls5_c00471{letter-spacing:-0.179568px;}
.ls3_c00471{letter-spacing:0.000000px;}
.ls6_c00471{letter-spacing:0.144000px;}
.ls7_c00471{letter-spacing:0.265680px;}
.ls4_c00471{letter-spacing:5.335200px;}
.ls1_c00471{letter-spacing:5.976000px;}
.ls0_c00471{letter-spacing:6.008400px;}
.ls2_c00471{letter-spacing:6.159920px;}
.sc__c00471{text-shadow:none;}
.sc1_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00471{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc1_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00471{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00471{word-spacing:-20.947680px;}
.ws1_c00471{word-spacing:-11.429712px;}
.ws2_c00471{word-spacing:-10.152000px;}
.ws3_c00471{word-spacing:0.000000px;}
._2_c00471{width:1.010880px;}
._1_c00471{width:4.320000px;}
._0_c00471{width:24.696000px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs4_c00471{font-size:36.000000px;}
.fs3_c00471{font-size:41.760000px;}
.fs2_c00471{font-size:56.160000px;}
.fs5_c00471{font-size:59.040000px;}
.fs6_c00471{font-size:60.000000px;}
.fs0_c00471{font-size:72.000000px;}
.fs1_c00471{font-size:74.215901px;}
.y0_c00471{bottom:0.000000px;}
.ye_c00471{bottom:3.120000px;}
.yd_c00471{bottom:34.744580px;}
.y1_c00471{bottom:54.000000px;}
.yc_c00471{bottom:61.605000px;}
.yb_c00471{bottom:88.245000px;}
.ya_c00471{bottom:847.845000px;}
.y9_c00471{bottom:883.845000px;}
.y8_c00471{bottom:919.845000px;}
.y7_c00471{bottom:955.845000px;}
.y6_c00471{bottom:991.845000px;}
.y5_c00471{bottom:1027.845000px;}
.y4_c00471{bottom:1063.845000px;}
.y3_c00471{bottom:1085.085000px;}
.y2_c00471{bottom:1138.365000px;}
.h7_c00471{height:19.255605px;}
.h6_c00471{height:32.616000px;}
.h8_c00471{height:56.640000px;}
.h4_c00471{height:57.294676px;}
.h3_c00471{height:65.232000px;}
.h5_c00471{height:68.074560px;}
.h2_c00471{height:1201.365000px;}
.h0_c00471{height:1262.835000px;}
.h1_c00471{height:1263.000000px;}
.w3_c00471{width:25.020000px;}
.w2_c00471{width:863.955000px;}
.w0_c00471{width:892.935000px;}
.w1_c00471{width:893.250000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:14.490000px;}
.x2_c00471{left:113.040150px;}
.x3_c00471{left:161.531250px;}
.x4_c00471{left:236.986050px;}
.x5_c00471{left:337.028700px;}
.x6_c00471{left:540.101100px;}
.x7_c00471{left:551.098650px;}
.x8_c00471{left:586.071900px;}
.x9_c00471{left:759.914612px;}
@media print{
.v2_c00471{vertical-align:-21.760000pt;}
.v0_c00471{vertical-align:0.000000pt;}
.v1_c00471{vertical-align:26.880000pt;}
.ls5_c00471{letter-spacing:-0.159616pt;}
.ls3_c00471{letter-spacing:0.000000pt;}
.ls6_c00471{letter-spacing:0.128000pt;}
.ls7_c00471{letter-spacing:0.236160pt;}
.ls4_c00471{letter-spacing:4.742400pt;}
.ls1_c00471{letter-spacing:5.312000pt;}
.ls0_c00471{letter-spacing:5.340800pt;}
.ls2_c00471{letter-spacing:5.475484pt;}
.ws0_c00471{word-spacing:-18.620160pt;}
.ws1_c00471{word-spacing:-10.159744pt;}
.ws2_c00471{word-spacing:-9.024000pt;}
.ws3_c00471{word-spacing:0.000000pt;}
._2_c00471{width:0.898560pt;}
._1_c00471{width:3.840000pt;}
._0_c00471{width:21.952000pt;}
.fs4_c00471{font-size:32.000000pt;}
.fs3_c00471{font-size:37.120000pt;}
.fs2_c00471{font-size:49.920000pt;}
.fs5_c00471{font-size:52.480000pt;}
.fs6_c00471{font-size:53.333333pt;}
.fs0_c00471{font-size:64.000000pt;}
.fs1_c00471{font-size:65.969690pt;}
.y0_c00471{bottom:0.000000pt;}
.ye_c00471{bottom:2.773333pt;}
.yd_c00471{bottom:30.884071pt;}
.y1_c00471{bottom:48.000000pt;}
.yc_c00471{bottom:54.760000pt;}
.yb_c00471{bottom:78.440000pt;}
.ya_c00471{bottom:753.640000pt;}
.y9_c00471{bottom:785.640000pt;}
.y8_c00471{bottom:817.640000pt;}
.y7_c00471{bottom:849.640000pt;}
.y6_c00471{bottom:881.640000pt;}
.y5_c00471{bottom:913.640000pt;}
.y4_c00471{bottom:945.640000pt;}
.y3_c00471{bottom:964.520000pt;}
.y2_c00471{bottom:1011.880000pt;}
.h7_c00471{height:17.116093pt;}
.h6_c00471{height:28.992000pt;}
.h8_c00471{height:50.346667pt;}
.h4_c00471{height:50.928601pt;}
.h3_c00471{height:57.984000pt;}
.h5_c00471{height:60.510720pt;}
.h2_c00471{height:1067.880000pt;}
.h0_c00471{height:1122.520000pt;}
.h1_c00471{height:1122.666667pt;}
.w3_c00471{width:22.240000pt;}
.w2_c00471{width:767.960000pt;}
.w0_c00471{width:793.720000pt;}
.w1_c00471{width:794.000000pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:12.880000pt;}
.x2_c00471{left:100.480133pt;}
.x3_c00471{left:143.583333pt;}
.x4_c00471{left:210.654267pt;}
.x5_c00471{left:299.581067pt;}
.x6_c00471{left:480.089867pt;}
.x7_c00471{left:489.865467pt;}
.x8_c00471{left:520.952800pt;}
.x9_c00471{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa6cc8073efe1fe55ce7b643.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_1796b42c815a83b9112c3860.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;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:ff3_c00472;src:url('chunks/assets/font_87988c5c6b1211333939a345.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:0.687988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00472;src:url('chunks/assets/font_c441d70658821f48fcabe033.woff2')format("woff");}.ff6_c00472{font-family:ff6_c00472;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00472{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00472{vertical-align:-24.480000px;}
.v0_c00472{vertical-align:0.000000px;}
.v1_c00472{vertical-align:30.240000px;}
.ls8_c00472{letter-spacing:0.000000px;}
.ls6_c00472{letter-spacing:0.236160px;}
.lsc_c00472{letter-spacing:0.265680px;}
.lsb_c00472{letter-spacing:0.425088px;}
.lsa_c00472{letter-spacing:0.478224px;}
.ls1_c00472{letter-spacing:0.662640px;}
.lsd_c00472{letter-spacing:0.712027px;}
.ls3_c00472{letter-spacing:0.750240px;}
.ls9_c00472{letter-spacing:5.430672px;}
.ls4_c00472{letter-spacing:5.967600px;}
.ls0_c00472{letter-spacing:5.976000px;}
.ls2_c00472{letter-spacing:5.998800px;}
.ls7_c00472{letter-spacing:6.159920px;}
.ls5_c00472{letter-spacing:54.864000px;}
.sc__c00472{text-shadow:none;}
.sc1_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00472{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc1_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00472{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00472{word-spacing:-21.043152px;}
.ws4_c00472{word-spacing:-17.630284px;}
.ws3_c00472{word-spacing:-16.838208px;}
.ws1_c00472{word-spacing:-11.609280px;}
.ws2_c00472{word-spacing:-10.008000px;}
.ws5_c00472{word-spacing:0.000000px;}
._4_c00472{margin-left:-1.179360px;}
._5_c00472{width:1.728000px;}
._7_c00472{width:3.600000px;}
._1_c00472{width:5.400000px;}
._6_c00472{width:12.349800px;}
._3_c00472{width:13.752000px;}
._2_c00472{width:29.520000px;}
._0_c00472{width:118.728000px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs4_c00472{font-size:36.000000px;}
.fs2_c00472{font-size:41.760000px;}
.fs3_c00472{font-size:56.160000px;}
.fs5_c00472{font-size:59.040000px;}
.fs7_c00472{font-size:60.000000px;}
.fs6_c00472{font-size:60.857039px;}
.fs0_c00472{font-size:72.000000px;}
.fs1_c00472{font-size:74.215901px;}
.y0_c00472{bottom:0.000000px;}
.y28_c00472{bottom:3.120000px;}
.y27_c00472{bottom:34.744580px;}
.y1_c00472{bottom:54.000000px;}
.y26_c00472{bottom:55.485000px;}
.y25_c00472{bottom:61.605000px;}
.y24_c00472{bottom:78.885000px;}
.y23_c00472{bottom:96.525000px;}
.y22_c00472{bottom:113.805000px;}
.y21_c00472{bottom:140.445000px;}
.y20_c00472{bottom:171.045000px;}
.y1f_c00472{bottom:207.045000px;}
.y1e_c00472{bottom:228.285000px;}
.y1d_c00472{bottom:249.165000px;}
.y1c_c00472{bottom:285.165000px;}
.y1b_c00472{bottom:306.045000px;}
.y1a_c00472{bottom:342.045000px;}
.y19_c00472{bottom:378.045000px;}
.y18_c00472{bottom:399.285000px;}
.y17_c00472{bottom:420.165000px;}
.y16_c00472{bottom:456.165000px;}
.y15_c00472{bottom:492.165000px;}
.y14_c00472{bottom:528.165000px;}
.y13_c00472{bottom:549.405000px;}
.y12_c00472{bottom:585.405000px;}
.y11_c00472{bottom:621.405000px;}
.y10_c00472{bottom:657.405000px;}
.yf_c00472{bottom:693.405000px;}
.ye_c00472{bottom:729.405000px;}
.yd_c00472{bottom:765.405000px;}
.yc_c00472{bottom:801.404850px;}
.yb_c00472{bottom:837.404850px;}
.ya_c00472{bottom:873.765000px;}
.y9_c00472{bottom:894.645000px;}
.y8_c00472{bottom:915.525000px;}
.y7_c00472{bottom:951.525000px;}
.y6_c00472{bottom:972.405000px;}
.y5_c00472{bottom:1008.405000px;}
.y4_c00472{bottom:1046.925000px;}
.y3_c00472{bottom:1085.085000px;}
.y2_c00472{bottom:1138.365000px;}
.ha_c00472{height:19.255605px;}
.h7_c00472{height:32.616000px;}
.h8_c00472{height:46.981634px;}
.h9_c00472{height:53.490240px;}
.hb_c00472{height:56.640000px;}
.h4_c00472{height:57.294676px;}
.h3_c00472{height:65.232000px;}
.h6_c00472{height:65.232600px;}
.h5_c00472{height:68.074560px;}
.h2_c00472{height:1201.365000px;}
.h0_c00472{height:1262.835000px;}
.h1_c00472{height:1263.000000px;}
.w3_c00472{width:25.020000px;}
.w2_c00472{width:863.955000px;}
.w0_c00472{width:892.935000px;}
.w1_c00472{width:893.250000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:14.490000px;}
.x2_c00472{left:113.040150px;}
.x12_c00472{left:122.213700px;}
.x7_c00472{left:140.037600px;}
.x13_c00472{left:151.357950px;}
.x3_c00472{left:161.531250px;}
.x8_c00472{left:167.037450px;}
.xb_c00472{left:222.378600px;}
.x4_c00472{left:236.986050px;}
.xc_c00472{left:239.041200px;}
.x9_c00472{left:375.673800px;}
.x6_c00472{left:391.117350px;}
.x5_c00472{left:413.967000px;}
.xe_c00472{left:419.728350px;}
.xf_c00472{left:424.732200px;}
.x10_c00472{left:453.785850px;}
.xa_c00472{left:492.968700px;}
.x11_c00472{left:495.779250px;}
.xd_c00472{left:720.420750px;}
.x14_c00472{left:759.914612px;}
@media print{
.v2_c00472{vertical-align:-21.760000pt;}
.v0_c00472{vertical-align:0.000000pt;}
.v1_c00472{vertical-align:26.880000pt;}
.ls8_c00472{letter-spacing:0.000000pt;}
.ls6_c00472{letter-spacing:0.209920pt;}
.lsc_c00472{letter-spacing:0.236160pt;}
.lsb_c00472{letter-spacing:0.377856pt;}
.lsa_c00472{letter-spacing:0.425088pt;}
.ls1_c00472{letter-spacing:0.589013pt;}
.lsd_c00472{letter-spacing:0.632913pt;}
.ls3_c00472{letter-spacing:0.666880pt;}
.ls9_c00472{letter-spacing:4.827264pt;}
.ls4_c00472{letter-spacing:5.304533pt;}
.ls0_c00472{letter-spacing:5.312000pt;}
.ls2_c00472{letter-spacing:5.332267pt;}
.ls7_c00472{letter-spacing:5.475484pt;}
.ls5_c00472{letter-spacing:48.768000pt;}
.ws0_c00472{word-spacing:-18.705024pt;}
.ws4_c00472{word-spacing:-15.671364pt;}
.ws3_c00472{word-spacing:-14.967296pt;}
.ws1_c00472{word-spacing:-10.319360pt;}
.ws2_c00472{word-spacing:-8.896000pt;}
.ws5_c00472{word-spacing:0.000000pt;}
._4_c00472{margin-left:-1.048320pt;}
._5_c00472{width:1.536000pt;}
._7_c00472{width:3.200000pt;}
._1_c00472{width:4.800000pt;}
._6_c00472{width:10.977600pt;}
._3_c00472{width:12.224000pt;}
._2_c00472{width:26.240000pt;}
._0_c00472{width:105.536000pt;}
.fs4_c00472{font-size:32.000000pt;}
.fs2_c00472{font-size:37.120000pt;}
.fs3_c00472{font-size:49.920000pt;}
.fs5_c00472{font-size:52.480000pt;}
.fs7_c00472{font-size:53.333333pt;}
.fs6_c00472{font-size:54.095146pt;}
.fs0_c00472{font-size:64.000000pt;}
.fs1_c00472{font-size:65.969690pt;}
.y0_c00472{bottom:0.000000pt;}
.y28_c00472{bottom:2.773333pt;}
.y27_c00472{bottom:30.884071pt;}
.y1_c00472{bottom:48.000000pt;}
.y26_c00472{bottom:49.320000pt;}
.y25_c00472{bottom:54.760000pt;}
.y24_c00472{bottom:70.120000pt;}
.y23_c00472{bottom:85.800000pt;}
.y22_c00472{bottom:101.160000pt;}
.y21_c00472{bottom:124.840000pt;}
.y20_c00472{bottom:152.040000pt;}
.y1f_c00472{bottom:184.040000pt;}
.y1e_c00472{bottom:202.920000pt;}
.y1d_c00472{bottom:221.480000pt;}
.y1c_c00472{bottom:253.480000pt;}
.y1b_c00472{bottom:272.040000pt;}
.y1a_c00472{bottom:304.040000pt;}
.y19_c00472{bottom:336.040000pt;}
.y18_c00472{bottom:354.920000pt;}
.y17_c00472{bottom:373.480000pt;}
.y16_c00472{bottom:405.480000pt;}
.y15_c00472{bottom:437.480000pt;}
.y14_c00472{bottom:469.480000pt;}
.y13_c00472{bottom:488.360000pt;}
.y12_c00472{bottom:520.360000pt;}
.y11_c00472{bottom:552.360000pt;}
.y10_c00472{bottom:584.360000pt;}
.yf_c00472{bottom:616.360000pt;}
.ye_c00472{bottom:648.360000pt;}
.yd_c00472{bottom:680.360000pt;}
.yc_c00472{bottom:712.359867pt;}
.yb_c00472{bottom:744.359867pt;}
.ya_c00472{bottom:776.680000pt;}
.y9_c00472{bottom:795.240000pt;}
.y8_c00472{bottom:813.800000pt;}
.y7_c00472{bottom:845.800000pt;}
.y6_c00472{bottom:864.360000pt;}
.y5_c00472{bottom:896.360000pt;}
.y4_c00472{bottom:930.600000pt;}
.y3_c00472{bottom:964.520000pt;}
.y2_c00472{bottom:1011.880000pt;}
.ha_c00472{height:17.116093pt;}
.h7_c00472{height:28.992000pt;}
.h8_c00472{height:41.761453pt;}
.h9_c00472{height:47.546880pt;}
.hb_c00472{height:50.346667pt;}
.h4_c00472{height:50.928601pt;}
.h3_c00472{height:57.984000pt;}
.h6_c00472{height:57.984533pt;}
.h5_c00472{height:60.510720pt;}
.h2_c00472{height:1067.880000pt;}
.h0_c00472{height:1122.520000pt;}
.h1_c00472{height:1122.666667pt;}
.w3_c00472{width:22.240000pt;}
.w2_c00472{width:767.960000pt;}
.w0_c00472{width:793.720000pt;}
.w1_c00472{width:794.000000pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:12.880000pt;}
.x2_c00472{left:100.480133pt;}
.x12_c00472{left:108.634400pt;}
.x7_c00472{left:124.477867pt;}
.x13_c00472{left:134.540400pt;}
.x3_c00472{left:143.583333pt;}
.x8_c00472{left:148.477733pt;}
.xb_c00472{left:197.669867pt;}
.x4_c00472{left:210.654267pt;}
.xc_c00472{left:212.481067pt;}
.x9_c00472{left:333.932267pt;}
.x6_c00472{left:347.659867pt;}
.x5_c00472{left:367.970667pt;}
.xe_c00472{left:373.091867pt;}
.xf_c00472{left:377.539733pt;}
.x10_c00472{left:403.365200pt;}
.xa_c00472{left:438.194400pt;}
.x11_c00472{left:440.692667pt;}
.xd_c00472{left:640.374000pt;}
.x14_c00472{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a62733ef8c1e1fec89533f9b.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_876e2dd1edd95c1216e8a758.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;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:ff3_c00473;src:url('chunks/assets/font_910304ee2fbe12a5b98c4c78.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00473;src:url('chunks/assets/font_f91184de50ee0d8e357775a2.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00473;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff5_c00473{font-family:ff5_c00473;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00473;src:url('chunks/assets/font_cb51894c36463b83069abe53.woff2')format("woff");}.ff6_c00473{font-family:ff6_c00473;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00473{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00473{vertical-align:-24.480000px;}
.v0_c00473{vertical-align:0.000000px;}
.v1_c00473{vertical-align:30.240000px;}
.ls1d_c00473{letter-spacing:-0.179568px;}
.ls13_c00473{letter-spacing:0.000000px;}
.ls26_c00473{letter-spacing:0.144000px;}
.ls6_c00473{letter-spacing:0.236160px;}
.ls11_c00473{letter-spacing:0.265680px;}
.ls2_c00473{letter-spacing:0.295200px;}
.ls1a_c00473{letter-spacing:0.318816px;}
.ls1b_c00473{letter-spacing:0.371952px;}
.ls25_c00473{letter-spacing:0.383399px;}
.ls18_c00473{letter-spacing:0.425088px;}
.ls24_c00473{letter-spacing:0.438171px;}
.lsc_c00473{letter-spacing:0.457800px;}
.ls7_c00473{letter-spacing:0.501840px;}
.lse_c00473{letter-spacing:0.507744px;}
.lsb_c00473{letter-spacing:0.531240px;}
.ls17_c00473{letter-spacing:0.531360px;}
.lsd_c00473{letter-spacing:0.543168px;}
.lsf_c00473{letter-spacing:0.547713px;}
.ls4_c00473{letter-spacing:0.560880px;}
.ls14_c00473{letter-spacing:0.584496px;}
.ls10_c00473{letter-spacing:0.602485px;}
.ls5_c00473{letter-spacing:0.657256px;}
.ls19_c00473{letter-spacing:0.690768px;}
.ls3_c00473{letter-spacing:0.712027px;}
.ls16_c00473{letter-spacing:0.743904px;}
.ls15_c00473{letter-spacing:0.797040px;}
.lsa_c00473{letter-spacing:0.846840px;}
.ls23_c00473{letter-spacing:0.962352px;}
.ls20_c00473{letter-spacing:3.754944px;}
.ls1c_c00473{letter-spacing:5.430672px;}
.ls21_c00473{letter-spacing:5.567472px;}
.ls8_c00473{letter-spacing:5.975400px;}
.ls0_c00473{letter-spacing:5.976000px;}
.ls1_c00473{letter-spacing:6.048000px;}
.ls12_c00473{letter-spacing:6.159920px;}
.ls9_c00473{letter-spacing:6.624000px;}
.ls1e_c00473{letter-spacing:7.509888px;}
.ls22_c00473{letter-spacing:9.546768px;}
.ls1f_c00473{letter-spacing:11.554128px;}
.sc__c00473{text-shadow:none;}
.sc1_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00473{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc1_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00473{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00473{word-spacing:-21.980592px;}
.ws3_c00473{word-spacing:-21.043152px;}
.ws5_c00473{word-spacing:-20.016000px;}
.ws2_c00473{word-spacing:-17.630284px;}
.ws0_c00473{word-spacing:-17.575513px;}
.wsa_c00473{word-spacing:-17.520742px;}
.ws8_c00473{word-spacing:-17.465970px;}
.ws1_c00473{word-spacing:-17.210160px;}
.ws4_c00473{word-spacing:-11.609280px;}
.ws6_c00473{word-spacing:-11.429712px;}
.wsb_c00473{word-spacing:-10.152000px;}
.ws7_c00473{word-spacing:-10.008000px;}
.wsc_c00473{word-spacing:0.000000px;}
._c_c00473{margin-left:-11.040480px;}
._10_c00473{margin-left:-9.151200px;}
._b_c00473{margin-left:-7.970400px;}
._a_c00473{margin-left:-6.848640px;}
._f_c00473{margin-left:-4.132800px;}
._e_c00473{margin-left:-3.129120px;}
._1_c00473{margin-left:-1.033200px;}
._3_c00473{width:1.003680px;}
._4_c00473{width:2.656800px;}
._2_c00473{width:4.280400px;}
._5_c00473{width:5.974848px;}
._6_c00473{width:7.604352px;}
._8_c00473{width:8.640000px;}
._7_c00473{width:10.440000px;}
._d_c00473{width:12.101472px;}
._11_c00473{width:15.645600px;}
._9_c00473{width:17.136000px;}
._0_c00473{width:118.728000px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs6_c00473{font-size:36.000000px;}
.fs5_c00473{font-size:41.760000px;}
.fs4_c00473{font-size:56.160000px;}
.fs2_c00473{font-size:59.040000px;}
.fs7_c00473{font-size:60.000000px;}
.fs3_c00473{font-size:60.857039px;}
.fs0_c00473{font-size:72.000000px;}
.fs1_c00473{font-size:74.215901px;}
.y0_c00473{bottom:0.000000px;}
.y40_c00473{bottom:3.120000px;}
.y3f_c00473{bottom:34.744580px;}
.y1_c00473{bottom:54.000000px;}
.y3e_c00473{bottom:61.605000px;}
.y3d_c00473{bottom:72.765000px;}
.y3c_c00473{bottom:78.885000px;}
.y3a_c00473{bottom:90.401040px;}
.y3b_c00473{bottom:90.405000px;}
.y39_c00473{bottom:107.685000px;}
.y38_c00473{bottom:113.805000px;}
.y37_c00473{bottom:125.322840px;}
.y36_c00473{bottom:142.961040px;}
.y35_c00473{bottom:160.245000px;}
.y34_c00473{bottom:160.246800px;}
.y33_c00473{bottom:177.885000px;}
.y32_c00473{bottom:184.005000px;}
.y31_c00473{bottom:195.522840px;}
.y30_c00473{bottom:212.806800px;}
.y2e_c00473{bottom:230.441040px;}
.y2f_c00473{bottom:230.445000px;}
.y2d_c00473{bottom:253.845000px;}
.y2b_c00473{bottom:265.362840px;}
.y2c_c00473{bottom:265.365000px;}
.y2a_c00473{bottom:283.001040px;}
.y29_c00473{bottom:300.285000px;}
.y28_c00473{bottom:306.405000px;}
.y27_c00473{bottom:333.045000px;}
.y26_c00473{bottom:370.485000px;}
.y25_c00473{bottom:391.365000px;}
.y24_c00473{bottom:412.605000px;}
.y23_c00473{bottom:448.605000px;}
.y22_c00473{bottom:469.485000px;}
.y20_c00473{bottom:490.365000px;}
.y21_c00473{bottom:497.925000px;}
.y1f_c00473{bottom:511.605000px;}
.y1e_c00473{bottom:547.605000px;}
.y1d_c00473{bottom:568.485000px;}
.y1c_c00473{bottom:591.525000px;}
.y1b_c00473{bottom:612.045000px;}
.y1a_c00473{bottom:633.285000px;}
.y19_c00473{bottom:654.165000px;}
.y18_c00473{bottom:690.165000px;}
.y17_c00473{bottom:726.165000px;}
.y16_c00473{bottom:754.243920px;}
.y15_c00473{bottom:771.882120px;}
.y14_c00473{bottom:789.520320px;}
.y13_c00473{bottom:806.804280px;}
.y12_c00473{bottom:824.442480px;}
.y11_c00473{bottom:842.080680px;}
.y10_c00473{bottom:859.364640px;}
.yf_c00473{bottom:877.002840px;}
.ye_c00473{bottom:894.286800px;}
.yd_c00473{bottom:911.925000px;}
.yc_c00473{bottom:936.764850px;}
.yb_c00473{bottom:936.766800px;}
.ya_c00473{bottom:954.405000px;}
.y9_c00473{bottom:954.408600px;}
.y8_c00473{bottom:979.603920px;}
.y6_c00473{bottom:1004.443920px;}
.y7_c00473{bottom:1004.445000px;}
.y5_c00473{bottom:1029.285000px;}
.y4_c00473{bottom:1055.205000px;}
.y3_c00473{bottom:1085.445000px;}
.y2_c00473{bottom:1138.365000px;}
.hb_c00473{height:19.255605px;}
.ha_c00473{height:32.616000px;}
.h9_c00473{height:37.834560px;}
.h7_c00473{height:46.981634px;}
.h5_c00473{height:47.988281px;}
.h6_c00473{height:53.490240px;}
.hc_c00473{height:56.640000px;}
.h4_c00473{height:57.294676px;}
.h3_c00473{height:65.232000px;}
.h8_c00473{height:68.074560px;}
.h2_c00473{height:1201.365000px;}
.h0_c00473{height:1262.835000px;}
.h1_c00473{height:1263.000000px;}
.w3_c00473{width:25.020000px;}
.w2_c00473{width:863.955000px;}
.w0_c00473{width:892.935000px;}
.w1_c00473{width:893.250000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:14.490000px;}
.x2_c00473{left:113.040150px;}
.x39_c00473{left:124.113000px;}
.x3f_c00473{left:126.121200px;}
.x19_c00473{left:133.034550px;}
.x42_c00473{left:139.717950px;}
.x2c_c00473{left:142.353150px;}
.x20_c00473{left:146.051550px;}
.xb_c00473{left:147.223350px;}
.x3a_c00473{left:150.176100px;}
.x3_c00473{left:161.531250px;}
.x11_c00473{left:175.557450px;}
.xc_c00473{left:194.697450px;}
.x12_c00473{left:200.532000px;}
.x21_c00473{left:205.054650px;}
.x1a_c00473{left:220.194900px;}
.x2d_c00473{left:222.343950px;}
.x3b_c00473{left:232.097550px;}
.x4_c00473{left:236.986050px;}
.x41_c00473{left:244.749750px;}
.x13_c00473{left:246.399900px;}
.x1b_c00473{left:253.710900px;}
.x3c_c00473{left:257.071950px;}
.x40_c00473{left:262.353150px;}
.x2e_c00473{left:273.633150px;}
.x14_c00473{left:274.719300px;}
.x33_c00473{left:278.079300px;}
.x43_c00473{left:314.733450px;}
.x37_c00473{left:319.138500px;}
.x6_c00473{left:325.211100px;}
.x5_c00473{left:331.630050px;}
.x1c_c00473{left:340.703550px;}
.x15_c00473{left:345.606150px;}
.x34_c00473{left:350.572650px;}
.x35_c00473{left:358.911900px;}
.x38_c00473{left:363.297300px;}
.x16_c00473{left:364.760700px;}
.x36_c00473{left:388.056150px;}
.x7_c00473{left:400.197450px;}
.x8_c00473{left:404.697450px;}
.x2a_c00473{left:414.337350px;}
.x2f_c00473{left:428.411850px;}
.x28_c00473{left:463.044750px;}
.x2b_c00473{left:464.358300px;}
.x30_c00473{left:475.090650px;}
.x9_c00473{left:478.694100px;}
.xa_c00473{left:483.194100px;}
.x31_c00473{left:485.240850px;}
.x32_c00473{left:510.215250px;}
.x24_c00473{left:518.433450px;}
.xd_c00473{left:522.818550px;}
.xe_c00473{left:528.239850px;}
.x29_c00473{left:533.081550px;}
.x22_c00473{left:537.911100px;}
.x25_c00473{left:578.520000px;}
.x17_c00473{left:582.790950px;}
.x26_c00473{left:584.300250px;}
.x23_c00473{left:587.932200px;}
.x27_c00473{left:589.304100px;}
.x1d_c00473{left:624.733500px;}
.x18_c00473{left:626.125200px;}
.x3d_c00473{left:672.403500px;}
.x1e_c00473{left:678.732750px;}
.x3e_c00473{left:709.917000px;}
.xf_c00473{left:725.415450px;}
.x1f_c00473{left:743.892300px;}
.x10_c00473{left:750.390000px;}
.x44_c00473{left:759.914612px;}
@media print{
.v2_c00473{vertical-align:-21.760000pt;}
.v0_c00473{vertical-align:0.000000pt;}
.v1_c00473{vertical-align:26.880000pt;}
.ls1d_c00473{letter-spacing:-0.159616pt;}
.ls13_c00473{letter-spacing:0.000000pt;}
.ls26_c00473{letter-spacing:0.128000pt;}
.ls6_c00473{letter-spacing:0.209920pt;}
.ls11_c00473{letter-spacing:0.236160pt;}
.ls2_c00473{letter-spacing:0.262400pt;}
.ls1a_c00473{letter-spacing:0.283392pt;}
.ls1b_c00473{letter-spacing:0.330624pt;}
.ls25_c00473{letter-spacing:0.340799pt;}
.ls18_c00473{letter-spacing:0.377856pt;}
.ls24_c00473{letter-spacing:0.389485pt;}
.lsc_c00473{letter-spacing:0.406933pt;}
.ls7_c00473{letter-spacing:0.446080pt;}
.lse_c00473{letter-spacing:0.451328pt;}
.lsb_c00473{letter-spacing:0.472213pt;}
.ls17_c00473{letter-spacing:0.472320pt;}
.lsd_c00473{letter-spacing:0.482816pt;}
.lsf_c00473{letter-spacing:0.486856pt;}
.ls4_c00473{letter-spacing:0.498560pt;}
.ls14_c00473{letter-spacing:0.519552pt;}
.ls10_c00473{letter-spacing:0.535542pt;}
.ls5_c00473{letter-spacing:0.584228pt;}
.ls19_c00473{letter-spacing:0.614016pt;}
.ls3_c00473{letter-spacing:0.632913pt;}
.ls16_c00473{letter-spacing:0.661248pt;}
.ls15_c00473{letter-spacing:0.708480pt;}
.lsa_c00473{letter-spacing:0.752747pt;}
.ls23_c00473{letter-spacing:0.855424pt;}
.ls20_c00473{letter-spacing:3.337728pt;}
.ls1c_c00473{letter-spacing:4.827264pt;}
.ls21_c00473{letter-spacing:4.948864pt;}
.ls8_c00473{letter-spacing:5.311467pt;}
.ls0_c00473{letter-spacing:5.312000pt;}
.ls1_c00473{letter-spacing:5.376000pt;}
.ls12_c00473{letter-spacing:5.475484pt;}
.ls9_c00473{letter-spacing:5.888000pt;}
.ls1e_c00473{letter-spacing:6.675456pt;}
.ls22_c00473{letter-spacing:8.486016pt;}
.ls1f_c00473{letter-spacing:10.270336pt;}
.ws9_c00473{word-spacing:-19.538304pt;}
.ws3_c00473{word-spacing:-18.705024pt;}
.ws5_c00473{word-spacing:-17.792000pt;}
.ws2_c00473{word-spacing:-15.671364pt;}
.ws0_c00473{word-spacing:-15.622678pt;}
.wsa_c00473{word-spacing:-15.573992pt;}
.ws8_c00473{word-spacing:-15.525307pt;}
.ws1_c00473{word-spacing:-15.297920pt;}
.ws4_c00473{word-spacing:-10.319360pt;}
.ws6_c00473{word-spacing:-10.159744pt;}
.wsb_c00473{word-spacing:-9.024000pt;}
.ws7_c00473{word-spacing:-8.896000pt;}
.wsc_c00473{word-spacing:0.000000pt;}
._c_c00473{margin-left:-9.813760pt;}
._10_c00473{margin-left:-8.134400pt;}
._b_c00473{margin-left:-7.084800pt;}
._a_c00473{margin-left:-6.087680pt;}
._f_c00473{margin-left:-3.673600pt;}
._e_c00473{margin-left:-2.781440pt;}
._1_c00473{margin-left:-0.918400pt;}
._3_c00473{width:0.892160pt;}
._4_c00473{width:2.361600pt;}
._2_c00473{width:3.804800pt;}
._5_c00473{width:5.310976pt;}
._6_c00473{width:6.759424pt;}
._8_c00473{width:7.680000pt;}
._7_c00473{width:9.280000pt;}
._d_c00473{width:10.756864pt;}
._11_c00473{width:13.907200pt;}
._9_c00473{width:15.232000pt;}
._0_c00473{width:105.536000pt;}
.fs6_c00473{font-size:32.000000pt;}
.fs5_c00473{font-size:37.120000pt;}
.fs4_c00473{font-size:49.920000pt;}
.fs2_c00473{font-size:52.480000pt;}
.fs7_c00473{font-size:53.333333pt;}
.fs3_c00473{font-size:54.095146pt;}
.fs0_c00473{font-size:64.000000pt;}
.fs1_c00473{font-size:65.969690pt;}
.y0_c00473{bottom:0.000000pt;}
.y40_c00473{bottom:2.773333pt;}
.y3f_c00473{bottom:30.884071pt;}
.y1_c00473{bottom:48.000000pt;}
.y3e_c00473{bottom:54.760000pt;}
.y3d_c00473{bottom:64.680000pt;}
.y3c_c00473{bottom:70.120000pt;}
.y3a_c00473{bottom:80.356480pt;}
.y3b_c00473{bottom:80.360000pt;}
.y39_c00473{bottom:95.720000pt;}
.y38_c00473{bottom:101.160000pt;}
.y37_c00473{bottom:111.398080pt;}
.y36_c00473{bottom:127.076480pt;}
.y35_c00473{bottom:142.440000pt;}
.y34_c00473{bottom:142.441600pt;}
.y33_c00473{bottom:158.120000pt;}
.y32_c00473{bottom:163.560000pt;}
.y31_c00473{bottom:173.798080pt;}
.y30_c00473{bottom:189.161600pt;}
.y2e_c00473{bottom:204.836480pt;}
.y2f_c00473{bottom:204.840000pt;}
.y2d_c00473{bottom:225.640000pt;}
.y2b_c00473{bottom:235.878080pt;}
.y2c_c00473{bottom:235.880000pt;}
.y2a_c00473{bottom:251.556480pt;}
.y29_c00473{bottom:266.920000pt;}
.y28_c00473{bottom:272.360000pt;}
.y27_c00473{bottom:296.040000pt;}
.y26_c00473{bottom:329.320000pt;}
.y25_c00473{bottom:347.880000pt;}
.y24_c00473{bottom:366.760000pt;}
.y23_c00473{bottom:398.760000pt;}
.y22_c00473{bottom:417.320000pt;}
.y20_c00473{bottom:435.880000pt;}
.y21_c00473{bottom:442.600000pt;}
.y1f_c00473{bottom:454.760000pt;}
.y1e_c00473{bottom:486.760000pt;}
.y1d_c00473{bottom:505.320000pt;}
.y1c_c00473{bottom:525.800000pt;}
.y1b_c00473{bottom:544.040000pt;}
.y1a_c00473{bottom:562.920000pt;}
.y19_c00473{bottom:581.480000pt;}
.y18_c00473{bottom:613.480000pt;}
.y17_c00473{bottom:645.480000pt;}
.y16_c00473{bottom:670.439040pt;}
.y15_c00473{bottom:686.117440pt;}
.y14_c00473{bottom:701.795840pt;}
.y13_c00473{bottom:717.159360pt;}
.y12_c00473{bottom:732.837760pt;}
.y11_c00473{bottom:748.516160pt;}
.y10_c00473{bottom:763.879680pt;}
.yf_c00473{bottom:779.558080pt;}
.ye_c00473{bottom:794.921600pt;}
.yd_c00473{bottom:810.600000pt;}
.yc_c00473{bottom:832.679867pt;}
.yb_c00473{bottom:832.681600pt;}
.ya_c00473{bottom:848.360000pt;}
.y9_c00473{bottom:848.363200pt;}
.y8_c00473{bottom:870.759040pt;}
.y6_c00473{bottom:892.839040pt;}
.y7_c00473{bottom:892.840000pt;}
.y5_c00473{bottom:914.920000pt;}
.y4_c00473{bottom:937.960000pt;}
.y3_c00473{bottom:964.840000pt;}
.y2_c00473{bottom:1011.880000pt;}
.hb_c00473{height:17.116093pt;}
.ha_c00473{height:28.992000pt;}
.h9_c00473{height:33.630720pt;}
.h7_c00473{height:41.761453pt;}
.h5_c00473{height:42.656250pt;}
.h6_c00473{height:47.546880pt;}
.hc_c00473{height:50.346667pt;}
.h4_c00473{height:50.928601pt;}
.h3_c00473{height:57.984000pt;}
.h8_c00473{height:60.510720pt;}
.h2_c00473{height:1067.880000pt;}
.h0_c00473{height:1122.520000pt;}
.h1_c00473{height:1122.666667pt;}
.w3_c00473{width:22.240000pt;}
.w2_c00473{width:767.960000pt;}
.w0_c00473{width:793.720000pt;}
.w1_c00473{width:794.000000pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:12.880000pt;}
.x2_c00473{left:100.480133pt;}
.x39_c00473{left:110.322667pt;}
.x3f_c00473{left:112.107733pt;}
.x19_c00473{left:118.252933pt;}
.x42_c00473{left:124.193733pt;}
.x2c_c00473{left:126.536133pt;}
.x20_c00473{left:129.823600pt;}
.xb_c00473{left:130.865200pt;}
.x3a_c00473{left:133.489867pt;}
.x3_c00473{left:143.583333pt;}
.x11_c00473{left:156.051067pt;}
.xc_c00473{left:173.064400pt;}
.x12_c00473{left:178.250667pt;}
.x21_c00473{left:182.270800pt;}
.x1a_c00473{left:195.728800pt;}
.x2d_c00473{left:197.639067pt;}
.x3b_c00473{left:206.308933pt;}
.x4_c00473{left:210.654267pt;}
.x41_c00473{left:217.555333pt;}
.x13_c00473{left:219.022133pt;}
.x1b_c00473{left:225.520800pt;}
.x3c_c00473{left:228.508400pt;}
.x40_c00473{left:233.202800pt;}
.x2e_c00473{left:243.229467pt;}
.x14_c00473{left:244.194933pt;}
.x33_c00473{left:247.181600pt;}
.x43_c00473{left:279.763067pt;}
.x37_c00473{left:283.678667pt;}
.x6_c00473{left:289.076533pt;}
.x5_c00473{left:294.782267pt;}
.x1c_c00473{left:302.847600pt;}
.x15_c00473{left:307.205467pt;}
.x34_c00473{left:311.620133pt;}
.x35_c00473{left:319.032800pt;}
.x38_c00473{left:322.930933pt;}
.x16_c00473{left:324.231733pt;}
.x36_c00473{left:344.938800pt;}
.x7_c00473{left:355.731067pt;}
.x8_c00473{left:359.731067pt;}
.x2a_c00473{left:368.299867pt;}
.x2f_c00473{left:380.810533pt;}
.x28_c00473{left:411.595333pt;}
.x2b_c00473{left:412.762933pt;}
.x30_c00473{left:422.302800pt;}
.x9_c00473{left:425.505867pt;}
.xa_c00473{left:429.505867pt;}
.x31_c00473{left:431.325200pt;}
.x32_c00473{left:453.524667pt;}
.x24_c00473{left:460.829733pt;}
.xd_c00473{left:464.727600pt;}
.xe_c00473{left:469.546533pt;}
.x29_c00473{left:473.850267pt;}
.x22_c00473{left:478.143200pt;}
.x25_c00473{left:514.240000pt;}
.x17_c00473{left:518.036400pt;}
.x26_c00473{left:519.378000pt;}
.x23_c00473{left:522.606400pt;}
.x27_c00473{left:523.825867pt;}
.x1d_c00473{left:555.318667pt;}
.x18_c00473{left:556.555733pt;}
.x3d_c00473{left:597.692000pt;}
.x1e_c00473{left:603.318000pt;}
.x3e_c00473{left:631.037333pt;}
.xf_c00473{left:644.813733pt;}
.x1f_c00473{left:661.237600pt;}
.x10_c00473{left:667.013333pt;}
.x44_c00473{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da5ec8688bfaf58075e3e7c7.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_7204c74e6bc72013c8295281.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;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:ff3_c00474;src:url('chunks/assets/font_06a07cf75342ca441989a7b9.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_cda856edbc7a28a538ce6f1e.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00474{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00474{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00474{vertical-align:-24.480000px;}
.v0_c00474{vertical-align:0.000000px;}
.v1_c00474{vertical-align:30.240000px;}
.ls13_c00474{letter-spacing:-0.179568px;}
.ls12_c00474{letter-spacing:0.000000px;}
.ls17_c00474{letter-spacing:0.144000px;}
.lsb_c00474{letter-spacing:0.236160px;}
.ls27_c00474{letter-spacing:0.239760px;}
.ls18_c00474{letter-spacing:0.265680px;}
.ls2_c00474{letter-spacing:0.295200px;}
.ls8_c00474{letter-spacing:0.318816px;}
.ls1c_c00474{letter-spacing:0.328628px;}
.ls26_c00474{letter-spacing:0.399600px;}
.ls20_c00474{letter-spacing:0.425088px;}
.ls21_c00474{letter-spacing:0.438171px;}
.ls23_c00474{letter-spacing:0.478224px;}
.ls1b_c00474{letter-spacing:0.492942px;}
.ls9_c00474{letter-spacing:0.507744px;}
.ls3_c00474{letter-spacing:0.531360px;}
.ls10_c00474{letter-spacing:0.532722px;}
.ls7_c00474{letter-spacing:0.547713px;}
.lsa_c00474{letter-spacing:0.560880px;}
.ls1a_c00474{letter-spacing:0.690768px;}
.ls4_c00474{letter-spacing:0.708480px;}
.ls6_c00474{letter-spacing:0.712027px;}
.ls1f_c00474{letter-spacing:0.743904px;}
.ls22_c00474{letter-spacing:0.797040px;}
.ls19_c00474{letter-spacing:0.821570px;}
.lsc_c00474{letter-spacing:0.968256px;}
.ls1e_c00474{letter-spacing:4.811760px;}
.ls16_c00474{letter-spacing:5.335200px;}
.lse_c00474{letter-spacing:5.461200px;}
.lsd_c00474{letter-spacing:5.520240px;}
.lsf_c00474{letter-spacing:5.933520px;}
.ls0_c00474{letter-spacing:5.976000px;}
.ls1_c00474{letter-spacing:5.998800px;}
.ls11_c00474{letter-spacing:6.159920px;}
.ls14_c00474{letter-spacing:7.171200px;}
.ls25_c00474{letter-spacing:7.409520px;}
.ls24_c00474{letter-spacing:7.415424px;}
.ls5_c00474{letter-spacing:14.718672px;}
.ls1d_c00474{letter-spacing:17.493552px;}
.ls15_c00474{letter-spacing:20.080800px;}
.sc__c00474{text-shadow:none;}
.sc1_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00474{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc1_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00474{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9_c00474{word-spacing:-21.874320px;}
.ws2_c00474{word-spacing:-20.947680px;}
.ws0_c00474{word-spacing:-20.016000px;}
.ws4_c00474{word-spacing:-17.739827px;}
.ws5_c00474{word-spacing:-17.630284px;}
.ws7_c00474{word-spacing:-17.465970px;}
.ws6_c00474{word-spacing:-17.246885px;}
.ws8_c00474{word-spacing:-16.731936px;}
.wsa_c00474{word-spacing:-15.800417px;}
.wsb_c00474{word-spacing:-15.051600px;}
.ws1_c00474{word-spacing:-11.429712px;}
.ws3_c00474{word-spacing:-10.152000px;}
.wsc_c00474{word-spacing:0.000000px;}
._e_c00474{margin-left:-16.826400px;}
._c_c00474{margin-left:-14.169600px;}
._12_c00474{margin-left:-6.907680px;}
._11_c00474{margin-left:-5.667840px;}
._f_c00474{margin-left:-4.597920px;}
._10_c00474{margin-left:-3.047040px;}
._b_c00474{margin-left:-1.365000px;}
._5_c00474{width:1.152000px;}
._2_c00474{width:2.880000px;}
._6_c00474{width:4.680000px;}
._3_c00474{width:5.976000px;}
._1_c00474{width:8.064000px;}
._9_c00474{width:9.288000px;}
._a_c00474{width:13.104000px;}
._4_c00474{width:14.112000px;}
._d_c00474{width:16.475803px;}
._7_c00474{width:21.528000px;}
._8_c00474{width:44.352000px;}
._0_c00474{width:118.728000px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs4_c00474{font-size:36.000000px;}
.fs2_c00474{font-size:41.760000px;}
.fs7_c00474{font-size:53.280000px;}
.fs8_c00474{font-size:54.919767px;}
.fs3_c00474{font-size:56.160000px;}
.fs5_c00474{font-size:59.040000px;}
.fs9_c00474{font-size:60.000000px;}
.fs6_c00474{font-size:60.857039px;}
.fs0_c00474{font-size:72.000000px;}
.fs1_c00474{font-size:74.215901px;}
.y0_c00474{bottom:0.000000px;}
.y38_c00474{bottom:3.120000px;}
.y36_c00474{bottom:34.560000px;}
.y37_c00474{bottom:34.744580px;}
.y1_c00474{bottom:54.000000px;}
.y34_c00474{bottom:55.483560px;}
.y32_c00474{bottom:73.833840px;}
.y33_c00474{bottom:73.845000px;}
.y31_c00474{bottom:91.841040px;}
.y30_c00474{bottom:109.125000px;}
.y2f_c00474{bottom:109.126800px;}
.y2e_c00474{bottom:132.885000px;}
.y2d_c00474{bottom:144.045000px;}
.y2c_c00474{bottom:150.165000px;}
.y2a_c00474{bottom:161.682840px;}
.y2b_c00474{bottom:161.685000px;}
.y29_c00474{bottom:179.321040px;}
.y28_c00474{bottom:202.725000px;}
.y27_c00474{bottom:214.245000px;}
.y26_c00474{bottom:214.246800px;}
.y25_c00474{bottom:231.885000px;}
.y24_c00474{bottom:238.005000px;}
.y23_c00474{bottom:249.165000px;}
.y22_c00474{bottom:249.166800px;}
.y20_c00474{bottom:266.801040px;}
.y21_c00474{bottom:266.805000px;}
.y1f_c00474{bottom:284.085000px;}
.y1e_c00474{bottom:290.205000px;}
.y1d_c00474{bottom:301.725000px;}
.y1c_c00474{bottom:307.845000px;}
.y1b_c00474{bottom:334.485000px;}
.y1a_c00474{bottom:475.245000px;}
.y35_c00474{bottom:496.125000px;}
.y19_c00474{bottom:511.245000px;}
.y18_c00474{bottom:547.245000px;}
.y17_c00474{bottom:583.245000px;}
.y16_c00474{bottom:619.245000px;}
.y15_c00474{bottom:647.685000px;}
.y14_c00474{bottom:676.485000px;}
.y13_c00474{bottom:714.285000px;}
.y12_c00474{bottom:735.165000px;}
.y11_c00474{bottom:756.045000px;}
.y10_c00474{bottom:792.045000px;}
.yf_c00474{bottom:812.925000px;}
.ye_c00474{bottom:834.165000px;}
.yd_c00474{bottom:857.205000px;}
.yc_c00474{bottom:877.725000px;}
.yb_c00474{bottom:898.605000px;}
.ya_c00474{bottom:919.845000px;}
.y9_c00474{bottom:942.525000px;}
.y8_c00474{bottom:978.165000px;}
.y7_c00474{bottom:999.405000px;}
.y6_c00474{bottom:1022.445000px;}
.y5_c00474{bottom:1042.965000px;}
.y4_c00474{bottom:1063.845000px;}
.y3_c00474{bottom:1085.085000px;}
.y2_c00474{bottom:1138.365000px;}
.hc_c00474{height:19.255605px;}
.h6_c00474{height:32.616000px;}
.hb_c00474{height:42.398060px;}
.h7_c00474{height:46.981634px;}
.h9_c00474{height:47.160000px;}
.ha_c00474{height:48.271680px;}
.h8_c00474{height:53.490240px;}
.hd_c00474{height:56.640000px;}
.h4_c00474{height:57.294676px;}
.h3_c00474{height:65.232000px;}
.h5_c00474{height:68.074560px;}
.h2_c00474{height:1201.365000px;}
.h0_c00474{height:1262.835000px;}
.h1_c00474{height:1263.000000px;}
.w4_c00474{width:25.020000px;}
.w3_c00474{width:302.040000px;}
.w2_c00474{width:863.955000px;}
.w0_c00474{width:892.935000px;}
.w1_c00474{width:893.250000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:14.490000px;}
.x43_c00474{left:33.892800px;}
.x2_c00474{left:113.040150px;}
.x34_c00474{left:121.379850px;}
.x28_c00474{left:128.444400px;}
.x1a_c00474{left:130.831050px;}
.x9_c00474{left:149.057400px;}
.x35_c00474{left:158.893500px;}
.x3_c00474{left:161.531250px;}
.x1b_c00474{left:163.588650px;}
.x24_c00474{left:185.532750px;}
.x25_c00474{left:193.872000px;}
.x3d_c00474{left:195.795750px;}
.x39_c00474{left:208.034850px;}
.x1c_c00474{left:211.674000px;}
.x16_c00474{left:218.894850px;}
.x3a_c00474{left:228.028950px;}
.xa_c00474{left:229.048050px;}
.xb_c00474{left:235.554600px;}
.x4_c00474{left:236.986050px;}
.x29_c00474{left:239.670750px;}
.x31_c00474{left:253.074450px;}
.x2a_c00474{left:259.650450px;}
.x17_c00474{left:268.917900px;}
.x36_c00474{left:276.428100px;}
.x42_c00474{left:286.290000px;}
.x26_c00474{left:288.878850px;}
.xc_c00474{left:303.575250px;}
.x11_c00474{left:316.160850px;}
.x32_c00474{left:320.616600px;}
.xf_c00474{left:335.762700px;}
.x2b_c00474{left:342.556950px;}
.x12_c00474{left:345.174600px;}
.x2c_c00474{left:362.536800px;}
.x10_c00474{left:385.783800px;}
.x27_c00474{left:390.546000px;}
.x37_c00474{left:412.293000px;}
.x3b_c00474{left:426.293400px;}
.x33_c00474{left:437.356500px;}
.x2d_c00474{left:446.267550px;}
.x38_c00474{left:462.302100px;}
.x21_c00474{left:468.518550px;}
.x5_c00474{left:477.072150px;}
.x18_c00474{left:481.549050px;}
.x22_c00474{left:486.160050px;}
.x3e_c00474{left:492.511950px;}
.x3c_c00474{left:503.256600px;}
.x19_c00474{left:505.713150px;}
.x23_c00474{left:511.134600px;}
.x6_c00474{left:535.801050px;}
.x3f_c00474{left:565.005150px;}
.x15_c00474{left:580.429650px;}
.x1d_c00474{left:590.907600px;}
.x1e_c00474{left:598.690350px;}
.x2e_c00474{left:604.995900px;}
.x1f_c00474{left:623.664900px;}
.x2f_c00474{left:630.371700px;}
.x13_c00474{left:635.303850px;}
.x7_c00474{left:648.677850px;}
.x14_c00474{left:685.324950px;}
.x20_c00474{left:696.211650px;}
.xd_c00474{left:700.368900px;}
.x40_c00474{left:705.270300px;}
.x30_c00474{left:708.706350px;}
.x41_c00474{left:727.050600px;}
.x8_c00474{left:739.392300px;}
.xe_c00474{left:750.390000px;}
.x44_c00474{left:759.914612px;}
@media print{
.v2_c00474{vertical-align:-21.760000pt;}
.v0_c00474{vertical-align:0.000000pt;}
.v1_c00474{vertical-align:26.880000pt;}
.ls13_c00474{letter-spacing:-0.159616pt;}
.ls12_c00474{letter-spacing:0.000000pt;}
.ls17_c00474{letter-spacing:0.128000pt;}
.lsb_c00474{letter-spacing:0.209920pt;}
.ls27_c00474{letter-spacing:0.213120pt;}
.ls18_c00474{letter-spacing:0.236160pt;}
.ls2_c00474{letter-spacing:0.262400pt;}
.ls8_c00474{letter-spacing:0.283392pt;}
.ls1c_c00474{letter-spacing:0.292114pt;}
.ls26_c00474{letter-spacing:0.355200pt;}
.ls20_c00474{letter-spacing:0.377856pt;}
.ls21_c00474{letter-spacing:0.389485pt;}
.ls23_c00474{letter-spacing:0.425088pt;}
.ls1b_c00474{letter-spacing:0.438171pt;}
.ls9_c00474{letter-spacing:0.451328pt;}
.ls3_c00474{letter-spacing:0.472320pt;}
.ls10_c00474{letter-spacing:0.473530pt;}
.ls7_c00474{letter-spacing:0.486856pt;}
.lsa_c00474{letter-spacing:0.498560pt;}
.ls1a_c00474{letter-spacing:0.614016pt;}
.ls4_c00474{letter-spacing:0.629760pt;}
.ls6_c00474{letter-spacing:0.632913pt;}
.ls1f_c00474{letter-spacing:0.661248pt;}
.ls22_c00474{letter-spacing:0.708480pt;}
.ls19_c00474{letter-spacing:0.730284pt;}
.lsc_c00474{letter-spacing:0.860672pt;}
.ls1e_c00474{letter-spacing:4.277120pt;}
.ls16_c00474{letter-spacing:4.742400pt;}
.lse_c00474{letter-spacing:4.854400pt;}
.lsd_c00474{letter-spacing:4.906880pt;}
.lsf_c00474{letter-spacing:5.274240pt;}
.ls0_c00474{letter-spacing:5.312000pt;}
.ls1_c00474{letter-spacing:5.332267pt;}
.ls11_c00474{letter-spacing:5.475484pt;}
.ls14_c00474{letter-spacing:6.374400pt;}
.ls25_c00474{letter-spacing:6.586240pt;}
.ls24_c00474{letter-spacing:6.591488pt;}
.ls5_c00474{letter-spacing:13.083264pt;}
.ls1d_c00474{letter-spacing:15.549824pt;}
.ls15_c00474{letter-spacing:17.849600pt;}
.ws9_c00474{word-spacing:-19.443840pt;}
.ws2_c00474{word-spacing:-18.620160pt;}
.ws0_c00474{word-spacing:-17.792000pt;}
.ws4_c00474{word-spacing:-15.768735pt;}
.ws5_c00474{word-spacing:-15.671364pt;}
.ws7_c00474{word-spacing:-15.525307pt;}
.ws6_c00474{word-spacing:-15.330564pt;}
.ws8_c00474{word-spacing:-14.872832pt;}
.wsa_c00474{word-spacing:-14.044815pt;}
.wsb_c00474{word-spacing:-13.379200pt;}
.ws1_c00474{word-spacing:-10.159744pt;}
.ws3_c00474{word-spacing:-9.024000pt;}
.wsc_c00474{word-spacing:0.000000pt;}
._e_c00474{margin-left:-14.956800pt;}
._c_c00474{margin-left:-12.595200pt;}
._12_c00474{margin-left:-6.140160pt;}
._11_c00474{margin-left:-5.038080pt;}
._f_c00474{margin-left:-4.087040pt;}
._10_c00474{margin-left:-2.708480pt;}
._b_c00474{margin-left:-1.213333pt;}
._5_c00474{width:1.024000pt;}
._2_c00474{width:2.560000pt;}
._6_c00474{width:4.160000pt;}
._3_c00474{width:5.312000pt;}
._1_c00474{width:7.168000pt;}
._9_c00474{width:8.256000pt;}
._a_c00474{width:11.648000pt;}
._4_c00474{width:12.544000pt;}
._d_c00474{width:14.645158pt;}
._7_c00474{width:19.136000pt;}
._8_c00474{width:39.424000pt;}
._0_c00474{width:105.536000pt;}
.fs4_c00474{font-size:32.000000pt;}
.fs2_c00474{font-size:37.120000pt;}
.fs7_c00474{font-size:47.360000pt;}
.fs8_c00474{font-size:48.817571pt;}
.fs3_c00474{font-size:49.920000pt;}
.fs5_c00474{font-size:52.480000pt;}
.fs9_c00474{font-size:53.333333pt;}
.fs6_c00474{font-size:54.095146pt;}
.fs0_c00474{font-size:64.000000pt;}
.fs1_c00474{font-size:65.969690pt;}
.y0_c00474{bottom:0.000000pt;}
.y38_c00474{bottom:2.773333pt;}
.y36_c00474{bottom:30.720000pt;}
.y37_c00474{bottom:30.884071pt;}
.y1_c00474{bottom:48.000000pt;}
.y34_c00474{bottom:49.318720pt;}
.y32_c00474{bottom:65.630080pt;}
.y33_c00474{bottom:65.640000pt;}
.y31_c00474{bottom:81.636480pt;}
.y30_c00474{bottom:97.000000pt;}
.y2f_c00474{bottom:97.001600pt;}
.y2e_c00474{bottom:118.120000pt;}
.y2d_c00474{bottom:128.040000pt;}
.y2c_c00474{bottom:133.480000pt;}
.y2a_c00474{bottom:143.718080pt;}
.y2b_c00474{bottom:143.720000pt;}
.y29_c00474{bottom:159.396480pt;}
.y28_c00474{bottom:180.200000pt;}
.y27_c00474{bottom:190.440000pt;}
.y26_c00474{bottom:190.441600pt;}
.y25_c00474{bottom:206.120000pt;}
.y24_c00474{bottom:211.560000pt;}
.y23_c00474{bottom:221.480000pt;}
.y22_c00474{bottom:221.481600pt;}
.y20_c00474{bottom:237.156480pt;}
.y21_c00474{bottom:237.160000pt;}
.y1f_c00474{bottom:252.520000pt;}
.y1e_c00474{bottom:257.960000pt;}
.y1d_c00474{bottom:268.200000pt;}
.y1c_c00474{bottom:273.640000pt;}
.y1b_c00474{bottom:297.320000pt;}
.y1a_c00474{bottom:422.440000pt;}
.y35_c00474{bottom:441.000000pt;}
.y19_c00474{bottom:454.440000pt;}
.y18_c00474{bottom:486.440000pt;}
.y17_c00474{bottom:518.440000pt;}
.y16_c00474{bottom:550.440000pt;}
.y15_c00474{bottom:575.720000pt;}
.y14_c00474{bottom:601.320000pt;}
.y13_c00474{bottom:634.920000pt;}
.y12_c00474{bottom:653.480000pt;}
.y11_c00474{bottom:672.040000pt;}
.y10_c00474{bottom:704.040000pt;}
.yf_c00474{bottom:722.600000pt;}
.ye_c00474{bottom:741.480000pt;}
.yd_c00474{bottom:761.960000pt;}
.yc_c00474{bottom:780.200000pt;}
.yb_c00474{bottom:798.760000pt;}
.ya_c00474{bottom:817.640000pt;}
.y9_c00474{bottom:837.800000pt;}
.y8_c00474{bottom:869.480000pt;}
.y7_c00474{bottom:888.360000pt;}
.y6_c00474{bottom:908.840000pt;}
.y5_c00474{bottom:927.080000pt;}
.y4_c00474{bottom:945.640000pt;}
.y3_c00474{bottom:964.520000pt;}
.y2_c00474{bottom:1011.880000pt;}
.hc_c00474{height:17.116093pt;}
.h6_c00474{height:28.992000pt;}
.hb_c00474{height:37.687165pt;}
.h7_c00474{height:41.761453pt;}
.h9_c00474{height:41.920000pt;}
.ha_c00474{height:42.908160pt;}
.h8_c00474{height:47.546880pt;}
.hd_c00474{height:50.346667pt;}
.h4_c00474{height:50.928601pt;}
.h3_c00474{height:57.984000pt;}
.h5_c00474{height:60.510720pt;}
.h2_c00474{height:1067.880000pt;}
.h0_c00474{height:1122.520000pt;}
.h1_c00474{height:1122.666667pt;}
.w4_c00474{width:22.240000pt;}
.w3_c00474{width:268.480000pt;}
.w2_c00474{width:767.960000pt;}
.w0_c00474{width:793.720000pt;}
.w1_c00474{width:794.000000pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:12.880000pt;}
.x43_c00474{left:30.126933pt;}
.x2_c00474{left:100.480133pt;}
.x34_c00474{left:107.893200pt;}
.x28_c00474{left:114.172800pt;}
.x1a_c00474{left:116.294267pt;}
.x9_c00474{left:132.495467pt;}
.x35_c00474{left:141.238667pt;}
.x3_c00474{left:143.583333pt;}
.x1b_c00474{left:145.412133pt;}
.x24_c00474{left:164.918000pt;}
.x25_c00474{left:172.330667pt;}
.x3d_c00474{left:174.040667pt;}
.x39_c00474{left:184.919867pt;}
.x1c_c00474{left:188.154667pt;}
.x16_c00474{left:194.573200pt;}
.x3a_c00474{left:202.692400pt;}
.xa_c00474{left:203.598267pt;}
.xb_c00474{left:209.381867pt;}
.x4_c00474{left:210.654267pt;}
.x29_c00474{left:213.040667pt;}
.x31_c00474{left:224.955067pt;}
.x2a_c00474{left:230.800400pt;}
.x17_c00474{left:239.038133pt;}
.x36_c00474{left:245.713867pt;}
.x42_c00474{left:254.480000pt;}
.x26_c00474{left:256.781200pt;}
.xc_c00474{left:269.844667pt;}
.x11_c00474{left:281.031867pt;}
.x32_c00474{left:284.992533pt;}
.xf_c00474{left:298.455733pt;}
.x2b_c00474{left:304.495067pt;}
.x12_c00474{left:306.821867pt;}
.x2c_c00474{left:322.254933pt;}
.x10_c00474{left:342.918933pt;}
.x27_c00474{left:347.152000pt;}
.x37_c00474{left:366.482667pt;}
.x3b_c00474{left:378.927467pt;}
.x33_c00474{left:388.761333pt;}
.x2d_c00474{left:396.682267pt;}
.x38_c00474{left:410.935200pt;}
.x21_c00474{left:416.460933pt;}
.x5_c00474{left:424.064133pt;}
.x18_c00474{left:428.043600pt;}
.x22_c00474{left:432.142267pt;}
.x3e_c00474{left:437.788400pt;}
.x3c_c00474{left:447.339200pt;}
.x19_c00474{left:449.522800pt;}
.x23_c00474{left:454.341867pt;}
.x6_c00474{left:476.267600pt;}
.x3f_c00474{left:502.226800pt;}
.x15_c00474{left:515.937467pt;}
.x1d_c00474{left:525.251200pt;}
.x1e_c00474{left:532.169200pt;}
.x2e_c00474{left:537.774133pt;}
.x1f_c00474{left:554.368800pt;}
.x2f_c00474{left:560.330400pt;}
.x13_c00474{left:564.714533pt;}
.x7_c00474{left:576.602533pt;}
.x14_c00474{left:609.177733pt;}
.x20_c00474{left:618.854800pt;}
.xd_c00474{left:622.550133pt;}
.x40_c00474{left:626.906933pt;}
.x30_c00474{left:629.961200pt;}
.x41_c00474{left:646.267200pt;}
.x8_c00474{left:657.237600pt;}
.xe_c00474{left:667.013333pt;}
.x44_c00474{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_beb8ff76b78208ddd1ede7ce.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_4d0bb85db3c3a4bab620af19.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;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:ff3_c00475;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00475;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00475;src:url('chunks/assets/font_c441d70658821f48fcabe033.woff2')format("woff");}.ff5_c00475{font-family:ff5_c00475;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00475{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00475{vertical-align:-24.480000px;}
.v0_c00475{vertical-align:0.000000px;}
.v1_c00475{vertical-align:30.240000px;}
.ls7_c00475{letter-spacing:0.000000px;}
.ls3_c00475{letter-spacing:0.177840px;}
.lsb_c00475{letter-spacing:0.265680px;}
.ls1_c00475{letter-spacing:0.382440px;}
.lsa_c00475{letter-spacing:0.478224px;}
.ls8_c00475{letter-spacing:5.430672px;}
.ls0_c00475{letter-spacing:5.976000px;}
.ls4_c00475{letter-spacing:5.980200px;}
.ls2_c00475{letter-spacing:5.991000px;}
.ls6_c00475{letter-spacing:6.159920px;}
.ls9_c00475{letter-spacing:7.940880px;}
.ls5_c00475{letter-spacing:54.864000px;}
.sc__c00475{text-shadow:none;}
.sc1_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00475{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc1_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00475{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00475{word-spacing:-21.043152px;}
.ws1_c00475{word-spacing:-10.008000px;}
.ws2_c00475{word-spacing:0.000000px;}
._5_c00475{margin-left:-8.560800px;}
._4_c00475{margin-left:-7.380000px;}
._2_c00475{margin-left:-1.179360px;}
._6_c00475{width:1.239840px;}
._3_c00475{width:4.320000px;}
._0_c00475{width:7.416000px;}
._1_c00475{width:21.312000px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs4_c00475{font-size:36.000000px;}
.fs2_c00475{font-size:41.760000px;}
.fs3_c00475{font-size:56.160000px;}
.fs5_c00475{font-size:59.040000px;}
.fs6_c00475{font-size:60.000000px;}
.fs0_c00475{font-size:72.000000px;}
.fs1_c00475{font-size:74.215901px;}
.y0_c00475{bottom:0.000000px;}
.y25_c00475{bottom:3.120000px;}
.y24_c00475{bottom:34.744580px;}
.y1_c00475{bottom:54.000000px;}
.y23_c00475{bottom:61.605000px;}
.y22_c00475{bottom:78.885000px;}
.y21_c00475{bottom:90.401040px;}
.y20_c00475{bottom:113.805000px;}
.y1f_c00475{bottom:140.445000px;}
.y1e_c00475{bottom:228.285000px;}
.y1d_c00475{bottom:249.525000px;}
.y1c_c00475{bottom:285.525000px;}
.y1b_c00475{bottom:321.525000px;}
.y1a_c00475{bottom:357.525000px;}
.y19_c00475{bottom:378.405000px;}
.y18_c00475{bottom:399.285000px;}
.y17_c00475{bottom:420.525000px;}
.y16_c00475{bottom:456.525000px;}
.y15_c00475{bottom:492.525000px;}
.y14_c00475{bottom:528.525000px;}
.y13_c00475{bottom:549.405000px;}
.y12_c00475{bottom:585.405000px;}
.y11_c00475{bottom:621.405000px;}
.y10_c00475{bottom:657.405000px;}
.yf_c00475{bottom:693.405000px;}
.ye_c00475{bottom:729.405000px;}
.yd_c00475{bottom:765.405000px;}
.yc_c00475{bottom:786.285000px;}
.yb_c00475{bottom:822.285000px;}
.ya_c00475{bottom:858.645000px;}
.y9_c00475{bottom:894.645000px;}
.y8_c00475{bottom:915.525000px;}
.y7_c00475{bottom:951.525000px;}
.y6_c00475{bottom:972.405000px;}
.y5_c00475{bottom:1008.405000px;}
.y4_c00475{bottom:1046.925000px;}
.y3_c00475{bottom:1085.085000px;}
.y2_c00475{bottom:1138.365000px;}
.h8_c00475{height:19.255605px;}
.h6_c00475{height:32.616000px;}
.h7_c00475{height:53.490240px;}
.h9_c00475{height:56.640000px;}
.h4_c00475{height:57.294676px;}
.h3_c00475{height:65.232000px;}
.h5_c00475{height:68.074560px;}
.h2_c00475{height:1201.365000px;}
.h0_c00475{height:1262.835000px;}
.h1_c00475{height:1263.000000px;}
.w3_c00475{width:25.020000px;}
.w2_c00475{width:863.955000px;}
.w0_c00475{width:892.935000px;}
.w1_c00475{width:893.250000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:14.490000px;}
.x2_c00475{left:113.040150px;}
.x7_c00475{left:140.037600px;}
.x3_c00475{left:161.531250px;}
.x8_c00475{left:167.037600px;}
.xd_c00475{left:223.054350px;}
.xe_c00475{left:234.052050px;}
.x4_c00475{left:236.986050px;}
.x9_c00475{left:289.023150px;}
.xa_c00475{left:395.041200px;}
.x5_c00475{left:413.967000px;}
.xb_c00475{left:443.101350px;}
.x6_c00475{left:454.861500px;}
.xc_c00475{left:509.124300px;}
.xf_c00475{left:759.914612px;}
@media print{
.v2_c00475{vertical-align:-21.760000pt;}
.v0_c00475{vertical-align:0.000000pt;}
.v1_c00475{vertical-align:26.880000pt;}
.ls7_c00475{letter-spacing:0.000000pt;}
.ls3_c00475{letter-spacing:0.158080pt;}
.lsb_c00475{letter-spacing:0.236160pt;}
.ls1_c00475{letter-spacing:0.339947pt;}
.lsa_c00475{letter-spacing:0.425088pt;}
.ls8_c00475{letter-spacing:4.827264pt;}
.ls0_c00475{letter-spacing:5.312000pt;}
.ls4_c00475{letter-spacing:5.315733pt;}
.ls2_c00475{letter-spacing:5.325333pt;}
.ls6_c00475{letter-spacing:5.475484pt;}
.ls9_c00475{letter-spacing:7.058560pt;}
.ls5_c00475{letter-spacing:48.768000pt;}
.ws0_c00475{word-spacing:-18.705024pt;}
.ws1_c00475{word-spacing:-8.896000pt;}
.ws2_c00475{word-spacing:0.000000pt;}
._5_c00475{margin-left:-7.609600pt;}
._4_c00475{margin-left:-6.560000pt;}
._2_c00475{margin-left:-1.048320pt;}
._6_c00475{width:1.102080pt;}
._3_c00475{width:3.840000pt;}
._0_c00475{width:6.592000pt;}
._1_c00475{width:18.944000pt;}
.fs4_c00475{font-size:32.000000pt;}
.fs2_c00475{font-size:37.120000pt;}
.fs3_c00475{font-size:49.920000pt;}
.fs5_c00475{font-size:52.480000pt;}
.fs6_c00475{font-size:53.333333pt;}
.fs0_c00475{font-size:64.000000pt;}
.fs1_c00475{font-size:65.969690pt;}
.y0_c00475{bottom:0.000000pt;}
.y25_c00475{bottom:2.773333pt;}
.y24_c00475{bottom:30.884071pt;}
.y1_c00475{bottom:48.000000pt;}
.y23_c00475{bottom:54.760000pt;}
.y22_c00475{bottom:70.120000pt;}
.y21_c00475{bottom:80.356480pt;}
.y20_c00475{bottom:101.160000pt;}
.y1f_c00475{bottom:124.840000pt;}
.y1e_c00475{bottom:202.920000pt;}
.y1d_c00475{bottom:221.800000pt;}
.y1c_c00475{bottom:253.800000pt;}
.y1b_c00475{bottom:285.800000pt;}
.y1a_c00475{bottom:317.800000pt;}
.y19_c00475{bottom:336.360000pt;}
.y18_c00475{bottom:354.920000pt;}
.y17_c00475{bottom:373.800000pt;}
.y16_c00475{bottom:405.800000pt;}
.y15_c00475{bottom:437.800000pt;}
.y14_c00475{bottom:469.800000pt;}
.y13_c00475{bottom:488.360000pt;}
.y12_c00475{bottom:520.360000pt;}
.y11_c00475{bottom:552.360000pt;}
.y10_c00475{bottom:584.360000pt;}
.yf_c00475{bottom:616.360000pt;}
.ye_c00475{bottom:648.360000pt;}
.yd_c00475{bottom:680.360000pt;}
.yc_c00475{bottom:698.920000pt;}
.yb_c00475{bottom:730.920000pt;}
.ya_c00475{bottom:763.240000pt;}
.y9_c00475{bottom:795.240000pt;}
.y8_c00475{bottom:813.800000pt;}
.y7_c00475{bottom:845.800000pt;}
.y6_c00475{bottom:864.360000pt;}
.y5_c00475{bottom:896.360000pt;}
.y4_c00475{bottom:930.600000pt;}
.y3_c00475{bottom:964.520000pt;}
.y2_c00475{bottom:1011.880000pt;}
.h8_c00475{height:17.116093pt;}
.h6_c00475{height:28.992000pt;}
.h7_c00475{height:47.546880pt;}
.h9_c00475{height:50.346667pt;}
.h4_c00475{height:50.928601pt;}
.h3_c00475{height:57.984000pt;}
.h5_c00475{height:60.510720pt;}
.h2_c00475{height:1067.880000pt;}
.h0_c00475{height:1122.520000pt;}
.h1_c00475{height:1122.666667pt;}
.w3_c00475{width:22.240000pt;}
.w2_c00475{width:767.960000pt;}
.w0_c00475{width:793.720000pt;}
.w1_c00475{width:794.000000pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:12.880000pt;}
.x2_c00475{left:100.480133pt;}
.x7_c00475{left:124.477867pt;}
.x3_c00475{left:143.583333pt;}
.x8_c00475{left:148.477867pt;}
.xd_c00475{left:198.270533pt;}
.xe_c00475{left:208.046267pt;}
.x4_c00475{left:210.654267pt;}
.x9_c00475{left:256.909467pt;}
.xa_c00475{left:351.147733pt;}
.x5_c00475{left:367.970667pt;}
.xb_c00475{left:393.867867pt;}
.x6_c00475{left:404.321333pt;}
.xc_c00475{left:452.554933pt;}
.xf_c00475{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eeea491c4c7ccb91f76d20d6.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_af8ebe273307a6df13f4afc5.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;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:ff3_c00476;src:url('chunks/assets/font_e79990cebaf07b27b5e11907.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_d43dfe85916ab9975158ff9d.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00476;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00476;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff6_c00476{font-family:ff6_c00476;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00476;src:url('chunks/assets/font_ec6ff1964ad10bc3f8157b4a.woff2')format("woff");}.ff7_c00476{font-family:ff7_c00476;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00476{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00476{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m3_c00476{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00476{vertical-align:-30.240000px;}
.v3_c00476{vertical-align:-24.480000px;}
.v0_c00476{vertical-align:0.000000px;}
.v1_c00476{vertical-align:30.240000px;}
.lsc_c00476{letter-spacing:0.000000px;}
.ls1c_c00476{letter-spacing:0.202464px;}
.ls1d_c00476{letter-spacing:0.239760px;}
.lsd_c00476{letter-spacing:0.265680px;}
.ls15_c00476{letter-spacing:0.371952px;}
.ls1a_c00476{letter-spacing:0.399600px;}
.ls18_c00476{letter-spacing:0.478224px;}
.ls10_c00476{letter-spacing:0.531360px;}
.lsa_c00476{letter-spacing:0.532722px;}
.ls8_c00476{letter-spacing:0.549072px;}
.ls3_c00476{letter-spacing:0.560880px;}
.ls11_c00476{letter-spacing:0.584496px;}
.ls9_c00476{letter-spacing:0.602485px;}
.ls4_c00476{letter-spacing:0.657256px;}
.lse_c00476{letter-spacing:0.690768px;}
.ls2_c00476{letter-spacing:0.712027px;}
.ls16_c00476{letter-spacing:0.718113px;}
.lsf_c00476{letter-spacing:0.743904px;}
.ls6_c00476{letter-spacing:0.770040px;}
.ls19_c00476{letter-spacing:0.797040px;}
.ls1b_c00476{letter-spacing:4.923072px;}
.ls12_c00476{letter-spacing:5.082912px;}
.ls13_c00476{letter-spacing:5.335200px;}
.ls17_c00476{letter-spacing:5.408064px;}
.ls0_c00476{letter-spacing:5.976000px;}
.ls7_c00476{letter-spacing:5.978400px;}
.ls1_c00476{letter-spacing:6.048000px;}
.lsb_c00476{letter-spacing:6.159920px;}
.ls5_c00476{letter-spacing:6.344400px;}
.ls14_c00476{letter-spacing:8.761536px;}
.sc__c00476{text-shadow:none;}
.sc1_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00476{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc1_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00476{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00476{word-spacing:-20.947680px;}
.ws2_c00476{word-spacing:-19.894752px;}
.ws5_c00476{word-spacing:-19.734912px;}
.ws0_c00476{word-spacing:-17.630284px;}
.ws1_c00476{word-spacing:-17.575513px;}
.ws6_c00476{word-spacing:-15.800417px;}
.ws7_c00476{word-spacing:-15.051600px;}
.ws4_c00476{word-spacing:-10.008000px;}
.ws8_c00476{word-spacing:0.000000px;}
._c_c00476{margin-left:-9.328320px;}
._b_c00476{margin-left:-8.206560px;}
._a_c00476{margin-left:-6.545497px;}
._e_c00476{margin-left:-4.900320px;}
._f_c00476{margin-left:-3.845543px;}
._1_c00476{margin-left:-1.062720px;}
._0_c00476{width:1.121760px;}
._8_c00476{width:3.384000px;}
._3_c00476{width:5.785920px;}
._10_c00476{width:7.320960px;}
._d_c00476{width:8.584416px;}
._9_c00476{width:11.359099px;}
._5_c00476{width:12.702821px;}
._4_c00476{width:13.952589px;}
._2_c00476{width:15.291360px;}
._6_c00476{width:22.824000px;}
._7_c00476{width:26.352000px;}
.fc1_c00476{color:transparent;}
.fc0_c00476{color:rgb(0,0,0);}
.fs9_c00476{font-size:36.000000px;}
.fs7_c00476{font-size:41.760000px;}
.fs6_c00476{font-size:43.045223px;}
.fs5_c00476{font-size:53.280000px;}
.fsa_c00476{font-size:54.919767px;}
.fs8_c00476{font-size:56.160000px;}
.fs4_c00476{font-size:59.040000px;}
.fsb_c00476{font-size:60.000000px;}
.fs3_c00476{font-size:60.857039px;}
.fs2_c00476{font-size:64.800000px;}
.fs0_c00476{font-size:72.000000px;}
.fs1_c00476{font-size:74.215901px;}
.y0_c00476{bottom:0.000000px;}
.y2a_c00476{bottom:3.120000px;}
.y28_c00476{bottom:3.960000px;}
.y27_c00476{bottom:34.560000px;}
.y29_c00476{bottom:34.744580px;}
.y1_c00476{bottom:54.000000px;}
.y25_c00476{bottom:55.485000px;}
.y24_c00476{bottom:61.605000px;}
.y23_c00476{bottom:78.885000px;}
.y22_c00476{bottom:90.402840px;}
.y21_c00476{bottom:107.686800px;}
.y20_c00476{bottom:125.325000px;}
.y1f_c00476{bottom:125.326800px;}
.y1e_c00476{bottom:142.965000px;}
.y1d_c00476{bottom:149.085000px;}
.y1c_c00476{bottom:175.725000px;}
.y26_c00476{bottom:346.365000px;}
.y1b_c00476{bottom:446.805000px;}
.y1a_c00476{bottom:482.805000px;}
.y19_c00476{bottom:518.805000px;}
.y18_c00476{bottom:554.805000px;}
.y17_c00476{bottom:590.805000px;}
.y16_c00476{bottom:626.805000px;}
.y15_c00476{bottom:648.045000px;}
.y14_c00476{bottom:684.045000px;}
.y13_c00476{bottom:704.925000px;}
.y12_c00476{bottom:725.805000px;}
.y11_c00476{bottom:747.045000px;}
.yf_c00476{bottom:767.925000px;}
.y10_c00476{bottom:775.485000px;}
.ye_c00476{bottom:788.805000px;}
.yd_c00476{bottom:810.045000px;}
.yc_c00476{bottom:846.046800px;}
.yb_c00476{bottom:880.245000px;}
.ya_c00476{bottom:906.528600px;}
.y9_c00476{bottom:924.166800px;}
.y8_c00476{bottom:941.805000px;}
.y7_c00476{bottom:966.645000px;}
.y6_c00476{bottom:991.845000px;}
.y5_c00476{bottom:1019.205000px;}
.y4_c00476{bottom:1049.445000px;}
.y3_c00476{bottom:1085.085000px;}
.y2_c00476{bottom:1138.365000px;}
.h11_c00476{height:19.255605px;}
.hd_c00476{height:32.616000px;}
.ha_c00476{height:33.230912px;}
.h10_c00476{height:42.398060px;}
.h7_c00476{height:46.981634px;}
.he_c00476{height:47.160000px;}
.h5_c00476{height:47.988281px;}
.hf_c00476{height:48.271680px;}
.h8_c00476{height:53.490240px;}
.h12_c00476{height:56.640000px;}
.h4_c00476{height:57.294676px;}
.h6_c00476{height:58.708800px;}
.hc_c00476{height:64.401590px;}
.h9_c00476{height:65.224800px;}
.h3_c00476{height:65.232000px;}
.hb_c00476{height:68.074560px;}
.h2_c00476{height:1201.365000px;}
.h0_c00476{height:1262.835000px;}
.h1_c00476{height:1263.000000px;}
.w4_c00476{width:25.020000px;}
.w3_c00476{width:642.600000px;}
.w2_c00476{width:863.955000px;}
.w0_c00476{width:892.935000px;}
.w1_c00476{width:893.250000px;}
.x0_c00476{left:0.000000px;}
.x2d_c00476{left:3.240150px;}
.x1_c00476{left:14.490000px;}
.x2_c00476{left:113.040150px;}
.x29_c00476{left:122.213700px;}
.x2a_c00476{left:124.290000px;}
.x8_c00476{left:138.014700px;}
.xf_c00476{left:145.456350px;}
.x3_c00476{left:161.531250px;}
.x13_c00476{left:189.907800px;}
.x17_c00476{left:199.379550px;}
.x9_c00476{left:204.701700px;}
.xa_c00476{left:229.676100px;}
.x4_c00476{left:236.986050px;}
.x14_c00476{left:242.934750px;}
.x10_c00476{left:249.250200px;}
.xb_c00476{left:275.544000px;}
.x18_c00476{left:286.372200px;}
.xc_c00476{left:303.863550px;}
.x19_c00476{left:305.734500px;}
.x5_c00476{left:325.672050px;}
.x26_c00476{left:333.772650px;}
.x1f_c00476{left:349.310250px;}
.x1b_c00476{left:352.993950px;}
.x1a_c00476{left:358.725600px;}
.x2b_c00476{left:381.796500px;}
.x6_c00476{left:386.665950px;}
.x7_c00476{left:391.165950px;}
.x2c_c00476{left:404.272950px;}
.x1c_c00476{left:439.986750px;}
.xd_c00476{left:443.957550px;}
.x1d_c00476{left:458.994450px;}
.xe_c00476{left:463.112250px;}
.x1e_c00476{left:511.985550px;}
.x15_c00476{left:518.096250px;}
.x11_c00476{left:547.200000px;}
.x20_c00476{left:550.188000px;}
.x12_c00476{left:552.979500px;}
.x16_c00476{left:563.950200px;}
.x21_c00476{left:608.994900px;}
.x27_c00476{left:618.628350px;}
.x22_c00476{left:623.627550px;}
.x23_c00476{left:675.774600px;}
.x24_c00476{left:680.769300px;}
.x25_c00476{left:705.743850px;}
.x28_c00476{left:724.085850px;}
.x2e_c00476{left:759.914612px;}
@media print{
.v2_c00476{vertical-align:-26.880000pt;}
.v3_c00476{vertical-align:-21.760000pt;}
.v0_c00476{vertical-align:0.000000pt;}
.v1_c00476{vertical-align:26.880000pt;}
.lsc_c00476{letter-spacing:0.000000pt;}
.ls1c_c00476{letter-spacing:0.179968pt;}
.ls1d_c00476{letter-spacing:0.213120pt;}
.lsd_c00476{letter-spacing:0.236160pt;}
.ls15_c00476{letter-spacing:0.330624pt;}
.ls1a_c00476{letter-spacing:0.355200pt;}
.ls18_c00476{letter-spacing:0.425088pt;}
.ls10_c00476{letter-spacing:0.472320pt;}
.lsa_c00476{letter-spacing:0.473530pt;}
.ls8_c00476{letter-spacing:0.488064pt;}
.ls3_c00476{letter-spacing:0.498560pt;}
.ls11_c00476{letter-spacing:0.519552pt;}
.ls9_c00476{letter-spacing:0.535542pt;}
.ls4_c00476{letter-spacing:0.584228pt;}
.lse_c00476{letter-spacing:0.614016pt;}
.ls2_c00476{letter-spacing:0.632913pt;}
.ls16_c00476{letter-spacing:0.638323pt;}
.lsf_c00476{letter-spacing:0.661248pt;}
.ls6_c00476{letter-spacing:0.684480pt;}
.ls19_c00476{letter-spacing:0.708480pt;}
.ls1b_c00476{letter-spacing:4.376064pt;}
.ls12_c00476{letter-spacing:4.518144pt;}
.ls13_c00476{letter-spacing:4.742400pt;}
.ls17_c00476{letter-spacing:4.807168pt;}
.ls0_c00476{letter-spacing:5.312000pt;}
.ls7_c00476{letter-spacing:5.314133pt;}
.ls1_c00476{letter-spacing:5.376000pt;}
.lsb_c00476{letter-spacing:5.475484pt;}
.ls5_c00476{letter-spacing:5.639467pt;}
.ls14_c00476{letter-spacing:7.788032pt;}
.ws3_c00476{word-spacing:-18.620160pt;}
.ws2_c00476{word-spacing:-17.684224pt;}
.ws5_c00476{word-spacing:-17.542144pt;}
.ws0_c00476{word-spacing:-15.671364pt;}
.ws1_c00476{word-spacing:-15.622678pt;}
.ws6_c00476{word-spacing:-14.044815pt;}
.ws7_c00476{word-spacing:-13.379200pt;}
.ws4_c00476{word-spacing:-8.896000pt;}
.ws8_c00476{word-spacing:0.000000pt;}
._c_c00476{margin-left:-8.291840pt;}
._b_c00476{margin-left:-7.294720pt;}
._a_c00476{margin-left:-5.818220pt;}
._e_c00476{margin-left:-4.355840pt;}
._f_c00476{margin-left:-3.418260pt;}
._1_c00476{margin-left:-0.944640pt;}
._0_c00476{width:0.997120pt;}
._8_c00476{width:3.008000pt;}
._3_c00476{width:5.143040pt;}
._10_c00476{width:6.507520pt;}
._d_c00476{width:7.630592pt;}
._9_c00476{width:10.096977pt;}
._5_c00476{width:11.291397pt;}
._4_c00476{width:12.402302pt;}
._2_c00476{width:13.592320pt;}
._6_c00476{width:20.288000pt;}
._7_c00476{width:23.424000pt;}
.fs9_c00476{font-size:32.000000pt;}
.fs7_c00476{font-size:37.120000pt;}
.fs6_c00476{font-size:38.262420pt;}
.fs5_c00476{font-size:47.360000pt;}
.fsa_c00476{font-size:48.817571pt;}
.fs8_c00476{font-size:49.920000pt;}
.fs4_c00476{font-size:52.480000pt;}
.fsb_c00476{font-size:53.333333pt;}
.fs3_c00476{font-size:54.095146pt;}
.fs2_c00476{font-size:57.600000pt;}
.fs0_c00476{font-size:64.000000pt;}
.fs1_c00476{font-size:65.969690pt;}
.y0_c00476{bottom:0.000000pt;}
.y2a_c00476{bottom:2.773333pt;}
.y28_c00476{bottom:3.520000pt;}
.y27_c00476{bottom:30.720000pt;}
.y29_c00476{bottom:30.884071pt;}
.y1_c00476{bottom:48.000000pt;}
.y25_c00476{bottom:49.320000pt;}
.y24_c00476{bottom:54.760000pt;}
.y23_c00476{bottom:70.120000pt;}
.y22_c00476{bottom:80.358080pt;}
.y21_c00476{bottom:95.721600pt;}
.y20_c00476{bottom:111.400000pt;}
.y1f_c00476{bottom:111.401600pt;}
.y1e_c00476{bottom:127.080000pt;}
.y1d_c00476{bottom:132.520000pt;}
.y1c_c00476{bottom:156.200000pt;}
.y26_c00476{bottom:307.880000pt;}
.y1b_c00476{bottom:397.160000pt;}
.y1a_c00476{bottom:429.160000pt;}
.y19_c00476{bottom:461.160000pt;}
.y18_c00476{bottom:493.160000pt;}
.y17_c00476{bottom:525.160000pt;}
.y16_c00476{bottom:557.160000pt;}
.y15_c00476{bottom:576.040000pt;}
.y14_c00476{bottom:608.040000pt;}
.y13_c00476{bottom:626.600000pt;}
.y12_c00476{bottom:645.160000pt;}
.y11_c00476{bottom:664.040000pt;}
.yf_c00476{bottom:682.600000pt;}
.y10_c00476{bottom:689.320000pt;}
.ye_c00476{bottom:701.160000pt;}
.yd_c00476{bottom:720.040000pt;}
.yc_c00476{bottom:752.041600pt;}
.yb_c00476{bottom:782.440000pt;}
.ya_c00476{bottom:805.803200pt;}
.y9_c00476{bottom:821.481600pt;}
.y8_c00476{bottom:837.160000pt;}
.y7_c00476{bottom:859.240000pt;}
.y6_c00476{bottom:881.640000pt;}
.y5_c00476{bottom:905.960000pt;}
.y4_c00476{bottom:932.840000pt;}
.y3_c00476{bottom:964.520000pt;}
.y2_c00476{bottom:1011.880000pt;}
.h11_c00476{height:17.116093pt;}
.hd_c00476{height:28.992000pt;}
.ha_c00476{height:29.538588pt;}
.h10_c00476{height:37.687165pt;}
.h7_c00476{height:41.761453pt;}
.he_c00476{height:41.920000pt;}
.h5_c00476{height:42.656250pt;}
.hf_c00476{height:42.908160pt;}
.h8_c00476{height:47.546880pt;}
.h12_c00476{height:50.346667pt;}
.h4_c00476{height:50.928601pt;}
.h6_c00476{height:52.185600pt;}
.hc_c00476{height:57.245858pt;}
.h9_c00476{height:57.977600pt;}
.h3_c00476{height:57.984000pt;}
.hb_c00476{height:60.510720pt;}
.h2_c00476{height:1067.880000pt;}
.h0_c00476{height:1122.520000pt;}
.h1_c00476{height:1122.666667pt;}
.w4_c00476{width:22.240000pt;}
.w3_c00476{width:571.200000pt;}
.w2_c00476{width:767.960000pt;}
.w0_c00476{width:793.720000pt;}
.w1_c00476{width:794.000000pt;}
.x0_c00476{left:0.000000pt;}
.x2d_c00476{left:2.880133pt;}
.x1_c00476{left:12.880000pt;}
.x2_c00476{left:100.480133pt;}
.x29_c00476{left:108.634400pt;}
.x2a_c00476{left:110.480000pt;}
.x8_c00476{left:122.679733pt;}
.xf_c00476{left:129.294533pt;}
.x3_c00476{left:143.583333pt;}
.x13_c00476{left:168.806933pt;}
.x17_c00476{left:177.226267pt;}
.x9_c00476{left:181.957067pt;}
.xa_c00476{left:204.156533pt;}
.x4_c00476{left:210.654267pt;}
.x14_c00476{left:215.942000pt;}
.x10_c00476{left:221.555733pt;}
.xb_c00476{left:244.928000pt;}
.x18_c00476{left:254.553067pt;}
.xc_c00476{left:270.100933pt;}
.x19_c00476{left:271.764000pt;}
.x5_c00476{left:289.486267pt;}
.x26_c00476{left:296.686800pt;}
.x1f_c00476{left:310.498000pt;}
.x1b_c00476{left:313.772400pt;}
.x1a_c00476{left:318.867200pt;}
.x2b_c00476{left:339.374667pt;}
.x6_c00476{left:343.703067pt;}
.x7_c00476{left:347.703067pt;}
.x2c_c00476{left:359.353733pt;}
.x1c_c00476{left:391.099333pt;}
.xd_c00476{left:394.628933pt;}
.x1d_c00476{left:407.995067pt;}
.xe_c00476{left:411.655333pt;}
.x1e_c00476{left:455.098267pt;}
.x15_c00476{left:460.530000pt;}
.x11_c00476{left:486.400000pt;}
.x20_c00476{left:489.056000pt;}
.x12_c00476{left:491.537333pt;}
.x16_c00476{left:501.289067pt;}
.x21_c00476{left:541.328800pt;}
.x27_c00476{left:549.891867pt;}
.x22_c00476{left:554.335600pt;}
.x23_c00476{left:600.688533pt;}
.x24_c00476{left:605.128267pt;}
.x25_c00476{left:627.327867pt;}
.x28_c00476{left:643.631867pt;}
.x2e_c00476{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4bebd5b86f66f95489f7e7aa.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.134000;font-style:normal;font-weight:normal;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_133e2133c662d40f2248778d.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;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:ff3_c00477;src:url('chunks/assets/font_1bf808b03afd4d8cb4e2597e.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00477{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00477{vertical-align:-24.480000px;}
.v0_c00477{vertical-align:0.000000px;}
.v1_c00477{vertical-align:30.240000px;}
.ls6_c00477{letter-spacing:0.000000px;}
.ls3_c00477{letter-spacing:0.113040px;}
.ls8_c00477{letter-spacing:0.265680px;}
.ls1_c00477{letter-spacing:0.536040px;}
.ls7_c00477{letter-spacing:5.430672px;}
.ls0_c00477{letter-spacing:5.976000px;}
.ls4_c00477{letter-spacing:5.980200px;}
.ls2_c00477{letter-spacing:5.982600px;}
.ls5_c00477{letter-spacing:6.159920px;}
.sc__c00477{text-shadow:none;}
.sc1_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00477{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc1_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00477{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00477{word-spacing:-21.043152px;}
.ws1_c00477{word-spacing:-10.008000px;}
.ws2_c00477{word-spacing:0.000000px;}
._3_c00477{margin-left:-1.179360px;}
._6_c00477{width:1.296000px;}
._8_c00477{width:2.592000px;}
._2_c00477{width:3.744000px;}
._0_c00477{width:5.040000px;}
._9_c00477{width:7.272000px;}
._a_c00477{width:10.224000px;}
._1_c00477{width:13.536000px;}
._4_c00477{width:14.630400px;}
._5_c00477{width:16.329600px;}
._7_c00477{width:32.112000px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs4_c00477{font-size:36.000000px;}
.fs2_c00477{font-size:41.760000px;}
.fs3_c00477{font-size:56.160000px;}
.fs5_c00477{font-size:59.040000px;}
.fs6_c00477{font-size:60.000000px;}
.fs0_c00477{font-size:72.000000px;}
.fs1_c00477{font-size:74.215901px;}
.y0_c00477{bottom:0.000000px;}
.y26_c00477{bottom:3.120000px;}
.y25_c00477{bottom:34.744580px;}
.y1_c00477{bottom:54.000000px;}
.y24_c00477{bottom:61.605000px;}
.y23_c00477{bottom:78.885000px;}
.y22_c00477{bottom:105.525000px;}
.y21_c00477{bottom:210.285000px;}
.y20_c00477{bottom:231.165000px;}
.y1f_c00477{bottom:267.165000px;}
.y1e_c00477{bottom:288.405000px;}
.y1d_c00477{bottom:309.285000px;}
.y1c_c00477{bottom:345.285000px;}
.y1b_c00477{bottom:366.525000px;}
.y1a_c00477{bottom:387.405000px;}
.y19_c00477{bottom:408.285000px;}
.y18_c00477{bottom:429.525000px;}
.y17_c00477{bottom:450.405000px;}
.y16_c00477{bottom:486.405000px;}
.y15_c00477{bottom:507.285000px;}
.y14_c00477{bottom:528.525000px;}
.y13_c00477{bottom:549.405000px;}
.y12_c00477{bottom:585.405000px;}
.y11_c00477{bottom:621.405000px;}
.y10_c00477{bottom:657.405000px;}
.yf_c00477{bottom:693.405000px;}
.ye_c00477{bottom:729.405000px;}
.yd_c00477{bottom:750.285000px;}
.yc_c00477{bottom:786.285000px;}
.yb_c00477{bottom:822.285000px;}
.ya_c00477{bottom:858.645000px;}
.y9_c00477{bottom:894.645000px;}
.y8_c00477{bottom:915.525000px;}
.y7_c00477{bottom:951.525000px;}
.y6_c00477{bottom:972.405000px;}
.y5_c00477{bottom:1008.405000px;}
.y4_c00477{bottom:1046.925000px;}
.y3_c00477{bottom:1085.085000px;}
.y2_c00477{bottom:1138.365000px;}
.h7_c00477{height:19.255605px;}
.h6_c00477{height:32.616000px;}
.h8_c00477{height:56.640000px;}
.h4_c00477{height:57.294676px;}
.h3_c00477{height:65.232000px;}
.h5_c00477{height:68.074560px;}
.h2_c00477{height:1201.365000px;}
.h0_c00477{height:1262.835000px;}
.h1_c00477{height:1263.000000px;}
.w3_c00477{width:25.020000px;}
.w2_c00477{width:863.955000px;}
.w0_c00477{width:892.935000px;}
.w1_c00477{width:893.250000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:14.490000px;}
.x2_c00477{left:113.040150px;}
.x3_c00477{left:161.531250px;}
.x4_c00477{left:236.986050px;}
.x5_c00477{left:413.967000px;}
.x6_c00477{left:535.478400px;}
.x7_c00477{left:544.478400px;}
.x8_c00477{left:674.092200px;}
.x9_c00477{left:759.914612px;}
@media print{
.v2_c00477{vertical-align:-21.760000pt;}
.v0_c00477{vertical-align:0.000000pt;}
.v1_c00477{vertical-align:26.880000pt;}
.ls6_c00477{letter-spacing:0.000000pt;}
.ls3_c00477{letter-spacing:0.100480pt;}
.ls8_c00477{letter-spacing:0.236160pt;}
.ls1_c00477{letter-spacing:0.476480pt;}
.ls7_c00477{letter-spacing:4.827264pt;}
.ls0_c00477{letter-spacing:5.312000pt;}
.ls4_c00477{letter-spacing:5.315733pt;}
.ls2_c00477{letter-spacing:5.317867pt;}
.ls5_c00477{letter-spacing:5.475484pt;}
.ws0_c00477{word-spacing:-18.705024pt;}
.ws1_c00477{word-spacing:-8.896000pt;}
.ws2_c00477{word-spacing:0.000000pt;}
._3_c00477{margin-left:-1.048320pt;}
._6_c00477{width:1.152000pt;}
._8_c00477{width:2.304000pt;}
._2_c00477{width:3.328000pt;}
._0_c00477{width:4.480000pt;}
._9_c00477{width:6.464000pt;}
._a_c00477{width:9.088000pt;}
._1_c00477{width:12.032000pt;}
._4_c00477{width:13.004800pt;}
._5_c00477{width:14.515200pt;}
._7_c00477{width:28.544000pt;}
.fs4_c00477{font-size:32.000000pt;}
.fs2_c00477{font-size:37.120000pt;}
.fs3_c00477{font-size:49.920000pt;}
.fs5_c00477{font-size:52.480000pt;}
.fs6_c00477{font-size:53.333333pt;}
.fs0_c00477{font-size:64.000000pt;}
.fs1_c00477{font-size:65.969690pt;}
.y0_c00477{bottom:0.000000pt;}
.y26_c00477{bottom:2.773333pt;}
.y25_c00477{bottom:30.884071pt;}
.y1_c00477{bottom:48.000000pt;}
.y24_c00477{bottom:54.760000pt;}
.y23_c00477{bottom:70.120000pt;}
.y22_c00477{bottom:93.800000pt;}
.y21_c00477{bottom:186.920000pt;}
.y20_c00477{bottom:205.480000pt;}
.y1f_c00477{bottom:237.480000pt;}
.y1e_c00477{bottom:256.360000pt;}
.y1d_c00477{bottom:274.920000pt;}
.y1c_c00477{bottom:306.920000pt;}
.y1b_c00477{bottom:325.800000pt;}
.y1a_c00477{bottom:344.360000pt;}
.y19_c00477{bottom:362.920000pt;}
.y18_c00477{bottom:381.800000pt;}
.y17_c00477{bottom:400.360000pt;}
.y16_c00477{bottom:432.360000pt;}
.y15_c00477{bottom:450.920000pt;}
.y14_c00477{bottom:469.800000pt;}
.y13_c00477{bottom:488.360000pt;}
.y12_c00477{bottom:520.360000pt;}
.y11_c00477{bottom:552.360000pt;}
.y10_c00477{bottom:584.360000pt;}
.yf_c00477{bottom:616.360000pt;}
.ye_c00477{bottom:648.360000pt;}
.yd_c00477{bottom:666.920000pt;}
.yc_c00477{bottom:698.920000pt;}
.yb_c00477{bottom:730.920000pt;}
.ya_c00477{bottom:763.240000pt;}
.y9_c00477{bottom:795.240000pt;}
.y8_c00477{bottom:813.800000pt;}
.y7_c00477{bottom:845.800000pt;}
.y6_c00477{bottom:864.360000pt;}
.y5_c00477{bottom:896.360000pt;}
.y4_c00477{bottom:930.600000pt;}
.y3_c00477{bottom:964.520000pt;}
.y2_c00477{bottom:1011.880000pt;}
.h7_c00477{height:17.116093pt;}
.h6_c00477{height:28.992000pt;}
.h8_c00477{height:50.346667pt;}
.h4_c00477{height:50.928601pt;}
.h3_c00477{height:57.984000pt;}
.h5_c00477{height:60.510720pt;}
.h2_c00477{height:1067.880000pt;}
.h0_c00477{height:1122.520000pt;}
.h1_c00477{height:1122.666667pt;}
.w3_c00477{width:22.240000pt;}
.w2_c00477{width:767.960000pt;}
.w0_c00477{width:793.720000pt;}
.w1_c00477{width:794.000000pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:12.880000pt;}
.x2_c00477{left:100.480133pt;}
.x3_c00477{left:143.583333pt;}
.x4_c00477{left:210.654267pt;}
.x5_c00477{left:367.970667pt;}
.x6_c00477{left:475.980800pt;}
.x7_c00477{left:483.980800pt;}
.x8_c00477{left:599.193067pt;}
.x9_c00477{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49fa0e6a1c143d25c9dd936d.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.134000;font-style:normal;font-weight:normal;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_6a2148c77d96fa1129819de9.woff2')format("woff");}.ff2_c00478{font-family:ff2_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:ff3_c00478;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00478{font-family:ff4_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:ff5_c00478;src:url('chunks/assets/font_9d02daa797a8414dc4093917.woff2')format("woff");}.ff5_c00478{font-family:ff5_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:ff6_c00478;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.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_773b1698c7adb0d6b39153eb.woff2')format("woff");}.ff7_c00478{font-family:ff7_c00478;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00478;src:url('chunks/assets/font_d4eaf49190e19ed5bc52f76d.woff2')format("woff");}.ff8_c00478{font-family:ff8_c00478;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00478{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v1_c00478{vertical-align:-24.480000px;}
.v0_c00478{vertical-align:0.000000px;}
.lse_c00478{letter-spacing:0.000000px;}
.ls1_c00478{letter-spacing:0.236160px;}
.ls11_c00478{letter-spacing:0.265680px;}
.ls13_c00478{letter-spacing:0.273857px;}
.ls5_c00478{letter-spacing:0.295200px;}
.ls1c_c00478{letter-spacing:0.328628px;}
.lsa_c00478{letter-spacing:0.354240px;}
.ls1a_c00478{letter-spacing:0.425088px;}
.ls8_c00478{letter-spacing:0.519552px;}
.lsb_c00478{letter-spacing:0.525456px;}
.ls6_c00478{letter-spacing:0.531360px;}
.ls9_c00478{letter-spacing:0.560880px;}
.lsf_c00478{letter-spacing:0.584496px;}
.ls14_c00478{letter-spacing:0.602485px;}
.ls4_c00478{letter-spacing:0.657256px;}
.ls15_c00478{letter-spacing:0.690768px;}
.ls12_c00478{letter-spacing:0.696672px;}
.ls7_c00478{letter-spacing:0.712027px;}
.ls16_c00478{letter-spacing:0.718113px;}
.ls18_c00478{letter-spacing:0.743904px;}
.ls1d_c00478{letter-spacing:0.797040px;}
.ls17_c00478{letter-spacing:4.298112px;}
.ls3_c00478{letter-spacing:5.254560px;}
.ls2_c00478{letter-spacing:5.431680px;}
.ls10_c00478{letter-spacing:5.461200px;}
.lsc_c00478{letter-spacing:5.976000px;}
.lsd_c00478{letter-spacing:6.159920px;}
.ls19_c00478{letter-spacing:9.044928px;}
.ls1b_c00478{letter-spacing:11.973312px;}
.ls0_c00478{letter-spacing:54.864000px;}
.sc__c00478{text-shadow:none;}
.sc1_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00478{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc1_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00478{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00478{word-spacing:-21.874320px;}
.ws5_c00478{word-spacing:-17.630284px;}
.ws3_c00478{word-spacing:-17.575513px;}
.ws4_c00478{word-spacing:-17.520742px;}
.ws7_c00478{word-spacing:-17.246885px;}
.ws2_c00478{word-spacing:-17.109792px;}
.ws1_c00478{word-spacing:-16.944480px;}
.ws6_c00478{word-spacing:-10.008000px;}
.ws8_c00478{word-spacing:0.000000px;}
._e_c00478{margin-left:-12.339360px;}
._d_c00478{margin-left:-11.217600px;}
._b_c00478{margin-left:-8.737920px;}
._c_c00478{margin-left:-7.675200px;}
._a_c00478{margin-left:-4.841280px;}
._9_c00478{margin-left:-3.778560px;}
._8_c00478{margin-left:-1.322496px;}
._2_c00478{width:1.008000px;}
._7_c00478{width:2.160000px;}
._5_c00478{width:3.528000px;}
._0_c00478{width:4.680000px;}
._4_c00478{width:6.120000px;}
._3_c00478{width:8.424000px;}
._10_c00478{width:9.928800px;}
._f_c00478{width:11.453760px;}
._6_c00478{width:21.888000px;}
._1_c00478{width:26.496000px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs5_c00478{font-size:36.000000px;}
.fs3_c00478{font-size:59.040000px;}
.fs6_c00478{font-size:60.000000px;}
.fs4_c00478{font-size:60.857039px;}
.fs2_c00478{font-size:64.800000px;}
.fs0_c00478{font-size:72.000000px;}
.fs1_c00478{font-size:74.215901px;}
.y0_c00478{bottom:0.000000px;}
.y31_c00478{bottom:3.120000px;}
.y30_c00478{bottom:34.744580px;}
.y1_c00478{bottom:54.000000px;}
.y2f_c00478{bottom:207.046440px;}
.y2e_c00478{bottom:224.684640px;}
.y2d_c00478{bottom:242.322840px;}
.y2c_c00478{bottom:259.606800px;}
.y2a_c00478{bottom:277.242840px;}
.y2b_c00478{bottom:277.245000px;}
.y29_c00478{bottom:294.881040px;}
.y28_c00478{bottom:312.165000px;}
.y26_c00478{bottom:337.361040px;}
.y27_c00478{bottom:337.365000px;}
.y24_c00478{bottom:354.645000px;}
.y23_c00478{bottom:354.646800px;}
.y25_c00478{bottom:360.765000px;}
.y22_c00478{bottom:372.285000px;}
.y21_c00478{bottom:372.286800px;}
.y1f_c00478{bottom:389.921040px;}
.y20_c00478{bottom:389.925000px;}
.y1e_c00478{bottom:407.205000px;}
.y1d_c00478{bottom:407.209680px;}
.y1c_c00478{bottom:432.405000px;}
.y1b_c00478{bottom:457.245000px;}
.y1a_c00478{bottom:457.245720px;}
.y19_c00478{bottom:484.965000px;}
.y18_c00478{bottom:510.165000px;}
.y17_c00478{bottom:537.525000px;}
.y16_c00478{bottom:565.965000px;}
.y15_c00478{bottom:594.405000px;}
.y14_c00478{bottom:623.205000px;}
.y13_c00478{bottom:658.845000px;}
.y12_c00478{bottom:694.845000px;}
.y11_c00478{bottom:716.085000px;}
.y10_c00478{bottom:736.965000px;}
.yf_c00478{bottom:757.845000px;}
.ye_c00478{bottom:779.085000px;}
.yd_c00478{bottom:815.085000px;}
.yc_c00478{bottom:835.965000px;}
.yb_c00478{bottom:856.845000px;}
.ya_c00478{bottom:878.085000px;}
.y9_c00478{bottom:914.085000px;}
.y8_c00478{bottom:950.085000px;}
.y7_c00478{bottom:970.965000px;}
.y6_c00478{bottom:991.845000px;}
.y5_c00478{bottom:1013.085000px;}
.y4_c00478{bottom:1049.085000px;}
.y3_c00478{bottom:1085.085000px;}
.y2_c00478{bottom:1138.365000px;}
.hc_c00478{height:19.255605px;}
.hb_c00478{height:32.616000px;}
.ha_c00478{height:39.350391px;}
.h9_c00478{height:45.578880px;}
.h8_c00478{height:46.981634px;}
.h5_c00478{height:47.988281px;}
.h7_c00478{height:53.490240px;}
.hd_c00478{height:56.640000px;}
.h4_c00478{height:57.294676px;}
.h6_c00478{height:58.708800px;}
.h3_c00478{height:65.232000px;}
.h2_c00478{height:1201.365000px;}
.h0_c00478{height:1262.835000px;}
.h1_c00478{height:1263.000000px;}
.w3_c00478{width:25.020000px;}
.w2_c00478{width:863.955000px;}
.w0_c00478{width:892.935000px;}
.w1_c00478{width:893.250000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:14.490000px;}
.x2_c00478{left:113.040150px;}
.x2e_c00478{left:133.034550px;}
.x5_c00478{left:140.037600px;}
.x2f_c00478{left:142.228950px;}
.x11_c00478{left:147.223350px;}
.x16_c00478{left:157.680900px;}
.x3_c00478{left:161.531250px;}
.x6_c00478{left:167.037600px;}
.x20_c00478{left:182.640750px;}
.x12_c00478{left:189.716700px;}
.x13_c00478{left:193.466700px;}
.x14_c00478{left:202.631100px;}
.x17_c00478{left:206.536350px;}
.x15_c00478{left:210.970500px;}
.x4_c00478{left:236.986050px;}
.x1c_c00478{left:243.863100px;}
.x21_c00478{left:258.110250px;}
.x1d_c00478{left:268.837650px;}
.x18_c00478{left:271.785300px;}
.x19_c00478{left:276.962700px;}
.x22_c00478{left:283.084650px;}
.x2c_c00478{left:303.561750px;}
.x7_c00478{left:325.683000px;}
.x1e_c00478{left:330.438000px;}
.x23_c00478{left:334.807650px;}
.x2d_c00478{left:342.726150px;}
.x1f_c00478{left:351.227400px;}
.x24_c00478{left:359.782050px;}
.x25_c00478{left:371.859000px;}
.x8_c00478{left:386.665950px;}
.x9_c00478{left:391.165950px;}
.xe_c00478{left:396.188250px;}
.xf_c00478{left:420.588150px;}
.x1a_c00478{left:422.373000px;}
.x1b_c00478{left:426.542700px;}
.xa_c00478{left:447.162900px;}
.xb_c00478{left:451.662900px;}
.x10_c00478{left:453.077250px;}
.xc_c00478{left:506.651700px;}
.xd_c00478{left:511.151700px;}
.x26_c00478{left:547.404000px;}
.x27_c00478{left:575.723400px;}
.x28_c00478{left:619.106700px;}
.x29_c00478{left:661.585650px;}
.x2a_c00478{left:704.968800px;}
.x2b_c00478{left:724.123500px;}
.x30_c00478{left:759.914612px;}
@media print{
.v1_c00478{vertical-align:-21.760000pt;}
.v0_c00478{vertical-align:0.000000pt;}
.lse_c00478{letter-spacing:0.000000pt;}
.ls1_c00478{letter-spacing:0.209920pt;}
.ls11_c00478{letter-spacing:0.236160pt;}
.ls13_c00478{letter-spacing:0.243428pt;}
.ls5_c00478{letter-spacing:0.262400pt;}
.ls1c_c00478{letter-spacing:0.292114pt;}
.lsa_c00478{letter-spacing:0.314880pt;}
.ls1a_c00478{letter-spacing:0.377856pt;}
.ls8_c00478{letter-spacing:0.461824pt;}
.lsb_c00478{letter-spacing:0.467072pt;}
.ls6_c00478{letter-spacing:0.472320pt;}
.ls9_c00478{letter-spacing:0.498560pt;}
.lsf_c00478{letter-spacing:0.519552pt;}
.ls14_c00478{letter-spacing:0.535542pt;}
.ls4_c00478{letter-spacing:0.584228pt;}
.ls15_c00478{letter-spacing:0.614016pt;}
.ls12_c00478{letter-spacing:0.619264pt;}
.ls7_c00478{letter-spacing:0.632913pt;}
.ls16_c00478{letter-spacing:0.638323pt;}
.ls18_c00478{letter-spacing:0.661248pt;}
.ls1d_c00478{letter-spacing:0.708480pt;}
.ls17_c00478{letter-spacing:3.820544pt;}
.ls3_c00478{letter-spacing:4.670720pt;}
.ls2_c00478{letter-spacing:4.828160pt;}
.ls10_c00478{letter-spacing:4.854400pt;}
.lsc_c00478{letter-spacing:5.312000pt;}
.lsd_c00478{letter-spacing:5.475484pt;}
.ls19_c00478{letter-spacing:8.039936pt;}
.ls1b_c00478{letter-spacing:10.642944pt;}
.ls0_c00478{letter-spacing:48.768000pt;}
.ws0_c00478{word-spacing:-19.443840pt;}
.ws5_c00478{word-spacing:-15.671364pt;}
.ws3_c00478{word-spacing:-15.622678pt;}
.ws4_c00478{word-spacing:-15.573992pt;}
.ws7_c00478{word-spacing:-15.330564pt;}
.ws2_c00478{word-spacing:-15.208704pt;}
.ws1_c00478{word-spacing:-15.061760pt;}
.ws6_c00478{word-spacing:-8.896000pt;}
.ws8_c00478{word-spacing:0.000000pt;}
._e_c00478{margin-left:-10.968320pt;}
._d_c00478{margin-left:-9.971200pt;}
._b_c00478{margin-left:-7.767040pt;}
._c_c00478{margin-left:-6.822400pt;}
._a_c00478{margin-left:-4.303360pt;}
._9_c00478{margin-left:-3.358720pt;}
._8_c00478{margin-left:-1.175552pt;}
._2_c00478{width:0.896000pt;}
._7_c00478{width:1.920000pt;}
._5_c00478{width:3.136000pt;}
._0_c00478{width:4.160000pt;}
._4_c00478{width:5.440000pt;}
._3_c00478{width:7.488000pt;}
._10_c00478{width:8.825600pt;}
._f_c00478{width:10.181120pt;}
._6_c00478{width:19.456000pt;}
._1_c00478{width:23.552000pt;}
.fs5_c00478{font-size:32.000000pt;}
.fs3_c00478{font-size:52.480000pt;}
.fs6_c00478{font-size:53.333333pt;}
.fs4_c00478{font-size:54.095146pt;}
.fs2_c00478{font-size:57.600000pt;}
.fs0_c00478{font-size:64.000000pt;}
.fs1_c00478{font-size:65.969690pt;}
.y0_c00478{bottom:0.000000pt;}
.y31_c00478{bottom:2.773333pt;}
.y30_c00478{bottom:30.884071pt;}
.y1_c00478{bottom:48.000000pt;}
.y2f_c00478{bottom:184.041280pt;}
.y2e_c00478{bottom:199.719680pt;}
.y2d_c00478{bottom:215.398080pt;}
.y2c_c00478{bottom:230.761600pt;}
.y2a_c00478{bottom:246.438080pt;}
.y2b_c00478{bottom:246.440000pt;}
.y29_c00478{bottom:262.116480pt;}
.y28_c00478{bottom:277.480000pt;}
.y26_c00478{bottom:299.876480pt;}
.y27_c00478{bottom:299.880000pt;}
.y24_c00478{bottom:315.240000pt;}
.y23_c00478{bottom:315.241600pt;}
.y25_c00478{bottom:320.680000pt;}
.y22_c00478{bottom:330.920000pt;}
.y21_c00478{bottom:330.921600pt;}
.y1f_c00478{bottom:346.596480pt;}
.y20_c00478{bottom:346.600000pt;}
.y1e_c00478{bottom:361.960000pt;}
.y1d_c00478{bottom:361.964160pt;}
.y1c_c00478{bottom:384.360000pt;}
.y1b_c00478{bottom:406.440000pt;}
.y1a_c00478{bottom:406.440640pt;}
.y19_c00478{bottom:431.080000pt;}
.y18_c00478{bottom:453.480000pt;}
.y17_c00478{bottom:477.800000pt;}
.y16_c00478{bottom:503.080000pt;}
.y15_c00478{bottom:528.360000pt;}
.y14_c00478{bottom:553.960000pt;}
.y13_c00478{bottom:585.640000pt;}
.y12_c00478{bottom:617.640000pt;}
.y11_c00478{bottom:636.520000pt;}
.y10_c00478{bottom:655.080000pt;}
.yf_c00478{bottom:673.640000pt;}
.ye_c00478{bottom:692.520000pt;}
.yd_c00478{bottom:724.520000pt;}
.yc_c00478{bottom:743.080000pt;}
.yb_c00478{bottom:761.640000pt;}
.ya_c00478{bottom:780.520000pt;}
.y9_c00478{bottom:812.520000pt;}
.y8_c00478{bottom:844.520000pt;}
.y7_c00478{bottom:863.080000pt;}
.y6_c00478{bottom:881.640000pt;}
.y5_c00478{bottom:900.520000pt;}
.y4_c00478{bottom:932.520000pt;}
.y3_c00478{bottom:964.520000pt;}
.y2_c00478{bottom:1011.880000pt;}
.hc_c00478{height:17.116093pt;}
.hb_c00478{height:28.992000pt;}
.ha_c00478{height:34.978125pt;}
.h9_c00478{height:40.514560pt;}
.h8_c00478{height:41.761453pt;}
.h5_c00478{height:42.656250pt;}
.h7_c00478{height:47.546880pt;}
.hd_c00478{height:50.346667pt;}
.h4_c00478{height:50.928601pt;}
.h6_c00478{height:52.185600pt;}
.h3_c00478{height:57.984000pt;}
.h2_c00478{height:1067.880000pt;}
.h0_c00478{height:1122.520000pt;}
.h1_c00478{height:1122.666667pt;}
.w3_c00478{width:22.240000pt;}
.w2_c00478{width:767.960000pt;}
.w0_c00478{width:793.720000pt;}
.w1_c00478{width:794.000000pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:12.880000pt;}
.x2_c00478{left:100.480133pt;}
.x2e_c00478{left:118.252933pt;}
.x5_c00478{left:124.477867pt;}
.x2f_c00478{left:126.425733pt;}
.x11_c00478{left:130.865200pt;}
.x16_c00478{left:140.160800pt;}
.x3_c00478{left:143.583333pt;}
.x6_c00478{left:148.477867pt;}
.x20_c00478{left:162.347333pt;}
.x12_c00478{left:168.637067pt;}
.x13_c00478{left:171.970400pt;}
.x14_c00478{left:180.116533pt;}
.x17_c00478{left:183.587867pt;}
.x15_c00478{left:187.529333pt;}
.x4_c00478{left:210.654267pt;}
.x1c_c00478{left:216.767200pt;}
.x21_c00478{left:229.431333pt;}
.x1d_c00478{left:238.966800pt;}
.x18_c00478{left:241.586933pt;}
.x19_c00478{left:246.189067pt;}
.x22_c00478{left:251.630800pt;}
.x2c_c00478{left:269.832667pt;}
.x7_c00478{left:289.496000pt;}
.x1e_c00478{left:293.722667pt;}
.x23_c00478{left:297.606800pt;}
.x2d_c00478{left:304.645467pt;}
.x1f_c00478{left:312.202133pt;}
.x24_c00478{left:319.806267pt;}
.x25_c00478{left:330.541333pt;}
.x8_c00478{left:343.703067pt;}
.x9_c00478{left:347.703067pt;}
.xe_c00478{left:352.167333pt;}
.xf_c00478{left:373.856133pt;}
.x1a_c00478{left:375.442667pt;}
.x1b_c00478{left:379.149067pt;}
.xa_c00478{left:397.478133pt;}
.xb_c00478{left:401.478133pt;}
.x10_c00478{left:402.735333pt;}
.xc_c00478{left:450.357067pt;}
.xd_c00478{left:454.357067pt;}
.x26_c00478{left:486.581333pt;}
.x27_c00478{left:511.754133pt;}
.x28_c00478{left:550.317067pt;}
.x29_c00478{left:588.076133pt;}
.x2a_c00478{left:626.638933pt;}
.x2b_c00478{left:643.665333pt;}
.x30_c00478{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9808fb7c558243f6611989ba.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.134000;font-style:normal;font-weight:normal;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_694ebffc4a8b8a9bc680fb28.woff2')format("woff");}.ff2_c00479{font-family:ff2_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:ff3_c00479;src:url('chunks/assets/font_0c3ee12f03f19f89c6fe99c9.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00479{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00479{vertical-align:-24.480000px;}
.v0_c00479{vertical-align:0.000000px;}
.v1_c00479{vertical-align:30.240000px;}
.ls9_c00479{letter-spacing:0.000000px;}
.ls13_c00479{letter-spacing:0.202464px;}
.lsc_c00479{letter-spacing:0.265680px;}
.ls4_c00479{letter-spacing:0.295200px;}
.ls11_c00479{letter-spacing:0.399600px;}
.ls1_c00479{letter-spacing:0.413400px;}
.lsd_c00479{letter-spacing:0.490032px;}
.ls5_c00479{letter-spacing:0.531360px;}
.ls10_c00479{letter-spacing:0.584496px;}
.ls6_c00479{letter-spacing:0.712027px;}
.ls2_c00479{letter-spacing:0.771240px;}
.ls12_c00479{letter-spacing:4.923072px;}
.lsb_c00479{letter-spacing:5.335200px;}
.lsa_c00479{letter-spacing:5.430672px;}
.lse_c00479{letter-spacing:5.567472px;}
.ls3_c00479{letter-spacing:5.962200px;}
.ls7_c00479{letter-spacing:5.976000px;}
.ls0_c00479{letter-spacing:5.983800px;}
.ls8_c00479{letter-spacing:6.159920px;}
.lsf_c00479{letter-spacing:10.426464px;}
.sc__c00479{text-shadow:none;}
.sc1_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00479{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc1_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00479{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00479{word-spacing:-21.980592px;}
.ws0_c00479{word-spacing:-21.043152px;}
.ws1_c00479{word-spacing:-20.947680px;}
.ws7_c00479{word-spacing:-19.734912px;}
.ws6_c00479{word-spacing:-17.630284px;}
.ws4_c00479{word-spacing:-16.944480px;}
.ws2_c00479{word-spacing:-11.609280px;}
.ws3_c00479{word-spacing:-10.008000px;}
.ws8_c00479{word-spacing:0.000000px;}
._9_c00479{margin-left:-10.036800px;}
._a_c00479{margin-left:-8.678880px;}
._7_c00479{margin-left:-1.003680px;}
._6_c00479{width:1.003680px;}
._5_c00479{width:3.744000px;}
._4_c00479{width:5.184000px;}
._3_c00479{width:6.624000px;}
._8_c00479{width:9.741600px;}
._2_c00479{width:12.600000px;}
._1_c00479{width:13.680000px;}
._0_c00479{width:24.120000px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs4_c00479{font-size:36.000000px;}
.fs3_c00479{font-size:41.760000px;}
.fs7_c00479{font-size:53.280000px;}
.fs2_c00479{font-size:56.160000px;}
.fs5_c00479{font-size:59.040000px;}
.fs8_c00479{font-size:60.000000px;}
.fs6_c00479{font-size:60.857039px;}
.fs0_c00479{font-size:72.000000px;}
.fs1_c00479{font-size:74.215901px;}
.y0_c00479{bottom:0.000000px;}
.y27_c00479{bottom:3.120000px;}
.y25_c00479{bottom:34.560000px;}
.y26_c00479{bottom:34.744580px;}
.y1_c00479{bottom:54.000000px;}
.y23_c00479{bottom:55.482840px;}
.y22_c00479{bottom:72.766800px;}
.y21_c00479{bottom:90.405000px;}
.y20_c00479{bottom:96.525000px;}
.y1f_c00479{bottom:113.805000px;}
.y1e_c00479{bottom:140.445000px;}
.y1d_c00479{bottom:238.725000px;}
.y24_c00479{bottom:263.205000px;}
.y1c_c00479{bottom:274.725000px;}
.y1b_c00479{bottom:310.725000px;}
.y1a_c00479{bottom:346.725000px;}
.y19_c00479{bottom:382.725000px;}
.y18_c00479{bottom:418.725000px;}
.y17_c00479{bottom:454.725000px;}
.y16_c00479{bottom:490.725000px;}
.y15_c00479{bottom:526.725000px;}
.y14_c00479{bottom:562.725000px;}
.y13_c00479{bottom:599.085000px;}
.y12_c00479{bottom:635.085000px;}
.y11_c00479{bottom:671.085000px;}
.y10_c00479{bottom:707.085000px;}
.yf_c00479{bottom:743.085000px;}
.ye_c00479{bottom:779.085000px;}
.yd_c00479{bottom:815.085000px;}
.yc_c00479{bottom:851.085000px;}
.yb_c00479{bottom:871.965000px;}
.ya_c00479{bottom:892.845000px;}
.y9_c00479{bottom:928.845000px;}
.y8_c00479{bottom:950.085000px;}
.y7_c00479{bottom:970.965000px;}
.y6_c00479{bottom:991.845000px;}
.y5_c00479{bottom:1013.085000px;}
.y4_c00479{bottom:1049.085000px;}
.y3_c00479{bottom:1085.085000px;}
.y2_c00479{bottom:1138.365000px;}
.hb_c00479{height:19.255605px;}
.h6_c00479{height:32.616000px;}
.h7_c00479{height:46.981634px;}
.h9_c00479{height:47.160000px;}
.ha_c00479{height:48.271680px;}
.h8_c00479{height:53.490240px;}
.hc_c00479{height:56.640000px;}
.h4_c00479{height:57.294676px;}
.h3_c00479{height:65.232000px;}
.h5_c00479{height:68.074560px;}
.h2_c00479{height:1201.365000px;}
.h0_c00479{height:1262.835000px;}
.h1_c00479{height:1263.000000px;}
.w4_c00479{width:25.020000px;}
.w3_c00479{width:644.040000px;}
.w2_c00479{width:863.955000px;}
.w0_c00479{width:892.935000px;}
.w1_c00479{width:893.250000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:14.490000px;}
.x2_c00479{left:113.040150px;}
.xd_c00479{left:124.290000px;}
.x3_c00479{left:161.531250px;}
.xe_c00479{left:213.745200px;}
.x4_c00479{left:236.986050px;}
.x9_c00479{left:325.837350px;}
.xa_c00479{left:356.716950px;}
.x5_c00479{left:394.313550px;}
.xb_c00479{left:413.916450px;}
.xc_c00479{left:433.910850px;}
.x6_c00479{left:440.302650px;}
.x7_c00479{left:527.459400px;}
.x8_c00479{left:607.450200px;}
.xf_c00479{left:759.914612px;}
@media print{
.v2_c00479{vertical-align:-21.760000pt;}
.v0_c00479{vertical-align:0.000000pt;}
.v1_c00479{vertical-align:26.880000pt;}
.ls9_c00479{letter-spacing:0.000000pt;}
.ls13_c00479{letter-spacing:0.179968pt;}
.lsc_c00479{letter-spacing:0.236160pt;}
.ls4_c00479{letter-spacing:0.262400pt;}
.ls11_c00479{letter-spacing:0.355200pt;}
.ls1_c00479{letter-spacing:0.367467pt;}
.lsd_c00479{letter-spacing:0.435584pt;}
.ls5_c00479{letter-spacing:0.472320pt;}
.ls10_c00479{letter-spacing:0.519552pt;}
.ls6_c00479{letter-spacing:0.632913pt;}
.ls2_c00479{letter-spacing:0.685547pt;}
.ls12_c00479{letter-spacing:4.376064pt;}
.lsb_c00479{letter-spacing:4.742400pt;}
.lsa_c00479{letter-spacing:4.827264pt;}
.lse_c00479{letter-spacing:4.948864pt;}
.ls3_c00479{letter-spacing:5.299733pt;}
.ls7_c00479{letter-spacing:5.312000pt;}
.ls0_c00479{letter-spacing:5.318933pt;}
.ls8_c00479{letter-spacing:5.475484pt;}
.lsf_c00479{letter-spacing:9.267968pt;}
.ws5_c00479{word-spacing:-19.538304pt;}
.ws0_c00479{word-spacing:-18.705024pt;}
.ws1_c00479{word-spacing:-18.620160pt;}
.ws7_c00479{word-spacing:-17.542144pt;}
.ws6_c00479{word-spacing:-15.671364pt;}
.ws4_c00479{word-spacing:-15.061760pt;}
.ws2_c00479{word-spacing:-10.319360pt;}
.ws3_c00479{word-spacing:-8.896000pt;}
.ws8_c00479{word-spacing:0.000000pt;}
._9_c00479{margin-left:-8.921600pt;}
._a_c00479{margin-left:-7.714560pt;}
._7_c00479{margin-left:-0.892160pt;}
._6_c00479{width:0.892160pt;}
._5_c00479{width:3.328000pt;}
._4_c00479{width:4.608000pt;}
._3_c00479{width:5.888000pt;}
._8_c00479{width:8.659200pt;}
._2_c00479{width:11.200000pt;}
._1_c00479{width:12.160000pt;}
._0_c00479{width:21.440000pt;}
.fs4_c00479{font-size:32.000000pt;}
.fs3_c00479{font-size:37.120000pt;}
.fs7_c00479{font-size:47.360000pt;}
.fs2_c00479{font-size:49.920000pt;}
.fs5_c00479{font-size:52.480000pt;}
.fs8_c00479{font-size:53.333333pt;}
.fs6_c00479{font-size:54.095146pt;}
.fs0_c00479{font-size:64.000000pt;}
.fs1_c00479{font-size:65.969690pt;}
.y0_c00479{bottom:0.000000pt;}
.y27_c00479{bottom:2.773333pt;}
.y25_c00479{bottom:30.720000pt;}
.y26_c00479{bottom:30.884071pt;}
.y1_c00479{bottom:48.000000pt;}
.y23_c00479{bottom:49.318080pt;}
.y22_c00479{bottom:64.681600pt;}
.y21_c00479{bottom:80.360000pt;}
.y20_c00479{bottom:85.800000pt;}
.y1f_c00479{bottom:101.160000pt;}
.y1e_c00479{bottom:124.840000pt;}
.y1d_c00479{bottom:212.200000pt;}
.y24_c00479{bottom:233.960000pt;}
.y1c_c00479{bottom:244.200000pt;}
.y1b_c00479{bottom:276.200000pt;}
.y1a_c00479{bottom:308.200000pt;}
.y19_c00479{bottom:340.200000pt;}
.y18_c00479{bottom:372.200000pt;}
.y17_c00479{bottom:404.200000pt;}
.y16_c00479{bottom:436.200000pt;}
.y15_c00479{bottom:468.200000pt;}
.y14_c00479{bottom:500.200000pt;}
.y13_c00479{bottom:532.520000pt;}
.y12_c00479{bottom:564.520000pt;}
.y11_c00479{bottom:596.520000pt;}
.y10_c00479{bottom:628.520000pt;}
.yf_c00479{bottom:660.520000pt;}
.ye_c00479{bottom:692.520000pt;}
.yd_c00479{bottom:724.520000pt;}
.yc_c00479{bottom:756.520000pt;}
.yb_c00479{bottom:775.080000pt;}
.ya_c00479{bottom:793.640000pt;}
.y9_c00479{bottom:825.640000pt;}
.y8_c00479{bottom:844.520000pt;}
.y7_c00479{bottom:863.080000pt;}
.y6_c00479{bottom:881.640000pt;}
.y5_c00479{bottom:900.520000pt;}
.y4_c00479{bottom:932.520000pt;}
.y3_c00479{bottom:964.520000pt;}
.y2_c00479{bottom:1011.880000pt;}
.hb_c00479{height:17.116093pt;}
.h6_c00479{height:28.992000pt;}
.h7_c00479{height:41.761453pt;}
.h9_c00479{height:41.920000pt;}
.ha_c00479{height:42.908160pt;}
.h8_c00479{height:47.546880pt;}
.hc_c00479{height:50.346667pt;}
.h4_c00479{height:50.928601pt;}
.h3_c00479{height:57.984000pt;}
.h5_c00479{height:60.510720pt;}
.h2_c00479{height:1067.880000pt;}
.h0_c00479{height:1122.520000pt;}
.h1_c00479{height:1122.666667pt;}
.w4_c00479{width:22.240000pt;}
.w3_c00479{width:572.480000pt;}
.w2_c00479{width:767.960000pt;}
.w0_c00479{width:793.720000pt;}
.w1_c00479{width:794.000000pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:12.880000pt;}
.x2_c00479{left:100.480133pt;}
.xd_c00479{left:110.480000pt;}
.x3_c00479{left:143.583333pt;}
.xe_c00479{left:189.995733pt;}
.x4_c00479{left:210.654267pt;}
.x9_c00479{left:289.633200pt;}
.xa_c00479{left:317.081733pt;}
.x5_c00479{left:350.500933pt;}
.xb_c00479{left:367.925733pt;}
.xc_c00479{left:385.698533pt;}
.x6_c00479{left:391.380133pt;}
.x7_c00479{left:468.852800pt;}
.x8_c00479{left:539.955733pt;}
.xf_c00479{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2a77a214a5e2112c13bb8b6.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.134000;font-style:normal;font-weight:normal;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_f6cc8ca26026e24ff552f10c.woff2')format("woff");}.ff2_c00480{font-family:ff2_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:ff3_c00480;src:url('chunks/assets/font_81a12004dfd3b74fbcb8ca32.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00480{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00480{letter-spacing:0.202464px;}
.ls6_c00480{letter-spacing:0.239760px;}
.ls4_c00480{letter-spacing:0.282384px;}
.ls3_c00480{letter-spacing:0.399600px;}
.ls0_c00480{letter-spacing:5.976000px;}
.ls1_c00480{letter-spacing:6.159920px;}
.sc__c00480{text-shadow:none;}
.sc1_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00480{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc1_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00480{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00480{word-spacing:-15.014304px;}
.ws0_c00480{word-spacing:-14.811840px;}
.ws2_c00480{word-spacing:0.000000px;}
._0_c00480{margin-left:-1.118880px;}
._1_c00480{width:1.012320px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs2_c00480{font-size:53.280000px;}
.fs3_c00480{font-size:60.000000px;}
.fs0_c00480{font-size:72.000000px;}
.fs1_c00480{font-size:74.215901px;}
.y0_c00480{bottom:0.000000px;}
.y28_c00480{bottom:3.120000px;}
.y25_c00480{bottom:14.400000px;}
.y22_c00480{bottom:18.720000px;}
.y24_c00480{bottom:29.880000px;}
.y21_c00480{bottom:34.560000px;}
.y27_c00480{bottom:34.744580px;}
.y1_c00480{bottom:54.000000px;}
.y1f_c00480{bottom:76.725000px;}
.y1e_c00480{bottom:112.725000px;}
.y26_c00480{bottom:139.365000px;}
.y1d_c00480{bottom:148.725000px;}
.y1c_c00480{bottom:184.725000px;}
.y1b_c00480{bottom:220.725000px;}
.y1a_c00480{bottom:256.725000px;}
.y19_c00480{bottom:292.725000px;}
.y18_c00480{bottom:328.725000px;}
.y17_c00480{bottom:364.725000px;}
.y16_c00480{bottom:400.725000px;}
.y15_c00480{bottom:436.725000px;}
.y14_c00480{bottom:472.725000px;}
.y23_c00480{bottom:508.365000px;}
.y13_c00480{bottom:509.085000px;}
.y12_c00480{bottom:545.085000px;}
.y11_c00480{bottom:581.085000px;}
.y10_c00480{bottom:617.085000px;}
.yf_c00480{bottom:653.085000px;}
.ye_c00480{bottom:689.085000px;}
.yd_c00480{bottom:725.085000px;}
.yc_c00480{bottom:761.085000px;}
.y20_c00480{bottom:776.205000px;}
.yb_c00480{bottom:797.085000px;}
.ya_c00480{bottom:833.085000px;}
.y9_c00480{bottom:869.085000px;}
.y8_c00480{bottom:905.085000px;}
.y7_c00480{bottom:941.085000px;}
.y6_c00480{bottom:977.085000px;}
.y5_c00480{bottom:1013.085000px;}
.y4_c00480{bottom:1049.085000px;}
.y3_c00480{bottom:1085.085000px;}
.y2_c00480{bottom:1138.365000px;}
.h8_c00480{height:19.255605px;}
.h7_c00480{height:42.480000px;}
.h5_c00480{height:47.160000px;}
.h6_c00480{height:48.271680px;}
.h9_c00480{height:56.640000px;}
.h4_c00480{height:57.294676px;}
.h3_c00480{height:65.232000px;}
.h2_c00480{height:1201.365000px;}
.h0_c00480{height:1262.835000px;}
.h1_c00480{height:1263.000000px;}
.w6_c00480{width:25.020000px;}
.w3_c00480{width:375.840000px;}
.w5_c00480{width:435.600000px;}
.w4_c00480{width:436.680000px;}
.w2_c00480{width:863.955000px;}
.w0_c00480{width:892.935000px;}
.w1_c00480{width:893.250000px;}
.x0_c00480{left:0.000000px;}
.x6_c00480{left:4.267800px;}
.xa_c00480{left:6.903750px;}
.x1_c00480{left:14.490000px;}
.x7_c00480{left:103.700550px;}
.x2_c00480{left:113.040150px;}
.x9_c00480{left:148.488150px;}
.xb_c00480{left:152.444700px;}
.x3_c00480{left:161.531250px;}
.x8_c00480{left:232.290000px;}
.x4_c00480{left:236.986050px;}
.x5_c00480{left:259.290000px;}
.xc_c00480{left:759.914612px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls2_c00480{letter-spacing:0.000000pt;}
.ls5_c00480{letter-spacing:0.179968pt;}
.ls6_c00480{letter-spacing:0.213120pt;}
.ls4_c00480{letter-spacing:0.251008pt;}
.ls3_c00480{letter-spacing:0.355200pt;}
.ls0_c00480{letter-spacing:5.312000pt;}
.ls1_c00480{letter-spacing:5.475484pt;}
.ws1_c00480{word-spacing:-13.346048pt;}
.ws0_c00480{word-spacing:-13.166080pt;}
.ws2_c00480{word-spacing:0.000000pt;}
._0_c00480{margin-left:-0.994560pt;}
._1_c00480{width:0.899840pt;}
.fs2_c00480{font-size:47.360000pt;}
.fs3_c00480{font-size:53.333333pt;}
.fs0_c00480{font-size:64.000000pt;}
.fs1_c00480{font-size:65.969690pt;}
.y0_c00480{bottom:0.000000pt;}
.y28_c00480{bottom:2.773333pt;}
.y25_c00480{bottom:12.800000pt;}
.y22_c00480{bottom:16.640000pt;}
.y24_c00480{bottom:26.560000pt;}
.y21_c00480{bottom:30.720000pt;}
.y27_c00480{bottom:30.884071pt;}
.y1_c00480{bottom:48.000000pt;}
.y1f_c00480{bottom:68.200000pt;}
.y1e_c00480{bottom:100.200000pt;}
.y26_c00480{bottom:123.880000pt;}
.y1d_c00480{bottom:132.200000pt;}
.y1c_c00480{bottom:164.200000pt;}
.y1b_c00480{bottom:196.200000pt;}
.y1a_c00480{bottom:228.200000pt;}
.y19_c00480{bottom:260.200000pt;}
.y18_c00480{bottom:292.200000pt;}
.y17_c00480{bottom:324.200000pt;}
.y16_c00480{bottom:356.200000pt;}
.y15_c00480{bottom:388.200000pt;}
.y14_c00480{bottom:420.200000pt;}
.y23_c00480{bottom:451.880000pt;}
.y13_c00480{bottom:452.520000pt;}
.y12_c00480{bottom:484.520000pt;}
.y11_c00480{bottom:516.520000pt;}
.y10_c00480{bottom:548.520000pt;}
.yf_c00480{bottom:580.520000pt;}
.ye_c00480{bottom:612.520000pt;}
.yd_c00480{bottom:644.520000pt;}
.yc_c00480{bottom:676.520000pt;}
.y20_c00480{bottom:689.960000pt;}
.yb_c00480{bottom:708.520000pt;}
.ya_c00480{bottom:740.520000pt;}
.y9_c00480{bottom:772.520000pt;}
.y8_c00480{bottom:804.520000pt;}
.y7_c00480{bottom:836.520000pt;}
.y6_c00480{bottom:868.520000pt;}
.y5_c00480{bottom:900.520000pt;}
.y4_c00480{bottom:932.520000pt;}
.y3_c00480{bottom:964.520000pt;}
.y2_c00480{bottom:1011.880000pt;}
.h8_c00480{height:17.116093pt;}
.h7_c00480{height:37.760000pt;}
.h5_c00480{height:41.920000pt;}
.h6_c00480{height:42.908160pt;}
.h9_c00480{height:50.346667pt;}
.h4_c00480{height:50.928601pt;}
.h3_c00480{height:57.984000pt;}
.h2_c00480{height:1067.880000pt;}
.h0_c00480{height:1122.520000pt;}
.h1_c00480{height:1122.666667pt;}
.w6_c00480{width:22.240000pt;}
.w3_c00480{width:334.080000pt;}
.w5_c00480{width:387.200000pt;}
.w4_c00480{width:388.160000pt;}
.w2_c00480{width:767.960000pt;}
.w0_c00480{width:793.720000pt;}
.w1_c00480{width:794.000000pt;}
.x0_c00480{left:0.000000pt;}
.x6_c00480{left:3.793600pt;}
.xa_c00480{left:6.136667pt;}
.x1_c00480{left:12.880000pt;}
.x7_c00480{left:92.178267pt;}
.x2_c00480{left:100.480133pt;}
.x9_c00480{left:131.989467pt;}
.xb_c00480{left:135.506400pt;}
.x3_c00480{left:143.583333pt;}
.x8_c00480{left:206.480000pt;}
.x4_c00480{left:210.654267pt;}
.x5_c00480{left:230.480000pt;}
.xc_c00480{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ece41afed7a275d1996536cd.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_52cccdaaffb6bb1512a7305e.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:0.787000;font-style:normal;font-weight:normal;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_495b281a206a13f07e473266.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00481{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00481{letter-spacing:0.000000px;}
.ls5_c00481{letter-spacing:0.202464px;}
.ls3_c00481{letter-spacing:0.399600px;}
.ls4_c00481{letter-spacing:4.923072px;}
.ls0_c00481{letter-spacing:5.976000px;}
.ls1_c00481{letter-spacing:6.159920px;}
.sc__c00481{text-shadow:none;}
.sc1_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00481{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc1_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00481{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00481{word-spacing:-19.734912px;}
.ws1_c00481{word-spacing:0.000000px;}
._0_c00481{margin-left:-1.118880px;}
.fc1_c00481{color:transparent;}
.fc0_c00481{color:rgb(0,0,0);}
.fs2_c00481{font-size:53.280000px;}
.fs3_c00481{font-size:60.000000px;}
.fs0_c00481{font-size:72.000000px;}
.fs1_c00481{font-size:74.215901px;}
.y0_c00481{bottom:0.000000px;}
.y23_c00481{bottom:3.120000px;}
.y21_c00481{bottom:34.560000px;}
.y22_c00481{bottom:34.744580px;}
.y1_c00481{bottom:54.000000px;}
.y1f_c00481{bottom:76.725000px;}
.y1e_c00481{bottom:112.725000px;}
.y20_c00481{bottom:137.205000px;}
.y1d_c00481{bottom:148.725000px;}
.y1c_c00481{bottom:184.725000px;}
.y1b_c00481{bottom:220.725000px;}
.y1a_c00481{bottom:256.725000px;}
.y19_c00481{bottom:292.725000px;}
.y18_c00481{bottom:328.725000px;}
.y17_c00481{bottom:364.725000px;}
.y16_c00481{bottom:400.725000px;}
.y15_c00481{bottom:436.725000px;}
.y14_c00481{bottom:472.725000px;}
.y13_c00481{bottom:509.085000px;}
.y12_c00481{bottom:545.085000px;}
.y11_c00481{bottom:581.085000px;}
.y10_c00481{bottom:617.085000px;}
.yf_c00481{bottom:653.085000px;}
.ye_c00481{bottom:689.085000px;}
.yd_c00481{bottom:725.085000px;}
.yc_c00481{bottom:761.085000px;}
.yb_c00481{bottom:797.085000px;}
.ya_c00481{bottom:833.085000px;}
.y9_c00481{bottom:869.085000px;}
.y8_c00481{bottom:905.085000px;}
.y7_c00481{bottom:941.085000px;}
.y6_c00481{bottom:977.085000px;}
.y5_c00481{bottom:1013.085000px;}
.y4_c00481{bottom:1049.085000px;}
.y3_c00481{bottom:1085.085000px;}
.y2_c00481{bottom:1138.365000px;}
.h7_c00481{height:19.255605px;}
.h6_c00481{height:41.132160px;}
.h5_c00481{height:47.160000px;}
.h3_c00481{height:55.584000px;}
.h8_c00481{height:56.640000px;}
.h4_c00481{height:57.294676px;}
.h2_c00481{height:1201.365000px;}
.h0_c00481{height:1262.835000px;}
.h1_c00481{height:1263.000000px;}
.w4_c00481{width:25.020000px;}
.w3_c00481{width:644.040000px;}
.w2_c00481{width:863.955000px;}
.w0_c00481{width:892.935000px;}
.w1_c00481{width:893.250000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:14.490000px;}
.x2_c00481{left:113.040150px;}
.x5_c00481{left:124.290000px;}
.x3_c00481{left:161.531250px;}
.x6_c00481{left:213.745200px;}
.x4_c00481{left:236.986050px;}
.x7_c00481{left:759.914612px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls2_c00481{letter-spacing:0.000000pt;}
.ls5_c00481{letter-spacing:0.179968pt;}
.ls3_c00481{letter-spacing:0.355200pt;}
.ls4_c00481{letter-spacing:4.376064pt;}
.ls0_c00481{letter-spacing:5.312000pt;}
.ls1_c00481{letter-spacing:5.475484pt;}
.ws0_c00481{word-spacing:-17.542144pt;}
.ws1_c00481{word-spacing:0.000000pt;}
._0_c00481{margin-left:-0.994560pt;}
.fs2_c00481{font-size:47.360000pt;}
.fs3_c00481{font-size:53.333333pt;}
.fs0_c00481{font-size:64.000000pt;}
.fs1_c00481{font-size:65.969690pt;}
.y0_c00481{bottom:0.000000pt;}
.y23_c00481{bottom:2.773333pt;}
.y21_c00481{bottom:30.720000pt;}
.y22_c00481{bottom:30.884071pt;}
.y1_c00481{bottom:48.000000pt;}
.y1f_c00481{bottom:68.200000pt;}
.y1e_c00481{bottom:100.200000pt;}
.y20_c00481{bottom:121.960000pt;}
.y1d_c00481{bottom:132.200000pt;}
.y1c_c00481{bottom:164.200000pt;}
.y1b_c00481{bottom:196.200000pt;}
.y1a_c00481{bottom:228.200000pt;}
.y19_c00481{bottom:260.200000pt;}
.y18_c00481{bottom:292.200000pt;}
.y17_c00481{bottom:324.200000pt;}
.y16_c00481{bottom:356.200000pt;}
.y15_c00481{bottom:388.200000pt;}
.y14_c00481{bottom:420.200000pt;}
.y13_c00481{bottom:452.520000pt;}
.y12_c00481{bottom:484.520000pt;}
.y11_c00481{bottom:516.520000pt;}
.y10_c00481{bottom:548.520000pt;}
.yf_c00481{bottom:580.520000pt;}
.ye_c00481{bottom:612.520000pt;}
.yd_c00481{bottom:644.520000pt;}
.yc_c00481{bottom:676.520000pt;}
.yb_c00481{bottom:708.520000pt;}
.ya_c00481{bottom:740.520000pt;}
.y9_c00481{bottom:772.520000pt;}
.y8_c00481{bottom:804.520000pt;}
.y7_c00481{bottom:836.520000pt;}
.y6_c00481{bottom:868.520000pt;}
.y5_c00481{bottom:900.520000pt;}
.y4_c00481{bottom:932.520000pt;}
.y3_c00481{bottom:964.520000pt;}
.y2_c00481{bottom:1011.880000pt;}
.h7_c00481{height:17.116093pt;}
.h6_c00481{height:36.561920pt;}
.h5_c00481{height:41.920000pt;}
.h3_c00481{height:49.408000pt;}
.h8_c00481{height:50.346667pt;}
.h4_c00481{height:50.928601pt;}
.h2_c00481{height:1067.880000pt;}
.h0_c00481{height:1122.520000pt;}
.h1_c00481{height:1122.666667pt;}
.w4_c00481{width:22.240000pt;}
.w3_c00481{width:572.480000pt;}
.w2_c00481{width:767.960000pt;}
.w0_c00481{width:793.720000pt;}
.w1_c00481{width:794.000000pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:12.880000pt;}
.x2_c00481{left:100.480133pt;}
.x5_c00481{left:110.480000pt;}
.x3_c00481{left:143.583333pt;}
.x6_c00481{left:189.995733pt;}
.x4_c00481{left:210.654267pt;}
.x7_c00481{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b84a34a61aac1a87fad5d3e5.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_52cccdaaffb6bb1512a7305e.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:0.787000;font-style:normal;font-weight:normal;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_d8058bca1d467c247ab53333.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00482{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00482{letter-spacing:0.000000px;}
.ls5_c00482{letter-spacing:0.202464px;}
.ls4_c00482{letter-spacing:0.282384px;}
.ls3_c00482{letter-spacing:0.399600px;}
.ls0_c00482{letter-spacing:5.976000px;}
.ls1_c00482{letter-spacing:6.159920px;}
.sc__c00482{text-shadow:none;}
.sc1_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00482{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc1_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00482{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00482{word-spacing:-14.811840px;}
.ws1_c00482{word-spacing:0.000000px;}
._0_c00482{margin-left:-1.118880px;}
._1_c00482{width:1.012320px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs2_c00482{font-size:53.280000px;}
.fs3_c00482{font-size:60.000000px;}
.fs0_c00482{font-size:72.000000px;}
.fs1_c00482{font-size:74.215901px;}
.y0_c00482{bottom:0.000000px;}
.y29_c00482{bottom:3.120000px;}
.y25_c00482{bottom:14.400000px;}
.y22_c00482{bottom:18.720000px;}
.y24_c00482{bottom:29.880000px;}
.y21_c00482{bottom:34.559850px;}
.y27_c00482{bottom:34.560000px;}
.y28_c00482{bottom:34.744580px;}
.y1_c00482{bottom:54.000000px;}
.y1f_c00482{bottom:76.725000px;}
.y1e_c00482{bottom:112.725000px;}
.y1d_c00482{bottom:148.725000px;}
.y26_c00482{bottom:175.365000px;}
.y1c_c00482{bottom:184.725000px;}
.y1b_c00482{bottom:220.725000px;}
.y1a_c00482{bottom:256.725000px;}
.y19_c00482{bottom:292.725000px;}
.y18_c00482{bottom:328.725000px;}
.y17_c00482{bottom:364.725000px;}
.y16_c00482{bottom:400.725000px;}
.y15_c00482{bottom:436.725000px;}
.y14_c00482{bottom:472.725000px;}
.y13_c00482{bottom:509.085000px;}
.y23_c00482{bottom:544.365000px;}
.y12_c00482{bottom:545.085000px;}
.y11_c00482{bottom:581.085000px;}
.y10_c00482{bottom:617.085000px;}
.yf_c00482{bottom:653.085000px;}
.ye_c00482{bottom:689.085000px;}
.yd_c00482{bottom:725.085000px;}
.yc_c00482{bottom:761.085000px;}
.yb_c00482{bottom:797.085000px;}
.y20_c00482{bottom:812.205000px;}
.ya_c00482{bottom:833.085000px;}
.y9_c00482{bottom:869.085000px;}
.y8_c00482{bottom:905.085000px;}
.y7_c00482{bottom:941.085000px;}
.y6_c00482{bottom:977.085000px;}
.y5_c00482{bottom:1013.085000px;}
.y4_c00482{bottom:1049.085000px;}
.y3_c00482{bottom:1085.085000px;}
.y2_c00482{bottom:1138.365000px;}
.h8_c00482{height:19.255605px;}
.h6_c00482{height:41.132160px;}
.h7_c00482{height:42.480000px;}
.h5_c00482{height:47.160000px;}
.h3_c00482{height:55.584000px;}
.h9_c00482{height:56.640000px;}
.h4_c00482{height:57.294676px;}
.h2_c00482{height:1201.365000px;}
.h0_c00482{height:1262.835000px;}
.h1_c00482{height:1263.000000px;}
.w6_c00482{width:25.020000px;}
.w3_c00482{width:375.840000px;}
.w5_c00482{width:435.600000px;}
.w4_c00482{width:436.680000px;}
.w2_c00482{width:863.955000px;}
.w0_c00482{width:892.935000px;}
.w1_c00482{width:893.250000px;}
.x0_c00482{left:0.000000px;}
.x6_c00482{left:4.267800px;}
.xa_c00482{left:6.903750px;}
.x1_c00482{left:14.490000px;}
.x7_c00482{left:103.700550px;}
.x2_c00482{left:113.040150px;}
.x9_c00482{left:137.236050px;}
.xb_c00482{left:152.444700px;}
.x3_c00482{left:161.531250px;}
.x8_c00482{left:232.290000px;}
.x4_c00482{left:236.986050px;}
.x5_c00482{left:259.290000px;}
.xc_c00482{left:759.914612px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls2_c00482{letter-spacing:0.000000pt;}
.ls5_c00482{letter-spacing:0.179968pt;}
.ls4_c00482{letter-spacing:0.251008pt;}
.ls3_c00482{letter-spacing:0.355200pt;}
.ls0_c00482{letter-spacing:5.312000pt;}
.ls1_c00482{letter-spacing:5.475484pt;}
.ws0_c00482{word-spacing:-13.166080pt;}
.ws1_c00482{word-spacing:0.000000pt;}
._0_c00482{margin-left:-0.994560pt;}
._1_c00482{width:0.899840pt;}
.fs2_c00482{font-size:47.360000pt;}
.fs3_c00482{font-size:53.333333pt;}
.fs0_c00482{font-size:64.000000pt;}
.fs1_c00482{font-size:65.969690pt;}
.y0_c00482{bottom:0.000000pt;}
.y29_c00482{bottom:2.773333pt;}
.y25_c00482{bottom:12.800000pt;}
.y22_c00482{bottom:16.640000pt;}
.y24_c00482{bottom:26.560000pt;}
.y21_c00482{bottom:30.719867pt;}
.y27_c00482{bottom:30.720000pt;}
.y28_c00482{bottom:30.884071pt;}
.y1_c00482{bottom:48.000000pt;}
.y1f_c00482{bottom:68.200000pt;}
.y1e_c00482{bottom:100.200000pt;}
.y1d_c00482{bottom:132.200000pt;}
.y26_c00482{bottom:155.880000pt;}
.y1c_c00482{bottom:164.200000pt;}
.y1b_c00482{bottom:196.200000pt;}
.y1a_c00482{bottom:228.200000pt;}
.y19_c00482{bottom:260.200000pt;}
.y18_c00482{bottom:292.200000pt;}
.y17_c00482{bottom:324.200000pt;}
.y16_c00482{bottom:356.200000pt;}
.y15_c00482{bottom:388.200000pt;}
.y14_c00482{bottom:420.200000pt;}
.y13_c00482{bottom:452.520000pt;}
.y23_c00482{bottom:483.880000pt;}
.y12_c00482{bottom:484.520000pt;}
.y11_c00482{bottom:516.520000pt;}
.y10_c00482{bottom:548.520000pt;}
.yf_c00482{bottom:580.520000pt;}
.ye_c00482{bottom:612.520000pt;}
.yd_c00482{bottom:644.520000pt;}
.yc_c00482{bottom:676.520000pt;}
.yb_c00482{bottom:708.520000pt;}
.y20_c00482{bottom:721.960000pt;}
.ya_c00482{bottom:740.520000pt;}
.y9_c00482{bottom:772.520000pt;}
.y8_c00482{bottom:804.520000pt;}
.y7_c00482{bottom:836.520000pt;}
.y6_c00482{bottom:868.520000pt;}
.y5_c00482{bottom:900.520000pt;}
.y4_c00482{bottom:932.520000pt;}
.y3_c00482{bottom:964.520000pt;}
.y2_c00482{bottom:1011.880000pt;}
.h8_c00482{height:17.116093pt;}
.h6_c00482{height:36.561920pt;}
.h7_c00482{height:37.760000pt;}
.h5_c00482{height:41.920000pt;}
.h3_c00482{height:49.408000pt;}
.h9_c00482{height:50.346667pt;}
.h4_c00482{height:50.928601pt;}
.h2_c00482{height:1067.880000pt;}
.h0_c00482{height:1122.520000pt;}
.h1_c00482{height:1122.666667pt;}
.w6_c00482{width:22.240000pt;}
.w3_c00482{width:334.080000pt;}
.w5_c00482{width:387.200000pt;}
.w4_c00482{width:388.160000pt;}
.w2_c00482{width:767.960000pt;}
.w0_c00482{width:793.720000pt;}
.w1_c00482{width:794.000000pt;}
.x0_c00482{left:0.000000pt;}
.x6_c00482{left:3.793600pt;}
.xa_c00482{left:6.136667pt;}
.x1_c00482{left:12.880000pt;}
.x7_c00482{left:92.178267pt;}
.x2_c00482{left:100.480133pt;}
.x9_c00482{left:121.987600pt;}
.xb_c00482{left:135.506400pt;}
.x3_c00482{left:143.583333pt;}
.x8_c00482{left:206.480000pt;}
.x4_c00482{left:210.654267pt;}
.x5_c00482{left:230.480000pt;}
.xc_c00482{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8e12a0bce21d419a35c8a3f.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.134000;font-style:normal;font-weight:normal;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_9c9df1a1212207dbe4edf66e.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:0.991000;font-style:normal;font-weight:normal;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_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00483;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00483{font-family:ff4_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:ff5_c00483;src:url('chunks/assets/font_0031a422c5f8cd823f5863d5.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00483{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00483{vertical-align:-24.480000px;}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:30.240000px;}
.ls5_c00483{letter-spacing:0.000000px;}
.ls9_c00483{letter-spacing:0.425088px;}
.lsb_c00483{letter-spacing:0.478224px;}
.ls8_c00483{letter-spacing:0.531360px;}
.ls7_c00483{letter-spacing:1.340208px;}
.ls6_c00483{letter-spacing:5.430672px;}
.ls3_c00483{letter-spacing:5.976000px;}
.ls1_c00483{letter-spacing:5.980200px;}
.ls0_c00483{letter-spacing:5.989200px;}
.ls4_c00483{letter-spacing:6.159920px;}
.lsa_c00483{letter-spacing:18.668448px;}
.ls2_c00483{letter-spacing:54.864000px;}
.sc__c00483{text-shadow:none;}
.sc1_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00483{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc1_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00483{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00483{word-spacing:-21.043152px;}
.ws0_c00483{word-spacing:-11.609280px;}
.ws2_c00483{word-spacing:-10.008000px;}
.ws3_c00483{word-spacing:0.000000px;}
._b_c00483{margin-left:-19.069920px;}
._a_c00483{margin-left:-18.007200px;}
._3_c00483{margin-left:-1.179360px;}
._0_c00483{width:1.152000px;}
._2_c00483{width:2.304000px;}
._9_c00483{width:4.320000px;}
._6_c00483{width:8.064000px;}
._5_c00483{width:9.216000px;}
._7_c00483{width:15.768000px;}
._8_c00483{width:17.568000px;}
._1_c00483{width:18.648000px;}
._4_c00483{width:22.392000px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs4_c00483{font-size:36.000000px;}
.fs2_c00483{font-size:41.760000px;}
.fs3_c00483{font-size:56.160000px;}
.fs5_c00483{font-size:59.040000px;}
.fs6_c00483{font-size:60.000000px;}
.fs0_c00483{font-size:72.000000px;}
.fs1_c00483{font-size:74.215901px;}
.y0_c00483{bottom:0.000000px;}
.y28_c00483{bottom:3.120000px;}
.y27_c00483{bottom:34.744580px;}
.y1_c00483{bottom:54.000000px;}
.y26_c00483{bottom:55.481040px;}
.y25_c00483{bottom:78.885000px;}
.y24_c00483{bottom:90.402840px;}
.y23_c00483{bottom:107.686800px;}
.y22_c00483{bottom:131.445000px;}
.y21_c00483{bottom:158.085000px;}
.y20_c00483{bottom:186.165000px;}
.y1f_c00483{bottom:207.405000px;}
.y1e_c00483{bottom:243.405000px;}
.y1d_c00483{bottom:279.405000px;}
.y1c_c00483{bottom:315.405000px;}
.y1b_c00483{bottom:336.285000px;}
.y1a_c00483{bottom:372.285000px;}
.y19_c00483{bottom:408.285000px;}
.y18_c00483{bottom:444.285000px;}
.y17_c00483{bottom:465.525000px;}
.y16_c00483{bottom:486.405000px;}
.y15_c00483{bottom:507.285000px;}
.y14_c00483{bottom:528.525000px;}
.y13_c00483{bottom:564.525000px;}
.y12_c00483{bottom:600.525000px;}
.y11_c00483{bottom:636.525000px;}
.y10_c00483{bottom:672.525000px;}
.yf_c00483{bottom:708.525000px;}
.ye_c00483{bottom:744.525000px;}
.yd_c00483{bottom:780.525000px;}
.yc_c00483{bottom:816.525000px;}
.yb_c00483{bottom:852.525000px;}
.ya_c00483{bottom:873.405000px;}
.y9_c00483{bottom:894.645000px;}
.y8_c00483{bottom:915.525000px;}
.y7_c00483{bottom:951.525000px;}
.y6_c00483{bottom:972.405000px;}
.y5_c00483{bottom:1008.405000px;}
.y4_c00483{bottom:1046.925000px;}
.y3_c00483{bottom:1085.085000px;}
.y2_c00483{bottom:1138.365000px;}
.h8_c00483{height:19.255605px;}
.h6_c00483{height:32.616000px;}
.h7_c00483{height:53.490240px;}
.h9_c00483{height:56.640000px;}
.h4_c00483{height:57.294676px;}
.h3_c00483{height:65.232000px;}
.h5_c00483{height:68.074560px;}
.h2_c00483{height:1201.365000px;}
.h0_c00483{height:1262.835000px;}
.h1_c00483{height:1263.000000px;}
.w3_c00483{width:25.020000px;}
.w2_c00483{width:863.955000px;}
.w0_c00483{width:892.935000px;}
.w1_c00483{width:893.250000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:14.490000px;}
.x2_c00483{left:113.040150px;}
.x6_c00483{left:140.037600px;}
.x3_c00483{left:161.531250px;}
.x4_c00483{left:236.986050px;}
.x5_c00483{left:413.967000px;}
.x7_c00483{left:503.003850px;}
.x8_c00483{left:513.011700px;}
.x9_c00483{left:759.914612px;}
@media print{
.v2_c00483{vertical-align:-21.760000pt;}
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:26.880000pt;}
.ls5_c00483{letter-spacing:0.000000pt;}
.ls9_c00483{letter-spacing:0.377856pt;}
.lsb_c00483{letter-spacing:0.425088pt;}
.ls8_c00483{letter-spacing:0.472320pt;}
.ls7_c00483{letter-spacing:1.191296pt;}
.ls6_c00483{letter-spacing:4.827264pt;}
.ls3_c00483{letter-spacing:5.312000pt;}
.ls1_c00483{letter-spacing:5.315733pt;}
.ls0_c00483{letter-spacing:5.323733pt;}
.ls4_c00483{letter-spacing:5.475484pt;}
.lsa_c00483{letter-spacing:16.594176pt;}
.ls2_c00483{letter-spacing:48.768000pt;}
.ws1_c00483{word-spacing:-18.705024pt;}
.ws0_c00483{word-spacing:-10.319360pt;}
.ws2_c00483{word-spacing:-8.896000pt;}
.ws3_c00483{word-spacing:0.000000pt;}
._b_c00483{margin-left:-16.951040pt;}
._a_c00483{margin-left:-16.006400pt;}
._3_c00483{margin-left:-1.048320pt;}
._0_c00483{width:1.024000pt;}
._2_c00483{width:2.048000pt;}
._9_c00483{width:3.840000pt;}
._6_c00483{width:7.168000pt;}
._5_c00483{width:8.192000pt;}
._7_c00483{width:14.016000pt;}
._8_c00483{width:15.616000pt;}
._1_c00483{width:16.576000pt;}
._4_c00483{width:19.904000pt;}
.fs4_c00483{font-size:32.000000pt;}
.fs2_c00483{font-size:37.120000pt;}
.fs3_c00483{font-size:49.920000pt;}
.fs5_c00483{font-size:52.480000pt;}
.fs6_c00483{font-size:53.333333pt;}
.fs0_c00483{font-size:64.000000pt;}
.fs1_c00483{font-size:65.969690pt;}
.y0_c00483{bottom:0.000000pt;}
.y28_c00483{bottom:2.773333pt;}
.y27_c00483{bottom:30.884071pt;}
.y1_c00483{bottom:48.000000pt;}
.y26_c00483{bottom:49.316480pt;}
.y25_c00483{bottom:70.120000pt;}
.y24_c00483{bottom:80.358080pt;}
.y23_c00483{bottom:95.721600pt;}
.y22_c00483{bottom:116.840000pt;}
.y21_c00483{bottom:140.520000pt;}
.y20_c00483{bottom:165.480000pt;}
.y1f_c00483{bottom:184.360000pt;}
.y1e_c00483{bottom:216.360000pt;}
.y1d_c00483{bottom:248.360000pt;}
.y1c_c00483{bottom:280.360000pt;}
.y1b_c00483{bottom:298.920000pt;}
.y1a_c00483{bottom:330.920000pt;}
.y19_c00483{bottom:362.920000pt;}
.y18_c00483{bottom:394.920000pt;}
.y17_c00483{bottom:413.800000pt;}
.y16_c00483{bottom:432.360000pt;}
.y15_c00483{bottom:450.920000pt;}
.y14_c00483{bottom:469.800000pt;}
.y13_c00483{bottom:501.800000pt;}
.y12_c00483{bottom:533.800000pt;}
.y11_c00483{bottom:565.800000pt;}
.y10_c00483{bottom:597.800000pt;}
.yf_c00483{bottom:629.800000pt;}
.ye_c00483{bottom:661.800000pt;}
.yd_c00483{bottom:693.800000pt;}
.yc_c00483{bottom:725.800000pt;}
.yb_c00483{bottom:757.800000pt;}
.ya_c00483{bottom:776.360000pt;}
.y9_c00483{bottom:795.240000pt;}
.y8_c00483{bottom:813.800000pt;}
.y7_c00483{bottom:845.800000pt;}
.y6_c00483{bottom:864.360000pt;}
.y5_c00483{bottom:896.360000pt;}
.y4_c00483{bottom:930.600000pt;}
.y3_c00483{bottom:964.520000pt;}
.y2_c00483{bottom:1011.880000pt;}
.h8_c00483{height:17.116093pt;}
.h6_c00483{height:28.992000pt;}
.h7_c00483{height:47.546880pt;}
.h9_c00483{height:50.346667pt;}
.h4_c00483{height:50.928601pt;}
.h3_c00483{height:57.984000pt;}
.h5_c00483{height:60.510720pt;}
.h2_c00483{height:1067.880000pt;}
.h0_c00483{height:1122.520000pt;}
.h1_c00483{height:1122.666667pt;}
.w3_c00483{width:22.240000pt;}
.w2_c00483{width:767.960000pt;}
.w0_c00483{width:793.720000pt;}
.w1_c00483{width:794.000000pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:12.880000pt;}
.x2_c00483{left:100.480133pt;}
.x6_c00483{left:124.477867pt;}
.x3_c00483{left:143.583333pt;}
.x4_c00483{left:210.654267pt;}
.x5_c00483{left:367.970667pt;}
.x7_c00483{left:447.114533pt;}
.x8_c00483{left:456.010400pt;}
.x9_c00483{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_998a2d2d98dfbd8e5a4cfbb3.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.134000;font-style:normal;font-weight:normal;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_7dddce6b6b416081f8aecaea.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:0.991000;font-style:normal;font-weight:normal;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_47c23b4935aabf211ddd1ed8.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_70aade93150704dd5e36f5ad.woff2')format("woff");}.ff4_c00484{font-family:ff4_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:ff5_c00484;src:url('chunks/assets/font_d847f8d3ffa626b389472fcb.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00484{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00484{vertical-align:-24.480000px;}
.v0_c00484{vertical-align:0.000000px;}
.v1_c00484{vertical-align:30.240000px;}
.ls13_c00484{letter-spacing:0.000000px;}
.ls9_c00484{letter-spacing:0.052440px;}
.lsf_c00484{letter-spacing:0.243428px;}
.ls15_c00484{letter-spacing:0.265680px;}
.ls10_c00484{letter-spacing:0.273857px;}
.ls4_c00484{letter-spacing:0.295200px;}
.lsa_c00484{letter-spacing:0.343440px;}
.ls1c_c00484{letter-spacing:0.371952px;}
.ls20_c00484{letter-spacing:0.383399px;}
.ls1f_c00484{letter-spacing:0.425088px;}
.lse_c00484{letter-spacing:0.438171px;}
.ls7_c00484{letter-spacing:0.439440px;}
.ls19_c00484{letter-spacing:0.478224px;}
.ls2_c00484{letter-spacing:0.519552px;}
.ls5_c00484{letter-spacing:0.531360px;}
.lsd_c00484{letter-spacing:0.537264px;}
.lsb_c00484{letter-spacing:0.560880px;}
.ls14_c00484{letter-spacing:0.584496px;}
.ls16_c00484{letter-spacing:0.602485px;}
.ls3_c00484{letter-spacing:0.657256px;}
.ls1b_c00484{letter-spacing:0.690768px;}
.ls1_c00484{letter-spacing:0.712027px;}
.ls0_c00484{letter-spacing:0.718113px;}
.ls17_c00484{letter-spacing:0.743904px;}
.ls1a_c00484{letter-spacing:0.797040px;}
.ls8_c00484{letter-spacing:0.815040px;}
.ls18_c00484{letter-spacing:0.932832px;}
.lsc_c00484{letter-spacing:2.833920px;}
.ls1e_c00484{letter-spacing:4.658256px;}
.ls1d_c00484{letter-spacing:5.430672px;}
.ls6_c00484{letter-spacing:5.975400px;}
.ls11_c00484{letter-spacing:5.976000px;}
.ls12_c00484{letter-spacing:6.159920px;}
.sc__c00484{text-shadow:none;}
.sc1_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00484{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc1_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00484{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7_c00484{word-spacing:-21.043152px;}
.ws8_c00484{word-spacing:-20.016000px;}
.ws0_c00484{word-spacing:-17.636370px;}
.ws2_c00484{word-spacing:-17.630284px;}
.ws3_c00484{word-spacing:-17.575513px;}
.ws1_c00484{word-spacing:-17.520742px;}
.wsb_c00484{word-spacing:-17.356428px;}
.wsc_c00484{word-spacing:-17.301656px;}
.ws4_c00484{word-spacing:-17.103888px;}
.ws6_c00484{word-spacing:-16.944480px;}
.ws5_c00484{word-spacing:-16.413120px;}
.ws9_c00484{word-spacing:-11.609280px;}
.wsa_c00484{word-spacing:-10.008000px;}
.wsd_c00484{word-spacing:0.000000px;}
._f_c00484{margin-left:-5.313600px;}
._e_c00484{margin-left:-4.132800px;}
._0_c00484{margin-left:-1.121760px;}
._1_c00484{width:1.121760px;}
._3_c00484{width:2.656800px;}
._b_c00484{width:3.798720px;}
._9_c00484{width:4.900320px;}
._6_c00484{width:6.435360px;}
._2_c00484{width:7.911360px;}
._4_c00484{width:9.210240px;}
._5_c00484{width:10.213920px;}
._7_c00484{width:11.288448px;}
._8_c00484{width:13.207248px;}
._c_c00484{width:14.315760px;}
._a_c00484{width:22.104000px;}
._d_c00484{width:27.000000px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs6_c00484{font-size:36.000000px;}
.fs5_c00484{font-size:41.760000px;}
.fs4_c00484{font-size:56.160000px;}
.fs2_c00484{font-size:59.040000px;}
.fs7_c00484{font-size:60.000000px;}
.fs3_c00484{font-size:60.857039px;}
.fs0_c00484{font-size:72.000000px;}
.fs1_c00484{font-size:74.215901px;}
.y0_c00484{bottom:0.000000px;}
.y3b_c00484{bottom:3.120000px;}
.y3a_c00484{bottom:34.744580px;}
.y1_c00484{bottom:54.000000px;}
.y39_c00484{bottom:55.485000px;}
.y38_c00484{bottom:61.605000px;}
.y37_c00484{bottom:72.765000px;}
.y36_c00484{bottom:78.885000px;}
.y35_c00484{bottom:90.405000px;}
.y34_c00484{bottom:96.525000px;}
.y33_c00484{bottom:107.685000px;}
.y32_c00484{bottom:107.686800px;}
.y30_c00484{bottom:125.322840px;}
.y31_c00484{bottom:125.325000px;}
.y2f_c00484{bottom:142.961040px;}
.y2e_c00484{bottom:166.365000px;}
.y2d_c00484{bottom:184.005000px;}
.y2c_c00484{bottom:210.645000px;}
.y2b_c00484{bottom:238.005000px;}
.y2a_c00484{bottom:274.005000px;}
.y29_c00484{bottom:294.885000px;}
.y28_c00484{bottom:330.885000px;}
.y27_c00484{bottom:352.125000px;}
.y26_c00484{bottom:373.005000px;}
.y25_c00484{bottom:393.885000px;}
.y24_c00484{bottom:415.125000px;}
.y23_c00484{bottom:451.125000px;}
.y22_c00484{bottom:472.005000px;}
.y21_c00484{bottom:493.245000px;}
.y20_c00484{bottom:529.245000px;}
.y1f_c00484{bottom:550.125000px;}
.y1e_c00484{bottom:571.005000px;}
.y1d_c00484{bottom:592.245000px;}
.y1c_c00484{bottom:628.245000px;}
.y1b_c00484{bottom:664.245000px;}
.y1a_c00484{bottom:692.321760px;}
.y19_c00484{bottom:709.959960px;}
.y18_c00484{bottom:727.243920px;}
.y17_c00484{bottom:744.882120px;}
.y16_c00484{bottom:762.520320px;}
.y15_c00484{bottom:779.804280px;}
.y14_c00484{bottom:797.442480px;}
.y13_c00484{bottom:814.726440px;}
.y12_c00484{bottom:832.364640px;}
.y11_c00484{bottom:850.002840px;}
.y10_c00484{bottom:867.286800px;}
.ye_c00484{bottom:884.923770px;}
.yf_c00484{bottom:884.925000px;}
.yd_c00484{bottom:909.764850px;}
.yc_c00484{bottom:909.766800px;}
.yb_c00484{bottom:927.405000px;}
.ya_c00484{bottom:927.408600px;}
.y9_c00484{bottom:952.249680px;}
.y7_c00484{bottom:977.443920px;}
.y8_c00484{bottom:977.445000px;}
.y6_c00484{bottom:1002.285000px;}
.y5_c00484{bottom:1028.205000px;}
.y4_c00484{bottom:1057.005000px;}
.y3_c00484{bottom:1085.085000px;}
.y2_c00484{bottom:1138.365000px;}
.ha_c00484{height:19.255605px;}
.h9_c00484{height:32.616000px;}
.h7_c00484{height:46.981634px;}
.h5_c00484{height:47.988281px;}
.h6_c00484{height:53.490240px;}
.hb_c00484{height:56.640000px;}
.h4_c00484{height:57.294676px;}
.h3_c00484{height:65.232000px;}
.h8_c00484{height:68.074560px;}
.h2_c00484{height:1201.365000px;}
.h0_c00484{height:1262.835000px;}
.h1_c00484{height:1263.000000px;}
.w3_c00484{width:25.020000px;}
.w2_c00484{width:863.955000px;}
.w0_c00484{width:892.935000px;}
.w1_c00484{width:893.250000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:14.490000px;}
.x2_c00484{left:113.040150px;}
.x28_c00484{left:122.213700px;}
.x1c_c00484{left:128.864850px;}
.xd_c00484{left:147.223350px;}
.x1f_c00484{left:148.347300px;}
.x2b_c00484{left:151.357950px;}
.x24_c00484{left:159.410850px;}
.x3_c00484{left:161.531250px;}
.x2e_c00484{left:175.521900px;}
.x25_c00484{left:181.895100px;}
.xe_c00484{left:191.397600px;}
.xf_c00484{left:199.737000px;}
.x19_c00484{left:201.851100px;}
.x29_c00484{left:213.875250px;}
.x20_c00484{left:217.376250px;}
.x4_c00484{left:236.986050px;}
.x10_c00484{left:238.901400px;}
.x1a_c00484{left:245.185200px;}
.x26_c00484{left:248.905200px;}
.x11_c00484{left:281.446650px;}
.x27_c00484{left:298.898850px;}
.x2c_c00484{left:301.441350px;}
.x12_c00484{left:306.421200px;}
.x1b_c00484{left:316.072650px;}
.x2d_c00484{left:321.421200px;}
.x5_c00484{left:325.665150px;}
.x13_c00484{left:373.606950px;}
.x22_c00484{left:383.579550px;}
.x23_c00484{left:391.716450px;}
.x14_c00484{left:398.581500px;}
.x6_c00484{left:405.673500px;}
.x7_c00484{left:410.173500px;}
.x2a_c00484{left:429.716700px;}
.xc_c00484{left:431.715150px;}
.x15_c00484{left:444.781800px;}
.x16_c00484{left:473.101350px;}
.x8_c00484{left:501.216000px;}
.x9_c00484{left:510.216000px;}
.xa_c00484{left:559.210950px;}
.xb_c00484{left:563.710950px;}
.x21_c00484{left:575.178900px;}
.x17_c00484{left:614.026650px;}
.x1d_c00484{left:625.131900px;}
.x18_c00484{left:633.181350px;}
.x1e_c00484{left:706.166700px;}
.x2f_c00484{left:759.914612px;}
@media print{
.v2_c00484{vertical-align:-21.760000pt;}
.v0_c00484{vertical-align:0.000000pt;}
.v1_c00484{vertical-align:26.880000pt;}
.ls13_c00484{letter-spacing:0.000000pt;}
.ls9_c00484{letter-spacing:0.046613pt;}
.lsf_c00484{letter-spacing:0.216381pt;}
.ls15_c00484{letter-spacing:0.236160pt;}
.ls10_c00484{letter-spacing:0.243428pt;}
.ls4_c00484{letter-spacing:0.262400pt;}
.lsa_c00484{letter-spacing:0.305280pt;}
.ls1c_c00484{letter-spacing:0.330624pt;}
.ls20_c00484{letter-spacing:0.340799pt;}
.ls1f_c00484{letter-spacing:0.377856pt;}
.lse_c00484{letter-spacing:0.389485pt;}
.ls7_c00484{letter-spacing:0.390613pt;}
.ls19_c00484{letter-spacing:0.425088pt;}
.ls2_c00484{letter-spacing:0.461824pt;}
.ls5_c00484{letter-spacing:0.472320pt;}
.lsd_c00484{letter-spacing:0.477568pt;}
.lsb_c00484{letter-spacing:0.498560pt;}
.ls14_c00484{letter-spacing:0.519552pt;}
.ls16_c00484{letter-spacing:0.535542pt;}
.ls3_c00484{letter-spacing:0.584228pt;}
.ls1b_c00484{letter-spacing:0.614016pt;}
.ls1_c00484{letter-spacing:0.632913pt;}
.ls0_c00484{letter-spacing:0.638323pt;}
.ls17_c00484{letter-spacing:0.661248pt;}
.ls1a_c00484{letter-spacing:0.708480pt;}
.ls8_c00484{letter-spacing:0.724480pt;}
.ls18_c00484{letter-spacing:0.829184pt;}
.lsc_c00484{letter-spacing:2.519040pt;}
.ls1e_c00484{letter-spacing:4.140672pt;}
.ls1d_c00484{letter-spacing:4.827264pt;}
.ls6_c00484{letter-spacing:5.311467pt;}
.ls11_c00484{letter-spacing:5.312000pt;}
.ls12_c00484{letter-spacing:5.475484pt;}
.ws7_c00484{word-spacing:-18.705024pt;}
.ws8_c00484{word-spacing:-17.792000pt;}
.ws0_c00484{word-spacing:-15.676773pt;}
.ws2_c00484{word-spacing:-15.671364pt;}
.ws3_c00484{word-spacing:-15.622678pt;}
.ws1_c00484{word-spacing:-15.573992pt;}
.wsb_c00484{word-spacing:-15.427936pt;}
.wsc_c00484{word-spacing:-15.379250pt;}
.ws4_c00484{word-spacing:-15.203456pt;}
.ws6_c00484{word-spacing:-15.061760pt;}
.ws5_c00484{word-spacing:-14.589440pt;}
.ws9_c00484{word-spacing:-10.319360pt;}
.wsa_c00484{word-spacing:-8.896000pt;}
.wsd_c00484{word-spacing:0.000000pt;}
._f_c00484{margin-left:-4.723200pt;}
._e_c00484{margin-left:-3.673600pt;}
._0_c00484{margin-left:-0.997120pt;}
._1_c00484{width:0.997120pt;}
._3_c00484{width:2.361600pt;}
._b_c00484{width:3.376640pt;}
._9_c00484{width:4.355840pt;}
._6_c00484{width:5.720320pt;}
._2_c00484{width:7.032320pt;}
._4_c00484{width:8.186880pt;}
._5_c00484{width:9.079040pt;}
._7_c00484{width:10.034176pt;}
._8_c00484{width:11.739776pt;}
._c_c00484{width:12.725120pt;}
._a_c00484{width:19.648000pt;}
._d_c00484{width:24.000000pt;}
.fs6_c00484{font-size:32.000000pt;}
.fs5_c00484{font-size:37.120000pt;}
.fs4_c00484{font-size:49.920000pt;}
.fs2_c00484{font-size:52.480000pt;}
.fs7_c00484{font-size:53.333333pt;}
.fs3_c00484{font-size:54.095146pt;}
.fs0_c00484{font-size:64.000000pt;}
.fs1_c00484{font-size:65.969690pt;}
.y0_c00484{bottom:0.000000pt;}
.y3b_c00484{bottom:2.773333pt;}
.y3a_c00484{bottom:30.884071pt;}
.y1_c00484{bottom:48.000000pt;}
.y39_c00484{bottom:49.320000pt;}
.y38_c00484{bottom:54.760000pt;}
.y37_c00484{bottom:64.680000pt;}
.y36_c00484{bottom:70.120000pt;}
.y35_c00484{bottom:80.360000pt;}
.y34_c00484{bottom:85.800000pt;}
.y33_c00484{bottom:95.720000pt;}
.y32_c00484{bottom:95.721600pt;}
.y30_c00484{bottom:111.398080pt;}
.y31_c00484{bottom:111.400000pt;}
.y2f_c00484{bottom:127.076480pt;}
.y2e_c00484{bottom:147.880000pt;}
.y2d_c00484{bottom:163.560000pt;}
.y2c_c00484{bottom:187.240000pt;}
.y2b_c00484{bottom:211.560000pt;}
.y2a_c00484{bottom:243.560000pt;}
.y29_c00484{bottom:262.120000pt;}
.y28_c00484{bottom:294.120000pt;}
.y27_c00484{bottom:313.000000pt;}
.y26_c00484{bottom:331.560000pt;}
.y25_c00484{bottom:350.120000pt;}
.y24_c00484{bottom:369.000000pt;}
.y23_c00484{bottom:401.000000pt;}
.y22_c00484{bottom:419.560000pt;}
.y21_c00484{bottom:438.440000pt;}
.y20_c00484{bottom:470.440000pt;}
.y1f_c00484{bottom:489.000000pt;}
.y1e_c00484{bottom:507.560000pt;}
.y1d_c00484{bottom:526.440000pt;}
.y1c_c00484{bottom:558.440000pt;}
.y1b_c00484{bottom:590.440000pt;}
.y1a_c00484{bottom:615.397120pt;}
.y19_c00484{bottom:631.075520pt;}
.y18_c00484{bottom:646.439040pt;}
.y17_c00484{bottom:662.117440pt;}
.y16_c00484{bottom:677.795840pt;}
.y15_c00484{bottom:693.159360pt;}
.y14_c00484{bottom:708.837760pt;}
.y13_c00484{bottom:724.201280pt;}
.y12_c00484{bottom:739.879680pt;}
.y11_c00484{bottom:755.558080pt;}
.y10_c00484{bottom:770.921600pt;}
.ye_c00484{bottom:786.598907pt;}
.yf_c00484{bottom:786.600000pt;}
.yd_c00484{bottom:808.679867pt;}
.yc_c00484{bottom:808.681600pt;}
.yb_c00484{bottom:824.360000pt;}
.ya_c00484{bottom:824.363200pt;}
.y9_c00484{bottom:846.444160pt;}
.y7_c00484{bottom:868.839040pt;}
.y8_c00484{bottom:868.840000pt;}
.y6_c00484{bottom:890.920000pt;}
.y5_c00484{bottom:913.960000pt;}
.y4_c00484{bottom:939.560000pt;}
.y3_c00484{bottom:964.520000pt;}
.y2_c00484{bottom:1011.880000pt;}
.ha_c00484{height:17.116093pt;}
.h9_c00484{height:28.992000pt;}
.h7_c00484{height:41.761453pt;}
.h5_c00484{height:42.656250pt;}
.h6_c00484{height:47.546880pt;}
.hb_c00484{height:50.346667pt;}
.h4_c00484{height:50.928601pt;}
.h3_c00484{height:57.984000pt;}
.h8_c00484{height:60.510720pt;}
.h2_c00484{height:1067.880000pt;}
.h0_c00484{height:1122.520000pt;}
.h1_c00484{height:1122.666667pt;}
.w3_c00484{width:22.240000pt;}
.w2_c00484{width:767.960000pt;}
.w0_c00484{width:793.720000pt;}
.w1_c00484{width:794.000000pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:12.880000pt;}
.x2_c00484{left:100.480133pt;}
.x28_c00484{left:108.634400pt;}
.x1c_c00484{left:114.546533pt;}
.xd_c00484{left:130.865200pt;}
.x1f_c00484{left:131.864267pt;}
.x2b_c00484{left:134.540400pt;}
.x24_c00484{left:141.698533pt;}
.x3_c00484{left:143.583333pt;}
.x2e_c00484{left:156.019467pt;}
.x25_c00484{left:161.684533pt;}
.xe_c00484{left:170.131200pt;}
.xf_c00484{left:177.544000pt;}
.x19_c00484{left:179.423200pt;}
.x29_c00484{left:190.111333pt;}
.x20_c00484{left:193.223333pt;}
.x4_c00484{left:210.654267pt;}
.x10_c00484{left:212.356800pt;}
.x1a_c00484{left:217.942400pt;}
.x26_c00484{left:221.249067pt;}
.x11_c00484{left:250.174800pt;}
.x27_c00484{left:265.687867pt;}
.x2c_c00484{left:267.947867pt;}
.x12_c00484{left:272.374400pt;}
.x1b_c00484{left:280.953467pt;}
.x2d_c00484{left:285.707733pt;}
.x5_c00484{left:289.480133pt;}
.x13_c00484{left:332.095067pt;}
.x22_c00484{left:340.959600pt;}
.x23_c00484{left:348.192400pt;}
.x14_c00484{left:354.294667pt;}
.x6_c00484{left:360.598667pt;}
.x7_c00484{left:364.598667pt;}
.x2a_c00484{left:381.970400pt;}
.xc_c00484{left:383.746800pt;}
.x15_c00484{left:395.361600pt;}
.x16_c00484{left:420.534533pt;}
.x8_c00484{left:445.525333pt;}
.x9_c00484{left:453.525333pt;}
.xa_c00484{left:497.076400pt;}
.xb_c00484{left:501.076400pt;}
.x21_c00484{left:511.270133pt;}
.x17_c00484{left:545.801467pt;}
.x1d_c00484{left:555.672800pt;}
.x18_c00484{left:562.827867pt;}
.x1e_c00484{left:627.703733pt;}
.x2f_c00484{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb80778b11c85cbd677b5d14.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.134000;font-style:normal;font-weight:normal;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_36ca364a700c6e51050632e0.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:0.991000;font-style:normal;font-weight:normal;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_ec6ff1964ad10bc3f8157b4a.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00485{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00485{vertical-align:-24.480000px;}
.v0_c00485{vertical-align:0.000000px;}
.v1_c00485{vertical-align:30.240000px;}
.ls4_c00485{letter-spacing:0.000000px;}
.ls8_c00485{letter-spacing:0.202464px;}
.ls6_c00485{letter-spacing:0.265680px;}
.ls7_c00485{letter-spacing:0.399600px;}
.ls1_c00485{letter-spacing:0.486240px;}
.ls9_c00485{letter-spacing:4.923072px;}
.ls5_c00485{letter-spacing:5.335200px;}
.ls2_c00485{letter-spacing:5.976000px;}
.ls0_c00485{letter-spacing:5.983800px;}
.ls3_c00485{letter-spacing:6.159920px;}
.sc__c00485{text-shadow:none;}
.sc1_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00485{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc1_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00485{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00485{word-spacing:-20.947680px;}
.ws2_c00485{word-spacing:-19.734912px;}
.ws1_c00485{word-spacing:-10.008000px;}
.ws3_c00485{word-spacing:0.000000px;}
._2_c00485{margin-left:-1.024200px;}
._3_c00485{width:1.239840px;}
._1_c00485{width:4.320000px;}
._0_c00485{width:6.912000px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs4_c00485{font-size:36.000000px;}
.fs3_c00485{font-size:41.760000px;}
.fs6_c00485{font-size:53.280000px;}
.fs2_c00485{font-size:56.160000px;}
.fs5_c00485{font-size:59.040000px;}
.fs7_c00485{font-size:60.000000px;}
.fs0_c00485{font-size:72.000000px;}
.fs1_c00485{font-size:74.215901px;}
.y0_c00485{bottom:0.000000px;}
.y23_c00485{bottom:3.120000px;}
.y21_c00485{bottom:14.400000px;}
.y22_c00485{bottom:34.744580px;}
.y1_c00485{bottom:54.000000px;}
.y1f_c00485{bottom:61.605000px;}
.y1e_c00485{bottom:88.245000px;}
.y1d_c00485{bottom:163.845000px;}
.y1c_c00485{bottom:199.845000px;}
.y1b_c00485{bottom:235.845000px;}
.y20_c00485{bottom:238.365000px;}
.y1a_c00485{bottom:271.845000px;}
.y19_c00485{bottom:307.845000px;}
.y18_c00485{bottom:343.845000px;}
.y17_c00485{bottom:379.845000px;}
.y16_c00485{bottom:415.845000px;}
.y15_c00485{bottom:451.845000px;}
.y14_c00485{bottom:487.845000px;}
.y13_c00485{bottom:523.845000px;}
.y12_c00485{bottom:559.845000px;}
.y11_c00485{bottom:595.845000px;}
.y10_c00485{bottom:631.845000px;}
.yf_c00485{bottom:667.845000px;}
.ye_c00485{bottom:703.845000px;}
.yd_c00485{bottom:739.845000px;}
.yc_c00485{bottom:775.845000px;}
.yb_c00485{bottom:811.845000px;}
.ya_c00485{bottom:847.845000px;}
.y9_c00485{bottom:883.845000px;}
.y8_c00485{bottom:919.845000px;}
.y7_c00485{bottom:955.845000px;}
.y6_c00485{bottom:991.845000px;}
.y5_c00485{bottom:1027.845000px;}
.y4_c00485{bottom:1049.085000px;}
.y3_c00485{bottom:1085.085000px;}
.y2_c00485{bottom:1138.365000px;}
.h9_c00485{height:19.255605px;}
.h7_c00485{height:27.000000px;}
.h6_c00485{height:32.616000px;}
.h8_c00485{height:48.271680px;}
.ha_c00485{height:56.640000px;}
.h4_c00485{height:57.294676px;}
.h3_c00485{height:65.232000px;}
.h5_c00485{height:68.074560px;}
.h2_c00485{height:1201.365000px;}
.h0_c00485{height:1262.835000px;}
.h1_c00485{height:1263.000000px;}
.w4_c00485{width:25.020000px;}
.w3_c00485{width:555.840000px;}
.w2_c00485{width:863.955000px;}
.w0_c00485{width:892.935000px;}
.w1_c00485{width:893.250000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:14.490000px;}
.x2_c00485{left:113.040150px;}
.x6_c00485{left:154.434750px;}
.x3_c00485{left:161.531250px;}
.x5_c00485{left:169.290000px;}
.x4_c00485{left:236.986050px;}
.x7_c00485{left:759.914612px;}
@media print{
.v2_c00485{vertical-align:-21.760000pt;}
.v0_c00485{vertical-align:0.000000pt;}
.v1_c00485{vertical-align:26.880000pt;}
.ls4_c00485{letter-spacing:0.000000pt;}
.ls8_c00485{letter-spacing:0.179968pt;}
.ls6_c00485{letter-spacing:0.236160pt;}
.ls7_c00485{letter-spacing:0.355200pt;}
.ls1_c00485{letter-spacing:0.432213pt;}
.ls9_c00485{letter-spacing:4.376064pt;}
.ls5_c00485{letter-spacing:4.742400pt;}
.ls2_c00485{letter-spacing:5.312000pt;}
.ls0_c00485{letter-spacing:5.318933pt;}
.ls3_c00485{letter-spacing:5.475484pt;}
.ws0_c00485{word-spacing:-18.620160pt;}
.ws2_c00485{word-spacing:-17.542144pt;}
.ws1_c00485{word-spacing:-8.896000pt;}
.ws3_c00485{word-spacing:0.000000pt;}
._2_c00485{margin-left:-0.910400pt;}
._3_c00485{width:1.102080pt;}
._1_c00485{width:3.840000pt;}
._0_c00485{width:6.144000pt;}
.fs4_c00485{font-size:32.000000pt;}
.fs3_c00485{font-size:37.120000pt;}
.fs6_c00485{font-size:47.360000pt;}
.fs2_c00485{font-size:49.920000pt;}
.fs5_c00485{font-size:52.480000pt;}
.fs7_c00485{font-size:53.333333pt;}
.fs0_c00485{font-size:64.000000pt;}
.fs1_c00485{font-size:65.969690pt;}
.y0_c00485{bottom:0.000000pt;}
.y23_c00485{bottom:2.773333pt;}
.y21_c00485{bottom:12.800000pt;}
.y22_c00485{bottom:30.884071pt;}
.y1_c00485{bottom:48.000000pt;}
.y1f_c00485{bottom:54.760000pt;}
.y1e_c00485{bottom:78.440000pt;}
.y1d_c00485{bottom:145.640000pt;}
.y1c_c00485{bottom:177.640000pt;}
.y1b_c00485{bottom:209.640000pt;}
.y20_c00485{bottom:211.880000pt;}
.y1a_c00485{bottom:241.640000pt;}
.y19_c00485{bottom:273.640000pt;}
.y18_c00485{bottom:305.640000pt;}
.y17_c00485{bottom:337.640000pt;}
.y16_c00485{bottom:369.640000pt;}
.y15_c00485{bottom:401.640000pt;}
.y14_c00485{bottom:433.640000pt;}
.y13_c00485{bottom:465.640000pt;}
.y12_c00485{bottom:497.640000pt;}
.y11_c00485{bottom:529.640000pt;}
.y10_c00485{bottom:561.640000pt;}
.yf_c00485{bottom:593.640000pt;}
.ye_c00485{bottom:625.640000pt;}
.yd_c00485{bottom:657.640000pt;}
.yc_c00485{bottom:689.640000pt;}
.yb_c00485{bottom:721.640000pt;}
.ya_c00485{bottom:753.640000pt;}
.y9_c00485{bottom:785.640000pt;}
.y8_c00485{bottom:817.640000pt;}
.y7_c00485{bottom:849.640000pt;}
.y6_c00485{bottom:881.640000pt;}
.y5_c00485{bottom:913.640000pt;}
.y4_c00485{bottom:932.520000pt;}
.y3_c00485{bottom:964.520000pt;}
.y2_c00485{bottom:1011.880000pt;}
.h9_c00485{height:17.116093pt;}
.h7_c00485{height:24.000000pt;}
.h6_c00485{height:28.992000pt;}
.h8_c00485{height:42.908160pt;}
.ha_c00485{height:50.346667pt;}
.h4_c00485{height:50.928601pt;}
.h3_c00485{height:57.984000pt;}
.h5_c00485{height:60.510720pt;}
.h2_c00485{height:1067.880000pt;}
.h0_c00485{height:1122.520000pt;}
.h1_c00485{height:1122.666667pt;}
.w4_c00485{width:22.240000pt;}
.w3_c00485{width:494.080000pt;}
.w2_c00485{width:767.960000pt;}
.w0_c00485{width:793.720000pt;}
.w1_c00485{width:794.000000pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:12.880000pt;}
.x2_c00485{left:100.480133pt;}
.x6_c00485{left:137.275333pt;}
.x3_c00485{left:143.583333pt;}
.x5_c00485{left:150.480000pt;}
.x4_c00485{left:210.654267pt;}
.x7_c00485{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e1ef81cd5ecbaf01be1c0ee.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.134000;font-style:normal;font-weight:normal;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_9a1c7c631476cc3ae5142548.woff2')format("woff");}.ff2_c00486{font-family:ff2_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:ff3_c00486;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00486{font-family:ff4_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:ff5_c00486;src:url('chunks/assets/font_d8058bca1d467c247ab53333.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00486{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00486{vertical-align:-24.480000px;}
.v0_c00486{vertical-align:0.000000px;}
.v1_c00486{vertical-align:30.240000px;}
.lsa_c00486{letter-spacing:0.000000px;}
.ls7_c00486{letter-spacing:0.236160px;}
.ls11_c00486{letter-spacing:0.265680px;}
.ls2_c00486{letter-spacing:0.330240px;}
.ls8_c00486{letter-spacing:0.354240px;}
.lse_c00486{letter-spacing:0.438171px;}
.ls4_c00486{letter-spacing:0.489240px;}
.ls6_c00486{letter-spacing:0.531360px;}
.ls12_c00486{letter-spacing:0.547713px;}
.lsf_c00486{letter-spacing:0.690768px;}
.lsd_c00486{letter-spacing:0.712027px;}
.ls10_c00486{letter-spacing:0.962352px;}
.lsc_c00486{letter-spacing:5.036112px;}
.lsb_c00486{letter-spacing:5.430672px;}
.ls3_c00486{letter-spacing:5.965800px;}
.ls0_c00486{letter-spacing:5.976000px;}
.ls1_c00486{letter-spacing:6.024600px;}
.ls9_c00486{letter-spacing:6.159920px;}
.ls5_c00486{letter-spacing:54.864000px;}
.sc__c00486{text-shadow:none;}
.sc1_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00486{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc1_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00486{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00486{word-spacing:-21.043152px;}
.ws2_c00486{word-spacing:-20.016000px;}
.ws4_c00486{word-spacing:-16.944480px;}
.ws1_c00486{word-spacing:-11.609280px;}
.ws3_c00486{word-spacing:-10.008000px;}
.ws5_c00486{word-spacing:0.000000px;}
._a_c00486{margin-left:-5.549760px;}
._9_c00486{margin-left:-4.428000px;}
._2_c00486{margin-left:-1.179360px;}
._0_c00486{width:1.296000px;}
._3_c00486{width:2.316600px;}
._7_c00486{width:3.942600px;}
._1_c00486{width:6.048000px;}
._4_c00486{width:8.137800px;}
._5_c00486{width:9.212400px;}
._8_c00486{width:16.560000px;}
._6_c00486{width:29.592000px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs4_c00486{font-size:36.000000px;}
.fs3_c00486{font-size:41.760000px;}
.fs2_c00486{font-size:56.160000px;}
.fs5_c00486{font-size:59.040000px;}
.fs7_c00486{font-size:60.000000px;}
.fs6_c00486{font-size:60.857039px;}
.fs0_c00486{font-size:72.000000px;}
.fs1_c00486{font-size:74.215901px;}
.y0_c00486{bottom:0.000000px;}
.y29_c00486{bottom:3.120000px;}
.y28_c00486{bottom:34.744580px;}
.y1_c00486{bottom:54.000000px;}
.y27_c00486{bottom:55.485000px;}
.y26_c00486{bottom:61.605000px;}
.y25_c00486{bottom:78.885000px;}
.y24_c00486{bottom:96.525000px;}
.y23_c00486{bottom:107.686800px;}
.y22_c00486{bottom:125.325000px;}
.y21_c00486{bottom:149.085000px;}
.y20_c00486{bottom:175.725000px;}
.y1f_c00486{bottom:222.165000px;}
.y1e_c00486{bottom:243.405000px;}
.y1d_c00486{bottom:264.285000px;}
.y1c_c00486{bottom:300.285000px;}
.y1b_c00486{bottom:321.525000px;}
.y1a_c00486{bottom:357.525000px;}
.y19_c00486{bottom:393.525000px;}
.y18_c00486{bottom:414.405000px;}
.y17_c00486{bottom:435.285000px;}
.y16_c00486{bottom:471.285000px;}
.y15_c00486{bottom:507.285000px;}
.y14_c00486{bottom:543.285000px;}
.y13_c00486{bottom:564.525000px;}
.y12_c00486{bottom:585.405000px;}
.y11_c00486{bottom:606.285000px;}
.y10_c00486{bottom:642.285000px;}
.yf_c00486{bottom:678.285000px;}
.ye_c00486{bottom:714.285000px;}
.yd_c00486{bottom:750.285000px;}
.yc_c00486{bottom:786.285000px;}
.yb_c00486{bottom:822.285000px;}
.ya_c00486{bottom:858.645000px;}
.y9_c00486{bottom:894.645000px;}
.y8_c00486{bottom:930.645000px;}
.y7_c00486{bottom:951.525000px;}
.y6_c00486{bottom:987.525000px;}
.y5_c00486{bottom:1008.405000px;}
.y4_c00486{bottom:1044.405000px;}
.y3_c00486{bottom:1082.925000px;}
.y2_c00486{bottom:1138.365000px;}
.h9_c00486{height:19.255605px;}
.h6_c00486{height:32.616000px;}
.h7_c00486{height:46.981634px;}
.h8_c00486{height:53.490240px;}
.ha_c00486{height:56.640000px;}
.h4_c00486{height:57.294676px;}
.h3_c00486{height:65.232000px;}
.h5_c00486{height:68.074560px;}
.h2_c00486{height:1201.365000px;}
.h0_c00486{height:1262.835000px;}
.h1_c00486{height:1263.000000px;}
.w3_c00486{width:25.020000px;}
.w2_c00486{width:863.955000px;}
.w0_c00486{width:892.935000px;}
.w1_c00486{width:893.250000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:14.490000px;}
.x2_c00486{left:113.040150px;}
.x8_c00486{left:140.037600px;}
.x9_c00486{left:142.330800px;}
.x3_c00486{left:161.531250px;}
.x4_c00486{left:236.986050px;}
.xc_c00486{left:298.893300px;}
.xd_c00486{left:363.090450px;}
.x5_c00486{left:413.967000px;}
.x6_c00486{left:551.771850px;}
.x7_c00486{left:567.773700px;}
.xa_c00486{left:674.391300px;}
.xb_c00486{left:694.531500px;}
.xe_c00486{left:759.914612px;}
@media print{
.v2_c00486{vertical-align:-21.760000pt;}
.v0_c00486{vertical-align:0.000000pt;}
.v1_c00486{vertical-align:26.880000pt;}
.lsa_c00486{letter-spacing:0.000000pt;}
.ls7_c00486{letter-spacing:0.209920pt;}
.ls11_c00486{letter-spacing:0.236160pt;}
.ls2_c00486{letter-spacing:0.293547pt;}
.ls8_c00486{letter-spacing:0.314880pt;}
.lse_c00486{letter-spacing:0.389485pt;}
.ls4_c00486{letter-spacing:0.434880pt;}
.ls6_c00486{letter-spacing:0.472320pt;}
.ls12_c00486{letter-spacing:0.486856pt;}
.lsf_c00486{letter-spacing:0.614016pt;}
.lsd_c00486{letter-spacing:0.632913pt;}
.ls10_c00486{letter-spacing:0.855424pt;}
.lsc_c00486{letter-spacing:4.476544pt;}
.lsb_c00486{letter-spacing:4.827264pt;}
.ls3_c00486{letter-spacing:5.302933pt;}
.ls0_c00486{letter-spacing:5.312000pt;}
.ls1_c00486{letter-spacing:5.355200pt;}
.ls9_c00486{letter-spacing:5.475484pt;}
.ls5_c00486{letter-spacing:48.768000pt;}
.ws0_c00486{word-spacing:-18.705024pt;}
.ws2_c00486{word-spacing:-17.792000pt;}
.ws4_c00486{word-spacing:-15.061760pt;}
.ws1_c00486{word-spacing:-10.319360pt;}
.ws3_c00486{word-spacing:-8.896000pt;}
.ws5_c00486{word-spacing:0.000000pt;}
._a_c00486{margin-left:-4.933120pt;}
._9_c00486{margin-left:-3.936000pt;}
._2_c00486{margin-left:-1.048320pt;}
._0_c00486{width:1.152000pt;}
._3_c00486{width:2.059200pt;}
._7_c00486{width:3.504533pt;}
._1_c00486{width:5.376000pt;}
._4_c00486{width:7.233600pt;}
._5_c00486{width:8.188800pt;}
._8_c00486{width:14.720000pt;}
._6_c00486{width:26.304000pt;}
.fs4_c00486{font-size:32.000000pt;}
.fs3_c00486{font-size:37.120000pt;}
.fs2_c00486{font-size:49.920000pt;}
.fs5_c00486{font-size:52.480000pt;}
.fs7_c00486{font-size:53.333333pt;}
.fs6_c00486{font-size:54.095146pt;}
.fs0_c00486{font-size:64.000000pt;}
.fs1_c00486{font-size:65.969690pt;}
.y0_c00486{bottom:0.000000pt;}
.y29_c00486{bottom:2.773333pt;}
.y28_c00486{bottom:30.884071pt;}
.y1_c00486{bottom:48.000000pt;}
.y27_c00486{bottom:49.320000pt;}
.y26_c00486{bottom:54.760000pt;}
.y25_c00486{bottom:70.120000pt;}
.y24_c00486{bottom:85.800000pt;}
.y23_c00486{bottom:95.721600pt;}
.y22_c00486{bottom:111.400000pt;}
.y21_c00486{bottom:132.520000pt;}
.y20_c00486{bottom:156.200000pt;}
.y1f_c00486{bottom:197.480000pt;}
.y1e_c00486{bottom:216.360000pt;}
.y1d_c00486{bottom:234.920000pt;}
.y1c_c00486{bottom:266.920000pt;}
.y1b_c00486{bottom:285.800000pt;}
.y1a_c00486{bottom:317.800000pt;}
.y19_c00486{bottom:349.800000pt;}
.y18_c00486{bottom:368.360000pt;}
.y17_c00486{bottom:386.920000pt;}
.y16_c00486{bottom:418.920000pt;}
.y15_c00486{bottom:450.920000pt;}
.y14_c00486{bottom:482.920000pt;}
.y13_c00486{bottom:501.800000pt;}
.y12_c00486{bottom:520.360000pt;}
.y11_c00486{bottom:538.920000pt;}
.y10_c00486{bottom:570.920000pt;}
.yf_c00486{bottom:602.920000pt;}
.ye_c00486{bottom:634.920000pt;}
.yd_c00486{bottom:666.920000pt;}
.yc_c00486{bottom:698.920000pt;}
.yb_c00486{bottom:730.920000pt;}
.ya_c00486{bottom:763.240000pt;}
.y9_c00486{bottom:795.240000pt;}
.y8_c00486{bottom:827.240000pt;}
.y7_c00486{bottom:845.800000pt;}
.y6_c00486{bottom:877.800000pt;}
.y5_c00486{bottom:896.360000pt;}
.y4_c00486{bottom:928.360000pt;}
.y3_c00486{bottom:962.600000pt;}
.y2_c00486{bottom:1011.880000pt;}
.h9_c00486{height:17.116093pt;}
.h6_c00486{height:28.992000pt;}
.h7_c00486{height:41.761453pt;}
.h8_c00486{height:47.546880pt;}
.ha_c00486{height:50.346667pt;}
.h4_c00486{height:50.928601pt;}
.h3_c00486{height:57.984000pt;}
.h5_c00486{height:60.510720pt;}
.h2_c00486{height:1067.880000pt;}
.h0_c00486{height:1122.520000pt;}
.h1_c00486{height:1122.666667pt;}
.w3_c00486{width:22.240000pt;}
.w2_c00486{width:767.960000pt;}
.w0_c00486{width:793.720000pt;}
.w1_c00486{width:794.000000pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:12.880000pt;}
.x2_c00486{left:100.480133pt;}
.x8_c00486{left:124.477867pt;}
.x9_c00486{left:126.516267pt;}
.x3_c00486{left:143.583333pt;}
.x4_c00486{left:210.654267pt;}
.xc_c00486{left:265.682933pt;}
.xd_c00486{left:322.747067pt;}
.x5_c00486{left:367.970667pt;}
.x6_c00486{left:490.463867pt;}
.x7_c00486{left:504.687733pt;}
.xa_c00486{left:599.458933pt;}
.xb_c00486{left:617.361333pt;}
.xe_c00486{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3b28fe874a661106c95b0d0.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.134000;font-style:normal;font-weight:normal;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_45f3c5d928d18b9cd111e87f.woff2')format("woff");}.ff2_c00487{font-family:ff2_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:ff3_c00487;src:url('chunks/assets/font_a5f084a960fceeda5ab208fb.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00487;src:url('chunks/assets/font_a0c471c840007b3d648b7793.woff2')format("woff");}.ff4_c00487{font-family:ff4_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:ff5_c00487;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff5_c00487{font-family:ff5_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:ff6_c00487;src:url('chunks/assets/font_7488aa3543706956d81df6e2.woff2')format("woff");}.ff6_c00487{font-family:ff6_c00487;line-height:0.915000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00487;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff7_c00487{font-family:ff7_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:ff8_c00487;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff8_c00487{font-family:ff8_c00487;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00487;src:url('chunks/assets/font_f16fe67bf77d00b56e4997e0.woff2')format("woff");}.ff9_c00487{font-family:ff9_c00487;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00487;src:url('chunks/assets/font_be9e823dc5b8dcee607b47d2.woff2')format("woff");}.ffa_c00487{font-family:ffa_c00487;line-height:0.928223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00487;src:url('chunks/assets/font_94a62ae73f416ce76b59a0cf.woff2')format("woff");}.ffb_c00487{font-family:ffb_c00487;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00487{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00487{vertical-align:-30.240000px;}
.v3_c00487{vertical-align:-24.480000px;}
.v0_c00487{vertical-align:0.000000px;}
.v1_c00487{vertical-align:30.240000px;}
.ls18_c00487{letter-spacing:0.000000px;}
.ls15_c00487{letter-spacing:0.164640px;}
.lsb_c00487{letter-spacing:0.242064px;}
.ls2_c00487{letter-spacing:0.265680px;}
.lsa_c00487{letter-spacing:0.295200px;}
.ls1_c00487{letter-spacing:0.295800px;}
.ls22_c00487{letter-spacing:0.348336px;}
.ls6_c00487{letter-spacing:0.354240px;}
.ls2f_c00487{letter-spacing:0.425088px;}
.ls2c_c00487{letter-spacing:0.438171px;}
.ls16_c00487{letter-spacing:0.501840px;}
.ls11_c00487{letter-spacing:0.519552px;}
.lse_c00487{letter-spacing:0.531360px;}
.lsf_c00487{letter-spacing:0.549072px;}
.ls14_c00487{letter-spacing:0.553800px;}
.ls12_c00487{letter-spacing:0.560880px;}
.ls19_c00487{letter-spacing:0.584496px;}
.lsd_c00487{letter-spacing:0.602485px;}
.ls10_c00487{letter-spacing:0.657256px;}
.ls1f_c00487{letter-spacing:0.690768px;}
.ls8_c00487{letter-spacing:0.712027px;}
.ls1d_c00487{letter-spacing:0.743904px;}
.ls2a_c00487{letter-spacing:0.797040px;}
.ls24_c00487{letter-spacing:0.821570px;}
.ls1c_c00487{letter-spacing:0.962352px;}
.ls23_c00487{letter-spacing:0.991970px;}
.ls2d_c00487{letter-spacing:2.444256px;}
.ls29_c00487{letter-spacing:4.764528px;}
.ls28_c00487{letter-spacing:4.770432px;}
.ls2e_c00487{letter-spacing:4.799952px;}
.ls1e_c00487{letter-spacing:5.248656px;}
.ls1a_c00487{letter-spacing:5.301792px;}
.ls5_c00487{letter-spacing:5.313600px;}
.ls20_c00487{letter-spacing:5.354928px;}
.ls7_c00487{letter-spacing:5.372640px;}
.ls30_c00487{letter-spacing:5.402160px;}
.ls2b_c00487{letter-spacing:5.430672px;}
.ls4_c00487{letter-spacing:5.431680px;}
.lsc_c00487{letter-spacing:5.443488px;}
.ls1b_c00487{letter-spacing:5.461200px;}
.ls9_c00487{letter-spacing:5.490720px;}
.ls27_c00487{letter-spacing:5.567472px;}
.ls25_c00487{letter-spacing:5.750990px;}
.ls13_c00487{letter-spacing:5.975400px;}
.ls0_c00487{letter-spacing:5.976000px;}
.ls17_c00487{letter-spacing:6.159920px;}
.ls31_c00487{letter-spacing:9.475920px;}
.ls26_c00487{letter-spacing:11.713536px;}
.ls3_c00487{letter-spacing:19.778400px;}
.ls21_c00487{letter-spacing:21.525984px;}
.sc__c00487{text-shadow:none;}
.sc1_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00487{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc1_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00487{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb_c00487{word-spacing:-21.980592px;}
.ws2_c00487{word-spacing:-21.874320px;}
.wsc_c00487{word-spacing:-21.815280px;}
.ws4_c00487{word-spacing:-21.768048px;}
.ws1_c00487{word-spacing:-21.714912px;}
.ws9_c00487{word-spacing:-21.043152px;}
.ws5_c00487{word-spacing:-17.910227px;}
.ws6_c00487{word-spacing:-17.739827px;}
.ws3_c00487{word-spacing:-17.630284px;}
.ws8_c00487{word-spacing:-17.575513px;}
.ws7_c00487{word-spacing:-17.520742px;}
.ws0_c00487{word-spacing:-11.609280px;}
.wsa_c00487{word-spacing:-10.008000px;}
.wsd_c00487{word-spacing:0.000000px;}
._7_c00487{margin-left:-17.221968px;}
._6_c00487{margin-left:-15.769584px;}
._5_c00487{margin-left:-14.323104px;}
._c_c00487{margin-left:-12.221280px;}
._b_c00487{margin-left:-11.158560px;}
._1a_c00487{margin-left:-9.924624px;}
._19_c00487{margin-left:-8.637552px;}
._e_c00487{margin-left:-5.963040px;}
._d_c00487{margin-left:-4.841280px;}
._10_c00487{margin-left:-3.719520px;}
._18_c00487{margin-left:-2.538720px;}
._4_c00487{margin-left:-1.476000px;}
._2_c00487{width:1.174896px;}
._15_c00487{width:2.295360px;}
._f_c00487{width:3.296160px;}
._0_c00487{width:4.392000px;}
._8_c00487{width:5.575680px;}
._11_c00487{width:7.498080px;}
._12_c00487{width:8.856000px;}
._a_c00487{width:9.859680px;}
._9_c00487{width:11.158560px;}
._13_c00487{width:12.634560px;}
._1_c00487{width:13.933440px;}
._3_c00487{width:14.984352px;}
._17_c00487{width:16.695648px;}
._16_c00487{width:18.864000px;}
._14_c00487{width:25.920000px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs6_c00487{font-size:36.000000px;}
.fs2_c00487{font-size:41.760000px;}
.fs5_c00487{font-size:56.160000px;}
.fs3_c00487{font-size:59.040000px;}
.fs7_c00487{font-size:60.000000px;}
.fs4_c00487{font-size:60.857039px;}
.fs0_c00487{font-size:72.000000px;}
.fs1_c00487{font-size:74.215901px;}
.y0_c00487{bottom:0.000000px;}
.y3d_c00487{bottom:3.120000px;}
.y3c_c00487{bottom:34.744580px;}
.y1_c00487{bottom:54.000000px;}
.y3b_c00487{bottom:55.481040px;}
.y3a_c00487{bottom:72.765000px;}
.y39_c00487{bottom:72.766800px;}
.y38_c00487{bottom:90.405000px;}
.y37_c00487{bottom:96.525000px;}
.y36_c00487{bottom:107.686800px;}
.y35_c00487{bottom:131.445000px;}
.y34_c00487{bottom:142.965000px;}
.y33_c00487{bottom:149.085000px;}
.y32_c00487{bottom:160.245000px;}
.y31_c00487{bottom:166.365000px;}
.y30_c00487{bottom:193.005000px;}
.y2e_c00487{bottom:254.925000px;}
.y2f_c00487{bottom:262.485000px;}
.y2d_c00487{bottom:275.805000px;}
.y2c_c00487{bottom:311.805000px;}
.y2b_c00487{bottom:333.045000px;}
.y2a_c00487{bottom:353.925000px;}
.y29_c00487{bottom:375.165000px;}
.y28_c00487{bottom:396.045000px;}
.y27_c00487{bottom:416.925000px;}
.y26_c00487{bottom:438.165000px;}
.y25_c00487{bottom:459.045000px;}
.y24_c00487{bottom:495.045000px;}
.y23_c00487{bottom:531.045000px;}
.y22_c00487{bottom:559.124280px;}
.y21_c00487{bottom:576.762480px;}
.y20_c00487{bottom:594.400680px;}
.y1f_c00487{bottom:611.684640px;}
.y1e_c00487{bottom:629.322840px;}
.y1d_c00487{bottom:646.961040px;}
.y1b_c00487{bottom:664.242840px;}
.y1c_c00487{bottom:664.245000px;}
.y1a_c00487{bottom:681.881040px;}
.y19_c00487{bottom:699.165000px;}
.y18_c00487{bottom:724.365000px;}
.y17_c00487{bottom:742.005000px;}
.y16_c00487{bottom:759.285000px;}
.y15_c00487{bottom:759.286800px;}
.y13_c00487{bottom:776.921040px;}
.y14_c00487{bottom:776.925000px;}
.y12_c00487{bottom:794.205000px;}
.y11_c00487{bottom:794.208600px;}
.y10_c00487{bottom:819.403920px;}
.ye_c00487{bottom:844.240680px;}
.yf_c00487{bottom:844.245000px;}
.yc_c00487{bottom:869.802840px;}
.yd_c00487{bottom:869.805000px;}
.yb_c00487{bottom:889.965000px;}
.ya_c00487{bottom:889.966800px;}
.y9_c00487{bottom:907.605000px;}
.y8_c00487{bottom:932.805000px;}
.y7_c00487{bottom:962.325000px;}
.y6_c00487{bottom:992.205000px;}
.y5_c00487{bottom:1027.845000px;}
.y4_c00487{bottom:1063.845000px;}
.y3_c00487{bottom:1085.085000px;}
.y2_c00487{bottom:1138.365000px;}
.hc_c00487{height:19.255605px;}
.hb_c00487{height:32.616000px;}
.ha_c00487{height:37.834560px;}
.h9_c00487{height:46.981634px;}
.h7_c00487{height:47.988281px;}
.h8_c00487{height:53.490240px;}
.hd_c00487{height:56.640000px;}
.h4_c00487{height:57.294676px;}
.h3_c00487{height:65.232000px;}
.h6_c00487{height:67.239607px;}
.h5_c00487{height:68.074560px;}
.h2_c00487{height:1201.365000px;}
.h0_c00487{height:1262.835000px;}
.h1_c00487{height:1263.000000px;}
.w3_c00487{width:25.020000px;}
.w2_c00487{width:863.955000px;}
.w0_c00487{width:892.935000px;}
.w1_c00487{width:893.250000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:14.490000px;}
.x2_c00487{left:113.040150px;}
.x28_c00487{left:138.427350px;}
.x22_c00487{left:141.359550px;}
.x14_c00487{left:147.223350px;}
.x27_c00487{left:152.204550px;}
.x2c_c00487{left:160.200000px;}
.x3_c00487{left:161.531250px;}
.x15_c00487{left:216.401400px;}
.x4_c00487{left:236.986050px;}
.x30_c00487{left:238.726650px;}
.xf_c00487{left:261.516300px;}
.x5_c00487{left:283.143300px;}
.x2d_c00487{left:288.918450px;}
.x2e_c00487{left:309.707850px;}
.x23_c00487{left:321.566550px;}
.x31_c00487{left:324.848850px;}
.x24_c00487{left:340.721100px;}
.x12_c00487{left:349.095000px;}
.x13_c00487{left:353.264700px;}
.x29_c00487{left:365.160600px;}
.x6_c00487{left:371.140500px;}
.x7_c00487{left:375.640500px;}
.x32_c00487{left:399.631650px;}
.x33_c00487{left:406.104150px;}
.x25_c00487{left:425.814300px;}
.xe_c00487{left:431.715150px;}
.x26_c00487{left:451.089000px;}
.x8_c00487{left:455.649150px;}
.x9_c00487{left:464.649150px;}
.x1c_c00487{left:478.210350px;}
.x2f_c00487{left:496.090200px;}
.x1d_c00487{left:498.999750px;}
.x2a_c00487{left:513.402900px;}
.xa_c00487{left:515.660100px;}
.xb_c00487{left:520.160100px;}
.x16_c00487{left:568.138500px;}
.xc_c00487{left:573.187500px;}
.xd_c00487{left:577.687500px;}
.x1e_c00487{left:586.753050px;}
.x2b_c00487{left:593.393550px;}
.x1f_c00487{left:611.727600px;}
.x17_c00487{left:633.131400px;}
.x18_c00487{left:641.470800px;}
.x20_c00487{left:660.246750px;}
.x19_c00487{left:664.795200px;}
.x21_c00487{left:685.221300px;}
.x1a_c00487{left:710.204550px;}
.x1b_c00487{left:721.201200px;}
.x10_c00487{left:725.820600px;}
.x11_c00487{left:744.975150px;}
.x34_c00487{left:759.914612px;}
@media print{
.v2_c00487{vertical-align:-26.880000pt;}
.v3_c00487{vertical-align:-21.760000pt;}
.v0_c00487{vertical-align:0.000000pt;}
.v1_c00487{vertical-align:26.880000pt;}
.ls18_c00487{letter-spacing:0.000000pt;}
.ls15_c00487{letter-spacing:0.146347pt;}
.lsb_c00487{letter-spacing:0.215168pt;}
.ls2_c00487{letter-spacing:0.236160pt;}
.lsa_c00487{letter-spacing:0.262400pt;}
.ls1_c00487{letter-spacing:0.262933pt;}
.ls22_c00487{letter-spacing:0.309632pt;}
.ls6_c00487{letter-spacing:0.314880pt;}
.ls2f_c00487{letter-spacing:0.377856pt;}
.ls2c_c00487{letter-spacing:0.389485pt;}
.ls16_c00487{letter-spacing:0.446080pt;}
.ls11_c00487{letter-spacing:0.461824pt;}
.lse_c00487{letter-spacing:0.472320pt;}
.lsf_c00487{letter-spacing:0.488064pt;}
.ls14_c00487{letter-spacing:0.492267pt;}
.ls12_c00487{letter-spacing:0.498560pt;}
.ls19_c00487{letter-spacing:0.519552pt;}
.lsd_c00487{letter-spacing:0.535542pt;}
.ls10_c00487{letter-spacing:0.584228pt;}
.ls1f_c00487{letter-spacing:0.614016pt;}
.ls8_c00487{letter-spacing:0.632913pt;}
.ls1d_c00487{letter-spacing:0.661248pt;}
.ls2a_c00487{letter-spacing:0.708480pt;}
.ls24_c00487{letter-spacing:0.730284pt;}
.ls1c_c00487{letter-spacing:0.855424pt;}
.ls23_c00487{letter-spacing:0.881751pt;}
.ls2d_c00487{letter-spacing:2.172672pt;}
.ls29_c00487{letter-spacing:4.235136pt;}
.ls28_c00487{letter-spacing:4.240384pt;}
.ls2e_c00487{letter-spacing:4.266624pt;}
.ls1e_c00487{letter-spacing:4.665472pt;}
.ls1a_c00487{letter-spacing:4.712704pt;}
.ls5_c00487{letter-spacing:4.723200pt;}
.ls20_c00487{letter-spacing:4.759936pt;}
.ls7_c00487{letter-spacing:4.775680pt;}
.ls30_c00487{letter-spacing:4.801920pt;}
.ls2b_c00487{letter-spacing:4.827264pt;}
.ls4_c00487{letter-spacing:4.828160pt;}
.lsc_c00487{letter-spacing:4.838656pt;}
.ls1b_c00487{letter-spacing:4.854400pt;}
.ls9_c00487{letter-spacing:4.880640pt;}
.ls27_c00487{letter-spacing:4.948864pt;}
.ls25_c00487{letter-spacing:5.111991pt;}
.ls13_c00487{letter-spacing:5.311467pt;}
.ls0_c00487{letter-spacing:5.312000pt;}
.ls17_c00487{letter-spacing:5.475484pt;}
.ls31_c00487{letter-spacing:8.423040pt;}
.ls26_c00487{letter-spacing:10.412032pt;}
.ls3_c00487{letter-spacing:17.580800pt;}
.ls21_c00487{letter-spacing:19.134208pt;}
.wsb_c00487{word-spacing:-19.538304pt;}
.ws2_c00487{word-spacing:-19.443840pt;}
.wsc_c00487{word-spacing:-19.391360pt;}
.ws4_c00487{word-spacing:-19.349376pt;}
.ws1_c00487{word-spacing:-19.302144pt;}
.ws9_c00487{word-spacing:-18.705024pt;}
.ws5_c00487{word-spacing:-15.920201pt;}
.ws6_c00487{word-spacing:-15.768735pt;}
.ws3_c00487{word-spacing:-15.671364pt;}
.ws8_c00487{word-spacing:-15.622678pt;}
.ws7_c00487{word-spacing:-15.573992pt;}
.ws0_c00487{word-spacing:-10.319360pt;}
.wsa_c00487{word-spacing:-8.896000pt;}
.wsd_c00487{word-spacing:0.000000pt;}
._7_c00487{margin-left:-15.308416pt;}
._6_c00487{margin-left:-14.017408pt;}
._5_c00487{margin-left:-12.731648pt;}
._c_c00487{margin-left:-10.863360pt;}
._b_c00487{margin-left:-9.918720pt;}
._1a_c00487{margin-left:-8.821888pt;}
._19_c00487{margin-left:-7.677824pt;}
._e_c00487{margin-left:-5.300480pt;}
._d_c00487{margin-left:-4.303360pt;}
._10_c00487{margin-left:-3.306240pt;}
._18_c00487{margin-left:-2.256640pt;}
._4_c00487{margin-left:-1.312000pt;}
._2_c00487{width:1.044352pt;}
._15_c00487{width:2.040320pt;}
._f_c00487{width:2.929920pt;}
._0_c00487{width:3.904000pt;}
._8_c00487{width:4.956160pt;}
._11_c00487{width:6.664960pt;}
._12_c00487{width:7.872000pt;}
._a_c00487{width:8.764160pt;}
._9_c00487{width:9.918720pt;}
._13_c00487{width:11.230720pt;}
._1_c00487{width:12.385280pt;}
._3_c00487{width:13.319424pt;}
._17_c00487{width:14.840576pt;}
._16_c00487{width:16.768000pt;}
._14_c00487{width:23.040000pt;}
.fs6_c00487{font-size:32.000000pt;}
.fs2_c00487{font-size:37.120000pt;}
.fs5_c00487{font-size:49.920000pt;}
.fs3_c00487{font-size:52.480000pt;}
.fs7_c00487{font-size:53.333333pt;}
.fs4_c00487{font-size:54.095146pt;}
.fs0_c00487{font-size:64.000000pt;}
.fs1_c00487{font-size:65.969690pt;}
.y0_c00487{bottom:0.000000pt;}
.y3d_c00487{bottom:2.773333pt;}
.y3c_c00487{bottom:30.884071pt;}
.y1_c00487{bottom:48.000000pt;}
.y3b_c00487{bottom:49.316480pt;}
.y3a_c00487{bottom:64.680000pt;}
.y39_c00487{bottom:64.681600pt;}
.y38_c00487{bottom:80.360000pt;}
.y37_c00487{bottom:85.800000pt;}
.y36_c00487{bottom:95.721600pt;}
.y35_c00487{bottom:116.840000pt;}
.y34_c00487{bottom:127.080000pt;}
.y33_c00487{bottom:132.520000pt;}
.y32_c00487{bottom:142.440000pt;}
.y31_c00487{bottom:147.880000pt;}
.y30_c00487{bottom:171.560000pt;}
.y2e_c00487{bottom:226.600000pt;}
.y2f_c00487{bottom:233.320000pt;}
.y2d_c00487{bottom:245.160000pt;}
.y2c_c00487{bottom:277.160000pt;}
.y2b_c00487{bottom:296.040000pt;}
.y2a_c00487{bottom:314.600000pt;}
.y29_c00487{bottom:333.480000pt;}
.y28_c00487{bottom:352.040000pt;}
.y27_c00487{bottom:370.600000pt;}
.y26_c00487{bottom:389.480000pt;}
.y25_c00487{bottom:408.040000pt;}
.y24_c00487{bottom:440.040000pt;}
.y23_c00487{bottom:472.040000pt;}
.y22_c00487{bottom:496.999360pt;}
.y21_c00487{bottom:512.677760pt;}
.y20_c00487{bottom:528.356160pt;}
.y1f_c00487{bottom:543.719680pt;}
.y1e_c00487{bottom:559.398080pt;}
.y1d_c00487{bottom:575.076480pt;}
.y1b_c00487{bottom:590.438080pt;}
.y1c_c00487{bottom:590.440000pt;}
.y1a_c00487{bottom:606.116480pt;}
.y19_c00487{bottom:621.480000pt;}
.y18_c00487{bottom:643.880000pt;}
.y17_c00487{bottom:659.560000pt;}
.y16_c00487{bottom:674.920000pt;}
.y15_c00487{bottom:674.921600pt;}
.y13_c00487{bottom:690.596480pt;}
.y14_c00487{bottom:690.600000pt;}
.y12_c00487{bottom:705.960000pt;}
.y11_c00487{bottom:705.963200pt;}
.y10_c00487{bottom:728.359040pt;}
.ye_c00487{bottom:750.436160pt;}
.yf_c00487{bottom:750.440000pt;}
.yc_c00487{bottom:773.158080pt;}
.yd_c00487{bottom:773.160000pt;}
.yb_c00487{bottom:791.080000pt;}
.ya_c00487{bottom:791.081600pt;}
.y9_c00487{bottom:806.760000pt;}
.y8_c00487{bottom:829.160000pt;}
.y7_c00487{bottom:855.400000pt;}
.y6_c00487{bottom:881.960000pt;}
.y5_c00487{bottom:913.640000pt;}
.y4_c00487{bottom:945.640000pt;}
.y3_c00487{bottom:964.520000pt;}
.y2_c00487{bottom:1011.880000pt;}
.hc_c00487{height:17.116093pt;}
.hb_c00487{height:28.992000pt;}
.ha_c00487{height:33.630720pt;}
.h9_c00487{height:41.761453pt;}
.h7_c00487{height:42.656250pt;}
.h8_c00487{height:47.546880pt;}
.hd_c00487{height:50.346667pt;}
.h4_c00487{height:50.928601pt;}
.h3_c00487{height:57.984000pt;}
.h6_c00487{height:59.768539pt;}
.h5_c00487{height:60.510720pt;}
.h2_c00487{height:1067.880000pt;}
.h0_c00487{height:1122.520000pt;}
.h1_c00487{height:1122.666667pt;}
.w3_c00487{width:22.240000pt;}
.w2_c00487{width:767.960000pt;}
.w0_c00487{width:793.720000pt;}
.w1_c00487{width:794.000000pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:12.880000pt;}
.x2_c00487{left:100.480133pt;}
.x28_c00487{left:123.046533pt;}
.x22_c00487{left:125.652933pt;}
.x14_c00487{left:130.865200pt;}
.x27_c00487{left:135.292933pt;}
.x2c_c00487{left:142.400000pt;}
.x3_c00487{left:143.583333pt;}
.x15_c00487{left:192.356800pt;}
.x4_c00487{left:210.654267pt;}
.x30_c00487{left:212.201467pt;}
.xf_c00487{left:232.458933pt;}
.x5_c00487{left:251.682933pt;}
.x2d_c00487{left:256.816400pt;}
.x2e_c00487{left:275.295867pt;}
.x23_c00487{left:285.836933pt;}
.x31_c00487{left:288.754533pt;}
.x24_c00487{left:302.863200pt;}
.x12_c00487{left:310.306667pt;}
.x13_c00487{left:314.013067pt;}
.x29_c00487{left:324.587200pt;}
.x6_c00487{left:329.902667pt;}
.x7_c00487{left:333.902667pt;}
.x32_c00487{left:355.228133pt;}
.x33_c00487{left:360.981467pt;}
.x25_c00487{left:378.501600pt;}
.xe_c00487{left:383.746800pt;}
.x26_c00487{left:400.968000pt;}
.x8_c00487{left:405.021467pt;}
.x9_c00487{left:413.021467pt;}
.x1c_c00487{left:425.075867pt;}
.x2f_c00487{left:440.969067pt;}
.x1d_c00487{left:443.555333pt;}
.x2a_c00487{left:456.358133pt;}
.xa_c00487{left:458.364533pt;}
.xb_c00487{left:462.364533pt;}
.x16_c00487{left:505.012000pt;}
.xc_c00487{left:509.500000pt;}
.xd_c00487{left:513.500000pt;}
.x1e_c00487{left:521.558267pt;}
.x2b_c00487{left:527.460933pt;}
.x1f_c00487{left:543.757867pt;}
.x17_c00487{left:562.783467pt;}
.x18_c00487{left:570.196267pt;}
.x20_c00487{left:586.886000pt;}
.x19_c00487{left:590.929067pt;}
.x21_c00487{left:609.085600pt;}
.x1a_c00487{left:631.292933pt;}
.x1b_c00487{left:641.067733pt;}
.x10_c00487{left:645.173867pt;}
.x11_c00487{left:662.200133pt;}
.x34_c00487{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1996c7fbdf0ae3b38a79eb67.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.134000;font-style:normal;font-weight:normal;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_9f64f93d83dd62db5fb46382.woff2')format("woff");}.ff2_c00488{font-family:ff2_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:ff3_c00488;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:0.800000;font-style:normal;font-weight:normal;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_9f4b5aec6e755e61cb2da1ea.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00488{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00488{vertical-align:-24.480000px;}
.v0_c00488{vertical-align:0.000000px;}
.v3_c00488{vertical-align:24.480000px;}
.v1_c00488{vertical-align:30.240000px;}
.lsd_c00488{letter-spacing:-0.179568px;}
.lsb_c00488{letter-spacing:0.000000px;}
.ls13_c00488{letter-spacing:0.144000px;}
.ls1_c00488{letter-spacing:0.261840px;}
.ls11_c00488{letter-spacing:0.265680px;}
.ls5_c00488{letter-spacing:0.295200px;}
.ls7_c00488{letter-spacing:0.318816px;}
.ls17_c00488{letter-spacing:0.328628px;}
.ls26_c00488{letter-spacing:0.371952px;}
.ls23_c00488{letter-spacing:0.383399px;}
.ls2_c00488{letter-spacing:0.402600px;}
.ls10_c00488{letter-spacing:0.425088px;}
.ls1c_c00488{letter-spacing:0.438171px;}
.ls3_c00488{letter-spacing:0.445800px;}
.ls1d_c00488{letter-spacing:0.478224px;}
.ls9_c00488{letter-spacing:0.492942px;}
.ls6_c00488{letter-spacing:0.531360px;}
.ls12_c00488{letter-spacing:0.584496px;}
.ls8_c00488{letter-spacing:0.602485px;}
.ls1a_c00488{letter-spacing:0.690768px;}
.ls24_c00488{letter-spacing:0.696672px;}
.ls4_c00488{letter-spacing:0.712027px;}
.ls1e_c00488{letter-spacing:0.743904px;}
.ls14_c00488{letter-spacing:0.821570px;}
.ls22_c00488{letter-spacing:1.086336px;}
.ls16_c00488{letter-spacing:1.328400px;}
.ls15_c00488{letter-spacing:1.334304px;}
.ls28_c00488{letter-spacing:2.432448px;}
.ls25_c00488{letter-spacing:2.568240px;}
.ls18_c00488{letter-spacing:3.028752px;}
.lsf_c00488{letter-spacing:4.315824px;}
.ls29_c00488{letter-spacing:5.354928px;}
.ls0_c00488{letter-spacing:5.976000px;}
.lsa_c00488{letter-spacing:6.159920px;}
.ls1f_c00488{letter-spacing:8.430912px;}
.ls21_c00488{letter-spacing:9.735696px;}
.ls20_c00488{letter-spacing:9.741600px;}
.ls1b_c00488{letter-spacing:13.095072px;}
.lsc_c00488{letter-spacing:13.557600px;}
.ls19_c00488{letter-spacing:14.228376px;}
.ls27_c00488{letter-spacing:14.990256px;}
.lse_c00488{letter-spacing:15.444000px;}
.sc__c00488{text-shadow:none;}
.sc1_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00488{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc1_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00488{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb_c00488{word-spacing:-21.768048px;}
.ws1_c00488{word-spacing:-20.016000px;}
.ws5_c00488{word-spacing:-17.739827px;}
.ws3_c00488{word-spacing:-17.630284px;}
.ws6_c00488{word-spacing:-17.411199px;}
.ws9_c00488{word-spacing:-17.356428px;}
.wsa_c00488{word-spacing:-17.301656px;}
.ws7_c00488{word-spacing:-17.246885px;}
.ws8_c00488{word-spacing:-16.731936px;}
.ws0_c00488{word-spacing:-11.429712px;}
.ws4_c00488{word-spacing:-10.152000px;}
.ws2_c00488{word-spacing:-10.008000px;}
.wsc_c00488{word-spacing:0.000000px;}
._14_c00488{margin-left:-14.935792px;}
._13_c00488{margin-left:-13.663328px;}
._15_c00488{margin-left:-11.929792px;}
._8_c00488{margin-left:-9.360000px;}
._1_c00488{margin-left:-7.531200px;}
._f_c00488{margin-left:-4.841280px;}
._e_c00488{margin-left:-3.837600px;}
._11_c00488{margin-left:-2.479680px;}
._10_c00488{margin-left:-1.003680px;}
._3_c00488{width:1.728000px;}
._6_c00488{width:2.808000px;}
._5_c00488{width:4.104000px;}
._b_c00488{width:5.184000px;}
._2_c00488{width:6.264000px;}
._0_c00488{width:7.560000px;}
._7_c00488{width:9.432000px;}
._9_c00488{width:10.728000px;}
._12_c00488{width:12.359520px;}
._c_c00488{width:13.392000px;}
._a_c00488{width:18.720000px;}
._d_c00488{width:21.456000px;}
._4_c00488{width:22.752000px;}
.fc0_c00488{color:rgb(0,0,0);}
.fs3_c00488{font-size:36.000000px;}
.fs2_c00488{font-size:41.760000px;}
.fs4_c00488{font-size:59.040000px;}
.fs6_c00488{font-size:60.000000px;}
.fs5_c00488{font-size:60.857039px;}
.fs0_c00488{font-size:72.000000px;}
.fs1_c00488{font-size:74.215901px;}
.y0_c00488{bottom:0.000000px;}
.y43_c00488{bottom:3.120000px;}
.y42_c00488{bottom:34.744580px;}
.y1_c00488{bottom:54.000000px;}
.y41_c00488{bottom:55.485000px;}
.y40_c00488{bottom:61.605000px;}
.y3f_c00488{bottom:72.766800px;}
.y3d_c00488{bottom:90.401040px;}
.y3e_c00488{bottom:90.405000px;}
.y3c_c00488{bottom:113.805000px;}
.y3b_c00488{bottom:125.326800px;}
.y39_c00488{bottom:142.961040px;}
.y3a_c00488{bottom:142.965000px;}
.y38_c00488{bottom:160.245000px;}
.y37_c00488{bottom:160.246800px;}
.y36_c00488{bottom:177.885000px;}
.y34_c00488{bottom:195.521040px;}
.y35_c00488{bottom:195.525000px;}
.y33_c00488{bottom:212.805000px;}
.y32_c00488{bottom:218.925000px;}
.y30_c00488{bottom:230.441040px;}
.y31_c00488{bottom:230.445000px;}
.y2f_c00488{bottom:247.725000px;}
.y2e_c00488{bottom:247.726800px;}
.y2d_c00488{bottom:265.365000px;}
.y2c_c00488{bottom:265.366800px;}
.y2a_c00488{bottom:283.001040px;}
.y2b_c00488{bottom:283.005000px;}
.y29_c00488{bottom:300.285000px;}
.y28_c00488{bottom:300.288600px;}
.y27_c00488{bottom:317.926800px;}
.y25_c00488{bottom:335.561040px;}
.y26_c00488{bottom:335.565000px;}
.y24_c00488{bottom:352.845000px;}
.y23_c00488{bottom:352.846800px;}
.y21_c00488{bottom:370.481040px;}
.y22_c00488{bottom:370.485000px;}
.y20_c00488{bottom:387.765000px;}
.y1f_c00488{bottom:393.885000px;}
.y1e_c00488{bottom:405.405000px;}
.y1d_c00488{bottom:411.525000px;}
.y1b_c00488{bottom:423.041040px;}
.y1c_c00488{bottom:423.045000px;}
.y1a_c00488{bottom:446.445000px;}
.y19_c00488{bottom:473.085000px;}
.y18_c00488{bottom:598.725000px;}
.y17_c00488{bottom:619.605000px;}
.y16_c00488{bottom:640.845000px;}
.y15_c00488{bottom:661.725000px;}
.y14_c00488{bottom:682.605000px;}
.y13_c00488{bottom:703.845000px;}
.y12_c00488{bottom:739.845000px;}
.y11_c00488{bottom:760.725000px;}
.y10_c00488{bottom:781.605000px;}
.yf_c00488{bottom:802.845000px;}
.ye_c00488{bottom:823.725000px;}
.yd_c00488{bottom:845.325000px;}
.yc_c00488{bottom:865.845000px;}
.yb_c00488{bottom:886.725000px;}
.ya_c00488{bottom:922.725000px;}
.y9_c00488{bottom:943.965000px;}
.y8_c00488{bottom:964.845000px;}
.y7_c00488{bottom:985.725000px;}
.y6_c00488{bottom:1006.965000px;}
.y5_c00488{bottom:1027.845000px;}
.y4_c00488{bottom:1063.845000px;}
.y3_c00488{bottom:1085.445000px;}
.y2_c00488{bottom:1138.365000px;}
.ha_c00488{height:19.255605px;}
.h6_c00488{height:32.616000px;}
.h8_c00488{height:46.981634px;}
.h7_c00488{height:53.490240px;}
.hb_c00488{height:56.640000px;}
.h9_c00488{height:57.096000px;}
.h4_c00488{height:57.294676px;}
.h3_c00488{height:65.232000px;}
.h5_c00488{height:68.074560px;}
.h2_c00488{height:1201.365000px;}
.h0_c00488{height:1262.835000px;}
.h1_c00488{height:1263.000000px;}
.w3_c00488{width:25.020000px;}
.w2_c00488{width:863.955000px;}
.w0_c00488{width:892.935000px;}
.w1_c00488{width:893.250000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:14.490000px;}
.x2_c00488{left:113.040150px;}
.x45_c00488{left:127.217700px;}
.x46_c00488{left:152.192100px;}
.x2b_c00488{left:154.708050px;}
.x3_c00488{left:161.531250px;}
.x2c_c00488{left:172.870200px;}
.x31_c00488{left:173.908500px;}
.x5_c00488{left:178.037100px;}
.x3c_c00488{left:179.698650px;}
.x10_c00488{left:186.046950px;}
.x2d_c00488{left:193.178100px;}
.x37_c00488{left:213.087150px;}
.x47_c00488{left:226.394100px;}
.x32_c00488{left:229.722600px;}
.x4_c00488{left:236.986050px;}
.x48_c00488{left:255.538350px;}
.x11_c00488{left:261.051600px;}
.x17_c00488{left:299.012700px;}
.x23_c00488{left:321.428100px;}
.x24_c00488{left:345.592200px;}
.x21_c00488{left:349.070400px;}
.x1b_c00488{left:352.036800px;}
.x41_c00488{left:353.416200px;}
.xe_c00488{left:362.173500px;}
.x38_c00488{left:382.353150px;}
.x22_c00488{left:388.075950px;}
.x3d_c00488{left:391.043700px;}
.x39_c00488{left:407.718300px;}
.x3a_c00488{left:408.834300px;}
.x18_c00488{left:415.020900px;}
.x26_c00488{left:421.217250px;}
.x3b_c00488{left:430.479150px;}
.x1c_c00488{left:432.027450px;}
.x12_c00488{left:473.452200px;}
.x33_c00488{left:475.065000px;}
.x2e_c00488{left:478.862850px;}
.x13_c00488{left:480.823500px;}
.x1d_c00488{left:507.489300px;}
.x2f_c00488{left:509.783250px;}
.x25_c00488{left:517.957050px;}
.x34_c00488{left:528.388200px;}
.x27_c00488{left:529.410600px;}
.x35_c00488{left:535.445850px;}
.x19_c00488{left:543.301650px;}
.x44_c00488{left:545.985750px;}
.x1e_c00488{left:547.484550px;}
.x2a_c00488{left:553.608000px;}
.x30_c00488{left:575.852850px;}
.x8_c00488{left:577.340400px;}
.x36_c00488{left:580.032000px;}
.x42_c00488{left:589.446450px;}
.x14_c00488{left:593.433900px;}
.x40_c00488{left:610.420950px;}
.x28_c00488{left:623.191350px;}
.x3e_c00488{left:631.647900px;}
.x9_c00488{left:635.335350px;}
.x6_c00488{left:639.153000px;}
.xf_c00488{left:641.012400px;}
.x1f_c00488{left:644.493450px;}
.x29_c00488{left:660.675300px;}
.x3f_c00488{left:668.322450px;}
.x1a_c00488{left:676.326000px;}
.x15_c00488{left:680.426400px;}
.x7_c00488{left:686.150400px;}
.xa_c00488{left:716.388450px;}
.x43_c00488{left:722.306700px;}
.x20_c00488{left:727.716750px;}
.xc_c00488{left:734.727150px;}
.xd_c00488{left:741.390000px;}
.x16_c00488{left:745.386150px;}
.xb_c00488{left:750.390000px;}
.x49_c00488{left:759.914612px;}
@media print{
.v2_c00488{vertical-align:-21.760000pt;}
.v0_c00488{vertical-align:0.000000pt;}
.v3_c00488{vertical-align:21.760000pt;}
.v1_c00488{vertical-align:26.880000pt;}
.lsd_c00488{letter-spacing:-0.159616pt;}
.lsb_c00488{letter-spacing:0.000000pt;}
.ls13_c00488{letter-spacing:0.128000pt;}
.ls1_c00488{letter-spacing:0.232747pt;}
.ls11_c00488{letter-spacing:0.236160pt;}
.ls5_c00488{letter-spacing:0.262400pt;}
.ls7_c00488{letter-spacing:0.283392pt;}
.ls17_c00488{letter-spacing:0.292114pt;}
.ls26_c00488{letter-spacing:0.330624pt;}
.ls23_c00488{letter-spacing:0.340799pt;}
.ls2_c00488{letter-spacing:0.357867pt;}
.ls10_c00488{letter-spacing:0.377856pt;}
.ls1c_c00488{letter-spacing:0.389485pt;}
.ls3_c00488{letter-spacing:0.396267pt;}
.ls1d_c00488{letter-spacing:0.425088pt;}
.ls9_c00488{letter-spacing:0.438171pt;}
.ls6_c00488{letter-spacing:0.472320pt;}
.ls12_c00488{letter-spacing:0.519552pt;}
.ls8_c00488{letter-spacing:0.535542pt;}
.ls1a_c00488{letter-spacing:0.614016pt;}
.ls24_c00488{letter-spacing:0.619264pt;}
.ls4_c00488{letter-spacing:0.632913pt;}
.ls1e_c00488{letter-spacing:0.661248pt;}
.ls14_c00488{letter-spacing:0.730284pt;}
.ls22_c00488{letter-spacing:0.965632pt;}
.ls16_c00488{letter-spacing:1.180800pt;}
.ls15_c00488{letter-spacing:1.186048pt;}
.ls28_c00488{letter-spacing:2.162176pt;}
.ls25_c00488{letter-spacing:2.282880pt;}
.ls18_c00488{letter-spacing:2.692224pt;}
.lsf_c00488{letter-spacing:3.836288pt;}
.ls29_c00488{letter-spacing:4.759936pt;}
.ls0_c00488{letter-spacing:5.312000pt;}
.lsa_c00488{letter-spacing:5.475484pt;}
.ls1f_c00488{letter-spacing:7.494144pt;}
.ls21_c00488{letter-spacing:8.653952pt;}
.ls20_c00488{letter-spacing:8.659200pt;}
.ls1b_c00488{letter-spacing:11.640064pt;}
.lsc_c00488{letter-spacing:12.051200pt;}
.ls19_c00488{letter-spacing:12.647445pt;}
.ls27_c00488{letter-spacing:13.324672pt;}
.lse_c00488{letter-spacing:13.728000pt;}
.wsb_c00488{word-spacing:-19.349376pt;}
.ws1_c00488{word-spacing:-17.792000pt;}
.ws5_c00488{word-spacing:-15.768735pt;}
.ws3_c00488{word-spacing:-15.671364pt;}
.ws6_c00488{word-spacing:-15.476621pt;}
.ws9_c00488{word-spacing:-15.427936pt;}
.wsa_c00488{word-spacing:-15.379250pt;}
.ws7_c00488{word-spacing:-15.330564pt;}
.ws8_c00488{word-spacing:-14.872832pt;}
.ws0_c00488{word-spacing:-10.159744pt;}
.ws4_c00488{word-spacing:-9.024000pt;}
.ws2_c00488{word-spacing:-8.896000pt;}
.wsc_c00488{word-spacing:0.000000pt;}
._14_c00488{margin-left:-13.276259pt;}
._13_c00488{margin-left:-12.145180pt;}
._15_c00488{margin-left:-10.604260pt;}
._8_c00488{margin-left:-8.320000pt;}
._1_c00488{margin-left:-6.694400pt;}
._f_c00488{margin-left:-4.303360pt;}
._e_c00488{margin-left:-3.411200pt;}
._11_c00488{margin-left:-2.204160pt;}
._10_c00488{margin-left:-0.892160pt;}
._3_c00488{width:1.536000pt;}
._6_c00488{width:2.496000pt;}
._5_c00488{width:3.648000pt;}
._b_c00488{width:4.608000pt;}
._2_c00488{width:5.568000pt;}
._0_c00488{width:6.720000pt;}
._7_c00488{width:8.384000pt;}
._9_c00488{width:9.536000pt;}
._12_c00488{width:10.986240pt;}
._c_c00488{width:11.904000pt;}
._a_c00488{width:16.640000pt;}
._d_c00488{width:19.072000pt;}
._4_c00488{width:20.224000pt;}
.fs3_c00488{font-size:32.000000pt;}
.fs2_c00488{font-size:37.120000pt;}
.fs4_c00488{font-size:52.480000pt;}
.fs6_c00488{font-size:53.333333pt;}
.fs5_c00488{font-size:54.095146pt;}
.fs0_c00488{font-size:64.000000pt;}
.fs1_c00488{font-size:65.969690pt;}
.y0_c00488{bottom:0.000000pt;}
.y43_c00488{bottom:2.773333pt;}
.y42_c00488{bottom:30.884071pt;}
.y1_c00488{bottom:48.000000pt;}
.y41_c00488{bottom:49.320000pt;}
.y40_c00488{bottom:54.760000pt;}
.y3f_c00488{bottom:64.681600pt;}
.y3d_c00488{bottom:80.356480pt;}
.y3e_c00488{bottom:80.360000pt;}
.y3c_c00488{bottom:101.160000pt;}
.y3b_c00488{bottom:111.401600pt;}
.y39_c00488{bottom:127.076480pt;}
.y3a_c00488{bottom:127.080000pt;}
.y38_c00488{bottom:142.440000pt;}
.y37_c00488{bottom:142.441600pt;}
.y36_c00488{bottom:158.120000pt;}
.y34_c00488{bottom:173.796480pt;}
.y35_c00488{bottom:173.800000pt;}
.y33_c00488{bottom:189.160000pt;}
.y32_c00488{bottom:194.600000pt;}
.y30_c00488{bottom:204.836480pt;}
.y31_c00488{bottom:204.840000pt;}
.y2f_c00488{bottom:220.200000pt;}
.y2e_c00488{bottom:220.201600pt;}
.y2d_c00488{bottom:235.880000pt;}
.y2c_c00488{bottom:235.881600pt;}
.y2a_c00488{bottom:251.556480pt;}
.y2b_c00488{bottom:251.560000pt;}
.y29_c00488{bottom:266.920000pt;}
.y28_c00488{bottom:266.923200pt;}
.y27_c00488{bottom:282.601600pt;}
.y25_c00488{bottom:298.276480pt;}
.y26_c00488{bottom:298.280000pt;}
.y24_c00488{bottom:313.640000pt;}
.y23_c00488{bottom:313.641600pt;}
.y21_c00488{bottom:329.316480pt;}
.y22_c00488{bottom:329.320000pt;}
.y20_c00488{bottom:344.680000pt;}
.y1f_c00488{bottom:350.120000pt;}
.y1e_c00488{bottom:360.360000pt;}
.y1d_c00488{bottom:365.800000pt;}
.y1b_c00488{bottom:376.036480pt;}
.y1c_c00488{bottom:376.040000pt;}
.y1a_c00488{bottom:396.840000pt;}
.y19_c00488{bottom:420.520000pt;}
.y18_c00488{bottom:532.200000pt;}
.y17_c00488{bottom:550.760000pt;}
.y16_c00488{bottom:569.640000pt;}
.y15_c00488{bottom:588.200000pt;}
.y14_c00488{bottom:606.760000pt;}
.y13_c00488{bottom:625.640000pt;}
.y12_c00488{bottom:657.640000pt;}
.y11_c00488{bottom:676.200000pt;}
.y10_c00488{bottom:694.760000pt;}
.yf_c00488{bottom:713.640000pt;}
.ye_c00488{bottom:732.200000pt;}
.yd_c00488{bottom:751.400000pt;}
.yc_c00488{bottom:769.640000pt;}
.yb_c00488{bottom:788.200000pt;}
.ya_c00488{bottom:820.200000pt;}
.y9_c00488{bottom:839.080000pt;}
.y8_c00488{bottom:857.640000pt;}
.y7_c00488{bottom:876.200000pt;}
.y6_c00488{bottom:895.080000pt;}
.y5_c00488{bottom:913.640000pt;}
.y4_c00488{bottom:945.640000pt;}
.y3_c00488{bottom:964.840000pt;}
.y2_c00488{bottom:1011.880000pt;}
.ha_c00488{height:17.116093pt;}
.h6_c00488{height:28.992000pt;}
.h8_c00488{height:41.761453pt;}
.h7_c00488{height:47.546880pt;}
.hb_c00488{height:50.346667pt;}
.h9_c00488{height:50.752000pt;}
.h4_c00488{height:50.928601pt;}
.h3_c00488{height:57.984000pt;}
.h5_c00488{height:60.510720pt;}
.h2_c00488{height:1067.880000pt;}
.h0_c00488{height:1122.520000pt;}
.h1_c00488{height:1122.666667pt;}
.w3_c00488{width:22.240000pt;}
.w2_c00488{width:767.960000pt;}
.w0_c00488{width:793.720000pt;}
.w1_c00488{width:794.000000pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:12.880000pt;}
.x2_c00488{left:100.480133pt;}
.x45_c00488{left:113.082400pt;}
.x46_c00488{left:135.281867pt;}
.x2b_c00488{left:137.518267pt;}
.x3_c00488{left:143.583333pt;}
.x2c_c00488{left:153.662400pt;}
.x31_c00488{left:154.585333pt;}
.x5_c00488{left:158.255200pt;}
.x3c_c00488{left:159.732133pt;}
.x10_c00488{left:165.375067pt;}
.x2d_c00488{left:171.713867pt;}
.x37_c00488{left:189.410800pt;}
.x47_c00488{left:201.239200pt;}
.x32_c00488{left:204.197867pt;}
.x4_c00488{left:210.654267pt;}
.x48_c00488{left:227.145200pt;}
.x11_c00488{left:232.045867pt;}
.x17_c00488{left:265.789067pt;}
.x23_c00488{left:285.713867pt;}
.x24_c00488{left:307.193067pt;}
.x21_c00488{left:310.284800pt;}
.x1b_c00488{left:312.921600pt;}
.x41_c00488{left:314.147733pt;}
.xe_c00488{left:321.932000pt;}
.x38_c00488{left:339.869467pt;}
.x22_c00488{left:344.956400pt;}
.x3d_c00488{left:347.594400pt;}
.x39_c00488{left:362.416267pt;}
.x3a_c00488{left:363.408267pt;}
.x18_c00488{left:368.907467pt;}
.x26_c00488{left:374.415333pt;}
.x3b_c00488{left:382.648133pt;}
.x1c_c00488{left:384.024400pt;}
.x12_c00488{left:420.846400pt;}
.x33_c00488{left:422.280000pt;}
.x2e_c00488{left:425.655867pt;}
.x13_c00488{left:427.398667pt;}
.x1d_c00488{left:451.101600pt;}
.x2f_c00488{left:453.140667pt;}
.x25_c00488{left:460.406267pt;}
.x34_c00488{left:469.678400pt;}
.x27_c00488{left:470.587200pt;}
.x35_c00488{left:475.951867pt;}
.x19_c00488{left:482.934800pt;}
.x44_c00488{left:485.320667pt;}
.x1e_c00488{left:486.652933pt;}
.x2a_c00488{left:492.096000pt;}
.x30_c00488{left:511.869200pt;}
.x8_c00488{left:513.191467pt;}
.x36_c00488{left:515.584000pt;}
.x42_c00488{left:523.952400pt;}
.x14_c00488{left:527.496800pt;}
.x40_c00488{left:542.596400pt;}
.x28_c00488{left:553.947867pt;}
.x3e_c00488{left:561.464800pt;}
.x9_c00488{left:564.742533pt;}
.x6_c00488{left:568.136000pt;}
.xf_c00488{left:569.788800pt;}
.x1f_c00488{left:572.883067pt;}
.x29_c00488{left:587.266933pt;}
.x3f_c00488{left:594.064400pt;}
.x1a_c00488{left:601.178667pt;}
.x15_c00488{left:604.823467pt;}
.x7_c00488{left:609.911467pt;}
.xa_c00488{left:636.789733pt;}
.x43_c00488{left:642.050400pt;}
.x20_c00488{left:646.859333pt;}
.xc_c00488{left:653.090800pt;}
.xd_c00488{left:659.013333pt;}
.x16_c00488{left:662.565467pt;}
.xb_c00488{left:667.013333pt;}
.x49_c00488{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e958e0253864b74be06fe8f.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.134000;font-style:normal;font-weight:normal;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_1005a3a84f2d718c926cbe45.woff2')format("woff");}.ff2_c00489{font-family:ff2_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:ff3_c00489;src:url('chunks/assets/font_041cd57fa5ca5ac9432d86f8.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00489{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00489{vertical-align:-24.480000px;}
.v0_c00489{vertical-align:0.000000px;}
.v1_c00489{vertical-align:30.240000px;}
.ls8_c00489{letter-spacing:-0.179568px;}
.ls7_c00489{letter-spacing:0.000000px;}
.lsa_c00489{letter-spacing:0.144000px;}
.ls13_c00489{letter-spacing:0.265680px;}
.ls10_c00489{letter-spacing:0.478224px;}
.ls2_c00489{letter-spacing:0.507744px;}
.ls4_c00489{letter-spacing:0.531360px;}
.ls3_c00489{letter-spacing:0.554976px;}
.ls12_c00489{letter-spacing:0.602485px;}
.lsf_c00489{letter-spacing:0.690768px;}
.ls11_c00489{letter-spacing:0.712027px;}
.lsc_c00489{letter-spacing:0.718113px;}
.lse_c00489{letter-spacing:5.248656px;}
.ls9_c00489{letter-spacing:5.335200px;}
.lsb_c00489{letter-spacing:5.461200px;}
.lsd_c00489{letter-spacing:5.567472px;}
.ls0_c00489{letter-spacing:5.975400px;}
.ls5_c00489{letter-spacing:5.976000px;}
.ls6_c00489{letter-spacing:6.159920px;}
.ls1_c00489{letter-spacing:6.972624px;}
.sc__c00489{text-shadow:none;}
.sc1_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00489{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc1_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00489{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00489{word-spacing:-21.980592px;}
.ws4_c00489{word-spacing:-21.874320px;}
.ws2_c00489{word-spacing:-20.947680px;}
.ws0_c00489{word-spacing:-20.016000px;}
.ws1_c00489{word-spacing:-11.429712px;}
.ws3_c00489{word-spacing:-10.152000px;}
.ws6_c00489{word-spacing:0.000000px;}
._8_c00489{margin-left:-6.782400px;}
._9_c00489{margin-left:-5.689440px;}
._7_c00489{margin-left:-1.026000px;}
._4_c00489{width:1.121232px;}
._a_c00489{width:2.214000px;}
._0_c00489{width:3.240000px;}
._6_c00489{width:4.320000px;}
._3_c00489{width:6.431184px;}
._2_c00489{width:7.680816px;}
._1_c00489{width:12.456000px;}
._5_c00489{width:16.992000px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs4_c00489{font-size:36.000000px;}
.fs2_c00489{font-size:41.760000px;}
.fs3_c00489{font-size:56.160000px;}
.fs5_c00489{font-size:59.040000px;}
.fs7_c00489{font-size:60.000000px;}
.fs6_c00489{font-size:60.857039px;}
.fs0_c00489{font-size:72.000000px;}
.fs1_c00489{font-size:74.215901px;}
.y0_c00489{bottom:0.000000px;}
.y17_c00489{bottom:3.120000px;}
.y16_c00489{bottom:34.744580px;}
.y1_c00489{bottom:54.000000px;}
.y15_c00489{bottom:61.605000px;}
.y14_c00489{bottom:78.885000px;}
.y13_c00489{bottom:90.405000px;}
.y12_c00489{bottom:96.525000px;}
.y11_c00489{bottom:107.686800px;}
.y10_c00489{bottom:125.325000px;}
.yf_c00489{bottom:125.326800px;}
.ye_c00489{bottom:142.965000px;}
.yd_c00489{bottom:149.085000px;}
.yc_c00489{bottom:175.725000px;}
.yb_c00489{bottom:856.845000px;}
.ya_c00489{bottom:892.845000px;}
.y9_c00489{bottom:914.085000px;}
.y8_c00489{bottom:934.965000px;}
.y7_c00489{bottom:970.965000px;}
.y6_c00489{bottom:1006.965000px;}
.y5_c00489{bottom:1042.965000px;}
.y4_c00489{bottom:1063.845000px;}
.y3_c00489{bottom:1085.085000px;}
.y2_c00489{bottom:1138.365000px;}
.h9_c00489{height:19.255605px;}
.h6_c00489{height:32.616000px;}
.h7_c00489{height:46.981634px;}
.h8_c00489{height:53.490240px;}
.ha_c00489{height:56.640000px;}
.h4_c00489{height:57.294676px;}
.h3_c00489{height:65.232000px;}
.h5_c00489{height:68.074560px;}
.h2_c00489{height:1201.365000px;}
.h0_c00489{height:1262.835000px;}
.h1_c00489{height:1263.000000px;}
.w3_c00489{width:25.020000px;}
.w2_c00489{width:863.955000px;}
.w0_c00489{width:892.935000px;}
.w1_c00489{width:893.250000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:14.490000px;}
.x2_c00489{left:113.040150px;}
.xb_c00489{left:127.217700px;}
.xc_c00489{left:146.372250px;}
.x3_c00489{left:161.531250px;}
.x5_c00489{left:222.100350px;}
.x4_c00489{left:236.986050px;}
.x6_c00489{left:261.123750px;}
.x7_c00489{left:312.302850px;}
.x9_c00489{left:392.467950px;}
.x8_c00489{left:420.694050px;}
.xa_c00489{left:422.244450px;}
.xd_c00489{left:759.914612px;}
@media print{
.v2_c00489{vertical-align:-21.760000pt;}
.v0_c00489{vertical-align:0.000000pt;}
.v1_c00489{vertical-align:26.880000pt;}
.ls8_c00489{letter-spacing:-0.159616pt;}
.ls7_c00489{letter-spacing:0.000000pt;}
.lsa_c00489{letter-spacing:0.128000pt;}
.ls13_c00489{letter-spacing:0.236160pt;}
.ls10_c00489{letter-spacing:0.425088pt;}
.ls2_c00489{letter-spacing:0.451328pt;}
.ls4_c00489{letter-spacing:0.472320pt;}
.ls3_c00489{letter-spacing:0.493312pt;}
.ls12_c00489{letter-spacing:0.535542pt;}
.lsf_c00489{letter-spacing:0.614016pt;}
.ls11_c00489{letter-spacing:0.632913pt;}
.lsc_c00489{letter-spacing:0.638323pt;}
.lse_c00489{letter-spacing:4.665472pt;}
.ls9_c00489{letter-spacing:4.742400pt;}
.lsb_c00489{letter-spacing:4.854400pt;}
.lsd_c00489{letter-spacing:4.948864pt;}
.ls0_c00489{letter-spacing:5.311467pt;}
.ls5_c00489{letter-spacing:5.312000pt;}
.ls6_c00489{letter-spacing:5.475484pt;}
.ls1_c00489{letter-spacing:6.197888pt;}
.ws5_c00489{word-spacing:-19.538304pt;}
.ws4_c00489{word-spacing:-19.443840pt;}
.ws2_c00489{word-spacing:-18.620160pt;}
.ws0_c00489{word-spacing:-17.792000pt;}
.ws1_c00489{word-spacing:-10.159744pt;}
.ws3_c00489{word-spacing:-9.024000pt;}
.ws6_c00489{word-spacing:0.000000pt;}
._8_c00489{margin-left:-6.028800pt;}
._9_c00489{margin-left:-5.057280pt;}
._7_c00489{margin-left:-0.912000pt;}
._4_c00489{width:0.996651pt;}
._a_c00489{width:1.968000pt;}
._0_c00489{width:2.880000pt;}
._6_c00489{width:3.840000pt;}
._3_c00489{width:5.716608pt;}
._2_c00489{width:6.827392pt;}
._1_c00489{width:11.072000pt;}
._5_c00489{width:15.104000pt;}
.fs4_c00489{font-size:32.000000pt;}
.fs2_c00489{font-size:37.120000pt;}
.fs3_c00489{font-size:49.920000pt;}
.fs5_c00489{font-size:52.480000pt;}
.fs7_c00489{font-size:53.333333pt;}
.fs6_c00489{font-size:54.095146pt;}
.fs0_c00489{font-size:64.000000pt;}
.fs1_c00489{font-size:65.969690pt;}
.y0_c00489{bottom:0.000000pt;}
.y17_c00489{bottom:2.773333pt;}
.y16_c00489{bottom:30.884071pt;}
.y1_c00489{bottom:48.000000pt;}
.y15_c00489{bottom:54.760000pt;}
.y14_c00489{bottom:70.120000pt;}
.y13_c00489{bottom:80.360000pt;}
.y12_c00489{bottom:85.800000pt;}
.y11_c00489{bottom:95.721600pt;}
.y10_c00489{bottom:111.400000pt;}
.yf_c00489{bottom:111.401600pt;}
.ye_c00489{bottom:127.080000pt;}
.yd_c00489{bottom:132.520000pt;}
.yc_c00489{bottom:156.200000pt;}
.yb_c00489{bottom:761.640000pt;}
.ya_c00489{bottom:793.640000pt;}
.y9_c00489{bottom:812.520000pt;}
.y8_c00489{bottom:831.080000pt;}
.y7_c00489{bottom:863.080000pt;}
.y6_c00489{bottom:895.080000pt;}
.y5_c00489{bottom:927.080000pt;}
.y4_c00489{bottom:945.640000pt;}
.y3_c00489{bottom:964.520000pt;}
.y2_c00489{bottom:1011.880000pt;}
.h9_c00489{height:17.116093pt;}
.h6_c00489{height:28.992000pt;}
.h7_c00489{height:41.761453pt;}
.h8_c00489{height:47.546880pt;}
.ha_c00489{height:50.346667pt;}
.h4_c00489{height:50.928601pt;}
.h3_c00489{height:57.984000pt;}
.h5_c00489{height:60.510720pt;}
.h2_c00489{height:1067.880000pt;}
.h0_c00489{height:1122.520000pt;}
.h1_c00489{height:1122.666667pt;}
.w3_c00489{width:22.240000pt;}
.w2_c00489{width:767.960000pt;}
.w0_c00489{width:793.720000pt;}
.w1_c00489{width:794.000000pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:12.880000pt;}
.x2_c00489{left:100.480133pt;}
.xb_c00489{left:113.082400pt;}
.xc_c00489{left:130.108667pt;}
.x3_c00489{left:143.583333pt;}
.x5_c00489{left:197.422533pt;}
.x4_c00489{left:210.654267pt;}
.x6_c00489{left:232.110000pt;}
.x7_c00489{left:277.602533pt;}
.x9_c00489{left:348.860400pt;}
.x8_c00489{left:373.950267pt;}
.xa_c00489{left:375.328400pt;}
.xd_c00489{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ade01980e78d226178fa825a.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_52cccdaaffb6bb1512a7305e.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:0.787000;font-style:normal;font-weight:normal;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_57538520c08c8a44074cc61c.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00490{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls5_c00490{letter-spacing:0.000000px;}
.ls2_c00490{letter-spacing:0.202464px;}
.ls8_c00490{letter-spacing:0.239760px;}
.ls1_c00490{letter-spacing:0.280080px;}
.ls6_c00490{letter-spacing:0.399600px;}
.ls0_c00490{letter-spacing:4.680960px;}
.ls7_c00490{letter-spacing:4.923072px;}
.ls3_c00490{letter-spacing:5.976000px;}
.ls4_c00490{letter-spacing:6.159920px;}
.sc__c00490{text-shadow:none;}
.sc1_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00490{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc1_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00490{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00490{word-spacing:-19.734912px;}
.ws1_c00490{word-spacing:-15.211440px;}
.ws2_c00490{word-spacing:-14.811840px;}
.ws3_c00490{word-spacing:0.000000px;}
._0_c00490{margin-left:-1.118880px;}
._1_c00490{width:1.018368px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs2_c00490{font-size:53.280000px;}
.fs3_c00490{font-size:60.000000px;}
.fs0_c00490{font-size:72.000000px;}
.fs1_c00490{font-size:74.215901px;}
.y0_c00490{bottom:0.000000px;}
.y1a_c00490{bottom:3.120000px;}
.y18_c00490{bottom:23.040000px;}
.y16_c00490{bottom:31.320000px;}
.y19_c00490{bottom:34.744580px;}
.y1_c00490{bottom:54.000000px;}
.y17_c00490{bottom:160.245000px;}
.y14_c00490{bottom:472.725000px;}
.y13_c00490{bottom:509.085000px;}
.y12_c00490{bottom:545.085000px;}
.y11_c00490{bottom:581.085000px;}
.y10_c00490{bottom:617.085000px;}
.yf_c00490{bottom:653.085000px;}
.ye_c00490{bottom:689.085000px;}
.yd_c00490{bottom:725.085000px;}
.yc_c00490{bottom:761.085000px;}
.yb_c00490{bottom:797.085000px;}
.ya_c00490{bottom:833.085000px;}
.y15_c00490{bottom:859.365000px;}
.y9_c00490{bottom:869.085000px;}
.y8_c00490{bottom:905.085000px;}
.y7_c00490{bottom:941.085000px;}
.y6_c00490{bottom:977.085000px;}
.y5_c00490{bottom:1013.085000px;}
.y4_c00490{bottom:1049.085000px;}
.y3_c00490{bottom:1085.085000px;}
.y2_c00490{bottom:1138.365000px;}
.h8_c00490{height:19.255605px;}
.h7_c00490{height:36.000000px;}
.h6_c00490{height:41.132160px;}
.h5_c00490{height:43.920000px;}
.h3_c00490{height:55.584000px;}
.h9_c00490{height:56.640000px;}
.h4_c00490{height:57.294676px;}
.h2_c00490{height:1201.365000px;}
.h0_c00490{height:1262.835000px;}
.h1_c00490{height:1263.000000px;}
.w5_c00490{width:25.020000px;}
.w3_c00490{width:385.200000px;}
.w4_c00490{width:573.480000px;}
.w2_c00490{width:863.955000px;}
.w0_c00490{width:892.935000px;}
.w1_c00490{width:893.250000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:14.490000px;}
.x6_c00490{left:83.745450px;}
.x2_c00490{left:113.040150px;}
.x7_c00490{left:151.650000px;}
.x8_c00490{left:156.154800px;}
.x3_c00490{left:161.531250px;}
.x5_c00490{left:205.290000px;}
.x4_c00490{left:236.986050px;}
.x9_c00490{left:759.914612px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls5_c00490{letter-spacing:0.000000pt;}
.ls2_c00490{letter-spacing:0.179968pt;}
.ls8_c00490{letter-spacing:0.213120pt;}
.ls1_c00490{letter-spacing:0.248960pt;}
.ls6_c00490{letter-spacing:0.355200pt;}
.ls0_c00490{letter-spacing:4.160853pt;}
.ls7_c00490{letter-spacing:4.376064pt;}
.ls3_c00490{letter-spacing:5.312000pt;}
.ls4_c00490{letter-spacing:5.475484pt;}
.ws0_c00490{word-spacing:-17.542144pt;}
.ws1_c00490{word-spacing:-13.521280pt;}
.ws2_c00490{word-spacing:-13.166080pt;}
.ws3_c00490{word-spacing:0.000000pt;}
._0_c00490{margin-left:-0.994560pt;}
._1_c00490{width:0.905216pt;}
.fs2_c00490{font-size:47.360000pt;}
.fs3_c00490{font-size:53.333333pt;}
.fs0_c00490{font-size:64.000000pt;}
.fs1_c00490{font-size:65.969690pt;}
.y0_c00490{bottom:0.000000pt;}
.y1a_c00490{bottom:2.773333pt;}
.y18_c00490{bottom:20.480000pt;}
.y16_c00490{bottom:27.840000pt;}
.y19_c00490{bottom:30.884071pt;}
.y1_c00490{bottom:48.000000pt;}
.y17_c00490{bottom:142.440000pt;}
.y14_c00490{bottom:420.200000pt;}
.y13_c00490{bottom:452.520000pt;}
.y12_c00490{bottom:484.520000pt;}
.y11_c00490{bottom:516.520000pt;}
.y10_c00490{bottom:548.520000pt;}
.yf_c00490{bottom:580.520000pt;}
.ye_c00490{bottom:612.520000pt;}
.yd_c00490{bottom:644.520000pt;}
.yc_c00490{bottom:676.520000pt;}
.yb_c00490{bottom:708.520000pt;}
.ya_c00490{bottom:740.520000pt;}
.y15_c00490{bottom:763.880000pt;}
.y9_c00490{bottom:772.520000pt;}
.y8_c00490{bottom:804.520000pt;}
.y7_c00490{bottom:836.520000pt;}
.y6_c00490{bottom:868.520000pt;}
.y5_c00490{bottom:900.520000pt;}
.y4_c00490{bottom:932.520000pt;}
.y3_c00490{bottom:964.520000pt;}
.y2_c00490{bottom:1011.880000pt;}
.h8_c00490{height:17.116093pt;}
.h7_c00490{height:32.000000pt;}
.h6_c00490{height:36.561920pt;}
.h5_c00490{height:39.040000pt;}
.h3_c00490{height:49.408000pt;}
.h9_c00490{height:50.346667pt;}
.h4_c00490{height:50.928601pt;}
.h2_c00490{height:1067.880000pt;}
.h0_c00490{height:1122.520000pt;}
.h1_c00490{height:1122.666667pt;}
.w5_c00490{width:22.240000pt;}
.w3_c00490{width:342.400000pt;}
.w4_c00490{width:509.760000pt;}
.w2_c00490{width:767.960000pt;}
.w0_c00490{width:793.720000pt;}
.w1_c00490{width:794.000000pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:12.880000pt;}
.x6_c00490{left:74.440400pt;}
.x2_c00490{left:100.480133pt;}
.x7_c00490{left:134.800000pt;}
.x8_c00490{left:138.804267pt;}
.x3_c00490{left:143.583333pt;}
.x5_c00490{left:182.480000pt;}
.x4_c00490{left:210.654267pt;}
.x9_c00490{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f22ab3c287366dbe02efdbb7.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.134000;font-style:normal;font-weight:normal;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_80a37e5e8b5f4d1a5bfd39e6.woff2')format("woff");}.ff2_c00491{font-family:ff2_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:ff3_c00491;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00491;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00491{font-family:ff4_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:ff5_c00491;src:url('chunks/assets/font_929cf688ac48f736bfa4c1f8.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00491{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00491{vertical-align:-30.240000px;}
.v3_c00491{vertical-align:-24.480000px;}
.v0_c00491{vertical-align:0.000000px;}
.v4_c00491{vertical-align:24.480000px;}
.v1_c00491{vertical-align:30.240000px;}
.lsd_c00491{letter-spacing:0.000000px;}
.ls1_c00491{letter-spacing:0.053040px;}
.ls0_c00491{letter-spacing:0.080040px;}
.ls6_c00491{letter-spacing:0.236160px;}
.ls10_c00491{letter-spacing:0.265680px;}
.ls9_c00491{letter-spacing:0.295200px;}
.lsf_c00491{letter-spacing:0.478224px;}
.lsa_c00491{letter-spacing:0.531360px;}
.ls8_c00491{letter-spacing:0.560880px;}
.ls7_c00491{letter-spacing:0.712027px;}
.ls4_c00491{letter-spacing:0.792840px;}
.lse_c00491{letter-spacing:5.430672px;}
.ls2_c00491{letter-spacing:5.974200px;}
.lsb_c00491{letter-spacing:5.976000px;}
.ls3_c00491{letter-spacing:5.980200px;}
.lsc_c00491{letter-spacing:6.159920px;}
.ls5_c00491{letter-spacing:54.864000px;}
.sc__c00491{text-shadow:none;}
.sc1_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00491{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc1_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00491{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00491{word-spacing:-21.043152px;}
.ws3_c00491{word-spacing:-17.630284px;}
.ws0_c00491{word-spacing:-11.609280px;}
.ws2_c00491{word-spacing:-10.008000px;}
.ws4_c00491{word-spacing:0.000000px;}
._5_c00491{margin-left:-1.179360px;}
._2_c00491{width:1.584000px;}
._7_c00491{width:3.240000px;}
._b_c00491{width:4.824000px;}
._6_c00491{width:7.128000px;}
._9_c00491{width:8.424000px;}
._a_c00491{width:11.232000px;}
._4_c00491{width:12.312000px;}
._1_c00491{width:13.464000px;}
._8_c00491{width:17.712000px;}
._3_c00491{width:18.864000px;}
._0_c00491{width:38.448000px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs4_c00491{font-size:36.000000px;}
.fs2_c00491{font-size:41.760000px;}
.fs3_c00491{font-size:56.160000px;}
.fs5_c00491{font-size:59.040000px;}
.fs7_c00491{font-size:60.000000px;}
.fs6_c00491{font-size:60.857039px;}
.fs0_c00491{font-size:72.000000px;}
.fs1_c00491{font-size:74.215901px;}
.y0_c00491{bottom:0.000000px;}
.y2f_c00491{bottom:3.120000px;}
.y2e_c00491{bottom:34.744580px;}
.y1_c00491{bottom:54.000000px;}
.y2d_c00491{bottom:55.485000px;}
.y2c_c00491{bottom:61.605000px;}
.y2b_c00491{bottom:72.765000px;}
.y2a_c00491{bottom:78.885000px;}
.y29_c00491{bottom:96.525000px;}
.y28_c00491{bottom:107.685000px;}
.y27_c00491{bottom:113.805000px;}
.y26_c00491{bottom:140.445000px;}
.y25_c00491{bottom:162.405000px;}
.y24_c00491{bottom:183.285000px;}
.y23_c00491{bottom:219.285000px;}
.y22_c00491{bottom:255.285000px;}
.y21_c00491{bottom:291.285000px;}
.y20_c00491{bottom:312.165000px;}
.y1f_c00491{bottom:333.405000px;}
.y1e_c00491{bottom:354.285000px;}
.y1d_c00491{bottom:375.525000px;}
.y1c_c00491{bottom:396.405000px;}
.y1b_c00491{bottom:417.285000px;}
.y19_c00491{bottom:438.525000px;}
.y1a_c00491{bottom:446.085000px;}
.y18_c00491{bottom:459.405000px;}
.y17_c00491{bottom:480.285000px;}
.y16_c00491{bottom:501.525000px;}
.y15_c00491{bottom:522.405000px;}
.y14_c00491{bottom:543.285000px;}
.y13_c00491{bottom:579.285000px;}
.y12_c00491{bottom:615.285000px;}
.y11_c00491{bottom:651.285000px;}
.y10_c00491{bottom:687.285000px;}
.yf_c00491{bottom:723.285000px;}
.ye_c00491{bottom:759.285000px;}
.yd_c00491{bottom:795.285000px;}
.yc_c00491{bottom:831.285000px;}
.yb_c00491{bottom:867.285000px;}
.ya_c00491{bottom:888.525000px;}
.y9_c00491{bottom:909.405000px;}
.y8_c00491{bottom:945.405000px;}
.y7_c00491{bottom:966.645000px;}
.y6_c00491{bottom:987.525000px;}
.y5_c00491{bottom:1008.405000px;}
.y4_c00491{bottom:1044.405000px;}
.y3_c00491{bottom:1082.925000px;}
.y2_c00491{bottom:1138.365000px;}
.hb_c00491{height:19.255605px;}
.h7_c00491{height:32.616000px;}
.h6_c00491{height:37.834560px;}
.h8_c00491{height:46.981634px;}
.ha_c00491{height:53.490240px;}
.hc_c00491{height:56.640000px;}
.h9_c00491{height:57.096000px;}
.h4_c00491{height:57.294676px;}
.h3_c00491{height:65.232000px;}
.h5_c00491{height:68.074560px;}
.h2_c00491{height:1201.365000px;}
.h0_c00491{height:1262.835000px;}
.h1_c00491{height:1263.000000px;}
.w3_c00491{width:25.020000px;}
.w2_c00491{width:863.955000px;}
.w0_c00491{width:892.935000px;}
.w1_c00491{width:893.250000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:14.490000px;}
.x2_c00491{left:113.040150px;}
.x18_c00491{left:122.213700px;}
.x14_c00491{left:140.037600px;}
.x6_c00491{left:143.009400px;}
.x19_c00491{left:147.188250px;}
.x7_c00491{left:156.104700px;}
.x3_c00491{left:161.531250px;}
.x8_c00491{left:198.179400px;}
.xe_c00491{left:215.700750px;}
.x4_c00491{left:236.986050px;}
.x13_c00491{left:275.019600px;}
.xf_c00491{left:286.041150px;}
.x10_c00491{left:290.880000px;}
.x1a_c00491{left:296.476650px;}
.x11_c00491{left:298.158300px;}
.x15_c00491{left:315.617100px;}
.x1b_c00491{left:321.451200px;}
.x16_c00491{left:367.299000px;}
.x12_c00491{left:370.193100px;}
.x17_c00491{left:371.468700px;}
.x5_c00491{left:413.967000px;}
.xd_c00491{left:517.613850px;}
.x9_c00491{left:518.957100px;}
.xa_c00491{left:548.926350px;}
.xb_c00491{left:574.109250px;}
.xc_c00491{left:602.098800px;}
.x1c_c00491{left:759.914612px;}
@media print{
.v2_c00491{vertical-align:-26.880000pt;}
.v3_c00491{vertical-align:-21.760000pt;}
.v0_c00491{vertical-align:0.000000pt;}
.v4_c00491{vertical-align:21.760000pt;}
.v1_c00491{vertical-align:26.880000pt;}
.lsd_c00491{letter-spacing:0.000000pt;}
.ls1_c00491{letter-spacing:0.047147pt;}
.ls0_c00491{letter-spacing:0.071147pt;}
.ls6_c00491{letter-spacing:0.209920pt;}
.ls10_c00491{letter-spacing:0.236160pt;}
.ls9_c00491{letter-spacing:0.262400pt;}
.lsf_c00491{letter-spacing:0.425088pt;}
.lsa_c00491{letter-spacing:0.472320pt;}
.ls8_c00491{letter-spacing:0.498560pt;}
.ls7_c00491{letter-spacing:0.632913pt;}
.ls4_c00491{letter-spacing:0.704747pt;}
.lse_c00491{letter-spacing:4.827264pt;}
.ls2_c00491{letter-spacing:5.310400pt;}
.lsb_c00491{letter-spacing:5.312000pt;}
.ls3_c00491{letter-spacing:5.315733pt;}
.lsc_c00491{letter-spacing:5.475484pt;}
.ls5_c00491{letter-spacing:48.768000pt;}
.ws1_c00491{word-spacing:-18.705024pt;}
.ws3_c00491{word-spacing:-15.671364pt;}
.ws0_c00491{word-spacing:-10.319360pt;}
.ws2_c00491{word-spacing:-8.896000pt;}
.ws4_c00491{word-spacing:0.000000pt;}
._5_c00491{margin-left:-1.048320pt;}
._2_c00491{width:1.408000pt;}
._7_c00491{width:2.880000pt;}
._b_c00491{width:4.288000pt;}
._6_c00491{width:6.336000pt;}
._9_c00491{width:7.488000pt;}
._a_c00491{width:9.984000pt;}
._4_c00491{width:10.944000pt;}
._1_c00491{width:11.968000pt;}
._8_c00491{width:15.744000pt;}
._3_c00491{width:16.768000pt;}
._0_c00491{width:34.176000pt;}
.fs4_c00491{font-size:32.000000pt;}
.fs2_c00491{font-size:37.120000pt;}
.fs3_c00491{font-size:49.920000pt;}
.fs5_c00491{font-size:52.480000pt;}
.fs7_c00491{font-size:53.333333pt;}
.fs6_c00491{font-size:54.095146pt;}
.fs0_c00491{font-size:64.000000pt;}
.fs1_c00491{font-size:65.969690pt;}
.y0_c00491{bottom:0.000000pt;}
.y2f_c00491{bottom:2.773333pt;}
.y2e_c00491{bottom:30.884071pt;}
.y1_c00491{bottom:48.000000pt;}
.y2d_c00491{bottom:49.320000pt;}
.y2c_c00491{bottom:54.760000pt;}
.y2b_c00491{bottom:64.680000pt;}
.y2a_c00491{bottom:70.120000pt;}
.y29_c00491{bottom:85.800000pt;}
.y28_c00491{bottom:95.720000pt;}
.y27_c00491{bottom:101.160000pt;}
.y26_c00491{bottom:124.840000pt;}
.y25_c00491{bottom:144.360000pt;}
.y24_c00491{bottom:162.920000pt;}
.y23_c00491{bottom:194.920000pt;}
.y22_c00491{bottom:226.920000pt;}
.y21_c00491{bottom:258.920000pt;}
.y20_c00491{bottom:277.480000pt;}
.y1f_c00491{bottom:296.360000pt;}
.y1e_c00491{bottom:314.920000pt;}
.y1d_c00491{bottom:333.800000pt;}
.y1c_c00491{bottom:352.360000pt;}
.y1b_c00491{bottom:370.920000pt;}
.y19_c00491{bottom:389.800000pt;}
.y1a_c00491{bottom:396.520000pt;}
.y18_c00491{bottom:408.360000pt;}
.y17_c00491{bottom:426.920000pt;}
.y16_c00491{bottom:445.800000pt;}
.y15_c00491{bottom:464.360000pt;}
.y14_c00491{bottom:482.920000pt;}
.y13_c00491{bottom:514.920000pt;}
.y12_c00491{bottom:546.920000pt;}
.y11_c00491{bottom:578.920000pt;}
.y10_c00491{bottom:610.920000pt;}
.yf_c00491{bottom:642.920000pt;}
.ye_c00491{bottom:674.920000pt;}
.yd_c00491{bottom:706.920000pt;}
.yc_c00491{bottom:738.920000pt;}
.yb_c00491{bottom:770.920000pt;}
.ya_c00491{bottom:789.800000pt;}
.y9_c00491{bottom:808.360000pt;}
.y8_c00491{bottom:840.360000pt;}
.y7_c00491{bottom:859.240000pt;}
.y6_c00491{bottom:877.800000pt;}
.y5_c00491{bottom:896.360000pt;}
.y4_c00491{bottom:928.360000pt;}
.y3_c00491{bottom:962.600000pt;}
.y2_c00491{bottom:1011.880000pt;}
.hb_c00491{height:17.116093pt;}
.h7_c00491{height:28.992000pt;}
.h6_c00491{height:33.630720pt;}
.h8_c00491{height:41.761453pt;}
.ha_c00491{height:47.546880pt;}
.hc_c00491{height:50.346667pt;}
.h9_c00491{height:50.752000pt;}
.h4_c00491{height:50.928601pt;}
.h3_c00491{height:57.984000pt;}
.h5_c00491{height:60.510720pt;}
.h2_c00491{height:1067.880000pt;}
.h0_c00491{height:1122.520000pt;}
.h1_c00491{height:1122.666667pt;}
.w3_c00491{width:22.240000pt;}
.w2_c00491{width:767.960000pt;}
.w0_c00491{width:793.720000pt;}
.w1_c00491{width:794.000000pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:12.880000pt;}
.x2_c00491{left:100.480133pt;}
.x18_c00491{left:108.634400pt;}
.x14_c00491{left:124.477867pt;}
.x6_c00491{left:127.119467pt;}
.x19_c00491{left:130.834000pt;}
.x7_c00491{left:138.759733pt;}
.x3_c00491{left:143.583333pt;}
.x8_c00491{left:176.159467pt;}
.xe_c00491{left:191.734000pt;}
.x4_c00491{left:210.654267pt;}
.x13_c00491{left:244.461867pt;}
.xf_c00491{left:254.258800pt;}
.x10_c00491{left:258.560000pt;}
.x1a_c00491{left:263.534800pt;}
.x11_c00491{left:265.029600pt;}
.x15_c00491{left:280.548533pt;}
.x1b_c00491{left:285.734400pt;}
.x16_c00491{left:326.488000pt;}
.x12_c00491{left:329.060533pt;}
.x17_c00491{left:330.194400pt;}
.x5_c00491{left:367.970667pt;}
.xd_c00491{left:460.101200pt;}
.x9_c00491{left:461.295200pt;}
.xa_c00491{left:487.934533pt;}
.xb_c00491{left:510.319333pt;}
.xc_c00491{left:535.198933pt;}
.x1c_c00491{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99c5188643d238d094576bf8.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.134000;font-style:normal;font-weight:normal;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_99f579b0e316ae667113dc7f.woff2')format("woff");}.ff2_c00492{font-family:ff2_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:ff3_c00492;src:url('chunks/assets/font_b131612d9fd077b47c94937a.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:0.921000;font-style:normal;font-weight:normal;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_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff4_c00492{font-family:ff4_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:ff5_c00492;src:url('chunks/assets/font_0f8f9943e613ccf6e13e8ae8.woff2')format("woff");}.ff5_c00492{font-family:ff5_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:ff6_c00492;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff6_c00492{font-family:ff6_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:ff7_c00492;src:url('chunks/assets/font_1792d9a02d91971803a0bb9c.woff2')format("woff");}.ff7_c00492{font-family:ff7_c00492;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00492;src:url('chunks/assets/font_c411be754b64dafa193bfa29.woff2')format("woff");}.ff8_c00492{font-family:ff8_c00492;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00492;src:url('chunks/assets/font_e5c11c50fad14b2176680a32.woff2')format("woff");}.ff9_c00492{font-family:ff9_c00492;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00492{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00492{vertical-align:-24.480000px;}
.v0_c00492{vertical-align:0.000000px;}
.v1_c00492{vertical-align:24.480000px;}
.v3_c00492{vertical-align:30.240000px;}
.ls13_c00492{letter-spacing:0.000000px;}
.ls14_c00492{letter-spacing:0.036000px;}
.ls8_c00492{letter-spacing:0.236160px;}
.ls6_c00492{letter-spacing:0.242064px;}
.ls17_c00492{letter-spacing:0.265680px;}
.ls20_c00492{letter-spacing:0.273857px;}
.lsa_c00492{letter-spacing:0.295200px;}
.lse_c00492{letter-spacing:0.324720px;}
.ls16_c00492{letter-spacing:0.328628px;}
.ls4_c00492{letter-spacing:0.336528px;}
.ls1d_c00492{letter-spacing:0.348336px;}
.ls3_c00492{letter-spacing:0.354240px;}
.ls26_c00492{letter-spacing:0.478224px;}
.lsc_c00492{letter-spacing:0.525456px;}
.ls9_c00492{letter-spacing:0.531360px;}
.ls2_c00492{letter-spacing:0.547713px;}
.lsb_c00492{letter-spacing:0.560880px;}
.ls15_c00492{letter-spacing:0.584496px;}
.ls25_c00492{letter-spacing:0.602485px;}
.ls1_c00492{letter-spacing:0.657256px;}
.ls22_c00492{letter-spacing:0.690768px;}
.ls1f_c00492{letter-spacing:0.696672px;}
.ls0_c00492{letter-spacing:0.712027px;}
.ls2c_c00492{letter-spacing:0.743904px;}
.ls2a_c00492{letter-spacing:0.797040px;}
.ls1e_c00492{letter-spacing:0.821570px;}
.ls2b_c00492{letter-spacing:3.518784px;}
.ls23_c00492{letter-spacing:4.132800px;}
.ls27_c00492{letter-spacing:4.144608px;}
.ls7_c00492{letter-spacing:5.254560px;}
.ls1c_c00492{letter-spacing:5.301792px;}
.ls28_c00492{letter-spacing:5.430672px;}
.ls10_c00492{letter-spacing:5.431680px;}
.ls19_c00492{letter-spacing:5.461200px;}
.ls21_c00492{letter-spacing:5.579280px;}
.lsf_c00492{letter-spacing:5.975400px;}
.ls11_c00492{letter-spacing:5.976000px;}
.ls12_c00492{letter-spacing:6.159920px;}
.ls5_c00492{letter-spacing:6.789600px;}
.lsd_c00492{letter-spacing:8.324640px;}
.ls18_c00492{letter-spacing:8.767440px;}
.ls24_c00492{letter-spacing:10.621296px;}
.ls1b_c00492{letter-spacing:11.784384px;}
.ls1a_c00492{letter-spacing:11.790288px;}
.ls29_c00492{letter-spacing:24.855840px;}
.sc__c00492{text-shadow:none;}
.sc1_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00492{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc1_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00492{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4_c00492{word-spacing:-21.874320px;}
.ws3_c00492{word-spacing:-21.714912px;}
.ws8_c00492{word-spacing:-21.043152px;}
.ws9_c00492{word-spacing:-20.016000px;}
.ws5_c00492{word-spacing:-17.739827px;}
.ws0_c00492{word-spacing:-17.630284px;}
.ws2_c00492{word-spacing:-17.575513px;}
.ws6_c00492{word-spacing:-17.520742px;}
.ws7_c00492{word-spacing:-16.944480px;}
.wsa_c00492{word-spacing:-11.609280px;}
.ws1_c00492{word-spacing:-10.008000px;}
.wsb_c00492{word-spacing:0.000000px;}
._12_c00492{margin-left:-25.269120px;}
._11_c00492{margin-left:-24.265440px;}
._13_c00492{margin-left:-23.261760px;}
._f_c00492{margin-left:-11.040480px;}
._e_c00492{margin-left:-9.859680px;}
._6_c00492{margin-left:-8.451480px;}
._8_c00492{margin-left:-6.872256px;}
._9_c00492{margin-left:-5.703264px;}
._b_c00492{margin-left:-4.451616px;}
._d_c00492{margin-left:-2.751264px;}
._5_c00492{margin-left:-1.156284px;}
._4_c00492{width:1.121760px;}
._c_c00492{width:2.902967px;}
._a_c00492{width:4.250880px;}
._7_c00492{width:5.904000px;}
._3_c00492{width:7.911360px;}
._2_c00492{width:9.720000px;}
._0_c00492{width:15.120000px;}
._1_c00492{width:21.096000px;}
._10_c00492{width:28.080000px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs4_c00492{font-size:36.000000px;}
.fs6_c00492{font-size:41.760000px;}
.fs5_c00492{font-size:56.160000px;}
.fs2_c00492{font-size:59.040000px;}
.fs7_c00492{font-size:60.000000px;}
.fs3_c00492{font-size:60.857039px;}
.fs0_c00492{font-size:72.000000px;}
.fs1_c00492{font-size:74.215901px;}
.y0_c00492{bottom:0.000000px;}
.y37_c00492{bottom:3.120000px;}
.y36_c00492{bottom:34.744580px;}
.y1_c00492{bottom:54.000000px;}
.y35_c00492{bottom:55.481040px;}
.y34_c00492{bottom:72.765000px;}
.y33_c00492{bottom:72.766440px;}
.y32_c00492{bottom:90.404640px;}
.y31_c00492{bottom:107.688600px;}
.y30_c00492{bottom:125.326800px;}
.y2f_c00492{bottom:149.085000px;}
.y2e_c00492{bottom:175.725000px;}
.y2d_c00492{bottom:281.205000px;}
.y2c_c00492{bottom:302.085000px;}
.y2b_c00492{bottom:323.325000px;}
.y2a_c00492{bottom:344.205000px;}
.y29_c00492{bottom:380.205000px;}
.y28_c00492{bottom:416.205000px;}
.y27_c00492{bottom:444.286080px;}
.y26_c00492{bottom:461.924280px;}
.y25_c00492{bottom:479.562480px;}
.y24_c00492{bottom:496.846440px;}
.y23_c00492{bottom:514.484640px;}
.y22_c00492{bottom:531.768600px;}
.y21_c00492{bottom:549.406800px;}
.y20_c00492{bottom:567.045000px;}
.y1f_c00492{bottom:591.885000px;}
.y1e_c00492{bottom:591.886800px;}
.y1b_c00492{bottom:609.521040px;}
.y1c_c00492{bottom:609.525000px;}
.y1d_c00492{bottom:615.645000px;}
.y1a_c00492{bottom:626.805000px;}
.y19_c00492{bottom:626.806800px;}
.y17_c00492{bottom:644.442840px;}
.y18_c00492{bottom:644.445000px;}
.y16_c00492{bottom:662.081040px;}
.y14_c00492{bottom:679.364640px;}
.y15_c00492{bottom:679.365000px;}
.y13_c00492{bottom:704.559960px;}
.y12_c00492{bottom:731.925000px;}
.y11_c00492{bottom:731.931480px;}
.y10_c00492{bottom:749.569680px;}
.yf_c00492{bottom:774.765000px;}
.ye_c00492{bottom:774.771840px;}
.yd_c00492{bottom:794.565000px;}
.yc_c00492{bottom:819.765000px;}
.yb_c00492{bottom:848.925000px;}
.ya_c00492{bottom:877.725000px;}
.y9_c00492{bottom:913.365000px;}
.y8_c00492{bottom:949.365000px;}
.y7_c00492{bottom:970.605000px;}
.y6_c00492{bottom:992.205000px;}
.y5_c00492{bottom:1013.085000px;}
.y4_c00492{bottom:1049.085000px;}
.y3_c00492{bottom:1085.085000px;}
.y2_c00492{bottom:1138.365000px;}
.hd_c00492{height:19.255605px;}
.hb_c00492{height:32.616000px;}
.h9_c00492{height:39.350391px;}
.h8_c00492{height:46.981634px;}
.h6_c00492{height:47.988281px;}
.h7_c00492{height:53.490240px;}
.he_c00492{height:56.640000px;}
.ha_c00492{height:57.096000px;}
.h4_c00492{height:57.294676px;}
.h3_c00492{height:65.232000px;}
.h5_c00492{height:67.239607px;}
.hc_c00492{height:68.074560px;}
.h2_c00492{height:1201.365000px;}
.h0_c00492{height:1262.835000px;}
.h1_c00492{height:1263.000000px;}
.w3_c00492{width:25.020000px;}
.w2_c00492{width:863.955000px;}
.w0_c00492{width:892.935000px;}
.w1_c00492{width:893.250000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:14.490000px;}
.x2_c00492{left:113.040150px;}
.x2d_c00492{left:125.549550px;}
.x3e_c00492{left:128.864850px;}
.x2e_c00492{left:130.686450px;}
.x15_c00492{left:151.474350px;}
.x21_c00492{left:158.068050px;}
.x3_c00492{left:161.531250px;}
.x16_c00492{left:162.764250px;}
.x17_c00492{left:172.389450px;}
.x32_c00492{left:193.275900px;}
.x25_c00492{left:197.577450px;}
.x18_c00492{left:209.063550px;}
.x3a_c00492{left:213.115650px;}
.x26_c00492{left:218.366850px;}
.x3b_c00492{left:232.270350px;}
.x4_c00492{left:236.986050px;}
.x30_c00492{left:250.958550px;}
.x31_c00492{left:255.387450px;}
.x22_c00492{left:285.594000px;}
.x33_c00492{left:292.705800px;}
.x34_c00492{left:317.680350px;}
.xb_c00492{left:325.665150px;}
.x35_c00492{left:329.419200px;}
.x19_c00492{left:360.513000px;}
.x23_c00492{left:366.456000px;}
.x24_c00492{left:370.625550px;}
.x36_c00492{left:385.469550px;}
.xc_c00492{left:386.665950px;}
.xd_c00492{left:391.165950px;}
.x37_c00492{left:410.444100px;}
.x14_c00492{left:431.703150px;}
.xe_c00492{left:461.202750px;}
.xf_c00492{left:465.702750px;}
.x10_c00492{left:519.701700px;}
.x11_c00492{left:524.201700px;}
.x1a_c00492{left:538.147650px;}
.x5_c00492{left:550.270800px;}
.x38_c00492{left:551.685450px;}
.x1b_c00492{left:563.122200px;}
.x6_c00492{left:569.278500px;}
.x1c_c00492{left:573.586650px;}
.x12_c00492{left:584.212350px;}
.x3f_c00492{left:585.401400px;}
.x13_c00492{left:588.712350px;}
.x1d_c00492{left:598.561200px;}
.x2f_c00492{left:608.324700px;}
.x40_c00492{left:610.383600px;}
.x3c_c00492{left:611.633400px;}
.x27_c00492{left:621.215400px;}
.x29_c00492{left:628.823700px;}
.x7_c00492{left:632.807700px;}
.x2a_c00492{left:634.322400px;}
.x39_c00492{left:640.200750px;}
.x3d_c00492{left:650.797800px;}
.x8_c00492{left:651.815550px;}
.x28_c00492{left:658.684500px;}
.x9_c00492{left:668.082300px;}
.x1e_c00492{left:674.931900px;}
.x1f_c00492{left:703.251300px;}
.x2b_c00492{left:706.034850px;}
.x20_c00492{left:713.715900px;}
.x2c_c00492{left:715.702950px;}
.xa_c00492{left:745.386150px;}
.x41_c00492{left:759.914612px;}
@media print{
.v2_c00492{vertical-align:-21.760000pt;}
.v0_c00492{vertical-align:0.000000pt;}
.v1_c00492{vertical-align:21.760000pt;}
.v3_c00492{vertical-align:26.880000pt;}
.ls13_c00492{letter-spacing:0.000000pt;}
.ls14_c00492{letter-spacing:0.032000pt;}
.ls8_c00492{letter-spacing:0.209920pt;}
.ls6_c00492{letter-spacing:0.215168pt;}
.ls17_c00492{letter-spacing:0.236160pt;}
.ls20_c00492{letter-spacing:0.243428pt;}
.lsa_c00492{letter-spacing:0.262400pt;}
.lse_c00492{letter-spacing:0.288640pt;}
.ls16_c00492{letter-spacing:0.292114pt;}
.ls4_c00492{letter-spacing:0.299136pt;}
.ls1d_c00492{letter-spacing:0.309632pt;}
.ls3_c00492{letter-spacing:0.314880pt;}
.ls26_c00492{letter-spacing:0.425088pt;}
.lsc_c00492{letter-spacing:0.467072pt;}
.ls9_c00492{letter-spacing:0.472320pt;}
.ls2_c00492{letter-spacing:0.486856pt;}
.lsb_c00492{letter-spacing:0.498560pt;}
.ls15_c00492{letter-spacing:0.519552pt;}
.ls25_c00492{letter-spacing:0.535542pt;}
.ls1_c00492{letter-spacing:0.584228pt;}
.ls22_c00492{letter-spacing:0.614016pt;}
.ls1f_c00492{letter-spacing:0.619264pt;}
.ls0_c00492{letter-spacing:0.632913pt;}
.ls2c_c00492{letter-spacing:0.661248pt;}
.ls2a_c00492{letter-spacing:0.708480pt;}
.ls1e_c00492{letter-spacing:0.730284pt;}
.ls2b_c00492{letter-spacing:3.127808pt;}
.ls23_c00492{letter-spacing:3.673600pt;}
.ls27_c00492{letter-spacing:3.684096pt;}
.ls7_c00492{letter-spacing:4.670720pt;}
.ls1c_c00492{letter-spacing:4.712704pt;}
.ls28_c00492{letter-spacing:4.827264pt;}
.ls10_c00492{letter-spacing:4.828160pt;}
.ls19_c00492{letter-spacing:4.854400pt;}
.ls21_c00492{letter-spacing:4.959360pt;}
.lsf_c00492{letter-spacing:5.311467pt;}
.ls11_c00492{letter-spacing:5.312000pt;}
.ls12_c00492{letter-spacing:5.475484pt;}
.ls5_c00492{letter-spacing:6.035200pt;}
.lsd_c00492{letter-spacing:7.399680pt;}
.ls18_c00492{letter-spacing:7.793280pt;}
.ls24_c00492{letter-spacing:9.441152pt;}
.ls1b_c00492{letter-spacing:10.475008pt;}
.ls1a_c00492{letter-spacing:10.480256pt;}
.ls29_c00492{letter-spacing:22.094080pt;}
.ws4_c00492{word-spacing:-19.443840pt;}
.ws3_c00492{word-spacing:-19.302144pt;}
.ws8_c00492{word-spacing:-18.705024pt;}
.ws9_c00492{word-spacing:-17.792000pt;}
.ws5_c00492{word-spacing:-15.768735pt;}
.ws0_c00492{word-spacing:-15.671364pt;}
.ws2_c00492{word-spacing:-15.622678pt;}
.ws6_c00492{word-spacing:-15.573992pt;}
.ws7_c00492{word-spacing:-15.061760pt;}
.wsa_c00492{word-spacing:-10.319360pt;}
.ws1_c00492{word-spacing:-8.896000pt;}
.wsb_c00492{word-spacing:0.000000pt;}
._12_c00492{margin-left:-22.461440pt;}
._11_c00492{margin-left:-21.569280pt;}
._13_c00492{margin-left:-20.677120pt;}
._f_c00492{margin-left:-9.813760pt;}
._e_c00492{margin-left:-8.764160pt;}
._6_c00492{margin-left:-7.512427pt;}
._8_c00492{margin-left:-6.108672pt;}
._9_c00492{margin-left:-5.069568pt;}
._b_c00492{margin-left:-3.956992pt;}
._d_c00492{margin-left:-2.445568pt;}
._5_c00492{margin-left:-1.027808pt;}
._4_c00492{width:0.997120pt;}
._c_c00492{width:2.580416pt;}
._a_c00492{width:3.778560pt;}
._7_c00492{width:5.248000pt;}
._3_c00492{width:7.032320pt;}
._2_c00492{width:8.640000pt;}
._0_c00492{width:13.440000pt;}
._1_c00492{width:18.752000pt;}
._10_c00492{width:24.960000pt;}
.fs4_c00492{font-size:32.000000pt;}
.fs6_c00492{font-size:37.120000pt;}
.fs5_c00492{font-size:49.920000pt;}
.fs2_c00492{font-size:52.480000pt;}
.fs7_c00492{font-size:53.333333pt;}
.fs3_c00492{font-size:54.095146pt;}
.fs0_c00492{font-size:64.000000pt;}
.fs1_c00492{font-size:65.969690pt;}
.y0_c00492{bottom:0.000000pt;}
.y37_c00492{bottom:2.773333pt;}
.y36_c00492{bottom:30.884071pt;}
.y1_c00492{bottom:48.000000pt;}
.y35_c00492{bottom:49.316480pt;}
.y34_c00492{bottom:64.680000pt;}
.y33_c00492{bottom:64.681280pt;}
.y32_c00492{bottom:80.359680pt;}
.y31_c00492{bottom:95.723200pt;}
.y30_c00492{bottom:111.401600pt;}
.y2f_c00492{bottom:132.520000pt;}
.y2e_c00492{bottom:156.200000pt;}
.y2d_c00492{bottom:249.960000pt;}
.y2c_c00492{bottom:268.520000pt;}
.y2b_c00492{bottom:287.400000pt;}
.y2a_c00492{bottom:305.960000pt;}
.y29_c00492{bottom:337.960000pt;}
.y28_c00492{bottom:369.960000pt;}
.y27_c00492{bottom:394.920960pt;}
.y26_c00492{bottom:410.599360pt;}
.y25_c00492{bottom:426.277760pt;}
.y24_c00492{bottom:441.641280pt;}
.y23_c00492{bottom:457.319680pt;}
.y22_c00492{bottom:472.683200pt;}
.y21_c00492{bottom:488.361600pt;}
.y20_c00492{bottom:504.040000pt;}
.y1f_c00492{bottom:526.120000pt;}
.y1e_c00492{bottom:526.121600pt;}
.y1b_c00492{bottom:541.796480pt;}
.y1c_c00492{bottom:541.800000pt;}
.y1d_c00492{bottom:547.240000pt;}
.y1a_c00492{bottom:557.160000pt;}
.y19_c00492{bottom:557.161600pt;}
.y17_c00492{bottom:572.838080pt;}
.y18_c00492{bottom:572.840000pt;}
.y16_c00492{bottom:588.516480pt;}
.y14_c00492{bottom:603.879680pt;}
.y15_c00492{bottom:603.880000pt;}
.y13_c00492{bottom:626.275520pt;}
.y12_c00492{bottom:650.600000pt;}
.y11_c00492{bottom:650.605760pt;}
.y10_c00492{bottom:666.284160pt;}
.yf_c00492{bottom:688.680000pt;}
.ye_c00492{bottom:688.686080pt;}
.yd_c00492{bottom:706.280000pt;}
.yc_c00492{bottom:728.680000pt;}
.yb_c00492{bottom:754.600000pt;}
.ya_c00492{bottom:780.200000pt;}
.y9_c00492{bottom:811.880000pt;}
.y8_c00492{bottom:843.880000pt;}
.y7_c00492{bottom:862.760000pt;}
.y6_c00492{bottom:881.960000pt;}
.y5_c00492{bottom:900.520000pt;}
.y4_c00492{bottom:932.520000pt;}
.y3_c00492{bottom:964.520000pt;}
.y2_c00492{bottom:1011.880000pt;}
.hd_c00492{height:17.116093pt;}
.hb_c00492{height:28.992000pt;}
.h9_c00492{height:34.978125pt;}
.h8_c00492{height:41.761453pt;}
.h6_c00492{height:42.656250pt;}
.h7_c00492{height:47.546880pt;}
.he_c00492{height:50.346667pt;}
.ha_c00492{height:50.752000pt;}
.h4_c00492{height:50.928601pt;}
.h3_c00492{height:57.984000pt;}
.h5_c00492{height:59.768539pt;}
.hc_c00492{height:60.510720pt;}
.h2_c00492{height:1067.880000pt;}
.h0_c00492{height:1122.520000pt;}
.h1_c00492{height:1122.666667pt;}
.w3_c00492{width:22.240000pt;}
.w2_c00492{width:767.960000pt;}
.w0_c00492{width:793.720000pt;}
.w1_c00492{width:794.000000pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:12.880000pt;}
.x2_c00492{left:100.480133pt;}
.x2d_c00492{left:111.599600pt;}
.x3e_c00492{left:114.546533pt;}
.x2e_c00492{left:116.165733pt;}
.x15_c00492{left:134.643867pt;}
.x21_c00492{left:140.504933pt;}
.x3_c00492{left:143.583333pt;}
.x16_c00492{left:144.679333pt;}
.x17_c00492{left:153.235067pt;}
.x32_c00492{left:171.800800pt;}
.x25_c00492{left:175.624400pt;}
.x18_c00492{left:185.834267pt;}
.x3a_c00492{left:189.436133pt;}
.x26_c00492{left:194.103867pt;}
.x3b_c00492{left:206.462533pt;}
.x4_c00492{left:210.654267pt;}
.x30_c00492{left:223.074267pt;}
.x31_c00492{left:227.011067pt;}
.x22_c00492{left:253.861333pt;}
.x33_c00492{left:260.182933pt;}
.x34_c00492{left:282.382533pt;}
.xb_c00492{left:289.480133pt;}
.x35_c00492{left:292.817067pt;}
.x19_c00492{left:320.456000pt;}
.x23_c00492{left:325.738667pt;}
.x24_c00492{left:329.444933pt;}
.x36_c00492{left:342.639600pt;}
.xc_c00492{left:343.703067pt;}
.xd_c00492{left:347.703067pt;}
.x37_c00492{left:364.839200pt;}
.x14_c00492{left:383.736133pt;}
.xe_c00492{left:409.958000pt;}
.xf_c00492{left:413.958000pt;}
.x10_c00492{left:461.957067pt;}
.x11_c00492{left:465.957067pt;}
.x1a_c00492{left:478.353467pt;}
.x5_c00492{left:489.129600pt;}
.x38_c00492{left:490.387067pt;}
.x1b_c00492{left:500.553067pt;}
.x6_c00492{left:506.025333pt;}
.x1c_c00492{left:509.854800pt;}
.x12_c00492{left:519.299867pt;}
.x3f_c00492{left:520.356800pt;}
.x13_c00492{left:523.299867pt;}
.x1d_c00492{left:532.054400pt;}
.x2f_c00492{left:540.733067pt;}
.x40_c00492{left:542.563200pt;}
.x3c_c00492{left:543.674133pt;}
.x27_c00492{left:552.191467pt;}
.x29_c00492{left:558.954400pt;}
.x7_c00492{left:562.495733pt;}
.x2a_c00492{left:563.842133pt;}
.x39_c00492{left:569.067333pt;}
.x3d_c00492{left:578.486933pt;}
.x8_c00492{left:579.391600pt;}
.x28_c00492{left:585.497333pt;}
.x9_c00492{left:593.850933pt;}
.x1e_c00492{left:599.939467pt;}
.x1f_c00492{left:625.112267pt;}
.x2b_c00492{left:627.586533pt;}
.x20_c00492{left:634.414133pt;}
.x2c_c00492{left:636.180400pt;}
.xa_c00492{left:662.565467pt;}
.x41_c00492{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d42c23e9287dacdac578560.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.134000;font-style:normal;font-weight:normal;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_10a13ecc5f0180f14409be67.woff2')format("woff");}.ff2_c00493{font-family:ff2_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:ff3_c00493;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00493;src:url('chunks/assets/font_8f6a7a3f036c121a1cf43555.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00493{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v2_c00493{vertical-align:-30.240000px;}
.v3_c00493{vertical-align:-24.480000px;}
.v0_c00493{vertical-align:0.000000px;}
.v1_c00493{vertical-align:30.240000px;}
.ls1c_c00493{letter-spacing:-0.179568px;}
.ls1a_c00493{letter-spacing:0.000000px;}
.ls1b_c00493{letter-spacing:0.036000px;}
.ls5_c00493{letter-spacing:0.053640px;}
.ls4_c00493{letter-spacing:0.078600px;}
.ls30_c00493{letter-spacing:0.144000px;}
.ls29_c00493{letter-spacing:0.156816px;}
.ls26_c00493{letter-spacing:0.242352px;}
.ls10_c00493{letter-spacing:0.265680px;}
.ls2a_c00493{letter-spacing:0.294624px;}
.lsa_c00493{letter-spacing:0.295200px;}
.ls28_c00493{letter-spacing:0.318384px;}
.ls11_c00493{letter-spacing:0.318480px;}
.ls18_c00493{letter-spacing:0.318816px;}
.ls27_c00493{letter-spacing:0.346896px;}
.lsc_c00493{letter-spacing:0.354240px;}
.ls2c_c00493{letter-spacing:0.371952px;}
.ls17_c00493{letter-spacing:0.383399px;}
.ls25_c00493{letter-spacing:0.407376px;}
.ls22_c00493{letter-spacing:0.425088px;}
.ls3_c00493{letter-spacing:0.435000px;}
.ls23_c00493{letter-spacing:0.438171px;}
.ls1f_c00493{letter-spacing:0.478224px;}
.lse_c00493{letter-spacing:0.486856px;}
.ls35_c00493{letter-spacing:0.492942px;}
.ls6_c00493{letter-spacing:0.524400px;}
.ls15_c00493{letter-spacing:0.525456px;}
.lsb_c00493{letter-spacing:0.531360px;}
.ls12_c00493{letter-spacing:0.547713px;}
.lsf_c00493{letter-spacing:0.585960px;}
.ls33_c00493{letter-spacing:0.602485px;}
.ls1_c00493{letter-spacing:0.648240px;}
.ls24_c00493{letter-spacing:0.690768px;}
.ls9_c00493{letter-spacing:0.708480px;}
.ls13_c00493{letter-spacing:0.712027px;}
.ls38_c00493{letter-spacing:0.743904px;}
.ls2f_c00493{letter-spacing:0.797040px;}
.ls37_c00493{letter-spacing:0.821570px;}
.ls16_c00493{letter-spacing:2.343888px;}
.ls2b_c00493{letter-spacing:2.999232px;}
.ls8_c00493{letter-spacing:3.424320px;}
.ls2d_c00493{letter-spacing:4.699584px;}
.ls2e_c00493{letter-spacing:5.248656px;}
.ls1d_c00493{letter-spacing:5.335200px;}
.ls14_c00493{letter-spacing:5.431680px;}
.lsd_c00493{letter-spacing:5.461200px;}
.ls1e_c00493{letter-spacing:5.567472px;}
.ls7_c00493{letter-spacing:5.940600px;}
.ls2_c00493{letter-spacing:5.976000px;}
.ls19_c00493{letter-spacing:6.159920px;}
.ls32_c00493{letter-spacing:6.488496px;}
.ls31_c00493{letter-spacing:6.494400px;}
.ls0_c00493{letter-spacing:11.664000px;}
.ls20_c00493{letter-spacing:12.792150px;}
.ls36_c00493{letter-spacing:13.272192px;}
.ls34_c00493{letter-spacing:18.538560px;}
.ls21_c00493{letter-spacing:26.384976px;}
.sc__c00493{text-shadow:none;}
.sc1_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00493{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc1_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00493{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00493{word-spacing:-21.980592px;}
.ws6_c00493{word-spacing:-21.874320px;}
.wsd_c00493{word-spacing:-21.661776px;}
.ws2_c00493{word-spacing:-20.947680px;}
.ws3_c00493{word-spacing:-20.016000px;}
.wsc_c00493{word-spacing:-17.630284px;}
.wsf_c00493{word-spacing:-17.520742px;}
.ws7_c00493{word-spacing:-17.465970px;}
.ws10_c00493{word-spacing:-17.411199px;}
.ws11_c00493{word-spacing:-17.356428px;}
.ws12_c00493{word-spacing:-17.301656px;}
.ws9_c00493{word-spacing:-16.944480px;}
.ws13_c00493{word-spacing:-16.731936px;}
.wsa_c00493{word-spacing:-13.528944px;}
.wsb_c00493{word-spacing:-13.505184px;}
.ws8_c00493{word-spacing:-13.452912px;}
.ws0_c00493{word-spacing:-11.609280px;}
.ws1_c00493{word-spacing:-11.429712px;}
.wse_c00493{word-spacing:-10.152000px;}
.ws4_c00493{word-spacing:-10.008000px;}
.ws14_c00493{word-spacing:0.000000px;}
._f_c00493{margin-left:-25.977600px;}
._10_c00493{margin-left:-24.914880px;}
._17_c00493{margin-left:-18.951840px;}
._16_c00493{margin-left:-17.830080px;}
._e_c00493{margin-left:-13.145120px;}
._d_c00493{margin-left:-12.110551px;}
._14_c00493{margin-left:-6.199200px;}
._13_c00493{margin-left:-4.841280px;}
._12_c00493{margin-left:-3.483360px;}
._11_c00493{margin-left:-2.420640px;}
._c_c00493{margin-left:-1.115856px;}
._6_c00493{width:1.152000px;}
._b_c00493{width:2.715840px;}
._a_c00493{width:4.320000px;}
._5_c00493{width:5.760000px;}
._9_c00493{width:7.848000px;}
._7_c00493{width:9.576000px;}
._0_c00493{width:11.592000px;}
._2_c00493{width:13.320000px;}
._3_c00493{width:17.208000px;}
._15_c00493{width:18.656640px;}
._18_c00493{width:20.486880px;}
._8_c00493{width:21.528000px;}
._4_c00493{width:24.408000px;}
._1_c00493{width:33.552000px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs4_c00493{font-size:36.000000px;}
.fs2_c00493{font-size:41.760000px;}
.fs7_c00493{font-size:47.520000px;}
.fs3_c00493{font-size:56.160000px;}
.fs5_c00493{font-size:59.040000px;}
.fs8_c00493{font-size:60.000000px;}
.fs6_c00493{font-size:60.857039px;}
.fs0_c00493{font-size:72.000000px;}
.fs1_c00493{font-size:74.215901px;}
.y0_c00493{bottom:0.000000px;}
.y3d_c00493{bottom:3.120000px;}
.y3c_c00493{bottom:34.744580px;}
.y1_c00493{bottom:54.000000px;}
.y3b_c00493{bottom:61.605000px;}
.y3a_c00493{bottom:78.885000px;}
.y38_c00493{bottom:90.401040px;}
.y39_c00493{bottom:90.405000px;}
.y37_c00493{bottom:107.685000px;}
.y36_c00493{bottom:113.805000px;}
.y35_c00493{bottom:125.322840px;}
.y34_c00493{bottom:142.961040px;}
.y33_c00493{bottom:160.245000px;}
.y32_c00493{bottom:160.248600px;}
.y31_c00493{bottom:177.886800px;}
.y2f_c00493{bottom:195.521040px;}
.y30_c00493{bottom:195.525000px;}
.y2e_c00493{bottom:212.805000px;}
.y2d_c00493{bottom:212.806800px;}
.y2c_c00493{bottom:230.445000px;}
.y2b_c00493{bottom:236.565000px;}
.y2a_c00493{bottom:247.725000px;}
.y29_c00493{bottom:253.845000px;}
.y28_c00493{bottom:271.485000px;}
.y27_c00493{bottom:283.002840px;}
.y26_c00493{bottom:300.286800px;}
.y25_c00493{bottom:317.925000px;}
.y24_c00493{bottom:317.926800px;}
.y23_c00493{bottom:335.565000px;}
.y22_c00493{bottom:341.685000px;}
.y21_c00493{bottom:352.845000px;}
.y1f_c00493{bottom:370.481040px;}
.y20_c00493{bottom:370.485000px;}
.y1e_c00493{bottom:387.765000px;}
.y1d_c00493{bottom:405.405000px;}
.y1c_c00493{bottom:405.406800px;}
.y1b_c00493{bottom:423.045000px;}
.y1a_c00493{bottom:429.165000px;}
.y19_c00493{bottom:455.805000px;}
.y18_c00493{bottom:573.165000px;}
.y17_c00493{bottom:609.165000px;}
.y16_c00493{bottom:630.405000px;}
.y15_c00493{bottom:666.405000px;}
.y14_c00493{bottom:702.405000px;}
.y13_c00493{bottom:738.405000px;}
.y12_c00493{bottom:759.285000px;}
.y11_c00493{bottom:780.165000px;}
.y10_c00493{bottom:801.405000px;}
.ye_c00493{bottom:837.405000px;}
.yf_c00493{bottom:844.965000px;}
.yd_c00493{bottom:858.285000px;}
.yc_c00493{bottom:881.325000px;}
.yb_c00493{bottom:901.845000px;}
.ya_c00493{bottom:923.085000px;}
.y9_c00493{bottom:943.965000px;}
.y8_c00493{bottom:964.845000px;}
.y7_c00493{bottom:986.085000px;}
.y6_c00493{bottom:1022.085000px;}
.y5_c00493{bottom:1042.965000px;}
.y4_c00493{bottom:1063.845000px;}
.y3_c00493{bottom:1085.085000px;}
.y2_c00493{bottom:1138.365000px;}
.ha_c00493{height:19.255605px;}
.h7_c00493{height:32.616000px;}
.h6_c00493{height:37.834560px;}
.h8_c00493{height:46.981634px;}
.h9_c00493{height:53.490240px;}
.hb_c00493{height:56.640000px;}
.h4_c00493{height:57.294676px;}
.h3_c00493{height:65.232000px;}
.h5_c00493{height:68.074560px;}
.h2_c00493{height:1201.365000px;}
.h0_c00493{height:1262.835000px;}
.h1_c00493{height:1263.000000px;}
.w3_c00493{width:25.020000px;}
.w2_c00493{width:863.955000px;}
.w0_c00493{width:892.935000px;}
.w1_c00493{width:893.250000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:14.490000px;}
.x2_c00493{left:113.040150px;}
.x35_c00493{left:122.213700px;}
.x37_c00493{left:128.774400px;}
.x5_c00493{left:136.953300px;}
.x36_c00493{left:147.188250px;}
.x4b_c00493{left:148.889250px;}
.x2b_c00493{left:154.405950px;}
.x38_c00493{left:159.475350px;}
.x3_c00493{left:161.531250px;}
.x25_c00493{left:164.033250px;}
.x9_c00493{left:170.063250px;}
.x26_c00493{left:171.624750px;}
.x1c_c00493{left:185.056950px;}
.x27_c00493{left:190.543200px;}
.x2c_c00493{left:198.564750px;}
.x6_c00493{left:223.946100px;}
.x4_c00493{left:236.986050px;}
.x1d_c00493{left:238.048050px;}
.xd_c00493{left:242.279700px;}
.x1f_c00493{left:250.195350px;}
.x4c_c00493{left:261.384900px;}
.x39_c00493{left:270.712950px;}
.x3f_c00493{left:274.222050px;}
.x4d_c00493{left:290.529000px;}
.x3a_c00493{left:295.687500px;}
.x19_c00493{left:298.390500px;}
.x20_c00493{left:302.214450px;}
.xa_c00493{left:316.945650px;}
.x2d_c00493{left:320.375250px;}
.x1e_c00493{left:322.920000px;}
.x13_c00493{left:329.474400px;}
.x1a_c00493{left:349.814250px;}
.xe_c00493{left:367.541400px;}
.x2e_c00493{left:374.538600px;}
.x31_c00493{left:375.824400px;}
.x40_c00493{left:383.136900px;}
.xf_c00493{left:387.657000px;}
.xb_c00493{left:398.186250px;}
.x32_c00493{left:400.798800px;}
.x14_c00493{left:415.477350px;}
.x15_c00493{left:428.334900px;}
.x10_c00493{left:431.666400px;}
.x41_c00493{left:440.644800px;}
.x49_c00493{left:451.343250px;}
.x3b_c00493{left:456.000750px;}
.x42_c00493{left:457.522050px;}
.x33_c00493{left:470.812500px;}
.xc_c00493{left:476.242650px;}
.x3c_c00493{left:480.975150px;}
.x1b_c00493{left:484.104900px;}
.x16_c00493{left:485.202000px;}
.x17_c00493{left:494.202000px;}
.x34_c00493{left:495.786900px;}
.x43_c00493{left:498.366150px;}
.x28_c00493{left:523.413600px;}
.x46_c00493{left:543.232500px;}
.x23_c00493{left:546.190800px;}
.x7_c00493{left:547.712100px;}
.x47_c00493{left:555.648900px;}
.x18_c00493{left:563.926800px;}
.x44_c00493{left:572.460150px;}
.x8_c00493{left:591.721500px;}
.x45_c00493{left:594.119400px;}
.x29_c00493{left:595.906800px;}
.x48_c00493{left:600.539850px;}
.x2f_c00493{left:609.314100px;}
.x24_c00493{left:611.187750px;}
.x11_c00493{left:624.185700px;}
.x3d_c00493{left:629.617350px;}
.x30_c00493{left:634.288650px;}
.x4a_c00493{left:696.374250px;}
.x12_c00493{left:704.176350px;}
.x3e_c00493{left:707.135400px;}
.x21_c00493{left:712.410600px;}
.x2a_c00493{left:734.565750px;}
.x22_c00493{left:750.390000px;}
.x4e_c00493{left:759.914612px;}
@media print{
.v2_c00493{vertical-align:-26.880000pt;}
.v3_c00493{vertical-align:-21.760000pt;}
.v0_c00493{vertical-align:0.000000pt;}
.v1_c00493{vertical-align:26.880000pt;}
.ls1c_c00493{letter-spacing:-0.159616pt;}
.ls1a_c00493{letter-spacing:0.000000pt;}
.ls1b_c00493{letter-spacing:0.032000pt;}
.ls5_c00493{letter-spacing:0.047680pt;}
.ls4_c00493{letter-spacing:0.069867pt;}
.ls30_c00493{letter-spacing:0.128000pt;}
.ls29_c00493{letter-spacing:0.139392pt;}
.ls26_c00493{letter-spacing:0.215424pt;}
.ls10_c00493{letter-spacing:0.236160pt;}
.ls2a_c00493{letter-spacing:0.261888pt;}
.lsa_c00493{letter-spacing:0.262400pt;}
.ls28_c00493{letter-spacing:0.283008pt;}
.ls11_c00493{letter-spacing:0.283093pt;}
.ls18_c00493{letter-spacing:0.283392pt;}
.ls27_c00493{letter-spacing:0.308352pt;}
.lsc_c00493{letter-spacing:0.314880pt;}
.ls2c_c00493{letter-spacing:0.330624pt;}
.ls17_c00493{letter-spacing:0.340799pt;}
.ls25_c00493{letter-spacing:0.362112pt;}
.ls22_c00493{letter-spacing:0.377856pt;}
.ls3_c00493{letter-spacing:0.386667pt;}
.ls23_c00493{letter-spacing:0.389485pt;}
.ls1f_c00493{letter-spacing:0.425088pt;}
.lse_c00493{letter-spacing:0.432761pt;}
.ls35_c00493{letter-spacing:0.438171pt;}
.ls6_c00493{letter-spacing:0.466133pt;}
.ls15_c00493{letter-spacing:0.467072pt;}
.lsb_c00493{letter-spacing:0.472320pt;}
.ls12_c00493{letter-spacing:0.486856pt;}
.lsf_c00493{letter-spacing:0.520853pt;}
.ls33_c00493{letter-spacing:0.535542pt;}
.ls1_c00493{letter-spacing:0.576213pt;}
.ls24_c00493{letter-spacing:0.614016pt;}
.ls9_c00493{letter-spacing:0.629760pt;}
.ls13_c00493{letter-spacing:0.632913pt;}
.ls38_c00493{letter-spacing:0.661248pt;}
.ls2f_c00493{letter-spacing:0.708480pt;}
.ls37_c00493{letter-spacing:0.730284pt;}
.ls16_c00493{letter-spacing:2.083456pt;}
.ls2b_c00493{letter-spacing:2.665984pt;}
.ls8_c00493{letter-spacing:3.043840pt;}
.ls2d_c00493{letter-spacing:4.177408pt;}
.ls2e_c00493{letter-spacing:4.665472pt;}
.ls1d_c00493{letter-spacing:4.742400pt;}
.ls14_c00493{letter-spacing:4.828160pt;}
.lsd_c00493{letter-spacing:4.854400pt;}
.ls1e_c00493{letter-spacing:4.948864pt;}
.ls7_c00493{letter-spacing:5.280533pt;}
.ls2_c00493{letter-spacing:5.312000pt;}
.ls19_c00493{letter-spacing:5.475484pt;}
.ls32_c00493{letter-spacing:5.767552pt;}
.ls31_c00493{letter-spacing:5.772800pt;}
.ls0_c00493{letter-spacing:10.368000pt;}
.ls20_c00493{letter-spacing:11.370800pt;}
.ls36_c00493{letter-spacing:11.797504pt;}
.ls34_c00493{letter-spacing:16.478720pt;}
.ls21_c00493{letter-spacing:23.453312pt;}
.ws5_c00493{word-spacing:-19.538304pt;}
.ws6_c00493{word-spacing:-19.443840pt;}
.wsd_c00493{word-spacing:-19.254912pt;}
.ws2_c00493{word-spacing:-18.620160pt;}
.ws3_c00493{word-spacing:-17.792000pt;}
.wsc_c00493{word-spacing:-15.671364pt;}
.wsf_c00493{word-spacing:-15.573992pt;}
.ws7_c00493{word-spacing:-15.525307pt;}
.ws10_c00493{word-spacing:-15.476621pt;}
.ws11_c00493{word-spacing:-15.427936pt;}
.ws12_c00493{word-spacing:-15.379250pt;}
.ws9_c00493{word-spacing:-15.061760pt;}
.ws13_c00493{word-spacing:-14.872832pt;}
.wsa_c00493{word-spacing:-12.025728pt;}
.wsb_c00493{word-spacing:-12.004608pt;}
.ws8_c00493{word-spacing:-11.958144pt;}
.ws0_c00493{word-spacing:-10.319360pt;}
.ws1_c00493{word-spacing:-10.159744pt;}
.wse_c00493{word-spacing:-9.024000pt;}
.ws4_c00493{word-spacing:-8.896000pt;}
.ws14_c00493{word-spacing:0.000000pt;}
._f_c00493{margin-left:-23.091200pt;}
._10_c00493{margin-left:-22.146560pt;}
._17_c00493{margin-left:-16.846080pt;}
._16_c00493{margin-left:-15.848960pt;}
._e_c00493{margin-left:-11.684551pt;}
._d_c00493{margin-left:-10.764934pt;}
._14_c00493{margin-left:-5.510400pt;}
._13_c00493{margin-left:-4.303360pt;}
._12_c00493{margin-left:-3.096320pt;}
._11_c00493{margin-left:-2.151680pt;}
._c_c00493{margin-left:-0.991872pt;}
._6_c00493{width:1.024000pt;}
._b_c00493{width:2.414080pt;}
._a_c00493{width:3.840000pt;}
._5_c00493{width:5.120000pt;}
._9_c00493{width:6.976000pt;}
._7_c00493{width:8.512000pt;}
._0_c00493{width:10.304000pt;}
._2_c00493{width:11.840000pt;}
._3_c00493{width:15.296000pt;}
._15_c00493{width:16.583680pt;}
._18_c00493{width:18.210560pt;}
._8_c00493{width:19.136000pt;}
._4_c00493{width:21.696000pt;}
._1_c00493{width:29.824000pt;}
.fs4_c00493{font-size:32.000000pt;}
.fs2_c00493{font-size:37.120000pt;}
.fs7_c00493{font-size:42.240000pt;}
.fs3_c00493{font-size:49.920000pt;}
.fs5_c00493{font-size:52.480000pt;}
.fs8_c00493{font-size:53.333333pt;}
.fs6_c00493{font-size:54.095146pt;}
.fs0_c00493{font-size:64.000000pt;}
.fs1_c00493{font-size:65.969690pt;}
.y0_c00493{bottom:0.000000pt;}
.y3d_c00493{bottom:2.773333pt;}
.y3c_c00493{bottom:30.884071pt;}
.y1_c00493{bottom:48.000000pt;}
.y3b_c00493{bottom:54.760000pt;}
.y3a_c00493{bottom:70.120000pt;}
.y38_c00493{bottom:80.356480pt;}
.y39_c00493{bottom:80.360000pt;}
.y37_c00493{bottom:95.720000pt;}
.y36_c00493{bottom:101.160000pt;}
.y35_c00493{bottom:111.398080pt;}
.y34_c00493{bottom:127.076480pt;}
.y33_c00493{bottom:142.440000pt;}
.y32_c00493{bottom:142.443200pt;}
.y31_c00493{bottom:158.121600pt;}
.y2f_c00493{bottom:173.796480pt;}
.y30_c00493{bottom:173.800000pt;}
.y2e_c00493{bottom:189.160000pt;}
.y2d_c00493{bottom:189.161600pt;}
.y2c_c00493{bottom:204.840000pt;}
.y2b_c00493{bottom:210.280000pt;}
.y2a_c00493{bottom:220.200000pt;}
.y29_c00493{bottom:225.640000pt;}
.y28_c00493{bottom:241.320000pt;}
.y27_c00493{bottom:251.558080pt;}
.y26_c00493{bottom:266.921600pt;}
.y25_c00493{bottom:282.600000pt;}
.y24_c00493{bottom:282.601600pt;}
.y23_c00493{bottom:298.280000pt;}
.y22_c00493{bottom:303.720000pt;}
.y21_c00493{bottom:313.640000pt;}
.y1f_c00493{bottom:329.316480pt;}
.y20_c00493{bottom:329.320000pt;}
.y1e_c00493{bottom:344.680000pt;}
.y1d_c00493{bottom:360.360000pt;}
.y1c_c00493{bottom:360.361600pt;}
.y1b_c00493{bottom:376.040000pt;}
.y1a_c00493{bottom:381.480000pt;}
.y19_c00493{bottom:405.160000pt;}
.y18_c00493{bottom:509.480000pt;}
.y17_c00493{bottom:541.480000pt;}
.y16_c00493{bottom:560.360000pt;}
.y15_c00493{bottom:592.360000pt;}
.y14_c00493{bottom:624.360000pt;}
.y13_c00493{bottom:656.360000pt;}
.y12_c00493{bottom:674.920000pt;}
.y11_c00493{bottom:693.480000pt;}
.y10_c00493{bottom:712.360000pt;}
.ye_c00493{bottom:744.360000pt;}
.yf_c00493{bottom:751.080000pt;}
.yd_c00493{bottom:762.920000pt;}
.yc_c00493{bottom:783.400000pt;}
.yb_c00493{bottom:801.640000pt;}
.ya_c00493{bottom:820.520000pt;}
.y9_c00493{bottom:839.080000pt;}
.y8_c00493{bottom:857.640000pt;}
.y7_c00493{bottom:876.520000pt;}
.y6_c00493{bottom:908.520000pt;}
.y5_c00493{bottom:927.080000pt;}
.y4_c00493{bottom:945.640000pt;}
.y3_c00493{bottom:964.520000pt;}
.y2_c00493{bottom:1011.880000pt;}
.ha_c00493{height:17.116093pt;}
.h7_c00493{height:28.992000pt;}
.h6_c00493{height:33.630720pt;}
.h8_c00493{height:41.761453pt;}
.h9_c00493{height:47.546880pt;}
.hb_c00493{height:50.346667pt;}
.h4_c00493{height:50.928601pt;}
.h3_c00493{height:57.984000pt;}
.h5_c00493{height:60.510720pt;}
.h2_c00493{height:1067.880000pt;}
.h0_c00493{height:1122.520000pt;}
.h1_c00493{height:1122.666667pt;}
.w3_c00493{width:22.240000pt;}
.w2_c00493{width:767.960000pt;}
.w0_c00493{width:793.720000pt;}
.w1_c00493{width:794.000000pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:12.880000pt;}
.x2_c00493{left:100.480133pt;}
.x35_c00493{left:108.634400pt;}
.x37_c00493{left:114.466133pt;}
.x5_c00493{left:121.736267pt;}
.x36_c00493{left:130.834000pt;}
.x4b_c00493{left:132.346000pt;}
.x2b_c00493{left:137.249733pt;}
.x38_c00493{left:141.755867pt;}
.x3_c00493{left:143.583333pt;}
.x25_c00493{left:145.807333pt;}
.x9_c00493{left:151.167333pt;}
.x26_c00493{left:152.555333pt;}
.x1c_c00493{left:164.495067pt;}
.x27_c00493{left:169.371733pt;}
.x2c_c00493{left:176.502000pt;}
.x6_c00493{left:199.063200pt;}
.x4_c00493{left:210.654267pt;}
.x1d_c00493{left:211.598267pt;}
.xd_c00493{left:215.359733pt;}
.x1f_c00493{left:222.395867pt;}
.x4c_c00493{left:232.342133pt;}
.x39_c00493{left:240.633733pt;}
.x3f_c00493{left:243.752933pt;}
.x4d_c00493{left:258.248000pt;}
.x3a_c00493{left:262.833333pt;}
.x19_c00493{left:265.236000pt;}
.x20_c00493{left:268.635067pt;}
.xa_c00493{left:281.729467pt;}
.x2d_c00493{left:284.778000pt;}
.x1e_c00493{left:287.040000pt;}
.x13_c00493{left:292.866133pt;}
.x1a_c00493{left:310.946000pt;}
.xe_c00493{left:326.703467pt;}
.x2e_c00493{left:332.923200pt;}
.x31_c00493{left:334.066133pt;}
.x40_c00493{left:340.566133pt;}
.xf_c00493{left:344.584000pt;}
.xb_c00493{left:353.943333pt;}
.x32_c00493{left:356.265600pt;}
.x14_c00493{left:369.313200pt;}
.x15_c00493{left:380.742133pt;}
.x10_c00493{left:383.703467pt;}
.x41_c00493{left:391.684267pt;}
.x49_c00493{left:401.194000pt;}
.x3b_c00493{left:405.334000pt;}
.x42_c00493{left:406.686267pt;}
.x33_c00493{left:418.500000pt;}
.xc_c00493{left:423.326800pt;}
.x3c_c00493{left:427.533467pt;}
.x1b_c00493{left:430.315467pt;}
.x16_c00493{left:431.290667pt;}
.x17_c00493{left:439.290667pt;}
.x34_c00493{left:440.699467pt;}
.x43_c00493{left:442.992133pt;}
.x28_c00493{left:465.256533pt;}
.x46_c00493{left:482.873333pt;}
.x23_c00493{left:485.502933pt;}
.x7_c00493{left:486.855200pt;}
.x47_c00493{left:493.910133pt;}
.x18_c00493{left:501.268267pt;}
.x44_c00493{left:508.853467pt;}
.x8_c00493{left:525.974667pt;}
.x45_c00493{left:528.106133pt;}
.x29_c00493{left:529.694933pt;}
.x48_c00493{left:533.813200pt;}
.x2f_c00493{left:541.612533pt;}
.x24_c00493{left:543.278000pt;}
.x11_c00493{left:554.831733pt;}
.x3d_c00493{left:559.659867pt;}
.x30_c00493{left:563.812133pt;}
.x4a_c00493{left:618.999333pt;}
.x12_c00493{left:625.934533pt;}
.x3e_c00493{left:628.564800pt;}
.x21_c00493{left:633.253867pt;}
.x2a_c00493{left:652.947333pt;}
.x22_c00493{left:667.013333pt;}
.x4e_c00493{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc3f2277f46d0022f4ec10f0.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;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_c00494;src:url('chunks/assets/font_e7ad14f28c729b26c10e5aac.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_b9f79e7ae35b8be914fa26c9.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00494{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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;}
.ls2_c00494{letter-spacing:0.000000px;}
.ls5_c00494{letter-spacing:0.202464px;}
.ls3_c00494{letter-spacing:0.399600px;}
.ls4_c00494{letter-spacing:4.923072px;}
.ls0_c00494{letter-spacing:5.976000px;}
.ls1_c00494{letter-spacing:6.159920px;}
.sc__c00494{text-shadow:none;}
.sc1_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00494{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc1_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00494{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00494{word-spacing:-19.734912px;}
.ws1_c00494{word-spacing:0.000000px;}
._0_c00494{margin-left:-1.118880px;}
.fc1_c00494{color:transparent;}
.fc0_c00494{color:rgb(0,0,0);}
.fs3_c00494{font-size:53.280000px;}
.fs4_c00494{font-size:60.000000px;}
.fs2_c00494{font-size:64.800000px;}
.fs0_c00494{font-size:72.000000px;}
.fs1_c00494{font-size:74.215901px;}
.y0_c00494{bottom:0.000000px;}
.y22_c00494{bottom:3.120000px;}
.y20_c00494{bottom:14.400000px;}
.y21_c00494{bottom:34.744580px;}
.y1_c00494{bottom:54.000000px;}
.y1e_c00494{bottom:148.725000px;}
.y1f_c00494{bottom:184.365000px;}
.y1d_c00494{bottom:184.725000px;}
.y1c_c00494{bottom:220.725000px;}
.y1b_c00494{bottom:256.725000px;}
.y1a_c00494{bottom:292.725000px;}
.y19_c00494{bottom:328.725000px;}
.y18_c00494{bottom:364.725000px;}
.y17_c00494{bottom:400.725000px;}
.y16_c00494{bottom:436.725000px;}
.y15_c00494{bottom:472.725000px;}
.y14_c00494{bottom:509.085000px;}
.y13_c00494{bottom:545.085000px;}
.y12_c00494{bottom:581.085000px;}
.y11_c00494{bottom:617.085000px;}
.y10_c00494{bottom:653.085000px;}
.yf_c00494{bottom:689.085000px;}
.ye_c00494{bottom:725.085000px;}
.yd_c00494{bottom:761.085000px;}
.yc_c00494{bottom:797.085000px;}
.yb_c00494{bottom:833.085000px;}
.ya_c00494{bottom:869.085000px;}
.y9_c00494{bottom:905.085000px;}
.y8_c00494{bottom:941.085000px;}
.y7_c00494{bottom:977.085000px;}
.y6_c00494{bottom:1013.085000px;}
.y5_c00494{bottom:1049.085000px;}
.y4_c00494{bottom:1085.085000px;}
.y3_c00494{bottom:1119.285000px;}
.y2_c00494{bottom:1138.365000px;}
.h8_c00494{height:19.255605px;}
.h6_c00494{height:27.000000px;}
.h7_c00494{height:41.132160px;}
.h5_c00494{height:43.189453px;}
.h3_c00494{height:55.584000px;}
.h9_c00494{height:56.640000px;}
.h4_c00494{height:57.294676px;}
.h2_c00494{height:1201.365000px;}
.h0_c00494{height:1262.835000px;}
.h1_c00494{height:1263.000000px;}
.w4_c00494{width:25.020000px;}
.w3_c00494{width:642.960000px;}
.w2_c00494{width:863.955000px;}
.w0_c00494{width:892.935000px;}
.w1_c00494{width:893.250000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:14.490000px;}
.x5_c00494{left:102.690000px;}
.x2_c00494{left:113.040150px;}
.x3_c00494{left:161.531250px;}
.x6_c00494{left:213.354900px;}
.x4_c00494{left:236.986050px;}
.x7_c00494{left:759.914612px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls2_c00494{letter-spacing:0.000000pt;}
.ls5_c00494{letter-spacing:0.179968pt;}
.ls3_c00494{letter-spacing:0.355200pt;}
.ls4_c00494{letter-spacing:4.376064pt;}
.ls0_c00494{letter-spacing:5.312000pt;}
.ls1_c00494{letter-spacing:5.475484pt;}
.ws0_c00494{word-spacing:-17.542144pt;}
.ws1_c00494{word-spacing:0.000000pt;}
._0_c00494{margin-left:-0.994560pt;}
.fs3_c00494{font-size:47.360000pt;}
.fs4_c00494{font-size:53.333333pt;}
.fs2_c00494{font-size:57.600000pt;}
.fs0_c00494{font-size:64.000000pt;}
.fs1_c00494{font-size:65.969690pt;}
.y0_c00494{bottom:0.000000pt;}
.y22_c00494{bottom:2.773333pt;}
.y20_c00494{bottom:12.800000pt;}
.y21_c00494{bottom:30.884071pt;}
.y1_c00494{bottom:48.000000pt;}
.y1e_c00494{bottom:132.200000pt;}
.y1f_c00494{bottom:163.880000pt;}
.y1d_c00494{bottom:164.200000pt;}
.y1c_c00494{bottom:196.200000pt;}
.y1b_c00494{bottom:228.200000pt;}
.y1a_c00494{bottom:260.200000pt;}
.y19_c00494{bottom:292.200000pt;}
.y18_c00494{bottom:324.200000pt;}
.y17_c00494{bottom:356.200000pt;}
.y16_c00494{bottom:388.200000pt;}
.y15_c00494{bottom:420.200000pt;}
.y14_c00494{bottom:452.520000pt;}
.y13_c00494{bottom:484.520000pt;}
.y12_c00494{bottom:516.520000pt;}
.y11_c00494{bottom:548.520000pt;}
.y10_c00494{bottom:580.520000pt;}
.yf_c00494{bottom:612.520000pt;}
.ye_c00494{bottom:644.520000pt;}
.yd_c00494{bottom:676.520000pt;}
.yc_c00494{bottom:708.520000pt;}
.yb_c00494{bottom:740.520000pt;}
.ya_c00494{bottom:772.520000pt;}
.y9_c00494{bottom:804.520000pt;}
.y8_c00494{bottom:836.520000pt;}
.y7_c00494{bottom:868.520000pt;}
.y6_c00494{bottom:900.520000pt;}
.y5_c00494{bottom:932.520000pt;}
.y4_c00494{bottom:964.520000pt;}
.y3_c00494{bottom:994.920000pt;}
.y2_c00494{bottom:1011.880000pt;}
.h8_c00494{height:17.116093pt;}
.h6_c00494{height:24.000000pt;}
.h7_c00494{height:36.561920pt;}
.h5_c00494{height:38.390625pt;}
.h3_c00494{height:49.408000pt;}
.h9_c00494{height:50.346667pt;}
.h4_c00494{height:50.928601pt;}
.h2_c00494{height:1067.880000pt;}
.h0_c00494{height:1122.520000pt;}
.h1_c00494{height:1122.666667pt;}
.w4_c00494{width:22.240000pt;}
.w3_c00494{width:571.520000pt;}
.w2_c00494{width:767.960000pt;}
.w0_c00494{width:793.720000pt;}
.w1_c00494{width:794.000000pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:12.880000pt;}
.x5_c00494{left:91.280000pt;}
.x2_c00494{left:100.480133pt;}
.x3_c00494{left:143.583333pt;}
.x6_c00494{left:189.648800pt;}
.x4_c00494{left:210.654267pt;}
.x7_c00494{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_056008d47f1f53a72f2d2c23.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;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_c00495;src:url('chunks/assets/font_f2ae53bd2c91d98df5229898.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:0.787000;font-style:normal;font-weight:normal;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_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00495;src:url('chunks/assets/font_1bf808b03afd4d8cb4e2597e.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00495{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls2_c00495{letter-spacing:0.000000px;}
.ls3_c00495{letter-spacing:0.531360px;}
.ls4_c00495{letter-spacing:0.712027px;}
.ls5_c00495{letter-spacing:0.743904px;}
.ls0_c00495{letter-spacing:5.976000px;}
.ls1_c00495{letter-spacing:6.159920px;}
.sc__c00495{text-shadow:none;}
.sc1_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00495{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc1_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00495{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00495{word-spacing:0.000000px;}
._0_c00495{margin-left:-1.239840px;}
.fc1_c00495{color:transparent;}
.fc0_c00495{color:rgb(0,0,0);}
.fs3_c00495{font-size:59.040000px;}
.fs5_c00495{font-size:60.000000px;}
.fs4_c00495{font-size:60.857039px;}
.fs2_c00495{font-size:64.800000px;}
.fs0_c00495{font-size:72.000000px;}
.fs1_c00495{font-size:74.215901px;}
.y0_c00495{bottom:0.000000px;}
.yd_c00495{bottom:3.120000px;}
.yc_c00495{bottom:34.744580px;}
.yb_c00495{bottom:39.600000px;}
.y1_c00495{bottom:54.000000px;}
.ya_c00495{bottom:130.365000px;}
.y9_c00495{bottom:905.085000px;}
.y8_c00495{bottom:941.085000px;}
.y7_c00495{bottom:977.085000px;}
.y6_c00495{bottom:1013.085000px;}
.y5_c00495{bottom:1049.085000px;}
.y4_c00495{bottom:1085.085000px;}
.y3_c00495{bottom:1119.285000px;}
.y2_c00495{bottom:1138.365000px;}
.h9_c00495{height:19.255605px;}
.h5_c00495{height:43.189453px;}
.h7_c00495{height:45.578880px;}
.h8_c00495{height:46.981634px;}
.h6_c00495{height:54.000000px;}
.h3_c00495{height:55.584000px;}
.ha_c00495{height:56.640000px;}
.h4_c00495{height:57.294676px;}
.h2_c00495{height:1201.365000px;}
.h0_c00495{height:1262.835000px;}
.h1_c00495{height:1263.000000px;}
.w4_c00495{width:25.020000px;}
.w3_c00495{width:708.840000px;}
.w2_c00495{width:863.955000px;}
.w0_c00495{width:892.935000px;}
.w1_c00495{width:893.250000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:14.490000px;}
.x5_c00495{left:97.290000px;}
.x6_c00495{left:101.656050px;}
.x2_c00495{left:113.040150px;}
.x3_c00495{left:161.531250px;}
.x4_c00495{left:236.986050px;}
.x7_c00495{left:253.405500px;}
.x8_c00495{left:282.549600px;}
.x9_c00495{left:759.914612px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls2_c00495{letter-spacing:0.000000pt;}
.ls3_c00495{letter-spacing:0.472320pt;}
.ls4_c00495{letter-spacing:0.632913pt;}
.ls5_c00495{letter-spacing:0.661248pt;}
.ls0_c00495{letter-spacing:5.312000pt;}
.ls1_c00495{letter-spacing:5.475484pt;}
.ws0_c00495{word-spacing:0.000000pt;}
._0_c00495{margin-left:-1.102080pt;}
.fs3_c00495{font-size:52.480000pt;}
.fs5_c00495{font-size:53.333333pt;}
.fs4_c00495{font-size:54.095146pt;}
.fs2_c00495{font-size:57.600000pt;}
.fs0_c00495{font-size:64.000000pt;}
.fs1_c00495{font-size:65.969690pt;}
.y0_c00495{bottom:0.000000pt;}
.yd_c00495{bottom:2.773333pt;}
.yc_c00495{bottom:30.884071pt;}
.yb_c00495{bottom:35.200000pt;}
.y1_c00495{bottom:48.000000pt;}
.ya_c00495{bottom:115.880000pt;}
.y9_c00495{bottom:804.520000pt;}
.y8_c00495{bottom:836.520000pt;}
.y7_c00495{bottom:868.520000pt;}
.y6_c00495{bottom:900.520000pt;}
.y5_c00495{bottom:932.520000pt;}
.y4_c00495{bottom:964.520000pt;}
.y3_c00495{bottom:994.920000pt;}
.y2_c00495{bottom:1011.880000pt;}
.h9_c00495{height:17.116093pt;}
.h5_c00495{height:38.390625pt;}
.h7_c00495{height:40.514560pt;}
.h8_c00495{height:41.761453pt;}
.h6_c00495{height:48.000000pt;}
.h3_c00495{height:49.408000pt;}
.ha_c00495{height:50.346667pt;}
.h4_c00495{height:50.928601pt;}
.h2_c00495{height:1067.880000pt;}
.h0_c00495{height:1122.520000pt;}
.h1_c00495{height:1122.666667pt;}
.w4_c00495{width:22.240000pt;}
.w3_c00495{width:630.080000pt;}
.w2_c00495{width:767.960000pt;}
.w0_c00495{width:793.720000pt;}
.w1_c00495{width:794.000000pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:12.880000pt;}
.x5_c00495{left:86.480000pt;}
.x6_c00495{left:90.360933pt;}
.x2_c00495{left:100.480133pt;}
.x3_c00495{left:143.583333pt;}
.x4_c00495{left:210.654267pt;}
.x7_c00495{left:225.249333pt;}
.x8_c00495{left:251.155200pt;}
.x9_c00495{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73a3c27b005b759e1b027bee.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.134000;font-style:normal;font-weight:normal;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_385044f6f774ee0b03bdc8b4.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;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:ff3_c00496;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00496;src:url('chunks/assets/font_94a62ae73f416ce76b59a0cf.woff2')format("woff");}.ff5_c00496{font-family:ff5_c00496;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00496{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00496{vertical-align:-24.480000px;}
.v0_c00496{vertical-align:0.000000px;}
.v1_c00496{vertical-align:30.240000px;}
.ls6_c00496{letter-spacing:0.000000px;}
.ls1_c00496{letter-spacing:0.056040px;}
.ls8_c00496{letter-spacing:0.265680px;}
.ls7_c00496{letter-spacing:5.430672px;}
.ls4_c00496{letter-spacing:5.976000px;}
.ls3_c00496{letter-spacing:5.980200px;}
.ls0_c00496{letter-spacing:6.021000px;}
.ls5_c00496{letter-spacing:6.159920px;}
.ls2_c00496{letter-spacing:54.864000px;}
.sc__c00496{text-shadow:none;}
.sc1_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00496{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc1_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00496{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00496{word-spacing:-21.043152px;}
.ws2_c00496{word-spacing:-20.016000px;}
.ws1_c00496{word-spacing:-11.609280px;}
.ws3_c00496{word-spacing:-10.008000px;}
.ws4_c00496{word-spacing:0.000000px;}
._7_c00496{margin-left:-1.179360px;}
._4_c00496{width:1.221600px;}
._3_c00496{width:3.528000px;}
._a_c00496{width:4.896000px;}
._9_c00496{width:5.904000px;}
._1_c00496{width:7.704000px;}
._b_c00496{width:9.000000px;}
._2_c00496{width:10.728000px;}
._0_c00496{width:12.816000px;}
._8_c00496{width:23.184000px;}
._5_c00496{width:27.216000px;}
._6_c00496{width:33.855600px;}
.fc0_c00496{color:rgb(0,0,0);}
.fs4_c00496{font-size:36.000000px;}
.fs3_c00496{font-size:41.760000px;}
.fs2_c00496{font-size:56.160000px;}
.fs5_c00496{font-size:59.040000px;}
.fs6_c00496{font-size:60.000000px;}
.fs0_c00496{font-size:72.000000px;}
.fs1_c00496{font-size:74.215901px;}
.y0_c00496{bottom:0.000000px;}
.y29_c00496{bottom:3.120000px;}
.y28_c00496{bottom:34.744580px;}
.y1_c00496{bottom:54.000000px;}
.y27_c00496{bottom:61.605000px;}
.y26_c00496{bottom:78.885000px;}
.y25_c00496{bottom:105.525000px;}
.y24_c00496{bottom:132.165000px;}
.y23_c00496{bottom:153.405000px;}
.y22_c00496{bottom:189.405000px;}
.y21_c00496{bottom:210.285000px;}
.y20_c00496{bottom:231.165000px;}
.y1f_c00496{bottom:252.405000px;}
.y1e_c00496{bottom:273.285000px;}
.y1d_c00496{bottom:309.285000px;}
.y1c_c00496{bottom:345.285000px;}
.y1b_c00496{bottom:381.285000px;}
.y1a_c00496{bottom:402.525000px;}
.y19_c00496{bottom:423.405000px;}
.y18_c00496{bottom:444.285000px;}
.y17_c00496{bottom:480.285000px;}
.y16_c00496{bottom:516.285000px;}
.y15_c00496{bottom:552.285000px;}
.y14_c00496{bottom:573.525000px;}
.y13_c00496{bottom:609.525000px;}
.y12_c00496{bottom:645.525000px;}
.y11_c00496{bottom:681.525000px;}
.y10_c00496{bottom:702.405000px;}
.yf_c00496{bottom:723.285000px;}
.ye_c00496{bottom:744.525000px;}
.yd_c00496{bottom:765.405000px;}
.yc_c00496{bottom:801.405000px;}
.yb_c00496{bottom:837.405000px;}
.ya_c00496{bottom:873.405000px;}
.y9_c00496{bottom:909.405000px;}
.y8_c00496{bottom:930.645000px;}
.y7_c00496{bottom:951.525000px;}
.y6_c00496{bottom:987.525000px;}
.y5_c00496{bottom:1008.405000px;}
.y4_c00496{bottom:1044.405000px;}
.y3_c00496{bottom:1082.925000px;}
.y2_c00496{bottom:1138.365000px;}
.h7_c00496{height:19.255605px;}
.h6_c00496{height:32.616000px;}
.h8_c00496{height:56.640000px;}
.h4_c00496{height:57.294676px;}
.h3_c00496{height:65.232000px;}
.h5_c00496{height:68.074560px;}
.h2_c00496{height:1201.365000px;}
.h0_c00496{height:1262.835000px;}
.h1_c00496{height:1263.000000px;}
.w3_c00496{width:25.020000px;}
.w2_c00496{width:863.955000px;}
.w0_c00496{width:892.935000px;}
.w1_c00496{width:893.250000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:14.490000px;}
.x2_c00496{left:113.040150px;}
.x6_c00496{left:140.039100px;}
.x3_c00496{left:161.531250px;}
.x7_c00496{left:167.037600px;}
.x4_c00496{left:236.986050px;}
.x5_c00496{left:413.967000px;}
.x8_c00496{left:759.914612px;}
@media print{
.v2_c00496{vertical-align:-21.760000pt;}
.v0_c00496{vertical-align:0.000000pt;}
.v1_c00496{vertical-align:26.880000pt;}
.ls6_c00496{letter-spacing:0.000000pt;}
.ls1_c00496{letter-spacing:0.049813pt;}
.ls8_c00496{letter-spacing:0.236160pt;}
.ls7_c00496{letter-spacing:4.827264pt;}
.ls4_c00496{letter-spacing:5.312000pt;}
.ls3_c00496{letter-spacing:5.315733pt;}
.ls0_c00496{letter-spacing:5.352000pt;}
.ls5_c00496{letter-spacing:5.475484pt;}
.ls2_c00496{letter-spacing:48.768000pt;}
.ws0_c00496{word-spacing:-18.705024pt;}
.ws2_c00496{word-spacing:-17.792000pt;}
.ws1_c00496{word-spacing:-10.319360pt;}
.ws3_c00496{word-spacing:-8.896000pt;}
.ws4_c00496{word-spacing:0.000000pt;}
._7_c00496{margin-left:-1.048320pt;}
._4_c00496{width:1.085867pt;}
._3_c00496{width:3.136000pt;}
._a_c00496{width:4.352000pt;}
._9_c00496{width:5.248000pt;}
._1_c00496{width:6.848000pt;}
._b_c00496{width:8.000000pt;}
._2_c00496{width:9.536000pt;}
._0_c00496{width:11.392000pt;}
._8_c00496{width:20.608000pt;}
._5_c00496{width:24.192000pt;}
._6_c00496{width:30.093867pt;}
.fs4_c00496{font-size:32.000000pt;}
.fs3_c00496{font-size:37.120000pt;}
.fs2_c00496{font-size:49.920000pt;}
.fs5_c00496{font-size:52.480000pt;}
.fs6_c00496{font-size:53.333333pt;}
.fs0_c00496{font-size:64.000000pt;}
.fs1_c00496{font-size:65.969690pt;}
.y0_c00496{bottom:0.000000pt;}
.y29_c00496{bottom:2.773333pt;}
.y28_c00496{bottom:30.884071pt;}
.y1_c00496{bottom:48.000000pt;}
.y27_c00496{bottom:54.760000pt;}
.y26_c00496{bottom:70.120000pt;}
.y25_c00496{bottom:93.800000pt;}
.y24_c00496{bottom:117.480000pt;}
.y23_c00496{bottom:136.360000pt;}
.y22_c00496{bottom:168.360000pt;}
.y21_c00496{bottom:186.920000pt;}
.y20_c00496{bottom:205.480000pt;}
.y1f_c00496{bottom:224.360000pt;}
.y1e_c00496{bottom:242.920000pt;}
.y1d_c00496{bottom:274.920000pt;}
.y1c_c00496{bottom:306.920000pt;}
.y1b_c00496{bottom:338.920000pt;}
.y1a_c00496{bottom:357.800000pt;}
.y19_c00496{bottom:376.360000pt;}
.y18_c00496{bottom:394.920000pt;}
.y17_c00496{bottom:426.920000pt;}
.y16_c00496{bottom:458.920000pt;}
.y15_c00496{bottom:490.920000pt;}
.y14_c00496{bottom:509.800000pt;}
.y13_c00496{bottom:541.800000pt;}
.y12_c00496{bottom:573.800000pt;}
.y11_c00496{bottom:605.800000pt;}
.y10_c00496{bottom:624.360000pt;}
.yf_c00496{bottom:642.920000pt;}
.ye_c00496{bottom:661.800000pt;}
.yd_c00496{bottom:680.360000pt;}
.yc_c00496{bottom:712.360000pt;}
.yb_c00496{bottom:744.360000pt;}
.ya_c00496{bottom:776.360000pt;}
.y9_c00496{bottom:808.360000pt;}
.y8_c00496{bottom:827.240000pt;}
.y7_c00496{bottom:845.800000pt;}
.y6_c00496{bottom:877.800000pt;}
.y5_c00496{bottom:896.360000pt;}
.y4_c00496{bottom:928.360000pt;}
.y3_c00496{bottom:962.600000pt;}
.y2_c00496{bottom:1011.880000pt;}
.h7_c00496{height:17.116093pt;}
.h6_c00496{height:28.992000pt;}
.h8_c00496{height:50.346667pt;}
.h4_c00496{height:50.928601pt;}
.h3_c00496{height:57.984000pt;}
.h5_c00496{height:60.510720pt;}
.h2_c00496{height:1067.880000pt;}
.h0_c00496{height:1122.520000pt;}
.h1_c00496{height:1122.666667pt;}
.w3_c00496{width:22.240000pt;}
.w2_c00496{width:767.960000pt;}
.w0_c00496{width:793.720000pt;}
.w1_c00496{width:794.000000pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:12.880000pt;}
.x2_c00496{left:100.480133pt;}
.x6_c00496{left:124.479200pt;}
.x3_c00496{left:143.583333pt;}
.x7_c00496{left:148.477867pt;}
.x4_c00496{left:210.654267pt;}
.x5_c00496{left:367.970667pt;}
.x8_c00496{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_811c4150f755b762f7ffc4aa.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.134000;font-style:normal;font-weight:normal;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_34c0c8348b8845109f21b55f.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;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:ff3_c00497;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_43476e81870393f8fe5f8917.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00497;src:url('chunks/assets/font_f915c2da9f7b5ee7be51654e.woff2')format("woff");}.ff5_c00497{font-family:ff5_c00497;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00497;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff6_c00497{font-family:ff6_c00497;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00497;src:url('chunks/assets/font_44b470c33e04e456a02040ad.woff2')format("woff");}.ff7_c00497{font-family:ff7_c00497;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00497;src:url('chunks/assets/font_e5c11c50fad14b2176680a32.woff2')format("woff");}.ff8_c00497{font-family:ff8_c00497;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00497{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00497{vertical-align:-24.480000px;}
.v0_c00497{vertical-align:0.000000px;}
.v1_c00497{vertical-align:30.240000px;}
.ls19_c00497{letter-spacing:0.000000px;}
.ls1a_c00497{letter-spacing:0.036000px;}
.ls10_c00497{letter-spacing:0.160440px;}
.ls11_c00497{letter-spacing:0.186240px;}
.ls3_c00497{letter-spacing:0.236160px;}
.ls17_c00497{letter-spacing:0.265680px;}
.ls2_c00497{letter-spacing:0.289296px;}
.lsc_c00497{letter-spacing:0.295200px;}
.ls23_c00497{letter-spacing:0.318816px;}
.ls7_c00497{letter-spacing:0.328628px;}
.lse_c00497{letter-spacing:0.354240px;}
.ls2b_c00497{letter-spacing:0.371952px;}
.ls24_c00497{letter-spacing:0.425088px;}
.ls15_c00497{letter-spacing:0.438171px;}
.ls1f_c00497{letter-spacing:0.478224px;}
.ls1_c00497{letter-spacing:0.478440px;}
.ls6_c00497{letter-spacing:0.501840px;}
.lsb_c00497{letter-spacing:0.525456px;}
.lsd_c00497{letter-spacing:0.531360px;}
.ls13_c00497{letter-spacing:0.543168px;}
.ls8_c00497{letter-spacing:0.554976px;}
.lsa_c00497{letter-spacing:0.560880px;}
.ls28_c00497{letter-spacing:0.584496px;}
.ls21_c00497{letter-spacing:0.602485px;}
.ls9_c00497{letter-spacing:0.657256px;}
.ls4_c00497{letter-spacing:0.708480px;}
.ls5_c00497{letter-spacing:0.712027px;}
.ls1d_c00497{letter-spacing:0.743904px;}
.ls25_c00497{letter-spacing:0.797040px;}
.ls22_c00497{letter-spacing:0.885600px;}
.ls2d_c00497{letter-spacing:1.239840px;}
.ls29_c00497{letter-spacing:1.570464px;}
.ls20_c00497{letter-spacing:1.853856px;}
.ls1e_c00497{letter-spacing:1.859760px;}
.ls2a_c00497{letter-spacing:3.306240px;}
.ls27_c00497{letter-spacing:3.436128px;}
.ls2c_c00497{letter-spacing:5.112864px;}
.ls12_c00497{letter-spacing:5.384448px;}
.ls1c_c00497{letter-spacing:5.402160px;}
.ls26_c00497{letter-spacing:5.430672px;}
.ls14_c00497{letter-spacing:5.431680px;}
.ls1b_c00497{letter-spacing:5.461200px;}
.lsf_c00497{letter-spacing:5.975400px;}
.ls0_c00497{letter-spacing:5.976000px;}
.ls18_c00497{letter-spacing:6.159920px;}
.ls16_c00497{letter-spacing:8.442720px;}
.sc__c00497{text-shadow:none;}
.sc1_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00497{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc1_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00497{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00497{word-spacing:-25.992000px;}
.ws1_c00497{word-spacing:-21.874320px;}
.ws9_c00497{word-spacing:-21.043152px;}
.ws4_c00497{word-spacing:-17.630284px;}
.ws6_c00497{word-spacing:-17.575513px;}
.ws7_c00497{word-spacing:-17.520742px;}
.wsb_c00497{word-spacing:-17.356428px;}
.ws5_c00497{word-spacing:-17.246885px;}
.ws3_c00497{word-spacing:-17.157024px;}
.ws2_c00497{word-spacing:-16.944480px;}
.ws8_c00497{word-spacing:-16.731936px;}
.wsc_c00497{word-spacing:-16.678800px;}
.wsa_c00497{word-spacing:-10.008000px;}
.wsd_c00497{word-spacing:0.000000px;}
._13_c00497{margin-left:-5.608800px;}
._12_c00497{margin-left:-4.546080px;}
._11_c00497{margin-left:-3.459744px;}
._9_c00497{margin-left:-2.326176px;}
._7_c00497{margin-left:-1.015488px;}
._0_c00497{width:1.008000px;}
._8_c00497{width:2.057760px;}
._4_c00497{width:3.744000px;}
._d_c00497{width:5.337216px;}
._e_c00497{width:6.397632px;}
._5_c00497{width:7.416000px;}
._a_c00497{width:8.697600px;}
._b_c00497{width:11.985120px;}
._c_c00497{width:12.988800px;}
._3_c00497{width:14.040000px;}
._6_c00497{width:15.120000px;}
._1_c00497{width:16.704000px;}
._15_c00497{width:17.908416px;}
._14_c00497{width:19.424160px;}
._2_c00497{width:22.392000px;}
._f_c00497{width:30.528000px;}
._10_c00497{width:38.448000px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs6_c00497{font-size:36.000000px;}
.fs2_c00497{font-size:41.760000px;}
.fs5_c00497{font-size:56.160000px;}
.fs3_c00497{font-size:59.040000px;}
.fs7_c00497{font-size:60.000000px;}
.fs4_c00497{font-size:60.857039px;}
.fs0_c00497{font-size:72.000000px;}
.fs1_c00497{font-size:74.215901px;}
.y0_c00497{bottom:0.000000px;}
.y37_c00497{bottom:3.120000px;}
.y36_c00497{bottom:34.744580px;}
.y1_c00497{bottom:54.000000px;}
.y35_c00497{bottom:55.482480px;}
.y34_c00497{bottom:72.766440px;}
.y33_c00497{bottom:90.404640px;}
.y32_c00497{bottom:107.688600px;}
.y31_c00497{bottom:125.326800px;}
.y30_c00497{bottom:149.085000px;}
.y2f_c00497{bottom:160.248600px;}
.y2e_c00497{bottom:177.886800px;}
.y2d_c00497{bottom:201.645000px;}
.y2c_c00497{bottom:212.806800px;}
.y2a_c00497{bottom:230.441040px;}
.y2b_c00497{bottom:230.445000px;}
.y29_c00497{bottom:247.725000px;}
.y28_c00497{bottom:265.365000px;}
.y27_c00497{bottom:271.485000px;}
.y26_c00497{bottom:298.125000px;}
.y25_c00497{bottom:325.485000px;}
.y24_c00497{bottom:346.365000px;}
.y23_c00497{bottom:367.245000px;}
.y22_c00497{bottom:388.485000px;}
.y21_c00497{bottom:409.365000px;}
.y20_c00497{bottom:445.365000px;}
.y1f_c00497{bottom:473.805000px;}
.y1e_c00497{bottom:502.242480px;}
.y1d_c00497{bottom:519.526440px;}
.y1c_c00497{bottom:537.164640px;}
.y1b_c00497{bottom:554.448600px;}
.y1a_c00497{bottom:572.086800px;}
.y19_c00497{bottom:589.725000px;}
.y18_c00497{bottom:614.566800px;}
.y16_c00497{bottom:632.201040px;}
.y17_c00497{bottom:632.205000px;}
.y15_c00497{bottom:649.485000px;}
.y14_c00497{bottom:649.488600px;}
.y13_c00497{bottom:674.683920px;}
.y12_c00497{bottom:699.525000px;}
.y11_c00497{bottom:725.085000px;}
.y10_c00497{bottom:756.765000px;}
.yf_c00497{bottom:788.445000px;}
.ye_c00497{bottom:824.085000px;}
.yd_c00497{bottom:860.085000px;}
.yc_c00497{bottom:880.965000px;}
.yb_c00497{bottom:901.845000px;}
.ya_c00497{bottom:923.085000px;}
.y9_c00497{bottom:943.965000px;}
.y8_c00497{bottom:964.845000px;}
.y7_c00497{bottom:986.085000px;}
.y6_c00497{bottom:1006.965000px;}
.y5_c00497{bottom:1027.845000px;}
.y4_c00497{bottom:1049.085000px;}
.y3_c00497{bottom:1085.085000px;}
.y2_c00497{bottom:1138.365000px;}
.ha_c00497{height:19.255605px;}
.h9_c00497{height:32.616000px;}
.h8_c00497{height:46.981634px;}
.h6_c00497{height:47.988281px;}
.h7_c00497{height:53.490240px;}
.hb_c00497{height:56.640000px;}
.h4_c00497{height:57.294676px;}
.h3_c00497{height:65.232000px;}
.h5_c00497{height:68.074560px;}
.h2_c00497{height:1201.365000px;}
.h0_c00497{height:1262.835000px;}
.h1_c00497{height:1263.000000px;}
.w3_c00497{width:25.020000px;}
.w2_c00497{width:863.955000px;}
.w0_c00497{width:892.935000px;}
.w1_c00497{width:893.250000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:14.490000px;}
.x2_c00497{left:113.040150px;}
.x1e_c00497{left:128.864850px;}
.x3_c00497{left:161.531250px;}
.x1a_c00497{left:216.069600px;}
.x1b_c00497{left:235.224300px;}
.x4_c00497{left:236.986050px;}
.x7_c00497{left:283.140000px;}
.x28_c00497{left:318.550050px;}
.x29_c00497{left:334.374300px;}
.x8_c00497{left:344.140800px;}
.x9_c00497{left:348.640800px;}
.xa_c00497{left:413.655750px;}
.xb_c00497{left:422.655750px;}
.x25_c00497{left:446.416950px;}
.x12_c00497{left:455.512200px;}
.x26_c00497{left:471.391500px;}
.x23_c00497{left:474.547500px;}
.xc_c00497{left:478.652400px;}
.x13_c00497{left:480.486750px;}
.xd_c00497{left:487.652400px;}
.xe_c00497{left:542.659050px;}
.x14_c00497{left:548.367900px;}
.xf_c00497{left:551.659050px;}
.x24_c00497{left:561.540150px;}
.x15_c00497{left:573.342450px;}
.x1f_c00497{left:594.249000px;}
.x1c_c00497{left:604.181400px;}
.x10_c00497{left:606.666150px;}
.x11_c00497{left:615.666150px;}
.x16_c00497{left:620.006550px;}
.x17_c00497{left:641.650950px;}
.x1d_c00497{left:643.345800px;}
.x20_c00497{left:681.241650px;}
.x18_c00497{left:688.314300px;}
.x21_c00497{left:692.395050px;}
.x5_c00497{left:703.832100px;}
.x19_c00497{left:716.633850px;}
.x6_c00497{left:718.825950px;}
.x27_c00497{left:734.565750px;}
.x22_c00497{left:745.386150px;}
.x2a_c00497{left:759.914612px;}
@media print{
.v2_c00497{vertical-align:-21.760000pt;}
.v0_c00497{vertical-align:0.000000pt;}
.v1_c00497{vertical-align:26.880000pt;}
.ls19_c00497{letter-spacing:0.000000pt;}
.ls1a_c00497{letter-spacing:0.032000pt;}
.ls10_c00497{letter-spacing:0.142613pt;}
.ls11_c00497{letter-spacing:0.165547pt;}
.ls3_c00497{letter-spacing:0.209920pt;}
.ls17_c00497{letter-spacing:0.236160pt;}
.ls2_c00497{letter-spacing:0.257152pt;}
.lsc_c00497{letter-spacing:0.262400pt;}
.ls23_c00497{letter-spacing:0.283392pt;}
.ls7_c00497{letter-spacing:0.292114pt;}
.lse_c00497{letter-spacing:0.314880pt;}
.ls2b_c00497{letter-spacing:0.330624pt;}
.ls24_c00497{letter-spacing:0.377856pt;}
.ls15_c00497{letter-spacing:0.389485pt;}
.ls1f_c00497{letter-spacing:0.425088pt;}
.ls1_c00497{letter-spacing:0.425280pt;}
.ls6_c00497{letter-spacing:0.446080pt;}
.lsb_c00497{letter-spacing:0.467072pt;}
.lsd_c00497{letter-spacing:0.472320pt;}
.ls13_c00497{letter-spacing:0.482816pt;}
.ls8_c00497{letter-spacing:0.493312pt;}
.lsa_c00497{letter-spacing:0.498560pt;}
.ls28_c00497{letter-spacing:0.519552pt;}
.ls21_c00497{letter-spacing:0.535542pt;}
.ls9_c00497{letter-spacing:0.584228pt;}
.ls4_c00497{letter-spacing:0.629760pt;}
.ls5_c00497{letter-spacing:0.632913pt;}
.ls1d_c00497{letter-spacing:0.661248pt;}
.ls25_c00497{letter-spacing:0.708480pt;}
.ls22_c00497{letter-spacing:0.787200pt;}
.ls2d_c00497{letter-spacing:1.102080pt;}
.ls29_c00497{letter-spacing:1.395968pt;}
.ls20_c00497{letter-spacing:1.647872pt;}
.ls1e_c00497{letter-spacing:1.653120pt;}
.ls2a_c00497{letter-spacing:2.938880pt;}
.ls27_c00497{letter-spacing:3.054336pt;}
.ls2c_c00497{letter-spacing:4.544768pt;}
.ls12_c00497{letter-spacing:4.786176pt;}
.ls1c_c00497{letter-spacing:4.801920pt;}
.ls26_c00497{letter-spacing:4.827264pt;}
.ls14_c00497{letter-spacing:4.828160pt;}
.ls1b_c00497{letter-spacing:4.854400pt;}
.lsf_c00497{letter-spacing:5.311467pt;}
.ls0_c00497{letter-spacing:5.312000pt;}
.ls18_c00497{letter-spacing:5.475484pt;}
.ls16_c00497{letter-spacing:7.504640pt;}
.ws0_c00497{word-spacing:-23.104000pt;}
.ws1_c00497{word-spacing:-19.443840pt;}
.ws9_c00497{word-spacing:-18.705024pt;}
.ws4_c00497{word-spacing:-15.671364pt;}
.ws6_c00497{word-spacing:-15.622678pt;}
.ws7_c00497{word-spacing:-15.573992pt;}
.wsb_c00497{word-spacing:-15.427936pt;}
.ws5_c00497{word-spacing:-15.330564pt;}
.ws3_c00497{word-spacing:-15.250688pt;}
.ws2_c00497{word-spacing:-15.061760pt;}
.ws8_c00497{word-spacing:-14.872832pt;}
.wsc_c00497{word-spacing:-14.825600pt;}
.wsa_c00497{word-spacing:-8.896000pt;}
.wsd_c00497{word-spacing:0.000000pt;}
._13_c00497{margin-left:-4.985600pt;}
._12_c00497{margin-left:-4.040960pt;}
._11_c00497{margin-left:-3.075328pt;}
._9_c00497{margin-left:-2.067712pt;}
._7_c00497{margin-left:-0.902656pt;}
._0_c00497{width:0.896000pt;}
._8_c00497{width:1.829120pt;}
._4_c00497{width:3.328000pt;}
._d_c00497{width:4.744192pt;}
._e_c00497{width:5.686784pt;}
._5_c00497{width:6.592000pt;}
._a_c00497{width:7.731200pt;}
._b_c00497{width:10.653440pt;}
._c_c00497{width:11.545600pt;}
._3_c00497{width:12.480000pt;}
._6_c00497{width:13.440000pt;}
._1_c00497{width:14.848000pt;}
._15_c00497{width:15.918592pt;}
._14_c00497{width:17.265920pt;}
._2_c00497{width:19.904000pt;}
._f_c00497{width:27.136000pt;}
._10_c00497{width:34.176000pt;}
.fs6_c00497{font-size:32.000000pt;}
.fs2_c00497{font-size:37.120000pt;}
.fs5_c00497{font-size:49.920000pt;}
.fs3_c00497{font-size:52.480000pt;}
.fs7_c00497{font-size:53.333333pt;}
.fs4_c00497{font-size:54.095146pt;}
.fs0_c00497{font-size:64.000000pt;}
.fs1_c00497{font-size:65.969690pt;}
.y0_c00497{bottom:0.000000pt;}
.y37_c00497{bottom:2.773333pt;}
.y36_c00497{bottom:30.884071pt;}
.y1_c00497{bottom:48.000000pt;}
.y35_c00497{bottom:49.317760pt;}
.y34_c00497{bottom:64.681280pt;}
.y33_c00497{bottom:80.359680pt;}
.y32_c00497{bottom:95.723200pt;}
.y31_c00497{bottom:111.401600pt;}
.y30_c00497{bottom:132.520000pt;}
.y2f_c00497{bottom:142.443200pt;}
.y2e_c00497{bottom:158.121600pt;}
.y2d_c00497{bottom:179.240000pt;}
.y2c_c00497{bottom:189.161600pt;}
.y2a_c00497{bottom:204.836480pt;}
.y2b_c00497{bottom:204.840000pt;}
.y29_c00497{bottom:220.200000pt;}
.y28_c00497{bottom:235.880000pt;}
.y27_c00497{bottom:241.320000pt;}
.y26_c00497{bottom:265.000000pt;}
.y25_c00497{bottom:289.320000pt;}
.y24_c00497{bottom:307.880000pt;}
.y23_c00497{bottom:326.440000pt;}
.y22_c00497{bottom:345.320000pt;}
.y21_c00497{bottom:363.880000pt;}
.y20_c00497{bottom:395.880000pt;}
.y1f_c00497{bottom:421.160000pt;}
.y1e_c00497{bottom:446.437760pt;}
.y1d_c00497{bottom:461.801280pt;}
.y1c_c00497{bottom:477.479680pt;}
.y1b_c00497{bottom:492.843200pt;}
.y1a_c00497{bottom:508.521600pt;}
.y19_c00497{bottom:524.200000pt;}
.y18_c00497{bottom:546.281600pt;}
.y16_c00497{bottom:561.956480pt;}
.y17_c00497{bottom:561.960000pt;}
.y15_c00497{bottom:577.320000pt;}
.y14_c00497{bottom:577.323200pt;}
.y13_c00497{bottom:599.719040pt;}
.y12_c00497{bottom:621.800000pt;}
.y11_c00497{bottom:644.520000pt;}
.y10_c00497{bottom:672.680000pt;}
.yf_c00497{bottom:700.840000pt;}
.ye_c00497{bottom:732.520000pt;}
.yd_c00497{bottom:764.520000pt;}
.yc_c00497{bottom:783.080000pt;}
.yb_c00497{bottom:801.640000pt;}
.ya_c00497{bottom:820.520000pt;}
.y9_c00497{bottom:839.080000pt;}
.y8_c00497{bottom:857.640000pt;}
.y7_c00497{bottom:876.520000pt;}
.y6_c00497{bottom:895.080000pt;}
.y5_c00497{bottom:913.640000pt;}
.y4_c00497{bottom:932.520000pt;}
.y3_c00497{bottom:964.520000pt;}
.y2_c00497{bottom:1011.880000pt;}
.ha_c00497{height:17.116093pt;}
.h9_c00497{height:28.992000pt;}
.h8_c00497{height:41.761453pt;}
.h6_c00497{height:42.656250pt;}
.h7_c00497{height:47.546880pt;}
.hb_c00497{height:50.346667pt;}
.h4_c00497{height:50.928601pt;}
.h3_c00497{height:57.984000pt;}
.h5_c00497{height:60.510720pt;}
.h2_c00497{height:1067.880000pt;}
.h0_c00497{height:1122.520000pt;}
.h1_c00497{height:1122.666667pt;}
.w3_c00497{width:22.240000pt;}
.w2_c00497{width:767.960000pt;}
.w0_c00497{width:793.720000pt;}
.w1_c00497{width:794.000000pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:12.880000pt;}
.x2_c00497{left:100.480133pt;}
.x1e_c00497{left:114.546533pt;}
.x3_c00497{left:143.583333pt;}
.x1a_c00497{left:192.061867pt;}
.x1b_c00497{left:209.088267pt;}
.x4_c00497{left:210.654267pt;}
.x7_c00497{left:251.680000pt;}
.x28_c00497{left:283.155600pt;}
.x29_c00497{left:297.221600pt;}
.x8_c00497{left:305.902933pt;}
.x9_c00497{left:309.902933pt;}
.xa_c00497{left:367.694000pt;}
.xb_c00497{left:375.694000pt;}
.x25_c00497{left:396.815067pt;}
.x12_c00497{left:404.899733pt;}
.x26_c00497{left:419.014667pt;}
.x23_c00497{left:421.820000pt;}
.xc_c00497{left:425.468800pt;}
.x13_c00497{left:427.099333pt;}
.xd_c00497{left:433.468800pt;}
.xe_c00497{left:482.363600pt;}
.x14_c00497{left:487.438133pt;}
.xf_c00497{left:490.363600pt;}
.x24_c00497{left:499.146800pt;}
.x15_c00497{left:509.637733pt;}
.x1f_c00497{left:528.221333pt;}
.x1c_c00497{left:537.050133pt;}
.x10_c00497{left:539.258800pt;}
.x11_c00497{left:547.258800pt;}
.x16_c00497{left:551.116933pt;}
.x17_c00497{left:570.356400pt;}
.x1d_c00497{left:571.862933pt;}
.x20_c00497{left:605.548133pt;}
.x18_c00497{left:611.834933pt;}
.x21_c00497{left:615.462267pt;}
.x5_c00497{left:625.628533pt;}
.x19_c00497{left:637.007867pt;}
.x6_c00497{left:638.956400pt;}
.x27_c00497{left:652.947333pt;}
.x22_c00497{left:662.565467pt;}
.x2a_c00497{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e75f320a68085666904715a4.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.134000;font-style:normal;font-weight:normal;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_bac10c92bc87f85c9a1fa818.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;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:ff3_c00498;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_3285edb1c8dce52a5b494869.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00498{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00498{vertical-align:-31.170679px;}
.v3_c00498{vertical-align:-24.480000px;}
.v0_c00498{vertical-align:0.000000px;}
.v1_c00498{vertical-align:30.240000px;}
.lsc_c00498{letter-spacing:-0.179568px;}
.lsb_c00498{letter-spacing:0.000000px;}
.ls11_c00498{letter-spacing:0.144000px;}
.ls2_c00498{letter-spacing:0.256440px;}
.lse_c00498{letter-spacing:0.265680px;}
.ls9_c00498{letter-spacing:0.295200px;}
.ls4_c00498{letter-spacing:0.327240px;}
.ls0_c00498{letter-spacing:0.417240px;}
.ls13_c00498{letter-spacing:0.425088px;}
.ls8_c00498{letter-spacing:0.513648px;}
.ls14_c00498{letter-spacing:0.531360px;}
.ls7_c00498{letter-spacing:0.560880px;}
.ls15_c00498{letter-spacing:0.584496px;}
.ls10_c00498{letter-spacing:0.602485px;}
.ls6_c00498{letter-spacing:0.712027px;}
.ls17_c00498{letter-spacing:0.797040px;}
.lsd_c00498{letter-spacing:5.335200px;}
.lsf_c00498{letter-spacing:5.461200px;}
.ls5_c00498{letter-spacing:5.940600px;}
.ls3_c00498{letter-spacing:5.976000px;}
.lsa_c00498{letter-spacing:6.159920px;}
.ls1_c00498{letter-spacing:8.661862px;}
.ls16_c00498{letter-spacing:11.849328px;}
.ls12_c00498{letter-spacing:22.210848px;}
.sc__c00498{text-shadow:none;}
.sc1_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00498{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc1_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00498{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5_c00498{word-spacing:-21.874320px;}
.ws3_c00498{word-spacing:-20.947680px;}
.ws1_c00498{word-spacing:-20.632021px;}
.ws0_c00498{word-spacing:-20.016000px;}
.ws6_c00498{word-spacing:-17.630284px;}
.ws8_c00498{word-spacing:-16.997616px;}
.ws2_c00498{word-spacing:-11.429712px;}
.ws7_c00498{word-spacing:-10.152000px;}
.ws4_c00498{word-spacing:-10.008000px;}
.ws9_c00498{word-spacing:0.000000px;}
._8_c00498{margin-left:-21.896640px;}
._9_c00498{margin-left:-20.810880px;}
._b_c00498{margin-left:-12.247344px;}
._c_c00498{margin-left:-10.630656px;}
._2_c00498{margin-left:-8.528026px;}
._7_c00498{margin-left:-1.149000px;}
._3_c00498{width:1.152000px;}
._1_c00498{width:2.520000px;}
._0_c00498{width:4.464000px;}
._5_c00498{width:5.904000px;}
._4_c00498{width:10.368000px;}
._a_c00498{width:11.512800px;}
._6_c00498{width:22.464000px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs5_c00498{font-size:36.000000px;}
.fs2_c00498{font-size:41.760000px;}
.fs3_c00498{font-size:43.045223px;}
.fs4_c00498{font-size:56.160000px;}
.fs6_c00498{font-size:59.040000px;}
.fs8_c00498{font-size:60.000000px;}
.fs7_c00498{font-size:60.857039px;}
.fs0_c00498{font-size:72.000000px;}
.fs1_c00498{font-size:74.215901px;}
.y0_c00498{bottom:0.000000px;}
.y1f_c00498{bottom:3.120000px;}
.y1e_c00498{bottom:34.744580px;}
.y1_c00498{bottom:54.000000px;}
.y1d_c00498{bottom:55.482840px;}
.y1c_c00498{bottom:72.766800px;}
.y1b_c00498{bottom:90.405000px;}
.y1a_c00498{bottom:107.686800px;}
.y19_c00498{bottom:125.325000px;}
.y18_c00498{bottom:131.445000px;}
.y17_c00498{bottom:149.085000px;}
.y16_c00498{bottom:166.365000px;}
.y15_c00498{bottom:177.885000px;}
.y14_c00498{bottom:184.005000px;}
.y13_c00498{bottom:201.645000px;}
.y12_c00498{bottom:228.285000px;}
.y11_c00498{bottom:685.845000px;}
.y10_c00498{bottom:721.845000px;}
.yf_c00498{bottom:757.845000px;}
.ye_c00498{bottom:793.845000px;}
.yd_c00498{bottom:829.845000px;}
.yc_c00498{bottom:865.845000px;}
.yb_c00498{bottom:887.085000px;}
.ya_c00498{bottom:923.085000px;}
.y9_c00498{bottom:943.965000px;}
.y8_c00498{bottom:964.845000px;}
.y7_c00498{bottom:986.085000px;}
.y6_c00498{bottom:1006.965000px;}
.y5_c00498{bottom:1042.965000px;}
.y4_c00498{bottom:1063.845000px;}
.y3_c00498{bottom:1085.085000px;}
.y2_c00498{bottom:1138.365000px;}
.ha_c00498{height:19.255605px;}
.h7_c00498{height:32.616000px;}
.h8_c00498{height:46.981634px;}
.h9_c00498{height:53.490240px;}
.hb_c00498{height:56.640000px;}
.h4_c00498{height:57.294676px;}
.h6_c00498{height:64.401590px;}
.h3_c00498{height:65.232000px;}
.h5_c00498{height:68.074560px;}
.h2_c00498{height:1201.365000px;}
.h0_c00498{height:1262.835000px;}
.h1_c00498{height:1263.000000px;}
.w3_c00498{width:25.020000px;}
.w2_c00498{width:863.955000px;}
.w0_c00498{width:892.935000px;}
.w1_c00498{width:893.250000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:14.490000px;}
.x2_c00498{left:113.040150px;}
.x3_c00498{left:161.531250px;}
.x1d_c00498{left:197.934450px;}
.x5_c00498{left:223.419000px;}
.x1a_c00498{left:225.070350px;}
.x27_c00498{left:232.183200px;}
.x1e_c00498{left:234.369450px;}
.x4_c00498{left:236.986050px;}
.x1b_c00498{left:244.078200px;}
.x28_c00498{left:248.007900px;}
.x1c_c00498{left:311.091000px;}
.x14_c00498{left:312.615600px;}
.x15_c00498{left:318.912600px;}
.x6_c00498{left:376.701750px;}
.x16_c00498{left:476.797050px;}
.x21_c00498{left:483.507150px;}
.x17_c00498{left:485.797050px;}
.x22_c00498{left:502.661850px;}
.x18_c00498{left:517.296750px;}
.x19_c00498{left:523.290600px;}
.x7_c00498{left:534.715950px;}
.x8_c00498{left:545.847300px;}
.x9_c00498{left:556.341000px;}
.xa_c00498{left:562.468500px;}
.x12_c00498{left:572.740050px;}
.xb_c00498{left:589.097850px;}
.x25_c00498{left:591.422250px;}
.x26_c00498{left:617.236800px;}
.x10_c00498{left:621.880350px;}
.x23_c00498{left:624.771900px;}
.xc_c00498{left:637.369650px;}
.x24_c00498{left:649.746450px;}
.x1f_c00498{left:661.936200px;}
.x11_c00498{left:663.699450px;}
.x13_c00498{left:669.909600px;}
.x20_c00498{left:726.933150px;}
.xf_c00498{left:735.396300px;}
.xd_c00498{left:744.396300px;}
.xe_c00498{left:750.390000px;}
.x29_c00498{left:759.914612px;}
@media print{
.v2_c00498{vertical-align:-27.707270pt;}
.v3_c00498{vertical-align:-21.760000pt;}
.v0_c00498{vertical-align:0.000000pt;}
.v1_c00498{vertical-align:26.880000pt;}
.lsc_c00498{letter-spacing:-0.159616pt;}
.lsb_c00498{letter-spacing:0.000000pt;}
.ls11_c00498{letter-spacing:0.128000pt;}
.ls2_c00498{letter-spacing:0.227947pt;}
.lse_c00498{letter-spacing:0.236160pt;}
.ls9_c00498{letter-spacing:0.262400pt;}
.ls4_c00498{letter-spacing:0.290880pt;}
.ls0_c00498{letter-spacing:0.370880pt;}
.ls13_c00498{letter-spacing:0.377856pt;}
.ls8_c00498{letter-spacing:0.456576pt;}
.ls14_c00498{letter-spacing:0.472320pt;}
.ls7_c00498{letter-spacing:0.498560pt;}
.ls15_c00498{letter-spacing:0.519552pt;}
.ls10_c00498{letter-spacing:0.535542pt;}
.ls6_c00498{letter-spacing:0.632913pt;}
.ls17_c00498{letter-spacing:0.708480pt;}
.lsd_c00498{letter-spacing:4.742400pt;}
.lsf_c00498{letter-spacing:4.854400pt;}
.ls5_c00498{letter-spacing:5.280533pt;}
.ls3_c00498{letter-spacing:5.312000pt;}
.lsa_c00498{letter-spacing:5.475484pt;}
.ls1_c00498{letter-spacing:7.699432pt;}
.ls16_c00498{letter-spacing:10.532736pt;}
.ls12_c00498{letter-spacing:19.742976pt;}
.ws5_c00498{word-spacing:-19.443840pt;}
.ws3_c00498{word-spacing:-18.620160pt;}
.ws1_c00498{word-spacing:-18.339574pt;}
.ws0_c00498{word-spacing:-17.792000pt;}
.ws6_c00498{word-spacing:-15.671364pt;}
.ws8_c00498{word-spacing:-15.108992pt;}
.ws2_c00498{word-spacing:-10.159744pt;}
.ws7_c00498{word-spacing:-9.024000pt;}
.ws4_c00498{word-spacing:-8.896000pt;}
.ws9_c00498{word-spacing:0.000000pt;}
._8_c00498{margin-left:-19.463680pt;}
._9_c00498{margin-left:-18.498560pt;}
._b_c00498{margin-left:-10.886528pt;}
._c_c00498{margin-left:-9.449472pt;}
._2_c00498{margin-left:-7.580467pt;}
._7_c00498{margin-left:-1.021333pt;}
._3_c00498{width:1.024000pt;}
._1_c00498{width:2.240000pt;}
._0_c00498{width:3.968000pt;}
._5_c00498{width:5.248000pt;}
._4_c00498{width:9.216000pt;}
._a_c00498{width:10.233600pt;}
._6_c00498{width:19.968000pt;}
.fs5_c00498{font-size:32.000000pt;}
.fs2_c00498{font-size:37.120000pt;}
.fs3_c00498{font-size:38.262420pt;}
.fs4_c00498{font-size:49.920000pt;}
.fs6_c00498{font-size:52.480000pt;}
.fs8_c00498{font-size:53.333333pt;}
.fs7_c00498{font-size:54.095146pt;}
.fs0_c00498{font-size:64.000000pt;}
.fs1_c00498{font-size:65.969690pt;}
.y0_c00498{bottom:0.000000pt;}
.y1f_c00498{bottom:2.773333pt;}
.y1e_c00498{bottom:30.884071pt;}
.y1_c00498{bottom:48.000000pt;}
.y1d_c00498{bottom:49.318080pt;}
.y1c_c00498{bottom:64.681600pt;}
.y1b_c00498{bottom:80.360000pt;}
.y1a_c00498{bottom:95.721600pt;}
.y19_c00498{bottom:111.400000pt;}
.y18_c00498{bottom:116.840000pt;}
.y17_c00498{bottom:132.520000pt;}
.y16_c00498{bottom:147.880000pt;}
.y15_c00498{bottom:158.120000pt;}
.y14_c00498{bottom:163.560000pt;}
.y13_c00498{bottom:179.240000pt;}
.y12_c00498{bottom:202.920000pt;}
.y11_c00498{bottom:609.640000pt;}
.y10_c00498{bottom:641.640000pt;}
.yf_c00498{bottom:673.640000pt;}
.ye_c00498{bottom:705.640000pt;}
.yd_c00498{bottom:737.640000pt;}
.yc_c00498{bottom:769.640000pt;}
.yb_c00498{bottom:788.520000pt;}
.ya_c00498{bottom:820.520000pt;}
.y9_c00498{bottom:839.080000pt;}
.y8_c00498{bottom:857.640000pt;}
.y7_c00498{bottom:876.520000pt;}
.y6_c00498{bottom:895.080000pt;}
.y5_c00498{bottom:927.080000pt;}
.y4_c00498{bottom:945.640000pt;}
.y3_c00498{bottom:964.520000pt;}
.y2_c00498{bottom:1011.880000pt;}
.ha_c00498{height:17.116093pt;}
.h7_c00498{height:28.992000pt;}
.h8_c00498{height:41.761453pt;}
.h9_c00498{height:47.546880pt;}
.hb_c00498{height:50.346667pt;}
.h4_c00498{height:50.928601pt;}
.h6_c00498{height:57.245858pt;}
.h3_c00498{height:57.984000pt;}
.h5_c00498{height:60.510720pt;}
.h2_c00498{height:1067.880000pt;}
.h0_c00498{height:1122.520000pt;}
.h1_c00498{height:1122.666667pt;}
.w3_c00498{width:22.240000pt;}
.w2_c00498{width:767.960000pt;}
.w0_c00498{width:793.720000pt;}
.w1_c00498{width:794.000000pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:12.880000pt;}
.x2_c00498{left:100.480133pt;}
.x3_c00498{left:143.583333pt;}
.x1d_c00498{left:175.941733pt;}
.x5_c00498{left:198.594667pt;}
.x1a_c00498{left:200.062533pt;}
.x27_c00498{left:206.385067pt;}
.x1e_c00498{left:208.328400pt;}
.x4_c00498{left:210.654267pt;}
.x1b_c00498{left:216.958400pt;}
.x28_c00498{left:220.451467pt;}
.x1c_c00498{left:276.525333pt;}
.x14_c00498{left:277.880533pt;}
.x15_c00498{left:283.477867pt;}
.x6_c00498{left:334.846000pt;}
.x16_c00498{left:423.819600pt;}
.x21_c00498{left:429.784133pt;}
.x17_c00498{left:431.819600pt;}
.x22_c00498{left:446.810533pt;}
.x18_c00498{left:459.819333pt;}
.x19_c00498{left:465.147200pt;}
.x7_c00498{left:475.303067pt;}
.x8_c00498{left:485.197600pt;}
.x9_c00498{left:494.525333pt;}
.xa_c00498{left:499.972000pt;}
.x12_c00498{left:509.102267pt;}
.xb_c00498{left:523.642533pt;}
.x25_c00498{left:525.708667pt;}
.x26_c00498{left:548.654933pt;}
.x10_c00498{left:552.782533pt;}
.x23_c00498{left:555.352800pt;}
.xc_c00498{left:566.550800pt;}
.x24_c00498{left:577.552400pt;}
.x1f_c00498{left:588.387733pt;}
.x11_c00498{left:589.955067pt;}
.x13_c00498{left:595.475200pt;}
.x20_c00498{left:646.162800pt;}
.xf_c00498{left:653.685600pt;}
.xd_c00498{left:661.685600pt;}
.xe_c00498{left:667.013333pt;}
.x29_c00498{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a56bc1b737ff172a061e136.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;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_c00499;src:url('chunks/assets/font_52cccdaaffb6bb1512a7305e.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:0.787000;font-style:normal;font-weight:normal;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_095ba22e5b602e54aea57ea9.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00499{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls2_c00499{letter-spacing:0.000000px;}
.ls5_c00499{letter-spacing:0.239760px;}
.ls3_c00499{letter-spacing:0.399600px;}
.ls4_c00499{letter-spacing:4.923072px;}
.ls0_c00499{letter-spacing:5.976000px;}
.ls1_c00499{letter-spacing:6.159920px;}
.sc__c00499{text-shadow:none;}
.sc1_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00499{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc1_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00499{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00499{word-spacing:-15.051600px;}
.ws1_c00499{word-spacing:0.000000px;}
._0_c00499{margin-left:-1.118880px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs2_c00499{font-size:53.280000px;}
.fs3_c00499{font-size:60.000000px;}
.fs0_c00499{font-size:72.000000px;}
.fs1_c00499{font-size:74.215901px;}
.y0_c00499{bottom:0.000000px;}
.y23_c00499{bottom:3.120000px;}
.y21_c00499{bottom:34.560000px;}
.y22_c00499{bottom:34.744580px;}
.y1_c00499{bottom:54.000000px;}
.y1f_c00499{bottom:76.725000px;}
.y1e_c00499{bottom:112.725000px;}
.y20_c00499{bottom:137.205000px;}
.y1d_c00499{bottom:148.725000px;}
.y1c_c00499{bottom:184.725000px;}
.y1b_c00499{bottom:220.725000px;}
.y1a_c00499{bottom:256.725000px;}
.y19_c00499{bottom:292.725000px;}
.y18_c00499{bottom:328.725000px;}
.y17_c00499{bottom:364.725000px;}
.y16_c00499{bottom:400.725000px;}
.y15_c00499{bottom:436.725000px;}
.y14_c00499{bottom:472.725000px;}
.y13_c00499{bottom:509.085000px;}
.y12_c00499{bottom:545.085000px;}
.y11_c00499{bottom:581.085000px;}
.y10_c00499{bottom:617.085000px;}
.yf_c00499{bottom:653.085000px;}
.ye_c00499{bottom:689.085000px;}
.yd_c00499{bottom:725.085000px;}
.yc_c00499{bottom:761.085000px;}
.yb_c00499{bottom:797.085000px;}
.ya_c00499{bottom:833.085000px;}
.y9_c00499{bottom:869.085000px;}
.y8_c00499{bottom:905.085000px;}
.y7_c00499{bottom:941.085000px;}
.y6_c00499{bottom:977.085000px;}
.y5_c00499{bottom:1013.085000px;}
.y4_c00499{bottom:1049.085000px;}
.y3_c00499{bottom:1085.085000px;}
.y2_c00499{bottom:1138.365000px;}
.h7_c00499{height:19.255605px;}
.h6_c00499{height:41.132160px;}
.h5_c00499{height:47.160000px;}
.h3_c00499{height:55.584000px;}
.h8_c00499{height:56.640000px;}
.h4_c00499{height:57.294676px;}
.h2_c00499{height:1201.365000px;}
.h0_c00499{height:1262.835000px;}
.h1_c00499{height:1263.000000px;}
.w4_c00499{width:25.020000px;}
.w3_c00499{width:642.960000px;}
.w2_c00499{width:863.955000px;}
.w0_c00499{width:892.935000px;}
.w1_c00499{width:893.250000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:14.490000px;}
.x2_c00499{left:113.040150px;}
.x5_c00499{left:136.170000px;}
.x3_c00499{left:161.531250px;}
.x6_c00499{left:212.795100px;}
.x4_c00499{left:236.986050px;}
.x7_c00499{left:759.914612px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls2_c00499{letter-spacing:0.000000pt;}
.ls5_c00499{letter-spacing:0.213120pt;}
.ls3_c00499{letter-spacing:0.355200pt;}
.ls4_c00499{letter-spacing:4.376064pt;}
.ls0_c00499{letter-spacing:5.312000pt;}
.ls1_c00499{letter-spacing:5.475484pt;}
.ws0_c00499{word-spacing:-13.379200pt;}
.ws1_c00499{word-spacing:0.000000pt;}
._0_c00499{margin-left:-0.994560pt;}
.fs2_c00499{font-size:47.360000pt;}
.fs3_c00499{font-size:53.333333pt;}
.fs0_c00499{font-size:64.000000pt;}
.fs1_c00499{font-size:65.969690pt;}
.y0_c00499{bottom:0.000000pt;}
.y23_c00499{bottom:2.773333pt;}
.y21_c00499{bottom:30.720000pt;}
.y22_c00499{bottom:30.884071pt;}
.y1_c00499{bottom:48.000000pt;}
.y1f_c00499{bottom:68.200000pt;}
.y1e_c00499{bottom:100.200000pt;}
.y20_c00499{bottom:121.960000pt;}
.y1d_c00499{bottom:132.200000pt;}
.y1c_c00499{bottom:164.200000pt;}
.y1b_c00499{bottom:196.200000pt;}
.y1a_c00499{bottom:228.200000pt;}
.y19_c00499{bottom:260.200000pt;}
.y18_c00499{bottom:292.200000pt;}
.y17_c00499{bottom:324.200000pt;}
.y16_c00499{bottom:356.200000pt;}
.y15_c00499{bottom:388.200000pt;}
.y14_c00499{bottom:420.200000pt;}
.y13_c00499{bottom:452.520000pt;}
.y12_c00499{bottom:484.520000pt;}
.y11_c00499{bottom:516.520000pt;}
.y10_c00499{bottom:548.520000pt;}
.yf_c00499{bottom:580.520000pt;}
.ye_c00499{bottom:612.520000pt;}
.yd_c00499{bottom:644.520000pt;}
.yc_c00499{bottom:676.520000pt;}
.yb_c00499{bottom:708.520000pt;}
.ya_c00499{bottom:740.520000pt;}
.y9_c00499{bottom:772.520000pt;}
.y8_c00499{bottom:804.520000pt;}
.y7_c00499{bottom:836.520000pt;}
.y6_c00499{bottom:868.520000pt;}
.y5_c00499{bottom:900.520000pt;}
.y4_c00499{bottom:932.520000pt;}
.y3_c00499{bottom:964.520000pt;}
.y2_c00499{bottom:1011.880000pt;}
.h7_c00499{height:17.116093pt;}
.h6_c00499{height:36.561920pt;}
.h5_c00499{height:41.920000pt;}
.h3_c00499{height:49.408000pt;}
.h8_c00499{height:50.346667pt;}
.h4_c00499{height:50.928601pt;}
.h2_c00499{height:1067.880000pt;}
.h0_c00499{height:1122.520000pt;}
.h1_c00499{height:1122.666667pt;}
.w4_c00499{width:22.240000pt;}
.w3_c00499{width:571.520000pt;}
.w2_c00499{width:767.960000pt;}
.w0_c00499{width:793.720000pt;}
.w1_c00499{width:794.000000pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:12.880000pt;}
.x2_c00499{left:100.480133pt;}
.x5_c00499{left:121.040000pt;}
.x3_c00499{left:143.583333pt;}
.x6_c00499{left:189.151200pt;}
.x4_c00499{left:210.654267pt;}
.x7_c00499{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5a1329f402ab3445d0de712.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;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_c00001;src:url('chunks/assets/font_52cccdaaffb6bb1512a7305e.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.787000;font-style:normal;font-weight:normal;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_9f2b13c4fd4bc6b9a00dbe03.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_ef72f47402230a406b58de24.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.134000;font-style:normal;font-weight:normal;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_bd91aa501ba6b9d592a32b81.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;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:ff6_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff8_c00001{font-family:ff8_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:ff9_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff9_c00001{font-family:ff9_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:ffa_c00001;src:url('chunks/assets/font_9f21ebc553397eba5a93cfa1.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.833008;font-style:normal;font-weight: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_d46a09b7ebe11b87f5c3d05c.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:1.134000;font-style:normal;font-weight: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_8719c9e42e9f6e2bd4e7aea2.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;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:ffd_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffe_c00001{font-family:ffe_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:fff_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00001;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.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_782f5d073e88cc73524a7116.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;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:ff12_c00001;src:url('chunks/assets/font_fa0924d799c0677357a69807.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:0.963000;font-style:normal;font-weight: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_85cbc96afb0f18c5d3cf74a3.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:1.134000;font-style:normal;font-weight: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_af06a84ecdac43ed2472d4cd.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;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:ff15_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff16_c00001{font-family:ff16_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:ff17_c00001;src:url('chunks/assets/font_fa3057f9a9ef317a1245f762.woff2')format("woff");}.ff17_c00001{font-family:ff17_c00001;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:ff18_c00001;src:url('chunks/assets/font_4d904e6c8700a3b1604662ce.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:0.787000;font-style:normal;font-weight: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_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff19_c00001{font-family:ff19_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:ff1a_c00001;src:url('chunks/assets/font_e6632d9b80ddf0bee4b31b26.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;line-height:1.134000;font-style:normal;font-weight: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_51ec87aff24a5370aa49fd23.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_c00001;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:ff1c_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.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_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_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:ff1f_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00001;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:0.787000;font-style:normal;font-weight: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_dec4387ea6673427388c37a0.woff2')format("woff");}.ff21_c00001{font-family:ff21_c00001;line-height:1.002000;font-style:normal;font-weight: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_98aaacfbe15dccf4c4a1f8f1.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;line-height:0.920000;font-style:normal;font-weight: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_12f0b07be8b28fe6c2bc9c27.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:1.134000;font-style:normal;font-weight: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_7b2a9f874cc550a1451a20ac.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;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:ff25_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff25_c00001{font-family:ff25_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.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_bf7f54c0f56b7495bc269328.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:1.134000;font-style:normal;font-weight: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_bcb29c435d52f094380f5c57.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;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:ff29_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00001;src:url('chunks/assets/font_239df161cef35ee56ef472de.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_c00001;line-height:1.002000;font-style:normal;font-weight: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_b130a18e7f244aa950291831.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_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:ff2c_c00001;src:url('chunks/assets/font_db8183e693fcac88fe66cb53.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;line-height:0.841797;font-style:normal;font-weight: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_39ade2a7c38170353b86f916.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_c00001;line-height:0.876465;font-style:normal;font-weight: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_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:0.800000;font-style:normal;font-weight: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_751d5e44cef44da23f30484b.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_c00001;line-height:0.787000;font-style:normal;font-weight: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_6da29345df80e41b50ab1e3a.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:0.921000;font-style:normal;font-weight: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_110a246d467646e37805cb85.woff2')format("woff");}.ff31_c00001{font-family:ff31_c00001;line-height:1.130000;font-style:normal;font-weight: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_4dca5a6df181e12b3df019e5.woff2')format("woff");}.ff32_c00001{font-family:ff32_c00001;line-height:1.130000;font-style:normal;font-weight: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_b8d6eba40f99c1ed403e60fb.woff2')format("woff");}.ff33_c00001{font-family:ff33_c00001;line-height:0.787000;font-style:normal;font-weight: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_2b187cbe3a6c6f1bcceb9e4d.woff2')format("woff");}.ff34_c00001{font-family:ff34_c00001;line-height:0.833008;font-style:normal;font-weight: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_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff35_c00001{font-family:ff35_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00001;src:url('chunks/assets/font_8170b89655a442939dce7ef4.woff2')format("woff");}.ff36_c00001{font-family:ff36_c00001;line-height:0.921000;font-style:normal;font-weight: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_580bc82015fd9a9a83880344.woff2')format("woff");}.ff37_c00001{font-family:ff37_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00001;src:url('chunks/assets/font_60b45a6e408ce5fb989bc82e.woff2')format("woff");}.ff38_c00001{font-family:ff38_c00001;line-height:0.812000;font-style:normal;font-weight: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_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff39_c00001{font-family:ff39_c00001;line-height:0.772000;font-style:normal;font-weight: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_7e4436a43f7527098d6b19f8.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_c00001;line-height:1.134000;font-style:normal;font-weight: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_cfd2f5a0f3e8805bfbf41885.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_c00001;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:ff3c_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_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:ff3f_c00001;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_c00001;line-height:0.787000;font-style:normal;font-weight: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_ce1e4564061764436d1dcea3.woff2')format("woff");}.ff40_c00001{font-family:ff40_c00001;line-height:0.814000;font-style:normal;font-weight: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_ab0be06057f2af8034d9f040.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:0.800000;font-style:normal;font-weight: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_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff42_c00001{font-family:ff42_c00001;line-height:0.787000;font-style:normal;font-weight: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_ba8ffb136d4a8211273a177d.woff2')format("woff");}.ff43_c00001{font-family:ff43_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:ff44_c00001;src:url('chunks/assets/font_8bfcc110b2598a7e76d4002c.woff2')format("woff");}.ff44_c00001{font-family:ff44_c00001;line-height:0.920000;font-style:normal;font-weight: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_90785bea3619659578fd402d.woff2')format("woff");}.ff45_c00001{font-family:ff45_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:ff46_c00001;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff46_c00001{font-family:ff46_c00001;line-height:0.787000;font-style:normal;font-weight: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_cf7bbb573a97ab1f90e5b294.woff2')format("woff");}.ff47_c00001{font-family:ff47_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:ff48_c00001;src:url('chunks/assets/font_da69cd15c49f11be782fbd0b.woff2')format("woff");}.ff48_c00001{font-family:ff48_c00001;line-height:0.805000;font-style:normal;font-weight: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_191dddf0f24d12f312721c16.woff2')format("woff");}.ff49_c00001{font-family:ff49_c00001;line-height:1.134000;font-style:normal;font-weight: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_d4946315c8584a960b178363.woff2')format("woff");}.ff4a_c00001{font-family:ff4a_c00001;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:ff4b_c00001;src:url('chunks/assets/font_26c87172d34db8535857a7a8.woff2')format("woff");}.ff4b_c00001{font-family:ff4b_c00001;line-height:0.805000;font-style:normal;font-weight: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_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff4c_c00001{font-family:ff4c_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:ff4d_c00001;src:url('chunks/assets/font_3c0910a2b8c64a3bc0eb9dc0.woff2')format("woff");}.ff4d_c00001{font-family:ff4d_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:ff4e_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff4e_c00001{font-family:ff4e_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:ff4f_c00001;src:url('chunks/assets/font_47d540027e5a82af679e26b3.woff2')format("woff");}.ff4f_c00001{font-family:ff4f_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50_c00001;src:url('chunks/assets/font_82b1b38886849cdaa391298c.woff2')format("woff");}.ff50_c00001{font-family:ff50_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51_c00001;src:url('chunks/assets/font_61b74bfa1ecd443dc1ff0544.woff2')format("woff");}.ff51_c00001{font-family:ff51_c00001;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:ff52_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff52_c00001{font-family:ff52_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff53_c00001{font-family:ff53_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff54_c00001{font-family:ff54_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff55_c00001{font-family:ff55_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:ff56_c00001;src:url('chunks/assets/font_8edb6d27a15c7b7ccafea309.woff2')format("woff");}.ff56_c00001{font-family:ff56_c00001;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:ff57_c00001;src:url('chunks/assets/font_d51095e44b56ddaa22be739f.woff2')format("woff");}.ff57_c00001{font-family:ff57_c00001;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:ff58_c00001;src:url('chunks/assets/font_0f3d0566661c1d9d94ad8d3e.woff2')format("woff");}.ff58_c00001{font-family:ff58_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff59_c00001{font-family:ff59_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff5a_c00001{font-family:ff5a_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b_c00001;src:url('chunks/assets/font_48fdae3164a440de43d3962c.woff2')format("woff");}.ff5b_c00001{font-family:ff5b_c00001;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:ff5c_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5c_c00001{font-family:ff5c_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:ff5d_c00001;src:url('chunks/assets/font_9f21ebc553397eba5a93cfa1.woff2')format("woff");}.ff5d_c00001{font-family:ff5d_c00001;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff5e_c00001{font-family:ff5e_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f_c00001;src:url('chunks/assets/font_f8d1d561d537231eae8dbfe4.woff2')format("woff");}.ff5f_c00001{font-family:ff5f_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60_c00001;src:url('chunks/assets/font_ff47fcc794198eb469e15f97.woff2')format("woff");}.ff60_c00001{font-family:ff60_c00001;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:ff61_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff61_c00001{font-family:ff61_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff62_c00001{font-family:ff62_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff63_c00001{font-family:ff63_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:ff64_c00001;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff64_c00001{font-family:ff64_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:ff65_c00001;src:url('chunks/assets/font_09ff3654b8096d7e461775b6.woff2')format("woff");}.ff65_c00001{font-family:ff65_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66_c00001;src:url('chunks/assets/font_35f86bc56636d9a6e95b65ed.woff2')format("woff");}.ff66_c00001{font-family:ff66_c00001;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:ff67_c00001;src:url('chunks/assets/font_1114ef166d72bc340dc60e3e.woff2')format("woff");}.ff67_c00001{font-family:ff67_c00001;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:ff68_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff68_c00001{font-family:ff68_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:ff69_c00001;src:url('chunks/assets/font_834287c587a0261775463387.woff2')format("woff");}.ff69_c00001{font-family:ff69_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a_c00001;src:url('chunks/assets/font_38a76132dd0024cdc3265518.woff2')format("woff");}.ff6a_c00001{font-family:ff6a_c00001;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:ff6b_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff6b_c00001{font-family:ff6b_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff6c_c00001{font-family:ff6c_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:ff6d_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff6d_c00001{font-family:ff6d_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:ff6e_c00001;src:url('chunks/assets/font_f028dc751e1ce69e95bb4fae.woff2')format("woff");}.ff6e_c00001{font-family:ff6e_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f_c00001;src:url('chunks/assets/font_4c8ebb23d2735a4c40a44f0e.woff2')format("woff");}.ff6f_c00001{font-family:ff6f_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff70_c00001{font-family:ff70_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff71_c00001{font-family:ff71_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:ff72_c00001;src:url('chunks/assets/font_ff8bb26d8ee83fc82f5e4fe3.woff2')format("woff");}.ff72_c00001{font-family:ff72_c00001;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:ff73_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff73_c00001{font-family:ff73_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:ff74_c00001;src:url('chunks/assets/font_d7b6d1fd56b2b0d3b023824f.woff2')format("woff");}.ff74_c00001{font-family:ff74_c00001;line-height:0.920000;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_6339e0efe38372d1422772bd.woff2')format("woff");}.ff75_c00001{font-family:ff75_c00001;line-height:1.134000;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_08e46f8ca632cafffa3030d4.woff2')format("woff");}.ff76_c00001{font-family:ff76_c00001;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:ff77_c00001;src:url('chunks/assets/font_b0bb31113a17709bdb7b8a58.woff2')format("woff");}.ff77_c00001{font-family:ff77_c00001;line-height:0.800000;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff78_c00001{font-family:ff78_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff79_c00001{font-family:ff79_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff7a_c00001{font-family:ff7a_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:ff7b_c00001;src:url('chunks/assets/font_44b470c33e04e456a02040ad.woff2')format("woff");}.ff7b_c00001{font-family:ff7b_c00001;line-height:0.920000;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff7c_c00001{font-family:ff7c_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:ff7d_c00001;src:url('chunks/assets/font_7488aa3543706956d81df6e2.woff2')format("woff");}.ff7d_c00001{font-family:ff7d_c00001;line-height:0.915000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e_c00001;src:url('chunks/assets/font_67990059b1ca07cbb0622ec3.woff2')format("woff");}.ff7e_c00001{font-family:ff7e_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f_c00001;src:url('chunks/assets/font_4349b2154106f1ac264f6a4f.woff2')format("woff");}.ff7f_c00001{font-family:ff7f_c00001;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:ff80_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff80_c00001{font-family:ff80_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff81_c00001{font-family:ff81_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:ff82_c00001;src:url('chunks/assets/font_212d5f316dec8434329250c2.woff2')format("woff");}.ff82_c00001{font-family:ff82_c00001;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83_c00001;src:url('chunks/assets/font_27cc7d93398194d4d0f158db.woff2')format("woff");}.ff83_c00001{font-family:ff83_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84_c00001;src:url('chunks/assets/font_144508603201880cb979e8d5.woff2')format("woff");}.ff84_c00001{font-family:ff84_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff85_c00001{font-family:ff85_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff86_c00001{font-family:ff86_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:ff87_c00001;src:url('chunks/assets/font_c04ce2760d93c65c48fc928e.woff2')format("woff");}.ff87_c00001{font-family:ff87_c00001;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88_c00001;src:url('chunks/assets/font_9132250a4f2f8c1aab4130f3.woff2')format("woff");}.ff88_c00001{font-family:ff88_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89_c00001;src:url('chunks/assets/font_1ebf5f13ace358f3ea4ce038.woff2')format("woff");}.ff89_c00001{font-family:ff89_c00001;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:ff8a_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff8a_c00001{font-family:ff8a_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff8b_c00001{font-family:ff8b_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:ff8c_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff8c_c00001{font-family:ff8c_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:ff8d_c00001;src:url('chunks/assets/font_c04ce2760d93c65c48fc928e.woff2')format("woff");}.ff8d_c00001{font-family:ff8d_c00001;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e_c00001;src:url('chunks/assets/font_9b4558636b5572f8d40f06f7.woff2')format("woff");}.ff8e_c00001{font-family:ff8e_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f_c00001;src:url('chunks/assets/font_759024232a9ec75c963cf7e9.woff2')format("woff");}.ff8f_c00001{font-family:ff8f_c00001;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:ff90_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff90_c00001{font-family:ff90_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff91_c00001{font-family:ff91_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:ff92_c00001;src:url('chunks/assets/font_dc654d50c0859b5c43bd7ad6.woff2')format("woff");}.ff92_c00001{font-family:ff92_c00001;line-height:0.813000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93_c00001;src:url('chunks/assets/font_0dc4337f149d694819cf64e9.woff2')format("woff");}.ff93_c00001{font-family:ff93_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94_c00001;src:url('chunks/assets/font_d8350152ed1fd08ba48418fb.woff2')format("woff");}.ff94_c00001{font-family:ff94_c00001;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:ff95_c00001;src:url('chunks/assets/font_f00084f751a4c0b81252756c.woff2')format("woff");}.ff95_c00001{font-family:ff95_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96_c00001;src:url('chunks/assets/font_ca8e5e0e8aaefad7d5bb8b43.woff2')format("woff");}.ff96_c00001{font-family:ff96_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff97_c00001;src:url('chunks/assets/font_b98f6239aa5c0a12df4ba89e.woff2')format("woff");}.ff97_c00001{font-family:ff97_c00001;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98_c00001;src:url('chunks/assets/font_d7ad9332e86bc085751301bc.woff2')format("woff");}.ff98_c00001{font-family:ff98_c00001;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff99_c00001{font-family:ff99_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff9a_c00001{font-family:ff9a_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:ff9b_c00001;src:url('chunks/assets/font_117a04748670fa6d5b3a5a5e.woff2')format("woff");}.ff9b_c00001{font-family:ff9b_c00001;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:ff9c_c00001;src:url('chunks/assets/font_f00084f751a4c0b81252756c.woff2')format("woff");}.ff9c_c00001{font-family:ff9c_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d_c00001;src:url('chunks/assets/font_adaa011ec7477ffa296d084d.woff2')format("woff");}.ff9d_c00001{font-family:ff9d_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e_c00001;src:url('chunks/assets/font_4d8984aa7b2048cab5ee4f85.woff2')format("woff");}.ff9e_c00001{font-family:ff9e_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff9f_c00001{font-family:ff9f_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0_c00001;src:url('chunks/assets/font_20d91460c9db998f249dc48d.woff2')format("woff");}.ffa0_c00001{font-family:ffa0_c00001;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1_c00001;src:url('chunks/assets/font_3c916bd5b35c218107f63ec1.woff2')format("woff");}.ffa1_c00001{font-family:ffa1_c00001;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa2_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffa2_c00001{font-family:ffa2_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa3_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffa3_c00001{font-family:ffa3_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:ffa4_c00001;src:url('chunks/assets/font_c0ea57570a5bd95646b484a3.woff2')format("woff");}.ffa4_c00001{font-family:ffa4_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5_c00001;src:url('chunks/assets/font_f64c34f108733716230fb025.woff2')format("woff");}.ffa5_c00001{font-family:ffa5_c00001;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6_c00001;src:url('chunks/assets/font_db0cdad21efee1dc6cb85669.woff2')format("woff");}.ffa6_c00001{font-family:ffa6_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:ffa7_c00001;src:url('chunks/assets/font_96cf40caa054f70c64927106.woff2')format("woff");}.ffa7_c00001{font-family:ffa7_c00001;line-height:0.849121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa8_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ffa8_c00001{font-family:ffa8_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9_c00001;src:url('chunks/assets/font_9473f612308659abc352a29d.woff2')format("woff");}.ffa9_c00001{font-family:ffa9_c00001;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:ffaa_c00001;src:url('chunks/assets/font_742a64b83fdf93f026d3c280.woff2')format("woff");}.ffaa_c00001{font-family:ffaa_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab_c00001;src:url('chunks/assets/font_51b2087646b36d12e099d9d4.woff2')format("woff");}.ffab_c00001{font-family:ffab_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffac_c00001;src:url('chunks/assets/font_9dd568ea2d61897d1d0acd90.woff2')format("woff");}.ffac_c00001{font-family:ffac_c00001;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:ffad_c00001;src:url('chunks/assets/font_d0eaddb3e18de02e361880d5.woff2')format("woff");}.ffad_c00001{font-family:ffad_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:ffae_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ffae_c00001{font-family:ffae_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:ffaf_c00001;src:url('chunks/assets/font_a7e334c0599e3c9f107e6e4c.woff2')format("woff");}.ffaf_c00001{font-family:ffaf_c00001;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb0_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ffb0_c00001{font-family:ffb0_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:ffb1_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ffb1_c00001{font-family:ffb1_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb2_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffb2_c00001{font-family:ffb2_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:ffb3_c00001;src:url('chunks/assets/font_794d29ca1cdd1118866d0159.woff2')format("woff");}.ffb3_c00001{font-family:ffb3_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb4_c00001;src:url('chunks/assets/font_9420978a3b7fe68560ec757f.woff2')format("woff");}.ffb4_c00001{font-family:ffb4_c00001;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:ffb5_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffb5_c00001{font-family:ffb5_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffb6_c00001{font-family:ffb6_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:ffb7_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ffb7_c00001{font-family:ffb7_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8_c00001;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ffb8_c00001{font-family:ffb8_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:ffb9_c00001;src:url('chunks/assets/font_bdf6640708c12b0ed5733f3f.woff2')format("woff");}.ffb9_c00001{font-family:ffb9_c00001;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba_c00001;src:url('chunks/assets/font_11d51de8556bab92c18d033e.woff2')format("woff");}.ffba_c00001{font-family:ffba_c00001;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb_c00001;src:url('chunks/assets/font_da288b3fd542e5c2c7cb7004.woff2')format("woff");}.ffbb_c00001{font-family:ffbb_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc_c00001;src:url('chunks/assets/font_b17be611602531c344368b65.woff2')format("woff");}.ffbc_c00001{font-family:ffbc_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd_c00001;src:url('chunks/assets/font_4472afde2515552154b51cb7.woff2')format("woff");}.ffbd_c00001{font-family:ffbd_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:ffbe_c00001;src:url('chunks/assets/font_f889b986d6a0ad341b18cc0f.woff2')format("woff");}.ffbe_c00001{font-family:ffbe_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbf_c00001;src:url('chunks/assets/font_b8d6eba40f99c1ed403e60fb.woff2')format("woff");}.ffbf_c00001{font-family:ffbf_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0_c00001;src:url('chunks/assets/font_7a1de03b9ab9d4a2941e80ad.woff2')format("woff");}.ffc0_c00001{font-family:ffc0_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:ffc1_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ffc1_c00001{font-family:ffc1_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:ffc2_c00001;src:url('chunks/assets/font_cf526a1fe0fa5403c3d04cb5.woff2')format("woff");}.ffc2_c00001{font-family:ffc2_c00001;line-height:0.869629;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3_c00001;src:url('chunks/assets/font_5a418c95f1d32b3e3a6c9ade.woff2')format("woff");}.ffc3_c00001{font-family:ffc3_c00001;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:ffc4_c00001;src:url('chunks/assets/font_d07f86cf60d421d138df3c55.woff2')format("woff");}.ffc4_c00001{font-family:ffc4_c00001;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:ffc5_c00001;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ffc5_c00001{font-family:ffc5_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6_c00001;src:url('chunks/assets/font_4a246798fbee746d9dd9091a.woff2')format("woff");}.ffc6_c00001{font-family:ffc6_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7_c00001;src:url('chunks/assets/font_f61c2e8e614571412287e2c2.woff2')format("woff");}.ffc7_c00001{font-family:ffc7_c00001;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:ffc8_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffc8_c00001{font-family:ffc8_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc9_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffc9_c00001{font-family:ffc9_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:ffca_c00001;src:url('chunks/assets/font_08f3c81ece54277de57e15a7.woff2')format("woff");}.ffca_c00001{font-family:ffca_c00001;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffcb_c00001{font-family:ffcb_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:ffcc_c00001;src:url('chunks/assets/font_44f0682f77356c564523344e.woff2')format("woff");}.ffcc_c00001{font-family:ffcc_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:ffcd_c00001;src:url('chunks/assets/font_e2382477c056ed5ad1688a94.woff2')format("woff");}.ffcd_c00001{font-family:ffcd_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffce_c00001;src:url('chunks/assets/font_8ce912b079db578d4e3b0f6e.woff2')format("woff");}.ffce_c00001{font-family:ffce_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ffcf_c00001{font-family:ffcf_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:ffd0_c00001;src:url('chunks/assets/font_2b187cbe3a6c6f1bcceb9e4d.woff2')format("woff");}.ffd0_c00001{font-family:ffd0_c00001;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ffd1_c00001{font-family:ffd1_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2_c00001;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ffd2_c00001{font-family:ffd2_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd3_c00001;src:url('chunks/assets/font_e8e816f3c4dac88d2d04896c.woff2')format("woff");}.ffd3_c00001{font-family:ffd3_c00001;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:ffd4_c00001;src:url('chunks/assets/font_c1bc3e9399dfed55c829fbfa.woff2')format("woff");}.ffd4_c00001{font-family:ffd4_c00001;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:ffd5_c00001;src:url('chunks/assets/font_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ffd5_c00001{font-family:ffd5_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6_c00001;src:url('chunks/assets/font_acb7e79e66daae6ba48a436e.woff2')format("woff");}.ffd6_c00001{font-family:ffd6_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd7_c00001;src:url('chunks/assets/font_deca3cb3354f3468c1f1247a.woff2')format("woff");}.ffd7_c00001{font-family:ffd7_c00001;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:ffd8_c00001;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ffd8_c00001{font-family:ffd8_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:ffd9_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffd9_c00001{font-family:ffd9_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:ffda_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ffda_c00001{font-family:ffda_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:ffdb_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffdb_c00001{font-family:ffdb_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:ffdc_c00001;src:url('chunks/assets/font_8827e1d162f68980f1db38d9.woff2')format("woff");}.ffdc_c00001{font-family:ffdc_c00001;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdd_c00001;src:url('chunks/assets/font_580bc82015fd9a9a83880344.woff2')format("woff");}.ffdd_c00001{font-family:ffdd_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffde_c00001;src:url('chunks/assets/font_91f413f663f6ba6638701928.woff2')format("woff");}.ffde_c00001{font-family:ffde_c00001;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:ffdf_c00001;src:url('chunks/assets/font_b08a74ebd52ce8cf7fe5ac44.woff2')format("woff");}.ffdf_c00001{font-family:ffdf_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe0_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ffe0_c00001{font-family:ffe0_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:ffe1_c00001;src:url('chunks/assets/font_f4521f6cce831e048314ad05.woff2')format("woff");}.ffe1_c00001{font-family:ffe1_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe2_c00001;src:url('chunks/assets/font_485598088efb243c6718e00d.woff2')format("woff");}.ffe2_c00001{font-family:ffe2_c00001;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:ffe3_c00001;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ffe3_c00001{font-family:ffe3_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:ffe4_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffe4_c00001{font-family:ffe4_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:ffe5_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffe5_c00001{font-family:ffe5_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:ffe6_c00001;src:url('chunks/assets/font_43476e81870393f8fe5f8917.woff2')format("woff");}.ffe6_c00001{font-family:ffe6_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe7_c00001;src:url('chunks/assets/font_16504b29d9f8b34fc2fe4649.woff2')format("woff");}.ffe7_c00001{font-family:ffe7_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe8_c00001;src:url('chunks/assets/font_26c14f02361e50e41e934c8c.woff2')format("woff");}.ffe8_c00001{font-family:ffe8_c00001;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:ffe9_c00001;src:url('chunks/assets/font_881e1cfa96b2a1859a0f13a9.woff2')format("woff");}.ffe9_c00001{font-family:ffe9_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffea_c00001;src:url('chunks/assets/font_c948731df58bbe92ef6f909a.woff2')format("woff");}.ffea_c00001{font-family:ffea_c00001;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffeb_c00001;src:url('chunks/assets/font_1249dd4b303099ec4508aafc.woff2')format("woff");}.ffeb_c00001{font-family:ffeb_c00001;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:ffec_c00001;src:url('chunks/assets/font_33db0a8159615afa8b651791.woff2')format("woff");}.ffec_c00001{font-family:ffec_c00001;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffed_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffed_c00001{font-family:ffed_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:ffee_c00001;src:url('chunks/assets/font_d4211ae99825ce1365b0ccd7.woff2')format("woff");}.ffee_c00001{font-family:ffee_c00001;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:ffef_c00001;src:url('chunks/assets/font_b1fb82911cebf53e406c574a.woff2')format("woff");}.ffef_c00001{font-family:ffef_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff0_c00001;src:url('chunks/assets/font_f022f6557e75952ea4d82fd0.woff2')format("woff");}.fff0_c00001{font-family:fff0_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff1_c00001;src:url('chunks/assets/font_a8cfa77076219997958ab74b.woff2')format("woff");}.fff1_c00001{font-family:fff1_c00001;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:fff2_c00001;src:url('chunks/assets/font_2326393e9580a91683872776.woff2')format("woff");}.fff2_c00001{font-family:fff2_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff3_c00001;src:url('chunks/assets/font_5946eca49aee71a562fcf007.woff2')format("woff");}.fff3_c00001{font-family:fff3_c00001;line-height:0.876465;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff4_c00001;src:url('chunks/assets/font_c95fc3d9575cee14708bbdf0.woff2')format("woff");}.fff4_c00001{font-family:fff4_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff5_c00001;src:url('chunks/assets/font_17102c3705bec70bf11f1263.woff2')format("woff");}.fff5_c00001{font-family:fff5_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff6_c00001;src:url('chunks/assets/font_580bc82015fd9a9a83880344.woff2')format("woff");}.fff6_c00001{font-family:fff6_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff7_c00001;src:url('chunks/assets/font_9877cc4ca94fd090c8646d74.woff2')format("woff");}.fff7_c00001{font-family:fff7_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff8_c00001;src:url('chunks/assets/font_835424c4d76551ee9043c4df.woff2')format("woff");}.fff8_c00001{font-family:fff8_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff9_c00001;src:url('chunks/assets/font_ee18a19922d2a8dd9447043d.woff2')format("woff");}.fff9_c00001{font-family:fff9_c00001;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:fffa_c00001;src:url('chunks/assets/font_a160e2c8394190a86c430fb3.woff2')format("woff");}.fffa_c00001{font-family:fffa_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffb_c00001;src:url('chunks/assets/font_563398639a00ca8b504e3f0c.woff2')format("woff");}.fffb_c00001{font-family:fffb_c00001;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffc_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.fffc_c00001{font-family:fffc_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:fffd_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.fffd_c00001{font-family:fffd_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffe_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.fffe_c00001{font-family:fffe_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:ffff_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffff_c00001{font-family:ffff_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:ff100_c00001;src:url('chunks/assets/font_ee12e93f7494e2858bf0b4a6.woff2')format("woff");}.ff100_c00001{font-family:ff100_c00001;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:ff101_c00001;src:url('chunks/assets/font_7d0be233b7023b31daaf8d28.woff2')format("woff");}.ff101_c00001{font-family:ff101_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff102_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff102_c00001{font-family:ff102_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:ff103_c00001;src:url('chunks/assets/font_5ced7f5034bf8d6b395afedb.woff2')format("woff");}.ff103_c00001{font-family:ff103_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff104_c00001;src:url('chunks/assets/font_28e53c51ada900cca4d0af11.woff2')format("woff");}.ff104_c00001{font-family:ff104_c00001;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:ff105_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff105_c00001{font-family:ff105_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff106_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff106_c00001{font-family:ff106_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:ff107_c00001;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff107_c00001{font-family:ff107_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:ff108_c00001;src:url('chunks/assets/font_6661b9a5a5de2ab86cc5c6d8.woff2')format("woff");}.ff108_c00001{font-family:ff108_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff109_c00001;src:url('chunks/assets/font_b07676947d251e14750028b6.woff2')format("woff");}.ff109_c00001{font-family:ff109_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:ff10a_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff10a_c00001{font-family:ff10a_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:ff10b_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff10b_c00001{font-family:ff10b_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10c_c00001;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff10c_c00001{font-family:ff10c_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10d_c00001;src:url('chunks/assets/font_dd32ca51f5498caa74d6ec73.woff2')format("woff");}.ff10d_c00001{font-family:ff10d_c00001;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10e_c00001;src:url('chunks/assets/font_6688f9055b1bf66ae2c6351f.woff2')format("woff");}.ff10e_c00001{font-family:ff10e_c00001;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:ff10f_c00001;src:url('chunks/assets/font_ab80c162b41c4e933f5308bb.woff2')format("woff");}.ff10f_c00001{font-family:ff10f_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff110_c00001;src:url('chunks/assets/font_8937f00c60f1d3d2a1645430.woff2')format("woff");}.ff110_c00001{font-family:ff110_c00001;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:ff111_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff111_c00001{font-family:ff111_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:ff112_c00001;src:url('chunks/assets/font_f87cdda1f05963d572d8aea3.woff2')format("woff");}.ff112_c00001{font-family:ff112_c00001;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff113_c00001;src:url('chunks/assets/font_01255e6c6eb74ec6b1047f85.woff2')format("woff");}.ff113_c00001{font-family:ff113_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:ff114_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff114_c00001{font-family:ff114_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:ff115_c00001;src:url('chunks/assets/font_7a2663c7a81afb26f1aa76c3.woff2')format("woff");}.ff115_c00001{font-family:ff115_c00001;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:ff116_c00001;src:url('chunks/assets/font_0d0e8670e03f4d8c77866828.woff2')format("woff");}.ff116_c00001{font-family:ff116_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff117_c00001;src:url('chunks/assets/font_7d244aa3ac6f438492ac4cbf.woff2')format("woff");}.ff117_c00001{font-family:ff117_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff118_c00001;src:url('chunks/assets/font_52825fe834e86c452aa3af48.woff2')format("woff");}.ff118_c00001{font-family:ff118_c00001;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:ff119_c00001;src:url('chunks/assets/font_2326393e9580a91683872776.woff2')format("woff");}.ff119_c00001{font-family:ff119_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11a_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff11a_c00001{font-family:ff11a_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11b_c00001;src:url('chunks/assets/font_16a4b1499b8704d5aea7555d.woff2')format("woff");}.ff11b_c00001{font-family:ff11b_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11c_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff11c_c00001{font-family:ff11c_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:ff11d_c00001;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff11d_c00001{font-family:ff11d_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:ff11e_c00001;src:url('chunks/assets/font_14d20dad2ae691a04786d303.woff2')format("woff");}.ff11e_c00001{font-family:ff11e_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:ff11f_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff11f_c00001{font-family:ff11f_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:ff120_c00001;src:url('chunks/assets/font_05b2a02e660e03ab2d63b165.woff2')format("woff");}.ff120_c00001{font-family:ff120_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff121_c00001;src:url('chunks/assets/font_23edfb0eb6a61e364e5b909c.woff2')format("woff");}.ff121_c00001{font-family:ff121_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:ff122_c00001;src:url('chunks/assets/font_5ce90a5f952f661d3cdfaf50.woff2')format("woff");}.ff122_c00001{font-family:ff122_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:ff123_c00001;src:url('chunks/assets/font_f1acd4effe9679a83591857b.woff2')format("woff");}.ff123_c00001{font-family:ff123_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff124_c00001;src:url('chunks/assets/font_5e0f191a4e4acf03b8e56d43.woff2')format("woff");}.ff124_c00001{font-family:ff124_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff125_c00001;src:url('chunks/assets/font_bc0a4e216a4b90c110b6130a.woff2')format("woff");}.ff125_c00001{font-family:ff125_c00001;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:ff126_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff126_c00001{font-family:ff126_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:ff127_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff127_c00001{font-family:ff127_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff128_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff128_c00001{font-family:ff128_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:ff129_c00001;src:url('chunks/assets/font_2326393e9580a91683872776.woff2')format("woff");}.ff129_c00001{font-family:ff129_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12a_c00001;src:url('chunks/assets/font_bc84aa048326958b97318041.woff2')format("woff");}.ff12a_c00001{font-family:ff12a_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:ff12b_c00001;src:url('chunks/assets/font_fbdb38dcd3a8a821ff1b495a.woff2')format("woff");}.ff12b_c00001{font-family:ff12b_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:ff12c_c00001;src:url('chunks/assets/font_95ebf6883fe057db3370a983.woff2')format("woff");}.ff12c_c00001{font-family:ff12c_c00001;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:ff12d_c00001;src:url('chunks/assets/font_ab0be06057f2af8034d9f040.woff2')format("woff");}.ff12d_c00001{font-family:ff12d_c00001;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12e_c00001;src:url('chunks/assets/font_ab491244c6aae10bbee364d2.woff2')format("woff");}.ff12e_c00001{font-family:ff12e_c00001;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12f_c00001;src:url('chunks/assets/font_b142aa45ff64b5442bb27c40.woff2')format("woff");}.ff12f_c00001{font-family:ff12f_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff130_c00001;src:url('chunks/assets/font_9900a57aec5b5733b77ce453.woff2')format("woff");}.ff130_c00001{font-family:ff130_c00001;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:ff131_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff131_c00001{font-family:ff131_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff132_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff132_c00001{font-family:ff132_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:ff133_c00001;src:url('chunks/assets/font_09ba9d496da08ac2e8277c41.woff2')format("woff");}.ff133_c00001{font-family:ff133_c00001;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:ff134_c00001;src:url('chunks/assets/font_471bb36ab7eb7903704de4e2.woff2')format("woff");}.ff134_c00001{font-family:ff134_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff135_c00001;src:url('chunks/assets/font_6661b9a5a5de2ab86cc5c6d8.woff2')format("woff");}.ff135_c00001{font-family:ff135_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff136_c00001;src:url('chunks/assets/font_bda441c44f540c519fe2eddb.woff2')format("woff");}.ff136_c00001{font-family:ff136_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff137_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff137_c00001{font-family:ff137_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:ff138_c00001;src:url('chunks/assets/font_f00df3aaf9f13deeb41d18df.woff2')format("woff");}.ff138_c00001{font-family:ff138_c00001;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:ff139_c00001;src:url('chunks/assets/font_97b53526e4e9ed3494e72c10.woff2')format("woff");}.ff139_c00001{font-family:ff139_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13a_c00001;src:url('chunks/assets/font_799ed37fea18e4fe9d7abc52.woff2')format("woff");}.ff13a_c00001{font-family:ff13a_c00001;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:ff13b_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff13b_c00001{font-family:ff13b_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13c_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff13c_c00001{font-family:ff13c_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:ff13d_c00001;src:url('chunks/assets/font_68ed540a3ddddad38f3406f4.woff2')format("woff");}.ff13d_c00001{font-family:ff13d_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:ff13e_c00001;src:url('chunks/assets/font_3ee33cf63243fce1773f6553.woff2')format("woff");}.ff13e_c00001{font-family:ff13e_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13f_c00001;src:url('chunks/assets/font_dfe92f7ab0b212537a00461d.woff2')format("woff");}.ff13f_c00001{font-family:ff13f_c00001;line-height:0.684570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff140_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff140_c00001{font-family:ff140_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:ff141_c00001;src:url('chunks/assets/font_63f18429fa6821ab7d982661.woff2')format("woff");}.ff141_c00001{font-family:ff141_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:ff142_c00001;src:url('chunks/assets/font_5805050c75feb861582c0be9.woff2')format("woff");}.ff142_c00001{font-family:ff142_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:ff143_c00001;src:url('chunks/assets/font_f0a7e970a47541189bf97477.woff2')format("woff");}.ff143_c00001{font-family:ff143_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:ff144_c00001;src:url('chunks/assets/font_a1fec13ad2b10f005443eb4d.woff2')format("woff");}.ff144_c00001{font-family:ff144_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff145_c00001;src:url('chunks/assets/font_7741d85d328627716fb774aa.woff2')format("woff");}.ff145_c00001{font-family:ff145_c00001;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff146_c00001;src:url('chunks/assets/font_8bf4e2316a94db606ad9a823.woff2')format("woff");}.ff146_c00001{font-family:ff146_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff147_c00001;src:url('chunks/assets/font_7a1de03b9ab9d4a2941e80ad.woff2')format("woff");}.ff147_c00001{font-family:ff147_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:ff148_c00001;src:url('chunks/assets/font_104644fcdbbde8fe7e1737e1.woff2')format("woff");}.ff148_c00001{font-family:ff148_c00001;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:ff149_c00001;src:url('chunks/assets/font_c1d7f602f4da378e1402ad79.woff2')format("woff");}.ff149_c00001{font-family:ff149_c00001;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:ff14a_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff14a_c00001{font-family:ff14a_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:ff14b_c00001;src:url('chunks/assets/font_33c6e4009ca39e6a605b12e0.woff2')format("woff");}.ff14b_c00001{font-family:ff14b_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14c_c00001;src:url('chunks/assets/font_36deac1da9183aea2b6f13f2.woff2')format("woff");}.ff14c_c00001{font-family:ff14c_c00001;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:ff14d_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff14d_c00001{font-family:ff14d_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14e_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff14e_c00001{font-family:ff14e_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:ff14f_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff14f_c00001{font-family:ff14f_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:ff150_c00001;src:url('chunks/assets/font_7816e95ce2cc6fc8eb44f656.woff2')format("woff");}.ff150_c00001{font-family:ff150_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff151_c00001;src:url('chunks/assets/font_6661b9a5a5de2ab86cc5c6d8.woff2')format("woff");}.ff151_c00001{font-family:ff151_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff152_c00001;src:url('chunks/assets/font_f1acd4effe9679a83591857b.woff2')format("woff");}.ff152_c00001{font-family:ff152_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff153_c00001;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff153_c00001{font-family:ff153_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:ff154_c00001;src:url('chunks/assets/font_cf6e9dbe654920bbfd9fb32d.woff2')format("woff");}.ff154_c00001{font-family:ff154_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff155_c00001;src:url('chunks/assets/font_af9d50f8a54d7c5124953119.woff2')format("woff");}.ff155_c00001{font-family:ff155_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff156_c00001;src:url('chunks/assets/font_abee698fd362175d29b7cc8b.woff2')format("woff");}.ff156_c00001{font-family:ff156_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:ff157_c00001;src:url('chunks/assets/font_35f86bc56636d9a6e95b65ed.woff2')format("woff");}.ff157_c00001{font-family:ff157_c00001;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:ff158_c00001;src:url('chunks/assets/font_cff7c1c853c939cdf21711c1.woff2')format("woff");}.ff158_c00001{font-family:ff158_c00001;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff159_c00001;src:url('chunks/assets/font_dcdab887604929e763539fb8.woff2')format("woff");}.ff159_c00001{font-family:ff159_c00001;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15a_c00001;src:url('chunks/assets/font_4bd371c2de7ffb4d8bce917a.woff2')format("woff");}.ff15a_c00001{font-family:ff15a_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:ff15b_c00001;src:url('chunks/assets/font_d547a4ce7d3cdbd0d8e4d2d9.woff2')format("woff");}.ff15b_c00001{font-family:ff15b_c00001;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15c_c00001;src:url('chunks/assets/font_28f90982fd62c1763b66bca0.woff2')format("woff");}.ff15c_c00001{font-family:ff15c_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:ff15d_c00001;src:url('chunks/assets/font_7f2647ce3f0ceda72f8f7b27.woff2')format("woff");}.ff15d_c00001{font-family:ff15d_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15e_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff15e_c00001{font-family:ff15e_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:ff15f_c00001;src:url('chunks/assets/font_1dae184e5f882c731e82e6a3.woff2')format("woff");}.ff15f_c00001{font-family:ff15f_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff160_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff160_c00001{font-family:ff160_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:ff161_c00001;src:url('chunks/assets/font_53ab5a9c8262ef064d6b5931.woff2')format("woff");}.ff161_c00001{font-family:ff161_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff162_c00001;src:url('chunks/assets/font_ef541a2a987402a6f6b2df47.woff2')format("woff");}.ff162_c00001{font-family:ff162_c00001;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff163_c00001;src:url('chunks/assets/font_e1e51633c77fa178b5f8c571.woff2')format("woff");}.ff163_c00001{font-family:ff163_c00001;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff164_c00001;src:url('chunks/assets/font_68e8d247707acc9201a94017.woff2')format("woff");}.ff164_c00001{font-family:ff164_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff165_c00001;src:url('chunks/assets/font_a8f9cded26685aa743de0262.woff2')format("woff");}.ff165_c00001{font-family:ff165_c00001;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:ff166_c00001;src:url('chunks/assets/font_79dd0861699592878e4e5a95.woff2')format("woff");}.ff166_c00001{font-family:ff166_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff167_c00001;src:url('chunks/assets/font_19711beeec508f7080eec51d.woff2')format("woff");}.ff167_c00001{font-family:ff167_c00001;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:ff168_c00001;src:url('chunks/assets/font_53500e7a3b176b3be0781755.woff2')format("woff");}.ff168_c00001{font-family:ff168_c00001;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff169_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff169_c00001{font-family:ff169_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:ff16a_c00001;src:url('chunks/assets/font_ade43eedf012bfaf65b8c334.woff2')format("woff");}.ff16a_c00001{font-family:ff16a_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16b_c00001;src:url('chunks/assets/font_580bc82015fd9a9a83880344.woff2')format("woff");}.ff16b_c00001{font-family:ff16b_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16c_c00001;src:url('chunks/assets/font_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff16c_c00001{font-family:ff16c_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16d_c00001;src:url('chunks/assets/font_83ff61e87ed65f62afe50793.woff2')format("woff");}.ff16d_c00001{font-family:ff16d_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16e_c00001;src:url('chunks/assets/font_db75e380446b66a94360f16c.woff2')format("woff");}.ff16e_c00001{font-family:ff16e_c00001;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:ff16f_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff16f_c00001{font-family:ff16f_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff170_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff170_c00001{font-family:ff170_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:ff171_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff171_c00001{font-family:ff171_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:ff172_c00001;src:url('chunks/assets/font_580bc82015fd9a9a83880344.woff2')format("woff");}.ff172_c00001{font-family:ff172_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff173_c00001;src:url('chunks/assets/font_2d603dce743d8d2f78dce9f0.woff2')format("woff");}.ff173_c00001{font-family:ff173_c00001;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:ff174_c00001;src:url('chunks/assets/font_b42de6b60b4a50d63046018f.woff2')format("woff");}.ff174_c00001{font-family:ff174_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff175_c00001;src:url('chunks/assets/font_dcf8dfb880715ccf94bd4331.woff2')format("woff");}.ff175_c00001{font-family:ff175_c00001;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:ff176_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff176_c00001{font-family:ff176_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff177_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff177_c00001{font-family:ff177_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:ff178_c00001;src:url('chunks/assets/font_6429b9504af299937ce693c6.woff2')format("woff");}.ff178_c00001{font-family:ff178_c00001;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:ff179_c00001;src:url('chunks/assets/font_f3c9ac0f0fba328b0d3f756c.woff2')format("woff");}.ff179_c00001{font-family:ff179_c00001;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:ff17a_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff17a_c00001{font-family:ff17a_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:ff17b_c00001;src:url('chunks/assets/font_ff1e2b4a75798ce2a8b734a4.woff2')format("woff");}.ff17b_c00001{font-family:ff17b_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17c_c00001;src:url('chunks/assets/font_80171f0ded097e3ab58dfa71.woff2')format("woff");}.ff17c_c00001{font-family:ff17c_c00001;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:ff17d_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff17d_c00001{font-family:ff17d_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17e_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff17e_c00001{font-family:ff17e_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:ff17f_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff17f_c00001{font-family:ff17f_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:ff180_c00001;src:url('chunks/assets/font_0d0f07bcf1b7ce030255ac8e.woff2')format("woff");}.ff180_c00001{font-family:ff180_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff181_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff181_c00001{font-family:ff181_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff182_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff182_c00001{font-family:ff182_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:ff183_c00001;src:url('chunks/assets/font_abc36b35d289eb8c23cc5792.woff2')format("woff");}.ff183_c00001{font-family:ff183_c00001;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:ff184_c00001;src:url('chunks/assets/font_05bdfa384b5e20662993678f.woff2')format("woff");}.ff184_c00001{font-family:ff184_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff185_c00001;src:url('chunks/assets/font_37d0c3107858a7de0e9169fc.woff2')format("woff");}.ff185_c00001{font-family:ff185_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff186_c00001;src:url('chunks/assets/font_84bac3aed67c4bb82388efb4.woff2')format("woff");}.ff186_c00001{font-family:ff186_c00001;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:ff187_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff187_c00001{font-family:ff187_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff188_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff188_c00001{font-family:ff188_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:ff189_c00001;src:url('chunks/assets/font_6152660e3c9e4b536284c95a.woff2')format("woff");}.ff189_c00001{font-family:ff189_c00001;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:ff18a_c00001;src:url('chunks/assets/font_3fd7872d2b5c850744576cbe.woff2')format("woff");}.ff18a_c00001{font-family:ff18a_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18b_c00001;src:url('chunks/assets/font_60a9e3576dfbb1cb1c773103.woff2')format("woff");}.ff18b_c00001{font-family:ff18b_c00001;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:ff18c_c00001;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff18c_c00001{font-family:ff18c_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:ff18d_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff18d_c00001{font-family:ff18d_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:ff18e_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff18e_c00001{font-family:ff18e_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18f_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff18f_c00001{font-family:ff18f_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:ff190_c00001;src:url('chunks/assets/font_2d603dce743d8d2f78dce9f0.woff2')format("woff");}.ff190_c00001{font-family:ff190_c00001;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:ff191_c00001;src:url('chunks/assets/font_ec29e32593f249aa5a741b20.woff2')format("woff");}.ff191_c00001{font-family:ff191_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff192_c00001;src:url('chunks/assets/font_01e3a4229a950dfa21d8534a.woff2')format("woff");}.ff192_c00001{font-family:ff192_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff193_c00001;src:url('chunks/assets/font_402c77d1afd14a126b8a3de7.woff2')format("woff");}.ff193_c00001{font-family:ff193_c00001;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:ff194_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff194_c00001{font-family:ff194_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff195_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff195_c00001{font-family:ff195_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:ff196_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff196_c00001{font-family:ff196_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:ff197_c00001;src:url('chunks/assets/font_7488aa3543706956d81df6e2.woff2')format("woff");}.ff197_c00001{font-family:ff197_c00001;line-height:0.915000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff198_c00001;src:url('chunks/assets/font_b131612d9fd077b47c94937a.woff2')format("woff");}.ff198_c00001{font-family:ff198_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff199_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff199_c00001{font-family:ff199_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:ff19a_c00001;src:url('chunks/assets/font_0caae4d152f346a7e4c708b7.woff2')format("woff");}.ff19a_c00001{font-family:ff19a_c00001;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:ff19b_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff19b_c00001{font-family:ff19b_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:ff19c_c00001;src:url('chunks/assets/font_437cb7b040b0dc52b5553b9c.woff2')format("woff");}.ff19c_c00001{font-family:ff19c_c00001;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:ff19d_c00001;src:url('chunks/assets/font_eadf8c99db81e25a69d01333.woff2')format("woff");}.ff19d_c00001{font-family:ff19d_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19e_c00001;src:url('chunks/assets/font_db8f0c697a86ece08b08832d.woff2')format("woff");}.ff19e_c00001{font-family:ff19e_c00001;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:ff19f_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff19f_c00001{font-family:ff19f_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a0_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1a0_c00001{font-family:ff1a0_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:ff1a1_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff1a1_c00001{font-family:ff1a1_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:ff1a2_c00001;src:url('chunks/assets/font_70410f8d7415fc4429255eac.woff2')format("woff");}.ff1a2_c00001{font-family:ff1a2_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a3_c00001;src:url('chunks/assets/font_482353a151cc09826b0532ec.woff2')format("woff");}.ff1a3_c00001{font-family:ff1a3_c00001;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:ff1a4_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1a4_c00001{font-family:ff1a4_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a5_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1a5_c00001{font-family:ff1a5_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:ff1a6_c00001;src:url('chunks/assets/font_9b51b99628c5ddd2fa86a062.woff2')format("woff");}.ff1a6_c00001{font-family:ff1a6_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a7_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff1a7_c00001{font-family:ff1a7_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:ff1a8_c00001;src:url('chunks/assets/font_e76fa4a288d1510358fd36cd.woff2')format("woff");}.ff1a8_c00001{font-family:ff1a8_c00001;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:ff1a9_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff1a9_c00001{font-family:ff1a9_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:ff1aa_c00001;src:url('chunks/assets/font_2f9bc8bd40f32204af6088a8.woff2')format("woff");}.ff1aa_c00001{font-family:ff1aa_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ab_c00001;src:url('chunks/assets/font_dbe8de694a951152f7e828e8.woff2')format("woff");}.ff1ab_c00001{font-family:ff1ab_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ac_c00001;src:url('chunks/assets/font_653e12c14606f0e6a293de3e.woff2')format("woff");}.ff1ac_c00001{font-family:ff1ac_c00001;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:ff1ad_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1ad_c00001{font-family:ff1ad_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ae_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1ae_c00001{font-family:ff1ae_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:ff1af_c00001;src:url('chunks/assets/font_cffcb6865ca8f3fa68ac77ef.woff2')format("woff");}.ff1af_c00001{font-family:ff1af_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b0_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff1b0_c00001{font-family:ff1b0_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:ff1b1_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff1b1_c00001{font-family:ff1b1_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b2_c00001;src:url('chunks/assets/font_4df70e703f973ef4ab01743a.woff2')format("woff");}.ff1b2_c00001{font-family:ff1b2_c00001;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:ff1b3_c00001;src:url('chunks/assets/font_d38cfcb09ea6d8bcb17b1329.woff2')format("woff");}.ff1b3_c00001{font-family:ff1b3_c00001;line-height:0.781000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b4_c00001;src:url('chunks/assets/font_0d8a7d088ccd3e7f7977a68a.woff2')format("woff");}.ff1b4_c00001{font-family:ff1b4_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b5_c00001;src:url('chunks/assets/font_653c00b80dbd7eaad5b5c992.woff2')format("woff");}.ff1b5_c00001{font-family:ff1b5_c00001;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:ff1b6_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1b6_c00001{font-family:ff1b6_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b7_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1b7_c00001{font-family:ff1b7_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:ff1b8_c00001;src:url('chunks/assets/font_a5da0a4f9b461b9fe27df673.woff2')format("woff");}.ff1b8_c00001{font-family:ff1b8_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b9_c00001;src:url('chunks/assets/font_7be4bbf45d338d9894f44433.woff2')format("woff");}.ff1b9_c00001{font-family:ff1b9_c00001;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:ff1ba_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1ba_c00001{font-family:ff1ba_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bb_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1bb_c00001{font-family:ff1bb_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:ff1bc_c00001;src:url('chunks/assets/font_9381b6494c88c38445948d52.woff2')format("woff");}.ff1bc_c00001{font-family:ff1bc_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bd_c00001;src:url('chunks/assets/font_f16fe67bf77d00b56e4997e0.woff2')format("woff");}.ff1bd_c00001{font-family:ff1bd_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1be_c00001;src:url('chunks/assets/font_83b21bfa833c452f686ac2a3.woff2')format("woff");}.ff1be_c00001{font-family:ff1be_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bf_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff1bf_c00001{font-family:ff1bf_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:ff1c0_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1c0_c00001{font-family:ff1c0_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c1_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1c1_c00001{font-family:ff1c1_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:ff1c2_c00001;src:url('chunks/assets/font_7520b3f4a555a707ff17777a.woff2')format("woff");}.ff1c2_c00001{font-family:ff1c2_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c3_c00001;src:url('chunks/assets/font_3e0caaa512db6114cee6097c.woff2')format("woff");}.ff1c3_c00001{font-family:ff1c3_c00001;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:ff1c4_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff1c4_c00001{font-family:ff1c4_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:ff1c5_c00001;src:url('chunks/assets/font_992b2b428d7a72f71101274e.woff2')format("woff");}.ff1c5_c00001{font-family:ff1c5_c00001;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:ff1c6_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff1c6_c00001{font-family:ff1c6_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:ff1c7_c00001;src:url('chunks/assets/font_437cb7b040b0dc52b5553b9c.woff2')format("woff");}.ff1c7_c00001{font-family:ff1c7_c00001;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:ff1c8_c00001;src:url('chunks/assets/font_fc453e501bd8e6462fa78080.woff2')format("woff");}.ff1c8_c00001{font-family:ff1c8_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c9_c00001;src:url('chunks/assets/font_2e5ce90a030c540189559ba2.woff2')format("woff");}.ff1c9_c00001{font-family:ff1c9_c00001;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:ff1ca_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1ca_c00001{font-family:ff1ca_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cb_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1cb_c00001{font-family:ff1cb_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:ff1cc_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff1cc_c00001{font-family:ff1cc_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:ff1cd_c00001;src:url('chunks/assets/font_c24754bfac6f92a7cef8f151.woff2')format("woff");}.ff1cd_c00001{font-family:ff1cd_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ce_c00001;src:url('chunks/assets/font_e8e11b93c360b08882b2d0a1.woff2')format("woff");}.ff1ce_c00001{font-family:ff1ce_c00001;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:ff1cf_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1cf_c00001{font-family:ff1cf_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d0_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1d0_c00001{font-family:ff1d0_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:ff1d1_c00001;src:url('chunks/assets/font_d3d1679b02bfc61586b74093.woff2')format("woff");}.ff1d1_c00001{font-family:ff1d1_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d2_c00001;src:url('chunks/assets/font_a38bc6c0b2fe1f5e1aa64070.woff2')format("woff");}.ff1d2_c00001{font-family:ff1d2_c00001;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:ff1d3_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1d3_c00001{font-family:ff1d3_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d4_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1d4_c00001{font-family:ff1d4_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:ff1d5_c00001;src:url('chunks/assets/font_cce9b67933079e3cac7d05f2.woff2')format("woff");}.ff1d5_c00001{font-family:ff1d5_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d6_c00001;src:url('chunks/assets/font_72066f1de14021781fdad57f.woff2')format("woff");}.ff1d6_c00001{font-family:ff1d6_c00001;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:ff1d7_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1d7_c00001{font-family:ff1d7_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d8_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1d8_c00001{font-family:ff1d8_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:ff1d9_c00001;src:url('chunks/assets/font_25f19102883a3d641f8a6027.woff2')format("woff");}.ff1d9_c00001{font-family:ff1d9_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1da_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1da_c00001{font-family:ff1da_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1db_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1db_c00001{font-family:ff1db_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:ff1dc_c00001;src:url('chunks/assets/font_f9d5e5ea2289d210e4c8475c.woff2')format("woff");}.ff1dc_c00001{font-family:ff1dc_c00001;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:ff1dd_c00001;src:url('chunks/assets/font_9f21ebc553397eba5a93cfa1.woff2')format("woff");}.ff1dd_c00001{font-family:ff1dd_c00001;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1de_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff1de_c00001{font-family:ff1de_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:ff1df_c00001;src:url('chunks/assets/font_43476e81870393f8fe5f8917.woff2')format("woff");}.ff1df_c00001{font-family:ff1df_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e0_c00001;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff1e0_c00001{font-family:ff1e0_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:ff1e1_c00001;src:url('chunks/assets/font_1e1fb5883a3a5a7c4983eaf3.woff2')format("woff");}.ff1e1_c00001{font-family:ff1e1_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e2_c00001;src:url('chunks/assets/font_0063fe85df2935e712443303.woff2')format("woff");}.ff1e2_c00001{font-family:ff1e2_c00001;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:ff1e3_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1e3_c00001{font-family:ff1e3_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e4_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1e4_c00001{font-family:ff1e4_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:ff1e5_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff1e5_c00001{font-family:ff1e5_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:ff1e6_c00001;src:url('chunks/assets/font_7a1de03b9ab9d4a2941e80ad.woff2')format("woff");}.ff1e6_c00001{font-family:ff1e6_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:ff1e7_c00001;src:url('chunks/assets/font_5a05024674336bed4c1b1a0a.woff2')format("woff");}.ff1e7_c00001{font-family:ff1e7_c00001;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:ff1e8_c00001;src:url('chunks/assets/font_8c760883f3e0238f60ce4d0d.woff2')format("woff");}.ff1e8_c00001{font-family:ff1e8_c00001;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e9_c00001;src:url('chunks/assets/font_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff1e9_c00001{font-family:ff1e9_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ea_c00001;src:url('chunks/assets/font_e15cf788bfd9b6fde4d8d7ce.woff2')format("woff");}.ff1ea_c00001{font-family:ff1ea_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1eb_c00001;src:url('chunks/assets/font_20ccdcbe033e4b275a9b70bc.woff2')format("woff");}.ff1eb_c00001{font-family:ff1eb_c00001;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:ff1ec_c00001;src:url('chunks/assets/font_44b470c33e04e456a02040ad.woff2')format("woff");}.ff1ec_c00001{font-family:ff1ec_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ed_c00001;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff1ed_c00001{font-family:ff1ed_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ee_c00001;src:url('chunks/assets/font_89dccfc63e2ed8519e9b425d.woff2')format("woff");}.ff1ee_c00001{font-family:ff1ee_c00001;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ef_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1ef_c00001{font-family:ff1ef_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f0_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1f0_c00001{font-family:ff1f0_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:ff1f1_c00001;src:url('chunks/assets/font_9792a62a4b6719e24ea5478e.woff2')format("woff");}.ff1f1_c00001{font-family:ff1f1_c00001;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:ff1f2_c00001;src:url('chunks/assets/font_7fa34261f999193d47b3a154.woff2')format("woff");}.ff1f2_c00001{font-family:ff1f2_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f3_c00001;src:url('chunks/assets/font_8054e2d013c1fcfc4a43462e.woff2')format("woff");}.ff1f3_c00001{font-family:ff1f3_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f4_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1f4_c00001{font-family:ff1f4_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f5_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1f5_c00001{font-family:ff1f5_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:ff1f6_c00001;src:url('chunks/assets/font_14d16e181ae7231cb00c71f6.woff2')format("woff");}.ff1f6_c00001{font-family:ff1f6_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:ff1f7_c00001;src:url('chunks/assets/font_f0bad1eeff1e9332c4e7f979.woff2')format("woff");}.ff1f7_c00001{font-family:ff1f7_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f8_c00001;src:url('chunks/assets/font_cdb9ed38008067fdabd66e43.woff2')format("woff");}.ff1f8_c00001{font-family:ff1f8_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f9_c00001;src:url('chunks/assets/font_ff0cf29f7da2599f1ea03f3d.woff2')format("woff");}.ff1f9_c00001{font-family:ff1f9_c00001;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1fa_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1fa_c00001{font-family:ff1fa_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1fb_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1fb_c00001{font-family:ff1fb_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:ff1fc_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff1fc_c00001{font-family:ff1fc_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:ff1fd_c00001;src:url('chunks/assets/font_ae683d378c536a95249880ce.woff2')format("woff");}.ff1fd_c00001{font-family:ff1fd_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1fe_c00001;src:url('chunks/assets/font_f6f5afba63b88bda4d7aa556.woff2')format("woff");}.ff1fe_c00001{font-family:ff1fe_c00001;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:ff1ff_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1ff_c00001{font-family:ff1ff_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff200_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff200_c00001{font-family:ff200_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:ff201_c00001;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff201_c00001{font-family:ff201_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:ff202_c00001;src:url('chunks/assets/font_128ba849941b323856541182.woff2')format("woff");}.ff202_c00001{font-family:ff202_c00001;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:ff203_c00001;src:url('chunks/assets/font_e8e58cd0f0d421a127b16aac.woff2')format("woff");}.ff203_c00001{font-family:ff203_c00001;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:ff204_c00001;src:url('chunks/assets/font_4058682595c4b276c3936078.woff2')format("woff");}.ff204_c00001{font-family:ff204_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff205_c00001;src:url('chunks/assets/font_516734fb1405498451ce6eb6.woff2')format("woff");}.ff205_c00001{font-family:ff205_c00001;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:ff206_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff206_c00001{font-family:ff206_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff207_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff207_c00001{font-family:ff207_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:ff208_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff208_c00001{font-family:ff208_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:ff209_c00001;src:url('chunks/assets/font_dcdab887604929e763539fb8.woff2')format("woff");}.ff209_c00001{font-family:ff209_c00001;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20a_c00001;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff20a_c00001{font-family:ff20a_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:ff20b_c00001;src:url('chunks/assets/font_e0fc99bbdf7c731a4f9294aa.woff2')format("woff");}.ff20b_c00001{font-family:ff20b_c00001;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:ff20c_c00001;src:url('chunks/assets/font_f1154db1710511cb4ef14b31.woff2')format("woff");}.ff20c_c00001{font-family:ff20c_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20d_c00001;src:url('chunks/assets/font_be51342e707abba7fb0843a1.woff2')format("woff");}.ff20d_c00001{font-family:ff20d_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20e_c00001;src:url('chunks/assets/font_71935009b3c9ef7316c91a8f.woff2')format("woff");}.ff20e_c00001{font-family:ff20e_c00001;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:ff20f_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff20f_c00001{font-family:ff20f_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff210_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff210_c00001{font-family:ff210_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:ff211_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff211_c00001{font-family:ff211_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:ff212_c00001;src:url('chunks/assets/font_e07b3f6c706b37c5c67fb06a.woff2')format("woff");}.ff212_c00001{font-family:ff212_c00001;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:ff213_c00001;src:url('chunks/assets/font_f1154db1710511cb4ef14b31.woff2')format("woff");}.ff213_c00001{font-family:ff213_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff214_c00001;src:url('chunks/assets/font_2c01954f3e8ce3d7b61476a2.woff2')format("woff");}.ff214_c00001{font-family:ff214_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff215_c00001;src:url('chunks/assets/font_52c1cf75e2553c92239bc634.woff2')format("woff");}.ff215_c00001{font-family:ff215_c00001;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:ff216_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff216_c00001{font-family:ff216_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff217_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff217_c00001{font-family:ff217_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:ff218_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff218_c00001{font-family:ff218_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:ff219_c00001;src:url('chunks/assets/font_0dc4337f149d694819cf64e9.woff2')format("woff");}.ff219_c00001{font-family:ff219_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21a_c00001;src:url('chunks/assets/font_7532dceddba6cf2864133741.woff2')format("woff");}.ff21a_c00001{font-family:ff21a_c00001;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21b_c00001;src:url('chunks/assets/font_51893d7ad524cbd3c1ed5770.woff2')format("woff");}.ff21b_c00001{font-family:ff21b_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21c_c00001;src:url('chunks/assets/font_aab654fa73073d86fcdd9e6f.woff2')format("woff");}.ff21c_c00001{font-family:ff21c_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21d_c00001;src:url('chunks/assets/font_a0ba6dc3e4d08c7d5dffacd6.woff2')format("woff");}.ff21d_c00001{font-family:ff21d_c00001;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:ff21e_c00001;src:url('chunks/assets/font_81c0c0165b67f21d4330c1d3.woff2')format("woff");}.ff21e_c00001{font-family:ff21e_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21f_c00001;src:url('chunks/assets/font_7dacce5dedffaf536e85c024.woff2')format("woff");}.ff21f_c00001{font-family:ff21f_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff220_c00001;src:url('chunks/assets/font_63cae8f43ad600a65f095c3f.woff2')format("woff");}.ff220_c00001{font-family:ff220_c00001;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:ff221_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff221_c00001{font-family:ff221_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff222_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff222_c00001{font-family:ff222_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:ff223_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff223_c00001{font-family:ff223_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:ff224_c00001;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff224_c00001{font-family:ff224_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:ff225_c00001;src:url('chunks/assets/font_dbafd4a91c7e8ec056b1aa38.woff2')format("woff");}.ff225_c00001{font-family:ff225_c00001;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff226_c00001;src:url('chunks/assets/font_2b7ee40de205815619c46d30.woff2')format("woff");}.ff226_c00001{font-family:ff226_c00001;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:ff227_c00001;src:url('chunks/assets/font_ab0be06057f2af8034d9f040.woff2')format("woff");}.ff227_c00001{font-family:ff227_c00001;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff228_c00001;src:url('chunks/assets/font_41980d5f7f77f8fbe0b2bd20.woff2')format("woff");}.ff228_c00001{font-family:ff228_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:ff229_c00001;src:url('chunks/assets/font_0d1d77dedc0260444857de38.woff2')format("woff");}.ff229_c00001{font-family:ff229_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22a_c00001;src:url('chunks/assets/font_afe413efb0f457d8e1b67e06.woff2')format("woff");}.ff22a_c00001{font-family:ff22a_c00001;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:ff22b_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff22b_c00001{font-family:ff22b_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22c_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff22c_c00001{font-family:ff22c_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:ff22d_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff22d_c00001{font-family:ff22d_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:ff22e_c00001;src:url('chunks/assets/font_304220be3626accbe3661929.woff2')format("woff");}.ff22e_c00001{font-family:ff22e_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22f_c00001;src:url('chunks/assets/font_24c10be537de7c6ceb68ad8a.woff2')format("woff");}.ff22f_c00001{font-family:ff22f_c00001;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:ff230_c00001;src:url('chunks/assets/font_97aa54c3d7d5ed3de89b3dde.woff2')format("woff");}.ff230_c00001{font-family:ff230_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff231_c00001;src:url('chunks/assets/font_9017d8fef95cf909774a03ad.woff2')format("woff");}.ff231_c00001{font-family:ff231_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff232_c00001;src:url('chunks/assets/font_29a5b4b12eb5509e838cf172.woff2')format("woff");}.ff232_c00001{font-family:ff232_c00001;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:ff233_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff233_c00001{font-family:ff233_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff234_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff234_c00001{font-family:ff234_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:ff235_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff235_c00001{font-family:ff235_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:ff236_c00001;src:url('chunks/assets/font_f0bad1eeff1e9332c4e7f979.woff2')format("woff");}.ff236_c00001{font-family:ff236_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff237_c00001;src:url('chunks/assets/font_75ca21a24abd68e636d3e368.woff2')format("woff");}.ff237_c00001{font-family:ff237_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff238_c00001;src:url('chunks/assets/font_aec0dd560a785b4cc1d4e214.woff2')format("woff");}.ff238_c00001{font-family:ff238_c00001;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:ff239_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff239_c00001{font-family:ff239_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23a_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff23a_c00001{font-family:ff23a_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:ff23b_c00001;src:url('chunks/assets/font_c4b59154dfef0da462544009.woff2')format("woff");}.ff23b_c00001{font-family:ff23b_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23c_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff23c_c00001{font-family:ff23c_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:ff23d_c00001;src:url('chunks/assets/font_b7f1a77ccdff33260e0c5b71.woff2')format("woff");}.ff23d_c00001{font-family:ff23d_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:ff23e_c00001;src:url('chunks/assets/font_9f21ebc553397eba5a93cfa1.woff2')format("woff");}.ff23e_c00001{font-family:ff23e_c00001;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23f_c00001;src:url('chunks/assets/font_9fb9b4888b64534fef6709bd.woff2')format("woff");}.ff23f_c00001{font-family:ff23f_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff240_c00001;src:url('chunks/assets/font_514f3a4400c838dd8d18eee9.woff2')format("woff");}.ff240_c00001{font-family:ff240_c00001;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:ff241_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff241_c00001{font-family:ff241_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff242_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff242_c00001{font-family:ff242_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:ff243_c00001;src:url('chunks/assets/font_dbafd4a91c7e8ec056b1aa38.woff2')format("woff");}.ff243_c00001{font-family:ff243_c00001;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff244_c00001;src:url('chunks/assets/font_2c51e8e9601907ac9b97c218.woff2')format("woff");}.ff244_c00001{font-family:ff244_c00001;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:ff245_c00001;src:url('chunks/assets/font_549358b931abb1d117865255.woff2')format("woff");}.ff245_c00001{font-family:ff245_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff246_c00001;src:url('chunks/assets/font_87dd33ea252c5ca9e3ffd20b.woff2')format("woff");}.ff246_c00001{font-family:ff246_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff247_c00001;src:url('chunks/assets/font_04f209f53974b942aca25855.woff2')format("woff");}.ff247_c00001{font-family:ff247_c00001;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:ff248_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff248_c00001{font-family:ff248_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff249_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff249_c00001{font-family:ff249_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:ff24a_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff24a_c00001{font-family:ff24a_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:ff24b_c00001;src:url('chunks/assets/font_2b1c2eb07775f80c9ad8cb95.woff2')format("woff");}.ff24b_c00001{font-family:ff24b_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24c_c00001;src:url('chunks/assets/font_6b191b9ca19a1ec7dc169ada.woff2')format("woff");}.ff24c_c00001{font-family:ff24c_c00001;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:ff24d_c00001;src:url('chunks/assets/font_085e9a758b9a82a79d26af00.woff2')format("woff");}.ff24d_c00001{font-family:ff24d_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24e_c00001;src:url('chunks/assets/font_a1263b67f4bcce8079c2a900.woff2')format("woff");}.ff24e_c00001{font-family:ff24e_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24f_c00001;src:url('chunks/assets/font_f0bad1eeff1e9332c4e7f979.woff2')format("woff");}.ff24f_c00001{font-family:ff24f_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff250_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff250_c00001{font-family:ff250_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff251_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff251_c00001{font-family:ff251_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:ff252_c00001;src:url('chunks/assets/font_d670078d9051ad5ddb578be4.woff2')format("woff");}.ff252_c00001{font-family:ff252_c00001;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:ff253_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff253_c00001{font-family:ff253_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:ff254_c00001;src:url('chunks/assets/font_b9893bb71bb283a95c828c4e.woff2')format("woff");}.ff254_c00001{font-family:ff254_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff255_c00001;src:url('chunks/assets/font_1b7518316b27386b926bc601.woff2')format("woff");}.ff255_c00001{font-family:ff255_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff256_c00001;src:url('chunks/assets/font_430319903b2964c23f8fcfcf.woff2')format("woff");}.ff256_c00001{font-family:ff256_c00001;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:ff257_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff257_c00001{font-family:ff257_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff258_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff258_c00001{font-family:ff258_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:ff259_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff259_c00001{font-family:ff259_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:ff25a_c00001;src:url('chunks/assets/font_ea9036b69a3499785e77364d.woff2')format("woff");}.ff25a_c00001{font-family:ff25a_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25b_c00001;src:url('chunks/assets/font_4ed16baa45a2d6bfcad4601f.woff2')format("woff");}.ff25b_c00001{font-family:ff25b_c00001;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:ff25c_c00001;src:url('chunks/assets/font_f1154db1710511cb4ef14b31.woff2')format("woff");}.ff25c_c00001{font-family:ff25c_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25d_c00001;src:url('chunks/assets/font_988828ecb198ba4a4bc482b6.woff2')format("woff");}.ff25d_c00001{font-family:ff25d_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25e_c00001;src:url('chunks/assets/font_688b97376aabf427873348bc.woff2')format("woff");}.ff25e_c00001{font-family:ff25e_c00001;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:ff25f_c00001;src:url('chunks/assets/font_0b103c0898638873ff9a9f03.woff2')format("woff");}.ff25f_c00001{font-family:ff25f_c00001;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff260_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff260_c00001{font-family:ff260_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:ff261_c00001;src:url('chunks/assets/font_48bae02bc73109f62867d364.woff2')format("woff");}.ff261_c00001{font-family:ff261_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff262_c00001;src:url('chunks/assets/font_c7da0db74eab4cd3c9809fd4.woff2')format("woff");}.ff262_c00001{font-family:ff262_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff263_c00001;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff263_c00001{font-family:ff263_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:ff264_c00001;src:url('chunks/assets/font_ea0ec2e6a6ac353586185993.woff2')format("woff");}.ff264_c00001{font-family:ff264_c00001;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff265_c00001;src:url('chunks/assets/font_f0bad1eeff1e9332c4e7f979.woff2')format("woff");}.ff265_c00001{font-family:ff265_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff266_c00001;src:url('chunks/assets/font_9877cc4ca94fd090c8646d74.woff2')format("woff");}.ff266_c00001{font-family:ff266_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff267_c00001;src:url('chunks/assets/font_7e84fc751be2d0a335dacd86.woff2')format("woff");}.ff267_c00001{font-family:ff267_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff268_c00001;src:url('chunks/assets/font_abb4ea5eee5c23c04858acf9.woff2')format("woff");}.ff268_c00001{font-family:ff268_c00001;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:ff269_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff269_c00001{font-family:ff269_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26a_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff26a_c00001{font-family:ff26a_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:ff26b_c00001;src:url('chunks/assets/font_26be4745a45e03596bd529f0.woff2')format("woff");}.ff26b_c00001{font-family:ff26b_c00001;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26c_c00001;src:url('chunks/assets/font_8b072b656c78384cd5518eba.woff2')format("woff");}.ff26c_c00001{font-family:ff26c_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26d_c00001;src:url('chunks/assets/font_0a380dd6cea7a64adc1e5efd.woff2')format("woff");}.ff26d_c00001{font-family:ff26d_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26e_c00001;src:url('chunks/assets/font_663a21ec605964617272d736.woff2')format("woff");}.ff26e_c00001{font-family:ff26e_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26f_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff26f_c00001{font-family:ff26f_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:ff270_c00001;src:url('chunks/assets/font_72fe8d8f4133295723352124.woff2')format("woff");}.ff270_c00001{font-family:ff270_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:ff271_c00001;src:url('chunks/assets/font_a4fcf39fbae7df7f8589f185.woff2')format("woff");}.ff271_c00001{font-family:ff271_c00001;line-height:0.852539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff272_c00001;src:url('chunks/assets/font_104f41d397ebd96fea5627d9.woff2')format("woff");}.ff272_c00001{font-family:ff272_c00001;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff273_c00001;src:url('chunks/assets/font_8ef1301e36a1e0193f07eda5.woff2')format("woff");}.ff273_c00001{font-family:ff273_c00001;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:ff274_c00001;src:url('chunks/assets/font_25fff997aadc88db132cd8ef.woff2')format("woff");}.ff274_c00001{font-family:ff274_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff275_c00001;src:url('chunks/assets/font_16fc8a0b521f40c5348c99f1.woff2')format("woff");}.ff275_c00001{font-family:ff275_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff276_c00001;src:url('chunks/assets/font_bc852c789b06a327dfab5e9f.woff2')format("woff");}.ff276_c00001{font-family:ff276_c00001;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:ff277_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff277_c00001{font-family:ff277_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff278_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff278_c00001{font-family:ff278_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:ff279_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff279_c00001{font-family:ff279_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:ff27a_c00001;src:url('chunks/assets/font_de00ca9817a9ee787067314b.woff2')format("woff");}.ff27a_c00001{font-family:ff27a_c00001;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27b_c00001;src:url('chunks/assets/font_8ce912b079db578d4e3b0f6e.woff2')format("woff");}.ff27b_c00001{font-family:ff27b_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27c_c00001;src:url('chunks/assets/font_4ad33381cbfca1bdf3e94d97.woff2')format("woff");}.ff27c_c00001{font-family:ff27c_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27d_c00001;src:url('chunks/assets/font_aab654fa73073d86fcdd9e6f.woff2')format("woff");}.ff27d_c00001{font-family:ff27d_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27e_c00001;src:url('chunks/assets/font_b1fc3e09d2f95ba3025811b7.woff2')format("woff");}.ff27e_c00001{font-family:ff27e_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27f_c00001;src:url('chunks/assets/font_4c19246fb0e5bb9c30316910.woff2')format("woff");}.ff27f_c00001{font-family:ff27f_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff280_c00001;src:url('chunks/assets/font_9359ea67c9078f4d66ba975c.woff2')format("woff");}.ff280_c00001{font-family:ff280_c00001;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:ff281_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff281_c00001{font-family:ff281_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff282_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff282_c00001{font-family:ff282_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:ff283_c00001;src:url('chunks/assets/font_ab750671c8510298de06c6c6.woff2')format("woff");}.ff283_c00001{font-family:ff283_c00001;line-height:1.160645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff284_c00001;src:url('chunks/assets/font_53103c32807b0b22862a3ca1.woff2')format("woff");}.ff284_c00001{font-family:ff284_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff285_c00001;src:url('chunks/assets/font_f7cc974db138e8a4e50bcabd.woff2')format("woff");}.ff285_c00001{font-family:ff285_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff286_c00001;src:url('chunks/assets/font_8abe1c3b03981450623c8d67.woff2')format("woff");}.ff286_c00001{font-family:ff286_c00001;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff287_c00001;src:url('chunks/assets/font_4b1d52bf21c4f88026ba089b.woff2')format("woff");}.ff287_c00001{font-family:ff287_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff288_c00001;src:url('chunks/assets/font_f290e84e2143e6ebc697da53.woff2')format("woff");}.ff288_c00001{font-family:ff288_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff289_c00001;src:url('chunks/assets/font_3d764f7811b95c9a573eae35.woff2')format("woff");}.ff289_c00001{font-family:ff289_c00001;line-height:0.710449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28a_c00001;src:url('chunks/assets/font_30736d431609e7e190b569e6.woff2')format("woff");}.ff28a_c00001{font-family:ff28a_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:ff28b_c00001;src:url('chunks/assets/font_6310cf29e3198b98fc2d7201.woff2')format("woff");}.ff28b_c00001{font-family:ff28b_c00001;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28c_c00001;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff28c_c00001{font-family:ff28c_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28d_c00001;src:url('chunks/assets/font_07f0d0a17306065e30da1464.woff2')format("woff");}.ff28d_c00001{font-family:ff28d_c00001;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:ff28e_c00001;src:url('chunks/assets/font_bdf55cc823ef3e1215b03065.woff2')format("woff");}.ff28e_c00001{font-family:ff28e_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28f_c00001;src:url('chunks/assets/font_8a342ce15aaf2a542507926c.woff2')format("woff");}.ff28f_c00001{font-family:ff28f_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff290_c00001;src:url('chunks/assets/font_22e5d0fbed847490ddcdf90c.woff2')format("woff");}.ff290_c00001{font-family:ff290_c00001;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:ff291_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff291_c00001{font-family:ff291_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff292_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff292_c00001{font-family:ff292_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:ff293_c00001;src:url('chunks/assets/font_f7cc974db138e8a4e50bcabd.woff2')format("woff");}.ff293_c00001{font-family:ff293_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff294_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff294_c00001{font-family:ff294_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:ff295_c00001;src:url('chunks/assets/font_db45714bd1ed502d2d7d20db.woff2')format("woff");}.ff295_c00001{font-family:ff295_c00001;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff296_c00001;src:url('chunks/assets/font_c7d43fc0a03253128f6e07a7.woff2')format("woff");}.ff296_c00001{font-family:ff296_c00001;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff297_c00001;src:url('chunks/assets/font_53103c32807b0b22862a3ca1.woff2')format("woff");}.ff297_c00001{font-family:ff297_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff298_c00001;src:url('chunks/assets/font_f0bad1eeff1e9332c4e7f979.woff2')format("woff");}.ff298_c00001{font-family:ff298_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff299_c00001;src:url('chunks/assets/font_454e85c8b8680ad3f867b96d.woff2')format("woff");}.ff299_c00001{font-family:ff299_c00001;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29a_c00001;src:url('chunks/assets/font_f0deb305da985e9bc8f13bf9.woff2')format("woff");}.ff29a_c00001{font-family:ff29a_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29b_c00001;src:url('chunks/assets/font_87074bd6460ed7378c57bdcb.woff2')format("woff");}.ff29b_c00001{font-family:ff29b_c00001;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:ff29c_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff29c_c00001{font-family:ff29c_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29d_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff29d_c00001{font-family:ff29d_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:ff29e_c00001;src:url('chunks/assets/font_aab654fa73073d86fcdd9e6f.woff2')format("woff");}.ff29e_c00001{font-family:ff29e_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29f_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff29f_c00001{font-family:ff29f_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:ff2a0_c00001;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff2a0_c00001{font-family:ff2a0_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a1_c00001;src:url('chunks/assets/font_1792d9a02d91971803a0bb9c.woff2')format("woff");}.ff2a1_c00001{font-family:ff2a1_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a2_c00001;src:url('chunks/assets/font_f7378702ce21c1819dd85b0d.woff2')format("woff");}.ff2a2_c00001{font-family:ff2a2_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a3_c00001;src:url('chunks/assets/font_c12342720bece292fba33875.woff2')format("woff");}.ff2a3_c00001{font-family:ff2a3_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a4_c00001;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff2a4_c00001{font-family:ff2a4_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a5_c00001;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff2a5_c00001{font-family:ff2a5_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:ff2a6_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff2a6_c00001{font-family:ff2a6_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:ff2a7_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2a7_c00001{font-family:ff2a7_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a8_c00001;src:url('chunks/assets/font_01eb9817c0e2f4919e87b119.woff2')format("woff");}.ff2a8_c00001{font-family:ff2a8_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a9_c00001;src:url('chunks/assets/font_8b072b656c78384cd5518eba.woff2')format("woff");}.ff2a9_c00001{font-family:ff2a9_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2aa_c00001;src:url('chunks/assets/font_0b215ebd3832c535c245590e.woff2')format("woff");}.ff2aa_c00001{font-family:ff2aa_c00001;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ab_c00001;src:url('chunks/assets/font_06cebe630743463074e33355.woff2')format("woff");}.ff2ab_c00001{font-family:ff2ab_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ac_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff2ac_c00001{font-family:ff2ac_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:ff2ad_c00001;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff2ad_c00001{font-family:ff2ad_c00001;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ae_c00001;src:url('chunks/assets/font_c1f8b649d991db0a6f951ba6.woff2')format("woff");}.ff2ae_c00001{font-family:ff2ae_c00001;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:ff2af_c00001;src:url('chunks/assets/font_ce71af73b5172e2357b84503.woff2')format("woff");}.ff2af_c00001{font-family:ff2af_c00001;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b0_c00001;src:url('chunks/assets/font_a625a2aed9f5e8eb86252032.woff2')format("woff");}.ff2b0_c00001{font-family:ff2b0_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b1_c00001;src:url('chunks/assets/font_6e0eac8e103235719b5f7269.woff2')format("woff");}.ff2b1_c00001{font-family:ff2b1_c00001;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:ff2b2_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2b2_c00001{font-family:ff2b2_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b3_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff2b3_c00001{font-family:ff2b3_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:ff2b4_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff2b4_c00001{font-family:ff2b4_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:ff2b5_c00001;src:url('chunks/assets/font_d198238b3fa7951846b99874.woff2')format("woff");}.ff2b5_c00001{font-family:ff2b5_c00001;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b6_c00001;src:url('chunks/assets/font_a1055f49061f896fa4606469.woff2')format("woff");}.ff2b6_c00001{font-family:ff2b6_c00001;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b7_c00001;src:url('chunks/assets/font_bbc949cb8b3c0c58b753cc42.woff2')format("woff");}.ff2b7_c00001{font-family:ff2b7_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b8_c00001;src:url('chunks/assets/font_0b215ebd3832c535c245590e.woff2')format("woff");}.ff2b8_c00001{font-family:ff2b8_c00001;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b9_c00001;src:url('chunks/assets/font_30736d431609e7e190b569e6.woff2')format("woff");}.ff2b9_c00001{font-family:ff2b9_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:ff2ba_c00001;src:url('chunks/assets/font_a52168fe2e691a05681f2fd3.woff2')format("woff");}.ff2ba_c00001{font-family:ff2ba_c00001;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:ff2bb_c00001;src:url('chunks/assets/font_345ebc2c6b00b7561cbdb13b.woff2')format("woff");}.ff2bb_c00001{font-family:ff2bb_c00001;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:ff2bc_c00001;src:url('chunks/assets/font_96ae734a50a2b45c85606c99.woff2')format("woff");}.ff2bc_c00001{font-family:ff2bc_c00001;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2bd_c00001;src:url('chunks/assets/font_bbc877de29d3264a35ed2721.woff2')format("woff");}.ff2bd_c00001{font-family:ff2bd_c00001;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:ff2be_c00001;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2be_c00001{font-family:ff2be_c00001;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2bf_c00001;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff2bf_c00001{font-family:ff2bf_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:ff2c0_c00001;src:url('chunks/assets/font_b1972e15fcf9d06a617734f3.woff2')format("woff");}.ff2c0_c00001{font-family:ff2c0_c00001;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c1_c00001;src:url('chunks/assets/font_5b373fe34532f5014d69805d.woff2')format("woff");}.ff2c1_c00001{font-family:ff2c1_c00001;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c2_c00001;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff2c2_c00001{font-family:ff2c2_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;}
.m1_c00001{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00001{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m3_c00001{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v4_c00001{vertical-align:-30.240000px;}
.v6_c00001{vertical-align:-28.202042px;}
.v2_c00001{vertical-align:-24.480000px;}
.v9_c00001{vertical-align:-11.520000px;}
.v7_c00001{vertical-align:-8.647200px;}
.v0_c00001{vertical-align:0.000000px;}
.v3_c00001{vertical-align:24.480000px;}
.v5_c00001{vertical-align:27.360000px;}
.v1_c00001{vertical-align:30.240000px;}
.v8_c00001{vertical-align:33.120000px;}
.ls2f3_c00001{letter-spacing:-0.465696px;}
.ls75a_c00001{letter-spacing:-0.244800px;}
.ls759_c00001{letter-spacing:-0.237600px;}
.lsec_c00001{letter-spacing:-0.185094px;}
.ls49_c00001{letter-spacing:-0.179568px;}
.ls764_c00001{letter-spacing:-0.043200px;}
.ls130_c00001{letter-spacing:-0.016031px;}
.ls127_c00001{letter-spacing:-0.015552px;}
.ls763_c00001{letter-spacing:-0.014400px;}
.ls762_c00001{letter-spacing:-0.007200px;}
.ls6_c00001{letter-spacing:0.000000px;}
.lsdd_c00001{letter-spacing:0.014640px;}
.ls2f2_c00001{letter-spacing:0.021600px;}
.ls6e7_c00001{letter-spacing:0.021840px;}
.ls92_c00001{letter-spacing:0.027240px;}
.ls604_c00001{letter-spacing:0.033840px;}
.lsd7_c00001{letter-spacing:0.036000px;}
.ls669_c00001{letter-spacing:0.036240px;}
.ls589_c00001{letter-spacing:0.043440px;}
.ls7ad_c00001{letter-spacing:0.046440px;}
.ls4e9_c00001{letter-spacing:0.047640px;}
.ls681_c00001{letter-spacing:0.054840px;}
.ls6a9_c00001{letter-spacing:0.055440px;}
.ls6cc_c00001{letter-spacing:0.056640px;}
.lsa7_c00001{letter-spacing:0.059040px;}
.ls65e_c00001{letter-spacing:0.059400px;}
.ls118_c00001{letter-spacing:0.062208px;}
.ls236_c00001{letter-spacing:0.063240px;}
.ls114_c00001{letter-spacing:0.065520px;}
.ls65f_c00001{letter-spacing:0.072240px;}
.lse0_c00001{letter-spacing:0.074040px;}
.ls5ca_c00001{letter-spacing:0.077040px;}
.ls17d_c00001{letter-spacing:0.081786px;}
.ls593_c00001{letter-spacing:0.085440px;}
.ls157_c00001{letter-spacing:0.090600px;}
.ls394_c00001{letter-spacing:0.090840px;}
.ls732_c00001{letter-spacing:0.091200px;}
.ls2a9_c00001{letter-spacing:0.091440px;}
.ls73a_c00001{letter-spacing:0.092400px;}
.ls28f_c00001{letter-spacing:0.092640px;}
.ls60a_c00001{letter-spacing:0.095640px;}
.ls668_c00001{letter-spacing:0.096000px;}
.ls24f_c00001{letter-spacing:0.099840px;}
.ls59e_c00001{letter-spacing:0.101040px;}
.ls3f4_c00001{letter-spacing:0.102840px;}
.ls749_c00001{letter-spacing:0.103440px;}
.ls2d_c00001{letter-spacing:0.104040px;}
.ls9b_c00001{letter-spacing:0.105840px;}
.ls46_c00001{letter-spacing:0.111840px;}
.ls587_c00001{letter-spacing:0.118800px;}
.lsd5_c00001{letter-spacing:0.120230px;}
.ls10d_c00001{letter-spacing:0.120600px;}
.ls28d_c00001{letter-spacing:0.122040px;}
.ls611_c00001{letter-spacing:0.123240px;}
.ls4e8_c00001{letter-spacing:0.126240px;}
.ls7e3_c00001{letter-spacing:0.126840px;}
.ls6d3_c00001{letter-spacing:0.130440px;}
.ls2aa_c00001{letter-spacing:0.131640px;}
.ls461_c00001{letter-spacing:0.132240px;}
.ls23c_c00001{letter-spacing:0.132840px;}
.ls3ab_c00001{letter-spacing:0.133056px;}
.ls656_c00001{letter-spacing:0.133440px;}
.ls6c0_c00001{letter-spacing:0.135840px;}
.ls577_c00001{letter-spacing:0.137151px;}
.ls279_c00001{letter-spacing:0.142440px;}
.ls51_c00001{letter-spacing:0.144000px;}
.ls6e9_c00001{letter-spacing:0.146640px;}
.ls586_c00001{letter-spacing:0.146947px;}
.ls116_c00001{letter-spacing:0.147744px;}
.ls3ee_c00001{letter-spacing:0.148432px;}
.ls7df_c00001{letter-spacing:0.148680px;}
.ls1a2_c00001{letter-spacing:0.155520px;}
.ls390_c00001{letter-spacing:0.156240px;}
.ls3a9_c00001{letter-spacing:0.156816px;}
.ls530_c00001{letter-spacing:0.160200px;}
.lsc8_c00001{letter-spacing:0.160306px;}
.ls171_c00001{letter-spacing:0.161642px;}
.ls417_c00001{letter-spacing:0.162840px;}
.ls29d_c00001{letter-spacing:0.165240px;}
.ls51b_c00001{letter-spacing:0.165600px;}
.ls5d7_c00001{letter-spacing:0.169440px;}
.lsc9_c00001{letter-spacing:0.176337px;}
.ls743_c00001{letter-spacing:0.176485px;}
.ls233_c00001{letter-spacing:0.177240px;}
.ls2a_c00001{letter-spacing:0.183240px;}
.ls53a_c00001{letter-spacing:0.184440px;}
.ls3ad_c00001{letter-spacing:0.185328px;}
.ls415_c00001{letter-spacing:0.185640px;}
.ls666_c00001{letter-spacing:0.186480px;}
.ls159_c00001{letter-spacing:0.186624px;}
.ls594_c00001{letter-spacing:0.186840px;}
.ls51c_c00001{letter-spacing:0.189600px;}
.ls57e_c00001{letter-spacing:0.191032px;}
.ls278_c00001{letter-spacing:0.192240px;}
.ls90_c00001{letter-spacing:0.194640px;}
.ls61_c00001{letter-spacing:0.195840px;}
.ls71_c00001{letter-spacing:0.197640px;}
.ls51d_c00001{letter-spacing:0.199200px;}
.ls26b_c00001{letter-spacing:0.199560px;}
.ls2ac_c00001{letter-spacing:0.200040px;}
.ls24d_c00001{letter-spacing:0.200160px;}
.ls5de_c00001{letter-spacing:0.200640px;}
.ls23e_c00001{letter-spacing:0.201840px;}
.ls18d_c00001{letter-spacing:0.202176px;}
.ls2_c00001{letter-spacing:0.202464px;}
.lsdf_c00001{letter-spacing:0.206040px;}
.ls26e_c00001{letter-spacing:0.208695px;}
.ls3c4_c00001{letter-spacing:0.211440px;}
.ls791_c00001{letter-spacing:0.213600px;}
.ls580_c00001{letter-spacing:0.213840px;}
.ls44_c00001{letter-spacing:0.214440px;}
.ls26d_c00001{letter-spacing:0.219679px;}
.ls578_c00001{letter-spacing:0.220421px;}
.ls262_c00001{letter-spacing:0.222000px;}
.ls614_c00001{letter-spacing:0.222840px;}
.ls641_c00001{letter-spacing:0.225840px;}
.ls3cc_c00001{letter-spacing:0.230256px;}
.ls7de_c00001{letter-spacing:0.230400px;}
.ls290_c00001{letter-spacing:0.232920px;}
.ls62b_c00001{letter-spacing:0.233040px;}
.ls3f_c00001{letter-spacing:0.236160px;}
.ls228_c00001{letter-spacing:0.237840px;}
.ls534_c00001{letter-spacing:0.238440px;}
.ls1aa_c00001{letter-spacing:0.238560px;}
.ls363_c00001{letter-spacing:0.239160px;}
.ls112_c00001{letter-spacing:0.239760px;}
.ls5a8_c00001{letter-spacing:0.241200px;}
.ls79d_c00001{letter-spacing:0.241800px;}
.ls1b_c00001{letter-spacing:0.242064px;}
.ls3aa_c00001{letter-spacing:0.242352px;}
.ls218_c00001{letter-spacing:0.243240px;}
.ls11b_c00001{letter-spacing:0.243428px;}
.ls26c_c00001{letter-spacing:0.246520px;}
.ls53e_c00001{letter-spacing:0.246840px;}
.ls2fa_c00001{letter-spacing:0.247139px;}
.ls40c_c00001{letter-spacing:0.247968px;}
.ls69a_c00001{letter-spacing:0.248640px;}
.ls57a_c00001{letter-spacing:0.249811px;}
.ls667_c00001{letter-spacing:0.250440px;}
.ls7c1_c00001{letter-spacing:0.250560px;}
.ls6b9_c00001{letter-spacing:0.251040px;}
.ls1a8_c00001{letter-spacing:0.253872px;}
.ls1e5_c00001{letter-spacing:0.254520px;}
.ls582_c00001{letter-spacing:0.254709px;}
.ls6e4_c00001{letter-spacing:0.255744px;}
.ls391_c00001{letter-spacing:0.257640px;}
.ls639_c00001{letter-spacing:0.258840px;}
.ls7d1_c00001{letter-spacing:0.259440px;}
.ls21d_c00001{letter-spacing:0.259776px;}
.ls287_c00001{letter-spacing:0.260640px;}
.ls630_c00001{letter-spacing:0.261240px;}
.ls3a7_c00001{letter-spacing:0.261360px;}
.ls495_c00001{letter-spacing:0.262440px;}
.lsd_c00001{letter-spacing:0.265680px;}
.ls591_c00001{letter-spacing:0.266040px;}
.ls3ac_c00001{letter-spacing:0.266112px;}
.ls4ba_c00001{letter-spacing:0.266280px;}
.ls2fe_c00001{letter-spacing:0.267264px;}
.lse2_c00001{letter-spacing:0.267771px;}
.ls2a0_c00001{letter-spacing:0.267840px;}
.ls680_c00001{letter-spacing:0.269640px;}
.ls2ad_c00001{letter-spacing:0.270840px;}
.lsa5_c00001{letter-spacing:0.271584px;}
.ls9a_c00001{letter-spacing:0.272640px;}
.ls3c3_c00001{letter-spacing:0.273240px;}
.lse_c00001{letter-spacing:0.273857px;}
.ls712_c00001{letter-spacing:0.274302px;}
.ls483_c00001{letter-spacing:0.275184px;}
.ls263_c00001{letter-spacing:0.277488px;}
.ls367_c00001{letter-spacing:0.279480px;}
.ls36e_c00001{letter-spacing:0.279942px;}
.ls1_c00001{letter-spacing:0.280080px;}
.ls45a_c00001{letter-spacing:0.281640px;}
.ls156_c00001{letter-spacing:0.282384px;}
.ls549_c00001{letter-spacing:0.283392px;}
.ls689_c00001{letter-spacing:0.286028px;}
.ls134_c00001{letter-spacing:0.289296px;}
.ls39a_c00001{letter-spacing:0.291075px;}
.ls30c_c00001{letter-spacing:0.291240px;}
.ls355_c00001{letter-spacing:0.291600px;}
.ls60e_c00001{letter-spacing:0.292200px;}
.ls14b_c00001{letter-spacing:0.292800px;}
.ls2ee_c00001{letter-spacing:0.293400px;}
.ls3bb_c00001{letter-spacing:0.294624px;}
.ls13_c00001{letter-spacing:0.295200px;}
.ls4da_c00001{letter-spacing:0.297216px;}
.ls12d_c00001{letter-spacing:0.298080px;}
.ls425_c00001{letter-spacing:0.301104px;}
.ls407_c00001{letter-spacing:0.303691px;}
.ls45c_c00001{letter-spacing:0.303840px;}
.lsaa_c00001{letter-spacing:0.304285px;}
.ls3a6_c00001{letter-spacing:0.306635px;}
.ls409_c00001{letter-spacing:0.306840px;}
.ls466_c00001{letter-spacing:0.307008px;}
.ls299_c00001{letter-spacing:0.309240px;}
.ls6d7_c00001{letter-spacing:0.310200px;}
.ls7dc_c00001{letter-spacing:0.311880px;}
.ls3da_c00001{letter-spacing:0.312840px;}
.ls1a6_c00001{letter-spacing:0.312912px;}
.ls253_c00001{letter-spacing:0.313440px;}
.ls5b4_c00001{letter-spacing:0.313800px;}
.ls560_c00001{letter-spacing:0.316457px;}
.ls1a1_c00001{letter-spacing:0.316920px;}
.ls6a_c00001{letter-spacing:0.317520px;}
.ls138_c00001{letter-spacing:0.318120px;}
.ls6f4_c00001{letter-spacing:0.318240px;}
.ls311_c00001{letter-spacing:0.318480px;}
.ls4c_c00001{letter-spacing:0.318816px;}
.lsb5_c00001{letter-spacing:0.319680px;}
.ls504_c00001{letter-spacing:0.320640px;}
.ls67f_c00001{letter-spacing:0.321240px;}
.ls2fd_c00001{letter-spacing:0.323520px;}
.ls122_c00001{letter-spacing:0.324000px;}
.ls6b_c00001{letter-spacing:0.324720px;}
.ls1c2_c00001{letter-spacing:0.328282px;}
.ls2b0_c00001{letter-spacing:0.328440px;}
.ls1d_c00001{letter-spacing:0.328628px;}
.ls3a8_c00001{letter-spacing:0.328900px;}
.ls19c_c00001{letter-spacing:0.329519px;}
.ls437_c00001{letter-spacing:0.330000px;}
.ls5b1_c00001{letter-spacing:0.330240px;}
.ls168_c00001{letter-spacing:0.330480px;}
.ls9f_c00001{letter-spacing:0.330624px;}
.ls39b_c00001{letter-spacing:0.331440px;}
.ls747_c00001{letter-spacing:0.333240px;}
.ls6b6_c00001{letter-spacing:0.333840px;}
.ls11e_c00001{letter-spacing:0.333972px;}
.ls29b_c00001{letter-spacing:0.334714px;}
.ls300_c00001{letter-spacing:0.336528px;}
.ls1d8_c00001{letter-spacing:0.336600px;}
.ls5a2_c00001{letter-spacing:0.339240px;}
.ls18c_c00001{letter-spacing:0.339600px;}
.ls121_c00001{letter-spacing:0.340651px;}
.ls642_c00001{letter-spacing:0.342240px;}
.ls1c4_c00001{letter-spacing:0.342432px;}
.ls632_c00001{letter-spacing:0.343200px;}
.ls7bb_c00001{letter-spacing:0.343440px;}
.ls272_c00001{letter-spacing:0.344640px;}
.ls30b_c00001{letter-spacing:0.345240px;}
.ls56c_c00001{letter-spacing:0.345840px;}
.ls660_c00001{letter-spacing:0.346440px;}
.ls372_c00001{letter-spacing:0.346885px;}
.ls47e_c00001{letter-spacing:0.346896px;}
.ls137_c00001{letter-spacing:0.348336px;}
.ls393_c00001{letter-spacing:0.349440px;}
.ls133_c00001{letter-spacing:0.352971px;}
.ls6e0_c00001{letter-spacing:0.353040px;}
.ls7c_c00001{letter-spacing:0.354240px;}
.ls3a4_c00001{letter-spacing:0.354381px;}
.ls4cf_c00001{letter-spacing:0.356040px;}
.ls181_c00001{letter-spacing:0.357572px;}
.ls514_c00001{letter-spacing:0.360000px;}
.ls48d_c00001{letter-spacing:0.360120px;}
.ls57_c00001{letter-spacing:0.360144px;}
.ls27_c00001{letter-spacing:0.362304px;}
.ls45b_c00001{letter-spacing:0.362400px;}
.ls74b_c00001{letter-spacing:0.363600px;}
.lse7_c00001{letter-spacing:0.365142px;}
.ls237_c00001{letter-spacing:0.366048px;}
.ls76a_c00001{letter-spacing:0.366240px;}
.ls672_c00001{letter-spacing:0.367800px;}
.ls5eb_c00001{letter-spacing:0.370656px;}
.ls35_c00001{letter-spacing:0.371952px;}
.ls23d_c00001{letter-spacing:0.375240px;}
.ls2d4_c00001{letter-spacing:0.377856px;}
.ls754_c00001{letter-spacing:0.380880px;}
.ls548_c00001{letter-spacing:0.381000px;}
.ls579_c00001{letter-spacing:0.382063px;}
.ls314_c00001{letter-spacing:0.383040px;}
.lsf0_c00001{letter-spacing:0.383399px;}
.ls5f7_c00001{letter-spacing:0.383616px;}
.ls590_c00001{letter-spacing:0.383640px;}
.ls684_c00001{letter-spacing:0.386640px;}
.ls17_c00001{letter-spacing:0.387240px;}
.ls15f_c00001{letter-spacing:0.387407px;}
.lsca_c00001{letter-spacing:0.388800px;}
.lsd0_c00001{letter-spacing:0.389640px;}
.ls62a_c00001{letter-spacing:0.391440px;}
.ls53b_c00001{letter-spacing:0.395280px;}
.ls427_c00001{letter-spacing:0.395568px;}
.ls13c_c00001{letter-spacing:0.395571px;}
.ls745_c00001{letter-spacing:0.395640px;}
.ls3f2_c00001{letter-spacing:0.396240px;}
.lsb4_c00001{letter-spacing:0.399000px;}
.ls3ae_c00001{letter-spacing:0.399168px;}
.ls7_c00001{letter-spacing:0.399600px;}
.ls175_c00001{letter-spacing:0.399720px;}
.ls11c_c00001{letter-spacing:0.400766px;}
.ls5b7_c00001{letter-spacing:0.401472px;}
.ls12e_c00001{letter-spacing:0.401760px;}
.ls510_c00001{letter-spacing:0.402840px;}
.ls595_c00001{letter-spacing:0.407040px;}
.lsb2_c00001{letter-spacing:0.407376px;}
.ls67c_c00001{letter-spacing:0.407445px;}
.ls5c8_c00001{letter-spacing:0.407640px;}
.ls3e9_c00001{letter-spacing:0.407742px;}
.ls6da_c00001{letter-spacing:0.410256px;}
.ls4e7_c00001{letter-spacing:0.411453px;}
.ls19d_c00001{letter-spacing:0.411898px;}
.ls742_c00001{letter-spacing:0.412022px;}
.ls53c_c00001{letter-spacing:0.412440px;}
.ls416_c00001{letter-spacing:0.413040px;}
.lse8_c00001{letter-spacing:0.413280px;}
.ls123_c00001{letter-spacing:0.414125px;}
.lsbe_c00001{letter-spacing:0.414840px;}
.ls70d_c00001{letter-spacing:0.415440px;}
.ls6e3_c00001{letter-spacing:0.415584px;}
.ls3db_c00001{letter-spacing:0.416040px;}
.lsa6_c00001{letter-spacing:0.417840px;}
.ls6fa_c00001{letter-spacing:0.418440px;}
.ls1df_c00001{letter-spacing:0.419184px;}
.ls418_c00001{letter-spacing:0.420240px;}
.ls482_c00001{letter-spacing:0.421200px;}
.ls45_c00001{letter-spacing:0.421440px;}
.ls232_c00001{letter-spacing:0.423240px;}
.ls3a_c00001{letter-spacing:0.425088px;}
.lse6_c00001{letter-spacing:0.425999px;}
.ls541_c00001{letter-spacing:0.426240px;}
.ls11d_c00001{letter-spacing:0.427484px;}
.ls346_c00001{letter-spacing:0.435000px;}
.ls1a0_c00001{letter-spacing:0.436896px;}
.ls19_c00001{letter-spacing:0.438171px;}
.ls208_c00001{letter-spacing:0.444256px;}
.ls6b8_c00001{letter-spacing:0.445440px;}
.ls101_c00001{letter-spacing:0.448704px;}
.ls105_c00001{letter-spacing:0.450000px;}
.ls32d_c00001{letter-spacing:0.450342px;}
.ls54a_c00001{letter-spacing:0.454608px;}
.ls56f_c00001{letter-spacing:0.455040px;}
.ls448_c00001{letter-spacing:0.455640px;}
.ls2a1_c00001{letter-spacing:0.456240px;}
.ls1fb_c00001{letter-spacing:0.457440px;}
.ls5fb_c00001{letter-spacing:0.459240px;}
.ls200_c00001{letter-spacing:0.459840px;}
.ls5c9_c00001{letter-spacing:0.462840px;}
.ls606_c00001{letter-spacing:0.463440px;}
.ls621_c00001{letter-spacing:0.463800px;}
.ls663_c00001{letter-spacing:0.464640px;}
.ls3d1_c00001{letter-spacing:0.466128px;}
.ls5c6_c00001{letter-spacing:0.466440px;}
.ls6f8_c00001{letter-spacing:0.468240px;}
.ls6dc_c00001{letter-spacing:0.470040px;}
.lsc0_c00001{letter-spacing:0.472320px;}
.ls421_c00001{letter-spacing:0.473640px;}
.ls7dd_c00001{letter-spacing:0.475200px;}
.ls6db_c00001{letter-spacing:0.476040px;}
.ls38_c00001{letter-spacing:0.478224px;}
.ls1ac_c00001{letter-spacing:0.479520px;}
.ls753_c00001{letter-spacing:0.479880px;}
.ls554_c00001{letter-spacing:0.479952px;}
.ls125_c00001{letter-spacing:0.480919px;}
.ls385_c00001{letter-spacing:0.481440px;}
.ls7e8_c00001{letter-spacing:0.483600px;}
.ls6aa_c00001{letter-spacing:0.484440px;}
.ls644_c00001{letter-spacing:0.486840px;}
.lsa9_c00001{letter-spacing:0.486856px;}
.ls41f_c00001{letter-spacing:0.488040px;}
.ls447_c00001{letter-spacing:0.489240px;}
.ls5e8_c00001{letter-spacing:0.490440px;}
.ls7b3_c00001{letter-spacing:0.492840px;}
.ls99_c00001{letter-spacing:0.492942px;}
.ls6f5_c00001{letter-spacing:0.493440px;}
.ls27a_c00001{letter-spacing:0.494040px;}
.ls54e_c00001{letter-spacing:0.494278px;}
.ls57f_c00001{letter-spacing:0.494723px;}
.ls17f_c00001{letter-spacing:0.494773px;}
.ls3eb_c00001{letter-spacing:0.495000px;}
.ls477_c00001{letter-spacing:0.498600px;}
.ls60_c00001{letter-spacing:0.501240px;}
.ls3e_c00001{letter-spacing:0.501840px;}
.ls194_c00001{letter-spacing:0.505200px;}
.ls2dd_c00001{letter-spacing:0.507744px;}
.ls2ab_c00001{letter-spacing:0.508440px;}
.ls3d0_c00001{letter-spacing:0.511056px;}
.ls58_c00001{letter-spacing:0.513648px;}
.ls511_c00001{letter-spacing:0.514440px;}
.ls1bf_c00001{letter-spacing:0.516816px;}
.ls3e7_c00001{letter-spacing:0.517285px;}
.ls792_c00001{letter-spacing:0.518645px;}
.ls79_c00001{letter-spacing:0.519552px;}
.ls1ff_c00001{letter-spacing:0.522144px;}
.ls18_c00001{letter-spacing:0.523440px;}
.ls734_c00001{letter-spacing:0.524830px;}
.ls7a_c00001{letter-spacing:0.525456px;}
.ls685_c00001{letter-spacing:0.527640px;}
.ls201_c00001{letter-spacing:0.529440px;}
.ls3ec_c00001{letter-spacing:0.529456px;}
.ls14_c00001{letter-spacing:0.531360px;}
.lsd4_c00001{letter-spacing:0.532224px;}
.ls117_c00001{letter-spacing:0.532722px;}
.ls3ea_c00001{letter-spacing:0.532800px;}
.ls301_c00001{letter-spacing:0.533040px;}
.ls176_c00001{letter-spacing:0.534602px;}
.ls268_c00001{letter-spacing:0.534840px;}
.ls733_c00001{letter-spacing:0.535220px;}
.ls143_c00001{letter-spacing:0.535542px;}
.ls93_c00001{letter-spacing:0.536040px;}
.ls10_c00001{letter-spacing:0.537264px;}
.ls638_c00001{letter-spacing:0.538440px;}
.ls3f5_c00001{letter-spacing:0.539640px;}
.ls55d_c00001{letter-spacing:0.541628px;}
.ls307_c00001{letter-spacing:0.543168px;}
.ls144_c00001{letter-spacing:0.545040px;}
.ls36a_c00001{letter-spacing:0.545640px;}
.ls30_c00001{letter-spacing:0.547713px;}
.ls5d8_c00001{letter-spacing:0.548640px;}
.ls47f_c00001{letter-spacing:0.548950px;}
.ls40_c00001{letter-spacing:0.549072px;}
.ls3a5_c00001{letter-spacing:0.549569px;}
.ls2ff_c00001{letter-spacing:0.551040px;}
.ls620_c00001{letter-spacing:0.551640px;}
.ls5d0_c00001{letter-spacing:0.552240px;}
.ls7b0_c00001{letter-spacing:0.553280px;}
.ls356_c00001{letter-spacing:0.553799px;}
.ls718_c00001{letter-spacing:0.554040px;}
.ls1db_c00001{letter-spacing:0.554976px;}
.ls6ce_c00001{letter-spacing:0.555240px;}
.ls19f_c00001{letter-spacing:0.559440px;}
.ls3ef_c00001{letter-spacing:0.559885px;}
.ls25f_c00001{letter-spacing:0.560040px;}
.ls12_c00001{letter-spacing:0.560880px;}
.ls304_c00001{letter-spacing:0.561240px;}
.ls1f8_c00001{letter-spacing:0.561600px;}
.ls62d_c00001{letter-spacing:0.567840px;}
.ls5da_c00001{letter-spacing:0.571440px;}
.ls57b_c00001{letter-spacing:0.572056px;}
.ls4dc_c00001{letter-spacing:0.572688px;}
.ls7af_c00001{letter-spacing:0.576534px;}
.ls33b_c00001{letter-spacing:0.577800px;}
.ls552_c00001{letter-spacing:0.578592px;}
.ls306_c00001{letter-spacing:0.584040px;}
.ls1a_c00001{letter-spacing:0.584496px;}
.ls47b_c00001{letter-spacing:0.585960px;}
.ls17a_c00001{letter-spacing:0.590400px;}
.ls502_c00001{letter-spacing:0.591240px;}
.ls5e9_c00001{letter-spacing:0.593040px;}
.ls39e_c00001{letter-spacing:0.594240px;}
.ls7ae_c00001{letter-spacing:0.595929px;}
.ls59b_c00001{letter-spacing:0.596304px;}
.ls5d_c00001{letter-spacing:0.596736px;}
.ls77b_c00001{letter-spacing:0.597600px;}
.ls10c_c00001{letter-spacing:0.598200px;}
.lsde_c00001{letter-spacing:0.602040px;}
.ls48c_c00001{letter-spacing:0.602064px;}
.ls85_c00001{letter-spacing:0.602208px;}
.ls1f_c00001{letter-spacing:0.602485px;}
.ls423_c00001{letter-spacing:0.602640px;}
.ls4e6_c00001{letter-spacing:0.603994px;}
.ls5e7_c00001{letter-spacing:0.604440px;}
.ls158_c00001{letter-spacing:0.608040px;}
.ls1a9_c00001{letter-spacing:0.608570px;}
.ls70f_c00001{letter-spacing:0.608640px;}
.ls613_c00001{letter-spacing:0.609240px;}
.ls48f_c00001{letter-spacing:0.609840px;}
.ls6ad_c00001{letter-spacing:0.610440px;}
.ls1b8_c00001{letter-spacing:0.614016px;}
.ls8_c00001{letter-spacing:0.615840px;}
.ls768_c00001{letter-spacing:0.617640px;}
.ls5cf_c00001{letter-spacing:0.619440px;}
.ls1b7_c00001{letter-spacing:0.619920px;}
.ls5f9_c00001{letter-spacing:0.620040px;}
.ls537_c00001{letter-spacing:0.620593px;}
.ls169_c00001{letter-spacing:0.621187px;}
.ls535_c00001{letter-spacing:0.625195px;}
.ls6e6_c00001{letter-spacing:0.625200px;}
.ls44f_c00001{letter-spacing:0.625824px;}
.ls16_c00001{letter-spacing:0.626040px;}
.ls3dc_c00001{letter-spacing:0.630840px;}
.ls56d_c00001{letter-spacing:0.631440px;}
.ls244_c00001{letter-spacing:0.631728px;}
.ls7bc_c00001{letter-spacing:0.632040px;}
.ls609_c00001{letter-spacing:0.633840px;}
.ls98_c00001{letter-spacing:0.637632px;}
.ls315_c00001{letter-spacing:0.638040px;}
.ls5ea_c00001{letter-spacing:0.639960px;}
.ls4df_c00001{letter-spacing:0.643536px;}
.ls6df_c00001{letter-spacing:0.644640px;}
.lscc_c00001{letter-spacing:0.649440px;}
.ls3cb_c00001{letter-spacing:0.651456px;}
.ls708_c00001{letter-spacing:0.654480px;}
.ls11_c00001{letter-spacing:0.657256px;}
.ls662_c00001{letter-spacing:0.657600px;}
.ls467_c00001{letter-spacing:0.658419px;}
.ls269_c00001{letter-spacing:0.658440px;}
.ls456_c00001{letter-spacing:0.659037px;}
.ls7db_c00001{letter-spacing:0.660000px;}
.ls7b2_c00001{letter-spacing:0.660600px;}
.ls517_c00001{letter-spacing:0.661248px;}
.ls234_c00001{letter-spacing:0.662640px;}
.ls61f_c00001{letter-spacing:0.663600px;}
.ls70a_c00001{letter-spacing:0.667200px;}
.lsb3_c00001{letter-spacing:0.667440px;}
.ls124_c00001{letter-spacing:0.667943px;}
.ls235_c00001{letter-spacing:0.668640px;}
.ls6fb_c00001{letter-spacing:0.669000px;}
.ls23b_c00001{letter-spacing:0.669240px;}
.ls69f_c00001{letter-spacing:0.671400px;}
.ls74a_c00001{letter-spacing:0.672840px;}
.ls575_c00001{letter-spacing:0.673056px;}
.ls697_c00001{letter-spacing:0.674640px;}
.ls5fa_c00001{letter-spacing:0.675240px;}
.ls5d6_c00001{letter-spacing:0.675840px;}
.ls7ba_c00001{letter-spacing:0.677400px;}
.ls60b_c00001{letter-spacing:0.680040px;}
.ls6e8_c00001{letter-spacing:0.681240px;}
.ls120_c00001{letter-spacing:0.681302px;}
.ls454_c00001{letter-spacing:0.681840px;}
.ls70e_c00001{letter-spacing:0.683040px;}
.ls710_c00001{letter-spacing:0.683640px;}
.ls174_c00001{letter-spacing:0.684518px;}
.ls446_c00001{letter-spacing:0.684840px;}
.ls6f1_c00001{letter-spacing:0.684864px;}
.ls28e_c00001{letter-spacing:0.685200px;}
.ls683_c00001{letter-spacing:0.687240px;}
.ls11f_c00001{letter-spacing:0.687981px;}
.ls6cb_c00001{letter-spacing:0.688200px;}
.ls20_c00001{letter-spacing:0.690768px;}
.ls626_c00001{letter-spacing:0.690840px;}
.ls115_c00001{letter-spacing:0.691320px;}
.ls9c_c00001{letter-spacing:0.691440px;}
.ls449_c00001{letter-spacing:0.692040px;}
.ls47d_c00001{letter-spacing:0.692520px;}
.ls645_c00001{letter-spacing:0.692640px;}
.ls22c_c00001{letter-spacing:0.693840px;}
.ls6ea_c00001{letter-spacing:0.695640px;}
.ls4c6_c00001{letter-spacing:0.696000px;}
.ls5b2_c00001{letter-spacing:0.696240px;}
.ls1c6_c00001{letter-spacing:0.696384px;}
.ls7e_c00001{letter-spacing:0.696672px;}
.ls53d_c00001{letter-spacing:0.698640px;}
.ls56e_c00001{letter-spacing:0.701640px;}
.ls7e4_c00001{letter-spacing:0.702240px;}
.ls748_c00001{letter-spacing:0.702576px;}
.ls458_c00001{letter-spacing:0.705600px;}
.ls6e5_c00001{letter-spacing:0.708240px;}
.ls4d2_c00001{letter-spacing:0.708480px;}
.ls690_c00001{letter-spacing:0.709920px;}
.ls6a6_c00001{letter-spacing:0.711840px;}
.lsf_c00001{letter-spacing:0.712027px;}
.ls53_c00001{letter-spacing:0.714384px;}
.ls16e_c00001{letter-spacing:0.714452px;}
.ls646_c00001{letter-spacing:0.715441px;}
.ls3d_c00001{letter-spacing:0.718113px;}
.ls113_c00001{letter-spacing:0.719280px;}
.ls52_c00001{letter-spacing:0.720288px;}
.ls772_c00001{letter-spacing:0.722304px;}
.ls5a7_c00001{letter-spacing:0.723480px;}
.ls5bf_c00001{letter-spacing:0.723840px;}
.ls4dd_c00001{letter-spacing:0.726192px;}
.ls66a_c00001{letter-spacing:0.726240px;}
.ls5db_c00001{letter-spacing:0.726840px;}
.ls4c3_c00001{letter-spacing:0.728640px;}
.ls1f6_c00001{letter-spacing:0.730284px;}
.lsd6_c00001{letter-spacing:0.732240px;}
.ls3d9_c00001{letter-spacing:0.738840px;}
.ls717_c00001{letter-spacing:0.739440px;}
.ls7a0_c00001{letter-spacing:0.739800px;}
.ls451_c00001{letter-spacing:0.741417px;}
.ls5a3_c00001{letter-spacing:0.742440px;}
.ls43_c00001{letter-spacing:0.743904px;}
.ls5b8_c00001{letter-spacing:0.746040px;}
.ls1b4_c00001{letter-spacing:0.746880px;}
.ls6b7_c00001{letter-spacing:0.751440px;}
.ls6d2_c00001{letter-spacing:0.754776px;}
.ls62f_c00001{letter-spacing:0.755640px;}
.ls3c0_c00001{letter-spacing:0.756840px;}
.ls5f8_c00001{letter-spacing:0.757440px;}
.ls655_c00001{letter-spacing:0.761640px;}
.ls31f_c00001{letter-spacing:0.762840px;}
.ls7b_c00001{letter-spacing:0.763440px;}
.ls3cf_c00001{letter-spacing:0.764640px;}
.ls4bb_c00001{letter-spacing:0.765240px;}
.ls445_c00001{letter-spacing:0.766440px;}
.lsae_c00001{letter-spacing:0.766799px;}
.ls7b8_c00001{letter-spacing:0.767040px;}
.ls465_c00001{letter-spacing:0.767520px;}
.ls6e1_c00001{letter-spacing:0.768840px;}
.ls2f_c00001{letter-spacing:0.771240px;}
.ls4c4_c00001{letter-spacing:0.773040px;}
.ls192_c00001{letter-spacing:0.773424px;}
.ls5ba_c00001{letter-spacing:0.773640px;}
.ls273_c00001{letter-spacing:0.774240px;}
.ls39c_c00001{letter-spacing:0.774840px;}
.ls600_c00001{letter-spacing:0.775440px;}
.ls2ae_c00001{letter-spacing:0.776640px;}
.ls2e_c00001{letter-spacing:0.780840px;}
.ls453_c00001{letter-spacing:0.781440px;}
.ls3f1_c00001{letter-spacing:0.783240px;}
.ls455_c00001{letter-spacing:0.783840px;}
.ls5bd_c00001{letter-spacing:0.791136px;}
.ls384_c00001{letter-spacing:0.791142px;}
.ls29c_c00001{letter-spacing:0.796440px;}
.ls23_c00001{letter-spacing:0.797040px;}
.ls6ed_c00001{letter-spacing:0.797227px;}
.ls38f_c00001{letter-spacing:0.802944px;}
.ls7b9_c00001{letter-spacing:0.809040px;}
.ls7d6_c00001{letter-spacing:0.812640px;}
.ls4ce_c00001{letter-spacing:0.815040px;}
.ls259_c00001{letter-spacing:0.816240px;}
.ls3bf_c00001{letter-spacing:0.819840px;}
.ls1e_c00001{letter-spacing:0.821570px;}
.ls7aa_c00001{letter-spacing:0.822840px;}
.ls406_c00001{letter-spacing:0.824044px;}
.ls305_c00001{letter-spacing:0.824640px;}
.ls413_c00001{letter-spacing:0.824662px;}
.ls76f_c00001{letter-spacing:0.826560px;}
.ls601_c00001{letter-spacing:0.827640px;}
.ls6a7_c00001{letter-spacing:0.831240px;}
.ls3f3_c00001{letter-spacing:0.831840px;}
.ls420_c00001{letter-spacing:0.833040px;}
.ls624_c00001{letter-spacing:0.835440px;}
.ls2b_c00001{letter-spacing:0.837840px;}
.ls1fc_c00001{letter-spacing:0.839640px;}
.ls6b1_c00001{letter-spacing:0.840240px;}
.ls1c7_c00001{letter-spacing:0.842400px;}
.ls603_c00001{letter-spacing:0.846240px;}
.ls631_c00001{letter-spacing:0.846840px;}
.ls769_c00001{letter-spacing:0.849840px;}
.ls318_c00001{letter-spacing:0.851040px;}
.ls13b_c00001{letter-spacing:0.851999px;}
.ls5ee_c00001{letter-spacing:0.856080px;}
.ls5ae_c00001{letter-spacing:0.861840px;}
.ls783_c00001{letter-spacing:0.861984px;}
.ls303_c00001{letter-spacing:0.867888px;}
.lsdb_c00001{letter-spacing:0.868320px;}
.ls18f_c00001{letter-spacing:0.873792px;}
.ls179_c00001{letter-spacing:0.885600px;}
.ls187_c00001{letter-spacing:0.888364px;}
.ls573_c00001{letter-spacing:0.891504px;}
.ls775_c00001{letter-spacing:0.894598px;}
.ls160_c00001{letter-spacing:0.895044px;}
.ls50e_c00001{letter-spacing:0.897408px;}
.ls4de_c00001{letter-spacing:0.903312px;}
.ls565_c00001{letter-spacing:0.909216px;}
.ls23a_c00001{letter-spacing:0.915120px;}
.ls787_c00001{letter-spacing:0.921024px;}
.ls486_c00001{letter-spacing:0.932832px;}
.ls189_c00001{letter-spacing:0.933120px;}
.ls19a_c00001{letter-spacing:0.938736px;}
.ls47_c00001{letter-spacing:0.944640px;}
.ls20a_c00001{letter-spacing:0.946080px;}
.ls330_c00001{letter-spacing:0.950544px;}
.ls3ed_c00001{letter-spacing:0.955080px;}
.ls46c_c00001{letter-spacing:0.956448px;}
.ls487_c00001{letter-spacing:0.961541px;}
.ls11a_c00001{letter-spacing:0.961714px;}
.ls3b_c00001{letter-spacing:0.962352px;}
.ls199_c00001{letter-spacing:0.967627px;}
.ls2e5_c00001{letter-spacing:0.973713px;}
.ls781_c00001{letter-spacing:0.974160px;}
.ls43e_c00001{letter-spacing:0.985968px;}
.ls4d_c00001{letter-spacing:0.991970px;}
.ls32b_c00001{letter-spacing:0.997776px;}
.ls490_c00001{letter-spacing:1.003680px;}
.ls43d_c00001{letter-spacing:1.027296px;}
.ls12f_c00001{letter-spacing:1.028632px;}
.ls658_c00001{letter-spacing:1.050912px;}
.ls788_c00001{letter-spacing:1.058912px;}
.ls1f4_c00001{letter-spacing:1.073400px;}
.ls4ca_c00001{letter-spacing:1.074528px;}
.ls7e5_c00001{letter-spacing:1.080000px;}
.ls617_c00001{letter-spacing:1.080432px;}
.ls73c_c00001{letter-spacing:1.086336px;}
.ls61c_c00001{letter-spacing:1.098144px;}
.ls4f2_c00001{letter-spacing:1.104048px;}
.ls34_c00001{letter-spacing:1.121760px;}
.ls95_c00001{letter-spacing:1.127664px;}
.ls776_c00001{letter-spacing:1.133568px;}
.ls610_c00001{letter-spacing:1.138027px;}
.ls5c0_c00001{letter-spacing:1.139472px;}
.ls780_c00001{letter-spacing:1.156284px;}
.ls24a_c00001{letter-spacing:1.157184px;}
.ls4b5_c00001{letter-spacing:1.163088px;}
.ls222_c00001{letter-spacing:1.166400px;}
.ls77f_c00001{letter-spacing:1.168455px;}
.ls512_c00001{letter-spacing:1.168992px;}
.ls15b_c00001{letter-spacing:1.186704px;}
.ls282_c00001{letter-spacing:1.192608px;}
.ls7ec_c00001{letter-spacing:1.198512px;}
.ls6af_c00001{letter-spacing:1.222128px;}
.ls15c_c00001{letter-spacing:1.223226px;}
.ls66c_c00001{letter-spacing:1.228032px;}
.ls4b3_c00001{letter-spacing:1.239840px;}
.ls145_c00001{letter-spacing:1.245744px;}
.ls4b6_c00001{letter-spacing:1.257552px;}
.lsee_c00001{letter-spacing:1.263456px;}
.ls6dd_c00001{letter-spacing:1.277998px;}
.ls149_c00001{letter-spacing:1.281168px;}
.ls460_c00001{letter-spacing:1.292976px;}
.ls239_c00001{letter-spacing:1.298880px;}
.ls165_c00001{letter-spacing:1.304784px;}
.ls2ea_c00001{letter-spacing:1.328400px;}
.ls146_c00001{letter-spacing:1.357920px;}
.ls3df_c00001{letter-spacing:1.375632px;}
.ls54b_c00001{letter-spacing:1.387440px;}
.ls83_c00001{letter-spacing:1.399248px;}
.ls55e_c00001{letter-spacing:1.405152px;}
.ls354_c00001{letter-spacing:1.422864px;}
.ls73b_c00001{letter-spacing:1.428768px;}
.ls4b8_c00001{letter-spacing:1.434672px;}
.ls691_c00001{letter-spacing:1.440576px;}
.ls5f6_c00001{letter-spacing:1.446480px;}
.ls7e0_c00001{letter-spacing:1.452384px;}
.lsb0_c00001{letter-spacing:1.464192px;}
.ls739_c00001{letter-spacing:1.470096px;}
.lsab_c00001{letter-spacing:1.476000px;}
.ls72a_c00001{letter-spacing:1.505520px;}
.ls1c8_c00001{letter-spacing:1.511424px;}
.ls190_c00001{letter-spacing:1.517328px;}
.ls5e2_c00001{letter-spacing:1.521426px;}
.ls31a_c00001{letter-spacing:1.523232px;}
.ls597_c00001{letter-spacing:1.526400px;}
.ls5f5_c00001{letter-spacing:1.535040px;}
.ls73f_c00001{letter-spacing:1.540944px;}
.ls44e_c00001{letter-spacing:1.546848px;}
.ls45f_c00001{letter-spacing:1.564560px;}
.ls1dd_c00001{letter-spacing:1.570464px;}
.ls245_c00001{letter-spacing:1.576368px;}
.ls5b0_c00001{letter-spacing:1.588176px;}
.ls32a_c00001{letter-spacing:1.594080px;}
.ls444_c00001{letter-spacing:1.599984px;}
.ls36_c00001{letter-spacing:1.617696px;}
.ls5f2_c00001{letter-spacing:1.629504px;}
.ls7b5_c00001{letter-spacing:1.653120px;}
.ls703_c00001{letter-spacing:1.656000px;}
.ls1d1_c00001{letter-spacing:1.659024px;}
.ls292_c00001{letter-spacing:1.664928px;}
.ls1ce_c00001{letter-spacing:1.669200px;}
.ls2d2_c00001{letter-spacing:1.670832px;}
.ls7b6_c00001{letter-spacing:1.676736px;}
.ls317_c00001{letter-spacing:1.682640px;}
.ls43b_c00001{letter-spacing:1.688544px;}
.ls352_c00001{letter-spacing:1.694448px;}
.ls362_c00001{letter-spacing:1.700352px;}
.ls77a_c00001{letter-spacing:1.728000px;}
.ls529_c00001{letter-spacing:1.729872px;}
.ls3e2_c00001{letter-spacing:1.765296px;}
.ls61d_c00001{letter-spacing:1.794816px;}
.ls1ea_c00001{letter-spacing:1.812528px;}
.ls36f_c00001{letter-spacing:1.825711px;}
.ls428_c00001{letter-spacing:1.830240px;}
.lseb_c00001{letter-spacing:1.843200px;}
.ls261_c00001{letter-spacing:1.865664px;}
.ls324_c00001{letter-spacing:1.871568px;}
.ls308_c00001{letter-spacing:1.883376px;}
.ls4fa_c00001{letter-spacing:1.889280px;}
.ls424_c00001{letter-spacing:1.895184px;}
.ls347_c00001{letter-spacing:1.906992px;}
.ls3c_c00001{letter-spacing:1.954224px;}
.ls37_c00001{letter-spacing:1.960128px;}
.ls555_c00001{letter-spacing:1.966032px;}
.ls10b_c00001{letter-spacing:1.983744px;}
.ls129_c00001{letter-spacing:2.060496px;}
.ls40e_c00001{letter-spacing:2.066400px;}
.ls333_c00001{letter-spacing:2.072304px;}
.ls671_c00001{letter-spacing:2.078208px;}
.ls10a_c00001{letter-spacing:2.084112px;}
.ls343_c00001{letter-spacing:2.090016px;}
.ls797_c00001{letter-spacing:2.113632px;}
.ls399_c00001{letter-spacing:2.119536px;}
.ls332_c00001{letter-spacing:2.125440px;}
.ls789_c00001{letter-spacing:2.131344px;}
.ls79b_c00001{letter-spacing:2.143152px;}
.ls285_c00001{letter-spacing:2.154960px;}
.ls4b7_c00001{letter-spacing:2.160864px;}
.ls4f1_c00001{letter-spacing:2.172672px;}
.ls342_c00001{letter-spacing:2.178576px;}
.ls2eb_c00001{letter-spacing:2.208096px;}
.ls470_c00001{letter-spacing:2.225808px;}
.ls6ba_c00001{letter-spacing:2.243520px;}
.ls54c_c00001{letter-spacing:2.257796px;}
.ls618_c00001{letter-spacing:2.273040px;}
.ls570_c00001{letter-spacing:2.302560px;}
.ls7c3_c00001{letter-spacing:2.318653px;}
.ls40d_c00001{letter-spacing:2.320272px;}
.ls5f3_c00001{letter-spacing:2.326176px;}
.ls277_c00001{letter-spacing:2.337984px;}
.ls37d_c00001{letter-spacing:2.342996px;}
.ls66b_c00001{letter-spacing:2.355696px;}
.lse3_c00001{letter-spacing:2.361600px;}
.ls36d_c00001{letter-spacing:2.373425px;}
.ls790_c00001{letter-spacing:2.376000px;}
.ls6f_c00001{letter-spacing:2.379312px;}
.ls152_c00001{letter-spacing:2.397024px;}
.ls40f_c00001{letter-spacing:2.404800px;}
.ls4aa_c00001{letter-spacing:2.433600px;}
.ls7c0_c00001{letter-spacing:2.441703px;}
.ls43f_c00001{letter-spacing:2.448000px;}
.ls260_c00001{letter-spacing:2.461968px;}
.ls64e_c00001{letter-spacing:2.479680px;}
.ls1c_c00001{letter-spacing:2.485584px;}
.ls226_c00001{letter-spacing:2.489053px;}
.ls76b_c00001{letter-spacing:2.491488px;}
.ls371_c00001{letter-spacing:2.495139px;}
.ls1d0_c00001{letter-spacing:2.526912px;}
.ls2d1_c00001{letter-spacing:2.538720px;}
.ls96_c00001{letter-spacing:2.544624px;}
.ls7be_c00001{letter-spacing:2.556432px;}
.ls14e_c00001{letter-spacing:2.574144px;}
.ls388_c00001{letter-spacing:2.591856px;}
.ls500_c00001{letter-spacing:2.609568px;}
.ls35b_c00001{letter-spacing:2.639088px;}
.ls119_c00001{letter-spacing:2.644992px;}
.ls16d_c00001{letter-spacing:2.656800px;}
.ls4fe_c00001{letter-spacing:2.686320px;}
.ls50d_c00001{letter-spacing:2.698128px;}
.ls7bf_c00001{letter-spacing:2.708880px;}
.ls1ba_c00001{letter-spacing:2.715840px;}
.ls1a5_c00001{letter-spacing:2.721744px;}
.ls675_c00001{letter-spacing:2.727648px;}
.ls6bb_c00001{letter-spacing:2.768976px;}
.ls20b_c00001{letter-spacing:2.774880px;}
.ls54_c00001{letter-spacing:2.780784px;}
.ls592_c00001{letter-spacing:2.792592px;}
.ls7c7_c00001{letter-spacing:2.804400px;}
.lsc7_c00001{letter-spacing:2.810304px;}
.ls38a_c00001{letter-spacing:2.828016px;}
.ls4f9_c00001{letter-spacing:2.833920px;}
.ls6a3_c00001{letter-spacing:2.863440px;}
.ls520_c00001{letter-spacing:2.869344px;}
.ls4be_c00001{letter-spacing:2.892960px;}
.ls497_c00001{letter-spacing:2.901600px;}
.ls1a4_c00001{letter-spacing:2.904768px;}
.ls7c2_c00001{letter-spacing:2.908966px;}
.ls4bf_c00001{letter-spacing:2.910672px;}
.ls12a_c00001{letter-spacing:2.952000px;}
.ls724_c00001{letter-spacing:2.986800px;}
.ls20d_c00001{letter-spacing:2.987400px;}
.ls488_c00001{letter-spacing:2.987424px;}
.ls20c_c00001{letter-spacing:2.988000px;}
.ls634_c00001{letter-spacing:2.993328px;}
.ls16f_c00001{letter-spacing:2.999232px;}
.ls751_c00001{letter-spacing:3.005136px;}
.ls33f_c00001{letter-spacing:3.011040px;}
.ls2f5_c00001{letter-spacing:3.016944px;}
.ls4b4_c00001{letter-spacing:3.022848px;}
.ls7ea_c00001{letter-spacing:3.028752px;}
.ls3fe_c00001{letter-spacing:3.046464px;}
.ls380_c00001{letter-spacing:3.058272px;}
.ls757_c00001{letter-spacing:3.081600px;}
.ls6c5_c00001{letter-spacing:3.087240px;}
.ls75f_c00001{letter-spacing:3.099600px;}
.ls358_c00001{letter-spacing:3.105504px;}
.ls2f8_c00001{letter-spacing:3.111408px;}
.ls679_c00001{letter-spacing:3.158040px;}
.ls107_c00001{letter-spacing:3.164544px;}
.ls186_c00001{letter-spacing:3.175200px;}
.ls2f6_c00001{letter-spacing:3.182256px;}
.ls75e_c00001{letter-spacing:3.194995px;}
.ls647_c00001{letter-spacing:3.199968px;}
.ls74f_c00001{letter-spacing:3.205872px;}
.ls42f_c00001{letter-spacing:3.217680px;}
.ls670_c00001{letter-spacing:3.229488px;}
.ls188_c00001{letter-spacing:3.246204px;}
.lsa2_c00001{letter-spacing:3.247200px;}
.ls6bd_c00001{letter-spacing:3.259008px;}
.ls581_c00001{letter-spacing:3.276720px;}
.ls210_c00001{letter-spacing:3.299400px;}
.ls17b_c00001{letter-spacing:3.300336px;}
.ls220_c00001{letter-spacing:3.300912px;}
.ls1dc_c00001{letter-spacing:3.312144px;}
.ls6d1_c00001{letter-spacing:3.318048px;}
.ls1d3_c00001{letter-spacing:3.323952px;}
.ls1be_c00001{letter-spacing:3.335760px;}
.ls3d3_c00001{letter-spacing:3.353472px;}
.ls369_c00001{letter-spacing:3.375840px;}
.ls501_c00001{letter-spacing:3.418416px;}
.ls44d_c00001{letter-spacing:3.424320px;}
.ls55_c00001{letter-spacing:3.426251px;}
.ls42b_c00001{letter-spacing:3.459744px;}
.ls431_c00001{letter-spacing:3.470400px;}
.ls471_c00001{letter-spacing:3.477456px;}
.ls63f_c00001{letter-spacing:3.483360px;}
.ls1f3_c00001{letter-spacing:3.506976px;}
.ls78_c00001{letter-spacing:3.512880px;}
.ls77_c00001{letter-spacing:3.518784px;}
.ls532_c00001{letter-spacing:3.524688px;}
.ls794_c00001{letter-spacing:3.530592px;}
.lsfe_c00001{letter-spacing:3.536496px;}
.ls75_c00001{letter-spacing:3.542400px;}
.ls4bd_c00001{letter-spacing:3.547320px;}
.ls1c9_c00001{letter-spacing:3.548304px;}
.ls258_c00001{letter-spacing:3.554208px;}
.ls2e4_c00001{letter-spacing:3.583728px;}
.ls6c3_c00001{letter-spacing:3.618840px;}
.ls798_c00001{letter-spacing:3.636864px;}
.ls2d5_c00001{letter-spacing:3.660480px;}
.ls545_c00001{letter-spacing:3.678192px;}
.ls543_c00001{letter-spacing:3.684096px;}
.ls341_c00001{letter-spacing:3.701808px;}
.ls74_c00001{letter-spacing:3.719520px;}
.ls652_c00001{letter-spacing:3.725424px;}
.ls76_c00001{letter-spacing:3.731328px;}
.ls5ec_c00001{letter-spacing:3.737232px;}
.ls59_c00001{letter-spacing:3.743136px;}
.ls3fa_c00001{letter-spacing:3.754944px;}
.ls3f6_c00001{letter-spacing:3.760848px;}
.ls6ac_c00001{letter-spacing:3.761640px;}
.ls481_c00001{letter-spacing:3.778560px;}
.ls48a_c00001{letter-spacing:3.784464px;}
.ls2cc_c00001{letter-spacing:3.787200px;}
.ls17c_c00001{letter-spacing:3.808080px;}
.ls2af_c00001{letter-spacing:3.816000px;}
.ls1b6_c00001{letter-spacing:3.819888px;}
.ls1b5_c00001{letter-spacing:3.825792px;}
.ls81_c00001{letter-spacing:3.837600px;}
.ls7bd_c00001{letter-spacing:3.855312px;}
.ls7da_c00001{letter-spacing:3.862080px;}
.lsf3_c00001{letter-spacing:3.890736px;}
.ls1fd_c00001{letter-spacing:3.896640px;}
.ls4c9_c00001{letter-spacing:3.926160px;}
.ls63b_c00001{letter-spacing:3.932064px;}
.ls4a_c00001{letter-spacing:3.949776px;}
.ls3af_c00001{letter-spacing:3.961584px;}
.ls155_c00001{letter-spacing:3.967488px;}
.ls7cb_c00001{letter-spacing:3.979296px;}
.ls241_c00001{letter-spacing:3.985200px;}
.ls395_c00001{letter-spacing:4.002912px;}
.ls240_c00001{letter-spacing:4.010479px;}
.ls480_c00001{letter-spacing:4.014720px;}
.ls766_c00001{letter-spacing:4.030440px;}
.ls489_c00001{letter-spacing:4.032432px;}
.ls75c_c00001{letter-spacing:4.044240px;}
.ls97_c00001{letter-spacing:4.050144px;}
.ls7ef_c00001{letter-spacing:4.061952px;}
.ls7ee_c00001{letter-spacing:4.067856px;}
.ls3b2_c00001{letter-spacing:4.073760px;}
.ls111_c00001{letter-spacing:4.085568px;}
.ls43c_c00001{letter-spacing:4.091472px;}
.ls2e9_c00001{letter-spacing:4.104000px;}
.ls230_c00001{letter-spacing:4.109184px;}
.ls494_c00001{letter-spacing:4.126896px;}
.ls1c1_c00001{letter-spacing:4.142592px;}
.lsa1_c00001{letter-spacing:4.144608px;}
.ls623_c00001{letter-spacing:4.162320px;}
.ls284_c00001{letter-spacing:4.168224px;}
.ls35c_c00001{letter-spacing:4.174128px;}
.ls29a_c00001{letter-spacing:4.185936px;}
.lsf5_c00001{letter-spacing:4.191840px;}
.ls4d7_c00001{letter-spacing:4.197744px;}
.ls3b1_c00001{letter-spacing:4.199136px;}
.ls170_c00001{letter-spacing:4.209552px;}
.ls1f2_c00001{letter-spacing:4.221360px;}
.ls243_c00001{letter-spacing:4.244976px;}
.ls1cc_c00001{letter-spacing:4.250880px;}
.ls1d5_c00001{letter-spacing:4.256784px;}
.ls5a5_c00001{letter-spacing:4.274496px;}
.ls1de_c00001{letter-spacing:4.280400px;}
.ls1f1_c00001{letter-spacing:4.293000px;}
.ls7d7_c00001{letter-spacing:4.309920px;}
.ls7d8_c00001{letter-spacing:4.315824px;}
.ls737_c00001{letter-spacing:4.327632px;}
.ls522_c00001{letter-spacing:4.333536px;}
.ls469_c00001{letter-spacing:4.339440px;}
.ls33c_c00001{letter-spacing:4.368960px;}
.ls1ec_c00001{letter-spacing:4.374864px;}
.ls31b_c00001{letter-spacing:4.380768px;}
.ls31e_c00001{letter-spacing:4.386672px;}
.ls6c_c00001{letter-spacing:4.395600px;}
.ls1e8_c00001{letter-spacing:4.422096px;}
.ls265_c00001{letter-spacing:4.428000px;}
.ls6fd_c00001{letter-spacing:4.463424px;}
.ls34f_c00001{letter-spacing:4.469328px;}
.ls7cd_c00001{letter-spacing:4.471200px;}
.ls64b_c00001{letter-spacing:4.475400px;}
.lsbf_c00001{letter-spacing:4.487040px;}
.lsf7_c00001{letter-spacing:4.540176px;}
.lsf6_c00001{letter-spacing:4.546080px;}
.ls793_c00001{letter-spacing:4.550400px;}
.ls68e_c00001{letter-spacing:4.551984px;}
.ls713_c00001{letter-spacing:4.557888px;}
.ls326_c00001{letter-spacing:4.569696px;}
.ls61b_c00001{letter-spacing:4.581504px;}
.ls779_c00001{letter-spacing:4.605120px;}
.ls22_c00001{letter-spacing:4.616928px;}
.ls41a_c00001{letter-spacing:4.622832px;}
.ls27d_c00001{letter-spacing:4.628736px;}
.lsef_c00001{letter-spacing:4.634640px;}
.lsc3_c00001{letter-spacing:4.640544px;}
.ls80_c00001{letter-spacing:4.646448px;}
.ls65b_c00001{letter-spacing:4.651200px;}
.ls70_c00001{letter-spacing:4.664160px;}
.ls349_c00001{letter-spacing:4.670064px;}
.ls327_c00001{letter-spacing:4.710335px;}
.ls365_c00001{letter-spacing:4.720608px;}
.ls64c_c00001{letter-spacing:4.723200px;}
.ls64f_c00001{letter-spacing:4.740912px;}
.ls364_c00001{letter-spacing:4.760880px;}
.ls18b_c00001{letter-spacing:4.764528px;}
.ls2f7_c00001{letter-spacing:4.770432px;}
.ls16c_c00001{letter-spacing:4.800528px;}
.ls0_c00001{letter-spacing:4.801080px;}
.ls16b_c00001{letter-spacing:4.811760px;}
.ls1ee_c00001{letter-spacing:4.817664px;}
.ls1f7_c00001{letter-spacing:4.829472px;}
.ls5c_c00001{letter-spacing:4.841400px;}
.ls366_c00001{letter-spacing:4.843152px;}
.ls373_c00001{letter-spacing:4.868563px;}
.ls141_c00001{letter-spacing:4.870800px;}
.ls42c_c00001{letter-spacing:4.876704px;}
.ls4cc_c00001{letter-spacing:4.880448px;}
.ls3_c00001{letter-spacing:4.882320px;}
.ls1d7_c00001{letter-spacing:4.893600px;}
.ls7ed_c00001{letter-spacing:4.894416px;}
.ls37b_c00001{letter-spacing:4.906224px;}
.ls26_c00001{letter-spacing:4.923072px;}
.ls46e_c00001{letter-spacing:4.923936px;}
.ls450_c00001{letter-spacing:4.935744px;}
.ls70c_c00001{letter-spacing:4.936440px;}
.ls5dd_c00001{letter-spacing:4.938240px;}
.ls313_c00001{letter-spacing:4.947240px;}
.ls508_c00001{letter-spacing:4.953456px;}
.ls68c_c00001{letter-spacing:4.959360px;}
.ls271_c00001{letter-spacing:4.961040px;}
.ls3f0_c00001{letter-spacing:4.963920px;}
.ls2a8_c00001{letter-spacing:4.964520px;}
.ls414_c00001{letter-spacing:4.964544px;}
.ls297_c00001{letter-spacing:4.967400px;}
.ls5ff_c00001{letter-spacing:4.980480px;}
.ls744_c00001{letter-spacing:4.983120px;}
.ls1fa_c00001{letter-spacing:4.983600px;}
.ls452_c00001{letter-spacing:4.986120px;}
.ls1e7_c00001{letter-spacing:4.988880px;}
.ls636_c00001{letter-spacing:4.997664px;}
.ls5a1_c00001{letter-spacing:4.998240px;}
.ls68d_c00001{letter-spacing:5.000688px;}
.ls32_c00001{letter-spacing:5.009472px;}
.ls6e_c00001{letter-spacing:5.018400px;}
.ls36c_c00001{letter-spacing:5.045049px;}
.ls21c_c00001{letter-spacing:5.051134px;}
.ls756_c00001{letter-spacing:5.052960px;}
.ls1e6_c00001{letter-spacing:5.061000px;}
.ls777_c00001{letter-spacing:5.071536px;}
.ls588_c00001{letter-spacing:5.077440px;}
.ls65c_c00001{letter-spacing:5.082912px;}
.ls2ce_c00001{letter-spacing:5.095152px;}
.ls79f_c00001{letter-spacing:5.110705px;}
.ls761_c00001{letter-spacing:5.112000px;}
.ls5c2_c00001{letter-spacing:5.118768px;}
.ls151_c00001{letter-spacing:5.124672px;}
.lsd2_c00001{letter-spacing:5.130576px;}
.lsd1_c00001{letter-spacing:5.136480px;}
.ls2cb_c00001{letter-spacing:5.149872px;}
.ls608_c00001{letter-spacing:5.171904px;}
.ls2ef_c00001{letter-spacing:5.184000px;}
.ls6a5_c00001{letter-spacing:5.189616px;}
.ls6ab_c00001{letter-spacing:5.194800px;}
.ls320_c00001{letter-spacing:5.195113px;}
.lsa4_c00001{letter-spacing:5.195520px;}
.ls419_c00001{letter-spacing:5.205600px;}
.lsad_c00001{letter-spacing:5.207328px;}
.ls1cf_c00001{letter-spacing:5.213232px;}
.ls5d5_c00001{letter-spacing:5.222880px;}
.ls173_c00001{letter-spacing:5.225040px;}
.ls75b_c00001{letter-spacing:5.236848px;}
.ls13f_c00001{letter-spacing:5.242752px;}
.ls65_c00001{letter-spacing:5.245344px;}
.ls41_c00001{letter-spacing:5.248656px;}
.ls88_c00001{letter-spacing:5.254560px;}
.ls2b1_c00001{letter-spacing:5.260464px;}
.ls22e_c00001{letter-spacing:5.266368px;}
.ls1a3_c00001{letter-spacing:5.272272px;}
.ls8a_c00001{letter-spacing:5.278176px;}
.ls3e8_c00001{letter-spacing:5.284080px;}
.ls209_c00001{letter-spacing:5.284800px;}
.ls1cd_c00001{letter-spacing:5.286600px;}
.lscf_c00001{letter-spacing:5.289984px;}
.ls33_c00001{letter-spacing:5.290272px;}
.ls94_c00001{letter-spacing:5.295888px;}
.ls87_c00001{letter-spacing:5.301792px;}
.ls13e_c00001{letter-spacing:5.307696px;}
.ls2a7_c00001{letter-spacing:5.308367px;}
.lsce_c00001{letter-spacing:5.313600px;}
.ls71d_c00001{letter-spacing:5.319504px;}
.lsea_c00001{letter-spacing:5.325408px;}
.ls4d3_c00001{letter-spacing:5.331312px;}
.ls25_c00001{letter-spacing:5.335200px;}
.ls61e_c00001{letter-spacing:5.336040px;}
.ls4fb_c00001{letter-spacing:5.337216px;}
.ls3f8_c00001{letter-spacing:5.343120px;}
.ls7d3_c00001{letter-spacing:5.349024px;}
.ls8c_c00001{letter-spacing:5.354928px;}
.ls605_c00001{letter-spacing:5.355419px;}
.ls550_c00001{letter-spacing:5.360832px;}
.ls15e_c00001{letter-spacing:5.372640px;}
.ls476_c00001{letter-spacing:5.373000px;}
.ls2a5_c00001{letter-spacing:5.384448px;}
.ls276_c00001{letter-spacing:5.385744px;}
.ls13d_c00001{letter-spacing:5.386080px;}
.ls135_c00001{letter-spacing:5.390352px;}
.ls723_c00001{letter-spacing:5.393280px;}
.ls478_c00001{letter-spacing:5.393400px;}
.ls22d_c00001{letter-spacing:5.396256px;}
.ls28b_c00001{letter-spacing:5.400000px;}
.ls8d_c00001{letter-spacing:5.402160px;}
.ls312_c00001{letter-spacing:5.406777px;}
.ls197_c00001{letter-spacing:5.410191px;}
.lsd9_c00001{letter-spacing:5.413968px;}
.ls214_c00001{letter-spacing:5.416320px;}
.ls296_c00001{letter-spacing:5.419872px;}
.ls21b_c00001{letter-spacing:5.420640px;}
.ls203_c00001{letter-spacing:5.425776px;}
.ls59c_c00001{letter-spacing:5.427720px;}
.lsc_c00001{letter-spacing:5.430672px;}
.ls63_c00001{letter-spacing:5.431680px;}
.ls217_c00001{letter-spacing:5.433720px;}
.ls211_c00001{letter-spacing:5.434080px;}
.ls3de_c00001{letter-spacing:5.436000px;}
.ls219_c00001{letter-spacing:5.442600px;}
.ls139_c00001{letter-spacing:5.448240px;}
.lsd3_c00001{letter-spacing:5.449392px;}
.ls2ca_c00001{letter-spacing:5.453088px;}
.ls215_c00001{letter-spacing:5.459400px;}
.ls9e_c00001{letter-spacing:5.461200px;}
.ls622_c00001{letter-spacing:5.467104px;}
.ls463_c00001{letter-spacing:5.472960px;}
.ls2dc_c00001{letter-spacing:5.473008px;}
.ls4db_c00001{letter-spacing:5.477134px;}
.ls722_c00001{letter-spacing:5.481000px;}
.lse5_c00001{letter-spacing:5.484816px;}
.ls4eb_c00001{letter-spacing:5.489160px;}
.ls8b_c00001{letter-spacing:5.490720px;}
.ls7eb_c00001{letter-spacing:5.496624px;}
.ls31_c00001{letter-spacing:5.499398px;}
.ls2ec_c00001{letter-spacing:5.501476px;}
.ls2d7_c00001{letter-spacing:5.502528px;}
.ls596_c00001{letter-spacing:5.505187px;}
.ls3a3_c00001{letter-spacing:5.513160px;}
.lsc5_c00001{letter-spacing:5.514336px;}
.ls9d_c00001{letter-spacing:5.520240px;}
.ls2e3_c00001{letter-spacing:5.526144px;}
.ls309_c00001{letter-spacing:5.532048px;}
.ls1eb_c00001{letter-spacing:5.537952px;}
.ls89_c00001{letter-spacing:5.549760px;}
.ls20f_c00001{letter-spacing:5.553000px;}
.ls27c_c00001{letter-spacing:5.561568px;}
.ls68_c00001{letter-spacing:5.567472px;}
.ls196_c00001{letter-spacing:5.568419px;}
.ls136_c00001{letter-spacing:5.585184px;}
.ls74d_c00001{letter-spacing:5.592600px;}
.ls64_c00001{letter-spacing:5.597809px;}
.ls66_c00001{letter-spacing:5.601600px;}
.ls223_c00001{letter-spacing:5.608800px;}
.lsd8_c00001{letter-spacing:5.614704px;}
.lsa3_c00001{letter-spacing:5.620608px;}
.ls5ad_c00001{letter-spacing:5.626512px;}
.ls5fc_c00001{letter-spacing:5.632416px;}
.ls625_c00001{letter-spacing:5.635362px;}
.ls6de_c00001{letter-spacing:5.644224px;}
.lscd_c00001{letter-spacing:5.667840px;}
.ls1bb_c00001{letter-spacing:5.673744px;}
.ls432_c00001{letter-spacing:5.679648px;}
.ls661_c00001{letter-spacing:5.680800px;}
.ls51a_c00001{letter-spacing:5.691456px;}
.ls49e_c00001{letter-spacing:5.715600px;}
.ls400_c00001{letter-spacing:5.726880px;}
.ls191_c00001{letter-spacing:5.744592px;}
.ls49b_c00001{letter-spacing:5.750496px;}
.ls54f_c00001{letter-spacing:5.755800px;}
.ls84_c00001{letter-spacing:5.756400px;}
.ls6c9_c00001{letter-spacing:5.774112px;}
.lsf1_c00001{letter-spacing:5.780016px;}
.ls100_c00001{letter-spacing:5.785920px;}
.ls457_c00001{letter-spacing:5.793590px;}
.ls231_c00001{letter-spacing:5.797728px;}
.ls15a_c00001{letter-spacing:5.812560px;}
.ls5c5_c00001{letter-spacing:5.815440px;}
.ls161_c00001{letter-spacing:5.832000px;}
.ls699_c00001{letter-spacing:5.832600px;}
.ls1d9_c00001{letter-spacing:5.836200px;}
.ls76e_c00001{letter-spacing:5.844960px;}
.ls7e6_c00001{letter-spacing:5.856768px;}
.ls16a_c00001{letter-spacing:5.877360px;}
.ls637_c00001{letter-spacing:5.877600px;}
.ls2f0_c00001{letter-spacing:5.895600px;}
.ls2f9_c00001{letter-spacing:5.898096px;}
.ls26a_c00001{letter-spacing:5.903400px;}
.ls1ad_c00001{letter-spacing:5.904000px;}
.ls59f_c00001{letter-spacing:5.911200px;}
.ls41d_c00001{letter-spacing:5.915808px;}
.ls4c7_c00001{letter-spacing:5.919000px;}
.ls7cc_c00001{letter-spacing:5.921712px;}
.ls163_c00001{letter-spacing:5.929200px;}
.ls198_c00001{letter-spacing:5.933520px;}
.ls62e_c00001{letter-spacing:5.937000px;}
.ls58a_c00001{letter-spacing:5.937600px;}
.ls9_c00001{letter-spacing:5.938800px;}
.ls64d_c00001{letter-spacing:5.939424px;}
.ls28c_c00001{letter-spacing:5.940000px;}
.ls24b_c00001{letter-spacing:5.941200px;}
.ls3bc_c00001{letter-spacing:5.941800px;}
.ls767_c00001{letter-spacing:5.943000px;}
.ls264_c00001{letter-spacing:5.944200px;}
.ls599_c00001{letter-spacing:5.946000px;}
.ls719_c00001{letter-spacing:5.947800px;}
.ls39d_c00001{letter-spacing:5.949000px;}
.ls665_c00001{letter-spacing:5.949600px;}
.ls227_c00001{letter-spacing:5.950800px;}
.ls4cd_c00001{letter-spacing:5.951400px;}
.ls607_c00001{letter-spacing:5.952000px;}
.ls7b4_c00001{letter-spacing:5.952600px;}
.ls45d_c00001{letter-spacing:5.953200px;}
.ls673_c00001{letter-spacing:5.954400px;}
.ls24e_c00001{letter-spacing:5.955000px;}
.ls627_c00001{letter-spacing:5.955600px;}
.ls72_c00001{letter-spacing:5.956200px;}
.ls5df_c00001{letter-spacing:5.956800px;}
.ls7e7_c00001{letter-spacing:5.957400px;}
.ls25a_c00001{letter-spacing:5.958000px;}
.ls682_c00001{letter-spacing:5.958600px;}
.ls643_c00001{letter-spacing:5.959200px;}
.ls48e_c00001{letter-spacing:5.961600px;}
.ls3c5_c00001{letter-spacing:5.962200px;}
.ls7cf_c00001{letter-spacing:5.962800px;}
.lsfa_c00001{letter-spacing:5.963040px;}
.ls86_c00001{letter-spacing:5.963400px;}
.ls41e_c00001{letter-spacing:5.964600px;}
.ls5d1_c00001{letter-spacing:5.965200px;}
.ls5b3_c00001{letter-spacing:5.965800px;}
.ls441_c00001{letter-spacing:5.966400px;}
.ls288_c00001{letter-spacing:5.967600px;}
.ls295_c00001{letter-spacing:5.968200px;}
.ls4bc_c00001{letter-spacing:5.968800px;}
.ls5d9_c00001{letter-spacing:5.969400px;}
.ls91_c00001{letter-spacing:5.970000px;}
.ls132_c00001{letter-spacing:5.970600px;}
.ls294_c00001{letter-spacing:5.971200px;}
.ls654_c00001{letter-spacing:5.971800px;}
.ls368_c00001{letter-spacing:5.972400px;}
.ls22b_c00001{letter-spacing:5.973000px;}
.ls5f_c00001{letter-spacing:5.973600px;}
.ls63d_c00001{letter-spacing:5.974200px;}
.ls29_c00001{letter-spacing:5.974800px;}
.ls153_c00001{letter-spacing:5.974848px;}
.ls15_c00001{letter-spacing:5.975400px;}
.ls4_c00001{letter-spacing:5.976000px;}
.ls60c_c00001{letter-spacing:5.976600px;}
.ls746_c00001{letter-spacing:5.977800px;}
.ls6d_c00001{letter-spacing:5.978400px;}
.ls24_c00001{letter-spacing:5.979600px;}
.lsa_c00001{letter-spacing:5.980200px;}
.ls65d_c00001{letter-spacing:5.980752px;}
.ls62_c00001{letter-spacing:5.980800px;}
.ls79c_c00001{letter-spacing:5.981400px;}
.ls73_c00001{letter-spacing:5.982000px;}
.ls405_c00001{letter-spacing:5.983200px;}
.lsa8_c00001{letter-spacing:5.983800px;}
.ls247_c00001{letter-spacing:5.984400px;}
.ls5c7_c00001{letter-spacing:5.985000px;}
.ls2a4_c00001{letter-spacing:5.985600px;}
.ls3a1_c00001{letter-spacing:5.986200px;}
.ls69_c00001{letter-spacing:5.986800px;}
.ls3c1_c00001{letter-spacing:5.987400px;}
.ls2f1_c00001{letter-spacing:5.988600px;}
.ls2a2_c00001{letter-spacing:5.989200px;}
.ls286_c00001{letter-spacing:5.989800px;}
.ls678_c00001{letter-spacing:5.990400px;}
.ls5a4_c00001{letter-spacing:5.991000px;}
.ls59d_c00001{letter-spacing:5.991600px;}
.ls283_c00001{letter-spacing:5.993400px;}
.ls3c2_c00001{letter-spacing:5.994000px;}
.ls67a_c00001{letter-spacing:5.997000px;}
.ls4b1_c00001{letter-spacing:5.997600px;}
.ls503_c00001{letter-spacing:5.998200px;}
.ls412_c00001{letter-spacing:5.998800px;}
.ls2c_c00001{letter-spacing:5.999400px;}
.lscb_c00001{letter-spacing:6.000000px;}
.ls6bf_c00001{letter-spacing:6.001800px;}
.ls298_c00001{letter-spacing:6.004200px;}
.ls2a3_c00001{letter-spacing:6.005400px;}
.ls694_c00001{letter-spacing:6.006600px;}
.ls102_c00001{letter-spacing:6.006960px;}
.ls404_c00001{letter-spacing:6.007800px;}
.ls2a6_c00001{letter-spacing:6.011400px;}
.ls771_c00001{letter-spacing:6.012000px;}
.ls270_c00001{letter-spacing:6.017400px;}
.ls584_c00001{letter-spacing:6.022080px;}
.ls5c4_c00001{letter-spacing:6.022800px;}
.ls29e_c00001{letter-spacing:6.028200px;}
.ls44c_c00001{letter-spacing:6.028800px;}
.ls246_c00001{letter-spacing:6.032400px;}
.ls4a3_c00001{letter-spacing:6.033120px;}
.ls4a2_c00001{letter-spacing:6.033720px;}
.ls3b9_c00001{letter-spacing:6.033888px;}
.ls27b_c00001{letter-spacing:6.035400px;}
.ls3b7_c00001{letter-spacing:6.039792px;}
.ls1e0_c00001{letter-spacing:6.045696px;}
.ls1ae_c00001{letter-spacing:6.048000px;}
.ls7ac_c00001{letter-spacing:6.048600px;}
.ls5a9_c00001{letter-spacing:6.050400px;}
.ls26f_c00001{letter-spacing:6.055200px;}
.ls67b_c00001{letter-spacing:6.078240px;}
.ls164_c00001{letter-spacing:6.078282px;}
.ls40b_c00001{letter-spacing:6.081120px;}
.ls509_c00001{letter-spacing:6.110640px;}
.ls773_c00001{letter-spacing:6.116544px;}
.ls674_c00001{letter-spacing:6.120000px;}
.ls28_c00001{letter-spacing:6.123430px;}
.ls77e_c00001{letter-spacing:6.140160px;}
.ls30a_c00001{letter-spacing:6.151968px;}
.ls1e1_c00001{letter-spacing:6.156000px;}
.ls8f_c00001{letter-spacing:6.158683px;}
.ls5e_c00001{letter-spacing:6.159301px;}
.ls5_c00001{letter-spacing:6.159920px;}
.ls221_c00001{letter-spacing:6.169680px;}
.ls46a_c00001{letter-spacing:6.175584px;}
.ls7b7_c00001{letter-spacing:6.178474px;}
.ls7a9_c00001{letter-spacing:6.186514px;}
.ls79e_c00001{letter-spacing:6.189606px;}
.ls7ce_c00001{letter-spacing:6.190843px;}
.ls42a_c00001{letter-spacing:6.199200px;}
.ls39f_c00001{letter-spacing:6.205104px;}
.ls3b3_c00001{letter-spacing:6.207418px;}
.ls25d_c00001{letter-spacing:6.216912px;}
.ls162_c00001{letter-spacing:6.220800px;}
.ls3b8_c00001{letter-spacing:6.225675px;}
.ls4a0_c00001{letter-spacing:6.234000px;}
.ls71c_c00001{letter-spacing:6.246432px;}
.ls7d9_c00001{letter-spacing:6.252336px;}
.ls6bc_c00001{letter-spacing:6.258240px;}
.ls148_c00001{letter-spacing:6.264144px;}
.lsf2_c00001{letter-spacing:6.270048px;}
.ls4ff_c00001{letter-spacing:6.275952px;}
.ls635_c00001{letter-spacing:6.276000px;}
.ls525_c00001{letter-spacing:6.281856px;}
.ls1f9_c00001{letter-spacing:6.317280px;}
.ls4f7_c00001{letter-spacing:6.321000px;}
.ls4cb_c00001{letter-spacing:6.323184px;}
.ls52b_c00001{letter-spacing:6.329088px;}
.ls6ec_c00001{letter-spacing:6.329132px;}
.ls551_c00001{letter-spacing:6.340200px;}
.ls67d_c00001{letter-spacing:6.343920px;}
.ls659_c00001{letter-spacing:6.344400px;}
.lsed_c00001{letter-spacing:6.358608px;}
.ls760_c00001{letter-spacing:6.376320px;}
.ls6d4_c00001{letter-spacing:6.435360px;}
.ls5fd_c00001{letter-spacing:6.453072px;}
.ls561_c00001{letter-spacing:6.458976px;}
.lsc4_c00001{letter-spacing:6.470784px;}
.ls524_c00001{letter-spacing:6.500304px;}
.lsc2_c00001{letter-spacing:6.539616px;}
.ls3d7_c00001{letter-spacing:6.545400px;}
.lsbc_c00001{letter-spacing:6.555168px;}
.lsb8_c00001{letter-spacing:6.558648px;}
.ls140_c00001{letter-spacing:6.565248px;}
.ls18e_c00001{letter-spacing:6.594768px;}
.ls715_c00001{letter-spacing:6.606576px;}
.ls770_c00001{letter-spacing:6.612480px;}
.lsba_c00001{letter-spacing:6.617376px;}
.ls8e_c00001{letter-spacing:6.630192px;}
.ls6b3_c00001{letter-spacing:6.631200px;}
.ls56b_c00001{letter-spacing:6.632928px;}
.ls3d8_c00001{letter-spacing:6.648480px;}
.ls2f4_c00001{letter-spacing:6.653808px;}
.ls3ca_c00001{letter-spacing:6.656256px;}
.ls2fc_c00001{letter-spacing:6.658920px;}
.ls340_c00001{letter-spacing:6.659712px;}
.ls5af_c00001{letter-spacing:6.665616px;}
.lsb7_c00001{letter-spacing:6.671808px;}
.ls523_c00001{letter-spacing:6.689232px;}
.ls375_c00001{letter-spacing:6.730560px;}
.ls331_c00001{letter-spacing:6.736464px;}
.ls1f5_c00001{letter-spacing:6.747000px;}
.ls3e1_c00001{letter-spacing:6.760080px;}
.ls274_c00001{letter-spacing:6.768000px;}
.ls553_c00001{letter-spacing:6.782400px;}
.ls3dd_c00001{letter-spacing:6.796989px;}
.ls46f_c00001{letter-spacing:6.807312px;}
.ls338_c00001{letter-spacing:6.825024px;}
.ls7b1_c00001{letter-spacing:6.830928px;}
.ls55a_c00001{letter-spacing:6.836832px;}
.ls6eb_c00001{letter-spacing:6.840000px;}
.ls396_c00001{letter-spacing:6.842736px;}
.ls334_c00001{letter-spacing:6.848640px;}
.lsbd_c00001{letter-spacing:6.853096px;}
.ls574_c00001{letter-spacing:6.854544px;}
.ls1cb_c00001{letter-spacing:6.866352px;}
.ls462_c00001{letter-spacing:6.872256px;}
.ls3d5_c00001{letter-spacing:6.877142px;}
.ls61a_c00001{letter-spacing:6.895872px;}
.ls619_c00001{letter-spacing:6.901776px;}
.ls615_c00001{letter-spacing:6.907680px;}
.ls52a_c00001{letter-spacing:6.913584px;}
.ls1d2_c00001{letter-spacing:6.943104px;}
.ls2de_c00001{letter-spacing:6.966720px;}
.ls7e2_c00001{letter-spacing:6.978528px;}
.ls386_c00001{letter-spacing:6.990336px;}
.ls4fc_c00001{letter-spacing:7.002144px;}
.ls4b0_c00001{letter-spacing:7.019856px;}
.ls4a9_c00001{letter-spacing:7.025760px;}
.ls44b_c00001{letter-spacing:7.043472px;}
.ls4c2_c00001{letter-spacing:7.049376px;}
.ls538_c00001{letter-spacing:7.055280px;}
.ls5b9_c00001{letter-spacing:7.056000px;}
.ls21_c00001{letter-spacing:7.061184px;}
.ls6f2_c00001{letter-spacing:7.072992px;}
.ls64a_c00001{letter-spacing:7.084800px;}
.ls291_c00001{letter-spacing:7.090704px;}
.ls547_c00001{letter-spacing:7.096608px;}
.lsff_c00001{letter-spacing:7.102512px;}
.ls1d4_c00001{letter-spacing:7.114320px;}
.ls799_c00001{letter-spacing:7.155648px;}
.ls558_c00001{letter-spacing:7.161552px;}
.ls205_c00001{letter-spacing:7.208784px;}
.ls204_c00001{letter-spacing:7.214688px;}
.ls6a0_c00001{letter-spacing:7.227639px;}
.ls78f_c00001{letter-spacing:7.256016px;}
.ls6ae_c00001{letter-spacing:7.261920px;}
.ls55c_c00001{letter-spacing:7.267824px;}
.ls77c_c00001{letter-spacing:7.272000px;}
.ls531_c00001{letter-spacing:7.279632px;}
.ls576_c00001{letter-spacing:7.285536px;}
.ls527_c00001{letter-spacing:7.293600px;}
.ls56_c00001{letter-spacing:7.315056px;}
.ls4a5_c00001{letter-spacing:7.320960px;}
.ls796_c00001{letter-spacing:7.344576px;}
.ls795_c00001{letter-spacing:7.350480px;}
.ls3ba_c00001{letter-spacing:7.374096px;}
.ls128_c00001{letter-spacing:7.380000px;}
.ls6cf_c00001{letter-spacing:7.403902px;}
.ls316_c00001{letter-spacing:7.421328px;}
.ls69b_c00001{letter-spacing:7.424559px;}
.ls5b_c00001{letter-spacing:7.427232px;}
.ls5a_c00001{letter-spacing:7.433136px;}
.ls4d8_c00001{letter-spacing:7.439040px;}
.ls69e_c00001{letter-spacing:7.474464px;}
.ls281_c00001{letter-spacing:7.492176px;}
.ls69d_c00001{letter-spacing:7.498080px;}
.ls55b_c00001{letter-spacing:7.503984px;}
.ls38e_c00001{letter-spacing:7.515792px;}
.ls41c_c00001{letter-spacing:7.527600px;}
.ls707_c00001{letter-spacing:7.539408px;}
.ls73d_c00001{letter-spacing:7.545312px;}
.ls25e_c00001{letter-spacing:7.570616px;}
.lsfb_c00001{letter-spacing:7.580736px;}
.ls37c_c00001{letter-spacing:7.616160px;}
.ls1b2_c00001{letter-spacing:7.627968px;}
.ls735_c00001{letter-spacing:7.639776px;}
.ls77d_c00001{letter-spacing:7.651584px;}
.ls22f_c00001{letter-spacing:7.675200px;}
.ls379_c00001{letter-spacing:7.681104px;}
.ls2d0_c00001{letter-spacing:7.698816px;}
.ls172_c00001{letter-spacing:7.704720px;}
.ls27e_c00001{letter-spacing:7.710587px;}
.ls319_c00001{letter-spacing:7.715609px;}
.ls348_c00001{letter-spacing:7.716528px;}
.ls29f_c00001{letter-spacing:7.722432px;}
.ls28a_c00001{letter-spacing:7.728336px;}
.ls37a_c00001{letter-spacing:7.734240px;}
.ls2d9_c00001{letter-spacing:7.740144px;}
.ls1ab_c00001{letter-spacing:7.747101px;}
.ls21e_c00001{letter-spacing:7.751952px;}
.ls255_c00001{letter-spacing:7.757856px;}
.ls361_c00001{letter-spacing:7.810992px;}
.ls36b_c00001{letter-spacing:7.850558px;}
.ls3c7_c00001{letter-spacing:7.852320px;}
.ls6c8_c00001{letter-spacing:7.858224px;}
.ls32e_c00001{letter-spacing:7.870032px;}
.ls72b_c00001{letter-spacing:7.875936px;}
.ls693_c00001{letter-spacing:7.899552px;}
.ls142_c00001{letter-spacing:7.916363px;}
.ls7d0_c00001{letter-spacing:7.917847px;}
.ls66d_c00001{letter-spacing:7.920321px;}
.ls293_c00001{letter-spacing:7.929072px;}
.ls7d_c00001{letter-spacing:7.952688px;}
.ls14a_c00001{letter-spacing:7.958592px;}
.ls6c2_c00001{letter-spacing:7.964232px;}
.ls1b9_c00001{letter-spacing:7.970400px;}
.ls383_c00001{letter-spacing:7.972272px;}
.ls30d_c00001{letter-spacing:7.988112px;}
.lsda_c00001{letter-spacing:7.993918px;}
.ls387_c00001{letter-spacing:7.996615px;}
.ls5b6_c00001{letter-spacing:8.005824px;}
.ls4e5_c00001{letter-spacing:8.017632px;}
.ls6b4_c00001{letter-spacing:8.112096px;}
.ls7a8_c00001{letter-spacing:8.128800px;}
.ls6fe_c00001{letter-spacing:8.135712px;}
.ls59a_c00001{letter-spacing:8.147520px;}
.ls37e_c00001{letter-spacing:8.148758px;}
.ls716_c00001{letter-spacing:8.194752px;}
.ls6e2_c00001{letter-spacing:8.200656px;}
.ls1e3_c00001{letter-spacing:8.206560px;}
.ls4c1_c00001{letter-spacing:8.212464px;}
.ls250_c00001{letter-spacing:8.236080px;}
.ls13a_c00001{letter-spacing:8.241984px;}
.lsfd_c00001{letter-spacing:8.247888px;}
.ls2fb_c00001{letter-spacing:8.251680px;}
.ls229_c00001{letter-spacing:8.261280px;}
.ls464_c00001{letter-spacing:8.265600px;}
.ls5ce_c00001{letter-spacing:8.271504px;}
.ls1e2_c00001{letter-spacing:8.277600px;}
.ls3c9_c00001{letter-spacing:8.278920px;}
.ls7a3_c00001{letter-spacing:8.280000px;}
.ls4f0_c00001{letter-spacing:8.283312px;}
.ls52f_c00001{letter-spacing:8.285760px;}
.ls22a_c00001{letter-spacing:8.285880px;}
.lsbb_c00001{letter-spacing:8.286480px;}
.ls46d_c00001{letter-spacing:8.289216px;}
.ls533_c00001{letter-spacing:8.301024px;}
.ls6f3_c00001{letter-spacing:8.316960px;}
.lsb9_c00001{letter-spacing:8.328240px;}
.ls1c3_c00001{letter-spacing:8.349600px;}
.ls60f_c00001{letter-spacing:8.383680px;}
.ls289_c00001{letter-spacing:8.395488px;}
.lsc1_c00001{letter-spacing:8.496576px;}
.ls4d1_c00001{letter-spacing:8.519985px;}
.ls7e9_c00001{letter-spacing:8.525376px;}
.lsaf_c00001{letter-spacing:8.537184px;}
.ls3d6_c00001{letter-spacing:8.540890px;}
.ls569_c00001{letter-spacing:8.541508px;}
.ls493_c00001{letter-spacing:8.548992px;}
.ls774_c00001{letter-spacing:8.578512px;}
.ls4ed_c00001{letter-spacing:8.590320px;}
.ls1b0_c00001{letter-spacing:8.596224px;}
.ls2df_c00001{letter-spacing:8.613936px;}
.ls2d6_c00001{letter-spacing:8.619840px;}
.ls18a_c00001{letter-spacing:8.631648px;}
.ls353_c00001{letter-spacing:8.643456px;}
.ls177_c00001{letter-spacing:8.655264px;}
.lsb6_c00001{letter-spacing:8.658960px;}
.ls544_c00001{letter-spacing:8.661168px;}
.ls67_c00001{letter-spacing:8.667072px;}
.ls567_c00001{letter-spacing:8.672640px;}
.ls53f_c00001{letter-spacing:8.678880px;}
.ls7c8_c00001{letter-spacing:8.726112px;}
.ls7c6_c00001{letter-spacing:8.737920px;}
.ls382_c00001{letter-spacing:8.745157px;}
.ls4c0_c00001{letter-spacing:8.749728px;}
.ls56a_c00001{letter-spacing:8.767440px;}
.ls629_c00001{letter-spacing:8.779248px;}
.ls728_c00001{letter-spacing:8.785152px;}
.ls686_c00001{letter-spacing:8.814672px;}
.ls4fd_c00001{letter-spacing:8.856000px;}
.ls71a_c00001{letter-spacing:8.861904px;}
.ls5f4_c00001{letter-spacing:8.873712px;}
.ls3b5_c00001{letter-spacing:8.891424px;}
.ls3b0_c00001{letter-spacing:8.915040px;}
.ls568_c00001{letter-spacing:8.926441px;}
.ls750_c00001{letter-spacing:8.926848px;}
.ls3d4_c00001{letter-spacing:8.927060px;}
.ls360_c00001{letter-spacing:8.933813px;}
.ls147_c00001{letter-spacing:8.956368px;}
.ls126_c00001{letter-spacing:8.974080px;}
.ls12c_c00001{letter-spacing:9.033120px;}
.ls321_c00001{letter-spacing:9.043200px;}
.ls50f_c00001{letter-spacing:9.044928px;}
.ls50a_c00001{letter-spacing:9.056736px;}
.ls583_c00001{letter-spacing:9.062640px;}
.ls344_c00001{letter-spacing:9.068544px;}
.ls249_c00001{letter-spacing:9.079870px;}
.ls5ac_c00001{letter-spacing:9.080352px;}
.ls248_c00001{letter-spacing:9.085956px;}
.ls5ab_c00001{letter-spacing:9.086256px;}
.ls5a6_c00001{letter-spacing:9.092160px;}
.ls50c_c00001{letter-spacing:9.109872px;}
.ls82_c00001{letter-spacing:9.151200px;}
.ls726_c00001{letter-spacing:9.210240px;}
.ls79a_c00001{letter-spacing:9.233856px;}
.ls339_c00001{letter-spacing:9.239760px;}
.ls39_c00001{letter-spacing:9.245664px;}
.ls131_c00001{letter-spacing:9.251568px;}
.ls337_c00001{letter-spacing:9.269280px;}
.ls68f_c00001{letter-spacing:9.275184px;}
.ls256_c00001{letter-spacing:9.304704px;}
.ls7ca_c00001{letter-spacing:9.309600px;}
.ls4a8_c00001{letter-spacing:9.328320px;}
.ls540_c00001{letter-spacing:9.387360px;}
.ls474_c00001{letter-spacing:9.405072px;}
.ls628_c00001{letter-spacing:9.422784px;}
.ls178_c00001{letter-spacing:9.428688px;}
.ls6a4_c00001{letter-spacing:9.434592px;}
.ls71e_c00001{letter-spacing:9.440496px;}
.ls6c7_c00001{letter-spacing:9.446400px;}
.ls52e_c00001{letter-spacing:9.458208px;}
.ls6c6_c00001{letter-spacing:9.464112px;}
.ls6a2_c00001{letter-spacing:9.470016px;}
.ls459_c00001{letter-spacing:9.487728px;}
.ls3bd_c00001{letter-spacing:9.493632px;}
.lse4_c00001{letter-spacing:9.505440px;}
.ls27f_c00001{letter-spacing:9.529056px;}
.ls58f_c00001{letter-spacing:9.540864px;}
.ls351_c00001{letter-spacing:9.564480px;}
.ls536_c00001{letter-spacing:9.619200px;}
.ls35f_c00001{letter-spacing:9.653040px;}
.ls468_c00001{letter-spacing:9.688464px;}
.ls557_c00001{letter-spacing:9.717984px;}
.ls422_c00001{letter-spacing:9.720000px;}
.ls556_c00001{letter-spacing:9.723888px;}
.ls48b_c00001{letter-spacing:9.735696px;}
.ls216_c00001{letter-spacing:9.741600px;}
.ls310_c00001{letter-spacing:9.748800px;}
.ls104_c00001{letter-spacing:9.792000px;}
.ls650_c00001{letter-spacing:9.836064px;}
.ls5c1_c00001{letter-spacing:9.841968px;}
.ls183_c00001{letter-spacing:9.853776px;}
.ls180_c00001{letter-spacing:9.859680px;}
.ls389_c00001{letter-spacing:9.871488px;}
.ls7c5_c00001{letter-spacing:9.918720px;}
.ls71f_c00001{letter-spacing:9.924624px;}
.ls741_c00001{letter-spacing:9.930528px;}
.ls2e6_c00001{letter-spacing:9.942336px;}
.ls721_c00001{letter-spacing:9.948240px;}
.ls1e4_c00001{letter-spacing:9.950760px;}
.ls5f0_c00001{letter-spacing:9.968383px;}
.ls182_c00001{letter-spacing:10.019088px;}
.ls492_c00001{letter-spacing:10.078128px;}
.ls74e_c00001{letter-spacing:10.095840px;}
.ls357_c00001{letter-spacing:10.119456px;}
.ls633_c00001{letter-spacing:10.190304px;}
.ls71b_c00001{letter-spacing:10.196208px;}
.ls35e_c00001{letter-spacing:10.208016px;}
.ls515_c00001{letter-spacing:10.216800px;}
.ls5e3_c00001{letter-spacing:10.223983px;}
.ls5e5_c00001{letter-spacing:10.248325px;}
.ls651_c00001{letter-spacing:10.272960px;}
.lsac_c00001{letter-spacing:10.278864px;}
.ls42_c00001{letter-spacing:10.302480px;}
.ls5a0_c00001{letter-spacing:10.373328px;}
.ls238_c00001{letter-spacing:10.391040px;}
.ls6cd_c00001{letter-spacing:10.408752px;}
.ls202_c00001{letter-spacing:10.420560px;}
.ls63c_c00001{letter-spacing:10.426464px;}
.ls62c_c00001{letter-spacing:10.430896px;}
.ls7a7_c00001{letter-spacing:10.444176px;}
.ls7a1_c00001{letter-spacing:10.450080px;}
.ls752_c00001{letter-spacing:10.584000px;}
.ls6fc_c00001{letter-spacing:10.603584px;}
.ls1bd_c00001{letter-spacing:10.615392px;}
.ls1bc_c00001{letter-spacing:10.627200px;}
.ls5e6_c00001{letter-spacing:10.633104px;}
.ls3a0_c00001{letter-spacing:10.639008px;}
.ls6b5_c00001{letter-spacing:10.668528px;}
.ls6b2_c00001{letter-spacing:10.686240px;}
.ls3e3_c00001{letter-spacing:10.692144px;}
.ls539_c00001{letter-spacing:10.698048px;}
.ls68a_c00001{letter-spacing:10.728000px;}
.ls4c8_c00001{letter-spacing:10.762992px;}
.ls267_c00001{letter-spacing:10.768896px;}
.ls266_c00001{letter-spacing:10.774800px;}
.ls5ed_c00001{letter-spacing:10.792512px;}
.ls67e_c00001{letter-spacing:10.833840px;}
.ls3b4_c00001{letter-spacing:10.922400px;}
.ls275_c00001{letter-spacing:11.016000px;}
.ls325_c00001{letter-spacing:11.022768px;}
.ls438_c00001{letter-spacing:11.023200px;}
.ls700_c00001{letter-spacing:11.034576px;}
.ls778_c00001{letter-spacing:11.052288px;}
.ls740_c00001{letter-spacing:11.075904px;}
.ls185_c00001{letter-spacing:11.093616px;}
.ls51e_c00001{letter-spacing:11.105424px;}
.ls103_c00001{letter-spacing:11.123136px;}
.ls43a_c00001{letter-spacing:11.134944px;}
.ls1da_c00001{letter-spacing:11.151000px;}
.ls46b_c00001{letter-spacing:11.152656px;}
.ls6ef_c00001{letter-spacing:11.176272px;}
.ls3c6_c00001{letter-spacing:11.217600px;}
.ls4ee_c00001{letter-spacing:11.235312px;}
.ls6f0_c00001{letter-spacing:11.294352px;}
.ls2e8_c00001{letter-spacing:11.300256px;}
.ls3f9_c00001{letter-spacing:11.317968px;}
.lsb1_c00001{letter-spacing:11.353392px;}
.ls1d6_c00001{letter-spacing:11.406528px;}
.ls12b_c00001{letter-spacing:11.418336px;}
.ls184_c00001{letter-spacing:11.435038px;}
.ls408_c00001{letter-spacing:11.448000px;}
.ls2cf_c00001{letter-spacing:11.465568px;}
.ls472_c00001{letter-spacing:11.495088px;}
.ls429_c00001{letter-spacing:11.512800px;}
.ls73e_c00001{letter-spacing:11.518704px;}
.ls6be_c00001{letter-spacing:11.524608px;}
.ls473_c00001{letter-spacing:11.584800px;}
.ls433_c00001{letter-spacing:11.589552px;}
.ls110_c00001{letter-spacing:11.624976px;}
.ls4a6_c00001{letter-spacing:11.630880px;}
.ls4ac_c00001{letter-spacing:11.642688px;}
.ls4ab_c00001{letter-spacing:11.648592px;}
.ls4f_c00001{letter-spacing:11.654496px;}
.lsf4_c00001{letter-spacing:11.672208px;}
.ls32c_c00001{letter-spacing:11.684016px;}
.ls58e_c00001{letter-spacing:11.689920px;}
.ls50_c00001{letter-spacing:11.748960px;}
.ls4d0_c00001{letter-spacing:11.754840px;}
.ls335_c00001{letter-spacing:11.808000px;}
.ls6ee_c00001{letter-spacing:11.824523px;}
.ls34b_c00001{letter-spacing:11.831616px;}
.lsc6_c00001{letter-spacing:11.855232px;}
.ls526_c00001{letter-spacing:11.867040px;}
.ls612_c00001{letter-spacing:11.926080px;}
.ls70b_c00001{letter-spacing:11.949696px;}
.ls1af_c00001{letter-spacing:11.961504px;}
.ls496_c00001{letter-spacing:11.985120px;}
.ls55f_c00001{letter-spacing:11.996928px;}
.ls4ad_c00001{letter-spacing:12.008736px;}
.ls336_c00001{letter-spacing:12.044160px;}
.ls78b_c00001{letter-spacing:12.050064px;}
.ls38b_c00001{letter-spacing:12.067776px;}
.ls5bc_c00001{letter-spacing:12.088800px;}
.ls359_c00001{letter-spacing:12.091392px;}
.ls3c8_c00001{letter-spacing:12.103200px;}
.lse9_c00001{letter-spacing:12.115008px;}
.ls109_c00001{letter-spacing:12.156336px;}
.ls6c1_c00001{letter-spacing:12.168000px;}
.ls1f0_c00001{letter-spacing:12.168144px;}
.ls434_c00001{letter-spacing:12.179952px;}
.ls443_c00001{letter-spacing:12.244896px;}
.ls616_c00001{letter-spacing:12.280320px;}
.ls657_c00001{letter-spacing:12.294000px;}
.ls350_c00001{letter-spacing:12.309840px;}
.ls528_c00001{letter-spacing:12.333456px;}
.ls45e_c00001{letter-spacing:12.339360px;}
.ls19b_c00001{letter-spacing:12.357072px;}
.ls252_c00001{letter-spacing:12.362976px;}
.ls640_c00001{letter-spacing:12.392496px;}
.ls507_c00001{letter-spacing:12.402665px;}
.ls402_c00001{letter-spacing:12.433824px;}
.ls68b_c00001{letter-spacing:12.456000px;}
.ls731_c00001{letter-spacing:12.469248px;}
.ls439_c00001{letter-spacing:12.470400px;}
.ls4e0_c00001{letter-spacing:12.481056px;}
.ls150_c00001{letter-spacing:12.504672px;}
.ls6d8_c00001{letter-spacing:12.551904px;}
.ls6d5_c00001{letter-spacing:12.557808px;}
.ls167_c00001{letter-spacing:12.564720px;}
.ls4e1_c00001{letter-spacing:12.575520px;}
.ls370_c00001{letter-spacing:12.597407px;}
.ls5cc_c00001{letter-spacing:12.640464px;}
.ls78c_c00001{letter-spacing:12.652272px;}
.ls51f_c00001{letter-spacing:12.664080px;}
.ls40a_c00001{letter-spacing:12.686640px;}
.ls224_c00001{letter-spacing:12.705408px;}
.ls2e1_c00001{letter-spacing:12.729024px;}
.ls34a_c00001{letter-spacing:12.740832px;}
.ls4f6_c00001{letter-spacing:12.744000px;}
.ls2d8_c00001{letter-spacing:12.752640px;}
.ls30f_c00001{letter-spacing:12.776256px;}
.ls280_c00001{letter-spacing:12.829392px;}
.ls14f_c00001{letter-spacing:12.864816px;}
.ls1c0_c00001{letter-spacing:12.870720px;}
.ls1c5_c00001{letter-spacing:12.882528px;}
.ls49c_c00001{letter-spacing:12.923856px;}
.ls506_c00001{letter-spacing:12.929760px;}
.ls166_c00001{letter-spacing:12.958096px;}
.ls302_c00001{letter-spacing:13.047840px;}
.ls323_c00001{letter-spacing:13.077360px;}
.ls1b1_c00001{letter-spacing:13.083264px;}
.ls14d_c00001{letter-spacing:13.089168px;}
.ls498_c00001{letter-spacing:13.130496px;}
.ls765_c00001{letter-spacing:13.207248px;}
.lsa0_c00001{letter-spacing:13.242672px;}
.ls7c9_c00001{letter-spacing:13.269803px;}
.ls5fe_c00001{letter-spacing:13.278096px;}
.ls410_c00001{letter-spacing:13.284000px;}
.lsfc_c00001{letter-spacing:13.307616px;}
.ls475_c00001{letter-spacing:13.337136px;}
.ls49f_c00001{letter-spacing:13.392000px;}
.ls426_c00001{letter-spacing:13.461120px;}
.ls1ed_c00001{letter-spacing:13.496544px;}
.ls706_c00001{letter-spacing:13.502448px;}
.ls2ed_c00001{letter-spacing:13.508352px;}
.ls242_c00001{letter-spacing:13.526064px;}
.ls10f_c00001{letter-spacing:13.531968px;}
.ls491_c00001{letter-spacing:13.615200px;}
.ls17e_c00001{letter-spacing:13.680000px;}
.ls2e7_c00001{letter-spacing:13.732704px;}
.ls1ef_c00001{letter-spacing:13.750416px;}
.ls257_c00001{letter-spacing:13.768128px;}
.ls5f1_c00001{letter-spacing:13.791744px;}
.ls72f_c00001{letter-spacing:13.815360px;}
.ls2cd_c00001{letter-spacing:13.824000px;}
.ls6b0_c00001{letter-spacing:13.915728px;}
.ls6d9_c00001{letter-spacing:14.039712px;}
.ls6d6_c00001{letter-spacing:14.051520px;}
.ls7f_c00001{letter-spacing:14.075136px;}
.ls4a4_c00001{letter-spacing:14.112000px;}
.ls5be_c00001{letter-spacing:14.169600px;}
.ls3ce_c00001{letter-spacing:14.179690px;}
.ls702_c00001{letter-spacing:14.184000px;}
.ls3fb_c00001{letter-spacing:14.187312px;}
.ls76c_c00001{letter-spacing:14.258160px;}
.ls58c_c00001{letter-spacing:14.301404px;}
.ls4b9_c00001{letter-spacing:14.453520px;}
.ls403_c00001{letter-spacing:14.470704px;}
.ls6f7_c00001{letter-spacing:14.476608px;}
.ls7c4_c00001{letter-spacing:14.502232px;}
.ls5b5_c00001{letter-spacing:14.506128px;}
.ls4e_c00001{letter-spacing:14.630112px;}
.ls516_c00001{letter-spacing:14.659632px;}
.ls4f4_c00001{letter-spacing:14.683248px;}
.ls4ec_c00001{letter-spacing:14.700960px;}
.ls519_c00001{letter-spacing:14.724576px;}
.ls21f_c00001{letter-spacing:14.742288px;}
.ls4ef_c00001{letter-spacing:14.748192px;}
.ls345_c00001{letter-spacing:14.795424px;}
.ls4b_c00001{letter-spacing:14.801328px;}
.ls7d2_c00001{letter-spacing:14.819040px;}
.ls5dc_c00001{letter-spacing:14.836752px;}
.ls58d_c00001{letter-spacing:14.849118px;}
.ls5d3_c00001{letter-spacing:14.872176px;}
.ls3e4_c00001{letter-spacing:14.883984px;}
.ls653_c00001{letter-spacing:14.889888px;}
.ls6f6_c00001{letter-spacing:14.922146px;}
.ls727_c00001{letter-spacing:14.931216px;}
.ls720_c00001{letter-spacing:14.937120px;}
.ls758_c00001{letter-spacing:14.943024px;}
.ls50b_c00001{letter-spacing:14.990256px;}
.ls30e_c00001{letter-spacing:15.061104px;}
.ls154_c00001{letter-spacing:15.072912px;}
.ls782_c00001{letter-spacing:15.179184px;}
.ls546_c00001{letter-spacing:15.185088px;}
.ls251_c00001{letter-spacing:15.208704px;}
.ls37f_c00001{letter-spacing:15.226416px;}
.ls42d_c00001{letter-spacing:15.255936px;}
.ls435_c00001{letter-spacing:15.309072px;}
.ls3f7_c00001{letter-spacing:15.332688px;}
.ls38c_c00001{letter-spacing:15.501600px;}
.ls76d_c00001{letter-spacing:15.527520px;}
.ls3b6_c00001{letter-spacing:15.551136px;}
.ls542_c00001{letter-spacing:15.562944px;}
.ls207_c00001{letter-spacing:15.586560px;}
.ls392_c00001{letter-spacing:15.624000px;}
.ls7a2_c00001{letter-spacing:15.645600px;}
.ls704_c00001{letter-spacing:15.722352px;}
.ls381_c00001{letter-spacing:15.763680px;}
.ls5c3_c00001{letter-spacing:15.775200px;}
.ls4af_c00001{letter-spacing:15.775488px;}
.ls38d_c00001{letter-spacing:15.781392px;}
.ls5cd_c00001{letter-spacing:15.840432px;}
.ls47a_c00001{letter-spacing:15.881760px;}
.ls44a_c00001{letter-spacing:15.919200px;}
.ls398_c00001{letter-spacing:16.041168px;}
.ls518_c00001{letter-spacing:16.047072px;}
.ls206_c00001{letter-spacing:16.106112px;}
.lsf9_c00001{letter-spacing:16.153344px;}
.lsf8_c00001{letter-spacing:16.159248px;}
.ls5d4_c00001{letter-spacing:16.171056px;}
.ls5d2_c00001{letter-spacing:16.176960px;}
.ls602_c00001{letter-spacing:16.188768px;}
.ls411_c00001{letter-spacing:16.194672px;}
.ls705_c00001{letter-spacing:16.206229px;}
.ls25b_c00001{letter-spacing:16.218288px;}
.lsdc_c00001{letter-spacing:16.318656px;}
.ls7a6_c00001{letter-spacing:16.344000px;}
.ls5ef_c00001{letter-spacing:16.354080px;}
.ls521_c00001{letter-spacing:16.389504px;}
.ls484_c00001{letter-spacing:16.400972px;}
.ls6f9_c00001{letter-spacing:16.646400px;}
.ls78e_c00001{letter-spacing:16.661088px;}
.ls4f5_c00001{letter-spacing:16.850016px;}
.ls35a_c00001{letter-spacing:16.855920px;}
.ls15d_c00001{letter-spacing:16.992000px;}
.ls397_c00001{letter-spacing:17.015328px;}
.ls75d_c00001{letter-spacing:17.115696px;}
.ls7a4_c00001{letter-spacing:17.136000px;}
.ls3d2_c00001{letter-spacing:17.216064px;}
.ls3cd_c00001{letter-spacing:17.239680px;}
.ls786_c00001{letter-spacing:17.269200px;}
.ls785_c00001{letter-spacing:17.275104px;}
.ls730_c00001{letter-spacing:17.452224px;}
.ls5aa_c00001{letter-spacing:17.475840px;}
.ls4d5_c00001{letter-spacing:17.534880px;}
.ls4d4_c00001{letter-spacing:17.546688px;}
.ls10e_c00001{letter-spacing:17.611200px;}
.ls52d_c00001{letter-spacing:17.676576px;}
.ls559_c00001{letter-spacing:17.682480px;}
.ls1a7_c00001{letter-spacing:17.700192px;}
.ls108_c00001{letter-spacing:17.747424px;}
.ls106_c00001{letter-spacing:17.771040px;}
.ls485_c00001{letter-spacing:17.800560px;}
.ls692_c00001{letter-spacing:17.895024px;}
.ls60d_c00001{letter-spacing:18.066240px;}
.ls35d_c00001{letter-spacing:18.100800px;}
.ls3fd_c00001{letter-spacing:18.290592px;}
.ls31d_c00001{letter-spacing:18.361440px;}
.ls571_c00001{letter-spacing:18.496800px;}
.ls1e9_c00001{letter-spacing:18.544464px;}
.ls4ae_c00001{letter-spacing:18.662544px;}
.ls34c_c00001{letter-spacing:18.668448px;}
.ls47c_c00001{letter-spacing:19.014240px;}
.ls78d_c00001{letter-spacing:19.075824px;}
.ls19e_c00001{letter-spacing:19.087632px;}
.ls212_c00001{letter-spacing:19.105344px;}
.ls20e_c00001{letter-spacing:19.128960px;}
.ls430_c00001{letter-spacing:19.130400px;}
.ls7a5_c00001{letter-spacing:19.152000px;}
.lse1_c00001{letter-spacing:19.318800px;}
.ls31c_c00001{letter-spacing:19.332000px;}
.ls4a1_c00001{letter-spacing:19.368000px;}
.ls6a1_c00001{letter-spacing:19.506816px;}
.ls4b2_c00001{letter-spacing:19.660320px;}
.ls7d4_c00001{letter-spacing:19.784304px;}
.ls3ff_c00001{letter-spacing:19.800000px;}
.ls21a_c00001{letter-spacing:19.955520px;}
.ls69c_c00001{letter-spacing:20.082823px;}
.ls1ca_c00001{letter-spacing:20.097216px;}
.ls696_c00001{letter-spacing:20.103120px;}
.ls695_c00001{letter-spacing:20.132640px;}
.ls49a_c00001{letter-spacing:20.162160px;}
.ls33a_c00001{letter-spacing:20.203488px;}
.ls63a_c00001{letter-spacing:20.427840px;}
.ls436_c00001{letter-spacing:20.445552px;}
.ls48_c00001{letter-spacing:20.556000px;}
.ls378_c00001{letter-spacing:20.604960px;}
.ls5cb_c00001{letter-spacing:20.681712px;}
.ls442_c00001{letter-spacing:20.693520px;}
.ls377_c00001{letter-spacing:20.723040px;}
.ls499_c00001{letter-spacing:20.782679px;}
.ls4e4_c00001{letter-spacing:20.829312px;}
.ls4d9_c00001{letter-spacing:20.841120px;}
.ls25c_c00001{letter-spacing:21.201264px;}
.ls24c_c00001{letter-spacing:21.213072px;}
.ls42e_c00001{letter-spacing:21.434400px;}
.ls6ff_c00001{letter-spacing:21.667680px;}
.ls513_c00001{letter-spacing:21.859200px;}
.ls3fc_c00001{letter-spacing:21.862512px;}
.ls5bb_c00001{letter-spacing:21.931200px;}
.ls687_c00001{letter-spacing:22.086864px;}
.ls564_c00001{letter-spacing:22.140000px;}
.ls736_c00001{letter-spacing:22.252176px;}
.ls14c_c00001{letter-spacing:22.363200px;}
.ls33d_c00001{letter-spacing:22.458816px;}
.ls3be_c00001{letter-spacing:22.500144px;}
.ls322_c00001{letter-spacing:22.665600px;}
.ls4ea_c00001{letter-spacing:22.680000px;}
.ls6a8_c00001{letter-spacing:22.759200px;}
.ls225_c00001{letter-spacing:22.912675px;}
.ls41b_c00001{letter-spacing:22.925232px;}
.ls572_c00001{letter-spacing:22.937040px;}
.ls7e1_c00001{letter-spacing:23.198703px;}
.ls725_c00001{letter-spacing:23.202720px;}
.ls729_c00001{letter-spacing:23.226336px;}
.ls677_c00001{letter-spacing:23.397552px;}
.ls755_c00001{letter-spacing:23.763600px;}
.ls676_c00001{letter-spacing:23.769504px;}
.ls7d5_c00001{letter-spacing:23.863968px;}
.ls72c_c00001{letter-spacing:23.868000px;}
.ls195_c00001{letter-spacing:24.041088px;}
.ls479_c00001{letter-spacing:24.048000px;}
.ls33e_c00001{letter-spacing:24.111936px;}
.ls6ca_c00001{letter-spacing:24.120000px;}
.ls213_c00001{letter-spacing:24.147360px;}
.ls598_c00001{letter-spacing:24.292800px;}
.ls49d_c00001{letter-spacing:24.624000px;}
.ls714_c00001{letter-spacing:24.684624px;}
.ls66f_c00001{letter-spacing:24.829672px;}
.ls23f_c00001{letter-spacing:24.873552px;}
.ls374_c00001{letter-spacing:24.914880px;}
.ls254_c00001{letter-spacing:25.060929px;}
.ls401_c00001{letter-spacing:25.446240px;}
.ls376_c00001{letter-spacing:25.623360px;}
.ls34d_c00001{letter-spacing:26.060256px;}
.ls711_c00001{letter-spacing:27.063936px;}
.ls784_c00001{letter-spacing:27.418176px;}
.ls4f3_c00001{letter-spacing:27.784224px;}
.ls4c5_c00001{letter-spacing:28.296000px;}
.ls34e_c00001{letter-spacing:28.740672px;}
.ls54d_c00001{letter-spacing:29.024064px;}
.ls32f_c00001{letter-spacing:29.165760px;}
.ls440_c00001{letter-spacing:29.448000px;}
.ls72d_c00001{letter-spacing:29.880000px;}
.ls72e_c00001{letter-spacing:30.057440px;}
.ls52c_c00001{letter-spacing:30.193056px;}
.ls2da_c00001{letter-spacing:30.641760px;}
.ls1fe_c00001{letter-spacing:30.688992px;}
.ls3e0_c00001{letter-spacing:32.046912px;}
.ls78a_c00001{letter-spacing:32.454288px;}
.ls4a7_c00001{letter-spacing:32.944320px;}
.ls4e3_c00001{letter-spacing:33.021072px;}
.ls5e4_c00001{letter-spacing:33.522912px;}
.ls193_c00001{letter-spacing:33.696000px;}
.ls2e2_c00001{letter-spacing:35.624736px;}
.ls4d6_c00001{letter-spacing:37.732464px;}
.ls4f8_c00001{letter-spacing:38.016000px;}
.ls738_c00001{letter-spacing:38.812896px;}
.ls2e0_c00001{letter-spacing:45.549360px;}
.ls65a_c00001{letter-spacing:45.648000px;}
.ls709_c00001{letter-spacing:50.184000px;}
.lsb_c00001{letter-spacing:54.864000px;}
.ls3a2_c00001{letter-spacing:55.008000px;}
.ls6c4_c00001{letter-spacing:59.544000px;}
.ls2ba_c00001{letter-spacing:62.641440px;}
.ls2b2_c00001{letter-spacing:72.678240px;}
.ls2d3_c00001{letter-spacing:75.551787px;}
.ls2c1_c00001{letter-spacing:79.349760px;}
.ls563_c00001{letter-spacing:79.479293px;}
.ls2be_c00001{letter-spacing:81.061920px;}
.ls585_c00001{letter-spacing:88.729563px;}
.ls2b6_c00001{letter-spacing:91.098720px;}
.ls2c0_c00001{letter-spacing:94.700160px;}
.ls6d0_c00001{letter-spacing:97.488000px;}
.ls2bd_c00001{letter-spacing:97.652160px;}
.ls2c4_c00001{letter-spacing:97.770240px;}
.ls698_c00001{letter-spacing:99.576000px;}
.ls2bc_c00001{letter-spacing:103.733280px;}
.ls2bb_c00001{letter-spacing:104.382720px;}
.ls2b9_c00001{letter-spacing:104.736960px;}
.ls2b5_c00001{letter-spacing:107.688960px;}
.ls7ab_c00001{letter-spacing:109.152000px;}
.ls57c_c00001{letter-spacing:110.463840px;}
.ls2bf_c00001{letter-spacing:111.054240px;}
.ls2c8_c00001{letter-spacing:111.361248px;}
.ls329_c00001{letter-spacing:111.384000px;}
.ls2b4_c00001{letter-spacing:113.711040px;}
.ls562_c00001{letter-spacing:113.863520px;}
.ls2c3_c00001{letter-spacing:114.301440px;}
.ls2b3_c00001{letter-spacing:114.360480px;}
.ls5e0_c00001{letter-spacing:116.190720px;}
.ls2b7_c00001{letter-spacing:117.666720px;}
.ls4e2_c00001{letter-spacing:117.985536px;}
.ls2c2_c00001{letter-spacing:120.394368px;}
.ls2b8_c00001{letter-spacing:121.032000px;}
.ls3e6_c00001{letter-spacing:123.113790px;}
.ls2c6_c00001{letter-spacing:124.338240px;}
.ls2c5_c00001{letter-spacing:124.350048px;}
.ls2c7_c00001{letter-spacing:127.703520px;}
.ls566_c00001{letter-spacing:131.512061px;}
.ls57d_c00001{letter-spacing:133.276915px;}
.ls63e_c00001{letter-spacing:135.360000px;}
.ls664_c00001{letter-spacing:137.520000px;}
.ls505_c00001{letter-spacing:139.485600px;}
.ls66e_c00001{letter-spacing:139.536000px;}
.ls58b_c00001{letter-spacing:139.608000px;}
.ls688_c00001{letter-spacing:141.624000px;}
.ls648_c00001{letter-spacing:141.696000px;}
.ls701_c00001{letter-spacing:141.752371px;}
.ls5e1_c00001{letter-spacing:143.904633px;}
.ls649_c00001{letter-spacing:147.960000px;}
.ls1b3_c00001{letter-spacing:149.184000px;}
.ls3e5_c00001{letter-spacing:157.498017px;}
.ls74c_c00001{letter-spacing:185.976000px;}
.ls328_c00001{letter-spacing:191.448000px;}
.ls2c9_c00001{letter-spacing:196.012800px;}
.ls2db_c00001{letter-spacing:233.739360px;}
.sc__c00001{text-shadow:none;}
.sc4_c00001{text-shadow:-0.015em 0 rgb(255,102,0),0 0.015em rgb(255,102,0),0.015em 0 rgb(255,102,0),0 -0.015em  rgb(255,102,0);}
.sc3_c00001{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2_c00001{text-shadow:-0.015em 0 rgb(38,38,38),0 0.015em rgb(38,38,38),0.015em 0 rgb(38,38,38),0 -0.015em  rgb(38,38,38);}
.sc0_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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc4_c00001{-webkit-text-stroke:0.015em rgb(255,102,0);text-shadow:none;}
.sc3_c00001{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2_c00001{-webkit-text-stroke:0.015em rgb(38,38,38);text-shadow:none;}
.sc0_c00001{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa8_c00001{word-spacing:-59.766192px;}
.wsa9_c00001{word-spacing:-59.683536px;}
.wsa7_c00001{word-spacing:-59.612688px;}
.wsaa_c00001{word-spacing:-59.276160px;}
.ws27_c00001{word-spacing:-34.917696px;}
.ws91_c00001{word-spacing:-29.159724px;}
.ws73_c00001{word-spacing:-29.142144px;}
.ws29_c00001{word-spacing:-29.135679px;}
.ws92_c00001{word-spacing:-29.079571px;}
.ws26_c00001{word-spacing:-28.289088px;}
.ws8d_c00001{word-spacing:-28.273536px;}
.ws93_c00001{word-spacing:-28.265760px;}
.ws28_c00001{word-spacing:-28.234656px;}
.ws2c_c00001{word-spacing:-26.953344px;}
.ws3f_c00001{word-spacing:-26.421120px;}
.ws1a_c00001{word-spacing:-25.992000px;}
.ws74_c00001{word-spacing:-24.714144px;}
.wsca_c00001{word-spacing:-24.358320px;}
.wsc8_c00001{word-spacing:-24.092640px;}
.ws3a_c00001{word-spacing:-24.021360px;}
.ws4f_c00001{word-spacing:-23.826960px;}
.wsde_c00001{word-spacing:-22.789440px;}
.wsa1_c00001{word-spacing:-22.711847px;}
.wsdc_c00001{word-spacing:-22.529664px;}
.ws5b_c00001{word-spacing:-22.486676px;}
.ws2d_c00001{word-spacing:-22.458919px;}
.ws2e_c00001{word-spacing:-22.402812px;}
.wsc5_c00001{word-spacing:-22.352544px;}
.wsdf_c00001{word-spacing:-22.311216px;}
.wse0_c00001{word-spacing:-22.258080px;}
.ws35_c00001{word-spacing:-22.193136px;}
.wscb_c00001{word-spacing:-22.140000px;}
.ws61_c00001{word-spacing:-22.086864px;}
.wsc6_c00001{word-spacing:-22.033728px;}
.ws1b_c00001{word-spacing:-21.980592px;}
.ws21_c00001{word-spacing:-21.933360px;}
.ws2b_c00001{word-spacing:-21.927456px;}
.ws96_c00001{word-spacing:-21.903840px;}
.ws38_c00001{word-spacing:-21.897936px;}
.ws23_c00001{word-spacing:-21.874320px;}
.ws2a_c00001{word-spacing:-21.815280px;}
.ws5e_c00001{word-spacing:-21.772800px;}
.ws1f_c00001{word-spacing:-21.768048px;}
.ws40_c00001{word-spacing:-21.765024px;}
.wsd9_c00001{word-spacing:-21.744432px;}
.ws22_c00001{word-spacing:-21.714912px;}
.ws70_c00001{word-spacing:-21.709008px;}
.ws19_c00001{word-spacing:-21.690785px;}
.ws14_c00001{word-spacing:-21.661776px;}
.wsbd_c00001{word-spacing:-21.598163px;}
.wsf_c00001{word-spacing:-21.592374px;}
.ws78_c00001{word-spacing:-21.499753px;}
.ws71_c00001{word-spacing:-21.401343px;}
.ws3_c00001{word-spacing:-21.043152px;}
.ws6f_c00001{word-spacing:-20.998224px;}
.wsd_c00001{word-spacing:-20.947680px;}
.ws10_c00001{word-spacing:-20.902752px;}
.ws6d_c00001{word-spacing:-20.857824px;}
.wscc_c00001{word-spacing:-20.807280px;}
.ws72_c00001{word-spacing:-20.762352px;}
.ws30_c00001{word-spacing:-20.632021px;}
.ws9b_c00001{word-spacing:-20.621952px;}
.wsa_c00001{word-spacing:-20.016000px;}
.wsc7_c00001{word-spacing:-19.894752px;}
.wsc4_c00001{word-spacing:-19.809504px;}
.wsd8_c00001{word-spacing:-19.771200px;}
.wse_c00001{word-spacing:-19.734912px;}
.wsa5_c00001{word-spacing:-19.692288px;}
.ws7e_c00001{word-spacing:-19.654992px;}
.ws53_c00001{word-spacing:-19.612368px;}
.ws47_c00001{word-spacing:-19.597451px;}
.ws7d_c00001{word-spacing:-19.532448px;}
.ws50_c00001{word-spacing:-19.463862px;}
.wsce_c00001{word-spacing:-19.457183px;}
.wscf_c00001{word-spacing:-19.323594px;}
.ws45_c00001{word-spacing:-19.256800px;}
.ws48_c00001{word-spacing:-19.250120px;}
.ws52_c00001{word-spacing:-19.190006px;}
.ws75_c00001{word-spacing:-19.188000px;}
.ws46_c00001{word-spacing:-19.116532px;}
.ws49_c00001{word-spacing:-19.049738px;}
.ws44_c00001{word-spacing:-18.982943px;}
.wsc9_c00001{word-spacing:-18.976264px;}
.ws51_c00001{word-spacing:-18.882720px;}
.ws58_c00001{word-spacing:-18.746640px;}
.ws25_c00001{word-spacing:-18.681840px;}
.ws4a_c00001{word-spacing:-18.568818px;}
.wse1_c00001{word-spacing:-18.086712px;}
.ws59_c00001{word-spacing:-18.014400px;}
.wsd6_c00001{word-spacing:-18.000000px;}
.ws37_c00001{word-spacing:-17.910227px;}
.ws7_c00001{word-spacing:-17.739827px;}
.ws39_c00001{word-spacing:-17.685056px;}
.ws66_c00001{word-spacing:-17.636370px;}
.ws5_c00001{word-spacing:-17.630284px;}
.ws8_c00001{word-spacing:-17.575513px;}
.wsdd_c00001{word-spacing:-17.546688px;}
.ws9_c00001{word-spacing:-17.520742px;}
.wsbc_c00001{word-spacing:-17.490313px;}
.wse3_c00001{word-spacing:-17.478142px;}
.ws7b_c00001{word-spacing:-17.472056px;}
.ws13_c00001{word-spacing:-17.465970px;}
.wsb3_c00001{word-spacing:-17.459884px;}
.ws98_c00001{word-spacing:-17.447713px;}
.ws9a_c00001{word-spacing:-17.435542px;}
.ws20_c00001{word-spacing:-17.411199px;}
.ws4d_c00001{word-spacing:-17.375472px;}
.wsc_c00001{word-spacing:-17.356428px;}
.ws67_c00001{word-spacing:-17.344256px;}
.ws97_c00001{word-spacing:-17.325999px;}
.ws34_c00001{word-spacing:-17.301656px;}
.ws6_c00001{word-spacing:-17.246885px;}
.ws7f_c00001{word-spacing:-17.222542px;}
.ws42_c00001{word-spacing:-17.210160px;}
.ws11_c00001{word-spacing:-17.192114px;}
.ws33_c00001{word-spacing:-17.186028px;}
.ws4c_c00001{word-spacing:-17.157024px;}
.ws9d_c00001{word-spacing:-17.109792px;}
.ws1c_c00001{word-spacing:-17.103888px;}
.ws63_c00001{word-spacing:-17.050752px;}
.ws2f_c00001{word-spacing:-16.997616px;}
.ws79_c00001{word-spacing:-16.968096px;}
.ws12_c00001{word-spacing:-16.944480px;}
.ws1d_c00001{word-spacing:-16.926768px;}
.wsb_c00001{word-spacing:-16.918257px;}
.ws6b_c00001{word-spacing:-16.914960px;}
.ws54_c00001{word-spacing:-16.891344px;}
.ws3b_c00001{word-spacing:-16.861824px;}
.ws36_c00001{word-spacing:-16.838208px;}
.wsac_c00001{word-spacing:-16.808688px;}
.ws3c_c00001{word-spacing:-16.785072px;}
.ws17_c00001{word-spacing:-16.731936px;}
.wscd_c00001{word-spacing:-16.718171px;}
.ws5a_c00001{word-spacing:-16.708320px;}
.ws24_c00001{word-spacing:-16.678800px;}
.ws6c_c00001{word-spacing:-16.672896px;}
.ws65_c00001{word-spacing:-16.454880px;}
.ws4e_c00001{word-spacing:-16.413120px;}
.wsaf_c00001{word-spacing:-16.308864px;}
.ws68_c00001{word-spacing:-16.174080px;}
.wsae_c00001{word-spacing:-16.123536px;}
.ws8e_c00001{word-spacing:-16.078608px;}
.wsa2_c00001{word-spacing:-16.033680px;}
.ws9f_c00001{word-spacing:-16.009112px;}
.ws6a_c00001{word-spacing:-15.936912px;}
.wsad_c00001{word-spacing:-15.888289px;}
.wsa3_c00001{word-spacing:-15.887664px;}
.ws41_c00001{word-spacing:-15.800417px;}
.ws64_c00001{word-spacing:-15.751872px;}
.ws8b_c00001{word-spacing:-15.718037px;}
.ws5c_c00001{word-spacing:-15.679593px;}
.ws94_c00001{word-spacing:-15.597214px;}
.ws95_c00001{word-spacing:-15.558770px;}
.ws3d_c00001{word-spacing:-15.531120px;}
.ws8a_c00001{word-spacing:-15.514834px;}
.wsd1_c00001{word-spacing:-15.413904px;}
.wsd0_c00001{word-spacing:-15.408576px;}
.ws62_c00001{word-spacing:-15.371280px;}
.ws89_c00001{word-spacing:-15.328656px;}
.wsa0_c00001{word-spacing:-15.291360px;}
.ws5d_c00001{word-spacing:-15.248736px;}
.wsab_c00001{word-spacing:-15.211560px;}
.ws0_c00001{word-spacing:-15.211440px;}
.wsc2_c00001{word-spacing:-15.195456px;}
.wse5_c00001{word-spacing:-15.174144px;}
.ws6e_c00001{word-spacing:-15.131520px;}
.wsb0_c00001{word-spacing:-15.094224px;}
.wsd2_c00001{word-spacing:-15.067584px;}
.ws3e_c00001{word-spacing:-15.051600px;}
.ws8c_c00001{word-spacing:-15.014304px;}
.ws76_c00001{word-spacing:-14.978304px;}
.ws1_c00001{word-spacing:-14.811840px;}
.wsb8_c00001{word-spacing:-14.111857px;}
.wsb4_c00001{word-spacing:-14.028587px;}
.wsb9_c00001{word-spacing:-13.999197px;}
.ws57_c00001{word-spacing:-13.974706px;}
.ws9c_c00001{word-spacing:-13.920825px;}
.wsd5_c00001{word-spacing:-13.891436px;}
.wsbb_c00001{word-spacing:-13.871843px;}
.wsb6_c00001{word-spacing:-13.866944px;}
.wsb5_c00001{word-spacing:-13.837555px;}
.wsb7_c00001{word-spacing:-13.808165px;}
.ws55_c00001{word-spacing:-13.778776px;}
.wsb2_c00001{word-spacing:-13.690512px;}
.wsa4_c00001{word-spacing:-13.609728px;}
.wsc1_c00001{word-spacing:-13.581216px;}
.wsc0_c00001{word-spacing:-13.557456px;}
.ws88_c00001{word-spacing:-13.505184px;}
.ws84_c00001{word-spacing:-13.476672px;}
.ws87_c00001{word-spacing:-13.452912px;}
.wsba_c00001{word-spacing:-13.424400px;}
.ws85_c00001{word-spacing:-13.367376px;}
.ws83_c00001{word-spacing:-13.343616px;}
.ws69_c00001{word-spacing:-12.636000px;}
.wsdb_c00001{word-spacing:-12.602304px;}
.wsd7_c00001{word-spacing:-12.143057px;}
.ws56_c00001{word-spacing:-12.048358px;}
.ws15_c00001{word-spacing:-11.609280px;}
.ws16_c00001{word-spacing:-11.429712px;}
.wsa6_c00001{word-spacing:-10.808640px;}
.ws43_c00001{word-spacing:-10.793088px;}
.ws9e_c00001{word-spacing:-10.439280px;}
.ws18_c00001{word-spacing:-10.152000px;}
.ws4_c00001{word-spacing:-10.008000px;}
.ws5f_c00001{word-spacing:-5.307696px;}
.wse6_c00001{word-spacing:-3.585345px;}
.ws31_c00001{word-spacing:-3.298996px;}
.ws32_c00001{word-spacing:-3.281679px;}
.wsb1_c00001{word-spacing:-3.200041px;}
.ws4b_c00001{word-spacing:-3.198854px;}
.wse4_c00001{word-spacing:-2.992855px;}
.wsda_c00001{word-spacing:-2.343096px;}
.wsd3_c00001{word-spacing:-1.052827px;}
.ws8f_c00001{word-spacing:-0.882427px;}
.wsc3_c00001{word-spacing:-0.796337px;}
.wsbe_c00001{word-spacing:-0.675513px;}
.ws99_c00001{word-spacing:-0.663342px;}
.ws90_c00001{word-spacing:-0.608570px;}
.ws7c_c00001{word-spacing:-0.587642px;}
.ws60_c00001{word-spacing:-0.553799px;}
.wsbf_c00001{word-spacing:-0.505262px;}
.ws82_c00001{word-spacing:-0.466818px;}
.ws81_c00001{word-spacing:-0.384438px;}
.ws80_c00001{word-spacing:-0.345995px;}
.wsd4_c00001{word-spacing:-0.334714px;}
.ws77_c00001{word-spacing:-0.263615px;}
.wse2_c00001{word-spacing:-0.219531px;}
.ws7a_c00001{word-spacing:-0.093600px;}
.ws1e_c00001{word-spacing:-0.072000px;}
.ws86_c00001{word-spacing:-0.060857px;}
.ws2_c00001{word-spacing:0.000000px;}
._69_c00001{margin-left:-147.960000px;}
._71_c00001{margin-left:-141.984000px;}
._57_c00001{margin-left:-118.306368px;}
._56_c00001{margin-left:-117.199296px;}
._3a_c00001{margin-left:-95.142960px;}
._3d_c00001{margin-left:-40.229856px;}
._73_c00001{margin-left:-38.494080px;}
._74_c00001{margin-left:-37.431360px;}
._64_c00001{margin-left:-33.989040px;}
._4e_c00001{margin-left:-32.599080px;}
._37_c00001{margin-left:-31.055040px;}
._36_c00001{margin-left:-29.992320px;}
._49_c00001{margin-left:-28.221120px;}
._4a_c00001{margin-left:-27.217440px;}
._48_c00001{margin-left:-25.623360px;}
._30_c00001{margin-left:-24.439800px;}
._31_c00001{margin-left:-23.415960px;}
._2e_c00001{margin-left:-22.032024px;}
._6c_c00001{margin-left:-21.021720px;}
._1c_c00001{margin-left:-20.016000px;}
._2b_c00001{margin-left:-18.082656px;}
._29_c00001{margin-left:-16.472160px;}
._1f_c00001{margin-left:-15.232320px;}
._1e_c00001{margin-left:-14.110560px;}
._25_c00001{margin-left:-13.013256px;}
._20_c00001{margin-left:-11.964768px;}
._1a_c00001{margin-left:-10.745280px;}
._19_c00001{margin-left:-9.682560px;}
._18_c00001{margin-left:-8.678880px;}
._e_c00001{margin-left:-7.216416px;}
._f_c00001{margin-left:-5.890464px;}
._15_c00001{margin-left:-4.132800px;}
._d_c00001{margin-left:-2.168568px;}
._0_c00001{margin-left:-1.118880px;}
._1_c00001{width:1.065240px;}
._a_c00001{width:2.276280px;}
._2_c00001{width:4.032000px;}
._8_c00001{width:5.328000px;}
._6_c00001{width:7.128000px;}
._9_c00001{width:8.360400px;}
._c_c00001{width:9.639600px;}
._3_c00001{width:10.800000px;}
._4_c00001{width:12.096000px;}
._14_c00001{width:13.608000px;}
._12_c00001{width:14.760000px;}
._5_c00001{width:16.560000px;}
._7_c00001{width:17.856000px;}
._10_c00001{width:18.936000px;}
._26_c00001{width:19.955520px;}
._11_c00001{width:21.888000px;}
._21_c00001{width:22.896000px;}
._1b_c00001{width:24.408000px;}
._b_c00001{width:25.704000px;}
._16_c00001{width:27.000000px;}
._13_c00001{width:28.512000px;}
._2a_c00001{width:30.312000px;}
._1d_c00001{width:31.464000px;}
._17_c00001{width:32.832000px;}
._2f_c00001{width:34.238160px;}
._22_c00001{width:35.352000px;}
._23_c00001{width:36.576000px;}
._38_c00001{width:37.701678px;}
._39_c00001{width:39.240000px;}
._32_c00001{width:40.536000px;}
._33_c00001{width:42.048000px;}
._24_c00001{width:43.632000px;}
._34_c00001{width:45.432000px;}
._4b_c00001{width:47.016000px;}
._46_c00001{width:48.456000px;}
._4d_c00001{width:50.133600px;}
._65_c00001{width:52.267392px;}
._41_c00001{width:53.352000px;}
._5a_c00001{width:55.223400px;}
._47_c00001{width:57.168000px;}
._40_c00001{width:58.896000px;}
._52_c00001{width:60.120000px;}
._42_c00001{width:61.704000px;}
._35_c00001{width:63.648000px;}
._63_c00001{width:64.656000px;}
._4c_c00001{width:73.656000px;}
._6a_c00001{width:95.452440px;}
._6b_c00001{width:96.630240px;}
._66_c00001{width:98.261853px;}
._58_c00001{width:100.488330px;}
._61_c00001{width:102.640591px;}
._68_c00001{width:104.792853px;}
._77_c00001{width:106.848000px;}
._5c_c00001{width:110.463840px;}
._28_c00001{width:112.511306px;}
._5d_c00001{width:113.863520px;}
._54_c00001{width:116.837280px;}
._55_c00001{width:117.893952px;}
._6e_c00001{width:121.120351px;}
._50_c00001{width:123.113790px;}
._6d_c00001{width:131.544000px;}
._76_c00001{width:132.772247px;}
._44_c00001{width:135.444020px;}
._6f_c00001{width:137.520000px;}
._5f_c00001{width:140.518903px;}
._59_c00001{width:141.752371px;}
._60_c00001{width:143.904633px;}
._67_c00001{width:146.056894px;}
._70_c00001{width:147.960000px;}
._2d_c00001{width:149.184000px;}
._2c_c00001{width:152.352000px;}
._27_c00001{width:153.775347px;}
._5b_c00001{width:156.076040px;}
._4f_c00001{width:157.498017px;}
._78_c00001{width:158.747813px;}
._45_c00001{width:185.472000px;}
._72_c00001{width:186.922656px;}
._75_c00001{width:189.584400px;}
._3b_c00001{width:192.988800px;}
._43_c00001{width:197.340081px;}
._3c_c00001{width:198.801109px;}
._5e_c00001{width:202.045370px;}
._3f_c00001{width:227.244960px;}
._3e_c00001{width:228.496608px;}
._53_c00001{width:936.072000px;}
._51_c00001{width:1472.162400px;}
._62_c00001{width:1959.984000px;}
.fc9_c00001{color:rgb(255,102,0);}
.fc8_c00001{color:rgb(79,129,189);}
.fc7_c00001{color:rgb(155,187,89);}
.fc6_c00001{color:rgb(255,0,0);}
.fc3_c00001{color:rgb(20,20,19);}
.fc1_c00001{color:transparent;}
.fc5_c00001{color:rgb(38,38,38);}
.fc4_c00001{color:rgb(35,31,32);}
.fc2_c00001{color:rgb(26,26,26);}
.fc0_c00001{color:rgb(0,0,0);}
.fs6_c00001{font-size:36.000000px;}
.fs17_c00001{font-size:37.107951px;}
.fs12_c00001{font-size:38.880000px;}
.fs13_c00001{font-size:40.076587px;}
.fs4_c00001{font-size:41.760000px;}
.fsb_c00001{font-size:43.045223px;}
.fs16_c00001{font-size:47.520000px;}
.fs14_c00001{font-size:48.982495px;}
.fs2_c00001{font-size:53.280000px;}
.fs10_c00001{font-size:54.919767px;}
.fs5_c00001{font-size:56.160000px;}
.fs9_c00001{font-size:57.888403px;}
.fs7_c00001{font-size:59.040000px;}
.fs3_c00001{font-size:60.000000px;}
.fs8_c00001{font-size:60.857039px;}
.fs18_c00001{font-size:61.920000px;}
.fsa_c00001{font-size:64.800000px;}
.fs11_c00001{font-size:66.794311px;}
.fs0_c00001{font-size:72.000000px;}
.fs1_c00001{font-size:74.215901px;}
.fsd_c00001{font-size:77.760000px;}
.fse_c00001{font-size:80.153173px;}
.fs15_c00001{font-size:83.520000px;}
.fsc_c00001{font-size:95.040000px;}
.fsf_c00001{font-size:97.964990px;}
.ybe0_c00001{bottom:-51.840000px;}
.ybaa_c00001{bottom:-32.400000px;}
.yba7_c00001{bottom:-29.160000px;}
.y6b5_c00001{bottom:-27.720000px;}
.y1c_c00001{bottom:-21.240000px;}
.y426_c00001{bottom:-20.880000px;}
.ybe4_c00001{bottom:-19.800000px;}
.ybdf_c00001{bottom:-19.440000px;}
.y12f_c00001{bottom:-11.880000px;}
.ycc8_c00001{bottom:-11.475000px;}
.y107b_c00001{bottom:-11.115000px;}
.y4aa_c00001{bottom:-10.080000px;}
.yba9_c00001{bottom:-9.000000px;}
.yba6_c00001{bottom:-7.560000px;}
.yba8_c00001{bottom:-4.320000px;}
.ybe2_c00001{bottom:-1.800000px;}
.yba3_c00001{bottom:-1.080000px;}
.y0_c00001{bottom:0.000000px;}
.ybe6_c00001{bottom:0.720000px;}
.yb57_c00001{bottom:2.206650px;}
.y20b_c00001{bottom:2.565000px;}
.y1e_c00001{bottom:3.120000px;}
.y6b4_c00001{bottom:3.240000px;}
.yebd_c00001{bottom:3.960000px;}
.y9f7_c00001{bottom:5.400000px;}
.y4a9_c00001{bottom:5.760000px;}
.y1011_c00001{bottom:6.480000px;}
.y8c2_c00001{bottom:7.560000px;}
.y5e9_c00001{bottom:9.720000px;}
.y859_c00001{bottom:10.440000px;}
.y1033_c00001{bottom:11.160000px;}
.y9c0_c00001{bottom:11.520000px;}
.yba5_c00001{bottom:12.600000px;}
.ybde_c00001{bottom:12.960000px;}
.ybc7_c00001{bottom:14.040000px;}
.y6b2_c00001{bottom:14.399850px;}
.y1b_c00001{bottom:14.400000px;}
.y5cc_c00001{bottom:14.760000px;}
.yfec_c00001{bottom:15.480000px;}
.y62a_c00001{bottom:16.560000px;}
.y6e4_c00001{bottom:17.280000px;}
.y6e6_c00001{bottom:17.640000px;}
.ycd3_c00001{bottom:18.000000px;}
.yfce_c00001{bottom:18.360000px;}
.y12e_c00001{bottom:18.720000px;}
.y2ed_c00001{bottom:19.080000px;}
.y105d_c00001{bottom:19.440000px;}
.yebc_c00001{bottom:19.800000px;}
.y4a5_c00001{bottom:20.880000px;}
.y755_c00001{bottom:21.240000px;}
.y49d_c00001{bottom:21.600000px;}
.y685_c00001{bottom:21.960000px;}
.yba2_c00001{bottom:22.320000px;}
.y12a_c00001{bottom:22.680000px;}
.y8be_c00001{bottom:23.040000px;}
.yb0e_c00001{bottom:23.760000px;}
.y2b9_c00001{bottom:24.120000px;}
.y9c5_c00001{bottom:24.480000px;}
.y401_c00001{bottom:24.840000px;}
.y8c1_c00001{bottom:25.200000px;}
.y9d_c00001{bottom:25.560000px;}
.y91c_c00001{bottom:25.920000px;}
.y687_c00001{bottom:26.280000px;}
.y110c_c00001{bottom:26.640000px;}
.y1032_c00001{bottom:27.000000px;}
.y9bf_c00001{bottom:27.360000px;}
.y858_c00001{bottom:27.720000px;}
.y1010_c00001{bottom:28.440000px;}
.yf33_c00001{bottom:28.800000px;}
.y1028_c00001{bottom:29.520000px;}
.yf2c_c00001{bottom:29.880000px;}
.yefb_c00001{bottom:30.600000px;}
.ybe1_c00001{bottom:30.960000px;}
.y4dc_c00001{bottom:32.040000px;}
.y629_c00001{bottom:32.400000px;}
.y873_c00001{bottom:33.120000px;}
.ybe5_c00001{bottom:33.480000px;}
.y70c_c00001{bottom:34.200000px;}
.yccf_c00001{bottom:34.559850px;}
.y12d_c00001{bottom:34.560000px;}
.y1d_c00001{bottom:34.744580px;}
.y2ec_c00001{bottom:34.920000px;}
.ybe7_c00001{bottom:35.325000px;}
.y655_c00001{bottom:36.000000px;}
.y4a4_c00001{bottom:36.720000px;}
.y4a8_c00001{bottom:37.080000px;}
.y49c_c00001{bottom:37.440000px;}
.y2b8_c00001{bottom:39.600000px;}
.y708_c00001{bottom:39.960000px;}
.y8bd_c00001{bottom:40.320000px;}
.y1002_c00001{bottom:40.680000px;}
.y19_c00001{bottom:41.040000px;}
.y9c_c00001{bottom:41.400000px;}
.y686_c00001{bottom:42.120000px;}
.y8c0_c00001{bottom:42.480000px;}
.y9be_c00001{bottom:43.200000px;}
.yf32_c00001{bottom:44.640000px;}
.y857_c00001{bottom:45.360000px;}
.yf2b_c00001{bottom:45.720000px;}
.yefa_c00001{bottom:46.080000px;}
.y4db_c00001{bottom:47.880000px;}
.y20a_c00001{bottom:48.960000px;}
.y105c_c00001{bottom:50.760000px;}
.y4a3_c00001{bottom:52.560000px;}
.y4a7_c00001{bottom:52.920000px;}
.y1_c00001{bottom:54.000000px;}
.y2b7_c00001{bottom:55.440000px;}
.y27b_c00001{bottom:55.478880px;}
.yb28_c00001{bottom:55.480320px;}
.y3bd_c00001{bottom:55.480680px;}
.y71_c00001{bottom:55.481040px;}
.y1fa_c00001{bottom:55.482840px;}
.y72_c00001{bottom:55.485000px;}
.y646_c00001{bottom:55.486800px;}
.y1116_c00001{bottom:55.491840px;}
.y10a4_c00001{bottom:55.845000px;}
.y10a3_c00001{bottom:55.855080px;}
.y6ab_c00001{bottom:56.197800px;}
.y559_c00001{bottom:56.205000px;}
.yf85_c00001{bottom:57.285000px;}
.yc64_c00001{bottom:57.645000px;}
.yc63_c00001{bottom:57.648600px;}
.ydd8_c00001{bottom:59.085000px;}
.y8bf_c00001{bottom:60.120000px;}
.yf31_c00001{bottom:60.480000px;}
.yedc_c00001{bottom:61.245000px;}
.y74f_c00001{bottom:61.246800px;}
.yf2a_c00001{bottom:61.560000px;}
.y41_c00001{bottom:61.605000px;}
.yef9_c00001{bottom:61.920000px;}
.ye91_c00001{bottom:61.963920px;}
.y771_c00001{bottom:61.965000px;}
.yae9_c00001{bottom:62.332560px;}
.ye41_c00001{bottom:63.043920px;}
.ye42_c00001{bottom:63.045000px;}
.ya61_c00001{bottom:63.052200px;}
.y4da_c00001{bottom:63.720000px;}
.y110b_c00001{bottom:63.765000px;}
.yf29_c00001{bottom:65.205000px;}
.y209_c00001{bottom:65.520000px;}
.yf19_c00001{bottom:67.008600px;}
.y707_c00001{bottom:67.365000px;}
.y6e2_c00001{bottom:68.070600px;}
.y4a2_c00001{bottom:68.400000px;}
.y4a6_c00001{bottom:68.760000px;}
.yb46_c00001{bottom:68.801040px;}
.ycc7_c00001{bottom:69.165000px;}
.yfc8_c00001{bottom:70.245000px;}
.ycc6_c00001{bottom:70.605000px;}
.y924_c00001{bottom:72.045000px;}
.y1087_c00001{bottom:72.758880px;}
.y16f_c00001{bottom:72.762840px;}
.yb27_c00001{bottom:72.764280px;}
.y1aa_c00001{bottom:72.764640px;}
.y70_c00001{bottom:72.765000px;}
.yc5_c00001{bottom:72.766800px;}
.y1157_c00001{bottom:72.768240px;}
.y1017_c00001{bottom:72.768600px;}
.y7dc_c00001{bottom:72.770040px;}
.y825_c00001{bottom:72.773640px;}
.y4ee_c00001{bottom:73.121040px;}
.yfd8_c00001{bottom:73.125000px;}
.y558_c00001{bottom:74.206800px;}
.ybf4_c00001{bottom:75.282840px;}
.yc62_c00001{bottom:75.286800px;}
.y206_c00001{bottom:75.645000px;}
.y10a2_c00001{bottom:75.648240px;}
.yf04_c00001{bottom:76.005000px;}
.yf30_c00001{bottom:76.320000px;}
.yfd6_c00001{bottom:76.365000px;}
.y9a_c00001{bottom:76.725000px;}
.yef8_c00001{bottom:77.760000px;}
.yf5f_c00001{bottom:78.881040px;}
.y6f_c00001{bottom:78.885000px;}
.y645_c00001{bottom:79.245000px;}
.y4d9_c00001{bottom:79.560000px;}
.yb36_c00001{bottom:79.605000px;}
.y6aa_c00001{bottom:80.325000px;}
.yfbc_c00001{bottom:80.685000px;}
.y1115_c00001{bottom:81.405000px;}
.yf84_c00001{bottom:82.125000px;}
.y74e_c00001{bottom:85.005000px;}
.yccd_c00001{bottom:85.006800px;}
.yc33_c00001{bottom:85.365000px;}
.y70a_c00001{bottom:85.725000px;}
.yb45_c00001{bottom:86.085000px;}
.yb44_c00001{bottom:86.089680px;}
.ye90_c00001{bottom:86.805000px;}
.ye8f_c00001{bottom:86.809680px;}
.y947_c00001{bottom:87.522840px;}
.yae8_c00001{bottom:87.527880px;}
.yfc7_c00001{bottom:87.882840px;}
.ye40_c00001{bottom:87.885000px;}
.ye3f_c00001{bottom:87.888600px;}
.ya60_c00001{bottom:87.893280px;}
.y40_c00001{bottom:88.245000px;}
.y107c_c00001{bottom:88.965000px;}
.ycaa_c00001{bottom:89.685000px;}
.y91a_c00001{bottom:90.400680px;}
.yc3_c00001{bottom:90.401040px;}
.y1c0_c00001{bottom:90.402480px;}
.y144_c00001{bottom:90.402840px;}
.y691_c00001{bottom:90.404640px;}
.yc4_c00001{bottom:90.405000px;}
.y644_c00001{bottom:90.406800px;}
.y7db_c00001{bottom:90.408240px;}
.yb35_c00001{bottom:90.765000px;}
.y1156_c00001{bottom:90.775440px;}
.y91_c00001{bottom:91.485000px;}
.y824_c00001{bottom:91.489320px;}
.yf2f_c00001{bottom:91.800000px;}
.y556_c00001{bottom:91.841040px;}
.y557_c00001{bottom:91.845000px;}
.y29d_c00001{bottom:92.565000px;}
.ybf3_c00001{bottom:92.566800px;}
.y1086_c00001{bottom:92.921040px;}
.yc61_c00001{bottom:92.925000px;}
.yc60_c00001{bottom:92.931840px;}
.yfbb_c00001{bottom:93.646800px;}
.y10a1_c00001{bottom:93.655440px;}
.y706_c00001{bottom:94.005000px;}
.y4d8_c00001{bottom:95.400000px;}
.y66b_c00001{bottom:96.165000px;}
.y74d_c00001{bottom:96.166800px;}
.y6e_c00001{bottom:96.525000px;}
.y770_c00001{bottom:97.965000px;}
.ye66_c00001{bottom:98.325000px;}
.ycc5_c00001{bottom:99.045000px;}
.yf18_c00001{bottom:99.406800px;}
.y9bc_c00001{bottom:100.105200px;}
.y7c2_c00001{bottom:100.845000px;}
.y205_c00001{bottom:101.205000px;}
.y6e1_c00001{bottom:101.912400px;}
.ydd7_c00001{bottom:101.925000px;}
.yedb_c00001{bottom:102.285000px;}
.yccb_c00001{bottom:102.643920px;}
.yccc_c00001{bottom:102.645000px;}
.y208_c00001{bottom:103.365000px;}
.yfc6_c00001{bottom:105.166800px;}
.y257_c00001{bottom:105.525000px;}
.yf52_c00001{bottom:105.528600px;}
.yf53_c00001{bottom:106.245000px;}
.yf2e_c00001{bottom:107.640000px;}
.y946_c00001{bottom:107.676720px;}
.y10f2_c00001{bottom:107.682840px;}
.y919_c00001{bottom:107.684640px;}
.y6d_c00001{bottom:107.685000px;}
.y1bf_c00001{bottom:107.686440px;}
.yc2_c00001{bottom:107.686800px;}
.y22c_c00001{bottom:107.688600px;}
.y654_c00001{bottom:108.041040px;}
.y4ed_c00001{bottom:108.045000px;}
.y7da_c00001{bottom:108.046440px;}
.yb34_c00001{bottom:108.046800px;}
.y554_c00001{bottom:109.122840px;}
.y555_c00001{bottom:109.125000px;}
.y6a9_c00001{bottom:109.126800px;}
.yf83_c00001{bottom:109.843920px;}
.y628_c00001{bottom:109.845000px;}
.ybf2_c00001{bottom:110.204640px;}
.y196_c00001{bottom:110.205000px;}
.y1085_c00001{bottom:110.208600px;}
.ye86_c00001{bottom:110.558880px;}
.ya3d_c00001{bottom:110.567520px;}
.y1155_c00001{bottom:110.568600px;}
.yfba_c00001{bottom:111.285000px;}
.yb43_c00001{bottom:111.288600px;}
.y1133_c00001{bottom:111.645000px;}
.ye8e_c00001{bottom:112.005000px;}
.ye00_c00001{bottom:112.009680px;}
.y99_c00001{bottom:112.725000px;}
.y8af_c00001{bottom:113.058000px;}
.ye3e_c00001{bottom:113.083920px;}
.ya5f_c00001{bottom:113.088600px;}
.yae7_c00001{bottom:113.092200px;}
.y10a0_c00001{bottom:113.448600px;}
.yf5e_c00001{bottom:113.802840px;}
.y6c_c00001{bottom:113.805000px;}
.y74c_c00001{bottom:113.806800px;}
.y3e8_c00001{bottom:114.165000px;}
.y4d6_c00001{bottom:115.965000px;}
.y195_c00001{bottom:116.325000px;}
.yf17_c00001{bottom:117.045000px;}
.y66a_c00001{bottom:117.405000px;}
.yca9_c00001{bottom:118.125000px;}
.y76f_c00001{bottom:118.845000px;}
.y7c3_c00001{bottom:119.925000px;}
.yed1_c00001{bottom:120.285000px;}
.y6ff_c00001{bottom:121.005000px;}
.y806_c00001{bottom:122.440680px;}
.y807_c00001{bottom:122.445000px;}
.ydb7_c00001{bottom:122.803920px;}
.y1069_c00001{bottom:122.804640px;}
.yfc5_c00001{bottom:122.805000px;}
.y1f9_c00001{bottom:123.165000px;}
.ye65_c00001{bottom:123.172200px;}
.yf2d_c00001{bottom:123.480000px;}
.ydd6_c00001{bottom:123.889680px;}
.y945_c00001{bottom:124.960680px;}
.yc31_c00001{bottom:125.322120px;}
.y65c_c00001{bottom:125.322840px;}
.y114d_c00001{bottom:125.323200px;}
.yf98_c00001{bottom:125.323920px;}
.y1be_c00001{bottom:125.324640px;}
.yc1_c00001{bottom:125.325000px;}
.y115_c00001{bottom:125.326800px;}
.y395_c00001{bottom:125.328600px;}
.y7d9_c00001{bottom:125.684640px;}
.y15c_c00001{bottom:125.685000px;}
.y7b5_c00001{bottom:126.045000px;}
.y907_c00001{bottom:126.405000px;}
.y906_c00001{bottom:126.409320px;}
.y553_c00001{bottom:126.761040px;}
.y204_c00001{bottom:126.765000px;}
.y90_c00001{bottom:127.485000px;}
.ybf1_c00001{bottom:127.488600px;}
.y10f1_c00001{bottom:127.838880px;}
.yc6a_c00001{bottom:127.845000px;}
.y1084_c00001{bottom:127.846800px;}
.y822_c00001{bottom:128.201040px;}
.y823_c00001{bottom:128.205000px;}
.y1154_c00001{bottom:128.206800px;}
.y849_c00001{bottom:128.565000px;}
.yfb9_c00001{bottom:128.925000px;}
.yee8_c00001{bottom:129.285000px;}
.y91b_c00001{bottom:130.005000px;}
.y6b6_c00001{bottom:130.365000px;}
.yc5f_c00001{bottom:130.366800px;}
.y109f_c00001{bottom:131.086800px;}
.yf28_c00001{bottom:131.441040px;}
.yc0_c00001{bottom:131.445000px;}
.y10fd_c00001{bottom:131.803920px;}
.yb33_c00001{bottom:131.805000px;}
.y923_c00001{bottom:132.165000px;}
.y1132_c00001{bottom:132.525000px;}
.y6a8_c00001{bottom:132.885000px;}
.ycf1_c00001{bottom:133.245000px;}
.y1031_c00001{bottom:133.605000px;}
.y9bb_c00001{bottom:133.947000px;}
.yf82_c00001{bottom:134.683920px;}
.y29c_c00001{bottom:134.685000px;}
.yac2_c00001{bottom:135.045000px;}
.ye85_c00001{bottom:135.399960px;}
.ya3c_c00001{bottom:135.408600px;}
.y6e0_c00001{bottom:135.754200px;}
.yb42_c00001{bottom:136.129680px;}
.y7c1_c00001{bottom:136.845000px;}
.ye8d_c00001{bottom:137.203920px;}
.y256_c00001{bottom:137.205000px;}
.ydff_c00001{bottom:137.209680px;}
.y74b_c00001{bottom:137.565000px;}
.ybd7_c00001{bottom:137.922840px;}
.y3fe_c00001{bottom:137.925000px;}
.ya5e_c00001{bottom:137.929680px;}
.yae6_c00001{bottom:137.933280px;}
.yf3f_c00001{bottom:138.285000px;}
.yc32_c00001{bottom:139.365000px;}
.y805_c00001{bottom:139.724640px;}
.y526_c00001{bottom:139.725000px;}
.y525_c00001{bottom:139.729680px;}
.y1068_c00001{bottom:140.442840px;}
.y6b_c00001{bottom:140.445000px;}
.y871_c00001{bottom:140.496120px;}
.y3e7_c00001{bottom:140.805000px;}
.ybfa_c00001{bottom:141.165000px;}
.y6fe_c00001{bottom:141.885000px;}
.y22b_c00001{bottom:142.954200px;}
.y85d_c00001{bottom:142.956360px;}
.yc30_c00001{bottom:142.960320px;}
.y8cd_c00001{bottom:142.960680px;}
.y128_c00001{bottom:142.961040px;}
.ybcc_c00001{bottom:142.962120px;}
.y1bd_c00001{bottom:142.962840px;}
.y602_c00001{bottom:142.964640px;}
.ybf_c00001{bottom:142.965000px;}
.y114_c00001{bottom:142.966800px;}
.y5a2_c00001{bottom:142.967160px;}
.y7d8_c00001{bottom:142.968600px;}
.yc9c_c00001{bottom:143.325000px;}
.y552_c00001{bottom:144.045000px;}
.y6a7_c00001{bottom:144.046800px;}
.y830_c00001{bottom:144.405000px;}
.ye14_c00001{bottom:144.409680px;}
.y904_c00001{bottom:145.116360px;}
.y944_c00001{bottom:145.122840px;}
.y905_c00001{bottom:145.125000px;}
.ybf0_c00001{bottom:145.126800px;}
.y8ae_c00001{bottom:145.456200px;}
.y1083_c00001{bottom:145.481040px;}
.y9c4_c00001{bottom:145.485000px;}
.y1153_c00001{bottom:145.845000px;}
.y1152_c00001{bottom:145.849680px;}
.yfb8_c00001{bottom:146.205000px;}
.yfc4_c00001{bottom:146.565000px;}
.yca8_c00001{bottom:146.925000px;}
.y1126_c00001{bottom:147.643920px;}
.ydb6_c00001{bottom:147.645000px;}
.y10f0_c00001{bottom:148.001040px;}
.ye64_c00001{bottom:148.367520px;}
.y98_c00001{bottom:148.725000px;}
.y74a_c00001{bottom:148.726800px;}
.y143_c00001{bottom:149.085000px;}
.y848_c00001{bottom:149.445000px;}
.yc86_c00001{bottom:149.805000px;}
.y3f_c00001{bottom:150.165000px;}
.y781_c00001{bottom:150.525000px;}
.yd99_c00001{bottom:150.889680px;}
.y821_c00001{bottom:151.605000px;}
.y711_c00001{bottom:152.325000px;}
.y669_c00001{bottom:153.405000px;}
.y9bd_c00001{bottom:153.765000px;}
.y1041_c00001{bottom:153.766800px;}
.y6e7_c00001{bottom:154.125000px;}
.y6e3_c00001{bottom:154.485000px;}
.y76e_c00001{bottom:154.845000px;}
.ybd6_c00001{bottom:155.561040px;}
.yb78_c00001{bottom:156.285000px;}
.y2eb_c00001{bottom:156.292200px;}
.y10fc_c00001{bottom:156.645000px;}
.y10fb_c00001{bottom:156.649680px;}
.y804_c00001{bottom:157.362840px;}
.y9b_c00001{bottom:157.365000px;}
.yb11_c00001{bottom:157.725000px;}
.y1067_c00001{bottom:157.726800px;}
.y4a1_c00001{bottom:158.085000px;}
.y255_c00001{bottom:158.445000px;}
.y107a_c00001{bottom:158.805000px;}
.yc54_c00001{bottom:159.525000px;}
.yf81_c00001{bottom:159.525720px;}
.yb15_c00001{bottom:159.883200px;}
.yf7f_c00001{bottom:159.885000px;}
.y22a_c00001{bottom:160.238160px;}
.y8cc_c00001{bottom:160.244640px;}
.y127_c00001{bottom:160.245000px;}
.ybcb_c00001{bottom:160.246080px;}
.y6b0_c00001{bottom:160.246440px;}
.ybe_c00001{bottom:160.246800px;}
.yadd_c00001{bottom:160.247520px;}
.y601_c00001{bottom:160.248600px;}
.y5a1_c00001{bottom:160.251120px;}
.yba1_c00001{bottom:160.252200px;}
.y114c_c00001{bottom:160.255440px;}
.yc2f_c00001{bottom:160.598520px;}
.y4ec_c00001{bottom:160.601040px;}
.ya3b_c00001{bottom:160.603920px;}
.y113_c00001{bottom:160.605000px;}
.y7d7_c00001{bottom:160.606800px;}
.y1012_c00001{bottom:160.965000px;}
.y85c_c00001{bottom:161.317800px;}
.y1142_c00001{bottom:161.319240px;}
.yb41_c00001{bottom:161.325000px;}
.y15b_c00001{bottom:161.685000px;}
.y551_c00001{bottom:161.689680px;}
.y7b4_c00001{bottom:162.045000px;}
.ye8c_c00001{bottom:162.049680px;}
.ye39_c00001{bottom:162.053280px;}
.ybf9_c00001{bottom:162.405000px;}
.ybef_c00001{bottom:162.763920px;}
.y3d1_c00001{bottom:162.765000px;}
.y81f_c00001{bottom:163.121040px;}
.y903_c00001{bottom:163.123560px;}
.y820_c00001{bottom:163.125000px;}
.yae5_c00001{bottom:163.128600px;}
.y1151_c00001{bottom:163.133640px;}
.y8f_c00001{bottom:163.485000px;}
.y922_c00001{bottom:163.845000px;}
.y70b_c00001{bottom:164.205000px;}
.y442_c00001{bottom:164.923920px;}
.y524_c00001{bottom:164.925000px;}
.y1066_c00001{bottom:164.929680px;}
.y942_c00001{bottom:165.281040px;}
.y943_c00001{bottom:165.285000px;}
.y10ef_c00001{bottom:165.286800px;}
.yc5d_c00001{bottom:165.641040px;}
.yc5e_c00001{bottom:165.645000px;}
.y109e_c00001{bottom:166.005000px;}
.y126_c00001{bottom:166.365000px;}
.y749_c00001{bottom:166.366800px;}
.y112_c00001{bottom:166.725000px;}
.yf15_c00001{bottom:167.081040px;}
.yf16_c00001{bottom:167.085000px;}
.y643_c00001{bottom:167.445000px;}
.y6a6_c00001{bottom:167.805000px;}
.y9ba_c00001{bottom:168.145200px;}
.yb54_c00001{bottom:168.525000px;}
.y1082_c00001{bottom:168.885000px;}
.ybf6_c00001{bottom:169.245000px;}
.ye13_c00001{bottom:169.605000px;}
.y6df_c00001{bottom:169.952400px;}
.yb58_c00001{bottom:169.965000px;}
.y847_c00001{bottom:170.325000px;}
.y29b_c00001{bottom:170.685000px;}
.yda6_c00001{bottom:170.687520px;}
.y6a_c00001{bottom:171.405000px;}
.yf51_c00001{bottom:172.125000px;}
.yf27_c00001{bottom:172.485000px;}
.y682_c00001{bottom:172.845000px;}
.ydb5_c00001{bottom:172.851120px;}
.y3e6_c00001{bottom:173.205000px;}
.ye63_c00001{bottom:173.208600px;}
.y88c_c00001{bottom:173.565000px;}
.ydd5_c00001{bottom:173.933280px;}
.y668_c00001{bottom:174.285000px;}
.y803_c00001{bottom:174.646800px;}
.yca7_c00001{bottom:175.365000px;}
.y5dd_c00001{bottom:175.725000px;}
.yd98_c00001{bottom:176.085000px;}
.y110a_c00001{bottom:176.445000px;}
.y49a_c00001{bottom:177.165000px;}
.y229_c00001{bottom:177.876360px;}
.y482_c00001{bottom:177.880680px;}
.yc2e_c00001{bottom:177.882480px;}
.y1a9_c00001{bottom:177.882840px;}
.ybca_c00001{bottom:177.884280px;}
.y6af_c00001{bottom:177.884640px;}
.ybd_c00001{bottom:177.885000px;}
.y111_c00001{bottom:177.886800px;}
.y10c1_c00001{bottom:177.887520px;}
.y82f_c00001{bottom:177.888600px;}
.yba0_c00001{bottom:177.890400px;}
.y114b_c00001{bottom:177.893640px;}
.y8ad_c00001{bottom:178.223400px;}
.yb31_c00001{bottom:178.241040px;}
.yb32_c00001{bottom:178.245000px;}
.yb40_c00001{bottom:178.605000px;}
.yb3f_c00001{bottom:178.609680px;}
.y4d5_c00001{bottom:178.965000px;}
.y5a0_c00001{bottom:178.966800px;}
.y85b_c00001{bottom:179.322840px;}
.y254_c00001{bottom:179.325000px;}
.y1141_c00001{bottom:179.326440px;}
.y550_c00001{bottom:179.327880px;}
.y855_c00001{bottom:179.685000px;}
.y1081_c00001{bottom:180.401040px;}
.y710_c00001{bottom:180.405000px;}
.yc53_c00001{bottom:180.765000px;}
.y1150_c00001{bottom:180.771840px;}
.y901_c00001{bottom:181.477800px;}
.y902_c00001{bottom:181.485000px;}
.ycd2_c00001{bottom:181.845000px;}
.y941_c00001{bottom:182.565000px;}
.y940_c00001{bottom:182.576520px;}
.y10ee_c00001{bottom:182.921040px;}
.yc5c_c00001{bottom:182.925000px;}
.yc5b_c00001{bottom:182.926800px;}
.y7b3_c00001{bottom:183.285000px;}
.y870_c00001{bottom:183.335400px;}
.yef7_c00001{bottom:183.645000px;}
.yf26_c00001{bottom:184.001040px;}
.ybc_c00001{bottom:184.005000px;}
.y709_c00001{bottom:184.365000px;}
.yf14_c00001{bottom:184.366800px;}
.y97_c00001{bottom:184.725000px;}
.yac1_c00001{bottom:185.085000px;}
.yadc_c00001{bottom:185.088600px;}
.ya3a_c00001{bottom:185.445000px;}
.y3e_c00001{bottom:186.165000px;}
.y780_c00001{bottom:186.525000px;}
.y109d_c00001{bottom:186.885000px;}
.y2ce_c00001{bottom:187.245000px;}
.ye38_c00001{bottom:187.248600px;}
.ye8b_c00001{bottom:187.249680px;}
.ydfe_c00001{bottom:187.603920px;}
.y642_c00001{bottom:187.605000px;}
.ye1b_c00001{bottom:187.965000px;}
.ye84_c00001{bottom:187.968600px;}
.ya5d_c00001{bottom:187.969680px;}
.ya50_c00001{bottom:187.973280px;}
.y8bc_c00001{bottom:188.325000px;}
.y8c5_c00001{bottom:189.405000px;}
.y441_c00001{bottom:189.765000px;}
.y1065_c00001{bottom:190.123920px;}
.y142_c00001{bottom:190.125000px;}
.yfc3_c00001{bottom:190.485000px;}
.y2ea_c00001{bottom:190.490400px;}
.y310_c00001{bottom:190.845000px;}
.y29a_c00001{bottom:191.565000px;}
.y91d_c00001{bottom:191.925000px;}
.yaa8_c00001{bottom:192.274560px;}
.y69_c00001{bottom:192.285000px;}
.y802_c00001{bottom:192.286440px;}
.y1124_c00001{bottom:192.643920px;}
.y1125_c00001{bottom:192.645000px;}
.y3bc_c00001{bottom:193.005000px;}
.ye6_c00001{bottom:193.360680px;}
.y97a_c00001{bottom:193.365000px;}
.y976_c00001{bottom:193.725000px;}
.y3e5_c00001{bottom:194.085000px;}
.y6a5_c00001{bottom:194.445000px;}
.ye12_c00001{bottom:194.803920px;}
.y3fd_c00001{bottom:194.805000px;}
.y509_c00001{bottom:195.165000px;}
.yd0c_c00001{bottom:195.194160px;}
.y481_c00001{bottom:195.518880px;}
.yc2d_c00001{bottom:195.520680px;}
.ybb_c00001{bottom:195.521040px;}
.ybc9_c00001{bottom:195.522480px;}
.y53b_c00001{bottom:195.522840px;}
.y110_c00001{bottom:195.525000px;}
.y82e_c00001{bottom:195.526800px;}
.yda5_c00001{bottom:195.528600px;}
.ydf8_c00001{bottom:195.529680px;}
.y400_c00001{bottom:195.885000px;}
.y228_c00001{bottom:196.237800px;}
.ycf0_c00001{bottom:196.245000px;}
.y1040_c00001{bottom:196.246800px;}
.y59f_c00001{bottom:196.605000px;}
.y59e_c00001{bottom:196.606800px;}
.yfd7_c00001{bottom:196.965000px;}
.y10c0_c00001{bottom:197.680680px;}
.y15a_c00001{bottom:197.685000px;}
.y114a_c00001{bottom:197.686800px;}
.y1080_c00001{bottom:197.688600px;}
.y54f_c00001{bottom:197.689320px;}
.ydb4_c00001{bottom:197.692200px;}
.ybd5_c00001{bottom:198.041040px;}
.y499_c00001{bottom:198.045000px;}
.ye62_c00001{bottom:198.403920px;}
.y1109_c00001{bottom:198.405000px;}
.ye2c_c00001{bottom:198.407520px;}
.y6fd_c00001{bottom:198.765000px;}
.yce7_c00001{bottom:199.125000px;}
.ydd4_c00001{bottom:199.128600px;}
.y8e_c00001{bottom:199.485000px;}
.y72f_c00001{bottom:199.845000px;}
.y253_c00001{bottom:200.205000px;}
.yc5a_c00001{bottom:200.561040px;}
.y854_c00001{bottom:200.565000px;}
.y10db_c00001{bottom:200.566800px;}
.y114f_c00001{bottom:200.568600px;}
.y4f9_c00001{bottom:200.925000px;}
.y748_c00001{bottom:201.285000px;}
.yf25_c00001{bottom:201.286800px;}
.yb9f_c00001{bottom:201.365640px;}
.y10f_c00001{bottom:201.645000px;}
.y9b9_c00001{bottom:201.987000px;}
.yf13_c00001{bottom:202.005000px;}
.yf12_c00001{bottom:202.006800px;}
.yf7e_c00001{bottom:202.365000px;}
.y787_c00001{bottom:202.725000px;}
.yfa3_c00001{bottom:203.085000px;}
.y6de_c00001{bottom:203.794200px;}
.y5dc_c00001{bottom:203.805000px;}
.y7b2_c00001{bottom:204.165000px;}
.ybed_c00001{bottom:205.241040px;}
.y1140_c00001{bottom:205.242840px;}
.ybee_c00001{bottom:205.245000px;}
.y900_c00001{bottom:205.605000px;}
.yc6b_c00001{bottom:205.965000px;}
.yfe8_c00001{bottom:206.318520px;}
.y104e_c00001{bottom:206.325000px;}
.yc85_c00001{bottom:207.045000px;}
.y747_c00001{bottom:207.405000px;}
.y109c_c00001{bottom:207.765000px;}
.y93f_c00001{bottom:207.771840px;}
.yf50_c00001{bottom:208.125000px;}
.y7c0_c00001{bottom:208.845000px;}
.yd87_c00001{bottom:209.203920px;}
.y9c2_c00001{bottom:209.565000px;}
.ya0f_c00001{bottom:209.567520px;}
.y801_c00001{bottom:209.924640px;}
.yadb_c00001{bottom:210.283920px;}
.y8c4_c00001{bottom:210.285000px;}
.ya39_c00001{bottom:210.289680px;}
.yac0_c00001{bottom:210.292200px;}
.y8ac_c00001{bottom:210.621600px;}
.ye5_c00001{bottom:210.644640px;}
.y16e_c00001{bottom:210.645000px;}
.y92_c00001{bottom:211.365000px;}
.y339_c00001{bottom:211.723920px;}
.y33a_c00001{bottom:211.725000px;}
.ye37_c00001{bottom:212.089680px;}
.y641_c00001{bottom:212.445000px;}
.ydfd_c00001{bottom:212.448600px;}
.yf80_c00001{bottom:212.449680px;}
.y480_c00001{bottom:212.802840px;}
.yafe_c00001{bottom:212.804280px;}
.yc2c_c00001{bottom:212.804640px;}
.yba_c00001{bottom:212.805000px;}
.y600_c00001{bottom:212.806440px;}
.y194_c00001{bottom:212.806800px;}
.ye83_c00001{bottom:212.809680px;}
.ya28_c00001{bottom:213.163920px;}
.y7d6_c00001{bottom:213.165000px;}
.yb30_c00001{bottom:213.166800px;}
.ya4f_c00001{bottom:213.168600px;}
.y103e_c00001{bottom:213.881040px;}
.y103f_c00001{bottom:213.885000px;}
.y59d_c00001{bottom:214.245000px;}
.y59c_c00001{bottom:214.246800px;}
.y681_c00001{bottom:214.965000px;}
.y1064_c00001{bottom:214.969680px;}
.ybd4_c00001{bottom:215.322840px;}
.y3e4_c00001{bottom:215.325000px;}
.y107f_c00001{bottom:215.326800px;}
.y794_c00001{bottom:215.685000px;}
.y667_c00001{bottom:216.405000px;}
.y141_c00001{bottom:216.765000px;}
.ybf5_c00001{bottom:217.125000px;}
.yeb3_c00001{bottom:217.485000px;}
.y10bf_c00001{bottom:217.842840px;}
.y10ed_c00001{bottom:217.844640px;}
.yc59_c00001{bottom:217.845000px;}
.y10da_c00001{bottom:218.201040px;}
.yfc9_c00001{bottom:218.205000px;}
.y114e_c00001{bottom:218.206800px;}
.ycdc_c00001{bottom:218.565000px;}
.yf24_c00001{bottom:218.921040px;}
.yb9_c00001{bottom:218.925000px;}
.y7d5_c00001{bottom:219.285000px;}
.yd66_c00001{bottom:219.289680px;}
.yaa7_c00001{bottom:219.639600px;}
.yf11_c00001{bottom:219.643920px;}
.y377_c00001{bottom:219.645000px;}
.ye11_c00001{bottom:219.654360px;}
.y3d0_c00001{bottom:220.005000px;}
.yd0b_c00001{bottom:220.035240px;}
.y227_c00001{bottom:220.365000px;}
.yda4_c00001{bottom:220.723920px;}
.y96_c00001{bottom:220.725000px;}
.yd29_c00001{bottom:220.727520px;}
.yc9b_c00001{bottom:221.083920px;}
.y874_c00001{bottom:221.085000px;}
.y853_c00001{bottom:221.445000px;}
.y4f8_c00001{bottom:221.805000px;}
.y3d_c00001{bottom:222.165000px;}
.y54e_c00001{bottom:222.525000px;}
.ybec_c00001{bottom:222.529680px;}
.yf7d_c00001{bottom:222.885000px;}
.ydb3_c00001{bottom:222.887520px;}
.y2cd_c00001{bottom:223.245000px;}
.ya71_c00001{bottom:223.247520px;}
.ye2b_c00001{bottom:223.248600px;}
.y921_c00001{bottom:223.965000px;}
.ydd3_c00001{bottom:223.969680px;}
.y8bb_c00001{bottom:224.325000px;}
.y2e9_c00001{bottom:224.688600px;}
.y5db_c00001{bottom:225.405000px;}
.yf9f_c00001{bottom:226.125000px;}
.y983_c00001{bottom:226.485000px;}
.y86f_c00001{bottom:226.531080px;}
.y30f_c00001{bottom:226.845000px;}
.yc35_c00001{bottom:227.205000px;}
.y93d_c00001{bottom:227.562840px;}
.y93e_c00001{bottom:227.565000px;}
.y129_c00001{bottom:227.925000px;}
.ye4_c00001{bottom:228.282840px;}
.y68_c00001{bottom:228.285000px;}
.y4d4_c00001{bottom:228.645000px;}
.yb3e_c00001{bottom:228.999600px;}
.y6c4_c00001{bottom:229.005000px;}
.ycab_c00001{bottom:229.365000px;}
.y705_c00001{bottom:229.725000px;}
.y916_c00001{bottom:230.440680px;}
.y2ac_c00001{bottom:230.441040px;}
.yafd_c00001{bottom:230.442480px;}
.y918_c00001{bottom:230.442840px;}
.yb8_c00001{bottom:230.444640px;}
.y2ad_c00001{bottom:230.445000px;}
.y10e_c00001{bottom:230.446800px;}
.yd57_c00001{bottom:230.452200px;}
.yb2e_c00001{bottom:230.801040px;}
.yb2f_c00001{bottom:230.805000px;}
.yfe7_c00001{bottom:231.159600px;}
.yd97_c00001{bottom:231.159960px;}
.y690_c00001{bottom:231.165000px;}
.y103d_c00001{bottom:231.174000px;}
.y225_c00001{bottom:231.882480px;}
.y226_c00001{bottom:231.885000px;}
.yca6_c00001{bottom:232.245000px;}
.y640_c00001{bottom:232.605000px;}
.ybd3_c00001{bottom:232.961040px;}
.yec9_c00001{bottom:232.965000px;}
.y846_c00001{bottom:233.325000px;}
.y159_c00001{bottom:233.685000px;}
.y498_c00001{bottom:234.045000px;}
.yd86_c00001{bottom:234.048600px;}
.y54d_c00001{bottom:234.402840px;}
.y8ff_c00001{bottom:234.405000px;}
.y8fe_c00001{bottom:234.406800px;}
.ya0e_c00001{bottom:234.408600px;}
.y800_c00001{bottom:234.765720px;}
.y1123_c00001{bottom:235.119960px;}
.yada_c00001{bottom:235.125000px;}
.yabf_c00001{bottom:235.133280px;}
.y10ec_c00001{bottom:235.482840px;}
.ye7d_c00001{bottom:235.483560px;}
.y8d_c00001{bottom:235.485000px;}
.yc58_c00001{bottom:235.486800px;}
.y10d9_c00001{bottom:235.488600px;}
.y680_c00001{bottom:235.845000px;}
.y9b8_c00001{bottom:236.185200px;}
.y252_c00001{bottom:236.205000px;}
.yf5d_c00001{bottom:236.206800px;}
.y193_c00001{bottom:236.565000px;}
.y338_c00001{bottom:236.569680px;}
.y7d4_c00001{bottom:236.925000px;}
.ydc7_c00001{bottom:236.932200px;}
.y666_c00001{bottom:237.285000px;}
.ydfc_c00001{bottom:237.643920px;}
.y982_c00001{bottom:237.645000px;}
.ye54_c00001{bottom:237.647520px;}
.y6dd_c00001{bottom:237.992400px;}
.y59b_c00001{bottom:238.005000px;}
.ye3d_c00001{bottom:238.008600px;}
.ya4e_c00001{bottom:238.009680px;}
.yaf9_c00001{bottom:238.011120px;}
.ye1a_c00001{bottom:238.013280px;}
.y5e7_c00001{bottom:238.365000px;}
.y786_c00001{bottom:238.725000px;}
.y1047_c00001{bottom:239.085000px;}
.y10b4_c00001{bottom:239.088600px;}
.yfa2_c00001{bottom:239.805000px;}
.y6a4_c00001{bottom:240.165000px;}
.y7ae_c00001{bottom:240.525000px;}
.y6fc_c00001{bottom:240.885000px;}
.ycc4_c00001{bottom:241.605000px;}
.yb10_c00001{bottom:241.965000px;}
.yf23_c00001{bottom:242.325000px;}
.y4f7_c00001{bottom:242.685000px;}
.y8ab_c00001{bottom:243.019800px;}
.y3c_c00001{bottom:243.045000px;}
.y758_c00001{bottom:243.405000px;}
.yc52_c00001{bottom:243.765000px;}
.y440_c00001{bottom:244.125000px;}
.yb14_c00001{bottom:244.126800px;}
.yd65_c00001{bottom:244.485000px;}
.ye75_c00001{bottom:244.489680px;}
.y6e5_c00001{bottom:244.845000px;}
.ye10_c00001{bottom:244.849680px;}
.yaa6_c00001{bottom:245.203920px;}
.y796_c00001{bottom:245.205000px;}
.yd0a_c00001{bottom:245.230560px;}
.ya91_c00001{bottom:245.563920px;}
.y1a8_c00001{bottom:245.565000px;}
.ydf7_c00001{bottom:245.567520px;}
.yd28_c00001{bottom:245.568600px;}
.ye3_c00001{bottom:245.921040px;}
.y5da_c00001{bottom:245.925000px;}
.yc9a_c00001{bottom:245.929680px;}
.y375_c00001{bottom:246.279960px;}
.y376_c00001{bottom:246.285000px;}
.y85a_c00001{bottom:247.005000px;}
.yee7_c00001{bottom:247.365000px;}
.y915_c00001{bottom:247.724640px;}
.y2ab_c00001{bottom:247.725000px;}
.yafc_c00001{bottom:247.726440px;}
.y917_c00001{bottom:247.726800px;}
.yb7_c00001{bottom:247.728600px;}
.y93c_c00001{bottom:247.731840px;}
.y10c_c00001{bottom:248.081040px;}
.y10d_c00001{bottom:248.085000px;}
.y61c_c00001{bottom:248.086800px;}
.ya70_c00001{bottom:248.088600px;}
.ye2a_c00001{bottom:248.443920px;}
.yecf_c00001{bottom:248.445000px;}
.y4c4_c00001{bottom:248.805000px;}
.y103c_c00001{bottom:248.812200px;}
.y8f0_c00001{bottom:249.165000px;}
.y224_c00001{bottom:249.166440px;}
.y67_c00001{bottom:249.525000px;}
.ybf7_c00001{bottom:249.885000px;}
.y852_c00001{bottom:249.889680px;}
.y523_c00001{bottom:250.245000px;}
.ybd2_c00001{bottom:250.246800px;}
.y107e_c00001{bottom:250.248600px;}
.yb9e_c00001{bottom:250.678800px;}
.yfca_c00001{bottom:250.965000px;}
.y88b_c00001{bottom:251.325000px;}
.yf9e_c00001{bottom:251.326800px;}
.y7ac_c00001{bottom:251.685000px;}
.y54c_c00001{bottom:252.041040px;}
.y3fc_c00001{bottom:252.045000px;}
.y508_c00001{bottom:252.405000px;}
.y113f_c00001{bottom:252.756720px;}
.y920_c00001{bottom:252.765000px;}
.y10eb_c00001{bottom:252.766800px;}
.yc56_c00001{bottom:253.121040px;}
.yc57_c00001{bottom:253.125000px;}
.y96a_c00001{bottom:253.485000px;}
.y192_c00001{bottom:253.845000px;}
.yf22_c00001{bottom:253.846800px;}
.y653_c00001{bottom:254.205000px;}
.y76b_c00001{bottom:254.565000px;}
.y497_c00001{bottom:254.925000px;}
.y140_c00001{bottom:255.285000px;}
.y10be_c00001{bottom:255.289680px;}
.yd56_c00001{bottom:255.293280px;}
.ya7b_c00001{bottom:255.643920px;}
.yc76_c00001{bottom:255.645000px;}
.yfe6_c00001{bottom:256.000680px;}
.yc34_c00001{bottom:256.005000px;}
.y5e8_c00001{bottom:256.365000px;}
.y95_c00001{bottom:256.725000px;}
.y10b3_c00001{bottom:256.726800px;}
.y67f_c00001{bottom:257.085000px;}
.y3e3_c00001{bottom:257.445000px;}
.y100f_c00001{bottom:257.805000px;}
.y665_c00001{bottom:258.165000px;}
.y77f_c00001{bottom:258.525000px;}
.yd96_c00001{bottom:258.525720px;}
.y2e8_c00001{bottom:258.886800px;}
.yd85_c00001{bottom:259.243920px;}
.y2cc_c00001{bottom:259.245000px;}
.ya0d_c00001{bottom:259.603920px;}
.y63f_c00001{bottom:259.965000px;}
.y1bc_c00001{bottom:259.966800px;}
.ye7c_c00001{bottom:260.324640px;}
.y8ba_c00001{bottom:260.325000px;}
.yad9_c00001{bottom:260.327520px;}
.yabe_c00001{bottom:260.328600px;}
.y10d8_c00001{bottom:260.683920px;}
.yca5_c00001{bottom:260.685000px;}
.y6a3_c00001{bottom:261.045000px;}
.y105b_c00001{bottom:261.405000px;}
.y337_c00001{bottom:261.765000px;}
.y336_c00001{bottom:261.769680px;}
.yd64_c00001{bottom:262.125000px;}
.ydc6_c00001{bottom:262.127520px;}
.y7fe_c00001{bottom:262.479960px;}
.ye36_c00001{bottom:262.483920px;}
.y7ff_c00001{bottom:262.485000px;}
.ye53_c00001{bottom:262.488600px;}
.y30e_c00001{bottom:262.845000px;}
.yaf8_c00001{bottom:262.852200px;}
.ye82_c00001{bottom:262.853280px;}
.ya5c_c00001{bottom:263.203920px;}
.ye2_c00001{bottom:263.205000px;}
.ya27_c00001{bottom:263.207520px;}
.ye19_c00001{bottom:263.208600px;}
.y9d0_c00001{bottom:263.565000px;}
.y3b_c00001{bottom:263.925000px;}
.y757_c00001{bottom:264.285000px;}
.y59a_c00001{bottom:264.645000px;}
.y251_c00001{bottom:265.005000px;}
.y914_c00001{bottom:265.362840px;}
.y65b_c00001{bottom:265.364640px;}
.y10b_c00001{bottom:265.365000px;}
.y10a_c00001{bottom:265.366440px;}
.yb6_c00001{bottom:265.366800px;}
.yc2b_c00001{bottom:265.368600px;}
.yd3c_c00001{bottom:265.369680px;}
.yb2d_c00001{bottom:265.724640px;}
.y704_c00001{bottom:265.725000px;}
.yb81_c00001{bottom:266.799600px;}
.y223_c00001{bottom:266.804640px;}
.y975_c00001{bottom:266.805000px;}
.y104d_c00001{bottom:267.163920px;}
.y3bb_c00001{bottom:267.165000px;}
.y93b_c00001{bottom:267.525000px;}
.y93a_c00001{bottom:267.529680px;}
.y627_c00001{bottom:267.885000px;}
.ybd1_c00001{bottom:267.886800px;}
.y8cb_c00001{bottom:268.245000px;}
.yc0d_c00001{bottom:268.246800px;}
.yff5_c00001{bottom:268.605000px;}
.yf9d_c00001{bottom:268.964640px;}
.y76d_c00001{bottom:268.965000px;}
.y54b_c00001{bottom:269.325000px;}
.y8d7_c00001{bottom:269.325720px;}
.y54a_c00001{bottom:269.326800px;}
.y86e_c00001{bottom:269.370360px;}
.yf10_c00001{bottom:269.683920px;}
.y158_c00001{bottom:269.685000px;}
.ye74_c00001{bottom:269.689680px;}
.y9b7_c00001{bottom:270.027000px;}
.y4c3_c00001{bottom:270.045000px;}
.yd09_c00001{bottom:270.071640px;}
.y66_c00001{bottom:270.405000px;}
.ydf6_c00001{bottom:270.408600px;}
.yd27_c00001{bottom:270.409680px;}
.y10ea_c00001{bottom:270.413280px;}
.yb13_c00001{bottom:270.759600px;}
.y113e_c00001{bottom:270.763920px;}
.y9e6_c00001{bottom:270.765000px;}
.y394_c00001{bottom:271.125000px;}
.y8c_c00001{bottom:271.485000px;}
.y6dc_c00001{bottom:271.834200px;}
.y61b_c00001{bottom:271.845000px;}
.y43f_c00001{bottom:272.205000px;}
.y88a_c00001{bottom:272.565000px;}
.ybeb_c00001{bottom:272.569680px;}
.ydb2_c00001{bottom:272.923920px;}
.y726_c00001{bottom:272.925000px;}
.ya6f_c00001{bottom:272.929680px;}
.y5f7_c00001{bottom:273.285000px;}
.y374_c00001{bottom:273.645000px;}
.y373_c00001{bottom:273.646440px;}
.yb38_c00001{bottom:274.005000px;}
.y103b_c00001{bottom:274.007520px;}
.ydd2_c00001{bottom:274.009680px;}
.yb9d_c00001{bottom:274.073400px;}
.y5e6_c00001{bottom:274.365000px;}
.y785_c00001{bottom:274.725000px;}
.y850_c00001{bottom:275.083920px;}
.y851_c00001{bottom:275.085000px;}
.y8aa_c00001{bottom:275.418000px;}
.y10bd_c00001{bottom:275.451840px;}
.y76a_c00001{bottom:275.805000px;}
.y496_c00001{bottom:276.165000px;}
.y3cf_c00001{bottom:276.525000px;}
.y35d_c00001{bottom:276.880680px;}
.y35e_c00001{bottom:276.885000px;}
.y5b7_c00001{bottom:277.245000px;}
.y1ba_c00001{bottom:277.603560px;}
.y1bb_c00001{bottom:277.605000px;}
.y67e_c00001{bottom:277.965000px;}
.y3e2_c00001{bottom:278.325000px;}
.y522_c00001{bottom:278.685000px;}
.y1118_c00001{bottom:279.045000px;}
.y664_c00001{bottom:279.405000px;}
.y1122_c00001{bottom:280.123920px;}
.yf4f_c00001{bottom:280.125000px;}
.y191_c00001{bottom:280.485000px;}
.yd55_c00001{bottom:280.488600px;}
.y652_c00001{bottom:280.845000px;}
.y100b_c00001{bottom:280.846800px;}
.y248_c00001{bottom:281.205000px;}
.yfe5_c00001{bottom:281.565000px;}
.yeaa_c00001{bottom:281.925000px;}
.y9f5_c00001{bottom:282.285000px;}
.yed0_c00001{bottom:282.645000px;}
.y2aa_c00001{bottom:283.001040px;}
.y47f_c00001{bottom:283.002840px;}
.y109_c00001{bottom:283.004640px;}
.y27a_c00001{bottom:283.005000px;}
.yc2a_c00001{bottom:283.006800px;}
.yb2c_c00001{bottom:283.008600px;}
.yee6_c00001{bottom:283.365000px;}
.y1a7_c00001{bottom:283.725000px;}
.y81e_c00001{bottom:284.085000px;}
.y222_c00001{bottom:284.088600px;}
.ya0c_c00001{bottom:284.445000px;}
.y5b8_c00001{bottom:284.805000px;}
.y63d_c00001{bottom:285.163920px;}
.y63e_c00001{bottom:285.165000px;}
.yad8_c00001{bottom:285.168600px;}
.yabd_c00001{bottom:285.169680px;}
.ybcf_c00001{bottom:285.524640px;}
.ybd0_c00001{bottom:285.525000px;}
.ya38_c00001{bottom:285.528600px;}
.y10d7_c00001{bottom:285.529680px;}
.yc0c_c00001{bottom:285.885000px;}
.yd95_c00001{bottom:286.245000px;}
.yf9c_c00001{bottom:286.248600px;}
.yd94_c00001{bottom:286.249680px;}
.y72d_c00001{bottom:286.605000px;}
.y335_c00001{bottom:286.965000px;}
.y549_c00001{bottom:286.966800px;}
.ydc5_c00001{bottom:286.968600px;}
.y334_c00001{bottom:286.969680px;}
.ye35_c00001{bottom:287.325000px;}
.ye8a_c00001{bottom:287.328600px;}
.ydfb_c00001{bottom:287.683920px;}
.yfcd_c00001{bottom:287.685000px;}
.ye7b_c00001{bottom:287.689680px;}
.y5d9_c00001{bottom:288.045000px;}
.yc55_c00001{bottom:288.046800px;}
.yaf7_c00001{bottom:288.047520px;}
.ya26_c00001{bottom:288.048600px;}
.ya4d_c00001{bottom:288.049680px;}
.y10e9_c00001{bottom:288.051480px;}
.ye0_c00001{bottom:288.401040px;}
.ye1_c00001{bottom:288.405000px;}
.y1108_c00001{bottom:288.765000px;}
.yf21_c00001{bottom:288.766800px;}
.yb5_c00001{bottom:289.125000px;}
.y8ca_c00001{bottom:289.485000px;}
.y7fd_c00001{bottom:289.839960px;}
.y76c_c00001{bottom:289.845000px;}
.y1062_c00001{bottom:290.203920px;}
.y1063_c00001{bottom:290.205000px;}
.yd3b_c00001{bottom:290.563920px;}
.yb3d_c00001{bottom:290.565000px;}
.y4c2_c00001{bottom:290.925000px;}
.y65_c00001{bottom:291.285000px;}
.y4d3_c00001{bottom:291.645000px;}
.y393_c00001{bottom:292.005000px;}
.y1a_c00001{bottom:292.365000px;}
.y3ba_c00001{bottom:292.366800px;}
.y94_c00001{bottom:292.725000px;}
.y939_c00001{bottom:292.731840px;}
.y2e7_c00001{bottom:293.085000px;}
.y250_c00001{bottom:293.445000px;}
.y7ab_c00001{bottom:293.805000px;}
.y725_c00001{bottom:294.165000px;}
.y70f_c00001{bottom:294.525000px;}
.yf0f_c00001{bottom:294.526800px;}
.ye72_c00001{bottom:294.883920px;}
.ye73_c00001{bottom:294.885000px;}
.ye0f_c00001{bottom:294.889680px;}
.y1b9_c00001{bottom:295.241760px;}
.yaa5_c00001{bottom:295.243920px;}
.y2cb_c00001{bottom:295.245000px;}
.yd08_c00001{bottom:295.266960px;}
.ydf5_c00001{bottom:295.603920px;}
.y45e_c00001{bottom:295.605000px;}
.ya90_c00001{bottom:295.607520px;}
.y113d_c00001{bottom:295.609680px;}
.ybdc_c00001{bottom:295.965000px;}
.y8b9_c00001{bottom:296.325000px;}
.yf58_c00001{bottom:296.685000px;}
.y8d6_c00001{bottom:297.039960px;}
.y495_c00001{bottom:297.045000px;}
.ybf8_c00001{bottom:297.405000px;}
.yb9c_c00001{bottom:297.468000px;}
.ybea_c00001{bottom:297.759960px;}
.y844_c00001{bottom:297.763920px;}
.y845_c00001{bottom:297.765000px;}
.y82d_c00001{bottom:298.125000px;}
.ye29_c00001{bottom:298.483920px;}
.y61a_c00001{bottom:298.485000px;}
.y30d_c00001{bottom:298.845000px;}
.y103a_c00001{bottom:298.848600px;}
.ydd1_c00001{bottom:299.201040px;}
.y15e_c00001{bottom:299.205000px;}
.y10b2_c00001{bottom:299.206800px;}
.y371_c00001{bottom:299.560680px;}
.y372_c00001{bottom:299.565000px;}
.y3a_c00001{bottom:299.925000px;}
.y279_c00001{bottom:300.285000px;}
.y3ae_c00001{bottom:300.286800px;}
.y108_c00001{bottom:300.642840px;}
.y299_c00001{bottom:300.645000px;}
.yb2b_c00001{bottom:300.646800px;}
.y6c3_c00001{bottom:301.005000px;}
.y43e_c00001{bottom:301.365000px;}
.y703_c00001{bottom:301.725000px;}
.y221_c00001{bottom:301.726800px;}
.y247_c00001{bottom:302.085000px;}
.y35c_c00001{bottom:302.445000px;}
.y35b_c00001{bottom:302.446440px;}
.y3ce_c00001{bottom:303.165000px;}
.yc0b_c00001{bottom:303.525000px;}
.yc0a_c00001{bottom:303.535440px;}
.y9b6_c00001{bottom:303.868800px;}
.y626_c00001{bottom:303.885000px;}
.ycdb_c00001{bottom:304.245000px;}
.y8fd_c00001{bottom:304.602840px;}
.y548_c00001{bottom:304.605000px;}
.y1a6_c00001{bottom:304.965000px;}
.y81d_c00001{bottom:305.325000px;}
.yd54_c00001{bottom:305.329680px;}
.y6db_c00001{bottom:305.676000px;}
.ydf_c00001{bottom:305.685000px;}
.yde_c00001{bottom:305.686800px;}
.ya7a_c00001{bottom:305.687520px;}
.y5b6_c00001{bottom:306.045000px;}
.y278_c00001{bottom:306.405000px;}
.yb4_c00001{bottom:306.406800px;}
.y7d3_c00001{bottom:306.765000px;}
.yf7c_c00001{bottom:307.125000px;}
.y8b_c00001{bottom:307.485000px;}
.y10e8_c00001{bottom:307.844640px;}
.y521_c00001{bottom:307.845000px;}
.y8a9_c00001{bottom:308.185200px;}
.y1073_c00001{bottom:308.205000px;}
.y97f_c00001{bottom:308.565000px;}
.y3fb_c00001{bottom:308.925000px;}
.ycca_c00001{bottom:308.926800px;}
.yd84_c00001{bottom:308.933280px;}
.y5f6_c00001{bottom:309.285000px;}
.ya0b_c00001{bottom:309.643920px;}
.y1f8_c00001{bottom:309.645000px;}
.yfe4_c00001{bottom:309.645720px;}
.y3b9_c00001{bottom:310.005000px;}
.yad7_c00001{bottom:310.363920px;}
.y8c9_c00001{bottom:310.365000px;}
.ybce_c00001{bottom:310.365720px;}
.ya37_c00001{bottom:310.369680px;}
.y547_c00001{bottom:310.725000px;}
.y10d6_c00001{bottom:310.741920px;}
.y1046_c00001{bottom:311.085000px;}
.yf9b_c00001{bottom:311.443920px;}
.yd93_c00001{bottom:311.445000px;}
.y4c1_c00001{bottom:311.805000px;}
.ydc4_c00001{bottom:312.163920px;}
.y333_c00001{bottom:312.165000px;}
.y332_c00001{bottom:312.169680px;}
.y938_c00001{bottom:312.522840px;}
.y64_c00001{bottom:312.525000px;}
.y1b8_c00001{bottom:312.525720px;}
.ydfa_c00001{bottom:312.529680px;}
.y86d_c00001{bottom:312.566040px;}
.y10bc_c00001{bottom:312.877800px;}
.ye7a_c00001{bottom:312.885000px;}
.yaf6_c00001{bottom:312.888600px;}
.ye81_c00001{bottom:312.889680px;}
.ya25_c00001{bottom:313.243920px;}
.y392_c00001{bottom:313.245000px;}
.ya5b_c00001{bottom:313.247520px;}
.yde7_c00001{bottom:313.253280px;}
.y572_c00001{bottom:313.605000px;}
.y72e_c00001{bottom:313.965000px;}
.yffa_c00001{bottom:314.325000px;}
.y889_c00001{bottom:314.685000px;}
.y724_c00001{bottom:315.045000px;}
.y663_c00001{bottom:315.405000px;}
.y5ff_c00001{bottom:315.765000px;}
.yf4e_c00001{bottom:316.125000px;}
.y45d_c00001{bottom:316.485000px;}
.ydd0_c00001{bottom:316.489680px;}
.y754_c00001{bottom:316.845000px;}
.y104c_c00001{bottom:317.203920px;}
.y7fc_c00001{bottom:317.205000px;}
.y7fb_c00001{bottom:317.205720px;}
.y1027_c00001{bottom:317.565000px;}
.yafb_c00001{bottom:317.922840px;}
.y277_c00001{bottom:317.925000px;}
.y107_c00001{bottom:317.926800px;}
.yb2a_c00001{bottom:318.281040px;}
.y7d2_c00001{bottom:318.285000px;}
.y7b1_c00001{bottom:318.645000px;}
.y6fb_c00001{bottom:319.005000px;}
.yb3c_c00001{bottom:319.006800px;}
.y21f_c00001{bottom:319.361040px;}
.y220_c00001{bottom:319.365000px;}
.y2b5_c00001{bottom:319.725000px;}
.yaa4_c00001{bottom:320.085000px;}
.yd07_c00001{bottom:320.108040px;}
.y298_c00001{bottom:320.445000px;}
.yd26_c00001{bottom:320.446800px;}
.ya8f_c00001{bottom:320.448600px;}
.y297_c00001{bottom:320.449680px;}
.yda3_c00001{bottom:320.452200px;}
.yc84_c00001{bottom:320.805000px;}
.y1117_c00001{bottom:321.165000px;}
.yb9b_c00001{bottom:321.231600px;}
.yb77_c00001{bottom:321.525000px;}
.y24f_c00001{bottom:321.885000px;}
.y8fc_c00001{bottom:321.886800px;}
.y424_c00001{bottom:322.245000px;}
.yfab_c00001{bottom:322.602840px;}
.y843_c00001{bottom:322.605000px;}
.y842_c00001{bottom:322.609680px;}
.y4f6_c00001{bottom:322.965000px;}
.ydb1_c00001{bottom:322.967520px;}
.y4f5_c00001{bottom:322.969680px;}
.ydd_c00001{bottom:323.325000px;}
.ye61_c00001{bottom:323.329680px;}
.y100a_c00001{bottom:323.682840px;}
.y973_c00001{bottom:323.685000px;}
.y1039_c00001{bottom:323.689680px;}
.y53a_c00001{bottom:324.045000px;}
.y8d5_c00001{bottom:324.403920px;}
.y68f_c00001{bottom:324.405000px;}
.yc99_c00001{bottom:324.765000px;}
.y370_c00001{bottom:325.124640px;}
.ybe9_c00001{bottom:325.125000px;}
.ybe8_c00001{bottom:325.125720px;}
.y10e7_c00001{bottom:325.482840px;}
.yb80_c00001{bottom:325.485000px;}
.y1a5_c00001{bottom:325.845000px;}
.y12c_c00001{bottom:326.205000px;}
.y97e_c00001{bottom:326.565000px;}
.ycc9_c00001{bottom:326.566800px;}
.yf03_c00001{bottom:326.925000px;}
.y13f_c00001{bottom:327.285000px;}
.yef6_c00001{bottom:327.645000px;}
.y3cd_c00001{bottom:328.005000px;}
.y3e1_c00001{bottom:328.008600px;}
.y359_c00001{bottom:328.363920px;}
.y35a_c00001{bottom:328.365000px;}
.yc09_c00001{bottom:328.376520px;}
.y93_c00001{bottom:328.725000px;}
.y109b_c00001{bottom:329.084640px;}
.yc51_c00001{bottom:329.085000px;}
.y43d_c00001{bottom:329.445000px;}
.y7aa_c00001{bottom:329.805000px;}
.yb3_c00001{bottom:330.165000px;}
.y1121_c00001{bottom:330.173280px;}
.y190_c00001{bottom:330.525000px;}
.ya79_c00001{bottom:330.528600px;}
.y77e_c00001{bottom:330.885000px;}
.y2ca_c00001{bottom:331.245000px;}
.y425_c00001{bottom:331.965000px;}
.y8b8_c00001{bottom:332.325000px;}
.y769_c00001{bottom:332.685000px;}
.y2a9_c00001{bottom:333.045000px;}
.y79f_c00001{bottom:333.405000px;}
.y10b1_c00001{bottom:334.125000px;}
.y10b0_c00001{bottom:334.126800px;}
.yd83_c00001{bottom:334.128600px;}
.y5b5_c00001{bottom:334.485000px;}
.y1b7_c00001{bottom:334.488600px;}
.yfe3_c00001{bottom:334.841040px;}
.y30c_c00001{bottom:334.845000px;}
.yabc_c00001{bottom:335.203920px;}
.y1f7_c00001{bottom:335.205000px;}
.y3ad_c00001{bottom:335.561040px;}
.y913_c00001{bottom:335.562840px;}
.y276_c00001{bottom:335.565000px;}
.y7d1_c00001{bottom:335.566800px;}
.y10d5_c00001{bottom:335.583000px;}
.y39_c00001{bottom:335.925000px;}
.yea0_c00001{bottom:336.280680px;}
.y756_c00001{bottom:336.285000px;}
.yd92_c00001{bottom:336.285720px;}
.yf9a_c00001{bottom:336.289680px;}
.yb7f_c00001{bottom:337.001040px;}
.y6c2_c00001{bottom:337.005000px;}
.y330_c00001{bottom:337.363920px;}
.y331_c00001{bottom:337.365000px;}
.ye34_c00001{bottom:337.369680px;}
.ye52_c00001{bottom:337.723920px;}
.y16d_c00001{bottom:337.725000px;}
.ye79_c00001{bottom:337.728600px;}
.y9b5_c00001{bottom:338.067000px;}
.yaf5_c00001{bottom:338.083920px;}
.ya24_c00001{bottom:338.085000px;}
.ya5a_c00001{bottom:338.088600px;}
.ye18_c00001{bottom:338.092200px;}
.y1026_c00001{bottom:338.445000px;}
.yde6_c00001{bottom:338.448600px;}
.yf57_c00001{bottom:338.805000px;}
.y494_c00001{bottom:339.165000px;}
.y8c3_c00001{bottom:339.525000px;}
.y6da_c00001{bottom:339.874200px;}
.y625_c00001{bottom:339.885000px;}
.yfaa_c00001{bottom:340.241040px;}
.y4c0_c00001{bottom:340.245000px;}
.y8a8_c00001{bottom:340.583400px;}
.yd3a_c00001{bottom:340.603920px;}
.y91f_c00001{bottom:340.965000px;}
.y1009_c00001{bottom:340.966800px;}
.y4d2_c00001{bottom:340.975440px;}
.yc75_c00001{bottom:341.325000px;}
.y106_c00001{bottom:341.685000px;}
.y571_c00001{bottom:341.685720px;}
.yb76_c00001{bottom:342.045000px;}
.y104b_c00001{bottom:342.049680px;}
.y72c_c00001{bottom:342.405000px;}
.y21e_c00001{bottom:342.765000px;}
.y10e6_c00001{bottom:342.766800px;}
.y63c_c00001{bottom:343.125000px;}
.y8a_c00001{bottom:343.485000px;}
.y82c_c00001{bottom:343.845000px;}
.y246_c00001{bottom:344.205000px;}
.yb9a_c00001{bottom:344.626200px;}
.y7fa_c00001{bottom:344.919960px;}
.ye71_c00001{bottom:344.923920px;}
.y5d8_c00001{bottom:344.925000px;}
.yd06_c00001{bottom:344.949120px;}
.yaa3_c00001{bottom:345.283920px;}
.y68e_c00001{bottom:345.285000px;}
.yb3b_c00001{bottom:345.639600px;}
.ya8e_c00001{bottom:345.643920px;}
.y296_c00001{bottom:345.645000px;}
.yda2_c00001{bottom:345.647520px;}
.ydf4_c00001{bottom:345.648600px;}
.y113c_c00001{bottom:346.005000px;}
.y2b6_c00001{bottom:346.365000px;}
.y109a_c00001{bottom:346.722840px;}
.y5e5_c00001{bottom:346.725000px;}
.y1045_c00001{bottom:347.085000px;}
.y980_c00001{bottom:347.445000px;}
.yc7d_c00001{bottom:347.805000px;}
.y841_c00001{bottom:347.808600px;}
.y13e_c00001{bottom:348.165000px;}
.y10bb_c00001{bottom:348.166440px;}
.ydc_c00001{bottom:348.168600px;}
.y63_c00001{bottom:348.525000px;}
.y1038_c00001{bottom:348.883920px;}
.ycb8_c00001{bottom:348.885000px;}
.y8d4_c00001{bottom:349.245000px;}
.y8d3_c00001{bottom:349.249680px;}
.y471_c00001{bottom:349.605000px;}
.y7e0_c00001{bottom:349.965000px;}
.y36f_c00001{bottom:350.319960px;}
.y937_c00001{bottom:350.323920px;}
.y24e_c00001{bottom:350.325000px;}
.y47e_c00001{bottom:350.685000px;}
.y723_c00001{bottom:351.045000px;}
.y18f_c00001{bottom:351.405000px;}
.y10af_c00001{bottom:351.765000px;}
.y10ae_c00001{bottom:351.766800px;}
.yf4d_c00001{bottom:352.125000px;}
.yfe2_c00001{bottom:352.129680px;}
.y969_c00001{bottom:352.485000px;}
.yc68_c00001{bottom:352.842840px;}
.yc29_c00001{bottom:352.844640px;}
.y3ac_c00001{bottom:352.845000px;}
.y3ab_c00001{bottom:352.846800px;}
.y275_c00001{bottom:352.849320px;}
.y358_c00001{bottom:353.205000px;}
.y357_c00001{bottom:353.209680px;}
.y768_c00001{bottom:353.565000px;}
.y84f_c00001{bottom:353.569680px;}
.yc08_c00001{bottom:353.571840px;}
.y104_c00001{bottom:353.917800px;}
.y105_c00001{bottom:353.925000px;}
.y746_c00001{bottom:354.285000px;}
.yb7e_c00001{bottom:354.286800px;}
.yf0d_c00001{bottom:354.643920px;}
.yf0e_c00001{bottom:354.645000px;}
.y1072_c00001{bottom:355.005000px;}
.yd53_c00001{bottom:355.363920px;}
.y9e5_c00001{bottom:355.365000px;}
.y1120_c00001{bottom:355.368600px;}
.y86c_c00001{bottom:355.405320px;}
.yc50_c00001{bottom:355.721040px;}
.ya78_c00001{bottom:355.723920px;}
.y2b4_c00001{bottom:355.725000px;}
.y67d_c00001{bottom:356.085000px;}
.yec8_c00001{bottom:356.445000px;}
.yb2_c00001{bottom:356.805000px;}
.y8fb_c00001{bottom:356.806800px;}
.y979_c00001{bottom:357.165000px;}
.y3e0_c00001{bottom:357.525000px;}
.y43c_c00001{bottom:357.885000px;}
.y423_c00001{bottom:358.245000px;}
.ycef_c00001{bottom:358.605000px;}
.y1008_c00001{bottom:358.609320px;}
.y16c_c00001{bottom:358.965000px;}
.yd82_c00001{bottom:358.969680px;}
.y7d0_c00001{bottom:359.325000px;}
.y1b6_c00001{bottom:359.683920px;}
.y981_c00001{bottom:359.685000px;}
.y493_c00001{bottom:360.045000px;}
.yad6_c00001{bottom:360.053280px;}
.y10e5_c00001{bottom:360.402840px;}
.y91e_c00001{bottom:360.405000px;}
.ya36_c00001{bottom:360.413280px;}
.y1f6_c00001{bottom:360.765000px;}
.y10d4_c00001{bottom:360.778320px;}
.y619_c00001{bottom:361.125000px;}
.yf99_c00001{bottom:361.483920px;}
.yeb2_c00001{bottom:361.485000px;}
.y1a4_c00001{bottom:361.845000px;}
.ydc3_c00001{bottom:362.203920px;}
.y32f_c00001{bottom:362.205000px;}
.y32e_c00001{bottom:362.209680px;}
.ye33_c00001{bottom:362.565000px;}
.yd43_c00001{bottom:362.569680px;}
.ye78_c00001{bottom:362.923920px;}
.yaf4_c00001{bottom:362.925000px;}
.ya23_c00001{bottom:362.929680px;}
.ya4c_c00001{bottom:362.932200px;}
.ye17_c00001{bottom:362.933280px;}
.y2e6_c00001{bottom:363.285000px;}
.yde5_c00001{bottom:363.289680px;}
.y599_c00001{bottom:363.645000px;}
.y507_c00001{bottom:364.002840px;}
.y63b_c00001{bottom:364.005000px;}
.y1099_c00001{bottom:364.006800px;}
.yd91_c00001{bottom:364.009680px;}
.y1fb_c00001{bottom:364.365000px;}
.y17_c00001{bottom:364.725000px;}
.y1079_c00001{bottom:365.085000px;}
.yd39_c00001{bottom:365.445000px;}
.y10ba_c00001{bottom:365.804640px;}
.y3fa_c00001{bottom:365.805000px;}
.y4d1_c00001{bottom:365.816520px;}
.y5d7_c00001{bottom:366.165000px;}
.y68d_c00001{bottom:366.525000px;}
.ydcf_c00001{bottom:366.533280px;}
.y77d_c00001{bottom:366.885000px;}
.y2c9_c00001{bottom:367.245000px;}
.yea9_c00001{bottom:367.605000px;}
.y972_c00001{bottom:367.965000px;}
.yb99_c00001{bottom:368.020800px;}
.y391_c00001{bottom:368.325000px;}
.y4bf_c00001{bottom:369.045000px;}
.y10ad_c00001{bottom:369.401040px;}
.y570_c00001{bottom:369.403920px;}
.y62_c00001{bottom:369.405000px;}
.yc74_c00001{bottom:369.765000px;}
.ye0e_c00001{bottom:370.123920px;}
.yaa2_c00001{bottom:370.125000px;}
.y157_c00001{bottom:370.126800px;}
.yd05_c00001{bottom:370.144440px;}
.y912_c00001{bottom:370.481040px;}
.yc28_c00001{bottom:370.482840px;}
.y470_c00001{bottom:370.485000px;}
.yda1_c00001{bottom:370.488600px;}
.ydf3_c00001{bottom:370.489680px;}
.y295_c00001{bottom:370.845000px;}
.y30b_c00001{bottom:371.205000px;}
.y274_c00001{bottom:371.565000px;}
.y9b4_c00001{bottom:371.908800px;}
.y38_c00001{bottom:371.925000px;}
.y18e_c00001{bottom:372.285000px;}
.y7f9_c00001{bottom:372.289680px;}
.yb3a_c00001{bottom:372.645000px;}
.y840_c00001{bottom:372.649680px;}
.y8a7_c00001{bottom:372.981600px;}
.yc67_c00001{bottom:373.001040px;}
.ydb0_c00001{bottom:373.003920px;}
.ya6e_c00001{bottom:373.005000px;}
.ydb_c00001{bottom:373.363920px;}
.y3b8_c00001{bottom:373.365000px;}
.ye60_c00001{bottom:373.367520px;}
.yc07_c00001{bottom:373.373640px;}
.y6d9_c00001{bottom:373.716000px;}
.y1037_c00001{bottom:373.722840px;}
.y584_c00001{bottom:373.725000px;}
.yc8c_c00001{bottom:374.085000px;}
.y8d1_c00001{bottom:374.443920px;}
.y8d2_c00001{bottom:374.445000px;}
.y8fa_c00001{bottom:374.446800px;}
.y767_c00001{bottom:374.805000px;}
.y936_c00001{bottom:375.165000px;}
.y935_c00001{bottom:375.166800px;}
.y79e_c00001{bottom:375.525000px;}
.y624_c00001{bottom:375.885000px;}
.y1007_c00001{bottom:375.893280px;}
.y9e4_c00001{bottom:376.245000px;}
.y3aa_c00001{bottom:376.605000px;}
.y3df_c00001{bottom:376.965000px;}
.yfe0_c00001{bottom:377.323920px;}
.yfe1_c00001{bottom:377.325000px;}
.y273_c00001{bottom:377.685000px;}
.y36e_c00001{bottom:377.689680px;}
.y1016_c00001{bottom:378.041040px;}
.y103_c00001{bottom:378.045000px;}
.y356_c00001{bottom:378.404640px;}
.y978_c00001{bottom:378.405000px;}
.y10d3_c00001{bottom:378.416520px;}
.y24d_c00001{bottom:378.765000px;}
.y89_c00001{bottom:379.485000px;}
.y16b_c00001{bottom:379.845000px;}
.y245_c00001{bottom:380.205000px;}
.y111f_c00001{bottom:380.563920px;}
.ya77_c00001{bottom:380.565000px;}
.y492_c00001{bottom:380.925000px;}
.ycd1_c00001{bottom:381.285000px;}
.y506_c00001{bottom:381.286800px;}
.yf46_c00001{bottom:381.645000px;}
.y2a8_c00001{bottom:382.005000px;}
.yeb1_c00001{bottom:382.365000px;}
.y5e4_c00001{bottom:382.725000px;}
.y45c_c00001{bottom:383.085000px;}
.y10b9_c00001{bottom:383.442840px;}
.y10fa_c00001{bottom:383.445000px;}
.yb75_c00001{bottom:384.165000px;}
.y1b5_c00001{bottom:384.525000px;}
.ya0a_c00001{bottom:384.528600px;}
.y545_c00001{bottom:384.885000px;}
.yabb_c00001{bottom:385.245000px;}
.yad5_c00001{bottom:385.248600px;}
.y539_c00001{bottom:385.605000px;}
.ya35_c00001{bottom:385.608600px;}
.y7cf_c00001{bottom:385.965000px;}
.y43b_c00001{bottom:386.322840px;}
.y1f5_c00001{bottom:386.325000px;}
.ye9f_c00001{bottom:386.685000px;}
.y10ac_c00001{bottom:386.686800px;}
.ye9e_c00001{bottom:386.694360px;}
.y5d6_c00001{bottom:387.045000px;}
.yd63_c00001{bottom:387.049680px;}
.y32d_c00001{bottom:387.405000px;}
.y32c_c00001{bottom:387.409680px;}
.y156_c00001{bottom:387.761040px;}
.ye32_c00001{bottom:387.763920px;}
.y3a9_c00001{bottom:387.765000px;}
.yf1e_c00001{bottom:387.766440px;}
.yc69_c00001{bottom:387.766800px;}
.y5ca_c00001{bottom:388.119960px;}
.yc27_c00001{bottom:388.121040px;}
.yaf3_c00001{bottom:388.123920px;}
.y5cb_c00001{bottom:388.125000px;}
.ya4b_c00001{bottom:388.127520px;}
.ye16_c00001{bottom:388.128600px;}
.y8c8_c00001{bottom:388.485000px;}
.y753_c00001{bottom:388.845000px;}
.yd8f_c00001{bottom:389.199960px;}
.yd90_c00001{bottom:389.205000px;}
.y272_c00001{bottom:389.206800px;}
.y101_c00001{bottom:389.561040px;}
.y102_c00001{bottom:389.565000px;}
.y4be_c00001{bottom:389.925000px;}
.y61_c00001{bottom:390.285000px;}
.yc66_c00001{bottom:390.286800px;}
.yd38_c00001{bottom:390.641040px;}
.yc4f_c00001{bottom:390.643200px;}
.yf61_c00001{bottom:390.645000px;}
.y520_c00001{bottom:391.005000px;}
.y4d0_c00001{bottom:391.011840px;}
.yee5_c00001{bottom:391.365000px;}
.y2b3_c00001{bottom:391.725000px;}
.ydce_c00001{bottom:391.728600px;}
.yb98_c00001{bottom:391.784400px;}
.y8f9_c00001{bottom:392.081040px;}
.y598_c00001{bottom:392.085000px;}
.yf7b_c00001{bottom:392.443920px;}
.y546_c00001{bottom:392.445000px;}
.y934_c00001{bottom:392.805000px;}
.y933_c00001{bottom:392.811840px;}
.y37_c00001{bottom:393.165000px;}
.y18d_c00001{bottom:393.525000px;}
.y1036_c00001{bottom:393.883920px;}
.y3a8_c00001{bottom:393.885000px;}
.y3f9_c00001{bottom:394.245000px;}
.y8ce_c00001{bottom:394.605000px;}
.y6ae_c00001{bottom:394.965000px;}
.yfd5_c00001{bottom:394.966800px;}
.yd04_c00001{bottom:394.985520px;}
.y9f4_c00001{bottom:395.325000px;}
.yaa1_c00001{bottom:395.327520px;}
.yda0_c00001{bottom:395.683920px;}
.y99d_c00001{bottom:395.685000px;}
.ya8d_c00001{bottom:395.687520px;}
.ycda_c00001{bottom:396.045000px;}
.yb1_c00001{bottom:396.405000px;}
.yfb7_c00001{bottom:396.765000px;}
.yf0b_c00001{bottom:397.123920px;}
.yf0c_c00001{bottom:397.125000px;}
.y7f8_c00001{bottom:397.485000px;}
.y7f7_c00001{bottom:397.488600px;}
.ye28_c00001{bottom:397.843560px;}
.y83f_c00001{bottom:397.843920px;}
.y10e4_c00001{bottom:397.844640px;}
.y1a3_c00001{bottom:397.845000px;}
.yda_c00001{bottom:398.205000px;}
.ye5f_c00001{bottom:398.208600px;}
.y86b_c00001{bottom:398.601000px;}
.y505_c00001{bottom:398.925000px;}
.y1098_c00001{bottom:399.281040px;}
.y2e5_c00001{bottom:399.285000px;}
.y4eb_c00001{bottom:399.645000px;}
.y294_c00001{bottom:400.005000px;}
.yfa9_c00001{bottom:400.006800px;}
.y793_c00001{bottom:400.365000px;}
.y16_c00001{bottom:400.725000px;}
.y10b8_c00001{bottom:400.726800px;}
.yf8e_c00001{bottom:401.085000px;}
.y1006_c00001{bottom:401.088600px;}
.yb39_c00001{bottom:401.445000px;}
.y7a9_c00001{bottom:401.805000px;}
.y4f4_c00001{bottom:402.165000px;}
.yfdf_c00001{bottom:402.166800px;}
.y3b7_c00001{bottom:402.525000px;}
.y36c_c00001{bottom:402.879960px;}
.y36d_c00001{bottom:402.885000px;}
.y244_c00001{bottom:403.245000px;}
.y355_c00001{bottom:403.245720px;}
.yff9_c00001{bottom:403.601040px;}
.y84e_c00001{bottom:403.602840px;}
.y3de_c00001{bottom:403.605000px;}
.y10d2_c00001{bottom:403.611840px;}
.y43a_c00001{bottom:403.961040px;}
.y45b_c00001{bottom:403.965000px;}
.y10ab_c00001{bottom:404.321040px;}
.y81c_c00001{bottom:404.325000px;}
.y155_c00001{bottom:405.045000px;}
.yf1d_c00001{bottom:405.404640px;}
.y65a_c00001{bottom:405.405000px;}
.y911_c00001{bottom:405.406800px;}
.y111e_c00001{bottom:405.409680px;}
.y8a6_c00001{bottom:405.748800px;}
.y9b3_c00001{bottom:405.750600px;}
.ya76_c00001{bottom:405.763920px;}
.ya6d_c00001{bottom:405.765000px;}
.yc7c_c00001{bottom:406.125000px;}
.y46f_c00001{bottom:406.485000px;}
.y100_c00001{bottom:406.845000px;}
.y30a_c00001{bottom:407.205000px;}
.y6d8_c00001{bottom:407.557800px;}
.y24c_c00001{bottom:407.565000px;}
.y105a_c00001{bottom:407.566800px;}
.y583_c00001{bottom:407.925000px;}
.yd37_c00001{bottom:407.929680px;}
.yc4e_c00001{bottom:408.281400px;}
.y70e_c00001{bottom:408.285000px;}
.yf4c_c00001{bottom:409.005000px;}
.yd81_c00001{bottom:409.009680px;}
.y8c7_c00001{bottom:409.365000px;}
.ya09_c00001{bottom:409.723920px;}
.y1b4_c00001{bottom:409.725000px;}
.y416_c00001{bottom:409.726800px;}
.yaba_c00001{bottom:410.085000px;}
.yad4_c00001{bottom:410.089680px;}
.yf3e_c00001{bottom:410.445000px;}
.ya34_c00001{bottom:410.449680px;}
.y4bd_c00001{bottom:410.805000px;}
.y4cf_c00001{bottom:410.805720px;}
.yc06_c00001{bottom:410.808600px;}
.y745_c00001{bottom:411.165000px;}
.y60_c00001{bottom:411.525000px;}
.y1f4_c00001{bottom:411.885000px;}
.ye9d_c00001{bottom:411.889680px;}
.yd62_c00001{bottom:412.245000px;}
.yd61_c00001{bottom:412.249680px;}
.yd42_c00001{bottom:412.603920px;}
.y32b_c00001{bottom:412.605000px;}
.ye31_c00001{bottom:412.609680px;}
.yff_c00001{bottom:412.965000px;}
.ya4a_c00001{bottom:412.968600px;}
.ya59_c00001{bottom:412.969680px;}
.yd25_c00001{bottom:413.010720px;}
.y544_c00001{bottom:413.325000px;}
.yde4_c00001{bottom:413.328600px;}
.y36_c00001{bottom:414.045000px;}
.y18c_c00001{bottom:414.405000px;}
.y968_c00001{bottom:415.121040px;}
.y6c1_c00001{bottom:415.125000px;}
.y7f6_c00001{bottom:415.126800px;}
.yb97_c00001{bottom:415.179000px;}
.y10e3_c00001{bottom:415.482840px;}
.y88_c00001{bottom:415.485000px;}
.y16a_c00001{bottom:415.845000px;}
.y51f_c00001{bottom:415.846800px;}
.y106e_c00001{bottom:416.205000px;}
.ycbf_c00001{bottom:416.565000px;}
.yd8e_c00001{bottom:416.568600px;}
.ydcd_c00001{bottom:416.569680px;}
.y6a2_c00001{bottom:416.925000px;}
.y491_c00001{bottom:417.285000px;}
.yfa8_c00001{bottom:417.641040px;}
.y1059_c00001{bottom:417.643920px;}
.yf45_c00001{bottom:417.645000px;}
.y10e1_c00001{bottom:418.005000px;}
.y2a7_c00001{bottom:418.365000px;}
.y5e3_c00001{bottom:418.725000px;}
.y1035_c00001{bottom:418.726800px;}
.y67c_c00001{bottom:419.085000px;}
.ye27_c00001{bottom:419.087160px;}
.y56f_c00001{bottom:419.445000px;}
.ye70_c00001{bottom:419.805000px;}
.yb74_c00001{bottom:420.165000px;}
.yaa0_c00001{bottom:420.168600px;}
.ye0d_c00001{bottom:420.169680px;}
.yd03_c00001{bottom:420.180840px;}
.y1015_c00001{bottom:420.521040px;}
.y518_c00001{bottom:420.525000px;}
.ya8c_c00001{bottom:420.528600px;}
.y4ea_c00001{bottom:420.885000px;}
.yff8_c00001{bottom:420.886800px;}
.y84d_c00001{bottom:421.241040px;}
.y439_c00001{bottom:421.245000px;}
.y63a_c00001{bottom:421.605000px;}
.y390_c00001{bottom:421.965000px;}
.y7a8_c00001{bottom:422.685000px;}
.y83e_c00001{bottom:422.689680px;}
.y3a6_c00001{bottom:423.038520px;}
.y107d_c00001{bottom:423.039600px;}
.y659_c00001{bottom:423.041040px;}
.yf1c_c00001{bottom:423.042840px;}
.y3a7_c00001{bottom:423.045000px;}
.y10d1_c00001{bottom:423.400680px;}
.ye5e_c00001{bottom:423.403920px;}
.y5f5_c00001{bottom:423.405000px;}
.yd9_c00001{bottom:423.765000px;}
.y504_c00001{bottom:424.121040px;}
.y618_c00001{bottom:424.125000px;}
.yb7d_c00001{bottom:424.480680px;}
.yfe_c00001{bottom:424.485000px;}
.y45a_c00001{bottom:424.845000px;}
.y81b_c00001{bottom:425.205000px;}
.yc65_c00001{bottom:425.561040px;}
.yc4d_c00001{bottom:425.565360px;}
.y243_c00001{bottom:425.925000px;}
.y1005_c00001{bottom:425.929680px;}
.y7df_c00001{bottom:426.285000px;}
.yc73_c00001{bottom:426.645000px;}
.y1071_c00001{bottom:427.005000px;}
.y8f8_c00001{bottom:427.006800px;}
.y415_c00001{bottom:427.365000px;}
.y2b2_c00001{bottom:427.725000px;}
.y3cc_c00001{bottom:428.085000px;}
.yea8_c00001{bottom:428.441040px;}
.y888_c00001{bottom:428.445000px;}
.yc05_c00001{bottom:428.446800px;}
.y293_c00001{bottom:428.805000px;}
.yafa_c00001{bottom:429.165000px;}
.y662_c00001{bottom:429.525000px;}
.y153_c00001{bottom:430.241040px;}
.y154_c00001{bottom:430.245000px;}
.yd52_c00001{bottom:430.249680px;}
.ybc6_c00001{bottom:430.320450px;}
.yfd_c00001{bottom:430.605000px;}
.y353_c00001{bottom:430.963920px;}
.y354_c00001{bottom:430.965000px;}
.y766_c00001{bottom:431.685000px;}
.yce2_c00001{bottom:432.043920px;}
.y125_c00001{bottom:432.045000px;}
.y5f_c00001{bottom:432.405000px;}
.y21d_c00001{bottom:432.765000px;}
.y7f5_c00001{bottom:432.766800px;}
.yd36_c00001{bottom:433.125000px;}
.y51d_c00001{bottom:433.481040px;}
.y51e_c00001{bottom:433.485000px;}
.y1a2_c00001{bottom:433.845000px;}
.yd7f_c00001{bottom:434.203920px;}
.yd80_c00001{bottom:434.205000px;}
.y581_c00001{bottom:434.565000px;}
.y35_c00001{bottom:434.925000px;}
.yfa7_c00001{bottom:434.926800px;}
.y2e4_c00001{bottom:435.285000px;}
.yc98_c00001{bottom:435.286800px;}
.ya33_c00001{bottom:435.645000px;}
.yf56_c00001{bottom:435.646800px;}
.y24b_c00001{bottom:436.005000px;}
.y792_c00001{bottom:436.365000px;}
.y1034_c00001{bottom:436.369680px;}
.y15_c00001{bottom:436.725000px;}
.ye9c_c00001{bottom:437.083920px;}
.y1f3_c00001{bottom:437.085000px;}
.ydc2_c00001{bottom:437.089680px;}
.y32a_c00001{bottom:437.443920px;}
.y18a_c00001{bottom:437.445000px;}
.y99c_c00001{bottom:437.805000px;}
.ydf9_c00001{bottom:437.809680px;}
.y8a5_c00001{bottom:438.147000px;}
.ye80_c00001{bottom:438.162840px;}
.ya49_c00001{bottom:438.163920px;}
.y490_c00001{bottom:438.165000px;}
.ye77_c00001{bottom:438.168600px;}
.ya22_c00001{bottom:438.172200px;}
.yd24_c00001{bottom:438.206040px;}
.y4ce_c00001{bottom:438.520320px;}
.yde3_c00001{bottom:438.523920px;}
.y1b3_c00001{bottom:438.525000px;}
.yff7_c00001{bottom:438.528600px;}
.yb96_c00001{bottom:438.573600px;}
.y77c_c00001{bottom:438.885000px;}
.y2c8_c00001{bottom:439.245000px;}
.y5b4_c00001{bottom:439.605000px;}
.y9b2_c00001{bottom:439.948800px;}
.y67b_c00001{bottom:439.965000px;}
.y3a5_c00001{bottom:440.322480px;}
.y658_c00001{bottom:440.325000px;}
.y910_c00001{bottom:440.326800px;}
.y5c9_c00001{bottom:440.685000px;}
.ycc3_c00001{bottom:441.045000px;}
.y503_c00001{bottom:441.405000px;}
.y502_c00001{bottom:441.406800px;}
.y86a_c00001{bottom:441.440280px;}
.y6d7_c00001{bottom:441.756000px;}
.yd8d_c00001{bottom:441.763920px;}
.yb7c_c00001{bottom:441.764640px;}
.y271_c00001{bottom:441.765000px;}
.y270_c00001{bottom:441.766800px;}
.y582_c00001{bottom:442.125000px;}
.ybdd_c00001{bottom:442.485000px;}
.y6b8_c00001{bottom:442.845000px;}
.yc4c_c00001{bottom:443.203560px;}
.y309_c00001{bottom:443.205000px;}
.y1025_c00001{bottom:443.565000px;}
.y3f8_c00001{bottom:443.925000px;}
.y5f4_c00001{bottom:444.285000px;}
.y8f7_c00001{bottom:444.645000px;}
.y18b_c00001{bottom:445.005000px;}
.ye6f_c00001{bottom:445.009680px;}
.yd02_c00001{bottom:445.021920px;}
.ya9f_c00001{bottom:445.363920px;}
.ye0c_c00001{bottom:445.365000px;}
.ya8b_c00001{bottom:445.723920px;}
.y459_c00001{bottom:445.725000px;}
.y81a_c00001{bottom:446.085000px;}
.yc04_c00001{bottom:446.086800px;}
.y438_c00001{bottom:446.441040px;}
.y242_c00001{bottom:446.445000px;}
.yc26_c00001{bottom:446.805000px;}
.y10aa_c00001{bottom:447.165000px;}
.y152_c00001{bottom:447.525000px;}
.yfd4_c00001{bottom:447.526800px;}
.y83d_c00001{bottom:447.883920px;}
.y56d_c00001{bottom:447.885000px;}
.ye5d_c00001{bottom:448.245000px;}
.y38f_c00001{bottom:448.605000px;}
.y517_c00001{bottom:448.965000px;}
.y543_c00001{bottom:449.321040px;}
.y7bf_c00001{bottom:449.325000px;}
.y639_c00001{bottom:449.685000px;}
.y932_c00001{bottom:450.403920px;}
.yd8_c00001{bottom:450.405000px;}
.y7f4_c00001{bottom:450.405720px;}
.y10e2_c00001{bottom:450.406800px;}
.y51c_c00001{bottom:450.765000px;}
.y10d0_c00001{bottom:451.119960px;}
.y97d_c00001{bottom:451.125000px;}
.y87_c00001{bottom:451.485000px;}
.y169_c00001{bottom:451.845000px;}
.y765_c00001{bottom:452.565000px;}
.yfa6_c00001{bottom:452.566800px;}
.y4bc_c00001{bottom:452.925000px;}
.y5e_c00001{bottom:453.285000px;}
.y10b7_c00001{bottom:453.286800px;}
.yf44_c00001{bottom:453.645000px;}
.ybc5_c00001{bottom:453.715050px;}
.yc23_c00001{bottom:454.005000px;}
.ycdd_c00001{bottom:454.365000px;}
.y5e2_c00001{bottom:454.725000px;}
.y1044_c00001{bottom:455.085000px;}
.y56e_c00001{bottom:455.445000px;}
.ya6c_c00001{bottom:455.453280px;}
.y352_c00001{bottom:455.805000px;}
.y351_c00001{bottom:455.805720px;}
.y722_c00001{bottom:456.165000px;}
.y2e3_c00001{bottom:456.525000px;}
.y292_c00001{bottom:456.885000px;}
.yce1_c00001{bottom:456.889680px;}
.yfc_c00001{bottom:457.245000px;}
.y967_c00001{bottom:457.602840px;}
.y1de_c00001{bottom:457.605000px;}
.y36b_c00001{bottom:457.609680px;}
.y3a4_c00001{bottom:457.960680px;}
.yd7a_c00001{bottom:457.962840px;}
.yf1b_c00001{bottom:457.964640px;}
.y2a6_c00001{bottom:457.965000px;}
.yc25_c00001{bottom:457.966800px;}
.y48f_c00001{bottom:459.045000px;}
.y1097_c00001{bottom:459.046800px;}
.yb7b_c00001{bottom:459.402840px;}
.y26f_c00001{bottom:459.405000px;}
.y26e_c00001{bottom:459.406800px;}
.yf7a_c00001{bottom:459.765000px;}
.yf79_c00001{bottom:459.766800px;}
.ya08_c00001{bottom:459.767520px;}
.y189_c00001{bottom:460.125000px;}
.yad3_c00001{bottom:460.129680px;}
.ya32_c00001{bottom:460.483920px;}
.y3dd_c00001{bottom:460.485000px;}
.yc4b_c00001{bottom:460.841760px;}
.y752_c00001{bottom:460.845000px;}
.y67a_c00001{bottom:461.205000px;}
.yf68_c00001{bottom:461.565000px;}
.y5fe_c00001{bottom:461.925000px;}
.y8f6_c00001{bottom:461.926800px;}
.y329_c00001{bottom:462.285000px;}
.ydc1_c00001{bottom:462.289680px;}
.yb95_c00001{bottom:462.337200px;}
.y1f2_c00001{bottom:462.645000px;}
.yab9_c00001{bottom:462.645360px;}
.ye26_c00001{bottom:463.003920px;}
.ya48_c00001{bottom:463.005000px;}
.ye76_c00001{bottom:463.009680px;}
.ye15_c00001{bottom:463.012200px;}
.ya21_c00001{bottom:463.013280px;}
.yd23_c00001{bottom:463.047120px;}
.ycee_c00001{bottom:463.365000px;}
.yde2_c00001{bottom:463.369680px;}
.y2b1_c00001{bottom:463.725000px;}
.y437_c00001{bottom:463.726800px;}
.y3cb_c00001{bottom:464.085000px;}
.yc7b_c00001{bottom:464.445000px;}
.yf0a_c00001{bottom:464.449680px;}
.y3f7_c00001{bottom:464.805000px;}
.yfd3_c00001{bottom:465.163920px;}
.y5d5_c00001{bottom:465.165000px;}
.y5f3_c00001{bottom:465.525000px;}
.y9f3_c00001{bottom:465.885000px;}
.y422_c00001{bottom:466.245000px;}
.yd8c_c00001{bottom:466.603920px;}
.y542_c00001{bottom:466.605000px;}
.ydcc_c00001{bottom:466.612200px;}
.y1b2_c00001{bottom:466.965000px;}
.y241_c00001{bottom:467.325000px;}
.y124_c00001{bottom:468.045000px;}
.y744_c00001{bottom:468.405000px;}
.y21c_c00001{bottom:468.765000px;}
.yea7_c00001{bottom:469.481040px;}
.y46e_c00001{bottom:469.485000px;}
.y1a1_c00001{bottom:469.845000px;}
.yfa5_c00001{bottom:470.201040px;}
.ya9e_c00001{bottom:470.205000px;}
.ye0b_c00001{bottom:470.209680px;}
.yd01_c00001{bottom:470.217240px;}
.y8a4_c00001{bottom:470.545200px;}
.y887_c00001{bottom:470.565000px;}
.yd9f_c00001{bottom:470.569680px;}
.y10b6_c00001{bottom:470.921040px;}
.yebb_c00001{bottom:470.925000px;}
.y34_c00001{bottom:471.285000px;}
.yef5_c00001{bottom:471.645000px;}
.y308_c00001{bottom:471.652200px;}
.y24a_c00001{bottom:472.005000px;}
.y597_c00001{bottom:472.365000px;}
.y14_c00001{bottom:472.725000px;}
.y657_c00001{bottom:473.085000px;}
.ye5c_c00001{bottom:473.443920px;}
.ycbe_c00001{bottom:473.445000px;}
.y9b1_c00001{bottom:473.790600px;}
.y38e_c00001{bottom:473.805000px;}
.y8ef_c00001{bottom:474.165000px;}
.yb0_c00001{bottom:474.525000px;}
.y77b_c00001{bottom:474.885000px;}
.y966_c00001{bottom:474.886800px;}
.y2c7_c00001{bottom:475.245000px;}
.y7f3_c00001{bottom:475.246800px;}
.y6d6_c00001{bottom:475.597800px;}
.y3a3_c00001{bottom:475.598880px;}
.y90f_c00001{bottom:475.601040px;}
.yf1a_c00001{bottom:475.602840px;}
.y47d_c00001{bottom:475.605000px;}
.y51b_c00001{bottom:475.965000px;}
.y8b7_c00001{bottom:476.325000px;}
.y56c_c00001{bottom:476.685000px;}
.y1096_c00001{bottom:476.686800px;}
.yb7a_c00001{bottom:477.041040px;}
.y5c8_c00001{bottom:477.045000px;}
.ybc4_c00001{bottom:477.109650px;}
.yf78_c00001{bottom:477.404640px;}
.y2e2_c00001{bottom:477.405000px;}
.y10a9_c00001{bottom:477.765000px;}
.y10a8_c00001{bottom:477.769680px;}
.y638_c00001{bottom:478.125000px;}
.yc4a_c00001{bottom:478.125720px;}
.yeda_c00001{bottom:478.126800px;}
.y1dd_c00001{bottom:478.485000px;}
.yd7_c00001{bottom:478.845000px;}
.y101a_c00001{bottom:479.205000px;}
.y8f4_c00001{bottom:479.561040px;}
.y8f5_c00001{bottom:479.565000px;}
.y7ce_c00001{bottom:479.925000px;}
.y68c_c00001{bottom:480.285000px;}
.yf43_c00001{bottom:480.286800px;}
.yd51_c00001{bottom:480.289680px;}
.y188_c00001{bottom:480.645000px;}
.ya6b_c00001{bottom:480.648600px;}
.yb73_c00001{bottom:481.001040px;}
.y617_c00001{bottom:481.005000px;}
.y435_c00001{bottom:481.364640px;}
.y436_c00001{bottom:481.365000px;}
.y702_c00001{bottom:481.725000px;}
.y679_c00001{bottom:482.085000px;}
.yc22_c00001{bottom:482.445000px;}
.y369_c00001{bottom:482.799960px;}
.y36a_c00001{bottom:482.805000px;}
.y26d_c00001{bottom:483.165000px;}
.yd35_c00001{bottom:483.167520px;}
.y34f_c00001{bottom:483.519960px;}
.y350_c00001{bottom:483.525000px;}
.y4e9_c00001{bottom:483.885000px;}
.yc03_c00001{bottom:484.239960px;}
.y501_c00001{bottom:484.245000px;}
.y541_c00001{bottom:484.605000px;}
.ya07_c00001{bottom:484.608600px;}
.y869_c00001{bottom:484.635960px;}
.yfb_c00001{bottom:484.965000px;}
.y291_c00001{bottom:485.320680px;}
.y7be_c00001{bottom:485.325000px;}
.yfb3_c00001{bottom:485.685000px;}
.yb94_c00001{bottom:485.731800px;}
.y5d4_c00001{bottom:486.045000px;}
.y5f2_c00001{bottom:486.405000px;}
.yece_c00001{bottom:486.761040px;}
.y9f2_c00001{bottom:486.765000px;}
.yea6_c00001{bottom:486.766800px;}
.y891_c00001{bottom:487.123200px;}
.ye9b_c00001{bottom:487.123920px;}
.y4f3_c00001{bottom:487.481040px;}
.y86_c00001{bottom:487.485000px;}
.yab8_c00001{bottom:487.840680px;}
.y168_c00001{bottom:487.845000px;}
.yfc2_c00001{bottom:487.846800px;}
.yd41_c00001{bottom:487.849680px;}
.yaf2_c00001{bottom:487.856880px;}
.ye3c_c00001{bottom:488.203920px;}
.y1f1_c00001{bottom:488.205000px;}
.y10b5_c00001{bottom:488.206800px;}
.yae4_c00001{bottom:488.207520px;}
.ya20_c00001{bottom:488.208600px;}
.ya58_c00001{bottom:488.212200px;}
.yd22_c00001{bottom:488.242440px;}
.yff6_c00001{bottom:488.563920px;}
.y240_c00001{bottom:488.565000px;}
.yca4_c00001{bottom:488.925000px;}
.y5d_c00001{bottom:489.285000px;}
.y3dc_c00001{bottom:489.645000px;}
.yf09_c00001{bottom:489.649680px;}
.y327_c00001{bottom:490.003920px;}
.y328_c00001{bottom:490.005000px;}
.y5fd_c00001{bottom:490.365000px;}
.y1a0_c00001{bottom:490.725000px;}
.y1043_c00001{bottom:491.085000px;}
.y886_c00001{bottom:491.445000px;}
.ydcb_c00001{bottom:491.453280px;}
.y580_c00001{bottom:492.165000px;}
.y964_c00001{bottom:492.522840px;}
.y965_c00001{bottom:492.525000px;}
.y3a2_c00001{bottom:492.882840px;}
.y931_c00001{bottom:492.883920px;}
.y7f2_c00001{bottom:492.884640px;}
.y90e_c00001{bottom:492.885000px;}
.y90d_c00001{bottom:492.886800px;}
.y6c0_c00001{bottom:493.245000px;}
.y3f6_c00001{bottom:493.605000px;}
.y5b3_c00001{bottom:493.965000px;}
.y1095_c00001{bottom:494.322840px;}
.y3bf_c00001{bottom:494.325000px;}
.y26c_c00001{bottom:494.326800px;}
.y764_c00001{bottom:494.685000px;}
.y48e_c00001{bottom:495.045000px;}
.ye6e_c00001{bottom:495.053280px;}
.yd00_c00001{bottom:495.058320px;}
.ya9d_c00001{bottom:495.403920px;}
.yaf_c00001{bottom:495.405000px;}
.yed9_c00001{bottom:495.761040px;}
.ya8a_c00001{bottom:495.763920px;}
.yc21_c00001{bottom:495.765000px;}
.yf55_c00001{bottom:495.766800px;}
.ydf2_c00001{bottom:495.767520px;}
.y2c6_c00001{bottom:496.485000px;}
.y751_c00001{bottom:496.845000px;}
.y596_c00001{bottom:497.565000px;}
.y46d_c00001{bottom:497.925000px;}
.ydaf_c00001{bottom:497.929680px;}
.y306_c00001{bottom:498.279600px;}
.y2e1_c00001{bottom:498.285000px;}
.yb72_c00001{bottom:498.288240px;}
.y10cf_c00001{bottom:498.643920px;}
.y414_c00001{bottom:498.645000px;}
.y434_c00001{bottom:498.648600px;}
.yd79_c00001{bottom:499.005000px;}
.y1dc_c00001{bottom:499.725000px;}
.y721_c00001{bottom:500.085000px;}
.ybc3_c00001{bottom:500.504250px;}
.y7a7_c00001{bottom:500.805000px;}
.y5c7_c00001{bottom:501.165000px;}
.y151_c00001{bottom:501.525000px;}
.y616_c00001{bottom:501.885000px;}
.y38d_c00001{bottom:502.245000px;}
.y290_c00001{bottom:502.604640px;}
.y4bb_c00001{bottom:502.605000px;}
.y10a7_c00001{bottom:502.963920px;}
.y1b1_c00001{bottom:502.965000px;}
.yf77_c00001{bottom:502.968960px;}
.y8a3_c00001{bottom:503.312400px;}
.yec7_c00001{bottom:503.325000px;}
.yecd_c00001{bottom:504.045000px;}
.y72b_c00001{bottom:504.405000px;}
.yea5_c00001{bottom:504.408600px;}
.y21b_c00001{bottom:504.765000px;}
.y307_c00001{bottom:505.125000px;}
.ya75_c00001{bottom:505.485000px;}
.ya6a_c00001{bottom:505.489680px;}
.yfa_c00001{bottom:505.845000px;}
.ycd9_c00001{bottom:505.846800px;}
.y9e3_c00001{bottom:506.201760px;}
.y249_c00001{bottom:506.205000px;}
.y637_c00001{bottom:506.565000px;}
.yeba_c00001{bottom:506.925000px;}
.y33_c00001{bottom:507.285000px;}
.y9b0_c00001{bottom:507.632400px;}
.y6b7_c00001{bottom:507.645000px;}
.y9f1_c00001{bottom:508.005000px;}
.yd34_c00001{bottom:508.008600px;}
.y4cd_c00001{bottom:508.365000px;}
.y4a0_c00001{bottom:508.725000px;}
.y13_c00001{bottom:509.085000px;}
.yb93_c00001{bottom:509.126400px;}
.y6d5_c00001{bottom:509.439600px;}
.y819_c00001{bottom:509.445000px;}
.ya06_c00001{bottom:509.803920px;}
.y84c_c00001{bottom:509.805000px;}
.y963_c00001{bottom:510.161040px;}
.y123_c00001{bottom:510.165000px;}
.y368_c00001{bottom:510.166440px;}
.y3a1_c00001{bottom:510.521040px;}
.y7f1_c00001{bottom:510.522840px;}
.y678_c00001{bottom:510.525000px;}
.y34d_c00001{bottom:510.883920px;}
.y34e_c00001{bottom:510.885000px;}
.y1024_c00001{bottom:511.245000px;}
.yc02_c00001{bottom:511.605000px;}
.yc01_c00001{bottom:511.605720px;}
.y1094_c00001{bottom:511.606800px;}
.y19f_c00001{bottom:511.965000px;}
.y26b_c00001{bottom:511.965360px;}
.ye9a_c00001{bottom:511.969680px;}
.y4e8_c00001{bottom:512.325000px;}
.ydc0_c00001{bottom:512.683920px;}
.y885_c00001{bottom:512.685000px;}
.yd40_c00001{bottom:513.043920px;}
.ya47_c00001{bottom:513.045000px;}
.yed8_c00001{bottom:513.046800px;}
.ye25_c00001{bottom:513.047520px;}
.yae3_c00001{bottom:513.048600px;}
.ya1f_c00001{bottom:513.049680px;}
.yaf1_c00001{bottom:513.052200px;}
.ya57_c00001{bottom:513.053280px;}
.yd21_c00001{bottom:513.083520px;}
.yb00_c00001{bottom:513.405000px;}
.yde1_c00001{bottom:513.409680px;}
.y1f0_c00001{bottom:513.765000px;}
.yc83_c00001{bottom:514.125000px;}
.y51a_c00001{bottom:514.485000px;}
.yd6_c00001{bottom:514.845000px;}
.y326_c00001{bottom:514.849680px;}
.yfd2_c00001{bottom:515.205000px;}
.yab7_c00001{bottom:515.205720px;}
.y763_c00001{bottom:515.565000px;}
.y99b_c00001{bottom:515.925000px;}
.yb71_c00001{bottom:515.926440px;}
.y538_c00001{bottom:516.283920px;}
.y3b6_c00001{bottom:516.285000px;}
.y433_c00001{bottom:516.286800px;}
.y187_c00001{bottom:516.645000px;}
.ydca_c00001{bottom:516.648600px;}
.y6fa_c00001{bottom:517.005000px;}
.y47c_c00001{bottom:517.365000px;}
.y3db_c00001{bottom:517.725000px;}
.y930_c00001{bottom:517.725720px;}
.yb79_c00001{bottom:518.085000px;}
.y540_c00001{bottom:518.805000px;}
.y2c5_c00001{bottom:519.165000px;}
.y890_c00001{bottom:519.521400px;}
.y2e0_c00001{bottom:519.525000px;}
.y623_c00001{bottom:519.885000px;}
.y28f_c00001{bottom:520.242840px;}
.ya9c_c00001{bottom:520.245000px;}
.ye6d_c00001{bottom:520.248600px;}
.ye0a_c00001{bottom:520.249680px;}
.ycff_c00001{bottom:520.253640px;}
.y720_c00001{bottom:520.605000px;}
.yc49_c00001{bottom:520.606800px;}
.yd9e_c00001{bottom:520.608600px;}
.y2b0_c00001{bottom:520.965000px;}
.y3f5_c00001{bottom:522.045000px;}
.y5f1_c00001{bottom:522.405000px;}
.y500_c00001{bottom:522.765000px;}
.yf42_c00001{bottom:522.766800px;}
.y5b2_c00001{bottom:523.125000px;}
.y6a1_c00001{bottom:523.483920px;}
.y10ce_c00001{bottom:523.484280px;}
.y85_c00001{bottom:523.485000px;}
.y167_c00001{bottom:523.845000px;}
.y458_c00001{bottom:524.205000px;}
.ybc2_c00001{bottom:524.267850px;}
.y23f_c00001{bottom:524.565000px;}
.y1058_c00001{bottom:524.925000px;}
.y5c_c00001{bottom:525.285000px;}
.y305_c00001{bottom:525.292200px;}
.yd78_c00001{bottom:525.645000px;}
.yb0d_c00001{bottom:526.005000px;}
.y83c_c00001{bottom:526.365000px;}
.yf9_c00001{bottom:526.725000px;}
.y3ca_c00001{bottom:527.085000px;}
.yf76_c00001{bottom:527.086800px;}
.y962_c00001{bottom:527.445000px;}
.y961_c00001{bottom:527.446800px;}
.y868_c00001{bottom:527.475240px;}
.y57f_c00001{bottom:527.805000px;}
.y90c_c00001{bottom:527.806800px;}
.yc24_c00001{bottom:528.161040px;}
.y1004_c00001{bottom:528.165000px;}
.y661_c00001{bottom:528.525000px;}
.y38c_c00001{bottom:528.883920px;}
.y9f0_c00001{bottom:528.885000px;}
.y5c6_c00001{bottom:529.245000px;}
.y26a_c00001{bottom:529.249320px;}
.yea4_c00001{bottom:529.249680px;}
.y150_c00001{bottom:529.965000px;}
.y818_c00001{bottom:530.325000px;}
.yed7_c00001{bottom:530.681040px;}
.y7f0_c00001{bottom:530.683920px;}
.y421_c00001{bottom:530.685000px;}
.ya74_c00001{bottom:530.687520px;}
.y9e2_c00001{bottom:531.042840px;}
.yae_c00001{bottom:531.405000px;}
.yc20_c00001{bottom:531.765000px;}
.y8f2_c00001{bottom:532.121040px;}
.y8f3_c00001{bottom:532.125000px;}
.y10c6_c00001{bottom:532.485000px;}
.yb92_c00001{bottom:532.521000px;}
.yf08_c00001{bottom:532.843920px;}
.y19e_c00001{bottom:532.845000px;}
.yd33_c00001{bottom:532.849680px;}
.y4e7_c00001{bottom:533.205000px;}
.yb70_c00001{bottom:533.564640px;}
.y884_c00001{bottom:533.565000px;}
.y3a0_c00001{bottom:533.925000px;}
.y516_c00001{bottom:534.285000px;}
.y1078_c00001{bottom:534.289680px;}
.ya05_c00001{bottom:534.645000px;}
.y1131_c00001{bottom:535.005000px;}
.yad2_c00001{bottom:535.363920px;}
.y970_c00001{bottom:535.365000px;}
.ya31_c00001{bottom:535.365720px;}
.y8a2_c00001{bottom:535.710600px;}
.y1db_c00001{bottom:535.725000px;}
.y367_c00001{bottom:536.085000px;}
.y413_c00001{bottom:536.805000px;}
.y48d_c00001{bottom:537.165000px;}
.yd75_c00001{bottom:537.523920px;}
.ydbf_c00001{bottom:537.525000px;}
.yd60_c00001{bottom:537.529680px;}
.ydbe_c00001{bottom:537.532200px;}
.y28e_c00001{bottom:537.881040px;}
.yd3f_c00001{bottom:537.885000px;}
.ye24_c00001{bottom:537.888600px;}
.yd3e_c00001{bottom:537.889680px;}
.ye30_c00001{bottom:537.892200px;}
.yaf0_c00001{bottom:537.893280px;}
.ye89_c00001{bottom:537.897960px;}
.ya46_c00001{bottom:538.243920px;}
.ya1e_c00001{bottom:538.245000px;}
.yc48_c00001{bottom:538.246800px;}
.ye3b_c00001{bottom:538.247520px;}
.ya56_c00001{bottom:538.248600px;}
.yd20_c00001{bottom:538.278840px;}
.y47b_c00001{bottom:538.605000px;}
.y6ad_c00001{bottom:538.965000px;}
.y1ef_c00001{bottom:539.325000px;}
.yc00_c00001{bottom:539.331840px;}
.y324_c00001{bottom:540.043920px;}
.y325_c00001{bottom:540.045000px;}
.yfd1_c00001{bottom:540.049680px;}
.yf41_c00001{bottom:540.399960px;}
.y2df_c00001{bottom:540.405000px;}
.y21a_c00001{bottom:540.765000px;}
.y537_c00001{bottom:541.125000px;}
.y536_c00001{bottom:541.126800px;}
.yce6_c00001{bottom:541.485000px;}
.ydc9_c00001{bottom:541.489680px;}
.y9af_c00001{bottom:541.830600px;}
.y2c4_c00001{bottom:541.845000px;}
.y71f_c00001{bottom:542.205000px;}
.y8d0_c00001{bottom:542.565000px;}
.y7cd_c00001{bottom:542.925000px;}
.y32_c00001{bottom:543.285000px;}
.y6d4_c00001{bottom:543.637800px;}
.y457_c00001{bottom:543.645000px;}
.y10cd_c00001{bottom:543.646440px;}
.y456_c00001{bottom:543.652200px;}
.y615_c00001{bottom:544.005000px;}
.y4ba_c00001{bottom:544.365000px;}
.y1b0_c00001{bottom:544.725000px;}
.yf75_c00001{bottom:544.729680px;}
.y12_c00001{bottom:545.085000px;}
.y6f9_c00001{bottom:545.086800px;}
.ya9b_c00001{bottom:545.089680px;}
.ycfe_c00001{bottom:545.094720px;}
.ye09_c00001{bottom:545.443920px;}
.y23e_c00001{bottom:545.445000px;}
.y92f_c00001{bottom:545.451840px;}
.ya88_c00001{bottom:545.803920px;}
.ya89_c00001{bottom:545.805000px;}
.y3da_c00001{bottom:545.806800px;}
.y7de_c00001{bottom:546.525000px;}
.yecc_c00001{bottom:546.526800px;}
.y203_c00001{bottom:546.885000px;}
.y3f4_c00001{bottom:547.245000px;}
.y4f2_c00001{bottom:547.246800px;}
.ybc1_c00001{bottom:547.662450px;}
.yf8_c00001{bottom:547.965000px;}
.y269_c00001{bottom:547.969320px;}
.ydae_c00001{bottom:547.969680px;}
.y6a0_c00001{bottom:548.325000px;}
.ye5b_c00001{bottom:548.334360px;}
.yc8b_c00001{bottom:548.685000px;}
.yf54_c00001{bottom:549.045000px;}
.y660_c00001{bottom:549.405000px;}
.yb26_c00001{bottom:549.765000px;}
.y9d9_c00001{bottom:550.485000px;}
.yd5_c00001{bottom:550.845000px;}
.yb6f_c00001{bottom:550.848600px;}
.y9e1_c00001{bottom:551.199960px;}
.y817_c00001{bottom:551.205000px;}
.y762_c00001{bottom:551.565000px;}
.y304_c00001{bottom:551.925000px;}
.yad_c00001{bottom:552.285000px;}
.y88f_c00001{bottom:552.288600px;}
.y186_c00001{bottom:552.645000px;}
.yc1f_c00001{bottom:553.005000px;}
.y1057_c00001{bottom:553.365000px;}
.y5b_c00001{bottom:553.722480px;}
.y38b_c00001{bottom:553.724640px;}
.y19d_c00001{bottom:553.725000px;}
.y701_c00001{bottom:554.085000px;}
.y4e6_c00001{bottom:554.445000px;}
.yced_c00001{bottom:554.446800px;}
.y83b_c00001{bottom:554.805000px;}
.y28d_c00001{bottom:555.165000px;}
.y7ef_c00001{bottom:555.525000px;}
.y7ee_c00001{bottom:555.526800px;}
.ya73_c00001{bottom:555.528600px;}
.ya69_c00001{bottom:555.529680px;}
.yc47_c00001{bottom:555.881040px;}
.y622_c00001{bottom:555.885000px;}
.yde0_c00001{bottom:555.889680px;}
.y96f_c00001{bottom:556.245000px;}
.yb91_c00001{bottom:556.284600px;}
.y1da_c00001{bottom:556.605000px;}
.y2a5_c00001{bottom:556.965000px;}
.y9ef_c00001{bottom:557.325000px;}
.y5c5_c00001{bottom:557.685000px;}
.yf07_c00001{bottom:557.689680px;}
.y7a6_c00001{bottom:558.045000px;}
.y5f0_c00001{bottom:558.405000px;}
.y535_c00001{bottom:558.765000px;}
.y432_c00001{bottom:559.125000px;}
.ybff_c00001{bottom:559.126800px;}
.y1077_c00001{bottom:559.483920px;}
.y84_c00001{bottom:559.485000px;}
.y166_c00001{bottom:559.845000px;}
.yad1_c00001{bottom:560.205000px;}
.yad0_c00001{bottom:560.208600px;}
.y13d_c00001{bottom:561.285000px;}
.y9cf_c00001{bottom:561.645000px;}
.y883_c00001{bottom:561.653280px;}
.y219_c00001{bottom:562.005000px;}
.y1030_c00001{bottom:562.006800px;}
.ye99_c00001{bottom:562.012560px;}
.yd74_c00001{bottom:562.365000px;}
.yee4_c00001{bottom:562.366800px;}
.yd73_c00001{bottom:562.374360px;}
.y960_c00001{bottom:562.721040px;}
.yfa4_c00001{bottom:562.723920px;}
.y515_c00001{bottom:562.725000px;}
.ydbd_c00001{bottom:562.727520px;}
.ye23_c00001{bottom:562.729680px;}
.ye2f_c00001{bottom:562.733280px;}
.y90b_c00001{bottom:563.083560px;}
.ye7f_c00001{bottom:563.083920px;}
.y39f_c00001{bottom:563.085000px;}
.yaef_c00001{bottom:563.088600px;}
.ya1d_c00001{bottom:563.089680px;}
.yd8b_c00001{bottom:563.091120px;}
.ye88_c00001{bottom:563.093280px;}
.yd1f_c00001{bottom:563.119920px;}
.y3d9_c00001{bottom:563.445000px;}
.y7cc_c00001{bottom:563.805000px;}
.y5d3_c00001{bottom:564.165000px;}
.y68b_c00001{bottom:564.525000px;}
.y1ee_c00001{bottom:564.885000px;}
.y323_c00001{bottom:564.889680px;}
.yfd0_c00001{bottom:565.241040px;}
.y412_c00001{bottom:565.245000px;}
.y48c_c00001{bottom:565.605000px;}
.yed6_c00001{bottom:565.606800px;}
.y14f_c00001{bottom:565.965000px;}
.y23d_c00001{bottom:566.325000px;}
.y268_c00001{bottom:566.685000px;}
.y8f1_c00001{bottom:567.046800px;}
.y122_c00001{bottom:567.405000px;}
.yab6_c00001{bottom:567.763920px;}
.yf40_c00001{bottom:567.765000px;}
.y8a1_c00001{bottom:568.108800px;}
.y1061_c00001{bottom:568.485000px;}
.yb6e_c00001{bottom:568.486800px;}
.yf7_c00001{bottom:568.845000px;}
.y39e_c00001{bottom:569.205000px;}
.ycb7_c00001{bottom:569.565000px;}
.yce5_c00001{bottom:569.566800px;}
.y10cc_c00001{bottom:569.569680px;}
.yf74_c00001{bottom:569.925000px;}
.y455_c00001{bottom:570.285000px;}
.ycfd_c00001{bottom:570.290040px;}
.ya87_c00001{bottom:570.645000px;}
.y867_c00001{bottom:570.670920px;}
.y8cf_c00001{bottom:571.005000px;}
.ybc0_c00001{bottom:571.057050px;}
.y5a_c00001{bottom:571.360680px;}
.y10f8_c00001{bottom:571.365000px;}
.yd4_c00001{bottom:571.725000px;}
.ycec_c00001{bottom:572.085000px;}
.yceb_c00001{bottom:572.086800px;}
.y202_c00001{bottom:572.445000px;}
.y267_c00001{bottom:572.805000px;}
.y7ed_c00001{bottom:573.165000px;}
.y7ec_c00001{bottom:573.166800px;}
.y303_c00001{bottom:573.523200px;}
.yac_c00001{bottom:573.525000px;}
.y69f_c00001{bottom:573.526440px;}
.ye5a_c00001{bottom:573.529680px;}
.yc1e_c00001{bottom:573.885000px;}
.y10c5_c00001{bottom:574.245000px;}
.y5e1_c00001{bottom:574.605000px;}
.y6ac_c00001{bottom:574.965000px;}
.y4e5_c00001{bottom:575.325000px;}
.y9ae_c00001{bottom:575.672400px;}
.y3f3_c00001{bottom:575.685000px;}
.y2de_c00001{bottom:576.405000px;}
.ybfe_c00001{bottom:576.765000px;}
.y1130_c00001{bottom:577.125000px;}
.y6d3_c00001{bottom:577.479600px;}
.y1d9_c00001{bottom:577.485000px;}
.y2a4_c00001{bottom:577.845000px;}
.y7bd_c00001{bottom:578.205000px;}
.y9e0_c00001{bottom:578.565000px;}
.y9df_c00001{bottom:578.569680px;}
.y38a_c00001{bottom:578.919960px;}
.ybe3_c00001{bottom:578.925000px;}
.y6bf_c00001{bottom:578.930400px;}
.y31_c00001{bottom:579.285000px;}
.y102f_c00001{bottom:579.644640px;}
.yef4_c00001{bottom:579.645000px;}
.yb90_c00001{bottom:579.679200px;}
.yee3_c00001{bottom:579.998520px;}
.y5b1_c00001{bottom:580.005000px;}
.y95f_c00001{bottom:580.006800px;}
.y28b_c00001{bottom:580.361040px;}
.y28c_c00001{bottom:580.365000px;}
.yd50_c00001{bottom:580.368600px;}
.ya72_c00001{bottom:580.723920px;}
.y47a_c00001{bottom:580.725000px;}
.yff4_c00001{bottom:580.726800px;}
.y185_c00001{bottom:581.082840px;}
.y11_c00001{bottom:581.085000px;}
.y90a_c00001{bottom:581.437800px;}
.y795_c00001{bottom:581.445000px;}
.y100e_c00001{bottom:581.805000px;}
.y9d8_c00001{bottom:582.165000px;}
.y5c4_c00001{bottom:582.525000px;}
.yf06_c00001{bottom:582.883920px;}
.y77a_c00001{bottom:582.885000px;}
.y1093_c00001{bottom:582.891840px;}
.yed5_c00001{bottom:583.241040px;}
.y5fc_c00001{bottom:583.245000px;}
.y1023_c00001{bottom:583.601040px;}
.y83a_c00001{bottom:583.605000px;}
.y534_c00001{bottom:583.965000px;}
.y46c_c00001{bottom:584.325000px;}
.y1076_c00001{bottom:584.329680px;}
.y266_c00001{bottom:584.682840px;}
.y595_c00001{bottom:584.685000px;}
.y88e_c00001{bottom:584.686800px;}
.y5d2_c00001{bottom:585.045000px;}
.y92e_c00001{bottom:585.402840px;}
.yacf_c00001{bottom:585.403920px;}
.y65f_c00001{bottom:585.405000px;}
.y84b_c00001{bottom:585.410040px;}
.yf3d_c00001{bottom:585.765000px;}
.yb6d_c00001{bottom:586.122840px;}
.y411_c00001{bottom:586.125000px;}
.y4b9_c00001{bottom:586.485000px;}
.y97b_c00001{bottom:586.845000px;}
.y882_c00001{bottom:586.848600px;}
.ye98_c00001{bottom:586.853640px;}
.yce4_c00001{bottom:587.205000px;}
.y23c_c00001{bottom:587.565000px;}
.ydbc_c00001{bottom:587.568600px;}
.yd72_c00001{bottom:587.569680px;}
.yd5f_c00001{bottom:587.923920px;}
.ye22_c00001{bottom:587.925000px;}
.ye2e_c00001{bottom:587.928600px;}
.yaee_c00001{bottom:587.929680px;}
.ye87_c00001{bottom:587.934360px;}
.yae2_c00001{bottom:588.283920px;}
.y121_c00001{bottom:588.285000px;}
.yd8a_c00001{bottom:588.286440px;}
.y3d8_c00001{bottom:588.286800px;}
.ya45_c00001{bottom:588.287520px;}
.ya30_c00001{bottom:588.288600px;}
.yd1e_c00001{bottom:588.315240px;}
.y59_c00001{bottom:588.644640px;}
.yfc1_c00001{bottom:588.645000px;}
.y71d_c00001{bottom:589.005000px;}
.ybc8_c00001{bottom:589.365000px;}
.y743_c00001{bottom:589.366440px;}
.yf6_c00001{bottom:589.725000px;}
.ycea_c00001{bottom:589.726800px;}
.y1ed_c00001{bottom:590.085000px;}
.ycb6_c00001{bottom:590.445000px;}
.yc46_c00001{bottom:590.801040px;}
.y7eb_c00001{bottom:590.805000px;}
.y69e_c00001{bottom:590.810400px;}
.y34c_c00001{bottom:591.165000px;}
.y514_c00001{bottom:591.525000px;}
.ydc8_c00001{bottom:591.529680px;}
.y621_c00001{bottom:591.885000px;}
.y636_c00001{bottom:592.245000px;}
.yab5_c00001{bottom:592.605000px;}
.yb29_c00001{bottom:592.965000px;}
.y56b_c00001{bottom:593.325000px;}
.yeb0_c00001{bottom:593.685000px;}
.y4cc_c00001{bottom:594.045000px;}
.yab_c00001{bottom:594.405000px;}
.y10cb_c00001{bottom:594.757800px;}
.yc1d_c00001{bottom:594.765000px;}
.ybbf_c00001{bottom:594.820650px;}
.yf72_c00001{bottom:595.121040px;}
.yf73_c00001{bottom:595.125000px;}
.ya9a_c00001{bottom:595.129680px;}
.ycfc_c00001{bottom:595.131120px;}
.y83_c00001{bottom:595.485000px;}
.ydf1_c00001{bottom:595.489680px;}
.yd9d_c00001{bottom:595.493280px;}
.y165_c00001{bottom:595.845000px;}
.y6be_c00001{bottom:596.214360px;}
.y48b_c00001{bottom:596.565000px;}
.y454_c00001{bottom:596.925000px;}
.y102e_c00001{bottom:596.928600px;}
.y13c_c00001{bottom:597.285000px;}
.yea3_c00001{bottom:597.290400px;}
.y28a_c00001{bottom:597.645000px;}
.y201_c00001{bottom:598.005000px;}
.y96e_c00001{bottom:598.365000px;}
.y184_c00001{bottom:598.366800px;}
.ydad_c00001{bottom:598.369680px;}
.y1d8_c00001{bottom:598.725000px;}
.ye59_c00001{bottom:598.727520px;}
.ybcd_c00001{bottom:599.085000px;}
.y909_c00001{bottom:599.445000px;}
.y7cb_c00001{bottom:599.805000px;}
.yeb9_c00001{bottom:600.165000px;}
.y8a0_c00001{bottom:600.507000px;}
.y519_c00001{bottom:600.525000px;}
.y301_c00001{bottom:600.879600px;}
.y302_c00001{bottom:600.885000px;}
.y99a_c00001{bottom:601.245000px;}
.yfa1_c00001{bottom:601.605000px;}
.y14e_c00001{bottom:601.965000px;}
.y265_c00001{bottom:601.966800px;}
.ybfd_c00001{bottom:602.325000px;}
.y1091_c00001{bottom:602.682480px;}
.y1092_c00001{bottom:602.685000px;}
.y2dc_c00001{bottom:603.043920px;}
.y2dd_c00001{bottom:603.045000px;}
.yb8f_c00001{bottom:603.073800px;}
.y72a_c00001{bottom:603.405000px;}
.yb6c_c00001{bottom:603.406800px;}
.y4e4_c00001{bottom:603.765000px;}
.y3f2_c00001{bottom:604.485000px;}
.yee2_c00001{bottom:604.839600px;}
.y71e_c00001{bottom:604.845000px;}
.y6f7_c00001{bottom:605.204640px;}
.y6f8_c00001{bottom:605.205000px;}
.yd4f_c00001{bottom:605.563920px;}
.y92d_c00001{bottom:605.565000px;}
.y92c_c00001{bottom:605.566800px;}
.y3d7_c00001{bottom:605.925000px;}
.y3d6_c00001{bottom:605.926800px;}
.yddf_c00001{bottom:605.934360px;}
.y58_c00001{bottom:606.282840px;}
.y389_c00001{bottom:606.285000px;}
.y388_c00001{bottom:606.285720px;}
.y742_c00001{bottom:607.004640px;}
.y410_c00001{bottom:607.005000px;}
.ycd8_c00001{bottom:607.365000px;}
.yce9_c00001{bottom:607.366800px;}
.yd3_c00001{bottom:607.725000px;}
.y5b0_c00001{bottom:608.085000px;}
.y816_c00001{bottom:608.445000px;}
.y69d_c00001{bottom:608.448600px;}
.y420_c00001{bottom:608.805000px;}
.y120_c00001{bottom:609.165000px;}
.y7b0_c00001{bottom:609.525000px;}
.ya04_c00001{bottom:609.529680px;}
.y9ad_c00001{bottom:609.870600px;}
.yc7a_c00001{bottom:609.885000px;}
.yace_c00001{bottom:610.245000px;}
.yf3c_c00001{bottom:610.605000px;}
.y19c_c00001{bottom:610.965000px;}
.y6d2_c00001{bottom:611.677800px;}
.y974_c00001{bottom:611.685000px;}
.y881_c00001{bottom:612.043920px;}
.y57e_c00001{bottom:612.045000px;}
.ye97_c00001{bottom:612.048960px;}
.y46b_c00001{bottom:612.405000px;}
.ydbb_c00001{bottom:612.763920px;}
.y594_c00001{bottom:612.765000px;}
.yd71_c00001{bottom:612.768600px;}
.ye21_c00001{bottom:612.769680px;}
.ye7e_c00001{bottom:613.123920px;}
.y533_c00001{bottom:613.125000px;}
.yd89_c00001{bottom:613.127520px;}
.ya44_c00001{bottom:613.128600px;}
.ya2f_c00001{bottom:613.129680px;}
.ye51_c00001{bottom:613.133280px;}
.yd1d_c00001{bottom:613.156320px;}
.y1003_c00001{bottom:613.485000px;}
.y866_c00001{bottom:613.510200px;}
.y82b_c00001{bottom:613.845000px;}
.yecb_c00001{bottom:614.201040px;}
.y7bc_c00001{bottom:614.205000px;}
.y4b8_c00001{bottom:614.925000px;}
.y1051_c00001{bottom:615.280680px;}
.y30_c00001{bottom:615.285000px;}
.y7ea_c00001{bottom:615.642840px;}
.y1ec_c00001{bottom:615.645000px;}
.yff3_c00001{bottom:616.001040px;}
.y183_c00001{bottom:616.005000px;}
.y791_c00001{bottom:616.365000px;}
.y8ee_c00001{bottom:616.720680px;}
.y479_c00001{bottom:616.725000px;}
.y10_c00001{bottom:617.085000px;}
.y322_c00001{bottom:617.445000px;}
.y100d_c00001{bottom:617.805000px;}
.yab4_c00001{bottom:617.806800px;}
.y569_c00001{bottom:618.157800px;}
.y56a_c00001{bottom:618.165000px;}
.ybbe_c00001{bottom:618.215250px;}
.y7dd_c00001{bottom:618.525000px;}
.y1022_c00001{bottom:618.526800px;}
.y779_c00001{bottom:618.885000px;}
.y5fb_c00001{bottom:619.245000px;}
.y1d7_c00001{bottom:619.605000px;}
.y264_c00001{bottom:619.606800px;}
.y2a3_c00001{bottom:619.965000px;}
.y8b6_c00001{bottom:620.325000px;}
.ycfb_c00001{bottom:620.326440px;}
.ya85_c00001{bottom:620.683920px;}
.y635_c00001{bottom:620.685000px;}
.yea2_c00001{bottom:620.686800px;}
.yd9c_c00001{bottom:620.688600px;}
.yb6b_c00001{bottom:621.041040px;}
.y7ca_c00001{bottom:621.045000px;}
.yfdc_c00001{bottom:621.049680px;}
.y65e_c00001{bottom:621.405000px;}
.y6bd_c00001{bottom:621.409680px;}
.y48a_c00001{bottom:621.765000px;}
.y102d_c00001{bottom:622.123920px;}
.y856_c00001{bottom:622.125000px;}
.y1114_c00001{bottom:622.485000px;}
.y95e_c00001{bottom:622.485720px;}
.y6f6_c00001{bottom:622.842840px;}
.y14d_c00001{bottom:622.845000px;}
.y200_c00001{bottom:623.205000px;}
.y92b_c00001{bottom:623.211840px;}
.y23b_c00001{bottom:623.565000px;}
.y57_c00001{bottom:623.566800px;}
.ye58_c00001{bottom:623.568600px;}
.y53f_c00001{bottom:624.285000px;}
.y741_c00001{bottom:624.642840px;}
.y1070_c00001{bottom:624.645000px;}
.yce8_c00001{bottom:624.997800px;}
.y71c_c00001{bottom:625.005000px;}
.y1060_c00001{bottom:625.365000px;}
.yed4_c00001{bottom:625.723920px;}
.yf5_c00001{bottom:625.725000px;}
.yc45_c00001{bottom:625.728600px;}
.y453_c00001{bottom:626.085000px;}
.ya99_c00001{bottom:626.445000px;}
.ya86_c00001{bottom:626.805000px;}
.yb8e_c00001{bottom:626.837400px;}
.y5c3_c00001{bottom:627.165000px;}
.y366_c00001{bottom:627.525000px;}
.y2db_c00001{bottom:627.885000px;}
.yf3b_c00001{bottom:628.241040px;}
.y40f_c00001{bottom:628.245000px;}
.y1090_c00001{bottom:628.246800px;}
.y4f1_c00001{bottom:628.605000px;}
.y84a_c00001{bottom:628.605720px;}
.yd2_c00001{bottom:628.965000px;}
.y815_c00001{bottom:629.325000px;}
.yce3_c00001{bottom:629.681040px;}
.y999_c00001{bottom:629.683920px;}
.y41f_c00001{bottom:629.685000px;}
.ybfc_c00001{bottom:630.045000px;}
.yee1_c00001{bottom:630.403920px;}
.yaa_c00001{bottom:630.405000px;}
.yd4e_c00001{bottom:630.405720px;}
.ya68_c00001{bottom:630.763920px;}
.y39d_c00001{bottom:630.765000px;}
.y10f9_c00001{bottom:631.125000px;}
.ydde_c00001{bottom:631.129680px;}
.y82_c00001{bottom:631.485000px;}
.y19b_c00001{bottom:631.845000px;}
.y908_c00001{bottom:632.205000px;}
.ycb5_c00001{bottom:632.565000px;}
.y3f1_c00001{bottom:632.925000px;}
.yd32_c00001{bottom:632.926440px;}
.y89f_c00001{bottom:633.274200px;}
.y13b_c00001{bottom:633.285000px;}
.y69c_c00001{bottom:633.289680px;}
.y111d_c00001{bottom:633.645000px;}
.y387_c00001{bottom:633.999960px;}
.y8ed_c00001{bottom:634.004640px;}
.y218_c00001{bottom:634.005000px;}
.y9f6_c00001{bottom:634.365000px;}
.y82a_c00001{bottom:634.725000px;}
.y7bb_c00001{bottom:635.085000px;}
.yab2_c00001{bottom:635.443920px;}
.yab3_c00001{bottom:635.445000px;}
.y7e8_c00001{bottom:635.803920px;}
.y7e9_c00001{bottom:635.805000px;}
.y1021_c00001{bottom:636.164640px;}
.y2f_c00001{bottom:636.165000px;}
.y68a_c00001{bottom:636.525000px;}
.yf5c_c00001{bottom:636.526800px;}
.y880_c00001{bottom:636.885000px;}
.y262_c00001{bottom:637.241040px;}
.ye96_c00001{bottom:637.244280px;}
.y263_c00001{bottom:637.245000px;}
.yf71_c00001{bottom:637.603920px;}
.y478_c00001{bottom:637.605000px;}
.yd70_c00001{bottom:637.609680px;}
.y164_c00001{bottom:637.965000px;}
.y7a5_c00001{bottom:637.967520px;}
.yaed_c00001{bottom:637.969680px;}
.yd88_c00001{bottom:638.322840px;}
.ya1c_c00001{bottom:638.323920px;}
.ya2e_c00001{bottom:638.325000px;}
.ye50_c00001{bottom:638.328600px;}
.yd1c_c00001{bottom:638.351640px;}
.y100c_c00001{bottom:638.685000px;}
.y9d7_c00001{bottom:639.045000px;}
.y729_c00001{bottom:639.405000px;}
.y10e0_c00001{bottom:639.765000px;}
.y112f_c00001{bottom:640.125000px;}
.y6f5_c00001{bottom:640.126800px;}
.yfc0_c00001{bottom:640.483920px;}
.y1d6_c00001{bottom:640.485000px;}
.y182_c00001{bottom:640.845000px;}
.y593_c00001{bottom:640.846800px;}
.y56_c00001{bottom:641.205000px;}
.y258_c00001{bottom:641.565000px;}
.ybbd_c00001{bottom:641.609850px;}
.y7c9_c00001{bottom:641.925000px;}
.y740_c00001{bottom:641.926800px;}
.yeaf_c00001{bottom:642.281040px;}
.y568_c00001{bottom:642.285000px;}
.y321_c00001{bottom:642.645000px;}
.y92a_c00001{bottom:643.005000px;}
.y929_c00001{bottom:643.009680px;}
.y4b6_c00001{bottom:643.363920px;}
.y4b7_c00001{bottom:643.365000px;}
.y9ac_c00001{bottom:643.712400px;}
.y677_c00001{bottom:643.721040px;}
.yfa0_c00001{bottom:643.725000px;}
.y14c_c00001{bottom:644.085000px;}
.y23a_c00001{bottom:644.445000px;}
.yec6_c00001{bottom:644.448600px;}
.yc82_c00001{bottom:644.805000px;}
.ya98_c00001{bottom:645.164280px;}
.ye6c_c00001{bottom:645.165000px;}
.ycfa_c00001{bottom:645.167520px;}
.y6d1_c00001{bottom:645.519600px;}
.y7af_c00001{bottom:645.525000px;}
.ya84_c00001{bottom:645.528600px;}
.yd9b_c00001{bottom:645.529680px;}
.y108f_c00001{bottom:645.885000px;}
.y108e_c00001{bottom:645.885720px;}
.y57d_c00001{bottom:646.242840px;}
.yfdb_c00001{bottom:646.245000px;}
.y6bc_c00001{bottom:646.605000px;}
.yf4_c00001{bottom:646.965000px;}
.y102c_c00001{bottom:646.965720px;}
.yf8d_c00001{bottom:647.325000px;}
.y1113_c00001{bottom:647.681040px;}
.yfb2_c00001{bottom:647.685000px;}
.y5d1_c00001{bottom:648.045000px;}
.y34b_c00001{bottom:648.405000px;}
.ye57_c00001{bottom:648.409680px;}
.y1ff_c00001{bottom:648.765000px;}
.y40e_c00001{bottom:649.125000px;}
.y634_c00001{bottom:649.485000px;}
.yd1_c00001{bottom:649.845000px;}
.y95d_c00001{bottom:650.199960px;}
.y489_c00001{bottom:650.205000px;}
.yb8d_c00001{bottom:650.232000px;}
.y761_c00001{bottom:650.565000px;}
.yc44_c00001{bottom:650.923920px;}
.y41e_c00001{bottom:650.925000px;}
.y4cb_c00001{bottom:651.285000px;}
.y8ec_c00001{bottom:651.642840px;}
.yef2_c00001{bottom:651.644850px;}
.yef3_c00001{bottom:651.645000px;}
.y6b3_c00001{bottom:652.005000px;}
.y106d_c00001{bottom:652.365000px;}
.y49f_c00001{bottom:652.725000px;}
.y2da_c00001{bottom:653.083920px;}
.yf_c00001{bottom:653.085000px;}
.ycb4_c00001{bottom:653.445000px;}
.y452_c00001{bottom:654.165000px;}
.y300_c00001{bottom:654.519600px;}
.y13a_c00001{bottom:654.525000px;}
.y217_c00001{bottom:654.885000px;}
.yee0_c00001{bottom:655.245000px;}
.y5c2_c00001{bottom:655.605000px;}
.ya67_c00001{bottom:655.609680px;}
.y365_c00001{bottom:655.965000px;}
.yddd_c00001{bottom:656.322840px;}
.y7ba_c00001{bottom:656.325000px;}
.yeca_c00001{bottom:656.685000px;}
.y865_c00001{bottom:656.705880px;}
.y2e_c00001{bottom:657.045000px;}
.y4f0_c00001{bottom:657.405000px;}
.y6f4_c00001{bottom:657.765000px;}
.y790_c00001{bottom:658.125000px;}
.yd4d_c00001{bottom:658.129680px;}
.y69b_c00001{bottom:658.483920px;}
.y181_c00001{bottom:658.485000px;}
.y180_c00001{bottom:658.486800px;}
.y3b5_c00001{bottom:658.845000px;}
.ybfb_c00001{bottom:659.205000px;}
.y73e_c00001{bottom:659.561040px;}
.y73f_c00001{bottom:659.565000px;}
.ya03_c00001{bottom:659.573280px;}
.y5af_c00001{bottom:660.285000px;}
.y261_c00001{bottom:660.645000px;}
.yd31_c00001{bottom:660.645720px;}
.y7e7_c00001{bottom:660.646800px;}
.y676_c00001{bottom:661.005000px;}
.y1020_c00001{bottom:661.005720px;}
.y385_c00001{bottom:661.359960px;}
.y386_c00001{bottom:661.365000px;}
.y1d5_c00001{bottom:661.725000px;}
.y6ef_c00001{bottom:662.085000px;}
.y9ee_c00001{bottom:662.445000px;}
.yf70_c00001{bottom:662.449680px;}
.y567_c00001{bottom:662.805000px;}
.y7a4_c00001{bottom:662.808600px;}
.yd5e_c00001{bottom:662.809680px;}
.ya2d_c00001{bottom:663.163920px;}
.ya1b_c00001{bottom:663.165000px;}
.yd7e_c00001{bottom:663.167520px;}
.yae1_c00001{bottom:663.168600px;}
.ye4f_c00001{bottom:663.169680px;}
.yd1b_c00001{bottom:663.192720px;}
.y39c_c00001{bottom:663.525000px;}
.y620_c00001{bottom:663.885000px;}
.y6ba_c00001{bottom:664.243920px;}
.y6bb_c00001{bottom:664.245000px;}
.yf02_c00001{bottom:664.605000px;}
.y14b_c00001{bottom:664.965000px;}
.y239_c00001{bottom:665.325000px;}
.yfbf_c00001{bottom:665.329680px;}
.ybbc_c00001{bottom:665.373450px;}
.y89e_c00001{bottom:665.672400px;}
.y55_c00001{bottom:666.045000px;}
.y54_c00001{bottom:666.046800px;}
.ya9_c00001{bottom:666.405000px;}
.y1eb_c00001{bottom:666.765000px;}
.y81_c00001{bottom:667.485000px;}
.yf3_c00001{bottom:667.845000px;}
.y928_c00001{bottom:668.201040px;}
.y4b5_c00001{bottom:668.205000px;}
.y4b4_c00001{bottom:668.209680px;}
.y9c3_c00001{bottom:668.565000px;}
.yc72_c00001{bottom:668.922840px;}
.y289_c00001{bottom:668.925000px;}
.y8eb_c00001{bottom:668.926800px;}
.y46a_c00001{bottom:669.281040px;}
.y5d0_c00001{bottom:669.285000px;}
.y40d_c00001{bottom:670.005000px;}
.ycf9_c00001{bottom:670.008600px;}
.y320_c00001{bottom:670.363920px;}
.y207_c00001{bottom:670.365000px;}
.ya83_c00001{bottom:670.723920px;}
.y88d_c00001{bottom:670.725000px;}
.ye08_c00001{bottom:670.727520px;}
.ya97_c00001{bottom:670.728600px;}
.ydf0_c00001{bottom:670.732200px;}
.yec5_c00001{bottom:671.081400px;}
.yd0_c00001{bottom:671.085000px;}
.yfda_c00001{bottom:671.086800px;}
.y814_c00001{bottom:671.445000px;}
.y760_c00001{bottom:671.805000px;}
.y260_c00001{bottom:672.164640px;}
.y998_c00001{bottom:672.165000px;}
.y997_c00001{bottom:672.166800px;}
.y689_c00001{bottom:672.525000px;}
.yef1_c00001{bottom:672.884850px;}
.yc81_c00001{bottom:673.245000px;}
.y6e8_c00001{bottom:673.605000px;}
.ydac_c00001{bottom:673.609680px;}
.y108d_c00001{bottom:673.611840px;}
.yb8c_c00001{bottom:673.626600px;}
.y163_c00001{bottom:673.965000px;}
.y1fe_c00001{bottom:674.325000px;}
.y102b_c00001{bottom:674.683920px;}
.ycb3_c00001{bottom:674.685000px;}
.yb25_c00001{bottom:675.400680px;}
.y728_c00001{bottom:675.405000px;}
.yc43_c00001{bottom:675.763920px;}
.yb37_c00001{bottom:675.765000px;}
.y17f_c00001{bottom:676.125000px;}
.y96d_c00001{bottom:676.485000px;}
.y2c3_c00001{bottom:676.845000px;}
.y73d_c00001{bottom:676.846800px;}
.y34a_c00001{bottom:677.205000px;}
.y106c_c00001{bottom:677.209680px;}
.y9ab_c00001{bottom:677.554200px;}
.y95c_c00001{bottom:677.565000px;}
.y95b_c00001{bottom:677.565720px;}
.y2d8_c00001{bottom:677.923920px;}
.y2d9_c00001{bottom:677.925000px;}
.y7e6_c00001{bottom:678.285000px;}
.y488_c00001{bottom:678.645000px;}
.ycbd_c00001{bottom:679.005000px;}
.yf5b_c00001{bottom:679.006800px;}
.y6d0_c00001{bottom:679.361400px;}
.y4ca_c00001{bottom:679.365000px;}
.y4c9_c00001{bottom:679.366800px;}
.y477_c00001{bottom:679.725000px;}
.y1af_c00001{bottom:680.085000px;}
.ya65_c00001{bottom:680.803920px;}
.ya66_c00001{bottom:680.805000px;}
.yb6a_c00001{bottom:681.161040px;}
.yddc_c00001{bottom:681.163920px;}
.y53e_c00001{bottom:681.165000px;}
.y2fe_c00001{bottom:681.519600px;}
.y2ff_c00001{bottom:681.525000px;}
.y1001_c00001{bottom:681.885000px;}
.y5fa_c00001{bottom:682.245000px;}
.y1d4_c00001{bottom:682.605000px;}
.y2a2_c00001{bottom:682.965000px;}
.y592_c00001{bottom:683.317800px;}
.y451_c00001{bottom:683.325000px;}
.y69a_c00001{bottom:683.329680px;}
.y53_c00001{bottom:683.685000px;}
.y52_c00001{bottom:683.688600px;}
.y5c1_c00001{bottom:684.045000px;}
.y39b_c00001{bottom:684.405000px;}
.yeae_c00001{bottom:684.761040px;}
.y364_c00001{bottom:684.765000px;}
.ya02_c00001{bottom:684.768600px;}
.yacd_c00001{bottom:685.125000px;}
.yacc_c00001{bottom:685.129680px;}
.yab1_c00001{bottom:685.133280px;}
.y633_c00001{bottom:685.485000px;}
.yd30_c00001{bottom:685.486800px;}
.y927_c00001{bottom:685.489680px;}
.y14a_c00001{bottom:685.845000px;}
.y675_c00001{bottom:686.205000px;}
.y674_c00001{bottom:686.208240px;}
.y238_c00001{bottom:686.565000px;}
.y3d5_c00001{bottom:686.925000px;}
.y11f_c00001{bottom:687.285000px;}
.y7c8_c00001{bottom:687.645000px;}
.ye95_c00001{bottom:687.649680px;}
.y7a3_c00001{bottom:688.003920px;}
.ya2c_c00001{bottom:688.005000px;}
.yd7d_c00001{bottom:688.008600px;}
.ya43_c00001{bottom:688.009680px;}
.ya55_c00001{bottom:688.012200px;}
.ya1a_c00001{bottom:688.013280px;}
.yd1a_c00001{bottom:688.033800px;}
.ye4e_c00001{bottom:688.365000px;}
.y384_c00001{bottom:688.725000px;}
.y383_c00001{bottom:688.729680px;}
.ybbb_c00001{bottom:688.768050px;}
.ye_c00001{bottom:689.085000px;}
.y4e3_c00001{bottom:689.443560px;}
.y995_c00001{bottom:689.801040px;}
.y25f_c00001{bottom:689.802840px;}
.y996_c00001{bottom:689.805000px;}
.y3c9_c00001{bottom:690.165000px;}
.yec4_c00001{bottom:690.521400px;}
.y139_c00001{bottom:690.525000px;}
.y216_c00001{bottom:690.885000px;}
.y565_c00001{bottom:691.245000px;}
.y1075_c00001{bottom:691.605000px;}
.ycf_c00001{bottom:691.965000px;}
.y1ea_c00001{bottom:692.325000px;}
.y7ad_c00001{bottom:692.685000px;}
.yb24_c00001{bottom:693.038880px;}
.y2d_c00001{bottom:693.045000px;}
.y4b3_c00001{bottom:693.405000px;}
.y108c_c00001{bottom:693.412560px;}
.yc71_c00001{bottom:693.763920px;}
.yef0_c00001{bottom:693.764850px;}
.yc1c_c00001{bottom:693.765000px;}
.y78f_c00001{bottom:694.125000px;}
.y73c_c00001{bottom:694.485000px;}
.y73b_c00001{bottom:694.486800px;}
.ye6b_c00001{bottom:694.487160px;}
.y683_c00001{bottom:694.845000px;}
.ycf8_c00001{bottom:695.203920px;}
.y31f_c00001{bottom:695.205000px;}
.y31e_c00001{bottom:695.209680px;}
.y9c1_c00001{bottom:695.565000px;}
.ye07_c00001{bottom:695.568600px;}
.ya96_c00001{bottom:695.569680px;}
.ydef_c00001{bottom:695.573280px;}
.y1056_c00001{bottom:695.925000px;}
.y1fd_c00001{bottom:696.285000px;}
.y9d6_c00001{bottom:696.645000px;}
.y4c8_c00001{bottom:697.005000px;}
.yb8b_c00001{bottom:697.021200px;}
.y9ce_c00001{bottom:697.360320px;}
.y2ba_c00001{bottom:697.365000px;}
.y656_c00001{bottom:697.725000px;}
.y89d_c00001{bottom:698.070600px;}
.y566_c00001{bottom:698.085000px;}
.yb69_c00001{bottom:698.445000px;}
.yb68_c00001{bottom:698.446800px;}
.y40c_c00001{bottom:698.805000px;}
.yf3a_c00001{bottom:699.165000px;}
.y9c8_c00001{bottom:699.525000px;}
.y102a_c00001{bottom:699.529680px;}
.y864_c00001{bottom:699.545160px;}
.y61f_c00001{bottom:699.885000px;}
.y476_c00001{bottom:700.605000px;}
.yc42_c00001{bottom:700.609680px;}
.y1ae_c00001{bottom:700.965000px;}
.y17e_c00001{bottom:701.325000px;}
.yedd_c00001{bottom:701.685000px;}
.y531_c00001{bottom:702.041040px;}
.y532_c00001{bottom:702.045000px;}
.yead_c00001{bottom:702.048600px;}
.y106b_c00001{bottom:702.403920px;}
.ya8_c00001{bottom:702.405000px;}
.y2d7_c00001{bottom:702.765000px;}
.yd2f_c00001{bottom:703.125000px;}
.yd2e_c00001{bottom:703.129680px;}
.y80_c00001{bottom:703.485000px;}
.y673_c00001{bottom:703.492200px;}
.y2af_c00001{bottom:703.845000px;}
.y971_c00001{bottom:704.205000px;}
.y9ed_c00001{bottom:704.565000px;}
.yeb8_c00001{bottom:704.925000px;}
.y95a_c00001{bottom:705.279960px;}
.y288_c00001{bottom:705.285000px;}
.ya64_c00001{bottom:705.645000px;}
.ya63_c00001{bottom:705.649680px;}
.yddb_c00001{bottom:706.005000px;}
.y104a_c00001{bottom:706.009680px;}
.y57c_c00001{bottom:706.365000px;}
.yce0_c00001{bottom:706.725000px;}
.y149_c00001{bottom:707.085000px;}
.y25e_c00001{bottom:707.086800px;}
.yc97_c00001{bottom:707.445000px;}
.y41d_c00001{bottom:707.805000px;}
.y11e_c00001{bottom:708.165000px;}
.yff2_c00001{bottom:708.523920px;}
.y2fd_c00001{bottom:708.525000px;}
.y699_c00001{bottom:708.526800px;}
.y2fc_c00001{bottom:708.528600px;}
.y51_c00001{bottom:708.883920px;}
.yedf_c00001{bottom:709.245000px;}
.y53d_c00001{bottom:709.246800px;}
.yec3_c00001{bottom:709.605000px;}
.yf4b_c00001{bottom:709.606800px;}
.ya01_c00001{bottom:709.609680px;}
.yf2_c00001{bottom:709.965000px;}
.yb23_c00001{bottom:710.322840px;}
.yacb_c00001{bottom:710.325000px;}
.yab0_c00001{bottom:710.328600px;}
.y926_c00001{bottom:710.685000px;}
.y7e5_c00001{bottom:711.045000px;}
.y138_c00001{bottom:711.405000px;}
.y9aa_c00001{bottom:711.752400px;}
.y431_c00001{bottom:711.765000px;}
.y73a_c00001{bottom:712.125000px;}
.ybba_c00001{bottom:712.162650px;}
.yf6f_c00001{bottom:712.485000px;}
.y349_c00001{bottom:712.845000px;}
.yd7c_c00001{bottom:713.203920px;}
.y6f3_c00001{bottom:713.205000px;}
.ya54_c00001{bottom:713.207520px;}
.ya19_c00001{bottom:713.208600px;}
.yd19_c00001{bottom:713.229120px;}
.y6cf_c00001{bottom:713.559600px;}
.ye4d_c00001{bottom:713.563920px;}
.y813_c00001{bottom:713.565000px;}
.y382_c00001{bottom:713.925000px;}
.y4e2_c00001{bottom:714.284640px;}
.y2c_c00001{bottom:714.285000px;}
.yf5a_c00001{bottom:714.288600px;}
.yeef_c00001{bottom:714.644850px;}
.y6b9_c00001{bottom:714.645000px;}
.yc1b_c00001{bottom:715.005000px;}
.y1112_c00001{bottom:715.005720px;}
.y3be_c00001{bottom:715.365000px;}
.yfbe_c00001{bottom:715.725000px;}
.y3b4_c00001{bottom:716.085000px;}
.y9cd_c00001{bottom:716.445000px;}
.y9cc_c00001{bottom:716.446800px;}
.y5ae_c00001{bottom:717.165000px;}
.y79d_c00001{bottom:717.525000px;}
.y1e9_c00001{bottom:717.885000px;}
.y3f0_c00001{bottom:718.245000px;}
.y3c8_c00001{bottom:718.605000px;}
.yc70_c00001{bottom:718.609680px;}
.y2a1_c00001{bottom:718.965000px;}
.y530_c00001{bottom:719.325000px;}
.ycd7_c00001{bottom:719.685000px;}
.y651_c00001{bottom:720.045000px;}
.y31d_c00001{bottom:720.405000px;}
.ya82_c00001{bottom:720.763920px;}
.y564_c00001{bottom:720.765000px;}
.ydee_c00001{bottom:720.768600px;}
.yb8a_c00001{bottom:720.784800px;}
.ycbc_c00001{bottom:721.125000px;}
.y632_c00001{bottom:721.126800px;}
.y672_c00001{bottom:721.130400px;}
.y108b_c00001{bottom:721.131840px;}
.y475_c00001{bottom:721.485000px;}
.y1ad_c00001{bottom:721.845000px;}
.y4c7_c00001{bottom:721.846800px;}
.y4ff_c00001{bottom:722.205000px;}
.y237_c00001{bottom:722.565000px;}
.y9d5_c00001{bottom:722.925000px;}
.y70d_c00001{bottom:723.285000px;}
.ydab_c00001{bottom:723.645000px;}
.ycb2_c00001{bottom:724.005000px;}
.yf39_c00001{bottom:724.009680px;}
.y5f9_c00001{bottom:724.365000px;}
.y993_c00001{bottom:724.721040px;}
.y994_c00001{bottom:724.725000px;}
.yd_c00001{bottom:725.085000px;}
.y9ec_c00001{bottom:725.445000px;}
.y839_c00001{bottom:725.805000px;}
.yc41_c00001{bottom:725.808600px;}
.y697_c00001{bottom:726.163920px;}
.y698_c00001{bottom:726.165000px;}
.y513_c00001{bottom:726.525000px;}
.y215_c00001{bottom:726.885000px;}
.yeac_c00001{bottom:727.243920px;}
.y614_c00001{bottom:727.245000px;}
.y113a_c00001{bottom:727.605000px;}
.yb22_c00001{bottom:727.961040px;}
.yce_c00001{bottom:727.965000px;}
.y591_c00001{bottom:727.990200px;}
.y2d6_c00001{bottom:728.325000px;}
.y41c_c00001{bottom:728.685000px;}
.y469_c00001{bottom:729.045000px;}
.y468_c00001{bottom:729.046800px;}
.y11d_c00001{bottom:729.405000px;}
.y17d_c00001{bottom:729.765000px;}
.y78e_c00001{bottom:730.125000px;}
.y89c_c00001{bottom:730.837800px;}
.y25d_c00001{bottom:730.845000px;}
.ydda_c00001{bottom:731.205000px;}
.y4e1_c00001{bottom:731.922840px;}
.y2c2_c00001{bottom:731.925000px;}
.y137_c00001{bottom:732.285000px;}
.y958_c00001{bottom:732.639960px;}
.y959_c00001{bottom:732.645000px;}
.y430_c00001{bottom:733.005000px;}
.yb67_c00001{bottom:733.365000px;}
.yb66_c00001{bottom:733.365360px;}
.y50_c00001{bottom:733.725000px;}
.y39a_c00001{bottom:734.085000px;}
.y9cb_c00001{bottom:734.086080px;}
.y812_c00001{bottom:734.445000px;}
.y40b_c00001{bottom:734.805000px;}
.yaca_c00001{bottom:735.165000px;}
.yaaf_c00001{bottom:735.169680px;}
.y487_c00001{bottom:735.525000px;}
.ybb9_c00001{bottom:735.557250px;}
.yeee_c00001{bottom:735.884850px;}
.yc1a_c00001{bottom:735.885000px;}
.yfcc_c00001{bottom:735.889680px;}
.yec2_c00001{bottom:736.242840px;}
.y61e_c00001{bottom:736.245000px;}
.y10c4_c00001{bottom:736.605000px;}
.y739_c00001{bottom:736.965000px;}
.y738_c00001{bottom:736.966800px;}
.y52f_c00001{bottom:737.325000px;}
.yd6f_c00001{bottom:737.683920px;}
.ye94_c00001{bottom:737.687520px;}
.ye2d_c00001{bottom:738.043920px;}
.y2fb_c00001{bottom:738.045000px;}
.ye20_c00001{bottom:738.047520px;}
.ya53_c00001{bottom:738.048600px;}
.ya18_c00001{bottom:738.049680px;}
.ye6a_c00001{bottom:738.052200px;}
.ya2b_c00001{bottom:738.053280px;}
.yd18_c00001{bottom:738.070200px;}
.ya7_c00001{bottom:738.405000px;}
.y101f_c00001{bottom:738.409680px;}
.ye4c_c00001{bottom:738.414360px;}
.y631_c00001{bottom:738.765000px;}
.y671_c00001{bottom:738.768600px;}
.y381_c00001{bottom:739.125000px;}
.yf59_c00001{bottom:739.129680px;}
.y3c7_c00001{bottom:739.485000px;}
.y7f_c00001{bottom:739.845000px;}
.yf6e_c00001{bottom:740.205000px;}
.yfd9_c00001{bottom:740.565000px;}
.yeb7_c00001{bottom:740.925000px;}
.y287_c00001{bottom:741.285000px;}
.y57b_c00001{bottom:741.645000px;}
.y992_c00001{bottom:742.005000px;}
.y105f_c00001{bottom:742.365000px;}
.y5e0_c00001{bottom:742.725000px;}
.y863_c00001{bottom:742.740840px;}
.y1ac_c00001{bottom:743.085000px;}
.y1e8_c00001{bottom:743.445000px;}
.yc6f_c00001{bottom:743.805000px;}
.yf97_c00001{bottom:744.165000px;}
.yb89_c00001{bottom:744.179400px;}
.y3b3_c00001{bottom:744.525000px;}
.y53c_c00001{bottom:744.885000px;}
.ycf7_c00001{bottom:745.243920px;}
.yb21_c00001{bottom:745.244280px;}
.y4b2_c00001{bottom:745.245000px;}
.y9a9_c00001{bottom:745.594200px;}
.y31c_c00001{bottom:745.601400px;}
.y5ad_c00001{bottom:745.605000px;}
.ya95_c00001{bottom:745.609680px;}
.yf1_c00001{bottom:745.965000px;}
.y9eb_c00001{bottom:746.325000px;}
.yf01_c00001{bottom:746.329680px;}
.y466_c00001{bottom:746.682840px;}
.y467_c00001{bottom:746.685000px;}
.yfb1_c00001{bottom:747.045000px;}
.y6ce_c00001{bottom:747.401400px;}
.y512_c00001{bottom:747.405000px;}
.y112e_c00001{bottom:747.768600px;}
.ycd6_c00001{bottom:748.125000px;}
.y87f_c00001{bottom:748.485000px;}
.y148_c00001{bottom:748.845000px;}
.yf38_c00001{bottom:749.203920px;}
.y9d4_c00001{bottom:749.205000px;}
.y4e0_c00001{bottom:749.561040px;}
.yf67_c00001{bottom:749.565000px;}
.y1029_c00001{bottom:749.566800px;}
.y41b_c00001{bottom:749.925000px;}
.y2b_c00001{bottom:750.285000px;}
.y236_c00001{bottom:750.645000px;}
.yc40_c00001{bottom:750.649680px;}
.y235_c00001{bottom:750.651480px;}
.y696_c00001{bottom:751.005000px;}
.y4fa_c00001{bottom:751.365000px;}
.ycc2_c00001{bottom:751.725000px;}
.y8c6_c00001{bottom:752.085000px;}
.ycb0_c00001{bottom:752.443920px;}
.ycb1_c00001{bottom:752.445000px;}
.y1055_c00001{bottom:752.805000px;}
.yb0c_c00001{bottom:753.165000px;}
.yd2d_c00001{bottom:753.165720px;}
.y1019_c00001{bottom:753.166800px;}
.y136_c00001{bottom:753.525000px;}
.yec1_c00001{bottom:753.526800px;}
.yd77_c00001{bottom:753.885000px;}
.y42f_c00001{bottom:754.245000px;}
.y737_c00001{bottom:754.605000px;}
.y736_c00001{bottom:754.605720px;}
.y590_c00001{bottom:754.623000px;}
.y399_c00001{bottom:754.965000px;}
.ya62_c00001{bottom:755.683920px;}
.y613_c00001{bottom:755.685000px;}
.y650_c00001{bottom:756.045000px;}
.ydd9_c00001{bottom:756.046800px;}
.y1049_c00001{bottom:756.048600px;}
.y363_c00001{bottom:756.405000px;}
.y7b9_c00001{bottom:756.413280px;}
.yeed_c00001{bottom:756.764850px;}
.y2d5_c00001{bottom:756.765000px;}
.y25c_c00001{bottom:757.485000px;}
.yb12_c00001{bottom:757.845000px;}
.y17c_c00001{bottom:758.205000px;}
.yb65_c00001{bottom:758.560680px;}
.yff1_c00001{bottom:758.565000px;}
.yff0_c00001{bottom:758.566800px;}
.y4f_c00001{bottom:759.285000px;}
.ybb8_c00001{bottom:759.320850px;}
.yfde_c00001{bottom:759.645000px;}
.ya00_c00001{bottom:759.649680px;}
.y956_c00001{bottom:760.002840px;}
.y957_c00001{bottom:760.005000px;}
.y2c1_c00001{bottom:760.365000px;}
.y486_c00001{bottom:760.366800px;}
.yac9_c00001{bottom:760.369320px;}
.y1d3_c00001{bottom:760.725000px;}
.yd4c_c00001{bottom:760.728450px;}
.yc_c00001{bottom:761.085000px;}
.y838_c00001{bottom:761.805000px;}
.y286_c00001{bottom:762.165000px;}
.yd6e_c00001{bottom:762.525000px;}
.ye93_c00001{bottom:762.528600px;}
.y75f_c00001{bottom:762.881040px;}
.yb20_c00001{bottom:762.882480px;}
.y214_c00001{bottom:762.885000px;}
.ye1f_c00001{bottom:762.888600px;}
.yaec_c00001{bottom:762.889680px;}
.y89b_c00001{bottom:763.236000px;}
.ya52_c00001{bottom:763.243920px;}
.ya17_c00001{bottom:763.245000px;}
.ydba_c00001{bottom:763.247520px;}
.ya2a_c00001{bottom:763.248600px;}
.ya42_c00001{bottom:763.251120px;}
.yd17_c00001{bottom:763.265520px;}
.y101e_c00001{bottom:763.603920px;}
.y5df_c00001{bottom:763.605000px;}
.y670_c00001{bottom:763.609680px;}
.ycd_c00001{bottom:763.965000px;}
.y8ea_c00001{bottom:763.966800px;}
.y465_c00001{bottom:764.321040px;}
.y8b5_c00001{bottom:764.325000px;}
.yc8a_c00001{bottom:764.685000px;}
.yf96_c00001{bottom:765.045000px;}
.y688_c00001{bottom:765.405000px;}
.y112d_c00001{bottom:765.406800px;}
.y78d_c00001{bottom:766.125000px;}
.y450_c00001{bottom:766.485000px;}
.yf0_c00001{bottom:766.845000px;}
.y991_c00001{bottom:767.203920px;}
.yf8c_c00001{bottom:767.205000px;}
.y380_c00001{bottom:767.565000px;}
.y1111_c00001{bottom:767.569530px;}
.yb88_c00001{bottom:767.574000px;}
.yb55_c00001{bottom:767.925000px;}
.y511_c00001{bottom:768.285000px;}
.y1e7_c00001{bottom:768.645000px;}
.y71b_c00001{bottom:769.005000px;}
.y5c0_c00001{bottom:769.725000px;}
.y700_c00001{bottom:770.085000px;}
.ycf6_c00001{bottom:770.086800px;}
.y6f2_c00001{bottom:770.445000px;}
.ya81_c00001{bottom:770.803920px;}
.y40a_c00001{bottom:770.805000px;}
.y630_c00001{bottom:771.162840px;}
.y11c_c00001{bottom:771.165000px;}
.yec0_c00001{bottom:771.166800px;}
.y3e9_c00001{bottom:771.525000px;}
.y10a6_c00001{bottom:771.885000px;}
.y735_c00001{bottom:771.889680px;}
.y2fa_c00001{bottom:772.245000px;}
.ye56_c00001{bottom:772.605000px;}
.ye55_c00001{bottom:772.610760px;}
.y3b2_c00001{bottom:772.965000px;}
.ydaa_c00001{bottom:772.967160px;}
.yba4_c00001{bottom:773.685000px;}
.y1048_c00001{bottom:773.686800px;}
.y5ac_c00001{bottom:774.041040px;}
.yf37_c00001{bottom:774.045000px;}
.yf36_c00001{bottom:774.048600px;}
.y5ef_c00001{bottom:774.405000px;}
.yd76_c00001{bottom:774.765000px;}
.y42e_c00001{bottom:775.125000px;}
.y96c_c00001{bottom:775.485000px;}
.yc3f_c00001{bottom:775.843920px;}
.y7e_c00001{bottom:775.845000px;}
.y234_c00001{bottom:775.846800px;}
.y695_c00001{bottom:776.205000px;}
.yfef_c00001{bottom:776.206800px;}
.y563_c00001{bottom:776.925000px;}
.yf4a_c00001{bottom:776.929680px;}
.y4b1_c00001{bottom:777.285000px;}
.yf05_c00001{bottom:777.645000px;}
.y485_c00001{bottom:778.005000px;}
.yd2c_c00001{bottom:778.006800px;}
.y18_c00001{bottom:778.365000px;}
.y4fe_c00001{bottom:779.085000px;}
.y9a8_c00001{bottom:779.436000px;}
.y317_c00001{bottom:779.805000px;}
.y955_c00001{bottom:780.162840px;}
.ycc1_c00001{bottom:780.163920px;}
.y75e_c00001{bottom:780.165000px;}
.yb1f_c00001{bottom:780.520680px;}
.ya6_c00001{bottom:780.525000px;}
.y10df_c00001{bottom:780.884850px;}
.y1000_c00001{bottom:780.885000px;}
.y6cd_c00001{bottom:781.243200px;}
.y106a_c00001{bottom:781.245000px;}
.y1d2_c00001{bottom:781.605000px;}
.y8e9_c00001{bottom:781.606800px;}
.y7b8_c00001{bottom:781.608600px;}
.y58f_c00001{bottom:781.628400px;}
.y19a_c00001{bottom:781.965000px;}
.y9ca_c00001{bottom:782.325000px;}
.y9c9_c00001{bottom:782.332200px;}
.ybb7_c00001{bottom:782.715450px;}
.y112b_c00001{bottom:783.043920px;}
.y112c_c00001{bottom:783.045000px;}
.yb64_c00001{bottom:783.401760px;}
.y612_c00001{bottom:783.765000px;}
.ycbb_c00001{bottom:784.125000px;}
.ycc_c00001{bottom:784.845000px;}
.y2d4_c00001{bottom:785.205000px;}
.yaae_c00001{bottom:785.209680px;}
.yac8_c00001{bottom:785.564640px;}
.yf66_c00001{bottom:785.565000px;}
.yd4b_c00001{bottom:785.569530px;}
.y862_c00001{bottom:785.580120px;}
.yc89_c00001{bottom:785.925000px;}
.y2a_c00001{bottom:786.285000px;}
.yf95_c00001{bottom:787.005000px;}
.yd6d_c00001{bottom:787.723920px;}
.y4e_c00001{bottom:787.725000px;}
.ye1e_c00001{bottom:788.083920px;}
.yef_c00001{bottom:788.085000px;}
.ydb9_c00001{bottom:788.088600px;}
.ya16_c00001{bottom:788.089680px;}
.ya41_c00001{bottom:788.092200px;}
.ye3a_c00001{bottom:788.093280px;}
.yd16_c00001{bottom:788.106600px;}
.y101d_c00001{bottom:788.445000px;}
.y62f_c00001{bottom:788.446800px;}
.y66e_c00001{bottom:788.803920px;}
.y66f_c00001{bottom:788.805000px;}
.yb0b_c00001{bottom:789.165000px;}
.y135_c00001{bottom:789.525000px;}
.y71a_c00001{bottom:790.245000px;}
.yb53_c00001{bottom:790.605000px;}
.y285_c00001{bottom:790.965000px;}
.y108a_c00001{bottom:790.969680px;}
.y44f_c00001{bottom:791.325000px;}
.y44e_c00001{bottom:791.326800px;}
.yb87_c00001{bottom:791.337600px;}
.y41a_c00001{bottom:791.685000px;}
.y4df_c00001{bottom:792.041040px;}
.y990_c00001{bottom:792.045000px;}
.y98f_c00001{bottom:792.049680px;}
.y7c7_c00001{bottom:792.405000px;}
.y1110_c00001{bottom:792.764850px;}
.yeec_c00001{bottom:792.765000px;}
.y233_c00001{bottom:793.485000px;}
.y5cf_c00001{bottom:793.845000px;}
.yfee_c00001{bottom:793.845720px;}
.y17b_c00001{bottom:794.205000px;}
.yda9_c00001{bottom:794.565000px;}
.yda8_c00001{bottom:794.567160px;}
.yede_c00001{bottom:794.925000px;}
.y5a3_c00001{bottom:795.285000px;}
.y89a_c00001{bottom:795.634200px;}
.y7a2_c00001{bottom:795.645000px;}
.yd2b_c00001{bottom:795.646800px;}
.yded_c00001{bottom:795.648600px;}
.ya94_c00001{bottom:795.649680px;}
.y37f_c00001{bottom:796.005000px;}
.y96b_c00001{bottom:796.365000px;}
.y829_c00001{bottom:796.725000px;}
.yb_c00001{bottom:797.085000px;}
.y837_c00001{bottom:797.801040px;}
.yb1e_c00001{bottom:797.804640px;}
.y5bf_c00001{bottom:798.165000px;}
.y6f1_c00001{bottom:798.525000px;}
.y213_c00001{bottom:798.885000px;}
.y8e7_c00001{bottom:799.241040px;}
.yf35_c00001{bottom:799.243920px;}
.y8e8_c00001{bottom:799.245000px;}
.y57a_c00001{bottom:799.603200px;}
.y925_c00001{bottom:799.605000px;}
.y4ef_c00001{bottom:799.965000px;}
.y1107_c00001{bottom:799.966800px;}
.y954_c00001{bottom:800.319960px;}
.y8b4_c00001{bottom:800.325000px;}
.yc3d_c00001{bottom:800.677800px;}
.yed3_c00001{bottom:800.683920px;}
.yc3e_c00001{bottom:800.685000px;}
.yb63_c00001{bottom:801.039960px;}
.ya5_c00001{bottom:801.405000px;}
.y10de_c00001{bottom:801.764850px;}
.y10dd_c00001{bottom:801.765000px;}
.y78c_c00001{bottom:802.125000px;}
.y562_c00001{bottom:802.485000px;}
.y162_c00001{bottom:802.845000px;}
.y484_c00001{bottom:803.205000px;}
.y42d_c00001{bottom:803.565000px;}
.yfb0_c00001{bottom:803.925000px;}
.yc9d_c00001{bottom:804.285000px;}
.y694_c00001{bottom:804.645000px;}
.ycba_c00001{bottom:805.005000px;}
.yca3_c00001{bottom:805.365000px;}
.y75d_c00001{bottom:805.366440px;}
.y4b0_c00001{bottom:805.725000px;}
.y101c_c00001{bottom:806.083920px;}
.y62e_c00001{bottom:806.085000px;}
.ybb6_c00001{bottom:806.110050px;}
.y7b7_c00001{bottom:806.449680px;}
.y3ef_c00001{bottom:806.805000px;}
.y11b_c00001{bottom:807.165000px;}
.y9c7_c00001{bottom:807.525000px;}
.y4fd_c00001{bottom:807.885000px;}
.y112a_c00001{bottom:807.886800px;}
.y2f9_c00001{bottom:808.245000px;}
.y58e_c00001{bottom:808.261200px;}
.y611_c00001{bottom:808.960680px;}
.yee_c00001{bottom:808.965000px;}
.y44d_c00001{bottom:808.966800px;}
.y347_c00001{bottom:809.324850px;}
.y348_c00001{bottom:809.325000px;}
.y9ff_c00001{bottom:809.685000px;}
.y316_c00001{bottom:810.045000px;}
.y5ee_c00001{bottom:810.405000px;}
.yac7_c00001{bottom:810.759960px;}
.yd4a_c00001{bottom:810.764850px;}
.y719_c00001{bottom:811.125000px;}
.y10f7_c00001{bottom:811.485000px;}
.y7d_c00001{bottom:811.845000px;}
.yc96_c00001{bottom:812.205000px;}
.y811_c00001{bottom:812.565000px;}
.yd5d_c00001{bottom:812.919960px;}
.y419_c00001{bottom:812.925000px;}
.yaeb_c00001{bottom:812.929680px;}
.ya51_c00001{bottom:813.283920px;}
.y31b_c00001{bottom:813.285000px;}
.ya40_c00001{bottom:813.287520px;}
.yd3d_c00001{bottom:813.288600px;}
.yd15_c00001{bottom:813.301920px;}
.y9a7_c00001{bottom:813.634200px;}
.y2d3_c00001{bottom:813.645000px;}
.y66d_c00001{bottom:813.646800px;}
.ye4b_c00001{bottom:813.649680px;}
.yc19_c00001{bottom:814.005000px;}
.yc6e_c00001{bottom:814.365000px;}
.yfcb_c00001{bottom:814.725000px;}
.yb86_c00001{bottom:814.732200px;}
.y17a_c00001{bottom:815.085000px;}
.y6cc_c00001{bottom:815.441400px;}
.yb1d_c00001{bottom:815.442840px;}
.y4d_c00001{bottom:816.165000px;}
.y362_c00001{bottom:816.525000px;}
.y8e6_c00001{bottom:816.526800px;}
.y5ab_c00001{bottom:816.885000px;}
.y98e_c00001{bottom:817.243920px;}
.yb0a_c00001{bottom:817.601040px;}
.y2c0_c00001{bottom:817.605000px;}
.y2a0_c00001{bottom:817.965000px;}
.y232_c00001{bottom:818.685000px;}
.yfed_c00001{bottom:818.686800px;}
.yc3c_c00001{bottom:818.689680px;}
.y284_c00001{bottom:819.045000px;}
.y113b_c00001{bottom:819.405000px;}
.y1e6_c00001{bottom:819.765000px;}
.y212_c00001{bottom:820.125000px;}
.y1014_c00001{bottom:820.485000px;}
.ydec_c00001{bottom:820.843920px;}
.ycb_c00001{bottom:820.845000px;}
.yeb6_c00001{bottom:821.205000px;}
.y734_c00001{bottom:821.925000px;}
.y29_c00001{bottom:822.285000px;}
.y1018_c00001{bottom:822.645000px;}
.y75c_c00001{bottom:822.650400px;}
.yf6d_c00001{bottom:823.005000px;}
.y1d1_c00001{bottom:823.725000px;}
.y161_c00001{bottom:824.085000px;}
.y5f8_c00001{bottom:824.445000px;}
.y37e_c00001{bottom:824.805000px;}
.yf00_c00001{bottom:825.164850px;}
.y1129_c00001{bottom:825.521040px;}
.y79c_c00001{bottom:825.525000px;}
.y610_c00001{bottom:826.244640px;}
.y5be_c00001{bottom:826.603920px;}
.y44c_c00001{bottom:826.605000px;}
.y6f0_c00001{bottom:826.965000px;}
.y7a1_c00001{bottom:827.325000px;}
.y953_c00001{bottom:827.682840px;}
.y134_c00001{bottom:827.685000px;}
.y899_c00001{bottom:828.032400px;}
.y4c6_c00001{bottom:828.045000px;}
.y11a_c00001{bottom:828.405000px;}
.yb62_c00001{bottom:828.406800px;}
.y861_c00001{bottom:828.419400px;}
.yfb6_c00001{bottom:828.765000px;}
.y2f8_c00001{bottom:828.768600px;}
.yed_c00001{bottom:829.845000px;}
.ybb5_c00001{bottom:829.873650px;}
.yfbd_c00001{bottom:830.205000px;}
.yca2_c00001{bottom:830.565000px;}
.ycc0_c00001{bottom:830.925000px;}
.y5ed_c00001{bottom:831.285000px;}
.y483_c00001{bottom:831.645000px;}
.y42c_c00001{bottom:832.005000px;}
.y1052_c00001{bottom:832.365000px;}
.yb1c_c00001{bottom:833.081040px;}
.ya_c00001{bottom:833.085000px;}
.y579_c00001{bottom:833.437800px;}
.y693_c00001{bottom:833.445000px;}
.y87e_c00001{bottom:833.805000px;}
.y7c6_c00001{bottom:834.165000px;}
.y8e5_c00001{bottom:834.168600px;}
.y4de_c00001{bottom:834.525000px;}
.y9fe_c00001{bottom:834.529680px;}
.y778_c00001{bottom:834.885000px;}
.yb09_c00001{bottom:834.886800px;}
.y58d_c00001{bottom:834.894000px;}
.yaad_c00001{bottom:835.245000px;}
.y3ee_c00001{bottom:835.605000px;}
.yd49_c00001{bottom:835.609680px;}
.y97c_c00001{bottom:835.965000px;}
.y179_c00001{bottom:836.325000px;}
.y561_c00001{bottom:836.326800px;}
.ya4_c00001{bottom:837.405000px;}
.y346_c00001{bottom:837.764850px;}
.y345_c00001{bottom:837.765000px;}
.ye1d_c00001{bottom:838.122840px;}
.yb52_c00001{bottom:838.124280px;}
.y78b_c00001{bottom:838.125000px;}
.yb85_c00001{bottom:838.126800px;}
.ya3f_c00001{bottom:838.128600px;}
.ya29_c00001{bottom:838.129680px;}
.yda7_c00001{bottom:838.135800px;}
.yd14_c00001{bottom:838.143000px;}
.y3c6_c00001{bottom:838.483920px;}
.y315_c00001{bottom:838.485000px;}
.yeb5_c00001{bottom:838.488600px;}
.y199_c00001{bottom:838.845000px;}
.ycce_c00001{bottom:839.205000px;}
.y64f_c00001{bottom:840.285000px;}
.yd5c_c00001{bottom:840.285720px;}
.y75b_c00001{bottom:840.288600px;}
.yc95_c00001{bottom:841.005000px;}
.y31a_c00001{bottom:841.365000px;}
.yca_c00001{bottom:842.085000px;}
.y98d_c00001{bottom:842.085720px;}
.yebf_c00001{bottom:842.089680px;}
.y1106_c00001{bottom:842.445000px;}
.y1105_c00001{bottom:842.446800px;}
.yf60_c00001{bottom:842.803920px;}
.y52e_c00001{bottom:842.805000px;}
.y28_c00001{bottom:843.165000px;}
.y5aa_c00001{bottom:843.525000px;}
.y60f_c00001{bottom:843.882840px;}
.yc3a_c00001{bottom:843.883920px;}
.yc3b_c00001{bottom:843.885000px;}
.y283_c00001{bottom:844.245000px;}
.y49e_c00001{bottom:844.965000px;}
.y4b_c00001{bottom:845.324850px;}
.y4c_c00001{bottom:845.325000px;}
.ye06_c00001{bottom:845.683920px;}
.y409_c00001{bottom:845.685000px;}
.y2bf_c00001{bottom:846.043920px;}
.yb61_c00001{bottom:846.045000px;}
.yb60_c00001{bottom:846.047520px;}
.y79b_c00001{bottom:846.405000px;}
.y2f7_c00001{bottom:846.406800px;}
.y733_c00001{bottom:847.125000px;}
.y732_c00001{bottom:847.126650px;}
.y9a6_c00001{bottom:847.476000px;}
.y1149_c00001{bottom:847.485000px;}
.y7c_c00001{bottom:847.845000px;}
.y952_c00001{bottom:847.851840px;}
.y361_c00001{bottom:848.205000px;}
.y831_c00001{bottom:848.565000px;}
.y418_c00001{bottom:848.925000px;}
.y6cb_c00001{bottom:849.283200px;}
.y119_c00001{bottom:849.285000px;}
.yeeb_c00001{bottom:849.641040px;}
.y1013_c00001{bottom:849.645000px;}
.yc18_c00001{bottom:850.005000px;}
.yb1b_c00001{bottom:850.365000px;}
.yb1a_c00001{bottom:850.366800px;}
.y474_c00001{bottom:850.725000px;}
.yec_c00001{bottom:851.085000px;}
.y578_c00001{bottom:851.445000px;}
.y44b_c00001{bottom:851.805000px;}
.yf49_c00001{bottom:852.165000px;}
.y160_c00001{bottom:852.525000px;}
.ybb4_c00001{bottom:853.268250px;}
.yeff_c00001{bottom:853.604850px;}
.yc79_c00001{bottom:853.605000px;}
.y25b_c00001{bottom:853.965000px;}
.y810_c00001{bottom:854.325000px;}
.yc80_c00001{bottom:855.405000px;}
.yb51_c00001{bottom:855.408240px;}
.y211_c00001{bottom:856.125000px;}
.y37d_c00001{bottom:856.485000px;}
.y147_c00001{bottom:856.845000px;}
.y178_c00001{bottom:857.205000px;}
.y872_c00001{bottom:857.925000px;}
.yf8b_c00001{bottom:858.281040px;}
.y3b1_c00001{bottom:858.285000px;}
.ya3_c00001{bottom:858.645000px;}
.y9ea_c00001{bottom:859.005000px;}
.y8e4_c00001{bottom:859.009680px;}
.y6b1_c00001{bottom:859.365000px;}
.y1d0_c00001{bottom:859.725000px;}
.y29f_c00001{bottom:860.085000px;}
.y692_c00001{bottom:860.445000px;}
.y1128_c00001{bottom:860.446800px;}
.y898_c00001{bottom:860.799600px;}
.yd48_c00001{bottom:860.805000px;}
.y64e_c00001{bottom:861.165000px;}
.y60e_c00001{bottom:861.521040px;}
.yb84_c00001{bottom:861.521400px;}
.y58c_c00001{bottom:861.899400px;}
.ycd5_c00001{bottom:862.245000px;}
.y5de_c00001{bottom:862.605000px;}
.yd6c_c00001{bottom:862.609680px;}
.ye1c_c00001{bottom:862.963920px;}
.yc9_c00001{bottom:862.965000px;}
.ya3e_c00001{bottom:863.323920px;}
.y3c5_c00001{bottom:863.325000px;}
.y3c4_c00001{bottom:863.329680px;}
.yd2a_c00001{bottom:863.331120px;}
.yd13_c00001{bottom:863.338320px;}
.yeb4_c00001{bottom:863.683920px;}
.y9d3_c00001{bottom:863.685000px;}
.yb5f_c00001{bottom:863.685720px;}
.y27_c00001{bottom:864.045000px;}
.yc6d_c00001{bottom:864.049680px;}
.y3ed_c00001{bottom:864.405000px;}
.y731_c00001{bottom:864.764850px;}
.y4fc_c00001{bottom:864.765000px;}
.yfff_c00001{bottom:865.125000px;}
.y75a_c00001{bottom:865.129680px;}
.y4af_c00001{bottom:865.485000px;}
.y133_c00001{bottom:865.845000px;}
.y1042_c00001{bottom:866.205000px;}
.y344_c00001{bottom:866.565000px;}
.yeea_c00001{bottom:866.925000px;}
.yee9_c00001{bottom:866.929680px;}
.y314_c00001{bottom:867.285000px;}
.y951_c00001{bottom:867.645000px;}
.y950_c00001{bottom:867.651480px;}
.y718_c00001{bottom:868.005000px;}
.y1148_c00001{bottom:868.365000px;}
.y560_c00001{bottom:868.725000px;}
.yc39_c00001{bottom:868.729680px;}
.y9_c00001{bottom:869.085000px;}
.yc94_c00001{bottom:869.445000px;}
.y98b_c00001{bottom:869.803920px;}
.y98c_c00001{bottom:869.805000px;}
.y87d_c00001{bottom:869.808600px;}
.y118_c00001{bottom:870.165000px;}
.ya80_c00001{bottom:870.525000px;}
.yc17_c00001{bottom:870.526080px;}
.ydeb_c00001{bottom:870.529680px;}
.ya93_c00001{bottom:870.533130px;}
.y1e5_c00001{bottom:870.885000px;}
.y52d_c00001{bottom:871.605000px;}
.y860_c00001{bottom:871.615080px;}
.yeb_c00001{bottom:871.965000px;}
.y8b3_c00001{bottom:872.325000px;}
.y282_c00001{bottom:872.685000px;}
.y4dd_c00001{bottom:873.045000px;}
.yb50_c00001{bottom:873.046440px;}
.y5ec_c00001{bottom:873.405000px;}
.y4a_c00001{bottom:873.764850px;}
.y111c_c00001{bottom:874.484850px;}
.y10f6_c00001{bottom:874.485000px;}
.y198_c00001{bottom:874.845000px;}
.y80f_c00001{bottom:875.565000px;}
.y231_c00001{bottom:876.285000px;}
.y5bd_c00001{bottom:876.645000px;}
.ybb3_c00001{bottom:876.662850px;}
.y360_c00001{bottom:877.005000px;}
.yf48_c00001{bottom:877.365000px;}
.yb07_c00001{bottom:877.721040px;}
.yb08_c00001{bottom:877.725000px;}
.y1127_c00001{bottom:878.081040px;}
.y146_c00001{bottom:878.085000px;}
.y10c3_c00001{bottom:878.445000px;}
.yc78_c00001{bottom:878.803920px;}
.y60d_c00001{bottom:878.805000px;}
.y60c_c00001{bottom:878.809680px;}
.yf20_c00001{bottom:879.165000px;}
.y9c6_c00001{bottom:879.525000px;}
.y9e9_c00001{bottom:879.885000px;}
.yf6c_c00001{bottom:880.245000px;}
.y29e_c00001{bottom:880.965000px;}
.y61d_c00001{bottom:881.325000px;}
.y9a5_c00001{bottom:881.674200px;}
.y408_c00001{bottom:881.685000px;}
.y64d_c00001{bottom:882.045000px;}
.y79a_c00001{bottom:882.405000px;}
.yefe_c00001{bottom:882.764850px;}
.yefd_c00001{bottom:882.765000px;}
.y6ca_c00001{bottom:883.481400px;}
.y1139_c00001{bottom:883.485000px;}
.y7b_c00001{bottom:883.845000px;}
.y8e3_c00001{bottom:884.205000px;}
.y8e2_c00001{bottom:884.221200px;}
.y9fd_c00001{bottom:884.573280px;}
.y101b_c00001{bottom:884.925000px;}
.y473_c00001{bottom:885.285000px;}
.y1cf_c00001{bottom:885.645000px;}
.y7b6_c00001{bottom:886.005000px;}
.y836_c00001{bottom:886.365000px;}
.y2ae_c00001{bottom:887.085000px;}
.yca1_c00001{bottom:887.445000px;}
.y1074_c00001{bottom:887.801040px;}
.yd6b_c00001{bottom:887.805000px;}
.yd6a_c00001{bottom:887.809680px;}
.yc16_c00001{bottom:888.164280px;}
.y37c_c00001{bottom:888.165000px;}
.yd9a_c00001{bottom:888.168600px;}
.yaea_c00001{bottom:888.169680px;}
.ya15_c00001{bottom:888.172200px;}
.yd12_c00001{bottom:888.179400px;}
.y398_c00001{bottom:888.525000px;}
.yb5e_c00001{bottom:888.526800px;}
.y58b_c00001{bottom:888.532200px;}
.y2f6_c00001{bottom:888.885000px;}
.y2f5_c00001{bottom:888.886800px;}
.yc6c_c00001{bottom:889.245000px;}
.y1147_c00001{bottom:889.605000px;}
.y44a_c00001{bottom:889.965000px;}
.y759_c00001{bottom:890.325000px;}
.yb4f_c00001{bottom:890.684640px;}
.y15f_c00001{bottom:890.685000px;}
.ycb9_c00001{bottom:891.045000px;}
.y117_c00001{bottom:891.405000px;}
.y78a_c00001{bottom:891.414360px;}
.y3ff_c00001{bottom:891.765000px;}
.y210_c00001{bottom:892.125000px;}
.y1050_c00001{bottom:892.125720px;}
.y52c_c00001{bottom:892.485000px;}
.y1ab_c00001{bottom:892.845000px;}
.yd5b_c00001{bottom:892.845720px;}
.y94f_c00001{bottom:892.846800px;}
.y897_c00001{bottom:893.197800px;}
.y177_c00001{bottom:893.205000px;}
.y42b_c00001{bottom:893.565000px;}
.yc37_c00001{bottom:893.923770px;}
.yc38_c00001{bottom:893.925000px;}
.ycd0_c00001{bottom:894.285000px;}
.ya2_c00001{bottom:894.645000px;}
.y98a_c00001{bottom:894.645720px;}
.yb06_c00001{bottom:895.013280px;}
.y1054_c00001{bottom:895.365000px;}
.ya7f_c00001{bottom:895.723920px;}
.ydea_c00001{bottom:895.725000px;}
.ye05_c00001{bottom:895.727370px;}
.ya92_c00001{bottom:895.728450px;}
.y2be_c00001{bottom:896.081040px;}
.y25a_c00001{bottom:896.085000px;}
.y1e4_c00001{bottom:896.445000px;}
.yc93_c00001{bottom:897.884850px;}
.y7e4_c00001{bottom:897.885000px;}
.y343_c00001{bottom:898.245000px;}
.y2d2_c00001{bottom:898.963920px;}
.yc8_c00001{bottom:898.965000px;}
.y7a0_c00001{bottom:899.325000px;}
.y26_c00001{bottom:900.045000px;}
.ybb2_c00001{bottom:900.057450px;}
.y5a9_c00001{bottom:900.405000px;}
.yf89_c00001{bottom:900.761040px;}
.yf8a_c00001{bottom:900.764850px;}
.yfb5_c00001{bottom:900.765000px;}
.y9e8_c00001{bottom:901.125000px;}
.y281_c00001{bottom:901.485000px;}
.y49_c00001{bottom:901.845000px;}
.y417_c00001{bottom:902.205000px;}
.y87c_c00001{bottom:902.206800px;}
.y64c_c00001{bottom:903.285000px;}
.y799_c00001{bottom:903.645000px;}
.y60b_c00001{bottom:904.005000px;}
.y8e1_c00001{bottom:904.014360px;}
.y230_c00001{bottom:904.359600px;}
.y1138_c00001{bottom:904.365000px;}
.y10ca_c00001{bottom:904.725000px;}
.y8_c00001{bottom:905.085000px;}
.y35f_c00001{bottom:905.445000px;}
.yc15_c00001{bottom:905.802480px;}
.y111b_c00001{bottom:905.804850px;}
.yb5d_c00001{bottom:906.165000px;}
.yb5c_c00001{bottom:906.166800px;}
.y2f4_c00001{bottom:906.525000px;}
.y777_c00001{bottom:906.885000px;}
.yffe_c00001{bottom:907.245000px;}
.yea_c00001{bottom:907.965000px;}
.yb4e_c00001{bottom:907.968600px;}
.y8b2_c00001{bottom:908.325000px;}
.y1ce_c00001{bottom:908.684280px;}
.yf6b_c00001{bottom:908.685000px;}
.yb83_c00001{bottom:909.045000px;}
.y397_c00001{bottom:909.405000px;}
.yf94_c00001{bottom:909.765000px;}
.y9fc_c00001{bottom:909.768600px;}
.y1104_c00001{bottom:910.123920px;}
.y464_c00001{bottom:910.125000px;}
.yaac_c00001{bottom:910.484640px;}
.y94e_c00001{bottom:910.485000px;}
.y6ee_c00001{bottom:910.845000px;}
.yd47_c00001{bottom:910.847520px;}
.yefc_c00001{bottom:911.205000px;}
.y80e_c00001{bottom:911.565000px;}
.y197_c00001{bottom:911.925000px;}
.y7c5_c00001{bottom:912.285000px;}
.y5bc_c00001{bottom:912.645000px;}
.yd69_c00001{bottom:913.005000px;}
.yd68_c00001{bottom:913.009680px;}
.ydb8_c00001{bottom:913.362840px;}
.yac6_c00001{bottom:913.363920px;}
.y2bd_c00001{bottom:913.365000px;}
.yae0_c00001{bottom:913.366440px;}
.ya14_c00001{bottom:913.367520px;}
.ye69_c00001{bottom:913.371120px;}
.ye4a_c00001{bottom:913.373130px;}
.yd11_c00001{bottom:913.374720px;}
.y3c3_c00001{bottom:913.725000px;}
.y145_c00001{bottom:914.085000px;}
.y116_c00001{bottom:914.445000px;}
.y85f_c00001{bottom:914.454360px;}
.y58a_c00001{bottom:915.165000px;}
.y9a4_c00001{bottom:915.516000px;}
.y3b0_c00001{bottom:915.525000px;}
.yca0_c00001{bottom:915.885000px;}
.y37b_c00001{bottom:916.245000px;}
.ycaf_c00001{bottom:916.605000px;}
.y789_c00001{bottom:916.609680px;}
.y259_c00001{bottom:916.965000px;}
.y4ae_c00001{bottom:916.966800px;}
.y104f_c00001{bottom:917.321040px;}
.y6c9_c00001{bottom:917.323200px;}
.yebe_c00001{bottom:917.325000px;}
.y407_c00001{bottom:917.328600px;}
.yf88_c00001{bottom:918.045000px;}
.y730_c00001{bottom:918.405000px;}
.yc36_c00001{bottom:918.764850px;}
.y449_c00001{bottom:919.125000px;}
.y4d7_c00001{bottom:919.485000px;}
.y87b_c00001{bottom:919.841040px;}
.y7a_c00001{bottom:919.845000px;}
.yb05_c00001{bottom:920.208600px;}
.yd59_c00001{bottom:920.563920px;}
.yd5a_c00001{bottom:920.565000px;}
.ye04_c00001{bottom:920.568450px;}
.ya7e_c00001{bottom:920.569530px;}
.yde9_c00001{bottom:920.573280px;}
.y3ec_c00001{bottom:921.285000px;}
.y42a_c00001{bottom:921.645000px;}
.y1e3_c00001{bottom:922.005000px;}
.y988_c00001{bottom:922.363920px;}
.y989_c00001{bottom:922.365000px;}
.ycad_c00001{bottom:922.723920px;}
.y828_c00001{bottom:922.725000px;}
.y25_c00001{bottom:923.085000px;}
.yc14_c00001{bottom:923.086440px;}
.yf1f_c00001{bottom:923.445000px;}
.y2d1_c00001{bottom:923.805000px;}
.y2f3_c00001{bottom:923.806800px;}
.ybb1_c00001{bottom:923.821050px;}
.y798_c00001{bottom:924.525000px;}
.y896_c00001{bottom:925.596000px;}
.y835_c00001{bottom:925.605000px;}
.yb4d_c00001{bottom:925.606800px;}
.yfcf_c00001{bottom:925.965000px;}
.y1cd_c00001{bottom:926.322480px;}
.yc92_c00001{bottom:926.324850px;}
.yf65_c00001{bottom:926.685000px;}
.y313_c00001{bottom:927.405000px;}
.y319_c00001{bottom:927.765000px;}
.yb19_c00001{bottom:928.121040px;}
.y94c_c00001{bottom:928.123920px;}
.y94d_c00001{bottom:928.125000px;}
.ye9_c00001{bottom:928.845000px;}
.y176_c00001{bottom:929.205000px;}
.y8e0_c00001{bottom:929.209680px;}
.y20f_c00001{bottom:929.569170px;}
.y280_c00001{bottom:929.925000px;}
.y577_c00001{bottom:930.285000px;}
.yf93_c00001{bottom:930.644850px;}
.y396_c00001{bottom:930.645000px;}
.y22f_c00001{bottom:931.365000px;}
.y6ed_c00001{bottom:932.085000px;}
.y717_c00001{bottom:932.445000px;}
.ya1_c00001{bottom:932.805000px;}
.y7c4_c00001{bottom:933.165000px;}
.y1089_c00001{bottom:933.525000px;}
.y342_c00001{bottom:933.885000px;}
.y4ad_c00001{bottom:934.605000px;}
.y9fb_c00001{bottom:934.609680px;}
.y111a_c00001{bottom:934.964850px;}
.yc7_c00001{bottom:934.965000px;}
.y406_c00001{bottom:934.966800px;}
.y1103_c00001{bottom:934.969680px;}
.y776_c00001{bottom:934.970400px;}
.yf47_c00001{bottom:935.325000px;}
.yaab_c00001{bottom:935.679960px;}
.y110f_c00001{bottom:935.685000px;}
.yd46_c00001{bottom:935.688600px;}
.yb82_c00001{bottom:935.690400px;}
.y10c9_c00001{bottom:936.045000px;}
.y65d_c00001{bottom:936.405000px;}
.y60a_c00001{bottom:936.406800px;}
.yfb4_c00001{bottom:936.765000px;}
.y87a_c00001{bottom:937.125000px;}
.y879_c00001{bottom:937.128600px;}
.y10f5_c00001{bottom:937.485000px;}
.y48_c00001{bottom:937.845000px;}
.ye92_c00001{bottom:937.849680px;}
.yd67_c00001{bottom:938.203920px;}
.y55e_c00001{bottom:938.205000px;}
.yadf_c00001{bottom:938.207520px;}
.ya13_c00001{bottom:938.208600px;}
.ye68_c00001{bottom:938.212200px;}
.yd10_c00001{bottom:938.215800px;}
.y2bc_c00001{bottom:938.565000px;}
.ye49_c00001{bottom:938.568450px;}
.y64b_c00001{bottom:939.285000px;}
.y9d2_c00001{bottom:939.645000px;}
.yed2_c00001{bottom:940.005000px;}
.y1137_c00001{bottom:940.364850px;}
.y12b_c00001{bottom:940.365000px;}
.yc13_c00001{bottom:940.724640px;}
.y7_c00001{bottom:941.085000px;}
.y2f2_c00001{bottom:941.445000px;}
.y589_c00001{bottom:941.805000px;}
.y3c2_c00001{bottom:942.165000px;}
.y4c5_c00001{bottom:942.525000px;}
.y66c_c00001{bottom:942.885000px;}
.yb4b_c00001{bottom:943.241040px;}
.yb4c_c00001{bottom:943.245000px;}
.y1cc_c00001{bottom:943.606440px;}
.y132_c00001{bottom:943.965000px;}
.y472_c00001{bottom:944.325000px;}
.ycae_c00001{bottom:945.045000px;}
.yb04_c00001{bottom:945.049680px;}
.y797_c00001{bottom:945.405000px;}
.yd58_c00001{bottom:945.406800px;}
.yb18_c00001{bottom:945.408600px;}
.ye03_c00001{bottom:945.763770px;}
.y55f_c00001{bottom:945.764850px;}
.y24_c00001{bottom:945.765000px;}
.yde8_c00001{bottom:945.768600px;}
.y1146_c00001{bottom:946.485000px;}
.y784_c00001{bottom:946.845000px;}
.y987_c00001{bottom:947.203920px;}
.y1e2_c00001{bottom:947.205000px;}
.ybb0_c00001{bottom:947.215650px;}
.y448_c00001{bottom:947.565000px;}
.y37a_c00001{bottom:947.925000px;}
.y2d0_c00001{bottom:949.005000px;}
.y9a3_c00001{bottom:949.357800px;}
.y8df_c00001{bottom:949.371840px;}
.y3eb_c00001{bottom:949.725000px;}
.y4fb_c00001{bottom:950.081040px;}
.ye8_c00001{bottom:950.085000px;}
.y175_c00001{bottom:950.445000px;}
.yfaf_c00001{bottom:950.805000px;}
.y6c8_c00001{bottom:951.165000px;}
.y5eb_c00001{bottom:951.525000px;}
.y463_c00001{bottom:952.245000px;}
.y405_c00001{bottom:952.605000px;}
.y775_c00001{bottom:952.608600px;}
.y6ec_c00001{bottom:952.965000px;}
.yea1_c00001{bottom:953.685000px;}
.y609_c00001{bottom:954.046800px;}
.yc91_c00001{bottom:954.765000px;}
.y878_c00001{bottom:954.766800px;}
.y110d_c00001{bottom:955.125000px;}
.y52b_c00001{bottom:955.485000px;}
.y79_c00001{bottom:955.845000px;}
.y312_c00001{bottom:956.205000px;}
.y7e3_c00001{bottom:957.285000px;}
.y716_c00001{bottom:957.289320px;}
.y5a8_c00001{bottom:957.645000px;}
.y85e_c00001{bottom:957.650040px;}
.yc12_c00001{bottom:958.362840px;}
.y895_c00001{bottom:958.363200px;}
.y27f_c00001{bottom:958.725000px;}
.y47_c00001{bottom:959.085000px;}
.y1053_c00001{bottom:959.801040px;}
.y9fa_c00001{bottom:959.805000px;}
.y64a_c00001{bottom:960.165000px;}
.y1102_c00001{bottom:960.169680px;}
.yb4a_c00001{bottom:960.525000px;}
.yd45_c00001{bottom:960.883920px;}
.y50f_c00001{bottom:961.243920px;}
.y1cb_c00001{bottom:961.244640px;}
.y510_c00001{bottom:961.245000px;}
.y1136_c00001{bottom:961.604850px;}
.y1135_c00001{bottom:961.605000px;}
.ycf5_c00001{bottom:961.965000px;}
.y5bb_c00001{bottom:962.325000px;}
.ycdf_c00001{bottom:963.037800px;}
.yaaa_c00001{bottom:963.045000px;}
.yade_c00001{bottom:963.048600px;}
.ya12_c00001{bottom:963.049680px;}
.yac5_c00001{bottom:963.052200px;}
.ye67_c00001{bottom:963.053280px;}
.yd0f_c00001{bottom:963.056880px;}
.yf34_c00001{bottom:963.405000px;}
.ye48_c00001{bottom:963.409530px;}
.yf64_c00001{bottom:963.763770px;}
.y1119_c00001{bottom:963.764850px;}
.yb5b_c00001{bottom:963.765000px;}
.y110e_c00001{bottom:963.766800px;}
.yffd_c00001{bottom:964.125000px;}
.y131_c00001{bottom:964.845000px;}
.y1088_c00001{bottom:965.205000px;}
.y22e_c00001{bottom:965.565000px;}
.y834_c00001{bottom:965.569170px;}
.yfea_c00001{bottom:966.282840px;}
.y55d_c00001{bottom:966.285000px;}
.yf92_c00001{bottom:966.644850px;}
.y23_c00001{bottom:966.645000px;}
.y588_c00001{bottom:967.005000px;}
.y4ac_c00001{bottom:967.365000px;}
.y10c8_c00001{bottom:967.725000px;}
.y783_c00001{bottom:968.085000px;}
.y447_c00001{bottom:968.445000px;}
.yeab_c00001{bottom:968.805000px;}
.y8de_c00001{bottom:969.165000px;}
.y8dd_c00001{bottom:969.169890px;}
.y341_c00001{bottom:969.885000px;}
.yb02_c00001{bottom:970.243920px;}
.yb03_c00001{bottom:970.245000px;}
.yb17_c00001{bottom:970.603920px;}
.y94b_c00001{bottom:970.604850px;}
.y105e_c00001{bottom:970.605000px;}
.y94a_c00001{bottom:970.609680px;}
.ybaf_c00001{bottom:970.610250px;}
.ya0_c00001{bottom:970.965000px;}
.y174_c00001{bottom:971.325000px;}
.y608_c00001{bottom:971.685000px;}
.y607_c00001{bottom:971.696520px;}
.y986_c00001{bottom:972.045000px;}
.y3af_c00001{bottom:972.405000px;}
.y20e_c00001{bottom:972.764850px;}
.y1e1_c00001{bottom:972.765000px;}
.y9e7_c00001{bottom:973.124850px;}
.y462_c00001{bottom:973.125000px;}
.y10f4_c00001{bottom:973.485000px;}
.y5ce_c00001{bottom:973.845000px;}
.y2f1_c00001{bottom:974.205000px;}
.y429_c00001{bottom:974.925000px;}
.y428_c00001{bottom:974.926800px;}
.y715_c00001{bottom:974.927520px;}
.y80d_c00001{bottom:975.642480px;}
.y106f_c00001{bottom:975.645000px;}
.yc11_c00001{bottom:975.646800px;}
.y379_c00001{bottom:976.365000px;}
.y78_c00001{bottom:976.725000px;}
.y6_c00001{bottom:977.085000px;}
.y774_c00001{bottom:977.449680px;}
.y3ea_c00001{bottom:978.165000px;}
.ye7_c00001{bottom:978.525000px;}
.y1ca_c00001{bottom:978.882840px;}
.y46_c00001{bottom:979.965000px;}
.y8b1_c00001{bottom:980.325000px;}
.ycde_c00001{bottom:981.042840px;}
.y649_c00001{bottom:981.045000px;}
.y2cf_c00001{bottom:981.764850px;}
.y1145_c00001{bottom:982.485000px;}
.ycf4_c00001{bottom:982.845000px;}
.yc90_c00001{bottom:983.205000px;}
.y9a2_c00001{bottom:983.556000px;}
.yc88_c00001{bottom:983.566800px;}
.y311_c00001{bottom:984.645000px;}
.y9f9_c00001{bottom:984.649680px;}
.y318_c00001{bottom:985.005000px;}
.y6c7_c00001{bottom:985.363200px;}
.y1100_c00001{bottom:985.363920px;}
.y1101_c00001{bottom:985.365000px;}
.yb49_c00001{bottom:985.721040px;}
.y827_c00001{bottom:985.725000px;}
.yc77_c00001{bottom:985.725720px;}
.y130_c00001{bottom:986.085000px;}
.y50e_c00001{bottom:986.089680px;}
.y7e2_c00001{bottom:986.445000px;}
.y27e_c00001{bottom:987.165000px;}
.y22_c00001{bottom:987.525000px;}
.yf91_c00001{bottom:987.884850px;}
.yaa9_c00001{bottom:988.243920px;}
.ya11_c00001{bottom:988.245000px;}
.yac4_c00001{bottom:988.247520px;}
.yd7b_c00001{bottom:988.248600px;}
.yd0e_c00001{bottom:988.252200px;}
.ye47_c00001{bottom:988.604850px;}
.y6eb_c00001{bottom:988.965000px;}
.y5a7_c00001{bottom:989.325000px;}
.y727_c00001{bottom:989.685000px;}
.y5ba_c00001{bottom:990.405000px;}
.y894_c00001{bottom:990.761400px;}
.yc6_c00001{bottom:991.845000px;}
.y173_c00001{bottom:992.205000px;}
.y427_c00001{bottom:992.565000px;}
.y714_c00001{bottom:992.565720px;}
.yfae_c00001{bottom:992.925000px;}
.y80c_c00001{bottom:993.280680px;}
.y9de_c00001{bottom:993.281040px;}
.yf87_c00001{bottom:993.283920px;}
.yc10_c00001{bottom:993.285000px;}
.y3d4_c00001{bottom:993.645000px;}
.yf6a_c00001{bottom:994.005000px;}
.y461_c00001{bottom:994.365000px;}
.y55c_c00001{bottom:994.366800px;}
.ybae_c00001{bottom:994.373850px;}
.y576_c00001{bottom:994.725000px;}
.yb01_c00001{bottom:995.085000px;}
.y586_c00001{bottom:995.445000px;}
.yb16_c00001{bottom:995.451480px;}
.ye02_c00001{bottom:995.803920px;}
.ya7d_c00001{bottom:995.805000px;}
.y949_c00001{bottom:995.808600px;}
.y8dc_c00001{bottom:995.811690px;}
.y1c9_c00001{bottom:996.166800px;}
.y446_c00001{bottom:996.885000px;}
.y606_c00001{bottom:996.891840px;}
.y49b_c00001{bottom:997.605000px;}
.y340_c00001{bottom:997.965000px;}
.y33f_c00001{bottom:997.966650px;}
.y1e0_c00001{bottom:998.325000px;}
.ycac_c00001{bottom:998.685000px;}
.y10c7_c00001{bottom:999.045000px;}
.y3c1_c00001{bottom:999.405000px;}
.y77_c00001{bottom:999.764850px;}
.y76_c00001{bottom:999.765000px;}
.y10dc_c00001{bottom:1000.125000px;}
.y20d_c00001{bottom:1000.489320px;}
.ybdb_c00001{bottom:1000.842480px;}
.y45_c00001{bottom:1000.845000px;}
.yc87_c00001{bottom:1001.205000px;}
.yc9f_c00001{bottom:1001.565000px;}
.y648_c00001{bottom:1002.285000px;}
.y773_c00001{bottom:1002.645000px;}
.y587_c00001{bottom:1003.005000px;}
.yb48_c00001{bottom:1003.008600px;}
.y1144_c00001{bottom:1003.365000px;}
.y22d_c00001{bottom:1003.725000px;}
.ycf3_c00001{bottom:1004.085000px;}
.ycd4_c00001{bottom:1004.803920px;}
.y378_c00001{bottom:1004.805000px;}
.y877_c00001{bottom:1005.165000px;}
.y4ab_c00001{bottom:1005.525000px;}
.y2bb_c00001{bottom:1005.885000px;}
.yffc_c00001{bottom:1006.245000px;}
.y5cd_c00001{bottom:1006.246800px;}
.y9f_c00001{bottom:1006.965000px;}
.y1134_c00001{bottom:1007.325000px;}
.y21_c00001{bottom:1008.405000px;}
.y833_c00001{bottom:1008.764850px;}
.yf90_c00001{bottom:1008.765000px;}
.y6ea_c00001{bottom:1009.845000px;}
.y713_c00001{bottom:1009.849680px;}
.y10ff_c00001{bottom:1010.200530px;}
.y2f0_c00001{bottom:1010.205000px;}
.y80b_c00001{bottom:1010.564640px;}
.y9dd_c00001{bottom:1010.565000px;}
.y9dc_c00001{bottom:1010.566800px;}
.yd44_c00001{bottom:1010.569530px;}
.y977_c00001{bottom:1010.925000px;}
.y50d_c00001{bottom:1011.285000px;}
.y50c_c00001{bottom:1011.288600px;}
.yc8f_c00001{bottom:1011.646800px;}
.y55b_c00001{bottom:1012.005000px;}
.y5_c00001{bottom:1013.085000px;}
.yac3_c00001{bottom:1013.088600px;}
.ya10_c00001{bottom:1013.089680px;}
.yd0d_c00001{bottom:1013.093280px;}
.y172_c00001{bottom:1013.445000px;}
.ye46_c00001{bottom:1013.449680px;}
.yf63_c00001{bottom:1013.801040px;}
.y1c8_c00001{bottom:1013.805000px;}
.y9d1_c00001{bottom:1014.165000px;}
.y3d3_c00001{bottom:1014.525000px;}
.y460_c00001{bottom:1015.245000px;}
.y33d_c00001{bottom:1015.601040px;}
.y33e_c00001{bottom:1015.604850px;}
.y8db_c00001{bottom:1015.616370px;}
.y62d_c00001{bottom:1015.965000px;}
.y8b0_c00001{bottom:1016.325000px;}
.y605_c00001{bottom:1016.686800px;}
.y9a1_c00001{bottom:1017.397800px;}
.y5a6_c00001{bottom:1017.405000px;}
.y403_c00001{bottom:1017.764850px;}
.y7e1_c00001{bottom:1017.765000px;}
.ybad_c00001{bottom:1017.768450px;}
.y52a_c00001{bottom:1018.122840px;}
.y445_c00001{bottom:1018.125000px;}
.ybda_c00001{bottom:1018.126440px;}
.yc0f_c00001{bottom:1018.126650px;}
.y10c2_c00001{bottom:1018.845000px;}
.y6c6_c00001{bottom:1019.205000px;}
.y75_c00001{bottom:1020.285000px;}
.ye01_c00001{bottom:1020.645000px;}
.ya7c_c00001{bottom:1020.646800px;}
.y948_c00001{bottom:1020.649680px;}
.y788_c00001{bottom:1021.005000px;}
.yaff_c00001{bottom:1021.725000px;}
.y44_c00001{bottom:1022.085000px;}
.yfeb_c00001{bottom:1022.445000px;}
.y893_c00001{bottom:1023.159600px;}
.y575_c00001{bottom:1023.165000px;}
.y1df_c00001{bottom:1023.885000px;}
.yb5a_c00001{bottom:1024.245000px;}
.ycf2_c00001{bottom:1024.965000px;}
.y404_c00001{bottom:1025.325000px;}
.y985_c00001{bottom:1027.125000px;}
.y984_c00001{bottom:1027.129680px;}
.yc7f_c00001{bottom:1027.485000px;}
.y9e_c00001{bottom:1027.845000px;}
.y80a_c00001{bottom:1028.202840px;}
.y9db_c00001{bottom:1028.205000px;}
.y1143_c00001{bottom:1028.206800px;}
.yc8e_c00001{bottom:1029.285000px;}
.yfe9_c00001{bottom:1029.287160px;}
.y55a_c00001{bottom:1029.645000px;}
.yf69_c00001{bottom:1030.005000px;}
.yf62_c00001{bottom:1031.085000px;}
.y33c_c00001{bottom:1032.885000px;}
.y5b9_c00001{bottom:1033.245000px;}
.y603_c00001{bottom:1034.320680px;}
.y604_c00001{bottom:1034.325000px;}
.y9f8_c00001{bottom:1034.685000px;}
.y712_c00001{bottom:1035.045000px;}
.y3d2_c00001{bottom:1035.405000px;}
.y10fe_c00001{bottom:1035.763770px;}
.ybd9_c00001{bottom:1035.764640px;}
.y1c7_c00001{bottom:1035.764850px;}
.y1c6_c00001{bottom:1035.766800px;}
.y50b_c00001{bottom:1036.483920px;}
.y832_c00001{bottom:1036.489320px;}
.y528_c00001{bottom:1038.283920px;}
.y529_c00001{bottom:1038.285000px;}
.yb47_c00001{bottom:1038.288600px;}
.ye45_c00001{bottom:1038.645000px;}
.y444_c00001{bottom:1039.005000px;}
.y10f3_c00001{bottom:1040.445000px;}
.y8da_c00001{bottom:1040.811690px;}
.ybac_c00001{bottom:1041.163050px;}
.y74_c00001{bottom:1041.525000px;}
.yffb_c00001{bottom:1042.245000px;}
.y43_c00001{bottom:1042.965000px;}
.y876_c00001{bottom:1043.325000px;}
.yf86_c00001{bottom:1043.331840px;}
.y20c_c00001{bottom:1043.685000px;}
.y5a5_c00001{bottom:1044.045000px;}
.y20_c00001{bottom:1044.405000px;}
.y809_c00001{bottom:1045.841040px;}
.y6e9_c00001{bottom:1045.845000px;}
.y27d_c00001{bottom:1046.205000px;}
.y5ea_c00001{bottom:1046.925000px;}
.y2ef_c00001{bottom:1048.725000px;}
.y4_c00001{bottom:1049.085000px;}
.y171_c00001{bottom:1049.445000px;}
.yfad_c00001{bottom:1049.805000px;}
.y750_c00001{bottom:1050.525000px;}
.yf8f_c00001{bottom:1050.885000px;}
.y9a0_c00001{bottom:1051.239600px;}
.y574_c00001{bottom:1051.593840px;}
.y585_c00001{bottom:1052.325000px;}
.y45f_c00001{bottom:1052.685000px;}
.y6c5_c00001{bottom:1053.046800px;}
.y1c4_c00001{bottom:1053.401040px;}
.ybd8_c00001{bottom:1053.402840px;}
.y1c5_c00001{bottom:1053.405000px;}
.yc7e_c00001{bottom:1053.764850px;}
.y9da_c00001{bottom:1054.485000px;}
.yc8d_c00001{bottom:1055.205000px;}
.y892_c00001{bottom:1055.557800px;}
.yc9e_c00001{bottom:1055.925000px;}
.y402_c00001{bottom:1056.285000px;}
.y3c0_c00001{bottom:1056.645000px;}
.y772_c00001{bottom:1057.005000px;}
.y33b_c00001{bottom:1058.085000px;}
.y647_c00001{bottom:1059.165000px;}
.y443_c00001{bottom:1059.885000px;}
.y8d9_c00001{bottom:1060.604850px;}
.y8d8_c00001{bottom:1060.605720px;}
.y50a_c00001{bottom:1061.325000px;}
.y808_c00001{bottom:1063.125000px;}
.y527_c00001{bottom:1063.129680px;}
.ye44_c00001{bottom:1063.485000px;}
.y42_c00001{bottom:1063.845000px;}
.y73_c00001{bottom:1064.205000px;}
.ybab_c00001{bottom:1064.557650px;}
.y573_c00001{bottom:1068.877800px;}
.y5a4_c00001{bottom:1068.885000px;}
.yc0e_c00001{bottom:1070.683200px;}
.y1c3_c00001{bottom:1070.685000px;}
.y1c2_c00001{bottom:1070.686800px;}
.y826_c00001{bottom:1071.405000px;}
.y62c_c00001{bottom:1079.685000px;}
.y875_c00001{bottom:1082.565000px;}
.y1f_c00001{bottom:1082.925000px;}
.y782_c00001{bottom:1084.365000px;}
.y27c_c00001{bottom:1084.725000px;}
.y3_c00001{bottom:1085.085000px;}
.y99f_c00001{bottom:1085.437800px;}
.y1fc_c00001{bottom:1085.445000px;}
.y170_c00001{bottom:1085.805000px;}
.yfac_c00001{bottom:1086.165000px;}
.y2ee_c00001{bottom:1086.885000px;}
.y15d_c00001{bottom:1087.245000px;}
.yb59_c00001{bottom:1088.321250px;}
.y1c1_c00001{bottom:1088.325000px;}
.ye43_c00001{bottom:1088.685000px;}
.y684_c00001{bottom:1092.645000px;}
.y99e_c00001{bottom:1104.165000px;}
.yfdd_c00001{bottom:1117.125000px;}
.y10a5_c00001{bottom:1137.285000px;}
.y62b_c00001{bottom:1138.005000px;}
.y2_c00001{bottom:1138.365000px;}
.yb56_c00001{bottom:1141.604850px;}
.yb0f_c00001{bottom:1253.925000px;}
.h6d_c00001{height:0.000000px;}
.h67_c00001{height:1.440000px;}
.h8_c00001{height:19.255605px;}
.h98_c00001{height:25.913672px;}
.h68_c00001{height:26.274375px;}
.h6f_c00001{height:26.640000px;}
.h7_c00001{height:27.000000px;}
.h3d_c00001{height:27.360000px;}
.h46_c00001{height:27.792000px;}
.h85_c00001{height:28.080000px;}
.h4a_c00001{height:29.880000px;}
.h4b_c00001{height:30.240000px;}
.h62_c00001{height:30.564000px;}
.h77_c00001{height:30.600000px;}
.h2a_c00001{height:30.939125px;}
.h82_c00001{height:30.960000px;}
.h80_c00001{height:31.320000px;}
.h7b_c00001{height:31.672266px;}
.h52_c00001{height:31.680000px;}
.h91_c00001{height:32.040000px;}
.h45_c00001{height:32.238720px;}
.h7d_c00001{height:32.400000px;}
.hc_c00001{height:32.616000px;}
.h1a_c00001{height:33.230912px;}
.h49_c00001{height:33.480000px;}
.h74_c00001{height:33.840000px;}
.h47_c00001{height:34.560000px;}
.h88_c00001{height:34.920000px;}
.h3a_c00001{height:35.225280px;}
.h16_c00001{height:35.280000px;}
.h60_c00001{height:35.454240px;}
.h66_c00001{height:36.360000px;}
.h94_c00001{height:36.720000px;}
.h5c_c00001{height:37.080000px;}
.h31_c00001{height:37.440000px;}
.h4d_c00001{height:37.814486px;}
.h14_c00001{height:37.834560px;}
.h55_c00001{height:38.520000px;}
.h96_c00001{height:39.240000px;}
.h10_c00001{height:39.350391px;}
.h8a_c00001{height:39.600000px;}
.h79_c00001{height:39.898125px;}
.h69_c00001{height:39.960000px;}
.h2b_c00001{height:39.984609px;}
.h57_c00001{height:40.752000px;}
.h87_c00001{height:41.040000px;}
.h6_c00001{height:41.132160px;}
.h8c_c00001{height:41.400000px;}
.h15_c00001{height:41.627812px;}
.h26_c00001{height:42.398060px;}
.h59_c00001{height:43.053120px;}
.h19_c00001{height:43.189453px;}
.h29_c00001{height:43.885547px;}
.h64_c00001{height:44.640000px;}
.h7c_c00001{height:44.689847px;}
.h43_c00001{height:45.000000px;}
.h63_c00001{height:45.234720px;}
.h24_c00001{height:45.578880px;}
.h81_c00001{height:46.080000px;}
.h6b_c00001{height:46.800000px;}
.hf_c00001{height:46.981634px;}
.h8d_c00001{height:47.003899px;}
.h17_c00001{height:47.160000px;}
.h28_c00001{height:47.520000px;}
.hd_c00001{height:47.988281px;}
.h12_c00001{height:48.271680px;}
.h44_c00001{height:48.600000px;}
.h73_c00001{height:48.656250px;}
.h22_c00001{height:48.685631px;}
.h20_c00001{height:48.761719px;}
.h71_c00001{height:49.757309px;}
.h32_c00001{height:50.040000px;}
.h5f_c00001{height:50.124960px;}
.h97_c00001{height:50.765625px;}
.h27_c00001{height:51.565208px;}
.h72_c00001{height:51.644531px;}
.h58_c00001{height:52.031250px;}
.h36_c00001{height:52.200000px;}
.h4c_c00001{height:52.560000px;}
.h86_c00001{height:53.280000px;}
.he_c00001{height:53.490240px;}
.h2d_c00001{height:53.491680px;}
.h5a_c00001{height:53.494560px;}
.h99_c00001{height:53.497440px;}
.h56_c00001{height:53.506080px;}
.h3f_c00001{height:53.507520px;}
.h6a_c00001{height:53.511840px;}
.h4e_c00001{height:53.608320px;}
.h6c_c00001{height:53.640000px;}
.h65_c00001{height:53.882229px;}
.h5_c00001{height:54.000000px;}
.h53_c00001{height:54.360000px;}
.h48_c00001{height:54.720000px;}
.h2f_c00001{height:55.136477px;}
.h3_c00001{height:55.584000px;}
.h93_c00001{height:55.667109px;}
.h5b_c00001{height:55.800000px;}
.h6e_c00001{height:56.099520px;}
.h9_c00001{height:56.640000px;}
.h40_c00001{height:57.088800px;}
.h8f_c00001{height:57.093120px;}
.h11_c00001{height:57.096000px;}
.h2c_c00001{height:57.096600px;}
.h90_c00001{height:57.106080px;}
.h18_c00001{height:57.111840px;}
.h4_c00001{height:57.294676px;}
.h30_c00001{height:57.600000px;}
.h34_c00001{height:57.618720px;}
.h89_c00001{height:57.960000px;}
.h84_c00001{height:58.455360px;}
.h38_c00001{height:58.701600px;}
.h13_c00001{height:58.708800px;}
.h39_c00001{height:58.724640px;}
.h3c_c00001{height:58.737600px;}
.h3b_c00001{height:58.752840px;}
.h7a_c00001{height:58.853210px;}
.h3e_c00001{height:59.372721px;}
.h51_c00001{height:59.400000px;}
.h76_c00001{height:60.515646px;}
.h5e_c00001{height:61.128000px;}
.h1d_c00001{height:61.878250px;}
.h83_c00001{height:63.344531px;}
.h8b_c00001{height:63.360000px;}
.h21_c00001{height:64.401590px;}
.h95_c00001{height:64.792266px;}
.h41_c00001{height:65.224800px;}
.h2e_c00001{height:65.226240px;}
.ha_c00001{height:65.232000px;}
.h75_c00001{height:65.232600px;}
.h92_c00001{height:65.233125px;}
.h4f_c00001{height:65.376000px;}
.h61_c00001{height:65.694240px;}
.h23_c00001{height:67.239607px;}
.h8e_c00001{height:67.886719px;}
.h25_c00001{height:68.040000px;}
.h42_c00001{height:68.073960px;}
.hb_c00001{height:68.074560px;}
.h78_c00001{height:70.169650px;}
.h1e_c00001{height:70.450560px;}
.h50_c00001{height:71.136000px;}
.h70_c00001{height:72.618775px;}
.h54_c00001{height:74.160000px;}
.h1f_c00001{height:75.628972px;}
.h37_c00001{height:75.669120px;}
.h5d_c00001{height:80.688960px;}
.h1b_c00001{height:81.000000px;}
.h33_c00001{height:81.360000px;}
.h1c_c00001{height:86.106240px;}
.h7e_c00001{height:90.360000px;}
.h35_c00001{height:108.000000px;}
.h7f_c00001{height:136.080000px;}
.h2_c00001{height:1201.365000px;}
.h0_c00001{height:1262.835000px;}
.h1_c00001{height:1263.000000px;}
.w7b_c00001{width:0.000000px;}
.w5_c00001{width:25.020000px;}
.w53_c00001{width:68.040000px;}
.w10_c00001{width:87.840000px;}
.w55_c00001{width:108.720000px;}
.w1e_c00001{width:114.840000px;}
.w96_c00001{width:117.720000px;}
.wac_c00001{width:127.080000px;}
.w1d_c00001{width:141.840000px;}
.w56_c00001{width:145.080000px;}
.w57_c00001{width:148.320000px;}
.wba_c00001{width:159.120000px;}
.wb9_c00001{width:166.680000px;}
.w65_c00001{width:167.400000px;}
.w9f_c00001{width:168.480000px;}
.wa8_c00001{width:169.920000px;}
.wb1_c00001{width:174.600000px;}
.w13_c00001{width:189.000000px;}
.wbc_c00001{width:191.880000px;}
.wbb_c00001{width:195.120000px;}
.w20_c00001{width:195.480000px;}
.w9d_c00001{width:195.840000px;}
.w8f_c00001{width:203.040000px;}
.w54_c00001{width:204.480000px;}
.w4c_c00001{width:204.840000px;}
.w91_c00001{width:210.240000px;}
.wad_c00001{width:217.440000px;}
.wae_c00001{width:218.880000px;}
.w45_c00001{width:219.960000px;}
.w2c_c00001{width:220.680000px;}
.wb4_c00001{width:222.480000px;}
.w23_c00001{width:222.840000px;}
.w15_c00001{width:223.200000px;}
.waa_c00001{width:223.560000px;}
.w87_c00001{width:224.640000px;}
.wb2_c00001{width:226.440000px;}
.w26_c00001{width:228.960000px;}
.wc2_c00001{width:235.080000px;}
.w4f_c00001{width:237.600000px;}
.w47_c00001{width:240.840000px;}
.w18_c00001{width:242.280000px;}
.w85_c00001{width:248.760000px;}
.w19_c00001{width:249.480000px;}
.w2e_c00001{width:249.840000px;}
.w8c_c00001{width:250.560000px;}
.w90_c00001{width:251.280000px;}
.w6c_c00001{width:263.160000px;}
.wa7_c00001{width:263.880000px;}
.w6e_c00001{width:264.240000px;}
.w16_c00001{width:264.600000px;}
.w6f_c00001{width:265.320000px;}
.wb3_c00001{width:270.720000px;}
.w12_c00001{width:272.880000px;}
.w9e_c00001{width:273.960000px;}
.w77_c00001{width:275.400000px;}
.w75_c00001{width:275.760000px;}
.w5c_c00001{width:276.480000px;}
.w97_c00001{width:276.840000px;}
.wa1_c00001{width:277.560000px;}
.w9_c00001{width:277.920000px;}
.w1c_c00001{width:280.800000px;}
.wa4_c00001{width:281.520000px;}
.w9b_c00001{width:284.400000px;}
.w82_c00001{width:285.480000px;}
.w6d_c00001{width:287.640000px;}
.wa5_c00001{width:291.600000px;}
.w6_c00001{width:294.480000px;}
.w9a_c00001{width:297.720000px;}
.wb5_c00001{width:300.600000px;}
.wa0_c00001{width:302.400000px;}
.w6b_c00001{width:302.760000px;}
.w74_c00001{width:303.120000px;}
.w5a_c00001{width:303.840000px;}
.w72_c00001{width:304.200000px;}
.w83_c00001{width:304.560000px;}
.w70_c00001{width:304.920000px;}
.w29_c00001{width:305.640000px;}
.w5b_c00001{width:307.800000px;}
.w59_c00001{width:311.760000px;}
.wa6_c00001{width:315.000000px;}
.w4d_c00001{width:322.560000px;}
.w17_c00001{width:324.720000px;}
.wb6_c00001{width:327.600000px;}
.w7d_c00001{width:327.960000px;}
.w67_c00001{width:330.480000px;}
.w58_c00001{width:330.840000px;}
.w73_c00001{width:331.920000px;}
.wc1_c00001{width:333.360000px;}
.w84_c00001{width:335.880000px;}
.w24_c00001{width:343.080000px;}
.wc3_c00001{width:347.760000px;}
.wc0_c00001{width:349.560000px;}
.w93_c00001{width:350.640000px;}
.w2d_c00001{width:353.880000px;}
.waf_c00001{width:357.120000px;}
.w71_c00001{width:357.840000px;}
.wbd_c00001{width:369.000000px;}
.w6a_c00001{width:370.800000px;}
.w99_c00001{width:372.600000px;}
.w7_c00001{width:380.160000px;}
.w31_c00001{width:381.240000px;}
.w7f_c00001{width:381.960000px;}
.w8d_c00001{width:386.280000px;}
.w78_c00001{width:387.000000px;}
.w8b_c00001{width:390.600000px;}
.w3a_c00001{width:391.320000px;}
.wa_c00001{width:393.480000px;}
.w76_c00001{width:398.520000px;}
.w79_c00001{width:398.880000px;}
.w7a_c00001{width:400.320000px;}
.w62_c00001{width:405.360000px;}
.w89_c00001{width:408.960000px;}
.w1a_c00001{width:409.320000px;}
.wb0_c00001{width:411.480000px;}
.w1b_c00001{width:411.840000px;}
.wa2_c00001{width:412.560000px;}
.wb7_c00001{width:428.400000px;}
.w8e_c00001{width:438.480000px;}
.w14_c00001{width:438.840000px;}
.wab_c00001{width:439.200000px;}
.w8a_c00001{width:440.280000px;}
.w9c_c00001{width:447.480000px;}
.w1f_c00001{width:447.840000px;}
.w7e_c00001{width:455.040000px;}
.w3f_c00001{width:462.600000px;}
.w33_c00001{width:465.480000px;}
.w80_c00001{width:465.840000px;}
.w92_c00001{width:466.200000px;}
.w81_c00001{width:474.480000px;}
.wb8_c00001{width:474.840000px;}
.wbe_c00001{width:489.600000px;}
.w95_c00001{width:489.960000px;}
.w60_c00001{width:493.920000px;}
.wb_c00001{width:504.000000px;}
.w2b_c00001{width:510.840000px;}
.w3e_c00001{width:512.640000px;}
.w86_c00001{width:515.160000px;}
.w11_c00001{width:519.480000px;}
.wbf_c00001{width:519.840000px;}
.we_c00001{width:539.280000px;}
.w64_c00001{width:544.320000px;}
.w5d_c00001{width:546.480000px;}
.wd_c00001{width:546.840000px;}
.w3b_c00001{width:549.720000px;}
.w44_c00001{width:555.480000px;}
.w3_c00001{width:557.280000px;}
.wa3_c00001{width:567.360000px;}
.w4_c00001{width:570.240000px;}
.w98_c00001{width:571.320000px;}
.w51_c00001{width:572.400000px;}
.w61_c00001{width:573.840000px;}
.wc_c00001{width:582.480000px;}
.w50_c00001{width:583.920000px;}
.w66_c00001{width:594.000000px;}
.w2f_c00001{width:594.360000px;}
.w36_c00001{width:595.440000px;}
.w63_c00001{width:598.680000px;}
.w5f_c00001{width:601.200000px;}
.wf_c00001{width:605.880000px;}
.w94_c00001{width:607.680000px;}
.w30_c00001{width:619.560000px;}
.w39_c00001{width:626.760000px;}
.w2a_c00001{width:628.560000px;}
.w8_c00001{width:629.640000px;}
.w22_c00001{width:632.880000px;}
.wa9_c00001{width:633.960000px;}
.w42_c00001{width:641.160000px;}
.w41_c00001{width:641.880000px;}
.w38_c00001{width:642.240000px;}
.w40_c00001{width:642.600000px;}
.w43_c00001{width:642.960000px;}
.w27_c00001{width:643.320000px;}
.w37_c00001{width:643.680000px;}
.w34_c00001{width:644.040000px;}
.w28_c00001{width:644.400000px;}
.w35_c00001{width:644.760000px;}
.w32_c00001{width:645.840000px;}
.w4a_c00001{width:646.200000px;}
.w69_c00001{width:646.560000px;}
.w5e_c00001{width:654.840000px;}
.w3d_c00001{width:655.920000px;}
.w88_c00001{width:657.720000px;}
.w48_c00001{width:668.160000px;}
.w52_c00001{width:677.520000px;}
.w49_c00001{width:678.600000px;}
.w46_c00001{width:679.680000px;}
.w4e_c00001{width:681.480000px;}
.w3c_c00001{width:681.840000px;}
.w4b_c00001{width:684.000000px;}
.w68_c00001{width:698.400000px;}
.w21_c00001{width:708.840000px;}
.w7c_c00001{width:735.840000px;}
.w2_c00001{width:863.955000px;}
.w25_c00001{width:892.920000px;}
.w0_c00001{width:892.935000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.xa5_c00001{left:3.240150px;}
.x1f4_c00001{left:4.270350px;}
.x153_c00001{left:5.685000px;}
.x180_c00001{left:8.107800px;}
.x41_c00001{left:9.752250px;}
.x1c3_c00001{left:11.638050px;}
.x1a0_c00001{left:13.315350px;}
.x1_c00001{left:14.490000px;}
.xa3_c00001{left:16.499550px;}
.x181_c00001{left:18.225900px;}
.xa1_c00001{left:19.512000px;}
.x160_c00001{left:21.322350px;}
.x1b5_c00001{left:22.813050px;}
.x40_c00001{left:23.859600px;}
.x151_c00001{left:25.312800px;}
.x1ae_c00001{left:27.690900px;}
.x1f5_c00001{left:29.115600px;}
.x123_c00001{left:30.554700px;}
.x20d_c00001{left:31.866000px;}
.x209_c00001{left:33.201300px;}
.x15a_c00001{left:34.323450px;}
.x1ed_c00001{left:35.416500px;}
.x1ee_c00001{left:36.981150px;}
.x17f_c00001{left:38.846400px;}
.x161_c00001{left:40.614900px;}
.x182_c00001{left:41.857050px;}
.x124_c00001{left:42.954600px;}
.x1eb_c00001{left:44.018700px;}
.x1f3_c00001{left:45.166500px;}
.x1db_c00001{left:47.117700px;}
.x1fa_c00001{left:48.879900px;}
.x1dd_c00001{left:49.908600px;}
.x1aa_c00001{left:51.028200px;}
.x17c_c00001{left:53.950800px;}
.x1da_c00001{left:55.423650px;}
.x1a1_c00001{left:56.797350px;}
.x1a2_c00001{left:60.172350px;}
.x20e_c00001{left:61.457850px;}
.x1e3_c00001{left:62.504100px;}
.x1b3_c00001{left:65.048850px;}
.x1b4_c00001{left:66.945150px;}
.x1d7_c00001{left:69.582600px;}
.x1f6_c00001{left:71.160600px;}
.x1a5_c00001{left:72.688350px;}
.x20f_c00001{left:74.732250px;}
.x154_c00001{left:76.984800px;}
.x1d8_c00001{left:79.992750px;}
.x1d9_c00001{left:81.673350px;}
.x1e6_c00001{left:83.333250px;}
.x200_c00001{left:87.687750px;}
.x1c0_c00001{left:89.620200px;}
.x1dc_c00001{left:91.696200px;}
.x1d4_c00001{left:92.813850px;}
.x208_c00001{left:96.137850px;}
.x188_c00001{left:97.321500px;}
.xa4_c00001{left:99.583950px;}
.x1b1_c00001{left:101.375250px;}
.xf1_c00001{left:103.305450px;}
.x5_c00001{left:105.335400px;}
.x1e2_c00001{left:106.769400px;}
.x20b_c00001{left:107.835900px;}
.x1d6_c00001{left:109.689150px;}
.x1d5_c00001{left:111.180750px;}
.x2_c00001{left:113.040150px;}
.x125_c00001{left:114.975450px;}
.x1c1_c00001{left:117.540150px;}
.x176_c00001{left:119.034000px;}
.x18a_c00001{left:120.283050px;}
.x30_c00001{left:122.213700px;}
.xee_c00001{left:124.290000px;}
.x1b2_c00001{left:125.600550px;}
.x1a4_c00001{left:126.810000px;}
.x7f_c00001{left:128.040150px;}
.x10e_c00001{left:129.046800px;}
.x1a7_c00001{left:130.050000px;}
.x1cc_c00001{left:132.029700px;}
.x28_c00001{left:133.034550px;}
.x1b0_c00001{left:134.730000px;}
.x96_c00001{left:136.043700px;}
.x50_c00001{left:137.204250px;}
.xf8_c00001{left:138.476850px;}
.xd_c00001{left:140.037600px;}
.xca_c00001{left:142.037850px;}
.xb9_c00001{left:143.372700px;}
.x210_c00001{left:144.375900px;}
.x42_c00001{left:145.539000px;}
.x19_c00001{left:147.223350px;}
.xfc_c00001{left:148.850250px;}
.x177_c00001{left:150.065550px;}
.xbe_c00001{left:151.073400px;}
.x79_c00001{left:152.218500px;}
.xce_c00001{left:153.298800px;}
.xd3_c00001{left:155.033550px;}
.x57_c00001{left:156.388950px;}
.x11b_c00001{left:157.697400px;}
.xbb_c00001{left:158.908500px;}
.x19d_c00001{left:160.445100px;}
.x3_c00001{left:161.531250px;}
.x4c_c00001{left:163.119150px;}
.x17e_c00001{left:164.727150px;}
.x1a_c00001{left:165.973050px;}
.xe_c00001{left:167.037600px;}
.x199_c00001{left:168.042900px;}
.x90_c00001{left:169.708050px;}
.x1a8_c00001{left:170.717400px;}
.x43_c00001{left:172.024950px;}
.x72_c00001{left:173.880000px;}
.x185_c00001{left:175.249950px;}
.x80_c00001{left:176.368650px;}
.x6_c00001{left:178.290000px;}
.xf5_c00001{left:179.727900px;}
.xe9_c00001{left:180.750300px;}
.xbc_c00001{left:182.232750px;}
.x15b_c00001{left:183.981750px;}
.x53_c00001{left:185.262750px;}
.x10d_c00001{left:186.387750px;}
.x74_c00001{left:187.556400px;}
.x17b_c00001{left:189.052800px;}
.x60_c00001{left:190.572150px;}
.xde_c00001{left:192.238050px;}
.xe8_c00001{left:193.846800px;}
.x54_c00001{left:194.952750px;}
.x152_c00001{left:196.158300px;}
.x67_c00001{left:197.681400px;}
.x159_c00001{left:199.024650px;}
.x121_c00001{left:200.517300px;}
.x102_c00001{left:202.162050px;}
.x12c_c00001{left:203.692350px;}
.x61_c00001{left:204.725100px;}
.x148_c00001{left:206.291700px;}
.x69_c00001{left:207.610500px;}
.x19c_c00001{left:208.841700px;}
.xd4_c00001{left:210.310950px;}
.x141_c00001{left:211.375800px;}
.x45_c00001{left:212.745900px;}
.xbf_c00001{left:214.784250px;}
.x55_c00001{left:216.297300px;}
.x1cf_c00001{left:217.362300px;}
.x6d_c00001{left:218.677800px;}
.x4d_c00001{left:220.597050px;}
.x1b9_c00001{left:221.746200px;}
.x31_c00001{left:223.069650px;}
.x1ec_c00001{left:224.172000px;}
.xec_c00001{left:225.375750px;}
.x149_c00001{left:227.260950px;}
.x6e_c00001{left:229.046700px;}
.x1d1_c00001{left:230.175000px;}
.x68_c00001{left:231.525150px;}
.xbd_c00001{left:233.002050px;}
.x8e_c00001{left:234.474300px;}
.x1b6_c00001{left:235.978200px;}
.x4_c00001{left:236.986050px;}
.x13a_c00001{left:238.914150px;}
.x1b_c00001{left:240.160350px;}
.xe4_c00001{left:242.151150px;}
.x1c_c00001{left:243.910350px;}
.xa6_c00001{left:245.031450px;}
.x142_c00001{left:246.384450px;}
.x103_c00001{left:248.300550px;}
.x75_c00001{left:249.601350px;}
.xa2_c00001{left:251.010000px;}
.xd5_c00001{left:252.963150px;}
.x81_c00001{left:254.681100px;}
.x1c6_c00001{left:256.107000px;}
.x173_c00001{left:257.200500px;}
.xa0_c00001{left:258.210000px;}
.x150_c00001{left:259.290000px;}
.x9e_c00001{left:260.533500px;}
.xae_c00001{left:261.683400px;}
.x139_c00001{left:263.033550px;}
.x1d_c00001{left:264.744450px;}
.x175_c00001{left:266.066850px;}
.xb5_c00001{left:267.080850px;}
.x1e_c00001{left:268.494450px;}
.x12e_c00001{left:269.741400px;}
.x1ff_c00001{left:271.044450px;}
.xf4_c00001{left:272.067300px;}
.x12f_c00001{left:273.866400px;}
.x82_c00001{left:275.515050px;}
.x11f_c00001{left:277.071150px;}
.x12d_c00001{left:278.898600px;}
.x9f_c00001{left:280.527450px;}
.x1f_c00001{left:281.828550px;}
.xf_c00001{left:283.140000px;}
.x7_c00001{left:285.014850px;}
.x1c2_c00001{left:286.052850px;}
.xcd_c00001{left:287.238300px;}
.xb3_c00001{left:289.023150px;}
.xc0_c00001{left:290.066850px;}
.xac_c00001{left:292.065300px;}
.xfb_c00001{left:293.147850px;}
.x1e0_c00001{left:294.193350px;}
.x27_c00001{left:295.222050px;}
.x112_c00001{left:296.388000px;}
.x3f_c00001{left:297.450000px;}
.x1ca_c00001{left:298.587900px;}
.x91_c00001{left:299.693400px;}
.x20a_c00001{left:300.736950px;}
.xdc_c00001{left:301.833600px;}
.x1f7_c00001{left:302.947650px;}
.x118_c00001{left:304.052550px;}
.x1e8_c00001{left:305.643300px;}
.xd2_c00001{left:306.828750px;}
.x203_c00001{left:307.883400px;}
.x4a_c00001{left:308.906550px;}
.xb8_c00001{left:310.353150px;}
.x122_c00001{left:311.422500px;}
.x37_c00001{left:313.117350px;}
.x6a_c00001{left:314.915850px;}
.x16c_c00001{left:316.402950px;}
.x6f_c00001{left:317.612850px;}
.xe6_c00001{left:319.588950px;}
.x13d_c00001{left:320.738850px;}
.xb4_c00001{left:322.052550px;}
.x62_c00001{left:323.102850px;}
.x38_c00001{left:324.787050px;}
.x16f_c00001{left:326.527500px;}
.x18b_c00001{left:327.858000px;}
.x4b_c00001{left:329.324400px;}
.x7d_c00001{left:330.992850px;}
.x12a_c00001{left:332.488350px;}
.x16_c00001{left:334.151400px;}
.x83_c00001{left:335.514000px;}
.xd6_c00001{left:337.284000px;}
.x17_c00001{left:338.651400px;}
.xaf_c00001{left:339.693900px;}
.x12b_c00001{left:340.738350px;}
.x19a_c00001{left:341.840700px;}
.x11c_c00001{left:343.087950px;}
.x10_c00001{left:344.140800px;}
.x104_c00001{left:345.432150px;}
.x3e_c00001{left:346.454550px;}
.x108_c00001{left:347.573700px;}
.x11_c00001{left:348.640800px;}
.x131_c00001{left:350.374200px;}
.x4e_c00001{left:351.805650px;}
.x47_c00001{left:353.159550px;}
.x11d_c00001{left:354.742650px;}
.xb1_c00001{left:356.460900px;}
.x205_c00001{left:357.604950px;}
.x132_c00001{left:358.624200px;}
.xc3_c00001{left:359.998500px;}
.x2e_c00001{left:361.112250px;}
.x1cb_c00001{left:362.124000px;}
.x20_c00001{left:363.141300px;}
.x137_c00001{left:364.152450px;}
.x63_c00001{left:365.581800px;}
.x13b_c00001{left:367.233450px;}
.x1a9_c00001{left:368.588400px;}
.x97_c00001{left:369.859800px;}
.xdd_c00001{left:371.832300px;}
.xf2_c00001{left:373.524450px;}
.x162_c00001{left:374.925600px;}
.xb2_c00001{left:376.455000px;}
.xad_c00001{left:377.816100px;}
.xd1_c00001{left:378.984750px;}
.x202_c00001{left:380.160000px;}
.x155_c00001{left:381.239850px;}
.x7e_c00001{left:382.695600px;}
.x13f_c00001{left:384.388200px;}
.xb6_c00001{left:385.699500px;}
.x18c_c00001{left:386.709600px;}
.x21_c00001{left:388.115850px;}
.x15d_c00001{left:389.150100px;}
.xf3_c00001{left:390.379050px;}
.x7a_c00001{left:391.430850px;}
.x94_c00001{left:392.711400px;}
.x116_c00001{left:393.728400px;}
.x4f_c00001{left:395.154450px;}
.xb7_c00001{left:396.697200px;}
.x14d_c00001{left:397.770150px;}
.x1fe_c00001{left:398.772150px;}
.x39_c00001{left:399.799350px;}
.xdf_c00001{left:400.957800px;}
.x171_c00001{left:402.079050px;}
.x7b_c00001{left:403.100400px;}
.xe7_c00001{left:404.548050px;}
.x76_c00001{left:405.988350px;}
.x172_c00001{left:407.083050px;}
.x3a_c00001{left:408.138750px;}
.x115_c00001{left:409.485300px;}
.x7c_c00001{left:411.439800px;}
.x192_c00001{left:412.576950px;}
.x9_c00001{left:413.967000px;}
.x145_c00001{left:415.604400px;}
.x156_c00001{left:416.824200px;}
.x58_c00001{left:418.114050px;}
.x109_c00001{left:419.178150px;}
.x1af_c00001{left:420.210000px;}
.xf9_c00001{left:421.221000px;}
.xa8_c00001{left:422.232450px;}
.x3b_c00001{left:423.963150px;}
.x77_c00001{left:425.982450px;}
.x143_c00001{left:427.099050px;}
.xb0_c00001{left:429.112050px;}
.x14c_c00001{left:430.564050px;}
.x18_c00001{left:431.712000px;}
.x146_c00001{left:432.716250px;}
.x85_c00001{left:434.410800px;}
.x186_c00001{left:435.643050px;}
.x10c_c00001{left:436.690050px;}
.xfe_c00001{left:437.762700px;}
.x84_c00001{left:439.032000px;}
.x187_c00001{left:440.143050px;}
.x147_c00001{left:441.302400px;}
.x1df_c00001{left:442.308150px;}
.x126_c00001{left:443.410800px;}
.x174_c00001{left:445.122750px;}
.x29_c00001{left:446.927100px;}
.x15c_c00001{left:448.201800px;}
.x12_c00001{left:449.655000px;}
.x98_c00001{left:451.668450px;}
.x1b7_c00001{left:453.000000px;}
.x13_c00001{left:454.155000px;}
.x16d_c00001{left:455.172750px;}
.x2b_c00001{left:456.179400px;}
.xeb_c00001{left:457.665450px;}
.x133_c00001{left:459.469500px;}
.x19f_c00001{left:460.479150px;}
.x106_c00001{left:462.398850px;}
.x16e_c00001{left:464.172750px;}
.x140_c00001{left:465.422550px;}
.x56_c00001{left:466.664100px;}
.x168_c00001{left:467.664600px;}
.x95_c00001{left:468.706050px;}
.xc9_c00001{left:469.779000px;}
.x17d_c00001{left:471.275700px;}
.xc4_c00001{left:472.452000px;}
.x178_c00001{left:473.549550px;}
.x120_c00001{left:475.290000px;}
.x2c_c00001{left:477.236250px;}
.x5d_c00001{left:478.961850px;}
.x165_c00001{left:481.000200px;}
.x15e_c00001{left:482.136450px;}
.xa7_c00001{left:483.550050px;}
.x59_c00001{left:484.816350px;}
.x17a_c00001{left:486.695400px;}
.x10b_c00001{left:488.087100px;}
.x204_c00001{left:489.107700px;}
.x73_c00001{left:490.138200px;}
.x20c_c00001{left:491.213400px;}
.x22_c00001{left:492.280500px;}
.x1ac_c00001{left:493.389750px;}
.x3c_c00001{left:495.290100px;}
.x13e_c00001{left:496.705800px;}
.xc2_c00001{left:497.932950px;}
.x1d2_c00001{left:498.946350px;}
.x189_c00001{left:499.954800px;}
.x14b_c00001{left:501.413850px;}
.x9c_c00001{left:502.620900px;}
.x1ba_c00001{left:503.734200px;}
.x86_c00001{left:504.795000px;}
.x1e9_c00001{left:505.800300px;}
.x127_c00001{left:506.826000px;}
.x65_c00001{left:508.939800px;}
.x1e4_c00001{left:510.181950px;}
.x2d_c00001{left:511.219500px;}
.x100_c00001{left:512.525100px;}
.x206_c00001{left:513.588150px;}
.xff_c00001{left:514.853700px;}
.x138_c00001{left:515.968200px;}
.x2a_c00001{left:517.936200px;}
.x1a6_c00001{left:519.029850px;}
.x163_c00001{left:520.169250px;}
.xe5_c00001{left:521.388450px;}
.x18d_c00001{left:522.404550px;}
.xc7_c00001{left:524.097600px;}
.x169_c00001{left:525.659550px;}
.x14_c00001{left:527.161350px;}
.x66_c00001{left:528.919500px;}
.x19b_c00001{left:530.204250px;}
.x15_c00001{left:531.661350px;}
.x48_c00001{left:532.946850px;}
.x201_c00001{left:533.947200px;}
.x193_c00001{left:534.960000px;}
.x128_c00001{left:536.419200px;}
.x8a_c00001{left:537.469050px;}
.x194_c00001{left:538.845300px;}
.x15f_c00001{left:540.149400px;}
.x1bb_c00001{left:541.163100px;}
.x158_c00001{left:542.774850px;}
.x51_c00001{left:544.078800px;}
.x164_c00001{left:545.143800px;}
.x114_c00001{left:547.002300px;}
.x1ab_c00001{left:548.908500px;}
.x16a_c00001{left:550.073400px;}
.x1c8_c00001{left:551.656800px;}
.xd8_c00001{left:552.738600px;}
.x5f_c00001{left:554.142000px;}
.x33_c00001{left:555.994200px;}
.xdb_c00001{left:557.601900px;}
.x14a_c00001{left:559.119150px;}
.x1f2_c00001{left:560.270850px;}
.xa9_c00001{left:561.546750px;}
.xc1_c00001{left:563.122950px;}
.x87_c00001{left:564.319650px;}
.x196_c00001{left:565.865850px;}
.x8b_c00001{left:567.241350px;}
.x23_c00001{left:568.387650px;}
.x157_c00001{left:569.833650px;}
.x88_c00001{left:571.360800px;}
.x46_c00001{left:572.440050px;}
.x1e7_c00001{left:573.469800px;}
.x5a_c00001{left:574.858800px;}
.x1d3_c00001{left:575.898150px;}
.xc5_c00001{left:577.425600px;}
.x5b_c00001{left:579.028500px;}
.xc8_c00001{left:580.103400px;}
.x1f1_c00001{left:581.144100px;}
.x3d_c00001{left:582.282750px;}
.xe0_c00001{left:584.196600px;}
.xfa_c00001{left:585.609750px;}
.x5c_c00001{left:586.611300px;}
.x111_c00001{left:587.981700px;}
.x190_c00001{left:588.995400px;}
.x105_c00001{left:590.015250px;}
.x52_c00001{left:592.018800px;}
.x18e_c00001{left:593.945100px;}
.x34_c00001{left:595.158300px;}
.x1fc_c00001{left:596.240400px;}
.x44_c00001{left:597.284850px;}
.x207_c00001{left:598.362750px;}
.xf6_c00001{left:599.603100px;}
.xd9_c00001{left:601.409250px;}
.x99_c00001{left:602.829300px;}
.x35_c00001{left:604.585650px;}
.x89_c00001{left:605.704500px;}
.x14e_c00001{left:607.137150px;}
.x129_c00001{left:608.159550px;}
.x184_c00001{left:609.213150px;}
.xf7_c00001{left:611.257650px;}
.x8f_c00001{left:612.666900px;}
.x1fb_c00001{left:613.706550px;}
.x197_c00001{left:614.771100px;}
.x5e_c00001{left:616.428300px;}
.x6b_c00001{left:617.517000px;}
.x170_c00001{left:618.871200px;}
.x70_c00001{left:620.805900px;}
.xcf_c00001{left:622.612800px;}
.x9b_c00001{left:624.427350px;}
.x36_c00001{left:625.667700px;}
.x9d_c00001{left:627.189750px;}
.x179_c00001{left:628.705050px;}
.x1d0_c00001{left:629.920500px;}
.x13c_c00001{left:630.953250px;}
.x14f_c00001{left:632.111550px;}
.x1bd_c00001{left:634.246500px;}
.x32_c00001{left:635.658000px;}
.x134_c00001{left:637.285050px;}
.xd0_c00001{left:638.437200px;}
.x24_c00001{left:640.384350px;}
.x117_c00001{left:642.382650px;}
.xda_c00001{left:643.917750px;}
.xd7_c00001{left:645.172050px;}
.x1f9_c00001{left:646.534800px;}
.x92_c00001{left:647.551350px;}
.x191_c00001{left:648.844500px;}
.x1bf_c00001{left:650.262450px;}
.x8c_c00001{left:651.410100px;}
.xe1_c00001{left:652.516050px;}
.x113_c00001{left:654.139200px;}
.x130_c00001{left:656.015250px;}
.x18f_c00001{left:657.160350px;}
.x119_c00001{left:659.135400px;}
.x10f_c00001{left:661.039650px;}
.xa_c00001{left:662.139450px;}
.x64_c00001{left:663.669450px;}
.xea_c00001{left:665.290950px;}
.xef_c00001{left:666.717450px;}
.x25_c00001{left:668.703750px;}
.xcb_c00001{left:670.723350px;}
.xf0_c00001{left:672.837450px;}
.x9a_c00001{left:673.874250px;}
.x1c5_c00001{left:675.259950px;}
.xe2_c00001{left:677.076450px;}
.x11a_c00001{left:678.290100px;}
.x1c7_c00001{left:679.604700px;}
.x110_c00001{left:681.034050px;}
.x2f_c00001{left:682.172550px;}
.x107_c00001{left:684.023100px;}
.x183_c00001{left:685.788600px;}
.xfd_c00001{left:687.068100px;}
.x1ce_c00001{left:688.742400px;}
.x101_c00001{left:689.755350px;}
.x16b_c00001{left:691.717500px;}
.xc6_c00001{left:693.434700px;}
.x19e_c00001{left:695.085150px;}
.x135_c00001{left:696.881850px;}
.x1c4_c00001{left:698.256900px;}
.x93_c00001{left:699.570600px;}
.x1ad_c00001{left:700.969800px;}
.xed_c00001{left:702.357450px;}
.x198_c00001{left:703.528200px;}
.x136_c00001{left:705.131850px;}
.x1e1_c00001{left:706.231200px;}
.x26_c00001{left:707.341500px;}
.x71_c00001{left:708.345750px;}
.x166_c00001{left:709.359750px;}
.xab_c00001{left:711.213900px;}
.x144_c00001{left:712.861350px;}
.x1f8_c00001{left:714.374700px;}
.xaa_c00001{left:715.380600px;}
.x1c9_c00001{left:717.250200px;}
.x11e_c00001{left:718.386150px;}
.x1bc_c00001{left:719.920500px;}
.x49_c00001{left:721.146150px;}
.x1e5_c00001{left:722.382600px;}
.xcc_c00001{left:723.702750px;}
.x78_c00001{left:725.371200px;}
.xb_c00001{left:727.136400px;}
.x167_c00001{left:728.514450px;}
.xe3_c00001{left:730.381050px;}
.x1cd_c00001{left:732.372450px;}
.xc_c00001{left:734.139000px;}
.x1ea_c00001{left:735.378300px;}
.x1b8_c00001{left:736.386150px;}
.x195_c00001{left:737.681100px;}
.x1f0_c00001{left:739.044750px;}
.x1a3_c00001{left:740.382150px;}
.x10a_c00001{left:742.050300px;}
.x1be_c00001{left:743.388000px;}
.x6c_c00001{left:744.480000px;}
.x8d_c00001{left:746.220300px;}
.x1de_c00001{left:748.817400px;}
.xba_c00001{left:750.390000px;}
.x1ef_c00001{left:751.410000px;}
.x1fd_c00001{left:754.559700px;}
.x8_c00001{left:759.914612px;}
@media print{
.v4_c00001{vertical-align:-26.880000pt;}
.v6_c00001{vertical-align:-25.068482pt;}
.v2_c00001{vertical-align:-21.760000pt;}
.v9_c00001{vertical-align:-10.240000pt;}
.v7_c00001{vertical-align:-7.686400pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v3_c00001{vertical-align:21.760000pt;}
.v5_c00001{vertical-align:24.320000pt;}
.v1_c00001{vertical-align:26.880000pt;}
.v8_c00001{vertical-align:29.440000pt;}
.ls2f3_c00001{letter-spacing:-0.413952pt;}
.ls75a_c00001{letter-spacing:-0.217600pt;}
.ls759_c00001{letter-spacing:-0.211200pt;}
.lsec_c00001{letter-spacing:-0.164528pt;}
.ls49_c00001{letter-spacing:-0.159616pt;}
.ls764_c00001{letter-spacing:-0.038400pt;}
.ls130_c00001{letter-spacing:-0.014249pt;}
.ls127_c00001{letter-spacing:-0.013824pt;}
.ls763_c00001{letter-spacing:-0.012800pt;}
.ls762_c00001{letter-spacing:-0.006400pt;}
.ls6_c00001{letter-spacing:0.000000pt;}
.lsdd_c00001{letter-spacing:0.013013pt;}
.ls2f2_c00001{letter-spacing:0.019200pt;}
.ls6e7_c00001{letter-spacing:0.019413pt;}
.ls92_c00001{letter-spacing:0.024213pt;}
.ls604_c00001{letter-spacing:0.030080pt;}
.lsd7_c00001{letter-spacing:0.032000pt;}
.ls669_c00001{letter-spacing:0.032213pt;}
.ls589_c00001{letter-spacing:0.038613pt;}
.ls7ad_c00001{letter-spacing:0.041280pt;}
.ls4e9_c00001{letter-spacing:0.042347pt;}
.ls681_c00001{letter-spacing:0.048747pt;}
.ls6a9_c00001{letter-spacing:0.049280pt;}
.ls6cc_c00001{letter-spacing:0.050347pt;}
.lsa7_c00001{letter-spacing:0.052480pt;}
.ls65e_c00001{letter-spacing:0.052800pt;}
.ls118_c00001{letter-spacing:0.055296pt;}
.ls236_c00001{letter-spacing:0.056213pt;}
.ls114_c00001{letter-spacing:0.058240pt;}
.ls65f_c00001{letter-spacing:0.064213pt;}
.lse0_c00001{letter-spacing:0.065813pt;}
.ls5ca_c00001{letter-spacing:0.068480pt;}
.ls17d_c00001{letter-spacing:0.072699pt;}
.ls593_c00001{letter-spacing:0.075947pt;}
.ls157_c00001{letter-spacing:0.080533pt;}
.ls394_c00001{letter-spacing:0.080747pt;}
.ls732_c00001{letter-spacing:0.081067pt;}
.ls2a9_c00001{letter-spacing:0.081280pt;}
.ls73a_c00001{letter-spacing:0.082133pt;}
.ls28f_c00001{letter-spacing:0.082347pt;}
.ls60a_c00001{letter-spacing:0.085013pt;}
.ls668_c00001{letter-spacing:0.085333pt;}
.ls24f_c00001{letter-spacing:0.088747pt;}
.ls59e_c00001{letter-spacing:0.089813pt;}
.ls3f4_c00001{letter-spacing:0.091413pt;}
.ls749_c00001{letter-spacing:0.091947pt;}
.ls2d_c00001{letter-spacing:0.092480pt;}
.ls9b_c00001{letter-spacing:0.094080pt;}
.ls46_c00001{letter-spacing:0.099413pt;}
.ls587_c00001{letter-spacing:0.105600pt;}
.lsd5_c00001{letter-spacing:0.106871pt;}
.ls10d_c00001{letter-spacing:0.107200pt;}
.ls28d_c00001{letter-spacing:0.108480pt;}
.ls611_c00001{letter-spacing:0.109547pt;}
.ls4e8_c00001{letter-spacing:0.112213pt;}
.ls7e3_c00001{letter-spacing:0.112747pt;}
.ls6d3_c00001{letter-spacing:0.115947pt;}
.ls2aa_c00001{letter-spacing:0.117013pt;}
.ls461_c00001{letter-spacing:0.117547pt;}
.ls23c_c00001{letter-spacing:0.118080pt;}
.ls3ab_c00001{letter-spacing:0.118272pt;}
.ls656_c00001{letter-spacing:0.118613pt;}
.ls6c0_c00001{letter-spacing:0.120747pt;}
.ls577_c00001{letter-spacing:0.121912pt;}
.ls279_c00001{letter-spacing:0.126613pt;}
.ls51_c00001{letter-spacing:0.128000pt;}
.ls6e9_c00001{letter-spacing:0.130347pt;}
.ls586_c00001{letter-spacing:0.130620pt;}
.ls116_c00001{letter-spacing:0.131328pt;}
.ls3ee_c00001{letter-spacing:0.131939pt;}
.ls7df_c00001{letter-spacing:0.132160pt;}
.ls1a2_c00001{letter-spacing:0.138240pt;}
.ls390_c00001{letter-spacing:0.138880pt;}
.ls3a9_c00001{letter-spacing:0.139392pt;}
.ls530_c00001{letter-spacing:0.142400pt;}
.lsc8_c00001{letter-spacing:0.142495pt;}
.ls171_c00001{letter-spacing:0.143682pt;}
.ls417_c00001{letter-spacing:0.144747pt;}
.ls29d_c00001{letter-spacing:0.146880pt;}
.ls51b_c00001{letter-spacing:0.147200pt;}
.ls5d7_c00001{letter-spacing:0.150613pt;}
.lsc9_c00001{letter-spacing:0.156744pt;}
.ls743_c00001{letter-spacing:0.156876pt;}
.ls233_c00001{letter-spacing:0.157547pt;}
.ls2a_c00001{letter-spacing:0.162880pt;}
.ls53a_c00001{letter-spacing:0.163947pt;}
.ls3ad_c00001{letter-spacing:0.164736pt;}
.ls415_c00001{letter-spacing:0.165013pt;}
.ls666_c00001{letter-spacing:0.165760pt;}
.ls159_c00001{letter-spacing:0.165888pt;}
.ls594_c00001{letter-spacing:0.166080pt;}
.ls51c_c00001{letter-spacing:0.168533pt;}
.ls57e_c00001{letter-spacing:0.169806pt;}
.ls278_c00001{letter-spacing:0.170880pt;}
.ls90_c00001{letter-spacing:0.173013pt;}
.ls61_c00001{letter-spacing:0.174080pt;}
.ls71_c00001{letter-spacing:0.175680pt;}
.ls51d_c00001{letter-spacing:0.177067pt;}
.ls26b_c00001{letter-spacing:0.177387pt;}
.ls2ac_c00001{letter-spacing:0.177813pt;}
.ls24d_c00001{letter-spacing:0.177920pt;}
.ls5de_c00001{letter-spacing:0.178347pt;}
.ls23e_c00001{letter-spacing:0.179413pt;}
.ls18d_c00001{letter-spacing:0.179712pt;}
.ls2_c00001{letter-spacing:0.179968pt;}
.lsdf_c00001{letter-spacing:0.183147pt;}
.ls26e_c00001{letter-spacing:0.185507pt;}
.ls3c4_c00001{letter-spacing:0.187947pt;}
.ls791_c00001{letter-spacing:0.189867pt;}
.ls580_c00001{letter-spacing:0.190080pt;}
.ls44_c00001{letter-spacing:0.190613pt;}
.ls26d_c00001{letter-spacing:0.195270pt;}
.ls578_c00001{letter-spacing:0.195930pt;}
.ls262_c00001{letter-spacing:0.197333pt;}
.ls614_c00001{letter-spacing:0.198080pt;}
.ls641_c00001{letter-spacing:0.200747pt;}
.ls3cc_c00001{letter-spacing:0.204672pt;}
.ls7de_c00001{letter-spacing:0.204800pt;}
.ls290_c00001{letter-spacing:0.207040pt;}
.ls62b_c00001{letter-spacing:0.207147pt;}
.ls3f_c00001{letter-spacing:0.209920pt;}
.ls228_c00001{letter-spacing:0.211413pt;}
.ls534_c00001{letter-spacing:0.211947pt;}
.ls1aa_c00001{letter-spacing:0.212053pt;}
.ls363_c00001{letter-spacing:0.212587pt;}
.ls112_c00001{letter-spacing:0.213120pt;}
.ls5a8_c00001{letter-spacing:0.214400pt;}
.ls79d_c00001{letter-spacing:0.214933pt;}
.ls1b_c00001{letter-spacing:0.215168pt;}
.ls3aa_c00001{letter-spacing:0.215424pt;}
.ls218_c00001{letter-spacing:0.216213pt;}
.ls11b_c00001{letter-spacing:0.216381pt;}
.ls26c_c00001{letter-spacing:0.219129pt;}
.ls53e_c00001{letter-spacing:0.219413pt;}
.ls2fa_c00001{letter-spacing:0.219679pt;}
.ls40c_c00001{letter-spacing:0.220416pt;}
.ls69a_c00001{letter-spacing:0.221013pt;}
.ls57a_c00001{letter-spacing:0.222054pt;}
.ls667_c00001{letter-spacing:0.222613pt;}
.ls7c1_c00001{letter-spacing:0.222720pt;}
.ls6b9_c00001{letter-spacing:0.223147pt;}
.ls1a8_c00001{letter-spacing:0.225664pt;}
.ls1e5_c00001{letter-spacing:0.226240pt;}
.ls582_c00001{letter-spacing:0.226408pt;}
.ls6e4_c00001{letter-spacing:0.227328pt;}
.ls391_c00001{letter-spacing:0.229013pt;}
.ls639_c00001{letter-spacing:0.230080pt;}
.ls7d1_c00001{letter-spacing:0.230613pt;}
.ls21d_c00001{letter-spacing:0.230912pt;}
.ls287_c00001{letter-spacing:0.231680pt;}
.ls630_c00001{letter-spacing:0.232213pt;}
.ls3a7_c00001{letter-spacing:0.232320pt;}
.ls495_c00001{letter-spacing:0.233280pt;}
.lsd_c00001{letter-spacing:0.236160pt;}
.ls591_c00001{letter-spacing:0.236480pt;}
.ls3ac_c00001{letter-spacing:0.236544pt;}
.ls4ba_c00001{letter-spacing:0.236693pt;}
.ls2fe_c00001{letter-spacing:0.237568pt;}
.lse2_c00001{letter-spacing:0.238019pt;}
.ls2a0_c00001{letter-spacing:0.238080pt;}
.ls680_c00001{letter-spacing:0.239680pt;}
.ls2ad_c00001{letter-spacing:0.240747pt;}
.lsa5_c00001{letter-spacing:0.241408pt;}
.ls9a_c00001{letter-spacing:0.242347pt;}
.ls3c3_c00001{letter-spacing:0.242880pt;}
.lse_c00001{letter-spacing:0.243428pt;}
.ls712_c00001{letter-spacing:0.243824pt;}
.ls483_c00001{letter-spacing:0.244608pt;}
.ls263_c00001{letter-spacing:0.246656pt;}
.ls367_c00001{letter-spacing:0.248427pt;}
.ls36e_c00001{letter-spacing:0.248838pt;}
.ls1_c00001{letter-spacing:0.248960pt;}
.ls45a_c00001{letter-spacing:0.250347pt;}
.ls156_c00001{letter-spacing:0.251008pt;}
.ls549_c00001{letter-spacing:0.251904pt;}
.ls689_c00001{letter-spacing:0.254247pt;}
.ls134_c00001{letter-spacing:0.257152pt;}
.ls39a_c00001{letter-spacing:0.258733pt;}
.ls30c_c00001{letter-spacing:0.258880pt;}
.ls355_c00001{letter-spacing:0.259200pt;}
.ls60e_c00001{letter-spacing:0.259733pt;}
.ls14b_c00001{letter-spacing:0.260267pt;}
.ls2ee_c00001{letter-spacing:0.260800pt;}
.ls3bb_c00001{letter-spacing:0.261888pt;}
.ls13_c00001{letter-spacing:0.262400pt;}
.ls4da_c00001{letter-spacing:0.264192pt;}
.ls12d_c00001{letter-spacing:0.264960pt;}
.ls425_c00001{letter-spacing:0.267648pt;}
.ls407_c00001{letter-spacing:0.269948pt;}
.ls45c_c00001{letter-spacing:0.270080pt;}
.lsaa_c00001{letter-spacing:0.270476pt;}
.ls3a6_c00001{letter-spacing:0.272565pt;}
.ls409_c00001{letter-spacing:0.272747pt;}
.ls466_c00001{letter-spacing:0.272896pt;}
.ls299_c00001{letter-spacing:0.274880pt;}
.ls6d7_c00001{letter-spacing:0.275733pt;}
.ls7dc_c00001{letter-spacing:0.277227pt;}
.ls3da_c00001{letter-spacing:0.278080pt;}
.ls1a6_c00001{letter-spacing:0.278144pt;}
.ls253_c00001{letter-spacing:0.278613pt;}
.ls5b4_c00001{letter-spacing:0.278933pt;}
.ls560_c00001{letter-spacing:0.281295pt;}
.ls1a1_c00001{letter-spacing:0.281707pt;}
.ls6a_c00001{letter-spacing:0.282240pt;}
.ls138_c00001{letter-spacing:0.282773pt;}
.ls6f4_c00001{letter-spacing:0.282880pt;}
.ls311_c00001{letter-spacing:0.283093pt;}
.ls4c_c00001{letter-spacing:0.283392pt;}
.lsb5_c00001{letter-spacing:0.284160pt;}
.ls504_c00001{letter-spacing:0.285013pt;}
.ls67f_c00001{letter-spacing:0.285547pt;}
.ls2fd_c00001{letter-spacing:0.287573pt;}
.ls122_c00001{letter-spacing:0.288000pt;}
.ls6b_c00001{letter-spacing:0.288640pt;}
.ls1c2_c00001{letter-spacing:0.291806pt;}
.ls2b0_c00001{letter-spacing:0.291947pt;}
.ls1d_c00001{letter-spacing:0.292114pt;}
.ls3a8_c00001{letter-spacing:0.292356pt;}
.ls19c_c00001{letter-spacing:0.292905pt;}
.ls437_c00001{letter-spacing:0.293333pt;}
.ls5b1_c00001{letter-spacing:0.293547pt;}
.ls168_c00001{letter-spacing:0.293760pt;}
.ls9f_c00001{letter-spacing:0.293888pt;}
.ls39b_c00001{letter-spacing:0.294613pt;}
.ls747_c00001{letter-spacing:0.296213pt;}
.ls6b6_c00001{letter-spacing:0.296747pt;}
.ls11e_c00001{letter-spacing:0.296864pt;}
.ls29b_c00001{letter-spacing:0.297523pt;}
.ls300_c00001{letter-spacing:0.299136pt;}
.ls1d8_c00001{letter-spacing:0.299200pt;}
.ls5a2_c00001{letter-spacing:0.301547pt;}
.ls18c_c00001{letter-spacing:0.301867pt;}
.ls121_c00001{letter-spacing:0.302801pt;}
.ls642_c00001{letter-spacing:0.304213pt;}
.ls1c4_c00001{letter-spacing:0.304384pt;}
.ls632_c00001{letter-spacing:0.305067pt;}
.ls7bb_c00001{letter-spacing:0.305280pt;}
.ls272_c00001{letter-spacing:0.306347pt;}
.ls30b_c00001{letter-spacing:0.306880pt;}
.ls56c_c00001{letter-spacing:0.307413pt;}
.ls660_c00001{letter-spacing:0.307947pt;}
.ls372_c00001{letter-spacing:0.308342pt;}
.ls47e_c00001{letter-spacing:0.308352pt;}
.ls137_c00001{letter-spacing:0.309632pt;}
.ls393_c00001{letter-spacing:0.310613pt;}
.ls133_c00001{letter-spacing:0.313752pt;}
.ls6e0_c00001{letter-spacing:0.313813pt;}
.ls7c_c00001{letter-spacing:0.314880pt;}
.ls3a4_c00001{letter-spacing:0.315005pt;}
.ls4cf_c00001{letter-spacing:0.316480pt;}
.ls181_c00001{letter-spacing:0.317842pt;}
.ls514_c00001{letter-spacing:0.320000pt;}
.ls48d_c00001{letter-spacing:0.320107pt;}
.ls57_c00001{letter-spacing:0.320128pt;}
.ls27_c00001{letter-spacing:0.322048pt;}
.ls45b_c00001{letter-spacing:0.322133pt;}
.ls74b_c00001{letter-spacing:0.323200pt;}
.lse7_c00001{letter-spacing:0.324571pt;}
.ls237_c00001{letter-spacing:0.325376pt;}
.ls76a_c00001{letter-spacing:0.325547pt;}
.ls672_c00001{letter-spacing:0.326933pt;}
.ls5eb_c00001{letter-spacing:0.329472pt;}
.ls35_c00001{letter-spacing:0.330624pt;}
.ls23d_c00001{letter-spacing:0.333547pt;}
.ls2d4_c00001{letter-spacing:0.335872pt;}
.ls754_c00001{letter-spacing:0.338560pt;}
.ls548_c00001{letter-spacing:0.338667pt;}
.ls579_c00001{letter-spacing:0.339612pt;}
.ls314_c00001{letter-spacing:0.340480pt;}
.lsf0_c00001{letter-spacing:0.340799pt;}
.ls5f7_c00001{letter-spacing:0.340992pt;}
.ls590_c00001{letter-spacing:0.341013pt;}
.ls684_c00001{letter-spacing:0.343680pt;}
.ls17_c00001{letter-spacing:0.344213pt;}
.ls15f_c00001{letter-spacing:0.344362pt;}
.lsca_c00001{letter-spacing:0.345600pt;}
.lsd0_c00001{letter-spacing:0.346347pt;}
.ls62a_c00001{letter-spacing:0.347947pt;}
.ls53b_c00001{letter-spacing:0.351360pt;}
.ls427_c00001{letter-spacing:0.351616pt;}
.ls13c_c00001{letter-spacing:0.351618pt;}
.ls745_c00001{letter-spacing:0.351680pt;}
.ls3f2_c00001{letter-spacing:0.352213pt;}
.lsb4_c00001{letter-spacing:0.354667pt;}
.ls3ae_c00001{letter-spacing:0.354816pt;}
.ls7_c00001{letter-spacing:0.355200pt;}
.ls175_c00001{letter-spacing:0.355307pt;}
.ls11c_c00001{letter-spacing:0.356236pt;}
.ls5b7_c00001{letter-spacing:0.356864pt;}
.ls12e_c00001{letter-spacing:0.357120pt;}
.ls510_c00001{letter-spacing:0.358080pt;}
.ls595_c00001{letter-spacing:0.361813pt;}
.lsb2_c00001{letter-spacing:0.362112pt;}
.ls67c_c00001{letter-spacing:0.362174pt;}
.ls5c8_c00001{letter-spacing:0.362347pt;}
.ls3e9_c00001{letter-spacing:0.362437pt;}
.ls6da_c00001{letter-spacing:0.364672pt;}
.ls4e7_c00001{letter-spacing:0.365736pt;}
.ls19d_c00001{letter-spacing:0.366132pt;}
.ls742_c00001{letter-spacing:0.366242pt;}
.ls53c_c00001{letter-spacing:0.366613pt;}
.ls416_c00001{letter-spacing:0.367147pt;}
.lse8_c00001{letter-spacing:0.367360pt;}
.ls123_c00001{letter-spacing:0.368111pt;}
.lsbe_c00001{letter-spacing:0.368747pt;}
.ls70d_c00001{letter-spacing:0.369280pt;}
.ls6e3_c00001{letter-spacing:0.369408pt;}
.ls3db_c00001{letter-spacing:0.369813pt;}
.lsa6_c00001{letter-spacing:0.371413pt;}
.ls6fa_c00001{letter-spacing:0.371947pt;}
.ls1df_c00001{letter-spacing:0.372608pt;}
.ls418_c00001{letter-spacing:0.373547pt;}
.ls482_c00001{letter-spacing:0.374400pt;}
.ls45_c00001{letter-spacing:0.374613pt;}
.ls232_c00001{letter-spacing:0.376213pt;}
.ls3a_c00001{letter-spacing:0.377856pt;}
.lse6_c00001{letter-spacing:0.378666pt;}
.ls541_c00001{letter-spacing:0.378880pt;}
.ls11d_c00001{letter-spacing:0.379985pt;}
.ls346_c00001{letter-spacing:0.386667pt;}
.ls1a0_c00001{letter-spacing:0.388352pt;}
.ls19_c00001{letter-spacing:0.389485pt;}
.ls208_c00001{letter-spacing:0.394895pt;}
.ls6b8_c00001{letter-spacing:0.395947pt;}
.ls101_c00001{letter-spacing:0.398848pt;}
.ls105_c00001{letter-spacing:0.400000pt;}
.ls32d_c00001{letter-spacing:0.400304pt;}
.ls54a_c00001{letter-spacing:0.404096pt;}
.ls56f_c00001{letter-spacing:0.404480pt;}
.ls448_c00001{letter-spacing:0.405013pt;}
.ls2a1_c00001{letter-spacing:0.405547pt;}
.ls1fb_c00001{letter-spacing:0.406613pt;}
.ls5fb_c00001{letter-spacing:0.408213pt;}
.ls200_c00001{letter-spacing:0.408747pt;}
.ls5c9_c00001{letter-spacing:0.411413pt;}
.ls606_c00001{letter-spacing:0.411947pt;}
.ls621_c00001{letter-spacing:0.412267pt;}
.ls663_c00001{letter-spacing:0.413013pt;}
.ls3d1_c00001{letter-spacing:0.414336pt;}
.ls5c6_c00001{letter-spacing:0.414613pt;}
.ls6f8_c00001{letter-spacing:0.416213pt;}
.ls6dc_c00001{letter-spacing:0.417813pt;}
.lsc0_c00001{letter-spacing:0.419840pt;}
.ls421_c00001{letter-spacing:0.421013pt;}
.ls7dd_c00001{letter-spacing:0.422400pt;}
.ls6db_c00001{letter-spacing:0.423147pt;}
.ls38_c00001{letter-spacing:0.425088pt;}
.ls1ac_c00001{letter-spacing:0.426240pt;}
.ls753_c00001{letter-spacing:0.426560pt;}
.ls554_c00001{letter-spacing:0.426624pt;}
.ls125_c00001{letter-spacing:0.427484pt;}
.ls385_c00001{letter-spacing:0.427947pt;}
.ls7e8_c00001{letter-spacing:0.429867pt;}
.ls6aa_c00001{letter-spacing:0.430613pt;}
.ls644_c00001{letter-spacing:0.432747pt;}
.lsa9_c00001{letter-spacing:0.432761pt;}
.ls41f_c00001{letter-spacing:0.433813pt;}
.ls447_c00001{letter-spacing:0.434880pt;}
.ls5e8_c00001{letter-spacing:0.435947pt;}
.ls7b3_c00001{letter-spacing:0.438080pt;}
.ls99_c00001{letter-spacing:0.438171pt;}
.ls6f5_c00001{letter-spacing:0.438613pt;}
.ls27a_c00001{letter-spacing:0.439147pt;}
.ls54e_c00001{letter-spacing:0.439358pt;}
.ls57f_c00001{letter-spacing:0.439754pt;}
.ls17f_c00001{letter-spacing:0.439798pt;}
.ls3eb_c00001{letter-spacing:0.440000pt;}
.ls477_c00001{letter-spacing:0.443200pt;}
.ls60_c00001{letter-spacing:0.445547pt;}
.ls3e_c00001{letter-spacing:0.446080pt;}
.ls194_c00001{letter-spacing:0.449067pt;}
.ls2dd_c00001{letter-spacing:0.451328pt;}
.ls2ab_c00001{letter-spacing:0.451947pt;}
.ls3d0_c00001{letter-spacing:0.454272pt;}
.ls58_c00001{letter-spacing:0.456576pt;}
.ls511_c00001{letter-spacing:0.457280pt;}
.ls1bf_c00001{letter-spacing:0.459392pt;}
.ls3e7_c00001{letter-spacing:0.459809pt;}
.ls792_c00001{letter-spacing:0.461018pt;}
.ls79_c00001{letter-spacing:0.461824pt;}
.ls1ff_c00001{letter-spacing:0.464128pt;}
.ls18_c00001{letter-spacing:0.465280pt;}
.ls734_c00001{letter-spacing:0.466516pt;}
.ls7a_c00001{letter-spacing:0.467072pt;}
.ls685_c00001{letter-spacing:0.469013pt;}
.ls201_c00001{letter-spacing:0.470613pt;}
.ls3ec_c00001{letter-spacing:0.470628pt;}
.ls14_c00001{letter-spacing:0.472320pt;}
.lsd4_c00001{letter-spacing:0.473088pt;}
.ls117_c00001{letter-spacing:0.473530pt;}
.ls3ea_c00001{letter-spacing:0.473600pt;}
.ls301_c00001{letter-spacing:0.473813pt;}
.ls176_c00001{letter-spacing:0.475202pt;}
.ls268_c00001{letter-spacing:0.475413pt;}
.ls733_c00001{letter-spacing:0.475751pt;}
.ls143_c00001{letter-spacing:0.476037pt;}
.ls93_c00001{letter-spacing:0.476480pt;}
.ls10_c00001{letter-spacing:0.477568pt;}
.ls638_c00001{letter-spacing:0.478613pt;}
.ls3f5_c00001{letter-spacing:0.479680pt;}
.ls55d_c00001{letter-spacing:0.481447pt;}
.ls307_c00001{letter-spacing:0.482816pt;}
.ls144_c00001{letter-spacing:0.484480pt;}
.ls36a_c00001{letter-spacing:0.485013pt;}
.ls30_c00001{letter-spacing:0.486856pt;}
.ls5d8_c00001{letter-spacing:0.487680pt;}
.ls47f_c00001{letter-spacing:0.487956pt;}
.ls40_c00001{letter-spacing:0.488064pt;}
.ls3a5_c00001{letter-spacing:0.488506pt;}
.ls2ff_c00001{letter-spacing:0.489813pt;}
.ls620_c00001{letter-spacing:0.490347pt;}
.ls5d0_c00001{letter-spacing:0.490880pt;}
.ls7b0_c00001{letter-spacing:0.491804pt;}
.ls356_c00001{letter-spacing:0.492266pt;}
.ls718_c00001{letter-spacing:0.492480pt;}
.ls1db_c00001{letter-spacing:0.493312pt;}
.ls6ce_c00001{letter-spacing:0.493547pt;}
.ls19f_c00001{letter-spacing:0.497280pt;}
.ls3ef_c00001{letter-spacing:0.497675pt;}
.ls25f_c00001{letter-spacing:0.497813pt;}
.ls12_c00001{letter-spacing:0.498560pt;}
.ls304_c00001{letter-spacing:0.498880pt;}
.ls1f8_c00001{letter-spacing:0.499200pt;}
.ls62d_c00001{letter-spacing:0.504747pt;}
.ls5da_c00001{letter-spacing:0.507947pt;}
.ls57b_c00001{letter-spacing:0.508494pt;}
.ls4dc_c00001{letter-spacing:0.509056pt;}
.ls7af_c00001{letter-spacing:0.512475pt;}
.ls33b_c00001{letter-spacing:0.513600pt;}
.ls552_c00001{letter-spacing:0.514304pt;}
.ls306_c00001{letter-spacing:0.519147pt;}
.ls1a_c00001{letter-spacing:0.519552pt;}
.ls47b_c00001{letter-spacing:0.520853pt;}
.ls17a_c00001{letter-spacing:0.524800pt;}
.ls502_c00001{letter-spacing:0.525547pt;}
.ls5e9_c00001{letter-spacing:0.527147pt;}
.ls39e_c00001{letter-spacing:0.528213pt;}
.ls7ae_c00001{letter-spacing:0.529715pt;}
.ls59b_c00001{letter-spacing:0.530048pt;}
.ls5d_c00001{letter-spacing:0.530432pt;}
.ls77b_c00001{letter-spacing:0.531200pt;}
.ls10c_c00001{letter-spacing:0.531733pt;}
.lsde_c00001{letter-spacing:0.535147pt;}
.ls48c_c00001{letter-spacing:0.535168pt;}
.ls85_c00001{letter-spacing:0.535296pt;}
.ls1f_c00001{letter-spacing:0.535542pt;}
.ls423_c00001{letter-spacing:0.535680pt;}
.ls4e6_c00001{letter-spacing:0.536883pt;}
.ls5e7_c00001{letter-spacing:0.537280pt;}
.ls158_c00001{letter-spacing:0.540480pt;}
.ls1a9_c00001{letter-spacing:0.540951pt;}
.ls70f_c00001{letter-spacing:0.541013pt;}
.ls613_c00001{letter-spacing:0.541547pt;}
.ls48f_c00001{letter-spacing:0.542080pt;}
.ls6ad_c00001{letter-spacing:0.542613pt;}
.ls1b8_c00001{letter-spacing:0.545792pt;}
.ls8_c00001{letter-spacing:0.547413pt;}
.ls768_c00001{letter-spacing:0.549013pt;}
.ls5cf_c00001{letter-spacing:0.550613pt;}
.ls1b7_c00001{letter-spacing:0.551040pt;}
.ls5f9_c00001{letter-spacing:0.551147pt;}
.ls537_c00001{letter-spacing:0.551639pt;}
.ls169_c00001{letter-spacing:0.552166pt;}
.ls535_c00001{letter-spacing:0.555729pt;}
.ls6e6_c00001{letter-spacing:0.555733pt;}
.ls44f_c00001{letter-spacing:0.556288pt;}
.ls16_c00001{letter-spacing:0.556480pt;}
.ls3dc_c00001{letter-spacing:0.560747pt;}
.ls56d_c00001{letter-spacing:0.561280pt;}
.ls244_c00001{letter-spacing:0.561536pt;}
.ls7bc_c00001{letter-spacing:0.561813pt;}
.ls609_c00001{letter-spacing:0.563413pt;}
.ls98_c00001{letter-spacing:0.566784pt;}
.ls315_c00001{letter-spacing:0.567147pt;}
.ls5ea_c00001{letter-spacing:0.568853pt;}
.ls4df_c00001{letter-spacing:0.572032pt;}
.ls6df_c00001{letter-spacing:0.573013pt;}
.lscc_c00001{letter-spacing:0.577280pt;}
.ls3cb_c00001{letter-spacing:0.579072pt;}
.ls708_c00001{letter-spacing:0.581760pt;}
.ls11_c00001{letter-spacing:0.584228pt;}
.ls662_c00001{letter-spacing:0.584533pt;}
.ls467_c00001{letter-spacing:0.585261pt;}
.ls269_c00001{letter-spacing:0.585280pt;}
.ls456_c00001{letter-spacing:0.585811pt;}
.ls7db_c00001{letter-spacing:0.586667pt;}
.ls7b2_c00001{letter-spacing:0.587200pt;}
.ls517_c00001{letter-spacing:0.587776pt;}
.ls234_c00001{letter-spacing:0.589013pt;}
.ls61f_c00001{letter-spacing:0.589867pt;}
.ls70a_c00001{letter-spacing:0.593067pt;}
.lsb3_c00001{letter-spacing:0.593280pt;}
.ls124_c00001{letter-spacing:0.593727pt;}
.ls235_c00001{letter-spacing:0.594347pt;}
.ls6fb_c00001{letter-spacing:0.594667pt;}
.ls23b_c00001{letter-spacing:0.594880pt;}
.ls69f_c00001{letter-spacing:0.596800pt;}
.ls74a_c00001{letter-spacing:0.598080pt;}
.ls575_c00001{letter-spacing:0.598272pt;}
.ls697_c00001{letter-spacing:0.599680pt;}
.ls5fa_c00001{letter-spacing:0.600213pt;}
.ls5d6_c00001{letter-spacing:0.600747pt;}
.ls7ba_c00001{letter-spacing:0.602133pt;}
.ls60b_c00001{letter-spacing:0.604480pt;}
.ls6e8_c00001{letter-spacing:0.605547pt;}
.ls120_c00001{letter-spacing:0.605602pt;}
.ls454_c00001{letter-spacing:0.606080pt;}
.ls70e_c00001{letter-spacing:0.607147pt;}
.ls710_c00001{letter-spacing:0.607680pt;}
.ls174_c00001{letter-spacing:0.608460pt;}
.ls446_c00001{letter-spacing:0.608747pt;}
.ls6f1_c00001{letter-spacing:0.608768pt;}
.ls28e_c00001{letter-spacing:0.609067pt;}
.ls683_c00001{letter-spacing:0.610880pt;}
.ls11f_c00001{letter-spacing:0.611539pt;}
.ls6cb_c00001{letter-spacing:0.611733pt;}
.ls20_c00001{letter-spacing:0.614016pt;}
.ls626_c00001{letter-spacing:0.614080pt;}
.ls115_c00001{letter-spacing:0.614507pt;}
.ls9c_c00001{letter-spacing:0.614613pt;}
.ls449_c00001{letter-spacing:0.615147pt;}
.ls47d_c00001{letter-spacing:0.615573pt;}
.ls645_c00001{letter-spacing:0.615680pt;}
.ls22c_c00001{letter-spacing:0.616747pt;}
.ls6ea_c00001{letter-spacing:0.618347pt;}
.ls4c6_c00001{letter-spacing:0.618667pt;}
.ls5b2_c00001{letter-spacing:0.618880pt;}
.ls1c6_c00001{letter-spacing:0.619008pt;}
.ls7e_c00001{letter-spacing:0.619264pt;}
.ls53d_c00001{letter-spacing:0.621013pt;}
.ls56e_c00001{letter-spacing:0.623680pt;}
.ls7e4_c00001{letter-spacing:0.624213pt;}
.ls748_c00001{letter-spacing:0.624512pt;}
.ls458_c00001{letter-spacing:0.627200pt;}
.ls6e5_c00001{letter-spacing:0.629547pt;}
.ls4d2_c00001{letter-spacing:0.629760pt;}
.ls690_c00001{letter-spacing:0.631040pt;}
.ls6a6_c00001{letter-spacing:0.632747pt;}
.lsf_c00001{letter-spacing:0.632913pt;}
.ls53_c00001{letter-spacing:0.635008pt;}
.ls16e_c00001{letter-spacing:0.635068pt;}
.ls646_c00001{letter-spacing:0.635948pt;}
.ls3d_c00001{letter-spacing:0.638323pt;}
.ls113_c00001{letter-spacing:0.639360pt;}
.ls52_c00001{letter-spacing:0.640256pt;}
.ls772_c00001{letter-spacing:0.642048pt;}
.ls5a7_c00001{letter-spacing:0.643093pt;}
.ls5bf_c00001{letter-spacing:0.643413pt;}
.ls4dd_c00001{letter-spacing:0.645504pt;}
.ls66a_c00001{letter-spacing:0.645547pt;}
.ls5db_c00001{letter-spacing:0.646080pt;}
.ls4c3_c00001{letter-spacing:0.647680pt;}
.ls1f6_c00001{letter-spacing:0.649142pt;}
.lsd6_c00001{letter-spacing:0.650880pt;}
.ls3d9_c00001{letter-spacing:0.656747pt;}
.ls717_c00001{letter-spacing:0.657280pt;}
.ls7a0_c00001{letter-spacing:0.657600pt;}
.ls451_c00001{letter-spacing:0.659037pt;}
.ls5a3_c00001{letter-spacing:0.659947pt;}
.ls43_c00001{letter-spacing:0.661248pt;}
.ls5b8_c00001{letter-spacing:0.663147pt;}
.ls1b4_c00001{letter-spacing:0.663893pt;}
.ls6b7_c00001{letter-spacing:0.667947pt;}
.ls6d2_c00001{letter-spacing:0.670912pt;}
.ls62f_c00001{letter-spacing:0.671680pt;}
.ls3c0_c00001{letter-spacing:0.672747pt;}
.ls5f8_c00001{letter-spacing:0.673280pt;}
.ls655_c00001{letter-spacing:0.677013pt;}
.ls31f_c00001{letter-spacing:0.678080pt;}
.ls7b_c00001{letter-spacing:0.678613pt;}
.ls3cf_c00001{letter-spacing:0.679680pt;}
.ls4bb_c00001{letter-spacing:0.680213pt;}
.ls445_c00001{letter-spacing:0.681280pt;}
.lsae_c00001{letter-spacing:0.681599pt;}
.ls7b8_c00001{letter-spacing:0.681813pt;}
.ls465_c00001{letter-spacing:0.682240pt;}
.ls6e1_c00001{letter-spacing:0.683413pt;}
.ls2f_c00001{letter-spacing:0.685547pt;}
.ls4c4_c00001{letter-spacing:0.687147pt;}
.ls192_c00001{letter-spacing:0.687488pt;}
.ls5ba_c00001{letter-spacing:0.687680pt;}
.ls273_c00001{letter-spacing:0.688213pt;}
.ls39c_c00001{letter-spacing:0.688747pt;}
.ls600_c00001{letter-spacing:0.689280pt;}
.ls2ae_c00001{letter-spacing:0.690347pt;}
.ls2e_c00001{letter-spacing:0.694080pt;}
.ls453_c00001{letter-spacing:0.694613pt;}
.ls3f1_c00001{letter-spacing:0.696213pt;}
.ls455_c00001{letter-spacing:0.696747pt;}
.ls5bd_c00001{letter-spacing:0.703232pt;}
.ls384_c00001{letter-spacing:0.703237pt;}
.ls29c_c00001{letter-spacing:0.707947pt;}
.ls23_c00001{letter-spacing:0.708480pt;}
.ls6ed_c00001{letter-spacing:0.708646pt;}
.ls38f_c00001{letter-spacing:0.713728pt;}
.ls7b9_c00001{letter-spacing:0.719147pt;}
.ls7d6_c00001{letter-spacing:0.722347pt;}
.ls4ce_c00001{letter-spacing:0.724480pt;}
.ls259_c00001{letter-spacing:0.725547pt;}
.ls3bf_c00001{letter-spacing:0.728747pt;}
.ls1e_c00001{letter-spacing:0.730284pt;}
.ls7aa_c00001{letter-spacing:0.731413pt;}
.ls406_c00001{letter-spacing:0.732483pt;}
.ls305_c00001{letter-spacing:0.733013pt;}
.ls413_c00001{letter-spacing:0.733033pt;}
.ls76f_c00001{letter-spacing:0.734720pt;}
.ls601_c00001{letter-spacing:0.735680pt;}
.ls6a7_c00001{letter-spacing:0.738880pt;}
.ls3f3_c00001{letter-spacing:0.739413pt;}
.ls420_c00001{letter-spacing:0.740480pt;}
.ls624_c00001{letter-spacing:0.742613pt;}
.ls2b_c00001{letter-spacing:0.744747pt;}
.ls1fc_c00001{letter-spacing:0.746347pt;}
.ls6b1_c00001{letter-spacing:0.746880pt;}
.ls1c7_c00001{letter-spacing:0.748800pt;}
.ls603_c00001{letter-spacing:0.752213pt;}
.ls631_c00001{letter-spacing:0.752747pt;}
.ls769_c00001{letter-spacing:0.755413pt;}
.ls318_c00001{letter-spacing:0.756480pt;}
.ls13b_c00001{letter-spacing:0.757332pt;}
.ls5ee_c00001{letter-spacing:0.760960pt;}
.ls5ae_c00001{letter-spacing:0.766080pt;}
.ls783_c00001{letter-spacing:0.766208pt;}
.ls303_c00001{letter-spacing:0.771456pt;}
.lsdb_c00001{letter-spacing:0.771840pt;}
.ls18f_c00001{letter-spacing:0.776704pt;}
.ls179_c00001{letter-spacing:0.787200pt;}
.ls187_c00001{letter-spacing:0.789657pt;}
.ls573_c00001{letter-spacing:0.792448pt;}
.ls775_c00001{letter-spacing:0.795199pt;}
.ls160_c00001{letter-spacing:0.795594pt;}
.ls50e_c00001{letter-spacing:0.797696pt;}
.ls4de_c00001{letter-spacing:0.802944pt;}
.ls565_c00001{letter-spacing:0.808192pt;}
.ls23a_c00001{letter-spacing:0.813440pt;}
.ls787_c00001{letter-spacing:0.818688pt;}
.ls486_c00001{letter-spacing:0.829184pt;}
.ls189_c00001{letter-spacing:0.829440pt;}
.ls19a_c00001{letter-spacing:0.834432pt;}
.ls47_c00001{letter-spacing:0.839680pt;}
.ls20a_c00001{letter-spacing:0.840960pt;}
.ls330_c00001{letter-spacing:0.844928pt;}
.ls3ed_c00001{letter-spacing:0.848960pt;}
.ls46c_c00001{letter-spacing:0.850176pt;}
.ls487_c00001{letter-spacing:0.854703pt;}
.ls11a_c00001{letter-spacing:0.854857pt;}
.ls3b_c00001{letter-spacing:0.855424pt;}
.ls199_c00001{letter-spacing:0.860113pt;}
.ls2e5_c00001{letter-spacing:0.865522pt;}
.ls781_c00001{letter-spacing:0.865920pt;}
.ls43e_c00001{letter-spacing:0.876416pt;}
.ls4d_c00001{letter-spacing:0.881751pt;}
.ls32b_c00001{letter-spacing:0.886912pt;}
.ls490_c00001{letter-spacing:0.892160pt;}
.ls43d_c00001{letter-spacing:0.913152pt;}
.ls12f_c00001{letter-spacing:0.914340pt;}
.ls658_c00001{letter-spacing:0.934144pt;}
.ls788_c00001{letter-spacing:0.941256pt;}
.ls1f4_c00001{letter-spacing:0.954133pt;}
.ls4ca_c00001{letter-spacing:0.955136pt;}
.ls7e5_c00001{letter-spacing:0.960000pt;}
.ls617_c00001{letter-spacing:0.960384pt;}
.ls73c_c00001{letter-spacing:0.965632pt;}
.ls61c_c00001{letter-spacing:0.976128pt;}
.ls4f2_c00001{letter-spacing:0.981376pt;}
.ls34_c00001{letter-spacing:0.997120pt;}
.ls95_c00001{letter-spacing:1.002368pt;}
.ls776_c00001{letter-spacing:1.007616pt;}
.ls610_c00001{letter-spacing:1.011579pt;}
.ls5c0_c00001{letter-spacing:1.012864pt;}
.ls780_c00001{letter-spacing:1.027808pt;}
.ls24a_c00001{letter-spacing:1.028608pt;}
.ls4b5_c00001{letter-spacing:1.033856pt;}
.ls222_c00001{letter-spacing:1.036800pt;}
.ls77f_c00001{letter-spacing:1.038627pt;}
.ls512_c00001{letter-spacing:1.039104pt;}
.ls15b_c00001{letter-spacing:1.054848pt;}
.ls282_c00001{letter-spacing:1.060096pt;}
.ls7ec_c00001{letter-spacing:1.065344pt;}
.ls6af_c00001{letter-spacing:1.086336pt;}
.ls15c_c00001{letter-spacing:1.087312pt;}
.ls66c_c00001{letter-spacing:1.091584pt;}
.ls4b3_c00001{letter-spacing:1.102080pt;}
.ls145_c00001{letter-spacing:1.107328pt;}
.ls4b6_c00001{letter-spacing:1.117824pt;}
.lsee_c00001{letter-spacing:1.123072pt;}
.ls6dd_c00001{letter-spacing:1.135998pt;}
.ls149_c00001{letter-spacing:1.138816pt;}
.ls460_c00001{letter-spacing:1.149312pt;}
.ls239_c00001{letter-spacing:1.154560pt;}
.ls165_c00001{letter-spacing:1.159808pt;}
.ls2ea_c00001{letter-spacing:1.180800pt;}
.ls146_c00001{letter-spacing:1.207040pt;}
.ls3df_c00001{letter-spacing:1.222784pt;}
.ls54b_c00001{letter-spacing:1.233280pt;}
.ls83_c00001{letter-spacing:1.243776pt;}
.ls55e_c00001{letter-spacing:1.249024pt;}
.ls354_c00001{letter-spacing:1.264768pt;}
.ls73b_c00001{letter-spacing:1.270016pt;}
.ls4b8_c00001{letter-spacing:1.275264pt;}
.ls691_c00001{letter-spacing:1.280512pt;}
.ls5f6_c00001{letter-spacing:1.285760pt;}
.ls7e0_c00001{letter-spacing:1.291008pt;}
.lsb0_c00001{letter-spacing:1.301504pt;}
.ls739_c00001{letter-spacing:1.306752pt;}
.lsab_c00001{letter-spacing:1.312000pt;}
.ls72a_c00001{letter-spacing:1.338240pt;}
.ls1c8_c00001{letter-spacing:1.343488pt;}
.ls190_c00001{letter-spacing:1.348736pt;}
.ls5e2_c00001{letter-spacing:1.352379pt;}
.ls31a_c00001{letter-spacing:1.353984pt;}
.ls597_c00001{letter-spacing:1.356800pt;}
.ls5f5_c00001{letter-spacing:1.364480pt;}
.ls73f_c00001{letter-spacing:1.369728pt;}
.ls44e_c00001{letter-spacing:1.374976pt;}
.ls45f_c00001{letter-spacing:1.390720pt;}
.ls1dd_c00001{letter-spacing:1.395968pt;}
.ls245_c00001{letter-spacing:1.401216pt;}
.ls5b0_c00001{letter-spacing:1.411712pt;}
.ls32a_c00001{letter-spacing:1.416960pt;}
.ls444_c00001{letter-spacing:1.422208pt;}
.ls36_c00001{letter-spacing:1.437952pt;}
.ls5f2_c00001{letter-spacing:1.448448pt;}
.ls7b5_c00001{letter-spacing:1.469440pt;}
.ls703_c00001{letter-spacing:1.472000pt;}
.ls1d1_c00001{letter-spacing:1.474688pt;}
.ls292_c00001{letter-spacing:1.479936pt;}
.ls1ce_c00001{letter-spacing:1.483733pt;}
.ls2d2_c00001{letter-spacing:1.485184pt;}
.ls7b6_c00001{letter-spacing:1.490432pt;}
.ls317_c00001{letter-spacing:1.495680pt;}
.ls43b_c00001{letter-spacing:1.500928pt;}
.ls352_c00001{letter-spacing:1.506176pt;}
.ls362_c00001{letter-spacing:1.511424pt;}
.ls77a_c00001{letter-spacing:1.536000pt;}
.ls529_c00001{letter-spacing:1.537664pt;}
.ls3e2_c00001{letter-spacing:1.569152pt;}
.ls61d_c00001{letter-spacing:1.595392pt;}
.ls1ea_c00001{letter-spacing:1.611136pt;}
.ls36f_c00001{letter-spacing:1.622854pt;}
.ls428_c00001{letter-spacing:1.626880pt;}
.lseb_c00001{letter-spacing:1.638400pt;}
.ls261_c00001{letter-spacing:1.658368pt;}
.ls324_c00001{letter-spacing:1.663616pt;}
.ls308_c00001{letter-spacing:1.674112pt;}
.ls4fa_c00001{letter-spacing:1.679360pt;}
.ls424_c00001{letter-spacing:1.684608pt;}
.ls347_c00001{letter-spacing:1.695104pt;}
.ls3c_c00001{letter-spacing:1.737088pt;}
.ls37_c00001{letter-spacing:1.742336pt;}
.ls555_c00001{letter-spacing:1.747584pt;}
.ls10b_c00001{letter-spacing:1.763328pt;}
.ls129_c00001{letter-spacing:1.831552pt;}
.ls40e_c00001{letter-spacing:1.836800pt;}
.ls333_c00001{letter-spacing:1.842048pt;}
.ls671_c00001{letter-spacing:1.847296pt;}
.ls10a_c00001{letter-spacing:1.852544pt;}
.ls343_c00001{letter-spacing:1.857792pt;}
.ls797_c00001{letter-spacing:1.878784pt;}
.ls399_c00001{letter-spacing:1.884032pt;}
.ls332_c00001{letter-spacing:1.889280pt;}
.ls789_c00001{letter-spacing:1.894528pt;}
.ls79b_c00001{letter-spacing:1.905024pt;}
.ls285_c00001{letter-spacing:1.915520pt;}
.ls4b7_c00001{letter-spacing:1.920768pt;}
.ls4f1_c00001{letter-spacing:1.931264pt;}
.ls342_c00001{letter-spacing:1.936512pt;}
.ls2eb_c00001{letter-spacing:1.962752pt;}
.ls470_c00001{letter-spacing:1.978496pt;}
.ls6ba_c00001{letter-spacing:1.994240pt;}
.ls54c_c00001{letter-spacing:2.006930pt;}
.ls618_c00001{letter-spacing:2.020480pt;}
.ls570_c00001{letter-spacing:2.046720pt;}
.ls7c3_c00001{letter-spacing:2.061025pt;}
.ls40d_c00001{letter-spacing:2.062464pt;}
.ls5f3_c00001{letter-spacing:2.067712pt;}
.ls277_c00001{letter-spacing:2.078208pt;}
.ls37d_c00001{letter-spacing:2.082663pt;}
.ls66b_c00001{letter-spacing:2.093952pt;}
.lse3_c00001{letter-spacing:2.099200pt;}
.ls36d_c00001{letter-spacing:2.109711pt;}
.ls790_c00001{letter-spacing:2.112000pt;}
.ls6f_c00001{letter-spacing:2.114944pt;}
.ls152_c00001{letter-spacing:2.130688pt;}
.ls40f_c00001{letter-spacing:2.137600pt;}
.ls4aa_c00001{letter-spacing:2.163200pt;}
.ls7c0_c00001{letter-spacing:2.170403pt;}
.ls43f_c00001{letter-spacing:2.176000pt;}
.ls260_c00001{letter-spacing:2.188416pt;}
.ls64e_c00001{letter-spacing:2.204160pt;}
.ls1c_c00001{letter-spacing:2.209408pt;}
.ls226_c00001{letter-spacing:2.212491pt;}
.ls76b_c00001{letter-spacing:2.214656pt;}
.ls371_c00001{letter-spacing:2.217901pt;}
.ls1d0_c00001{letter-spacing:2.246144pt;}
.ls2d1_c00001{letter-spacing:2.256640pt;}
.ls96_c00001{letter-spacing:2.261888pt;}
.ls7be_c00001{letter-spacing:2.272384pt;}
.ls14e_c00001{letter-spacing:2.288128pt;}
.ls388_c00001{letter-spacing:2.303872pt;}
.ls500_c00001{letter-spacing:2.319616pt;}
.ls35b_c00001{letter-spacing:2.345856pt;}
.ls119_c00001{letter-spacing:2.351104pt;}
.ls16d_c00001{letter-spacing:2.361600pt;}
.ls4fe_c00001{letter-spacing:2.387840pt;}
.ls50d_c00001{letter-spacing:2.398336pt;}
.ls7bf_c00001{letter-spacing:2.407894pt;}
.ls1ba_c00001{letter-spacing:2.414080pt;}
.ls1a5_c00001{letter-spacing:2.419328pt;}
.ls675_c00001{letter-spacing:2.424576pt;}
.ls6bb_c00001{letter-spacing:2.461312pt;}
.ls20b_c00001{letter-spacing:2.466560pt;}
.ls54_c00001{letter-spacing:2.471808pt;}
.ls592_c00001{letter-spacing:2.482304pt;}
.ls7c7_c00001{letter-spacing:2.492800pt;}
.lsc7_c00001{letter-spacing:2.498048pt;}
.ls38a_c00001{letter-spacing:2.513792pt;}
.ls4f9_c00001{letter-spacing:2.519040pt;}
.ls6a3_c00001{letter-spacing:2.545280pt;}
.ls520_c00001{letter-spacing:2.550528pt;}
.ls4be_c00001{letter-spacing:2.571520pt;}
.ls497_c00001{letter-spacing:2.579200pt;}
.ls1a4_c00001{letter-spacing:2.582016pt;}
.ls7c2_c00001{letter-spacing:2.585748pt;}
.ls4bf_c00001{letter-spacing:2.587264pt;}
.ls12a_c00001{letter-spacing:2.624000pt;}
.ls724_c00001{letter-spacing:2.654933pt;}
.ls20d_c00001{letter-spacing:2.655467pt;}
.ls488_c00001{letter-spacing:2.655488pt;}
.ls20c_c00001{letter-spacing:2.656000pt;}
.ls634_c00001{letter-spacing:2.660736pt;}
.ls16f_c00001{letter-spacing:2.665984pt;}
.ls751_c00001{letter-spacing:2.671232pt;}
.ls33f_c00001{letter-spacing:2.676480pt;}
.ls2f5_c00001{letter-spacing:2.681728pt;}
.ls4b4_c00001{letter-spacing:2.686976pt;}
.ls7ea_c00001{letter-spacing:2.692224pt;}
.ls3fe_c00001{letter-spacing:2.707968pt;}
.ls380_c00001{letter-spacing:2.718464pt;}
.ls757_c00001{letter-spacing:2.739200pt;}
.ls6c5_c00001{letter-spacing:2.744213pt;}
.ls75f_c00001{letter-spacing:2.755200pt;}
.ls358_c00001{letter-spacing:2.760448pt;}
.ls2f8_c00001{letter-spacing:2.765696pt;}
.ls679_c00001{letter-spacing:2.807147pt;}
.ls107_c00001{letter-spacing:2.812928pt;}
.ls186_c00001{letter-spacing:2.822400pt;}
.ls2f6_c00001{letter-spacing:2.828672pt;}
.ls75e_c00001{letter-spacing:2.839995pt;}
.ls647_c00001{letter-spacing:2.844416pt;}
.ls74f_c00001{letter-spacing:2.849664pt;}
.ls42f_c00001{letter-spacing:2.860160pt;}
.ls670_c00001{letter-spacing:2.870656pt;}
.ls188_c00001{letter-spacing:2.885514pt;}
.lsa2_c00001{letter-spacing:2.886400pt;}
.ls6bd_c00001{letter-spacing:2.896896pt;}
.ls581_c00001{letter-spacing:2.912640pt;}
.ls210_c00001{letter-spacing:2.932800pt;}
.ls17b_c00001{letter-spacing:2.933632pt;}
.ls220_c00001{letter-spacing:2.934144pt;}
.ls1dc_c00001{letter-spacing:2.944128pt;}
.ls6d1_c00001{letter-spacing:2.949376pt;}
.ls1d3_c00001{letter-spacing:2.954624pt;}
.ls1be_c00001{letter-spacing:2.965120pt;}
.ls3d3_c00001{letter-spacing:2.980864pt;}
.ls369_c00001{letter-spacing:3.000747pt;}
.ls501_c00001{letter-spacing:3.038592pt;}
.ls44d_c00001{letter-spacing:3.043840pt;}
.ls55_c00001{letter-spacing:3.045557pt;}
.ls42b_c00001{letter-spacing:3.075328pt;}
.ls431_c00001{letter-spacing:3.084800pt;}
.ls471_c00001{letter-spacing:3.091072pt;}
.ls63f_c00001{letter-spacing:3.096320pt;}
.ls1f3_c00001{letter-spacing:3.117312pt;}
.ls78_c00001{letter-spacing:3.122560pt;}
.ls77_c00001{letter-spacing:3.127808pt;}
.ls532_c00001{letter-spacing:3.133056pt;}
.ls794_c00001{letter-spacing:3.138304pt;}
.lsfe_c00001{letter-spacing:3.143552pt;}
.ls75_c00001{letter-spacing:3.148800pt;}
.ls4bd_c00001{letter-spacing:3.153173pt;}
.ls1c9_c00001{letter-spacing:3.154048pt;}
.ls258_c00001{letter-spacing:3.159296pt;}
.ls2e4_c00001{letter-spacing:3.185536pt;}
.ls6c3_c00001{letter-spacing:3.216747pt;}
.ls798_c00001{letter-spacing:3.232768pt;}
.ls2d5_c00001{letter-spacing:3.253760pt;}
.ls545_c00001{letter-spacing:3.269504pt;}
.ls543_c00001{letter-spacing:3.274752pt;}
.ls341_c00001{letter-spacing:3.290496pt;}
.ls74_c00001{letter-spacing:3.306240pt;}
.ls652_c00001{letter-spacing:3.311488pt;}
.ls76_c00001{letter-spacing:3.316736pt;}
.ls5ec_c00001{letter-spacing:3.321984pt;}
.ls59_c00001{letter-spacing:3.327232pt;}
.ls3fa_c00001{letter-spacing:3.337728pt;}
.ls3f6_c00001{letter-spacing:3.342976pt;}
.ls6ac_c00001{letter-spacing:3.343680pt;}
.ls481_c00001{letter-spacing:3.358720pt;}
.ls48a_c00001{letter-spacing:3.363968pt;}
.ls2cc_c00001{letter-spacing:3.366400pt;}
.ls17c_c00001{letter-spacing:3.384960pt;}
.ls2af_c00001{letter-spacing:3.392000pt;}
.ls1b6_c00001{letter-spacing:3.395456pt;}
.ls1b5_c00001{letter-spacing:3.400704pt;}
.ls81_c00001{letter-spacing:3.411200pt;}
.ls7bd_c00001{letter-spacing:3.426944pt;}
.ls7da_c00001{letter-spacing:3.432960pt;}
.lsf3_c00001{letter-spacing:3.458432pt;}
.ls1fd_c00001{letter-spacing:3.463680pt;}
.ls4c9_c00001{letter-spacing:3.489920pt;}
.ls63b_c00001{letter-spacing:3.495168pt;}
.ls4a_c00001{letter-spacing:3.510912pt;}
.ls3af_c00001{letter-spacing:3.521408pt;}
.ls155_c00001{letter-spacing:3.526656pt;}
.ls7cb_c00001{letter-spacing:3.537152pt;}
.ls241_c00001{letter-spacing:3.542400pt;}
.ls395_c00001{letter-spacing:3.558144pt;}
.ls240_c00001{letter-spacing:3.564870pt;}
.ls480_c00001{letter-spacing:3.568640pt;}
.ls766_c00001{letter-spacing:3.582613pt;}
.ls489_c00001{letter-spacing:3.584384pt;}
.ls75c_c00001{letter-spacing:3.594880pt;}
.ls97_c00001{letter-spacing:3.600128pt;}
.ls7ef_c00001{letter-spacing:3.610624pt;}
.ls7ee_c00001{letter-spacing:3.615872pt;}
.ls3b2_c00001{letter-spacing:3.621120pt;}
.ls111_c00001{letter-spacing:3.631616pt;}
.ls43c_c00001{letter-spacing:3.636864pt;}
.ls2e9_c00001{letter-spacing:3.648000pt;}
.ls230_c00001{letter-spacing:3.652608pt;}
.ls494_c00001{letter-spacing:3.668352pt;}
.ls1c1_c00001{letter-spacing:3.682304pt;}
.lsa1_c00001{letter-spacing:3.684096pt;}
.ls623_c00001{letter-spacing:3.699840pt;}
.ls284_c00001{letter-spacing:3.705088pt;}
.ls35c_c00001{letter-spacing:3.710336pt;}
.ls29a_c00001{letter-spacing:3.720832pt;}
.lsf5_c00001{letter-spacing:3.726080pt;}
.ls4d7_c00001{letter-spacing:3.731328pt;}
.ls3b1_c00001{letter-spacing:3.732565pt;}
.ls170_c00001{letter-spacing:3.741824pt;}
.ls1f2_c00001{letter-spacing:3.752320pt;}
.ls243_c00001{letter-spacing:3.773312pt;}
.ls1cc_c00001{letter-spacing:3.778560pt;}
.ls1d5_c00001{letter-spacing:3.783808pt;}
.ls5a5_c00001{letter-spacing:3.799552pt;}
.ls1de_c00001{letter-spacing:3.804800pt;}
.ls1f1_c00001{letter-spacing:3.816000pt;}
.ls7d7_c00001{letter-spacing:3.831040pt;}
.ls7d8_c00001{letter-spacing:3.836288pt;}
.ls737_c00001{letter-spacing:3.846784pt;}
.ls522_c00001{letter-spacing:3.852032pt;}
.ls469_c00001{letter-spacing:3.857280pt;}
.ls33c_c00001{letter-spacing:3.883520pt;}
.ls1ec_c00001{letter-spacing:3.888768pt;}
.ls31b_c00001{letter-spacing:3.894016pt;}
.ls31e_c00001{letter-spacing:3.899264pt;}
.ls6c_c00001{letter-spacing:3.907200pt;}
.ls1e8_c00001{letter-spacing:3.930752pt;}
.ls265_c00001{letter-spacing:3.936000pt;}
.ls6fd_c00001{letter-spacing:3.967488pt;}
.ls34f_c00001{letter-spacing:3.972736pt;}
.ls7cd_c00001{letter-spacing:3.974400pt;}
.ls64b_c00001{letter-spacing:3.978133pt;}
.lsbf_c00001{letter-spacing:3.988480pt;}
.lsf7_c00001{letter-spacing:4.035712pt;}
.lsf6_c00001{letter-spacing:4.040960pt;}
.ls793_c00001{letter-spacing:4.044800pt;}
.ls68e_c00001{letter-spacing:4.046208pt;}
.ls713_c00001{letter-spacing:4.051456pt;}
.ls326_c00001{letter-spacing:4.061952pt;}
.ls61b_c00001{letter-spacing:4.072448pt;}
.ls779_c00001{letter-spacing:4.093440pt;}
.ls22_c00001{letter-spacing:4.103936pt;}
.ls41a_c00001{letter-spacing:4.109184pt;}
.ls27d_c00001{letter-spacing:4.114432pt;}
.lsef_c00001{letter-spacing:4.119680pt;}
.lsc3_c00001{letter-spacing:4.124928pt;}
.ls80_c00001{letter-spacing:4.130176pt;}
.ls65b_c00001{letter-spacing:4.134400pt;}
.ls70_c00001{letter-spacing:4.145920pt;}
.ls349_c00001{letter-spacing:4.151168pt;}
.ls327_c00001{letter-spacing:4.186964pt;}
.ls365_c00001{letter-spacing:4.196096pt;}
.ls64c_c00001{letter-spacing:4.198400pt;}
.ls64f_c00001{letter-spacing:4.214144pt;}
.ls364_c00001{letter-spacing:4.231893pt;}
.ls18b_c00001{letter-spacing:4.235136pt;}
.ls2f7_c00001{letter-spacing:4.240384pt;}
.ls16c_c00001{letter-spacing:4.267136pt;}
.ls0_c00001{letter-spacing:4.267627pt;}
.ls16b_c00001{letter-spacing:4.277120pt;}
.ls1ee_c00001{letter-spacing:4.282368pt;}
.ls1f7_c00001{letter-spacing:4.292864pt;}
.ls5c_c00001{letter-spacing:4.303467pt;}
.ls366_c00001{letter-spacing:4.305024pt;}
.ls373_c00001{letter-spacing:4.327612pt;}
.ls141_c00001{letter-spacing:4.329600pt;}
.ls42c_c00001{letter-spacing:4.334848pt;}
.ls4cc_c00001{letter-spacing:4.338176pt;}
.ls3_c00001{letter-spacing:4.339840pt;}
.ls1d7_c00001{letter-spacing:4.349867pt;}
.ls7ed_c00001{letter-spacing:4.350592pt;}
.ls37b_c00001{letter-spacing:4.361088pt;}
.ls26_c00001{letter-spacing:4.376064pt;}
.ls46e_c00001{letter-spacing:4.376832pt;}
.ls450_c00001{letter-spacing:4.387328pt;}
.ls70c_c00001{letter-spacing:4.387947pt;}
.ls5dd_c00001{letter-spacing:4.389547pt;}
.ls313_c00001{letter-spacing:4.397547pt;}
.ls508_c00001{letter-spacing:4.403072pt;}
.ls68c_c00001{letter-spacing:4.408320pt;}
.ls271_c00001{letter-spacing:4.409813pt;}
.ls3f0_c00001{letter-spacing:4.412373pt;}
.ls2a8_c00001{letter-spacing:4.412907pt;}
.ls414_c00001{letter-spacing:4.412928pt;}
.ls297_c00001{letter-spacing:4.415467pt;}
.ls5ff_c00001{letter-spacing:4.427093pt;}
.ls744_c00001{letter-spacing:4.429440pt;}
.ls1fa_c00001{letter-spacing:4.429867pt;}
.ls452_c00001{letter-spacing:4.432107pt;}
.ls1e7_c00001{letter-spacing:4.434560pt;}
.ls636_c00001{letter-spacing:4.442368pt;}
.ls5a1_c00001{letter-spacing:4.442880pt;}
.ls68d_c00001{letter-spacing:4.445056pt;}
.ls32_c00001{letter-spacing:4.452864pt;}
.ls6e_c00001{letter-spacing:4.460800pt;}
.ls36c_c00001{letter-spacing:4.484488pt;}
.ls21c_c00001{letter-spacing:4.489897pt;}
.ls756_c00001{letter-spacing:4.491520pt;}
.ls1e6_c00001{letter-spacing:4.498667pt;}
.ls777_c00001{letter-spacing:4.508032pt;}
.ls588_c00001{letter-spacing:4.513280pt;}
.ls65c_c00001{letter-spacing:4.518144pt;}
.ls2ce_c00001{letter-spacing:4.529024pt;}
.ls79f_c00001{letter-spacing:4.542849pt;}
.ls761_c00001{letter-spacing:4.544000pt;}
.ls5c2_c00001{letter-spacing:4.550016pt;}
.ls151_c00001{letter-spacing:4.555264pt;}
.lsd2_c00001{letter-spacing:4.560512pt;}
.lsd1_c00001{letter-spacing:4.565760pt;}
.ls2cb_c00001{letter-spacing:4.577664pt;}
.ls608_c00001{letter-spacing:4.597248pt;}
.ls2ef_c00001{letter-spacing:4.608000pt;}
.ls6a5_c00001{letter-spacing:4.612992pt;}
.ls6ab_c00001{letter-spacing:4.617600pt;}
.ls320_c00001{letter-spacing:4.617878pt;}
.lsa4_c00001{letter-spacing:4.618240pt;}
.ls419_c00001{letter-spacing:4.627200pt;}
.lsad_c00001{letter-spacing:4.628736pt;}
.ls1cf_c00001{letter-spacing:4.633984pt;}
.ls5d5_c00001{letter-spacing:4.642560pt;}
.ls173_c00001{letter-spacing:4.644480pt;}
.ls75b_c00001{letter-spacing:4.654976pt;}
.ls13f_c00001{letter-spacing:4.660224pt;}
.ls65_c00001{letter-spacing:4.662528pt;}
.ls41_c00001{letter-spacing:4.665472pt;}
.ls88_c00001{letter-spacing:4.670720pt;}
.ls2b1_c00001{letter-spacing:4.675968pt;}
.ls22e_c00001{letter-spacing:4.681216pt;}
.ls1a3_c00001{letter-spacing:4.686464pt;}
.ls8a_c00001{letter-spacing:4.691712pt;}
.ls3e8_c00001{letter-spacing:4.696960pt;}
.ls209_c00001{letter-spacing:4.697600pt;}
.ls1cd_c00001{letter-spacing:4.699200pt;}
.lscf_c00001{letter-spacing:4.702208pt;}
.ls33_c00001{letter-spacing:4.702464pt;}
.ls94_c00001{letter-spacing:4.707456pt;}
.ls87_c00001{letter-spacing:4.712704pt;}
.ls13e_c00001{letter-spacing:4.717952pt;}
.ls2a7_c00001{letter-spacing:4.718548pt;}
.lsce_c00001{letter-spacing:4.723200pt;}
.ls71d_c00001{letter-spacing:4.728448pt;}
.lsea_c00001{letter-spacing:4.733696pt;}
.ls4d3_c00001{letter-spacing:4.738944pt;}
.ls25_c00001{letter-spacing:4.742400pt;}
.ls61e_c00001{letter-spacing:4.743147pt;}
.ls4fb_c00001{letter-spacing:4.744192pt;}
.ls3f8_c00001{letter-spacing:4.749440pt;}
.ls7d3_c00001{letter-spacing:4.754688pt;}
.ls8c_c00001{letter-spacing:4.759936pt;}
.ls605_c00001{letter-spacing:4.760373pt;}
.ls550_c00001{letter-spacing:4.765184pt;}
.ls15e_c00001{letter-spacing:4.775680pt;}
.ls476_c00001{letter-spacing:4.776000pt;}
.ls2a5_c00001{letter-spacing:4.786176pt;}
.ls276_c00001{letter-spacing:4.787328pt;}
.ls13d_c00001{letter-spacing:4.787627pt;}
.ls135_c00001{letter-spacing:4.791424pt;}
.ls723_c00001{letter-spacing:4.794027pt;}
.ls478_c00001{letter-spacing:4.794133pt;}
.ls22d_c00001{letter-spacing:4.796672pt;}
.ls28b_c00001{letter-spacing:4.800000pt;}
.ls8d_c00001{letter-spacing:4.801920pt;}
.ls312_c00001{letter-spacing:4.806024pt;}
.ls197_c00001{letter-spacing:4.809058pt;}
.lsd9_c00001{letter-spacing:4.812416pt;}
.ls214_c00001{letter-spacing:4.814507pt;}
.ls296_c00001{letter-spacing:4.817664pt;}
.ls21b_c00001{letter-spacing:4.818347pt;}
.ls203_c00001{letter-spacing:4.822912pt;}
.ls59c_c00001{letter-spacing:4.824640pt;}
.lsc_c00001{letter-spacing:4.827264pt;}
.ls63_c00001{letter-spacing:4.828160pt;}
.ls217_c00001{letter-spacing:4.829973pt;}
.ls211_c00001{letter-spacing:4.830293pt;}
.ls3de_c00001{letter-spacing:4.832000pt;}
.ls219_c00001{letter-spacing:4.837867pt;}
.ls139_c00001{letter-spacing:4.842880pt;}
.lsd3_c00001{letter-spacing:4.843904pt;}
.ls2ca_c00001{letter-spacing:4.847189pt;}
.ls215_c00001{letter-spacing:4.852800pt;}
.ls9e_c00001{letter-spacing:4.854400pt;}
.ls622_c00001{letter-spacing:4.859648pt;}
.ls463_c00001{letter-spacing:4.864853pt;}
.ls2dc_c00001{letter-spacing:4.864896pt;}
.ls4db_c00001{letter-spacing:4.868563pt;}
.ls722_c00001{letter-spacing:4.872000pt;}
.lse5_c00001{letter-spacing:4.875392pt;}
.ls4eb_c00001{letter-spacing:4.879253pt;}
.ls8b_c00001{letter-spacing:4.880640pt;}
.ls7eb_c00001{letter-spacing:4.885888pt;}
.ls31_c00001{letter-spacing:4.888354pt;}
.ls2ec_c00001{letter-spacing:4.890201pt;}
.ls2d7_c00001{letter-spacing:4.891136pt;}
.ls596_c00001{letter-spacing:4.893500pt;}
.ls3a3_c00001{letter-spacing:4.900587pt;}
.lsc5_c00001{letter-spacing:4.901632pt;}
.ls9d_c00001{letter-spacing:4.906880pt;}
.ls2e3_c00001{letter-spacing:4.912128pt;}
.ls309_c00001{letter-spacing:4.917376pt;}
.ls1eb_c00001{letter-spacing:4.922624pt;}
.ls89_c00001{letter-spacing:4.933120pt;}
.ls20f_c00001{letter-spacing:4.936000pt;}
.ls27c_c00001{letter-spacing:4.943616pt;}
.ls68_c00001{letter-spacing:4.948864pt;}
.ls196_c00001{letter-spacing:4.949706pt;}
.ls136_c00001{letter-spacing:4.964608pt;}
.ls74d_c00001{letter-spacing:4.971200pt;}
.ls64_c00001{letter-spacing:4.975830pt;}
.ls66_c00001{letter-spacing:4.979200pt;}
.ls223_c00001{letter-spacing:4.985600pt;}
.lsd8_c00001{letter-spacing:4.990848pt;}
.lsa3_c00001{letter-spacing:4.996096pt;}
.ls5ad_c00001{letter-spacing:5.001344pt;}
.ls5fc_c00001{letter-spacing:5.006592pt;}
.ls625_c00001{letter-spacing:5.009211pt;}
.ls6de_c00001{letter-spacing:5.017088pt;}
.lscd_c00001{letter-spacing:5.038080pt;}
.ls1bb_c00001{letter-spacing:5.043328pt;}
.ls432_c00001{letter-spacing:5.048576pt;}
.ls661_c00001{letter-spacing:5.049600pt;}
.ls51a_c00001{letter-spacing:5.059072pt;}
.ls49e_c00001{letter-spacing:5.080533pt;}
.ls400_c00001{letter-spacing:5.090560pt;}
.ls191_c00001{letter-spacing:5.106304pt;}
.ls49b_c00001{letter-spacing:5.111552pt;}
.ls54f_c00001{letter-spacing:5.116267pt;}
.ls84_c00001{letter-spacing:5.116800pt;}
.ls6c9_c00001{letter-spacing:5.132544pt;}
.lsf1_c00001{letter-spacing:5.137792pt;}
.ls100_c00001{letter-spacing:5.143040pt;}
.ls457_c00001{letter-spacing:5.149858pt;}
.ls231_c00001{letter-spacing:5.153536pt;}
.ls15a_c00001{letter-spacing:5.166720pt;}
.ls5c5_c00001{letter-spacing:5.169280pt;}
.ls161_c00001{letter-spacing:5.184000pt;}
.ls699_c00001{letter-spacing:5.184533pt;}
.ls1d9_c00001{letter-spacing:5.187733pt;}
.ls76e_c00001{letter-spacing:5.195520pt;}
.ls7e6_c00001{letter-spacing:5.206016pt;}
.ls16a_c00001{letter-spacing:5.224320pt;}
.ls637_c00001{letter-spacing:5.224533pt;}
.ls2f0_c00001{letter-spacing:5.240533pt;}
.ls2f9_c00001{letter-spacing:5.242752pt;}
.ls26a_c00001{letter-spacing:5.247467pt;}
.ls1ad_c00001{letter-spacing:5.248000pt;}
.ls59f_c00001{letter-spacing:5.254400pt;}
.ls41d_c00001{letter-spacing:5.258496pt;}
.ls4c7_c00001{letter-spacing:5.261333pt;}
.ls7cc_c00001{letter-spacing:5.263744pt;}
.ls163_c00001{letter-spacing:5.270400pt;}
.ls198_c00001{letter-spacing:5.274240pt;}
.ls62e_c00001{letter-spacing:5.277333pt;}
.ls58a_c00001{letter-spacing:5.277867pt;}
.ls9_c00001{letter-spacing:5.278933pt;}
.ls64d_c00001{letter-spacing:5.279488pt;}
.ls28c_c00001{letter-spacing:5.280000pt;}
.ls24b_c00001{letter-spacing:5.281067pt;}
.ls3bc_c00001{letter-spacing:5.281600pt;}
.ls767_c00001{letter-spacing:5.282667pt;}
.ls264_c00001{letter-spacing:5.283733pt;}
.ls599_c00001{letter-spacing:5.285333pt;}
.ls719_c00001{letter-spacing:5.286933pt;}
.ls39d_c00001{letter-spacing:5.288000pt;}
.ls665_c00001{letter-spacing:5.288533pt;}
.ls227_c00001{letter-spacing:5.289600pt;}
.ls4cd_c00001{letter-spacing:5.290133pt;}
.ls607_c00001{letter-spacing:5.290667pt;}
.ls7b4_c00001{letter-spacing:5.291200pt;}
.ls45d_c00001{letter-spacing:5.291733pt;}
.ls673_c00001{letter-spacing:5.292800pt;}
.ls24e_c00001{letter-spacing:5.293333pt;}
.ls627_c00001{letter-spacing:5.293867pt;}
.ls72_c00001{letter-spacing:5.294400pt;}
.ls5df_c00001{letter-spacing:5.294933pt;}
.ls7e7_c00001{letter-spacing:5.295467pt;}
.ls25a_c00001{letter-spacing:5.296000pt;}
.ls682_c00001{letter-spacing:5.296533pt;}
.ls643_c00001{letter-spacing:5.297067pt;}
.ls48e_c00001{letter-spacing:5.299200pt;}
.ls3c5_c00001{letter-spacing:5.299733pt;}
.ls7cf_c00001{letter-spacing:5.300267pt;}
.lsfa_c00001{letter-spacing:5.300480pt;}
.ls86_c00001{letter-spacing:5.300800pt;}
.ls41e_c00001{letter-spacing:5.301867pt;}
.ls5d1_c00001{letter-spacing:5.302400pt;}
.ls5b3_c00001{letter-spacing:5.302933pt;}
.ls441_c00001{letter-spacing:5.303467pt;}
.ls288_c00001{letter-spacing:5.304533pt;}
.ls295_c00001{letter-spacing:5.305067pt;}
.ls4bc_c00001{letter-spacing:5.305600pt;}
.ls5d9_c00001{letter-spacing:5.306133pt;}
.ls91_c00001{letter-spacing:5.306667pt;}
.ls132_c00001{letter-spacing:5.307200pt;}
.ls294_c00001{letter-spacing:5.307733pt;}
.ls654_c00001{letter-spacing:5.308267pt;}
.ls368_c00001{letter-spacing:5.308800pt;}
.ls22b_c00001{letter-spacing:5.309333pt;}
.ls5f_c00001{letter-spacing:5.309867pt;}
.ls63d_c00001{letter-spacing:5.310400pt;}
.ls29_c00001{letter-spacing:5.310933pt;}
.ls153_c00001{letter-spacing:5.310976pt;}
.ls15_c00001{letter-spacing:5.311467pt;}
.ls4_c00001{letter-spacing:5.312000pt;}
.ls60c_c00001{letter-spacing:5.312533pt;}
.ls746_c00001{letter-spacing:5.313600pt;}
.ls6d_c00001{letter-spacing:5.314133pt;}
.ls24_c00001{letter-spacing:5.315200pt;}
.lsa_c00001{letter-spacing:5.315733pt;}
.ls65d_c00001{letter-spacing:5.316224pt;}
.ls62_c00001{letter-spacing:5.316267pt;}
.ls79c_c00001{letter-spacing:5.316800pt;}
.ls73_c00001{letter-spacing:5.317333pt;}
.ls405_c00001{letter-spacing:5.318400pt;}
.lsa8_c00001{letter-spacing:5.318933pt;}
.ls247_c00001{letter-spacing:5.319467pt;}
.ls5c7_c00001{letter-spacing:5.320000pt;}
.ls2a4_c00001{letter-spacing:5.320533pt;}
.ls3a1_c00001{letter-spacing:5.321067pt;}
.ls69_c00001{letter-spacing:5.321600pt;}
.ls3c1_c00001{letter-spacing:5.322133pt;}
.ls2f1_c00001{letter-spacing:5.323200pt;}
.ls2a2_c00001{letter-spacing:5.323733pt;}
.ls286_c00001{letter-spacing:5.324267pt;}
.ls678_c00001{letter-spacing:5.324800pt;}
.ls5a4_c00001{letter-spacing:5.325333pt;}
.ls59d_c00001{letter-spacing:5.325867pt;}
.ls283_c00001{letter-spacing:5.327467pt;}
.ls3c2_c00001{letter-spacing:5.328000pt;}
.ls67a_c00001{letter-spacing:5.330667pt;}
.ls4b1_c00001{letter-spacing:5.331200pt;}
.ls503_c00001{letter-spacing:5.331733pt;}
.ls412_c00001{letter-spacing:5.332267pt;}
.ls2c_c00001{letter-spacing:5.332800pt;}
.lscb_c00001{letter-spacing:5.333333pt;}
.ls6bf_c00001{letter-spacing:5.334933pt;}
.ls298_c00001{letter-spacing:5.337067pt;}
.ls2a3_c00001{letter-spacing:5.338133pt;}
.ls694_c00001{letter-spacing:5.339200pt;}
.ls102_c00001{letter-spacing:5.339520pt;}
.ls404_c00001{letter-spacing:5.340267pt;}
.ls2a6_c00001{letter-spacing:5.343467pt;}
.ls771_c00001{letter-spacing:5.344000pt;}
.ls270_c00001{letter-spacing:5.348800pt;}
.ls584_c00001{letter-spacing:5.352960pt;}
.ls5c4_c00001{letter-spacing:5.353600pt;}
.ls29e_c00001{letter-spacing:5.358400pt;}
.ls44c_c00001{letter-spacing:5.358933pt;}
.ls246_c00001{letter-spacing:5.362133pt;}
.ls4a3_c00001{letter-spacing:5.362773pt;}
.ls4a2_c00001{letter-spacing:5.363307pt;}
.ls3b9_c00001{letter-spacing:5.363456pt;}
.ls27b_c00001{letter-spacing:5.364800pt;}
.ls3b7_c00001{letter-spacing:5.368704pt;}
.ls1e0_c00001{letter-spacing:5.373952pt;}
.ls1ae_c00001{letter-spacing:5.376000pt;}
.ls7ac_c00001{letter-spacing:5.376533pt;}
.ls5a9_c00001{letter-spacing:5.378133pt;}
.ls26f_c00001{letter-spacing:5.382400pt;}
.ls67b_c00001{letter-spacing:5.402880pt;}
.ls164_c00001{letter-spacing:5.402918pt;}
.ls40b_c00001{letter-spacing:5.405440pt;}
.ls509_c00001{letter-spacing:5.431680pt;}
.ls773_c00001{letter-spacing:5.436928pt;}
.ls674_c00001{letter-spacing:5.440000pt;}
.ls28_c00001{letter-spacing:5.443049pt;}
.ls77e_c00001{letter-spacing:5.457920pt;}
.ls30a_c00001{letter-spacing:5.468416pt;}
.ls1e1_c00001{letter-spacing:5.472000pt;}
.ls8f_c00001{letter-spacing:5.474385pt;}
.ls5e_c00001{letter-spacing:5.474935pt;}
.ls5_c00001{letter-spacing:5.475484pt;}
.ls221_c00001{letter-spacing:5.484160pt;}
.ls46a_c00001{letter-spacing:5.489408pt;}
.ls7b7_c00001{letter-spacing:5.491977pt;}
.ls7a9_c00001{letter-spacing:5.499123pt;}
.ls79e_c00001{letter-spacing:5.501872pt;}
.ls7ce_c00001{letter-spacing:5.502972pt;}
.ls42a_c00001{letter-spacing:5.510400pt;}
.ls39f_c00001{letter-spacing:5.515648pt;}
.ls3b3_c00001{letter-spacing:5.517705pt;}
.ls25d_c00001{letter-spacing:5.526144pt;}
.ls162_c00001{letter-spacing:5.529600pt;}
.ls3b8_c00001{letter-spacing:5.533933pt;}
.ls4a0_c00001{letter-spacing:5.541333pt;}
.ls71c_c00001{letter-spacing:5.552384pt;}
.ls7d9_c00001{letter-spacing:5.557632pt;}
.ls6bc_c00001{letter-spacing:5.562880pt;}
.ls148_c00001{letter-spacing:5.568128pt;}
.lsf2_c00001{letter-spacing:5.573376pt;}
.ls4ff_c00001{letter-spacing:5.578624pt;}
.ls635_c00001{letter-spacing:5.578667pt;}
.ls525_c00001{letter-spacing:5.583872pt;}
.ls1f9_c00001{letter-spacing:5.615360pt;}
.ls4f7_c00001{letter-spacing:5.618667pt;}
.ls4cb_c00001{letter-spacing:5.620608pt;}
.ls52b_c00001{letter-spacing:5.625856pt;}
.ls6ec_c00001{letter-spacing:5.625895pt;}
.ls551_c00001{letter-spacing:5.635733pt;}
.ls67d_c00001{letter-spacing:5.639040pt;}
.ls659_c00001{letter-spacing:5.639467pt;}
.lsed_c00001{letter-spacing:5.652096pt;}
.ls760_c00001{letter-spacing:5.667840pt;}
.ls6d4_c00001{letter-spacing:5.720320pt;}
.ls5fd_c00001{letter-spacing:5.736064pt;}
.ls561_c00001{letter-spacing:5.741312pt;}
.lsc4_c00001{letter-spacing:5.751808pt;}
.ls524_c00001{letter-spacing:5.778048pt;}
.lsc2_c00001{letter-spacing:5.812992pt;}
.ls3d7_c00001{letter-spacing:5.818133pt;}
.lsbc_c00001{letter-spacing:5.826816pt;}
.lsb8_c00001{letter-spacing:5.829909pt;}
.ls140_c00001{letter-spacing:5.835776pt;}
.ls18e_c00001{letter-spacing:5.862016pt;}
.ls715_c00001{letter-spacing:5.872512pt;}
.ls770_c00001{letter-spacing:5.877760pt;}
.lsba_c00001{letter-spacing:5.882112pt;}
.ls8e_c00001{letter-spacing:5.893504pt;}
.ls6b3_c00001{letter-spacing:5.894400pt;}
.ls56b_c00001{letter-spacing:5.895936pt;}
.ls3d8_c00001{letter-spacing:5.909760pt;}
.ls2f4_c00001{letter-spacing:5.914496pt;}
.ls3ca_c00001{letter-spacing:5.916672pt;}
.ls2fc_c00001{letter-spacing:5.919040pt;}
.ls340_c00001{letter-spacing:5.919744pt;}
.ls5af_c00001{letter-spacing:5.924992pt;}
.lsb7_c00001{letter-spacing:5.930496pt;}
.ls523_c00001{letter-spacing:5.945984pt;}
.ls375_c00001{letter-spacing:5.982720pt;}
.ls331_c00001{letter-spacing:5.987968pt;}
.ls1f5_c00001{letter-spacing:5.997333pt;}
.ls3e1_c00001{letter-spacing:6.008960pt;}
.ls274_c00001{letter-spacing:6.016000pt;}
.ls553_c00001{letter-spacing:6.028800pt;}
.ls3dd_c00001{letter-spacing:6.041768pt;}
.ls46f_c00001{letter-spacing:6.050944pt;}
.ls338_c00001{letter-spacing:6.066688pt;}
.ls7b1_c00001{letter-spacing:6.071936pt;}
.ls55a_c00001{letter-spacing:6.077184pt;}
.ls6eb_c00001{letter-spacing:6.080000pt;}
.ls396_c00001{letter-spacing:6.082432pt;}
.ls334_c00001{letter-spacing:6.087680pt;}
.lsbd_c00001{letter-spacing:6.091641pt;}
.ls574_c00001{letter-spacing:6.092928pt;}
.ls1cb_c00001{letter-spacing:6.103424pt;}
.ls462_c00001{letter-spacing:6.108672pt;}
.ls3d5_c00001{letter-spacing:6.113015pt;}
.ls61a_c00001{letter-spacing:6.129664pt;}
.ls619_c00001{letter-spacing:6.134912pt;}
.ls615_c00001{letter-spacing:6.140160pt;}
.ls52a_c00001{letter-spacing:6.145408pt;}
.ls1d2_c00001{letter-spacing:6.171648pt;}
.ls2de_c00001{letter-spacing:6.192640pt;}
.ls7e2_c00001{letter-spacing:6.203136pt;}
.ls386_c00001{letter-spacing:6.213632pt;}
.ls4fc_c00001{letter-spacing:6.224128pt;}
.ls4b0_c00001{letter-spacing:6.239872pt;}
.ls4a9_c00001{letter-spacing:6.245120pt;}
.ls44b_c00001{letter-spacing:6.260864pt;}
.ls4c2_c00001{letter-spacing:6.266112pt;}
.ls538_c00001{letter-spacing:6.271360pt;}
.ls5b9_c00001{letter-spacing:6.272000pt;}
.ls21_c00001{letter-spacing:6.276608pt;}
.ls6f2_c00001{letter-spacing:6.287104pt;}
.ls64a_c00001{letter-spacing:6.297600pt;}
.ls291_c00001{letter-spacing:6.302848pt;}
.ls547_c00001{letter-spacing:6.308096pt;}
.lsff_c00001{letter-spacing:6.313344pt;}
.ls1d4_c00001{letter-spacing:6.323840pt;}
.ls799_c00001{letter-spacing:6.360576pt;}
.ls558_c00001{letter-spacing:6.365824pt;}
.ls205_c00001{letter-spacing:6.407808pt;}
.ls204_c00001{letter-spacing:6.413056pt;}
.ls6a0_c00001{letter-spacing:6.424568pt;}
.ls78f_c00001{letter-spacing:6.449792pt;}
.ls6ae_c00001{letter-spacing:6.455040pt;}
.ls55c_c00001{letter-spacing:6.460288pt;}
.ls77c_c00001{letter-spacing:6.464000pt;}
.ls531_c00001{letter-spacing:6.470784pt;}
.ls576_c00001{letter-spacing:6.476032pt;}
.ls527_c00001{letter-spacing:6.483200pt;}
.ls56_c00001{letter-spacing:6.502272pt;}
.ls4a5_c00001{letter-spacing:6.507520pt;}
.ls796_c00001{letter-spacing:6.528512pt;}
.ls795_c00001{letter-spacing:6.533760pt;}
.ls3ba_c00001{letter-spacing:6.554752pt;}
.ls128_c00001{letter-spacing:6.560000pt;}
.ls6cf_c00001{letter-spacing:6.581246pt;}
.ls316_c00001{letter-spacing:6.596736pt;}
.ls69b_c00001{letter-spacing:6.599608pt;}
.ls5b_c00001{letter-spacing:6.601984pt;}
.ls5a_c00001{letter-spacing:6.607232pt;}
.ls4d8_c00001{letter-spacing:6.612480pt;}
.ls69e_c00001{letter-spacing:6.643968pt;}
.ls281_c00001{letter-spacing:6.659712pt;}
.ls69d_c00001{letter-spacing:6.664960pt;}
.ls55b_c00001{letter-spacing:6.670208pt;}
.ls38e_c00001{letter-spacing:6.680704pt;}
.ls41c_c00001{letter-spacing:6.691200pt;}
.ls707_c00001{letter-spacing:6.701696pt;}
.ls73d_c00001{letter-spacing:6.706944pt;}
.ls25e_c00001{letter-spacing:6.729436pt;}
.lsfb_c00001{letter-spacing:6.738432pt;}
.ls37c_c00001{letter-spacing:6.769920pt;}
.ls1b2_c00001{letter-spacing:6.780416pt;}
.ls735_c00001{letter-spacing:6.790912pt;}
.ls77d_c00001{letter-spacing:6.801408pt;}
.ls22f_c00001{letter-spacing:6.822400pt;}
.ls379_c00001{letter-spacing:6.827648pt;}
.ls2d0_c00001{letter-spacing:6.843392pt;}
.ls172_c00001{letter-spacing:6.848640pt;}
.ls27e_c00001{letter-spacing:6.853855pt;}
.ls319_c00001{letter-spacing:6.858319pt;}
.ls348_c00001{letter-spacing:6.859136pt;}
.ls29f_c00001{letter-spacing:6.864384pt;}
.ls28a_c00001{letter-spacing:6.869632pt;}
.ls37a_c00001{letter-spacing:6.874880pt;}
.ls2d9_c00001{letter-spacing:6.880128pt;}
.ls1ab_c00001{letter-spacing:6.886312pt;}
.ls21e_c00001{letter-spacing:6.890624pt;}
.ls255_c00001{letter-spacing:6.895872pt;}
.ls361_c00001{letter-spacing:6.943104pt;}
.ls36b_c00001{letter-spacing:6.978274pt;}
.ls3c7_c00001{letter-spacing:6.979840pt;}
.ls6c8_c00001{letter-spacing:6.985088pt;}
.ls32e_c00001{letter-spacing:6.995584pt;}
.ls72b_c00001{letter-spacing:7.000832pt;}
.ls693_c00001{letter-spacing:7.021824pt;}
.ls142_c00001{letter-spacing:7.036767pt;}
.ls7d0_c00001{letter-spacing:7.038086pt;}
.ls66d_c00001{letter-spacing:7.040285pt;}
.ls293_c00001{letter-spacing:7.048064pt;}
.ls7d_c00001{letter-spacing:7.069056pt;}
.ls14a_c00001{letter-spacing:7.074304pt;}
.ls6c2_c00001{letter-spacing:7.079317pt;}
.ls1b9_c00001{letter-spacing:7.084800pt;}
.ls383_c00001{letter-spacing:7.086464pt;}
.ls30d_c00001{letter-spacing:7.100544pt;}
.lsda_c00001{letter-spacing:7.105705pt;}
.ls387_c00001{letter-spacing:7.108102pt;}
.ls5b6_c00001{letter-spacing:7.116288pt;}
.ls4e5_c00001{letter-spacing:7.126784pt;}
.ls6b4_c00001{letter-spacing:7.210752pt;}
.ls7a8_c00001{letter-spacing:7.225600pt;}
.ls6fe_c00001{letter-spacing:7.231744pt;}
.ls59a_c00001{letter-spacing:7.242240pt;}
.ls37e_c00001{letter-spacing:7.243340pt;}
.ls716_c00001{letter-spacing:7.284224pt;}
.ls6e2_c00001{letter-spacing:7.289472pt;}
.ls1e3_c00001{letter-spacing:7.294720pt;}
.ls4c1_c00001{letter-spacing:7.299968pt;}
.ls250_c00001{letter-spacing:7.320960pt;}
.ls13a_c00001{letter-spacing:7.326208pt;}
.lsfd_c00001{letter-spacing:7.331456pt;}
.ls2fb_c00001{letter-spacing:7.334827pt;}
.ls229_c00001{letter-spacing:7.343360pt;}
.ls464_c00001{letter-spacing:7.347200pt;}
.ls5ce_c00001{letter-spacing:7.352448pt;}
.ls1e2_c00001{letter-spacing:7.357867pt;}
.ls3c9_c00001{letter-spacing:7.359040pt;}
.ls7a3_c00001{letter-spacing:7.360000pt;}
.ls4f0_c00001{letter-spacing:7.362944pt;}
.ls52f_c00001{letter-spacing:7.365120pt;}
.ls22a_c00001{letter-spacing:7.365227pt;}
.lsbb_c00001{letter-spacing:7.365760pt;}
.ls46d_c00001{letter-spacing:7.368192pt;}
.ls533_c00001{letter-spacing:7.378688pt;}
.ls6f3_c00001{letter-spacing:7.392853pt;}
.lsb9_c00001{letter-spacing:7.402880pt;}
.ls1c3_c00001{letter-spacing:7.421867pt;}
.ls60f_c00001{letter-spacing:7.452160pt;}
.ls289_c00001{letter-spacing:7.462656pt;}
.lsc1_c00001{letter-spacing:7.552512pt;}
.ls4d1_c00001{letter-spacing:7.573320pt;}
.ls7e9_c00001{letter-spacing:7.578112pt;}
.lsaf_c00001{letter-spacing:7.588608pt;}
.ls3d6_c00001{letter-spacing:7.591902pt;}
.ls569_c00001{letter-spacing:7.592452pt;}
.ls493_c00001{letter-spacing:7.599104pt;}
.ls774_c00001{letter-spacing:7.625344pt;}
.ls4ed_c00001{letter-spacing:7.635840pt;}
.ls1b0_c00001{letter-spacing:7.641088pt;}
.ls2df_c00001{letter-spacing:7.656832pt;}
.ls2d6_c00001{letter-spacing:7.662080pt;}
.ls18a_c00001{letter-spacing:7.672576pt;}
.ls353_c00001{letter-spacing:7.683072pt;}
.ls177_c00001{letter-spacing:7.693568pt;}
.lsb6_c00001{letter-spacing:7.696853pt;}
.ls544_c00001{letter-spacing:7.698816pt;}
.ls67_c00001{letter-spacing:7.704064pt;}
.ls567_c00001{letter-spacing:7.709013pt;}
.ls53f_c00001{letter-spacing:7.714560pt;}
.ls7c8_c00001{letter-spacing:7.756544pt;}
.ls7c6_c00001{letter-spacing:7.767040pt;}
.ls382_c00001{letter-spacing:7.773472pt;}
.ls4c0_c00001{letter-spacing:7.777536pt;}
.ls56a_c00001{letter-spacing:7.793280pt;}
.ls629_c00001{letter-spacing:7.803776pt;}
.ls728_c00001{letter-spacing:7.809024pt;}
.ls686_c00001{letter-spacing:7.835264pt;}
.ls4fd_c00001{letter-spacing:7.872000pt;}
.ls71a_c00001{letter-spacing:7.877248pt;}
.ls5f4_c00001{letter-spacing:7.887744pt;}
.ls3b5_c00001{letter-spacing:7.903488pt;}
.ls3b0_c00001{letter-spacing:7.924480pt;}
.ls568_c00001{letter-spacing:7.934614pt;}
.ls750_c00001{letter-spacing:7.934976pt;}
.ls3d4_c00001{letter-spacing:7.935164pt;}
.ls360_c00001{letter-spacing:7.941167pt;}
.ls147_c00001{letter-spacing:7.961216pt;}
.ls126_c00001{letter-spacing:7.976960pt;}
.ls12c_c00001{letter-spacing:8.029440pt;}
.ls321_c00001{letter-spacing:8.038400pt;}
.ls50f_c00001{letter-spacing:8.039936pt;}
.ls50a_c00001{letter-spacing:8.050432pt;}
.ls583_c00001{letter-spacing:8.055680pt;}
.ls344_c00001{letter-spacing:8.060928pt;}
.ls249_c00001{letter-spacing:8.070996pt;}
.ls5ac_c00001{letter-spacing:8.071424pt;}
.ls248_c00001{letter-spacing:8.076405pt;}
.ls5ab_c00001{letter-spacing:8.076672pt;}
.ls5a6_c00001{letter-spacing:8.081920pt;}
.ls50c_c00001{letter-spacing:8.097664pt;}
.ls82_c00001{letter-spacing:8.134400pt;}
.ls726_c00001{letter-spacing:8.186880pt;}
.ls79a_c00001{letter-spacing:8.207872pt;}
.ls339_c00001{letter-spacing:8.213120pt;}
.ls39_c00001{letter-spacing:8.218368pt;}
.ls131_c00001{letter-spacing:8.223616pt;}
.ls337_c00001{letter-spacing:8.239360pt;}
.ls68f_c00001{letter-spacing:8.244608pt;}
.ls256_c00001{letter-spacing:8.270848pt;}
.ls7ca_c00001{letter-spacing:8.275200pt;}
.ls4a8_c00001{letter-spacing:8.291840pt;}
.ls540_c00001{letter-spacing:8.344320pt;}
.ls474_c00001{letter-spacing:8.360064pt;}
.ls628_c00001{letter-spacing:8.375808pt;}
.ls178_c00001{letter-spacing:8.381056pt;}
.ls6a4_c00001{letter-spacing:8.386304pt;}
.ls71e_c00001{letter-spacing:8.391552pt;}
.ls6c7_c00001{letter-spacing:8.396800pt;}
.ls52e_c00001{letter-spacing:8.407296pt;}
.ls6c6_c00001{letter-spacing:8.412544pt;}
.ls6a2_c00001{letter-spacing:8.417792pt;}
.ls459_c00001{letter-spacing:8.433536pt;}
.ls3bd_c00001{letter-spacing:8.438784pt;}
.lse4_c00001{letter-spacing:8.449280pt;}
.ls27f_c00001{letter-spacing:8.470272pt;}
.ls58f_c00001{letter-spacing:8.480768pt;}
.ls351_c00001{letter-spacing:8.501760pt;}
.ls536_c00001{letter-spacing:8.550400pt;}
.ls35f_c00001{letter-spacing:8.580480pt;}
.ls468_c00001{letter-spacing:8.611968pt;}
.ls557_c00001{letter-spacing:8.638208pt;}
.ls422_c00001{letter-spacing:8.640000pt;}
.ls556_c00001{letter-spacing:8.643456pt;}
.ls48b_c00001{letter-spacing:8.653952pt;}
.ls216_c00001{letter-spacing:8.659200pt;}
.ls310_c00001{letter-spacing:8.665600pt;}
.ls104_c00001{letter-spacing:8.704000pt;}
.ls650_c00001{letter-spacing:8.743168pt;}
.ls5c1_c00001{letter-spacing:8.748416pt;}
.ls183_c00001{letter-spacing:8.758912pt;}
.ls180_c00001{letter-spacing:8.764160pt;}
.ls389_c00001{letter-spacing:8.774656pt;}
.ls7c5_c00001{letter-spacing:8.816640pt;}
.ls71f_c00001{letter-spacing:8.821888pt;}
.ls741_c00001{letter-spacing:8.827136pt;}
.ls2e6_c00001{letter-spacing:8.837632pt;}
.ls721_c00001{letter-spacing:8.842880pt;}
.ls1e4_c00001{letter-spacing:8.845120pt;}
.ls5f0_c00001{letter-spacing:8.860785pt;}
.ls182_c00001{letter-spacing:8.905856pt;}
.ls492_c00001{letter-spacing:8.958336pt;}
.ls74e_c00001{letter-spacing:8.974080pt;}
.ls357_c00001{letter-spacing:8.995072pt;}
.ls633_c00001{letter-spacing:9.058048pt;}
.ls71b_c00001{letter-spacing:9.063296pt;}
.ls35e_c00001{letter-spacing:9.073792pt;}
.ls515_c00001{letter-spacing:9.081600pt;}
.ls5e3_c00001{letter-spacing:9.087984pt;}
.ls5e5_c00001{letter-spacing:9.109623pt;}
.ls651_c00001{letter-spacing:9.131520pt;}
.lsac_c00001{letter-spacing:9.136768pt;}
.ls42_c00001{letter-spacing:9.157760pt;}
.ls5a0_c00001{letter-spacing:9.220736pt;}
.ls238_c00001{letter-spacing:9.236480pt;}
.ls6cd_c00001{letter-spacing:9.252224pt;}
.ls202_c00001{letter-spacing:9.262720pt;}
.ls63c_c00001{letter-spacing:9.267968pt;}
.ls62c_c00001{letter-spacing:9.271908pt;}
.ls7a7_c00001{letter-spacing:9.283712pt;}
.ls7a1_c00001{letter-spacing:9.288960pt;}
.ls752_c00001{letter-spacing:9.408000pt;}
.ls6fc_c00001{letter-spacing:9.425408pt;}
.ls1bd_c00001{letter-spacing:9.435904pt;}
.ls1bc_c00001{letter-spacing:9.446400pt;}
.ls5e6_c00001{letter-spacing:9.451648pt;}
.ls3a0_c00001{letter-spacing:9.456896pt;}
.ls6b5_c00001{letter-spacing:9.483136pt;}
.ls6b2_c00001{letter-spacing:9.498880pt;}
.ls3e3_c00001{letter-spacing:9.504128pt;}
.ls539_c00001{letter-spacing:9.509376pt;}
.ls68a_c00001{letter-spacing:9.536000pt;}
.ls4c8_c00001{letter-spacing:9.567104pt;}
.ls267_c00001{letter-spacing:9.572352pt;}
.ls266_c00001{letter-spacing:9.577600pt;}
.ls5ed_c00001{letter-spacing:9.593344pt;}
.ls67e_c00001{letter-spacing:9.630080pt;}
.ls3b4_c00001{letter-spacing:9.708800pt;}
.ls275_c00001{letter-spacing:9.792000pt;}
.ls325_c00001{letter-spacing:9.798016pt;}
.ls438_c00001{letter-spacing:9.798400pt;}
.ls700_c00001{letter-spacing:9.808512pt;}
.ls778_c00001{letter-spacing:9.824256pt;}
.ls740_c00001{letter-spacing:9.845248pt;}
.ls185_c00001{letter-spacing:9.860992pt;}
.ls51e_c00001{letter-spacing:9.871488pt;}
.ls103_c00001{letter-spacing:9.887232pt;}
.ls43a_c00001{letter-spacing:9.897728pt;}
.ls1da_c00001{letter-spacing:9.912000pt;}
.ls46b_c00001{letter-spacing:9.913472pt;}
.ls6ef_c00001{letter-spacing:9.934464pt;}
.ls3c6_c00001{letter-spacing:9.971200pt;}
.ls4ee_c00001{letter-spacing:9.986944pt;}
.ls6f0_c00001{letter-spacing:10.039424pt;}
.ls2e8_c00001{letter-spacing:10.044672pt;}
.ls3f9_c00001{letter-spacing:10.060416pt;}
.lsb1_c00001{letter-spacing:10.091904pt;}
.ls1d6_c00001{letter-spacing:10.139136pt;}
.ls12b_c00001{letter-spacing:10.149632pt;}
.ls184_c00001{letter-spacing:10.164478pt;}
.ls408_c00001{letter-spacing:10.176000pt;}
.ls2cf_c00001{letter-spacing:10.191616pt;}
.ls472_c00001{letter-spacing:10.217856pt;}
.ls429_c00001{letter-spacing:10.233600pt;}
.ls73e_c00001{letter-spacing:10.238848pt;}
.ls6be_c00001{letter-spacing:10.244096pt;}
.ls473_c00001{letter-spacing:10.297600pt;}
.ls433_c00001{letter-spacing:10.301824pt;}
.ls110_c00001{letter-spacing:10.333312pt;}
.ls4a6_c00001{letter-spacing:10.338560pt;}
.ls4ac_c00001{letter-spacing:10.349056pt;}
.ls4ab_c00001{letter-spacing:10.354304pt;}
.ls4f_c00001{letter-spacing:10.359552pt;}
.lsf4_c00001{letter-spacing:10.375296pt;}
.ls32c_c00001{letter-spacing:10.385792pt;}
.ls58e_c00001{letter-spacing:10.391040pt;}
.ls50_c00001{letter-spacing:10.443520pt;}
.ls4d0_c00001{letter-spacing:10.448747pt;}
.ls335_c00001{letter-spacing:10.496000pt;}
.ls6ee_c00001{letter-spacing:10.510687pt;}
.ls34b_c00001{letter-spacing:10.516992pt;}
.lsc6_c00001{letter-spacing:10.537984pt;}
.ls526_c00001{letter-spacing:10.548480pt;}
.ls612_c00001{letter-spacing:10.600960pt;}
.ls70b_c00001{letter-spacing:10.621952pt;}
.ls1af_c00001{letter-spacing:10.632448pt;}
.ls496_c00001{letter-spacing:10.653440pt;}
.ls55f_c00001{letter-spacing:10.663936pt;}
.ls4ad_c00001{letter-spacing:10.674432pt;}
.ls336_c00001{letter-spacing:10.705920pt;}
.ls78b_c00001{letter-spacing:10.711168pt;}
.ls38b_c00001{letter-spacing:10.726912pt;}
.ls5bc_c00001{letter-spacing:10.745600pt;}
.ls359_c00001{letter-spacing:10.747904pt;}
.ls3c8_c00001{letter-spacing:10.758400pt;}
.lse9_c00001{letter-spacing:10.768896pt;}
.ls109_c00001{letter-spacing:10.805632pt;}
.ls6c1_c00001{letter-spacing:10.816000pt;}
.ls1f0_c00001{letter-spacing:10.816128pt;}
.ls434_c00001{letter-spacing:10.826624pt;}
.ls443_c00001{letter-spacing:10.884352pt;}
.ls616_c00001{letter-spacing:10.915840pt;}
.ls657_c00001{letter-spacing:10.928000pt;}
.ls350_c00001{letter-spacing:10.942080pt;}
.ls528_c00001{letter-spacing:10.963072pt;}
.ls45e_c00001{letter-spacing:10.968320pt;}
.ls19b_c00001{letter-spacing:10.984064pt;}
.ls252_c00001{letter-spacing:10.989312pt;}
.ls640_c00001{letter-spacing:11.015552pt;}
.ls507_c00001{letter-spacing:11.024591pt;}
.ls402_c00001{letter-spacing:11.052288pt;}
.ls68b_c00001{letter-spacing:11.072000pt;}
.ls731_c00001{letter-spacing:11.083776pt;}
.ls439_c00001{letter-spacing:11.084800pt;}
.ls4e0_c00001{letter-spacing:11.094272pt;}
.ls150_c00001{letter-spacing:11.115264pt;}
.ls6d8_c00001{letter-spacing:11.157248pt;}
.ls6d5_c00001{letter-spacing:11.162496pt;}
.ls167_c00001{letter-spacing:11.168640pt;}
.ls4e1_c00001{letter-spacing:11.178240pt;}
.ls370_c00001{letter-spacing:11.197695pt;}
.ls5cc_c00001{letter-spacing:11.235968pt;}
.ls78c_c00001{letter-spacing:11.246464pt;}
.ls51f_c00001{letter-spacing:11.256960pt;}
.ls40a_c00001{letter-spacing:11.277013pt;}
.ls224_c00001{letter-spacing:11.293696pt;}
.ls2e1_c00001{letter-spacing:11.314688pt;}
.ls34a_c00001{letter-spacing:11.325184pt;}
.ls4f6_c00001{letter-spacing:11.328000pt;}
.ls2d8_c00001{letter-spacing:11.335680pt;}
.ls30f_c00001{letter-spacing:11.356672pt;}
.ls280_c00001{letter-spacing:11.403904pt;}
.ls14f_c00001{letter-spacing:11.435392pt;}
.ls1c0_c00001{letter-spacing:11.440640pt;}
.ls1c5_c00001{letter-spacing:11.451136pt;}
.ls49c_c00001{letter-spacing:11.487872pt;}
.ls506_c00001{letter-spacing:11.493120pt;}
.ls166_c00001{letter-spacing:11.518308pt;}
.ls302_c00001{letter-spacing:11.598080pt;}
.ls323_c00001{letter-spacing:11.624320pt;}
.ls1b1_c00001{letter-spacing:11.629568pt;}
.ls14d_c00001{letter-spacing:11.634816pt;}
.ls498_c00001{letter-spacing:11.671552pt;}
.ls765_c00001{letter-spacing:11.739776pt;}
.lsa0_c00001{letter-spacing:11.771264pt;}
.ls7c9_c00001{letter-spacing:11.795381pt;}
.ls5fe_c00001{letter-spacing:11.802752pt;}
.ls410_c00001{letter-spacing:11.808000pt;}
.lsfc_c00001{letter-spacing:11.828992pt;}
.ls475_c00001{letter-spacing:11.855232pt;}
.ls49f_c00001{letter-spacing:11.904000pt;}
.ls426_c00001{letter-spacing:11.965440pt;}
.ls1ed_c00001{letter-spacing:11.996928pt;}
.ls706_c00001{letter-spacing:12.002176pt;}
.ls2ed_c00001{letter-spacing:12.007424pt;}
.ls242_c00001{letter-spacing:12.023168pt;}
.ls10f_c00001{letter-spacing:12.028416pt;}
.ls491_c00001{letter-spacing:12.102400pt;}
.ls17e_c00001{letter-spacing:12.160000pt;}
.ls2e7_c00001{letter-spacing:12.206848pt;}
.ls1ef_c00001{letter-spacing:12.222592pt;}
.ls257_c00001{letter-spacing:12.238336pt;}
.ls5f1_c00001{letter-spacing:12.259328pt;}
.ls72f_c00001{letter-spacing:12.280320pt;}
.ls2cd_c00001{letter-spacing:12.288000pt;}
.ls6b0_c00001{letter-spacing:12.369536pt;}
.ls6d9_c00001{letter-spacing:12.479744pt;}
.ls6d6_c00001{letter-spacing:12.490240pt;}
.ls7f_c00001{letter-spacing:12.511232pt;}
.ls4a4_c00001{letter-spacing:12.544000pt;}
.ls5be_c00001{letter-spacing:12.595200pt;}
.ls3ce_c00001{letter-spacing:12.604169pt;}
.ls702_c00001{letter-spacing:12.608000pt;}
.ls3fb_c00001{letter-spacing:12.610944pt;}
.ls76c_c00001{letter-spacing:12.673920pt;}
.ls58c_c00001{letter-spacing:12.712359pt;}
.ls4b9_c00001{letter-spacing:12.847573pt;}
.ls403_c00001{letter-spacing:12.862848pt;}
.ls6f7_c00001{letter-spacing:12.868096pt;}
.ls7c4_c00001{letter-spacing:12.890873pt;}
.ls5b5_c00001{letter-spacing:12.894336pt;}
.ls4e_c00001{letter-spacing:13.004544pt;}
.ls516_c00001{letter-spacing:13.030784pt;}
.ls4f4_c00001{letter-spacing:13.051776pt;}
.ls4ec_c00001{letter-spacing:13.067520pt;}
.ls519_c00001{letter-spacing:13.088512pt;}
.ls21f_c00001{letter-spacing:13.104256pt;}
.ls4ef_c00001{letter-spacing:13.109504pt;}
.ls345_c00001{letter-spacing:13.151488pt;}
.ls4b_c00001{letter-spacing:13.156736pt;}
.ls7d2_c00001{letter-spacing:13.172480pt;}
.ls5dc_c00001{letter-spacing:13.188224pt;}
.ls58d_c00001{letter-spacing:13.199216pt;}
.ls5d3_c00001{letter-spacing:13.219712pt;}
.ls3e4_c00001{letter-spacing:13.230208pt;}
.ls653_c00001{letter-spacing:13.235456pt;}
.ls6f6_c00001{letter-spacing:13.264130pt;}
.ls727_c00001{letter-spacing:13.272192pt;}
.ls720_c00001{letter-spacing:13.277440pt;}
.ls758_c00001{letter-spacing:13.282688pt;}
.ls50b_c00001{letter-spacing:13.324672pt;}
.ls30e_c00001{letter-spacing:13.387648pt;}
.ls154_c00001{letter-spacing:13.398144pt;}
.ls782_c00001{letter-spacing:13.492608pt;}
.ls546_c00001{letter-spacing:13.497856pt;}
.ls251_c00001{letter-spacing:13.518848pt;}
.ls37f_c00001{letter-spacing:13.534592pt;}
.ls42d_c00001{letter-spacing:13.560832pt;}
.ls435_c00001{letter-spacing:13.608064pt;}
.ls3f7_c00001{letter-spacing:13.629056pt;}
.ls38c_c00001{letter-spacing:13.779200pt;}
.ls76d_c00001{letter-spacing:13.802240pt;}
.ls3b6_c00001{letter-spacing:13.823232pt;}
.ls542_c00001{letter-spacing:13.833728pt;}
.ls207_c00001{letter-spacing:13.854720pt;}
.ls392_c00001{letter-spacing:13.888000pt;}
.ls7a2_c00001{letter-spacing:13.907200pt;}
.ls704_c00001{letter-spacing:13.975424pt;}
.ls381_c00001{letter-spacing:14.012160pt;}
.ls5c3_c00001{letter-spacing:14.022400pt;}
.ls4af_c00001{letter-spacing:14.022656pt;}
.ls38d_c00001{letter-spacing:14.027904pt;}
.ls5cd_c00001{letter-spacing:14.080384pt;}
.ls47a_c00001{letter-spacing:14.117120pt;}
.ls44a_c00001{letter-spacing:14.150400pt;}
.ls398_c00001{letter-spacing:14.258816pt;}
.ls518_c00001{letter-spacing:14.264064pt;}
.ls206_c00001{letter-spacing:14.316544pt;}
.lsf9_c00001{letter-spacing:14.358528pt;}
.lsf8_c00001{letter-spacing:14.363776pt;}
.ls5d4_c00001{letter-spacing:14.374272pt;}
.ls5d2_c00001{letter-spacing:14.379520pt;}
.ls602_c00001{letter-spacing:14.390016pt;}
.ls411_c00001{letter-spacing:14.395264pt;}
.ls705_c00001{letter-spacing:14.405537pt;}
.ls25b_c00001{letter-spacing:14.416256pt;}
.lsdc_c00001{letter-spacing:14.505472pt;}
.ls7a6_c00001{letter-spacing:14.528000pt;}
.ls5ef_c00001{letter-spacing:14.536960pt;}
.ls521_c00001{letter-spacing:14.568448pt;}
.ls484_c00001{letter-spacing:14.578642pt;}
.ls6f9_c00001{letter-spacing:14.796800pt;}
.ls78e_c00001{letter-spacing:14.809856pt;}
.ls4f5_c00001{letter-spacing:14.977792pt;}
.ls35a_c00001{letter-spacing:14.983040pt;}
.ls15d_c00001{letter-spacing:15.104000pt;}
.ls397_c00001{letter-spacing:15.124736pt;}
.ls75d_c00001{letter-spacing:15.213952pt;}
.ls7a4_c00001{letter-spacing:15.232000pt;}
.ls3d2_c00001{letter-spacing:15.303168pt;}
.ls3cd_c00001{letter-spacing:15.324160pt;}
.ls786_c00001{letter-spacing:15.350400pt;}
.ls785_c00001{letter-spacing:15.355648pt;}
.ls730_c00001{letter-spacing:15.513088pt;}
.ls5aa_c00001{letter-spacing:15.534080pt;}
.ls4d5_c00001{letter-spacing:15.586560pt;}
.ls4d4_c00001{letter-spacing:15.597056pt;}
.ls10e_c00001{letter-spacing:15.654400pt;}
.ls52d_c00001{letter-spacing:15.712512pt;}
.ls559_c00001{letter-spacing:15.717760pt;}
.ls1a7_c00001{letter-spacing:15.733504pt;}
.ls108_c00001{letter-spacing:15.775488pt;}
.ls106_c00001{letter-spacing:15.796480pt;}
.ls485_c00001{letter-spacing:15.822720pt;}
.ls692_c00001{letter-spacing:15.906688pt;}
.ls60d_c00001{letter-spacing:16.058880pt;}
.ls35d_c00001{letter-spacing:16.089600pt;}
.ls3fd_c00001{letter-spacing:16.258304pt;}
.ls31d_c00001{letter-spacing:16.321280pt;}
.ls571_c00001{letter-spacing:16.441600pt;}
.ls1e9_c00001{letter-spacing:16.483968pt;}
.ls4ae_c00001{letter-spacing:16.588928pt;}
.ls34c_c00001{letter-spacing:16.594176pt;}
.ls47c_c00001{letter-spacing:16.901547pt;}
.ls78d_c00001{letter-spacing:16.956288pt;}
.ls19e_c00001{letter-spacing:16.966784pt;}
.ls212_c00001{letter-spacing:16.982528pt;}
.ls20e_c00001{letter-spacing:17.003520pt;}
.ls430_c00001{letter-spacing:17.004800pt;}
.ls7a5_c00001{letter-spacing:17.024000pt;}
.lse1_c00001{letter-spacing:17.172267pt;}
.ls31c_c00001{letter-spacing:17.184000pt;}
.ls4a1_c00001{letter-spacing:17.216000pt;}
.ls6a1_c00001{letter-spacing:17.339392pt;}
.ls4b2_c00001{letter-spacing:17.475840pt;}
.ls7d4_c00001{letter-spacing:17.586048pt;}
.ls3ff_c00001{letter-spacing:17.600000pt;}
.ls21a_c00001{letter-spacing:17.738240pt;}
.ls69c_c00001{letter-spacing:17.851398pt;}
.ls1ca_c00001{letter-spacing:17.864192pt;}
.ls696_c00001{letter-spacing:17.869440pt;}
.ls695_c00001{letter-spacing:17.895680pt;}
.ls49a_c00001{letter-spacing:17.921920pt;}
.ls33a_c00001{letter-spacing:17.958656pt;}
.ls63a_c00001{letter-spacing:18.158080pt;}
.ls436_c00001{letter-spacing:18.173824pt;}
.ls48_c00001{letter-spacing:18.272000pt;}
.ls378_c00001{letter-spacing:18.315520pt;}
.ls5cb_c00001{letter-spacing:18.383744pt;}
.ls442_c00001{letter-spacing:18.394240pt;}
.ls377_c00001{letter-spacing:18.420480pt;}
.ls499_c00001{letter-spacing:18.473492pt;}
.ls4e4_c00001{letter-spacing:18.514944pt;}
.ls4d9_c00001{letter-spacing:18.525440pt;}
.ls25c_c00001{letter-spacing:18.845568pt;}
.ls24c_c00001{letter-spacing:18.856064pt;}
.ls42e_c00001{letter-spacing:19.052800pt;}
.ls6ff_c00001{letter-spacing:19.260160pt;}
.ls513_c00001{letter-spacing:19.430400pt;}
.ls3fc_c00001{letter-spacing:19.433344pt;}
.ls5bb_c00001{letter-spacing:19.494400pt;}
.ls687_c00001{letter-spacing:19.632768pt;}
.ls564_c00001{letter-spacing:19.680000pt;}
.ls736_c00001{letter-spacing:19.779712pt;}
.ls14c_c00001{letter-spacing:19.878400pt;}
.ls33d_c00001{letter-spacing:19.963392pt;}
.ls3be_c00001{letter-spacing:20.000128pt;}
.ls322_c00001{letter-spacing:20.147200pt;}
.ls4ea_c00001{letter-spacing:20.160000pt;}
.ls6a8_c00001{letter-spacing:20.230400pt;}
.ls225_c00001{letter-spacing:20.366822pt;}
.ls41b_c00001{letter-spacing:20.377984pt;}
.ls572_c00001{letter-spacing:20.388480pt;}
.ls7e1_c00001{letter-spacing:20.621070pt;}
.ls725_c00001{letter-spacing:20.624640pt;}
.ls729_c00001{letter-spacing:20.645632pt;}
.ls677_c00001{letter-spacing:20.797824pt;}
.ls755_c00001{letter-spacing:21.123200pt;}
.ls676_c00001{letter-spacing:21.128448pt;}
.ls7d5_c00001{letter-spacing:21.212416pt;}
.ls72c_c00001{letter-spacing:21.216000pt;}
.ls195_c00001{letter-spacing:21.369856pt;}
.ls479_c00001{letter-spacing:21.376000pt;}
.ls33e_c00001{letter-spacing:21.432832pt;}
.ls6ca_c00001{letter-spacing:21.440000pt;}
.ls213_c00001{letter-spacing:21.464320pt;}
.ls598_c00001{letter-spacing:21.593600pt;}
.ls49d_c00001{letter-spacing:21.888000pt;}
.ls714_c00001{letter-spacing:21.941888pt;}
.ls66f_c00001{letter-spacing:22.070819pt;}
.ls23f_c00001{letter-spacing:22.109824pt;}
.ls374_c00001{letter-spacing:22.146560pt;}
.ls254_c00001{letter-spacing:22.276381pt;}
.ls401_c00001{letter-spacing:22.618880pt;}
.ls376_c00001{letter-spacing:22.776320pt;}
.ls34d_c00001{letter-spacing:23.164672pt;}
.ls711_c00001{letter-spacing:24.056832pt;}
.ls784_c00001{letter-spacing:24.371712pt;}
.ls4f3_c00001{letter-spacing:24.697088pt;}
.ls4c5_c00001{letter-spacing:25.152000pt;}
.ls34e_c00001{letter-spacing:25.547264pt;}
.ls54d_c00001{letter-spacing:25.799168pt;}
.ls32f_c00001{letter-spacing:25.925120pt;}
.ls440_c00001{letter-spacing:26.176000pt;}
.ls72d_c00001{letter-spacing:26.560000pt;}
.ls72e_c00001{letter-spacing:26.717724pt;}
.ls52c_c00001{letter-spacing:26.838272pt;}
.ls2da_c00001{letter-spacing:27.237120pt;}
.ls1fe_c00001{letter-spacing:27.279104pt;}
.ls3e0_c00001{letter-spacing:28.486144pt;}
.ls78a_c00001{letter-spacing:28.848256pt;}
.ls4a7_c00001{letter-spacing:29.283840pt;}
.ls4e3_c00001{letter-spacing:29.352064pt;}
.ls5e4_c00001{letter-spacing:29.798144pt;}
.ls193_c00001{letter-spacing:29.952000pt;}
.ls2e2_c00001{letter-spacing:31.666432pt;}
.ls4d6_c00001{letter-spacing:33.539968pt;}
.ls4f8_c00001{letter-spacing:33.792000pt;}
.ls738_c00001{letter-spacing:34.500352pt;}
.ls2e0_c00001{letter-spacing:40.488320pt;}
.ls65a_c00001{letter-spacing:40.576000pt;}
.ls709_c00001{letter-spacing:44.608000pt;}
.lsb_c00001{letter-spacing:48.768000pt;}
.ls3a2_c00001{letter-spacing:48.896000pt;}
.ls6c4_c00001{letter-spacing:52.928000pt;}
.ls2ba_c00001{letter-spacing:55.681280pt;}
.ls2b2_c00001{letter-spacing:64.602880pt;}
.ls2d3_c00001{letter-spacing:67.157144pt;}
.ls2c1_c00001{letter-spacing:70.533120pt;}
.ls563_c00001{letter-spacing:70.648260pt;}
.ls2be_c00001{letter-spacing:72.055040pt;}
.ls585_c00001{letter-spacing:78.870723pt;}
.ls2b6_c00001{letter-spacing:80.976640pt;}
.ls2c0_c00001{letter-spacing:84.177920pt;}
.ls6d0_c00001{letter-spacing:86.656000pt;}
.ls2bd_c00001{letter-spacing:86.801920pt;}
.ls2c4_c00001{letter-spacing:86.906880pt;}
.ls698_c00001{letter-spacing:88.512000pt;}
.ls2bc_c00001{letter-spacing:92.207360pt;}
.ls2bb_c00001{letter-spacing:92.784640pt;}
.ls2b9_c00001{letter-spacing:93.099520pt;}
.ls2b5_c00001{letter-spacing:95.723520pt;}
.ls7ab_c00001{letter-spacing:97.024000pt;}
.ls57c_c00001{letter-spacing:98.190080pt;}
.ls2bf_c00001{letter-spacing:98.714880pt;}
.ls2c8_c00001{letter-spacing:98.987776pt;}
.ls329_c00001{letter-spacing:99.008000pt;}
.ls2b4_c00001{letter-spacing:101.076480pt;}
.ls562_c00001{letter-spacing:101.212018pt;}
.ls2c3_c00001{letter-spacing:101.601280pt;}
.ls2b3_c00001{letter-spacing:101.653760pt;}
.ls5e0_c00001{letter-spacing:103.280640pt;}
.ls2b7_c00001{letter-spacing:104.592640pt;}
.ls4e2_c00001{letter-spacing:104.876032pt;}
.ls2c2_c00001{letter-spacing:107.017216pt;}
.ls2b8_c00001{letter-spacing:107.584000pt;}
.ls3e6_c00001{letter-spacing:109.434480pt;}
.ls2c6_c00001{letter-spacing:110.522880pt;}
.ls2c5_c00001{letter-spacing:110.533376pt;}
.ls2c7_c00001{letter-spacing:113.514240pt;}
.ls566_c00001{letter-spacing:116.899610pt;}
.ls57d_c00001{letter-spacing:118.468369pt;}
.ls63e_c00001{letter-spacing:120.320000pt;}
.ls664_c00001{letter-spacing:122.240000pt;}
.ls505_c00001{letter-spacing:123.987200pt;}
.ls66e_c00001{letter-spacing:124.032000pt;}
.ls58b_c00001{letter-spacing:124.096000pt;}
.ls688_c00001{letter-spacing:125.888000pt;}
.ls648_c00001{letter-spacing:125.952000pt;}
.ls701_c00001{letter-spacing:126.002108pt;}
.ls5e1_c00001{letter-spacing:127.915229pt;}
.ls649_c00001{letter-spacing:131.520000pt;}
.ls1b3_c00001{letter-spacing:132.608000pt;}
.ls3e5_c00001{letter-spacing:139.998237pt;}
.ls74c_c00001{letter-spacing:165.312000pt;}
.ls328_c00001{letter-spacing:170.176000pt;}
.ls2c9_c00001{letter-spacing:174.233600pt;}
.ls2db_c00001{letter-spacing:207.768320pt;}
.wsa8_c00001{word-spacing:-53.125504pt;}
.wsa9_c00001{word-spacing:-53.052032pt;}
.wsa7_c00001{word-spacing:-52.989056pt;}
.wsaa_c00001{word-spacing:-52.689920pt;}
.ws27_c00001{word-spacing:-31.037952pt;}
.ws91_c00001{word-spacing:-25.919755pt;}
.ws73_c00001{word-spacing:-25.904128pt;}
.ws29_c00001{word-spacing:-25.898381pt;}
.ws92_c00001{word-spacing:-25.848508pt;}
.ws26_c00001{word-spacing:-25.145856pt;}
.ws8d_c00001{word-spacing:-25.132032pt;}
.ws93_c00001{word-spacing:-25.125120pt;}
.ws28_c00001{word-spacing:-25.097472pt;}
.ws2c_c00001{word-spacing:-23.958528pt;}
.ws3f_c00001{word-spacing:-23.485440pt;}
.ws1a_c00001{word-spacing:-23.104000pt;}
.ws74_c00001{word-spacing:-21.968128pt;}
.wsca_c00001{word-spacing:-21.651840pt;}
.wsc8_c00001{word-spacing:-21.415680pt;}
.ws3a_c00001{word-spacing:-21.352320pt;}
.ws4f_c00001{word-spacing:-21.179520pt;}
.wsde_c00001{word-spacing:-20.257280pt;}
.wsa1_c00001{word-spacing:-20.188308pt;}
.wsdc_c00001{word-spacing:-20.026368pt;}
.ws5b_c00001{word-spacing:-19.988156pt;}
.ws2d_c00001{word-spacing:-19.963484pt;}
.ws2e_c00001{word-spacing:-19.913611pt;}
.wsc5_c00001{word-spacing:-19.868928pt;}
.wsdf_c00001{word-spacing:-19.832192pt;}
.wse0_c00001{word-spacing:-19.784960pt;}
.ws35_c00001{word-spacing:-19.727232pt;}
.wscb_c00001{word-spacing:-19.680000pt;}
.ws61_c00001{word-spacing:-19.632768pt;}
.wsc6_c00001{word-spacing:-19.585536pt;}
.ws1b_c00001{word-spacing:-19.538304pt;}
.ws21_c00001{word-spacing:-19.496320pt;}
.ws2b_c00001{word-spacing:-19.491072pt;}
.ws96_c00001{word-spacing:-19.470080pt;}
.ws38_c00001{word-spacing:-19.464832pt;}
.ws23_c00001{word-spacing:-19.443840pt;}
.ws2a_c00001{word-spacing:-19.391360pt;}
.ws5e_c00001{word-spacing:-19.353600pt;}
.ws1f_c00001{word-spacing:-19.349376pt;}
.ws40_c00001{word-spacing:-19.346688pt;}
.wsd9_c00001{word-spacing:-19.328384pt;}
.ws22_c00001{word-spacing:-19.302144pt;}
.ws70_c00001{word-spacing:-19.296896pt;}
.ws19_c00001{word-spacing:-19.280697pt;}
.ws14_c00001{word-spacing:-19.254912pt;}
.wsbd_c00001{word-spacing:-19.198367pt;}
.wsf_c00001{word-spacing:-19.193222pt;}
.ws78_c00001{word-spacing:-19.110891pt;}
.ws71_c00001{word-spacing:-19.023416pt;}
.ws3_c00001{word-spacing:-18.705024pt;}
.ws6f_c00001{word-spacing:-18.665088pt;}
.wsd_c00001{word-spacing:-18.620160pt;}
.ws10_c00001{word-spacing:-18.580224pt;}
.ws6d_c00001{word-spacing:-18.540288pt;}
.wscc_c00001{word-spacing:-18.495360pt;}
.ws72_c00001{word-spacing:-18.455424pt;}
.ws30_c00001{word-spacing:-18.339574pt;}
.ws9b_c00001{word-spacing:-18.330624pt;}
.wsa_c00001{word-spacing:-17.792000pt;}
.wsc7_c00001{word-spacing:-17.684224pt;}
.wsc4_c00001{word-spacing:-17.608448pt;}
.wsd8_c00001{word-spacing:-17.574400pt;}
.wse_c00001{word-spacing:-17.542144pt;}
.wsa5_c00001{word-spacing:-17.504256pt;}
.ws7e_c00001{word-spacing:-17.471104pt;}
.ws53_c00001{word-spacing:-17.433216pt;}
.ws47_c00001{word-spacing:-17.419956pt;}
.ws7d_c00001{word-spacing:-17.362176pt;}
.ws50_c00001{word-spacing:-17.301211pt;}
.wsce_c00001{word-spacing:-17.295274pt;}
.wscf_c00001{word-spacing:-17.176528pt;}
.ws45_c00001{word-spacing:-17.117155pt;}
.ws48_c00001{word-spacing:-17.111218pt;}
.ws52_c00001{word-spacing:-17.057783pt;}
.ws75_c00001{word-spacing:-17.056000pt;}
.ws46_c00001{word-spacing:-16.992473pt;}
.ws49_c00001{word-spacing:-16.933100pt;}
.ws44_c00001{word-spacing:-16.873727pt;}
.wsc9_c00001{word-spacing:-16.867790pt;}
.ws51_c00001{word-spacing:-16.784640pt;}
.ws58_c00001{word-spacing:-16.663680pt;}
.ws25_c00001{word-spacing:-16.606080pt;}
.ws4a_c00001{word-spacing:-16.505616pt;}
.wse1_c00001{word-spacing:-16.077077pt;}
.ws59_c00001{word-spacing:-16.012800pt;}
.wsd6_c00001{word-spacing:-16.000000pt;}
.ws37_c00001{word-spacing:-15.920201pt;}
.ws7_c00001{word-spacing:-15.768735pt;}
.ws39_c00001{word-spacing:-15.720049pt;}
.ws66_c00001{word-spacing:-15.676773pt;}
.ws5_c00001{word-spacing:-15.671364pt;}
.ws8_c00001{word-spacing:-15.622678pt;}
.wsdd_c00001{word-spacing:-15.597056pt;}
.ws9_c00001{word-spacing:-15.573992pt;}
.wsbc_c00001{word-spacing:-15.546945pt;}
.wse3_c00001{word-spacing:-15.536126pt;}
.ws7b_c00001{word-spacing:-15.530716pt;}
.ws13_c00001{word-spacing:-15.525307pt;}
.wsb3_c00001{word-spacing:-15.519897pt;}
.ws98_c00001{word-spacing:-15.509078pt;}
.ws9a_c00001{word-spacing:-15.498259pt;}
.ws20_c00001{word-spacing:-15.476621pt;}
.ws4d_c00001{word-spacing:-15.444864pt;}
.wsc_c00001{word-spacing:-15.427936pt;}
.ws67_c00001{word-spacing:-15.417117pt;}
.ws97_c00001{word-spacing:-15.400888pt;}
.ws34_c00001{word-spacing:-15.379250pt;}
.ws6_c00001{word-spacing:-15.330564pt;}
.ws7f_c00001{word-spacing:-15.308926pt;}
.ws42_c00001{word-spacing:-15.297920pt;}
.ws11_c00001{word-spacing:-15.281879pt;}
.ws33_c00001{word-spacing:-15.276469pt;}
.ws4c_c00001{word-spacing:-15.250688pt;}
.ws9d_c00001{word-spacing:-15.208704pt;}
.ws1c_c00001{word-spacing:-15.203456pt;}
.ws63_c00001{word-spacing:-15.156224pt;}
.ws2f_c00001{word-spacing:-15.108992pt;}
.ws79_c00001{word-spacing:-15.082752pt;}
.ws12_c00001{word-spacing:-15.061760pt;}
.ws1d_c00001{word-spacing:-15.046016pt;}
.wsb_c00001{word-spacing:-15.038451pt;}
.ws6b_c00001{word-spacing:-15.035520pt;}
.ws54_c00001{word-spacing:-15.014528pt;}
.ws3b_c00001{word-spacing:-14.988288pt;}
.ws36_c00001{word-spacing:-14.967296pt;}
.wsac_c00001{word-spacing:-14.941056pt;}
.ws3c_c00001{word-spacing:-14.920064pt;}
.ws17_c00001{word-spacing:-14.872832pt;}
.wscd_c00001{word-spacing:-14.860596pt;}
.ws5a_c00001{word-spacing:-14.851840pt;}
.ws24_c00001{word-spacing:-14.825600pt;}
.ws6c_c00001{word-spacing:-14.820352pt;}
.ws65_c00001{word-spacing:-14.626560pt;}
.ws4e_c00001{word-spacing:-14.589440pt;}
.wsaf_c00001{word-spacing:-14.496768pt;}
.ws68_c00001{word-spacing:-14.376960pt;}
.wsae_c00001{word-spacing:-14.332032pt;}
.ws8e_c00001{word-spacing:-14.292096pt;}
.wsa2_c00001{word-spacing:-14.252160pt;}
.ws9f_c00001{word-spacing:-14.230322pt;}
.ws6a_c00001{word-spacing:-14.166144pt;}
.wsad_c00001{word-spacing:-14.122923pt;}
.wsa3_c00001{word-spacing:-14.122368pt;}
.ws41_c00001{word-spacing:-14.044815pt;}
.ws64_c00001{word-spacing:-14.001664pt;}
.ws8b_c00001{word-spacing:-13.971589pt;}
.ws5c_c00001{word-spacing:-13.937416pt;}
.ws94_c00001{word-spacing:-13.864190pt;}
.ws95_c00001{word-spacing:-13.830018pt;}
.ws3d_c00001{word-spacing:-13.805440pt;}
.ws8a_c00001{word-spacing:-13.790964pt;}
.wsd1_c00001{word-spacing:-13.701248pt;}
.wsd0_c00001{word-spacing:-13.696512pt;}
.ws62_c00001{word-spacing:-13.663360pt;}
.ws89_c00001{word-spacing:-13.625472pt;}
.wsa0_c00001{word-spacing:-13.592320pt;}
.ws5d_c00001{word-spacing:-13.554432pt;}
.wsab_c00001{word-spacing:-13.521387pt;}
.ws0_c00001{word-spacing:-13.521280pt;}
.wsc2_c00001{word-spacing:-13.507072pt;}
.wse5_c00001{word-spacing:-13.488128pt;}
.ws6e_c00001{word-spacing:-13.450240pt;}
.wsb0_c00001{word-spacing:-13.417088pt;}
.wsd2_c00001{word-spacing:-13.393408pt;}
.ws3e_c00001{word-spacing:-13.379200pt;}
.ws8c_c00001{word-spacing:-13.346048pt;}
.ws76_c00001{word-spacing:-13.314048pt;}
.ws1_c00001{word-spacing:-13.166080pt;}
.wsb8_c00001{word-spacing:-12.543873pt;}
.wsb4_c00001{word-spacing:-12.469855pt;}
.wsb9_c00001{word-spacing:-12.443731pt;}
.ws57_c00001{word-spacing:-12.421961pt;}
.ws9c_c00001{word-spacing:-12.374067pt;}
.wsd5_c00001{word-spacing:-12.347943pt;}
.wsbb_c00001{word-spacing:-12.330527pt;}
.wsb6_c00001{word-spacing:-12.326173pt;}
.wsb5_c00001{word-spacing:-12.300049pt;}
.wsb7_c00001{word-spacing:-12.273925pt;}
.ws55_c00001{word-spacing:-12.247801pt;}
.wsb2_c00001{word-spacing:-12.169344pt;}
.wsa4_c00001{word-spacing:-12.097536pt;}
.wsc1_c00001{word-spacing:-12.072192pt;}
.wsc0_c00001{word-spacing:-12.051072pt;}
.ws88_c00001{word-spacing:-12.004608pt;}
.ws84_c00001{word-spacing:-11.979264pt;}
.ws87_c00001{word-spacing:-11.958144pt;}
.wsba_c00001{word-spacing:-11.932800pt;}
.ws85_c00001{word-spacing:-11.882112pt;}
.ws83_c00001{word-spacing:-11.860992pt;}
.ws69_c00001{word-spacing:-11.232000pt;}
.wsdb_c00001{word-spacing:-11.202048pt;}
.wsd7_c00001{word-spacing:-10.793829pt;}
.ws56_c00001{word-spacing:-10.709651pt;}
.ws15_c00001{word-spacing:-10.319360pt;}
.ws16_c00001{word-spacing:-10.159744pt;}
.wsa6_c00001{word-spacing:-9.607680pt;}
.ws43_c00001{word-spacing:-9.593856pt;}
.ws9e_c00001{word-spacing:-9.279360pt;}
.ws18_c00001{word-spacing:-9.024000pt;}
.ws4_c00001{word-spacing:-8.896000pt;}
.ws5f_c00001{word-spacing:-4.717952pt;}
.wse6_c00001{word-spacing:-3.186974pt;}
.ws31_c00001{word-spacing:-2.932441pt;}
.ws32_c00001{word-spacing:-2.917048pt;}
.wsb1_c00001{word-spacing:-2.844481pt;}
.ws4b_c00001{word-spacing:-2.843426pt;}
.wse4_c00001{word-spacing:-2.660316pt;}
.wsda_c00001{word-spacing:-2.082752pt;}
.wsd3_c00001{word-spacing:-0.935846pt;}
.ws8f_c00001{word-spacing:-0.784380pt;}
.wsc3_c00001{word-spacing:-0.707855pt;}
.wsbe_c00001{word-spacing:-0.600456pt;}
.ws99_c00001{word-spacing:-0.589637pt;}
.ws90_c00001{word-spacing:-0.540951pt;}
.ws7c_c00001{word-spacing:-0.522348pt;}
.ws60_c00001{word-spacing:-0.492266pt;}
.wsbf_c00001{word-spacing:-0.449122pt;}
.ws82_c00001{word-spacing:-0.414949pt;}
.ws81_c00001{word-spacing:-0.341723pt;}
.ws80_c00001{word-spacing:-0.307551pt;}
.wsd4_c00001{word-spacing:-0.297523pt;}
.ws77_c00001{word-spacing:-0.234324pt;}
.wse2_c00001{word-spacing:-0.195138pt;}
.ws7a_c00001{word-spacing:-0.083200pt;}
.ws1e_c00001{word-spacing:-0.064000pt;}
.ws86_c00001{word-spacing:-0.054095pt;}
.ws2_c00001{word-spacing:0.000000pt;}
._69_c00001{margin-left:-131.520000pt;}
._71_c00001{margin-left:-126.208000pt;}
._57_c00001{margin-left:-105.161216pt;}
._56_c00001{margin-left:-104.177152pt;}
._3a_c00001{margin-left:-84.571520pt;}
._3d_c00001{margin-left:-35.759872pt;}
._73_c00001{margin-left:-34.216960pt;}
._74_c00001{margin-left:-33.272320pt;}
._64_c00001{margin-left:-30.212480pt;}
._4e_c00001{margin-left:-28.976960pt;}
._37_c00001{margin-left:-27.604480pt;}
._36_c00001{margin-left:-26.659840pt;}
._49_c00001{margin-left:-25.085440pt;}
._4a_c00001{margin-left:-24.193280pt;}
._48_c00001{margin-left:-22.776320pt;}
._30_c00001{margin-left:-21.724267pt;}
._31_c00001{margin-left:-20.814187pt;}
._2e_c00001{margin-left:-19.584021pt;}
._6c_c00001{margin-left:-18.685973pt;}
._1c_c00001{margin-left:-17.792000pt;}
._2b_c00001{margin-left:-16.073472pt;}
._29_c00001{margin-left:-14.641920pt;}
._1f_c00001{margin-left:-13.539840pt;}
._1e_c00001{margin-left:-12.542720pt;}
._25_c00001{margin-left:-11.567339pt;}
._20_c00001{margin-left:-10.635349pt;}
._1a_c00001{margin-left:-9.551360pt;}
._19_c00001{margin-left:-8.606720pt;}
._18_c00001{margin-left:-7.714560pt;}
._e_c00001{margin-left:-6.414592pt;}
._f_c00001{margin-left:-5.235968pt;}
._15_c00001{margin-left:-3.673600pt;}
._d_c00001{margin-left:-1.927616pt;}
._0_c00001{margin-left:-0.994560pt;}
._1_c00001{width:0.946880pt;}
._a_c00001{width:2.023360pt;}
._2_c00001{width:3.584000pt;}
._8_c00001{width:4.736000pt;}
._6_c00001{width:6.336000pt;}
._9_c00001{width:7.431467pt;}
._c_c00001{width:8.568533pt;}
._3_c00001{width:9.600000pt;}
._4_c00001{width:10.752000pt;}
._14_c00001{width:12.096000pt;}
._12_c00001{width:13.120000pt;}
._5_c00001{width:14.720000pt;}
._7_c00001{width:15.872000pt;}
._10_c00001{width:16.832000pt;}
._26_c00001{width:17.738240pt;}
._11_c00001{width:19.456000pt;}
._21_c00001{width:20.352000pt;}
._1b_c00001{width:21.696000pt;}
._b_c00001{width:22.848000pt;}
._16_c00001{width:24.000000pt;}
._13_c00001{width:25.344000pt;}
._2a_c00001{width:26.944000pt;}
._1d_c00001{width:27.968000pt;}
._17_c00001{width:29.184000pt;}
._2f_c00001{width:30.433920pt;}
._22_c00001{width:31.424000pt;}
._23_c00001{width:32.512000pt;}
._38_c00001{width:33.512603pt;}
._39_c00001{width:34.880000pt;}
._32_c00001{width:36.032000pt;}
._33_c00001{width:37.376000pt;}
._24_c00001{width:38.784000pt;}
._34_c00001{width:40.384000pt;}
._4b_c00001{width:41.792000pt;}
._46_c00001{width:43.072000pt;}
._4d_c00001{width:44.563200pt;}
._65_c00001{width:46.459904pt;}
._41_c00001{width:47.424000pt;}
._5a_c00001{width:49.087467pt;}
._47_c00001{width:50.816000pt;}
._40_c00001{width:52.352000pt;}
._52_c00001{width:53.440000pt;}
._42_c00001{width:54.848000pt;}
._35_c00001{width:56.576000pt;}
._63_c00001{width:57.472000pt;}
._4c_c00001{width:65.472000pt;}
._6a_c00001{width:84.846613pt;}
._6b_c00001{width:85.893547pt;}
._66_c00001{width:87.343870pt;}
._58_c00001{width:89.322960pt;}
._61_c00001{width:91.236081pt;}
._68_c00001{width:93.149202pt;}
._77_c00001{width:94.976000pt;}
._5c_c00001{width:98.190080pt;}
._28_c00001{width:100.010050pt;}
._5d_c00001{width:101.212018pt;}
._54_c00001{width:103.855360pt;}
._55_c00001{width:104.794624pt;}
._6e_c00001{width:107.662534pt;}
._50_c00001{width:109.434480pt;}
._6d_c00001{width:116.928000pt;}
._76_c00001{width:118.019775pt;}
._44_c00001{width:120.394684pt;}
._6f_c00001{width:122.240000pt;}
._5f_c00001{width:124.905692pt;}
._59_c00001{width:126.002108pt;}
._60_c00001{width:127.915229pt;}
._67_c00001{width:129.828350pt;}
._70_c00001{width:131.520000pt;}
._2d_c00001{width:132.608000pt;}
._2c_c00001{width:135.424000pt;}
._27_c00001{width:136.689198pt;}
._5b_c00001{width:138.734258pt;}
._4f_c00001{width:139.998237pt;}
._78_c00001{width:141.109167pt;}
._45_c00001{width:164.864000pt;}
._72_c00001{width:166.153472pt;}
._75_c00001{width:168.519467pt;}
._3b_c00001{width:171.545600pt;}
._43_c00001{width:175.413406pt;}
._3c_c00001{width:176.712097pt;}
._5e_c00001{width:179.595884pt;}
._3f_c00001{width:201.995520pt;}
._3e_c00001{width:203.108096pt;}
._53_c00001{width:832.064000pt;}
._51_c00001{width:1308.588800pt;}
._62_c00001{width:1742.208000pt;}
.fs6_c00001{font-size:32.000000pt;}
.fs17_c00001{font-size:32.984845pt;}
.fs12_c00001{font-size:34.560000pt;}
.fs13_c00001{font-size:35.623633pt;}
.fs4_c00001{font-size:37.120000pt;}
.fsb_c00001{font-size:38.262420pt;}
.fs16_c00001{font-size:42.240000pt;}
.fs14_c00001{font-size:43.539995pt;}
.fs2_c00001{font-size:47.360000pt;}
.fs10_c00001{font-size:48.817571pt;}
.fs5_c00001{font-size:49.920000pt;}
.fs9_c00001{font-size:51.456358pt;}
.fs7_c00001{font-size:52.480000pt;}
.fs3_c00001{font-size:53.333333pt;}
.fs8_c00001{font-size:54.095146pt;}
.fs18_c00001{font-size:55.040000pt;}
.fsa_c00001{font-size:57.600000pt;}
.fs11_c00001{font-size:59.372721pt;}
.fs0_c00001{font-size:64.000000pt;}
.fs1_c00001{font-size:65.969690pt;}
.fsd_c00001{font-size:69.120000pt;}
.fse_c00001{font-size:71.247265pt;}
.fs15_c00001{font-size:74.240000pt;}
.fsc_c00001{font-size:84.480000pt;}
.fsf_c00001{font-size:87.079991pt;}
.ybe0_c00001{bottom:-46.080000pt;}
.ybaa_c00001{bottom:-28.800000pt;}
.yba7_c00001{bottom:-25.920000pt;}
.y6b5_c00001{bottom:-24.640000pt;}
.y1c_c00001{bottom:-18.880000pt;}
.y426_c00001{bottom:-18.560000pt;}
.ybe4_c00001{bottom:-17.600000pt;}
.ybdf_c00001{bottom:-17.280000pt;}
.y12f_c00001{bottom:-10.560000pt;}
.ycc8_c00001{bottom:-10.200000pt;}
.y107b_c00001{bottom:-9.880000pt;}
.y4aa_c00001{bottom:-8.960000pt;}
.yba9_c00001{bottom:-8.000000pt;}
.yba6_c00001{bottom:-6.720000pt;}
.yba8_c00001{bottom:-3.840000pt;}
.ybe2_c00001{bottom:-1.600000pt;}
.yba3_c00001{bottom:-0.960000pt;}
.y0_c00001{bottom:0.000000pt;}
.ybe6_c00001{bottom:0.640000pt;}
.yb57_c00001{bottom:1.961467pt;}
.y20b_c00001{bottom:2.280000pt;}
.y1e_c00001{bottom:2.773333pt;}
.y6b4_c00001{bottom:2.880000pt;}
.yebd_c00001{bottom:3.520000pt;}
.y9f7_c00001{bottom:4.800000pt;}
.y4a9_c00001{bottom:5.120000pt;}
.y1011_c00001{bottom:5.760000pt;}
.y8c2_c00001{bottom:6.720000pt;}
.y5e9_c00001{bottom:8.640000pt;}
.y859_c00001{bottom:9.280000pt;}
.y1033_c00001{bottom:9.920000pt;}
.y9c0_c00001{bottom:10.240000pt;}
.yba5_c00001{bottom:11.200000pt;}
.ybde_c00001{bottom:11.520000pt;}
.ybc7_c00001{bottom:12.480000pt;}
.y6b2_c00001{bottom:12.799867pt;}
.y1b_c00001{bottom:12.800000pt;}
.y5cc_c00001{bottom:13.120000pt;}
.yfec_c00001{bottom:13.760000pt;}
.y62a_c00001{bottom:14.720000pt;}
.y6e4_c00001{bottom:15.360000pt;}
.y6e6_c00001{bottom:15.680000pt;}
.ycd3_c00001{bottom:16.000000pt;}
.yfce_c00001{bottom:16.320000pt;}
.y12e_c00001{bottom:16.640000pt;}
.y2ed_c00001{bottom:16.960000pt;}
.y105d_c00001{bottom:17.280000pt;}
.yebc_c00001{bottom:17.600000pt;}
.y4a5_c00001{bottom:18.560000pt;}
.y755_c00001{bottom:18.880000pt;}
.y49d_c00001{bottom:19.200000pt;}
.y685_c00001{bottom:19.520000pt;}
.yba2_c00001{bottom:19.840000pt;}
.y12a_c00001{bottom:20.160000pt;}
.y8be_c00001{bottom:20.480000pt;}
.yb0e_c00001{bottom:21.120000pt;}
.y2b9_c00001{bottom:21.440000pt;}
.y9c5_c00001{bottom:21.760000pt;}
.y401_c00001{bottom:22.080000pt;}
.y8c1_c00001{bottom:22.400000pt;}
.y9d_c00001{bottom:22.720000pt;}
.y91c_c00001{bottom:23.040000pt;}
.y687_c00001{bottom:23.360000pt;}
.y110c_c00001{bottom:23.680000pt;}
.y1032_c00001{bottom:24.000000pt;}
.y9bf_c00001{bottom:24.320000pt;}
.y858_c00001{bottom:24.640000pt;}
.y1010_c00001{bottom:25.280000pt;}
.yf33_c00001{bottom:25.600000pt;}
.y1028_c00001{bottom:26.240000pt;}
.yf2c_c00001{bottom:26.560000pt;}
.yefb_c00001{bottom:27.200000pt;}
.ybe1_c00001{bottom:27.520000pt;}
.y4dc_c00001{bottom:28.480000pt;}
.y629_c00001{bottom:28.800000pt;}
.y873_c00001{bottom:29.440000pt;}
.ybe5_c00001{bottom:29.760000pt;}
.y70c_c00001{bottom:30.400000pt;}
.yccf_c00001{bottom:30.719867pt;}
.y12d_c00001{bottom:30.720000pt;}
.y1d_c00001{bottom:30.884071pt;}
.y2ec_c00001{bottom:31.040000pt;}
.ybe7_c00001{bottom:31.400000pt;}
.y655_c00001{bottom:32.000000pt;}
.y4a4_c00001{bottom:32.640000pt;}
.y4a8_c00001{bottom:32.960000pt;}
.y49c_c00001{bottom:33.280000pt;}
.y2b8_c00001{bottom:35.200000pt;}
.y708_c00001{bottom:35.520000pt;}
.y8bd_c00001{bottom:35.840000pt;}
.y1002_c00001{bottom:36.160000pt;}
.y19_c00001{bottom:36.480000pt;}
.y9c_c00001{bottom:36.800000pt;}
.y686_c00001{bottom:37.440000pt;}
.y8c0_c00001{bottom:37.760000pt;}
.y9be_c00001{bottom:38.400000pt;}
.yf32_c00001{bottom:39.680000pt;}
.y857_c00001{bottom:40.320000pt;}
.yf2b_c00001{bottom:40.640000pt;}
.yefa_c00001{bottom:40.960000pt;}
.y4db_c00001{bottom:42.560000pt;}
.y20a_c00001{bottom:43.520000pt;}
.y105c_c00001{bottom:45.120000pt;}
.y4a3_c00001{bottom:46.720000pt;}
.y4a7_c00001{bottom:47.040000pt;}
.y1_c00001{bottom:48.000000pt;}
.y2b7_c00001{bottom:49.280000pt;}
.y27b_c00001{bottom:49.314560pt;}
.yb28_c00001{bottom:49.315840pt;}
.y3bd_c00001{bottom:49.316160pt;}
.y71_c00001{bottom:49.316480pt;}
.y1fa_c00001{bottom:49.318080pt;}
.y72_c00001{bottom:49.320000pt;}
.y646_c00001{bottom:49.321600pt;}
.y1116_c00001{bottom:49.326080pt;}
.y10a4_c00001{bottom:49.640000pt;}
.y10a3_c00001{bottom:49.648960pt;}
.y6ab_c00001{bottom:49.953600pt;}
.y559_c00001{bottom:49.960000pt;}
.yf85_c00001{bottom:50.920000pt;}
.yc64_c00001{bottom:51.240000pt;}
.yc63_c00001{bottom:51.243200pt;}
.ydd8_c00001{bottom:52.520000pt;}
.y8bf_c00001{bottom:53.440000pt;}
.yf31_c00001{bottom:53.760000pt;}
.yedc_c00001{bottom:54.440000pt;}
.y74f_c00001{bottom:54.441600pt;}
.yf2a_c00001{bottom:54.720000pt;}
.y41_c00001{bottom:54.760000pt;}
.yef9_c00001{bottom:55.040000pt;}
.ye91_c00001{bottom:55.079040pt;}
.y771_c00001{bottom:55.080000pt;}
.yae9_c00001{bottom:55.406720pt;}
.ye41_c00001{bottom:56.039040pt;}
.ye42_c00001{bottom:56.040000pt;}
.ya61_c00001{bottom:56.046400pt;}
.y4da_c00001{bottom:56.640000pt;}
.y110b_c00001{bottom:56.680000pt;}
.yf29_c00001{bottom:57.960000pt;}
.y209_c00001{bottom:58.240000pt;}
.yf19_c00001{bottom:59.563200pt;}
.y707_c00001{bottom:59.880000pt;}
.y6e2_c00001{bottom:60.507200pt;}
.y4a2_c00001{bottom:60.800000pt;}
.y4a6_c00001{bottom:61.120000pt;}
.yb46_c00001{bottom:61.156480pt;}
.ycc7_c00001{bottom:61.480000pt;}
.yfc8_c00001{bottom:62.440000pt;}
.ycc6_c00001{bottom:62.760000pt;}
.y924_c00001{bottom:64.040000pt;}
.y1087_c00001{bottom:64.674560pt;}
.y16f_c00001{bottom:64.678080pt;}
.yb27_c00001{bottom:64.679360pt;}
.y1aa_c00001{bottom:64.679680pt;}
.y70_c00001{bottom:64.680000pt;}
.yc5_c00001{bottom:64.681600pt;}
.y1157_c00001{bottom:64.682880pt;}
.y1017_c00001{bottom:64.683200pt;}
.y7dc_c00001{bottom:64.684480pt;}
.y825_c00001{bottom:64.687680pt;}
.y4ee_c00001{bottom:64.996480pt;}
.yfd8_c00001{bottom:65.000000pt;}
.y558_c00001{bottom:65.961600pt;}
.ybf4_c00001{bottom:66.918080pt;}
.yc62_c00001{bottom:66.921600pt;}
.y206_c00001{bottom:67.240000pt;}
.y10a2_c00001{bottom:67.242880pt;}
.yf04_c00001{bottom:67.560000pt;}
.yf30_c00001{bottom:67.840000pt;}
.yfd6_c00001{bottom:67.880000pt;}
.y9a_c00001{bottom:68.200000pt;}
.yef8_c00001{bottom:69.120000pt;}
.yf5f_c00001{bottom:70.116480pt;}
.y6f_c00001{bottom:70.120000pt;}
.y645_c00001{bottom:70.440000pt;}
.y4d9_c00001{bottom:70.720000pt;}
.yb36_c00001{bottom:70.760000pt;}
.y6aa_c00001{bottom:71.400000pt;}
.yfbc_c00001{bottom:71.720000pt;}
.y1115_c00001{bottom:72.360000pt;}
.yf84_c00001{bottom:73.000000pt;}
.y74e_c00001{bottom:75.560000pt;}
.yccd_c00001{bottom:75.561600pt;}
.yc33_c00001{bottom:75.880000pt;}
.y70a_c00001{bottom:76.200000pt;}
.yb45_c00001{bottom:76.520000pt;}
.yb44_c00001{bottom:76.524160pt;}
.ye90_c00001{bottom:77.160000pt;}
.ye8f_c00001{bottom:77.164160pt;}
.y947_c00001{bottom:77.798080pt;}
.yae8_c00001{bottom:77.802560pt;}
.yfc7_c00001{bottom:78.118080pt;}
.ye40_c00001{bottom:78.120000pt;}
.ye3f_c00001{bottom:78.123200pt;}
.ya60_c00001{bottom:78.127360pt;}
.y40_c00001{bottom:78.440000pt;}
.y107c_c00001{bottom:79.080000pt;}
.ycaa_c00001{bottom:79.720000pt;}
.y91a_c00001{bottom:80.356160pt;}
.yc3_c00001{bottom:80.356480pt;}
.y1c0_c00001{bottom:80.357760pt;}
.y144_c00001{bottom:80.358080pt;}
.y691_c00001{bottom:80.359680pt;}
.yc4_c00001{bottom:80.360000pt;}
.y644_c00001{bottom:80.361600pt;}
.y7db_c00001{bottom:80.362880pt;}
.yb35_c00001{bottom:80.680000pt;}
.y1156_c00001{bottom:80.689280pt;}
.y91_c00001{bottom:81.320000pt;}
.y824_c00001{bottom:81.323840pt;}
.yf2f_c00001{bottom:81.600000pt;}
.y556_c00001{bottom:81.636480pt;}
.y557_c00001{bottom:81.640000pt;}
.y29d_c00001{bottom:82.280000pt;}
.ybf3_c00001{bottom:82.281600pt;}
.y1086_c00001{bottom:82.596480pt;}
.yc61_c00001{bottom:82.600000pt;}
.yc60_c00001{bottom:82.606080pt;}
.yfbb_c00001{bottom:83.241600pt;}
.y10a1_c00001{bottom:83.249280pt;}
.y706_c00001{bottom:83.560000pt;}
.y4d8_c00001{bottom:84.800000pt;}
.y66b_c00001{bottom:85.480000pt;}
.y74d_c00001{bottom:85.481600pt;}
.y6e_c00001{bottom:85.800000pt;}
.y770_c00001{bottom:87.080000pt;}
.ye66_c00001{bottom:87.400000pt;}
.ycc5_c00001{bottom:88.040000pt;}
.yf18_c00001{bottom:88.361600pt;}
.y9bc_c00001{bottom:88.982400pt;}
.y7c2_c00001{bottom:89.640000pt;}
.y205_c00001{bottom:89.960000pt;}
.y6e1_c00001{bottom:90.588800pt;}
.ydd7_c00001{bottom:90.600000pt;}
.yedb_c00001{bottom:90.920000pt;}
.yccb_c00001{bottom:91.239040pt;}
.yccc_c00001{bottom:91.240000pt;}
.y208_c00001{bottom:91.880000pt;}
.yfc6_c00001{bottom:93.481600pt;}
.y257_c00001{bottom:93.800000pt;}
.yf52_c00001{bottom:93.803200pt;}
.yf53_c00001{bottom:94.440000pt;}
.yf2e_c00001{bottom:95.680000pt;}
.y946_c00001{bottom:95.712640pt;}
.y10f2_c00001{bottom:95.718080pt;}
.y919_c00001{bottom:95.719680pt;}
.y6d_c00001{bottom:95.720000pt;}
.y1bf_c00001{bottom:95.721280pt;}
.yc2_c00001{bottom:95.721600pt;}
.y22c_c00001{bottom:95.723200pt;}
.y654_c00001{bottom:96.036480pt;}
.y4ed_c00001{bottom:96.040000pt;}
.y7da_c00001{bottom:96.041280pt;}
.yb34_c00001{bottom:96.041600pt;}
.y554_c00001{bottom:96.998080pt;}
.y555_c00001{bottom:97.000000pt;}
.y6a9_c00001{bottom:97.001600pt;}
.yf83_c00001{bottom:97.639040pt;}
.y628_c00001{bottom:97.640000pt;}
.ybf2_c00001{bottom:97.959680pt;}
.y196_c00001{bottom:97.960000pt;}
.y1085_c00001{bottom:97.963200pt;}
.ye86_c00001{bottom:98.274560pt;}
.ya3d_c00001{bottom:98.282240pt;}
.y1155_c00001{bottom:98.283200pt;}
.yfba_c00001{bottom:98.920000pt;}
.yb43_c00001{bottom:98.923200pt;}
.y1133_c00001{bottom:99.240000pt;}
.ye8e_c00001{bottom:99.560000pt;}
.ye00_c00001{bottom:99.564160pt;}
.y99_c00001{bottom:100.200000pt;}
.y8af_c00001{bottom:100.496000pt;}
.ye3e_c00001{bottom:100.519040pt;}
.ya5f_c00001{bottom:100.523200pt;}
.yae7_c00001{bottom:100.526400pt;}
.y10a0_c00001{bottom:100.843200pt;}
.yf5e_c00001{bottom:101.158080pt;}
.y6c_c00001{bottom:101.160000pt;}
.y74c_c00001{bottom:101.161600pt;}
.y3e8_c00001{bottom:101.480000pt;}
.y4d6_c00001{bottom:103.080000pt;}
.y195_c00001{bottom:103.400000pt;}
.yf17_c00001{bottom:104.040000pt;}
.y66a_c00001{bottom:104.360000pt;}
.yca9_c00001{bottom:105.000000pt;}
.y76f_c00001{bottom:105.640000pt;}
.y7c3_c00001{bottom:106.600000pt;}
.yed1_c00001{bottom:106.920000pt;}
.y6ff_c00001{bottom:107.560000pt;}
.y806_c00001{bottom:108.836160pt;}
.y807_c00001{bottom:108.840000pt;}
.ydb7_c00001{bottom:109.159040pt;}
.y1069_c00001{bottom:109.159680pt;}
.yfc5_c00001{bottom:109.160000pt;}
.y1f9_c00001{bottom:109.480000pt;}
.ye65_c00001{bottom:109.486400pt;}
.yf2d_c00001{bottom:109.760000pt;}
.ydd6_c00001{bottom:110.124160pt;}
.y945_c00001{bottom:111.076160pt;}
.yc31_c00001{bottom:111.397440pt;}
.y65c_c00001{bottom:111.398080pt;}
.y114d_c00001{bottom:111.398400pt;}
.yf98_c00001{bottom:111.399040pt;}
.y1be_c00001{bottom:111.399680pt;}
.yc1_c00001{bottom:111.400000pt;}
.y115_c00001{bottom:111.401600pt;}
.y395_c00001{bottom:111.403200pt;}
.y7d9_c00001{bottom:111.719680pt;}
.y15c_c00001{bottom:111.720000pt;}
.y7b5_c00001{bottom:112.040000pt;}
.y907_c00001{bottom:112.360000pt;}
.y906_c00001{bottom:112.363840pt;}
.y553_c00001{bottom:112.676480pt;}
.y204_c00001{bottom:112.680000pt;}
.y90_c00001{bottom:113.320000pt;}
.ybf1_c00001{bottom:113.323200pt;}
.y10f1_c00001{bottom:113.634560pt;}
.yc6a_c00001{bottom:113.640000pt;}
.y1084_c00001{bottom:113.641600pt;}
.y822_c00001{bottom:113.956480pt;}
.y823_c00001{bottom:113.960000pt;}
.y1154_c00001{bottom:113.961600pt;}
.y849_c00001{bottom:114.280000pt;}
.yfb9_c00001{bottom:114.600000pt;}
.yee8_c00001{bottom:114.920000pt;}
.y91b_c00001{bottom:115.560000pt;}
.y6b6_c00001{bottom:115.880000pt;}
.yc5f_c00001{bottom:115.881600pt;}
.y109f_c00001{bottom:116.521600pt;}
.yf28_c00001{bottom:116.836480pt;}
.yc0_c00001{bottom:116.840000pt;}
.y10fd_c00001{bottom:117.159040pt;}
.yb33_c00001{bottom:117.160000pt;}
.y923_c00001{bottom:117.480000pt;}
.y1132_c00001{bottom:117.800000pt;}
.y6a8_c00001{bottom:118.120000pt;}
.ycf1_c00001{bottom:118.440000pt;}
.y1031_c00001{bottom:118.760000pt;}
.y9bb_c00001{bottom:119.064000pt;}
.yf82_c00001{bottom:119.719040pt;}
.y29c_c00001{bottom:119.720000pt;}
.yac2_c00001{bottom:120.040000pt;}
.ye85_c00001{bottom:120.355520pt;}
.ya3c_c00001{bottom:120.363200pt;}
.y6e0_c00001{bottom:120.670400pt;}
.yb42_c00001{bottom:121.004160pt;}
.y7c1_c00001{bottom:121.640000pt;}
.ye8d_c00001{bottom:121.959040pt;}
.y256_c00001{bottom:121.960000pt;}
.ydff_c00001{bottom:121.964160pt;}
.y74b_c00001{bottom:122.280000pt;}
.ybd7_c00001{bottom:122.598080pt;}
.y3fe_c00001{bottom:122.600000pt;}
.ya5e_c00001{bottom:122.604160pt;}
.yae6_c00001{bottom:122.607360pt;}
.yf3f_c00001{bottom:122.920000pt;}
.yc32_c00001{bottom:123.880000pt;}
.y805_c00001{bottom:124.199680pt;}
.y526_c00001{bottom:124.200000pt;}
.y525_c00001{bottom:124.204160pt;}
.y1068_c00001{bottom:124.838080pt;}
.y6b_c00001{bottom:124.840000pt;}
.y871_c00001{bottom:124.885440pt;}
.y3e7_c00001{bottom:125.160000pt;}
.ybfa_c00001{bottom:125.480000pt;}
.y6fe_c00001{bottom:126.120000pt;}
.y22b_c00001{bottom:127.070400pt;}
.y85d_c00001{bottom:127.072320pt;}
.yc30_c00001{bottom:127.075840pt;}
.y8cd_c00001{bottom:127.076160pt;}
.y128_c00001{bottom:127.076480pt;}
.ybcc_c00001{bottom:127.077440pt;}
.y1bd_c00001{bottom:127.078080pt;}
.y602_c00001{bottom:127.079680pt;}
.ybf_c00001{bottom:127.080000pt;}
.y114_c00001{bottom:127.081600pt;}
.y5a2_c00001{bottom:127.081920pt;}
.y7d8_c00001{bottom:127.083200pt;}
.yc9c_c00001{bottom:127.400000pt;}
.y552_c00001{bottom:128.040000pt;}
.y6a7_c00001{bottom:128.041600pt;}
.y830_c00001{bottom:128.360000pt;}
.ye14_c00001{bottom:128.364160pt;}
.y904_c00001{bottom:128.992320pt;}
.y944_c00001{bottom:128.998080pt;}
.y905_c00001{bottom:129.000000pt;}
.ybf0_c00001{bottom:129.001600pt;}
.y8ae_c00001{bottom:129.294400pt;}
.y1083_c00001{bottom:129.316480pt;}
.y9c4_c00001{bottom:129.320000pt;}
.y1153_c00001{bottom:129.640000pt;}
.y1152_c00001{bottom:129.644160pt;}
.yfb8_c00001{bottom:129.960000pt;}
.yfc4_c00001{bottom:130.280000pt;}
.yca8_c00001{bottom:130.600000pt;}
.y1126_c00001{bottom:131.239040pt;}
.ydb6_c00001{bottom:131.240000pt;}
.y10f0_c00001{bottom:131.556480pt;}
.ye64_c00001{bottom:131.882240pt;}
.y98_c00001{bottom:132.200000pt;}
.y74a_c00001{bottom:132.201600pt;}
.y143_c00001{bottom:132.520000pt;}
.y848_c00001{bottom:132.840000pt;}
.yc86_c00001{bottom:133.160000pt;}
.y3f_c00001{bottom:133.480000pt;}
.y781_c00001{bottom:133.800000pt;}
.yd99_c00001{bottom:134.124160pt;}
.y821_c00001{bottom:134.760000pt;}
.y711_c00001{bottom:135.400000pt;}
.y669_c00001{bottom:136.360000pt;}
.y9bd_c00001{bottom:136.680000pt;}
.y1041_c00001{bottom:136.681600pt;}
.y6e7_c00001{bottom:137.000000pt;}
.y6e3_c00001{bottom:137.320000pt;}
.y76e_c00001{bottom:137.640000pt;}
.ybd6_c00001{bottom:138.276480pt;}
.yb78_c00001{bottom:138.920000pt;}
.y2eb_c00001{bottom:138.926400pt;}
.y10fc_c00001{bottom:139.240000pt;}
.y10fb_c00001{bottom:139.244160pt;}
.y804_c00001{bottom:139.878080pt;}
.y9b_c00001{bottom:139.880000pt;}
.yb11_c00001{bottom:140.200000pt;}
.y1067_c00001{bottom:140.201600pt;}
.y4a1_c00001{bottom:140.520000pt;}
.y255_c00001{bottom:140.840000pt;}
.y107a_c00001{bottom:141.160000pt;}
.yc54_c00001{bottom:141.800000pt;}
.yf81_c00001{bottom:141.800640pt;}
.yb15_c00001{bottom:142.118400pt;}
.yf7f_c00001{bottom:142.120000pt;}
.y22a_c00001{bottom:142.433920pt;}
.y8cc_c00001{bottom:142.439680pt;}
.y127_c00001{bottom:142.440000pt;}
.ybcb_c00001{bottom:142.440960pt;}
.y6b0_c00001{bottom:142.441280pt;}
.ybe_c00001{bottom:142.441600pt;}
.yadd_c00001{bottom:142.442240pt;}
.y601_c00001{bottom:142.443200pt;}
.y5a1_c00001{bottom:142.445440pt;}
.yba1_c00001{bottom:142.446400pt;}
.y114c_c00001{bottom:142.449280pt;}
.yc2f_c00001{bottom:142.754240pt;}
.y4ec_c00001{bottom:142.756480pt;}
.ya3b_c00001{bottom:142.759040pt;}
.y113_c00001{bottom:142.760000pt;}
.y7d7_c00001{bottom:142.761600pt;}
.y1012_c00001{bottom:143.080000pt;}
.y85c_c00001{bottom:143.393600pt;}
.y1142_c00001{bottom:143.394880pt;}
.yb41_c00001{bottom:143.400000pt;}
.y15b_c00001{bottom:143.720000pt;}
.y551_c00001{bottom:143.724160pt;}
.y7b4_c00001{bottom:144.040000pt;}
.ye8c_c00001{bottom:144.044160pt;}
.ye39_c00001{bottom:144.047360pt;}
.ybf9_c00001{bottom:144.360000pt;}
.ybef_c00001{bottom:144.679040pt;}
.y3d1_c00001{bottom:144.680000pt;}
.y81f_c00001{bottom:144.996480pt;}
.y903_c00001{bottom:144.998720pt;}
.y820_c00001{bottom:145.000000pt;}
.yae5_c00001{bottom:145.003200pt;}
.y1151_c00001{bottom:145.007680pt;}
.y8f_c00001{bottom:145.320000pt;}
.y922_c00001{bottom:145.640000pt;}
.y70b_c00001{bottom:145.960000pt;}
.y442_c00001{bottom:146.599040pt;}
.y524_c00001{bottom:146.600000pt;}
.y1066_c00001{bottom:146.604160pt;}
.y942_c00001{bottom:146.916480pt;}
.y943_c00001{bottom:146.920000pt;}
.y10ef_c00001{bottom:146.921600pt;}
.yc5d_c00001{bottom:147.236480pt;}
.yc5e_c00001{bottom:147.240000pt;}
.y109e_c00001{bottom:147.560000pt;}
.y126_c00001{bottom:147.880000pt;}
.y749_c00001{bottom:147.881600pt;}
.y112_c00001{bottom:148.200000pt;}
.yf15_c00001{bottom:148.516480pt;}
.yf16_c00001{bottom:148.520000pt;}
.y643_c00001{bottom:148.840000pt;}
.y6a6_c00001{bottom:149.160000pt;}
.y9ba_c00001{bottom:149.462400pt;}
.yb54_c00001{bottom:149.800000pt;}
.y1082_c00001{bottom:150.120000pt;}
.ybf6_c00001{bottom:150.440000pt;}
.ye13_c00001{bottom:150.760000pt;}
.y6df_c00001{bottom:151.068800pt;}
.yb58_c00001{bottom:151.080000pt;}
.y847_c00001{bottom:151.400000pt;}
.y29b_c00001{bottom:151.720000pt;}
.yda6_c00001{bottom:151.722240pt;}
.y6a_c00001{bottom:152.360000pt;}
.yf51_c00001{bottom:153.000000pt;}
.yf27_c00001{bottom:153.320000pt;}
.y682_c00001{bottom:153.640000pt;}
.ydb5_c00001{bottom:153.645440pt;}
.y3e6_c00001{bottom:153.960000pt;}
.ye63_c00001{bottom:153.963200pt;}
.y88c_c00001{bottom:154.280000pt;}
.ydd5_c00001{bottom:154.607360pt;}
.y668_c00001{bottom:154.920000pt;}
.y803_c00001{bottom:155.241600pt;}
.yca7_c00001{bottom:155.880000pt;}
.y5dd_c00001{bottom:156.200000pt;}
.yd98_c00001{bottom:156.520000pt;}
.y110a_c00001{bottom:156.840000pt;}
.y49a_c00001{bottom:157.480000pt;}
.y229_c00001{bottom:158.112320pt;}
.y482_c00001{bottom:158.116160pt;}
.yc2e_c00001{bottom:158.117760pt;}
.y1a9_c00001{bottom:158.118080pt;}
.ybca_c00001{bottom:158.119360pt;}
.y6af_c00001{bottom:158.119680pt;}
.ybd_c00001{bottom:158.120000pt;}
.y111_c00001{bottom:158.121600pt;}
.y10c1_c00001{bottom:158.122240pt;}
.y82f_c00001{bottom:158.123200pt;}
.yba0_c00001{bottom:158.124800pt;}
.y114b_c00001{bottom:158.127680pt;}
.y8ad_c00001{bottom:158.420800pt;}
.yb31_c00001{bottom:158.436480pt;}
.yb32_c00001{bottom:158.440000pt;}
.yb40_c00001{bottom:158.760000pt;}
.yb3f_c00001{bottom:158.764160pt;}
.y4d5_c00001{bottom:159.080000pt;}
.y5a0_c00001{bottom:159.081600pt;}
.y85b_c00001{bottom:159.398080pt;}
.y254_c00001{bottom:159.400000pt;}
.y1141_c00001{bottom:159.401280pt;}
.y550_c00001{bottom:159.402560pt;}
.y855_c00001{bottom:159.720000pt;}
.y1081_c00001{bottom:160.356480pt;}
.y710_c00001{bottom:160.360000pt;}
.yc53_c00001{bottom:160.680000pt;}
.y1150_c00001{bottom:160.686080pt;}
.y901_c00001{bottom:161.313600pt;}
.y902_c00001{bottom:161.320000pt;}
.ycd2_c00001{bottom:161.640000pt;}
.y941_c00001{bottom:162.280000pt;}
.y940_c00001{bottom:162.290240pt;}
.y10ee_c00001{bottom:162.596480pt;}
.yc5c_c00001{bottom:162.600000pt;}
.yc5b_c00001{bottom:162.601600pt;}
.y7b3_c00001{bottom:162.920000pt;}
.y870_c00001{bottom:162.964800pt;}
.yef7_c00001{bottom:163.240000pt;}
.yf26_c00001{bottom:163.556480pt;}
.ybc_c00001{bottom:163.560000pt;}
.y709_c00001{bottom:163.880000pt;}
.yf14_c00001{bottom:163.881600pt;}
.y97_c00001{bottom:164.200000pt;}
.yac1_c00001{bottom:164.520000pt;}
.yadc_c00001{bottom:164.523200pt;}
.ya3a_c00001{bottom:164.840000pt;}
.y3e_c00001{bottom:165.480000pt;}
.y780_c00001{bottom:165.800000pt;}
.y109d_c00001{bottom:166.120000pt;}
.y2ce_c00001{bottom:166.440000pt;}
.ye38_c00001{bottom:166.443200pt;}
.ye8b_c00001{bottom:166.444160pt;}
.ydfe_c00001{bottom:166.759040pt;}
.y642_c00001{bottom:166.760000pt;}
.ye1b_c00001{bottom:167.080000pt;}
.ye84_c00001{bottom:167.083200pt;}
.ya5d_c00001{bottom:167.084160pt;}
.ya50_c00001{bottom:167.087360pt;}
.y8bc_c00001{bottom:167.400000pt;}
.y8c5_c00001{bottom:168.360000pt;}
.y441_c00001{bottom:168.680000pt;}
.y1065_c00001{bottom:168.999040pt;}
.y142_c00001{bottom:169.000000pt;}
.yfc3_c00001{bottom:169.320000pt;}
.y2ea_c00001{bottom:169.324800pt;}
.y310_c00001{bottom:169.640000pt;}
.y29a_c00001{bottom:170.280000pt;}
.y91d_c00001{bottom:170.600000pt;}
.yaa8_c00001{bottom:170.910720pt;}
.y69_c00001{bottom:170.920000pt;}
.y802_c00001{bottom:170.921280pt;}
.y1124_c00001{bottom:171.239040pt;}
.y1125_c00001{bottom:171.240000pt;}
.y3bc_c00001{bottom:171.560000pt;}
.ye6_c00001{bottom:171.876160pt;}
.y97a_c00001{bottom:171.880000pt;}
.y976_c00001{bottom:172.200000pt;}
.y3e5_c00001{bottom:172.520000pt;}
.y6a5_c00001{bottom:172.840000pt;}
.ye12_c00001{bottom:173.159040pt;}
.y3fd_c00001{bottom:173.160000pt;}
.y509_c00001{bottom:173.480000pt;}
.yd0c_c00001{bottom:173.505920pt;}
.y481_c00001{bottom:173.794560pt;}
.yc2d_c00001{bottom:173.796160pt;}
.ybb_c00001{bottom:173.796480pt;}
.ybc9_c00001{bottom:173.797760pt;}
.y53b_c00001{bottom:173.798080pt;}
.y110_c00001{bottom:173.800000pt;}
.y82e_c00001{bottom:173.801600pt;}
.yda5_c00001{bottom:173.803200pt;}
.ydf8_c00001{bottom:173.804160pt;}
.y400_c00001{bottom:174.120000pt;}
.y228_c00001{bottom:174.433600pt;}
.ycf0_c00001{bottom:174.440000pt;}
.y1040_c00001{bottom:174.441600pt;}
.y59f_c00001{bottom:174.760000pt;}
.y59e_c00001{bottom:174.761600pt;}
.yfd7_c00001{bottom:175.080000pt;}
.y10c0_c00001{bottom:175.716160pt;}
.y15a_c00001{bottom:175.720000pt;}
.y114a_c00001{bottom:175.721600pt;}
.y1080_c00001{bottom:175.723200pt;}
.y54f_c00001{bottom:175.723840pt;}
.ydb4_c00001{bottom:175.726400pt;}
.ybd5_c00001{bottom:176.036480pt;}
.y499_c00001{bottom:176.040000pt;}
.ye62_c00001{bottom:176.359040pt;}
.y1109_c00001{bottom:176.360000pt;}
.ye2c_c00001{bottom:176.362240pt;}
.y6fd_c00001{bottom:176.680000pt;}
.yce7_c00001{bottom:177.000000pt;}
.ydd4_c00001{bottom:177.003200pt;}
.y8e_c00001{bottom:177.320000pt;}
.y72f_c00001{bottom:177.640000pt;}
.y253_c00001{bottom:177.960000pt;}
.yc5a_c00001{bottom:178.276480pt;}
.y854_c00001{bottom:178.280000pt;}
.y10db_c00001{bottom:178.281600pt;}
.y114f_c00001{bottom:178.283200pt;}
.y4f9_c00001{bottom:178.600000pt;}
.y748_c00001{bottom:178.920000pt;}
.yf25_c00001{bottom:178.921600pt;}
.yb9f_c00001{bottom:178.991680pt;}
.y10f_c00001{bottom:179.240000pt;}
.y9b9_c00001{bottom:179.544000pt;}
.yf13_c00001{bottom:179.560000pt;}
.yf12_c00001{bottom:179.561600pt;}
.yf7e_c00001{bottom:179.880000pt;}
.y787_c00001{bottom:180.200000pt;}
.yfa3_c00001{bottom:180.520000pt;}
.y6de_c00001{bottom:181.150400pt;}
.y5dc_c00001{bottom:181.160000pt;}
.y7b2_c00001{bottom:181.480000pt;}
.ybed_c00001{bottom:182.436480pt;}
.y1140_c00001{bottom:182.438080pt;}
.ybee_c00001{bottom:182.440000pt;}
.y900_c00001{bottom:182.760000pt;}
.yc6b_c00001{bottom:183.080000pt;}
.yfe8_c00001{bottom:183.394240pt;}
.y104e_c00001{bottom:183.400000pt;}
.yc85_c00001{bottom:184.040000pt;}
.y747_c00001{bottom:184.360000pt;}
.y109c_c00001{bottom:184.680000pt;}
.y93f_c00001{bottom:184.686080pt;}
.yf50_c00001{bottom:185.000000pt;}
.y7c0_c00001{bottom:185.640000pt;}
.yd87_c00001{bottom:185.959040pt;}
.y9c2_c00001{bottom:186.280000pt;}
.ya0f_c00001{bottom:186.282240pt;}
.y801_c00001{bottom:186.599680pt;}
.yadb_c00001{bottom:186.919040pt;}
.y8c4_c00001{bottom:186.920000pt;}
.ya39_c00001{bottom:186.924160pt;}
.yac0_c00001{bottom:186.926400pt;}
.y8ac_c00001{bottom:187.219200pt;}
.ye5_c00001{bottom:187.239680pt;}
.y16e_c00001{bottom:187.240000pt;}
.y92_c00001{bottom:187.880000pt;}
.y339_c00001{bottom:188.199040pt;}
.y33a_c00001{bottom:188.200000pt;}
.ye37_c00001{bottom:188.524160pt;}
.y641_c00001{bottom:188.840000pt;}
.ydfd_c00001{bottom:188.843200pt;}
.yf80_c00001{bottom:188.844160pt;}
.y480_c00001{bottom:189.158080pt;}
.yafe_c00001{bottom:189.159360pt;}
.yc2c_c00001{bottom:189.159680pt;}
.yba_c00001{bottom:189.160000pt;}
.y600_c00001{bottom:189.161280pt;}
.y194_c00001{bottom:189.161600pt;}
.ye83_c00001{bottom:189.164160pt;}
.ya28_c00001{bottom:189.479040pt;}
.y7d6_c00001{bottom:189.480000pt;}
.yb30_c00001{bottom:189.481600pt;}
.ya4f_c00001{bottom:189.483200pt;}
.y103e_c00001{bottom:190.116480pt;}
.y103f_c00001{bottom:190.120000pt;}
.y59d_c00001{bottom:190.440000pt;}
.y59c_c00001{bottom:190.441600pt;}
.y681_c00001{bottom:191.080000pt;}
.y1064_c00001{bottom:191.084160pt;}
.ybd4_c00001{bottom:191.398080pt;}
.y3e4_c00001{bottom:191.400000pt;}
.y107f_c00001{bottom:191.401600pt;}
.y794_c00001{bottom:191.720000pt;}
.y667_c00001{bottom:192.360000pt;}
.y141_c00001{bottom:192.680000pt;}
.ybf5_c00001{bottom:193.000000pt;}
.yeb3_c00001{bottom:193.320000pt;}
.y10bf_c00001{bottom:193.638080pt;}
.y10ed_c00001{bottom:193.639680pt;}
.yc59_c00001{bottom:193.640000pt;}
.y10da_c00001{bottom:193.956480pt;}
.yfc9_c00001{bottom:193.960000pt;}
.y114e_c00001{bottom:193.961600pt;}
.ycdc_c00001{bottom:194.280000pt;}
.yf24_c00001{bottom:194.596480pt;}
.yb9_c00001{bottom:194.600000pt;}
.y7d5_c00001{bottom:194.920000pt;}
.yd66_c00001{bottom:194.924160pt;}
.yaa7_c00001{bottom:195.235200pt;}
.yf11_c00001{bottom:195.239040pt;}
.y377_c00001{bottom:195.240000pt;}
.ye11_c00001{bottom:195.248320pt;}
.y3d0_c00001{bottom:195.560000pt;}
.yd0b_c00001{bottom:195.586880pt;}
.y227_c00001{bottom:195.880000pt;}
.yda4_c00001{bottom:196.199040pt;}
.y96_c00001{bottom:196.200000pt;}
.yd29_c00001{bottom:196.202240pt;}
.yc9b_c00001{bottom:196.519040pt;}
.y874_c00001{bottom:196.520000pt;}
.y853_c00001{bottom:196.840000pt;}
.y4f8_c00001{bottom:197.160000pt;}
.y3d_c00001{bottom:197.480000pt;}
.y54e_c00001{bottom:197.800000pt;}
.ybec_c00001{bottom:197.804160pt;}
.yf7d_c00001{bottom:198.120000pt;}
.ydb3_c00001{bottom:198.122240pt;}
.y2cd_c00001{bottom:198.440000pt;}
.ya71_c00001{bottom:198.442240pt;}
.ye2b_c00001{bottom:198.443200pt;}
.y921_c00001{bottom:199.080000pt;}
.ydd3_c00001{bottom:199.084160pt;}
.y8bb_c00001{bottom:199.400000pt;}
.y2e9_c00001{bottom:199.723200pt;}
.y5db_c00001{bottom:200.360000pt;}
.yf9f_c00001{bottom:201.000000pt;}
.y983_c00001{bottom:201.320000pt;}
.y86f_c00001{bottom:201.360960pt;}
.y30f_c00001{bottom:201.640000pt;}
.yc35_c00001{bottom:201.960000pt;}
.y93d_c00001{bottom:202.278080pt;}
.y93e_c00001{bottom:202.280000pt;}
.y129_c00001{bottom:202.600000pt;}
.ye4_c00001{bottom:202.918080pt;}
.y68_c00001{bottom:202.920000pt;}
.y4d4_c00001{bottom:203.240000pt;}
.yb3e_c00001{bottom:203.555200pt;}
.y6c4_c00001{bottom:203.560000pt;}
.ycab_c00001{bottom:203.880000pt;}
.y705_c00001{bottom:204.200000pt;}
.y916_c00001{bottom:204.836160pt;}
.y2ac_c00001{bottom:204.836480pt;}
.yafd_c00001{bottom:204.837760pt;}
.y918_c00001{bottom:204.838080pt;}
.yb8_c00001{bottom:204.839680pt;}
.y2ad_c00001{bottom:204.840000pt;}
.y10e_c00001{bottom:204.841600pt;}
.yd57_c00001{bottom:204.846400pt;}
.yb2e_c00001{bottom:205.156480pt;}
.yb2f_c00001{bottom:205.160000pt;}
.yfe7_c00001{bottom:205.475200pt;}
.yd97_c00001{bottom:205.475520pt;}
.y690_c00001{bottom:205.480000pt;}
.y103d_c00001{bottom:205.488000pt;}
.y225_c00001{bottom:206.117760pt;}
.y226_c00001{bottom:206.120000pt;}
.yca6_c00001{bottom:206.440000pt;}
.y640_c00001{bottom:206.760000pt;}
.ybd3_c00001{bottom:207.076480pt;}
.yec9_c00001{bottom:207.080000pt;}
.y846_c00001{bottom:207.400000pt;}
.y159_c00001{bottom:207.720000pt;}
.y498_c00001{bottom:208.040000pt;}
.yd86_c00001{bottom:208.043200pt;}
.y54d_c00001{bottom:208.358080pt;}
.y8ff_c00001{bottom:208.360000pt;}
.y8fe_c00001{bottom:208.361600pt;}
.ya0e_c00001{bottom:208.363200pt;}
.y800_c00001{bottom:208.680640pt;}
.y1123_c00001{bottom:208.995520pt;}
.yada_c00001{bottom:209.000000pt;}
.yabf_c00001{bottom:209.007360pt;}
.y10ec_c00001{bottom:209.318080pt;}
.ye7d_c00001{bottom:209.318720pt;}
.y8d_c00001{bottom:209.320000pt;}
.yc58_c00001{bottom:209.321600pt;}
.y10d9_c00001{bottom:209.323200pt;}
.y680_c00001{bottom:209.640000pt;}
.y9b8_c00001{bottom:209.942400pt;}
.y252_c00001{bottom:209.960000pt;}
.yf5d_c00001{bottom:209.961600pt;}
.y193_c00001{bottom:210.280000pt;}
.y338_c00001{bottom:210.284160pt;}
.y7d4_c00001{bottom:210.600000pt;}
.ydc7_c00001{bottom:210.606400pt;}
.y666_c00001{bottom:210.920000pt;}
.ydfc_c00001{bottom:211.239040pt;}
.y982_c00001{bottom:211.240000pt;}
.ye54_c00001{bottom:211.242240pt;}
.y6dd_c00001{bottom:211.548800pt;}
.y59b_c00001{bottom:211.560000pt;}
.ye3d_c00001{bottom:211.563200pt;}
.ya4e_c00001{bottom:211.564160pt;}
.yaf9_c00001{bottom:211.565440pt;}
.ye1a_c00001{bottom:211.567360pt;}
.y5e7_c00001{bottom:211.880000pt;}
.y786_c00001{bottom:212.200000pt;}
.y1047_c00001{bottom:212.520000pt;}
.y10b4_c00001{bottom:212.523200pt;}
.yfa2_c00001{bottom:213.160000pt;}
.y6a4_c00001{bottom:213.480000pt;}
.y7ae_c00001{bottom:213.800000pt;}
.y6fc_c00001{bottom:214.120000pt;}
.ycc4_c00001{bottom:214.760000pt;}
.yb10_c00001{bottom:215.080000pt;}
.yf23_c00001{bottom:215.400000pt;}
.y4f7_c00001{bottom:215.720000pt;}
.y8ab_c00001{bottom:216.017600pt;}
.y3c_c00001{bottom:216.040000pt;}
.y758_c00001{bottom:216.360000pt;}
.yc52_c00001{bottom:216.680000pt;}
.y440_c00001{bottom:217.000000pt;}
.yb14_c00001{bottom:217.001600pt;}
.yd65_c00001{bottom:217.320000pt;}
.ye75_c00001{bottom:217.324160pt;}
.y6e5_c00001{bottom:217.640000pt;}
.ye10_c00001{bottom:217.644160pt;}
.yaa6_c00001{bottom:217.959040pt;}
.y796_c00001{bottom:217.960000pt;}
.yd0a_c00001{bottom:217.982720pt;}
.ya91_c00001{bottom:218.279040pt;}
.y1a8_c00001{bottom:218.280000pt;}
.ydf7_c00001{bottom:218.282240pt;}
.yd28_c00001{bottom:218.283200pt;}
.ye3_c00001{bottom:218.596480pt;}
.y5da_c00001{bottom:218.600000pt;}
.yc9a_c00001{bottom:218.604160pt;}
.y375_c00001{bottom:218.915520pt;}
.y376_c00001{bottom:218.920000pt;}
.y85a_c00001{bottom:219.560000pt;}
.yee7_c00001{bottom:219.880000pt;}
.y915_c00001{bottom:220.199680pt;}
.y2ab_c00001{bottom:220.200000pt;}
.yafc_c00001{bottom:220.201280pt;}
.y917_c00001{bottom:220.201600pt;}
.yb7_c00001{bottom:220.203200pt;}
.y93c_c00001{bottom:220.206080pt;}
.y10c_c00001{bottom:220.516480pt;}
.y10d_c00001{bottom:220.520000pt;}
.y61c_c00001{bottom:220.521600pt;}
.ya70_c00001{bottom:220.523200pt;}
.ye2a_c00001{bottom:220.839040pt;}
.yecf_c00001{bottom:220.840000pt;}
.y4c4_c00001{bottom:221.160000pt;}
.y103c_c00001{bottom:221.166400pt;}
.y8f0_c00001{bottom:221.480000pt;}
.y224_c00001{bottom:221.481280pt;}
.y67_c00001{bottom:221.800000pt;}
.ybf7_c00001{bottom:222.120000pt;}
.y852_c00001{bottom:222.124160pt;}
.y523_c00001{bottom:222.440000pt;}
.ybd2_c00001{bottom:222.441600pt;}
.y107e_c00001{bottom:222.443200pt;}
.yb9e_c00001{bottom:222.825600pt;}
.yfca_c00001{bottom:223.080000pt;}
.y88b_c00001{bottom:223.400000pt;}
.yf9e_c00001{bottom:223.401600pt;}
.y7ac_c00001{bottom:223.720000pt;}
.y54c_c00001{bottom:224.036480pt;}
.y3fc_c00001{bottom:224.040000pt;}
.y508_c00001{bottom:224.360000pt;}
.y113f_c00001{bottom:224.672640pt;}
.y920_c00001{bottom:224.680000pt;}
.y10eb_c00001{bottom:224.681600pt;}
.yc56_c00001{bottom:224.996480pt;}
.yc57_c00001{bottom:225.000000pt;}
.y96a_c00001{bottom:225.320000pt;}
.y192_c00001{bottom:225.640000pt;}
.yf22_c00001{bottom:225.641600pt;}
.y653_c00001{bottom:225.960000pt;}
.y76b_c00001{bottom:226.280000pt;}
.y497_c00001{bottom:226.600000pt;}
.y140_c00001{bottom:226.920000pt;}
.y10be_c00001{bottom:226.924160pt;}
.yd56_c00001{bottom:226.927360pt;}
.ya7b_c00001{bottom:227.239040pt;}
.yc76_c00001{bottom:227.240000pt;}
.yfe6_c00001{bottom:227.556160pt;}
.yc34_c00001{bottom:227.560000pt;}
.y5e8_c00001{bottom:227.880000pt;}
.y95_c00001{bottom:228.200000pt;}
.y10b3_c00001{bottom:228.201600pt;}
.y67f_c00001{bottom:228.520000pt;}
.y3e3_c00001{bottom:228.840000pt;}
.y100f_c00001{bottom:229.160000pt;}
.y665_c00001{bottom:229.480000pt;}
.y77f_c00001{bottom:229.800000pt;}
.yd96_c00001{bottom:229.800640pt;}
.y2e8_c00001{bottom:230.121600pt;}
.yd85_c00001{bottom:230.439040pt;}
.y2cc_c00001{bottom:230.440000pt;}
.ya0d_c00001{bottom:230.759040pt;}
.y63f_c00001{bottom:231.080000pt;}
.y1bc_c00001{bottom:231.081600pt;}
.ye7c_c00001{bottom:231.399680pt;}
.y8ba_c00001{bottom:231.400000pt;}
.yad9_c00001{bottom:231.402240pt;}
.yabe_c00001{bottom:231.403200pt;}
.y10d8_c00001{bottom:231.719040pt;}
.yca5_c00001{bottom:231.720000pt;}
.y6a3_c00001{bottom:232.040000pt;}
.y105b_c00001{bottom:232.360000pt;}
.y337_c00001{bottom:232.680000pt;}
.y336_c00001{bottom:232.684160pt;}
.yd64_c00001{bottom:233.000000pt;}
.ydc6_c00001{bottom:233.002240pt;}
.y7fe_c00001{bottom:233.315520pt;}
.ye36_c00001{bottom:233.319040pt;}
.y7ff_c00001{bottom:233.320000pt;}
.ye53_c00001{bottom:233.323200pt;}
.y30e_c00001{bottom:233.640000pt;}
.yaf8_c00001{bottom:233.646400pt;}
.ye82_c00001{bottom:233.647360pt;}
.ya5c_c00001{bottom:233.959040pt;}
.ye2_c00001{bottom:233.960000pt;}
.ya27_c00001{bottom:233.962240pt;}
.ye19_c00001{bottom:233.963200pt;}
.y9d0_c00001{bottom:234.280000pt;}
.y3b_c00001{bottom:234.600000pt;}
.y757_c00001{bottom:234.920000pt;}
.y59a_c00001{bottom:235.240000pt;}
.y251_c00001{bottom:235.560000pt;}
.y914_c00001{bottom:235.878080pt;}
.y65b_c00001{bottom:235.879680pt;}
.y10b_c00001{bottom:235.880000pt;}
.y10a_c00001{bottom:235.881280pt;}
.yb6_c00001{bottom:235.881600pt;}
.yc2b_c00001{bottom:235.883200pt;}
.yd3c_c00001{bottom:235.884160pt;}
.yb2d_c00001{bottom:236.199680pt;}
.y704_c00001{bottom:236.200000pt;}
.yb81_c00001{bottom:237.155200pt;}
.y223_c00001{bottom:237.159680pt;}
.y975_c00001{bottom:237.160000pt;}
.y104d_c00001{bottom:237.479040pt;}
.y3bb_c00001{bottom:237.480000pt;}
.y93b_c00001{bottom:237.800000pt;}
.y93a_c00001{bottom:237.804160pt;}
.y627_c00001{bottom:238.120000pt;}
.ybd1_c00001{bottom:238.121600pt;}
.y8cb_c00001{bottom:238.440000pt;}
.yc0d_c00001{bottom:238.441600pt;}
.yff5_c00001{bottom:238.760000pt;}
.yf9d_c00001{bottom:239.079680pt;}
.y76d_c00001{bottom:239.080000pt;}
.y54b_c00001{bottom:239.400000pt;}
.y8d7_c00001{bottom:239.400640pt;}
.y54a_c00001{bottom:239.401600pt;}
.y86e_c00001{bottom:239.440320pt;}
.yf10_c00001{bottom:239.719040pt;}
.y158_c00001{bottom:239.720000pt;}
.ye74_c00001{bottom:239.724160pt;}
.y9b7_c00001{bottom:240.024000pt;}
.y4c3_c00001{bottom:240.040000pt;}
.yd09_c00001{bottom:240.063680pt;}
.y66_c00001{bottom:240.360000pt;}
.ydf6_c00001{bottom:240.363200pt;}
.yd27_c00001{bottom:240.364160pt;}
.y10ea_c00001{bottom:240.367360pt;}
.yb13_c00001{bottom:240.675200pt;}
.y113e_c00001{bottom:240.679040pt;}
.y9e6_c00001{bottom:240.680000pt;}
.y394_c00001{bottom:241.000000pt;}
.y8c_c00001{bottom:241.320000pt;}
.y6dc_c00001{bottom:241.630400pt;}
.y61b_c00001{bottom:241.640000pt;}
.y43f_c00001{bottom:241.960000pt;}
.y88a_c00001{bottom:242.280000pt;}
.ybeb_c00001{bottom:242.284160pt;}
.ydb2_c00001{bottom:242.599040pt;}
.y726_c00001{bottom:242.600000pt;}
.ya6f_c00001{bottom:242.604160pt;}
.y5f7_c00001{bottom:242.920000pt;}
.y374_c00001{bottom:243.240000pt;}
.y373_c00001{bottom:243.241280pt;}
.yb38_c00001{bottom:243.560000pt;}
.y103b_c00001{bottom:243.562240pt;}
.ydd2_c00001{bottom:243.564160pt;}
.yb9d_c00001{bottom:243.620800pt;}
.y5e6_c00001{bottom:243.880000pt;}
.y785_c00001{bottom:244.200000pt;}
.y850_c00001{bottom:244.519040pt;}
.y851_c00001{bottom:244.520000pt;}
.y8aa_c00001{bottom:244.816000pt;}
.y10bd_c00001{bottom:244.846080pt;}
.y76a_c00001{bottom:245.160000pt;}
.y496_c00001{bottom:245.480000pt;}
.y3cf_c00001{bottom:245.800000pt;}
.y35d_c00001{bottom:246.116160pt;}
.y35e_c00001{bottom:246.120000pt;}
.y5b7_c00001{bottom:246.440000pt;}
.y1ba_c00001{bottom:246.758720pt;}
.y1bb_c00001{bottom:246.760000pt;}
.y67e_c00001{bottom:247.080000pt;}
.y3e2_c00001{bottom:247.400000pt;}
.y522_c00001{bottom:247.720000pt;}
.y1118_c00001{bottom:248.040000pt;}
.y664_c00001{bottom:248.360000pt;}
.y1122_c00001{bottom:248.999040pt;}
.yf4f_c00001{bottom:249.000000pt;}
.y191_c00001{bottom:249.320000pt;}
.yd55_c00001{bottom:249.323200pt;}
.y652_c00001{bottom:249.640000pt;}
.y100b_c00001{bottom:249.641600pt;}
.y248_c00001{bottom:249.960000pt;}
.yfe5_c00001{bottom:250.280000pt;}
.yeaa_c00001{bottom:250.600000pt;}
.y9f5_c00001{bottom:250.920000pt;}
.yed0_c00001{bottom:251.240000pt;}
.y2aa_c00001{bottom:251.556480pt;}
.y47f_c00001{bottom:251.558080pt;}
.y109_c00001{bottom:251.559680pt;}
.y27a_c00001{bottom:251.560000pt;}
.yc2a_c00001{bottom:251.561600pt;}
.yb2c_c00001{bottom:251.563200pt;}
.yee6_c00001{bottom:251.880000pt;}
.y1a7_c00001{bottom:252.200000pt;}
.y81e_c00001{bottom:252.520000pt;}
.y222_c00001{bottom:252.523200pt;}
.ya0c_c00001{bottom:252.840000pt;}
.y5b8_c00001{bottom:253.160000pt;}
.y63d_c00001{bottom:253.479040pt;}
.y63e_c00001{bottom:253.480000pt;}
.yad8_c00001{bottom:253.483200pt;}
.yabd_c00001{bottom:253.484160pt;}
.ybcf_c00001{bottom:253.799680pt;}
.ybd0_c00001{bottom:253.800000pt;}
.ya38_c00001{bottom:253.803200pt;}
.y10d7_c00001{bottom:253.804160pt;}
.yc0c_c00001{bottom:254.120000pt;}
.yd95_c00001{bottom:254.440000pt;}
.yf9c_c00001{bottom:254.443200pt;}
.yd94_c00001{bottom:254.444160pt;}
.y72d_c00001{bottom:254.760000pt;}
.y335_c00001{bottom:255.080000pt;}
.y549_c00001{bottom:255.081600pt;}
.ydc5_c00001{bottom:255.083200pt;}
.y334_c00001{bottom:255.084160pt;}
.ye35_c00001{bottom:255.400000pt;}
.ye8a_c00001{bottom:255.403200pt;}
.ydfb_c00001{bottom:255.719040pt;}
.yfcd_c00001{bottom:255.720000pt;}
.ye7b_c00001{bottom:255.724160pt;}
.y5d9_c00001{bottom:256.040000pt;}
.yc55_c00001{bottom:256.041600pt;}
.yaf7_c00001{bottom:256.042240pt;}
.ya26_c00001{bottom:256.043200pt;}
.ya4d_c00001{bottom:256.044160pt;}
.y10e9_c00001{bottom:256.045760pt;}
.ye0_c00001{bottom:256.356480pt;}
.ye1_c00001{bottom:256.360000pt;}
.y1108_c00001{bottom:256.680000pt;}
.yf21_c00001{bottom:256.681600pt;}
.yb5_c00001{bottom:257.000000pt;}
.y8ca_c00001{bottom:257.320000pt;}
.y7fd_c00001{bottom:257.635520pt;}
.y76c_c00001{bottom:257.640000pt;}
.y1062_c00001{bottom:257.959040pt;}
.y1063_c00001{bottom:257.960000pt;}
.yd3b_c00001{bottom:258.279040pt;}
.yb3d_c00001{bottom:258.280000pt;}
.y4c2_c00001{bottom:258.600000pt;}
.y65_c00001{bottom:258.920000pt;}
.y4d3_c00001{bottom:259.240000pt;}
.y393_c00001{bottom:259.560000pt;}
.y1a_c00001{bottom:259.880000pt;}
.y3ba_c00001{bottom:259.881600pt;}
.y94_c00001{bottom:260.200000pt;}
.y939_c00001{bottom:260.206080pt;}
.y2e7_c00001{bottom:260.520000pt;}
.y250_c00001{bottom:260.840000pt;}
.y7ab_c00001{bottom:261.160000pt;}
.y725_c00001{bottom:261.480000pt;}
.y70f_c00001{bottom:261.800000pt;}
.yf0f_c00001{bottom:261.801600pt;}
.ye72_c00001{bottom:262.119040pt;}
.ye73_c00001{bottom:262.120000pt;}
.ye0f_c00001{bottom:262.124160pt;}
.y1b9_c00001{bottom:262.437120pt;}
.yaa5_c00001{bottom:262.439040pt;}
.y2cb_c00001{bottom:262.440000pt;}
.yd08_c00001{bottom:262.459520pt;}
.ydf5_c00001{bottom:262.759040pt;}
.y45e_c00001{bottom:262.760000pt;}
.ya90_c00001{bottom:262.762240pt;}
.y113d_c00001{bottom:262.764160pt;}
.ybdc_c00001{bottom:263.080000pt;}
.y8b9_c00001{bottom:263.400000pt;}
.yf58_c00001{bottom:263.720000pt;}
.y8d6_c00001{bottom:264.035520pt;}
.y495_c00001{bottom:264.040000pt;}
.ybf8_c00001{bottom:264.360000pt;}
.yb9c_c00001{bottom:264.416000pt;}
.ybea_c00001{bottom:264.675520pt;}
.y844_c00001{bottom:264.679040pt;}
.y845_c00001{bottom:264.680000pt;}
.y82d_c00001{bottom:265.000000pt;}
.ye29_c00001{bottom:265.319040pt;}
.y61a_c00001{bottom:265.320000pt;}
.y30d_c00001{bottom:265.640000pt;}
.y103a_c00001{bottom:265.643200pt;}
.ydd1_c00001{bottom:265.956480pt;}
.y15e_c00001{bottom:265.960000pt;}
.y10b2_c00001{bottom:265.961600pt;}
.y371_c00001{bottom:266.276160pt;}
.y372_c00001{bottom:266.280000pt;}
.y3a_c00001{bottom:266.600000pt;}
.y279_c00001{bottom:266.920000pt;}
.y3ae_c00001{bottom:266.921600pt;}
.y108_c00001{bottom:267.238080pt;}
.y299_c00001{bottom:267.240000pt;}
.yb2b_c00001{bottom:267.241600pt;}
.y6c3_c00001{bottom:267.560000pt;}
.y43e_c00001{bottom:267.880000pt;}
.y703_c00001{bottom:268.200000pt;}
.y221_c00001{bottom:268.201600pt;}
.y247_c00001{bottom:268.520000pt;}
.y35c_c00001{bottom:268.840000pt;}
.y35b_c00001{bottom:268.841280pt;}
.y3ce_c00001{bottom:269.480000pt;}
.yc0b_c00001{bottom:269.800000pt;}
.yc0a_c00001{bottom:269.809280pt;}
.y9b6_c00001{bottom:270.105600pt;}
.y626_c00001{bottom:270.120000pt;}
.ycdb_c00001{bottom:270.440000pt;}
.y8fd_c00001{bottom:270.758080pt;}
.y548_c00001{bottom:270.760000pt;}
.y1a6_c00001{bottom:271.080000pt;}
.y81d_c00001{bottom:271.400000pt;}
.yd54_c00001{bottom:271.404160pt;}
.y6db_c00001{bottom:271.712000pt;}
.ydf_c00001{bottom:271.720000pt;}
.yde_c00001{bottom:271.721600pt;}
.ya7a_c00001{bottom:271.722240pt;}
.y5b6_c00001{bottom:272.040000pt;}
.y278_c00001{bottom:272.360000pt;}
.yb4_c00001{bottom:272.361600pt;}
.y7d3_c00001{bottom:272.680000pt;}
.yf7c_c00001{bottom:273.000000pt;}
.y8b_c00001{bottom:273.320000pt;}
.y10e8_c00001{bottom:273.639680pt;}
.y521_c00001{bottom:273.640000pt;}
.y8a9_c00001{bottom:273.942400pt;}
.y1073_c00001{bottom:273.960000pt;}
.y97f_c00001{bottom:274.280000pt;}
.y3fb_c00001{bottom:274.600000pt;}
.ycca_c00001{bottom:274.601600pt;}
.yd84_c00001{bottom:274.607360pt;}
.y5f6_c00001{bottom:274.920000pt;}
.ya0b_c00001{bottom:275.239040pt;}
.y1f8_c00001{bottom:275.240000pt;}
.yfe4_c00001{bottom:275.240640pt;}
.y3b9_c00001{bottom:275.560000pt;}
.yad7_c00001{bottom:275.879040pt;}
.y8c9_c00001{bottom:275.880000pt;}
.ybce_c00001{bottom:275.880640pt;}
.ya37_c00001{bottom:275.884160pt;}
.y547_c00001{bottom:276.200000pt;}
.y10d6_c00001{bottom:276.215040pt;}
.y1046_c00001{bottom:276.520000pt;}
.yf9b_c00001{bottom:276.839040pt;}
.yd93_c00001{bottom:276.840000pt;}
.y4c1_c00001{bottom:277.160000pt;}
.ydc4_c00001{bottom:277.479040pt;}
.y333_c00001{bottom:277.480000pt;}
.y332_c00001{bottom:277.484160pt;}
.y938_c00001{bottom:277.798080pt;}
.y64_c00001{bottom:277.800000pt;}
.y1b8_c00001{bottom:277.800640pt;}
.ydfa_c00001{bottom:277.804160pt;}
.y86d_c00001{bottom:277.836480pt;}
.y10bc_c00001{bottom:278.113600pt;}
.ye7a_c00001{bottom:278.120000pt;}
.yaf6_c00001{bottom:278.123200pt;}
.ye81_c00001{bottom:278.124160pt;}
.ya25_c00001{bottom:278.439040pt;}
.y392_c00001{bottom:278.440000pt;}
.ya5b_c00001{bottom:278.442240pt;}
.yde7_c00001{bottom:278.447360pt;}
.y572_c00001{bottom:278.760000pt;}
.y72e_c00001{bottom:279.080000pt;}
.yffa_c00001{bottom:279.400000pt;}
.y889_c00001{bottom:279.720000pt;}
.y724_c00001{bottom:280.040000pt;}
.y663_c00001{bottom:280.360000pt;}
.y5ff_c00001{bottom:280.680000pt;}
.yf4e_c00001{bottom:281.000000pt;}
.y45d_c00001{bottom:281.320000pt;}
.ydd0_c00001{bottom:281.324160pt;}
.y754_c00001{bottom:281.640000pt;}
.y104c_c00001{bottom:281.959040pt;}
.y7fc_c00001{bottom:281.960000pt;}
.y7fb_c00001{bottom:281.960640pt;}
.y1027_c00001{bottom:282.280000pt;}
.yafb_c00001{bottom:282.598080pt;}
.y277_c00001{bottom:282.600000pt;}
.y107_c00001{bottom:282.601600pt;}
.yb2a_c00001{bottom:282.916480pt;}
.y7d2_c00001{bottom:282.920000pt;}
.y7b1_c00001{bottom:283.240000pt;}
.y6fb_c00001{bottom:283.560000pt;}
.yb3c_c00001{bottom:283.561600pt;}
.y21f_c00001{bottom:283.876480pt;}
.y220_c00001{bottom:283.880000pt;}
.y2b5_c00001{bottom:284.200000pt;}
.yaa4_c00001{bottom:284.520000pt;}
.yd07_c00001{bottom:284.540480pt;}
.y298_c00001{bottom:284.840000pt;}
.yd26_c00001{bottom:284.841600pt;}
.ya8f_c00001{bottom:284.843200pt;}
.y297_c00001{bottom:284.844160pt;}
.yda3_c00001{bottom:284.846400pt;}
.yc84_c00001{bottom:285.160000pt;}
.y1117_c00001{bottom:285.480000pt;}
.yb9b_c00001{bottom:285.539200pt;}
.yb77_c00001{bottom:285.800000pt;}
.y24f_c00001{bottom:286.120000pt;}
.y8fc_c00001{bottom:286.121600pt;}
.y424_c00001{bottom:286.440000pt;}
.yfab_c00001{bottom:286.758080pt;}
.y843_c00001{bottom:286.760000pt;}
.y842_c00001{bottom:286.764160pt;}
.y4f6_c00001{bottom:287.080000pt;}
.ydb1_c00001{bottom:287.082240pt;}
.y4f5_c00001{bottom:287.084160pt;}
.ydd_c00001{bottom:287.400000pt;}
.ye61_c00001{bottom:287.404160pt;}
.y100a_c00001{bottom:287.718080pt;}
.y973_c00001{bottom:287.720000pt;}
.y1039_c00001{bottom:287.724160pt;}
.y53a_c00001{bottom:288.040000pt;}
.y8d5_c00001{bottom:288.359040pt;}
.y68f_c00001{bottom:288.360000pt;}
.yc99_c00001{bottom:288.680000pt;}
.y370_c00001{bottom:288.999680pt;}
.ybe9_c00001{bottom:289.000000pt;}
.ybe8_c00001{bottom:289.000640pt;}
.y10e7_c00001{bottom:289.318080pt;}
.yb80_c00001{bottom:289.320000pt;}
.y1a5_c00001{bottom:289.640000pt;}
.y12c_c00001{bottom:289.960000pt;}
.y97e_c00001{bottom:290.280000pt;}
.ycc9_c00001{bottom:290.281600pt;}
.yf03_c00001{bottom:290.600000pt;}
.y13f_c00001{bottom:290.920000pt;}
.yef6_c00001{bottom:291.240000pt;}
.y3cd_c00001{bottom:291.560000pt;}
.y3e1_c00001{bottom:291.563200pt;}
.y359_c00001{bottom:291.879040pt;}
.y35a_c00001{bottom:291.880000pt;}
.yc09_c00001{bottom:291.890240pt;}
.y93_c00001{bottom:292.200000pt;}
.y109b_c00001{bottom:292.519680pt;}
.yc51_c00001{bottom:292.520000pt;}
.y43d_c00001{bottom:292.840000pt;}
.y7aa_c00001{bottom:293.160000pt;}
.yb3_c00001{bottom:293.480000pt;}
.y1121_c00001{bottom:293.487360pt;}
.y190_c00001{bottom:293.800000pt;}
.ya79_c00001{bottom:293.803200pt;}
.y77e_c00001{bottom:294.120000pt;}
.y2ca_c00001{bottom:294.440000pt;}
.y425_c00001{bottom:295.080000pt;}
.y8b8_c00001{bottom:295.400000pt;}
.y769_c00001{bottom:295.720000pt;}
.y2a9_c00001{bottom:296.040000pt;}
.y79f_c00001{bottom:296.360000pt;}
.y10b1_c00001{bottom:297.000000pt;}
.y10b0_c00001{bottom:297.001600pt;}
.yd83_c00001{bottom:297.003200pt;}
.y5b5_c00001{bottom:297.320000pt;}
.y1b7_c00001{bottom:297.323200pt;}
.yfe3_c00001{bottom:297.636480pt;}
.y30c_c00001{bottom:297.640000pt;}
.yabc_c00001{bottom:297.959040pt;}
.y1f7_c00001{bottom:297.960000pt;}
.y3ad_c00001{bottom:298.276480pt;}
.y913_c00001{bottom:298.278080pt;}
.y276_c00001{bottom:298.280000pt;}
.y7d1_c00001{bottom:298.281600pt;}
.y10d5_c00001{bottom:298.296000pt;}
.y39_c00001{bottom:298.600000pt;}
.yea0_c00001{bottom:298.916160pt;}
.y756_c00001{bottom:298.920000pt;}
.yd92_c00001{bottom:298.920640pt;}
.yf9a_c00001{bottom:298.924160pt;}
.yb7f_c00001{bottom:299.556480pt;}
.y6c2_c00001{bottom:299.560000pt;}
.y330_c00001{bottom:299.879040pt;}
.y331_c00001{bottom:299.880000pt;}
.ye34_c00001{bottom:299.884160pt;}
.ye52_c00001{bottom:300.199040pt;}
.y16d_c00001{bottom:300.200000pt;}
.ye79_c00001{bottom:300.203200pt;}
.y9b5_c00001{bottom:300.504000pt;}
.yaf5_c00001{bottom:300.519040pt;}
.ya24_c00001{bottom:300.520000pt;}
.ya5a_c00001{bottom:300.523200pt;}
.ye18_c00001{bottom:300.526400pt;}
.y1026_c00001{bottom:300.840000pt;}
.yde6_c00001{bottom:300.843200pt;}
.yf57_c00001{bottom:301.160000pt;}
.y494_c00001{bottom:301.480000pt;}
.y8c3_c00001{bottom:301.800000pt;}
.y6da_c00001{bottom:302.110400pt;}
.y625_c00001{bottom:302.120000pt;}
.yfaa_c00001{bottom:302.436480pt;}
.y4c0_c00001{bottom:302.440000pt;}
.y8a8_c00001{bottom:302.740800pt;}
.yd3a_c00001{bottom:302.759040pt;}
.y91f_c00001{bottom:303.080000pt;}
.y1009_c00001{bottom:303.081600pt;}
.y4d2_c00001{bottom:303.089280pt;}
.yc75_c00001{bottom:303.400000pt;}
.y106_c00001{bottom:303.720000pt;}
.y571_c00001{bottom:303.720640pt;}
.yb76_c00001{bottom:304.040000pt;}
.y104b_c00001{bottom:304.044160pt;}
.y72c_c00001{bottom:304.360000pt;}
.y21e_c00001{bottom:304.680000pt;}
.y10e6_c00001{bottom:304.681600pt;}
.y63c_c00001{bottom:305.000000pt;}
.y8a_c00001{bottom:305.320000pt;}
.y82c_c00001{bottom:305.640000pt;}
.y246_c00001{bottom:305.960000pt;}
.yb9a_c00001{bottom:306.334400pt;}
.y7fa_c00001{bottom:306.595520pt;}
.ye71_c00001{bottom:306.599040pt;}
.y5d8_c00001{bottom:306.600000pt;}
.yd06_c00001{bottom:306.621440pt;}
.yaa3_c00001{bottom:306.919040pt;}
.y68e_c00001{bottom:306.920000pt;}
.yb3b_c00001{bottom:307.235200pt;}
.ya8e_c00001{bottom:307.239040pt;}
.y296_c00001{bottom:307.240000pt;}
.yda2_c00001{bottom:307.242240pt;}
.ydf4_c00001{bottom:307.243200pt;}
.y113c_c00001{bottom:307.560000pt;}
.y2b6_c00001{bottom:307.880000pt;}
.y109a_c00001{bottom:308.198080pt;}
.y5e5_c00001{bottom:308.200000pt;}
.y1045_c00001{bottom:308.520000pt;}
.y980_c00001{bottom:308.840000pt;}
.yc7d_c00001{bottom:309.160000pt;}
.y841_c00001{bottom:309.163200pt;}
.y13e_c00001{bottom:309.480000pt;}
.y10bb_c00001{bottom:309.481280pt;}
.ydc_c00001{bottom:309.483200pt;}
.y63_c00001{bottom:309.800000pt;}
.y1038_c00001{bottom:310.119040pt;}
.ycb8_c00001{bottom:310.120000pt;}
.y8d4_c00001{bottom:310.440000pt;}
.y8d3_c00001{bottom:310.444160pt;}
.y471_c00001{bottom:310.760000pt;}
.y7e0_c00001{bottom:311.080000pt;}
.y36f_c00001{bottom:311.395520pt;}
.y937_c00001{bottom:311.399040pt;}
.y24e_c00001{bottom:311.400000pt;}
.y47e_c00001{bottom:311.720000pt;}
.y723_c00001{bottom:312.040000pt;}
.y18f_c00001{bottom:312.360000pt;}
.y10af_c00001{bottom:312.680000pt;}
.y10ae_c00001{bottom:312.681600pt;}
.yf4d_c00001{bottom:313.000000pt;}
.yfe2_c00001{bottom:313.004160pt;}
.y969_c00001{bottom:313.320000pt;}
.yc68_c00001{bottom:313.638080pt;}
.yc29_c00001{bottom:313.639680pt;}
.y3ac_c00001{bottom:313.640000pt;}
.y3ab_c00001{bottom:313.641600pt;}
.y275_c00001{bottom:313.643840pt;}
.y358_c00001{bottom:313.960000pt;}
.y357_c00001{bottom:313.964160pt;}
.y768_c00001{bottom:314.280000pt;}
.y84f_c00001{bottom:314.284160pt;}
.yc08_c00001{bottom:314.286080pt;}
.y104_c00001{bottom:314.593600pt;}
.y105_c00001{bottom:314.600000pt;}
.y746_c00001{bottom:314.920000pt;}
.yb7e_c00001{bottom:314.921600pt;}
.yf0d_c00001{bottom:315.239040pt;}
.yf0e_c00001{bottom:315.240000pt;}
.y1072_c00001{bottom:315.560000pt;}
.yd53_c00001{bottom:315.879040pt;}
.y9e5_c00001{bottom:315.880000pt;}
.y1120_c00001{bottom:315.883200pt;}
.y86c_c00001{bottom:315.915840pt;}
.yc50_c00001{bottom:316.196480pt;}
.ya78_c00001{bottom:316.199040pt;}
.y2b4_c00001{bottom:316.200000pt;}
.y67d_c00001{bottom:316.520000pt;}
.yec8_c00001{bottom:316.840000pt;}
.yb2_c00001{bottom:317.160000pt;}
.y8fb_c00001{bottom:317.161600pt;}
.y979_c00001{bottom:317.480000pt;}
.y3e0_c00001{bottom:317.800000pt;}
.y43c_c00001{bottom:318.120000pt;}
.y423_c00001{bottom:318.440000pt;}
.ycef_c00001{bottom:318.760000pt;}
.y1008_c00001{bottom:318.763840pt;}
.y16c_c00001{bottom:319.080000pt;}
.yd82_c00001{bottom:319.084160pt;}
.y7d0_c00001{bottom:319.400000pt;}
.y1b6_c00001{bottom:319.719040pt;}
.y981_c00001{bottom:319.720000pt;}
.y493_c00001{bottom:320.040000pt;}
.yad6_c00001{bottom:320.047360pt;}
.y10e5_c00001{bottom:320.358080pt;}
.y91e_c00001{bottom:320.360000pt;}
.ya36_c00001{bottom:320.367360pt;}
.y1f6_c00001{bottom:320.680000pt;}
.y10d4_c00001{bottom:320.691840pt;}
.y619_c00001{bottom:321.000000pt;}
.yf99_c00001{bottom:321.319040pt;}
.yeb2_c00001{bottom:321.320000pt;}
.y1a4_c00001{bottom:321.640000pt;}
.ydc3_c00001{bottom:321.959040pt;}
.y32f_c00001{bottom:321.960000pt;}
.y32e_c00001{bottom:321.964160pt;}
.ye33_c00001{bottom:322.280000pt;}
.yd43_c00001{bottom:322.284160pt;}
.ye78_c00001{bottom:322.599040pt;}
.yaf4_c00001{bottom:322.600000pt;}
.ya23_c00001{bottom:322.604160pt;}
.ya4c_c00001{bottom:322.606400pt;}
.ye17_c00001{bottom:322.607360pt;}
.y2e6_c00001{bottom:322.920000pt;}
.yde5_c00001{bottom:322.924160pt;}
.y599_c00001{bottom:323.240000pt;}
.y507_c00001{bottom:323.558080pt;}
.y63b_c00001{bottom:323.560000pt;}
.y1099_c00001{bottom:323.561600pt;}
.yd91_c00001{bottom:323.564160pt;}
.y1fb_c00001{bottom:323.880000pt;}
.y17_c00001{bottom:324.200000pt;}
.y1079_c00001{bottom:324.520000pt;}
.yd39_c00001{bottom:324.840000pt;}
.y10ba_c00001{bottom:325.159680pt;}
.y3fa_c00001{bottom:325.160000pt;}
.y4d1_c00001{bottom:325.170240pt;}
.y5d7_c00001{bottom:325.480000pt;}
.y68d_c00001{bottom:325.800000pt;}
.ydcf_c00001{bottom:325.807360pt;}
.y77d_c00001{bottom:326.120000pt;}
.y2c9_c00001{bottom:326.440000pt;}
.yea9_c00001{bottom:326.760000pt;}
.y972_c00001{bottom:327.080000pt;}
.yb99_c00001{bottom:327.129600pt;}
.y391_c00001{bottom:327.400000pt;}
.y4bf_c00001{bottom:328.040000pt;}
.y10ad_c00001{bottom:328.356480pt;}
.y570_c00001{bottom:328.359040pt;}
.y62_c00001{bottom:328.360000pt;}
.yc74_c00001{bottom:328.680000pt;}
.ye0e_c00001{bottom:328.999040pt;}
.yaa2_c00001{bottom:329.000000pt;}
.y157_c00001{bottom:329.001600pt;}
.yd05_c00001{bottom:329.017280pt;}
.y912_c00001{bottom:329.316480pt;}
.yc28_c00001{bottom:329.318080pt;}
.y470_c00001{bottom:329.320000pt;}
.yda1_c00001{bottom:329.323200pt;}
.ydf3_c00001{bottom:329.324160pt;}
.y295_c00001{bottom:329.640000pt;}
.y30b_c00001{bottom:329.960000pt;}
.y274_c00001{bottom:330.280000pt;}
.y9b4_c00001{bottom:330.585600pt;}
.y38_c00001{bottom:330.600000pt;}
.y18e_c00001{bottom:330.920000pt;}
.y7f9_c00001{bottom:330.924160pt;}
.yb3a_c00001{bottom:331.240000pt;}
.y840_c00001{bottom:331.244160pt;}
.y8a7_c00001{bottom:331.539200pt;}
.yc67_c00001{bottom:331.556480pt;}
.ydb0_c00001{bottom:331.559040pt;}
.ya6e_c00001{bottom:331.560000pt;}
.ydb_c00001{bottom:331.879040pt;}
.y3b8_c00001{bottom:331.880000pt;}
.ye60_c00001{bottom:331.882240pt;}
.yc07_c00001{bottom:331.887680pt;}
.y6d9_c00001{bottom:332.192000pt;}
.y1037_c00001{bottom:332.198080pt;}
.y584_c00001{bottom:332.200000pt;}
.yc8c_c00001{bottom:332.520000pt;}
.y8d1_c00001{bottom:332.839040pt;}
.y8d2_c00001{bottom:332.840000pt;}
.y8fa_c00001{bottom:332.841600pt;}
.y767_c00001{bottom:333.160000pt;}
.y936_c00001{bottom:333.480000pt;}
.y935_c00001{bottom:333.481600pt;}
.y79e_c00001{bottom:333.800000pt;}
.y624_c00001{bottom:334.120000pt;}
.y1007_c00001{bottom:334.127360pt;}
.y9e4_c00001{bottom:334.440000pt;}
.y3aa_c00001{bottom:334.760000pt;}
.y3df_c00001{bottom:335.080000pt;}
.yfe0_c00001{bottom:335.399040pt;}
.yfe1_c00001{bottom:335.400000pt;}
.y273_c00001{bottom:335.720000pt;}
.y36e_c00001{bottom:335.724160pt;}
.y1016_c00001{bottom:336.036480pt;}
.y103_c00001{bottom:336.040000pt;}
.y356_c00001{bottom:336.359680pt;}
.y978_c00001{bottom:336.360000pt;}
.y10d3_c00001{bottom:336.370240pt;}
.y24d_c00001{bottom:336.680000pt;}
.y89_c00001{bottom:337.320000pt;}
.y16b_c00001{bottom:337.640000pt;}
.y245_c00001{bottom:337.960000pt;}
.y111f_c00001{bottom:338.279040pt;}
.ya77_c00001{bottom:338.280000pt;}
.y492_c00001{bottom:338.600000pt;}
.ycd1_c00001{bottom:338.920000pt;}
.y506_c00001{bottom:338.921600pt;}
.yf46_c00001{bottom:339.240000pt;}
.y2a8_c00001{bottom:339.560000pt;}
.yeb1_c00001{bottom:339.880000pt;}
.y5e4_c00001{bottom:340.200000pt;}
.y45c_c00001{bottom:340.520000pt;}
.y10b9_c00001{bottom:340.838080pt;}
.y10fa_c00001{bottom:340.840000pt;}
.yb75_c00001{bottom:341.480000pt;}
.y1b5_c00001{bottom:341.800000pt;}
.ya0a_c00001{bottom:341.803200pt;}
.y545_c00001{bottom:342.120000pt;}
.yabb_c00001{bottom:342.440000pt;}
.yad5_c00001{bottom:342.443200pt;}
.y539_c00001{bottom:342.760000pt;}
.ya35_c00001{bottom:342.763200pt;}
.y7cf_c00001{bottom:343.080000pt;}
.y43b_c00001{bottom:343.398080pt;}
.y1f5_c00001{bottom:343.400000pt;}
.ye9f_c00001{bottom:343.720000pt;}
.y10ac_c00001{bottom:343.721600pt;}
.ye9e_c00001{bottom:343.728320pt;}
.y5d6_c00001{bottom:344.040000pt;}
.yd63_c00001{bottom:344.044160pt;}
.y32d_c00001{bottom:344.360000pt;}
.y32c_c00001{bottom:344.364160pt;}
.y156_c00001{bottom:344.676480pt;}
.ye32_c00001{bottom:344.679040pt;}
.y3a9_c00001{bottom:344.680000pt;}
.yf1e_c00001{bottom:344.681280pt;}
.yc69_c00001{bottom:344.681600pt;}
.y5ca_c00001{bottom:344.995520pt;}
.yc27_c00001{bottom:344.996480pt;}
.yaf3_c00001{bottom:344.999040pt;}
.y5cb_c00001{bottom:345.000000pt;}
.ya4b_c00001{bottom:345.002240pt;}
.ye16_c00001{bottom:345.003200pt;}
.y8c8_c00001{bottom:345.320000pt;}
.y753_c00001{bottom:345.640000pt;}
.yd8f_c00001{bottom:345.955520pt;}
.yd90_c00001{bottom:345.960000pt;}
.y272_c00001{bottom:345.961600pt;}
.y101_c00001{bottom:346.276480pt;}
.y102_c00001{bottom:346.280000pt;}
.y4be_c00001{bottom:346.600000pt;}
.y61_c00001{bottom:346.920000pt;}
.yc66_c00001{bottom:346.921600pt;}
.yd38_c00001{bottom:347.236480pt;}
.yc4f_c00001{bottom:347.238400pt;}
.yf61_c00001{bottom:347.240000pt;}
.y520_c00001{bottom:347.560000pt;}
.y4d0_c00001{bottom:347.566080pt;}
.yee5_c00001{bottom:347.880000pt;}
.y2b3_c00001{bottom:348.200000pt;}
.ydce_c00001{bottom:348.203200pt;}
.yb98_c00001{bottom:348.252800pt;}
.y8f9_c00001{bottom:348.516480pt;}
.y598_c00001{bottom:348.520000pt;}
.yf7b_c00001{bottom:348.839040pt;}
.y546_c00001{bottom:348.840000pt;}
.y934_c00001{bottom:349.160000pt;}
.y933_c00001{bottom:349.166080pt;}
.y37_c00001{bottom:349.480000pt;}
.y18d_c00001{bottom:349.800000pt;}
.y1036_c00001{bottom:350.119040pt;}
.y3a8_c00001{bottom:350.120000pt;}
.y3f9_c00001{bottom:350.440000pt;}
.y8ce_c00001{bottom:350.760000pt;}
.y6ae_c00001{bottom:351.080000pt;}
.yfd5_c00001{bottom:351.081600pt;}
.yd04_c00001{bottom:351.098240pt;}
.y9f4_c00001{bottom:351.400000pt;}
.yaa1_c00001{bottom:351.402240pt;}
.yda0_c00001{bottom:351.719040pt;}
.y99d_c00001{bottom:351.720000pt;}
.ya8d_c00001{bottom:351.722240pt;}
.ycda_c00001{bottom:352.040000pt;}
.yb1_c00001{bottom:352.360000pt;}
.yfb7_c00001{bottom:352.680000pt;}
.yf0b_c00001{bottom:352.999040pt;}
.yf0c_c00001{bottom:353.000000pt;}
.y7f8_c00001{bottom:353.320000pt;}
.y7f7_c00001{bottom:353.323200pt;}
.ye28_c00001{bottom:353.638720pt;}
.y83f_c00001{bottom:353.639040pt;}
.y10e4_c00001{bottom:353.639680pt;}
.y1a3_c00001{bottom:353.640000pt;}
.yda_c00001{bottom:353.960000pt;}
.ye5f_c00001{bottom:353.963200pt;}
.y86b_c00001{bottom:354.312000pt;}
.y505_c00001{bottom:354.600000pt;}
.y1098_c00001{bottom:354.916480pt;}
.y2e5_c00001{bottom:354.920000pt;}
.y4eb_c00001{bottom:355.240000pt;}
.y294_c00001{bottom:355.560000pt;}
.yfa9_c00001{bottom:355.561600pt;}
.y793_c00001{bottom:355.880000pt;}
.y16_c00001{bottom:356.200000pt;}
.y10b8_c00001{bottom:356.201600pt;}
.yf8e_c00001{bottom:356.520000pt;}
.y1006_c00001{bottom:356.523200pt;}
.yb39_c00001{bottom:356.840000pt;}
.y7a9_c00001{bottom:357.160000pt;}
.y4f4_c00001{bottom:357.480000pt;}
.yfdf_c00001{bottom:357.481600pt;}
.y3b7_c00001{bottom:357.800000pt;}
.y36c_c00001{bottom:358.115520pt;}
.y36d_c00001{bottom:358.120000pt;}
.y244_c00001{bottom:358.440000pt;}
.y355_c00001{bottom:358.440640pt;}
.yff9_c00001{bottom:358.756480pt;}
.y84e_c00001{bottom:358.758080pt;}
.y3de_c00001{bottom:358.760000pt;}
.y10d2_c00001{bottom:358.766080pt;}
.y43a_c00001{bottom:359.076480pt;}
.y45b_c00001{bottom:359.080000pt;}
.y10ab_c00001{bottom:359.396480pt;}
.y81c_c00001{bottom:359.400000pt;}
.y155_c00001{bottom:360.040000pt;}
.yf1d_c00001{bottom:360.359680pt;}
.y65a_c00001{bottom:360.360000pt;}
.y911_c00001{bottom:360.361600pt;}
.y111e_c00001{bottom:360.364160pt;}
.y8a6_c00001{bottom:360.665600pt;}
.y9b3_c00001{bottom:360.667200pt;}
.ya76_c00001{bottom:360.679040pt;}
.ya6d_c00001{bottom:360.680000pt;}
.yc7c_c00001{bottom:361.000000pt;}
.y46f_c00001{bottom:361.320000pt;}
.y100_c00001{bottom:361.640000pt;}
.y30a_c00001{bottom:361.960000pt;}
.y6d8_c00001{bottom:362.273600pt;}
.y24c_c00001{bottom:362.280000pt;}
.y105a_c00001{bottom:362.281600pt;}
.y583_c00001{bottom:362.600000pt;}
.yd37_c00001{bottom:362.604160pt;}
.yc4e_c00001{bottom:362.916800pt;}
.y70e_c00001{bottom:362.920000pt;}
.yf4c_c00001{bottom:363.560000pt;}
.yd81_c00001{bottom:363.564160pt;}
.y8c7_c00001{bottom:363.880000pt;}
.ya09_c00001{bottom:364.199040pt;}
.y1b4_c00001{bottom:364.200000pt;}
.y416_c00001{bottom:364.201600pt;}
.yaba_c00001{bottom:364.520000pt;}
.yad4_c00001{bottom:364.524160pt;}
.yf3e_c00001{bottom:364.840000pt;}
.ya34_c00001{bottom:364.844160pt;}
.y4bd_c00001{bottom:365.160000pt;}
.y4cf_c00001{bottom:365.160640pt;}
.yc06_c00001{bottom:365.163200pt;}
.y745_c00001{bottom:365.480000pt;}
.y60_c00001{bottom:365.800000pt;}
.y1f4_c00001{bottom:366.120000pt;}
.ye9d_c00001{bottom:366.124160pt;}
.yd62_c00001{bottom:366.440000pt;}
.yd61_c00001{bottom:366.444160pt;}
.yd42_c00001{bottom:366.759040pt;}
.y32b_c00001{bottom:366.760000pt;}
.ye31_c00001{bottom:366.764160pt;}
.yff_c00001{bottom:367.080000pt;}
.ya4a_c00001{bottom:367.083200pt;}
.ya59_c00001{bottom:367.084160pt;}
.yd25_c00001{bottom:367.120640pt;}
.y544_c00001{bottom:367.400000pt;}
.yde4_c00001{bottom:367.403200pt;}
.y36_c00001{bottom:368.040000pt;}
.y18c_c00001{bottom:368.360000pt;}
.y968_c00001{bottom:368.996480pt;}
.y6c1_c00001{bottom:369.000000pt;}
.y7f6_c00001{bottom:369.001600pt;}
.yb97_c00001{bottom:369.048000pt;}
.y10e3_c00001{bottom:369.318080pt;}
.y88_c00001{bottom:369.320000pt;}
.y16a_c00001{bottom:369.640000pt;}
.y51f_c00001{bottom:369.641600pt;}
.y106e_c00001{bottom:369.960000pt;}
.ycbf_c00001{bottom:370.280000pt;}
.yd8e_c00001{bottom:370.283200pt;}
.ydcd_c00001{bottom:370.284160pt;}
.y6a2_c00001{bottom:370.600000pt;}
.y491_c00001{bottom:370.920000pt;}
.yfa8_c00001{bottom:371.236480pt;}
.y1059_c00001{bottom:371.239040pt;}
.yf45_c00001{bottom:371.240000pt;}
.y10e1_c00001{bottom:371.560000pt;}
.y2a7_c00001{bottom:371.880000pt;}
.y5e3_c00001{bottom:372.200000pt;}
.y1035_c00001{bottom:372.201600pt;}
.y67c_c00001{bottom:372.520000pt;}
.ye27_c00001{bottom:372.521920pt;}
.y56f_c00001{bottom:372.840000pt;}
.ye70_c00001{bottom:373.160000pt;}
.yb74_c00001{bottom:373.480000pt;}
.yaa0_c00001{bottom:373.483200pt;}
.ye0d_c00001{bottom:373.484160pt;}
.yd03_c00001{bottom:373.494080pt;}
.y1015_c00001{bottom:373.796480pt;}
.y518_c00001{bottom:373.800000pt;}
.ya8c_c00001{bottom:373.803200pt;}
.y4ea_c00001{bottom:374.120000pt;}
.yff8_c00001{bottom:374.121600pt;}
.y84d_c00001{bottom:374.436480pt;}
.y439_c00001{bottom:374.440000pt;}
.y63a_c00001{bottom:374.760000pt;}
.y390_c00001{bottom:375.080000pt;}
.y7a8_c00001{bottom:375.720000pt;}
.y83e_c00001{bottom:375.724160pt;}
.y3a6_c00001{bottom:376.034240pt;}
.y107d_c00001{bottom:376.035200pt;}
.y659_c00001{bottom:376.036480pt;}
.yf1c_c00001{bottom:376.038080pt;}
.y3a7_c00001{bottom:376.040000pt;}
.y10d1_c00001{bottom:376.356160pt;}
.ye5e_c00001{bottom:376.359040pt;}
.y5f5_c00001{bottom:376.360000pt;}
.yd9_c00001{bottom:376.680000pt;}
.y504_c00001{bottom:376.996480pt;}
.y618_c00001{bottom:377.000000pt;}
.yb7d_c00001{bottom:377.316160pt;}
.yfe_c00001{bottom:377.320000pt;}
.y45a_c00001{bottom:377.640000pt;}
.y81b_c00001{bottom:377.960000pt;}
.yc65_c00001{bottom:378.276480pt;}
.yc4d_c00001{bottom:378.280320pt;}
.y243_c00001{bottom:378.600000pt;}
.y1005_c00001{bottom:378.604160pt;}
.y7df_c00001{bottom:378.920000pt;}
.yc73_c00001{bottom:379.240000pt;}
.y1071_c00001{bottom:379.560000pt;}
.y8f8_c00001{bottom:379.561600pt;}
.y415_c00001{bottom:379.880000pt;}
.y2b2_c00001{bottom:380.200000pt;}
.y3cc_c00001{bottom:380.520000pt;}
.yea8_c00001{bottom:380.836480pt;}
.y888_c00001{bottom:380.840000pt;}
.yc05_c00001{bottom:380.841600pt;}
.y293_c00001{bottom:381.160000pt;}
.yafa_c00001{bottom:381.480000pt;}
.y662_c00001{bottom:381.800000pt;}
.y153_c00001{bottom:382.436480pt;}
.y154_c00001{bottom:382.440000pt;}
.yd52_c00001{bottom:382.444160pt;}
.ybc6_c00001{bottom:382.507067pt;}
.yfd_c00001{bottom:382.760000pt;}
.y353_c00001{bottom:383.079040pt;}
.y354_c00001{bottom:383.080000pt;}
.y766_c00001{bottom:383.720000pt;}
.yce2_c00001{bottom:384.039040pt;}
.y125_c00001{bottom:384.040000pt;}
.y5f_c00001{bottom:384.360000pt;}
.y21d_c00001{bottom:384.680000pt;}
.y7f5_c00001{bottom:384.681600pt;}
.yd36_c00001{bottom:385.000000pt;}
.y51d_c00001{bottom:385.316480pt;}
.y51e_c00001{bottom:385.320000pt;}
.y1a2_c00001{bottom:385.640000pt;}
.yd7f_c00001{bottom:385.959040pt;}
.yd80_c00001{bottom:385.960000pt;}
.y581_c00001{bottom:386.280000pt;}
.y35_c00001{bottom:386.600000pt;}
.yfa7_c00001{bottom:386.601600pt;}
.y2e4_c00001{bottom:386.920000pt;}
.yc98_c00001{bottom:386.921600pt;}
.ya33_c00001{bottom:387.240000pt;}
.yf56_c00001{bottom:387.241600pt;}
.y24b_c00001{bottom:387.560000pt;}
.y792_c00001{bottom:387.880000pt;}
.y1034_c00001{bottom:387.884160pt;}
.y15_c00001{bottom:388.200000pt;}
.ye9c_c00001{bottom:388.519040pt;}
.y1f3_c00001{bottom:388.520000pt;}
.ydc2_c00001{bottom:388.524160pt;}
.y32a_c00001{bottom:388.839040pt;}
.y18a_c00001{bottom:388.840000pt;}
.y99c_c00001{bottom:389.160000pt;}
.ydf9_c00001{bottom:389.164160pt;}
.y8a5_c00001{bottom:389.464000pt;}
.ye80_c00001{bottom:389.478080pt;}
.ya49_c00001{bottom:389.479040pt;}
.y490_c00001{bottom:389.480000pt;}
.ye77_c00001{bottom:389.483200pt;}
.ya22_c00001{bottom:389.486400pt;}
.yd24_c00001{bottom:389.516480pt;}
.y4ce_c00001{bottom:389.795840pt;}
.yde3_c00001{bottom:389.799040pt;}
.y1b3_c00001{bottom:389.800000pt;}
.yff7_c00001{bottom:389.803200pt;}
.yb96_c00001{bottom:389.843200pt;}
.y77c_c00001{bottom:390.120000pt;}
.y2c8_c00001{bottom:390.440000pt;}
.y5b4_c00001{bottom:390.760000pt;}
.y9b2_c00001{bottom:391.065600pt;}
.y67b_c00001{bottom:391.080000pt;}
.y3a5_c00001{bottom:391.397760pt;}
.y658_c00001{bottom:391.400000pt;}
.y910_c00001{bottom:391.401600pt;}
.y5c9_c00001{bottom:391.720000pt;}
.ycc3_c00001{bottom:392.040000pt;}
.y503_c00001{bottom:392.360000pt;}
.y502_c00001{bottom:392.361600pt;}
.y86a_c00001{bottom:392.391360pt;}
.y6d7_c00001{bottom:392.672000pt;}
.yd8d_c00001{bottom:392.679040pt;}
.yb7c_c00001{bottom:392.679680pt;}
.y271_c00001{bottom:392.680000pt;}
.y270_c00001{bottom:392.681600pt;}
.y582_c00001{bottom:393.000000pt;}
.ybdd_c00001{bottom:393.320000pt;}
.y6b8_c00001{bottom:393.640000pt;}
.yc4c_c00001{bottom:393.958720pt;}
.y309_c00001{bottom:393.960000pt;}
.y1025_c00001{bottom:394.280000pt;}
.y3f8_c00001{bottom:394.600000pt;}
.y5f4_c00001{bottom:394.920000pt;}
.y8f7_c00001{bottom:395.240000pt;}
.y18b_c00001{bottom:395.560000pt;}
.ye6f_c00001{bottom:395.564160pt;}
.yd02_c00001{bottom:395.575040pt;}
.ya9f_c00001{bottom:395.879040pt;}
.ye0c_c00001{bottom:395.880000pt;}
.ya8b_c00001{bottom:396.199040pt;}
.y459_c00001{bottom:396.200000pt;}
.y81a_c00001{bottom:396.520000pt;}
.yc04_c00001{bottom:396.521600pt;}
.y438_c00001{bottom:396.836480pt;}
.y242_c00001{bottom:396.840000pt;}
.yc26_c00001{bottom:397.160000pt;}
.y10aa_c00001{bottom:397.480000pt;}
.y152_c00001{bottom:397.800000pt;}
.yfd4_c00001{bottom:397.801600pt;}
.y83d_c00001{bottom:398.119040pt;}
.y56d_c00001{bottom:398.120000pt;}
.ye5d_c00001{bottom:398.440000pt;}
.y38f_c00001{bottom:398.760000pt;}
.y517_c00001{bottom:399.080000pt;}
.y543_c00001{bottom:399.396480pt;}
.y7bf_c00001{bottom:399.400000pt;}
.y639_c00001{bottom:399.720000pt;}
.y932_c00001{bottom:400.359040pt;}
.yd8_c00001{bottom:400.360000pt;}
.y7f4_c00001{bottom:400.360640pt;}
.y10e2_c00001{bottom:400.361600pt;}
.y51c_c00001{bottom:400.680000pt;}
.y10d0_c00001{bottom:400.995520pt;}
.y97d_c00001{bottom:401.000000pt;}
.y87_c00001{bottom:401.320000pt;}
.y169_c00001{bottom:401.640000pt;}
.y765_c00001{bottom:402.280000pt;}
.yfa6_c00001{bottom:402.281600pt;}
.y4bc_c00001{bottom:402.600000pt;}
.y5e_c00001{bottom:402.920000pt;}
.y10b7_c00001{bottom:402.921600pt;}
.yf44_c00001{bottom:403.240000pt;}
.ybc5_c00001{bottom:403.302267pt;}
.yc23_c00001{bottom:403.560000pt;}
.ycdd_c00001{bottom:403.880000pt;}
.y5e2_c00001{bottom:404.200000pt;}
.y1044_c00001{bottom:404.520000pt;}
.y56e_c00001{bottom:404.840000pt;}
.ya6c_c00001{bottom:404.847360pt;}
.y352_c00001{bottom:405.160000pt;}
.y351_c00001{bottom:405.160640pt;}
.y722_c00001{bottom:405.480000pt;}
.y2e3_c00001{bottom:405.800000pt;}
.y292_c00001{bottom:406.120000pt;}
.yce1_c00001{bottom:406.124160pt;}
.yfc_c00001{bottom:406.440000pt;}
.y967_c00001{bottom:406.758080pt;}
.y1de_c00001{bottom:406.760000pt;}
.y36b_c00001{bottom:406.764160pt;}
.y3a4_c00001{bottom:407.076160pt;}
.yd7a_c00001{bottom:407.078080pt;}
.yf1b_c00001{bottom:407.079680pt;}
.y2a6_c00001{bottom:407.080000pt;}
.yc25_c00001{bottom:407.081600pt;}
.y48f_c00001{bottom:408.040000pt;}
.y1097_c00001{bottom:408.041600pt;}
.yb7b_c00001{bottom:408.358080pt;}
.y26f_c00001{bottom:408.360000pt;}
.y26e_c00001{bottom:408.361600pt;}
.yf7a_c00001{bottom:408.680000pt;}
.yf79_c00001{bottom:408.681600pt;}
.ya08_c00001{bottom:408.682240pt;}
.y189_c00001{bottom:409.000000pt;}
.yad3_c00001{bottom:409.004160pt;}
.ya32_c00001{bottom:409.319040pt;}
.y3dd_c00001{bottom:409.320000pt;}
.yc4b_c00001{bottom:409.637120pt;}
.y752_c00001{bottom:409.640000pt;}
.y67a_c00001{bottom:409.960000pt;}
.yf68_c00001{bottom:410.280000pt;}
.y5fe_c00001{bottom:410.600000pt;}
.y8f6_c00001{bottom:410.601600pt;}
.y329_c00001{bottom:410.920000pt;}
.ydc1_c00001{bottom:410.924160pt;}
.yb95_c00001{bottom:410.966400pt;}
.y1f2_c00001{bottom:411.240000pt;}
.yab9_c00001{bottom:411.240320pt;}
.ye26_c00001{bottom:411.559040pt;}
.ya48_c00001{bottom:411.560000pt;}
.ye76_c00001{bottom:411.564160pt;}
.ye15_c00001{bottom:411.566400pt;}
.ya21_c00001{bottom:411.567360pt;}
.yd23_c00001{bottom:411.597440pt;}
.ycee_c00001{bottom:411.880000pt;}
.yde2_c00001{bottom:411.884160pt;}
.y2b1_c00001{bottom:412.200000pt;}
.y437_c00001{bottom:412.201600pt;}
.y3cb_c00001{bottom:412.520000pt;}
.yc7b_c00001{bottom:412.840000pt;}
.yf0a_c00001{bottom:412.844160pt;}
.y3f7_c00001{bottom:413.160000pt;}
.yfd3_c00001{bottom:413.479040pt;}
.y5d5_c00001{bottom:413.480000pt;}
.y5f3_c00001{bottom:413.800000pt;}
.y9f3_c00001{bottom:414.120000pt;}
.y422_c00001{bottom:414.440000pt;}
.yd8c_c00001{bottom:414.759040pt;}
.y542_c00001{bottom:414.760000pt;}
.ydcc_c00001{bottom:414.766400pt;}
.y1b2_c00001{bottom:415.080000pt;}
.y241_c00001{bottom:415.400000pt;}
.y124_c00001{bottom:416.040000pt;}
.y744_c00001{bottom:416.360000pt;}
.y21c_c00001{bottom:416.680000pt;}
.yea7_c00001{bottom:417.316480pt;}
.y46e_c00001{bottom:417.320000pt;}
.y1a1_c00001{bottom:417.640000pt;}
.yfa5_c00001{bottom:417.956480pt;}
.ya9e_c00001{bottom:417.960000pt;}
.ye0b_c00001{bottom:417.964160pt;}
.yd01_c00001{bottom:417.970880pt;}
.y8a4_c00001{bottom:418.262400pt;}
.y887_c00001{bottom:418.280000pt;}
.yd9f_c00001{bottom:418.284160pt;}
.y10b6_c00001{bottom:418.596480pt;}
.yebb_c00001{bottom:418.600000pt;}
.y34_c00001{bottom:418.920000pt;}
.yef5_c00001{bottom:419.240000pt;}
.y308_c00001{bottom:419.246400pt;}
.y24a_c00001{bottom:419.560000pt;}
.y597_c00001{bottom:419.880000pt;}
.y14_c00001{bottom:420.200000pt;}
.y657_c00001{bottom:420.520000pt;}
.ye5c_c00001{bottom:420.839040pt;}
.ycbe_c00001{bottom:420.840000pt;}
.y9b1_c00001{bottom:421.147200pt;}
.y38e_c00001{bottom:421.160000pt;}
.y8ef_c00001{bottom:421.480000pt;}
.yb0_c00001{bottom:421.800000pt;}
.y77b_c00001{bottom:422.120000pt;}
.y966_c00001{bottom:422.121600pt;}
.y2c7_c00001{bottom:422.440000pt;}
.y7f3_c00001{bottom:422.441600pt;}
.y6d6_c00001{bottom:422.753600pt;}
.y3a3_c00001{bottom:422.754560pt;}
.y90f_c00001{bottom:422.756480pt;}
.yf1a_c00001{bottom:422.758080pt;}
.y47d_c00001{bottom:422.760000pt;}
.y51b_c00001{bottom:423.080000pt;}
.y8b7_c00001{bottom:423.400000pt;}
.y56c_c00001{bottom:423.720000pt;}
.y1096_c00001{bottom:423.721600pt;}
.yb7a_c00001{bottom:424.036480pt;}
.y5c8_c00001{bottom:424.040000pt;}
.ybc4_c00001{bottom:424.097467pt;}
.yf78_c00001{bottom:424.359680pt;}
.y2e2_c00001{bottom:424.360000pt;}
.y10a9_c00001{bottom:424.680000pt;}
.y10a8_c00001{bottom:424.684160pt;}
.y638_c00001{bottom:425.000000pt;}
.yc4a_c00001{bottom:425.000640pt;}
.yeda_c00001{bottom:425.001600pt;}
.y1dd_c00001{bottom:425.320000pt;}
.yd7_c00001{bottom:425.640000pt;}
.y101a_c00001{bottom:425.960000pt;}
.y8f4_c00001{bottom:426.276480pt;}
.y8f5_c00001{bottom:426.280000pt;}
.y7ce_c00001{bottom:426.600000pt;}
.y68c_c00001{bottom:426.920000pt;}
.yf43_c00001{bottom:426.921600pt;}
.yd51_c00001{bottom:426.924160pt;}
.y188_c00001{bottom:427.240000pt;}
.ya6b_c00001{bottom:427.243200pt;}
.yb73_c00001{bottom:427.556480pt;}
.y617_c00001{bottom:427.560000pt;}
.y435_c00001{bottom:427.879680pt;}
.y436_c00001{bottom:427.880000pt;}
.y702_c00001{bottom:428.200000pt;}
.y679_c00001{bottom:428.520000pt;}
.yc22_c00001{bottom:428.840000pt;}
.y369_c00001{bottom:429.155520pt;}
.y36a_c00001{bottom:429.160000pt;}
.y26d_c00001{bottom:429.480000pt;}
.yd35_c00001{bottom:429.482240pt;}
.y34f_c00001{bottom:429.795520pt;}
.y350_c00001{bottom:429.800000pt;}
.y4e9_c00001{bottom:430.120000pt;}
.yc03_c00001{bottom:430.435520pt;}
.y501_c00001{bottom:430.440000pt;}
.y541_c00001{bottom:430.760000pt;}
.ya07_c00001{bottom:430.763200pt;}
.y869_c00001{bottom:430.787520pt;}
.yfb_c00001{bottom:431.080000pt;}
.y291_c00001{bottom:431.396160pt;}
.y7be_c00001{bottom:431.400000pt;}
.yfb3_c00001{bottom:431.720000pt;}
.yb94_c00001{bottom:431.761600pt;}
.y5d4_c00001{bottom:432.040000pt;}
.y5f2_c00001{bottom:432.360000pt;}
.yece_c00001{bottom:432.676480pt;}
.y9f2_c00001{bottom:432.680000pt;}
.yea6_c00001{bottom:432.681600pt;}
.y891_c00001{bottom:432.998400pt;}
.ye9b_c00001{bottom:432.999040pt;}
.y4f3_c00001{bottom:433.316480pt;}
.y86_c00001{bottom:433.320000pt;}
.yab8_c00001{bottom:433.636160pt;}
.y168_c00001{bottom:433.640000pt;}
.yfc2_c00001{bottom:433.641600pt;}
.yd41_c00001{bottom:433.644160pt;}
.yaf2_c00001{bottom:433.650560pt;}
.ye3c_c00001{bottom:433.959040pt;}
.y1f1_c00001{bottom:433.960000pt;}
.y10b5_c00001{bottom:433.961600pt;}
.yae4_c00001{bottom:433.962240pt;}
.ya20_c00001{bottom:433.963200pt;}
.ya58_c00001{bottom:433.966400pt;}
.yd22_c00001{bottom:433.993280pt;}
.yff6_c00001{bottom:434.279040pt;}
.y240_c00001{bottom:434.280000pt;}
.yca4_c00001{bottom:434.600000pt;}
.y5d_c00001{bottom:434.920000pt;}
.y3dc_c00001{bottom:435.240000pt;}
.yf09_c00001{bottom:435.244160pt;}
.y327_c00001{bottom:435.559040pt;}
.y328_c00001{bottom:435.560000pt;}
.y5fd_c00001{bottom:435.880000pt;}
.y1a0_c00001{bottom:436.200000pt;}
.y1043_c00001{bottom:436.520000pt;}
.y886_c00001{bottom:436.840000pt;}
.ydcb_c00001{bottom:436.847360pt;}
.y580_c00001{bottom:437.480000pt;}
.y964_c00001{bottom:437.798080pt;}
.y965_c00001{bottom:437.800000pt;}
.y3a2_c00001{bottom:438.118080pt;}
.y931_c00001{bottom:438.119040pt;}
.y7f2_c00001{bottom:438.119680pt;}
.y90e_c00001{bottom:438.120000pt;}
.y90d_c00001{bottom:438.121600pt;}
.y6c0_c00001{bottom:438.440000pt;}
.y3f6_c00001{bottom:438.760000pt;}
.y5b3_c00001{bottom:439.080000pt;}
.y1095_c00001{bottom:439.398080pt;}
.y3bf_c00001{bottom:439.400000pt;}
.y26c_c00001{bottom:439.401600pt;}
.y764_c00001{bottom:439.720000pt;}
.y48e_c00001{bottom:440.040000pt;}
.ye6e_c00001{bottom:440.047360pt;}
.yd00_c00001{bottom:440.051840pt;}
.ya9d_c00001{bottom:440.359040pt;}
.yaf_c00001{bottom:440.360000pt;}
.yed9_c00001{bottom:440.676480pt;}
.ya8a_c00001{bottom:440.679040pt;}
.yc21_c00001{bottom:440.680000pt;}
.yf55_c00001{bottom:440.681600pt;}
.ydf2_c00001{bottom:440.682240pt;}
.y2c6_c00001{bottom:441.320000pt;}
.y751_c00001{bottom:441.640000pt;}
.y596_c00001{bottom:442.280000pt;}
.y46d_c00001{bottom:442.600000pt;}
.ydaf_c00001{bottom:442.604160pt;}
.y306_c00001{bottom:442.915200pt;}
.y2e1_c00001{bottom:442.920000pt;}
.yb72_c00001{bottom:442.922880pt;}
.y10cf_c00001{bottom:443.239040pt;}
.y414_c00001{bottom:443.240000pt;}
.y434_c00001{bottom:443.243200pt;}
.yd79_c00001{bottom:443.560000pt;}
.y1dc_c00001{bottom:444.200000pt;}
.y721_c00001{bottom:444.520000pt;}
.ybc3_c00001{bottom:444.892667pt;}
.y7a7_c00001{bottom:445.160000pt;}
.y5c7_c00001{bottom:445.480000pt;}
.y151_c00001{bottom:445.800000pt;}
.y616_c00001{bottom:446.120000pt;}
.y38d_c00001{bottom:446.440000pt;}
.y290_c00001{bottom:446.759680pt;}
.y4bb_c00001{bottom:446.760000pt;}
.y10a7_c00001{bottom:447.079040pt;}
.y1b1_c00001{bottom:447.080000pt;}
.yf77_c00001{bottom:447.083520pt;}
.y8a3_c00001{bottom:447.388800pt;}
.yec7_c00001{bottom:447.400000pt;}
.yecd_c00001{bottom:448.040000pt;}
.y72b_c00001{bottom:448.360000pt;}
.yea5_c00001{bottom:448.363200pt;}
.y21b_c00001{bottom:448.680000pt;}
.y307_c00001{bottom:449.000000pt;}
.ya75_c00001{bottom:449.320000pt;}
.ya6a_c00001{bottom:449.324160pt;}
.yfa_c00001{bottom:449.640000pt;}
.ycd9_c00001{bottom:449.641600pt;}
.y9e3_c00001{bottom:449.957120pt;}
.y249_c00001{bottom:449.960000pt;}
.y637_c00001{bottom:450.280000pt;}
.yeba_c00001{bottom:450.600000pt;}
.y33_c00001{bottom:450.920000pt;}
.y9b0_c00001{bottom:451.228800pt;}
.y6b7_c00001{bottom:451.240000pt;}
.y9f1_c00001{bottom:451.560000pt;}
.yd34_c00001{bottom:451.563200pt;}
.y4cd_c00001{bottom:451.880000pt;}
.y4a0_c00001{bottom:452.200000pt;}
.y13_c00001{bottom:452.520000pt;}
.yb93_c00001{bottom:452.556800pt;}
.y6d5_c00001{bottom:452.835200pt;}
.y819_c00001{bottom:452.840000pt;}
.ya06_c00001{bottom:453.159040pt;}
.y84c_c00001{bottom:453.160000pt;}
.y963_c00001{bottom:453.476480pt;}
.y123_c00001{bottom:453.480000pt;}
.y368_c00001{bottom:453.481280pt;}
.y3a1_c00001{bottom:453.796480pt;}
.y7f1_c00001{bottom:453.798080pt;}
.y678_c00001{bottom:453.800000pt;}
.y34d_c00001{bottom:454.119040pt;}
.y34e_c00001{bottom:454.120000pt;}
.y1024_c00001{bottom:454.440000pt;}
.yc02_c00001{bottom:454.760000pt;}
.yc01_c00001{bottom:454.760640pt;}
.y1094_c00001{bottom:454.761600pt;}
.y19f_c00001{bottom:455.080000pt;}
.y26b_c00001{bottom:455.080320pt;}
.ye9a_c00001{bottom:455.084160pt;}
.y4e8_c00001{bottom:455.400000pt;}
.ydc0_c00001{bottom:455.719040pt;}
.y885_c00001{bottom:455.720000pt;}
.yd40_c00001{bottom:456.039040pt;}
.ya47_c00001{bottom:456.040000pt;}
.yed8_c00001{bottom:456.041600pt;}
.ye25_c00001{bottom:456.042240pt;}
.yae3_c00001{bottom:456.043200pt;}
.ya1f_c00001{bottom:456.044160pt;}
.yaf1_c00001{bottom:456.046400pt;}
.ya57_c00001{bottom:456.047360pt;}
.yd21_c00001{bottom:456.074240pt;}
.yb00_c00001{bottom:456.360000pt;}
.yde1_c00001{bottom:456.364160pt;}
.y1f0_c00001{bottom:456.680000pt;}
.yc83_c00001{bottom:457.000000pt;}
.y51a_c00001{bottom:457.320000pt;}
.yd6_c00001{bottom:457.640000pt;}
.y326_c00001{bottom:457.644160pt;}
.yfd2_c00001{bottom:457.960000pt;}
.yab7_c00001{bottom:457.960640pt;}
.y763_c00001{bottom:458.280000pt;}
.y99b_c00001{bottom:458.600000pt;}
.yb71_c00001{bottom:458.601280pt;}
.y538_c00001{bottom:458.919040pt;}
.y3b6_c00001{bottom:458.920000pt;}
.y433_c00001{bottom:458.921600pt;}
.y187_c00001{bottom:459.240000pt;}
.ydca_c00001{bottom:459.243200pt;}
.y6fa_c00001{bottom:459.560000pt;}
.y47c_c00001{bottom:459.880000pt;}
.y3db_c00001{bottom:460.200000pt;}
.y930_c00001{bottom:460.200640pt;}
.yb79_c00001{bottom:460.520000pt;}
.y540_c00001{bottom:461.160000pt;}
.y2c5_c00001{bottom:461.480000pt;}
.y890_c00001{bottom:461.796800pt;}
.y2e0_c00001{bottom:461.800000pt;}
.y623_c00001{bottom:462.120000pt;}
.y28f_c00001{bottom:462.438080pt;}
.ya9c_c00001{bottom:462.440000pt;}
.ye6d_c00001{bottom:462.443200pt;}
.ye0a_c00001{bottom:462.444160pt;}
.ycff_c00001{bottom:462.447680pt;}
.y720_c00001{bottom:462.760000pt;}
.yc49_c00001{bottom:462.761600pt;}
.yd9e_c00001{bottom:462.763200pt;}
.y2b0_c00001{bottom:463.080000pt;}
.y3f5_c00001{bottom:464.040000pt;}
.y5f1_c00001{bottom:464.360000pt;}
.y500_c00001{bottom:464.680000pt;}
.yf42_c00001{bottom:464.681600pt;}
.y5b2_c00001{bottom:465.000000pt;}
.y6a1_c00001{bottom:465.319040pt;}
.y10ce_c00001{bottom:465.319360pt;}
.y85_c00001{bottom:465.320000pt;}
.y167_c00001{bottom:465.640000pt;}
.y458_c00001{bottom:465.960000pt;}
.ybc2_c00001{bottom:466.015867pt;}
.y23f_c00001{bottom:466.280000pt;}
.y1058_c00001{bottom:466.600000pt;}
.y5c_c00001{bottom:466.920000pt;}
.y305_c00001{bottom:466.926400pt;}
.yd78_c00001{bottom:467.240000pt;}
.yb0d_c00001{bottom:467.560000pt;}
.y83c_c00001{bottom:467.880000pt;}
.yf9_c00001{bottom:468.200000pt;}
.y3ca_c00001{bottom:468.520000pt;}
.yf76_c00001{bottom:468.521600pt;}
.y962_c00001{bottom:468.840000pt;}
.y961_c00001{bottom:468.841600pt;}
.y868_c00001{bottom:468.866880pt;}
.y57f_c00001{bottom:469.160000pt;}
.y90c_c00001{bottom:469.161600pt;}
.yc24_c00001{bottom:469.476480pt;}
.y1004_c00001{bottom:469.480000pt;}
.y661_c00001{bottom:469.800000pt;}
.y38c_c00001{bottom:470.119040pt;}
.y9f0_c00001{bottom:470.120000pt;}
.y5c6_c00001{bottom:470.440000pt;}
.y26a_c00001{bottom:470.443840pt;}
.yea4_c00001{bottom:470.444160pt;}
.y150_c00001{bottom:471.080000pt;}
.y818_c00001{bottom:471.400000pt;}
.yed7_c00001{bottom:471.716480pt;}
.y7f0_c00001{bottom:471.719040pt;}
.y421_c00001{bottom:471.720000pt;}
.ya74_c00001{bottom:471.722240pt;}
.y9e2_c00001{bottom:472.038080pt;}
.yae_c00001{bottom:472.360000pt;}
.yc20_c00001{bottom:472.680000pt;}
.y8f2_c00001{bottom:472.996480pt;}
.y8f3_c00001{bottom:473.000000pt;}
.y10c6_c00001{bottom:473.320000pt;}
.yb92_c00001{bottom:473.352000pt;}
.yf08_c00001{bottom:473.639040pt;}
.y19e_c00001{bottom:473.640000pt;}
.yd33_c00001{bottom:473.644160pt;}
.y4e7_c00001{bottom:473.960000pt;}
.yb70_c00001{bottom:474.279680pt;}
.y884_c00001{bottom:474.280000pt;}
.y3a0_c00001{bottom:474.600000pt;}
.y516_c00001{bottom:474.920000pt;}
.y1078_c00001{bottom:474.924160pt;}
.ya05_c00001{bottom:475.240000pt;}
.y1131_c00001{bottom:475.560000pt;}
.yad2_c00001{bottom:475.879040pt;}
.y970_c00001{bottom:475.880000pt;}
.ya31_c00001{bottom:475.880640pt;}
.y8a2_c00001{bottom:476.187200pt;}
.y1db_c00001{bottom:476.200000pt;}
.y367_c00001{bottom:476.520000pt;}
.y413_c00001{bottom:477.160000pt;}
.y48d_c00001{bottom:477.480000pt;}
.yd75_c00001{bottom:477.799040pt;}
.ydbf_c00001{bottom:477.800000pt;}
.yd60_c00001{bottom:477.804160pt;}
.ydbe_c00001{bottom:477.806400pt;}
.y28e_c00001{bottom:478.116480pt;}
.yd3f_c00001{bottom:478.120000pt;}
.ye24_c00001{bottom:478.123200pt;}
.yd3e_c00001{bottom:478.124160pt;}
.ye30_c00001{bottom:478.126400pt;}
.yaf0_c00001{bottom:478.127360pt;}
.ye89_c00001{bottom:478.131520pt;}
.ya46_c00001{bottom:478.439040pt;}
.ya1e_c00001{bottom:478.440000pt;}
.yc48_c00001{bottom:478.441600pt;}
.ye3b_c00001{bottom:478.442240pt;}
.ya56_c00001{bottom:478.443200pt;}
.yd20_c00001{bottom:478.470080pt;}
.y47b_c00001{bottom:478.760000pt;}
.y6ad_c00001{bottom:479.080000pt;}
.y1ef_c00001{bottom:479.400000pt;}
.yc00_c00001{bottom:479.406080pt;}
.y324_c00001{bottom:480.039040pt;}
.y325_c00001{bottom:480.040000pt;}
.yfd1_c00001{bottom:480.044160pt;}
.yf41_c00001{bottom:480.355520pt;}
.y2df_c00001{bottom:480.360000pt;}
.y21a_c00001{bottom:480.680000pt;}
.y537_c00001{bottom:481.000000pt;}
.y536_c00001{bottom:481.001600pt;}
.yce6_c00001{bottom:481.320000pt;}
.ydc9_c00001{bottom:481.324160pt;}
.y9af_c00001{bottom:481.627200pt;}
.y2c4_c00001{bottom:481.640000pt;}
.y71f_c00001{bottom:481.960000pt;}
.y8d0_c00001{bottom:482.280000pt;}
.y7cd_c00001{bottom:482.600000pt;}
.y32_c00001{bottom:482.920000pt;}
.y6d4_c00001{bottom:483.233600pt;}
.y457_c00001{bottom:483.240000pt;}
.y10cd_c00001{bottom:483.241280pt;}
.y456_c00001{bottom:483.246400pt;}
.y615_c00001{bottom:483.560000pt;}
.y4ba_c00001{bottom:483.880000pt;}
.y1b0_c00001{bottom:484.200000pt;}
.yf75_c00001{bottom:484.204160pt;}
.y12_c00001{bottom:484.520000pt;}
.y6f9_c00001{bottom:484.521600pt;}
.ya9b_c00001{bottom:484.524160pt;}
.ycfe_c00001{bottom:484.528640pt;}
.ye09_c00001{bottom:484.839040pt;}
.y23e_c00001{bottom:484.840000pt;}
.y92f_c00001{bottom:484.846080pt;}
.ya88_c00001{bottom:485.159040pt;}
.ya89_c00001{bottom:485.160000pt;}
.y3da_c00001{bottom:485.161600pt;}
.y7de_c00001{bottom:485.800000pt;}
.yecc_c00001{bottom:485.801600pt;}
.y203_c00001{bottom:486.120000pt;}
.y3f4_c00001{bottom:486.440000pt;}
.y4f2_c00001{bottom:486.441600pt;}
.ybc1_c00001{bottom:486.811067pt;}
.yf8_c00001{bottom:487.080000pt;}
.y269_c00001{bottom:487.083840pt;}
.ydae_c00001{bottom:487.084160pt;}
.y6a0_c00001{bottom:487.400000pt;}
.ye5b_c00001{bottom:487.408320pt;}
.yc8b_c00001{bottom:487.720000pt;}
.yf54_c00001{bottom:488.040000pt;}
.y660_c00001{bottom:488.360000pt;}
.yb26_c00001{bottom:488.680000pt;}
.y9d9_c00001{bottom:489.320000pt;}
.yd5_c00001{bottom:489.640000pt;}
.yb6f_c00001{bottom:489.643200pt;}
.y9e1_c00001{bottom:489.955520pt;}
.y817_c00001{bottom:489.960000pt;}
.y762_c00001{bottom:490.280000pt;}
.y304_c00001{bottom:490.600000pt;}
.yad_c00001{bottom:490.920000pt;}
.y88f_c00001{bottom:490.923200pt;}
.y186_c00001{bottom:491.240000pt;}
.yc1f_c00001{bottom:491.560000pt;}
.y1057_c00001{bottom:491.880000pt;}
.y5b_c00001{bottom:492.197760pt;}
.y38b_c00001{bottom:492.199680pt;}
.y19d_c00001{bottom:492.200000pt;}
.y701_c00001{bottom:492.520000pt;}
.y4e6_c00001{bottom:492.840000pt;}
.yced_c00001{bottom:492.841600pt;}
.y83b_c00001{bottom:493.160000pt;}
.y28d_c00001{bottom:493.480000pt;}
.y7ef_c00001{bottom:493.800000pt;}
.y7ee_c00001{bottom:493.801600pt;}
.ya73_c00001{bottom:493.803200pt;}
.ya69_c00001{bottom:493.804160pt;}
.yc47_c00001{bottom:494.116480pt;}
.y622_c00001{bottom:494.120000pt;}
.yde0_c00001{bottom:494.124160pt;}
.y96f_c00001{bottom:494.440000pt;}
.yb91_c00001{bottom:494.475200pt;}
.y1da_c00001{bottom:494.760000pt;}
.y2a5_c00001{bottom:495.080000pt;}
.y9ef_c00001{bottom:495.400000pt;}
.y5c5_c00001{bottom:495.720000pt;}
.yf07_c00001{bottom:495.724160pt;}
.y7a6_c00001{bottom:496.040000pt;}
.y5f0_c00001{bottom:496.360000pt;}
.y535_c00001{bottom:496.680000pt;}
.y432_c00001{bottom:497.000000pt;}
.ybff_c00001{bottom:497.001600pt;}
.y1077_c00001{bottom:497.319040pt;}
.y84_c00001{bottom:497.320000pt;}
.y166_c00001{bottom:497.640000pt;}
.yad1_c00001{bottom:497.960000pt;}
.yad0_c00001{bottom:497.963200pt;}
.y13d_c00001{bottom:498.920000pt;}
.y9cf_c00001{bottom:499.240000pt;}
.y883_c00001{bottom:499.247360pt;}
.y219_c00001{bottom:499.560000pt;}
.y1030_c00001{bottom:499.561600pt;}
.ye99_c00001{bottom:499.566720pt;}
.yd74_c00001{bottom:499.880000pt;}
.yee4_c00001{bottom:499.881600pt;}
.yd73_c00001{bottom:499.888320pt;}
.y960_c00001{bottom:500.196480pt;}
.yfa4_c00001{bottom:500.199040pt;}
.y515_c00001{bottom:500.200000pt;}
.ydbd_c00001{bottom:500.202240pt;}
.ye23_c00001{bottom:500.204160pt;}
.ye2f_c00001{bottom:500.207360pt;}
.y90b_c00001{bottom:500.518720pt;}
.ye7f_c00001{bottom:500.519040pt;}
.y39f_c00001{bottom:500.520000pt;}
.yaef_c00001{bottom:500.523200pt;}
.ya1d_c00001{bottom:500.524160pt;}
.yd8b_c00001{bottom:500.525440pt;}
.ye88_c00001{bottom:500.527360pt;}
.yd1f_c00001{bottom:500.551040pt;}
.y3d9_c00001{bottom:500.840000pt;}
.y7cc_c00001{bottom:501.160000pt;}
.y5d3_c00001{bottom:501.480000pt;}
.y68b_c00001{bottom:501.800000pt;}
.y1ee_c00001{bottom:502.120000pt;}
.y323_c00001{bottom:502.124160pt;}
.yfd0_c00001{bottom:502.436480pt;}
.y412_c00001{bottom:502.440000pt;}
.y48c_c00001{bottom:502.760000pt;}
.yed6_c00001{bottom:502.761600pt;}
.y14f_c00001{bottom:503.080000pt;}
.y23d_c00001{bottom:503.400000pt;}
.y268_c00001{bottom:503.720000pt;}
.y8f1_c00001{bottom:504.041600pt;}
.y122_c00001{bottom:504.360000pt;}
.yab6_c00001{bottom:504.679040pt;}
.yf40_c00001{bottom:504.680000pt;}
.y8a1_c00001{bottom:504.985600pt;}
.y1061_c00001{bottom:505.320000pt;}
.yb6e_c00001{bottom:505.321600pt;}
.yf7_c00001{bottom:505.640000pt;}
.y39e_c00001{bottom:505.960000pt;}
.ycb7_c00001{bottom:506.280000pt;}
.yce5_c00001{bottom:506.281600pt;}
.y10cc_c00001{bottom:506.284160pt;}
.yf74_c00001{bottom:506.600000pt;}
.y455_c00001{bottom:506.920000pt;}
.ycfd_c00001{bottom:506.924480pt;}
.ya87_c00001{bottom:507.240000pt;}
.y867_c00001{bottom:507.263040pt;}
.y8cf_c00001{bottom:507.560000pt;}
.ybc0_c00001{bottom:507.606267pt;}
.y5a_c00001{bottom:507.876160pt;}
.y10f8_c00001{bottom:507.880000pt;}
.yd4_c00001{bottom:508.200000pt;}
.ycec_c00001{bottom:508.520000pt;}
.yceb_c00001{bottom:508.521600pt;}
.y202_c00001{bottom:508.840000pt;}
.y267_c00001{bottom:509.160000pt;}
.y7ed_c00001{bottom:509.480000pt;}
.y7ec_c00001{bottom:509.481600pt;}
.y303_c00001{bottom:509.798400pt;}
.yac_c00001{bottom:509.800000pt;}
.y69f_c00001{bottom:509.801280pt;}
.ye5a_c00001{bottom:509.804160pt;}
.yc1e_c00001{bottom:510.120000pt;}
.y10c5_c00001{bottom:510.440000pt;}
.y5e1_c00001{bottom:510.760000pt;}
.y6ac_c00001{bottom:511.080000pt;}
.y4e5_c00001{bottom:511.400000pt;}
.y9ae_c00001{bottom:511.708800pt;}
.y3f3_c00001{bottom:511.720000pt;}
.y2de_c00001{bottom:512.360000pt;}
.ybfe_c00001{bottom:512.680000pt;}
.y1130_c00001{bottom:513.000000pt;}
.y6d3_c00001{bottom:513.315200pt;}
.y1d9_c00001{bottom:513.320000pt;}
.y2a4_c00001{bottom:513.640000pt;}
.y7bd_c00001{bottom:513.960000pt;}
.y9e0_c00001{bottom:514.280000pt;}
.y9df_c00001{bottom:514.284160pt;}
.y38a_c00001{bottom:514.595520pt;}
.ybe3_c00001{bottom:514.600000pt;}
.y6bf_c00001{bottom:514.604800pt;}
.y31_c00001{bottom:514.920000pt;}
.y102f_c00001{bottom:515.239680pt;}
.yef4_c00001{bottom:515.240000pt;}
.yb90_c00001{bottom:515.270400pt;}
.yee3_c00001{bottom:515.554240pt;}
.y5b1_c00001{bottom:515.560000pt;}
.y95f_c00001{bottom:515.561600pt;}
.y28b_c00001{bottom:515.876480pt;}
.y28c_c00001{bottom:515.880000pt;}
.yd50_c00001{bottom:515.883200pt;}
.ya72_c00001{bottom:516.199040pt;}
.y47a_c00001{bottom:516.200000pt;}
.yff4_c00001{bottom:516.201600pt;}
.y185_c00001{bottom:516.518080pt;}
.y11_c00001{bottom:516.520000pt;}
.y90a_c00001{bottom:516.833600pt;}
.y795_c00001{bottom:516.840000pt;}
.y100e_c00001{bottom:517.160000pt;}
.y9d8_c00001{bottom:517.480000pt;}
.y5c4_c00001{bottom:517.800000pt;}
.yf06_c00001{bottom:518.119040pt;}
.y77a_c00001{bottom:518.120000pt;}
.y1093_c00001{bottom:518.126080pt;}
.yed5_c00001{bottom:518.436480pt;}
.y5fc_c00001{bottom:518.440000pt;}
.y1023_c00001{bottom:518.756480pt;}
.y83a_c00001{bottom:518.760000pt;}
.y534_c00001{bottom:519.080000pt;}
.y46c_c00001{bottom:519.400000pt;}
.y1076_c00001{bottom:519.404160pt;}
.y266_c00001{bottom:519.718080pt;}
.y595_c00001{bottom:519.720000pt;}
.y88e_c00001{bottom:519.721600pt;}
.y5d2_c00001{bottom:520.040000pt;}
.y92e_c00001{bottom:520.358080pt;}
.yacf_c00001{bottom:520.359040pt;}
.y65f_c00001{bottom:520.360000pt;}
.y84b_c00001{bottom:520.364480pt;}
.yf3d_c00001{bottom:520.680000pt;}
.yb6d_c00001{bottom:520.998080pt;}
.y411_c00001{bottom:521.000000pt;}
.y4b9_c00001{bottom:521.320000pt;}
.y97b_c00001{bottom:521.640000pt;}
.y882_c00001{bottom:521.643200pt;}
.ye98_c00001{bottom:521.647680pt;}
.yce4_c00001{bottom:521.960000pt;}
.y23c_c00001{bottom:522.280000pt;}
.ydbc_c00001{bottom:522.283200pt;}
.yd72_c00001{bottom:522.284160pt;}
.yd5f_c00001{bottom:522.599040pt;}
.ye22_c00001{bottom:522.600000pt;}
.ye2e_c00001{bottom:522.603200pt;}
.yaee_c00001{bottom:522.604160pt;}
.ye87_c00001{bottom:522.608320pt;}
.yae2_c00001{bottom:522.919040pt;}
.y121_c00001{bottom:522.920000pt;}
.yd8a_c00001{bottom:522.921280pt;}
.y3d8_c00001{bottom:522.921600pt;}
.ya45_c00001{bottom:522.922240pt;}
.ya30_c00001{bottom:522.923200pt;}
.yd1e_c00001{bottom:522.946880pt;}
.y59_c00001{bottom:523.239680pt;}
.yfc1_c00001{bottom:523.240000pt;}
.y71d_c00001{bottom:523.560000pt;}
.ybc8_c00001{bottom:523.880000pt;}
.y743_c00001{bottom:523.881280pt;}
.yf6_c00001{bottom:524.200000pt;}
.ycea_c00001{bottom:524.201600pt;}
.y1ed_c00001{bottom:524.520000pt;}
.ycb6_c00001{bottom:524.840000pt;}
.yc46_c00001{bottom:525.156480pt;}
.y7eb_c00001{bottom:525.160000pt;}
.y69e_c00001{bottom:525.164800pt;}
.y34c_c00001{bottom:525.480000pt;}
.y514_c00001{bottom:525.800000pt;}
.ydc8_c00001{bottom:525.804160pt;}
.y621_c00001{bottom:526.120000pt;}
.y636_c00001{bottom:526.440000pt;}
.yab5_c00001{bottom:526.760000pt;}
.yb29_c00001{bottom:527.080000pt;}
.y56b_c00001{bottom:527.400000pt;}
.yeb0_c00001{bottom:527.720000pt;}
.y4cc_c00001{bottom:528.040000pt;}
.yab_c00001{bottom:528.360000pt;}
.y10cb_c00001{bottom:528.673600pt;}
.yc1d_c00001{bottom:528.680000pt;}
.ybbf_c00001{bottom:528.729467pt;}
.yf72_c00001{bottom:528.996480pt;}
.yf73_c00001{bottom:529.000000pt;}
.ya9a_c00001{bottom:529.004160pt;}
.ycfc_c00001{bottom:529.005440pt;}
.y83_c00001{bottom:529.320000pt;}
.ydf1_c00001{bottom:529.324160pt;}
.yd9d_c00001{bottom:529.327360pt;}
.y165_c00001{bottom:529.640000pt;}
.y6be_c00001{bottom:529.968320pt;}
.y48b_c00001{bottom:530.280000pt;}
.y454_c00001{bottom:530.600000pt;}
.y102e_c00001{bottom:530.603200pt;}
.y13c_c00001{bottom:530.920000pt;}
.yea3_c00001{bottom:530.924800pt;}
.y28a_c00001{bottom:531.240000pt;}
.y201_c00001{bottom:531.560000pt;}
.y96e_c00001{bottom:531.880000pt;}
.y184_c00001{bottom:531.881600pt;}
.ydad_c00001{bottom:531.884160pt;}
.y1d8_c00001{bottom:532.200000pt;}
.ye59_c00001{bottom:532.202240pt;}
.ybcd_c00001{bottom:532.520000pt;}
.y909_c00001{bottom:532.840000pt;}
.y7cb_c00001{bottom:533.160000pt;}
.yeb9_c00001{bottom:533.480000pt;}
.y8a0_c00001{bottom:533.784000pt;}
.y519_c00001{bottom:533.800000pt;}
.y301_c00001{bottom:534.115200pt;}
.y302_c00001{bottom:534.120000pt;}
.y99a_c00001{bottom:534.440000pt;}
.yfa1_c00001{bottom:534.760000pt;}
.y14e_c00001{bottom:535.080000pt;}
.y265_c00001{bottom:535.081600pt;}
.ybfd_c00001{bottom:535.400000pt;}
.y1091_c00001{bottom:535.717760pt;}
.y1092_c00001{bottom:535.720000pt;}
.y2dc_c00001{bottom:536.039040pt;}
.y2dd_c00001{bottom:536.040000pt;}
.yb8f_c00001{bottom:536.065600pt;}
.y72a_c00001{bottom:536.360000pt;}
.yb6c_c00001{bottom:536.361600pt;}
.y4e4_c00001{bottom:536.680000pt;}
.y3f2_c00001{bottom:537.320000pt;}
.yee2_c00001{bottom:537.635200pt;}
.y71e_c00001{bottom:537.640000pt;}
.y6f7_c00001{bottom:537.959680pt;}
.y6f8_c00001{bottom:537.960000pt;}
.yd4f_c00001{bottom:538.279040pt;}
.y92d_c00001{bottom:538.280000pt;}
.y92c_c00001{bottom:538.281600pt;}
.y3d7_c00001{bottom:538.600000pt;}
.y3d6_c00001{bottom:538.601600pt;}
.yddf_c00001{bottom:538.608320pt;}
.y58_c00001{bottom:538.918080pt;}
.y389_c00001{bottom:538.920000pt;}
.y388_c00001{bottom:538.920640pt;}
.y742_c00001{bottom:539.559680pt;}
.y410_c00001{bottom:539.560000pt;}
.ycd8_c00001{bottom:539.880000pt;}
.yce9_c00001{bottom:539.881600pt;}
.yd3_c00001{bottom:540.200000pt;}
.y5b0_c00001{bottom:540.520000pt;}
.y816_c00001{bottom:540.840000pt;}
.y69d_c00001{bottom:540.843200pt;}
.y420_c00001{bottom:541.160000pt;}
.y120_c00001{bottom:541.480000pt;}
.y7b0_c00001{bottom:541.800000pt;}
.ya04_c00001{bottom:541.804160pt;}
.y9ad_c00001{bottom:542.107200pt;}
.yc7a_c00001{bottom:542.120000pt;}
.yace_c00001{bottom:542.440000pt;}
.yf3c_c00001{bottom:542.760000pt;}
.y19c_c00001{bottom:543.080000pt;}
.y6d2_c00001{bottom:543.713600pt;}
.y974_c00001{bottom:543.720000pt;}
.y881_c00001{bottom:544.039040pt;}
.y57e_c00001{bottom:544.040000pt;}
.ye97_c00001{bottom:544.043520pt;}
.y46b_c00001{bottom:544.360000pt;}
.ydbb_c00001{bottom:544.679040pt;}
.y594_c00001{bottom:544.680000pt;}
.yd71_c00001{bottom:544.683200pt;}
.ye21_c00001{bottom:544.684160pt;}
.ye7e_c00001{bottom:544.999040pt;}
.y533_c00001{bottom:545.000000pt;}
.yd89_c00001{bottom:545.002240pt;}
.ya44_c00001{bottom:545.003200pt;}
.ya2f_c00001{bottom:545.004160pt;}
.ye51_c00001{bottom:545.007360pt;}
.yd1d_c00001{bottom:545.027840pt;}
.y1003_c00001{bottom:545.320000pt;}
.y866_c00001{bottom:545.342400pt;}
.y82b_c00001{bottom:545.640000pt;}
.yecb_c00001{bottom:545.956480pt;}
.y7bc_c00001{bottom:545.960000pt;}
.y4b8_c00001{bottom:546.600000pt;}
.y1051_c00001{bottom:546.916160pt;}
.y30_c00001{bottom:546.920000pt;}
.y7ea_c00001{bottom:547.238080pt;}
.y1ec_c00001{bottom:547.240000pt;}
.yff3_c00001{bottom:547.556480pt;}
.y183_c00001{bottom:547.560000pt;}
.y791_c00001{bottom:547.880000pt;}
.y8ee_c00001{bottom:548.196160pt;}
.y479_c00001{bottom:548.200000pt;}
.y10_c00001{bottom:548.520000pt;}
.y322_c00001{bottom:548.840000pt;}
.y100d_c00001{bottom:549.160000pt;}
.yab4_c00001{bottom:549.161600pt;}
.y569_c00001{bottom:549.473600pt;}
.y56a_c00001{bottom:549.480000pt;}
.ybbe_c00001{bottom:549.524667pt;}
.y7dd_c00001{bottom:549.800000pt;}
.y1022_c00001{bottom:549.801600pt;}
.y779_c00001{bottom:550.120000pt;}
.y5fb_c00001{bottom:550.440000pt;}
.y1d7_c00001{bottom:550.760000pt;}
.y264_c00001{bottom:550.761600pt;}
.y2a3_c00001{bottom:551.080000pt;}
.y8b6_c00001{bottom:551.400000pt;}
.ycfb_c00001{bottom:551.401280pt;}
.ya85_c00001{bottom:551.719040pt;}
.y635_c00001{bottom:551.720000pt;}
.yea2_c00001{bottom:551.721600pt;}
.yd9c_c00001{bottom:551.723200pt;}
.yb6b_c00001{bottom:552.036480pt;}
.y7ca_c00001{bottom:552.040000pt;}
.yfdc_c00001{bottom:552.044160pt;}
.y65e_c00001{bottom:552.360000pt;}
.y6bd_c00001{bottom:552.364160pt;}
.y48a_c00001{bottom:552.680000pt;}
.y102d_c00001{bottom:552.999040pt;}
.y856_c00001{bottom:553.000000pt;}
.y1114_c00001{bottom:553.320000pt;}
.y95e_c00001{bottom:553.320640pt;}
.y6f6_c00001{bottom:553.638080pt;}
.y14d_c00001{bottom:553.640000pt;}
.y200_c00001{bottom:553.960000pt;}
.y92b_c00001{bottom:553.966080pt;}
.y23b_c00001{bottom:554.280000pt;}
.y57_c00001{bottom:554.281600pt;}
.ye58_c00001{bottom:554.283200pt;}
.y53f_c00001{bottom:554.920000pt;}
.y741_c00001{bottom:555.238080pt;}
.y1070_c00001{bottom:555.240000pt;}
.yce8_c00001{bottom:555.553600pt;}
.y71c_c00001{bottom:555.560000pt;}
.y1060_c00001{bottom:555.880000pt;}
.yed4_c00001{bottom:556.199040pt;}
.yf5_c00001{bottom:556.200000pt;}
.yc45_c00001{bottom:556.203200pt;}
.y453_c00001{bottom:556.520000pt;}
.ya99_c00001{bottom:556.840000pt;}
.ya86_c00001{bottom:557.160000pt;}
.yb8e_c00001{bottom:557.188800pt;}
.y5c3_c00001{bottom:557.480000pt;}
.y366_c00001{bottom:557.800000pt;}
.y2db_c00001{bottom:558.120000pt;}
.yf3b_c00001{bottom:558.436480pt;}
.y40f_c00001{bottom:558.440000pt;}
.y1090_c00001{bottom:558.441600pt;}
.y4f1_c00001{bottom:558.760000pt;}
.y84a_c00001{bottom:558.760640pt;}
.yd2_c00001{bottom:559.080000pt;}
.y815_c00001{bottom:559.400000pt;}
.yce3_c00001{bottom:559.716480pt;}
.y999_c00001{bottom:559.719040pt;}
.y41f_c00001{bottom:559.720000pt;}
.ybfc_c00001{bottom:560.040000pt;}
.yee1_c00001{bottom:560.359040pt;}
.yaa_c00001{bottom:560.360000pt;}
.yd4e_c00001{bottom:560.360640pt;}
.ya68_c00001{bottom:560.679040pt;}
.y39d_c00001{bottom:560.680000pt;}
.y10f9_c00001{bottom:561.000000pt;}
.ydde_c00001{bottom:561.004160pt;}
.y82_c00001{bottom:561.320000pt;}
.y19b_c00001{bottom:561.640000pt;}
.y908_c00001{bottom:561.960000pt;}
.ycb5_c00001{bottom:562.280000pt;}
.y3f1_c00001{bottom:562.600000pt;}
.yd32_c00001{bottom:562.601280pt;}
.y89f_c00001{bottom:562.910400pt;}
.y13b_c00001{bottom:562.920000pt;}
.y69c_c00001{bottom:562.924160pt;}
.y111d_c00001{bottom:563.240000pt;}
.y387_c00001{bottom:563.555520pt;}
.y8ed_c00001{bottom:563.559680pt;}
.y218_c00001{bottom:563.560000pt;}
.y9f6_c00001{bottom:563.880000pt;}
.y82a_c00001{bottom:564.200000pt;}
.y7bb_c00001{bottom:564.520000pt;}
.yab2_c00001{bottom:564.839040pt;}
.yab3_c00001{bottom:564.840000pt;}
.y7e8_c00001{bottom:565.159040pt;}
.y7e9_c00001{bottom:565.160000pt;}
.y1021_c00001{bottom:565.479680pt;}
.y2f_c00001{bottom:565.480000pt;}
.y68a_c00001{bottom:565.800000pt;}
.yf5c_c00001{bottom:565.801600pt;}
.y880_c00001{bottom:566.120000pt;}
.y262_c00001{bottom:566.436480pt;}
.ye96_c00001{bottom:566.439360pt;}
.y263_c00001{bottom:566.440000pt;}
.yf71_c00001{bottom:566.759040pt;}
.y478_c00001{bottom:566.760000pt;}
.yd70_c00001{bottom:566.764160pt;}
.y164_c00001{bottom:567.080000pt;}
.y7a5_c00001{bottom:567.082240pt;}
.yaed_c00001{bottom:567.084160pt;}
.yd88_c00001{bottom:567.398080pt;}
.ya1c_c00001{bottom:567.399040pt;}
.ya2e_c00001{bottom:567.400000pt;}
.ye50_c00001{bottom:567.403200pt;}
.yd1c_c00001{bottom:567.423680pt;}
.y100c_c00001{bottom:567.720000pt;}
.y9d7_c00001{bottom:568.040000pt;}
.y729_c00001{bottom:568.360000pt;}
.y10e0_c00001{bottom:568.680000pt;}
.y112f_c00001{bottom:569.000000pt;}
.y6f5_c00001{bottom:569.001600pt;}
.yfc0_c00001{bottom:569.319040pt;}
.y1d6_c00001{bottom:569.320000pt;}
.y182_c00001{bottom:569.640000pt;}
.y593_c00001{bottom:569.641600pt;}
.y56_c00001{bottom:569.960000pt;}
.y258_c00001{bottom:570.280000pt;}
.ybbd_c00001{bottom:570.319867pt;}
.y7c9_c00001{bottom:570.600000pt;}
.y740_c00001{bottom:570.601600pt;}
.yeaf_c00001{bottom:570.916480pt;}
.y568_c00001{bottom:570.920000pt;}
.y321_c00001{bottom:571.240000pt;}
.y92a_c00001{bottom:571.560000pt;}
.y929_c00001{bottom:571.564160pt;}
.y4b6_c00001{bottom:571.879040pt;}
.y4b7_c00001{bottom:571.880000pt;}
.y9ac_c00001{bottom:572.188800pt;}
.y677_c00001{bottom:572.196480pt;}
.yfa0_c00001{bottom:572.200000pt;}
.y14c_c00001{bottom:572.520000pt;}
.y23a_c00001{bottom:572.840000pt;}
.yec6_c00001{bottom:572.843200pt;}
.yc82_c00001{bottom:573.160000pt;}
.ya98_c00001{bottom:573.479360pt;}
.ye6c_c00001{bottom:573.480000pt;}
.ycfa_c00001{bottom:573.482240pt;}
.y6d1_c00001{bottom:573.795200pt;}
.y7af_c00001{bottom:573.800000pt;}
.ya84_c00001{bottom:573.803200pt;}
.yd9b_c00001{bottom:573.804160pt;}
.y108f_c00001{bottom:574.120000pt;}
.y108e_c00001{bottom:574.120640pt;}
.y57d_c00001{bottom:574.438080pt;}
.yfdb_c00001{bottom:574.440000pt;}
.y6bc_c00001{bottom:574.760000pt;}
.yf4_c00001{bottom:575.080000pt;}
.y102c_c00001{bottom:575.080640pt;}
.yf8d_c00001{bottom:575.400000pt;}
.y1113_c00001{bottom:575.716480pt;}
.yfb2_c00001{bottom:575.720000pt;}
.y5d1_c00001{bottom:576.040000pt;}
.y34b_c00001{bottom:576.360000pt;}
.ye57_c00001{bottom:576.364160pt;}
.y1ff_c00001{bottom:576.680000pt;}
.y40e_c00001{bottom:577.000000pt;}
.y634_c00001{bottom:577.320000pt;}
.yd1_c00001{bottom:577.640000pt;}
.y95d_c00001{bottom:577.955520pt;}
.y489_c00001{bottom:577.960000pt;}
.yb8d_c00001{bottom:577.984000pt;}
.y761_c00001{bottom:578.280000pt;}
.yc44_c00001{bottom:578.599040pt;}
.y41e_c00001{bottom:578.600000pt;}
.y4cb_c00001{bottom:578.920000pt;}
.y8ec_c00001{bottom:579.238080pt;}
.yef2_c00001{bottom:579.239867pt;}
.yef3_c00001{bottom:579.240000pt;}
.y6b3_c00001{bottom:579.560000pt;}
.y106d_c00001{bottom:579.880000pt;}
.y49f_c00001{bottom:580.200000pt;}
.y2da_c00001{bottom:580.519040pt;}
.yf_c00001{bottom:580.520000pt;}
.ycb4_c00001{bottom:580.840000pt;}
.y452_c00001{bottom:581.480000pt;}
.y300_c00001{bottom:581.795200pt;}
.y13a_c00001{bottom:581.800000pt;}
.y217_c00001{bottom:582.120000pt;}
.yee0_c00001{bottom:582.440000pt;}
.y5c2_c00001{bottom:582.760000pt;}
.ya67_c00001{bottom:582.764160pt;}
.y365_c00001{bottom:583.080000pt;}
.yddd_c00001{bottom:583.398080pt;}
.y7ba_c00001{bottom:583.400000pt;}
.yeca_c00001{bottom:583.720000pt;}
.y865_c00001{bottom:583.738560pt;}
.y2e_c00001{bottom:584.040000pt;}
.y4f0_c00001{bottom:584.360000pt;}
.y6f4_c00001{bottom:584.680000pt;}
.y790_c00001{bottom:585.000000pt;}
.yd4d_c00001{bottom:585.004160pt;}
.y69b_c00001{bottom:585.319040pt;}
.y181_c00001{bottom:585.320000pt;}
.y180_c00001{bottom:585.321600pt;}
.y3b5_c00001{bottom:585.640000pt;}
.ybfb_c00001{bottom:585.960000pt;}
.y73e_c00001{bottom:586.276480pt;}
.y73f_c00001{bottom:586.280000pt;}
.ya03_c00001{bottom:586.287360pt;}
.y5af_c00001{bottom:586.920000pt;}
.y261_c00001{bottom:587.240000pt;}
.yd31_c00001{bottom:587.240640pt;}
.y7e7_c00001{bottom:587.241600pt;}
.y676_c00001{bottom:587.560000pt;}
.y1020_c00001{bottom:587.560640pt;}
.y385_c00001{bottom:587.875520pt;}
.y386_c00001{bottom:587.880000pt;}
.y1d5_c00001{bottom:588.200000pt;}
.y6ef_c00001{bottom:588.520000pt;}
.y9ee_c00001{bottom:588.840000pt;}
.yf70_c00001{bottom:588.844160pt;}
.y567_c00001{bottom:589.160000pt;}
.y7a4_c00001{bottom:589.163200pt;}
.yd5e_c00001{bottom:589.164160pt;}
.ya2d_c00001{bottom:589.479040pt;}
.ya1b_c00001{bottom:589.480000pt;}
.yd7e_c00001{bottom:589.482240pt;}
.yae1_c00001{bottom:589.483200pt;}
.ye4f_c00001{bottom:589.484160pt;}
.yd1b_c00001{bottom:589.504640pt;}
.y39c_c00001{bottom:589.800000pt;}
.y620_c00001{bottom:590.120000pt;}
.y6ba_c00001{bottom:590.439040pt;}
.y6bb_c00001{bottom:590.440000pt;}
.yf02_c00001{bottom:590.760000pt;}
.y14b_c00001{bottom:591.080000pt;}
.y239_c00001{bottom:591.400000pt;}
.yfbf_c00001{bottom:591.404160pt;}
.ybbc_c00001{bottom:591.443067pt;}
.y89e_c00001{bottom:591.708800pt;}
.y55_c00001{bottom:592.040000pt;}
.y54_c00001{bottom:592.041600pt;}
.ya9_c00001{bottom:592.360000pt;}
.y1eb_c00001{bottom:592.680000pt;}
.y81_c00001{bottom:593.320000pt;}
.yf3_c00001{bottom:593.640000pt;}
.y928_c00001{bottom:593.956480pt;}
.y4b5_c00001{bottom:593.960000pt;}
.y4b4_c00001{bottom:593.964160pt;}
.y9c3_c00001{bottom:594.280000pt;}
.yc72_c00001{bottom:594.598080pt;}
.y289_c00001{bottom:594.600000pt;}
.y8eb_c00001{bottom:594.601600pt;}
.y46a_c00001{bottom:594.916480pt;}
.y5d0_c00001{bottom:594.920000pt;}
.y40d_c00001{bottom:595.560000pt;}
.ycf9_c00001{bottom:595.563200pt;}
.y320_c00001{bottom:595.879040pt;}
.y207_c00001{bottom:595.880000pt;}
.ya83_c00001{bottom:596.199040pt;}
.y88d_c00001{bottom:596.200000pt;}
.ye08_c00001{bottom:596.202240pt;}
.ya97_c00001{bottom:596.203200pt;}
.ydf0_c00001{bottom:596.206400pt;}
.yec5_c00001{bottom:596.516800pt;}
.yd0_c00001{bottom:596.520000pt;}
.yfda_c00001{bottom:596.521600pt;}
.y814_c00001{bottom:596.840000pt;}
.y760_c00001{bottom:597.160000pt;}
.y260_c00001{bottom:597.479680pt;}
.y998_c00001{bottom:597.480000pt;}
.y997_c00001{bottom:597.481600pt;}
.y689_c00001{bottom:597.800000pt;}
.yef1_c00001{bottom:598.119867pt;}
.yc81_c00001{bottom:598.440000pt;}
.y6e8_c00001{bottom:598.760000pt;}
.ydac_c00001{bottom:598.764160pt;}
.y108d_c00001{bottom:598.766080pt;}
.yb8c_c00001{bottom:598.779200pt;}
.y163_c00001{bottom:599.080000pt;}
.y1fe_c00001{bottom:599.400000pt;}
.y102b_c00001{bottom:599.719040pt;}
.ycb3_c00001{bottom:599.720000pt;}
.yb25_c00001{bottom:600.356160pt;}
.y728_c00001{bottom:600.360000pt;}
.yc43_c00001{bottom:600.679040pt;}
.yb37_c00001{bottom:600.680000pt;}
.y17f_c00001{bottom:601.000000pt;}
.y96d_c00001{bottom:601.320000pt;}
.y2c3_c00001{bottom:601.640000pt;}
.y73d_c00001{bottom:601.641600pt;}
.y34a_c00001{bottom:601.960000pt;}
.y106c_c00001{bottom:601.964160pt;}
.y9ab_c00001{bottom:602.270400pt;}
.y95c_c00001{bottom:602.280000pt;}
.y95b_c00001{bottom:602.280640pt;}
.y2d8_c00001{bottom:602.599040pt;}
.y2d9_c00001{bottom:602.600000pt;}
.y7e6_c00001{bottom:602.920000pt;}
.y488_c00001{bottom:603.240000pt;}
.ycbd_c00001{bottom:603.560000pt;}
.yf5b_c00001{bottom:603.561600pt;}
.y6d0_c00001{bottom:603.876800pt;}
.y4ca_c00001{bottom:603.880000pt;}
.y4c9_c00001{bottom:603.881600pt;}
.y477_c00001{bottom:604.200000pt;}
.y1af_c00001{bottom:604.520000pt;}
.ya65_c00001{bottom:605.159040pt;}
.ya66_c00001{bottom:605.160000pt;}
.yb6a_c00001{bottom:605.476480pt;}
.yddc_c00001{bottom:605.479040pt;}
.y53e_c00001{bottom:605.480000pt;}
.y2fe_c00001{bottom:605.795200pt;}
.y2ff_c00001{bottom:605.800000pt;}
.y1001_c00001{bottom:606.120000pt;}
.y5fa_c00001{bottom:606.440000pt;}
.y1d4_c00001{bottom:606.760000pt;}
.y2a2_c00001{bottom:607.080000pt;}
.y592_c00001{bottom:607.393600pt;}
.y451_c00001{bottom:607.400000pt;}
.y69a_c00001{bottom:607.404160pt;}
.y53_c00001{bottom:607.720000pt;}
.y52_c00001{bottom:607.723200pt;}
.y5c1_c00001{bottom:608.040000pt;}
.y39b_c00001{bottom:608.360000pt;}
.yeae_c00001{bottom:608.676480pt;}
.y364_c00001{bottom:608.680000pt;}
.ya02_c00001{bottom:608.683200pt;}
.yacd_c00001{bottom:609.000000pt;}
.yacc_c00001{bottom:609.004160pt;}
.yab1_c00001{bottom:609.007360pt;}
.y633_c00001{bottom:609.320000pt;}
.yd30_c00001{bottom:609.321600pt;}
.y927_c00001{bottom:609.324160pt;}
.y14a_c00001{bottom:609.640000pt;}
.y675_c00001{bottom:609.960000pt;}
.y674_c00001{bottom:609.962880pt;}
.y238_c00001{bottom:610.280000pt;}
.y3d5_c00001{bottom:610.600000pt;}
.y11f_c00001{bottom:610.920000pt;}
.y7c8_c00001{bottom:611.240000pt;}
.ye95_c00001{bottom:611.244160pt;}
.y7a3_c00001{bottom:611.559040pt;}
.ya2c_c00001{bottom:611.560000pt;}
.yd7d_c00001{bottom:611.563200pt;}
.ya43_c00001{bottom:611.564160pt;}
.ya55_c00001{bottom:611.566400pt;}
.ya1a_c00001{bottom:611.567360pt;}
.yd1a_c00001{bottom:611.585600pt;}
.ye4e_c00001{bottom:611.880000pt;}
.y384_c00001{bottom:612.200000pt;}
.y383_c00001{bottom:612.204160pt;}
.ybbb_c00001{bottom:612.238267pt;}
.ye_c00001{bottom:612.520000pt;}
.y4e3_c00001{bottom:612.838720pt;}
.y995_c00001{bottom:613.156480pt;}
.y25f_c00001{bottom:613.158080pt;}
.y996_c00001{bottom:613.160000pt;}
.y3c9_c00001{bottom:613.480000pt;}
.yec4_c00001{bottom:613.796800pt;}
.y139_c00001{bottom:613.800000pt;}
.y216_c00001{bottom:614.120000pt;}
.y565_c00001{bottom:614.440000pt;}
.y1075_c00001{bottom:614.760000pt;}
.ycf_c00001{bottom:615.080000pt;}
.y1ea_c00001{bottom:615.400000pt;}
.y7ad_c00001{bottom:615.720000pt;}
.yb24_c00001{bottom:616.034560pt;}
.y2d_c00001{bottom:616.040000pt;}
.y4b3_c00001{bottom:616.360000pt;}
.y108c_c00001{bottom:616.366720pt;}
.yc71_c00001{bottom:616.679040pt;}
.yef0_c00001{bottom:616.679867pt;}
.yc1c_c00001{bottom:616.680000pt;}
.y78f_c00001{bottom:617.000000pt;}
.y73c_c00001{bottom:617.320000pt;}
.y73b_c00001{bottom:617.321600pt;}
.ye6b_c00001{bottom:617.321920pt;}
.y683_c00001{bottom:617.640000pt;}
.ycf8_c00001{bottom:617.959040pt;}
.y31f_c00001{bottom:617.960000pt;}
.y31e_c00001{bottom:617.964160pt;}
.y9c1_c00001{bottom:618.280000pt;}
.ye07_c00001{bottom:618.283200pt;}
.ya96_c00001{bottom:618.284160pt;}
.ydef_c00001{bottom:618.287360pt;}
.y1056_c00001{bottom:618.600000pt;}
.y1fd_c00001{bottom:618.920000pt;}
.y9d6_c00001{bottom:619.240000pt;}
.y4c8_c00001{bottom:619.560000pt;}
.yb8b_c00001{bottom:619.574400pt;}
.y9ce_c00001{bottom:619.875840pt;}
.y2ba_c00001{bottom:619.880000pt;}
.y656_c00001{bottom:620.200000pt;}
.y89d_c00001{bottom:620.507200pt;}
.y566_c00001{bottom:620.520000pt;}
.yb69_c00001{bottom:620.840000pt;}
.yb68_c00001{bottom:620.841600pt;}
.y40c_c00001{bottom:621.160000pt;}
.yf3a_c00001{bottom:621.480000pt;}
.y9c8_c00001{bottom:621.800000pt;}
.y102a_c00001{bottom:621.804160pt;}
.y864_c00001{bottom:621.817920pt;}
.y61f_c00001{bottom:622.120000pt;}
.y476_c00001{bottom:622.760000pt;}
.yc42_c00001{bottom:622.764160pt;}
.y1ae_c00001{bottom:623.080000pt;}
.y17e_c00001{bottom:623.400000pt;}
.yedd_c00001{bottom:623.720000pt;}
.y531_c00001{bottom:624.036480pt;}
.y532_c00001{bottom:624.040000pt;}
.yead_c00001{bottom:624.043200pt;}
.y106b_c00001{bottom:624.359040pt;}
.ya8_c00001{bottom:624.360000pt;}
.y2d7_c00001{bottom:624.680000pt;}
.yd2f_c00001{bottom:625.000000pt;}
.yd2e_c00001{bottom:625.004160pt;}
.y80_c00001{bottom:625.320000pt;}
.y673_c00001{bottom:625.326400pt;}
.y2af_c00001{bottom:625.640000pt;}
.y971_c00001{bottom:625.960000pt;}
.y9ed_c00001{bottom:626.280000pt;}
.yeb8_c00001{bottom:626.600000pt;}
.y95a_c00001{bottom:626.915520pt;}
.y288_c00001{bottom:626.920000pt;}
.ya64_c00001{bottom:627.240000pt;}
.ya63_c00001{bottom:627.244160pt;}
.yddb_c00001{bottom:627.560000pt;}
.y104a_c00001{bottom:627.564160pt;}
.y57c_c00001{bottom:627.880000pt;}
.yce0_c00001{bottom:628.200000pt;}
.y149_c00001{bottom:628.520000pt;}
.y25e_c00001{bottom:628.521600pt;}
.yc97_c00001{bottom:628.840000pt;}
.y41d_c00001{bottom:629.160000pt;}
.y11e_c00001{bottom:629.480000pt;}
.yff2_c00001{bottom:629.799040pt;}
.y2fd_c00001{bottom:629.800000pt;}
.y699_c00001{bottom:629.801600pt;}
.y2fc_c00001{bottom:629.803200pt;}
.y51_c00001{bottom:630.119040pt;}
.yedf_c00001{bottom:630.440000pt;}
.y53d_c00001{bottom:630.441600pt;}
.yec3_c00001{bottom:630.760000pt;}
.yf4b_c00001{bottom:630.761600pt;}
.ya01_c00001{bottom:630.764160pt;}
.yf2_c00001{bottom:631.080000pt;}
.yb23_c00001{bottom:631.398080pt;}
.yacb_c00001{bottom:631.400000pt;}
.yab0_c00001{bottom:631.403200pt;}
.y926_c00001{bottom:631.720000pt;}
.y7e5_c00001{bottom:632.040000pt;}
.y138_c00001{bottom:632.360000pt;}
.y9aa_c00001{bottom:632.668800pt;}
.y431_c00001{bottom:632.680000pt;}
.y73a_c00001{bottom:633.000000pt;}
.ybba_c00001{bottom:633.033467pt;}
.yf6f_c00001{bottom:633.320000pt;}
.y349_c00001{bottom:633.640000pt;}
.yd7c_c00001{bottom:633.959040pt;}
.y6f3_c00001{bottom:633.960000pt;}
.ya54_c00001{bottom:633.962240pt;}
.ya19_c00001{bottom:633.963200pt;}
.yd19_c00001{bottom:633.981440pt;}
.y6cf_c00001{bottom:634.275200pt;}
.ye4d_c00001{bottom:634.279040pt;}
.y813_c00001{bottom:634.280000pt;}
.y382_c00001{bottom:634.600000pt;}
.y4e2_c00001{bottom:634.919680pt;}
.y2c_c00001{bottom:634.920000pt;}
.yf5a_c00001{bottom:634.923200pt;}
.yeef_c00001{bottom:635.239867pt;}
.y6b9_c00001{bottom:635.240000pt;}
.yc1b_c00001{bottom:635.560000pt;}
.y1112_c00001{bottom:635.560640pt;}
.y3be_c00001{bottom:635.880000pt;}
.yfbe_c00001{bottom:636.200000pt;}
.y3b4_c00001{bottom:636.520000pt;}
.y9cd_c00001{bottom:636.840000pt;}
.y9cc_c00001{bottom:636.841600pt;}
.y5ae_c00001{bottom:637.480000pt;}
.y79d_c00001{bottom:637.800000pt;}
.y1e9_c00001{bottom:638.120000pt;}
.y3f0_c00001{bottom:638.440000pt;}
.y3c8_c00001{bottom:638.760000pt;}
.yc70_c00001{bottom:638.764160pt;}
.y2a1_c00001{bottom:639.080000pt;}
.y530_c00001{bottom:639.400000pt;}
.ycd7_c00001{bottom:639.720000pt;}
.y651_c00001{bottom:640.040000pt;}
.y31d_c00001{bottom:640.360000pt;}
.ya82_c00001{bottom:640.679040pt;}
.y564_c00001{bottom:640.680000pt;}
.ydee_c00001{bottom:640.683200pt;}
.yb8a_c00001{bottom:640.697600pt;}
.ycbc_c00001{bottom:641.000000pt;}
.y632_c00001{bottom:641.001600pt;}
.y672_c00001{bottom:641.004800pt;}
.y108b_c00001{bottom:641.006080pt;}
.y475_c00001{bottom:641.320000pt;}
.y1ad_c00001{bottom:641.640000pt;}
.y4c7_c00001{bottom:641.641600pt;}
.y4ff_c00001{bottom:641.960000pt;}
.y237_c00001{bottom:642.280000pt;}
.y9d5_c00001{bottom:642.600000pt;}
.y70d_c00001{bottom:642.920000pt;}
.ydab_c00001{bottom:643.240000pt;}
.ycb2_c00001{bottom:643.560000pt;}
.yf39_c00001{bottom:643.564160pt;}
.y5f9_c00001{bottom:643.880000pt;}
.y993_c00001{bottom:644.196480pt;}
.y994_c00001{bottom:644.200000pt;}
.yd_c00001{bottom:644.520000pt;}
.y9ec_c00001{bottom:644.840000pt;}
.y839_c00001{bottom:645.160000pt;}
.yc41_c00001{bottom:645.163200pt;}
.y697_c00001{bottom:645.479040pt;}
.y698_c00001{bottom:645.480000pt;}
.y513_c00001{bottom:645.800000pt;}
.y215_c00001{bottom:646.120000pt;}
.yeac_c00001{bottom:646.439040pt;}
.y614_c00001{bottom:646.440000pt;}
.y113a_c00001{bottom:646.760000pt;}
.yb22_c00001{bottom:647.076480pt;}
.yce_c00001{bottom:647.080000pt;}
.y591_c00001{bottom:647.102400pt;}
.y2d6_c00001{bottom:647.400000pt;}
.y41c_c00001{bottom:647.720000pt;}
.y469_c00001{bottom:648.040000pt;}
.y468_c00001{bottom:648.041600pt;}
.y11d_c00001{bottom:648.360000pt;}
.y17d_c00001{bottom:648.680000pt;}
.y78e_c00001{bottom:649.000000pt;}
.y89c_c00001{bottom:649.633600pt;}
.y25d_c00001{bottom:649.640000pt;}
.ydda_c00001{bottom:649.960000pt;}
.y4e1_c00001{bottom:650.598080pt;}
.y2c2_c00001{bottom:650.600000pt;}
.y137_c00001{bottom:650.920000pt;}
.y958_c00001{bottom:651.235520pt;}
.y959_c00001{bottom:651.240000pt;}
.y430_c00001{bottom:651.560000pt;}
.yb67_c00001{bottom:651.880000pt;}
.yb66_c00001{bottom:651.880320pt;}
.y50_c00001{bottom:652.200000pt;}
.y39a_c00001{bottom:652.520000pt;}
.y9cb_c00001{bottom:652.520960pt;}
.y812_c00001{bottom:652.840000pt;}
.y40b_c00001{bottom:653.160000pt;}
.yaca_c00001{bottom:653.480000pt;}
.yaaf_c00001{bottom:653.484160pt;}
.y487_c00001{bottom:653.800000pt;}
.ybb9_c00001{bottom:653.828667pt;}
.yeee_c00001{bottom:654.119867pt;}
.yc1a_c00001{bottom:654.120000pt;}
.yfcc_c00001{bottom:654.124160pt;}
.yec2_c00001{bottom:654.438080pt;}
.y61e_c00001{bottom:654.440000pt;}
.y10c4_c00001{bottom:654.760000pt;}
.y739_c00001{bottom:655.080000pt;}
.y738_c00001{bottom:655.081600pt;}
.y52f_c00001{bottom:655.400000pt;}
.yd6f_c00001{bottom:655.719040pt;}
.ye94_c00001{bottom:655.722240pt;}
.ye2d_c00001{bottom:656.039040pt;}
.y2fb_c00001{bottom:656.040000pt;}
.ye20_c00001{bottom:656.042240pt;}
.ya53_c00001{bottom:656.043200pt;}
.ya18_c00001{bottom:656.044160pt;}
.ye6a_c00001{bottom:656.046400pt;}
.ya2b_c00001{bottom:656.047360pt;}
.yd18_c00001{bottom:656.062400pt;}
.ya7_c00001{bottom:656.360000pt;}
.y101f_c00001{bottom:656.364160pt;}
.ye4c_c00001{bottom:656.368320pt;}
.y631_c00001{bottom:656.680000pt;}
.y671_c00001{bottom:656.683200pt;}
.y381_c00001{bottom:657.000000pt;}
.yf59_c00001{bottom:657.004160pt;}
.y3c7_c00001{bottom:657.320000pt;}
.y7f_c00001{bottom:657.640000pt;}
.yf6e_c00001{bottom:657.960000pt;}
.yfd9_c00001{bottom:658.280000pt;}
.yeb7_c00001{bottom:658.600000pt;}
.y287_c00001{bottom:658.920000pt;}
.y57b_c00001{bottom:659.240000pt;}
.y992_c00001{bottom:659.560000pt;}
.y105f_c00001{bottom:659.880000pt;}
.y5e0_c00001{bottom:660.200000pt;}
.y863_c00001{bottom:660.214080pt;}
.y1ac_c00001{bottom:660.520000pt;}
.y1e8_c00001{bottom:660.840000pt;}
.yc6f_c00001{bottom:661.160000pt;}
.yf97_c00001{bottom:661.480000pt;}
.yb89_c00001{bottom:661.492800pt;}
.y3b3_c00001{bottom:661.800000pt;}
.y53c_c00001{bottom:662.120000pt;}
.ycf7_c00001{bottom:662.439040pt;}
.yb21_c00001{bottom:662.439360pt;}
.y4b2_c00001{bottom:662.440000pt;}
.y9a9_c00001{bottom:662.750400pt;}
.y31c_c00001{bottom:662.756800pt;}
.y5ad_c00001{bottom:662.760000pt;}
.ya95_c00001{bottom:662.764160pt;}
.yf1_c00001{bottom:663.080000pt;}
.y9eb_c00001{bottom:663.400000pt;}
.yf01_c00001{bottom:663.404160pt;}
.y466_c00001{bottom:663.718080pt;}
.y467_c00001{bottom:663.720000pt;}
.yfb1_c00001{bottom:664.040000pt;}
.y6ce_c00001{bottom:664.356800pt;}
.y512_c00001{bottom:664.360000pt;}
.y112e_c00001{bottom:664.683200pt;}
.ycd6_c00001{bottom:665.000000pt;}
.y87f_c00001{bottom:665.320000pt;}
.y148_c00001{bottom:665.640000pt;}
.yf38_c00001{bottom:665.959040pt;}
.y9d4_c00001{bottom:665.960000pt;}
.y4e0_c00001{bottom:666.276480pt;}
.yf67_c00001{bottom:666.280000pt;}
.y1029_c00001{bottom:666.281600pt;}
.y41b_c00001{bottom:666.600000pt;}
.y2b_c00001{bottom:666.920000pt;}
.y236_c00001{bottom:667.240000pt;}
.yc40_c00001{bottom:667.244160pt;}
.y235_c00001{bottom:667.245760pt;}
.y696_c00001{bottom:667.560000pt;}
.y4fa_c00001{bottom:667.880000pt;}
.ycc2_c00001{bottom:668.200000pt;}
.y8c6_c00001{bottom:668.520000pt;}
.ycb0_c00001{bottom:668.839040pt;}
.ycb1_c00001{bottom:668.840000pt;}
.y1055_c00001{bottom:669.160000pt;}
.yb0c_c00001{bottom:669.480000pt;}
.yd2d_c00001{bottom:669.480640pt;}
.y1019_c00001{bottom:669.481600pt;}
.y136_c00001{bottom:669.800000pt;}
.yec1_c00001{bottom:669.801600pt;}
.yd77_c00001{bottom:670.120000pt;}
.y42f_c00001{bottom:670.440000pt;}
.y737_c00001{bottom:670.760000pt;}
.y736_c00001{bottom:670.760640pt;}
.y590_c00001{bottom:670.776000pt;}
.y399_c00001{bottom:671.080000pt;}
.ya62_c00001{bottom:671.719040pt;}
.y613_c00001{bottom:671.720000pt;}
.y650_c00001{bottom:672.040000pt;}
.ydd9_c00001{bottom:672.041600pt;}
.y1049_c00001{bottom:672.043200pt;}
.y363_c00001{bottom:672.360000pt;}
.y7b9_c00001{bottom:672.367360pt;}
.yeed_c00001{bottom:672.679867pt;}
.y2d5_c00001{bottom:672.680000pt;}
.y25c_c00001{bottom:673.320000pt;}
.yb12_c00001{bottom:673.640000pt;}
.y17c_c00001{bottom:673.960000pt;}
.yb65_c00001{bottom:674.276160pt;}
.yff1_c00001{bottom:674.280000pt;}
.yff0_c00001{bottom:674.281600pt;}
.y4f_c00001{bottom:674.920000pt;}
.ybb8_c00001{bottom:674.951867pt;}
.yfde_c00001{bottom:675.240000pt;}
.ya00_c00001{bottom:675.244160pt;}
.y956_c00001{bottom:675.558080pt;}
.y957_c00001{bottom:675.560000pt;}
.y2c1_c00001{bottom:675.880000pt;}
.y486_c00001{bottom:675.881600pt;}
.yac9_c00001{bottom:675.883840pt;}
.y1d3_c00001{bottom:676.200000pt;}
.yd4c_c00001{bottom:676.203067pt;}
.yc_c00001{bottom:676.520000pt;}
.y838_c00001{bottom:677.160000pt;}
.y286_c00001{bottom:677.480000pt;}
.yd6e_c00001{bottom:677.800000pt;}
.ye93_c00001{bottom:677.803200pt;}
.y75f_c00001{bottom:678.116480pt;}
.yb20_c00001{bottom:678.117760pt;}
.y214_c00001{bottom:678.120000pt;}
.ye1f_c00001{bottom:678.123200pt;}
.yaec_c00001{bottom:678.124160pt;}
.y89b_c00001{bottom:678.432000pt;}
.ya52_c00001{bottom:678.439040pt;}
.ya17_c00001{bottom:678.440000pt;}
.ydba_c00001{bottom:678.442240pt;}
.ya2a_c00001{bottom:678.443200pt;}
.ya42_c00001{bottom:678.445440pt;}
.yd17_c00001{bottom:678.458240pt;}
.y101e_c00001{bottom:678.759040pt;}
.y5df_c00001{bottom:678.760000pt;}
.y670_c00001{bottom:678.764160pt;}
.ycd_c00001{bottom:679.080000pt;}
.y8ea_c00001{bottom:679.081600pt;}
.y465_c00001{bottom:679.396480pt;}
.y8b5_c00001{bottom:679.400000pt;}
.yc8a_c00001{bottom:679.720000pt;}
.yf96_c00001{bottom:680.040000pt;}
.y688_c00001{bottom:680.360000pt;}
.y112d_c00001{bottom:680.361600pt;}
.y78d_c00001{bottom:681.000000pt;}
.y450_c00001{bottom:681.320000pt;}
.yf0_c00001{bottom:681.640000pt;}
.y991_c00001{bottom:681.959040pt;}
.yf8c_c00001{bottom:681.960000pt;}
.y380_c00001{bottom:682.280000pt;}
.y1111_c00001{bottom:682.284027pt;}
.yb88_c00001{bottom:682.288000pt;}
.yb55_c00001{bottom:682.600000pt;}
.y511_c00001{bottom:682.920000pt;}
.y1e7_c00001{bottom:683.240000pt;}
.y71b_c00001{bottom:683.560000pt;}
.y5c0_c00001{bottom:684.200000pt;}
.y700_c00001{bottom:684.520000pt;}
.ycf6_c00001{bottom:684.521600pt;}
.y6f2_c00001{bottom:684.840000pt;}
.ya81_c00001{bottom:685.159040pt;}
.y40a_c00001{bottom:685.160000pt;}
.y630_c00001{bottom:685.478080pt;}
.y11c_c00001{bottom:685.480000pt;}
.yec0_c00001{bottom:685.481600pt;}
.y3e9_c00001{bottom:685.800000pt;}
.y10a6_c00001{bottom:686.120000pt;}
.y735_c00001{bottom:686.124160pt;}
.y2fa_c00001{bottom:686.440000pt;}
.ye56_c00001{bottom:686.760000pt;}
.ye55_c00001{bottom:686.765120pt;}
.y3b2_c00001{bottom:687.080000pt;}
.ydaa_c00001{bottom:687.081920pt;}
.yba4_c00001{bottom:687.720000pt;}
.y1048_c00001{bottom:687.721600pt;}
.y5ac_c00001{bottom:688.036480pt;}
.yf37_c00001{bottom:688.040000pt;}
.yf36_c00001{bottom:688.043200pt;}
.y5ef_c00001{bottom:688.360000pt;}
.yd76_c00001{bottom:688.680000pt;}
.y42e_c00001{bottom:689.000000pt;}
.y96c_c00001{bottom:689.320000pt;}
.yc3f_c00001{bottom:689.639040pt;}
.y7e_c00001{bottom:689.640000pt;}
.y234_c00001{bottom:689.641600pt;}
.y695_c00001{bottom:689.960000pt;}
.yfef_c00001{bottom:689.961600pt;}
.y563_c00001{bottom:690.600000pt;}
.yf4a_c00001{bottom:690.604160pt;}
.y4b1_c00001{bottom:690.920000pt;}
.yf05_c00001{bottom:691.240000pt;}
.y485_c00001{bottom:691.560000pt;}
.yd2c_c00001{bottom:691.561600pt;}
.y18_c00001{bottom:691.880000pt;}
.y4fe_c00001{bottom:692.520000pt;}
.y9a8_c00001{bottom:692.832000pt;}
.y317_c00001{bottom:693.160000pt;}
.y955_c00001{bottom:693.478080pt;}
.ycc1_c00001{bottom:693.479040pt;}
.y75e_c00001{bottom:693.480000pt;}
.yb1f_c00001{bottom:693.796160pt;}
.ya6_c00001{bottom:693.800000pt;}
.y10df_c00001{bottom:694.119867pt;}
.y1000_c00001{bottom:694.120000pt;}
.y6cd_c00001{bottom:694.438400pt;}
.y106a_c00001{bottom:694.440000pt;}
.y1d2_c00001{bottom:694.760000pt;}
.y8e9_c00001{bottom:694.761600pt;}
.y7b8_c00001{bottom:694.763200pt;}
.y58f_c00001{bottom:694.780800pt;}
.y19a_c00001{bottom:695.080000pt;}
.y9ca_c00001{bottom:695.400000pt;}
.y9c9_c00001{bottom:695.406400pt;}
.ybb7_c00001{bottom:695.747067pt;}
.y112b_c00001{bottom:696.039040pt;}
.y112c_c00001{bottom:696.040000pt;}
.yb64_c00001{bottom:696.357120pt;}
.y612_c00001{bottom:696.680000pt;}
.ycbb_c00001{bottom:697.000000pt;}
.ycc_c00001{bottom:697.640000pt;}
.y2d4_c00001{bottom:697.960000pt;}
.yaae_c00001{bottom:697.964160pt;}
.yac8_c00001{bottom:698.279680pt;}
.yf66_c00001{bottom:698.280000pt;}
.yd4b_c00001{bottom:698.284027pt;}
.y862_c00001{bottom:698.293440pt;}
.yc89_c00001{bottom:698.600000pt;}
.y2a_c00001{bottom:698.920000pt;}
.yf95_c00001{bottom:699.560000pt;}
.yd6d_c00001{bottom:700.199040pt;}
.y4e_c00001{bottom:700.200000pt;}
.ye1e_c00001{bottom:700.519040pt;}
.yef_c00001{bottom:700.520000pt;}
.ydb9_c00001{bottom:700.523200pt;}
.ya16_c00001{bottom:700.524160pt;}
.ya41_c00001{bottom:700.526400pt;}
.ye3a_c00001{bottom:700.527360pt;}
.yd16_c00001{bottom:700.539200pt;}
.y101d_c00001{bottom:700.840000pt;}
.y62f_c00001{bottom:700.841600pt;}
.y66e_c00001{bottom:701.159040pt;}
.y66f_c00001{bottom:701.160000pt;}
.yb0b_c00001{bottom:701.480000pt;}
.y135_c00001{bottom:701.800000pt;}
.y71a_c00001{bottom:702.440000pt;}
.yb53_c00001{bottom:702.760000pt;}
.y285_c00001{bottom:703.080000pt;}
.y108a_c00001{bottom:703.084160pt;}
.y44f_c00001{bottom:703.400000pt;}
.y44e_c00001{bottom:703.401600pt;}
.yb87_c00001{bottom:703.411200pt;}
.y41a_c00001{bottom:703.720000pt;}
.y4df_c00001{bottom:704.036480pt;}
.y990_c00001{bottom:704.040000pt;}
.y98f_c00001{bottom:704.044160pt;}
.y7c7_c00001{bottom:704.360000pt;}
.y1110_c00001{bottom:704.679867pt;}
.yeec_c00001{bottom:704.680000pt;}
.y233_c00001{bottom:705.320000pt;}
.y5cf_c00001{bottom:705.640000pt;}
.yfee_c00001{bottom:705.640640pt;}
.y17b_c00001{bottom:705.960000pt;}
.yda9_c00001{bottom:706.280000pt;}
.yda8_c00001{bottom:706.281920pt;}
.yede_c00001{bottom:706.600000pt;}
.y5a3_c00001{bottom:706.920000pt;}
.y89a_c00001{bottom:707.230400pt;}
.y7a2_c00001{bottom:707.240000pt;}
.yd2b_c00001{bottom:707.241600pt;}
.yded_c00001{bottom:707.243200pt;}
.ya94_c00001{bottom:707.244160pt;}
.y37f_c00001{bottom:707.560000pt;}
.y96b_c00001{bottom:707.880000pt;}
.y829_c00001{bottom:708.200000pt;}
.yb_c00001{bottom:708.520000pt;}
.y837_c00001{bottom:709.156480pt;}
.yb1e_c00001{bottom:709.159680pt;}
.y5bf_c00001{bottom:709.480000pt;}
.y6f1_c00001{bottom:709.800000pt;}
.y213_c00001{bottom:710.120000pt;}
.y8e7_c00001{bottom:710.436480pt;}
.yf35_c00001{bottom:710.439040pt;}
.y8e8_c00001{bottom:710.440000pt;}
.y57a_c00001{bottom:710.758400pt;}
.y925_c00001{bottom:710.760000pt;}
.y4ef_c00001{bottom:711.080000pt;}
.y1107_c00001{bottom:711.081600pt;}
.y954_c00001{bottom:711.395520pt;}
.y8b4_c00001{bottom:711.400000pt;}
.yc3d_c00001{bottom:711.713600pt;}
.yed3_c00001{bottom:711.719040pt;}
.yc3e_c00001{bottom:711.720000pt;}
.yb63_c00001{bottom:712.035520pt;}
.ya5_c00001{bottom:712.360000pt;}
.y10de_c00001{bottom:712.679867pt;}
.y10dd_c00001{bottom:712.680000pt;}
.y78c_c00001{bottom:713.000000pt;}
.y562_c00001{bottom:713.320000pt;}
.y162_c00001{bottom:713.640000pt;}
.y484_c00001{bottom:713.960000pt;}
.y42d_c00001{bottom:714.280000pt;}
.yfb0_c00001{bottom:714.600000pt;}
.yc9d_c00001{bottom:714.920000pt;}
.y694_c00001{bottom:715.240000pt;}
.ycba_c00001{bottom:715.560000pt;}
.yca3_c00001{bottom:715.880000pt;}
.y75d_c00001{bottom:715.881280pt;}
.y4b0_c00001{bottom:716.200000pt;}
.y101c_c00001{bottom:716.519040pt;}
.y62e_c00001{bottom:716.520000pt;}
.ybb6_c00001{bottom:716.542267pt;}
.y7b7_c00001{bottom:716.844160pt;}
.y3ef_c00001{bottom:717.160000pt;}
.y11b_c00001{bottom:717.480000pt;}
.y9c7_c00001{bottom:717.800000pt;}
.y4fd_c00001{bottom:718.120000pt;}
.y112a_c00001{bottom:718.121600pt;}
.y2f9_c00001{bottom:718.440000pt;}
.y58e_c00001{bottom:718.454400pt;}
.y611_c00001{bottom:719.076160pt;}
.yee_c00001{bottom:719.080000pt;}
.y44d_c00001{bottom:719.081600pt;}
.y347_c00001{bottom:719.399867pt;}
.y348_c00001{bottom:719.400000pt;}
.y9ff_c00001{bottom:719.720000pt;}
.y316_c00001{bottom:720.040000pt;}
.y5ee_c00001{bottom:720.360000pt;}
.yac7_c00001{bottom:720.675520pt;}
.yd4a_c00001{bottom:720.679867pt;}
.y719_c00001{bottom:721.000000pt;}
.y10f7_c00001{bottom:721.320000pt;}
.y7d_c00001{bottom:721.640000pt;}
.yc96_c00001{bottom:721.960000pt;}
.y811_c00001{bottom:722.280000pt;}
.yd5d_c00001{bottom:722.595520pt;}
.y419_c00001{bottom:722.600000pt;}
.yaeb_c00001{bottom:722.604160pt;}
.ya51_c00001{bottom:722.919040pt;}
.y31b_c00001{bottom:722.920000pt;}
.ya40_c00001{bottom:722.922240pt;}
.yd3d_c00001{bottom:722.923200pt;}
.yd15_c00001{bottom:722.935040pt;}
.y9a7_c00001{bottom:723.230400pt;}
.y2d3_c00001{bottom:723.240000pt;}
.y66d_c00001{bottom:723.241600pt;}
.ye4b_c00001{bottom:723.244160pt;}
.yc19_c00001{bottom:723.560000pt;}
.yc6e_c00001{bottom:723.880000pt;}
.yfcb_c00001{bottom:724.200000pt;}
.yb86_c00001{bottom:724.206400pt;}
.y17a_c00001{bottom:724.520000pt;}
.y6cc_c00001{bottom:724.836800pt;}
.yb1d_c00001{bottom:724.838080pt;}
.y4d_c00001{bottom:725.480000pt;}
.y362_c00001{bottom:725.800000pt;}
.y8e6_c00001{bottom:725.801600pt;}
.y5ab_c00001{bottom:726.120000pt;}
.y98e_c00001{bottom:726.439040pt;}
.yb0a_c00001{bottom:726.756480pt;}
.y2c0_c00001{bottom:726.760000pt;}
.y2a0_c00001{bottom:727.080000pt;}
.y232_c00001{bottom:727.720000pt;}
.yfed_c00001{bottom:727.721600pt;}
.yc3c_c00001{bottom:727.724160pt;}
.y284_c00001{bottom:728.040000pt;}
.y113b_c00001{bottom:728.360000pt;}
.y1e6_c00001{bottom:728.680000pt;}
.y212_c00001{bottom:729.000000pt;}
.y1014_c00001{bottom:729.320000pt;}
.ydec_c00001{bottom:729.639040pt;}
.ycb_c00001{bottom:729.640000pt;}
.yeb6_c00001{bottom:729.960000pt;}
.y734_c00001{bottom:730.600000pt;}
.y29_c00001{bottom:730.920000pt;}
.y1018_c00001{bottom:731.240000pt;}
.y75c_c00001{bottom:731.244800pt;}
.yf6d_c00001{bottom:731.560000pt;}
.y1d1_c00001{bottom:732.200000pt;}
.y161_c00001{bottom:732.520000pt;}
.y5f8_c00001{bottom:732.840000pt;}
.y37e_c00001{bottom:733.160000pt;}
.yf00_c00001{bottom:733.479867pt;}
.y1129_c00001{bottom:733.796480pt;}
.y79c_c00001{bottom:733.800000pt;}
.y610_c00001{bottom:734.439680pt;}
.y5be_c00001{bottom:734.759040pt;}
.y44c_c00001{bottom:734.760000pt;}
.y6f0_c00001{bottom:735.080000pt;}
.y7a1_c00001{bottom:735.400000pt;}
.y953_c00001{bottom:735.718080pt;}
.y134_c00001{bottom:735.720000pt;}
.y899_c00001{bottom:736.028800pt;}
.y4c6_c00001{bottom:736.040000pt;}
.y11a_c00001{bottom:736.360000pt;}
.yb62_c00001{bottom:736.361600pt;}
.y861_c00001{bottom:736.372800pt;}
.yfb6_c00001{bottom:736.680000pt;}
.y2f8_c00001{bottom:736.683200pt;}
.yed_c00001{bottom:737.640000pt;}
.ybb5_c00001{bottom:737.665467pt;}
.yfbd_c00001{bottom:737.960000pt;}
.yca2_c00001{bottom:738.280000pt;}
.ycc0_c00001{bottom:738.600000pt;}
.y5ed_c00001{bottom:738.920000pt;}
.y483_c00001{bottom:739.240000pt;}
.y42c_c00001{bottom:739.560000pt;}
.y1052_c00001{bottom:739.880000pt;}
.yb1c_c00001{bottom:740.516480pt;}
.ya_c00001{bottom:740.520000pt;}
.y579_c00001{bottom:740.833600pt;}
.y693_c00001{bottom:740.840000pt;}
.y87e_c00001{bottom:741.160000pt;}
.y7c6_c00001{bottom:741.480000pt;}
.y8e5_c00001{bottom:741.483200pt;}
.y4de_c00001{bottom:741.800000pt;}
.y9fe_c00001{bottom:741.804160pt;}
.y778_c00001{bottom:742.120000pt;}
.yb09_c00001{bottom:742.121600pt;}
.y58d_c00001{bottom:742.128000pt;}
.yaad_c00001{bottom:742.440000pt;}
.y3ee_c00001{bottom:742.760000pt;}
.yd49_c00001{bottom:742.764160pt;}
.y97c_c00001{bottom:743.080000pt;}
.y179_c00001{bottom:743.400000pt;}
.y561_c00001{bottom:743.401600pt;}
.ya4_c00001{bottom:744.360000pt;}
.y346_c00001{bottom:744.679867pt;}
.y345_c00001{bottom:744.680000pt;}
.ye1d_c00001{bottom:744.998080pt;}
.yb52_c00001{bottom:744.999360pt;}
.y78b_c00001{bottom:745.000000pt;}
.yb85_c00001{bottom:745.001600pt;}
.ya3f_c00001{bottom:745.003200pt;}
.ya29_c00001{bottom:745.004160pt;}
.yda7_c00001{bottom:745.009600pt;}
.yd14_c00001{bottom:745.016000pt;}
.y3c6_c00001{bottom:745.319040pt;}
.y315_c00001{bottom:745.320000pt;}
.yeb5_c00001{bottom:745.323200pt;}
.y199_c00001{bottom:745.640000pt;}
.ycce_c00001{bottom:745.960000pt;}
.y64f_c00001{bottom:746.920000pt;}
.yd5c_c00001{bottom:746.920640pt;}
.y75b_c00001{bottom:746.923200pt;}
.yc95_c00001{bottom:747.560000pt;}
.y31a_c00001{bottom:747.880000pt;}
.yca_c00001{bottom:748.520000pt;}
.y98d_c00001{bottom:748.520640pt;}
.yebf_c00001{bottom:748.524160pt;}
.y1106_c00001{bottom:748.840000pt;}
.y1105_c00001{bottom:748.841600pt;}
.yf60_c00001{bottom:749.159040pt;}
.y52e_c00001{bottom:749.160000pt;}
.y28_c00001{bottom:749.480000pt;}
.y5aa_c00001{bottom:749.800000pt;}
.y60f_c00001{bottom:750.118080pt;}
.yc3a_c00001{bottom:750.119040pt;}
.yc3b_c00001{bottom:750.120000pt;}
.y283_c00001{bottom:750.440000pt;}
.y49e_c00001{bottom:751.080000pt;}
.y4b_c00001{bottom:751.399867pt;}
.y4c_c00001{bottom:751.400000pt;}
.ye06_c00001{bottom:751.719040pt;}
.y409_c00001{bottom:751.720000pt;}
.y2bf_c00001{bottom:752.039040pt;}
.yb61_c00001{bottom:752.040000pt;}
.yb60_c00001{bottom:752.042240pt;}
.y79b_c00001{bottom:752.360000pt;}
.y2f7_c00001{bottom:752.361600pt;}
.y733_c00001{bottom:753.000000pt;}
.y732_c00001{bottom:753.001467pt;}
.y9a6_c00001{bottom:753.312000pt;}
.y1149_c00001{bottom:753.320000pt;}
.y7c_c00001{bottom:753.640000pt;}
.y952_c00001{bottom:753.646080pt;}
.y361_c00001{bottom:753.960000pt;}
.y831_c00001{bottom:754.280000pt;}
.y418_c00001{bottom:754.600000pt;}
.y6cb_c00001{bottom:754.918400pt;}
.y119_c00001{bottom:754.920000pt;}
.yeeb_c00001{bottom:755.236480pt;}
.y1013_c00001{bottom:755.240000pt;}
.yc18_c00001{bottom:755.560000pt;}
.yb1b_c00001{bottom:755.880000pt;}
.yb1a_c00001{bottom:755.881600pt;}
.y474_c00001{bottom:756.200000pt;}
.yec_c00001{bottom:756.520000pt;}
.y578_c00001{bottom:756.840000pt;}
.y44b_c00001{bottom:757.160000pt;}
.yf49_c00001{bottom:757.480000pt;}
.y160_c00001{bottom:757.800000pt;}
.ybb4_c00001{bottom:758.460667pt;}
.yeff_c00001{bottom:758.759867pt;}
.yc79_c00001{bottom:758.760000pt;}
.y25b_c00001{bottom:759.080000pt;}
.y810_c00001{bottom:759.400000pt;}
.yc80_c00001{bottom:760.360000pt;}
.yb51_c00001{bottom:760.362880pt;}
.y211_c00001{bottom:761.000000pt;}
.y37d_c00001{bottom:761.320000pt;}
.y147_c00001{bottom:761.640000pt;}
.y178_c00001{bottom:761.960000pt;}
.y872_c00001{bottom:762.600000pt;}
.yf8b_c00001{bottom:762.916480pt;}
.y3b1_c00001{bottom:762.920000pt;}
.ya3_c00001{bottom:763.240000pt;}
.y9ea_c00001{bottom:763.560000pt;}
.y8e4_c00001{bottom:763.564160pt;}
.y6b1_c00001{bottom:763.880000pt;}
.y1d0_c00001{bottom:764.200000pt;}
.y29f_c00001{bottom:764.520000pt;}
.y692_c00001{bottom:764.840000pt;}
.y1128_c00001{bottom:764.841600pt;}
.y898_c00001{bottom:765.155200pt;}
.yd48_c00001{bottom:765.160000pt;}
.y64e_c00001{bottom:765.480000pt;}
.y60e_c00001{bottom:765.796480pt;}
.yb84_c00001{bottom:765.796800pt;}
.y58c_c00001{bottom:766.132800pt;}
.ycd5_c00001{bottom:766.440000pt;}
.y5de_c00001{bottom:766.760000pt;}
.yd6c_c00001{bottom:766.764160pt;}
.ye1c_c00001{bottom:767.079040pt;}
.yc9_c00001{bottom:767.080000pt;}
.ya3e_c00001{bottom:767.399040pt;}
.y3c5_c00001{bottom:767.400000pt;}
.y3c4_c00001{bottom:767.404160pt;}
.yd2a_c00001{bottom:767.405440pt;}
.yd13_c00001{bottom:767.411840pt;}
.yeb4_c00001{bottom:767.719040pt;}
.y9d3_c00001{bottom:767.720000pt;}
.yb5f_c00001{bottom:767.720640pt;}
.y27_c00001{bottom:768.040000pt;}
.yc6d_c00001{bottom:768.044160pt;}
.y3ed_c00001{bottom:768.360000pt;}
.y731_c00001{bottom:768.679867pt;}
.y4fc_c00001{bottom:768.680000pt;}
.yfff_c00001{bottom:769.000000pt;}
.y75a_c00001{bottom:769.004160pt;}
.y4af_c00001{bottom:769.320000pt;}
.y133_c00001{bottom:769.640000pt;}
.y1042_c00001{bottom:769.960000pt;}
.y344_c00001{bottom:770.280000pt;}
.yeea_c00001{bottom:770.600000pt;}
.yee9_c00001{bottom:770.604160pt;}
.y314_c00001{bottom:770.920000pt;}
.y951_c00001{bottom:771.240000pt;}
.y950_c00001{bottom:771.245760pt;}
.y718_c00001{bottom:771.560000pt;}
.y1148_c00001{bottom:771.880000pt;}
.y560_c00001{bottom:772.200000pt;}
.yc39_c00001{bottom:772.204160pt;}
.y9_c00001{bottom:772.520000pt;}
.yc94_c00001{bottom:772.840000pt;}
.y98b_c00001{bottom:773.159040pt;}
.y98c_c00001{bottom:773.160000pt;}
.y87d_c00001{bottom:773.163200pt;}
.y118_c00001{bottom:773.480000pt;}
.ya80_c00001{bottom:773.800000pt;}
.yc17_c00001{bottom:773.800960pt;}
.ydeb_c00001{bottom:773.804160pt;}
.ya93_c00001{bottom:773.807227pt;}
.y1e5_c00001{bottom:774.120000pt;}
.y52d_c00001{bottom:774.760000pt;}
.y860_c00001{bottom:774.768960pt;}
.yeb_c00001{bottom:775.080000pt;}
.y8b3_c00001{bottom:775.400000pt;}
.y282_c00001{bottom:775.720000pt;}
.y4dd_c00001{bottom:776.040000pt;}
.yb50_c00001{bottom:776.041280pt;}
.y5ec_c00001{bottom:776.360000pt;}
.y4a_c00001{bottom:776.679867pt;}
.y111c_c00001{bottom:777.319867pt;}
.y10f6_c00001{bottom:777.320000pt;}
.y198_c00001{bottom:777.640000pt;}
.y80f_c00001{bottom:778.280000pt;}
.y231_c00001{bottom:778.920000pt;}
.y5bd_c00001{bottom:779.240000pt;}
.ybb3_c00001{bottom:779.255867pt;}
.y360_c00001{bottom:779.560000pt;}
.yf48_c00001{bottom:779.880000pt;}
.yb07_c00001{bottom:780.196480pt;}
.yb08_c00001{bottom:780.200000pt;}
.y1127_c00001{bottom:780.516480pt;}
.y146_c00001{bottom:780.520000pt;}
.y10c3_c00001{bottom:780.840000pt;}
.yc78_c00001{bottom:781.159040pt;}
.y60d_c00001{bottom:781.160000pt;}
.y60c_c00001{bottom:781.164160pt;}
.yf20_c00001{bottom:781.480000pt;}
.y9c6_c00001{bottom:781.800000pt;}
.y9e9_c00001{bottom:782.120000pt;}
.yf6c_c00001{bottom:782.440000pt;}
.y29e_c00001{bottom:783.080000pt;}
.y61d_c00001{bottom:783.400000pt;}
.y9a5_c00001{bottom:783.710400pt;}
.y408_c00001{bottom:783.720000pt;}
.y64d_c00001{bottom:784.040000pt;}
.y79a_c00001{bottom:784.360000pt;}
.yefe_c00001{bottom:784.679867pt;}
.yefd_c00001{bottom:784.680000pt;}
.y6ca_c00001{bottom:785.316800pt;}
.y1139_c00001{bottom:785.320000pt;}
.y7b_c00001{bottom:785.640000pt;}
.y8e3_c00001{bottom:785.960000pt;}
.y8e2_c00001{bottom:785.974400pt;}
.y9fd_c00001{bottom:786.287360pt;}
.y101b_c00001{bottom:786.600000pt;}
.y473_c00001{bottom:786.920000pt;}
.y1cf_c00001{bottom:787.240000pt;}
.y7b6_c00001{bottom:787.560000pt;}
.y836_c00001{bottom:787.880000pt;}
.y2ae_c00001{bottom:788.520000pt;}
.yca1_c00001{bottom:788.840000pt;}
.y1074_c00001{bottom:789.156480pt;}
.yd6b_c00001{bottom:789.160000pt;}
.yd6a_c00001{bottom:789.164160pt;}
.yc16_c00001{bottom:789.479360pt;}
.y37c_c00001{bottom:789.480000pt;}
.yd9a_c00001{bottom:789.483200pt;}
.yaea_c00001{bottom:789.484160pt;}
.ya15_c00001{bottom:789.486400pt;}
.yd12_c00001{bottom:789.492800pt;}
.y398_c00001{bottom:789.800000pt;}
.yb5e_c00001{bottom:789.801600pt;}
.y58b_c00001{bottom:789.806400pt;}
.y2f6_c00001{bottom:790.120000pt;}
.y2f5_c00001{bottom:790.121600pt;}
.yc6c_c00001{bottom:790.440000pt;}
.y1147_c00001{bottom:790.760000pt;}
.y44a_c00001{bottom:791.080000pt;}
.y759_c00001{bottom:791.400000pt;}
.yb4f_c00001{bottom:791.719680pt;}
.y15f_c00001{bottom:791.720000pt;}
.ycb9_c00001{bottom:792.040000pt;}
.y117_c00001{bottom:792.360000pt;}
.y78a_c00001{bottom:792.368320pt;}
.y3ff_c00001{bottom:792.680000pt;}
.y210_c00001{bottom:793.000000pt;}
.y1050_c00001{bottom:793.000640pt;}
.y52c_c00001{bottom:793.320000pt;}
.y1ab_c00001{bottom:793.640000pt;}
.yd5b_c00001{bottom:793.640640pt;}
.y94f_c00001{bottom:793.641600pt;}
.y897_c00001{bottom:793.953600pt;}
.y177_c00001{bottom:793.960000pt;}
.y42b_c00001{bottom:794.280000pt;}
.yc37_c00001{bottom:794.598907pt;}
.yc38_c00001{bottom:794.600000pt;}
.ycd0_c00001{bottom:794.920000pt;}
.ya2_c00001{bottom:795.240000pt;}
.y98a_c00001{bottom:795.240640pt;}
.yb06_c00001{bottom:795.567360pt;}
.y1054_c00001{bottom:795.880000pt;}
.ya7f_c00001{bottom:796.199040pt;}
.ydea_c00001{bottom:796.200000pt;}
.ye05_c00001{bottom:796.202107pt;}
.ya92_c00001{bottom:796.203067pt;}
.y2be_c00001{bottom:796.516480pt;}
.y25a_c00001{bottom:796.520000pt;}
.y1e4_c00001{bottom:796.840000pt;}
.yc93_c00001{bottom:798.119867pt;}
.y7e4_c00001{bottom:798.120000pt;}
.y343_c00001{bottom:798.440000pt;}
.y2d2_c00001{bottom:799.079040pt;}
.yc8_c00001{bottom:799.080000pt;}
.y7a0_c00001{bottom:799.400000pt;}
.y26_c00001{bottom:800.040000pt;}
.ybb2_c00001{bottom:800.051067pt;}
.y5a9_c00001{bottom:800.360000pt;}
.yf89_c00001{bottom:800.676480pt;}
.yf8a_c00001{bottom:800.679867pt;}
.yfb5_c00001{bottom:800.680000pt;}
.y9e8_c00001{bottom:801.000000pt;}
.y281_c00001{bottom:801.320000pt;}
.y49_c00001{bottom:801.640000pt;}
.y417_c00001{bottom:801.960000pt;}
.y87c_c00001{bottom:801.961600pt;}
.y64c_c00001{bottom:802.920000pt;}
.y799_c00001{bottom:803.240000pt;}
.y60b_c00001{bottom:803.560000pt;}
.y8e1_c00001{bottom:803.568320pt;}
.y230_c00001{bottom:803.875200pt;}
.y1138_c00001{bottom:803.880000pt;}
.y10ca_c00001{bottom:804.200000pt;}
.y8_c00001{bottom:804.520000pt;}
.y35f_c00001{bottom:804.840000pt;}
.yc15_c00001{bottom:805.157760pt;}
.y111b_c00001{bottom:805.159867pt;}
.yb5d_c00001{bottom:805.480000pt;}
.yb5c_c00001{bottom:805.481600pt;}
.y2f4_c00001{bottom:805.800000pt;}
.y777_c00001{bottom:806.120000pt;}
.yffe_c00001{bottom:806.440000pt;}
.yea_c00001{bottom:807.080000pt;}
.yb4e_c00001{bottom:807.083200pt;}
.y8b2_c00001{bottom:807.400000pt;}
.y1ce_c00001{bottom:807.719360pt;}
.yf6b_c00001{bottom:807.720000pt;}
.yb83_c00001{bottom:808.040000pt;}
.y397_c00001{bottom:808.360000pt;}
.yf94_c00001{bottom:808.680000pt;}
.y9fc_c00001{bottom:808.683200pt;}
.y1104_c00001{bottom:808.999040pt;}
.y464_c00001{bottom:809.000000pt;}
.yaac_c00001{bottom:809.319680pt;}
.y94e_c00001{bottom:809.320000pt;}
.y6ee_c00001{bottom:809.640000pt;}
.yd47_c00001{bottom:809.642240pt;}
.yefc_c00001{bottom:809.960000pt;}
.y80e_c00001{bottom:810.280000pt;}
.y197_c00001{bottom:810.600000pt;}
.y7c5_c00001{bottom:810.920000pt;}
.y5bc_c00001{bottom:811.240000pt;}
.yd69_c00001{bottom:811.560000pt;}
.yd68_c00001{bottom:811.564160pt;}
.ydb8_c00001{bottom:811.878080pt;}
.yac6_c00001{bottom:811.879040pt;}
.y2bd_c00001{bottom:811.880000pt;}
.yae0_c00001{bottom:811.881280pt;}
.ya14_c00001{bottom:811.882240pt;}
.ye69_c00001{bottom:811.885440pt;}
.ye4a_c00001{bottom:811.887227pt;}
.yd11_c00001{bottom:811.888640pt;}
.y3c3_c00001{bottom:812.200000pt;}
.y145_c00001{bottom:812.520000pt;}
.y116_c00001{bottom:812.840000pt;}
.y85f_c00001{bottom:812.848320pt;}
.y58a_c00001{bottom:813.480000pt;}
.y9a4_c00001{bottom:813.792000pt;}
.y3b0_c00001{bottom:813.800000pt;}
.yca0_c00001{bottom:814.120000pt;}
.y37b_c00001{bottom:814.440000pt;}
.ycaf_c00001{bottom:814.760000pt;}
.y789_c00001{bottom:814.764160pt;}
.y259_c00001{bottom:815.080000pt;}
.y4ae_c00001{bottom:815.081600pt;}
.y104f_c00001{bottom:815.396480pt;}
.y6c9_c00001{bottom:815.398400pt;}
.yebe_c00001{bottom:815.400000pt;}
.y407_c00001{bottom:815.403200pt;}
.yf88_c00001{bottom:816.040000pt;}
.y730_c00001{bottom:816.360000pt;}
.yc36_c00001{bottom:816.679867pt;}
.y449_c00001{bottom:817.000000pt;}
.y4d7_c00001{bottom:817.320000pt;}
.y87b_c00001{bottom:817.636480pt;}
.y7a_c00001{bottom:817.640000pt;}
.yb05_c00001{bottom:817.963200pt;}
.yd59_c00001{bottom:818.279040pt;}
.yd5a_c00001{bottom:818.280000pt;}
.ye04_c00001{bottom:818.283067pt;}
.ya7e_c00001{bottom:818.284027pt;}
.yde9_c00001{bottom:818.287360pt;}
.y3ec_c00001{bottom:818.920000pt;}
.y42a_c00001{bottom:819.240000pt;}
.y1e3_c00001{bottom:819.560000pt;}
.y988_c00001{bottom:819.879040pt;}
.y989_c00001{bottom:819.880000pt;}
.ycad_c00001{bottom:820.199040pt;}
.y828_c00001{bottom:820.200000pt;}
.y25_c00001{bottom:820.520000pt;}
.yc14_c00001{bottom:820.521280pt;}
.yf1f_c00001{bottom:820.840000pt;}
.y2d1_c00001{bottom:821.160000pt;}
.y2f3_c00001{bottom:821.161600pt;}
.ybb1_c00001{bottom:821.174267pt;}
.y798_c00001{bottom:821.800000pt;}
.y896_c00001{bottom:822.752000pt;}
.y835_c00001{bottom:822.760000pt;}
.yb4d_c00001{bottom:822.761600pt;}
.yfcf_c00001{bottom:823.080000pt;}
.y1cd_c00001{bottom:823.397760pt;}
.yc92_c00001{bottom:823.399867pt;}
.yf65_c00001{bottom:823.720000pt;}
.y313_c00001{bottom:824.360000pt;}
.y319_c00001{bottom:824.680000pt;}
.yb19_c00001{bottom:824.996480pt;}
.y94c_c00001{bottom:824.999040pt;}
.y94d_c00001{bottom:825.000000pt;}
.ye9_c00001{bottom:825.640000pt;}
.y176_c00001{bottom:825.960000pt;}
.y8e0_c00001{bottom:825.964160pt;}
.y20f_c00001{bottom:826.283707pt;}
.y280_c00001{bottom:826.600000pt;}
.y577_c00001{bottom:826.920000pt;}
.yf93_c00001{bottom:827.239867pt;}
.y396_c00001{bottom:827.240000pt;}
.y22f_c00001{bottom:827.880000pt;}
.y6ed_c00001{bottom:828.520000pt;}
.y717_c00001{bottom:828.840000pt;}
.ya1_c00001{bottom:829.160000pt;}
.y7c4_c00001{bottom:829.480000pt;}
.y1089_c00001{bottom:829.800000pt;}
.y342_c00001{bottom:830.120000pt;}
.y4ad_c00001{bottom:830.760000pt;}
.y9fb_c00001{bottom:830.764160pt;}
.y111a_c00001{bottom:831.079867pt;}
.yc7_c00001{bottom:831.080000pt;}
.y406_c00001{bottom:831.081600pt;}
.y1103_c00001{bottom:831.084160pt;}
.y776_c00001{bottom:831.084800pt;}
.yf47_c00001{bottom:831.400000pt;}
.yaab_c00001{bottom:831.715520pt;}
.y110f_c00001{bottom:831.720000pt;}
.yd46_c00001{bottom:831.723200pt;}
.yb82_c00001{bottom:831.724800pt;}
.y10c9_c00001{bottom:832.040000pt;}
.y65d_c00001{bottom:832.360000pt;}
.y60a_c00001{bottom:832.361600pt;}
.yfb4_c00001{bottom:832.680000pt;}
.y87a_c00001{bottom:833.000000pt;}
.y879_c00001{bottom:833.003200pt;}
.y10f5_c00001{bottom:833.320000pt;}
.y48_c00001{bottom:833.640000pt;}
.ye92_c00001{bottom:833.644160pt;}
.yd67_c00001{bottom:833.959040pt;}
.y55e_c00001{bottom:833.960000pt;}
.yadf_c00001{bottom:833.962240pt;}
.ya13_c00001{bottom:833.963200pt;}
.ye68_c00001{bottom:833.966400pt;}
.yd10_c00001{bottom:833.969600pt;}
.y2bc_c00001{bottom:834.280000pt;}
.ye49_c00001{bottom:834.283067pt;}
.y64b_c00001{bottom:834.920000pt;}
.y9d2_c00001{bottom:835.240000pt;}
.yed2_c00001{bottom:835.560000pt;}
.y1137_c00001{bottom:835.879867pt;}
.y12b_c00001{bottom:835.880000pt;}
.yc13_c00001{bottom:836.199680pt;}
.y7_c00001{bottom:836.520000pt;}
.y2f2_c00001{bottom:836.840000pt;}
.y589_c00001{bottom:837.160000pt;}
.y3c2_c00001{bottom:837.480000pt;}
.y4c5_c00001{bottom:837.800000pt;}
.y66c_c00001{bottom:838.120000pt;}
.yb4b_c00001{bottom:838.436480pt;}
.yb4c_c00001{bottom:838.440000pt;}
.y1cc_c00001{bottom:838.761280pt;}
.y132_c00001{bottom:839.080000pt;}
.y472_c00001{bottom:839.400000pt;}
.ycae_c00001{bottom:840.040000pt;}
.yb04_c00001{bottom:840.044160pt;}
.y797_c00001{bottom:840.360000pt;}
.yd58_c00001{bottom:840.361600pt;}
.yb18_c00001{bottom:840.363200pt;}
.ye03_c00001{bottom:840.678907pt;}
.y55f_c00001{bottom:840.679867pt;}
.y24_c00001{bottom:840.680000pt;}
.yde8_c00001{bottom:840.683200pt;}
.y1146_c00001{bottom:841.320000pt;}
.y784_c00001{bottom:841.640000pt;}
.y987_c00001{bottom:841.959040pt;}
.y1e2_c00001{bottom:841.960000pt;}
.ybb0_c00001{bottom:841.969467pt;}
.y448_c00001{bottom:842.280000pt;}
.y37a_c00001{bottom:842.600000pt;}
.y2d0_c00001{bottom:843.560000pt;}
.y9a3_c00001{bottom:843.873600pt;}
.y8df_c00001{bottom:843.886080pt;}
.y3eb_c00001{bottom:844.200000pt;}
.y4fb_c00001{bottom:844.516480pt;}
.ye8_c00001{bottom:844.520000pt;}
.y175_c00001{bottom:844.840000pt;}
.yfaf_c00001{bottom:845.160000pt;}
.y6c8_c00001{bottom:845.480000pt;}
.y5eb_c00001{bottom:845.800000pt;}
.y463_c00001{bottom:846.440000pt;}
.y405_c00001{bottom:846.760000pt;}
.y775_c00001{bottom:846.763200pt;}
.y6ec_c00001{bottom:847.080000pt;}
.yea1_c00001{bottom:847.720000pt;}
.y609_c00001{bottom:848.041600pt;}
.yc91_c00001{bottom:848.680000pt;}
.y878_c00001{bottom:848.681600pt;}
.y110d_c00001{bottom:849.000000pt;}
.y52b_c00001{bottom:849.320000pt;}
.y79_c00001{bottom:849.640000pt;}
.y312_c00001{bottom:849.960000pt;}
.y7e3_c00001{bottom:850.920000pt;}
.y716_c00001{bottom:850.923840pt;}
.y5a8_c00001{bottom:851.240000pt;}
.y85e_c00001{bottom:851.244480pt;}
.yc12_c00001{bottom:851.878080pt;}
.y895_c00001{bottom:851.878400pt;}
.y27f_c00001{bottom:852.200000pt;}
.y47_c00001{bottom:852.520000pt;}
.y1053_c00001{bottom:853.156480pt;}
.y9fa_c00001{bottom:853.160000pt;}
.y64a_c00001{bottom:853.480000pt;}
.y1102_c00001{bottom:853.484160pt;}
.yb4a_c00001{bottom:853.800000pt;}
.yd45_c00001{bottom:854.119040pt;}
.y50f_c00001{bottom:854.439040pt;}
.y1cb_c00001{bottom:854.439680pt;}
.y510_c00001{bottom:854.440000pt;}
.y1136_c00001{bottom:854.759867pt;}
.y1135_c00001{bottom:854.760000pt;}
.ycf5_c00001{bottom:855.080000pt;}
.y5bb_c00001{bottom:855.400000pt;}
.ycdf_c00001{bottom:856.033600pt;}
.yaaa_c00001{bottom:856.040000pt;}
.yade_c00001{bottom:856.043200pt;}
.ya12_c00001{bottom:856.044160pt;}
.yac5_c00001{bottom:856.046400pt;}
.ye67_c00001{bottom:856.047360pt;}
.yd0f_c00001{bottom:856.050560pt;}
.yf34_c00001{bottom:856.360000pt;}
.ye48_c00001{bottom:856.364027pt;}
.yf64_c00001{bottom:856.678907pt;}
.y1119_c00001{bottom:856.679867pt;}
.yb5b_c00001{bottom:856.680000pt;}
.y110e_c00001{bottom:856.681600pt;}
.yffd_c00001{bottom:857.000000pt;}
.y131_c00001{bottom:857.640000pt;}
.y1088_c00001{bottom:857.960000pt;}
.y22e_c00001{bottom:858.280000pt;}
.y834_c00001{bottom:858.283707pt;}
.yfea_c00001{bottom:858.918080pt;}
.y55d_c00001{bottom:858.920000pt;}
.yf92_c00001{bottom:859.239867pt;}
.y23_c00001{bottom:859.240000pt;}
.y588_c00001{bottom:859.560000pt;}
.y4ac_c00001{bottom:859.880000pt;}
.y10c8_c00001{bottom:860.200000pt;}
.y783_c00001{bottom:860.520000pt;}
.y447_c00001{bottom:860.840000pt;}
.yeab_c00001{bottom:861.160000pt;}
.y8de_c00001{bottom:861.480000pt;}
.y8dd_c00001{bottom:861.484347pt;}
.y341_c00001{bottom:862.120000pt;}
.yb02_c00001{bottom:862.439040pt;}
.yb03_c00001{bottom:862.440000pt;}
.yb17_c00001{bottom:862.759040pt;}
.y94b_c00001{bottom:862.759867pt;}
.y105e_c00001{bottom:862.760000pt;}
.y94a_c00001{bottom:862.764160pt;}
.ybaf_c00001{bottom:862.764667pt;}
.ya0_c00001{bottom:863.080000pt;}
.y174_c00001{bottom:863.400000pt;}
.y608_c00001{bottom:863.720000pt;}
.y607_c00001{bottom:863.730240pt;}
.y986_c00001{bottom:864.040000pt;}
.y3af_c00001{bottom:864.360000pt;}
.y20e_c00001{bottom:864.679867pt;}
.y1e1_c00001{bottom:864.680000pt;}
.y9e7_c00001{bottom:864.999867pt;}
.y462_c00001{bottom:865.000000pt;}
.y10f4_c00001{bottom:865.320000pt;}
.y5ce_c00001{bottom:865.640000pt;}
.y2f1_c00001{bottom:865.960000pt;}
.y429_c00001{bottom:866.600000pt;}
.y428_c00001{bottom:866.601600pt;}
.y715_c00001{bottom:866.602240pt;}
.y80d_c00001{bottom:867.237760pt;}
.y106f_c00001{bottom:867.240000pt;}
.yc11_c00001{bottom:867.241600pt;}
.y379_c00001{bottom:867.880000pt;}
.y78_c00001{bottom:868.200000pt;}
.y6_c00001{bottom:868.520000pt;}
.y774_c00001{bottom:868.844160pt;}
.y3ea_c00001{bottom:869.480000pt;}
.ye7_c00001{bottom:869.800000pt;}
.y1ca_c00001{bottom:870.118080pt;}
.y46_c00001{bottom:871.080000pt;}
.y8b1_c00001{bottom:871.400000pt;}
.ycde_c00001{bottom:872.038080pt;}
.y649_c00001{bottom:872.040000pt;}
.y2cf_c00001{bottom:872.679867pt;}
.y1145_c00001{bottom:873.320000pt;}
.ycf4_c00001{bottom:873.640000pt;}
.yc90_c00001{bottom:873.960000pt;}
.y9a2_c00001{bottom:874.272000pt;}
.yc88_c00001{bottom:874.281600pt;}
.y311_c00001{bottom:875.240000pt;}
.y9f9_c00001{bottom:875.244160pt;}
.y318_c00001{bottom:875.560000pt;}
.y6c7_c00001{bottom:875.878400pt;}
.y1100_c00001{bottom:875.879040pt;}
.y1101_c00001{bottom:875.880000pt;}
.yb49_c00001{bottom:876.196480pt;}
.y827_c00001{bottom:876.200000pt;}
.yc77_c00001{bottom:876.200640pt;}
.y130_c00001{bottom:876.520000pt;}
.y50e_c00001{bottom:876.524160pt;}
.y7e2_c00001{bottom:876.840000pt;}
.y27e_c00001{bottom:877.480000pt;}
.y22_c00001{bottom:877.800000pt;}
.yf91_c00001{bottom:878.119867pt;}
.yaa9_c00001{bottom:878.439040pt;}
.ya11_c00001{bottom:878.440000pt;}
.yac4_c00001{bottom:878.442240pt;}
.yd7b_c00001{bottom:878.443200pt;}
.yd0e_c00001{bottom:878.446400pt;}
.ye47_c00001{bottom:878.759867pt;}
.y6eb_c00001{bottom:879.080000pt;}
.y5a7_c00001{bottom:879.400000pt;}
.y727_c00001{bottom:879.720000pt;}
.y5ba_c00001{bottom:880.360000pt;}
.y894_c00001{bottom:880.676800pt;}
.yc6_c00001{bottom:881.640000pt;}
.y173_c00001{bottom:881.960000pt;}
.y427_c00001{bottom:882.280000pt;}
.y714_c00001{bottom:882.280640pt;}
.yfae_c00001{bottom:882.600000pt;}
.y80c_c00001{bottom:882.916160pt;}
.y9de_c00001{bottom:882.916480pt;}
.yf87_c00001{bottom:882.919040pt;}
.yc10_c00001{bottom:882.920000pt;}
.y3d4_c00001{bottom:883.240000pt;}
.yf6a_c00001{bottom:883.560000pt;}
.y461_c00001{bottom:883.880000pt;}
.y55c_c00001{bottom:883.881600pt;}
.ybae_c00001{bottom:883.887867pt;}
.y576_c00001{bottom:884.200000pt;}
.yb01_c00001{bottom:884.520000pt;}
.y586_c00001{bottom:884.840000pt;}
.yb16_c00001{bottom:884.845760pt;}
.ye02_c00001{bottom:885.159040pt;}
.ya7d_c00001{bottom:885.160000pt;}
.y949_c00001{bottom:885.163200pt;}
.y8dc_c00001{bottom:885.165947pt;}
.y1c9_c00001{bottom:885.481600pt;}
.y446_c00001{bottom:886.120000pt;}
.y606_c00001{bottom:886.126080pt;}
.y49b_c00001{bottom:886.760000pt;}
.y340_c00001{bottom:887.080000pt;}
.y33f_c00001{bottom:887.081467pt;}
.y1e0_c00001{bottom:887.400000pt;}
.ycac_c00001{bottom:887.720000pt;}
.y10c7_c00001{bottom:888.040000pt;}
.y3c1_c00001{bottom:888.360000pt;}
.y77_c00001{bottom:888.679867pt;}
.y76_c00001{bottom:888.680000pt;}
.y10dc_c00001{bottom:889.000000pt;}
.y20d_c00001{bottom:889.323840pt;}
.ybdb_c00001{bottom:889.637760pt;}
.y45_c00001{bottom:889.640000pt;}
.yc87_c00001{bottom:889.960000pt;}
.yc9f_c00001{bottom:890.280000pt;}
.y648_c00001{bottom:890.920000pt;}
.y773_c00001{bottom:891.240000pt;}
.y587_c00001{bottom:891.560000pt;}
.yb48_c00001{bottom:891.563200pt;}
.y1144_c00001{bottom:891.880000pt;}
.y22d_c00001{bottom:892.200000pt;}
.ycf3_c00001{bottom:892.520000pt;}
.ycd4_c00001{bottom:893.159040pt;}
.y378_c00001{bottom:893.160000pt;}
.y877_c00001{bottom:893.480000pt;}
.y4ab_c00001{bottom:893.800000pt;}
.y2bb_c00001{bottom:894.120000pt;}
.yffc_c00001{bottom:894.440000pt;}
.y5cd_c00001{bottom:894.441600pt;}
.y9f_c00001{bottom:895.080000pt;}
.y1134_c00001{bottom:895.400000pt;}
.y21_c00001{bottom:896.360000pt;}
.y833_c00001{bottom:896.679867pt;}
.yf90_c00001{bottom:896.680000pt;}
.y6ea_c00001{bottom:897.640000pt;}
.y713_c00001{bottom:897.644160pt;}
.y10ff_c00001{bottom:897.956027pt;}
.y2f0_c00001{bottom:897.960000pt;}
.y80b_c00001{bottom:898.279680pt;}
.y9dd_c00001{bottom:898.280000pt;}
.y9dc_c00001{bottom:898.281600pt;}
.yd44_c00001{bottom:898.284027pt;}
.y977_c00001{bottom:898.600000pt;}
.y50d_c00001{bottom:898.920000pt;}
.y50c_c00001{bottom:898.923200pt;}
.yc8f_c00001{bottom:899.241600pt;}
.y55b_c00001{bottom:899.560000pt;}
.y5_c00001{bottom:900.520000pt;}
.yac3_c00001{bottom:900.523200pt;}
.ya10_c00001{bottom:900.524160pt;}
.yd0d_c00001{bottom:900.527360pt;}
.y172_c00001{bottom:900.840000pt;}
.ye46_c00001{bottom:900.844160pt;}
.yf63_c00001{bottom:901.156480pt;}
.y1c8_c00001{bottom:901.160000pt;}
.y9d1_c00001{bottom:901.480000pt;}
.y3d3_c00001{bottom:901.800000pt;}
.y460_c00001{bottom:902.440000pt;}
.y33d_c00001{bottom:902.756480pt;}
.y33e_c00001{bottom:902.759867pt;}
.y8db_c00001{bottom:902.770107pt;}
.y62d_c00001{bottom:903.080000pt;}
.y8b0_c00001{bottom:903.400000pt;}
.y605_c00001{bottom:903.721600pt;}
.y9a1_c00001{bottom:904.353600pt;}
.y5a6_c00001{bottom:904.360000pt;}
.y403_c00001{bottom:904.679867pt;}
.y7e1_c00001{bottom:904.680000pt;}
.ybad_c00001{bottom:904.683067pt;}
.y52a_c00001{bottom:904.998080pt;}
.y445_c00001{bottom:905.000000pt;}
.ybda_c00001{bottom:905.001280pt;}
.yc0f_c00001{bottom:905.001467pt;}
.y10c2_c00001{bottom:905.640000pt;}
.y6c6_c00001{bottom:905.960000pt;}
.y75_c00001{bottom:906.920000pt;}
.ye01_c00001{bottom:907.240000pt;}
.ya7c_c00001{bottom:907.241600pt;}
.y948_c00001{bottom:907.244160pt;}
.y788_c00001{bottom:907.560000pt;}
.yaff_c00001{bottom:908.200000pt;}
.y44_c00001{bottom:908.520000pt;}
.yfeb_c00001{bottom:908.840000pt;}
.y893_c00001{bottom:909.475200pt;}
.y575_c00001{bottom:909.480000pt;}
.y1df_c00001{bottom:910.120000pt;}
.yb5a_c00001{bottom:910.440000pt;}
.ycf2_c00001{bottom:911.080000pt;}
.y404_c00001{bottom:911.400000pt;}
.y985_c00001{bottom:913.000000pt;}
.y984_c00001{bottom:913.004160pt;}
.yc7f_c00001{bottom:913.320000pt;}
.y9e_c00001{bottom:913.640000pt;}
.y80a_c00001{bottom:913.958080pt;}
.y9db_c00001{bottom:913.960000pt;}
.y1143_c00001{bottom:913.961600pt;}
.yc8e_c00001{bottom:914.920000pt;}
.yfe9_c00001{bottom:914.921920pt;}
.y55a_c00001{bottom:915.240000pt;}
.yf69_c00001{bottom:915.560000pt;}
.yf62_c00001{bottom:916.520000pt;}
.y33c_c00001{bottom:918.120000pt;}
.y5b9_c00001{bottom:918.440000pt;}
.y603_c00001{bottom:919.396160pt;}
.y604_c00001{bottom:919.400000pt;}
.y9f8_c00001{bottom:919.720000pt;}
.y712_c00001{bottom:920.040000pt;}
.y3d2_c00001{bottom:920.360000pt;}
.y10fe_c00001{bottom:920.678907pt;}
.ybd9_c00001{bottom:920.679680pt;}
.y1c7_c00001{bottom:920.679867pt;}
.y1c6_c00001{bottom:920.681600pt;}
.y50b_c00001{bottom:921.319040pt;}
.y832_c00001{bottom:921.323840pt;}
.y528_c00001{bottom:922.919040pt;}
.y529_c00001{bottom:922.920000pt;}
.yb47_c00001{bottom:922.923200pt;}
.ye45_c00001{bottom:923.240000pt;}
.y444_c00001{bottom:923.560000pt;}
.y10f3_c00001{bottom:924.840000pt;}
.y8da_c00001{bottom:925.165947pt;}
.ybac_c00001{bottom:925.478267pt;}
.y74_c00001{bottom:925.800000pt;}
.yffb_c00001{bottom:926.440000pt;}
.y43_c00001{bottom:927.080000pt;}
.y876_c00001{bottom:927.400000pt;}
.yf86_c00001{bottom:927.406080pt;}
.y20c_c00001{bottom:927.720000pt;}
.y5a5_c00001{bottom:928.040000pt;}
.y20_c00001{bottom:928.360000pt;}
.y809_c00001{bottom:929.636480pt;}
.y6e9_c00001{bottom:929.640000pt;}
.y27d_c00001{bottom:929.960000pt;}
.y5ea_c00001{bottom:930.600000pt;}
.y2ef_c00001{bottom:932.200000pt;}
.y4_c00001{bottom:932.520000pt;}
.y171_c00001{bottom:932.840000pt;}
.yfad_c00001{bottom:933.160000pt;}
.y750_c00001{bottom:933.800000pt;}
.yf8f_c00001{bottom:934.120000pt;}
.y9a0_c00001{bottom:934.435200pt;}
.y574_c00001{bottom:934.750080pt;}
.y585_c00001{bottom:935.400000pt;}
.y45f_c00001{bottom:935.720000pt;}
.y6c5_c00001{bottom:936.041600pt;}
.y1c4_c00001{bottom:936.356480pt;}
.ybd8_c00001{bottom:936.358080pt;}
.y1c5_c00001{bottom:936.360000pt;}
.yc7e_c00001{bottom:936.679867pt;}
.y9da_c00001{bottom:937.320000pt;}
.yc8d_c00001{bottom:937.960000pt;}
.y892_c00001{bottom:938.273600pt;}
.yc9e_c00001{bottom:938.600000pt;}
.y402_c00001{bottom:938.920000pt;}
.y3c0_c00001{bottom:939.240000pt;}
.y772_c00001{bottom:939.560000pt;}
.y33b_c00001{bottom:940.520000pt;}
.y647_c00001{bottom:941.480000pt;}
.y443_c00001{bottom:942.120000pt;}
.y8d9_c00001{bottom:942.759867pt;}
.y8d8_c00001{bottom:942.760640pt;}
.y50a_c00001{bottom:943.400000pt;}
.y808_c00001{bottom:945.000000pt;}
.y527_c00001{bottom:945.004160pt;}
.ye44_c00001{bottom:945.320000pt;}
.y42_c00001{bottom:945.640000pt;}
.y73_c00001{bottom:945.960000pt;}
.ybab_c00001{bottom:946.273467pt;}
.y573_c00001{bottom:950.113600pt;}
.y5a4_c00001{bottom:950.120000pt;}
.yc0e_c00001{bottom:951.718400pt;}
.y1c3_c00001{bottom:951.720000pt;}
.y1c2_c00001{bottom:951.721600pt;}
.y826_c00001{bottom:952.360000pt;}
.y62c_c00001{bottom:959.720000pt;}
.y875_c00001{bottom:962.280000pt;}
.y1f_c00001{bottom:962.600000pt;}
.y782_c00001{bottom:963.880000pt;}
.y27c_c00001{bottom:964.200000pt;}
.y3_c00001{bottom:964.520000pt;}
.y99f_c00001{bottom:964.833600pt;}
.y1fc_c00001{bottom:964.840000pt;}
.y170_c00001{bottom:965.160000pt;}
.yfac_c00001{bottom:965.480000pt;}
.y2ee_c00001{bottom:966.120000pt;}
.y15d_c00001{bottom:966.440000pt;}
.yb59_c00001{bottom:967.396667pt;}
.y1c1_c00001{bottom:967.400000pt;}
.ye43_c00001{bottom:967.720000pt;}
.y684_c00001{bottom:971.240000pt;}
.y99e_c00001{bottom:981.480000pt;}
.yfdd_c00001{bottom:993.000000pt;}
.y10a5_c00001{bottom:1010.920000pt;}
.y62b_c00001{bottom:1011.560000pt;}
.y2_c00001{bottom:1011.880000pt;}
.yb56_c00001{bottom:1014.759867pt;}
.yb0f_c00001{bottom:1114.600000pt;}
.h6d_c00001{height:0.000000pt;}
.h67_c00001{height:1.280000pt;}
.h8_c00001{height:17.116093pt;}
.h98_c00001{height:23.034375pt;}
.h68_c00001{height:23.355000pt;}
.h6f_c00001{height:23.680000pt;}
.h7_c00001{height:24.000000pt;}
.h3d_c00001{height:24.320000pt;}
.h46_c00001{height:24.704000pt;}
.h85_c00001{height:24.960000pt;}
.h4a_c00001{height:26.560000pt;}
.h4b_c00001{height:26.880000pt;}
.h62_c00001{height:27.168000pt;}
.h77_c00001{height:27.200000pt;}
.h2a_c00001{height:27.501444pt;}
.h82_c00001{height:27.520000pt;}
.h80_c00001{height:27.840000pt;}
.h7b_c00001{height:28.153125pt;}
.h52_c00001{height:28.160000pt;}
.h91_c00001{height:28.480000pt;}
.h45_c00001{height:28.656640pt;}
.h7d_c00001{height:28.800000pt;}
.hc_c00001{height:28.992000pt;}
.h1a_c00001{height:29.538588pt;}
.h49_c00001{height:29.760000pt;}
.h74_c00001{height:30.080000pt;}
.h47_c00001{height:30.720000pt;}
.h88_c00001{height:31.040000pt;}
.h3a_c00001{height:31.311360pt;}
.h16_c00001{height:31.360000pt;}
.h60_c00001{height:31.514880pt;}
.h66_c00001{height:32.320000pt;}
.h94_c00001{height:32.640000pt;}
.h5c_c00001{height:32.960000pt;}
.h31_c00001{height:33.280000pt;}
.h4d_c00001{height:33.612876pt;}
.h14_c00001{height:33.630720pt;}
.h55_c00001{height:34.240000pt;}
.h96_c00001{height:34.880000pt;}
.h10_c00001{height:34.978125pt;}
.h8a_c00001{height:35.200000pt;}
.h79_c00001{height:35.465000pt;}
.h69_c00001{height:35.520000pt;}
.h2b_c00001{height:35.541875pt;}
.h57_c00001{height:36.224000pt;}
.h87_c00001{height:36.480000pt;}
.h6_c00001{height:36.561920pt;}
.h8c_c00001{height:36.800000pt;}
.h15_c00001{height:37.002500pt;}
.h26_c00001{height:37.687165pt;}
.h59_c00001{height:38.269440pt;}
.h19_c00001{height:38.390625pt;}
.h29_c00001{height:39.009375pt;}
.h64_c00001{height:39.680000pt;}
.h7c_c00001{height:39.724309pt;}
.h43_c00001{height:40.000000pt;}
.h63_c00001{height:40.208640pt;}
.h24_c00001{height:40.514560pt;}
.h81_c00001{height:40.960000pt;}
.h6b_c00001{height:41.600000pt;}
.hf_c00001{height:41.761453pt;}
.h8d_c00001{height:41.781243pt;}
.h17_c00001{height:41.920000pt;}
.h28_c00001{height:42.240000pt;}
.hd_c00001{height:42.656250pt;}
.h12_c00001{height:42.908160pt;}
.h44_c00001{height:43.200000pt;}
.h73_c00001{height:43.250000pt;}
.h22_c00001{height:43.276117pt;}
.h20_c00001{height:43.343750pt;}
.h71_c00001{height:44.228719pt;}
.h32_c00001{height:44.480000pt;}
.h5f_c00001{height:44.555520pt;}
.h97_c00001{height:45.125000pt;}
.h27_c00001{height:45.835741pt;}
.h72_c00001{height:45.906250pt;}
.h58_c00001{height:46.250000pt;}
.h36_c00001{height:46.400000pt;}
.h4c_c00001{height:46.720000pt;}
.h86_c00001{height:47.360000pt;}
.he_c00001{height:47.546880pt;}
.h2d_c00001{height:47.548160pt;}
.h5a_c00001{height:47.550720pt;}
.h99_c00001{height:47.553280pt;}
.h56_c00001{height:47.560960pt;}
.h3f_c00001{height:47.562240pt;}
.h6a_c00001{height:47.566080pt;}
.h4e_c00001{height:47.651840pt;}
.h6c_c00001{height:47.680000pt;}
.h65_c00001{height:47.895314pt;}
.h5_c00001{height:48.000000pt;}
.h53_c00001{height:48.320000pt;}
.h48_c00001{height:48.640000pt;}
.h2f_c00001{height:49.010202pt;}
.h3_c00001{height:49.408000pt;}
.h93_c00001{height:49.481875pt;}
.h5b_c00001{height:49.600000pt;}
.h6e_c00001{height:49.866240pt;}
.h9_c00001{height:50.346667pt;}
.h40_c00001{height:50.745600pt;}
.h8f_c00001{height:50.749440pt;}
.h11_c00001{height:50.752000pt;}
.h2c_c00001{height:50.752533pt;}
.h90_c00001{height:50.760960pt;}
.h18_c00001{height:50.766080pt;}
.h4_c00001{height:50.928601pt;}
.h30_c00001{height:51.200000pt;}
.h34_c00001{height:51.216640pt;}
.h89_c00001{height:51.520000pt;}
.h84_c00001{height:51.960320pt;}
.h38_c00001{height:52.179200pt;}
.h13_c00001{height:52.185600pt;}
.h39_c00001{height:52.199680pt;}
.h3c_c00001{height:52.211200pt;}
.h3b_c00001{height:52.224747pt;}
.h7a_c00001{height:52.313964pt;}
.h3e_c00001{height:52.775752pt;}
.h51_c00001{height:52.800000pt;}
.h76_c00001{height:53.791685pt;}
.h5e_c00001{height:54.336000pt;}
.h1d_c00001{height:55.002889pt;}
.h83_c00001{height:56.306250pt;}
.h8b_c00001{height:56.320000pt;}
.h21_c00001{height:57.245858pt;}
.h95_c00001{height:57.593125pt;}
.h41_c00001{height:57.977600pt;}
.h2e_c00001{height:57.978880pt;}
.ha_c00001{height:57.984000pt;}
.h75_c00001{height:57.984533pt;}
.h92_c00001{height:57.985000pt;}
.h4f_c00001{height:58.112000pt;}
.h61_c00001{height:58.394880pt;}
.h23_c00001{height:59.768539pt;}
.h8e_c00001{height:60.343750pt;}
.h25_c00001{height:60.480000pt;}
.h42_c00001{height:60.510187pt;}
.hb_c00001{height:60.510720pt;}
.h78_c00001{height:62.373023pt;}
.h1e_c00001{height:62.622720pt;}
.h50_c00001{height:63.232000pt;}
.h70_c00001{height:64.550022pt;}
.h54_c00001{height:65.920000pt;}
.h1f_c00001{height:67.225753pt;}
.h37_c00001{height:67.261440pt;}
.h5d_c00001{height:71.723520pt;}
.h1b_c00001{height:72.000000pt;}
.h33_c00001{height:72.320000pt;}
.h1c_c00001{height:76.538880pt;}
.h7e_c00001{height:80.320000pt;}
.h35_c00001{height:96.000000pt;}
.h7f_c00001{height:120.960000pt;}
.h2_c00001{height:1067.880000pt;}
.h0_c00001{height:1122.520000pt;}
.h1_c00001{height:1122.666667pt;}
.w7b_c00001{width:0.000000pt;}
.w5_c00001{width:22.240000pt;}
.w53_c00001{width:60.480000pt;}
.w10_c00001{width:78.080000pt;}
.w55_c00001{width:96.640000pt;}
.w1e_c00001{width:102.080000pt;}
.w96_c00001{width:104.640000pt;}
.wac_c00001{width:112.960000pt;}
.w1d_c00001{width:126.080000pt;}
.w56_c00001{width:128.960000pt;}
.w57_c00001{width:131.840000pt;}
.wba_c00001{width:141.440000pt;}
.wb9_c00001{width:148.160000pt;}
.w65_c00001{width:148.800000pt;}
.w9f_c00001{width:149.760000pt;}
.wa8_c00001{width:151.040000pt;}
.wb1_c00001{width:155.200000pt;}
.w13_c00001{width:168.000000pt;}
.wbc_c00001{width:170.560000pt;}
.wbb_c00001{width:173.440000pt;}
.w20_c00001{width:173.760000pt;}
.w9d_c00001{width:174.080000pt;}
.w8f_c00001{width:180.480000pt;}
.w54_c00001{width:181.760000pt;}
.w4c_c00001{width:182.080000pt;}
.w91_c00001{width:186.880000pt;}
.wad_c00001{width:193.280000pt;}
.wae_c00001{width:194.560000pt;}
.w45_c00001{width:195.520000pt;}
.w2c_c00001{width:196.160000pt;}
.wb4_c00001{width:197.760000pt;}
.w23_c00001{width:198.080000pt;}
.w15_c00001{width:198.400000pt;}
.waa_c00001{width:198.720000pt;}
.w87_c00001{width:199.680000pt;}
.wb2_c00001{width:201.280000pt;}
.w26_c00001{width:203.520000pt;}
.wc2_c00001{width:208.960000pt;}
.w4f_c00001{width:211.200000pt;}
.w47_c00001{width:214.080000pt;}
.w18_c00001{width:215.360000pt;}
.w85_c00001{width:221.120000pt;}
.w19_c00001{width:221.760000pt;}
.w2e_c00001{width:222.080000pt;}
.w8c_c00001{width:222.720000pt;}
.w90_c00001{width:223.360000pt;}
.w6c_c00001{width:233.920000pt;}
.wa7_c00001{width:234.560000pt;}
.w6e_c00001{width:234.880000pt;}
.w16_c00001{width:235.200000pt;}
.w6f_c00001{width:235.840000pt;}
.wb3_c00001{width:240.640000pt;}
.w12_c00001{width:242.560000pt;}
.w9e_c00001{width:243.520000pt;}
.w77_c00001{width:244.800000pt;}
.w75_c00001{width:245.120000pt;}
.w5c_c00001{width:245.760000pt;}
.w97_c00001{width:246.080000pt;}
.wa1_c00001{width:246.720000pt;}
.w9_c00001{width:247.040000pt;}
.w1c_c00001{width:249.600000pt;}
.wa4_c00001{width:250.240000pt;}
.w9b_c00001{width:252.800000pt;}
.w82_c00001{width:253.760000pt;}
.w6d_c00001{width:255.680000pt;}
.wa5_c00001{width:259.200000pt;}
.w6_c00001{width:261.760000pt;}
.w9a_c00001{width:264.640000pt;}
.wb5_c00001{width:267.200000pt;}
.wa0_c00001{width:268.800000pt;}
.w6b_c00001{width:269.120000pt;}
.w74_c00001{width:269.440000pt;}
.w5a_c00001{width:270.080000pt;}
.w72_c00001{width:270.400000pt;}
.w83_c00001{width:270.720000pt;}
.w70_c00001{width:271.040000pt;}
.w29_c00001{width:271.680000pt;}
.w5b_c00001{width:273.600000pt;}
.w59_c00001{width:277.120000pt;}
.wa6_c00001{width:280.000000pt;}
.w4d_c00001{width:286.720000pt;}
.w17_c00001{width:288.640000pt;}
.wb6_c00001{width:291.200000pt;}
.w7d_c00001{width:291.520000pt;}
.w67_c00001{width:293.760000pt;}
.w58_c00001{width:294.080000pt;}
.w73_c00001{width:295.040000pt;}
.wc1_c00001{width:296.320000pt;}
.w84_c00001{width:298.560000pt;}
.w24_c00001{width:304.960000pt;}
.wc3_c00001{width:309.120000pt;}
.wc0_c00001{width:310.720000pt;}
.w93_c00001{width:311.680000pt;}
.w2d_c00001{width:314.560000pt;}
.waf_c00001{width:317.440000pt;}
.w71_c00001{width:318.080000pt;}
.wbd_c00001{width:328.000000pt;}
.w6a_c00001{width:329.600000pt;}
.w99_c00001{width:331.200000pt;}
.w7_c00001{width:337.920000pt;}
.w31_c00001{width:338.880000pt;}
.w7f_c00001{width:339.520000pt;}
.w8d_c00001{width:343.360000pt;}
.w78_c00001{width:344.000000pt;}
.w8b_c00001{width:347.200000pt;}
.w3a_c00001{width:347.840000pt;}
.wa_c00001{width:349.760000pt;}
.w76_c00001{width:354.240000pt;}
.w79_c00001{width:354.560000pt;}
.w7a_c00001{width:355.840000pt;}
.w62_c00001{width:360.320000pt;}
.w89_c00001{width:363.520000pt;}
.w1a_c00001{width:363.840000pt;}
.wb0_c00001{width:365.760000pt;}
.w1b_c00001{width:366.080000pt;}
.wa2_c00001{width:366.720000pt;}
.wb7_c00001{width:380.800000pt;}
.w8e_c00001{width:389.760000pt;}
.w14_c00001{width:390.080000pt;}
.wab_c00001{width:390.400000pt;}
.w8a_c00001{width:391.360000pt;}
.w9c_c00001{width:397.760000pt;}
.w1f_c00001{width:398.080000pt;}
.w7e_c00001{width:404.480000pt;}
.w3f_c00001{width:411.200000pt;}
.w33_c00001{width:413.760000pt;}
.w80_c00001{width:414.080000pt;}
.w92_c00001{width:414.400000pt;}
.w81_c00001{width:421.760000pt;}
.wb8_c00001{width:422.080000pt;}
.wbe_c00001{width:435.200000pt;}
.w95_c00001{width:435.520000pt;}
.w60_c00001{width:439.040000pt;}
.wb_c00001{width:448.000000pt;}
.w2b_c00001{width:454.080000pt;}
.w3e_c00001{width:455.680000pt;}
.w86_c00001{width:457.920000pt;}
.w11_c00001{width:461.760000pt;}
.wbf_c00001{width:462.080000pt;}
.we_c00001{width:479.360000pt;}
.w64_c00001{width:483.840000pt;}
.w5d_c00001{width:485.760000pt;}
.wd_c00001{width:486.080000pt;}
.w3b_c00001{width:488.640000pt;}
.w44_c00001{width:493.760000pt;}
.w3_c00001{width:495.360000pt;}
.wa3_c00001{width:504.320000pt;}
.w4_c00001{width:506.880000pt;}
.w98_c00001{width:507.840000pt;}
.w51_c00001{width:508.800000pt;}
.w61_c00001{width:510.080000pt;}
.wc_c00001{width:517.760000pt;}
.w50_c00001{width:519.040000pt;}
.w66_c00001{width:528.000000pt;}
.w2f_c00001{width:528.320000pt;}
.w36_c00001{width:529.280000pt;}
.w63_c00001{width:532.160000pt;}
.w5f_c00001{width:534.400000pt;}
.wf_c00001{width:538.560000pt;}
.w94_c00001{width:540.160000pt;}
.w30_c00001{width:550.720000pt;}
.w39_c00001{width:557.120000pt;}
.w2a_c00001{width:558.720000pt;}
.w8_c00001{width:559.680000pt;}
.w22_c00001{width:562.560000pt;}
.wa9_c00001{width:563.520000pt;}
.w42_c00001{width:569.920000pt;}
.w41_c00001{width:570.560000pt;}
.w38_c00001{width:570.880000pt;}
.w40_c00001{width:571.200000pt;}
.w43_c00001{width:571.520000pt;}
.w27_c00001{width:571.840000pt;}
.w37_c00001{width:572.160000pt;}
.w34_c00001{width:572.480000pt;}
.w28_c00001{width:572.800000pt;}
.w35_c00001{width:573.120000pt;}
.w32_c00001{width:574.080000pt;}
.w4a_c00001{width:574.400000pt;}
.w69_c00001{width:574.720000pt;}
.w5e_c00001{width:582.080000pt;}
.w3d_c00001{width:583.040000pt;}
.w88_c00001{width:584.640000pt;}
.w48_c00001{width:593.920000pt;}
.w52_c00001{width:602.240000pt;}
.w49_c00001{width:603.200000pt;}
.w46_c00001{width:604.160000pt;}
.w4e_c00001{width:605.760000pt;}
.w3c_c00001{width:606.080000pt;}
.w4b_c00001{width:608.000000pt;}
.w68_c00001{width:620.800000pt;}
.w21_c00001{width:630.080000pt;}
.w7c_c00001{width:654.080000pt;}
.w2_c00001{width:767.960000pt;}
.w25_c00001{width:793.706667pt;}
.w0_c00001{width:793.720000pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.xa5_c00001{left:2.880133pt;}
.x1f4_c00001{left:3.795867pt;}
.x153_c00001{left:5.053333pt;}
.x180_c00001{left:7.206933pt;}
.x41_c00001{left:8.668667pt;}
.x1c3_c00001{left:10.344933pt;}
.x1a0_c00001{left:11.835867pt;}
.x1_c00001{left:12.880000pt;}
.xa3_c00001{left:14.666267pt;}
.x181_c00001{left:16.200800pt;}
.xa1_c00001{left:17.344000pt;}
.x160_c00001{left:18.953200pt;}
.x1b5_c00001{left:20.278267pt;}
.x40_c00001{left:21.208533pt;}
.x151_c00001{left:22.500267pt;}
.x1ae_c00001{left:24.614133pt;}
.x1f5_c00001{left:25.880533pt;}
.x123_c00001{left:27.159733pt;}
.x20d_c00001{left:28.325333pt;}
.x209_c00001{left:29.512267pt;}
.x15a_c00001{left:30.509733pt;}
.x1ed_c00001{left:31.481333pt;}
.x1ee_c00001{left:32.872133pt;}
.x17f_c00001{left:34.530133pt;}
.x161_c00001{left:36.102133pt;}
.x182_c00001{left:37.206267pt;}
.x124_c00001{left:38.181867pt;}
.x1eb_c00001{left:39.127733pt;}
.x1f3_c00001{left:40.148000pt;}
.x1db_c00001{left:41.882400pt;}
.x1fa_c00001{left:43.448800pt;}
.x1dd_c00001{left:44.363200pt;}
.x1aa_c00001{left:45.358400pt;}
.x17c_c00001{left:47.956267pt;}
.x1da_c00001{left:49.265467pt;}
.x1a1_c00001{left:50.486533pt;}
.x1a2_c00001{left:53.486533pt;}
.x20e_c00001{left:54.629200pt;}
.x1e3_c00001{left:55.559200pt;}
.x1b3_c00001{left:57.821200pt;}
.x1b4_c00001{left:59.506800pt;}
.x1d7_c00001{left:61.851200pt;}
.x1f6_c00001{left:63.253867pt;}
.x1a5_c00001{left:64.611867pt;}
.x20f_c00001{left:66.428667pt;}
.x154_c00001{left:68.430933pt;}
.x1d8_c00001{left:71.104667pt;}
.x1d9_c00001{left:72.598533pt;}
.x1e6_c00001{left:74.074000pt;}
.x200_c00001{left:77.944667pt;}
.x1c0_c00001{left:79.662400pt;}
.x1dc_c00001{left:81.507733pt;}
.x1d4_c00001{left:82.501200pt;}
.x208_c00001{left:85.455867pt;}
.x188_c00001{left:86.508000pt;}
.xa4_c00001{left:88.519067pt;}
.x1b1_c00001{left:90.111333pt;}
.xf1_c00001{left:91.827067pt;}
.x5_c00001{left:93.631467pt;}
.x1e2_c00001{left:94.906133pt;}
.x20b_c00001{left:95.854133pt;}
.x1d6_c00001{left:97.501467pt;}
.x1d5_c00001{left:98.827333pt;}
.x2_c00001{left:100.480133pt;}
.x125_c00001{left:102.200400pt;}
.x1c1_c00001{left:104.480133pt;}
.x176_c00001{left:105.808000pt;}
.x18a_c00001{left:106.918267pt;}
.x30_c00001{left:108.634400pt;}
.xee_c00001{left:110.480000pt;}
.x1b2_c00001{left:111.644933pt;}
.x1a4_c00001{left:112.720000pt;}
.x7f_c00001{left:113.813467pt;}
.x10e_c00001{left:114.708267pt;}
.x1a7_c00001{left:115.600000pt;}
.x1cc_c00001{left:117.359733pt;}
.x28_c00001{left:118.252933pt;}
.x1b0_c00001{left:119.760000pt;}
.x96_c00001{left:120.927733pt;}
.x50_c00001{left:121.959333pt;}
.xf8_c00001{left:123.090533pt;}
.xd_c00001{left:124.477867pt;}
.xca_c00001{left:126.255867pt;}
.xb9_c00001{left:127.442400pt;}
.x210_c00001{left:128.334133pt;}
.x42_c00001{left:129.368000pt;}
.x19_c00001{left:130.865200pt;}
.xfc_c00001{left:132.311333pt;}
.x177_c00001{left:133.391600pt;}
.xbe_c00001{left:134.287467pt;}
.x79_c00001{left:135.305333pt;}
.xce_c00001{left:136.265600pt;}
.xd3_c00001{left:137.807600pt;}
.x57_c00001{left:139.012400pt;}
.x11b_c00001{left:140.175467pt;}
.xbb_c00001{left:141.252000pt;}
.x19d_c00001{left:142.617867pt;}
.x3_c00001{left:143.583333pt;}
.x4c_c00001{left:144.994800pt;}
.x17e_c00001{left:146.424133pt;}
.x1a_c00001{left:147.531600pt;}
.xe_c00001{left:148.477867pt;}
.x199_c00001{left:149.371467pt;}
.x90_c00001{left:150.851600pt;}
.x1a8_c00001{left:151.748800pt;}
.x43_c00001{left:152.911067pt;}
.x72_c00001{left:154.560000pt;}
.x185_c00001{left:155.777733pt;}
.x80_c00001{left:156.772133pt;}
.x6_c00001{left:158.480000pt;}
.xf5_c00001{left:159.758133pt;}
.xe9_c00001{left:160.666933pt;}
.xbc_c00001{left:161.984667pt;}
.x15b_c00001{left:163.539333pt;}
.x53_c00001{left:164.678000pt;}
.x10d_c00001{left:165.678000pt;}
.x74_c00001{left:166.716800pt;}
.x17b_c00001{left:168.046933pt;}
.x60_c00001{left:169.397467pt;}
.xde_c00001{left:170.878267pt;}
.xe8_c00001{left:172.308267pt;}
.x54_c00001{left:173.291333pt;}
.x152_c00001{left:174.362933pt;}
.x67_c00001{left:175.716800pt;}
.x159_c00001{left:176.910800pt;}
.x121_c00001{left:178.237600pt;}
.x102_c00001{left:179.699600pt;}
.x12c_c00001{left:181.059867pt;}
.x61_c00001{left:181.977867pt;}
.x148_c00001{left:183.370400pt;}
.x69_c00001{left:184.542667pt;}
.x19c_c00001{left:185.637067pt;}
.xd4_c00001{left:186.943067pt;}
.x141_c00001{left:187.889600pt;}
.x45_c00001{left:189.107467pt;}
.xbf_c00001{left:190.919333pt;}
.x55_c00001{left:192.264267pt;}
.x1cf_c00001{left:193.210933pt;}
.x6d_c00001{left:194.380267pt;}
.x4d_c00001{left:196.086267pt;}
.x1b9_c00001{left:197.107733pt;}
.x31_c00001{left:198.284133pt;}
.x1ec_c00001{left:199.264000pt;}
.xec_c00001{left:200.334000pt;}
.x149_c00001{left:202.009733pt;}
.x6e_c00001{left:203.597067pt;}
.x1d1_c00001{left:204.600000pt;}
.x68_c00001{left:205.800133pt;}
.xbd_c00001{left:207.112933pt;}
.x8e_c00001{left:208.421600pt;}
.x1b6_c00001{left:209.758400pt;}
.x4_c00001{left:210.654267pt;}
.x13a_c00001{left:212.368133pt;}
.x1b_c00001{left:213.475867pt;}
.xe4_c00001{left:215.245467pt;}
.x1c_c00001{left:216.809200pt;}
.xa6_c00001{left:217.805733pt;}
.x142_c00001{left:219.008400pt;}
.x103_c00001{left:220.711600pt;}
.x75_c00001{left:221.867867pt;}
.xa2_c00001{left:223.120000pt;}
.xd5_c00001{left:224.856133pt;}
.x81_c00001{left:226.383200pt;}
.x1c6_c00001{left:227.650667pt;}
.x173_c00001{left:228.622667pt;}
.xa0_c00001{left:229.520000pt;}
.x150_c00001{left:230.480000pt;}
.x9e_c00001{left:231.585333pt;}
.xae_c00001{left:232.607467pt;}
.x139_c00001{left:233.807600pt;}
.x1d_c00001{left:235.328400pt;}
.x175_c00001{left:236.503867pt;}
.xb5_c00001{left:237.405200pt;}
.x1e_c00001{left:238.661733pt;}
.x12e_c00001{left:239.770133pt;}
.x1ff_c00001{left:240.928400pt;}
.xf4_c00001{left:241.837600pt;}
.x12f_c00001{left:243.436800pt;}
.x82_c00001{left:244.902267pt;}
.x11f_c00001{left:246.285467pt;}
.x12d_c00001{left:247.909867pt;}
.x9f_c00001{left:249.357733pt;}
.x1f_c00001{left:250.514267pt;}
.xf_c00001{left:251.680000pt;}
.x7_c00001{left:253.346533pt;}
.x1c2_c00001{left:254.269200pt;}
.xcd_c00001{left:255.322933pt;}
.xb3_c00001{left:256.909467pt;}
.xc0_c00001{left:257.837200pt;}
.xac_c00001{left:259.613600pt;}
.xfb_c00001{left:260.575867pt;}
.x1e0_c00001{left:261.505200pt;}
.x27_c00001{left:262.419600pt;}
.x112_c00001{left:263.456000pt;}
.x3f_c00001{left:264.400000pt;}
.x1ca_c00001{left:265.411467pt;}
.x91_c00001{left:266.394133pt;}
.x20a_c00001{left:267.321733pt;}
.xdc_c00001{left:268.296533pt;}
.x1f7_c00001{left:269.286800pt;}
.x118_c00001{left:270.268933pt;}
.x1e8_c00001{left:271.682933pt;}
.xd2_c00001{left:272.736667pt;}
.x203_c00001{left:273.674133pt;}
.x4a_c00001{left:274.583600pt;}
.xb8_c00001{left:275.869467pt;}
.x122_c00001{left:276.820000pt;}
.x37_c00001{left:278.326533pt;}
.x6a_c00001{left:279.925200pt;}
.x16c_c00001{left:281.247067pt;}
.x6f_c00001{left:282.322533pt;}
.xe6_c00001{left:284.079067pt;}
.x13d_c00001{left:285.101200pt;}
.xb4_c00001{left:286.268933pt;}
.x62_c00001{left:287.202533pt;}
.x38_c00001{left:288.699600pt;}
.x16f_c00001{left:290.246667pt;}
.x18b_c00001{left:291.429333pt;}
.x4b_c00001{left:292.732800pt;}
.x7d_c00001{left:294.215867pt;}
.x12a_c00001{left:295.545200pt;}
.x16_c00001{left:297.023467pt;}
.x83_c00001{left:298.234667pt;}
.xd6_c00001{left:299.808000pt;}
.x17_c00001{left:301.023467pt;}
.xaf_c00001{left:301.950133pt;}
.x12b_c00001{left:302.878533pt;}
.x19a_c00001{left:303.858400pt;}
.x11c_c00001{left:304.967067pt;}
.x10_c00001{left:305.902933pt;}
.x104_c00001{left:307.050800pt;}
.x3e_c00001{left:307.959600pt;}
.x108_c00001{left:308.954400pt;}
.x11_c00001{left:309.902933pt;}
.x131_c00001{left:311.443733pt;}
.x4e_c00001{left:312.716133pt;}
.x47_c00001{left:313.919600pt;}
.x11d_c00001{left:315.326800pt;}
.xb1_c00001{left:316.854133pt;}
.x205_c00001{left:317.871067pt;}
.x132_c00001{left:318.777067pt;}
.xc3_c00001{left:319.998667pt;}
.x2e_c00001{left:320.988667pt;}
.x1cb_c00001{left:321.888000pt;}
.x20_c00001{left:322.792267pt;}
.x137_c00001{left:323.691067pt;}
.x63_c00001{left:324.961600pt;}
.x13b_c00001{left:326.429733pt;}
.x1a9_c00001{left:327.634133pt;}
.x97_c00001{left:328.764267pt;}
.xdd_c00001{left:330.517600pt;}
.xf2_c00001{left:332.021733pt;}
.x162_c00001{left:333.267200pt;}
.xb2_c00001{left:334.626667pt;}
.xad_c00001{left:335.836533pt;}
.xd1_c00001{left:336.875333pt;}
.x202_c00001{left:337.920000pt;}
.x155_c00001{left:338.879867pt;}
.x7e_c00001{left:340.173867pt;}
.x13f_c00001{left:341.678400pt;}
.xb6_c00001{left:342.844000pt;}
.x18c_c00001{left:343.741867pt;}
.x21_c00001{left:344.991867pt;}
.x15d_c00001{left:345.911200pt;}
.xf3_c00001{left:347.003600pt;}
.x7a_c00001{left:347.938533pt;}
.x94_c00001{left:349.076800pt;}
.x116_c00001{left:349.980800pt;}
.x4f_c00001{left:351.248400pt;}
.xb7_c00001{left:352.619733pt;}
.x14d_c00001{left:353.573467pt;}
.x1fe_c00001{left:354.464133pt;}
.x39_c00001{left:355.377200pt;}
.xdf_c00001{left:356.406933pt;}
.x171_c00001{left:357.403600pt;}
.x7b_c00001{left:358.311467pt;}
.xe7_c00001{left:359.598267pt;}
.x76_c00001{left:360.878533pt;}
.x172_c00001{left:361.851600pt;}
.x3a_c00001{left:362.790000pt;}
.x115_c00001{left:363.986933pt;}
.x7c_c00001{left:365.724267pt;}
.x192_c00001{left:366.735067pt;}
.x9_c00001{left:367.970667pt;}
.x145_c00001{left:369.426133pt;}
.x156_c00001{left:370.510400pt;}
.x58_c00001{left:371.656933pt;}
.x109_c00001{left:372.602800pt;}
.x1af_c00001{left:373.520000pt;}
.xf9_c00001{left:374.418667pt;}
.xa8_c00001{left:375.317733pt;}
.x3b_c00001{left:376.856133pt;}
.x77_c00001{left:378.651067pt;}
.x143_c00001{left:379.643600pt;}
.xb0_c00001{left:381.432933pt;}
.x14c_c00001{left:382.723600pt;}
.x18_c00001{left:383.744000pt;}
.x146_c00001{left:384.636667pt;}
.x85_c00001{left:386.142933pt;}
.x186_c00001{left:387.238267pt;}
.x10c_c00001{left:388.168933pt;}
.xfe_c00001{left:389.122400pt;}
.x84_c00001{left:390.250667pt;}
.x187_c00001{left:391.238267pt;}
.x147_c00001{left:392.268800pt;}
.x1df_c00001{left:393.162800pt;}
.x126_c00001{left:394.142933pt;}
.x174_c00001{left:395.664667pt;}
.x29_c00001{left:397.268533pt;}
.x15c_c00001{left:398.401600pt;}
.x12_c00001{left:399.693333pt;}
.x98_c00001{left:401.483067pt;}
.x1b7_c00001{left:402.666667pt;}
.x13_c00001{left:403.693333pt;}
.x16d_c00001{left:404.598000pt;}
.x2b_c00001{left:405.492800pt;}
.xeb_c00001{left:406.813733pt;}
.x133_c00001{left:408.417333pt;}
.x19f_c00001{left:409.314800pt;}
.x106_c00001{left:411.021200pt;}
.x16e_c00001{left:412.598000pt;}
.x140_c00001{left:413.708933pt;}
.x56_c00001{left:414.812533pt;}
.x168_c00001{left:415.701867pt;}
.x95_c00001{left:416.627600pt;}
.xc9_c00001{left:417.581333pt;}
.x17d_c00001{left:418.911733pt;}
.xc4_c00001{left:419.957333pt;}
.x178_c00001{left:420.932933pt;}
.x120_c00001{left:422.480000pt;}
.x2c_c00001{left:424.210000pt;}
.x5d_c00001{left:425.743867pt;}
.x165_c00001{left:427.555733pt;}
.x15e_c00001{left:428.565733pt;}
.xa7_c00001{left:429.822267pt;}
.x59_c00001{left:430.947867pt;}
.x17a_c00001{left:432.618133pt;}
.x10b_c00001{left:433.855200pt;}
.x204_c00001{left:434.762400pt;}
.x73_c00001{left:435.678400pt;}
.x20c_c00001{left:436.634133pt;}
.x22_c00001{left:437.582667pt;}
.x1ac_c00001{left:438.568667pt;}
.x3c_c00001{left:440.257867pt;}
.x13e_c00001{left:441.516267pt;}
.xc2_c00001{left:442.607067pt;}
.x1d2_c00001{left:443.507867pt;}
.x189_c00001{left:444.404267pt;}
.x14b_c00001{left:445.701200pt;}
.x9c_c00001{left:446.774133pt;}
.x1ba_c00001{left:447.763733pt;}
.x86_c00001{left:448.706667pt;}
.x1e9_c00001{left:449.600267pt;}
.x127_c00001{left:450.512000pt;}
.x65_c00001{left:452.390933pt;}
.x1e4_c00001{left:453.495067pt;}
.x2d_c00001{left:454.417333pt;}
.x100_c00001{left:455.577867pt;}
.x206_c00001{left:456.522800pt;}
.xff_c00001{left:457.647733pt;}
.x138_c00001{left:458.638400pt;}
.x2a_c00001{left:460.387733pt;}
.x1a6_c00001{left:461.359867pt;}
.x163_c00001{left:462.372667pt;}
.xe5_c00001{left:463.456400pt;}
.x18d_c00001{left:464.359600pt;}
.xc7_c00001{left:465.864533pt;}
.x169_c00001{left:467.252933pt;}
.x14_c00001{left:468.587867pt;}
.x66_c00001{left:470.150667pt;}
.x19b_c00001{left:471.292667pt;}
.x15_c00001{left:472.587867pt;}
.x48_c00001{left:473.730533pt;}
.x201_c00001{left:474.619733pt;}
.x193_c00001{left:475.520000pt;}
.x128_c00001{left:476.817067pt;}
.x8a_c00001{left:477.750267pt;}
.x194_c00001{left:478.973600pt;}
.x15f_c00001{left:480.132800pt;}
.x1bb_c00001{left:481.033867pt;}
.x158_c00001{left:482.466533pt;}
.x51_c00001{left:483.625600pt;}
.x164_c00001{left:484.572267pt;}
.x114_c00001{left:486.224267pt;}
.x1ab_c00001{left:487.918667pt;}
.x16a_c00001{left:488.954133pt;}
.x1c8_c00001{left:490.361600pt;}
.xd8_c00001{left:491.323200pt;}
.x5f_c00001{left:492.570667pt;}
.x33_c00001{left:494.217067pt;}
.xdb_c00001{left:495.646133pt;}
.x14a_c00001{left:496.994800pt;}
.x1f2_c00001{left:498.018533pt;}
.xa9_c00001{left:499.152667pt;}
.xc1_c00001{left:500.553733pt;}
.x87_c00001{left:501.617467pt;}
.x196_c00001{left:502.991867pt;}
.x8b_c00001{left:504.214533pt;}
.x23_c00001{left:505.233467pt;}
.x157_c00001{left:506.518800pt;}
.x88_c00001{left:507.876267pt;}
.x46_c00001{left:508.835600pt;}
.x1e7_c00001{left:509.750933pt;}
.x5a_c00001{left:510.985600pt;}
.x1d3_c00001{left:511.909467pt;}
.xc5_c00001{left:513.267200pt;}
.x5b_c00001{left:514.692000pt;}
.xc8_c00001{left:515.647467pt;}
.x1f1_c00001{left:516.572533pt;}
.x3d_c00001{left:517.584667pt;}
.xe0_c00001{left:519.285867pt;}
.xfa_c00001{left:520.542000pt;}
.x5c_c00001{left:521.432267pt;}
.x111_c00001{left:522.650400pt;}
.x190_c00001{left:523.551467pt;}
.x105_c00001{left:524.458000pt;}
.x52_c00001{left:526.238933pt;}
.x18e_c00001{left:527.951200pt;}
.x34_c00001{left:529.029600pt;}
.x1fc_c00001{left:529.991467pt;}
.x44_c00001{left:530.919867pt;}
.x207_c00001{left:531.878000pt;}
.xf6_c00001{left:532.980533pt;}
.xd9_c00001{left:534.586000pt;}
.x99_c00001{left:535.848267pt;}
.x35_c00001{left:537.409467pt;}
.x89_c00001{left:538.404000pt;}
.x14e_c00001{left:539.677467pt;}
.x129_c00001{left:540.586267pt;}
.x184_c00001{left:541.522800pt;}
.xf7_c00001{left:543.340133pt;}
.x8f_c00001{left:544.592800pt;}
.x1fb_c00001{left:545.516933pt;}
.x197_c00001{left:546.463200pt;}
.x5e_c00001{left:547.936267pt;}
.x6b_c00001{left:548.904000pt;}
.x170_c00001{left:550.107733pt;}
.x70_c00001{left:551.827467pt;}
.xcf_c00001{left:553.433600pt;}
.x9b_c00001{left:555.046533pt;}
.x36_c00001{left:556.149067pt;}
.x9d_c00001{left:557.502000pt;}
.x179_c00001{left:558.848933pt;}
.x1d0_c00001{left:559.929333pt;}
.x13c_c00001{left:560.847333pt;}
.x14f_c00001{left:561.876933pt;}
.x1bd_c00001{left:563.774667pt;}
.x32_c00001{left:565.029333pt;}
.x134_c00001{left:566.475600pt;}
.xd0_c00001{left:567.499733pt;}
.x24_c00001{left:569.230533pt;}
.x117_c00001{left:571.006800pt;}
.xda_c00001{left:572.371333pt;}
.xd7_c00001{left:573.486267pt;}
.x1f9_c00001{left:574.697600pt;}
.x92_c00001{left:575.601200pt;}
.x191_c00001{left:576.750667pt;}
.x1bf_c00001{left:578.011067pt;}
.x8c_c00001{left:579.031200pt;}
.xe1_c00001{left:580.014267pt;}
.x113_c00001{left:581.457067pt;}
.x130_c00001{left:583.124667pt;}
.x18f_c00001{left:584.142533pt;}
.x119_c00001{left:585.898133pt;}
.x10f_c00001{left:587.590800pt;}
.xa_c00001{left:588.568400pt;}
.x64_c00001{left:589.928400pt;}
.xea_c00001{left:591.369733pt;}
.xef_c00001{left:592.637733pt;}
.x25_c00001{left:594.403333pt;}
.xcb_c00001{left:596.198533pt;}
.xf0_c00001{left:598.077733pt;}
.x9a_c00001{left:598.999333pt;}
.x1c5_c00001{left:600.231067pt;}
.xe2_c00001{left:601.845733pt;}
.x11a_c00001{left:602.924533pt;}
.x1c7_c00001{left:604.093067pt;}
.x110_c00001{left:605.363600pt;}
.x2f_c00001{left:606.375600pt;}
.x107_c00001{left:608.020533pt;}
.x183_c00001{left:609.589867pt;}
.xfd_c00001{left:610.727200pt;}
.x1ce_c00001{left:612.215467pt;}
.x101_c00001{left:613.115867pt;}
.x16b_c00001{left:614.860000pt;}
.xc6_c00001{left:616.386400pt;}
.x19e_c00001{left:617.853467pt;}
.x135_c00001{left:619.450533pt;}
.x1c4_c00001{left:620.672800pt;}
.x93_c00001{left:621.840533pt;}
.x1ad_c00001{left:623.084267pt;}
.xed_c00001{left:624.317733pt;}
.x198_c00001{left:625.358400pt;}
.x136_c00001{left:626.783867pt;}
.x1e1_c00001{left:627.761067pt;}
.x26_c00001{left:628.748000pt;}
.x71_c00001{left:629.640667pt;}
.x166_c00001{left:630.542000pt;}
.xab_c00001{left:632.190133pt;}
.x144_c00001{left:633.654533pt;}
.x1f8_c00001{left:634.999733pt;}
.xaa_c00001{left:635.893867pt;}
.x1c9_c00001{left:637.555733pt;}
.x11e_c00001{left:638.565467pt;}
.x1bc_c00001{left:639.929333pt;}
.x49_c00001{left:641.018800pt;}
.x1e5_c00001{left:642.117867pt;}
.xcc_c00001{left:643.291333pt;}
.x78_c00001{left:644.774400pt;}
.xb_c00001{left:646.343467pt;}
.x167_c00001{left:647.568400pt;}
.xe3_c00001{left:649.227600pt;}
.x1cd_c00001{left:650.997733pt;}
.xc_c00001{left:652.568000pt;}
.x1ea_c00001{left:653.669600pt;}
.x1b8_c00001{left:654.565467pt;}
.x195_c00001{left:655.716533pt;}
.x1f0_c00001{left:656.928667pt;}
.x1a3_c00001{left:658.117467pt;}
.x10a_c00001{left:659.600267pt;}
.x1be_c00001{left:660.789333pt;}
.x6c_c00001{left:661.760000pt;}
.x8d_c00001{left:663.306933pt;}
.x1de_c00001{left:665.615467pt;}
.xba_c00001{left:667.013333pt;}
.x1ef_c00001{left:667.920000pt;}
.x1fd_c00001{left:670.719733pt;}
.x8_c00001{left:675.479655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d5fa992a6b3cc4f8da2529b4.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.134000;font-style:normal;font-weight:normal;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_788a6ce984a04030c6d7b1d6.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;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:ff3_c00002;src:url('chunks/assets/font_9b44fb61764fb7a45d45ed47.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:0.923000;font-style:normal;font-weight:normal;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_ecc1989688daff924728db28.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00002;src:url('chunks/assets/font_2fb00f1077e87491f6200248.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:0.920000;font-style:normal;font-weight:normal;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_db315a6dc0160a8c94e390ae.woff2')format("woff");}.ff6_c00002{font-family:ff6_c00002;line-height:1.161621;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00002;src:url('chunks/assets/font_dcdab887604929e763539fb8.woff2')format("woff");}.ff7_c00002{font-family:ff7_c00002;line-height:0.675781;font-style:normal;font-weight:normal;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_9f2b13c4fd4bc6b9a00dbe03.woff2')format("woff");}.ff8_c00002{font-family:ff8_c00002;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00002;src:url('chunks/assets/font_d8ce56a91ed69b794ec46550.woff2')format("woff");}.ff9_c00002{font-family:ff9_c00002;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:ffa_c00002;src:url('chunks/assets/font_603d030d7254814e69f10c99.woff2')format("woff");}.ffa_c00002{font-family:ffa_c00002;line-height:0.787000;font-style:normal;font-weight: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_3256125366ee7bb6b04fe0f5.woff2')format("woff");}.ffb_c00002{font-family:ffb_c00002;line-height:1.134000;font-style:normal;font-weight: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_693e607b91203427767c99d7.woff2')format("woff");}.ffc_c00002{font-family:ffc_c00002;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:ffd_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffd_c00002{font-family:ffd_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffe_c00002{font-family:ffe_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.fff_c00002{font-family:fff_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00002;src:url('chunks/assets/font_7a1de03b9ab9d4a2941e80ad.woff2')format("woff");}.ff10_c00002{font-family:ff10_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00002;src:url('chunks/assets/font_099beefb9ad20cb5de822a80.woff2')format("woff");}.ff11_c00002{font-family:ff11_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00002;src:url('chunks/assets/font_27104f8a4b810a7a81f00ac9.woff2')format("woff");}.ff12_c00002{font-family:ff12_c00002;line-height:1.134000;font-style:normal;font-weight: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_0f4265aec5769a79d34334aa.woff2')format("woff");}.ff13_c00002{font-family:ff13_c00002;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:ff14_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff14_c00002{font-family:ff14_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff15_c00002{font-family:ff15_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff16_c00002{font-family:ff16_c00002;line-height:0.787000;font-style:normal;font-weight: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_fbdb38dcd3a8a821ff1b495a.woff2')format("woff");}.ff17_c00002{font-family:ff17_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00002;src:url('chunks/assets/font_37b8448fd8ce23e4af202fc0.woff2')format("woff");}.ff18_c00002{font-family:ff18_c00002;line-height:1.134000;font-style:normal;font-weight: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_d01736ba3f0dac8eb0126be1.woff2')format("woff");}.ff19_c00002{font-family:ff19_c00002;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:ff1a_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff1a_c00002{font-family:ff1a_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff1b_c00002{font-family:ff1b_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00002;src:url('chunks/assets/font_960a55f9005b9e428fc0b551.woff2')format("woff");}.ff1c_c00002{font-family:ff1c_c00002;line-height:0.965000;font-style:normal;font-weight: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_dcdab887604929e763539fb8.woff2')format("woff");}.ff1d_c00002{font-family:ff1d_c00002;line-height:0.675781;font-style:normal;font-weight: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_f084a4341fd22989ef5d3ae4.woff2')format("woff");}.ff1e_c00002{font-family:ff1e_c00002;line-height:1.134000;font-style:normal;font-weight: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_b14980294549a86ca5d68d19.woff2')format("woff");}.ff1f_c00002{font-family:ff1f_c00002;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:ff20_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff20_c00002{font-family:ff20_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff21_c00002{font-family:ff21_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff22_c00002{font-family:ff22_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00002;src:url('chunks/assets/font_a4edcdfb4c07c605e68ad36e.woff2')format("woff");}.ff23_c00002{font-family:ff23_c00002;line-height:1.160645;font-style:normal;font-weight: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_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff24_c00002{font-family:ff24_c00002;line-height:0.787000;font-style:normal;font-weight: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_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff25_c00002{font-family:ff25_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00002;src:url('chunks/assets/font_d0b301ae5ef2024607ce6c5c.woff2')format("woff");}.ff26_c00002{font-family:ff26_c00002;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:ff27_c00002;src:url('chunks/assets/font_35bda03403470a63260608f7.woff2')format("woff");}.ff27_c00002{font-family:ff27_c00002;line-height:0.787000;font-style:normal;font-weight: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_b1e34afa46608c14b5d0c259.woff2')format("woff");}.ff28_c00002{font-family:ff28_c00002;line-height:1.134000;font-style:normal;font-weight: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_a07873a233853e8e4723fcd2.woff2')format("woff");}.ff29_c00002{font-family:ff29_c00002;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:ff2a_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff2a_c00002{font-family:ff2a_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff2b_c00002{font-family:ff2b_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00002;src:url('chunks/assets/font_062955b0f1b7884ccdc9d849.woff2')format("woff");}.ff2c_c00002{font-family:ff2c_c00002;line-height:0.876465;font-style:normal;font-weight: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_ade43eedf012bfaf65b8c334.woff2')format("woff");}.ff2d_c00002{font-family:ff2d_c00002;line-height:0.921000;font-style:normal;font-weight: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_bfc033ee0710b61ca033bb74.woff2')format("woff");}.ff2e_c00002{font-family:ff2e_c00002;line-height:0.963000;font-style:normal;font-weight: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_c5096cfc3354ccb2050d18d5.woff2')format("woff");}.ff2f_c00002{font-family:ff2f_c00002;line-height:1.161621;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00002;src:url('chunks/assets/font_c995fdef58451859cc5c1689.woff2')format("woff");}.ff30_c00002{font-family:ff30_c00002;line-height:0.965000;font-style:normal;font-weight: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_48cef6090e299a4fda7a49a7.woff2')format("woff");}.ff31_c00002{font-family:ff31_c00002;line-height:0.920000;font-style:normal;font-weight: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_72ecb103282f20ddd73842f3.woff2')format("woff");}.ff32_c00002{font-family:ff32_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:ff33_c00002;src:url('chunks/assets/font_ecc1989688daff924728db28.woff2')format("woff");}.ff33_c00002{font-family:ff33_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00002;src:url('chunks/assets/font_3644ad6a847782473d4b9e4d.woff2')format("woff");}.ff34_c00002{font-family:ff34_c00002;line-height:1.134000;font-style:normal;font-weight: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_2cad250ce08277cc9a731a00.woff2')format("woff");}.ff35_c00002{font-family:ff35_c00002;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:ff36_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff36_c00002{font-family:ff36_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff37_c00002{font-family:ff37_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff38_c00002{font-family:ff38_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00002;src:url('chunks/assets/font_09ff3654b8096d7e461775b6.woff2')format("woff");}.ff39_c00002{font-family:ff39_c00002;line-height:0.920000;font-style:normal;font-weight: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_1b9484318229dff8378c5708.woff2')format("woff");}.ff3a_c00002{font-family:ff3a_c00002;line-height:0.675293;font-style:normal;font-weight: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_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff3b_c00002{font-family:ff3b_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00002;src:url('chunks/assets/font_099beefb9ad20cb5de822a80.woff2')format("woff");}.ff3c_c00002{font-family:ff3c_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff3d_c00002{font-family:ff3d_c00002;line-height:0.787000;font-style:normal;font-weight: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_0b53046593ae2f3a87786e60.woff2')format("woff");}.ff3e_c00002{font-family:ff3e_c00002;line-height:0.942871;font-style:normal;font-weight: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_aab654fa73073d86fcdd9e6f.woff2')format("woff");}.ff3f_c00002{font-family:ff3f_c00002;line-height:0.920000;font-style:normal;font-weight: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_1bf306acccc5c1401a29126f.woff2')format("woff");}.ff40_c00002{font-family:ff40_c00002;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:ff41_c00002;src:url('chunks/assets/font_3fe5d538c28ea7e65f28ca3a.woff2')format("woff");}.ff41_c00002{font-family:ff41_c00002;line-height:0.787000;font-style:normal;font-weight: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_113cc72ff6d3a6d1b1ae9532.woff2')format("woff");}.ff42_c00002{font-family:ff42_c00002;line-height:1.134000;font-style:normal;font-weight: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_aedab98c5953fa40ec27aece.woff2')format("woff");}.ff43_c00002{font-family:ff43_c00002;line-height:1.134000;font-style:normal;font-weight: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_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff44_c00002{font-family:ff44_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff45_c00002{font-family:ff45_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff46_c00002{font-family:ff46_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff47_c00002{font-family:ff47_c00002;line-height:0.787000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_5a2beeb0dec9ef7921befb15.woff2')format("woff");}.ff48_c00002{font-family:ff48_c00002;line-height:0.920000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_94099109f99ed352078e3595.woff2')format("woff");}.ff49_c00002{font-family:ff49_c00002;line-height:1.130000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff4a_c00002{font-family:ff4a_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b_c00002;src:url('chunks/assets/font_4e80572481169987a0bbefbf.woff2')format("woff");}.ff4b_c00002{font-family:ff4b_c00002;line-height:1.134000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_20b7180fb44c466f14fe9b1f.woff2')format("woff");}.ff4c_c00002{font-family:ff4c_c00002;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:ff4d_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff4d_c00002{font-family:ff4d_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff4e_c00002{font-family:ff4e_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff4f_c00002{font-family:ff4f_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50_c00002;src:url('chunks/assets/font_0c913d430544cd4f99e0cfe3.woff2')format("woff");}.ff50_c00002{font-family:ff50_c00002;line-height:1.002000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff51_c00002{font-family:ff51_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52_c00002;src:url('chunks/assets/font_ed1ea582336f0bfa99f25e23.woff2')format("woff");}.ff52_c00002{font-family:ff52_c00002;line-height:0.920000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_0e002b5b227c1c6e34b290d0.woff2')format("woff");}.ff53_c00002{font-family:ff53_c00002;line-height:0.920000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_8ce912b079db578d4e3b0f6e.woff2')format("woff");}.ff54_c00002{font-family:ff54_c00002;line-height:0.787000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_1a2c3d166b9863f1977df2a2.woff2')format("woff");}.ff55_c00002{font-family:ff55_c00002;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:ff56_c00002;src:url('chunks/assets/font_70076c00bf33622f9f8477ca.woff2')format("woff");}.ff56_c00002{font-family:ff56_c00002;line-height:0.787000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_22caec8155c9ab223bde0bca.woff2')format("woff");}.ff57_c00002{font-family:ff57_c00002;line-height:1.134000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_7023e84b3a13d5a34f28134a.woff2')format("woff");}.ff58_c00002{font-family:ff58_c00002;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:ff59_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff59_c00002{font-family:ff59_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff5a_c00002{font-family:ff5a_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff5b_c00002{font-family:ff5b_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c_c00002;src:url('chunks/assets/font_c47da147924856a74af1f614.woff2')format("woff");}.ff5c_c00002{font-family:ff5c_c00002;line-height:0.920000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_2d603dce743d8d2f78dce9f0.woff2')format("woff");}.ff5d_c00002{font-family:ff5d_c00002;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:ff5e_c00002;src:url('chunks/assets/font_0a380dd6cea7a64adc1e5efd.woff2')format("woff");}.ff5e_c00002{font-family:ff5e_c00002;line-height:0.921000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_f7cc974db138e8a4e50bcabd.woff2')format("woff");}.ff5f_c00002{font-family:ff5f_c00002;line-height:0.920000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_fd8d1baee1ef8b723f7af836.woff2')format("woff");}.ff60_c00002{font-family:ff60_c00002;line-height:1.160645;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_66036bb608667968e84a1923.woff2')format("woff");}.ff61_c00002{font-family:ff61_c00002;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:ff62_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff62_c00002{font-family:ff62_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63_c00002;src:url('chunks/assets/font_bb2acadc6ac803adaa6cde96.woff2')format("woff");}.ff63_c00002{font-family:ff63_c00002;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:ff64_c00002;src:url('chunks/assets/font_ecb0e1392232d70239b2fde8.woff2')format("woff");}.ff64_c00002{font-family:ff64_c00002;line-height:0.963000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_a5e618bd6de1966ae48482b4.woff2')format("woff");}.ff65_c00002{font-family:ff65_c00002;line-height:1.134000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_d2945ecfdb3466c3fcbc824f.woff2')format("woff");}.ff66_c00002{font-family:ff66_c00002;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:ff67_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff67_c00002{font-family:ff67_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff68_c00002{font-family:ff68_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69_c00002;src:url('chunks/assets/font_949cedf5c9e2474034fcaf44.woff2')format("woff");}.ff69_c00002{font-family:ff69_c00002;line-height:0.920000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_8ce912b079db578d4e3b0f6e.woff2')format("woff");}.ff6a_c00002{font-family:ff6a_c00002;line-height:0.787000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_0b53046593ae2f3a87786e60.woff2')format("woff");}.ff6b_c00002{font-family:ff6b_c00002;line-height:0.942871;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff6c_c00002{font-family:ff6c_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d_c00002;src:url('chunks/assets/font_1fbf53d20ff9bae4e5e78c01.woff2')format("woff");}.ff6d_c00002{font-family:ff6d_c00002;line-height:1.134000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_5426867a64fce059c64067d4.woff2')format("woff");}.ff6e_c00002{font-family:ff6e_c00002;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:ff6f_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff6f_c00002{font-family:ff6f_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff70_c00002{font-family:ff70_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff71_c00002{font-family:ff71_c00002;line-height:0.787000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_310b1c49185be90a3dcc9d5f.woff2')format("woff");}.ff72_c00002{font-family:ff72_c00002;line-height:0.920000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_793abe8d7d49972d10cfc0f2.woff2')format("woff");}.ff73_c00002{font-family:ff73_c00002;line-height:1.134000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_9638fe83293285925e94eab8.woff2')format("woff");}.ff74_c00002{font-family:ff74_c00002;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:ff75_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff75_c00002{font-family:ff75_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff76_c00002{font-family:ff76_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77_c00002;src:url('chunks/assets/font_76c66205fcf503121b190948.woff2')format("woff");}.ff77_c00002{font-family:ff77_c00002;line-height:0.920000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff78_c00002{font-family:ff78_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79_c00002;src:url('chunks/assets/font_667c79f661265b74900ab81f.woff2')format("woff");}.ff79_c00002{font-family:ff79_c00002;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a_c00002;src:url('chunks/assets/font_446ae4d98fbbeda8a9b9389a.woff2')format("woff");}.ff7a_c00002{font-family:ff7a_c00002;line-height:1.134000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_b36ca2e15802e4709c54c624.woff2')format("woff");}.ff7b_c00002{font-family:ff7b_c00002;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:ff7c_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff7c_c00002{font-family:ff7c_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff7d_c00002{font-family:ff7d_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff7e_c00002{font-family:ff7e_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f_c00002;src:url('chunks/assets/font_7cab81bff83514d7bb23bf4a.woff2')format("woff");}.ff7f_c00002{font-family:ff7f_c00002;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80_c00002;src:url('chunks/assets/font_fb3ed3db54a964ab563e2ac4.woff2')format("woff");}.ff80_c00002{font-family:ff80_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81_c00002;src:url('chunks/assets/font_53103c32807b0b22862a3ca1.woff2')format("woff");}.ff81_c00002{font-family:ff81_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82_c00002;src:url('chunks/assets/font_0e002b5b227c1c6e34b290d0.woff2')format("woff");}.ff82_c00002{font-family:ff82_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83_c00002;src:url('chunks/assets/font_598055d362c895b084d69971.woff2')format("woff");}.ff83_c00002{font-family:ff83_c00002;line-height:0.952637;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84_c00002;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff84_c00002{font-family:ff84_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85_c00002;src:url('chunks/assets/font_9b44fb61764fb7a45d45ed47.woff2')format("woff");}.ff85_c00002{font-family:ff85_c00002;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff86_c00002{font-family:ff86_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87_c00002;src:url('chunks/assets/font_8d0d571b73260d91b433c103.woff2')format("woff");}.ff87_c00002{font-family:ff87_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88_c00002;src:url('chunks/assets/font_974f8dc5fee7857bd8876e8d.woff2')format("woff");}.ff88_c00002{font-family:ff88_c00002;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:ff89_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff89_c00002{font-family:ff89_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff8a_c00002{font-family:ff8a_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff8b_c00002{font-family:ff8b_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c_c00002;src:url('chunks/assets/font_ecc1989688daff924728db28.woff2')format("woff");}.ff8c_c00002{font-family:ff8c_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d_c00002;src:url('chunks/assets/font_f00c9dc77012cfe3142abbd6.woff2')format("woff");}.ff8d_c00002{font-family:ff8d_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e_c00002;src:url('chunks/assets/font_6adbe3aec76036dd6f688b89.woff2')format("woff");}.ff8e_c00002{font-family:ff8e_c00002;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:ff8f_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff8f_c00002{font-family:ff8f_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff90_c00002{font-family:ff90_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff91_c00002{font-family:ff91_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92_c00002;src:url('chunks/assets/font_1748bcfcd62d61a4a87e3075.woff2')format("woff");}.ff92_c00002{font-family:ff92_c00002;line-height:1.160645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93_c00002;src:url('chunks/assets/font_2f04126a2a7be111ac45568d.woff2')format("woff");}.ff93_c00002{font-family:ff93_c00002;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:ff94_c00002;src:url('chunks/assets/font_641c8291112c4e0ad4b184e7.woff2')format("woff");}.ff94_c00002{font-family:ff94_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95_c00002;src:url('chunks/assets/font_cca96f361036b66b1baafba7.woff2')format("woff");}.ff95_c00002{font-family:ff95_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96_c00002;src:url('chunks/assets/font_8e9d1290474b3508e1dc0c9f.woff2')format("woff");}.ff96_c00002{font-family:ff96_c00002;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:ff97_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff97_c00002{font-family:ff97_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff98_c00002{font-family:ff98_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99_c00002;src:url('chunks/assets/font_c845eea9e93884982b3f4244.woff2')format("woff");}.ff99_c00002{font-family:ff99_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff9a_c00002{font-family:ff9a_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b_c00002;src:url('chunks/assets/font_c7da0db74eab4cd3c9809fd4.woff2')format("woff");}.ff9b_c00002{font-family:ff9b_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c_c00002;src:url('chunks/assets/font_3a217a9470d33d6d15ff51d6.woff2')format("woff");}.ff9c_c00002{font-family:ff9c_c00002;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:ff9d_c00002;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff9d_c00002{font-family:ff9d_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e_c00002;src:url('chunks/assets/font_2e01918fa4dc0c227db5ddb8.woff2')format("woff");}.ff9e_c00002{font-family:ff9e_c00002;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:ff9f_c00002;src:url('chunks/assets/font_641c8291112c4e0ad4b184e7.woff2')format("woff");}.ff9f_c00002{font-family:ff9f_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0_c00002;src:url('chunks/assets/font_05e75e86dcdb8c76d6fdfd2f.woff2')format("woff");}.ffa0_c00002{font-family:ffa0_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1_c00002;src:url('chunks/assets/font_fba522fb6225d58097f6f197.woff2')format("woff");}.ffa1_c00002{font-family:ffa1_c00002;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:ffa2_c00002;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ffa2_c00002{font-family:ffa2_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:ffa3_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffa3_c00002{font-family:ffa3_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa4_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffa4_c00002{font-family:ffa4_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5_c00002;src:url('chunks/assets/font_1f10bd2ed585aaff25e7d933.woff2')format("woff");}.ffa5_c00002{font-family:ffa5_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6_c00002;src:url('chunks/assets/font_69b354a04ad7ad5fc72efa39.woff2')format("woff");}.ffa6_c00002{font-family:ffa6_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa7_c00002;src:url('chunks/assets/font_12dc58d203165507de6d57da.woff2')format("woff");}.ffa7_c00002{font-family:ffa7_c00002;line-height:1.161621;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa8_c00002;src:url('chunks/assets/font_7345296366b2fa596d05c703.woff2')format("woff");}.ffa8_c00002{font-family:ffa8_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9_c00002;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ffa9_c00002{font-family:ffa9_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaa_c00002;src:url('chunks/assets/font_d1706ec5bacb3d67fa7c897d.woff2')format("woff");}.ffaa_c00002{font-family:ffaa_c00002;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab_c00002;src:url('chunks/assets/font_89dccfc63e2ed8519e9b425d.woff2')format("woff");}.ffab_c00002{font-family:ffab_c00002;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffac_c00002;src:url('chunks/assets/font_b9cf8efc1bf39dc2092a9655.woff2')format("woff");}.ffac_c00002{font-family:ffac_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffad_c00002;src:url('chunks/assets/font_ecc1989688daff924728db28.woff2')format("woff");}.ffad_c00002{font-family:ffad_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffae_c00002;src:url('chunks/assets/font_a52db100cdaf3857a27a0959.woff2')format("woff");}.ffae_c00002{font-family:ffae_c00002;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:ffaf_c00002;src:url('chunks/assets/font_f3f3c660fa9cd5093821549c.woff2')format("woff");}.ffaf_c00002{font-family:ffaf_c00002;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:ffb0_c00002;src:url('chunks/assets/font_b3eb3fddd264ec8301f788b2.woff2')format("woff");}.ffb0_c00002{font-family:ffb0_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb1_c00002;src:url('chunks/assets/font_91a0099a8a4c89d614dfc3b6.woff2')format("woff");}.ffb1_c00002{font-family:ffb1_c00002;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:ffb2_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffb2_c00002{font-family:ffb2_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb3_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffb3_c00002{font-family:ffb3_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb4_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffb4_c00002{font-family:ffb4_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb5_c00002;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ffb5_c00002{font-family:ffb5_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6_c00002;src:url('chunks/assets/font_d090da749c94e3f8ee1186cf.woff2')format("woff");}.ffb6_c00002{font-family:ffb6_c00002;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb7_c00002;src:url('chunks/assets/font_c7da0db74eab4cd3c9809fd4.woff2')format("woff");}.ffb7_c00002{font-family:ffb7_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ffb8_c00002{font-family:ffb8_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb9_c00002;src:url('chunks/assets/font_0e002b5b227c1c6e34b290d0.woff2')format("woff");}.ffb9_c00002{font-family:ffb9_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba_c00002;src:url('chunks/assets/font_46d2daa38a90707f6bcb78d1.woff2')format("woff");}.ffba_c00002{font-family:ffba_c00002;line-height:1.160645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb_c00002;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ffbb_c00002{font-family:ffbb_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc_c00002;src:url('chunks/assets/font_8166d6d3e267ee7b66e4168f.woff2')format("woff");}.ffbc_c00002{font-family:ffbc_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd_c00002;src:url('chunks/assets/font_e3b46132e91421c037bfe062.woff2')format("woff");}.ffbd_c00002{font-family:ffbd_c00002;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:ffbe_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffbe_c00002{font-family:ffbe_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbf_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffbf_c00002{font-family:ffbf_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffc0_c00002{font-family:ffc0_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc1_c00002;src:url('chunks/assets/font_f1b774aa633e1736feef719d.woff2')format("woff");}.ffc1_c00002{font-family:ffc1_c00002;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ffc2_c00002{font-family:ffc2_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3_c00002;src:url('chunks/assets/font_0b215ebd3832c535c245590e.woff2')format("woff");}.ffc3_c00002{font-family:ffc3_c00002;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc4_c00002;src:url('chunks/assets/font_ecc1989688daff924728db28.woff2')format("woff");}.ffc4_c00002{font-family:ffc4_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5_c00002;src:url('chunks/assets/font_0f61ff426d81fca959e53342.woff2')format("woff");}.ffc5_c00002{font-family:ffc5_c00002;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6_c00002;src:url('chunks/assets/font_1ba79ea54f1ccb0a84b889b9.woff2')format("woff");}.ffc6_c00002{font-family:ffc6_c00002;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7_c00002;src:url('chunks/assets/font_f0bad1eeff1e9332c4e7f979.woff2')format("woff");}.ffc7_c00002{font-family:ffc7_c00002;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:ffc8_c00002;src:url('chunks/assets/font_aab654fa73073d86fcdd9e6f.woff2')format("woff");}.ffc8_c00002{font-family:ffc8_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc9_c00002;src:url('chunks/assets/font_b6ce82c97b0c04726df45d93.woff2')format("woff");}.ffc9_c00002{font-family:ffc9_c00002;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:ffca_c00002;src:url('chunks/assets/font_f3f3c660fa9cd5093821549c.woff2')format("woff");}.ffca_c00002{font-family:ffca_c00002;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:ffcb_c00002;src:url('chunks/assets/font_20347120b93a7d2b1efcffd4.woff2')format("woff");}.ffcb_c00002{font-family:ffcb_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcc_c00002;src:url('chunks/assets/font_0dd91c30a6332e132f485602.woff2')format("woff");}.ffcc_c00002{font-family:ffcc_c00002;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:ffcd_c00002;src:url('chunks/assets/font_f0bad1eeff1e9332c4e7f979.woff2')format("woff");}.ffcd_c00002{font-family:ffcd_c00002;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:ffce_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffce_c00002{font-family:ffce_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffcf_c00002{font-family:ffcf_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd0_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffd0_c00002{font-family:ffd0_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1_c00002;src:url('chunks/assets/font_f2a308d54817cdc82a6463d6.woff2')format("woff");}.ffd1_c00002{font-family:ffd1_c00002;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2_c00002;src:url('chunks/assets/font_827398c911f22436d0420c92.woff2')format("woff");}.ffd2_c00002{font-family:ffd2_c00002;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd3_c00002;src:url('chunks/assets/font_93cacde9ac13a637ad006078.woff2')format("woff");}.ffd3_c00002{font-family:ffd3_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd4_c00002;src:url('chunks/assets/font_f05a3704c1cf4f63afb76322.woff2')format("woff");}.ffd4_c00002{font-family:ffd4_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd5_c00002;src:url('chunks/assets/font_6c0bf85fe16e7c9ed3dd6ff8.woff2')format("woff");}.ffd5_c00002{font-family:ffd5_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6_c00002;src:url('chunks/assets/font_21299806ed02fb41d4db604b.woff2')format("woff");}.ffd6_c00002{font-family:ffd6_c00002;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:ffd7_c00002;src:url('chunks/assets/font_f0bad1eeff1e9332c4e7f979.woff2')format("woff");}.ffd7_c00002{font-family:ffd7_c00002;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:ffd8_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffd8_c00002{font-family:ffd8_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd9_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffd9_c00002{font-family:ffd9_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffda_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ffda_c00002{font-family:ffda_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdb_c00002;src:url('chunks/assets/font_ade43eedf012bfaf65b8c334.woff2')format("woff");}.ffdb_c00002{font-family:ffdb_c00002;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdc_c00002;src:url('chunks/assets/font_f7cc974db138e8a4e50bcabd.woff2')format("woff");}.ffdc_c00002{font-family:ffdc_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdd_c00002;src:url('chunks/assets/font_8ce912b079db578d4e3b0f6e.woff2')format("woff");}.ffdd_c00002{font-family:ffdd_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffde_c00002;src:url('chunks/assets/font_034c9738266878c8aa18c882.woff2')format("woff");}.ffde_c00002{font-family:ffde_c00002;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:ffdf_c00002;src:url('chunks/assets/font_8059eac78e7e55d7d6ac7ce7.woff2')format("woff");}.ffdf_c00002{font-family:ffdf_c00002;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:ffe0_c00002;src:url('chunks/assets/font_75fe910ce1dfd01031ea3bfd.woff2')format("woff");}.ffe0_c00002{font-family:ffe0_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe1_c00002;src:url('chunks/assets/font_d2e14a7b5fb5f117d2cf1f6a.woff2')format("woff");}.ffe1_c00002{font-family:ffe1_c00002;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:ffe2_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffe2_c00002{font-family:ffe2_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe3_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ffe3_c00002{font-family:ffe3_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe4_c00002;src:url('chunks/assets/font_935a39e493cdd48fcdf762c4.woff2')format("woff");}.ffe4_c00002{font-family:ffe4_c00002;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:ffe5_c00002;src:url('chunks/assets/font_ad71968eeee2f58e1d4e8140.woff2')format("woff");}.ffe5_c00002{font-family:ffe5_c00002;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe6_c00002;src:url('chunks/assets/font_544dc5e0a8d11842dcc40616.woff2')format("woff");}.ffe6_c00002{font-family:ffe6_c00002;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe7_c00002;src:url('chunks/assets/font_f2f216ad4ec47e8330f56119.woff2')format("woff");}.ffe7_c00002{font-family:ffe7_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe8_c00002;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ffe8_c00002{font-family:ffe8_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe9_c00002;src:url('chunks/assets/font_c9a31319c42da702550ac3f1.woff2')format("woff");}.ffe9_c00002{font-family:ffe9_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffea_c00002;src:url('chunks/assets/font_e27262c6910d9778c355d289.woff2')format("woff");}.ffea_c00002{font-family:ffea_c00002;line-height:1.160645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffeb_c00002;src:url('chunks/assets/font_69538fcb4c2530cfed161678.woff2')format("woff");}.ffeb_c00002{font-family:ffeb_c00002;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:ffec_c00002;src:url('chunks/assets/font_ee9739696c5a51838fe2b37d.woff2')format("woff");}.ffec_c00002{font-family:ffec_c00002;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:ffed_c00002;src:url('chunks/assets/font_790d62102b654d26534e80cd.woff2')format("woff");}.ffed_c00002{font-family:ffed_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffee_c00002;src:url('chunks/assets/font_2a68cb7dd4680b6b4eef8ffa.woff2')format("woff");}.ffee_c00002{font-family:ffee_c00002;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:ffef_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffef_c00002{font-family:ffef_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff0_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.fff0_c00002{font-family:fff0_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff1_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.fff1_c00002{font-family:fff1_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff2_c00002;src:url('chunks/assets/font_aab654fa73073d86fcdd9e6f.woff2')format("woff");}.fff2_c00002{font-family:fff2_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff3_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.fff3_c00002{font-family:fff3_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff4_c00002;src:url('chunks/assets/font_2b1c2eb07775f80c9ad8cb95.woff2')format("woff");}.fff4_c00002{font-family:fff4_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff5_c00002;src:url('chunks/assets/font_3b4cf3dc15a515c7a5e308b8.woff2')format("woff");}.fff5_c00002{font-family:fff5_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff6_c00002;src:url('chunks/assets/font_80e8c9d59ecfeca718731226.woff2')format("woff");}.fff6_c00002{font-family:fff6_c00002;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:fff7_c00002;src:url('chunks/assets/font_5946eca49aee71a562fcf007.woff2')format("woff");}.fff7_c00002{font-family:fff7_c00002;line-height:0.876465;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff8_c00002;src:url('chunks/assets/font_471bb36ab7eb7903704de4e2.woff2')format("woff");}.fff8_c00002{font-family:fff8_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff9_c00002;src:url('chunks/assets/font_aab654fa73073d86fcdd9e6f.woff2')format("woff");}.fff9_c00002{font-family:fff9_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffa_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.fffa_c00002{font-family:fffa_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffb_c00002;src:url('chunks/assets/font_f09f7f580df0e62771550794.woff2')format("woff");}.fffb_c00002{font-family:fffb_c00002;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:fffc_c00002;src:url('chunks/assets/font_7d5a6b902c259061f231c1e7.woff2')format("woff");}.fffc_c00002{font-family:fffc_c00002;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:fffd_c00002;src:url('chunks/assets/font_65fc18955d42467508d5beb6.woff2')format("woff");}.fffd_c00002{font-family:fffd_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffe_c00002;src:url('chunks/assets/font_e23f7677fd7e99f27bdf23b0.woff2')format("woff");}.fffe_c00002{font-family:fffe_c00002;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:ffff_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ffff_c00002{font-family:ffff_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff100_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff100_c00002{font-family:ff100_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff101_c00002;src:url('chunks/assets/font_bda292a108886700e4d84e53.woff2')format("woff");}.ff101_c00002{font-family:ff101_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff102_c00002;src:url('chunks/assets/font_569a3ae35e89fb9dc8c62837.woff2')format("woff");}.ff102_c00002{font-family:ff102_c00002;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff103_c00002;src:url('chunks/assets/font_1d40c5b0e259ac8d7ba35a44.woff2')format("woff");}.ff103_c00002{font-family:ff103_c00002;line-height:0.739258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff104_c00002;src:url('chunks/assets/font_f23b915a86e0cf2d3c6aa1e8.woff2')format("woff");}.ff104_c00002{font-family:ff104_c00002;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff105_c00002;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff105_c00002{font-family:ff105_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff106_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff106_c00002{font-family:ff106_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff107_c00002;src:url('chunks/assets/font_099beefb9ad20cb5de822a80.woff2')format("woff");}.ff107_c00002{font-family:ff107_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff108_c00002;src:url('chunks/assets/font_a87b34985de69a486841001a.woff2')format("woff");}.ff108_c00002{font-family:ff108_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff109_c00002;src:url('chunks/assets/font_0e002b5b227c1c6e34b290d0.woff2')format("woff");}.ff109_c00002{font-family:ff109_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10a_c00002;src:url('chunks/assets/font_e92fc79cab5070d17ba96d11.woff2')format("woff");}.ff10a_c00002{font-family:ff10a_c00002;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:ff10b_c00002;src:url('chunks/assets/font_2dfed01c51d43f4d6e287e3a.woff2')format("woff");}.ff10b_c00002{font-family:ff10b_c00002;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:ff10c_c00002;src:url('chunks/assets/font_3ef50ad25ea975b668c79112.woff2')format("woff");}.ff10c_c00002{font-family:ff10c_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10d_c00002;src:url('chunks/assets/font_726dc6c0af2883d0a35c7d21.woff2')format("woff");}.ff10d_c00002{font-family:ff10d_c00002;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:ff10e_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff10e_c00002{font-family:ff10e_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10f_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff10f_c00002{font-family:ff10f_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff110_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff110_c00002{font-family:ff110_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff111_c00002;src:url('chunks/assets/font_5f9c811233aab5da282e99bd.woff2')format("woff");}.ff111_c00002{font-family:ff111_c00002;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff112_c00002;src:url('chunks/assets/font_0b215ebd3832c535c245590e.woff2')format("woff");}.ff112_c00002{font-family:ff112_c00002;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff113_c00002;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff113_c00002{font-family:ff113_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff114_c00002;src:url('chunks/assets/font_702f7481d1ff90dae8500a1f.woff2')format("woff");}.ff114_c00002{font-family:ff114_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff115_c00002;src:url('chunks/assets/font_c6c4abf1d5d6eaf78b4e0aaf.woff2')format("woff");}.ff115_c00002{font-family:ff115_c00002;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:ff116_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff116_c00002{font-family:ff116_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff117_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff117_c00002{font-family:ff117_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff118_c00002;src:url('chunks/assets/font_cc014b882f724701b1a13ec2.woff2')format("woff");}.ff118_c00002{font-family:ff118_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff119_c00002;src:url('chunks/assets/font_7bb1fd07c0116c0793b2dd32.woff2')format("woff");}.ff119_c00002{font-family:ff119_c00002;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:ff11a_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff11a_c00002{font-family:ff11a_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11b_c00002;src:url('chunks/assets/font_f1c6f63ea483743dbaa37a1d.woff2')format("woff");}.ff11b_c00002{font-family:ff11b_c00002;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:ff11c_c00002;src:url('chunks/assets/font_7ad771d5140fbd27eaa29997.woff2')format("woff");}.ff11c_c00002{font-family:ff11c_c00002;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:ff11d_c00002;src:url('chunks/assets/font_56f62648aada30b72e3502e5.woff2')format("woff");}.ff11d_c00002{font-family:ff11d_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11e_c00002;src:url('chunks/assets/font_4ef782aef8166e235d7304e1.woff2')format("woff");}.ff11e_c00002{font-family:ff11e_c00002;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:ff11f_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff11f_c00002{font-family:ff11f_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff120_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff120_c00002{font-family:ff120_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff121_c00002;src:url('chunks/assets/font_284809de4f3e2d7968117a69.woff2')format("woff");}.ff121_c00002{font-family:ff121_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff122_c00002;src:url('chunks/assets/font_c6a8f2e01dd20666bfeb34a0.woff2')format("woff");}.ff122_c00002{font-family:ff122_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff123_c00002;src:url('chunks/assets/font_1e0d85540408e629ea12a101.woff2')format("woff");}.ff123_c00002{font-family:ff123_c00002;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:ff124_c00002;src:url('chunks/assets/font_544ad15b9c8f39bd725867c4.woff2')format("woff");}.ff124_c00002{font-family:ff124_c00002;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:ff125_c00002;src:url('chunks/assets/font_8a5a85597de9a9f981e871e6.woff2')format("woff");}.ff125_c00002{font-family:ff125_c00002;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff126_c00002;src:url('chunks/assets/font_9d33888b3bde940879d7a774.woff2')format("woff");}.ff126_c00002{font-family:ff126_c00002;line-height:0.741699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff127_c00002;src:url('chunks/assets/font_508961a3b8185ff38dad83ea.woff2')format("woff");}.ff127_c00002{font-family:ff127_c00002;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:ff128_c00002;src:url('chunks/assets/font_a953fd3916e6443e08acab08.woff2')format("woff");}.ff128_c00002{font-family:ff128_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff129_c00002;src:url('chunks/assets/font_b51195f385d48e9c33232a9a.woff2')format("woff");}.ff129_c00002{font-family:ff129_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12a_c00002;src:url('chunks/assets/font_0b215ebd3832c535c245590e.woff2')format("woff");}.ff12a_c00002{font-family:ff12a_c00002;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12b_c00002;src:url('chunks/assets/font_ecda8021c118e06296b8c663.woff2')format("woff");}.ff12b_c00002{font-family:ff12b_c00002;line-height:0.782000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12c_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff12c_c00002{font-family:ff12c_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12d_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff12d_c00002{font-family:ff12d_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12e_c00002;src:url('chunks/assets/font_164edd981fc2d438d3ca0e8f.woff2')format("woff");}.ff12e_c00002{font-family:ff12e_c00002;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12f_c00002;src:url('chunks/assets/font_fee82d9cc858df9ba8dfc5ff.woff2')format("woff");}.ff12f_c00002{font-family:ff12f_c00002;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff130_c00002;src:url('chunks/assets/font_661a538a60ac5ea8c971b8d0.woff2')format("woff");}.ff130_c00002{font-family:ff130_c00002;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff131_c00002;src:url('chunks/assets/font_1b1e649acb1dbb5e2c7fc951.woff2')format("woff");}.ff131_c00002{font-family:ff131_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff132_c00002;src:url('chunks/assets/font_b7ac8731b209a7b98514f528.woff2')format("woff");}.ff132_c00002{font-family:ff132_c00002;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:ff133_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff133_c00002{font-family:ff133_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff134_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff134_c00002{font-family:ff134_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff135_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff135_c00002{font-family:ff135_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff136_c00002;src:url('chunks/assets/font_93e3ea23137956049439d962.woff2')format("woff");}.ff136_c00002{font-family:ff136_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff137_c00002;src:url('chunks/assets/font_59b04b5e113bc9aa677f1999.woff2')format("woff");}.ff137_c00002{font-family:ff137_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff138_c00002;src:url('chunks/assets/font_ecda8021c118e06296b8c663.woff2')format("woff");}.ff138_c00002{font-family:ff138_c00002;line-height:0.782000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff139_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff139_c00002{font-family:ff139_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13a_c00002;src:url('chunks/assets/font_33d940ea1a3b937e4c7af977.woff2')format("woff");}.ff13a_c00002{font-family:ff13a_c00002;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:ff13b_c00002;src:url('chunks/assets/font_08a48df76edd0cf624e447ea.woff2')format("woff");}.ff13b_c00002{font-family:ff13b_c00002;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13c_c00002;src:url('chunks/assets/font_a51705555f204ca0830fdd82.woff2')format("woff");}.ff13c_c00002{font-family:ff13c_c00002;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13d_c00002;src:url('chunks/assets/font_cc6b0aa8d83aab418b77a021.woff2')format("woff");}.ff13d_c00002{font-family:ff13d_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13e_c00002;src:url('chunks/assets/font_c72be44cedddd3cce7bc67be.woff2')format("woff");}.ff13e_c00002{font-family:ff13e_c00002;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:ff13f_c00002;src:url('chunks/assets/font_dcdab887604929e763539fb8.woff2')format("woff");}.ff13f_c00002{font-family:ff13f_c00002;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff140_c00002;src:url('chunks/assets/font_f7750ce5a91a780793b90f48.woff2')format("woff");}.ff140_c00002{font-family:ff140_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff141_c00002;src:url('chunks/assets/font_4b1d52bf21c4f88026ba089b.woff2')format("woff");}.ff141_c00002{font-family:ff141_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff142_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff142_c00002{font-family:ff142_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff143_c00002;src:url('chunks/assets/font_2005cce3570eb58d11a05154.woff2')format("woff");}.ff143_c00002{font-family:ff143_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff144_c00002;src:url('chunks/assets/font_a0b62b883340179ff38f43bb.woff2')format("woff");}.ff144_c00002{font-family:ff144_c00002;line-height:1.263000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff145_c00002;src:url('chunks/assets/font_6b7f57db610e9f87f69db6f2.woff2')format("woff");}.ff145_c00002{font-family:ff145_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff146_c00002;src:url('chunks/assets/font_a1d4732ac1cc208c6919dba0.woff2')format("woff");}.ff146_c00002{font-family:ff146_c00002;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff147_c00002;src:url('chunks/assets/font_02063fcc074df439e03250bb.woff2')format("woff");}.ff147_c00002{font-family:ff147_c00002;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:ff148_c00002;src:url('chunks/assets/font_2a3085734d5b7daf9ed30a7d.woff2')format("woff");}.ff148_c00002{font-family:ff148_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff149_c00002;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff149_c00002{font-family:ff149_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14a_c00002;src:url('chunks/assets/font_08406d949e5f2d0f74c6f4f5.woff2')format("woff");}.ff14a_c00002{font-family:ff14a_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14b_c00002;src:url('chunks/assets/font_b576e1211c2ef22d36688232.woff2')format("woff");}.ff14b_c00002{font-family:ff14b_c00002;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:ff14c_c00002;src:url('chunks/assets/font_4271da48340360ca0b1c60c9.woff2')format("woff");}.ff14c_c00002{font-family:ff14c_c00002;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14d_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff14d_c00002{font-family:ff14d_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14e_c00002;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff14e_c00002{font-family:ff14e_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:ff14f_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff14f_c00002{font-family:ff14f_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff150_c00002;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff150_c00002{font-family:ff150_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff151_c00002;src:url('chunks/assets/font_3b5d30e89cf44bf2e83e3b69.woff2')format("woff");}.ff151_c00002{font-family:ff151_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff152_c00002;src:url('chunks/assets/font_c9dd6e8c766792ce2d3c410d.woff2')format("woff");}.ff152_c00002{font-family:ff152_c00002;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:ff153_c00002;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff153_c00002{font-family:ff153_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff154_c00002;src:url('chunks/assets/font_58c90d170fbe0ddb1457b605.woff2')format("woff");}.ff154_c00002{font-family:ff154_c00002;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff155_c00002;src:url('chunks/assets/font_2f1dd33c73a857106528e3f9.woff2')format("woff");}.ff155_c00002{font-family:ff155_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff156_c00002;src:url('chunks/assets/font_1891ed0ba1dc72f693a568dc.woff2')format("woff");}.ff156_c00002{font-family:ff156_c00002;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff157_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff157_c00002{font-family:ff157_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff158_c00002;src:url('chunks/assets/font_3daa703573b889048b13e910.woff2')format("woff");}.ff158_c00002{font-family:ff158_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff159_c00002;src:url('chunks/assets/font_73f08878de7e0947ea774537.woff2')format("woff");}.ff159_c00002{font-family:ff159_c00002;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15a_c00002;src:url('chunks/assets/font_e2a6593906777847d5dd2406.woff2')format("woff");}.ff15a_c00002{font-family:ff15a_c00002;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:ff15b_c00002;src:url('chunks/assets/font_fef54cbeb19d3d5cb47593ce.woff2')format("woff");}.ff15b_c00002{font-family:ff15b_c00002;line-height:1.160645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15c_c00002;src:url('chunks/assets/font_4348bc436507b628c44133c7.woff2')format("woff");}.ff15c_c00002{font-family:ff15c_c00002;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:ff15d_c00002;src:url('chunks/assets/font_de06969c491c3c70abb6fb44.woff2')format("woff");}.ff15d_c00002{font-family:ff15d_c00002;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:ff15e_c00002;src:url('chunks/assets/font_ac66b9effc8d92ce00f6f21c.woff2')format("woff");}.ff15e_c00002{font-family:ff15e_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15f_c00002;src:url('chunks/assets/font_baa16f6bac4a3abaf487bcee.woff2')format("woff");}.ff15f_c00002{font-family:ff15f_c00002;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff160_c00002;src:url('chunks/assets/font_03c5803c415803bf9cb9883e.woff2')format("woff");}.ff160_c00002{font-family:ff160_c00002;line-height:0.782000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff161_c00002;src:url('chunks/assets/font_303cb249d998db3026937b77.woff2')format("woff");}.ff161_c00002{font-family:ff161_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff162_c00002;src:url('chunks/assets/font_ee60c2a1086d680f875d83e5.woff2')format("woff");}.ff162_c00002{font-family:ff162_c00002;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:ff163_c00002;src:url('chunks/assets/font_f0a7e970a47541189bf97477.woff2')format("woff");}.ff163_c00002{font-family:ff163_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff164_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff164_c00002{font-family:ff164_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff165_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff165_c00002{font-family:ff165_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff166_c00002;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff166_c00002{font-family:ff166_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:ff167_c00002;src:url('chunks/assets/font_36899f523d890a229e8b1a2a.woff2')format("woff");}.ff167_c00002{font-family:ff167_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff168_c00002;src:url('chunks/assets/font_be525f8b70b66d0c3b4d4f19.woff2')format("woff");}.ff168_c00002{font-family:ff168_c00002;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:ff169_c00002;src:url('chunks/assets/font_f7d4635c6e6f2da419f20e16.woff2')format("woff");}.ff169_c00002{font-family:ff169_c00002;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16a_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff16a_c00002{font-family:ff16a_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16b_c00002;src:url('chunks/assets/font_e2a6593906777847d5dd2406.woff2')format("woff");}.ff16b_c00002{font-family:ff16b_c00002;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:ff16c_c00002;src:url('chunks/assets/font_dcf84143508890e6fb329749.woff2')format("woff");}.ff16c_c00002{font-family:ff16c_c00002;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16d_c00002;src:url('chunks/assets/font_cfb925da8b8e50f033124753.woff2')format("woff");}.ff16d_c00002{font-family:ff16d_c00002;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:ff16e_c00002;src:url('chunks/assets/font_6388d292edbe4ba22711c11d.woff2')format("woff");}.ff16e_c00002{font-family:ff16e_c00002;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16f_c00002;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff16f_c00002{font-family:ff16f_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff170_c00002;src:url('chunks/assets/font_9501d9a6f939e36dd7033cdb.woff2')format("woff");}.ff170_c00002{font-family:ff170_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff171_c00002;src:url('chunks/assets/font_113bf27a40a3c22f937f07be.woff2')format("woff");}.ff171_c00002{font-family:ff171_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff172_c00002;src:url('chunks/assets/font_59ac7ef0f93ea697ce5645e8.woff2')format("woff");}.ff172_c00002{font-family:ff172_c00002;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:ff173_c00002;src:url('chunks/assets/font_6374fd7e1b00ea62d006f2c6.woff2')format("woff");}.ff173_c00002{font-family:ff173_c00002;line-height:0.739258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff174_c00002;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff174_c00002{font-family:ff174_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:ff175_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff175_c00002{font-family:ff175_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff176_c00002;src:url('chunks/assets/font_d2d2ef812bd8522e27e4b75b.woff2')format("woff");}.ff176_c00002{font-family:ff176_c00002;line-height:1.160645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff177_c00002;src:url('chunks/assets/font_910f929ddd3b029fa4e266a0.woff2')format("woff");}.ff177_c00002{font-family:ff177_c00002;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff178_c00002;src:url('chunks/assets/font_7c3016f0324bcab181666af5.woff2')format("woff");}.ff178_c00002{font-family:ff178_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff179_c00002;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff179_c00002{font-family:ff179_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17a_c00002;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff17a_c00002{font-family:ff17a_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17b_c00002;src:url('chunks/assets/font_1a7c5062b80e75229b76b7b7.woff2')format("woff");}.ff17b_c00002{font-family:ff17b_c00002;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:ff17c_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff17c_c00002{font-family:ff17c_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17d_c00002;src:url('chunks/assets/font_47c23b4935aabf211ddd1ed8.woff2')format("woff");}.ff17d_c00002{font-family:ff17d_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17e_c00002;src:url('chunks/assets/font_61a1d7a5be2d931f04e982ef.woff2')format("woff");}.ff17e_c00002{font-family:ff17e_c00002;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17f_c00002;src:url('chunks/assets/font_4efe3f3fa655e6a4ed982053.woff2')format("woff");}.ff17f_c00002{font-family:ff17f_c00002;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff180_c00002;src:url('chunks/assets/font_b0956442af1b62c78690cf67.woff2')format("woff");}.ff180_c00002{font-family:ff180_c00002;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff181_c00002;src:url('chunks/assets/font_e2a6593906777847d5dd2406.woff2')format("woff");}.ff181_c00002{font-family:ff181_c00002;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:ff182_c00002;src:url('chunks/assets/font_6452589b2faaa98b196242ce.woff2')format("woff");}.ff182_c00002{font-family:ff182_c00002;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:ff183_c00002;src:url('chunks/assets/font_1461ed6ac8a39e1f469d34e9.woff2')format("woff");}.ff183_c00002{font-family:ff183_c00002;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:ff184_c00002;src:url('chunks/assets/font_fcab475402ef84cf5191d297.woff2')format("woff");}.ff184_c00002{font-family:ff184_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff185_c00002;src:url('chunks/assets/font_2b02e605ed75df11df41cccc.woff2')format("woff");}.ff185_c00002{font-family:ff185_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff186_c00002;src:url('chunks/assets/font_d7294656baa463a452516e83.woff2')format("woff");}.ff186_c00002{font-family:ff186_c00002;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff187_c00002;src:url('chunks/assets/font_6374fd7e1b00ea62d006f2c6.woff2')format("woff");}.ff187_c00002{font-family:ff187_c00002;line-height:0.739258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff188_c00002;src:url('chunks/assets/font_85b3cfd2527172bdf3bc8dac.woff2')format("woff");}.ff188_c00002{font-family:ff188_c00002;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff189_c00002;src:url('chunks/assets/font_ee89c297162eaed53c5b1cdb.woff2')format("woff");}.ff189_c00002{font-family:ff189_c00002;line-height:0.745605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18a_c00002;src:url('chunks/assets/font_1363cc0a0144547d733579a6.woff2')format("woff");}.ff18a_c00002{font-family:ff18a_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18b_c00002;src:url('chunks/assets/font_ecdabe8b5f662225eabcdadc.woff2')format("woff");}.ff18b_c00002{font-family:ff18b_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18c_c00002;src:url('chunks/assets/font_60b99babbaf83b8dfe422171.woff2')format("woff");}.ff18c_c00002{font-family:ff18c_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:ff18d_c00002;src:url('chunks/assets/font_f0a7e970a47541189bf97477.woff2')format("woff");}.ff18d_c00002{font-family:ff18d_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18e_c00002;src:url('chunks/assets/font_25c84250c26812fdce664fb8.woff2')format("woff");}.ff18e_c00002{font-family:ff18e_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18f_c00002;src:url('chunks/assets/font_0b50d0afa0370ec2922a5b5a.woff2')format("woff");}.ff18f_c00002{font-family:ff18f_c00002;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:ff190_c00002;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff190_c00002{font-family:ff190_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff191_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff191_c00002{font-family:ff191_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff192_c00002;src:url('chunks/assets/font_6bc219b5d765f017f0f3da7f.woff2')format("woff");}.ff192_c00002{font-family:ff192_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff193_c00002;src:url('chunks/assets/font_05b4b4ec6c8389e328b6cfcb.woff2')format("woff");}.ff193_c00002{font-family:ff193_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff194_c00002;src:url('chunks/assets/font_f94c181a8b00ecf9516d412c.woff2')format("woff");}.ff194_c00002{font-family:ff194_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff195_c00002;src:url('chunks/assets/font_cb344ca3b05699589bfb38de.woff2')format("woff");}.ff195_c00002{font-family:ff195_c00002;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff196_c00002;src:url('chunks/assets/font_b23c9582e616cfad81abe92b.woff2')format("woff");}.ff196_c00002{font-family:ff196_c00002;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:ff197_c00002;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff197_c00002{font-family:ff197_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff198_c00002;src:url('chunks/assets/font_8b9c7318049f32232bcaca13.woff2')format("woff");}.ff198_c00002{font-family:ff198_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff199_c00002;src:url('chunks/assets/font_e130aa1997d827c1e407dd49.woff2')format("woff");}.ff199_c00002{font-family:ff199_c00002;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:ff19a_c00002;src:url('chunks/assets/font_aebf736efa79418bd6617883.woff2')format("woff");}.ff19a_c00002{font-family:ff19a_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19b_c00002;src:url('chunks/assets/font_22b9d143f1f5c4697bda8ecd.woff2')format("woff");}.ff19b_c00002{font-family:ff19b_c00002;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:ff19c_c00002;src:url('chunks/assets/font_b42c24f7a714d0d859b6053f.woff2')format("woff");}.ff19c_c00002{font-family:ff19c_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19d_c00002;src:url('chunks/assets/font_9310972f721cba15808c3821.woff2')format("woff");}.ff19d_c00002{font-family:ff19d_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19e_c00002;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff19e_c00002{font-family:ff19e_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19f_c00002;src:url('chunks/assets/font_e83aa66e7c7d7780a65065fc.woff2')format("woff");}.ff19f_c00002{font-family:ff19f_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a0_c00002;src:url('chunks/assets/font_6d398d9c378eac94d10b4c56.woff2')format("woff");}.ff1a0_c00002{font-family:ff1a0_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a1_c00002;src:url('chunks/assets/font_dfc172621ef8675d0f8fb218.woff2')format("woff");}.ff1a1_c00002{font-family:ff1a1_c00002;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:ff1a2_c00002;src:url('chunks/assets/font_d042bf75c550113fbc67eaca.woff2')format("woff");}.ff1a2_c00002{font-family:ff1a2_c00002;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a3_c00002;src:url('chunks/assets/font_9854c3993069730dde0a84be.woff2')format("woff");}.ff1a3_c00002{font-family:ff1a3_c00002;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:ff1a4_c00002;src:url('chunks/assets/font_13bfa3ead009a59f2cd1780e.woff2')format("woff");}.ff1a4_c00002{font-family:ff1a4_c00002;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:ff1a5_c00002;src:url('chunks/assets/font_f0a7e970a47541189bf97477.woff2')format("woff");}.ff1a5_c00002{font-family:ff1a5_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a6_c00002;src:url('chunks/assets/font_1920d50abb3f3c2a48d2c818.woff2')format("woff");}.ff1a6_c00002{font-family:ff1a6_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a7_c00002;src:url('chunks/assets/font_d31f71202a0cb1616b11c2d2.woff2')format("woff");}.ff1a7_c00002{font-family:ff1a7_c00002;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:ff1a8_c00002;src:url('chunks/assets/font_cce4e75f828fec35625d07c6.woff2')format("woff");}.ff1a8_c00002{font-family:ff1a8_c00002;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a9_c00002;src:url('chunks/assets/font_608cc2515d05917a16083738.woff2')format("woff");}.ff1a9_c00002{font-family:ff1a9_c00002;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:ff1aa_c00002;src:url('chunks/assets/font_d0aaca68e6cc4877eb811b0e.woff2')format("woff");}.ff1aa_c00002{font-family:ff1aa_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ab_c00002;src:url('chunks/assets/font_b5b56e56cab2f87557f841c5.woff2')format("woff");}.ff1ab_c00002{font-family:ff1ab_c00002;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ac_c00002;src:url('chunks/assets/font_f8a8a43836ef55e31b812f41.woff2')format("woff");}.ff1ac_c00002{font-family:ff1ac_c00002;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ad_c00002;src:url('chunks/assets/font_a067bae0d93ae90748e8fd54.woff2')format("woff");}.ff1ad_c00002{font-family:ff1ad_c00002;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ae_c00002;src:url('chunks/assets/font_aabd3b5dc0b16ed7ca128331.woff2')format("woff");}.ff1ae_c00002{font-family:ff1ae_c00002;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1af_c00002;src:url('chunks/assets/font_71603105a104bee46ebdc202.woff2')format("woff");}.ff1af_c00002{font-family:ff1af_c00002;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b0_c00002;src:url('chunks/assets/font_a9d9b27db2d1d7523a36c833.woff2')format("woff");}.ff1b0_c00002{font-family:ff1b0_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b1_c00002;src:url('chunks/assets/font_f58e66363cf9fde73ab72054.woff2')format("woff");}.ff1b1_c00002{font-family:ff1b1_c00002;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b2_c00002;src:url('chunks/assets/font_acc378489a2681a71d4db7a5.woff2')format("woff");}.ff1b2_c00002{font-family:ff1b2_c00002;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b3_c00002;src:url('chunks/assets/font_580bc82015fd9a9a83880344.woff2')format("woff");}.ff1b3_c00002{font-family:ff1b3_c00002;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:ff1b4_c00002;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff1b4_c00002{font-family:ff1b4_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b5_c00002;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff1b5_c00002{font-family:ff1b5_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b6_c00002;src:url('chunks/assets/font_17a74fa5826c0ffb96f68f50.woff2')format("woff");}.ff1b6_c00002{font-family:ff1b6_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b7_c00002;src:url('chunks/assets/font_03c5803c415803bf9cb9883e.woff2')format("woff");}.ff1b7_c00002{font-family:ff1b7_c00002;line-height:0.782000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b8_c00002;src:url('chunks/assets/font_a3fa90380f1d2346afffacaa.woff2')format("woff");}.ff1b8_c00002{font-family:ff1b8_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b9_c00002;src:url('chunks/assets/font_61b1d7854706663a154661e9.woff2')format("woff");}.ff1b9_c00002{font-family:ff1b9_c00002;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ba_c00002;src:url('chunks/assets/font_90785bea3619659578fd402d.woff2')format("woff");}.ff1ba_c00002{font-family:ff1ba_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bb_c00002;src:url('chunks/assets/font_7ed7d0322ff78fff043ecfa8.woff2')format("woff");}.ff1bb_c00002{font-family:ff1bb_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bc_c00002;src:url('chunks/assets/font_65586ac1975a5f0eaa720cdf.woff2')format("woff");}.ff1bc_c00002{font-family:ff1bc_c00002;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bd_c00002;src:url('chunks/assets/font_6e528b8b5963c01186295044.woff2')format("woff");}.ff1bd_c00002{font-family:ff1bd_c00002;line-height:0.800000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1be_c00002;src:url('chunks/assets/font_679599116f5496fc01057ad9.woff2')format("woff");}.ff1be_c00002{font-family:ff1be_c00002;line-height:0.696289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bf_c00002;src:url('chunks/assets/font_d547a4ce7d3cdbd0d8e4d2d9.woff2')format("woff");}.ff1bf_c00002{font-family:ff1bf_c00002;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c0_c00002;src:url('chunks/assets/font_1ba79ea54f1ccb0a84b889b9.woff2')format("woff");}.ff1c0_c00002{font-family:ff1c0_c00002;line-height:0.772000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c1_c00002;src:url('chunks/assets/font_1a55f8acb8445b7bcc041b4d.woff2')format("woff");}.ff1c1_c00002{font-family:ff1c1_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c2_c00002;src:url('chunks/assets/font_f2533b080b8ee2c5a7f4e898.woff2')format("woff");}.ff1c2_c00002{font-family:ff1c2_c00002;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:ff1c3_c00002;src:url('chunks/assets/font_43ac8c16d68e457611cc83af.woff2')format("woff");}.ff1c3_c00002{font-family:ff1c3_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c4_c00002;src:url('chunks/assets/font_8f853b6584a1b01785ed7d31.woff2')format("woff");}.ff1c4_c00002{font-family:ff1c4_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c5_c00002;src:url('chunks/assets/font_deafbe76e2be47983bab5318.woff2')format("woff");}.ff1c5_c00002{font-family:ff1c5_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c6_c00002;src:url('chunks/assets/font_b6966aabd2c2ea73ca67ad25.woff2')format("woff");}.ff1c6_c00002{font-family:ff1c6_c00002;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:ff1c7_c00002;src:url('chunks/assets/font_751d5e44cef44da23f30484b.woff2')format("woff");}.ff1c7_c00002{font-family:ff1c7_c00002;line-height:0.787000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c8_c00002;src:url('chunks/assets/font_8142882619e1d64aa549c409.woff2')format("woff");}.ff1c8_c00002{font-family:ff1c8_c00002;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:ff1c9_c00002;src:url('chunks/assets/font_1da4716a915d236e2dcd3aab.woff2')format("woff");}.ff1c9_c00002{font-family:ff1c9_c00002;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:ff1ca_c00002;src:url('chunks/assets/font_d709eb4d8e61f8fee3e6b74d.woff2')format("woff");}.ff1ca_c00002{font-family:ff1ca_c00002;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:ff1cb_c00002;src:url('chunks/assets/font_a5f084a960fceeda5ab208fb.woff2')format("woff");}.ff1cb_c00002{font-family:ff1cb_c00002;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cc_c00002;src:url('chunks/assets/font_35f3b62313a70aa9a9611484.woff2')format("woff");}.ff1cc_c00002{font-family:ff1cc_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00002{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m2_c00002{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_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);}
.v4_c00002{vertical-align:-31.170679px;}
.v8_c00002{vertical-align:-27.360000px;}
.v5_c00002{vertical-align:-24.480000px;}
.va_c00002{vertical-align:-18.720000px;}
.v6_c00002{vertical-align:-14.401440px;}
.v1_c00002{vertical-align:-11.520000px;}
.vb_c00002{vertical-align:-8.640000px;}
.v7_c00002{vertical-align:-1.080000px;}
.v0_c00002{vertical-align:0.000000px;}
.v9_c00002{vertical-align:18.720000px;}
.v2_c00002{vertical-align:24.480000px;}
.v3_c00002{vertical-align:31.170679px;}
.ls448_c00002{letter-spacing:-12.000000px;}
.ls3d1_c00002{letter-spacing:-0.498960px;}
.ls56_c00002{letter-spacing:-0.185094px;}
.ls37_c00002{letter-spacing:-0.179568px;}
.ls54a_c00002{letter-spacing:-0.172800px;}
.ls3fa_c00002{letter-spacing:-0.014400px;}
.ls3f8_c00002{letter-spacing:-0.007200px;}
.ls22_c00002{letter-spacing:0.000000px;}
.ls3f7_c00002{letter-spacing:0.007200px;}
.ls47f_c00002{letter-spacing:0.012000px;}
.ls3f9_c00002{letter-spacing:0.014400px;}
.ls672_c00002{letter-spacing:0.021600px;}
.lsdd_c00002{letter-spacing:0.021840px;}
.ls47a_c00002{letter-spacing:0.023040px;}
.ls3d9_c00002{letter-spacing:0.027240px;}
.ls279_c00002{letter-spacing:0.028800px;}
.ls17b_c00002{letter-spacing:0.029040px;}
.ls245_c00002{letter-spacing:0.036000px;}
.ls684_c00002{letter-spacing:0.037200px;}
.ls1a0_c00002{letter-spacing:0.040440px;}
.ls788_c00002{letter-spacing:0.047400px;}
.ls435_c00002{letter-spacing:0.047640px;}
.ls3ca_c00002{letter-spacing:0.048092px;}
.ls179_c00002{letter-spacing:0.049800px;}
.ls72_c00002{letter-spacing:0.050640px;}
.ls70b_c00002{letter-spacing:0.052440px;}
.ls3be_c00002{letter-spacing:0.053040px;}
.ls45a_c00002{letter-spacing:0.060600px;}
.ls3c8_c00002{letter-spacing:0.064123px;}
.ls73a_c00002{letter-spacing:0.065520px;}
.ls74c_c00002{letter-spacing:0.066816px;}
.ls776_c00002{letter-spacing:0.068872px;}
.ls3bf_c00002{letter-spacing:0.071040px;}
.ls206_c00002{letter-spacing:0.071400px;}
.ls6ee_c00002{letter-spacing:0.072000px;}
.ls637_c00002{letter-spacing:0.076200px;}
.ls74b_c00002{letter-spacing:0.079344px;}
.ls3c6_c00002{letter-spacing:0.080153px;}
.ls17a_c00002{letter-spacing:0.082440px;}
.ls1dd_c00002{letter-spacing:0.083520px;}
.ls4c2_c00002{letter-spacing:0.085440px;}
.ls480_c00002{letter-spacing:0.089640px;}
.ls47c_c00002{letter-spacing:0.095640px;}
.ls3c7_c00002{letter-spacing:0.096184px;}
.lsbe_c00002{letter-spacing:0.098640px;}
.ls238_c00002{letter-spacing:0.105240px;}
.ls78d_c00002{letter-spacing:0.107520px;}
.ls69c_c00002{letter-spacing:0.108000px;}
.ls3cb_c00002{letter-spacing:0.112214px;}
.ls421_c00002{letter-spacing:0.115200px;}
.ls73_c00002{letter-spacing:0.115440px;}
.ls53a_c00002{letter-spacing:0.117558px;}
.ls54d_c00002{letter-spacing:0.118800px;}
.ls294_c00002{letter-spacing:0.119040px;}
.ls375_c00002{letter-spacing:0.120000px;}
.ls242_c00002{letter-spacing:0.122040px;}
.ls27a_c00002{letter-spacing:0.125280px;}
.ls2fb_c00002{letter-spacing:0.128640px;}
.ls77a_c00002{letter-spacing:0.129360px;}
.ls2c0_c00002{letter-spacing:0.131400px;}
.ls3b3_c00002{letter-spacing:0.131640px;}
.ls86_c00002{letter-spacing:0.132240px;}
.ls15a_c00002{letter-spacing:0.132840px;}
.ls516_c00002{letter-spacing:0.133056px;}
.ls764_c00002{letter-spacing:0.135172px;}
.ls6af_c00002{letter-spacing:0.135600px;}
.ls73f_c00002{letter-spacing:0.135840px;}
.ls310_c00002{letter-spacing:0.136310px;}
.ls5_c00002{letter-spacing:0.136928px;}
.ls437_c00002{letter-spacing:0.137040px;}
.ls51c_c00002{letter-spacing:0.137151px;}
.ls283_c00002{letter-spacing:0.141840px;}
.ls539_c00002{letter-spacing:0.142049px;}
.ls43_c00002{letter-spacing:0.144000px;}
.ls7ae_c00002{letter-spacing:0.146160px;}
.ls37c_c00002{letter-spacing:0.148432px;}
.ls51d_c00002{letter-spacing:0.156816px;}
.ls554_c00002{letter-spacing:0.157800px;}
.ls54c_c00002{letter-spacing:0.158640px;}
.ls78e_c00002{letter-spacing:0.158688px;}
.ls550_c00002{letter-spacing:0.159240px;}
.ls7b3_c00002{letter-spacing:0.159840px;}
.ls3c9_c00002{letter-spacing:0.160306px;}
.ls50d_c00002{letter-spacing:0.161642px;}
.ls760_c00002{letter-spacing:0.162864px;}
.ls50f_c00002{letter-spacing:0.163522px;}
.ls50c_c00002{letter-spacing:0.164141px;}
.ls73e_c00002{letter-spacing:0.167876px;}
.ls460_c00002{letter-spacing:0.168240px;}
.ls74a_c00002{letter-spacing:0.171216px;}
.ls32e_c00002{letter-spacing:0.172800px;}
.ls48d_c00002{letter-spacing:0.175800px;}
.ls528_c00002{letter-spacing:0.176337px;}
.ls3d7_c00002{letter-spacing:0.176485px;}
.ls6ae_c00002{letter-spacing:0.179400px;}
.ls773_c00002{letter-spacing:0.181152px;}
.ls507_c00002{letter-spacing:0.183240px;}
.ls7c4_c00002{letter-spacing:0.183744px;}
.ls508_c00002{letter-spacing:0.183840px;}
.ls53b_c00002{letter-spacing:0.184440px;}
.ls364_c00002{letter-spacing:0.185400px;}
.lsb8_c00002{letter-spacing:0.185640px;}
.ls551_c00002{letter-spacing:0.185760px;}
.ls523_c00002{letter-spacing:0.186133px;}
.ls7b1_c00002{letter-spacing:0.186480px;}
.ls2b3_c00002{letter-spacing:0.187200px;}
.ls51b_c00002{letter-spacing:0.191032px;}
.ls762_c00002{letter-spacing:0.192219px;}
.ls578_c00002{letter-spacing:0.193440px;}
.ls456_c00002{letter-spacing:0.194640px;}
.lsb7_c00002{letter-spacing:0.195240px;}
.ls73d_c00002{letter-spacing:0.199560px;}
.ls9b_c00002{letter-spacing:0.200040px;}
.ls8e_c00002{letter-spacing:0.200160px;}
.ls777_c00002{letter-spacing:0.200448px;}
.ls705_c00002{letter-spacing:0.200640px;}
.ls271_c00002{letter-spacing:0.201840px;}
.ls1f_c00002{letter-spacing:0.202464px;}
.ls775_c00002{letter-spacing:0.206617px;}
.ls7b9_c00002{letter-spacing:0.207792px;}
.ls1e_c00002{letter-spacing:0.208695px;}
.ls4d3_c00002{letter-spacing:0.212040px;}
.ls405_c00002{letter-spacing:0.212544px;}
.ls1b_c00002{letter-spacing:0.213120px;}
.ls530_c00002{letter-spacing:0.213840px;}
.ls4d4_c00002{letter-spacing:0.217200px;}
.ls53e_c00002{letter-spacing:0.218442px;}
.ls40f_c00002{letter-spacing:0.218448px;}
.ls6c5_c00002{letter-spacing:0.219600px;}
.ls758_c00002{letter-spacing:0.219679px;}
.ls517_c00002{letter-spacing:0.220421px;}
.ls6ab_c00002{letter-spacing:0.221400px;}
.ls55a_c00002{letter-spacing:0.223344px;}
.ls3c1_c00002{letter-spacing:0.223440px;}
.ls553_c00002{letter-spacing:0.224160px;}
.ls132_c00002{letter-spacing:0.225600px;}
.ls7c0_c00002{letter-spacing:0.229104px;}
.ls336_c00002{letter-spacing:0.230256px;}
.ls72e_c00002{letter-spacing:0.230400px;}
.ls744_c00002{letter-spacing:0.230663px;}
.ls70f_c00002{letter-spacing:0.231840px;}
.ls6a6_c00002{letter-spacing:0.232320px;}
.ls47e_c00002{letter-spacing:0.232920px;}
.ls7a6_c00002{letter-spacing:0.234432px;}
.ls1_c00002{letter-spacing:0.236160px;}
.ls559_c00002{letter-spacing:0.237600px;}
.lsb0_c00002{letter-spacing:0.238560px;}
.ls1d0_c00002{letter-spacing:0.239160px;}
.ls4c5_c00002{letter-spacing:0.239640px;}
.ls42_c00002{letter-spacing:0.239760px;}
.ls5c2_c00002{letter-spacing:0.240000px;}
.ls794_c00002{letter-spacing:0.240120px;}
.ls556_c00002{letter-spacing:0.240720px;}
.ls795_c00002{letter-spacing:0.240840px;}
.ls27e_c00002{letter-spacing:0.242064px;}
.lsa9_c00002{letter-spacing:0.242352px;}
.ls407_c00002{letter-spacing:0.243000px;}
.lse6_c00002{letter-spacing:0.243428px;}
.ls28a_c00002{letter-spacing:0.246840px;}
.ls557_c00002{letter-spacing:0.247104px;}
.ls41_c00002{letter-spacing:0.247139px;}
.ls53c_c00002{letter-spacing:0.247386px;}
.ls2f7_c00002{letter-spacing:0.247968px;}
.ls3b4_c00002{letter-spacing:0.249514px;}
.ls51f_c00002{letter-spacing:0.249811px;}
.ls66d_c00002{letter-spacing:0.250560px;}
.ls5e4_c00002{letter-spacing:0.251160px;}
.ls569_c00002{letter-spacing:0.251640px;}
.ls50a_c00002{letter-spacing:0.251856px;}
.ls233_c00002{letter-spacing:0.252000px;}
.ls75a_c00002{letter-spacing:0.252631px;}
.ls7a_c00002{letter-spacing:0.253440px;}
.ls8d3_c00002{letter-spacing:0.253872px;}
.ls23b_c00002{letter-spacing:0.255240px;}
.ls552_c00002{letter-spacing:0.255840px;}
.ls7ad_c00002{letter-spacing:0.256663px;}
.ls70_c00002{letter-spacing:0.257640px;}
.ls789_c00002{letter-spacing:0.258960px;}
.ls623_c00002{letter-spacing:0.259080px;}
.ls3e6_c00002{letter-spacing:0.259776px;}
.ls7b0_c00002{letter-spacing:0.261072px;}
.ls767_c00002{letter-spacing:0.261144px;}
.ls229_c00002{letter-spacing:0.262440px;}
.ls555_c00002{letter-spacing:0.262920px;}
.ls6f8_c00002{letter-spacing:0.263400px;}
.ls7cb_c00002{letter-spacing:0.263615px;}
.ls49f_c00002{letter-spacing:0.265080px;}
.ls26_c00002{letter-spacing:0.265680px;}
.lsbc_c00002{letter-spacing:0.266040px;}
.ls50b_c00002{letter-spacing:0.266112px;}
.ls757_c00002{letter-spacing:0.266400px;}
.ls509_c00002{letter-spacing:0.266880px;}
.ls443_c00002{letter-spacing:0.267264px;}
.ls3e7_c00002{letter-spacing:0.267771px;}
.ls1a2_c00002{letter-spacing:0.268440px;}
.ls626_c00002{letter-spacing:0.269400px;}
.ls30f_c00002{letter-spacing:0.269898px;}
.ls3e1_c00002{letter-spacing:0.270240px;}
.ls29f_c00002{letter-spacing:0.271584px;}
.lsba_c00002{letter-spacing:0.272640px;}
.ls608_c00002{letter-spacing:0.273238px;}
.lsd0_c00002{letter-spacing:0.273240px;}
.ls31_c00002{letter-spacing:0.273857px;}
.ls513_c00002{letter-spacing:0.274302px;}
.ls61a_c00002{letter-spacing:0.274440px;}
.ls78b_c00002{letter-spacing:0.274599px;}
.ls522_c00002{letter-spacing:0.275094px;}
.ls481_c00002{letter-spacing:0.275184px;}
.ls82c_c00002{letter-spacing:0.277488px;}
.ls53d_c00002{letter-spacing:0.279200px;}
.ls48c_c00002{letter-spacing:0.279600px;}
.ls7dd_c00002{letter-spacing:0.279942px;}
.lsaf_c00002{letter-spacing:0.280080px;}
.ls19f_c00002{letter-spacing:0.282384px;}
.ls787_c00002{letter-spacing:0.282720px;}
.lsce_c00002{letter-spacing:0.283392px;}
.lsf2_c00002{letter-spacing:0.286028px;}
.ls27d_c00002{letter-spacing:0.287092px;}
.ls81d_c00002{letter-spacing:0.289296px;}
.ls2ab_c00002{letter-spacing:0.291000px;}
.ls74e_c00002{letter-spacing:0.291075px;}
.ls183_c00002{letter-spacing:0.292114px;}
.ls6f9_c00002{letter-spacing:0.292800px;}
.lsad_c00002{letter-spacing:0.294624px;}
.ls115_c00002{letter-spacing:0.294840px;}
.lse_c00002{letter-spacing:0.295200px;}
.ls78c_c00002{letter-spacing:0.297240px;}
.ls5a6_c00002{letter-spacing:0.298199px;}
.ls4c4_c00002{letter-spacing:0.298440px;}
.ls80b_c00002{letter-spacing:0.301104px;}
.ls1f8_c00002{letter-spacing:0.301800px;}
.ls52f_c00002{letter-spacing:0.303691px;}
.ls66_c00002{letter-spacing:0.304285px;}
.ls2a4_c00002{letter-spacing:0.307008px;}
.ls14d_c00002{letter-spacing:0.307254px;}
.ls39c_c00002{letter-spacing:0.312912px;}
.ls761_c00002{letter-spacing:0.313043px;}
.ls376_c00002{letter-spacing:0.314400px;}
.ls5d0_c00002{letter-spacing:0.316457px;}
.ls95_c00002{letter-spacing:0.317040px;}
.lsa1_c00002{letter-spacing:0.317520px;}
.lsab_c00002{letter-spacing:0.318384px;}
.lsa2_c00002{letter-spacing:0.318480px;}
.ls32_c00002{letter-spacing:0.318816px;}
.ls5b1_c00002{letter-spacing:0.319080px;}
.ls3d_c00002{letter-spacing:0.319680px;}
.ls397_c00002{letter-spacing:0.323640px;}
.ls151_c00002{letter-spacing:0.324000px;}
.lsd6_c00002{letter-spacing:0.324720px;}
.ls146_c00002{letter-spacing:0.326640px;}
.ls8a1_c00002{letter-spacing:0.327292px;}
.ls8a2_c00002{letter-spacing:0.327911px;}
.ls51e_c00002{letter-spacing:0.328183px;}
.ls4e6_c00002{letter-spacing:0.328282px;}
.ls2d_c00002{letter-spacing:0.328628px;}
.ls5b6_c00002{letter-spacing:0.328900px;}
.ls741_c00002{letter-spacing:0.329519px;}
.ls162_c00002{letter-spacing:0.330480px;}
.lsb6_c00002{letter-spacing:0.330600px;}
.ls1d6_c00002{letter-spacing:0.330624px;}
.ls7b8_c00002{letter-spacing:0.333000px;}
.ls239_c00002{letter-spacing:0.333840px;}
.ls7eb_c00002{letter-spacing:0.334714px;}
.ls7cf_c00002{letter-spacing:0.335664px;}
.ls470_c00002{letter-spacing:0.336240px;}
.ls10_c00002{letter-spacing:0.336528px;}
.lsd2_c00002{letter-spacing:0.338040px;}
.ls4d2_c00002{letter-spacing:0.338640px;}
.ls163_c00002{letter-spacing:0.340651px;}
.ls7ff_c00002{letter-spacing:0.340799px;}
.ls7a4_c00002{letter-spacing:0.340992px;}
.ls11_c00002{letter-spacing:0.342432px;}
.ls91_c00002{letter-spacing:0.342840px;}
.ls57f_c00002{letter-spacing:0.344040px;}
.lsaa_c00002{letter-spacing:0.346896px;}
.ls340_c00002{letter-spacing:0.348000px;}
.ls24e_c00002{letter-spacing:0.348336px;}
.ls4e9_c00002{letter-spacing:0.349080px;}
.ls4e7_c00002{letter-spacing:0.349680px;}
.ls7c2_c00002{letter-spacing:0.351487px;}
.ls7a5_c00002{letter-spacing:0.351648px;}
.ls545_c00002{letter-spacing:0.352674px;}
.ls184_c00002{letter-spacing:0.352971px;}
.ls131_c00002{letter-spacing:0.354240px;}
.ls683_c00002{letter-spacing:0.355200px;}
.ls7d0_c00002{letter-spacing:0.356976px;}
.ls785_c00002{letter-spacing:0.356978px;}
.ls28_c00002{letter-spacing:0.357572px;}
.ls244_c00002{letter-spacing:0.360144px;}
.ls444_c00002{letter-spacing:0.362304px;}
.ls378_c00002{letter-spacing:0.365142px;}
.ls595_c00002{letter-spacing:0.365760px;}
.ls558_c00002{letter-spacing:0.365904px;}
.ls812_c00002{letter-spacing:0.366048px;}
.ls594_c00002{letter-spacing:0.366360px;}
.ls607_c00002{letter-spacing:0.366960px;}
.ls7c6_c00002{letter-spacing:0.367632px;}
.ls51a_c00002{letter-spacing:0.370656px;}
.ls30_c00002{letter-spacing:0.371952px;}
.ls766_c00002{letter-spacing:0.372960px;}
.ls39_c00002{letter-spacing:0.373454px;}
.ls125_c00002{letter-spacing:0.373800px;}
.ls601_c00002{letter-spacing:0.374640px;}
.ls262_c00002{letter-spacing:0.375600px;}
.ls446_c00002{letter-spacing:0.375840px;}
.ls3ff_c00002{letter-spacing:0.377314px;}
.ls3f1_c00002{letter-spacing:0.377856px;}
.ls42b_c00002{letter-spacing:0.378840px;}
.ls30a_c00002{letter-spacing:0.380400px;}
.ls521_c00002{letter-spacing:0.382063px;}
.lsbb_c00002{letter-spacing:0.382440px;}
.ls6c_c00002{letter-spacing:0.383399px;}
.ls1cf_c00002{letter-spacing:0.383616px;}
.ls332_c00002{letter-spacing:0.383760px;}
.ls754_c00002{letter-spacing:0.384438px;}
.ls352_c00002{letter-spacing:0.390240px;}
.ls7ba_c00002{letter-spacing:0.394272px;}
.ls7ac_c00002{letter-spacing:0.395422px;}
.lse5_c00002{letter-spacing:0.395568px;}
.ls1a7_c00002{letter-spacing:0.396240px;}
.ls69f_c00002{letter-spacing:0.398400px;}
.lsac_c00002{letter-spacing:0.399168px;}
.ls1d_c00002{letter-spacing:0.399600px;}
.ls214_c00002{letter-spacing:0.399720px;}
.ls14f_c00002{letter-spacing:0.400766px;}
.ls8e3_c00002{letter-spacing:0.401472px;}
.ls737_c00002{letter-spacing:0.401640px;}
.ls535_c00002{letter-spacing:0.401656px;}
.ls615_c00002{letter-spacing:0.402240px;}
.ls710_c00002{letter-spacing:0.402360px;}
.ls42c_c00002{letter-spacing:0.402840px;}
.ls2b4_c00002{letter-spacing:0.403800px;}
.ls7c8_c00002{letter-spacing:0.404928px;}
.ls2f9_c00002{letter-spacing:0.406440px;}
.ls431_c00002{letter-spacing:0.407040px;}
.ls417_c00002{letter-spacing:0.407376px;}
.lsa5_c00002{letter-spacing:0.407445px;}
.lsf0_c00002{letter-spacing:0.407742px;}
.ls7c7_c00002{letter-spacing:0.408024px;}
.ls35c_c00002{letter-spacing:0.409440px;}
.ls8f_c00002{letter-spacing:0.410256px;}
.ls536_c00002{letter-spacing:0.410414px;}
.ls26d_c00002{letter-spacing:0.410640px;}
.ls518_c00002{letter-spacing:0.411453px;}
.ls393_c00002{letter-spacing:0.411898px;}
.ls3d6_c00002{letter-spacing:0.412022px;}
.ls459_c00002{letter-spacing:0.412440px;}
.ls3e5_c00002{letter-spacing:0.413280px;}
.ls15e_c00002{letter-spacing:0.414125px;}
.ls292_c00002{letter-spacing:0.414240px;}
.ls628_c00002{letter-spacing:0.414840px;}
.ls1d1_c00002{letter-spacing:0.415584px;}
.ls692_c00002{letter-spacing:0.416640px;}
.lsdc_c00002{letter-spacing:0.417240px;}
.ls704_c00002{letter-spacing:0.417600px;}
.ls28f_c00002{letter-spacing:0.417840px;}
.ls419_c00002{letter-spacing:0.419184px;}
.ls627_c00002{letter-spacing:0.419640px;}
.ls259_c00002{letter-spacing:0.421200px;}
.ls6f_c00002{letter-spacing:0.421440px;}
.ls700_c00002{letter-spacing:0.422040px;}
.ls7a9_c00002{letter-spacing:0.422882px;}
.ls6a4_c00002{letter-spacing:0.423840px;}
.ls177_c00002{letter-spacing:0.425040px;}
.ls49_c00002{letter-spacing:0.425088px;}
.ls4b0_c00002{letter-spacing:0.425640px;}
.ls230_c00002{letter-spacing:0.425999px;}
.ls5ce_c00002{letter-spacing:0.426240px;}
.ls150_c00002{letter-spacing:0.427484px;}
.ls58_c00002{letter-spacing:0.430992px;}
.ls561_c00002{letter-spacing:0.432000px;}
.ls685_c00002{letter-spacing:0.433800px;}
.ls6f4_c00002{letter-spacing:0.434163px;}
.ls75f_c00002{letter-spacing:0.436680px;}
.ls215_c00002{letter-spacing:0.436896px;}
.ls21a_c00002{letter-spacing:0.437640px;}
.ls46_c00002{letter-spacing:0.438171px;}
.ls73b_c00002{letter-spacing:0.438720px;}
.ls5b5_c00002{letter-spacing:0.438740px;}
.ls78a_c00002{letter-spacing:0.439358px;}
.ls3f0_c00002{letter-spacing:0.442800px;}
.ls6bb_c00002{letter-spacing:0.444256px;}
.ls5bb_c00002{letter-spacing:0.446640px;}
.ls287_c00002{letter-spacing:0.448440px;}
.ls890_c00002{letter-spacing:0.448704px;}
.ls6a5_c00002{letter-spacing:0.449280px;}
.ls40_c00002{letter-spacing:0.450342px;}
.ls7ca_c00002{letter-spacing:0.451104px;}
.ls3eb_c00002{letter-spacing:0.454608px;}
.ls261_c00002{letter-spacing:0.454800px;}
.ls39a_c00002{letter-spacing:0.455400px;}
.ls7c1_c00002{letter-spacing:0.457104px;}
.ls411_c00002{letter-spacing:0.460440px;}
.ls8bd_c00002{letter-spacing:0.460512px;}
.ls38_c00002{letter-spacing:0.460800px;}
.ls809_c00002{letter-spacing:0.462513px;}
.ls81_c00002{letter-spacing:0.464640px;}
.ls573_c00002{letter-spacing:0.466128px;}
.ls3e3_c00002{letter-spacing:0.466416px;}
.ls374_c00002{letter-spacing:0.467400px;}
.ls124_c00002{letter-spacing:0.467640px;}
.ls2d9_c00002{letter-spacing:0.472320px;}
.ls22e_c00002{letter-spacing:0.474685px;}
.ls645_c00002{letter-spacing:0.475200px;}
.ls7bb_c00002{letter-spacing:0.475992px;}
.ls1d4_c00002{letter-spacing:0.477840px;}
.ls2f_c00002{letter-spacing:0.478224px;}
.ls32c_c00002{letter-spacing:0.479040px;}
.ls3bd_c00002{letter-spacing:0.479520px;}
.ls519_c00002{letter-spacing:0.479952px;}
.ls161_c00002{letter-spacing:0.480919px;}
.ls3ef_c00002{letter-spacing:0.484128px;}
.ls145_c00002{letter-spacing:0.486240px;}
.ls22f_c00002{letter-spacing:0.486856px;}
.ls5cf_c00002{letter-spacing:0.489840px;}
.ls577_c00002{letter-spacing:0.492240px;}
.ls2c_c00002{letter-spacing:0.492942px;}
.ls763_c00002{letter-spacing:0.493659px;}
.ls76f_c00002{letter-spacing:0.494278px;}
.ls655_c00002{letter-spacing:0.494400px;}
.ls532_c00002{letter-spacing:0.494723px;}
.ls4f0_c00002{letter-spacing:0.494773px;}
.ls1f9_c00002{letter-spacing:0.495600px;}
.ls3e8_c00002{letter-spacing:0.495936px;}
.ls5c1_c00002{letter-spacing:0.498720px;}
.lsdf_c00002{letter-spacing:0.499028px;}
.ls5c0_c00002{letter-spacing:0.499920px;}
.ls185_c00002{letter-spacing:0.501205px;}
.ls130_c00002{letter-spacing:0.501840px;}
.ls584_c00002{letter-spacing:0.503400px;}
.ls65_c00002{letter-spacing:0.505200px;}
.ls6ad_c00002{letter-spacing:0.507000px;}
.lsb_c00002{letter-spacing:0.507744px;}
.ls266_c00002{letter-spacing:0.511056px;}
.ls7b_c00002{letter-spacing:0.513648px;}
.ls19e_c00002{letter-spacing:0.516816px;}
.lsd_c00002{letter-spacing:0.517285px;}
.ls73c_c00002{letter-spacing:0.518640px;}
.lsee_c00002{letter-spacing:0.519552px;}
.lsb2_c00002{letter-spacing:0.522144px;}
.ls16e_c00002{letter-spacing:0.524830px;}
.ls158_c00002{letter-spacing:0.525449px;}
.lsc_c00002{letter-spacing:0.525456px;}
.ls159_c00002{letter-spacing:0.526562px;}
.ls5af_c00002{letter-spacing:0.526784px;}
.ls7af_c00002{letter-spacing:0.527472px;}
.ls16f_c00002{letter-spacing:0.529456px;}
.ls30c_c00002{letter-spacing:0.530040px;}
.ls113_c00002{letter-spacing:0.531000px;}
.ls12_c00002{letter-spacing:0.531360px;}
.ls333_c00002{letter-spacing:0.531840px;}
.ls4d0_c00002{letter-spacing:0.532440px;}
.ls498_c00002{letter-spacing:0.532560px;}
.lsb1_c00002{letter-spacing:0.532722px;}
.ls31d_c00002{letter-spacing:0.534840px;}
.ls20a_c00002{letter-spacing:0.535542px;}
.lsf_c00002{letter-spacing:0.537264px;}
.ls5bf_c00002{letter-spacing:0.537840px;}
.ls774_c00002{letter-spacing:0.538214px;}
.ls35f_c00002{letter-spacing:0.538684px;}
.ls382_c00002{letter-spacing:0.539302px;}
.ls4ed_c00002{letter-spacing:0.541628px;}
.ls170_c00002{letter-spacing:0.541652px;}
.ls85_c00002{letter-spacing:0.543013px;}
.ls139_c00002{letter-spacing:0.543168px;}
.ls624_c00002{letter-spacing:0.543360px;}
.ls7c5_c00002{letter-spacing:0.543456px;}
.ls15c_c00002{letter-spacing:0.543879px;}
.ls381_c00002{letter-spacing:0.544621px;}
.ls349_c00002{letter-spacing:0.546840px;}
.ls53_c00002{letter-spacing:0.547713px;}
.ls6_c00002{letter-spacing:0.548950px;}
.ls7c_c00002{letter-spacing:0.549072px;}
.ls7b7_c00002{letter-spacing:0.549198px;}
.ls45_c00002{letter-spacing:0.549569px;}
.ls221_c00002{letter-spacing:0.551640px;}
.ls434_c00002{letter-spacing:0.553799px;}
.lsf1_c00002{letter-spacing:0.554976px;}
.ls384_c00002{letter-spacing:0.555240px;}
.ls38c_c00002{letter-spacing:0.556440px;}
.ls227_c00002{letter-spacing:0.559440px;}
.ls8d6_c00002{letter-spacing:0.559885px;}
.ls68f_c00002{letter-spacing:0.560040px;}
.ls67_c00002{letter-spacing:0.560880px;}
.ls25b_c00002{letter-spacing:0.561600px;}
.ls27c_c00002{letter-spacing:0.562804px;}
.ls691_c00002{letter-spacing:0.563040px;}
.ls5bc_c00002{letter-spacing:0.563640px;}
.ls135_c00002{letter-spacing:0.564840px;}
.ls232_c00002{letter-spacing:0.565970px;}
.ls251_c00002{letter-spacing:0.566784px;}
.ls5bd_c00002{letter-spacing:0.568440px;}
.ls5b2_c00002{letter-spacing:0.572056px;}
.ls188_c00002{letter-spacing:0.572688px;}
.ls90_c00002{letter-spacing:0.575424px;}
.ls136_c00002{letter-spacing:0.576000px;}
.ls772_c00002{letter-spacing:0.576658px;}
.ls52_c00002{letter-spacing:0.578142px;}
.ls39b_c00002{letter-spacing:0.578592px;}
.ls765_c00002{letter-spacing:0.580632px;}
.ls738_c00002{letter-spacing:0.580800px;}
.ls563_c00002{letter-spacing:0.583200px;}
.ls24_c00002{letter-spacing:0.584496px;}
.lsa0_c00002{letter-spacing:0.585360px;}
.ls497_c00002{letter-spacing:0.585960px;}
.ls207_c00002{letter-spacing:0.588000px;}
.ls3_c00002{letter-spacing:0.590400px;}
.ls46d_c00002{letter-spacing:0.593040px;}
.ls936_c00002{letter-spacing:0.596304px;}
.ls2f8_c00002{letter-spacing:0.596736px;}
.ls13a_c00002{letter-spacing:0.597600px;}
.ls5fe_c00002{letter-spacing:0.599040px;}
.ls395_c00002{letter-spacing:0.600240px;}
.ls286_c00002{letter-spacing:0.602040px;}
.ls2ee_c00002{letter-spacing:0.602208px;}
.ls2e_c00002{letter-spacing:0.602485px;}
.ls21d_c00002{letter-spacing:0.603240px;}
.ls8b4_c00002{letter-spacing:0.603375px;}
.ls7d2_c00002{letter-spacing:0.603994px;}
.ls7ab_c00002{letter-spacing:0.604117px;}
.ls25a_c00002{letter-spacing:0.606528px;}
.ls22b_c00002{letter-spacing:0.607440px;}
.ls46e_c00002{letter-spacing:0.608040px;}
.ls697_c00002{letter-spacing:0.608112px;}
.ls182_c00002{letter-spacing:0.608570px;}
.ls17f_c00002{letter-spacing:0.609240px;}
.ls17e_c00002{letter-spacing:0.609840px;}
.ls284_c00002{letter-spacing:0.611640px;}
.ls11d_c00002{letter-spacing:0.614016px;}
.ls686_c00002{letter-spacing:0.614400px;}
.ls3f_c00002{letter-spacing:0.615101px;}
.ls39f_c00002{letter-spacing:0.619920px;}
.ls756_c00002{letter-spacing:0.620593px;}
.ls4c3_c00002{letter-spacing:0.620640px;}
.ls164_c00002{letter-spacing:0.621187px;}
.ls63b_c00002{letter-spacing:0.625195px;}
.ls28c_c00002{letter-spacing:0.625824px;}
.ls4ab_c00002{letter-spacing:0.631728px;}
.ls3f5_c00002{letter-spacing:0.633600px;}
.ls23a_c00002{letter-spacing:0.636240px;}
.lsa8_c00002{letter-spacing:0.637632px;}
.ls6ec_c00002{letter-spacing:0.638999px;}
.ls31a_c00002{letter-spacing:0.642240px;}
.ls3ec_c00002{letter-spacing:0.643536px;}
.ls7a8_c00002{letter-spacing:0.648000px;}
.ls15b_c00002{letter-spacing:0.649440px;}
.ls67a_c00002{letter-spacing:0.651456px;}
.ls8b_c00002{letter-spacing:0.657256px;}
.ls92e_c00002{letter-spacing:0.658419px;}
.ls278_c00002{letter-spacing:0.658440px;}
.ls6c4_c00002{letter-spacing:0.660600px;}
.ls3c0_c00002{letter-spacing:0.665040px;}
.ls165_c00002{letter-spacing:0.667440px;}
.ls3c2_c00002{letter-spacing:0.670440px;}
.ls200_c00002{letter-spacing:0.673056px;}
.ls355_c00002{letter-spacing:0.673440px;}
.ls354_c00002{letter-spacing:0.678240px;}
.ls23c_c00002{letter-spacing:0.681240px;}
.ls822_c00002{letter-spacing:0.684864px;}
.ls155_c00002{letter-spacing:0.687734px;}
.ls160_c00002{letter-spacing:0.687981px;}
.ls4f1_c00002{letter-spacing:0.689880px;}
.ls2b_c00002{letter-spacing:0.690768px;}
.ls631_c00002{letter-spacing:0.691800px;}
.ls42d_c00002{letter-spacing:0.692640px;}
.ls50_c00002{letter-spacing:0.693000px;}
.ls303_c00002{letter-spacing:0.693120px;}
.ls3a3_c00002{letter-spacing:0.694440px;}
.ls265_c00002{letter-spacing:0.696384px;}
.ls47_c00002{letter-spacing:0.696672px;}
.ls290_c00002{letter-spacing:0.697440px;}
.lsd4_c00002{letter-spacing:0.699240px;}
.ls904_c00002{letter-spacing:0.699856px;}
.ls94_c00002{letter-spacing:0.701040px;}
.ls241_c00002{letter-spacing:0.701640px;}
.ls3ea_c00002{letter-spacing:0.702576px;}
.ls2fa_c00002{letter-spacing:0.704040px;}
.ls603_c00002{letter-spacing:0.705600px;}
.ls3e4_c00002{letter-spacing:0.708480px;}
.ls13_c00002{letter-spacing:0.712027px;}
.ls7e5_c00002{letter-spacing:0.713462px;}
.ls186_c00002{letter-spacing:0.714384px;}
.ls49e_c00002{letter-spacing:0.715441px;}
.ls5b8_c00002{letter-spacing:0.717816px;}
.lsf8_c00002{letter-spacing:0.718113px;}
.ls670_c00002{letter-spacing:0.718200px;}
.lsb3_c00002{letter-spacing:0.719280px;}
.ls455_c00002{letter-spacing:0.720000px;}
.ls8d_c00002{letter-spacing:0.720288px;}
.lsfe_c00002{letter-spacing:0.730284px;}
.ls32d_c00002{letter-spacing:0.731640px;}
.ls15d_c00002{letter-spacing:0.732240px;}
.ls14c_c00002{letter-spacing:0.734737px;}
.ls7cd_c00002{letter-spacing:0.736560px;}
.ls144_c00002{letter-spacing:0.738000px;}
.ls96_c00002{letter-spacing:0.740640px;}
.ls3a_c00002{letter-spacing:0.741417px;}
.ls14_c00002{letter-spacing:0.743904px;}
.ls28e_c00002{letter-spacing:0.749040px;}
.ls88e_c00002{letter-spacing:0.749808px;}
.ls619_c00002{letter-spacing:0.750240px;}
.ls5cd_c00002{letter-spacing:0.751440px;}
.ls1d2_c00002{letter-spacing:0.753840px;}
.ls31f_c00002{letter-spacing:0.755712px;}
.ls30d_c00002{letter-spacing:0.758040px;}
.ls6e_c00002{letter-spacing:0.766799px;}
.ls21b_c00002{letter-spacing:0.767040px;}
.lsea_c00002{letter-spacing:0.767520px;}
.ls3b0_c00002{letter-spacing:0.767640px;}
.ls7aa_c00002{letter-spacing:0.768877px;}
.lsd1_c00002{letter-spacing:0.771240px;}
.ls8dc_c00002{letter-spacing:0.773424px;}
.ls399_c00002{letter-spacing:0.774240px;}
.ls454_c00002{letter-spacing:0.775440px;}
.ls178_c00002{letter-spacing:0.777240px;}
.ls68_c00002{letter-spacing:0.780240px;}
.ls913_c00002{letter-spacing:0.785056px;}
.ls83b_c00002{letter-spacing:0.785232px;}
.ls31c_c00002{letter-spacing:0.789840px;}
.ls231_c00002{letter-spacing:0.791142px;}
.ls3c3_c00002{letter-spacing:0.792000px;}
.ls34_c00002{letter-spacing:0.797040px;}
.ls3b6_c00002{letter-spacing:0.802944px;}
.ls69_c00002{letter-spacing:0.813240px;}
.ls240_c00002{letter-spacing:0.814752px;}
.ls288_c00002{letter-spacing:0.819840px;}
.ls3c5_c00002{letter-spacing:0.820440px;}
.ls8c_c00002{letter-spacing:0.821570px;}
.ls5b7_c00002{letter-spacing:0.823054px;}
.ls1d5_c00002{letter-spacing:0.825840px;}
.ls2ef_c00002{letter-spacing:0.826560px;}
.ls701_c00002{letter-spacing:0.830040px;}
.ls7f2_c00002{letter-spacing:0.832464px;}
.ls3d8_c00002{letter-spacing:0.833640px;}
.ls1d3_c00002{letter-spacing:0.834240px;}
.ls21c_c00002{letter-spacing:0.837240px;}
.ls7ef_c00002{letter-spacing:0.838368px;}
.ls5d8_c00002{letter-spacing:0.842400px;}
.ls442_c00002{letter-spacing:0.843840px;}
.ls591_c00002{letter-spacing:0.845640px;}
.ls92_c00002{letter-spacing:0.847440px;}
.ls62_c00002{letter-spacing:0.849840px;}
.ls889_c00002{letter-spacing:0.851999px;}
.ls7e9_c00002{letter-spacing:0.856080px;}
.ls669_c00002{letter-spacing:0.861984px;}
.ls31b_c00002{letter-spacing:0.864000px;}
.ls14e_c00002{letter-spacing:0.868326px;}
.ls886_c00002{letter-spacing:0.873792px;}
.ls398_c00002{letter-spacing:0.879696px;}
.ls15f_c00002{letter-spacing:0.888364px;}
.ls7b4_c00002{letter-spacing:0.889440px;}
.ls426_c00002{letter-spacing:0.897408px;}
.ls662_c00002{letter-spacing:0.905310px;}
.ls87a_c00002{letter-spacing:0.909216px;}
.ls8ff_c00002{letter-spacing:0.921024px;}
.ls7de_c00002{letter-spacing:0.932832px;}
.ls6dd_c00002{letter-spacing:0.936000px;}
.ls54_c00002{letter-spacing:0.944640px;}
.ls8da_c00002{letter-spacing:0.950544px;}
.ls4b1_c00002{letter-spacing:0.960000px;}
.ls35_c00002{letter-spacing:0.962352px;}
.ls81b_c00002{letter-spacing:0.968256px;}
.ls138_c00002{letter-spacing:0.973713px;}
.ls6cb_c00002{letter-spacing:0.980064px;}
.ls88a_c00002{letter-spacing:0.985968px;}
.ls70a_c00002{letter-spacing:0.991872px;}
.ls89_c00002{letter-spacing:0.991970px;}
.ls380_c00002{letter-spacing:1.003680px;}
.ls813_c00002{letter-spacing:1.004141px;}
.ls2de_c00002{letter-spacing:1.015488px;}
.ls716_c00002{letter-spacing:1.045008px;}
.ls10b_c00002{letter-spacing:1.056816px;}
.ls56b_c00002{letter-spacing:1.062720px;}
.ls580_c00002{letter-spacing:1.065600px;}
.ls84a_c00002{letter-spacing:1.068624px;}
.ls9e_c00002{letter-spacing:1.080432px;}
.ls212_c00002{letter-spacing:1.086336px;}
.ls572_c00002{letter-spacing:1.087200px;}
.ls8ef_c00002{letter-spacing:1.092240px;}
.ls6ed_c00002{letter-spacing:1.119770px;}
.ls6d_c00002{letter-spacing:1.127664px;}
.ls8fd_c00002{letter-spacing:1.133568px;}
.ls83d_c00002{letter-spacing:1.139472px;}
.ls544_c00002{letter-spacing:1.155987px;}
.ls8cb_c00002{letter-spacing:1.180800px;}
.ls88b_c00002{letter-spacing:1.198512px;}
.ls8d0_c00002{letter-spacing:1.210320px;}
.ls877_c00002{letter-spacing:1.233936px;}
.ls196_c00002{letter-spacing:1.239840px;}
.ls3de_c00002{letter-spacing:1.257552px;}
.ls56e_c00002{letter-spacing:1.267200px;}
.ls94d_c00002{letter-spacing:1.269360px;}
.ls56d_c00002{letter-spacing:1.274400px;}
.ls860_c00002{letter-spacing:1.281168px;}
.ls4bc_c00002{letter-spacing:1.288800px;}
.ls803_c00002{letter-spacing:1.296255px;}
.ls5a4_c00002{letter-spacing:1.298880px;}
.ls718_c00002{letter-spacing:1.304784px;}
.ls8ac_c00002{letter-spacing:1.308426px;}
.ls11a_c00002{letter-spacing:1.316592px;}
.ls8a3_c00002{letter-spacing:1.328400px;}
.ls2cf_c00002{letter-spacing:1.346112px;}
.ls56c_c00002{letter-spacing:1.353600px;}
.ls315_c00002{letter-spacing:1.357920px;}
.ls579_c00002{letter-spacing:1.360800px;}
.ls817_c00002{letter-spacing:1.387440px;}
.ls5ef_c00002{letter-spacing:1.404000px;}
.ls372_c00002{letter-spacing:1.411056px;}
.ls4cf_c00002{letter-spacing:1.416960px;}
.ls490_c00002{letter-spacing:1.422864px;}
.ls7d8_c00002{letter-spacing:1.424055px;}
.ls882_c00002{letter-spacing:1.428768px;}
.ls4f2_c00002{letter-spacing:1.440000px;}
.ls6ca_c00002{letter-spacing:1.440576px;}
.ls4f4_c00002{letter-spacing:1.447200px;}
.ls37a_c00002{letter-spacing:1.452384px;}
.ls90b_c00002{letter-spacing:1.460569px;}
.ls8f6_c00002{letter-spacing:1.464192px;}
.ls377_c00002{letter-spacing:1.476000px;}
.ls102_c00002{letter-spacing:1.487808px;}
.ls211_c00002{letter-spacing:1.493712px;}
.ls120_c00002{letter-spacing:1.505520px;}
.ls5be_c00002{letter-spacing:1.512000px;}
.ls5a3_c00002{letter-spacing:1.515340px;}
.lsfc_c00002{letter-spacing:1.517328px;}
.ls6fb_c00002{letter-spacing:1.526400px;}
.ls630_c00002{letter-spacing:1.535040px;}
.ls4d7_c00002{letter-spacing:1.540800px;}
.ls8eb_c00002{letter-spacing:1.540944px;}
.lsfd_c00002{letter-spacing:1.558656px;}
.ls4a5_c00002{letter-spacing:1.564560px;}
.ls143_c00002{letter-spacing:1.570112px;}
.ls6f3_c00002{letter-spacing:1.584000px;}
.ls360_c00002{letter-spacing:1.594080px;}
.ls6d4_c00002{letter-spacing:1.623600px;}
.ls6fa_c00002{letter-spacing:1.627200px;}
.ls1f4_c00002{letter-spacing:1.635408px;}
.lsc0_c00002{letter-spacing:1.653120px;}
.ls68d_c00002{letter-spacing:1.688544px;}
.ls373_c00002{letter-spacing:1.694448px;}
.ls14a_c00002{letter-spacing:1.706966px;}
.ls847_c00002{letter-spacing:1.710083px;}
.ls896_c00002{letter-spacing:1.712160px;}
.ls695_c00002{letter-spacing:1.718064px;}
.ls820_c00002{letter-spacing:1.729872px;}
.ls345_c00002{letter-spacing:1.747584px;}
.ls48e_c00002{letter-spacing:1.756800px;}
.ls5d4_c00002{letter-spacing:1.765296px;}
.ls1cb_c00002{letter-spacing:1.777104px;}
.ls3ed_c00002{letter-spacing:1.788912px;}
.ls356_c00002{letter-spacing:1.800000px;}
.ls441_c00002{letter-spacing:1.806624px;}
.ls440_c00002{letter-spacing:1.812528px;}
.ls3dd_c00002{letter-spacing:1.830240px;}
.ls8c6_c00002{letter-spacing:1.847952px;}
.ls3e0_c00002{letter-spacing:1.853856px;}
.ls634_c00002{letter-spacing:1.871568px;}
.ls824_c00002{letter-spacing:1.877472px;}
.ls2b2_c00002{letter-spacing:1.883376px;}
.ls3a5_c00002{letter-spacing:1.889280px;}
.ls8f5_c00002{letter-spacing:1.892654px;}
.ls8dd_c00002{letter-spacing:1.910911px;}
.ls75_c00002{letter-spacing:1.935254px;}
.ls66a_c00002{letter-spacing:1.944000px;}
.ls831_c00002{letter-spacing:1.948320px;}
.ls8f4_c00002{letter-spacing:1.953511px;}
.ls141_c00002{letter-spacing:1.959597px;}
.ls328_c00002{letter-spacing:1.960128px;}
.ls6cf_c00002{letter-spacing:1.995552px;}
.ls6ce_c00002{letter-spacing:2.007360px;}
.ls13e_c00002{letter-spacing:2.038711px;}
.ls167_c00002{letter-spacing:2.060496px;}
.ls313_c00002{letter-spacing:2.066400px;}
.ls6c9_c00002{letter-spacing:2.072304px;}
.ls390_c00002{letter-spacing:2.084112px;}
.ls587_c00002{letter-spacing:2.090016px;}
.ls7f7_c00002{letter-spacing:2.095920px;}
.ls57b_c00002{letter-spacing:2.102400px;}
.ls87_c00002{letter-spacing:2.107728px;}
.ls818_c00002{letter-spacing:2.119536px;}
.ls4e1_c00002{letter-spacing:2.124000px;}
.ls83_c00002{letter-spacing:2.125440px;}
.ls3e2_c00002{letter-spacing:2.136082px;}
.ls4b8_c00002{letter-spacing:2.138400px;}
.ls2dc_c00002{letter-spacing:2.154960px;}
.ls712_c00002{letter-spacing:2.160000px;}
.ls41a_c00002{letter-spacing:2.166768px;}
.ls86e_c00002{letter-spacing:2.172672px;}
.ls2aa_c00002{letter-spacing:2.178576px;}
.ls2a3_c00002{letter-spacing:2.184480px;}
.ls41b_c00002{letter-spacing:2.190384px;}
.ls6b_c00002{letter-spacing:2.196288px;}
.ls848_c00002{letter-spacing:2.202192px;}
.ls703_c00002{letter-spacing:2.210400px;}
.ls734_c00002{letter-spacing:2.217600px;}
.ls708_c00002{letter-spacing:2.232000px;}
.ls6d1_c00002{letter-spacing:2.243520px;}
.ls97_c00002{letter-spacing:2.253600px;}
.ls8b1_c00002{letter-spacing:2.257796px;}
.ls6d2_c00002{letter-spacing:2.261232px;}
.ls880_c00002{letter-spacing:2.267136px;}
.ls901_c00002{letter-spacing:2.278944px;}
.ls7f1_c00002{letter-spacing:2.294310px;}
.ls721_c00002{letter-spacing:2.296800px;}
.ls388_c00002{letter-spacing:2.302560px;}
.ls2c9_c00002{letter-spacing:2.308464px;}
.ls4cb_c00002{letter-spacing:2.318400px;}
.ls90c_c00002{letter-spacing:2.320272px;}
.ls3a8_c00002{letter-spacing:2.332080px;}
.ls295_c00002{letter-spacing:2.343888px;}
.ls13f_c00002{letter-spacing:2.355167px;}
.ls20b_c00002{letter-spacing:2.361600px;}
.ls6de_c00002{letter-spacing:2.376000px;}
.ls80_c00002{letter-spacing:2.385216px;}
.ls8aa_c00002{letter-spacing:2.397767px;}
.lscd_c00002{letter-spacing:2.408832px;}
.ls934_c00002{letter-spacing:2.414736px;}
.ls6da_c00002{letter-spacing:2.420640px;}
.ls4df_c00002{letter-spacing:2.426400px;}
.ls90d_c00002{letter-spacing:2.432448px;}
.ls379_c00002{letter-spacing:2.448000px;}
.ls902_c00002{letter-spacing:2.458624px;}
.ls11e_c00002{letter-spacing:2.467872px;}
.ls281_c00002{letter-spacing:2.479680px;}
.ls20e_c00002{letter-spacing:2.485584px;}
.ls667_c00002{letter-spacing:2.491488px;}
.ls722_c00002{letter-spacing:2.498400px;}
.ls3b5_c00002{letter-spacing:2.509200px;}
.ls900_c00002{letter-spacing:2.513396px;}
.ls5d5_c00002{letter-spacing:2.515104px;}
.ls34d_c00002{letter-spacing:2.520000px;}
.ls5d1_c00002{letter-spacing:2.538720px;}
.ls19c_c00002{letter-spacing:2.544624px;}
.ls117_c00002{letter-spacing:2.556432px;}
.ls86f_c00002{letter-spacing:2.568167px;}
.ls586_c00002{letter-spacing:2.570400px;}
.ls6bd_c00002{letter-spacing:2.574144px;}
.ls821_c00002{letter-spacing:2.580048px;}
.ls3b2_c00002{letter-spacing:2.592000px;}
.ls8b5_c00002{letter-spacing:2.609568px;}
.ls85b_c00002{letter-spacing:2.633184px;}
.ls2bd_c00002{letter-spacing:2.644992px;}
.ls6cc_c00002{letter-spacing:2.656800px;}
.ls114_c00002{letter-spacing:2.715840px;}
.ls317_c00002{letter-spacing:2.727648px;}
.ls944_c00002{letter-spacing:2.739456px;}
.ls733_c00002{letter-spacing:2.743200px;}
.ls386_c00002{letter-spacing:2.745360px;}
.ls1e9_c00002{letter-spacing:2.751264px;}
.ls643_c00002{letter-spacing:2.757600px;}
.ls3ba_c00002{letter-spacing:2.763072px;}
.ls45d_c00002{letter-spacing:2.764800px;}
.ls1e8_c00002{letter-spacing:2.774880px;}
.lse2_c00002{letter-spacing:2.792592px;}
.ls142_c00002{letter-spacing:2.805509px;}
.ls8c3_c00002{letter-spacing:2.816208px;}
.ls6fd_c00002{letter-spacing:2.828016px;}
.ls92b_c00002{letter-spacing:2.845728px;}
.lsfb_c00002{letter-spacing:2.851632px;}
.lsfa_c00002{letter-spacing:2.857536px;}
.ls327_c00002{letter-spacing:2.863440px;}
.ls4cc_c00002{letter-spacing:2.872800px;}
.ls195_c00002{letter-spacing:2.881152px;}
.lsed_c00002{letter-spacing:2.892960px;}
.ls2e0_c00002{letter-spacing:2.898864px;}
.ls79_c00002{letter-spacing:2.902881px;}
.ls5d3_c00002{letter-spacing:2.910672px;}
.ls4aa_c00002{letter-spacing:2.940192px;}
.ls2f0_c00002{letter-spacing:2.946096px;}
.ls44_c00002{letter-spacing:2.952000px;}
.ls85f_c00002{letter-spacing:2.963808px;}
.ls2ba_c00002{letter-spacing:2.969712px;}
.ls4a_c00002{letter-spacing:2.975616px;}
.ls830_c00002{letter-spacing:2.987424px;}
.ls61f_c00002{letter-spacing:2.988000px;}
.ls948_c00002{letter-spacing:2.999232px;}
.lsc2_c00002{letter-spacing:3.002400px;}
.ls924_c00002{letter-spacing:3.005136px;}
.ls5e5_c00002{letter-spacing:3.020587px;}
.ls917_c00002{letter-spacing:3.022848px;}
.ls6df_c00002{letter-spacing:3.024000px;}
.ls385_c00002{letter-spacing:3.028752px;}
.ls48a_c00002{letter-spacing:3.038400px;}
.ls842_c00002{letter-spacing:3.046464px;}
.ls826_c00002{letter-spacing:3.058272px;}
.ls825_c00002{letter-spacing:3.064176px;}
.ls3cf_c00002{letter-spacing:3.070080px;}
.ls3f6_c00002{letter-spacing:3.075984px;}
.ls3d2_c00002{letter-spacing:3.087792px;}
.ls665_c00002{letter-spacing:3.088800px;}
.ls70d_c00002{letter-spacing:3.096000px;}
.ls71a_c00002{letter-spacing:3.099600px;}
.ls719_c00002{letter-spacing:3.105504px;}
.ls910_c00002{letter-spacing:3.109795px;}
.ls664_c00002{letter-spacing:3.124800px;}
.ls64e_c00002{letter-spacing:3.127680px;}
.ls36d_c00002{letter-spacing:3.129120px;}
.ls931_c00002{letter-spacing:3.140928px;}
.ls930_c00002{letter-spacing:3.146832px;}
.ls527_c00002{letter-spacing:3.156000px;}
.ls529_c00002{letter-spacing:3.156600px;}
.ls243_c00002{letter-spacing:3.168000px;}
.ls5c3_c00002{letter-spacing:3.185400px;}
.lsf4_c00002{letter-spacing:3.194064px;}
.ls4f9_c00002{letter-spacing:3.196800px;}
.ls56a_c00002{letter-spacing:3.201840px;}
.ls469_c00002{letter-spacing:3.204000px;}
.ls2e3_c00002{letter-spacing:3.217680px;}
.ls5d7_c00002{letter-spacing:3.240000px;}
.ls2fd_c00002{letter-spacing:3.247200px;}
.ls878_c00002{letter-spacing:3.264912px;}
.ls503_c00002{letter-spacing:3.269760px;}
.ls511_c00002{letter-spacing:3.273696px;}
.ls937_c00002{letter-spacing:3.276720px;}
.ls7d7_c00002{letter-spacing:3.306240px;}
.ls501_c00002{letter-spacing:3.308688px;}
.ls646_c00002{letter-spacing:3.312000px;}
.ls194_c00002{letter-spacing:3.312144px;}
.ls63c_c00002{letter-spacing:3.319200px;}
.ls505_c00002{letter-spacing:3.324240px;}
.ls8c5_c00002{letter-spacing:3.329856px;}
.ls2d7_c00002{letter-spacing:3.335760px;}
.ls4ff_c00002{letter-spacing:3.335904px;}
.ls493_c00002{letter-spacing:3.340800px;}
.ls502_c00002{letter-spacing:3.343680px;}
.ls331_c00002{letter-spacing:3.347568px;}
.ls199_c00002{letter-spacing:3.359376px;}
.ls33c_c00002{letter-spacing:3.384000px;}
.ls45f_c00002{letter-spacing:3.406608px;}
.ls72a_c00002{letter-spacing:3.412800px;}
.ls482_c00002{letter-spacing:3.427200px;}
.ls5ab_c00002{letter-spacing:3.432337px;}
.ls2ce_c00002{letter-spacing:3.436128px;}
.ls6e6_c00002{letter-spacing:3.441600px;}
.ls6e1_c00002{letter-spacing:3.456000px;}
.ls363_c00002{letter-spacing:3.471552px;}
.ls361_c00002{letter-spacing:3.483360px;}
.ls13d_c00002{letter-spacing:3.487108px;}
.ls916_c00002{letter-spacing:3.489264px;}
.ls13c_c00002{letter-spacing:3.493194px;}
.ls86d_c00002{letter-spacing:3.506976px;}
.ls70e_c00002{letter-spacing:3.528000px;}
.ls485_c00002{letter-spacing:3.530592px;}
.ls25e_c00002{letter-spacing:3.536496px;}
.ls1ee_c00002{letter-spacing:3.542400px;}
.ls1ed_c00002{letter-spacing:3.548304px;}
.ls82b_c00002{letter-spacing:3.560112px;}
.ls55f_c00002{letter-spacing:3.564000px;}
.ls649_c00002{letter-spacing:3.577824px;}
.ls100_c00002{letter-spacing:3.592800px;}
.ls1bd_c00002{letter-spacing:3.614908px;}
.ls65c_c00002{letter-spacing:3.618240px;}
.ls65a_c00002{letter-spacing:3.618840px;}
.ls851_c00002{letter-spacing:3.627080px;}
.ls175_c00002{letter-spacing:3.648672px;}
.ls466_c00002{letter-spacing:3.650400px;}
.ls853_c00002{letter-spacing:3.651422px;}
.ls173_c00002{letter-spacing:3.654576px;}
.ls157_c00002{letter-spacing:3.657508px;}
.ls4d5_c00002{letter-spacing:3.660480px;}
.ls846_c00002{letter-spacing:3.663594px;}
.ls3fb_c00002{letter-spacing:3.694022px;}
.ls3d0_c00002{letter-spacing:3.719520px;}
.ls2ad_c00002{letter-spacing:3.737232px;}
.ls673_c00002{letter-spacing:3.743136px;}
.ls3c_c00002{letter-spacing:3.744934px;}
.ls674_c00002{letter-spacing:3.749040px;}
.ls884_c00002{letter-spacing:3.760848px;}
.ls3b_c00002{letter-spacing:3.770762px;}
.ls8b3_c00002{letter-spacing:3.772656px;}
.ls5df_c00002{letter-spacing:3.778560px;}
.ls8a4_c00002{letter-spacing:3.784464px;}
.ls84c_c00002{letter-spacing:3.808080px;}
.ls6f5_c00002{letter-spacing:3.816000px;}
.ls6f6_c00002{letter-spacing:3.837600px;}
.ls2e8_c00002{letter-spacing:3.849408px;}
.ls675_c00002{letter-spacing:3.858336px;}
.ls542_c00002{letter-spacing:3.874515px;}
.ls929_c00002{letter-spacing:3.876593px;}
.ls2e4_c00002{letter-spacing:3.878928px;}
.lscc_c00002{letter-spacing:3.908448px;}
.ls69a_c00002{letter-spacing:3.909600px;}
.ls67c_c00002{letter-spacing:3.926160px;}
.ls7e7_c00002{letter-spacing:3.931365px;}
.ls1e0_c00002{letter-spacing:3.937968px;}
.ls18a_c00002{letter-spacing:3.943872px;}
.ls5b_c00002{letter-spacing:3.955680px;}
.ls483_c00002{letter-spacing:3.967200px;}
.ls654_c00002{letter-spacing:3.973392px;}
.ls694_c00002{letter-spacing:3.979296px;}
.ls871_c00002{letter-spacing:3.985200px;}
.ls8e8_c00002{letter-spacing:3.991104px;}
.ls8f2_c00002{letter-spacing:4.032432px;}
.ls7ee_c00002{letter-spacing:4.038336px;}
.ls4b5_c00002{letter-spacing:4.050144px;}
.ls2c7_c00002{letter-spacing:4.056048px;}
.ls4b4_c00002{letter-spacing:4.061952px;}
.ls433_c00002{letter-spacing:4.068000px;}
.ls89f_c00002{letter-spacing:4.085568px;}
.ls4fb_c00002{letter-spacing:4.091472px;}
.ls2be_c00002{letter-spacing:4.103280px;}
.ls52a_c00002{letter-spacing:4.105728px;}
.ls68a_c00002{letter-spacing:4.109184px;}
.ls943_c00002{letter-spacing:4.115088px;}
.ls512_c00002{letter-spacing:4.115232px;}
.ls525_c00002{letter-spacing:4.116840px;}
.ls526_c00002{letter-spacing:4.117440px;}
.ls2b5_c00002{letter-spacing:4.132800px;}
.ls4fc_c00002{letter-spacing:4.142160px;}
.ls3a6_c00002{letter-spacing:4.142592px;}
.ls504_c00002{letter-spacing:4.142640px;}
.ls500_c00002{letter-spacing:4.143240px;}
.ls4e4_c00002{letter-spacing:4.143744px;}
.ls2b8_c00002{letter-spacing:4.150512px;}
.ls54f_c00002{letter-spacing:4.167504px;}
.ls50e_c00002{letter-spacing:4.169520px;}
.ls506_c00002{letter-spacing:4.170120px;}
.ls531_c00002{letter-spacing:4.172256px;}
.ls5ca_c00002{letter-spacing:4.176000px;}
.ls60_c00002{letter-spacing:4.180032px;}
.ls5cc_c00002{letter-spacing:4.190400px;}
.ls5c5_c00002{letter-spacing:4.191840px;}
.ls520_c00002{letter-spacing:4.196016px;}
.ls326_c00002{letter-spacing:4.203648px;}
.ls3d4_c00002{letter-spacing:4.221360px;}
.ls510_c00002{letter-spacing:4.222800px;}
.ls515_c00002{letter-spacing:4.224528px;}
.ls538_c00002{letter-spacing:4.238784px;}
.ls274_c00002{letter-spacing:4.240800px;}
.ls347_c00002{letter-spacing:4.244976px;}
.ls272_c00002{letter-spacing:4.248000px;}
.ls514_c00002{letter-spacing:4.248288px;}
.ls52b_c00002{letter-spacing:4.249680px;}
.ls52d_c00002{letter-spacing:4.250280px;}
.ls4fe_c00002{letter-spacing:4.250760px;}
.ls495_c00002{letter-spacing:4.250880px;}
.ls89e_c00002{letter-spacing:4.253907px;}
.ls2df_c00002{letter-spacing:4.256784px;}
.lse1_c00002{letter-spacing:4.268592px;}
.ls4e5_c00002{letter-spacing:4.276800px;}
.ls4ce_c00002{letter-spacing:4.284000px;}
.ls4fd_c00002{letter-spacing:4.303080px;}
.ls914_c00002{letter-spacing:4.304016px;}
.ls53f_c00002{letter-spacing:4.305312px;}
.ls935_c00002{letter-spacing:4.315824px;}
.ls702_c00002{letter-spacing:4.320000px;}
.ls52e_c00002{letter-spacing:4.329072px;}
.ls58b_c00002{letter-spacing:4.329480px;}
.ls5a7_c00002{letter-spacing:4.333824px;}
.ls707_c00002{letter-spacing:4.345344px;}
.ls52c_c00002{letter-spacing:4.356840px;}
.ls3db_c00002{letter-spacing:4.357152px;}
.ls534_c00002{letter-spacing:4.357440px;}
.ls533_c00002{letter-spacing:4.357584px;}
.ls706_c00002{letter-spacing:4.368960px;}
.ls54e_c00002{letter-spacing:4.371840px;}
.ls6a3_c00002{letter-spacing:4.374864px;}
.ls280_c00002{letter-spacing:4.380768px;}
.ls4e3_c00002{letter-spacing:4.381344px;}
.ls54b_c00002{letter-spacing:4.382160px;}
.ls77_c00002{letter-spacing:4.386672px;}
.ls74_c00002{letter-spacing:4.392576px;}
.ls339_c00002{letter-spacing:4.398480px;}
.ls8db_c00002{letter-spacing:4.412135px;}
.ls24b_c00002{letter-spacing:4.428000px;}
.ls250_c00002{letter-spacing:4.439808px;}
.ls64d_c00002{letter-spacing:4.445712px;}
.ls20f_c00002{letter-spacing:4.457520px;}
.ls524_c00002{letter-spacing:4.462128px;}
.ls346_c00002{letter-spacing:4.463424px;}
.ls7a7_c00002{letter-spacing:4.475520px;}
.ls598_c00002{letter-spacing:4.479078px;}
.ls343_c00002{letter-spacing:4.487040px;}
.ls2e5_c00002{letter-spacing:4.492944px;}
.ls827_c00002{letter-spacing:4.497335px;}
.ls2e1_c00002{letter-spacing:4.516560px;}
.ls76_c00002{letter-spacing:4.521678px;}
.ls2ff_c00002{letter-spacing:4.522464px;}
.ls264_c00002{letter-spacing:4.528368px;}
.ls8e7_c00002{letter-spacing:4.534272px;}
.ls66b_c00002{letter-spacing:4.536000px;}
.ls2d8_c00002{letter-spacing:4.546080px;}
.ls585_c00002{letter-spacing:4.564800px;}
.ls2f2_c00002{letter-spacing:4.569696px;}
.ls6a_c00002{letter-spacing:4.575600px;}
.ls651_c00002{letter-spacing:4.608000px;}
.ls172_c00002{letter-spacing:4.615200px;}
.ls1c9_c00002{letter-spacing:4.616928px;}
.ls1ff_c00002{letter-spacing:4.622832px;}
.ls8d5_c00002{letter-spacing:4.634640px;}
.ls8bc_c00002{letter-spacing:4.640544px;}
.ls4ba_c00002{letter-spacing:4.651200px;}
.ls98_c00002{letter-spacing:4.658256px;}
.ls468_c00002{letter-spacing:4.658400px;}
.ls1eb_c00002{letter-spacing:4.664160px;}
.ls7b2_c00002{letter-spacing:4.667328px;}
.ls64c_c00002{letter-spacing:4.670064px;}
.ls7bf_c00002{letter-spacing:4.672656px;}
.ls33b_c00002{letter-spacing:4.675968px;}
.ls20_c00002{letter-spacing:4.683312px;}
.ls8a9_c00002{letter-spacing:4.685992px;}
.ls77d_c00002{letter-spacing:4.688640px;}
.ls79c_c00002{letter-spacing:4.699296px;}
.ls7c9_c00002{letter-spacing:4.704624px;}
.ls806_c00002{letter-spacing:4.705488px;}
.ls78_c00002{letter-spacing:4.711392px;}
.ls4f6_c00002{letter-spacing:4.717296px;}
.ls770_c00002{letter-spacing:4.720608px;}
.ls42e_c00002{letter-spacing:4.723200px;}
.ls430_c00002{letter-spacing:4.729104px;}
.ls7a1_c00002{letter-spacing:4.731264px;}
.ls793_c00002{letter-spacing:4.736592px;}
.ls750_c00002{letter-spacing:4.741920px;}
.ls6ac_c00002{letter-spacing:4.752000px;}
.ls79e_c00002{letter-spacing:4.752576px;}
.ls796_c00002{letter-spacing:4.757904px;}
.ls18b_c00002{letter-spacing:4.758624px;}
.ls779_c00002{letter-spacing:4.763232px;}
.ls7ce_c00002{letter-spacing:4.768560px;}
.ls79b_c00002{letter-spacing:4.773888px;}
.ls3dc_c00002{letter-spacing:4.776336px;}
.ls4c6_c00002{letter-spacing:4.782240px;}
.ls7b6_c00002{letter-spacing:4.784544px;}
.ls6b2_c00002{letter-spacing:4.788000px;}
.ls781_c00002{letter-spacing:4.795200px;}
.ls25c_c00002{letter-spacing:4.795535px;}
.ls778_c00002{letter-spacing:4.800528px;}
.ls38b_c00002{letter-spacing:4.801620px;}
.ls786_c00002{letter-spacing:4.805856px;}
.ls61_c00002{letter-spacing:4.829472px;}
.ls316_c00002{letter-spacing:4.835376px;}
.ls79d_c00002{letter-spacing:4.837824px;}
.ls314_c00002{letter-spacing:4.841280px;}
.ls771_c00002{letter-spacing:4.843152px;}
.ls77c_c00002{letter-spacing:4.848480px;}
.ls32a_c00002{letter-spacing:4.852800px;}
.ls7b5_c00002{letter-spacing:4.864464px;}
.ls3e_c00002{letter-spacing:4.880448px;}
.ls80f_c00002{letter-spacing:4.882608px;}
.ls19_c00002{letter-spacing:4.885509px;}
.ls5cb_c00002{letter-spacing:4.896000px;}
.ls780_c00002{letter-spacing:4.901760px;}
.ls78f_c00002{letter-spacing:4.915008px;}
.ls782_c00002{letter-spacing:4.923072px;}
.ls2dd_c00002{letter-spacing:4.941648px;}
.ls724_c00002{letter-spacing:4.942080px;}
.ls7a0_c00002{letter-spacing:4.942779px;}
.lse9_c00002{letter-spacing:4.953456px;}
.ls799_c00002{letter-spacing:4.955040px;}
.ls10d_c00002{letter-spacing:4.959360px;}
.ls237_c00002{letter-spacing:4.963920px;}
.ls217_c00002{letter-spacing:4.964520px;}
.ls4a9_c00002{letter-spacing:4.964544px;}
.ls42a_c00002{letter-spacing:4.968600px;}
.ls905_c00002{letter-spacing:4.982976px;}
.ls1a_c00002{letter-spacing:4.990401px;}
.ls400_c00002{letter-spacing:4.994784px;}
.ls168_c00002{letter-spacing:4.996800px;}
.ls791_c00002{letter-spacing:5.002992px;}
.ls798_c00002{letter-spacing:5.008320px;}
.ls23d_c00002{letter-spacing:5.009472px;}
.ls35d_c00002{letter-spacing:5.012496px;}
.ls8_c00002{letter-spacing:5.018400px;}
.ls6c1_c00002{letter-spacing:5.040000px;}
.ls792_c00002{letter-spacing:5.040288px;}
.ls79a_c00002{letter-spacing:5.061600px;}
.ls80a_c00002{letter-spacing:5.065632px;}
.ls26a_c00002{letter-spacing:5.071536px;}
.ls942_c00002{letter-spacing:5.077440px;}
.ls790_c00002{letter-spacing:5.077584px;}
.ls7a3_c00002{letter-spacing:5.082912px;}
.ls391_c00002{letter-spacing:5.101056px;}
.ls28d_c00002{letter-spacing:5.116692px;}
.ls8be_c00002{letter-spacing:5.124163px;}
.ls5d6_c00002{letter-spacing:5.130960px;}
.ls1ec_c00002{letter-spacing:5.136480px;}
.ls1f0_c00002{letter-spacing:5.142384px;}
.ls4d6_c00002{letter-spacing:5.149872px;}
.ls805_c00002{letter-spacing:5.160096px;}
.ls21e_c00002{letter-spacing:5.163646px;}
.ls16a_c00002{letter-spacing:5.166000px;}
.ls714_c00002{letter-spacing:5.166720px;}
.ls661_c00002{letter-spacing:5.176800px;}
.ls2e6_c00002{letter-spacing:5.177808px;}
.ls659_c00002{letter-spacing:5.184000px;}
.ls4bd_c00002{letter-spacing:5.194800px;}
.ls1c7_c00002{letter-spacing:5.195520px;}
.ls7a2_c00002{letter-spacing:5.200128px;}
.ls4c0_c00002{letter-spacing:5.200416px;}
.ls93b_c00002{letter-spacing:5.201424px;}
.ls1ab_c00002{letter-spacing:5.211000px;}
.ls1ca_c00002{letter-spacing:5.219136px;}
.ls119_c00002{letter-spacing:5.225040px;}
.ls118_c00002{letter-spacing:5.230944px;}
.lse7_c00002{letter-spacing:5.242752px;}
.lsd7_c00002{letter-spacing:5.245344px;}
.ls4ee_c00002{letter-spacing:5.245680px;}
.ls4ec_c00002{letter-spacing:5.246280px;}
.ls59_c00002{letter-spacing:5.248656px;}
.ls55_c00002{letter-spacing:5.254560px;}
.ls24d_c00002{letter-spacing:5.266368px;}
.ls1b0_c00002{letter-spacing:5.271480px;}
.ls35e_c00002{letter-spacing:5.272272px;}
.ls1b4_c00002{letter-spacing:5.275008px;}
.ls1af_c00002{letter-spacing:5.279880px;}
.ls258_c00002{letter-spacing:5.284080px;}
.ls1e7_c00002{letter-spacing:5.287560px;}
.ls140_c00002{letter-spacing:5.288477px;}
.ls1e6_c00002{letter-spacing:5.289984px;}
.ls5ff_c00002{letter-spacing:5.290272px;}
.ls45e_c00002{letter-spacing:5.295888px;}
.ls4db_c00002{letter-spacing:5.298120px;}
.ls593_c00002{letter-spacing:5.298480px;}
.ls49b_c00002{letter-spacing:5.299080px;}
.ls592_c00002{letter-spacing:5.299680px;}
.ls1aa_c00002{letter-spacing:5.300400px;}
.ls29_c00002{letter-spacing:5.301792px;}
.lsf5_c00002{letter-spacing:5.307696px;}
.ls129_c00002{letter-spacing:5.308367px;}
.ls9_c00002{letter-spacing:5.313600px;}
.ls6ea_c00002{letter-spacing:5.318352px;}
.ls2a0_c00002{letter-spacing:5.319504px;}
.ls5f0_c00002{letter-spacing:5.321280px;}
.ls12f_c00002{letter-spacing:5.325408px;}
.ls1b6_c00002{letter-spacing:5.330640px;}
.ls5fb_c00002{letter-spacing:5.331312px;}
.ls57_c00002{letter-spacing:5.335200px;}
.ls311_c00002{letter-spacing:5.337216px;}
.ls537_c00002{letter-spacing:5.340816px;}
.ls1c5_c00002{letter-spacing:5.348640px;}
.ls2d6_c00002{letter-spacing:5.351400px;}
.ls4ea_c00002{letter-spacing:5.352840px;}
.ls4ef_c00002{letter-spacing:5.353440px;}
.ls27_c00002{letter-spacing:5.354928px;}
.ls1c6_c00002{letter-spacing:5.360832px;}
.ls1b5_c00002{letter-spacing:5.360928px;}
.ls0_c00002{letter-spacing:5.372640px;}
.ls3a0_c00002{letter-spacing:5.384448px;}
.ls429_c00002{letter-spacing:5.385744px;}
.ls2a8_c00002{letter-spacing:5.390352px;}
.ls1b1_c00002{letter-spacing:5.396256px;}
.ls941_c00002{letter-spacing:5.398019px;}
.ls44f_c00002{letter-spacing:5.400000px;}
.ls189_c00002{letter-spacing:5.402160px;}
.ls492_c00002{letter-spacing:5.404440px;}
.ls49a_c00002{letter-spacing:5.405040px;}
.ls1a4_c00002{letter-spacing:5.406777px;}
.ls614_c00002{letter-spacing:5.410191px;}
.ls58e_c00002{letter-spacing:5.415600px;}
.ls58c_c00002{letter-spacing:5.416200px;}
.ls596_c00002{letter-spacing:5.416800px;}
.ls1a8_c00002{letter-spacing:5.419920px;}
.ls36_c00002{letter-spacing:5.430672px;}
.ls2_c00002{letter-spacing:5.431680px;}
.ls709_c00002{letter-spacing:5.438520px;}
.ls1ae_c00002{letter-spacing:5.442120px;}
.ls94a_c00002{letter-spacing:5.443488px;}
.ls1b8_c00002{letter-spacing:5.447280px;}
.ls235_c00002{letter-spacing:5.447520px;}
.ls1a9_c00002{letter-spacing:5.450664px;}
.ls17d_c00002{letter-spacing:5.453088px;}
.ls5e6_c00002{letter-spacing:5.455296px;}
.ls713_c00002{letter-spacing:5.455920px;}
.ls564_c00002{letter-spacing:5.458800px;}
.ls617_c00002{letter-spacing:5.458876px;}
.ls566_c00002{letter-spacing:5.459400px;}
.ls25_c00002{letter-spacing:5.461200px;}
.ls61e_c00002{letter-spacing:5.462167px;}
.ls612_c00002{letter-spacing:5.464962px;}
.lseb_c00002{letter-spacing:5.477134px;}
.ls2b6_c00002{letter-spacing:5.484816px;}
.ls1e4_c00002{letter-spacing:5.486520px;}
.ls1ac_c00002{letter-spacing:5.486880px;}
.ls4_c00002{letter-spacing:5.490720px;}
.ls484_c00002{letter-spacing:5.496624px;}
.lsb5_c00002{letter-spacing:5.499398px;}
.ls5fa_c00002{letter-spacing:5.502528px;}
.ls1a3_c00002{letter-spacing:5.505187px;}
.ls720_c00002{letter-spacing:5.508000px;}
.ls4b2_c00002{letter-spacing:5.508432px;}
.ls499_c00002{letter-spacing:5.512560px;}
.ls4e8_c00002{letter-spacing:5.513160px;}
.ls5ae_c00002{letter-spacing:5.513760px;}
.ls4dd_c00002{letter-spacing:5.514120px;}
.lsa_c00002{letter-spacing:5.514336px;}
.ls622_c00002{letter-spacing:5.519733px;}
.ls575_c00002{letter-spacing:5.520240px;}
.ls48_c00002{letter-spacing:5.526144px;}
.ls4eb_c00002{letter-spacing:5.528280px;}
.ls5b4_c00002{letter-spacing:5.528880px;}
.ls58d_c00002{letter-spacing:5.529480px;}
.ls1b3_c00002{letter-spacing:5.530080px;}
.ls282_c00002{letter-spacing:5.532048px;}
.ls7e_c00002{letter-spacing:5.537952px;}
.ls403_c00002{letter-spacing:5.543856px;}
.ls401_c00002{letter-spacing:5.549760px;}
.ls402_c00002{letter-spacing:5.561568px;}
.ls604_c00002{letter-spacing:5.565960px;}
.ls4f_c00002{letter-spacing:5.567472px;}
.ls620_c00002{letter-spacing:5.568419px;}
.ls1d9_c00002{letter-spacing:5.571072px;}
.ls404_c00002{letter-spacing:5.585184px;}
.lsa4_c00002{letter-spacing:5.596992px;}
.ls128_c00002{letter-spacing:5.597809px;}
.lsa3_c00002{letter-spacing:5.608800px;}
.ls5ee_c00002{letter-spacing:5.616000px;}
.ls22d_c00002{letter-spacing:5.618400px;}
.ls4dc_c00002{letter-spacing:5.619360px;}
.ls5fc_c00002{letter-spacing:5.620608px;}
.ls6b3_c00002{letter-spacing:5.623200px;}
.ls24f_c00002{letter-spacing:5.626512px;}
.ls60a_c00002{letter-spacing:5.629276px;}
.ls205_c00002{letter-spacing:5.650128px;}
.ls61d_c00002{letter-spacing:5.653619px;}
.ls863_c00002{letter-spacing:5.661936px;}
.ls362_c00002{letter-spacing:5.667840px;}
.ls565_c00002{letter-spacing:5.671920px;}
.ls4a4_c00002{letter-spacing:5.673744px;}
.ls60d_c00002{letter-spacing:5.684047px;}
.ls2bb_c00002{letter-spacing:5.691456px;}
.ls33e_c00002{letter-spacing:5.697360px;}
.ls5e_c00002{letter-spacing:5.702305px;}
.ls24c_c00002{letter-spacing:5.715072px;}
.ls89c_c00002{letter-spacing:5.720976px;}
.ls5a_c00002{letter-spacing:5.726880px;}
.ls613_c00002{letter-spacing:5.738819px;}
.ls2fe_c00002{letter-spacing:5.744592px;}
.ls865_c00002{letter-spacing:5.750496px;}
.ls1e3_c00002{letter-spacing:5.757504px;}
.ls48b_c00002{letter-spacing:5.760000px;}
.ls8ec_c00002{letter-spacing:5.762304px;}
.ls2e7_c00002{letter-spacing:5.768208px;}
.ls668_c00002{letter-spacing:5.778120px;}
.ls58a_c00002{letter-spacing:5.779080px;}
.ls5b3_c00002{letter-spacing:5.779680px;}
.ls174_c00002{letter-spacing:5.780016px;}
.ls3ee_c00002{letter-spacing:5.781419px;}
.ls1b9_c00002{letter-spacing:5.785920px;}
.ls862_c00002{letter-spacing:5.787504px;}
.ls7f6_c00002{letter-spacing:5.797728px;}
.ls312_c00002{letter-spacing:5.801160px;}
.ls7f3_c00002{letter-spacing:5.803632px;}
.ls154_c00002{letter-spacing:5.812560px;}
.ls1c1_c00002{letter-spacing:5.815440px;}
.ls424_c00002{letter-spacing:5.817600px;}
.ls7e1_c00002{letter-spacing:5.821344px;}
.ls7ed_c00002{letter-spacing:5.827248px;}
.ls47d_c00002{letter-spacing:5.832000px;}
.ls149_c00002{letter-spacing:5.832600px;}
.ls717_c00002{letter-spacing:5.833152px;}
.ls8f1_c00002{letter-spacing:5.844960px;}
.ls41f_c00002{letter-spacing:5.846400px;}
.ls611_c00002{letter-spacing:5.848361px;}
.ls91d_c00002{letter-spacing:5.862672px;}
.ls427_c00002{letter-spacing:5.874480px;}
.ls14b_c00002{letter-spacing:5.877360px;}
.ls7ea_c00002{letter-spacing:5.898096px;}
.ls618_c00002{letter-spacing:5.903133px;}
.ls5e9_c00002{letter-spacing:5.904000px;}
.ls21f_c00002{letter-spacing:5.911200px;}
.ls90e_c00002{letter-spacing:5.915808px;}
.ls228_c00002{letter-spacing:5.920800px;}
.ls38d_c00002{letter-spacing:5.933400px;}
.ls606_c00002{letter-spacing:5.938800px;}
.ls5b0_c00002{letter-spacing:5.939424px;}
.ls2d1_c00002{letter-spacing:5.940000px;}
.lsde_c00002{letter-spacing:5.941200px;}
.ls1c4_c00002{letter-spacing:5.944800px;}
.ls2ca_c00002{letter-spacing:5.945328px;}
.ls275_c00002{letter-spacing:5.946000px;}
.lsc9_c00002{letter-spacing:5.947200px;}
.ls137_c00002{letter-spacing:5.947800px;}
.ls3a4_c00002{letter-spacing:5.948400px;}
.ls1ba_c00002{letter-spacing:5.954400px;}
.ls891_c00002{letter-spacing:5.957136px;}
.ls3af_c00002{letter-spacing:5.957400px;}
.ls616_c00002{letter-spacing:5.957904px;}
.ls93_c00002{letter-spacing:5.958000px;}
.ls589_c00002{letter-spacing:5.958600px;}
.ls293_c00002{letter-spacing:5.959800px;}
.ls329_c00002{letter-spacing:5.960400px;}
.ls153_c00002{letter-spacing:5.961600px;}
.ls12c_c00002{letter-spacing:5.962800px;}
.ls40a_c00002{letter-spacing:5.963040px;}
.lsd3_c00002{letter-spacing:5.963400px;}
.ls133_c00002{letter-spacing:5.964000px;}
.ls19a_c00002{letter-spacing:5.966400px;}
.ls22a_c00002{letter-spacing:5.967600px;}
.ls34a_c00002{letter-spacing:5.968200px;}
.ls26e_c00002{letter-spacing:5.968800px;}
.ls9c_c00002{letter-spacing:5.969400px;}
.ls134_c00002{letter-spacing:5.970000px;}
.ls476_c00002{letter-spacing:5.971200px;}
.ls71_c00002{letter-spacing:5.971800px;}
.ls4a8_c00002{letter-spacing:5.972400px;}
.ls1a1_c00002{letter-spacing:5.973000px;}
.ls30b_c00002{letter-spacing:5.973600px;}
.ls219_c00002{letter-spacing:5.974200px;}
.ls218_c00002{letter-spacing:5.974800px;}
.ls1db_c00002{letter-spacing:5.974848px;}
.ls15_c00002{letter-spacing:5.975400px;}
.ls21_c00002{letter-spacing:5.976000px;}
.ls285_c00002{letter-spacing:5.977800px;}
.ls277_c00002{letter-spacing:5.978400px;}
.ls234_c00002{letter-spacing:5.979000px;}
.ls63_c00002{letter-spacing:5.980200px;}
.lsae_c00002{letter-spacing:5.981400px;}
.ls1a6_c00002{letter-spacing:5.982600px;}
.lse3_c00002{letter-spacing:5.983200px;}
.ls17c_c00002{letter-spacing:5.984400px;}
.ls121_c00002{letter-spacing:5.985600px;}
.ls289_c00002{letter-spacing:5.986200px;}
.lsb9_c00002{letter-spacing:5.987400px;}
.ls396_c00002{letter-spacing:5.989800px;}
.ls29a_c00002{letter-spacing:5.990400px;}
.ls28b_c00002{letter-spacing:5.991000px;}
.ls353_c00002{letter-spacing:5.991600px;}
.ls394_c00002{letter-spacing:5.992200px;}
.ls291_c00002{letter-spacing:5.992800px;}
.ls3bc_c00002{letter-spacing:5.993400px;}
.ls226_c00002{letter-spacing:5.994600px;}
.ls16d_c00002{letter-spacing:5.997000px;}
.lse8_c00002{letter-spacing:5.997600px;}
.ls209_c00002{letter-spacing:5.998200px;}
.ls65b_c00002{letter-spacing:6.001200px;}
.ls2d5_c00002{letter-spacing:6.004800px;}
.ls1de_c00002{letter-spacing:6.007200px;}
.ls428_c00002{letter-spacing:6.009000px;}
.ls870_c00002{letter-spacing:6.010272px;}
.lsc1_c00002{letter-spacing:6.012000px;}
.ls9f_c00002{letter-spacing:6.015600px;}
.ls88d_c00002{letter-spacing:6.016176px;}
.ls423_c00002{letter-spacing:6.018600px;}
.lsc5_c00002{letter-spacing:6.026400px;}
.lsbd_c00002{letter-spacing:6.035400px;}
.ls91e_c00002{letter-spacing:6.043104px;}
.lsc7_c00002{letter-spacing:6.048000px;}
.ls27b_c00002{letter-spacing:6.055200px;}
.ls82d_c00002{letter-spacing:6.057504px;}
.ls29e_c00002{letter-spacing:6.062400px;}
.ls938_c00002{letter-spacing:6.063408px;}
.ls32b_c00002{letter-spacing:6.120000px;}
.ls621_c00002{letter-spacing:6.122218px;}
.lse4_c00002{letter-spacing:6.125400px;}
.ls1da_c00002{letter-spacing:6.140160px;}
.ls2bf_c00002{letter-spacing:6.140475px;}
.ls447_c00002{letter-spacing:6.143040px;}
.lscf_c00002{letter-spacing:6.158683px;}
.ls176_c00002{letter-spacing:6.159301px;}
.ls23_c00002{letter-spacing:6.159920px;}
.ls306_c00002{letter-spacing:6.163776px;}
.ls370_c00002{letter-spacing:6.169680px;}
.lsf9_c00002{letter-spacing:6.175584px;}
.lsb4_c00002{letter-spacing:6.180329px;}
.ls216_c00002{letter-spacing:6.182803px;}
.ls236_c00002{letter-spacing:6.183422px;}
.ls123_c00002{letter-spacing:6.187132px;}
.ls72f_c00002{letter-spacing:6.192000px;}
.ls950_c00002{letter-spacing:6.199200px;}
.ls92d_c00002{letter-spacing:6.201332px;}
.ls906_c00002{letter-spacing:6.205104px;}
.ls3fc_c00002{letter-spacing:6.237847px;}
.ls5a5_c00002{letter-spacing:6.240528px;}
.ls4c7_c00002{letter-spacing:6.249600px;}
.ls8ca_c00002{letter-spacing:6.258240px;}
.ls16c_c00002{letter-spacing:6.264000px;}
.ls270_c00002{letter-spacing:6.265200px;}
.ls57c_c00002{letter-spacing:6.271200px;}
.ls3d3_c00002{letter-spacing:6.275952px;}
.ls33_c00002{letter-spacing:6.293664px;}
.ls99_c00002{letter-spacing:6.299568px;}
.ls93f_c00002{letter-spacing:6.307115px;}
.ls338_c00002{letter-spacing:6.311376px;}
.ls335_c00002{letter-spacing:6.317280px;}
.ls2c8_c00002{letter-spacing:6.323184px;}
.ls12e_c00002{letter-spacing:6.323400px;}
.ls26c_c00002{letter-spacing:6.329088px;}
.ls7e8_c00002{letter-spacing:6.334992px;}
.ls3f4_c00002{letter-spacing:6.335400px;}
.ls5dc_c00002{letter-spacing:6.336000px;}
.ls8c8_c00002{letter-spacing:6.352704px;}
.ls1a5_c00002{letter-spacing:6.370416px;}
.ls3ce_c00002{letter-spacing:6.371976px;}
.ls33f_c00002{letter-spacing:6.376320px;}
.ls103_c00002{letter-spacing:6.399936px;}
.ls334_c00002{letter-spacing:6.408000px;}
.ls152_c00002{letter-spacing:6.415200px;}
.ls122_c00002{letter-spacing:6.423552px;}
.ls181_c00002{letter-spacing:6.427800px;}
.ls908_c00002{letter-spacing:6.435360px;}
.ls474_c00002{letter-spacing:6.451200px;}
.ls698_c00002{letter-spacing:6.458400px;}
.ls7f5_c00002{letter-spacing:6.470784px;}
.ls1c3_c00002{letter-spacing:6.475200px;}
.ls4a2_c00002{letter-spacing:6.488496px;}
.ls2a5_c00002{letter-spacing:6.494400px;}
.ls3cc_c00002{letter-spacing:6.531840px;}
.ls644_c00002{letter-spacing:6.537600px;}
.ls452_c00002{letter-spacing:6.539616px;}
.ls33d_c00002{letter-spacing:6.552000px;}
.ls3cd_c00002{letter-spacing:6.555168px;}
.ls449_c00002{letter-spacing:6.570720px;}
.ls494_c00002{letter-spacing:6.573600px;}
.ls8cf_c00002{letter-spacing:6.594768px;}
.ls4b_c00002{letter-spacing:6.600672px;}
.ls4bf_c00002{letter-spacing:6.617376px;}
.ls55b_c00002{letter-spacing:6.624000px;}
.ls816_c00002{letter-spacing:6.630192px;}
.ls44a_c00002{letter-spacing:6.632928px;}
.ls6b6_c00002{letter-spacing:6.636096px;}
.ls2c5_c00002{letter-spacing:6.642000px;}
.ls44c_c00002{letter-spacing:6.648480px;}
.ls44e_c00002{letter-spacing:6.656256px;}
.ls568_c00002{letter-spacing:6.671808px;}
.ls2d3_c00002{letter-spacing:6.672000px;}
.ls3b1_c00002{letter-spacing:6.685200px;}
.ls600_c00002{letter-spacing:6.695136px;}
.ls30e_c00002{letter-spacing:6.695400px;}
.ls420_c00002{letter-spacing:6.696000px;}
.ls59b_c00002{letter-spacing:6.712531px;}
.ls6a9_c00002{letter-spacing:6.724656px;}
.ls301_c00002{letter-spacing:6.768000px;}
.ls39d_c00002{letter-spacing:6.789600px;}
.ls7dc_c00002{letter-spacing:6.797731px;}
.ls3a2_c00002{letter-spacing:6.801408px;}
.ls412_c00002{letter-spacing:6.822074px;}
.ls3df_c00002{letter-spacing:6.825024px;}
.lsc4_c00002{letter-spacing:6.830928px;}
.ls4d8_c00002{letter-spacing:6.832800px;}
.ls940_c00002{letter-spacing:6.836832px;}
.ls5ec_c00002{letter-spacing:6.840000px;}
.ls82f_c00002{letter-spacing:6.842736px;}
.ls127_c00002{letter-spacing:6.848640px;}
.ls1cd_c00002{letter-spacing:6.858588px;}
.ls23f_c00002{letter-spacing:6.860448px;}
.ls8d9_c00002{letter-spacing:6.866352px;}
.ls84_c00002{letter-spacing:6.872256px;}
.ls7d4_c00002{letter-spacing:6.878160px;}
.ls5ac_c00002{letter-spacing:6.882931px;}
.ls81e_c00002{letter-spacing:6.884064px;}
.ls101_c00002{letter-spacing:6.895872px;}
.ls727_c00002{letter-spacing:6.897600px;}
.ls2fc_c00002{letter-spacing:6.912600px;}
.ls38f_c00002{letter-spacing:6.919200px;}
.ls3aa_c00002{letter-spacing:6.966720px;}
.ls610_c00002{letter-spacing:6.968131px;}
.ls3a9_c00002{letter-spacing:6.972624px;}
.ls461_c00002{letter-spacing:6.984000px;}
.ls3e9_c00002{letter-spacing:7.049376px;}
.ls7d1_c00002{letter-spacing:7.061184px;}
.ls191_c00002{letter-spacing:7.067088px;}
.ls202_c00002{letter-spacing:7.072992px;}
.ls201_c00002{letter-spacing:7.078896px;}
.ls8a_c00002{letter-spacing:7.083759px;}
.ls82_c00002{letter-spacing:7.084800px;}
.ls6b8_c00002{letter-spacing:7.090704px;}
.ls810_c00002{letter-spacing:7.096608px;}
.ls8f0_c00002{letter-spacing:7.102016px;}
.ls2f1_c00002{letter-spacing:7.102512px;}
.ls3a1_c00002{letter-spacing:7.114320px;}
.ls41d_c00002{letter-spacing:7.120224px;}
.ls8b9_c00002{letter-spacing:7.132032px;}
.ls324_c00002{letter-spacing:7.149744px;}
.ls323_c00002{letter-spacing:7.155648px;}
.ls325_c00002{letter-spacing:7.179264px;}
.ls7e2_c00002{letter-spacing:7.191072px;}
.ls51_c00002{letter-spacing:7.200000px;}
.ls320_c00002{letter-spacing:7.202880px;}
.ls64a_c00002{letter-spacing:7.220592px;}
.ls1cc_c00002{letter-spacing:7.238304px;}
.ls1b7_c00002{letter-spacing:7.261920px;}
.ls570_c00002{letter-spacing:7.267824px;}
.ls34b_c00002{letter-spacing:7.272000px;}
.ls193_c00002{letter-spacing:7.278502px;}
.ls192_c00002{letter-spacing:7.284588px;}
.ls4d_c00002{letter-spacing:7.303248px;}
.ls10f_c00002{letter-spacing:7.332768px;}
.ls6c0_c00002{letter-spacing:7.350480px;}
.ls800_c00002{letter-spacing:7.356384px;}
.ls8ce_c00002{letter-spacing:7.362288px;}
.ls3d5_c00002{letter-spacing:7.374096px;}
.ls8f7_c00002{letter-spacing:7.391808px;}
.ls6d3_c00002{letter-spacing:7.409520px;}
.ls8ae_c00002{letter-spacing:7.415424px;}
.ls5f2_c00002{letter-spacing:7.416000px;}
.ls7d3_c00002{letter-spacing:7.421760px;}
.ls854_c00002{letter-spacing:7.427232px;}
.ls9d_c00002{letter-spacing:7.439040px;}
.ls11b_c00002{letter-spacing:7.456752px;}
.ls636_c00002{letter-spacing:7.473600px;}
.ls3f3_c00002{letter-spacing:7.474464px;}
.ls432_c00002{letter-spacing:7.477499px;}
.ls1dc_c00002{letter-spacing:7.492176px;}
.ls69b_c00002{letter-spacing:7.495200px;}
.ls1d8_c00002{letter-spacing:7.498080px;}
.ls5b9_c00002{letter-spacing:7.509600px;}
.lsf6_c00002{letter-spacing:7.521696px;}
.ls6d0_c00002{letter-spacing:7.524000px;}
.ls438_c00002{letter-spacing:7.527600px;}
.ls147_c00002{letter-spacing:7.534398px;}
.ls10e_c00002{letter-spacing:7.558444px;}
.ls46c_c00002{letter-spacing:7.560000px;}
.ls88_c00002{letter-spacing:7.563024px;}
.ls4b7_c00002{letter-spacing:7.581600px;}
.ls43e_c00002{letter-spacing:7.585920px;}
.ls5e1_c00002{letter-spacing:7.616160px;}
.ls260_c00002{letter-spacing:7.632000px;}
.ls7e6_c00002{letter-spacing:7.657488px;}
.ls105_c00002{letter-spacing:7.687008px;}
.ls2cd_c00002{letter-spacing:7.698816px;}
.ls677_c00002{letter-spacing:7.704000px;}
.lsc3_c00002{letter-spacing:7.711200px;}
.ls43a_c00002{letter-spacing:7.724160px;}
.ls337_c00002{letter-spacing:7.734240px;}
.lsd8_c00002{letter-spacing:7.740000px;}
.ls88c_c00002{letter-spacing:7.740144px;}
.ls2b1_c00002{letter-spacing:7.746048px;}
.ls8d7_c00002{letter-spacing:7.751952px;}
.ls47b_c00002{letter-spacing:7.763760px;}
.ls2b0_c00002{letter-spacing:7.828704px;}
.ls300_c00002{letter-spacing:7.834608px;}
.ls927_c00002{letter-spacing:7.840512px;}
.ls3f2_c00002{letter-spacing:7.846416px;}
.ls156_c00002{letter-spacing:7.852320px;}
.ls879_c00002{letter-spacing:7.864128px;}
.ls43f_c00002{letter-spacing:7.890635px;}
.ls18_c00002{letter-spacing:7.901272px;}
.ls17_c00002{letter-spacing:7.901891px;}
.ls16_c00002{letter-spacing:7.902509px;}
.ls213_c00002{letter-spacing:7.917264px;}
.ls26f_c00002{letter-spacing:7.921558px;}
.ls473_c00002{letter-spacing:7.963200px;}
.ls383_c00002{letter-spacing:7.970400px;}
.ls6d7_c00002{letter-spacing:7.976304px;}
.ls389_c00002{letter-spacing:7.982208px;}
.ls8c1_c00002{letter-spacing:7.984444px;}
.ls7d9_c00002{letter-spacing:7.999920px;}
.ls85a_c00002{letter-spacing:8.014872px;}
.ls246_c00002{letter-spacing:8.035344px;}
.ls25d_c00002{letter-spacing:8.047152px;}
.ls6bc_c00002{letter-spacing:8.070768px;}
.ls7f0_c00002{letter-spacing:8.082576px;}
.ls62a_c00002{letter-spacing:8.088480px;}
.ls111_c00002{letter-spacing:8.123904px;}
.ls625_c00002{letter-spacing:8.136000px;}
.ls2bc_c00002{letter-spacing:8.141616px;}
.ls8c2_c00002{letter-spacing:8.147520px;}
.ls2ac_c00002{letter-spacing:8.188848px;}
.ls330_c00002{letter-spacing:8.194752px;}
.ls2e2_c00002{letter-spacing:8.200656px;}
.ls2da_c00002{letter-spacing:8.206560px;}
.ls8bf_c00002{letter-spacing:8.212464px;}
.ls475_c00002{letter-spacing:8.222400px;}
.ls41e_c00002{letter-spacing:8.224272px;}
.ls451_c00002{letter-spacing:8.230464px;}
.ls44d_c00002{letter-spacing:8.234280px;}
.ls19b_c00002{letter-spacing:8.247888px;}
.ls739_c00002{letter-spacing:8.257800px;}
.ls8c4_c00002{letter-spacing:8.259696px;}
.ls1e2_c00002{letter-spacing:8.265600px;}
.ls453_c00002{letter-spacing:8.268480px;}
.ls6e9_c00002{letter-spacing:8.280000px;}
.ls204_c00002{letter-spacing:8.283312px;}
.ls8c0_c00002{letter-spacing:8.301024px;}
.ls5f_c00002{letter-spacing:8.324640px;}
.ls83a_c00002{letter-spacing:8.331329px;}
.ls8d8_c00002{letter-spacing:8.336448px;}
.ls32f_c00002{letter-spacing:8.337600px;}
.ls6bf_c00002{letter-spacing:8.352000px;}
.ls62e_c00002{letter-spacing:8.361757px;}
.ls62d_c00002{letter-spacing:8.367843px;}
.ls112_c00002{letter-spacing:8.373929px;}
.ls1f5_c00002{letter-spacing:8.401392px;}
.lsca_c00002{letter-spacing:8.402400px;}
.ls126_c00002{letter-spacing:8.414475px;}
.ls5c8_c00002{letter-spacing:8.419104px;}
.ls6c2_c00002{letter-spacing:8.424000px;}
.ls20d_c00002{letter-spacing:8.425008px;}
.ls7db_c00002{letter-spacing:8.430912px;}
.ls445_c00002{letter-spacing:8.433648px;}
.ls308_c00002{letter-spacing:8.442720px;}
.ls588_c00002{letter-spacing:8.454120px;}
.ls166_c00002{letter-spacing:8.466336px;}
.ls567_c00002{letter-spacing:8.473800px;}
.ls1bc_c00002{letter-spacing:8.484048px;}
.ls1bb_c00002{letter-spacing:8.489952px;}
.ls6fe_c00002{letter-spacing:8.492160px;}
.ls450_c00002{letter-spacing:8.496576px;}
.ls909_c00002{letter-spacing:8.501760px;}
.ls8ea_c00002{letter-spacing:8.507664px;}
.ls68e_c00002{letter-spacing:8.529840px;}
.lsf7_c00002{letter-spacing:8.537184px;}
.ls6a1_c00002{letter-spacing:8.543088px;}
.ls72c_c00002{letter-spacing:8.568000px;}
.ls489_c00002{letter-spacing:8.582400px;}
.ls478_c00002{letter-spacing:8.613720px;}
.ls34e_c00002{letter-spacing:8.625744px;}
.ls4a1_c00002{letter-spacing:8.631648px;}
.ls4a7_c00002{letter-spacing:8.637552px;}
.ls6ff_c00002{letter-spacing:8.637840px;}
.ls4be_c00002{letter-spacing:8.638560px;}
.ls67d_c00002{letter-spacing:8.640000px;}
.ls688_c00002{letter-spacing:8.654400px;}
.ls732_c00002{letter-spacing:8.654520px;}
.ls736_c00002{letter-spacing:8.660520px;}
.ls8d4_c00002{letter-spacing:8.667072px;}
.ls8f3_c00002{letter-spacing:8.672128px;}
.ls90a_c00002{letter-spacing:8.672976px;}
.ls44b_c00002{letter-spacing:8.677080px;}
.ls93c_c00002{letter-spacing:8.678880px;}
.ls85d_c00002{letter-spacing:8.696471px;}
.ls1f7_c00002{letter-spacing:8.712000px;}
.ls106_c00002{letter-spacing:8.714304px;}
.ls33a_c00002{letter-spacing:8.720208px;}
.ls224_c00002{letter-spacing:8.737920px;}
.ls487_c00002{letter-spacing:8.748000px;}
.ls888_c00002{letter-spacing:8.749728px;}
.ls5de_c00002{letter-spacing:8.757476px;}
.ls5fd_c00002{letter-spacing:8.778240px;}
.ls949_c00002{letter-spacing:8.796960px;}
.ls321_c00002{letter-spacing:8.808768px;}
.ls6d9_c00002{letter-spacing:8.832384px;}
.ls2a9_c00002{letter-spacing:8.838288px;}
.ls4bb_c00002{letter-spacing:8.848800px;}
.ls2a1_c00002{letter-spacing:8.856000px;}
.ls3ae_c00002{letter-spacing:8.861904px;}
.ls414_c00002{letter-spacing:8.872956px;}
.ls82a_c00002{letter-spacing:8.873712px;}
.ls31e_c00002{letter-spacing:8.885520px;}
.ls894_c00002{letter-spacing:8.909136px;}
.ls11c_c00002{letter-spacing:8.915040px;}
.ls7d5_c00002{letter-spacing:8.920944px;}
.ls85e_c00002{letter-spacing:8.962272px;}
.ls43c_c00002{letter-spacing:8.962800px;}
.ls439_c00002{letter-spacing:8.963400px;}
.ls43d_c00002{letter-spacing:8.964000px;}
.ls351_c00002{letter-spacing:8.968176px;}
.ls477_c00002{letter-spacing:8.974080px;}
.ls861_c00002{letter-spacing:8.997696px;}
.ls462_c00002{letter-spacing:9.000000px;}
.ls7f_c00002{letter-spacing:9.003600px;}
.ls43b_c00002{letter-spacing:9.012600px;}
.ls8fa_c00002{letter-spacing:9.021312px;}
.ls7_c00002{letter-spacing:9.033120px;}
.lsd9_c00002{letter-spacing:9.072000px;}
.ls81f_c00002{letter-spacing:9.074448px;}
.ls1ef_c00002{letter-spacing:9.080352px;}
.ls198_c00002{letter-spacing:9.086256px;}
.ls472_c00002{letter-spacing:9.086400px;}
.ls1ea_c00002{letter-spacing:9.092160px;}
.ls4a3_c00002{letter-spacing:9.103968px;}
.ls7d_c00002{letter-spacing:9.115200px;}
.ls4e_c00002{letter-spacing:9.121680px;}
.ls61b_c00002{letter-spacing:9.144000px;}
.ls8a5_c00002{letter-spacing:9.186624px;}
.ls276_c00002{letter-spacing:9.201584px;}
.ls463_c00002{letter-spacing:9.216000px;}
.ls87d_c00002{letter-spacing:9.216144px;}
.ls8af_c00002{letter-spacing:9.222048px;}
.ls660_c00002{letter-spacing:9.227280px;}
.ls919_c00002{letter-spacing:9.227952px;}
.ls94f_c00002{letter-spacing:9.233856px;}
.ls80e_c00002{letter-spacing:9.239760px;}
.ls247_c00002{letter-spacing:9.250270px;}
.ls371_c00002{letter-spacing:9.257472px;}
.ls465_c00002{letter-spacing:9.269280px;}
.ls5c4_c00002{letter-spacing:9.281088px;}
.ls6db_c00002{letter-spacing:9.286992px;}
.ls63e_c00002{letter-spacing:9.288000px;}
.ls5f4_c00002{letter-spacing:9.328320px;}
.ls71d_c00002{letter-spacing:9.331200px;}
.ls410_c00002{letter-spacing:9.387360px;}
.ls41c_c00002{letter-spacing:9.416880px;}
.ls87f_c00002{letter-spacing:9.422784px;}
.ls36b_c00002{letter-spacing:9.432000px;}
.ls7e3_c00002{letter-spacing:9.434592px;}
.ls36e_c00002{letter-spacing:9.489600px;}
.ls2ea_c00002{letter-spacing:9.504000px;}
.ls833_c00002{letter-spacing:9.505440px;}
.ls36f_c00002{letter-spacing:9.540864px;}
.ls8ad_c00002{letter-spacing:9.546768px;}
.ls947_c00002{letter-spacing:9.558576px;}
.ls838_c00002{letter-spacing:9.605808px;}
.ls253_c00002{letter-spacing:9.648000px;}
.ls39e_c00002{letter-spacing:9.682560px;}
.ls415_c00002{letter-spacing:9.712080px;}
.ls254_c00002{letter-spacing:9.720000px;}
.ls8d1_c00002{letter-spacing:9.735696px;}
.ls425_c00002{letter-spacing:9.748800px;}
.ls2ae_c00002{letter-spacing:9.759312px;}
.ls27f_c00002{letter-spacing:9.765216px;}
.ls357_c00002{letter-spacing:9.777024px;}
.ls366_c00002{letter-spacing:9.792000px;}
.ls19d_c00002{letter-spacing:9.818352px;}
.ls6f0_c00002{letter-spacing:9.820800px;}
.ls801_c00002{letter-spacing:9.822326px;}
.ls6a7_c00002{letter-spacing:9.892800px;}
.ls3b8_c00002{letter-spacing:9.900401px;}
.ls322_c00002{letter-spacing:9.912816px;}
.ls5f6_c00002{letter-spacing:9.936000px;}
.ls676_c00002{letter-spacing:9.936432px;}
.ls8d2_c00002{letter-spacing:9.948240px;}
.ls811_c00002{letter-spacing:9.950126px;}
.ls635_c00002{letter-spacing:9.954144px;}
.ls220_c00002{letter-spacing:9.965952px;}
.ls4ad_c00002{letter-spacing:9.977760px;}
.ls4af_c00002{letter-spacing:9.989568px;}
.ls7e4_c00002{letter-spacing:10.007280px;}
.ls11f_c00002{letter-spacing:10.030896px;}
.ls5c7_c00002{letter-spacing:10.078128px;}
.ls4d1_c00002{letter-spacing:10.080000px;}
.ls62f_c00002{letter-spacing:10.095840px;}
.ls5c9_c00002{letter-spacing:10.152000px;}
.ls223_c00002{letter-spacing:10.154880px;}
.ls225_c00002{letter-spacing:10.184400px;}
.ls7d6_c00002{letter-spacing:10.190304px;}
.ls633_c00002{letter-spacing:10.196208px;}
.ls7f9_c00002{letter-spacing:10.202112px;}
.ls903_c00002{letter-spacing:10.208016px;}
.ls912_c00002{letter-spacing:10.213920px;}
.ls926_c00002{letter-spacing:10.254411px;}
.ls7be_c00002{letter-spacing:10.277712px;}
.ls24a_c00002{letter-spacing:10.337904px;}
.ls4c8_c00002{letter-spacing:10.353600px;}
.ls249_c00002{letter-spacing:10.391040px;}
.ls4f5_c00002{letter-spacing:10.420560px;}
.ls341_c00002{letter-spacing:10.432368px;}
.ls305_c00002{letter-spacing:10.444176px;}
.ls915_c00002{letter-spacing:10.450080px;}
.ls850_c00002{letter-spacing:10.473696px;}
.ls839_c00002{letter-spacing:10.485504px;}
.ls7df_c00002{letter-spacing:10.497839px;}
.ls1f1_c00002{letter-spacing:10.509120px;}
.ls368_c00002{letter-spacing:10.512000px;}
.ls730_c00002{letter-spacing:10.514520px;}
.ls1f3_c00002{letter-spacing:10.515024px;}
.ls208_c00002{letter-spacing:10.583188px;}
.ls367_c00002{letter-spacing:10.584000px;}
.ls257_c00002{letter-spacing:10.627200px;}
.ls3a7_c00002{letter-spacing:10.633104px;}
.ls25f_c00002{letter-spacing:10.639008px;}
.ls7fe_c00002{letter-spacing:10.644912px;}
.ls8e2_c00002{letter-spacing:10.680336px;}
.ls2b7_c00002{letter-spacing:10.686240px;}
.ls269_c00002{letter-spacing:10.698048px;}
.ls37f_c00002{letter-spacing:10.703952px;}
.ls1e1_c00002{letter-spacing:10.721664px;}
.ls369_c00002{letter-spacing:10.728000px;}
.ls3ac_c00002{letter-spacing:10.757088px;}
.ls8ba_c00002{letter-spacing:10.759525px;}
.ls84d_c00002{letter-spacing:10.762992px;}
.ls549_c00002{letter-spacing:10.777536px;}
.ls8b7_c00002{letter-spacing:10.783867px;}
.ls715_c00002{letter-spacing:10.792800px;}
.ls5e7_c00002{letter-spacing:10.800000px;}
.ls108_c00002{letter-spacing:10.851552px;}
.ls5d_c00002{letter-spacing:10.863360px;}
.ls436_c00002{letter-spacing:10.872000px;}
.ls267_c00002{letter-spacing:10.875168px;}
.ls190_c00002{letter-spacing:10.916496px;}
.ls728_c00002{letter-spacing:10.944000px;}
.ls823_c00002{letter-spacing:10.951920px;}
.ls406_c00002{letter-spacing:10.963728px;}
.ls416_c00002{letter-spacing:10.999152px;}
.ls7bc_c00002{letter-spacing:11.005921px;}
.ls418_c00002{letter-spacing:11.022768px;}
.ls408_c00002{letter-spacing:11.026080px;}
.ls409_c00002{letter-spacing:11.040480px;}
.ls81c_c00002{letter-spacing:11.075904px;}
.ls93a_c00002{letter-spacing:11.082067px;}
.ls16b_c00002{letter-spacing:11.087712px;}
.ls304_c00002{letter-spacing:11.123136px;}
.ls12a_c00002{letter-spacing:11.129040px;}
.ls8a8_c00002{letter-spacing:11.152656px;}
.ls23e_c00002{letter-spacing:11.167200px;}
.ls819_c00002{letter-spacing:11.211696px;}
.ls263_c00002{letter-spacing:11.217600px;}
.ls297_c00002{letter-spacing:11.223504px;}
.ls45b_c00002{letter-spacing:11.276640px;}
.ls7f8_c00002{letter-spacing:11.312064px;}
.ls6b7_c00002{letter-spacing:11.317968px;}
.ls849_c00002{letter-spacing:11.331581px;}
.ls815_c00002{letter-spacing:11.359296px;}
.ls457_c00002{letter-spacing:11.376000px;}
.ls8f8_c00002{letter-spacing:11.388816px;}
.ls548_c00002{letter-spacing:11.447568px;}
.ls65d_c00002{letter-spacing:11.448000px;}
.ls921_c00002{letter-spacing:11.489184px;}
.ls91f_c00002{letter-spacing:11.495088px;}
.ls8a7_c00002{letter-spacing:11.495895px;}
.ls5a2_c00002{letter-spacing:11.544580px;}
.ls804_c00002{letter-spacing:11.562837px;}
.ls858_c00002{letter-spacing:11.565936px;}
.ls4c_c00002{letter-spacing:11.577744px;}
.ls210_c00002{letter-spacing:11.601360px;}
.ls802_c00002{letter-spacing:11.619072px;}
.ls923_c00002{letter-spacing:11.624976px;}
.ls5c_c00002{letter-spacing:11.642688px;}
.ls1ad_c00002{letter-spacing:11.689920px;}
.ls496_c00002{letter-spacing:11.737152px;}
.ls844_c00002{letter-spacing:11.748960px;}
.ls3ab_c00002{letter-spacing:11.778480px;}
.ls920_c00002{letter-spacing:11.848865px;}
.ls1f6_c00002{letter-spacing:11.849328px;}
.ls91a_c00002{letter-spacing:11.878848px;}
.ls841_c00002{letter-spacing:11.961504px;}
.ls8fe_c00002{letter-spacing:11.985120px;}
.ls8a6_c00002{letter-spacing:11.988837px;}
.ls6a2_c00002{letter-spacing:11.991024px;}
.ls8de_c00002{letter-spacing:11.996928px;}
.ls70c_c00002{letter-spacing:12.008736px;}
.ls9a_c00002{letter-spacing:12.014640px;}
.ls6ef_c00002{letter-spacing:12.074400px;}
.ls89a_c00002{letter-spacing:12.079584px;}
.ls1d7_c00002{letter-spacing:12.103200px;}
.ls60e_c00002{letter-spacing:12.138624px;}
.ls8fb_c00002{letter-spacing:12.144528px;}
.ls1c0_c00002{letter-spacing:12.221280px;}
.ls36a_c00002{letter-spacing:12.240000px;}
.ls8e9_c00002{letter-spacing:12.244896px;}
.ls26b_c00002{letter-spacing:12.262608px;}
.ls540_c00002{letter-spacing:12.279911px;}
.ls55e_c00002{letter-spacing:12.312000px;}
.ls887_c00002{letter-spacing:12.345264px;}
.ls2d0_c00002{letter-spacing:12.384000px;}
.ls1df_c00002{letter-spacing:12.422016px;}
.ls6e2_c00002{letter-spacing:12.456000px;}
.ls6f2_c00002{letter-spacing:12.457440px;}
.ls83f_c00002{letter-spacing:12.481056px;}
.ls843_c00002{letter-spacing:12.486960px;}
.ls93e_c00002{letter-spacing:12.492864px;}
.lsdb_c00002{letter-spacing:12.498768px;}
.ls6e4_c00002{letter-spacing:12.513600px;}
.ls2e9_c00002{letter-spacing:12.528000px;}
.ls94e_c00002{letter-spacing:12.566979px;}
.ls8e4_c00002{letter-spacing:12.573064px;}
.ls6e0_c00002{letter-spacing:12.581424px;}
.ls648_c00002{letter-spacing:12.607200px;}
.ls3bb_c00002{letter-spacing:12.616848px;}
.ls10a_c00002{letter-spacing:12.622752px;}
.ls885_c00002{letter-spacing:12.634560px;}
.ls298_c00002{letter-spacing:12.636000px;}
.ls5d9_c00002{letter-spacing:12.643200px;}
.ls639_c00002{letter-spacing:12.672000px;}
.ls3c4_c00002{letter-spacing:12.681792px;}
.ls18f_c00002{letter-spacing:12.699504px;}
.ls69e_c00002{letter-spacing:12.700800px;}
.ls2af_c00002{letter-spacing:12.731293px;}
.ls5ed_c00002{letter-spacing:12.744000px;}
.ls38a_c00002{letter-spacing:12.817584px;}
.ls609_c00002{letter-spacing:12.853007px;}
.ls836_c00002{letter-spacing:12.858912px;}
.ls680_c00002{letter-spacing:12.888000px;}
.ls6b9_c00002{letter-spacing:12.941568px;}
.ls946_c00002{letter-spacing:12.959280px;}
.ls1f2_c00002{letter-spacing:12.976992px;}
.ls89d_c00002{letter-spacing:12.982896px;}
.ls91c_c00002{letter-spacing:13.006512px;}
.ls7fc_c00002{letter-spacing:13.041663px;}
.ls6cd_c00002{letter-spacing:13.041936px;}
.ls36c_c00002{letter-spacing:13.047840px;}
.ls2cb_c00002{letter-spacing:13.053744px;}
.ls690_c00002{letter-spacing:13.083264px;}
.ls67e_c00002{letter-spacing:13.104000px;}
.ls1b2_c00002{letter-spacing:13.106880px;}
.ls6e3_c00002{letter-spacing:13.176000px;}
.ls57a_c00002{letter-spacing:13.190400px;}
.ls67b_c00002{letter-spacing:13.233600px;}
.ls7fd_c00002{letter-spacing:13.248577px;}
.lsef_c00002{letter-spacing:13.284000px;}
.ls2a7_c00002{letter-spacing:13.291177px;}
.ls8a0_c00002{letter-spacing:13.297263px;}
.ls68c_c00002{letter-spacing:13.320000px;}
.ls945_c00002{letter-spacing:13.358120px;}
.ls663_c00002{letter-spacing:13.363200px;}
.ls640_c00002{letter-spacing:13.392000px;}
.ls387_c00002{letter-spacing:13.467024px;}
.ls881_c00002{letter-spacing:13.478832px;}
.ls3b9_c00002{letter-spacing:13.514256px;}
.ls63d_c00002{letter-spacing:13.520160px;}
.ls37e_c00002{letter-spacing:13.526064px;}
.ls8b8_c00002{letter-spacing:13.531968px;}
.lsda_c00002{letter-spacing:13.567392px;}
.lsd5_c00002{letter-spacing:13.579200px;}
.ls5db_c00002{letter-spacing:13.608000px;}
.ls422_c00002{letter-spacing:13.680000px;}
.ls2a6_c00002{letter-spacing:13.698919px;}
.ls6e5_c00002{letter-spacing:13.737600px;}
.ls8ab_c00002{letter-spacing:13.741519px;}
.ls918_c00002{letter-spacing:13.750416px;}
.lsbf_c00002{letter-spacing:13.756320px;}
.ls81a_c00002{letter-spacing:13.791744px;}
.ls171_c00002{letter-spacing:13.795200px;}
.ls318_c00002{letter-spacing:13.874400px;}
.ls7cc_c00002{letter-spacing:13.890096px;}
.ls37d_c00002{letter-spacing:13.942348px;}
.ls471_c00002{letter-spacing:13.968000px;}
.ls296_c00002{letter-spacing:13.968864px;}
.ls309_c00002{letter-spacing:13.974768px;}
.ls84e_c00002{letter-spacing:13.992480px;}
.ls37b_c00002{letter-spacing:14.004288px;}
.ls2a_c00002{letter-spacing:14.033808px;}
.ls696_c00002{letter-spacing:14.057424px;}
.ls6b5_c00002{letter-spacing:14.083200px;}
.ls8ee_c00002{letter-spacing:14.116464px;}
.ls647_c00002{letter-spacing:14.140800px;}
.ls342_c00002{letter-spacing:14.169600px;}
.ls55c_c00002{letter-spacing:14.184000px;}
.ls252_c00002{letter-spacing:14.210928px;}
.ls55d_c00002{letter-spacing:14.256000px;}
.ls832_c00002{letter-spacing:14.269968px;}
.ls5f7_c00002{letter-spacing:14.270400px;}
.ls38e_c00002{letter-spacing:14.287680px;}
.ls2f4_c00002{letter-spacing:14.317200px;}
.ls874_c00002{letter-spacing:14.323104px;}
.ls8c9_c00002{letter-spacing:14.346720px;}
.lsc6_c00002{letter-spacing:14.400000px;}
.lse0_c00002{letter-spacing:14.447088px;}
.ls2b9_c00002{letter-spacing:14.458896px;}
.ls34f_c00002{letter-spacing:14.472000px;}
.ls58f_c00002{letter-spacing:14.523840px;}
.ls18c_c00002{letter-spacing:14.535648px;}
.ls29b_c00002{letter-spacing:14.544000px;}
.ls2db_c00002{letter-spacing:14.594688px;}
.ls29c_c00002{letter-spacing:14.616000px;}
.ls735_c00002{letter-spacing:14.624208px;}
.ls72d_c00002{letter-spacing:14.637600px;}
.ls911_c00002{letter-spacing:14.641920px;}
.ls2c6_c00002{letter-spacing:14.653728px;}
.ls666_c00002{letter-spacing:14.659632px;}
.ls932_c00002{letter-spacing:14.712768px;}
.ls653_c00002{letter-spacing:14.745600px;}
.ls7ec_c00002{letter-spacing:14.801328px;}
.ls933_c00002{letter-spacing:14.901696px;}
.ls1fb_c00002{letter-spacing:14.937120px;}
.ls1fd_c00002{letter-spacing:14.943024px;}
.ls18d_c00002{letter-spacing:14.983003px;}
.ls319_c00002{letter-spacing:14.984352px;}
.ls897_c00002{letter-spacing:15.037488px;}
.ls64f_c00002{letter-spacing:15.048000px;}
.ls62b_c00002{letter-spacing:15.055200px;}
.ls82e_c00002{letter-spacing:15.061104px;}
.ls268_c00002{letter-spacing:15.072912px;}
.ls859_c00002{letter-spacing:15.129060px;}
.ls75c_c00002{letter-spacing:15.157856px;}
.ls852_c00002{letter-spacing:15.161472px;}
.ls867_c00002{letter-spacing:15.173280px;}
.ls907_c00002{letter-spacing:15.196003px;}
.ls86a_c00002{letter-spacing:15.202800px;}
.lsa7_c00002{letter-spacing:15.220512px;}
.ls68b_c00002{letter-spacing:15.264000px;}
.ls6c6_c00002{letter-spacing:15.333005px;}
.ls6c8_c00002{letter-spacing:15.336000px;}
.lsf3_c00002{letter-spacing:15.338592px;}
.ls248_c00002{letter-spacing:15.350400px;}
.ls1fe_c00002{letter-spacing:15.402917px;}
.ls12b_c00002{letter-spacing:15.409440px;}
.ls2c3_c00002{letter-spacing:15.465600px;}
.ls899_c00002{letter-spacing:15.521616px;}
.ls864_c00002{letter-spacing:15.598368px;}
.ls4ae_c00002{letter-spacing:15.624000px;}
.ls6d6_c00002{letter-spacing:15.639696px;}
.ls928_c00002{letter-spacing:15.663312px;}
.ls574_c00002{letter-spacing:15.696000px;}
.ls4cd_c00002{letter-spacing:15.732000px;}
.ls6aa_c00002{letter-spacing:15.751872px;}
.lscb_c00002{letter-spacing:15.768000px;}
.ls687_c00002{letter-spacing:15.782400px;}
.ls302_c00002{letter-spacing:15.912000px;}
.ls872_c00002{letter-spacing:15.917184px;}
.ls8e0_c00002{letter-spacing:15.993936px;}
.ls873_c00002{letter-spacing:16.029360px;}
.ls46f_c00002{letter-spacing:16.056000px;}
.ls4c1_c00002{letter-spacing:16.063200px;}
.ls22c_c00002{letter-spacing:16.092000px;}
.ls56f_c00002{letter-spacing:16.106112px;}
.ls87e_c00002{letter-spacing:16.117920px;}
.ls6be_c00002{letter-spacing:16.128000px;}
.ls807_c00002{letter-spacing:16.133201px;}
.ls8df_c00002{letter-spacing:16.141536px;}
.ls91b_c00002{letter-spacing:16.151458px;}
.ls6d5_c00002{letter-spacing:16.188768px;}
.ls71f_c00002{letter-spacing:16.200576px;}
.ls893_c00002{letter-spacing:16.218401px;}
.ls8fc_c00002{letter-spacing:16.236000px;}
.ls365_c00002{letter-spacing:16.253282px;}
.ls808_c00002{letter-spacing:16.371792px;}
.ls925_c00002{letter-spacing:16.383600px;}
.ls883_c00002{letter-spacing:16.401312px;}
.ls6a8_c00002{letter-spacing:16.444800px;}
.ls64b_c00002{letter-spacing:16.460352px;}
.ls642_c00002{letter-spacing:16.472160px;}
.ls57e_c00002{letter-spacing:16.488000px;}
.ls8f9_c00002{letter-spacing:16.531200px;}
.ls60b_c00002{letter-spacing:16.577457px;}
.ls93d_c00002{letter-spacing:16.590240px;}
.ls8bb_c00002{letter-spacing:16.602048px;}
.ls107_c00002{letter-spacing:16.613856px;}
.ls3ad_c00002{letter-spacing:16.631568px;}
.ls2ec_c00002{letter-spacing:16.632000px;}
.ls8e1_c00002{letter-spacing:16.637472px;}
.ls1be_c00002{letter-spacing:16.678800px;}
.ls256_c00002{letter-spacing:16.704000px;}
.ls255_c00002{letter-spacing:16.776000px;}
.ls895_c00002{letter-spacing:16.790457px;}
.ls8c7_c00002{letter-spacing:16.832304px;}
.ls856_c00002{letter-spacing:16.838208px;}
.ls632_c00002{letter-spacing:16.848000px;}
.ls83c_c00002{letter-spacing:16.851314px;}
.ls350_c00002{letter-spacing:16.855920px;}
.ls1c2_c00002{letter-spacing:16.920000px;}
.ls2c4_c00002{letter-spacing:16.999200px;}
.ls2f3_c00002{letter-spacing:17.021232px;}
.ls486_c00002{letter-spacing:17.068464px;}
.ls581_c00002{letter-spacing:17.085600px;}
.ls1ce_c00002{letter-spacing:17.092080px;}
.lsff_c00002{letter-spacing:17.100828px;}
.ls868_c00002{letter-spacing:17.121600px;}
.ls85c_c00002{letter-spacing:17.145216px;}
.ls203_c00002{letter-spacing:17.292816px;}
.ls392_c00002{letter-spacing:17.334144px;}
.ls458_c00002{letter-spacing:17.352000px;}
.ls6d8_c00002{letter-spacing:17.357760px;}
.ls8cd_c00002{letter-spacing:17.428608px;}
.ls602_c00002{letter-spacing:17.496000px;}
.ls4de_c00002{letter-spacing:17.499456px;}
.ls5eb_c00002{letter-spacing:17.568000px;}
.ls86c_c00002{letter-spacing:17.623440px;}
.ls20c_c00002{letter-spacing:17.654400px;}
.ls488_c00002{letter-spacing:17.661600px;}
.ls84f_c00002{letter-spacing:17.712000px;}
.ls1c8_c00002{letter-spacing:17.759232px;}
.ls5a8_c00002{letter-spacing:17.770680px;}
.ls5ad_c00002{letter-spacing:17.771040px;}
.ls5ea_c00002{letter-spacing:17.784000px;}
.ls6f1_c00002{letter-spacing:17.856000px;}
.ls49d_c00002{letter-spacing:17.906832px;}
.ls835_c00002{letter-spacing:17.936352px;}
.ls2ed_c00002{letter-spacing:17.948160px;}
.ls4d9_c00002{letter-spacing:17.959968px;}
.ls80d_c00002{letter-spacing:17.965872px;}
.ls10c_c00002{letter-spacing:18.007200px;}
.ls46a_c00002{letter-spacing:18.043200px;}
.ls8b6_c00002{letter-spacing:18.054432px;}
.ls464_c00002{letter-spacing:18.072000px;}
.ls1bf_c00002{letter-spacing:18.083952px;}
.ls3b7_c00002{letter-spacing:18.160704px;}
.ls6c7_c00002{letter-spacing:18.216000px;}
.ls840_c00002{letter-spacing:18.266976px;}
.ls855_c00002{letter-spacing:18.320112px;}
.ls1e5_c00002{letter-spacing:18.349632px;}
.ls42f_c00002{letter-spacing:18.432000px;}
.lsec_c00002{letter-spacing:18.479520px;}
.ls6ba_c00002{letter-spacing:18.485424px;}
.ls814_c00002{letter-spacing:18.497232px;}
.ls222_c00002{letter-spacing:18.576000px;}
.ls4a6_c00002{letter-spacing:18.615312px;}
.ls29d_c00002{letter-spacing:18.633600px;}
.ls657_c00002{letter-spacing:18.656640px;}
.ls57d_c00002{letter-spacing:18.720000px;}
.ls5f9_c00002{letter-spacing:18.792000px;}
.ls273_c00002{letter-spacing:18.810144px;}
.ls90f_c00002{letter-spacing:18.839664px;}
.ls65e_c00002{letter-spacing:18.849600px;}
.ls87c_c00002{letter-spacing:18.922320px;}
.ls1fa_c00002{letter-spacing:18.936000px;}
.lsa6_c00002{letter-spacing:19.040400px;}
.ls67f_c00002{letter-spacing:19.080000px;}
.ls4ac_c00002{letter-spacing:19.144800px;}
.ls638_c00002{letter-spacing:19.224000px;}
.ls857_c00002{letter-spacing:19.247040px;}
.ls8cc_c00002{letter-spacing:19.261253px;}
.ls875_c00002{letter-spacing:19.306080px;}
.ls876_c00002{letter-spacing:19.311984px;}
.ls92c_c00002{letter-spacing:19.317888px;}
.ls641_c00002{letter-spacing:19.368000px;}
.ls828_c00002{letter-spacing:19.430064px;}
.ls71c_c00002{letter-spacing:19.432800px;}
.ls8ed_c00002{letter-spacing:19.624896px;}
.ls2f5_c00002{letter-spacing:19.654416px;}
.ls2a2_c00002{letter-spacing:19.719360px;}
.ls63f_c00002{letter-spacing:19.728000px;}
.ls110_c00002{letter-spacing:19.756800px;}
.ls5f8_c00002{letter-spacing:19.915200px;}
.ls7e0_c00002{letter-spacing:19.920096px;}
.ls4c9_c00002{letter-spacing:19.936800px;}
.ls4ca_c00002{letter-spacing:19.944000px;}
.ls348_c00002{letter-spacing:19.967328px;}
.ls467_c00002{letter-spacing:20.124000px;}
.ls8e6_c00002{letter-spacing:20.191680px;}
.ls892_c00002{letter-spacing:20.241051px;}
.ls2f6_c00002{letter-spacing:20.253223px;}
.ls576_c00002{letter-spacing:20.268000px;}
.ls63a_c00002{letter-spacing:20.304000px;}
.ls679_c00002{letter-spacing:20.308320px;}
.ls837_c00002{letter-spacing:20.439648px;}
.ls109_c00002{letter-spacing:20.522304px;}
.ls7fb_c00002{letter-spacing:20.528208px;}
.ls46b_c00002{letter-spacing:20.534400px;}
.ls6e8_c00002{letter-spacing:20.664000px;}
.ls939_c00002{letter-spacing:20.793888px;}
.ls5aa_c00002{letter-spacing:20.873964px;}
.ls40b_c00002{letter-spacing:20.882448px;}
.ls40c_c00002{letter-spacing:20.888352px;}
.ls40e_c00002{letter-spacing:20.894256px;}
.ls40d_c00002{letter-spacing:20.900160px;}
.ls2d4_c00002{letter-spacing:20.952000px;}
.ls4e0_c00002{letter-spacing:21.009600px;}
.ls8e5_c00002{letter-spacing:21.018240px;}
.ls725_c00002{letter-spacing:21.153600px;}
.ls87b_c00002{letter-spacing:21.189456px;}
.ls797_c00002{letter-spacing:21.205440px;}
.ls605_c00002{letter-spacing:21.278016px;}
.ls187_c00002{letter-spacing:21.319344px;}
.ls45c_c00002{letter-spacing:21.434400px;}
.ls829_c00002{letter-spacing:21.443328px;}
.ls2c2_c00002{letter-spacing:21.528000px;}
.ls562_c00002{letter-spacing:21.535200px;}
.ls169_c00002{letter-spacing:21.620448px;}
.ls898_c00002{letter-spacing:21.667680px;}
.ls2c1_c00002{letter-spacing:21.672000px;}
.ls731_c00002{letter-spacing:21.679200px;}
.ls4b3_c00002{letter-spacing:21.685392px;}
.lsc8_c00002{letter-spacing:21.744000px;}
.ls479_c00002{letter-spacing:21.785760px;}
.ls5a9_c00002{letter-spacing:21.841591px;}
.ls7fa_c00002{letter-spacing:21.880224px;}
.ls582_c00002{letter-spacing:21.888000px;}
.ls65f_c00002{letter-spacing:21.960000px;}
.ls5e8_c00002{letter-spacing:22.104000px;}
.ls104_c00002{letter-spacing:22.140000px;}
.ls6e7_c00002{letter-spacing:22.176000px;}
.ls5a0_c00002{letter-spacing:22.346705px;}
.ls84b_c00002{letter-spacing:22.411584px;}
.ls197_c00002{letter-spacing:22.423392px;}
.ls18e_c00002{letter-spacing:22.435200px;}
.ls4f7_c00002{letter-spacing:22.464000px;}
.ls5dd_c00002{letter-spacing:22.479996px;}
.ls83e_c00002{letter-spacing:22.529276px;}
.ls6b0_c00002{letter-spacing:22.752000px;}
.ls6a0_c00002{letter-spacing:22.773600px;}
.ls2eb_c00002{letter-spacing:22.824000px;}
.ls4b9_c00002{letter-spacing:22.917600px;}
.ls590_c00002{letter-spacing:22.948848px;}
.ls5e2_c00002{letter-spacing:22.975200px;}
.ls4fa_c00002{letter-spacing:23.004000px;}
.ls869_c00002{letter-spacing:23.025600px;}
.ls307_c00002{letter-spacing:23.112000px;}
.ls3fd_c00002{letter-spacing:23.143680px;}
.ls48f_c00002{letter-spacing:23.291280px;}
.ls658_c00002{letter-spacing:23.306400px;}
.ls656_c00002{letter-spacing:23.328000px;}
.ls2cc_c00002{letter-spacing:23.521536px;}
.ls6c3_c00002{letter-spacing:23.652000px;}
.ls344_c00002{letter-spacing:23.832000px;}
.ls845_c00002{letter-spacing:23.935073px;}
.ls299_c00002{letter-spacing:23.940000px;}
.ls34c_c00002{letter-spacing:24.192000px;}
.ls5d2_c00002{letter-spacing:24.202844px;}
.ls5f3_c00002{letter-spacing:24.328800px;}
.ls678_c00002{letter-spacing:24.336000px;}
.ls71b_c00002{letter-spacing:24.398520px;}
.ls66c_c00002{letter-spacing:24.984000px;}
.ls599_c00002{letter-spacing:25.243500px;}
.ls922_c00002{letter-spacing:25.334064px;}
.ls671_c00002{letter-spacing:25.344000px;}
.ls7da_c00002{letter-spacing:25.463952px;}
.ls834_c00002{letter-spacing:25.481664px;}
.ls4f3_c00002{letter-spacing:25.560000px;}
.ls5ba_c00002{letter-spacing:25.754400px;}
.ls94b_c00002{letter-spacing:25.995312px;}
.ls8b0_c00002{letter-spacing:26.036640px;}
.ls3da_c00002{letter-spacing:26.064000px;}
.ls92a_c00002{letter-spacing:26.072064px;}
.ls866_c00002{letter-spacing:26.213760px;}
.ls80c_c00002{letter-spacing:26.243280px;}
.ls66f_c00002{letter-spacing:26.280000px;}
.ls3fe_c00002{letter-spacing:26.533669px;}
.ls35b_c00002{letter-spacing:26.784000px;}
.ls92f_c00002{letter-spacing:26.857296px;}
.ls89b_c00002{letter-spacing:26.898811px;}
.ls2d2_c00002{letter-spacing:26.928000px;}
.ls723_c00002{letter-spacing:27.072000px;}
.ls72b_c00002{letter-spacing:27.108000px;}
.ls6eb_c00002{letter-spacing:27.288000px;}
.ls71e_c00002{letter-spacing:27.360000px;}
.ls7f4_c00002{letter-spacing:27.365040px;}
.ls5f1_c00002{letter-spacing:27.432000px;}
.ls689_c00002{letter-spacing:27.496800px;}
.ls682_c00002{letter-spacing:27.504000px;}
.ls547_c00002{letter-spacing:27.903744px;}
.ls7bd_c00002{letter-spacing:28.185120px;}
.ls59e_c00002{letter-spacing:28.249838px;}
.ls8b2_c00002{letter-spacing:28.356912px;}
.ls413_c00002{letter-spacing:28.420237px;}
.ls560_c00002{letter-spacing:28.584000px;}
.ls652_c00002{letter-spacing:28.728000px;}
.ls6fc_c00002{letter-spacing:28.857600px;}
.ls88f_c00002{letter-spacing:28.870560px;}
.ls4da_c00002{letter-spacing:29.232000px;}
.ls5da_c00002{letter-spacing:29.484000px;}
.ls116_c00002{letter-spacing:29.700000px;}
.ls13b_c00002{letter-spacing:29.927376px;}
.ls1fc_c00002{letter-spacing:30.614400px;}
.ls5c6_c00002{letter-spacing:31.267584px;}
.ls59c_c00002{letter-spacing:31.279392px;}
.ls726_c00002{letter-spacing:31.730400px;}
.ls6dc_c00002{letter-spacing:31.874400px;}
.ls681_c00002{letter-spacing:32.112000px;}
.ls61c_c00002{letter-spacing:32.572800px;}
.ls69d_c00002{letter-spacing:32.688000px;}
.ls59f_c00002{letter-spacing:32.861664px;}
.ls79f_c00002{letter-spacing:32.927040px;}
.ls6b4_c00002{letter-spacing:33.220800px;}
.ls693_c00002{letter-spacing:33.696000px;}
.ls86b_c00002{letter-spacing:33.818112px;}
.ls4f8_c00002{letter-spacing:34.120800px;}
.ls4a0_c00002{letter-spacing:34.396704px;}
.ls583_c00002{letter-spacing:34.704000px;}
.ls94c_c00002{letter-spacing:35.430968px;}
.ls59a_c00002{letter-spacing:36.727223px;}
.ls729_c00002{letter-spacing:37.512000px;}
.ls62c_c00002{letter-spacing:37.720800px;}
.ls571_c00002{letter-spacing:39.672000px;}
.ls6b1_c00002{letter-spacing:39.693600px;}
.ls59d_c00002{letter-spacing:41.534640px;}
.ls6f7_c00002{letter-spacing:41.860800px;}
.ls711_c00002{letter-spacing:42.552000px;}
.ls699_c00002{letter-spacing:42.861600px;}
.ls75b_c00002{letter-spacing:42.947258px;}
.ls49c_c00002{letter-spacing:43.606944px;}
.ls629_c00002{letter-spacing:43.704000px;}
.ls543_c00002{letter-spacing:43.903010px;}
.ls66e_c00002{letter-spacing:46.111680px;}
.ls541_c00002{letter-spacing:47.091771px;}
.ls5e0_c00002{letter-spacing:51.408000px;}
.ls64_c00002{letter-spacing:54.864000px;}
.ls4b6_c00002{letter-spacing:55.008000px;}
.ls7c3_c00002{letter-spacing:62.838432px;}
.ls491_c00002{letter-spacing:64.117440px;}
.ls5f5_c00002{letter-spacing:64.149120px;}
.ls35a_c00002{letter-spacing:66.816000px;}
.ls4e2_c00002{letter-spacing:73.519200px;}
.ls546_c00002{letter-spacing:87.374974px;}
.ls76b_c00002{letter-spacing:89.563680px;}
.ls650_c00002{letter-spacing:92.376000px;}
.ls769_c00002{letter-spacing:95.395635px;}
.ls5a1_c00002{letter-spacing:99.895680px;}
.ls597_c00002{letter-spacing:99.896880px;}
.ls359_c00002{letter-spacing:106.848000px;}
.ls1c_c00002{letter-spacing:107.532904px;}
.ls358_c00002{letter-spacing:110.136397px;}
.ls755_c00002{letter-spacing:114.013436px;}
.ls60c_c00002{letter-spacing:115.342346px;}
.ls74d_c00002{letter-spacing:117.034023px;}
.ls759_c00002{letter-spacing:120.164450px;}
.ls746_c00002{letter-spacing:126.370384px;}
.ls75d_c00002{letter-spacing:126.425303px;}
.ls76a_c00002{letter-spacing:130.163040px;}
.ls768_c00002{letter-spacing:132.466478px;}
.ls740_c00002{letter-spacing:132.521398px;}
.ls74f_c00002{letter-spacing:135.651824px;}
.ls748_c00002{letter-spacing:138.727331px;}
.ls783_c00002{letter-spacing:139.076784px;}
.ls180_c00002{letter-spacing:141.696000px;}
.ls749_c00002{letter-spacing:141.747918px;}
.ls76c_c00002{letter-spacing:141.769886px;}
.ls743_c00002{letter-spacing:141.802838px;}
.ls784_c00002{letter-spacing:143.589600px;}
.ls76e_c00002{letter-spacing:144.878345px;}
.ls77b_c00002{letter-spacing:146.626560px;}
.ls76d_c00002{letter-spacing:147.953852px;}
.ls742_c00002{letter-spacing:148.008772px;}
.ls753_c00002{letter-spacing:148.063692px;}
.ls148_c00002{letter-spacing:149.472000px;}
.ls77e_c00002{letter-spacing:149.663520px;}
.ls75e_c00002{letter-spacing:151.139199px;}
.ls745_c00002{letter-spacing:154.214706px;}
.ls5e3_c00002{letter-spacing:155.808000px;}
.ls752_c00002{letter-spacing:157.235293px;}
.ls77f_c00002{letter-spacing:158.571936px;}
.ls12d_c00002{letter-spacing:194.400000px;}
.ls751_c00002{letter-spacing:197.562240px;}
.ls747_c00002{letter-spacing:203.642496px;}
.ls60f_c00002{letter-spacing:212.343264px;}
.sc__c00002{text-shadow:none;}
.sc1_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2_c00002{text-shadow:-0.015em 0 rgb(38,38,38),0 0.015em rgb(38,38,38),0.015em 0 rgb(38,38,38),0 -0.015em  rgb(38,38,38);}
.sc0_c00002{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc1_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2_c00002{-webkit-text-stroke:0.015em rgb(38,38,38);text-shadow:none;}
.sc0_c00002{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa0_c00002{word-spacing:-32.649059px;}
.ws131_c00002{word-spacing:-31.440960px;}
.wsdc_c00002{word-spacing:-28.289088px;}
.wsa3_c00002{word-spacing:-28.273536px;}
.wsa2_c00002{word-spacing:-28.265760px;}
.wsaa_c00002{word-spacing:-28.234656px;}
.wsa5_c00002{word-spacing:-28.172448px;}
.wsfa_c00002{word-spacing:-26.136000px;}
.ws2c_c00002{word-spacing:-25.992000px;}
.ws37_c00002{word-spacing:-24.026400px;}
.ws36_c00002{word-spacing:-23.976000px;}
.ws50_c00002{word-spacing:-23.826960px;}
.wsef_c00002{word-spacing:-23.040475px;}
.wsee_c00002{word-spacing:-22.821390px;}
.wsec_c00002{word-spacing:-22.766618px;}
.wseb_c00002{word-spacing:-22.602304px;}
.wsf0_c00002{word-spacing:-22.571876px;}
.wsea_c00002{word-spacing:-22.547533px;}
.wsed_c00002{word-spacing:-22.383219px;}
.ws86_c00002{word-spacing:-22.378766px;}
.wse7_c00002{word-spacing:-22.352544px;}
.ws87_c00002{word-spacing:-22.330674px;}
.ws57_c00002{word-spacing:-22.193136px;}
.ws23_c00002{word-spacing:-22.140000px;}
.wsa8_c00002{word-spacing:-22.086864px;}
.wse8_c00002{word-spacing:-22.033728px;}
.ws1e_c00002{word-spacing:-21.980592px;}
.ws1_c00002{word-spacing:-21.927456px;}
.ws74_c00002{word-spacing:-21.897936px;}
.ws0_c00002{word-spacing:-21.874320px;}
.ws75_c00002{word-spacing:-21.815280px;}
.ws2_c00002{word-spacing:-21.768048px;}
.ws5e_c00002{word-spacing:-21.726720px;}
.ws7_c00002{word-spacing:-21.714912px;}
.wsa7_c00002{word-spacing:-21.709008px;}
.ws48_c00002{word-spacing:-21.690785px;}
.ws63_c00002{word-spacing:-21.667680px;}
.ws22_c00002{word-spacing:-21.661776px;}
.ws5f_c00002{word-spacing:-21.655872px;}
.ws83_c00002{word-spacing:-21.632256px;}
.ws35_c00002{word-spacing:-21.592374px;}
.ws58_c00002{word-spacing:-21.546064px;}
.ws5c_c00002{word-spacing:-21.499753px;}
.ws65_c00002{word-spacing:-21.256622px;}
.ws67_c00002{word-spacing:-21.060000px;}
.wsf_c00002{word-spacing:-21.043152px;}
.ws9e_c00002{word-spacing:-20.998224px;}
.wscc_c00002{word-spacing:-20.953296px;}
.ws1f_c00002{word-spacing:-20.947680px;}
.wsf8_c00002{word-spacing:-20.930832px;}
.wse9_c00002{word-spacing:-20.902752px;}
.wsa4_c00002{word-spacing:-20.857824px;}
.wsab_c00002{word-spacing:-20.812896px;}
.wsa9_c00002{word-spacing:-20.807280px;}
.wsfc_c00002{word-spacing:-20.762352px;}
.ws10_c00002{word-spacing:-20.632021px;}
.ws68_c00002{word-spacing:-20.621952px;}
.ws78_c00002{word-spacing:-20.504592px;}
.ws6a_c00002{word-spacing:-20.475072px;}
.wsf9_c00002{word-spacing:-20.417537px;}
.ws6b_c00002{word-spacing:-20.250720px;}
.wsf3_c00002{word-spacing:-20.049984px;}
.ws6c_c00002{word-spacing:-20.026368px;}
.ws11_c00002{word-spacing:-20.016000px;}
.ws123_c00002{word-spacing:-20.011968px;}
.ws124_c00002{word-spacing:-19.894752px;}
.wsf4_c00002{word-spacing:-19.890576px;}
.ws110_c00002{word-spacing:-19.889424px;}
.ws115_c00002{word-spacing:-19.852128px;}
.ws112_c00002{word-spacing:-19.814832px;}
.ws7d_c00002{word-spacing:-19.807920px;}
.wsf5_c00002{word-spacing:-19.790208px;}
.ws7a_c00002{word-spacing:-19.772496px;}
.ws16_c00002{word-spacing:-19.692288px;}
.ws7e_c00002{word-spacing:-19.660320px;}
.ws10d_c00002{word-spacing:-19.654992px;}
.ws10e_c00002{word-spacing:-19.612368px;}
.ws10b_c00002{word-spacing:-19.575072px;}
.ws10f_c00002{word-spacing:-19.532448px;}
.ws18_c00002{word-spacing:-19.495152px;}
.ws4d_c00002{word-spacing:-19.457183px;}
.ws84_c00002{word-spacing:-19.188000px;}
.ws4f_c00002{word-spacing:-19.116532px;}
.ws4e_c00002{word-spacing:-19.049738px;}
.ws4c_c00002{word-spacing:-18.982943px;}
.ws2a_c00002{word-spacing:-18.976264px;}
.ws136_c00002{word-spacing:-18.810911px;}
.wsf7_c00002{word-spacing:-18.681840px;}
.ws137_c00002{word-spacing:-18.142992px;}
.ws69_c00002{word-spacing:-18.000000px;}
.ws43_c00002{word-spacing:-17.910227px;}
.ws138_c00002{word-spacing:-17.759232px;}
.ws40_c00002{word-spacing:-17.739827px;}
.ws130_c00002{word-spacing:-17.720928px;}
.ws25_c00002{word-spacing:-17.685056px;}
.wsc1_c00002{word-spacing:-17.672688px;}
.ws44_c00002{word-spacing:-17.636370px;}
.wsd_c00002{word-spacing:-17.630284px;}
.wsac_c00002{word-spacing:-17.591904px;}
.ws11b_c00002{word-spacing:-17.577072px;}
.ws45_c00002{word-spacing:-17.575513px;}
.wsc8_c00002{word-spacing:-17.568144px;}
.wsc2_c00002{word-spacing:-17.539632px;}
.wsc_c00002{word-spacing:-17.520742px;}
.wsd1_c00002{word-spacing:-17.515872px;}
.ws20_c00002{word-spacing:-17.496399px;}
.wse3_c00002{word-spacing:-17.490313px;}
.wsae_c00002{word-spacing:-17.487360px;}
.ws21_c00002{word-spacing:-17.465970px;}
.wsb4_c00002{word-spacing:-17.458848px;}
.ws62_c00002{word-spacing:-17.453799px;}
.ws77_c00002{word-spacing:-17.447713px;}
.ws3c_c00002{word-spacing:-17.435542px;}
.wsba_c00002{word-spacing:-17.435088px;}
.wsaf_c00002{word-spacing:-17.413030px;}
.ws9_c00002{word-spacing:-17.411199px;}
.wsbd_c00002{word-spacing:-17.406576px;}
.wsc5_c00002{word-spacing:-17.382816px;}
.ws2b_c00002{word-spacing:-17.375472px;}
.ws2e_c00002{word-spacing:-17.356428px;}
.wsad_c00002{word-spacing:-17.354304px;}
.ws42_c00002{word-spacing:-17.325999px;}
.wscd_c00002{word-spacing:-17.325792px;}
.ws11d_c00002{word-spacing:-17.316000px;}
.ws3e_c00002{word-spacing:-17.301656px;}
.ws139_c00002{word-spacing:-17.271228px;}
.wsa_c00002{word-spacing:-17.246885px;}
.ws61_c00002{word-spacing:-17.222542px;}
.ws28_c00002{word-spacing:-17.210160px;}
.ws46_c00002{word-spacing:-17.204285px;}
.ws1c_c00002{word-spacing:-17.192114px;}
.wsdf_c00002{word-spacing:-17.186028px;}
.ws85_c00002{word-spacing:-17.167771px;}
.ws135_c00002{word-spacing:-17.162928px;}
.ws49_c00002{word-spacing:-17.157024px;}
.ws60_c00002{word-spacing:-17.109792px;}
.ws6_c00002{word-spacing:-17.103888px;}
.ws76_c00002{word-spacing:-17.050752px;}
.ws8_c00002{word-spacing:-16.997616px;}
.ws132_c00002{word-spacing:-16.968096px;}
.ws4a_c00002{word-spacing:-16.956288px;}
.wse_c00002{word-spacing:-16.944480px;}
.ws5d_c00002{word-spacing:-16.926768px;}
.ws26_c00002{word-spacing:-16.918257px;}
.ws59_c00002{word-spacing:-16.914960px;}
.ws4b_c00002{word-spacing:-16.891344px;}
.ws41_c00002{word-spacing:-16.838208px;}
.wse2_c00002{word-spacing:-16.810792px;}
.ws3d_c00002{word-spacing:-16.808688px;}
.ws3f_c00002{word-spacing:-16.785072px;}
.ws1d_c00002{word-spacing:-16.731936px;}
.wsf2_c00002{word-spacing:-16.718171px;}
.ws134_c00002{word-spacing:-16.708320px;}
.ws13b_c00002{word-spacing:-16.696512px;}
.ws71_c00002{word-spacing:-16.678800px;}
.wse0_c00002{word-spacing:-16.619760px;}
.wsfb_c00002{word-spacing:-16.527139px;}
.wse5_c00002{word-spacing:-16.454880px;}
.ws27_c00002{word-spacing:-16.413120px;}
.wse6_c00002{word-spacing:-16.308864px;}
.wsf6_c00002{word-spacing:-16.263936px;}
.wse4_c00002{word-spacing:-16.219008px;}
.ws6e_c00002{word-spacing:-16.174080px;}
.ws6f_c00002{word-spacing:-16.123536px;}
.wsde_c00002{word-spacing:-16.078608px;}
.ws6d_c00002{word-spacing:-16.033680px;}
.ws14_c00002{word-spacing:-16.009112px;}
.ws103_c00002{word-spacing:-15.888289px;}
.wsa6_c00002{word-spacing:-15.887664px;}
.ws100_c00002{word-spacing:-15.882797px;}
.ws126_c00002{word-spacing:-15.871813px;}
.ws117_c00002{word-spacing:-15.844353px;}
.ws104_c00002{word-spacing:-15.805909px;}
.ws51_c00002{word-spacing:-15.800417px;}
.ws102_c00002{word-spacing:-15.761973px;}
.ws82_c00002{word-spacing:-15.751872px;}
.ws17_c00002{word-spacing:-15.718037px;}
.ws15_c00002{word-spacing:-15.711506px;}
.ws11e_c00002{word-spacing:-15.690577px;}
.ws101_c00002{word-spacing:-15.679593px;}
.ws118_c00002{word-spacing:-15.652134px;}
.ws13_c00002{word-spacing:-15.641150px;}
.ws66_c00002{word-spacing:-15.612480px;}
.ws114_c00002{word-spacing:-15.597214px;}
.ws109_c00002{word-spacing:-15.580738px;}
.ws106_c00002{word-spacing:-15.558770px;}
.ws34_c00002{word-spacing:-15.531120px;}
.ws19_c00002{word-spacing:-15.514834px;}
.ws12a_c00002{word-spacing:-15.487374px;}
.ws10a_c00002{word-spacing:-15.476390px;}
.wsd0_c00002{word-spacing:-15.444000px;}
.ws11f_c00002{word-spacing:-15.408576px;}
.ws127_c00002{word-spacing:-15.371280px;}
.ws125_c00002{word-spacing:-15.328656px;}
.ws128_c00002{word-spacing:-15.291360px;}
.ws70_c00002{word-spacing:-15.267695px;}
.ws64_c00002{word-spacing:-15.248736px;}
.ws29_c00002{word-spacing:-15.222096px;}
.ws32_c00002{word-spacing:-15.211440px;}
.ws5b_c00002{word-spacing:-15.094224px;}
.ws38_c00002{word-spacing:-15.051600px;}
.ws122_c00002{word-spacing:-15.014304px;}
.ws121_c00002{word-spacing:-14.998320px;}
.ws33_c00002{word-spacing:-14.811840px;}
.wsb3_c00002{word-spacing:-14.152320px;}
.wsb0_c00002{word-spacing:-14.144544px;}
.wsb2_c00002{word-spacing:-14.117328px;}
.wsc7_c00002{word-spacing:-14.111857px;}
.wsb1_c00002{word-spacing:-14.082336px;}
.wsb6_c00002{word-spacing:-14.028587px;}
.wscf_c00002{word-spacing:-14.018790px;}
.wscb_c00002{word-spacing:-13.999197px;}
.ws3_c00002{word-spacing:-13.974706px;}
.wsbb_c00002{word-spacing:-13.945316px;}
.wsc3_c00002{word-spacing:-13.920825px;}
.wsb7_c00002{word-spacing:-13.891436px;}
.wsbc_c00002{word-spacing:-13.866944px;}
.wsd3_c00002{word-spacing:-13.864520px;}
.wsb5_c00002{word-spacing:-13.837555px;}
.wsb9_c00002{word-spacing:-13.808165px;}
.wsb8_c00002{word-spacing:-13.778776px;}
.wsd2_c00002{word-spacing:-13.754285px;}
.wsca_c00002{word-spacing:-13.690512px;}
.wsd5_c00002{word-spacing:-13.617134px;}
.wsc4_c00002{word-spacing:-13.609728px;}
.wsbe_c00002{word-spacing:-13.581216px;}
.wsce_c00002{word-spacing:-13.557456px;}
.ws30_c00002{word-spacing:-13.528944px;}
.ws99_c00002{word-spacing:-13.520160px;}
.ws31_c00002{word-spacing:-13.505184px;}
.wsc0_c00002{word-spacing:-13.476672px;}
.ws2f_c00002{word-spacing:-13.452912px;}
.wsbf_c00002{word-spacing:-13.367376px;}
.wsd6_c00002{word-spacing:-13.343616px;}
.wsc6_c00002{word-spacing:-13.210560px;}
.ws88_c00002{word-spacing:-12.711600px;}
.ws108_c00002{word-spacing:-12.173189px;}
.ws89_c00002{word-spacing:-12.143057px;}
.wsff_c00002{word-spacing:-12.134448px;}
.ws111_c00002{word-spacing:-11.809728px;}
.wsfd_c00002{word-spacing:-11.780496px;}
.ws107_c00002{word-spacing:-11.772144px;}
.ws129_c00002{word-spacing:-11.767968px;}
.ws120_c00002{word-spacing:-11.755440px;}
.wsfe_c00002{word-spacing:-11.688624px;}
.ws24_c00002{word-spacing:-11.609280px;}
.ws12_c00002{word-spacing:-11.429712px;}
.ws97_c00002{word-spacing:-11.058192px;}
.ws13a_c00002{word-spacing:-10.316010px;}
.ws1a_c00002{word-spacing:-10.152000px;}
.wsb_c00002{word-spacing:-10.008000px;}
.wsd4_c00002{word-spacing:-7.833600px;}
.ws3a_c00002{word-spacing:-6.120000px;}
.ws3b_c00002{word-spacing:-6.048000px;}
.ws9d_c00002{word-spacing:-5.889600px;}
.ws96_c00002{word-spacing:-5.591088px;}
.ws5_c00002{word-spacing:-5.549760px;}
.ws73_c00002{word-spacing:-5.449392px;}
.ws2d_c00002{word-spacing:-5.360832px;}
.ws4_c00002{word-spacing:-5.077440px;}
.ws116_c00002{word-spacing:-4.933728px;}
.ws7b_c00002{word-spacing:-4.452954px;}
.wsc9_c00002{word-spacing:-4.219776px;}
.ws52_c00002{word-spacing:-4.065275px;}
.ws79_c00002{word-spacing:-4.030641px;}
.ws56_c00002{word-spacing:-3.590293px;}
.ws53_c00002{word-spacing:-3.402898px;}
.ws55_c00002{word-spacing:-3.368264px;}
.ws47_c00002{word-spacing:-3.285544px;}
.ws54_c00002{word-spacing:-3.041714px;}
.ws72_c00002{word-spacing:-2.783195px;}
.ws94_c00002{word-spacing:-0.797040px;}
.ws8a_c00002{word-spacing:-0.761616px;}
.ws133_c00002{word-spacing:-0.749808px;}
.ws8e_c00002{word-spacing:-0.702576px;}
.wsf1_c00002{word-spacing:-0.690768px;}
.ws8c_c00002{word-spacing:-0.678960px;}
.ws113_c00002{word-spacing:-0.670021px;}
.ws80_c00002{word-spacing:-0.637632px;}
.ws7c_c00002{word-spacing:-0.608570px;}
.ws7f_c00002{word-spacing:-0.602208px;}
.ws12e_c00002{word-spacing:-0.596736px;}
.ws9b_c00002{word-spacing:-0.596304px;}
.ws119_c00002{word-spacing:-0.580752px;}
.ws93_c00002{word-spacing:-0.554976px;}
.ws90_c00002{word-spacing:-0.543168px;}
.ws95_c00002{word-spacing:-0.537264px;}
.ws8d_c00002{word-spacing:-0.525456px;}
.ws8b_c00002{word-spacing:-0.513648px;}
.ws5a_c00002{word-spacing:-0.505262px;}
.ws91_c00002{word-spacing:-0.501840px;}
.ws9a_c00002{word-spacing:-0.478224px;}
.ws8f_c00002{word-spacing:-0.472320px;}
.ws10c_c00002{word-spacing:-0.466818px;}
.ws92_c00002{word-spacing:-0.436896px;}
.ws105_c00002{word-spacing:-0.428374px;}
.ws12b_c00002{word-spacing:-0.426240px;}
.ws12f_c00002{word-spacing:-0.420912px;}
.wsd8_c00002{word-spacing:-0.413424px;}
.ws11c_c00002{word-spacing:-0.404928px;}
.ws11a_c00002{word-spacing:-0.394272px;}
.wse1_c00002{word-spacing:-0.377856px;}
.ws12c_c00002{word-spacing:-0.372960px;}
.ws9f_c00002{word-spacing:-0.302059px;}
.ws98_c00002{word-spacing:-0.301104px;}
.ws9c_c00002{word-spacing:-0.295200px;}
.wsdb_c00002{word-spacing:-0.294624px;}
.wsd9_c00002{word-spacing:-0.285120px;}
.wsda_c00002{word-spacing:-0.270864px;}
.ws12d_c00002{word-spacing:-0.266400px;}
.wsdd_c00002{word-spacing:-0.086400px;}
.ws39_c00002{word-spacing:-0.072000px;}
.ws81_c00002{word-spacing:-0.059040px;}
.wsd7_c00002{word-spacing:-0.047520px;}
.ws1b_c00002{word-spacing:0.000000px;}
.wsa1_c00002{word-spacing:68.040000px;}
._83_c00002{margin-left:-206.876160px;}
._8e_c00002{margin-left:-154.071914px;}
._8c_c00002{margin-left:-141.660047px;}
._8d_c00002{margin-left:-126.732854px;}
._8b_c00002{margin-left:-116.233265px;}
._82_c00002{margin-left:-115.019804px;}
._77_c00002{margin-left:-94.906080px;}
._78_c00002{margin-left:-93.579840px;}
._6b_c00002{margin-left:-87.139858px;}
._65_c00002{margin-left:-73.526400px;}
._91_c00002{margin-left:-57.824467px;}
._66_c00002{margin-left:-46.876248px;}
._68_c00002{margin-left:-44.541580px;}
._5e_c00002{margin-left:-43.425648px;}
._5f_c00002{margin-left:-42.387264px;}
._88_c00002{margin-left:-39.067200px;}
._75_c00002{margin-left:-37.244508px;}
._74_c00002{margin-left:-36.027367px;}
._94_c00002{margin-left:-34.906828px;}
._62_c00002{margin-left:-33.901200px;}
._80_c00002{margin-left:-31.881600px;}
._7f_c00002{margin-left:-30.818880px;}
._35_c00002{margin-left:-29.401920px;}
._76_c00002{margin-left:-28.338958px;}
._5a_c00002{margin-left:-27.223519px;}
._59_c00002{margin-left:-26.136000px;}
._42_c00002{margin-left:-24.652800px;}
._3e_c00002{margin-left:-22.848480px;}
._2c_c00002{margin-left:-21.608640px;}
._2f_c00002{margin-left:-19.837440px;}
._24_c00002{margin-left:-18.538560px;}
._30_c00002{margin-left:-17.475840px;}
._2e_c00002{margin-left:-16.058880px;}
._25_c00002{margin-left:-14.929920px;}
._26_c00002{margin-left:-13.726080px;}
._1b_c00002{margin-left:-12.051648px;}
._1c_c00002{margin-left:-10.581120px;}
._19_c00002{margin-left:-9.529056px;}
._5_c00002{margin-left:-8.165232px;}
._c_c00002{margin-left:-7.045097px;}
._8_c00002{margin-left:-5.785920px;}
._17_c00002{margin-left:-4.302720px;}
._18_c00002{margin-left:-2.786688px;}
._1_c00002{margin-left:-1.322496px;}
._2_c00002{width:1.056816px;}
._f_c00002{width:2.477952px;}
._e_c00002{width:3.513024px;}
._6_c00002{width:4.694976px;}
._0_c00002{width:5.976000px;}
._7_c00002{width:7.130880px;}
._3_c00002{width:8.206560px;}
._4_c00002{width:9.292896px;}
._d_c00002{width:10.867104px;}
._16_c00002{width:12.748896px;}
._15_c00002{width:13.896000px;}
._1e_c00002{width:15.048000px;}
._13_c00002{width:16.776000px;}
._12_c00002{width:17.856000px;}
._11_c00002{width:19.008000px;}
._2d_c00002{width:20.041769px;}
._1f_c00002{width:21.227191px;}
._14_c00002{width:22.413202px;}
._1a_c00002{width:23.749088px;}
._20_c00002{width:25.560000px;}
._a_c00002{width:27.144000px;}
._b_c00002{width:28.349483px;}
._1d_c00002{width:29.485033px;}
._10_c00002{width:31.248000px;}
._2b_c00002{width:32.265284px;}
._23_c00002{width:33.624000px;}
._21_c00002{width:35.352000px;}
._32_c00002{width:37.182167px;}
._43_c00002{width:39.168000px;}
._3d_c00002{width:40.176000px;}
._39_c00002{width:41.184000px;}
._9_c00002{width:42.768000px;}
._22_c00002{width:44.640000px;}
._4a_c00002{width:45.864000px;}
._41_c00002{width:47.232000px;}
._6e_c00002{width:48.456000px;}
._34_c00002{width:49.752000px;}
._31_c00002{width:51.624000px;}
._33_c00002{width:52.632000px;}
._46_c00002{width:54.144000px;}
._4f_c00002{width:56.160000px;}
._4e_c00002{width:57.888403px;}
._4b_c00002{width:59.372721px;}
._49_c00002{width:60.840000px;}
._85_c00002{width:62.136000px;}
._7b_c00002{width:65.327742px;}
._58_c00002{width:66.816000px;}
._40_c00002{width:68.872356px;}
._5b_c00002{width:71.247265px;}
._70_c00002{width:72.951231px;}
._67_c00002{width:74.502375px;}
._64_c00002{width:75.774435px;}
._63_c00002{width:78.641280px;}
._60_c00002{width:79.704000px;}
._89_c00002{width:82.800000px;}
._4d_c00002{width:83.863968px;}
._8a_c00002{width:85.348286px;}
._86_c00002{width:86.400000px;}
._6c_c00002{width:91.275840px;}
._69_c00002{width:93.902782px;}
._4c_c00002{width:95.664297px;}
._61_c00002{width:98.897904px;}
._48_c00002{width:100.872000px;}
._47_c00002{width:106.848000px;}
._93_c00002{width:107.890758px;}
._3a_c00002{width:110.136397px;}
._37_c00002{width:112.808170px;}
._7a_c00002{width:122.289931px;}
._81_c00002{width:124.007616px;}
._84_c00002{width:127.311960px;}
._8f_c00002{width:131.950232px;}
._54_c00002{width:133.959702px;}
._3b_c00002{width:138.312000px;}
._90_c00002{width:139.593600px;}
._3c_c00002{width:141.696000px;}
._6a_c00002{width:143.082720px;}
._29_c00002{width:145.092087px;}
._56_c00002{width:148.060723px;}
._5c_c00002{width:149.184000px;}
._38_c00002{width:151.502400px;}
._36_c00002{width:154.072211px;}
._5d_c00002{width:160.270200px;}
._50_c00002{width:162.310176px;}
._3f_c00002{width:165.724108px;}
._53_c00002{width:175.223743px;}
._57_c00002{width:183.672000px;}
._27_c00002{width:186.356128px;}
._55_c00002{width:189.324764px;}
._45_c00002{width:191.448000px;}
._2a_c00002{width:192.843648px;}
._6f_c00002{width:193.874168px;}
._51_c00002{width:195.855763px;}
._44_c00002{width:197.340081px;}
._28_c00002{width:198.407776px;}
._79_c00002{width:202.986365px;}
._73_c00002{width:207.019288px;}
._6d_c00002{width:210.718368px;}
._71_c00002{width:214.078704px;}
._7d_c00002{width:221.636160px;}
._7e_c00002{width:225.252336px;}
._87_c00002{width:227.130250px;}
._7c_c00002{width:247.560192px;}
._72_c00002{width:282.725444px;}
._52_c00002{width:363.960000px;}
._92_c00002{width:1658.280096px;}
.fcb_c00002{color:rgb(57,56,56);}
.fca_c00002{color:rgb(24,29,78);}
.fc8_c00002{color:rgb(0,0,255);}
.fc6_c00002{color:rgb(255,0,0);}
.fc4_c00002{color:rgb(118,209,197);}
.fc2_c00002{color:transparent;}
.fc9_c00002{color:rgb(26,26,26);}
.fc7_c00002{color:rgb(221,8,6);}
.fc5_c00002{color:rgb(255,255,255);}
.fc3_c00002{color:rgb(68,68,68);}
.fc1_c00002{color:rgb(38,38,38);}
.fc0_c00002{color:rgb(0,0,0);}
.fs1f_c00002{font-size:28.800000px;}
.fs5_c00002{font-size:36.000000px;}
.fs12_c00002{font-size:37.107951px;}
.fs11_c00002{font-size:38.880000px;}
.fs9_c00002{font-size:41.760000px;}
.fs8_c00002{font-size:43.045223px;}
.fse_c00002{font-size:47.520000px;}
.fs4_c00002{font-size:48.982495px;}
.fsb_c00002{font-size:53.280000px;}
.fsa_c00002{font-size:54.919767px;}
.fs7_c00002{font-size:56.160000px;}
.fs10_c00002{font-size:57.888403px;}
.fs2_c00002{font-size:59.040000px;}
.fsc_c00002{font-size:60.000000px;}
.fs3_c00002{font-size:60.857039px;}
.fsd_c00002{font-size:64.800000px;}
.fs1c_c00002{font-size:66.000000px;}
.fsf_c00002{font-size:66.794311px;}
.fs0_c00002{font-size:72.000000px;}
.fs1_c00002{font-size:74.215901px;}
.fs14_c00002{font-size:77.760000px;}
.fs1d_c00002{font-size:78.000000px;}
.fs13_c00002{font-size:80.153173px;}
.fs19_c00002{font-size:83.520000px;}
.fs16_c00002{font-size:86.400000px;}
.fs17_c00002{font-size:89.059082px;}
.fs6_c00002{font-size:95.040000px;}
.fs1b_c00002{font-size:96.000000px;}
.fs15_c00002{font-size:108.000000px;}
.fs18_c00002{font-size:111.323852px;}
.fs1e_c00002{font-size:120.000000px;}
.fs1a_c00002{font-size:168.000000px;}
.y141_c00002{bottom:-21.240000px;}
.y0_c00002{bottom:0.000000px;}
.ya4a_c00002{bottom:2.520000px;}
.y4ea_c00002{bottom:2.565000px;}
.ya3f_c00002{bottom:2.880000px;}
.y36_c00002{bottom:3.120000px;}
.y837_c00002{bottom:3.120150px;}
.yb0a_c00002{bottom:3.240000px;}
.ya05_c00002{bottom:3.600000px;}
.y8ee_c00002{bottom:4.320000px;}
.yb5d_c00002{bottom:5.760000px;}
.y49f_c00002{bottom:6.840000px;}
.yb4a_c00002{bottom:8.280000px;}
.y5ae_c00002{bottom:9.720000px;}
.y8e1_c00002{bottom:10.080000px;}
.y978_c00002{bottom:10.440000px;}
.y90a_c00002{bottom:12.600000px;}
.y416_c00002{bottom:14.040000px;}
.y19c_c00002{bottom:14.399850px;}
.y140_c00002{bottom:14.400000px;}
.y35a_c00002{bottom:14.760000px;}
.yb0f_c00002{bottom:15.120000px;}
.y652_c00002{bottom:15.480000px;}
.y804_c00002{bottom:16.200000px;}
.y413_c00002{bottom:16.560000px;}
.y1d9_c00002{bottom:16.920000px;}
.ya04_c00002{bottom:17.640000px;}
.ya4e_c00002{bottom:18.000000px;}
.y3ba_c00002{bottom:18.720000px;}
.y78f_c00002{bottom:19.080000px;}
.y41a_c00002{bottom:19.800000px;}
.y81b_c00002{bottom:20.160000px;}
.y8ed_c00002{bottom:21.960000px;}
.y49e_c00002{bottom:22.320000px;}
.yb5c_c00002{bottom:23.400000px;}
.y9d4_c00002{bottom:24.480000px;}
.y9d6_c00002{bottom:24.840000px;}
.y19a_c00002{bottom:25.560000px;}
.y4ec_c00002{bottom:25.920000px;}
.y977_c00002{bottom:26.280000px;}
.ybe9_c00002{bottom:28.080000px;}
.yb0e_c00002{bottom:29.520000px;}
.y8e0_c00002{bottom:30.600000px;}
.ya3e_c00002{bottom:30.960000px;}
.ya03_c00002{bottom:31.320000px;}
.ya4d_c00002{bottom:31.680000px;}
.y49c_c00002{bottom:32.040000px;}
.yad_c00002{bottom:33.120000px;}
.ya7f_c00002{bottom:33.480000px;}
.yae_c00002{bottom:34.560000px;}
.y846_c00002{bottom:34.579500px;}
.y4a2_c00002{bottom:34.605000px;}
.y836_c00002{bottom:34.744500px;}
.y35_c00002{bottom:34.744580px;}
.y3b8_c00002{bottom:34.920000px;}
.y909_c00002{bottom:35.280000px;}
.y4c1_c00002{bottom:35.640000px;}
.y9d3_c00002{bottom:38.520000px;}
.y9d5_c00002{bottom:38.880000px;}
.y764_c00002{bottom:39.240000px;}
.y5e8_c00002{bottom:39.600000px;}
.y431_c00002{bottom:40.320000px;}
.y306_c00002{bottom:41.040000px;}
.y199_c00002{bottom:41.400000px;}
.yb5b_c00002{bottom:41.760000px;}
.yb0d_c00002{bottom:43.560000px;}
.ya49_c00002{bottom:44.640000px;}
.yac8_c00002{bottom:45.000000px;}
.yaff_c00002{bottom:45.360000px;}
.ya4c_c00002{bottom:45.720000px;}
.yb09_c00002{bottom:46.080000px;}
.yaa3_c00002{bottom:46.440000px;}
.y803_c00002{bottom:47.520000px;}
.y8ec_c00002{bottom:47.880000px;}
.ya7e_c00002{bottom:49.680000px;}
.ya02_c00002{bottom:50.400000px;}
.y9d2_c00002{bottom:52.200000px;}
.y9d1_c00002{bottom:52.560000px;}
.y845_c00002{bottom:53.835000px;}
.y1_c00002{bottom:54.000000px;}
.y908_c00002{bottom:55.440000px;}
.y79a_c00002{bottom:55.478880px;}
.yc6b_c00002{bottom:55.480680px;}
.y150_c00002{bottom:55.481040px;}
.y202_c00002{bottom:55.482840px;}
.yef_c00002{bottom:55.485000px;}
.y744_c00002{bottom:55.486800px;}
.yaac_c00002{bottom:55.800000px;}
.yd42_c00002{bottom:55.845000px;}
.yc4b_c00002{bottom:56.205000px;}
.yc4a_c00002{bottom:56.925000px;}
.y8df_c00002{bottom:57.240000px;}
.yb0c_c00002{bottom:57.600000px;}
.yc1d_c00002{bottom:57.642840px;}
.y13ba_c00002{bottom:58.003920px;}
.ye48_c00002{bottom:58.005000px;}
.yf79_c00002{bottom:58.005720px;}
.yfa8_c00002{bottom:58.006800px;}
.y976_c00002{bottom:58.320000px;}
.ye45_c00002{bottom:58.365000px;}
.y975_c00002{bottom:58.680000px;}
.yb2f_c00002{bottom:58.725000px;}
.yac7_c00002{bottom:59.040000px;}
.yf45_c00002{bottom:59.085000px;}
.yf44_c00002{bottom:59.085720px;}
.yafe_c00002{bottom:59.400000px;}
.yb08_c00002{bottom:59.760000px;}
.ydce_c00002{bottom:59.798160px;}
.ydc4_c00002{bottom:59.801400px;}
.yded_c00002{bottom:59.805000px;}
.ya4b_c00002{bottom:60.120000px;}
.y1229_c00002{bottom:60.161040px;}
.y143e_c00002{bottom:60.165000px;}
.y143d_c00002{bottom:60.169680px;}
.yaa2_c00002{bottom:60.480000px;}
.y11e1_c00002{bottom:60.523920px;}
.y9e5_c00002{bottom:60.525000px;}
.y1053_c00002{bottom:60.525720px;}
.y14a1_c00002{bottom:60.526440px;}
.y1074_c00002{bottom:60.526800px;}
.y882_c00002{bottom:61.245000px;}
.y34_c00002{bottom:61.605000px;}
.y9ff_c00002{bottom:63.000000px;}
.y1385_c00002{bottom:63.045000px;}
.y1316_c00002{bottom:63.046800px;}
.yefd_c00002{bottom:63.398160px;}
.ye78_c00002{bottom:63.405000px;}
.ya7d_c00002{bottom:63.720000px;}
.ya01_c00002{bottom:64.080000px;}
.yd53_c00002{bottom:64.845000px;}
.yb49_c00002{bottom:65.520000px;}
.y108d_c00002{bottom:65.561040px;}
.y1235_c00002{bottom:65.563920px;}
.y1447_c00002{bottom:65.564640px;}
.y1236_c00002{bottom:65.565000px;}
.y1448_c00002{bottom:65.565720px;}
.y13f2_c00002{bottom:67.005000px;}
.y9d0_c00002{bottom:67.320000px;}
.ycbb_c00002{bottom:67.365000px;}
.ybe8_c00002{bottom:67.680000px;}
.yd1d_c00002{bottom:67.725000px;}
.y117d_c00002{bottom:68.081040px;}
.y1299_c00002{bottom:68.083920px;}
.yab2_c00002{bottom:68.085000px;}
.y13cb_c00002{bottom:68.085720px;}
.ycba_c00002{bottom:68.445000px;}
.y1415_c00002{bottom:69.165000px;}
.y1414_c00002{bottom:69.166800px;}
.yb3a_c00002{bottom:69.885000px;}
.y42f_c00002{bottom:70.242840px;}
.y113d_c00002{bottom:70.601040px;}
.y1027_c00002{bottom:70.603920px;}
.yd39_c00002{bottom:70.605000px;}
.y392_c00002{bottom:71.325000px;}
.yb11_c00002{bottom:71.640000px;}
.yaab_c00002{bottom:72.360000px;}
.yef8_c00002{bottom:72.405000px;}
.y116c_c00002{bottom:72.405720px;}
.y762_c00002{bottom:72.757800px;}
.y7a3_c00002{bottom:72.758880px;}
.y54f_c00002{bottom:72.762120px;}
.yee_c00002{bottom:72.762840px;}
.y353_c00002{bottom:72.764640px;}
.ycc_c00002{bottom:72.765000px;}
.y96_c00002{bottom:72.766800px;}
.y972_c00002{bottom:73.080000px;}
.y1326_c00002{bottom:73.123920px;}
.y10d0_c00002{bottom:73.125000px;}
.y8eb_c00002{bottom:73.800000px;}
.y912_c00002{bottom:73.845000px;}
.yb0b_c00002{bottom:74.160000px;}
.yece_c00002{bottom:74.202120px;}
.y614_c00002{bottom:74.205000px;}
.yb05_c00002{bottom:74.520000px;}
.yaa1_c00002{bottom:74.880000px;}
.y611_c00002{bottom:75.285000px;}
.y11b7_c00002{bottom:75.286800px;}
.y1108_c00002{bottom:75.641040px;}
.yf78_c00002{bottom:75.643920px;}
.yfa7_c00002{bottom:75.645000px;}
.yfa6_c00002{bottom:75.645720px;}
.y457_c00002{bottom:76.365000px;}
.yf43_c00002{bottom:76.369680px;}
.ya00_c00002{bottom:76.680000px;}
.y417_c00002{bottom:76.725000px;}
.y9fe_c00002{bottom:77.040000px;}
.y6b7_c00002{bottom:77.445000px;}
.y1228_c00002{bottom:77.449680px;}
.yc1c_c00002{bottom:77.805000px;}
.y1375_c00002{bottom:77.806800px;}
.y12c0_c00002{bottom:78.161040px;}
.y1072_c00002{bottom:78.163920px;}
.y14a0_c00002{bottom:78.164640px;}
.y1073_c00002{bottom:78.165000px;}
.y111e_c00002{bottom:78.165720px;}
.y8de_c00002{bottom:78.480000px;}
.ydfb_c00002{bottom:78.519600px;}
.y6c_c00002{bottom:78.885000px;}
.y1271_c00002{bottom:79.245000px;}
.y907_c00002{bottom:79.560000px;}
.y841_c00002{bottom:79.605000px;}
.ya7c_c00002{bottom:79.920000px;}
.y1343_c00002{bottom:80.326800px;}
.y1384_c00002{bottom:80.683920px;}
.y48d_c00002{bottom:80.685000px;}
.y1315_c00002{bottom:80.685720px;}
.ye47_c00002{bottom:81.045000px;}
.y610_c00002{bottom:81.405000px;}
.y9cf_c00002{bottom:81.720000px;}
.yd8d_c00002{bottom:81.761760px;}
.y9e4_c00002{bottom:81.765000px;}
.ydcd_c00002{bottom:82.841760px;}
.ydc3_c00002{bottom:82.845000px;}
.y108c_c00002{bottom:82.846800px;}
.y1446_c00002{bottom:82.848600px;}
.y12d3_c00002{bottom:82.849680px;}
.y11bf_c00002{bottom:82.851480px;}
.ydec_c00002{bottom:83.205000px;}
.y881_c00002{bottom:83.565000px;}
.yc1b_c00002{bottom:83.925000px;}
.y1495_c00002{bottom:84.281040px;}
.yd65_c00002{bottom:84.645000px;}
.yc9e_c00002{bottom:85.365000px;}
.y11e0_c00002{bottom:85.365720px;}
.y1052_c00002{bottom:85.366800px;}
.y117c_c00002{bottom:85.369680px;}
.ycb9_c00002{bottom:85.725000px;}
.yb10_c00002{bottom:86.400000px;}
.ye77_c00002{bottom:86.445000px;}
.yefc_c00002{bottom:86.801400px;}
.y1412_c00002{bottom:86.803920px;}
.y1413_c00002{bottom:86.805000px;}
.yafd_c00002{bottom:87.120000px;}
.y971_c00002{bottom:87.480000px;}
.yb06_c00002{bottom:87.840000px;}
.y42e_c00002{bottom:87.881040px;}
.y70b_c00002{bottom:87.885000px;}
.y13a4_c00002{bottom:87.885720px;}
.y14ac_c00002{bottom:87.886800px;}
.y113c_c00002{bottom:87.889680px;}
.yb04_c00002{bottom:88.200000px;}
.y33_c00002{bottom:88.245000px;}
.ya46_c00002{bottom:88.560000px;}
.yb31_c00002{bottom:88.605000px;}
.ya44_c00002{bottom:88.920000px;}
.yab1_c00002{bottom:88.965000px;}
.yaa0_c00002{bottom:89.640000px;}
.y116b_c00002{bottom:89.689680px;}
.yd55_c00002{bottom:90.042840px;}
.ybd4_c00002{bottom:90.045000px;}
.y54e_c00002{bottom:90.400320px;}
.yed_c00002{bottom:90.401040px;}
.y94_c00002{bottom:90.402840px;}
.y8a4_c00002{bottom:90.404640px;}
.y95_c00002{bottom:90.405000px;}
.y1455_c00002{bottom:90.405720px;}
.yccd_c00002{bottom:90.406800px;}
.y1234_c00002{bottom:90.407520px;}
.y10df_c00002{bottom:90.409680px;}
.y761_c00002{bottom:90.761040px;}
.y6b_c00002{bottom:90.765000px;}
.y6a_c00002{bottom:90.766800px;}
.yc49_c00002{bottom:91.485000px;}
.y124e_c00002{bottom:91.841040px;}
.y40f_c00002{bottom:91.845000px;}
.yd75_c00002{bottom:91.847520px;}
.y13f0_c00002{bottom:92.203920px;}
.y13f1_c00002{bottom:92.205000px;}
.ybe7_c00002{bottom:92.880000px;}
.y7a2_c00002{bottom:92.921040px;}
.y60f_c00002{bottom:92.925000px;}
.y146e_c00002{bottom:92.925720px;}
.y1155_c00002{bottom:92.926800px;}
.yfa5_c00002{bottom:92.929680px;}
.y391_c00002{bottom:93.285000px;}
.y48c_c00002{bottom:93.646800px;}
.ya7b_c00002{bottom:93.960000px;}
.y456_c00002{bottom:94.005000px;}
.y9fc_c00002{bottom:94.320000px;}
.y63d_c00002{bottom:94.365000px;}
.y911_c00002{bottom:94.725000px;}
.y9ce_c00002{bottom:95.400000px;}
.y1374_c00002{bottom:95.443920px;}
.yef7_c00002{bottom:95.445000px;}
.y1351_c00002{bottom:95.445720px;}
.y1358_c00002{bottom:95.446800px;}
.y1026_c00002{bottom:95.447520px;}
.y111d_c00002{bottom:95.449680px;}
.y9cd_c00002{bottom:95.760000px;}
.y897_c00002{bottom:95.805000px;}
.ycb_c00002{bottom:96.525000px;}
.y844_c00002{bottom:97.245000px;}
.yd41_c00002{bottom:97.605000px;}
.y1342_c00002{bottom:97.961040px;}
.yecd_c00002{bottom:97.965000px;}
.y146b_c00002{bottom:97.969680px;}
.yd64_c00002{bottom:98.685000px;}
.y60e_c00002{bottom:99.045000px;}
.y8ea_c00002{bottom:99.360000px;}
.yc21_c00002{bottom:100.485000px;}
.y108b_c00002{bottom:100.485720px;}
.yfcb_c00002{bottom:100.486800px;}
.y12e6_c00002{bottom:100.487520px;}
.y12a9_c00002{bottom:100.489680px;}
.y8a8_c00002{bottom:100.845000px;}
.y973_c00002{bottom:101.160000px;}
.y51c_c00002{bottom:101.205000px;}
.y970_c00002{bottom:101.520000px;}
.yf42_c00002{bottom:101.565000px;}
.y1494_c00002{bottom:101.565720px;}
.yb07_c00002{bottom:101.880000px;}
.yb03_c00002{bottom:102.240000px;}
.ya47_c00002{bottom:102.600000px;}
.y1227_c00002{bottom:102.643920px;}
.y9e3_c00002{bottom:102.645000px;}
.ya45_c00002{bottom:102.960000px;}
.y142f_c00002{bottom:103.001040px;}
.y1050_c00002{bottom:103.003920px;}
.y1051_c00002{bottom:103.005000px;}
.y11f1_c00002{bottom:103.005720px;}
.y12af_c00002{bottom:103.006800px;}
.ya43_c00002{bottom:103.320000px;}
.y1da_c00002{bottom:103.365000px;}
.ya9f_c00002{bottom:104.040000px;}
.ydfa_c00002{bottom:104.080680px;}
.y8dd_c00002{bottom:104.400000px;}
.y1270_c00002{bottom:104.441040px;}
.ye46_c00002{bottom:104.445000px;}
.yaaa_c00002{bottom:104.760000px;}
.ye44_c00002{bottom:104.805000px;}
.yb48_c00002{bottom:105.120000px;}
.y42d_c00002{bottom:105.165000px;}
.y70a_c00002{bottom:105.166800px;}
.y14ab_c00002{bottom:105.523920px;}
.y49a_c00002{bottom:105.525000px;}
.y1314_c00002{bottom:105.526800px;}
.y840_c00002{bottom:105.885000px;}
.ydcc_c00002{bottom:106.241760px;}
.ydc2_c00002{bottom:106.245000px;}
.yd52_c00002{bottom:106.605000px;}
.y835_c00002{bottom:106.965000px;}
.y6b6_c00002{bottom:107.325000px;}
.yd54_c00002{bottom:107.681040px;}
.y54d_c00002{bottom:107.684280px;}
.yec_c00002{bottom:107.685000px;}
.y93_c00002{bottom:107.686800px;}
.y3b6_c00002{bottom:107.688240px;}
.y3be_c00002{bottom:107.688600px;}
.y9fd_c00002{bottom:108.000000px;}
.yd38_c00002{bottom:108.041040px;}
.yff9_c00002{bottom:108.043920px;}
.y760_c00002{bottom:108.045000px;}
.y1233_c00002{bottom:108.045720px;}
.y75f_c00002{bottom:108.046800px;}
.y9fb_c00002{bottom:108.360000px;}
.y69_c00002{bottom:108.405000px;}
.y68_c00002{bottom:108.406800px;}
.yb96_c00002{bottom:108.765000px;}
.y124d_c00002{bottom:109.125000px;}
.y124c_c00002{bottom:109.129680px;}
.ye76_c00002{bottom:109.845000px;}
.y6a7_c00002{bottom:110.205000px;}
.y143c_c00002{bottom:110.205720px;}
.y6a6_c00002{bottom:110.206800px;}
.ybe6_c00002{bottom:110.520000px;}
.y13ae_c00002{bottom:110.561040px;}
.y1498_c00002{bottom:110.562840px;}
.y1196_c00002{bottom:110.563920px;}
.ybd3_c00002{bottom:110.565000px;}
.y1154_c00002{bottom:110.565720px;}
.y42c_c00002{bottom:111.285000px;}
.yb39_c00002{bottom:111.645000px;}
.y1411_c00002{bottom:111.646800px;}
.y9ca_c00002{bottom:112.320000px;}
.y1d7_c00002{bottom:112.725000px;}
.y113a_c00002{bottom:113.081040px;}
.y1357_c00002{bottom:113.083920px;}
.y113b_c00002{bottom:113.085000px;}
.y1025_c00002{bottom:113.085720px;}
.y896_c00002{bottom:113.445000px;}
.yca_c00002{bottom:113.805000px;}
.ycd1_c00002{bottom:114.165000px;}
.y2a1_c00002{bottom:114.525000px;}
.y116a_c00002{bottom:114.885000px;}
.y1169_c00002{bottom:114.887520px;}
.y974_c00002{bottom:115.200000px;}
.y1341_c00002{bottom:115.245000px;}
.yac6_c00002{bottom:115.559850px;}
.y96f_c00002{bottom:115.560000px;}
.y10de_c00002{bottom:115.601040px;}
.y1325_c00002{bottom:115.603920px;}
.yb30_c00002{bottom:115.605000px;}
.y910_c00002{bottom:115.965000px;}
.yb02_c00002{bottom:116.280000px;}
.y60d_c00002{bottom:116.325000px;}
.ybaf_c00002{bottom:116.685000px;}
.ya42_c00002{bottom:117.000000px;}
.y13ef_c00002{bottom:117.045000px;}
.y13ee_c00002{bottom:117.049680px;}
.y48b_c00002{bottom:117.405000px;}
.y11b6_c00002{bottom:117.765000px;}
.y11b5_c00002{bottom:117.766800px;}
.ya9e_c00002{bottom:118.080000px;}
.y1107_c00002{bottom:118.121040px;}
.y1202_c00002{bottom:118.122840px;}
.yf77_c00002{bottom:118.123920px;}
.yfca_c00002{bottom:118.124640px;}
.yfa4_c00002{bottom:118.125000px;}
.y12e5_c00002{bottom:118.125720px;}
.y717_c00002{bottom:118.485000px;}
.yd40_c00002{bottom:118.845000px;}
.yf41_c00002{bottom:118.849680px;}
.y1dc_c00002{bottom:119.205000px;}
.yd63_c00002{bottom:119.925000px;}
.y1373_c00002{bottom:120.285000px;}
.y142e_c00002{bottom:120.285720px;}
.y1372_c00002{bottom:120.286800px;}
.y111c_c00002{bottom:120.641040px;}
.y118d_c00002{bottom:120.643920px;}
.y455_c00002{bottom:120.645000px;}
.y12ae_c00002{bottom:120.645720px;}
.yaa9_c00002{bottom:120.960000px;}
.y412_c00002{bottom:121.005000px;}
.ye2f_c00002{bottom:121.358160px;}
.yc9d_c00002{bottom:121.365000px;}
.yc3a_c00002{bottom:121.725000px;}
.y126f_c00002{bottom:121.725720px;}
.ya7a_c00002{bottom:122.040000px;}
.y708_c00002{bottom:122.802840px;}
.y709_c00002{bottom:122.805000px;}
.y42b_c00002{bottom:122.806800px;}
.y9fa_c00002{bottom:123.120000px;}
.y1313_c00002{bottom:123.163920px;}
.y124_c00002{bottom:123.165000px;}
.yb47_c00002{bottom:123.480000px;}
.y9e2_c00002{bottom:123.525000px;}
.yb46_c00002{bottom:123.840000px;}
.yd90_c00002{bottom:123.885000px;}
.y6ee_c00002{bottom:124.605000px;}
.y8e9_c00002{bottom:125.280000px;}
.y188_c00002{bottom:125.318880px;}
.y201_c00002{bottom:125.321760px;}
.y54c_c00002{bottom:125.322480px;}
.y293_c00002{bottom:125.322840px;}
.y92_c00002{bottom:125.325000px;}
.y3b5_c00002{bottom:125.326440px;}
.y91_c00002{bottom:125.326800px;}
.yd34_c00002{bottom:125.327160px;}
.y10f0_c00002{bottom:125.681040px;}
.y12a8_c00002{bottom:125.681760px;}
.y12d2_c00002{bottom:125.683920px;}
.y75e_c00002{bottom:125.685000px;}
.y12ef_c00002{bottom:125.685720px;}
.y67_c00002{bottom:126.045000px;}
.y66_c00002{bottom:126.046800px;}
.ye10_c00002{bottom:126.405000px;}
.y9c9_c00002{bottom:126.720000px;}
.y1493_c00002{bottom:126.761040px;}
.y880_c00002{bottom:126.765000px;}
.y87f_c00002{bottom:127.125000px;}
.y6cc_c00002{bottom:127.485000px;}
.y1226_c00002{bottom:127.489680px;}
.y906_c00002{bottom:127.800000px;}
.y40e_c00002{bottom:127.845000px;}
.y104f_c00002{bottom:127.846800px;}
.y135e_c00002{bottom:127.848960px;}
.y1153_c00002{bottom:127.849680px;}
.y13ca_c00002{bottom:127.851480px;}
.yd8c_c00002{bottom:128.205000px;}
.y9c7_c00002{bottom:128.520000px;}
.y9cc_c00002{bottom:128.880000px;}
.y48a_c00002{bottom:128.921040px;}
.yb95_c00002{bottom:128.925000px;}
.y1410_c00002{bottom:129.283920px;}
.yd44_c00002{bottom:129.285000px;}
.ydcb_c00002{bottom:129.624840px;}
.ydf9_c00002{bottom:129.641760px;}
.ydc1_c00002{bottom:129.645000px;}
.yac5_c00002{bottom:129.960000px;}
.ydeb_c00002{bottom:130.003920px;}
.yd48_c00002{bottom:130.005000px;}
.y418_c00002{bottom:130.365000px;}
.y1139_c00002{bottom:130.369680px;}
.y14aa_c00002{bottom:130.371480px;}
.y895_c00002{bottom:130.725000px;}
.yab0_c00002{bottom:131.085000px;}
.y104_c00002{bottom:131.445000px;}
.y4ed_c00002{bottom:131.805000px;}
.y1168_c00002{bottom:132.171480px;}
.y687_c00002{bottom:132.521040px;}
.y688_c00002{bottom:132.525000px;}
.ya9d_c00002{bottom:132.840000px;}
.yb38_c00002{bottom:132.885000px;}
.yff8_c00002{bottom:132.885720px;}
.y10dd_c00002{bottom:132.886800px;}
.y10a7_c00002{bottom:132.889680px;}
.ye75_c00002{bottom:133.245000px;}
.y8cf_c00002{bottom:133.605000px;}
.y6a5_c00002{bottom:133.965000px;}
.y124a_c00002{bottom:134.323920px;}
.y124b_c00002{bottom:134.325000px;}
.yaa8_c00002{bottom:134.640000px;}
.yb7f_c00002{bottom:134.685000px;}
.y390_c00002{bottom:135.045000px;}
.ybe5_c00002{bottom:135.360000px;}
.y143b_c00002{bottom:135.401040px;}
.y1106_c00002{bottom:135.405000px;}
.y11b4_c00002{bottom:135.405720px;}
.y1195_c00002{bottom:135.406800px;}
.y1105_c00002{bottom:135.409680px;}
.y8dc_c00002{bottom:136.080000px;}
.y3b7_c00002{bottom:136.125000px;}
.ya79_c00002{bottom:136.440000px;}
.y7dd_c00002{bottom:136.485000px;}
.y9f9_c00002{bottom:136.800000px;}
.y8a7_c00002{bottom:136.845000px;}
.y142d_c00002{bottom:137.923920px;}
.ybad_c00002{bottom:137.925000px;}
.y1350_c00002{bottom:137.925720px;}
.y1024_c00002{bottom:137.926800px;}
.y111b_c00002{bottom:137.929680px;}
.ycb8_c00002{bottom:138.285000px;}
.y84e_c00002{bottom:139.725000px;}
.y707_c00002{bottom:140.441040px;}
.yc9_c00002{bottom:140.445000px;}
.y1324_c00002{bottom:140.445720px;}
.y9c8_c00002{bottom:140.760000px;}
.y843_c00002{bottom:140.805000px;}
.yb45_c00002{bottom:141.120000px;}
.yb32_c00002{bottom:141.165000px;}
.yed5_c00002{bottom:141.517440px;}
.yc13_c00002{bottom:141.885000px;}
.y13ed_c00002{bottom:142.245000px;}
.y13ec_c00002{bottom:142.245720px;}
.y9c6_c00002{bottom:142.560000px;}
.yc39_c00002{bottom:142.605000px;}
.y9cb_c00002{bottom:142.920000px;}
.y200_c00002{bottom:142.959960px;}
.y54b_c00002{bottom:142.960680px;}
.yeb_c00002{bottom:142.961040px;}
.y799_c00002{bottom:142.962840px;}
.y2ce_c00002{bottom:142.963560px;}
.y3b4_c00002{bottom:142.964640px;}
.y90_c00002{bottom:142.965000px;}
.yd33_c00002{bottom:142.965360px;}
.yfa3_c00002{bottom:142.965720px;}
.yf76_c00002{bottom:142.966800px;}
.y108a_c00002{bottom:142.967520px;}
.y10ef_c00002{bottom:142.969680px;}
.y5ad_c00002{bottom:142.971840px;}
.y75d_c00002{bottom:143.325000px;}
.y64_c00002{bottom:143.681040px;}
.y65_c00002{bottom:143.685000px;}
.yac4_c00002{bottom:144.000000px;}
.yf40_c00002{bottom:144.043920px;}
.y2a0_c00002{bottom:144.045000px;}
.y1492_c00002{bottom:144.049680px;}
.yecc_c00002{bottom:144.405000px;}
.ye2e_c00002{bottom:144.761400px;}
.y9e1_c00002{bottom:144.765000px;}
.yc48_c00002{bottom:145.125000px;}
.y187_c00002{bottom:145.481040px;}
.y60c_c00002{bottom:145.485000px;}
.y1071_c00002{bottom:145.485720px;}
.y12ad_c00002{bottom:145.486800px;}
.y135d_c00002{bottom:145.487160px;}
.y104e_c00002{bottom:145.489680px;}
.ya41_c00002{bottom:145.800000px;}
.y6ed_c00002{bottom:145.845000px;}
.y489_c00002{bottom:146.205000px;}
.y42a_c00002{bottom:146.565000px;}
.y905_c00002{bottom:146.880000px;}
.y126e_c00002{bottom:146.921040px;}
.y716_c00002{bottom:146.925000px;}
.y96e_c00002{bottom:147.240000px;}
.yc0a_c00002{bottom:147.285000px;}
.yb5a_c00002{bottom:147.599850px;}
.ya9c_c00002{bottom:147.600000px;}
.y1312_c00002{bottom:148.005000px;}
.y1311_c00002{bottom:148.005720px;}
.y1383_c00002{bottom:148.006800px;}
.y14a9_c00002{bottom:148.009680px;}
.y894_c00002{bottom:148.365000px;}
.y1d6_c00002{bottom:148.725000px;}
.yaa7_c00002{bottom:149.040000px;}
.y8f_c00002{bottom:149.085000px;}
.y75c_c00002{bottom:149.445000px;}
.y686_c00002{bottom:149.805000px;}
.y685_c00002{bottom:149.806800px;}
.y69a_c00002{bottom:150.165000px;}
.ya78_c00002{bottom:150.480000px;}
.y10cf_c00002{bottom:150.523920px;}
.y87e_c00002{bottom:150.525000px;}
.y12d1_c00002{bottom:150.526800px;}
.ybd2_c00002{bottom:150.885000px;}
.y8e8_c00002{bottom:151.200000px;}
.y5af_c00002{bottom:151.245000px;}
.y9f6_c00002{bottom:151.560000px;}
.y84c_c00002{bottom:151.605000px;}
.y90f_c00002{bottom:151.965000px;}
.y488_c00002{bottom:152.325000px;}
.ybe4_c00002{bottom:152.640000px;}
.ydca_c00002{bottom:152.668440px;}
.y1225_c00002{bottom:152.681040px;}
.ya06_c00002{bottom:152.685000px;}
.y143a_c00002{bottom:152.686800px;}
.y11df_c00002{bottom:153.041040px;}
.y1458_c00002{bottom:153.042840px;}
.y117b_c00002{bottom:153.043920px;}
.ydf8_c00002{bottom:153.045000px;}
.y1152_c00002{bottom:153.045720px;}
.y1201_c00002{bottom:153.046800px;}
.y32_c00002{bottom:153.405000px;}
.yb37_c00002{bottom:153.765000px;}
.yd74_c00002{bottom:154.125000px;}
.y140f_c00002{bottom:154.129680px;}
.y8ce_c00002{bottom:154.485000px;}
.yd36_c00002{bottom:154.845000px;}
.y13a3_c00002{bottom:155.561040px;}
.y1361_c00002{bottom:155.563920px;}
.ybac_c00002{bottom:155.565000px;}
.y13b2_c00002{bottom:155.565720px;}
.y1023_c00002{bottom:155.566800px;}
.ye7c_c00002{bottom:155.570040px;}
.y38f_c00002{bottom:155.925000px;}
.y9c5_c00002{bottom:156.240000px;}
.y6cb_c00002{bottom:156.285000px;}
.y9c4_c00002{bottom:156.600000px;}
.ycb6_c00002{bottom:156.645000px;}
.y802_c00002{bottom:157.005000px;}
.ycb7_c00002{bottom:157.365000px;}
.y1167_c00002{bottom:157.366800px;}
.y8a6_c00002{bottom:157.725000px;}
.yac3_c00002{bottom:158.040000px;}
.yff7_c00002{bottom:158.081040px;}
.y10a6_c00002{bottom:158.083920px;}
.y1a6_c00002{bottom:158.085000px;}
.yd37_c00002{bottom:158.445000px;}
.yb44_c00002{bottom:158.760000px;}
.yb7e_c00002{bottom:158.805000px;}
.y1249_c00002{bottom:159.165000px;}
.y1248_c00002{bottom:159.169680px;}
.y13eb_c00002{bottom:159.529680px;}
.y742_c00002{bottom:159.885000px;}
.ya40_c00002{bottom:160.200000px;}
.y56e_c00002{bottom:160.242840px;}
.y1ff_c00002{bottom:160.243920px;}
.y3e6_c00002{bottom:160.244640px;}
.y13e_c00002{bottom:160.245000px;}
.y84d_c00002{bottom:160.246440px;}
.y103_c00002{bottom:160.246800px;}
.y1d3_c00002{bottom:160.248600px;}
.yd32_c00002{bottom:160.249320px;}
.y149d_c00002{bottom:160.601040px;}
.y10be_c00002{bottom:160.602840px;}
.yf75_c00002{bottom:160.603920px;}
.y7a1_c00002{bottom:160.605000px;}
.y1089_c00002{bottom:160.605720px;}
.y75b_c00002{bottom:160.961040px;}
.y63_c00002{bottom:160.965000px;}
.y2cd_c00002{bottom:161.325000px;}
.y2cc_c00002{bottom:161.329320px;}
.ya96_c00002{bottom:161.640000px;}
.yd62_c00002{bottom:161.685000px;}
.ya9b_c00002{bottom:162.360000px;}
.y60b_c00002{bottom:162.764640px;}
.y186_c00002{bottom:162.765000px;}
.y185_c00002{bottom:162.766800px;}
.yaa6_c00002{bottom:163.080000px;}
.y111a_c00002{bottom:163.121040px;}
.y1070_c00002{bottom:163.123920px;}
.yc12_c00002{bottom:163.125000px;}
.y135c_c00002{bottom:163.125360px;}
.y12c9_c00002{bottom:163.125720px;}
.yc47_c00002{bottom:163.485000px;}
.y197_c00002{bottom:163.845000px;}
.y126d_c00002{bottom:164.205000px;}
.yb59_c00002{bottom:164.880000px;}
.y7dc_c00002{bottom:164.925000px;}
.yef6_c00002{bottom:165.281760px;}
.y926_c00002{bottom:165.285000px;}
.y9f5_c00002{bottom:165.600000px;}
.y1323_c00002{bottom:165.641040px;}
.y1310_c00002{bottom:165.643920px;}
.y9e0_c00002{bottom:165.645000px;}
.y904_c00002{bottom:165.960000px;}
.y8e_c00002{bottom:166.365000px;}
.y6ec_c00002{bottom:166.725000px;}
.ya77_c00002{bottom:167.040000px;}
.yed4_c00002{bottom:167.078520px;}
.y62_c00002{bottom:167.085000px;}
.y684_c00002{bottom:167.445000px;}
.y683_c00002{bottom:167.446800px;}
.yecb_c00002{bottom:167.447520px;}
.yd3f_c00002{bottom:167.805000px;}
.y10ee_c00002{bottom:168.161040px;}
.y12da_c00002{bottom:168.161760px;}
.y12d0_c00002{bottom:168.163920px;}
.yc09_c00002{bottom:168.165000px;}
.y141a_c00002{bottom:168.165720px;}
.y6a4_c00002{bottom:168.885000px;}
.yf3f_c00002{bottom:168.886800px;}
.y1491_c00002{bottom:169.241040px;}
.yb94_c00002{bottom:169.245000px;}
.ycdf_c00002{bottom:169.605000px;}
.y834_c00002{bottom:169.965000px;}
.y1224_c00002{bottom:169.966800px;}
.yd8f_c00002{bottom:170.325000px;}
.y11de_c00002{bottom:170.325720px;}
.y1439_c00002{bottom:170.328600px;}
.y104d_c00002{bottom:170.681040px;}
.y1497_c00002{bottom:170.682840px;}
.y1151_c00002{bottom:170.683920px;}
.y51b_c00002{bottom:170.685000px;}
.y128b_c00002{bottom:170.685720px;}
.y35b_c00002{bottom:171.045000px;}
.y96d_c00002{bottom:171.360000px;}
.y699_c00002{bottom:171.405000px;}
.ye7b_c00002{bottom:171.407520px;}
.yac2_c00002{bottom:172.080000px;}
.ybae_c00002{bottom:172.125000px;}
.y4d7_c00002{bottom:172.485000px;}
.y90e_c00002{bottom:172.845000px;}
.y13a2_c00002{bottom:172.845720px;}
.y14a8_c00002{bottom:173.201040px;}
.y1138_c00002{bottom:173.203920px;}
.y29f_c00002{bottom:173.205000px;}
.y1022_c00002{bottom:173.205720px;}
.y5ca_c00002{bottom:173.565000px;}
.y9c3_c00002{bottom:173.880000px;}
.ycb5_c00002{bottom:173.925000px;}
.y9c2_c00002{bottom:174.240000px;}
.y31_c00002{bottom:174.285000px;}
.yb36_c00002{bottom:174.645000px;}
.ya3c_c00002{bottom:174.960000px;}
.yd8b_c00002{bottom:175.005000px;}
.y1166_c00002{bottom:175.005720px;}
.ya3a_c00002{bottom:175.320000px;}
.y746_c00002{bottom:175.365000px;}
.y10dc_c00002{bottom:175.366800px;}
.y1232_c00002{bottom:175.368240px;}
.yff6_c00002{bottom:175.369680px;}
.y1454_c00002{bottom:175.370400px;}
.y10ce_c00002{bottom:175.371480px;}
.ya95_c00002{bottom:175.680000px;}
.y1bf_c00002{bottom:175.725000px;}
.ydc0_c00002{bottom:176.071320px;}
.ydc9_c00002{bottom:176.071680px;}
.yb2d_c00002{bottom:176.085000px;}
.yb7d_c00002{bottom:176.805000px;}
.y8e7_c00002{bottom:177.120000px;}
.y4b0_c00002{bottom:177.165000px;}
.yc9c_c00002{bottom:177.525000px;}
.yea7_c00002{bottom:177.874920px;}
.y1fe_c00002{bottom:177.882120px;}
.y251_c00002{bottom:177.882840px;}
.y11b3_c00002{bottom:177.883920px;}
.y45a_c00002{bottom:177.884640px;}
.y102_c00002{bottom:177.885000px;}
.y117a_c00002{bottom:177.885720px;}
.y101_c00002{bottom:177.886800px;}
.y13a7_c00002{bottom:177.889680px;}
.y301_c00002{bottom:178.245000px;}
.ybfa_c00002{bottom:178.605000px;}
.y61_c00002{bottom:178.606800px;}
.y8a5_c00002{bottom:178.965000px;}
.yd31_c00002{bottom:178.966800px;}
.y140d_c00002{bottom:179.321040px;}
.y140e_c00002{bottom:179.325000px;}
.y9f4_c00002{bottom:179.640000px;}
.y7ed_c00002{bottom:179.685000px;}
.y9f8_c00002{bottom:180.000000px;}
.y2ca_c00002{bottom:180.044640px;}
.y2cb_c00002{bottom:180.045000px;}
.y5ac_c00002{bottom:180.401040px;}
.y60a_c00002{bottom:180.402840px;}
.y184_c00002{bottom:180.405000px;}
.y134f_c00002{bottom:180.405720px;}
.y13b1_c00002{bottom:180.406800px;}
.y13c9_c00002{bottom:180.407520px;}
.y1119_c00002{bottom:180.409680px;}
.y741_c00002{bottom:180.765000px;}
.ya76_c00002{bottom:181.080000px;}
.y486_c00002{bottom:181.481040px;}
.y487_c00002{bottom:181.485000px;}
.yc88_c00002{bottom:181.845000px;}
.y126c_c00002{bottom:181.849680px;}
.yb58_c00002{bottom:182.520000px;}
.yb43_c00002{bottom:182.880000px;}
.y1340_c00002{bottom:182.921040px;}
.y925_c00002{bottom:182.925000px;}
.y146a_c00002{bottom:182.925720px;}
.y10a5_c00002{bottom:182.927520px;}
.y1322_c00002{bottom:182.929680px;}
.y903_c00002{bottom:183.240000px;}
.ybef_c00002{bottom:183.285000px;}
.y36c_c00002{bottom:183.645000px;}
.y8d_c00002{bottom:184.005000px;}
.y300_c00002{bottom:184.365000px;}
.y1247_c00002{bottom:184.365720px;}
.y13ea_c00002{bottom:184.723920px;}
.y1d5_c00002{bottom:184.725000px;}
.y681_c00002{bottom:185.081040px;}
.y682_c00002{bottom:185.085000px;}
.yf74_c00002{bottom:185.445000px;}
.y12d9_c00002{bottom:185.445720px;}
.yf73_c00002{bottom:185.446800px;}
.yfa2_c00002{bottom:185.449680px;}
.yd43_c00002{bottom:186.165000px;}
.y183_c00002{bottom:186.525000px;}
.ybd1_c00002{bottom:186.885000px;}
.yb01_c00002{bottom:187.200000px;}
.y83f_c00002{bottom:187.245000px;}
.yafb_c00002{bottom:187.560000px;}
.yb33_c00002{bottom:187.605000px;}
.y1223_c00002{bottom:187.605720px;}
.y628_c00002{bottom:187.965000px;}
.y106f_c00002{bottom:187.965720px;}
.y135b_c00002{bottom:187.966440px;}
.y118c_c00002{bottom:187.966800px;}
.y104c_c00002{bottom:187.969680px;}
.y9c1_c00002{bottom:188.280000px;}
.yc6a_c00002{bottom:188.325000px;}
.yd3e_c00002{bottom:188.685000px;}
.yc08_c00002{bottom:189.045000px;}
.ya39_c00002{bottom:189.360000px;}
.y87d_c00002{bottom:189.405000px;}
.ya3d_c00002{bottom:189.720000px;}
.y87c_c00002{bottom:189.765000px;}
.ya94_c00002{bottom:190.440000px;}
.yed3_c00002{bottom:190.481760px;}
.y429_c00002{bottom:190.485000px;}
.y1382_c00002{bottom:190.485720px;}
.y130f_c00002{bottom:190.486800px;}
.y14a7_c00002{bottom:190.489680px;}
.ya9a_c00002{bottom:190.800000px;}
.y7f9_c00002{bottom:190.845000px;}
.y51a_c00002{bottom:191.205000px;}
.yaa5_c00002{bottom:191.520000px;}
.y2bf_c00002{bottom:191.925000px;}
.y698_c00002{bottom:192.285000px;}
.y1165_c00002{bottom:192.289680px;}
.y4f5_c00002{bottom:192.645000px;}
.y96c_c00002{bottom:192.960000px;}
.y165_c00002{bottom:193.005000px;}
.y10db_c00002{bottom:193.005720px;}
.y1231_c00002{bottom:193.006440px;}
.y1419_c00002{bottom:193.006800px;}
.y10cd_c00002{bottom:193.009680px;}
.y7db_c00002{bottom:193.365000px;}
.y90d_c00002{bottom:193.725000px;}
.y9f3_c00002{bottom:194.040000px;}
.ycb4_c00002{bottom:194.085000px;}
.ybe3_c00002{bottom:194.400000px;}
.y5c9_c00002{bottom:194.445000px;}
.ya75_c00002{bottom:194.760000px;}
.y30_c00002{bottom:195.165000px;}
.y62c_c00002{bottom:195.518880px;}
.y1fd_c00002{bottom:195.520320px;}
.y5da_c00002{bottom:195.520680px;}
.y250_c00002{bottom:195.521040px;}
.yff_c00002{bottom:195.522840px;}
.y10bd_c00002{bottom:195.523920px;}
.y100_c00002{bottom:195.525000px;}
.y144b_c00002{bottom:195.525720px;}
.y1437_c00002{bottom:195.526800px;}
.y8c_c00002{bottom:195.531840px;}
.y2fe_c00002{bottom:195.882840px;}
.y2ff_c00002{bottom:195.885000px;}
.y798_c00002{bottom:196.240680px;}
.y5f_c00002{bottom:196.241040px;}
.y60_c00002{bottom:196.245000px;}
.y842_c00002{bottom:196.605000px;}
.y140c_c00002{bottom:196.609680px;}
.y5ea_c00002{bottom:196.965000px;}
.yc9b_c00002{bottom:197.325000px;}
.yd1c_c00002{bottom:197.685000px;}
.y56d_c00002{bottom:197.686800px;}
.y13a1_c00002{bottom:198.041040px;}
.y1137_c00002{bottom:198.043920px;}
.ycfc_c00002{bottom:198.045000px;}
.y13c8_c00002{bottom:198.045720px;}
.y1021_c00002{bottom:198.046800px;}
.y4af_c00002{bottom:198.405000px;}
.y485_c00002{bottom:198.765000px;}
.ydbf_c00002{bottom:199.114920px;}
.ydc8_c00002{bottom:199.115280px;}
.y706_c00002{bottom:199.125000px;}
.y2c9_c00002{bottom:199.129320px;}
.y123_c00002{bottom:199.485000px;}
.y122_c00002{bottom:199.489680px;}
.yb57_c00002{bottom:199.800000px;}
.y196_c00002{bottom:199.845000px;}
.y6b4_c00002{bottom:200.202840px;}
.y6b5_c00002{bottom:200.205000px;}
.yb42_c00002{bottom:200.520000px;}
.y1469_c00002{bottom:200.563920px;}
.yd73_c00002{bottom:200.565000px;}
.y10a4_c00002{bottom:200.565720px;}
.yff5_c00002{bottom:200.566800px;}
.y936_c00002{bottom:200.925000px;}
.yb00_c00002{bottom:201.240000px;}
.yea6_c00002{bottom:201.278160px;}
.y7c3_c00002{bottom:201.285000px;}
.yafa_c00002{bottom:201.600000px;}
.ydf7_c00002{bottom:201.630240px;}
.y13d_c00002{bottom:201.645000px;}
.ydea_c00002{bottom:202.005000px;}
.y67f_c00002{bottom:202.364640px;}
.y680_c00002{bottom:202.365000px;}
.yb2c_c00002{bottom:202.725000px;}
.y11b2_c00002{bottom:202.731480px;}
.y8e6_c00002{bottom:203.040000px;}
.y1179_c00002{bottom:203.081040px;}
.yf72_c00002{bottom:203.083920px;}
.yc87_c00002{bottom:203.085000px;}
.y1088_c00002{bottom:203.085720px;}
.ya3b_c00002{bottom:203.400000px;}
.y651_c00002{bottom:203.445000px;}
.ya37_c00002{bottom:203.760000px;}
.y182_c00002{bottom:203.805000px;}
.y715_c00002{bottom:204.165000px;}
.ya93_c00002{bottom:204.480000px;}
.y29e_c00002{bottom:204.525000px;}
.y484_c00002{bottom:204.885000px;}
.ya99_c00002{bottom:205.200000px;}
.yeaa_c00002{bottom:205.245000px;}
.yaa4_c00002{bottom:205.560000px;}
.y12c8_c00002{bottom:205.601040px;}
.y106e_c00002{bottom:205.603920px;}
.y135a_c00002{bottom:205.604640px;}
.yc38_c00002{bottom:205.605000px;}
.ya90_c00002{bottom:205.920000px;}
.y4ef_c00002{bottom:205.965000px;}
.y4bd_c00002{bottom:206.325000px;}
.yeca_c00002{bottom:206.687520px;}
.y1be_c00002{bottom:207.045000px;}
.y96b_c00002{bottom:207.720000px;}
.y87b_c00002{bottom:207.765000px;}
.y9f7_c00002{bottom:208.080000px;}
.y1381_c00002{bottom:208.123920px;}
.y87a_c00002{bottom:208.125000px;}
.y130e_c00002{bottom:208.125720px;}
.ya38_c00002{bottom:208.440000px;}
.ycde_c00002{bottom:208.485000px;}
.y4d6_c00002{bottom:208.845000px;}
.ya74_c00002{bottom:209.160000px;}
.yaaf_c00002{bottom:209.205000px;}
.y1246_c00002{bottom:209.206800px;}
.y601_c00002{bottom:209.565000px;}
.y13e9_c00002{bottom:209.567520px;}
.yb92_c00002{bottom:209.925000px;}
.yb93_c00002{bottom:210.285000px;}
.y705_c00002{bottom:210.286800px;}
.ye7a_c00002{bottom:210.287520px;}
.y10ed_c00002{bottom:210.641040px;}
.yfc9_c00002{bottom:210.643920px;}
.yea_c00002{bottom:210.645000px;}
.yfa1_c00002{bottom:210.645720px;}
.y75a_c00002{bottom:211.005000px;}
.y198_c00002{bottom:211.365000px;}
.yf3e_c00002{bottom:211.367520px;}
.y7f8_c00002{bottom:211.725000px;}
.yef5_c00002{bottom:211.727520px;}
.y627_c00002{bottom:212.085000px;}
.y902_c00002{bottom:212.400000px;}
.y519_c00002{bottom:212.445000px;}
.y1222_c00002{bottom:212.446800px;}
.y9c0_c00002{bottom:212.760000px;}
.y279_c00002{bottom:212.802840px;}
.y1fc_c00002{bottom:212.804280px;}
.y5d9_c00002{bottom:212.804640px;}
.y13c_c00002{bottom:212.805000px;}
.y11dd_c00002{bottom:212.805720px;}
.yfe_c00002{bottom:212.806800px;}
.y9bd_c00002{bottom:213.120000px;}
.y104b_c00002{bottom:213.161040px;}
.y1436_c00002{bottom:213.163920px;}
.y697_c00002{bottom:213.165000px;}
.y149c_c00002{bottom:213.165720px;}
.y2fd_c00002{bottom:213.166800px;}
.y811_c00002{bottom:213.169680px;}
.y5e_c00002{bottom:213.525000px;}
.yed2_c00002{bottom:213.885000px;}
.yd30_c00002{bottom:214.244640px;}
.y86b_c00002{bottom:214.245000px;}
.yc20_c00002{bottom:214.605000px;}
.y36b_c00002{bottom:214.965000px;}
.y5ab_c00002{bottom:215.322840px;}
.y8b_c00002{bottom:215.325000px;}
.y609_c00002{bottom:215.326800px;}
.yaf9_c00002{bottom:215.640000px;}
.y1020_c00002{bottom:215.681040px;}
.y12bf_c00002{bottom:215.683920px;}
.y7ec_c00002{bottom:215.685000px;}
.y14a6_c00002{bottom:215.685720px;}
.y8ba_c00002{bottom:216.045000px;}
.y797_c00002{bottom:216.402840px;}
.y2f_c00002{bottom:216.405000px;}
.y740_c00002{bottom:216.765000px;}
.yc46_c00002{bottom:217.125000px;}
.y1164_c00002{bottom:217.483920px;}
.y745_c00002{bottom:217.485000px;}
.y2c8_c00002{bottom:217.845000px;}
.yb41_c00002{bottom:218.160000px;}
.y1230_c00002{bottom:218.201760px;}
.yff3_c00002{bottom:218.203920px;}
.yff4_c00002{bottom:218.205000px;}
.ya36_c00002{bottom:218.520000px;}
.y63c_c00002{bottom:218.565000px;}
.ya92_c00002{bottom:218.880000px;}
.y13b_c00002{bottom:218.925000px;}
.y6ca_c00002{bottom:219.285000px;}
.ya98_c00002{bottom:219.600000px;}
.y5d_c00002{bottom:219.645000px;}
.ya97_c00002{bottom:219.960000px;}
.y801_c00002{bottom:220.005000px;}
.ya8f_c00002{bottom:220.320000px;}
.y4d5_c00002{bottom:220.365000px;}
.y10bc_c00002{bottom:220.366800px;}
.y1298_c00002{bottom:220.368240px;}
.y1087_c00002{bottom:220.369680px;}
.y1d4_c00002{bottom:220.725000px;}
.y893_c00002{bottom:221.085000px;}
.yd8a_c00002{bottom:221.441400px;}
.yd8e_c00002{bottom:221.442120px;}
.y8a_c00002{bottom:221.445000px;}
.y96a_c00002{bottom:221.760000px;}
.y140b_c00002{bottom:221.803920px;}
.y7da_c00002{bottom:221.805000px;}
.y9f2_c00002{bottom:222.120000px;}
.y6e9_c00002{bottom:222.165000px;}
.ydbe_c00002{bottom:222.518160px;}
.ydc7_c00002{bottom:222.518520px;}
.y483_c00002{bottom:222.525000px;}
.y9df_c00002{bottom:222.885000px;}
.y1371_c00002{bottom:222.885720px;}
.y13c7_c00002{bottom:222.886800px;}
.y1136_c00002{bottom:222.889680px;}
.y142c_c00002{bottom:222.891480px;}
.y83e_c00002{bottom:223.245000px;}
.y853_c00002{bottom:223.605000px;}
.y1a5_c00002{bottom:223.965000px;}
.yd72_c00002{bottom:224.325000px;}
.yea5_c00002{bottom:224.681400px;}
.y121_c00002{bottom:224.685000px;}
.y120_c00002{bottom:224.686800px;}
.ydf6_c00002{bottom:225.033480px;}
.ya48_c00002{bottom:225.045000px;}
.ya73_c00002{bottom:225.360000px;}
.y133f_c00002{bottom:225.401040px;}
.ybd0_c00002{bottom:225.405000px;}
.y10a3_c00002{bottom:225.406800px;}
.y227_c00002{bottom:225.765000px;}
.ye74_c00002{bottom:226.118160px;}
.ye79_c00002{bottom:226.125000px;}
.y33a_c00002{bottom:226.485000px;}
.y9bf_c00002{bottom:226.800000px;}
.y63e_c00002{bottom:226.845000px;}
.y1245_c00002{bottom:226.845720px;}
.y9bc_c00002{bottom:227.160000px;}
.y4bc_c00002{bottom:227.205000px;}
.y13e8_c00002{bottom:227.205720px;}
.y67e_c00002{bottom:227.559960px;}
.yef4_c00002{bottom:227.565000px;}
.y1bd_c00002{bottom:227.925000px;}
.y12d8_c00002{bottom:227.925720px;}
.yf71_c00002{bottom:227.926800px;}
.yfa0_c00002{bottom:227.929680px;}
.y1d2_c00002{bottom:228.285000px;}
.y77e_c00002{bottom:228.645000px;}
.yea9_c00002{bottom:228.647160px;}
.y8e5_c00002{bottom:228.960000px;}
.y879_c00002{bottom:229.005000px;}
.yf3d_c00002{bottom:229.005720px;}
.y1490_c00002{bottom:229.009680px;}
.ycdd_c00002{bottom:229.365000px;}
.yb2e_c00002{bottom:229.725000px;}
.y1221_c00002{bottom:230.083920px;}
.yaae_c00002{bottom:230.085000px;}
.y54a_c00002{bottom:230.438880px;}
.yfc_c00002{bottom:230.441040px;}
.y1fb_c00002{bottom:230.442480px;}
.y3f7_c00002{bottom:230.442840px;}
.yfd_c00002{bottom:230.445000px;}
.y118b_c00002{bottom:230.445720px;}
.y1457_c00002{bottom:230.446800px;}
.y591_c00002{bottom:230.447520px;}
.y104a_c00002{bottom:230.449680px;}
.yaec_c00002{bottom:230.760000px;}
.y2fc_c00002{bottom:230.805000px;}
.y5b_c00002{bottom:231.161040px;}
.y5c_c00002{bottom:231.165000px;}
.yd2f_c00002{bottom:231.882840px;}
.y414_c00002{bottom:231.885000px;}
.y126b_c00002{bottom:231.886800px;}
.y938_c00002{bottom:232.245000px;}
.yd3a_c00002{bottom:232.605000px;}
.ya35_c00002{bottom:232.920000px;}
.y88_c00002{bottom:232.961040px;}
.y56c_c00002{bottom:232.962840px;}
.y89_c00002{bottom:232.965000px;}
.y1321_c00002{bottom:232.965720px;}
.y130d_c00002{bottom:232.966800px;}
.y101f_c00002{bottom:232.969680px;}
.y6a3_c00002{bottom:232.971840px;}
.y518_c00002{bottom:233.325000px;}
.ya91_c00002{bottom:233.640000px;}
.y482_c00002{bottom:233.685000px;}
.y481_c00002{bottom:233.686800px;}
.ya8e_c00002{bottom:234.000000px;}
.y38e_c00002{bottom:234.045000px;}
.y4ae_c00002{bottom:234.405000px;}
.yc45_c00002{bottom:234.765000px;}
.yc11_c00002{bottom:235.125000px;}
.y5a9_c00002{bottom:235.481040px;}
.yfc8_c00002{bottom:235.482840px;}
.y5aa_c00002{bottom:235.485000px;}
.y122f_c00002{bottom:235.485720px;}
.y10da_c00002{bottom:235.486800px;}
.y12cf_c00002{bottom:235.487520px;}
.y13ab_c00002{bottom:235.489680px;}
.yb56_c00002{bottom:235.800000px;}
.y2c7_c00002{bottom:235.840680px;}
.y195_c00002{bottom:235.845000px;}
.y9f1_c00002{bottom:236.160000px;}
.y626_c00002{bottom:236.205000px;}
.y969_c00002{bottom:236.520000px;}
.y796_c00002{bottom:236.563560px;}
.y292_c00002{bottom:236.565000px;}
.y2fb_c00002{bottom:236.925000px;}
.y2e_c00002{bottom:237.285000px;}
.y45d_c00002{bottom:237.645000px;}
.y6b3_c00002{bottom:238.001040px;}
.y10bb_c00002{bottom:238.005000px;}
.y1435_c00002{bottom:238.005720px;}
.y1297_c00002{bottom:238.006440px;}
.y144a_c00002{bottom:238.006800px;}
.y10ba_c00002{bottom:238.009680px;}
.y810_c00002{bottom:238.363920px;}
.y49b_c00002{bottom:238.365000px;}
.y901_c00002{bottom:238.680000px;}
.y5e9_c00002{bottom:238.725000px;}
.y608_c00002{bottom:239.085000px;}
.y63b_c00002{bottom:239.445000px;}
.yd61_c00002{bottom:239.805000px;}
.y13a0_c00002{bottom:240.521040px;}
.y13c6_c00002{bottom:240.523920px;}
.yc98_c00002{bottom:240.525000px;}
.y12be_c00002{bottom:240.527520px;}
.y142b_c00002{bottom:240.529680px;}
.y9be_c00002{bottom:240.840000px;}
.y800_c00002{bottom:240.885000px;}
.y9bb_c00002{bottom:241.200000px;}
.yc9a_c00002{bottom:241.245000px;}
.y4d4_c00002{bottom:241.605000px;}
.y4ee_c00002{bottom:241.965000px;}
.y11e_c00002{bottom:242.321040px;}
.y11f_c00002{bottom:242.325000px;}
.y1163_c00002{bottom:242.329680px;}
.ye0f_c00002{bottom:242.685000px;}
.y1453_c00002{bottom:243.043920px;}
.y6e8_c00002{bottom:243.045000px;}
.yff2_c00002{bottom:243.045720px;}
.y7c2_c00002{bottom:243.405000px;}
.y9de_c00002{bottom:243.765000px;}
.ye43_c00002{bottom:244.125000px;}
.y19d_c00002{bottom:244.485000px;}
.y1a4_c00002{bottom:244.845000px;}
.yaeb_c00002{bottom:245.160000px;}
.ybaa_c00002{bottom:245.205000px;}
.ydbd_c00002{bottom:245.561760px;}
.ydc6_c00002{bottom:245.562120px;}
.yf70_c00002{bottom:245.563920px;}
.y361_c00002{bottom:245.565000px;}
.y11b1_c00002{bottom:245.565720px;}
.y1104_c00002{bottom:245.566800px;}
.y1445_c00002{bottom:245.567520px;}
.yb91_c00002{bottom:245.925000px;}
.y36a_c00002{bottom:246.285000px;}
.y140a_c00002{bottom:246.645000px;}
.y1409_c00002{bottom:246.649680px;}
.ya34_c00002{bottom:246.960000px;}
.y339_c00002{bottom:247.365000px;}
.y3b3_c00002{bottom:247.717800px;}
.y549_c00002{bottom:247.722840px;}
.y24f_c00002{bottom:247.725000px;}
.y1fa_c00002{bottom:247.726440px;}
.y13a_c00002{bottom:247.726800px;}
.y499_c00002{bottom:247.728600px;}
.y590_c00002{bottom:247.731480px;}
.y1370_c00002{bottom:248.081040px;}
.y138d_c00002{bottom:248.082840px;}
.y118a_c00002{bottom:248.083920px;}
.y181_c00002{bottom:248.085000px;}
.y1135_c00002{bottom:248.085720px;}
.y2fa_c00002{bottom:248.086800px;}
.y59_c00002{bottom:248.437800px;}
.y5a_c00002{bottom:248.445000px;}
.yde9_c00002{bottom:248.801040px;}
.y6bf_c00002{bottom:249.165000px;}
.yd2e_c00002{bottom:249.166800px;}
.ya8d_c00002{bottom:249.480000px;}
.yefb_c00002{bottom:249.518520px;}
.ye73_c00002{bottom:249.521400px;}
.y126a_c00002{bottom:249.521760px;}
.y449_c00002{bottom:249.525000px;}
.ya88_c00002{bottom:250.200000px;}
.y87_c00002{bottom:250.245000px;}
.y86_c00002{bottom:250.246800px;}
.y968_c00002{bottom:250.560000px;}
.ydf5_c00002{bottom:250.594560px;}
.y130c_c00002{bottom:250.603920px;}
.yc1f_c00002{bottom:250.605000px;}
.y9ee_c00002{bottom:250.920000px;}
.y226_c00002{bottom:250.965000px;}
.y225_c00002{bottom:250.969680px;}
.y480_c00002{bottom:251.325000px;}
.y7eb_c00002{bottom:251.685000px;}
.y1244_c00002{bottom:251.686800px;}
.y13e7_c00002{bottom:252.046800px;}
.y7d5_c00002{bottom:252.405000px;}
.y419_c00002{bottom:252.765000px;}
.y5a8_c00002{bottom:252.766800px;}
.yb55_c00002{bottom:253.080000px;}
.yfc7_c00002{bottom:253.121040px;}
.y10ec_c00002{bottom:253.122840px;}
.yf9e_c00002{bottom:253.123920px;}
.yf9f_c00002{bottom:253.125000px;}
.y12ce_c00002{bottom:253.125720px;}
.yb40_c00002{bottom:253.440000px;}
.yd35_c00002{bottom:253.485000px;}
.yb3e_c00002{bottom:253.800000px;}
.yfb_c00002{bottom:253.845000px;}
.yf3c_c00002{bottom:254.201040px;}
.y2c6_c00002{bottom:254.202120px;}
.y937_c00002{bottom:254.205000px;}
.y148f_c00002{bottom:254.205720px;}
.ye9_c00002{bottom:254.565000px;}
.y8e4_c00002{bottom:254.880000px;}
.y38d_c00002{bottom:254.925000px;}
.y1220_c00002{bottom:254.925720px;}
.y67d_c00002{bottom:254.929680px;}
.ya72_c00002{bottom:255.240000px;}
.y11dc_c00002{bottom:255.285000px;}
.y11db_c00002{bottom:255.289680px;}
.y1118_c00002{bottom:255.641040px;}
.y12de_c00002{bottom:255.642840px;}
.y1396_c00002{bottom:255.643920px;}
.yc1a_c00002{bottom:255.645000px;}
.y11ca_c00002{bottom:255.645720px;}
.y9ba_c00002{bottom:255.960000px;}
.yb7c_c00002{bottom:256.365000px;}
.yab_c00002{bottom:256.725000px;}
.y5c8_c00002{bottom:257.445000px;}
.y139f_c00002{bottom:257.805000px;}
.y139e_c00002{bottom:257.811480px;}
.y84b_c00002{bottom:258.165000px;}
.y101e_c00002{bottom:258.165720px;}
.yb1c_c00002{bottom:258.525000px;}
.y73f_c00002{bottom:258.885000px;}
.yc01_c00002{bottom:259.245000px;}
.y11d_c00002{bottom:259.605000px;}
.y11c_c00002{bottom:259.606800px;}
.yaea_c00002{bottom:259.920000px;}
.y14f_c00002{bottom:259.965000px;}
.yed1_c00002{bottom:260.325000px;}
.y122e_c00002{bottom:260.681040px;}
.y10a2_c00002{bottom:260.683920px;}
.y704_c00002{bottom:260.685000px;}
.y7a0_c00002{bottom:260.689320px;}
.ya33_c00002{bottom:261.000000px;}
.y878_c00002{bottom:261.045000px;}
.y29d_c00002{bottom:261.405000px;}
.y714_c00002{bottom:261.765000px;}
.ya89_c00002{bottom:262.080000px;}
.yc25_c00002{bottom:262.125000px;}
.y900_c00002{bottom:262.440000px;}
.yc6f_c00002{bottom:262.485000px;}
.yc8_c00002{bottom:262.845000px;}
.y11b0_c00002{bottom:262.849680px;}
.ye2d_c00002{bottom:263.198160px;}
.y1194_c00002{bottom:263.201040px;}
.y1296_c00002{bottom:263.201760px;}
.y10b9_c00002{bottom:263.202840px;}
.y1103_c00002{bottom:263.203920px;}
.y291_c00002{bottom:263.205000px;}
.y1178_c00002{bottom:263.205720px;}
.y80f_c00002{bottom:263.209680px;}
.ya8b_c00002{bottom:263.520000px;}
.ya8c_c00002{bottom:263.880000px;}
.y1bc_c00002{bottom:263.925000px;}
.y9f0_c00002{bottom:264.240000px;}
.y314_c00002{bottom:264.285000px;}
.ya87_c00002{bottom:264.600000px;}
.y8b9_c00002{bottom:264.645000px;}
.y9ed_c00002{bottom:264.960000px;}
.yde8_c00002{bottom:264.998160px;}
.y2de_c00002{bottom:265.005000px;}
.y967_c00002{bottom:265.320000px;}
.y352_c00002{bottom:265.362840px;}
.y52c_c00002{bottom:265.364280px;}
.y1f9_c00002{bottom:265.364640px;}
.y266_c00002{bottom:265.365000px;}
.y13c5_c00002{bottom:265.365720px;}
.y265_c00002{bottom:265.366800px;}
.y58f_c00002{bottom:265.369680px;}
.y134c_c00002{bottom:265.721040px;}
.y3b2_c00002{bottom:265.722840px;}
.y1134_c00002{bottom:265.723920px;}
.y2f9_c00002{bottom:265.725000px;}
.y12c7_c00002{bottom:265.725720px;}
.yb90_c00002{bottom:266.085000px;}
.y58_c00002{bottom:266.445000px;}
.yc78_c00002{bottom:266.805000px;}
.y1269_c00002{bottom:266.805720px;}
.ycf3_c00002{bottom:267.165000px;}
.y1162_c00002{bottom:267.521040px;}
.ye42_c00002{bottom:267.525000px;}
.y85_c00002{bottom:267.885000px;}
.y548_c00002{bottom:267.886800px;}
.y1452_c00002{bottom:267.891480px;}
.yc8d_c00002{bottom:268.245000px;}
.y338_c00002{bottom:268.605000px;}
.y26f_c00002{bottom:268.965000px;}
.ydc5_c00002{bottom:268.965360px;}
.y517_c00002{bottom:269.325000px;}
.y1243_c00002{bottom:269.325720px;}
.y13e6_c00002{bottom:269.683920px;}
.y759_c00002{bottom:269.685000px;}
.y9b9_c00002{bottom:270.000000px;}
.yc07_c00002{bottom:270.045000px;}
.y623_c00002{bottom:270.402840px;}
.y4ad_c00002{bottom:270.405000px;}
.yfc6_c00002{bottom:270.405720px;}
.y10eb_c00002{bottom:270.406800px;}
.yf6f_c00002{bottom:270.407520px;}
.y13b9_c00002{bottom:270.409680px;}
.y448_c00002{bottom:270.765000px;}
.yb3f_c00002{bottom:271.080000px;}
.ya71_c00002{bottom:271.440000px;}
.y139_c00002{bottom:271.485000px;}
.yf3b_c00002{bottom:271.489680px;}
.y194_c00002{bottom:271.845000px;}
.y1408_c00002{bottom:271.845720px;}
.yaad_c00002{bottom:272.205000px;}
.y121f_c00002{bottom:272.563920px;}
.yccc_c00002{bottom:272.565000px;}
.y6b1_c00002{bottom:272.922840px;}
.y6b2_c00002{bottom:272.925000px;}
.y1459_c00002{bottom:272.925720px;}
.y1189_c00002{bottom:272.926800px;}
.y1049_c00002{bottom:272.929680px;}
.y1356_c00002{bottom:272.930400px;}
.yefa_c00002{bottom:273.281400px;}
.y2d_c00002{bottom:273.285000px;}
.y2c5_c00002{bottom:273.286800px;}
.ydf4_c00002{bottom:273.638160px;}
.y794_c00002{bottom:273.641040px;}
.y795_c00002{bottom:273.645000px;}
.yae9_c00002{bottom:273.960000px;}
.y57_c00002{bottom:274.005000px;}
.yef3_c00002{bottom:274.361760px;}
.y8cd_c00002{bottom:274.365000px;}
.y164_c00002{bottom:274.725000px;}
.ya31_c00002{bottom:275.040000px;}
.yc30_c00002{bottom:275.085000px;}
.y369_c00002{bottom:275.445000px;}
.y1320_c00002{bottom:275.445720px;}
.y130b_c00002{bottom:275.449680px;}
.yc99_c00002{bottom:275.805000px;}
.y224_c00002{bottom:276.165000px;}
.y223_c00002{bottom:276.171840px;}
.y45c_c00002{bottom:276.525000px;}
.y8e3_c00002{bottom:276.840000px;}
.yc19_c00002{bottom:276.885000px;}
.y11b_c00002{bottom:277.245000px;}
.y4d3_c00002{bottom:277.605000px;}
.ya8a_c00002{bottom:277.920000px;}
.y4c3_c00002{bottom:277.965000px;}
.y1418_c00002{bottom:277.965720px;}
.y10d9_c00002{bottom:277.966800px;}
.yf9d_c00002{bottom:277.967520px;}
.y12a7_c00002{bottom:277.969680px;}
.y9ef_c00002{bottom:278.280000px;}
.y892_c00002{bottom:278.325000px;}
.y9ec_c00002{bottom:278.640000px;}
.y7d9_c00002{bottom:279.045000px;}
.y148e_c00002{bottom:279.046800px;}
.y966_c00002{bottom:279.360000px;}
.y79f_c00002{bottom:279.405000px;}
.y79e_c00002{bottom:279.406800px;}
.ya32_c00002{bottom:279.720000px;}
.y73e_c00002{bottom:279.765000px;}
.y67b_c00002{bottom:280.123920px;}
.y67c_c00002{bottom:280.125000px;}
.y11da_c00002{bottom:280.483920px;}
.yfa_c00002{bottom:280.485000px;}
.y1295_c00002{bottom:280.485720px;}
.y106d_c00002{bottom:280.486800px;}
.y1449_c00002{bottom:280.487520px;}
.y1193_c00002{bottom:280.489680px;}
.y14e_c00002{bottom:280.845000px;}
.y780_c00002{bottom:281.205000px;}
.yb73_c00002{bottom:281.565000px;}
.y877_c00002{bottom:281.925000px;}
.y876_c00002{bottom:282.285000px;}
.y263_c00002{bottom:283.001040px;}
.y52b_c00002{bottom:283.002480px;}
.y1f8_c00002{bottom:283.002840px;}
.y264_c00002{bottom:283.005000px;}
.y101d_c00002{bottom:283.006800px;}
.y138c_c00002{bottom:283.007520px;}
.y142a_c00002{bottom:283.009680px;}
.ycd2_c00002{bottom:283.365000px;}
.y9b2_c00002{bottom:283.680000px;}
.yc7_c00002{bottom:283.725000px;}
.y9b8_c00002{bottom:284.040000px;}
.yd2d_c00002{bottom:284.084280px;}
.y47f_c00002{bottom:284.085000px;}
.y8ff_c00002{bottom:284.400000px;}
.y180_c00002{bottom:284.445000px;}
.y1161_c00002{bottom:284.805000px;}
.y1160_c00002{bottom:284.809680px;}
.y1bb_c00002{bottom:285.165000px;}
.ya70_c00002{bottom:285.480000px;}
.y84_c00002{bottom:285.521040px;}
.y133e_c00002{bottom:285.523920px;}
.y547_c00002{bottom:285.525000px;}
.y12ee_c00002{bottom:285.525720px;}
.y10a1_c00002{bottom:285.526800px;}
.yff1_c00002{bottom:285.529680px;}
.y58e_c00002{bottom:285.531840px;}
.y3b1_c00002{bottom:285.885000px;}
.yb8e_c00002{bottom:286.245000px;}
.ye2c_c00002{bottom:286.601400px;}
.yb8f_c00002{bottom:286.605000px;}
.yb2b_c00002{bottom:286.965000px;}
.y78e_c00002{bottom:287.325000px;}
.y7ea_c00002{bottom:287.685000px;}
.y622_c00002{bottom:287.686800px;}
.yde7_c00002{bottom:288.041760px;}
.yfc5_c00002{bottom:288.043920px;}
.y5a7_c00002{bottom:288.045000px;}
.yf6e_c00002{bottom:288.045720px;}
.y1177_c00002{bottom:288.046800px;}
.y1150_c00002{bottom:288.047520px;}
.y80e_c00002{bottom:288.405000px;}
.yae8_c00002{bottom:288.720000px;}
.ye0e_c00002{bottom:289.108440px;}
.y278_c00002{bottom:289.125000px;}
.y1407_c00002{bottom:289.129680px;}
.ya30_c00002{bottom:289.440000px;}
.yc28_c00002{bottom:289.485000px;}
.y26e_c00002{bottom:289.845000px;}
.y45b_c00002{bottom:290.205000px;}
.y6b0_c00002{bottom:290.561040px;}
.y1133_c00002{bottom:290.563920px;}
.ye8_c00002{bottom:290.565000px;}
.y1188_c00002{bottom:290.565720px;}
.y12c6_c00002{bottom:290.566800px;}
.y2c4_c00002{bottom:290.925000px;}
.yea8_c00002{bottom:291.281760px;}
.y4ac_c00002{bottom:291.285000px;}
.y2dd_c00002{bottom:291.645000px;}
.y1268_c00002{bottom:292.001040px;}
.yb53_c00002{bottom:292.005000px;}
.ydbc_c00002{bottom:292.357080px;}
.y4bf_c00002{bottom:292.365000px;}
.y9eb_c00002{bottom:292.680000px;}
.yaa_c00002{bottom:292.725000px;}
.y131f_c00002{bottom:293.083920px;}
.yc69_c00002{bottom:293.085000px;}
.ya85_c00002{bottom:293.400000px;}
.y5c7_c00002{bottom:293.445000px;}
.y516_c00002{bottom:293.805000px;}
.y965_c00002{bottom:294.120000px;}
.yd71_c00002{bottom:294.161400px;}
.ycfb_c00002{bottom:294.165000px;}
.y1242_c00002{bottom:294.166800px;}
.yb1b_c00002{bottom:294.525000px;}
.y13e5_c00002{bottom:294.525720px;}
.yb35_c00002{bottom:294.885000px;}
.y86a_c00002{bottom:295.245000px;}
.y10cc_c00002{bottom:295.601040px;}
.y10d8_c00002{bottom:295.603920px;}
.y8cc_c00002{bottom:295.605000px;}
.yf9c_c00002{bottom:295.605720px;}
.y222_c00002{bottom:295.965000px;}
.y63a_c00002{bottom:296.325000px;}
.yf39_c00002{bottom:296.681040px;}
.yf3a_c00002{bottom:296.685000px;}
.y148d_c00002{bottom:296.685720px;}
.y8e2_c00002{bottom:297.000000px;}
.ydf3_c00002{bottom:297.041400px;}
.y2c3_c00002{bottom:297.045000px;}
.y79d_c00002{bottom:297.046800px;}
.y65c_c00002{bottom:297.405000px;}
.y121e_c00002{bottom:297.409680px;}
.y9b1_c00002{bottom:297.720000px;}
.yef2_c00002{bottom:297.761400px;}
.y703_c00002{bottom:297.765000px;}
.y9b7_c00002{bottom:298.080000px;}
.y1048_c00002{bottom:298.121040px;}
.y13b4_c00002{bottom:298.123560px;}
.y106c_c00002{bottom:298.123920px;}
.y138_c00002{bottom:298.125000px;}
.y1355_c00002{bottom:298.125720px;}
.y2f8_c00002{bottom:298.485000px;}
.y615_c00002{bottom:298.845000px;}
.y723_c00002{bottom:299.205000px;}
.ya6f_c00002{bottom:299.520000px;}
.y2be_c00002{bottom:299.925000px;}
.y262_c00002{bottom:300.285000px;}
.y52a_c00002{bottom:300.286440px;}
.y1f7_c00002{bottom:300.286800px;}
.y743_c00002{bottom:300.288600px;}
.y12bd_c00002{bottom:300.641040px;}
.y101c_c00002{bottom:300.643920px;}
.yb2a_c00002{bottom:300.645000px;}
.y138b_c00002{bottom:300.645720px;}
.y73d_c00002{bottom:301.005000px;}
.y852_c00002{bottom:301.365000px;}
.yd2c_c00002{bottom:301.722480px;}
.y14d_c00002{bottom:301.725000px;}
.ybf9_c00002{bottom:302.085000px;}
.y56_c00002{bottom:302.445000px;}
.y83_c00002{bottom:302.802840px;}
.y2c_c00002{bottom:302.805000px;}
.y546_c00002{bottom:302.806800px;}
.y13aa_c00002{bottom:303.161760px;}
.y12ed_c00002{bottom:303.163920px;}
.y6a2_c00002{bottom:303.165000px;}
.y10a0_c00002{bottom:303.165720px;}
.yae7_c00002{bottom:303.480000px;}
.y7ff_c00002{bottom:303.885000px;}
.y3b0_c00002{bottom:304.245000px;}
.y7f7_c00002{bottom:304.603920px;}
.y337_c00002{bottom:304.605000px;}
.y4be_c00002{bottom:304.965000px;}
.y67a_c00002{bottom:304.969680px;}
.y5a6_c00002{bottom:305.317800px;}
.y621_c00002{bottom:305.322840px;}
.y58d_c00002{bottom:305.325000px;}
.y58c_c00002{bottom:305.326800px;}
.y1192_c00002{bottom:305.681040px;}
.y1395_c00002{bottom:305.681760px;}
.y1176_c00002{bottom:305.683920px;}
.y17f_c00002{bottom:305.685000px;}
.y114f_c00002{bottom:305.685720px;}
.y1ba_c00002{bottom:306.045000px;}
.y351_c00002{bottom:306.405000px;}
.y9ea_c00002{bottom:306.720000px;}
.y8da_c00002{bottom:306.765000px;}
.y368_c00002{bottom:307.125000px;}
.yed0_c00002{bottom:307.127880px;}
.y7d8_c00002{bottom:307.485000px;}
.ya84_c00002{bottom:307.800000px;}
.y193_c00002{bottom:307.845000px;}
.y6af_c00002{bottom:307.846800px;}
.y13c4_c00002{bottom:307.849680px;}
.y964_c00002{bottom:308.160000px;}
.y1432_c00002{bottom:308.201040px;}
.y12c5_c00002{bottom:308.203920px;}
.y4e9_c00002{bottom:308.205000px;}
.y1429_c00002{bottom:308.205720px;}
.y793_c00002{bottom:308.565000px;}
.yd08_c00002{bottom:308.925000px;}
.y7d4_c00002{bottom:309.285000px;}
.y1267_c00002{bottom:309.289680px;}
.ye2b_c00002{bottom:309.645000px;}
.y115e_c00002{bottom:310.001040px;}
.y115f_c00002{bottom:310.005000px;}
.y3af_c00002{bottom:310.365000px;}
.yff0_c00002{bottom:310.723920px;}
.y163_c00002{bottom:310.725000px;}
.y8fe_c00002{bottom:311.040000px;}
.yc1e_c00002{bottom:311.085000px;}
.y607_c00002{bottom:311.445000px;}
.yde6_c00002{bottom:311.447520px;}
.y9b0_c00002{bottom:311.760000px;}
.y1241_c00002{bottom:311.803920px;}
.y38c_c00002{bottom:311.805000px;}
.y9b6_c00002{bottom:312.120000px;}
.y13e4_c00002{bottom:312.163920px;}
.y290_c00002{bottom:312.165000px;}
.ye0d_c00002{bottom:312.511680px;}
.y447_c00002{bottom:312.525000px;}
.y917_c00002{bottom:312.885000px;}
.y11af_c00002{bottom:312.885720px;}
.yf6d_c00002{bottom:312.886800px;}
.y12e4_c00002{bottom:312.888600px;}
.y10ea_c00002{bottom:312.889680px;}
.y13b8_c00002{bottom:312.891480px;}
.ybcf_c00002{bottom:313.245000px;}
.y4d2_c00002{bottom:313.605000px;}
.y1e8_c00002{bottom:313.965000px;}
.yf38_c00002{bottom:313.969680px;}
.y1406_c00002{bottom:314.321040px;}
.yd89_c00002{bottom:314.321760px;}
.y515_c00002{bottom:314.325000px;}
.y2c2_c00002{bottom:314.685000px;}
.ydbb_c00002{bottom:315.400680px;}
.yec9_c00002{bottom:315.402120px;}
.y869_c00002{bottom:315.405000px;}
.y1187_c00002{bottom:315.406800px;}
.y13b3_c00002{bottom:315.407520px;}
.y1132_c00002{bottom:315.409680px;}
.y1047_c00002{bottom:315.411480px;}
.y358_c00002{bottom:315.765000px;}
.y83d_c00002{bottom:316.485000px;}
.y1a3_c00002{bottom:316.845000px;}
.yae6_c00002{bottom:317.160000px;}
.yd6f_c00002{bottom:317.201760px;}
.yd70_c00002{bottom:317.205000px;}
.y639_c00002{bottom:317.565000px;}
.y40d_c00002{bottom:317.922840px;}
.y529_c00002{bottom:317.924640px;}
.y1f6_c00002{bottom:317.925000px;}
.y277_c00002{bottom:317.926800px;}
.y12bc_c00002{bottom:317.929680px;}
.y350_c00002{bottom:318.285000px;}
.y919_c00002{bottom:318.645000px;}
.y702_c00002{bottom:319.005000px;}
.ya2f_c00002{bottom:319.320000px;}
.yd2b_c00002{bottom:319.360680px;}
.yc6e_c00002{bottom:319.365000px;}
.yc6_c00002{bottom:319.725000px;}
.ydf2_c00002{bottom:320.085000px;}
.y82_c00002{bottom:320.441040px;}
.y56b_c00002{bottom:320.445000px;}
.y1209_c00002{bottom:320.445720px;}
.yf9b_c00002{bottom:320.446800px;}
.y12a6_c00002{bottom:320.449680px;}
.yc77_c00002{bottom:320.805000px;}
.y9e9_c00002{bottom:321.120000px;}
.y80d_c00002{bottom:321.165000px;}
.y1e9_c00002{bottom:321.525000px;}
.y148c_c00002{bottom:321.526800px;}
.yef9_c00002{bottom:321.881760px;}
.yb52_c00002{bottom:321.885000px;}
.ya82_c00002{bottom:322.200000px;}
.y3ae_c00002{bottom:322.241040px;}
.y84a_c00002{bottom:322.245000px;}
.yea4_c00002{bottom:322.247520px;}
.ya83_c00002{bottom:322.560000px;}
.y7ce_c00002{bottom:322.605000px;}
.y620_c00002{bottom:322.606800px;}
.y963_c00002{bottom:322.920000px;}
.y11d9_c00002{bottom:322.963920px;}
.y14c_c00002{bottom:322.965000px;}
.y1394_c00002{bottom:322.965720px;}
.y1294_c00002{bottom:322.966800px;}
.y10b8_c00002{bottom:322.967520px;}
.y1117_c00002{bottom:322.969680px;}
.y2dc_c00002{bottom:323.325000px;}
.yecf_c00002{bottom:323.327520px;}
.y221_c00002{bottom:323.685000px;}
.y220_c00002{bottom:323.686800px;}
.y1f5_c00002{bottom:324.045000px;}
.y4f4_c00002{bottom:324.405000px;}
.yc44_c00002{bottom:324.765000px;}
.yc43_c00002{bottom:325.125000px;}
.y336_c00002{bottom:325.485000px;}
.y101b_c00002{bottom:325.486800px;}
.y1428_c00002{bottom:325.489680px;}
.y9af_c00002{bottom:325.800000px;}
.y29c_c00002{bottom:325.845000px;}
.y9b5_c00002{bottom:326.160000px;}
.y477_c00002{bottom:326.205000px;}
.y17e_c00002{bottom:326.565000px;}
.ye7_c00002{bottom:326.925000px;}
.y2a_c00002{bottom:327.278880px;}
.y2b_c00002{bottom:327.285000px;}
.y115d_c00002{bottom:327.289680px;}
.y9dd_c00002{bottom:327.645000px;}
.y12ec_c00002{bottom:328.005000px;}
.y1468_c00002{bottom:328.005720px;}
.y109f_c00002{bottom:328.006800px;}
.ybe2_c00002{bottom:328.365000px;}
.ya9_c00002{bottom:328.725000px;}
.y58b_c00002{bottom:329.085000px;}
.yb3d_c00002{bottom:329.400000px;}
.y5c6_c00002{bottom:329.445000px;}
.ybee_c00002{bottom:329.805000px;}
.y667_c00002{bottom:330.165000px;}
.y1102_c00002{bottom:330.522840px;}
.yf6c_c00002{bottom:330.525000px;}
.y1086_c00002{bottom:330.525720px;}
.y114e_c00002{bottom:330.526800px;}
.yf6b_c00002{bottom:330.529680px;}
.ybce_c00002{bottom:330.885000px;}
.y11a_c00002{bottom:331.605000px;}
.y1405_c00002{bottom:331.609680px;}
.yae5_c00002{bottom:331.920000px;}
.y162_c00002{bottom:331.965000px;}
.y8fd_c00002{bottom:332.280000px;}
.y2c1_c00002{bottom:332.325000px;}
.y758_c00002{bottom:332.685000px;}
.y136f_c00002{bottom:333.043920px;}
.y28f_c00002{bottom:333.045000px;}
.y12c4_c00002{bottom:333.045720px;}
.y128a_c00002{bottom:333.046800px;}
.y1186_c00002{bottom:333.049680px;}
.ya2e_c00002{bottom:333.360000px;}
.y4ab_c00002{bottom:333.405000px;}
.y478_c00002{bottom:333.765000px;}
.yaf5_c00002{bottom:334.440000px;}
.y1266_c00002{bottom:334.481040px;}
.yc97_c00002{bottom:334.485000px;}
.y1e7_c00002{bottom:334.845000px;}
.y9e8_c00002{bottom:335.160000px;}
.y722_c00002{bottom:335.205000px;}
.ye0c_c00002{bottom:335.555280px;}
.y24d_c00002{bottom:335.561040px;}
.y528_c00002{bottom:335.562840px;}
.y1380_c00002{bottom:335.563920px;}
.y24e_c00002{bottom:335.565000px;}
.y2bd_c00002{bottom:335.925000px;}
.y367_c00002{bottom:336.285000px;}
.ya81_c00002{bottom:336.600000px;}
.yd2a_c00002{bottom:336.644640px;}
.yb29_c00002{bottom:336.645000px;}
.y1240_c00002{bottom:336.651480px;}
.y962_c00002{bottom:336.960000px;}
.y73c_c00002{bottom:337.005000px;}
.y13e3_c00002{bottom:337.009680px;}
.y8cb_c00002{bottom:337.365000px;}
.yd88_c00002{bottom:337.718160px;}
.y545_c00002{bottom:337.722840px;}
.y1a2_c00002{bottom:337.725000px;}
.y56a_c00002{bottom:337.726800px;}
.y11ae_c00002{bottom:338.081040px;}
.y122d_c00002{bottom:338.082840px;}
.y11be_c00002{bottom:338.083920px;}
.yea3_c00002{bottom:338.085000px;}
.y10e9_c00002{bottom:338.085720px;}
.yf9a_c00002{bottom:338.086800px;}
.y10d7_c00002{bottom:338.087520px;}
.y638_c00002{bottom:338.445000px;}
.y514_c00002{bottom:338.805000px;}
.yf37_c00002{bottom:339.161040px;}
.yec8_c00002{bottom:339.161400px;}
.y47e_c00002{bottom:339.165000px;}
.y148b_c00002{bottom:339.165720px;}
.y9ae_c00002{bottom:339.480000px;}
.y3ad_c00002{bottom:339.525000px;}
.y701_c00002{bottom:339.885000px;}
.y9b4_c00002{bottom:340.200000px;}
.y121d_c00002{bottom:340.243920px;}
.y606_c00002{bottom:340.245000px;}
.y605_c00002{bottom:340.246800px;}
.y1280_c00002{bottom:340.602840px;}
.y106b_c00002{bottom:340.603920px;}
.y5a5_c00002{bottom:340.605000px;}
.y10b7_c00002{bottom:340.605720px;}
.y5a4_c00002{bottom:340.606800px;}
.y3e5_c00002{bottom:340.965000px;}
.ye41_c00002{bottom:340.968960px;}
.y21f_c00002{bottom:341.325000px;}
.y1f4_c00002{bottom:341.685000px;}
.y313_c00002{bottom:342.045000px;}
.y7c1_c00002{bottom:342.405000px;}
.y58a_c00002{bottom:342.765000px;}
.y589_c00002{bottom:342.766800px;}
.y130a_c00002{bottom:343.121040px;}
.y101a_c00002{bottom:343.123920px;}
.y849_c00002{bottom:343.125000px;}
.y12bb_c00002{bottom:343.125720px;}
.y792_c00002{bottom:343.485000px;}
.y81_c00002{bottom:343.845000px;}
.y4e8_c00002{bottom:344.205000px;}
.yef1_c00002{bottom:344.555280px;}
.yb72_c00002{bottom:344.565000px;}
.y34f_c00002{bottom:344.925000px;}
.y7d3_c00002{bottom:345.285000px;}
.y12a5_c00002{bottom:345.641040px;}
.y3ac_c00002{bottom:345.645000px;}
.y109e_c00002{bottom:345.645720px;}
.yae4_c00002{bottom:345.960000px;}
.ye72_c00002{bottom:345.984480px;}
.y13f_c00002{bottom:346.365000px;}
.yb3c_c00002{bottom:346.680000px;}
.y6eb_c00002{bottom:346.725000px;}
.yb8d_c00002{bottom:347.085000px;}
.y17d_c00002{bottom:347.445000px;}
.y4bb_c00002{bottom:347.805000px;}
.y11d8_c00002{bottom:347.809680px;}
.y1101_c00002{bottom:348.161040px;}
.y1116_c00002{bottom:348.163920px;}
.y1b9_c00002{bottom:348.165000px;}
.y12e3_c00002{bottom:348.165720px;}
.yaf4_c00002{bottom:348.480000px;}
.y446_c00002{bottom:348.525000px;}
.y9dc_c00002{bottom:348.885000px;}
.y9e7_c00002{bottom:349.200000px;}
.yc10_c00002{bottom:349.245000px;}
.y791_c00002{bottom:349.605000px;}
.ya86_c00002{bottom:349.920000px;}
.y55_c00002{bottom:349.965000px;}
.ya80_c00002{bottom:350.280000px;}
.yba9_c00002{bottom:350.325000px;}
.yde5_c00002{bottom:350.681760px;}
.y1427_c00002{bottom:350.682840px;}
.y1289_c00002{bottom:350.683920px;}
.yccb_c00002{bottom:350.685000px;}
.y1431_c00002{bottom:350.685720px;}
.yd07_c00002{bottom:351.045000px;}
.y961_c00002{bottom:351.720000px;}
.y1265_c00002{bottom:351.765000px;}
.y1264_c00002{bottom:351.771480px;}
.yc96_c00002{bottom:352.125000px;}
.y83c_c00002{bottom:352.485000px;}
.y115c_c00002{bottom:352.486800px;}
.y24c_c00002{bottom:352.845000px;}
.y24b_c00002{bottom:352.846800px;}
.y1467_c00002{bottom:353.201040px;}
.yfef_c00002{bottom:353.203920px;}
.yc27_c00002{bottom:353.205000px;}
.y9ad_c00002{bottom:353.520000px;}
.y757_c00002{bottom:353.565000px;}
.y38b_c00002{bottom:353.925000px;}
.y9b3_c00002{bottom:354.240000px;}
.yd29_c00002{bottom:354.282840px;}
.y28e_c00002{bottom:354.285000px;}
.y8b8_c00002{bottom:354.645000px;}
.y2db_c00002{bottom:355.005000px;}
.y8fc_c00002{bottom:355.320000px;}
.y569_c00002{bottom:355.365000px;}
.y11ad_c00002{bottom:355.365720px;}
.yf6a_c00002{bottom:355.721040px;}
.y13b7_c00002{bottom:355.722840px;}
.y10cb_c00002{bottom:355.723920px;}
.yc5_c00002{bottom:355.725000px;}
.yf99_c00002{bottom:355.725720px;}
.ye2a_c00002{bottom:356.408640px;}
.y34d_c00002{bottom:356.441040px;}
.y34e_c00002{bottom:356.445000px;}
.yf36_c00002{bottom:356.449680px;}
.y1404_c00002{bottom:356.801040px;}
.y148a_c00002{bottom:356.803920px;}
.yc5b_c00002{bottom:356.805000px;}
.y3ab_c00002{bottom:357.165000px;}
.y3aa_c00002{bottom:357.166800px;}
.y679_c00002{bottom:357.879960px;}
.y543_c00002{bottom:357.882840px;}
.y544_c00002{bottom:357.885000px;}
.y80_c00002{bottom:357.886800px;}
.y136e_c00002{bottom:357.889680px;}
.y1185_c00002{bottom:358.241040px;}
.y11f0_c00002{bottom:358.241760px;}
.y5a2_c00002{bottom:358.242840px;}
.y1046_c00002{bottom:358.243920px;}
.y5a3_c00002{bottom:358.245000px;}
.y1200_c00002{bottom:358.245720px;}
.y868_c00002{bottom:358.605000px;}
.ye0b_c00002{bottom:358.958520px;}
.y14b_c00002{bottom:358.965000px;}
.y600_c00002{bottom:359.325000px;}
.y119_c00002{bottom:360.045000px;}
.y3e3_c00002{bottom:360.046440px;}
.yae3_c00002{bottom:360.360000px;}
.ycf2_c00002{bottom:360.405000px;}
.y12ba_c00002{bottom:360.409680px;}
.y1309_c00002{bottom:360.411480px;}
.yd87_c00002{bottom:360.761760px;}
.y700_c00002{bottom:360.765000px;}
.yea2_c00002{bottom:361.117080px;}
.y29_c00002{bottom:361.125000px;}
.y568_c00002{bottom:361.485000px;}
.y29b_c00002{bottom:361.845000px;}
.y123f_c00002{bottom:361.846800px;}
.y13e1_c00002{bottom:362.201040px;}
.yec7_c00002{bottom:362.201760px;}
.y13e2_c00002{bottom:362.205000px;}
.y513_c00002{bottom:362.565000px;}
.yaf3_c00002{bottom:362.880000px;}
.ycea_c00002{bottom:362.925000px;}
.y13a9_c00002{bottom:362.925720px;}
.y12cd_c00002{bottom:362.926800px;}
.y1208_c00002{bottom:362.927520px;}
.y12a4_c00002{bottom:362.929680px;}
.ya2a_c00002{bottom:363.240000px;}
.y312_c00002{bottom:363.285000px;}
.ye71_c00002{bottom:363.620160px;}
.y935_c00002{bottom:363.645000px;}
.y427_c00002{bottom:364.001040px;}
.y604_c00002{bottom:364.005000px;}
.yb3b_c00002{bottom:364.320000px;}
.y7d7_c00002{bottom:364.365000px;}
.ya8_c00002{bottom:364.725000px;}
.y61f_c00002{bottom:365.085000px;}
.y61e_c00002{bottom:365.086800px;}
.ybab_c00002{bottom:365.445000px;}
.y1393_c00002{bottom:365.445720px;}
.y10b6_c00002{bottom:365.446800px;}
.y13be_c00002{bottom:365.447520px;}
.y1434_c00002{bottom:365.448600px;}
.y106a_c00002{bottom:365.449680px;}
.y960_c00002{bottom:365.760000px;}
.y366_c00002{bottom:365.805000px;}
.y21e_c00002{bottom:366.165000px;}
.y4d1_c00002{bottom:366.525000px;}
.y4d0_c00002{bottom:366.526800px;}
.ydf1_c00002{bottom:366.885000px;}
.y891_c00002{bottom:367.245000px;}
.yb8c_c00002{bottom:367.605000px;}
.y9ac_c00002{bottom:367.920000px;}
.yef0_c00002{bottom:367.958520px;}
.y161_c00002{bottom:367.965000px;}
.y14a5_c00002{bottom:367.965720px;}
.y1426_c00002{bottom:367.966800px;}
.y138a_c00002{bottom:367.967520px;}
.y1019_c00002{bottom:367.969680px;}
.y9aa_c00002{bottom:368.280000px;}
.y3bd_c00002{bottom:368.325000px;}
.y17c_c00002{bottom:368.685000px;}
.y1b8_c00002{bottom:369.045000px;}
.y4aa_c00002{bottom:369.405000px;}
.y445_c00002{bottom:369.765000px;}
.y115b_c00002{bottom:370.117800px;}
.y79c_c00002{bottom:370.125000px;}
.y527_c00002{bottom:370.480680px;}
.y261_c00002{bottom:370.481040px;}
.y24a_c00002{bottom:370.485000px;}
.y109d_c00002{bottom:370.486800px;}
.y1466_c00002{bottom:370.489680px;}
.y54_c00002{bottom:370.845000px;}
.y721_c00002{bottom:371.205000px;}
.ybed_c00002{bottom:371.565000px;}
.yd28_c00002{bottom:371.921040px;}
.y2bc_c00002{bottom:371.925000px;}
.ycb3_c00002{bottom:372.285000px;}
.yb28_c00002{bottom:372.645000px;}
.y567_c00002{bottom:373.002840px;}
.yf69_c00002{bottom:373.005000px;}
.yf68_c00002{bottom:373.005720px;}
.y1115_c00002{bottom:373.006800px;}
.y13a6_c00002{bottom:373.007520px;}
.yf98_c00002{bottom:373.009680px;}
.y3b9_c00002{bottom:373.365000px;}
.y1a1_c00002{bottom:373.725000px;}
.y34c_c00002{bottom:373.726800px;}
.yde4_c00002{bottom:374.085000px;}
.y1403_c00002{bottom:374.085720px;}
.ye5d_c00002{bottom:374.438520px;}
.yc5a_c00002{bottom:374.445000px;}
.yae2_c00002{bottom:374.760000px;}
.y3a9_c00002{bottom:374.805000px;}
.y2f7_c00002{bottom:375.165000px;}
.y5c5_c00002{bottom:375.166800px;}
.y8fb_c00002{bottom:375.480000px;}
.y13c3_c00002{bottom:375.523920px;}
.yc76_c00002{bottom:375.525000px;}
.y11ef_c00002{bottom:375.525720px;}
.y127f_c00002{bottom:375.526800px;}
.y1184_c00002{bottom:375.529680px;}
.y5a1_c00002{bottom:375.881040px;}
.y916_c00002{bottom:375.885000px;}
.y713_c00002{bottom:376.245000px;}
.y249_c00002{bottom:376.605000px;}
.yaf2_c00002{bottom:376.920000px;}
.yc4_c00002{bottom:376.965000px;}
.y1263_c00002{bottom:376.966800px;}
.ya2b_c00002{bottom:377.280000px;}
.y3e2_c00002{bottom:377.684640px;}
.y4a1_c00002{bottom:377.685000px;}
.y541_c00002{bottom:378.041040px;}
.y542_c00002{bottom:378.045000px;}
.yfee_c00002{bottom:378.046800px;}
.y137f_c00002{bottom:378.049680px;}
.ycfa_c00002{bottom:378.405000px;}
.y73b_c00002{bottom:378.765000px;}
.y498_c00002{bottom:379.125000px;}
.y123e_c00002{bottom:379.483560px;}
.y8ca_c00002{bottom:379.485000px;}
.y13e0_c00002{bottom:379.489680px;}
.ye29_c00002{bottom:379.811880px;}
.y14a_c00002{bottom:379.845000px;}
.ya6e_c00002{bottom:380.160000px;}
.y4e7_c00002{bottom:380.205000px;}
.y95f_c00002{bottom:380.520000px;}
.y11ac_c00002{bottom:380.561040px;}
.y12d7_c00002{bottom:380.563920px;}
.y637_c00002{bottom:380.565000px;}
.y1207_c00002{bottom:380.565720px;}
.y10ca_c00002{bottom:380.566800px;}
.y11bd_c00002{bottom:380.567520px;}
.y3a8_c00002{bottom:380.925000px;}
.y426_c00002{bottom:381.285000px;}
.yf35_c00002{bottom:381.641040px;}
.y7f_c00002{bottom:381.645000px;}
.y1489_c00002{bottom:381.649680px;}
.y9ab_c00002{bottom:381.960000px;}
.ye6_c00002{bottom:382.005000px;}
.y9a9_c00002{bottom:382.320000px;}
.y335_c00002{bottom:382.365000px;}
.y121c_c00002{bottom:382.716720px;}
.ye0a_c00002{bottom:382.721400px;}
.y61d_c00002{bottom:382.722840px;}
.y29a_c00002{bottom:382.725000px;}
.y136d_c00002{bottom:383.081040px;}
.y10b5_c00002{bottom:383.083920px;}
.y2da_c00002{bottom:383.085000px;}
.y1045_c00002{bottom:383.085720px;}
.y11c9_c00002{bottom:383.086800px;}
.y476_c00002{bottom:383.445000px;}
.y8b7_c00002{bottom:383.805000px;}
.y1d1_c00002{bottom:384.165000px;}
.y4cf_c00002{bottom:384.166800px;}
.yea1_c00002{bottom:384.520320px;}
.y6be_c00002{bottom:384.525000px;}
.y875_c00002{bottom:384.885000px;}
.y678_c00002{bottom:385.245000px;}
.y1f3_c00002{bottom:385.605000px;}
.y1389_c00002{bottom:385.605720px;}
.y1308_c00002{bottom:385.606800px;}
.y27_c00002{bottom:385.963200px;}
.ye38_c00002{bottom:385.963920px;}
.y28_c00002{bottom:385.965000px;}
.yc68_c00002{bottom:386.325000px;}
.yb71_c00002{bottom:386.685000px;}
.ye70_c00002{bottom:387.023400px;}
.y7e9_c00002{bottom:387.045000px;}
.ydb8_c00002{bottom:387.403920px;}
.y666_c00002{bottom:387.405000px;}
.y526_c00002{bottom:387.764640px;}
.y248_c00002{bottom:387.765000px;}
.y260_c00002{bottom:387.766800px;}
.y109c_c00002{bottom:388.123920px;}
.yb51_c00002{bottom:388.125000px;}
.y115a_c00002{bottom:388.125720px;}
.y12a3_c00002{bottom:388.127520px;}
.yc8c_c00002{bottom:388.485000px;}
.y304_c00002{bottom:388.845000px;}
.y118_c00002{bottom:389.205000px;}
.yae1_c00002{bottom:389.520000px;}
.y756_c00002{bottom:389.565000px;}
.y1b7_c00002{bottom:389.925000px;}
.ydba_c00002{bottom:389.927160px;}
.y28d_c00002{bottom:390.285000px;}
.y566_c00002{bottom:390.286800px;}
.y114d_c00002{bottom:390.641040px;}
.y1293_c00002{bottom:390.642840px;}
.yf67_c00002{bottom:390.643920px;}
.y444_c00002{bottom:390.645000px;}
.y1114_c00002{bottom:390.645720px;}
.yaf1_c00002{bottom:390.960000px;}
.y6c9_c00002{bottom:391.005000px;}
.y21c_c00002{bottom:391.363920px;}
.y21d_c00002{bottom:391.365000px;}
.yeef_c00002{bottom:391.721400px;}
.y53_c00002{bottom:391.725000px;}
.yc95_c00002{bottom:392.085000px;}
.ya29_c00002{bottom:392.400000px;}
.yc59_c00002{bottom:392.445000px;}
.y7e_c00002{bottom:392.805000px;}
.y1018_c00002{bottom:393.161040px;}
.y127e_c00002{bottom:393.163920px;}
.y5a0_c00002{bottom:393.165000px;}
.y6a1_c00002{bottom:393.525000px;}
.y247_c00002{bottom:393.885000px;}
.y7fe_c00002{bottom:394.245000px;}
.y95e_c00002{bottom:394.560000px;}
.y1262_c00002{bottom:394.603920px;}
.ybec_c00002{bottom:394.605000px;}
.y26d_c00002{bottom:394.965000px;}
.y3e1_c00002{bottom:394.968600px;}
.y540_c00002{bottom:395.325000px;}
.y53f_c00002{bottom:395.326800px;}
.yfec_c00002{bottom:395.683920px;}
.yfed_c00002{bottom:395.685000px;}
.y1465_c00002{bottom:395.685720px;}
.y2f6_c00002{bottom:396.045000px;}
.y696_c00002{bottom:396.405000px;}
.y6ff_c00002{bottom:396.765000px;}
.y9a8_c00002{bottom:397.080000px;}
.y365_c00002{bottom:397.125000px;}
.yde3_c00002{bottom:397.481760px;}
.ycd4_c00002{bottom:397.485000px;}
.yc3_c00002{bottom:397.845000px;}
.y11ab_c00002{bottom:397.845720px;}
.y11d7_c00002{bottom:397.846800px;}
.y123d_c00002{bottom:397.851480px;}
.yfc4_c00002{bottom:398.201040px;}
.ye5c_c00002{bottom:398.201400px;}
.y10d6_c00002{bottom:398.201760px;}
.yf96_c00002{bottom:398.203920px;}
.yf97_c00002{bottom:398.205000px;}
.y10e8_c00002{bottom:398.205720px;}
.y934_c00002{bottom:398.565000px;}
.y7d_c00002{bottom:398.925000px;}
.y1402_c00002{bottom:399.281040px;}
.y59f_c00002{bottom:399.285000px;}
.y47d_c00002{bottom:399.645000px;}
.y497_c00002{bottom:400.005000px;}
.y61c_c00002{bottom:400.361040px;}
.y8c9_c00002{bottom:400.365000px;}
.y136c_c00002{bottom:400.369680px;}
.y11ee_c00002{bottom:400.721040px;}
.y1044_c00002{bottom:400.723920px;}
.ya7_c00002{bottom:400.725000px;}
.y1433_c00002{bottom:400.725720px;}
.y924_c00002{bottom:401.085000px;}
.y636_c00002{bottom:401.445000px;}
.y4ce_c00002{bottom:401.805000px;}
.y6e7_c00002{bottom:402.165000px;}
.yb1a_c00002{bottom:402.525000px;}
.ye5_c00002{bottom:402.885000px;}
.y1307_c00002{bottom:403.241040px;}
.y12b9_c00002{bottom:403.243920px;}
.yc00_c00002{bottom:403.245000px;}
.y131e_c00002{bottom:403.245720px;}
.y64f_c00002{bottom:403.605000px;}
.yae0_c00002{bottom:403.920000px;}
.y160_c00002{bottom:403.965000px;}
.y475_c00002{bottom:404.325000px;}
.y13df_c00002{bottom:404.683920px;}
.y17b_c00002{bottom:404.685000px;}
.ye40_c00002{bottom:405.040320px;}
.y4f3_c00002{bottom:405.045000px;}
.yaf0_c00002{bottom:405.360000px;}
.ye28_c00002{bottom:405.372960px;}
.y525_c00002{bottom:405.402840px;}
.y1d0_c00002{bottom:405.405000px;}
.y25f_c00002{bottom:405.406800px;}
.y12a2_c00002{bottom:405.411480px;}
.y1159_c00002{bottom:405.763920px;}
.y9db_c00002{bottom:405.765000px;}
.ya28_c00002{bottom:406.080000px;}
.yb50_c00002{bottom:406.125000px;}
.ya2d_c00002{bottom:406.440000px;}
.y424_c00002{bottom:406.481040px;}
.y425_c00002{bottom:406.485000px;}
.y1488_c00002{bottom:406.841040px;}
.y3c3_c00002{bottom:406.845000px;}
.y720_c00002{bottom:407.205000px;}
.y121b_c00002{bottom:407.557800px;}
.y3a7_c00002{bottom:407.565000px;}
.y2bb_c00002{bottom:407.925000px;}
.y10b4_c00002{bottom:407.926800px;}
.y1113_c00002{bottom:407.929680px;}
.y114c_c00002{bottom:407.931480px;}
.ya6d_c00002{bottom:408.240000px;}
.y603_c00002{bottom:408.285000px;}
.y2c0_c00002{bottom:408.645000px;}
.y95d_c00002{bottom:409.320000px;}
.yc8b_c00002{bottom:409.365000px;}
.y1a0_c00002{bottom:409.725000px;}
.y133d_c00002{bottom:410.441040px;}
.y1017_c00002{bottom:410.445000px;}
.y14a4_c00002{bottom:410.445720px;}
.y1016_c00002{bottom:410.449680px;}
.ye6f_c00002{bottom:410.786280px;}
.y26_c00002{bottom:410.805000px;}
.y25_c00002{bottom:410.813280px;}
.y9a7_c00002{bottom:411.120000px;}
.y1b6_c00002{bottom:411.165000px;}
.y246_c00002{bottom:411.525000px;}
.ybeb_c00002{bottom:412.605000px;}
.y3e0_c00002{bottom:412.606800px;}
.y52_c00002{bottom:412.965000px;}
.y12eb_c00002{bottom:412.965720px;}
.y1464_c00002{bottom:412.969680px;}
.ydb9_c00002{bottom:412.970760px;}
.y53e_c00002{bottom:412.971120px;}
.y40c_c00002{bottom:413.325000px;}
.ycca_c00002{bottom:413.685000px;}
.y565_c00002{bottom:414.045000px;}
.ycf9_c00002{bottom:414.405000px;}
.yeee_c00002{bottom:414.759600px;}
.y8d9_c00002{bottom:414.765000px;}
.yc2e_c00002{bottom:415.125000px;}
.y11d6_c00002{bottom:415.483920px;}
.y83b_c00002{bottom:415.485000px;}
.y1085_c00002{bottom:415.485720px;}
.y1191_c00002{bottom:415.486800px;}
.yf66_c00002{bottom:415.488600px;}
.yfc3_c00002{bottom:415.489680px;}
.y192_c00002{bottom:415.845000px;}
.y21a_c00002{bottom:416.203920px;}
.y21b_c00002{bottom:416.205000px;}
.y5ff_c00002{bottom:416.565000px;}
.y1401_c00002{bottom:416.566800px;}
.y2f5_c00002{bottom:416.925000px;}
.y695_c00002{bottom:417.285000px;}
.y5c4_c00002{bottom:417.645000px;}
.y5c3_c00002{bottom:417.646800px;}
.yadf_c00002{bottom:417.960000px;}
.yc18_c00002{bottom:418.005000px;}
.y11ff_c00002{bottom:418.005720px;}
.y12c3_c00002{bottom:418.006800px;}
.y127d_c00002{bottom:418.007520px;}
.y12dd_c00002{bottom:418.009680px;}
.y334_c00002{bottom:418.365000px;}
.yc2_c00002{bottom:418.725000px;}
.y588_c00002{bottom:419.085000px;}
.yad8_c00002{bottom:419.400000px;}
.y7f6_c00002{bottom:419.445000px;}
.y1261_c00002{bottom:419.445720px;}
.y6c8_c00002{bottom:419.805000px;}
.ya27_c00002{bottom:420.120000px;}
.y311_c00002{bottom:420.165000px;}
.ya2c_c00002{bottom:420.480000px;}
.y6bd_c00002{bottom:420.525000px;}
.y1306_c00002{bottom:420.525720px;}
.yfeb_c00002{bottom:420.526800px;}
.y915_c00002{bottom:420.885000px;}
.y496_c00002{bottom:421.245000px;}
.y7d6_c00002{bottom:421.605000px;}
.y137_c00002{bottom:421.965000px;}
.y3f6_c00002{bottom:422.325000px;}
.ya6c_c00002{bottom:422.640000px;}
.yd60_c00002{bottom:422.685000px;}
.y524_c00002{bottom:423.041040px;}
.y1206_c00002{bottom:423.042840px;}
.y245_c00002{bottom:423.045000px;}
.y1417_c00002{bottom:423.045720px;}
.yf95_c00002{bottom:423.046800px;}
.y12d6_c00002{bottom:423.049680px;}
.y95c_c00002{bottom:423.360000px;}
.y923_c00002{bottom:423.405000px;}
.y423_c00002{bottom:423.765000px;}
.y422_c00002{bottom:423.766800px;}
.ye4_c00002{bottom:424.125000px;}
.yd27_c00002{bottom:424.126800px;}
.y1487_c00002{bottom:424.129680px;}
.ybff_c00002{bottom:424.485000px;}
.y117_c00002{bottom:424.845000px;}
.y9a6_c00002{bottom:425.160000px;}
.y512_c00002{bottom:425.205000px;}
.y121a_c00002{bottom:425.563920px;}
.y7c_c00002{bottom:425.565000px;}
.y10b3_c00002{bottom:425.565720px;}
.y134e_c00002{bottom:425.566800px;}
.y13bd_c00002{bottom:425.567520px;}
.y1043_c00002{bottom:425.569680px;}
.y564_c00002{bottom:425.571840px;}
.y7fd_c00002{bottom:425.925000px;}
.y1cf_c00002{bottom:426.285000px;}
.y9da_c00002{bottom:426.645000px;}
.y430_c00002{bottom:427.365000px;}
.y3c2_c00002{bottom:427.725000px;}
.y137e_c00002{bottom:428.083920px;}
.y3c5_c00002{bottom:428.085000px;}
.y12b8_c00002{bottom:428.085720px;}
.y131d_c00002{bottom:428.086800px;}
.ye27_c00002{bottom:428.416560px;}
.yf16_c00002{bottom:428.442840px;}
.yb7b_c00002{bottom:428.445000px;}
.y2ba_c00002{bottom:428.805000px;}
.ye09_c00002{bottom:429.161400px;}
.y244_c00002{bottom:429.165000px;}
.y7d2_c00002{bottom:429.525000px;}
.y13de_c00002{bottom:429.525720px;}
.yea0_c00002{bottom:429.880320px;}
.ybea_c00002{bottom:429.885000px;}
.y3df_c00002{bottom:430.245000px;}
.ye3f_c00002{bottom:430.601400px;}
.y1158_c00002{bottom:430.603920px;}
.y587_c00002{bottom:430.605000px;}
.y12a1_c00002{bottom:430.606800px;}
.y26b_c00002{bottom:430.965000px;}
.y78d_c00002{bottom:431.325000px;}
.yc75_c00002{bottom:431.685000px;}
.yec6_c00002{bottom:432.038520px;}
.y1b5_c00002{bottom:432.045000px;}
.yade_c00002{bottom:432.360000px;}
.y40b_c00002{bottom:432.405000px;}
.y53d_c00002{bottom:432.764280px;}
.y443_c00002{bottom:432.765000px;}
.y1084_c00002{bottom:433.123920px;}
.y1112_c00002{bottom:433.125000px;}
.y1111_c00002{bottom:433.125720px;}
.yf65_c00002{bottom:433.126800px;}
.yaef_c00002{bottom:433.440000px;}
.y1e6_c00002{bottom:433.845000px;}
.ya26_c00002{bottom:434.160000px;}
.ye6e_c00002{bottom:434.189520px;}
.yce9_c00002{bottom:434.205000px;}
.y1400_c00002{bottom:434.205720px;}
.ya25_c00002{bottom:434.520000px;}
.y59e_c00002{bottom:434.565000px;}
.ye37_c00002{bottom:434.925000px;}
.y5c1_c00002{bottom:435.281040px;}
.y5c2_c00002{bottom:435.285000px;}
.y1014_c00002{bottom:435.641040px;}
.y11ed_c00002{bottom:435.643920px;}
.y1015_c00002{bottom:435.645000px;}
.y127c_c00002{bottom:435.645720px;}
.y73a_c00002{bottom:436.005000px;}
.y83a_c00002{bottom:436.365000px;}
.ydb7_c00002{bottom:436.368240px;}
.ya6b_c00002{bottom:436.680000px;}
.ydf0_c00002{bottom:436.721400px;}
.ya6_c00002{bottom:436.725000px;}
.y1260_c00002{bottom:437.083920px;}
.y833_c00002{bottom:437.085000px;}
.y5fe_c00002{bottom:437.445000px;}
.y95b_c00002{bottom:437.760000px;}
.y677_c00002{bottom:437.805000px;}
.y676_c00002{bottom:437.808600px;}
.y1463_c00002{bottom:438.161040px;}
.yeed_c00002{bottom:438.162840px;}
.y1305_c00002{bottom:438.163920px;}
.y890_c00002{bottom:438.165000px;}
.yfea_c00002{bottom:438.165720px;}
.y26c_c00002{bottom:438.525000px;}
.y9a5_c00002{bottom:438.840000px;}
.y333_c00002{bottom:439.242840px;}
.y64e_c00002{bottom:439.605000px;}
.yc1_c00002{bottom:439.965000px;}
.y25e_c00002{bottom:440.325000px;}
.y25d_c00002{bottom:440.326800px;}
.y11aa_c00002{bottom:440.327520px;}
.y11d5_c00002{bottom:440.329680px;}
.y10c9_c00002{bottom:440.681040px;}
.y1069_c00002{bottom:440.681760px;}
.yf93_c00002{bottom:440.683920px;}
.y1499_c00002{bottom:440.684640px;}
.yf94_c00002{bottom:440.685000px;}
.yfc2_c00002{bottom:440.685720px;}
.y219_c00002{bottom:441.045000px;}
.y421_c00002{bottom:441.405000px;}
.y24_c00002{bottom:441.409320px;}
.y914_c00002{bottom:441.765000px;}
.yf34_c00002{bottom:441.765720px;}
.ycb2_c00002{bottom:442.125000px;}
.y8c8_c00002{bottom:442.485000px;}
.y136_c00002{bottom:442.845000px;}
.y136b_c00002{bottom:442.849680px;}
.y11fe_c00002{bottom:443.201040px;}
.y10b2_c00002{bottom:443.203920px;}
.y71f_c00002{bottom:443.205000px;}
.y13bc_c00002{bottom:443.205720px;}
.yb70_c00002{bottom:443.565000px;}
.yb8b_c00002{bottom:443.925000px;}
.y40a_c00002{bottom:443.926800px;}
.y665_c00002{bottom:444.285000px;}
.ye26_c00002{bottom:444.613680px;}
.ycef_c00002{bottom:444.645000px;}
.ye3_c00002{bottom:445.005000px;}
.y563_c00002{bottom:445.365000px;}
.y562_c00002{bottom:445.366800px;}
.y59d_c00002{bottom:445.722840px;}
.y1425_c00002{bottom:445.723920px;}
.y19f_c00002{bottom:445.725000px;}
.y131c_c00002{bottom:445.725720px;}
.yaf8_c00002{bottom:446.040000px;}
.y17a_c00002{bottom:446.445000px;}
.yadd_c00002{bottom:447.120000px;}
.y13dd_c00002{bottom:447.163920px;}
.y4f2_c00002{bottom:447.165000px;}
.yaee_c00002{bottom:447.480000px;}
.y7c0_c00002{bottom:447.525000px;}
.yad7_c00002{bottom:447.840000px;}
.y586_c00002{bottom:447.885000px;}
.y585_c00002{bottom:447.886800px;}
.yada_c00002{bottom:448.200000px;}
.y12d5_c00002{bottom:448.241040px;}
.y146d_c00002{bottom:448.242840px;}
.y109b_c00002{bottom:448.243920px;}
.y6c7_c00002{bottom:448.245000px;}
.y12a0_c00002{bottom:448.245720px;}
.yb7a_c00002{bottom:448.605000px;}
.y51_c00002{bottom:448.965000px;}
.y1486_c00002{bottom:449.323920px;}
.yb79_c00002{bottom:449.325000px;}
.ycc9_c00002{bottom:449.685000px;}
.y7e8_c00002{bottom:450.045000px;}
.y53c_c00002{bottom:450.402480px;}
.y6a0_c00002{bottom:450.405000px;}
.y1219_c00002{bottom:450.409680px;}
.ya6a_c00002{bottom:450.720000px;}
.y1183_c00002{bottom:450.761040px;}
.yf64_c00002{bottom:450.761760px;}
.y1042_c00002{bottom:450.762840px;}
.y1110_c00002{bottom:450.763920px;}
.y8d8_c00002{bottom:450.765000px;}
.y1440_c00002{bottom:450.765720px;}
.yc2d_c00002{bottom:451.125000px;}
.yc8a_c00002{bottom:451.485000px;}
.y95a_c00002{bottom:451.800000px;}
.y191_c00002{bottom:451.845000px;}
.y4e6_c00002{bottom:452.205000px;}
.y5c0_c00002{bottom:452.565000px;}
.y5bf_c00002{bottom:452.566800px;}
.y1b4_c00002{bottom:452.925000px;}
.y12b7_c00002{bottom:452.926800px;}
.y137d_c00002{bottom:452.929680px;}
.y2b9_c00002{bottom:453.285000px;}
.y442_c00002{bottom:453.645000px;}
.yd86_c00002{bottom:454.005000px;}
.yd85_c00002{bottom:454.005360px;}
.y305_c00002{bottom:454.365000px;}
.y360_c00002{bottom:454.725000px;}
.y3de_c00002{bottom:455.085000px;}
.y3dd_c00002{bottom:455.086800px;}
.yec1_c00002{bottom:455.438520px;}
.ye9f_c00002{bottom:455.441400px;}
.yec5_c00002{bottom:455.441760px;}
.y88f_c00002{bottom:455.445000px;}
.y1462_c00002{bottom:455.445720px;}
.y12ea_c00002{bottom:455.446800px;}
.yfe9_c00002{bottom:455.449680px;}
.y243_c00002{bottom:455.805000px;}
.y9a4_c00002{bottom:456.120000px;}
.y867_c00002{bottom:456.160320px;}
.y310_c00002{bottom:456.165000px;}
.yd6e_c00002{bottom:456.525000px;}
.y332_c00002{bottom:456.881040px;}
.y495_c00002{bottom:457.245000px;}
.ye6d_c00002{bottom:457.952400px;}
.y1f2_c00002{bottom:457.965000px;}
.y1068_c00002{bottom:457.965720px;}
.y25c_c00002{bottom:457.966800px;}
.y12dc_c00002{bottom:457.968600px;}
.yfc1_c00002{bottom:457.969680px;}
.y635_c00002{bottom:458.325000px;}
.y5fd_c00002{bottom:458.685000px;}
.y8a3_c00002{bottom:459.045000px;}
.ydb6_c00002{bottom:459.398520px;}
.y13ff_c00002{bottom:459.401040px;}
.y79b_c00002{bottom:459.405000px;}
.y3c4_c00002{bottom:459.765000px;}
.yc24_c00002{bottom:460.125000px;}
.y61b_c00002{bottom:460.485000px;}
.y1288_c00002{bottom:460.485720px;}
.y11ec_c00002{bottom:460.486800px;}
.y11fd_c00002{bottom:460.489680px;}
.yc0_c00002{bottom:460.845000px;}
.yaf6_c00002{bottom:461.160000px;}
.y511_c00002{bottom:461.205000px;}
.y409_c00002{bottom:461.565000px;}
.yad9_c00002{bottom:461.880000px;}
.y874_c00002{bottom:461.925000px;}
.yad5_c00002{bottom:462.240000px;}
.y1ce_c00002{bottom:462.285000px;}
.yaf7_c00002{bottom:462.600000px;}
.yb8a_c00002{bottom:462.645000px;}
.y560_c00002{bottom:463.002840px;}
.y675_c00002{bottom:463.003920px;}
.y561_c00002{bottom:463.005000px;}
.y1304_c00002{bottom:463.009680px;}
.y59c_c00002{bottom:463.361040px;}
.y8c7_c00002{bottom:463.365000px;}
.y6ea_c00002{bottom:463.725000px;}
.ya24_c00002{bottom:464.040000px;}
.y135_c00002{bottom:464.085000px;}
.ya69_c00002{bottom:464.760000px;}
.y474_c00002{bottom:464.805000px;}
.y6e6_c00002{bottom:465.165000px;}
.y583_c00002{bottom:465.521040px;}
.y1175_c00002{bottom:465.522840px;}
.y584_c00002{bottom:465.525000px;}
.y1416_c00002{bottom:465.525720px;}
.y12cc_c00002{bottom:465.526800px;}
.y11d4_c00002{bottom:465.527520px;}
.y123c_c00002{bottom:465.529680px;}
.ye2_c00002{bottom:465.885000px;}
.y959_c00002{bottom:466.560000px;}
.y420_c00002{bottom:466.605000px;}
.yf33_c00002{bottom:466.606800px;}
.y27d_c00002{bottom:466.965000px;}
.y47c_c00002{bottom:467.325000px;}
.y179_c00002{bottom:467.685000px;}
.ye25_c00002{bottom:468.016920px;}
.ye5b_c00002{bottom:468.035280px;}
.y53b_c00002{bottom:468.040680px;}
.y4ba_c00002{bottom:468.045000px;}
.yf63_c00002{bottom:468.045720px;}
.y1041_c00002{bottom:468.046800px;}
.y10b1_c00002{bottom:468.049680px;}
.y65b_c00002{bottom:468.405000px;}
.y218_c00002{bottom:468.765000px;}
.y5e7_c00002{bottom:469.125000px;}
.yb78_c00002{bottom:469.485000px;}
.y50_c00002{bottom:469.845000px;}
.y9a3_c00002{bottom:470.160000px;}
.yf0e_c00002{bottom:470.200320px;}
.y5be_c00002{bottom:470.205000px;}
.y78c_c00002{bottom:470.565000px;}
.y12b6_c00002{bottom:470.565720px;}
.y131b_c00002{bottom:470.566800px;}
.y1013_c00002{bottom:470.569680px;}
.yce8_c00002{bottom:470.925000px;}
.y69f_c00002{bottom:471.285000px;}
.y739_c00002{bottom:472.005000px;}
.y13dc_c00002{bottom:472.006800px;}
.y23_c00002{bottom:472.365000px;}
.y3dc_c00002{bottom:472.722840px;}
.ya5_c00002{bottom:472.725000px;}
.y1461_c00002{bottom:473.083920px;}
.y4e5_c00002{bottom:473.085000px;}
.y12e9_c00002{bottom:473.085720px;}
.y109a_c00002{bottom:473.086800px;}
.y866_c00002{bottom:473.444280px;}
.y8f9_c00002{bottom:473.445000px;}
.y2b8_c00002{bottom:473.805000px;}
.y1b3_c00002{bottom:474.165000px;}
.y1485_c00002{bottom:474.166800px;}
.y441_c00002{bottom:474.525000px;}
.yc17_c00002{bottom:475.245000px;}
.yadc_c00002{bottom:475.560000px;}
.y1218_c00002{bottom:475.601040px;}
.ye08_c00002{bottom:475.601760px;}
.y1083_c00002{bottom:475.603920px;}
.y25b_c00002{bottom:475.605000px;}
.y10d5_c00002{bottom:475.605720px;}
.y110f_c00002{bottom:475.606800px;}
.y10c8_c00002{bottom:475.607520px;}
.yaed_c00002{bottom:475.920000px;}
.y357_c00002{bottom:475.965000px;}
.yad6_c00002{bottom:476.279850px;}
.y4f1_c00002{bottom:476.325000px;}
.yad4_c00002{bottom:476.640000px;}
.yba8_c00002{bottom:476.685000px;}
.y4cc_c00002{bottom:477.040680px;}
.y4cd_c00002{bottom:477.045000px;}
.yd84_c00002{bottom:477.048960px;}
.y4a9_c00002{bottom:477.405000px;}
.ya23_c00002{bottom:478.080000px;}
.y127b_c00002{bottom:478.123920px;}
.y494_c00002{bottom:478.125000px;}
.y11eb_c00002{bottom:478.125720px;}
.y14a3_c00002{bottom:478.126800px;}
.yec0_c00002{bottom:478.482120px;}
.y839_c00002{bottom:478.485000px;}
.ya68_c00002{bottom:478.800000px;}
.y149_c00002{bottom:478.845000px;}
.y71e_c00002{bottom:479.205000px;}
.yeec_c00002{bottom:479.561400px;}
.y5fc_c00002{bottom:479.565000px;}
.yb89_c00002{bottom:479.925000px;}
.y712_c00002{bottom:480.285000px;}
.y55f_c00002{bottom:480.286800px;}
.y958_c00002{bottom:480.600000px;}
.yfe8_c00002{bottom:480.642840px;}
.y59b_c00002{bottom:480.645000px;}
.ye6c_c00002{bottom:480.996000px;}
.yb19_c00002{bottom:481.005000px;}
.y411_c00002{bottom:481.365000px;}
.y116_c00002{bottom:481.725000px;}
.y932_c00002{bottom:482.085000px;}
.y510_c00002{bottom:482.445000px;}
.ydb5_c00002{bottom:482.801760px;}
.y582_c00002{bottom:482.805000px;}
.y581_c00002{bottom:482.806800px;}
.y11d3_c00002{bottom:482.811480px;}
.y1067_c00002{bottom:483.161040px;}
.ydef_c00002{bottom:483.161760px;}
.yf92_c00002{bottom:483.163920px;}
.y1cd_c00002{bottom:483.165000px;}
.y1444_c00002{bottom:483.165720px;}
.y146c_c00002{bottom:483.167520px;}
.y364_c00002{bottom:483.525000px;}
.yf32_c00002{bottom:484.243920px;}
.yc0f_c00002{bottom:484.245000px;}
.y851_c00002{bottom:484.605000px;}
.yf9_c00002{bottom:484.965000px;}
.y53a_c00002{bottom:485.324640px;}
.y1040_c00002{bottom:485.683920px;}
.yc74_c00002{bottom:485.685000px;}
.y11fc_c00002{bottom:485.685720px;}
.yd06_c00002{bottom:486.045000px;}
.y6e5_c00002{bottom:486.405000px;}
.yee2_c00002{bottom:486.761760px;}
.y8d7_c00002{bottom:486.765000px;}
.y125f_c00002{bottom:487.121040px;}
.yc2c_c00002{bottom:487.125000px;}
.y7f5_c00002{bottom:487.485000px;}
.y7f4_c00002{bottom:487.488600px;}
.y190_c00002{bottom:487.845000px;}
.y674_c00002{bottom:487.849680px;}
.y131a_c00002{bottom:488.201040px;}
.y1303_c00002{bottom:488.203920px;}
.y315_c00002{bottom:488.205000px;}
.y1424_c00002{bottom:488.205720px;}
.y178_c00002{bottom:488.565000px;}
.y5d8_c00002{bottom:488.925000px;}
.y61a_c00002{bottom:489.285000px;}
.y9d9_c00002{bottom:489.645000px;}
.y13db_c00002{bottom:489.649680px;}
.yadb_c00002{bottom:489.960000px;}
.y6fe_c00002{bottom:490.005000px;}
.y3db_c00002{bottom:490.006800px;}
.yad3_c00002{bottom:490.320000px;}
.yb27_c00002{bottom:490.365000px;}
.y13a8_c00002{bottom:490.721040px;}
.y123b_c00002{bottom:490.721760px;}
.y1099_c00002{bottom:490.723920px;}
.y4f_c00002{bottom:490.725000px;}
.y129f_c00002{bottom:490.725720px;}
.ye24_c00002{bottom:491.060520px;}
.ye5a_c00002{bottom:491.078880px;}
.y865_c00002{bottom:491.082480px;}
.ycb1_c00002{bottom:491.445000px;}
.y1484_c00002{bottom:491.803920px;}
.yb77_c00002{bottom:491.805000px;}
.ya22_c00002{bottom:492.120000px;}
.y30f_c00002{bottom:492.165000px;}
.ya67_c00002{bottom:492.480000px;}
.y242_c00002{bottom:492.525000px;}
.y523_c00002{bottom:492.885000px;}
.y522_c00002{bottom:492.886440px;}
.y13c2_c00002{bottom:492.886800px;}
.y1217_c00002{bottom:492.889680px;}
.y9a2_c00002{bottom:493.200000px;}
.yf62_c00002{bottom:493.241040px;}
.y13a5_c00002{bottom:493.241760px;}
.y10d4_c00002{bottom:493.243920px;}
.y41e_c00002{bottom:493.245000px;}
.y10c7_c00002{bottom:493.245720px;}
.y34b_c00002{bottom:493.605000px;}
.y26a_c00002{bottom:493.965000px;}
.y13fe_c00002{bottom:494.323920px;}
.y408_c00002{bottom:494.325000px;}
.y2b7_c00002{bottom:494.685000px;}
.y1b2_c00002{bottom:495.045000px;}
.y957_c00002{bottom:495.360000px;}
.y5bd_c00002{bottom:495.405000px;}
.y133c_c00002{bottom:495.406800px;}
.y12b5_c00002{bottom:495.761040px;}
.yf0d_c00002{bottom:495.761400px;}
.y11ea_c00002{bottom:495.763920px;}
.ycae_c00002{bottom:495.765000px;}
.y1012_c00002{bottom:495.765720px;}
.y217_c00002{bottom:496.125000px;}
.ycd3_c00002{bottom:496.485000px;}
.ybf_c00002{bottom:496.845000px;}
.y2d9_c00002{bottom:497.205000px;}
.y873_c00002{bottom:497.565000px;}
.y1460_c00002{bottom:497.925000px;}
.yfe7_c00002{bottom:497.926800px;}
.y145f_c00002{bottom:497.928600px;}
.y28c_c00002{bottom:498.285000px;}
.yb4f_c00002{bottom:498.645000px;}
.y493_c00002{bottom:499.005000px;}
.y330_c00002{bottom:499.362840px;}
.y331_c00002{bottom:499.365000px;}
.y148_c00002{bottom:499.725000px;}
.y738_c00002{bottom:500.082840px;}
.y3f5_c00002{bottom:500.085000px;}
.y473_c00002{bottom:500.445000px;}
.y11a9_c00002{bottom:500.445720px;}
.y1082_c00002{bottom:500.446800px;}
.yfc0_c00002{bottom:500.449680px;}
.y11bc_c00002{bottom:500.451480px;}
.y41f_c00002{bottom:500.805000px;}
.y80c_c00002{bottom:501.165000px;}
.y664_c00002{bottom:501.525000px;}
.ye1_c00002{bottom:501.885000px;}
.yec4_c00002{bottom:502.241400px;}
.yebf_c00002{bottom:502.245000px;}
.y4cb_c00002{bottom:502.605000px;}
.y539_c00002{bottom:502.962840px;}
.y22_c00002{bottom:502.965000px;}
.y1430_c00002{bottom:502.965720px;}
.y127a_c00002{bottom:502.966800px;}
.y1287_c00002{bottom:502.967520px;}
.y11fb_c00002{bottom:502.969680px;}
.y50f_c00002{bottom:503.325000px;}
.y64d_c00002{bottom:503.686800px;}
.y4b9_c00002{bottom:504.045000px;}
.y1cc_c00002{bottom:504.405000px;}
.ye6b_c00002{bottom:504.758880px;}
.y5e6_c00002{bottom:505.125000px;}
.y7f3_c00002{bottom:505.126800px;}
.y6c6_c00002{bottom:505.485000px;}
.y1319_c00002{bottom:505.485720px;}
.y1388_c00002{bottom:505.489680px;}
.ya21_c00002{bottom:505.800000px;}
.yf8_c00002{bottom:505.845000px;}
.yabc_c00002{bottom:506.160000px;}
.y78b_c00002{bottom:506.205000px;}
.ya66_c00002{bottom:506.520000px;}
.ydee_c00002{bottom:506.565000px;}
.yd5f_c00002{bottom:506.925000px;}
.y9a1_c00002{bottom:507.240000px;}
.ybcd_c00002{bottom:507.285000px;}
.yd83_c00002{bottom:507.641760px;}
.y3da_c00002{bottom:507.645000px;}
.y3d9_c00002{bottom:507.646800px;}
.yc2b_c00002{bottom:508.005000px;}
.y123a_c00002{bottom:508.005720px;}
.yf91_c00002{bottom:508.006800px;}
.y12d4_c00002{bottom:508.009680px;}
.y25a_c00002{bottom:508.365000px;}
.y864_c00002{bottom:508.720680px;}
.y299_c00002{bottom:508.725000px;}
.ya4_c00002{bottom:509.085000px;}
.yf31_c00002{bottom:509.089680px;}
.y956_c00002{bottom:509.400000px;}
.y5d7_c00002{bottom:509.445000px;}
.y177_c00002{bottom:509.805000px;}
.ycc8_c00002{bottom:510.165000px;}
.y13b0_c00002{bottom:510.522840px;}
.y521_c00002{bottom:510.524640px;}
.y440_c00002{bottom:510.525000px;}
.y103f_c00002{bottom:510.525720px;}
.y1131_c00002{bottom:510.526800px;}
.yf61_c00002{bottom:510.527520px;}
.y10b0_c00002{bottom:510.529680px;}
.y6fd_c00002{bottom:510.885000px;}
.yba7_c00002{bottom:511.605000px;}
.y4e_c00002{bottom:511.965000px;}
.y47b_c00002{bottom:512.325000px;}
.yb26_c00002{bottom:512.685000px;}
.y673_c00002{bottom:513.045000px;}
.y134b_c00002{bottom:513.046800px;}
.y1011_c00002{bottom:513.049680px;}
.y241_c00002{bottom:513.405000px;}
.yde2_c00002{bottom:513.765000px;}
.y69e_c00002{bottom:514.125000px;}
.y34a_c00002{bottom:514.485000px;}
.ye23_c00002{bottom:514.823400px;}
.ye59_c00002{bottom:514.841760px;}
.y269_c00002{bottom:514.845000px;}
.y13da_c00002{bottom:514.845720px;}
.y4e4_c00002{bottom:515.205000px;}
.y5fb_c00002{bottom:515.565000px;}
.yfe6_c00002{bottom:515.565720px;}
.y1098_c00002{bottom:515.566800px;}
.yf15_c00002{bottom:515.919240px;}
.y1b1_c00002{bottom:515.925000px;}
.y694_c00002{bottom:516.285000px;}
.y7fc_c00002{bottom:516.645000px;}
.y32f_c00002{bottom:516.646800px;}
.y931_c00002{bottom:517.005000px;}
.y933_c00002{bottom:517.365000px;}
.y76f_c00002{bottom:517.366800px;}
.yac1_c00002{bottom:517.680000px;}
.y737_c00002{bottom:517.721040px;}
.y15f_c00002{bottom:517.725000px;}
.y11a8_c00002{bottom:518.083920px;}
.y580_c00002{bottom:518.085000px;}
.y114b_c00002{bottom:518.085720px;}
.y10c6_c00002{bottom:518.086800px;}
.y12db_c00002{bottom:518.087520px;}
.y1081_c00002{bottom:518.089680px;}
.yc57_c00002{bottom:518.445000px;}
.yc42_c00002{bottom:518.805000px;}
.y6e4_c00002{bottom:519.165000px;}
.y13fd_c00002{bottom:519.166800px;}
.yc41_c00002{bottom:519.525000px;}
.ya20_c00002{bottom:520.200000px;}
.y492_c00002{bottom:520.245000px;}
.ya1f_c00002{bottom:520.560000px;}
.y538_c00002{bottom:520.601040px;}
.y11e9_c00002{bottom:520.603920px;}
.y8c6_c00002{bottom:520.605000px;}
.y1286_c00002{bottom:520.605720px;}
.y14a2_c00002{bottom:520.606800px;}
.ya65_c00002{bottom:520.920000px;}
.y147_c00002{bottom:520.965000px;}
.y64b_c00002{bottom:521.323920px;}
.y64c_c00002{bottom:521.325000px;}
.yd26_c00002{bottom:521.685000px;}
.y216_c00002{bottom:521.692200px;}
.y8a2_c00002{bottom:522.045000px;}
.y5bc_c00002{bottom:522.763920px;}
.y41d_c00002{bottom:522.765000px;}
.y922_c00002{bottom:523.125000px;}
.y1db_c00002{bottom:523.485000px;}
.y115_c00002{bottom:523.845000px;}
.y955_c00002{bottom:524.160000px;}
.y57f_c00002{bottom:524.205000px;}
.y472_c00002{bottom:524.565000px;}
.ybcc_c00002{bottom:524.925000px;}
.y1cb_c00002{bottom:525.285000px;}
.y3d8_c00002{bottom:525.285720px;}
.y11d2_c00002{bottom:525.641040px;}
.yf90_c00002{bottom:525.643920px;}
.y2d8_c00002{bottom:525.645000px;}
.y1174_c00002{bottom:525.645720px;}
.y1066_c00002{bottom:525.646800px;}
.y1451_c00002{bottom:525.647520px;}
.y9a0_c00002{bottom:525.960000px;}
.y863_c00002{bottom:526.004640px;}
.y8fa_c00002{bottom:526.005000px;}
.y407_c00002{bottom:526.365000px;}
.yf7_c00002{bottom:526.725000px;}
.y134_c00002{bottom:527.085000px;}
.y78a_c00002{bottom:527.445000px;}
.y4ca_c00002{bottom:527.805000px;}
.y520_c00002{bottom:527.808600px;}
.y11fa_c00002{bottom:528.161040px;}
.ye6a_c00002{bottom:528.162120px;}
.y11c8_c00002{bottom:528.163920px;}
.y30e_c00002{bottom:528.165000px;}
.yf60_c00002{bottom:528.165720px;}
.yc06_c00002{bottom:528.885000px;}
.ydb4_c00002{bottom:529.236360px;}
.y125e_c00002{bottom:529.243200px;}
.yc89_c00002{bottom:529.245000px;}
.y71d_c00002{bottom:529.605000px;}
.y298_c00002{bottom:529.965000px;}
.yb25_c00002{bottom:530.325000px;}
.y1318_c00002{bottom:530.681040px;}
.y1387_c00002{bottom:530.683920px;}
.y176_c00002{bottom:530.685000px;}
.y1423_c00002{bottom:530.685720px;}
.y38a_c00002{bottom:531.045000px;}
.y7bf_c00002{bottom:531.405000px;}
.y4b8_c00002{bottom:532.125000px;}
.y13d9_c00002{bottom:532.129680px;}
.ybe_c00002{bottom:532.845000px;}
.y1239_c00002{bottom:533.201040px;}
.yee1_c00002{bottom:533.201760px;}
.y1096_c00002{bottom:533.203920px;}
.y1097_c00002{bottom:533.205000px;}
.y145e_c00002{bottom:533.205720px;}
.yba5_c00002{bottom:533.565000px;}
.yac0_c00002{bottom:534.240000px;}
.yf30_c00002{bottom:534.281040px;}
.y1483_c00002{bottom:534.283920px;}
.y21_c00002{bottom:534.285000px;}
.yabb_c00002{bottom:534.600000px;}
.y930_c00002{bottom:534.645000px;}
.ya64_c00002{bottom:534.960000px;}
.y76e_c00002{bottom:535.003920px;}
.y736_c00002{bottom:535.005000px;}
.yad0_c00002{bottom:535.320000px;}
.y57e_c00002{bottom:535.365000px;}
.y57d_c00002{bottom:535.366800px;}
.y1216_c00002{bottom:535.369680px;}
.y103e_c00002{bottom:535.721040px;}
.y1456_c00002{bottom:535.721760px;}
.y10af_c00002{bottom:535.723920px;}
.y1f1_c00002{bottom:535.725000px;}
.y1190_c00002{bottom:535.725720px;}
.y47a_c00002{bottom:536.085000px;}
.yc56_c00002{bottom:536.445000px;}
.y2b6_c00002{bottom:536.805000px;}
.y13fc_c00002{bottom:536.805720px;}
.y2f4_c00002{bottom:537.165000px;}
.y693_c00002{bottom:537.525000px;}
.ye22_c00002{bottom:537.867000px;}
.y672_c00002{bottom:537.883920px;}
.ye0_c00002{bottom:537.885000px;}
.y133b_c00002{bottom:537.886800px;}
.y954_c00002{bottom:538.200000px;}
.y1010_c00002{bottom:538.241040px;}
.y12b4_c00002{bottom:538.241760px;}
.y1302_c00002{bottom:538.243920px;}
.y918_c00002{bottom:538.245000px;}
.ybc6_c00002{bottom:538.605000px;}
.y15e_c00002{bottom:538.965000px;}
.y50e_c00002{bottom:539.325000px;}
.yf14_c00002{bottom:539.682120px;}
.yc73_c00002{bottom:539.685000px;}
.y99f_c00002{bottom:540.000000px;}
.y65a_c00002{bottom:540.405000px;}
.yfe5_c00002{bottom:540.761040px;}
.y363_c00002{bottom:540.765000px;}
.y5e5_c00002{bottom:541.125000px;}
.y7fb_c00002{bottom:541.485000px;}
.y146_c00002{bottom:541.845000px;}
.yc67_c00002{bottom:542.205000px;}
.ybcb_c00002{bottom:542.565000px;}
.y3d7_c00002{bottom:542.569680px;}
.ybf8_c00002{bottom:542.925000px;}
.y11d1_c00002{bottom:542.925720px;}
.y11a7_c00002{bottom:542.927520px;}
.y11bb_c00002{bottom:543.281040px;}
.y1064_c00002{bottom:543.283920px;}
.y1065_c00002{bottom:543.285000px;}
.y13ad_c00002{bottom:543.285720px;}
.y862_c00002{bottom:543.642840px;}
.yafc_c00002{bottom:544.005000px;}
.ybfe_c00002{bottom:544.365000px;}
.y259_c00002{bottom:544.725000px;}
.ya3_c00002{bottom:545.085000px;}
.y8f8_c00002{bottom:545.445000px;}
.y51f_c00002{bottom:545.446800px;}
.y11e8_c00002{bottom:545.449680px;}
.y11f9_c00002{bottom:545.451480px;}
.yb76_c00002{bottom:545.805000px;}
.y619_c00002{bottom:546.165000px;}
.y64a_c00002{bottom:546.166800px;}
.y1ca_c00002{bottom:546.525000px;}
.y9d8_c00002{bottom:546.885000px;}
.y406_c00002{bottom:547.245000px;}
.y5ba_c00002{bottom:547.600680px;}
.y5bb_c00002{bottom:547.605000px;}
.y4d_c00002{bottom:547.965000px;}
.y1317_c00002{bottom:547.969680px;}
.yaba_c00002{bottom:548.279850px;}
.y215_c00002{bottom:548.325000px;}
.yebe_c00002{bottom:548.674920px;}
.yec3_c00002{bottom:548.681400px;}
.y471_c00002{bottom:548.685000px;}
.yba6_c00002{bottom:549.045000px;}
.ya63_c00002{bottom:549.360000px;}
.y30d_c00002{bottom:549.405000px;}
.yb6f_c00002{bottom:549.765000px;}
.ya1e_c00002{bottom:550.080000px;}
.yd1b_c00002{bottom:550.125000px;}
.y349_c00002{bottom:550.485000px;}
.yf8f_c00002{bottom:550.485720px;}
.y10e7_c00002{bottom:550.486800px;}
.yfbf_c00002{bottom:550.487520px;}
.y144e_c00002{bottom:550.489680px;}
.y297_c00002{bottom:550.845000px;}
.y4e3_c00002{bottom:551.205000px;}
.yacf_c00002{bottom:551.520000px;}
.y5d6_c00002{bottom:551.565000px;}
.yf2f_c00002{bottom:551.569680px;}
.y32e_c00002{bottom:551.921040px;}
.y1b0_c00002{bottom:551.925000px;}
.y711_c00002{bottom:552.285000px;}
.ydb3_c00002{bottom:552.639600px;}
.y7be_c00002{bottom:552.645000px;}
.y953_c00002{bottom:552.960000px;}
.y6fc_c00002{bottom:553.005000px;}
.y143f_c00002{bottom:553.005720px;}
.yf5f_c00002{bottom:553.006800px;}
.y13bb_c00002{bottom:553.007520px;}
.y149b_c00002{bottom:553.008600px;}
.y103d_c00002{bottom:553.009680px;}
.y59a_c00002{bottom:553.365000px;}
.y4c2_c00002{bottom:553.725000px;}
.y2d7_c00002{bottom:554.085000px;}
.y4c9_c00002{bottom:554.445000px;}
.y28b_c00002{bottom:555.165000px;}
.y537_c00002{bottom:555.521040px;}
.y133a_c00002{bottom:555.523920px;}
.y240_c00002{bottom:555.525000px;}
.y12b3_c00002{bottom:555.525720px;}
.y134a_c00002{bottom:555.526800px;}
.y100f_c00002{bottom:555.529680px;}
.ycdc_c00002{bottom:555.885000px;}
.y125d_c00002{bottom:555.886800px;}
.y848_c00002{bottom:556.245000px;}
.y8c5_c00002{bottom:556.605000px;}
.y1f0_c00002{bottom:556.965000px;}
.y4b7_c00002{bottom:556.966800px;}
.y13d8_c00002{bottom:557.318520px;}
.y838_c00002{bottom:557.325000px;}
.y2b5_c00002{bottom:558.045000px;}
.y1095_c00002{bottom:558.046800px;}
.yfe4_c00002{bottom:558.049680px;}
.y663_c00002{bottom:558.405000px;}
.y8d6_c00002{bottom:558.761400px;}
.y57c_c00002{bottom:559.125000px;}
.y1482_c00002{bottom:559.126800px;}
.yd24_c00002{bottom:559.485000px;}
.y114_c00002{bottom:559.845000px;}
.y76d_c00002{bottom:559.846800px;}
.y735_c00002{bottom:560.201040px;}
.y69d_c00002{bottom:560.205000px;}
.y10c5_c00002{bottom:560.562840px;}
.y11d0_c00002{bottom:560.563920px;}
.yde1_c00002{bottom:560.565000px;}
.y11a6_c00002{bottom:560.565720px;}
.y10ae_c00002{bottom:560.566800px;}
.yde0_c00002{bottom:560.567160px;}
.y114a_c00002{bottom:560.569680px;}
.y861_c00002{bottom:560.926800px;}
.ye21_c00002{bottom:561.270240px;}
.y6e3_c00002{bottom:561.285000px;}
.ye58_c00002{bottom:561.631320px;}
.y13fb_c00002{bottom:561.646800px;}
.ycb0_c00002{bottom:562.005000px;}
.yab9_c00002{bottom:562.320000px;}
.ycf8_c00002{bottom:562.365000px;}
.yf6_c00002{bottom:562.725000px;}
.y671_c00002{bottom:562.729680px;}
.ya62_c00002{bottom:563.040000px;}
.y51e_c00002{bottom:563.081040px;}
.y3f4_c00002{bottom:563.085000px;}
.y1285_c00002{bottom:563.085720px;}
.y1301_c00002{bottom:563.086800px;}
.y11f8_c00002{bottom:563.089680px;}
.ycc7_c00002{bottom:563.445000px;}
.y649_c00002{bottom:563.805000px;}
.y648_c00002{bottom:563.806800px;}
.ya1c_c00002{bottom:564.120000px;}
.yb75_c00002{bottom:564.165000px;}
.ybf7_c00002{bottom:564.525000px;}
.y99d_c00002{bottom:564.840000px;}
.y99e_c00002{bottom:565.200000px;}
.yd7f_c00002{bottom:565.245000px;}
.ybfd_c00002{bottom:565.605000px;}
.y258_c00002{bottom:565.965000px;}
.ydf_c00002{bottom:566.325000px;}
.y175_c00002{bottom:566.685000px;}
.y952_c00002{bottom:567.000000px;}
.yd10_c00002{bottom:567.045000px;}
.y1c9_c00002{bottom:567.405000px;}
.yace_c00002{bottom:567.720000px;}
.y3d6_c00002{bottom:567.765000px;}
.yf8e_c00002{bottom:568.123920px;}
.yd47_c00002{bottom:568.125000px;}
.yfbe_c00002{bottom:568.125720px;}
.y1080_c00002{bottom:568.126800px;}
.y405_c00002{bottom:568.485000px;}
.y4c_c00002{bottom:568.845000px;}
.y32d_c00002{bottom:569.205000px;}
.y32c_c00002{bottom:569.214360px;}
.y7cd_c00002{bottom:569.565000px;}
.yb24_c00002{bottom:569.925000px;}
.y20_c00002{bottom:570.285000px;}
.y11e7_c00002{bottom:570.643920px;}
.y57b_c00002{bottom:570.645000px;}
.y1130_c00002{bottom:570.645720px;}
.y1292_c00002{bottom:570.646800px;}
.yf5e_c00002{bottom:570.647520px;}
.y77d_c00002{bottom:571.005000px;}
.y348_c00002{bottom:571.365000px;}
.yebd_c00002{bottom:571.718520px;}
.y296_c00002{bottom:571.725000px;}
.y362_c00002{bottom:572.085000px;}
.y5fa_c00002{bottom:572.442840px;}
.ye3e_c00002{bottom:572.445000px;}
.y536_c00002{bottom:572.805000px;}
.y535_c00002{bottom:572.808600px;}
.y5b9_c00002{bottom:573.163920px;}
.y389_c00002{bottom:573.165000px;}
.y7d1_c00002{bottom:573.525000px;}
.y125c_c00002{bottom:573.532200px;}
.y6fb_c00002{bottom:573.885000px;}
.y599_c00002{bottom:574.245000px;}
.y13d7_c00002{bottom:574.602480px;}
.y4b6_c00002{bottom:574.605000px;}
.ye69_c00002{bottom:574.950960px;}
.ydb0_c00002{bottom:574.961400px;}
.y27c_c00002{bottom:574.965000px;}
.y50d_c00002{bottom:575.325000px;}
.y144d_c00002{bottom:575.681040px;}
.y145d_c00002{bottom:575.682840px;}
.y1094_c00002{bottom:575.683920px;}
.ybc5_c00002{bottom:575.685000px;}
.yabf_c00002{bottom:576.000000px;}
.yc72_c00002{bottom:576.045000px;}
.yab8_c00002{bottom:576.360000px;}
.y23f_c00002{bottom:576.405000px;}
.yf2e_c00002{bottom:576.761040px;}
.y57a_c00002{bottom:576.765000px;}
.y1481_c00002{bottom:576.765720px;}
.ydb2_c00002{bottom:577.121760px;}
.y5e4_c00002{bottom:577.125000px;}
.ya61_c00002{bottom:577.439850px;}
.y734_c00002{bottom:577.485000px;}
.y76c_c00002{bottom:577.486800px;}
.ya1d_c00002{bottom:577.800000px;}
.y1e5_c00002{bottom:577.845000px;}
.y1215_c00002{bottom:577.849680px;}
.ya1b_c00002{bottom:578.160000px;}
.y103b_c00002{bottom:578.201040px;}
.y110e_c00002{bottom:578.203920px;}
.y103c_c00002{bottom:578.205000px;}
.y10d3_c00002{bottom:578.205720px;}
.y860_c00002{bottom:578.564640px;}
.y214_c00002{bottom:578.565000px;}
.y2b4_c00002{bottom:578.925000px;}
.y99c_c00002{bottom:579.240000px;}
.y692_c00002{bottom:579.285000px;}
.ycaf_c00002{bottom:579.645000px;}
.y872_c00002{bottom:580.005000px;}
.y921_c00002{bottom:580.365000px;}
.y1339_c00002{bottom:580.369680px;}
.y12b2_c00002{bottom:580.721040px;}
.y1300_c00002{bottom:580.721760px;}
.y100e_c00002{bottom:580.723920px;}
.y113_c00002{bottom:580.725000px;}
.ya2_c00002{bottom:581.085000px;}
.y647_c00002{bottom:581.445000px;}
.y951_c00002{bottom:581.760000px;}
.yc94_c00002{bottom:581.805000px;}
.y6e2_c00002{bottom:582.165000px;}
.y2d6_c00002{bottom:582.525000px;}
.y4c8_c00002{bottom:582.885000px;}
.yfe3_c00002{bottom:583.241040px;}
.ycad_c00002{bottom:583.245000px;}
.yacd_c00002{bottom:583.920000px;}
.yf5_c00002{bottom:583.965000px;}
.y470_c00002{bottom:584.325000px;}
.ye20_c00002{bottom:584.673480px;}
.ye57_c00002{bottom:584.674920px;}
.yce7_c00002{bottom:584.685000px;}
.yd5e_c00002{bottom:585.045000px;}
.y30c_c00002{bottom:585.405000px;}
.y11cf_c00002{bottom:585.405720px;}
.y11a5_c00002{bottom:585.406800px;}
.y1205_c00002{bottom:585.761040px;}
.y13ac_c00002{bottom:585.762840px;}
.y1063_c00002{bottom:585.763920px;}
.y107f_c00002{bottom:585.765000px;}
.y1450_c00002{bottom:585.765720px;}
.ycf7_c00002{bottom:586.125000px;}
.y491_c00002{bottom:586.485000px;}
.y257_c00002{bottom:586.845000px;}
.y174_c00002{bottom:587.565000px;}
.y670_c00002{bottom:587.923920px;}
.y1af_c00002{bottom:587.925000px;}
.y139d_c00002{bottom:587.929680px;}
.y1284_c00002{bottom:588.281040px;}
.y1279_c00002{bottom:588.282840px;}
.y112f_c00002{bottom:588.283920px;}
.y15d_c00002{bottom:588.285000px;}
.yf5d_c00002{bottom:588.285720px;}
.y7bd_c00002{bottom:588.645000px;}
.y454_c00002{bottom:589.005000px;}
.y404_c00002{bottom:589.365000px;}
.y276_c00002{bottom:589.725000px;}
.y5f9_c00002{bottom:589.726800px;}
.yabe_c00002{bottom:590.040000px;}
.y662_c00002{bottom:590.085000px;}
.yab7_c00002{bottom:590.400000px;}
.y7cc_c00002{bottom:590.445000px;}
.y534_c00002{bottom:590.446800px;}
.yd3d_c00002{bottom:590.805000px;}
.ya60_c00002{bottom:591.120000px;}
.yde_c00002{bottom:591.165000px;}
.ydd_c00002{bottom:591.166800px;}
.y1f_c00002{bottom:591.525000px;}
.yd1a_c00002{bottom:591.885000px;}
.ya5b_c00002{bottom:592.200000px;}
.ye07_c00002{bottom:592.232400px;}
.y7f2_c00002{bottom:592.245000px;}
.y3d5_c00002{bottom:592.595640px;}
.y8d5_c00002{bottom:592.603200px;}
.y347_c00002{bottom:592.605000px;}
.y1ef_c00002{bottom:592.965000px;}
.yfbd_c00002{bottom:592.966800px;}
.y1238_c00002{bottom:592.967520px;}
.y1100_c00002{bottom:592.969680px;}
.y99b_c00002{bottom:593.280000px;}
.y13d6_c00002{bottom:593.687160px;}
.y2f3_c00002{bottom:594.045000px;}
.yf2d_c00002{bottom:594.049680px;}
.y755_c00002{bottom:594.405000px;}
.y32b_c00002{bottom:594.409680px;}
.yb88_c00002{bottom:594.765000px;}
.y76b_c00002{bottom:595.121040px;}
.yebc_c00002{bottom:595.121760px;}
.y6fa_c00002{bottom:595.125000px;}
.y733_c00002{bottom:595.126800px;}
.y55e_c00002{bottom:595.485000px;}
.y10ad_c00002{bottom:595.485720px;}
.y136a_c00002{bottom:595.486800px;}
.y103a_c00002{bottom:595.489680px;}
.y950_c00002{bottom:595.800000px;}
.y18f_c00002{bottom:595.845000px;}
.yeeb_c00002{bottom:595.847160px;}
.y85f_c00002{bottom:596.202840px;}
.y50c_c00002{bottom:596.204280px;}
.y13fa_c00002{bottom:596.925720px;}
.y23e_c00002{bottom:597.285000px;}
.yc86_c00002{bottom:597.645000px;}
.y5b7_c00002{bottom:598.000680px;}
.y5b8_c00002{bottom:598.005000px;}
.y12ff_c00002{bottom:598.005720px;}
.y1349_c00002{bottom:598.006800px;}
.y12b1_c00002{bottom:598.009680px;}
.ycc6_c00002{bottom:598.365000px;}
.y1e4_c00002{bottom:598.725000px;}
.yddf_c00002{bottom:599.445000px;}
.y125b_c00002{bottom:599.803200px;}
.y43f_c00002{bottom:599.805000px;}
.y43e_c00002{bottom:599.806440px;}
.y4b5_c00002{bottom:599.809680px;}
.yacc_c00002{bottom:600.119850px;}
.y871_c00002{bottom:600.165000px;}
.ye68_c00002{bottom:600.512040px;}
.y691_c00002{bottom:600.525000px;}
.yfe2_c00002{bottom:600.526800px;}
.y129e_c00002{bottom:600.529680px;}
.ybc3_c00002{bottom:600.885000px;}
.yc23_c00002{bottom:601.245000px;}
.yc0e_c00002{bottom:601.605000px;}
.y1480_c00002{bottom:601.606800px;}
.y112_c00002{bottom:601.965000px;}
.y920_c00002{bottom:602.685000px;}
.y11a4_c00002{bottom:603.039960px;}
.y11ce_c00002{bottom:603.043920px;}
.yce6_c00002{bottom:603.045000px;}
.y1496_c00002{bottom:603.045720px;}
.y149f_c00002{bottom:603.046440px;}
.y110d_c00002{bottom:603.046800px;}
.y1182_c00002{bottom:603.049680px;}
.y1c8_c00002{bottom:603.405000px;}
.yb6e_c00002{bottom:603.765000px;}
.yab6_c00002{bottom:604.080000px;}
.yd46_c00002{bottom:604.125000px;}
.y6ae_c00002{bottom:604.485000px;}
.y4b_c00002{bottom:604.845000px;}
.y3f3_c00002{bottom:605.205000px;}
.ya5f_c00002{bottom:605.520000px;}
.y1338_c00002{bottom:605.561040px;}
.y789_c00002{bottom:605.565000px;}
.y100d_c00002{bottom:605.565720px;}
.y1278_c00002{bottom:605.566800px;}
.y11f7_c00002{bottom:605.569680px;}
.yba4_c00002{bottom:605.925000px;}
.ya5a_c00002{bottom:606.240000px;}
.y646_c00002{bottom:606.280680px;}
.y49d_c00002{bottom:606.285000px;}
.y618_c00002{bottom:606.645000px;}
.y90c_c00002{bottom:606.645720px;}
.y77c_c00002{bottom:607.005000px;}
.y5f8_c00002{bottom:607.363920px;}
.y3a6_c00002{bottom:607.365000px;}
.ye1f_c00002{bottom:607.717080px;}
.y256_c00002{bottom:607.725000px;}
.ya1a_c00002{bottom:608.040000px;}
.ye56_c00002{bottom:608.078160px;}
.y532_c00002{bottom:608.081040px;}
.y533_c00002{bottom:608.085000px;}
.ydc_c00002{bottom:608.805000px;}
.ydb_c00002{bottom:608.806800px;}
.yd0f_c00002{bottom:609.165000px;}
.yd11_c00002{bottom:609.525000px;}
.y213_c00002{bottom:609.885000px;}
.yb18_c00002{bottom:610.245000px;}
.y94f_c00002{bottom:610.560000px;}
.y403_c00002{bottom:610.605000px;}
.y1062_c00002{bottom:610.605720px;}
.y107e_c00002{bottom:610.606800px;}
.y1149_c00002{bottom:610.607520px;}
.yf8d_c00002{bottom:610.609680px;}
.y275_c00002{bottom:610.965000px;}
.y2d5_c00002{bottom:611.325000px;}
.y4c7_c00002{bottom:611.685000px;}
.yf0c_c00002{bottom:612.045000px;}
.y1e_c00002{bottom:612.405000px;}
.y76a_c00002{bottom:612.406800px;}
.y732_c00002{bottom:612.761040px;}
.y66f_c00002{bottom:612.765000px;}
.y66e_c00002{bottom:612.769680px;}
.y10ac_c00002{bottom:613.123920px;}
.y51d_c00002{bottom:613.125000px;}
.y112e_c00002{bottom:613.125720px;}
.yf5c_c00002{bottom:613.126800px;}
.y346_c00002{bottom:613.485000px;}
.y85e_c00002{bottom:613.486800px;}
.y50b_c00002{bottom:613.488240px;}
.y268_c00002{bottom:613.845000px;}
.y4e2_c00002{bottom:614.205000px;}
.y7fa_c00002{bottom:614.565000px;}
.y2b3_c00002{bottom:614.925000px;}
.y2f2_c00002{bottom:615.285000px;}
.ye06_c00002{bottom:615.635640px;}
.y1422_c00002{bottom:615.643920px;}
.y1348_c00002{bottom:615.645000px;}
.y55d_c00002{bottom:616.005000px;}
.yacb_c00002{bottom:616.320000px;}
.y4eb_c00002{bottom:616.365000px;}
.y4f0_c00002{bottom:616.725000px;}
.ya1_c00002{bottom:617.085000px;}
.y43d_c00002{bottom:617.444640px;}
.y8f7_c00002{bottom:617.445000px;}
.y13d5_c00002{bottom:617.805000px;}
.y13d4_c00002{bottom:617.805360px;}
.y3d4_c00002{bottom:618.159960px;}
.yfe1_c00002{bottom:618.163920px;}
.ybc4_c00002{bottom:618.165000px;}
.y10ff_c00002{bottom:618.165720px;}
.yab5_c00002{bottom:618.480000px;}
.y23d_c00002{bottom:618.525000px;}
.yec2_c00002{bottom:618.528240px;}
.y99a_c00002{bottom:618.840000px;}
.ye3c_c00002{bottom:618.883920px;}
.ye3d_c00002{bottom:618.885000px;}
.yf2b_c00002{bottom:619.242840px;}
.y147f_c00002{bottom:619.243920px;}
.yf2c_c00002{bottom:619.245000px;}
.ya5e_c00002{bottom:619.560000px;}
.y32a_c00002{bottom:619.605000px;}
.y3bc_c00002{bottom:619.965000px;}
.ya59_c00002{bottom:620.280000px;}
.y1ae_c00002{bottom:620.322840px;}
.y11a3_c00002{bottom:620.323920px;}
.y870_c00002{bottom:620.325000px;}
.y118f_c00002{bottom:620.681040px;}
.y122c_c00002{bottom:620.683920px;}
.y1039_c00002{bottom:620.685000px;}
.y1038_c00002{bottom:620.685720px;}
.y8a1_c00002{bottom:621.045000px;}
.y690_c00002{bottom:621.405000px;}
.yb34_c00002{bottom:621.409320px;}
.y71c_c00002{bottom:621.765000px;}
.y13f9_c00002{bottom:621.766800px;}
.y30b_c00002{bottom:622.125000px;}
.y826_c00002{bottom:622.165350px;}
.yc0d_c00002{bottom:622.485000px;}
.ydde_c00002{bottom:622.835640px;}
.y111_c00002{bottom:622.845000px;}
.y1337_c00002{bottom:622.845720px;}
.y12fe_c00002{bottom:623.201040px;}
.y12b0_c00002{bottom:623.203920px;}
.y1277_c00002{bottom:623.205000px;}
.y1276_c00002{bottom:623.205720px;}
.y5b5_c00002{bottom:623.563920px;}
.y5b6_c00002{bottom:623.565000px;}
.ye67_c00002{bottom:623.915280px;}
.y92f_c00002{bottom:623.925000px;}
.y710_c00002{bottom:624.285000px;}
.y94e_c00002{bottom:624.600000px;}
.y490_c00002{bottom:624.645000px;}
.y453_c00002{bottom:625.005000px;}
.y531_c00002{bottom:625.365000px;}
.y530_c00002{bottom:625.366800px;}
.y129d_c00002{bottom:625.721040px;}
.y4a_c00002{bottom:625.725000px;}
.yf4_c00002{bottom:626.085000px;}
.yda_c00002{bottom:626.445000px;}
.y125a_c00002{bottom:626.446800px;}
.y8d4_c00002{bottom:626.801400px;}
.yd3c_c00002{bottom:626.805000px;}
.yd05_c00002{bottom:627.165000px;}
.y617_c00002{bottom:627.885000px;}
.y11cd_c00002{bottom:627.886800px;}
.y1204_c00002{bottom:628.241040px;}
.y149e_c00002{bottom:628.241760px;}
.y1061_c00002{bottom:628.243920px;}
.y107d_c00002{bottom:628.245000px;}
.y107c_c00002{bottom:628.245720px;}
.y8c4_c00002{bottom:628.605000px;}
.y1ee_c00002{bottom:628.965000px;}
.yba3_c00002{bottom:629.325000px;}
.y173_c00002{bottom:629.685000px;}
.yaca_c00002{bottom:630.000000px;}
.y769_c00002{bottom:630.042840px;}
.y731_c00002{bottom:630.045000px;}
.y730_c00002{bottom:630.045720px;}
.y7d0_c00002{bottom:630.405000px;}
.y1369_c00002{bottom:630.409680px;}
.y100c_c00002{bottom:630.761040px;}
.yf5b_c00002{bottom:630.763920px;}
.y88e_c00002{bottom:630.765000px;}
.y12c2_c00002{bottom:630.765720px;}
.y85d_c00002{bottom:631.119960px;}
.y6f9_c00002{bottom:631.125000px;}
.y50a_c00002{bottom:631.126440px;}
.ye55_c00002{bottom:631.481400px;}
.y850_c00002{bottom:631.485000px;}
.y18e_c00002{bottom:631.845000px;}
.yabd_c00002{bottom:632.160000px;}
.y5f7_c00002{bottom:632.205000px;}
.y999_c00002{bottom:632.520000px;}
.y7cb_c00002{bottom:632.565000px;}
.y997_c00002{bottom:632.880000px;}
.ye1e_c00002{bottom:633.278160px;}
.yf13_c00002{bottom:633.281400px;}
.y1d_c00002{bottom:633.285000px;}
.ya5d_c00002{bottom:633.600000px;}
.ya57_c00002{bottom:633.960000px;}
.yd19_c00002{bottom:634.005000px;}
.ya58_c00002{bottom:634.320000px;}
.y345_c00002{bottom:634.365000px;}
.y1e3_c00002{bottom:634.725000px;}
.yc37_c00002{bottom:635.085000px;}
.yf8c_c00002{bottom:635.801040px;}
.y10fe_c00002{bottom:635.803920px;}
.y2b2_c00002{bottom:635.805000px;}
.yfbc_c00002{bottom:635.805720px;}
.y2f1_c00002{bottom:636.165000px;}
.yf2a_c00002{bottom:636.526800px;}
.ybc2_c00002{bottom:636.885000px;}
.y579_c00002{bottom:637.245000px;}
.y55b_c00002{bottom:637.605000px;}
.ya19_c00002{bottom:637.920000px;}
.y1ad_c00002{bottom:637.961040px;}
.y35f_c00002{bottom:637.965000px;}
.y1291_c00002{bottom:637.966800px;}
.y1037_c00002{bottom:637.969680px;}
.y10c4_c00002{bottom:637.971480px;}
.ybc0_c00002{bottom:638.325000px;}
.ye05_c00002{bottom:638.679240px;}
.y212_c00002{bottom:639.045000px;}
.y94d_c00002{bottom:639.360000px;}
.y13f8_c00002{bottom:639.403920px;}
.y1c7_c00002{bottom:639.405000px;}
.y2d4_c00002{bottom:639.765000px;}
.y650_c00002{bottom:640.125000px;}
.ycc5_c00002{bottom:640.485000px;}
.y1421_c00002{bottom:640.486800px;}
.y1386_c00002{bottom:640.489680px;}
.y12fd_c00002{bottom:640.491480px;}
.ybd_c00002{bottom:640.845000px;}
.y4c6_c00002{bottom:641.205000px;}
.yc66_c00002{bottom:641.563200px;}
.yebb_c00002{bottom:641.565000px;}
.y92e_c00002{bottom:641.925000px;}
.y4a8_c00002{bottom:642.285000px;}
.y43c_c00002{bottom:642.285720px;}
.yc58_c00002{bottom:642.645000px;}
.y52f_c00002{bottom:643.005000px;}
.yfe0_c00002{bottom:643.006800px;}
.y3a5_c00002{bottom:643.365000px;}
.y634_c00002{bottom:643.725000px;}
.y1259_c00002{bottom:644.082840px;}
.y15c_c00002{bottom:644.085000px;}
.y147e_c00002{bottom:644.091480px;}
.yb4e_c00002{bottom:644.445000px;}
.ye9e_c00002{bottom:644.813640px;}
.y11a2_c00002{bottom:645.157800px;}
.y55c_c00002{bottom:645.165000px;}
.y1214_c00002{bottom:645.523920px;}
.y3d3_c00002{bottom:645.525000px;}
.y1203_c00002{bottom:645.525720px;}
.y110c_c00002{bottom:645.526800px;}
.y11cc_c00002{bottom:645.527520px;}
.y12e2_c00002{bottom:645.529680px;}
.yddd_c00002{bottom:645.879240px;}
.yc2a_c00002{bottom:645.885000px;}
.yc16_c00002{bottom:646.245000px;}
.y998_c00002{bottom:646.560000px;}
.y402_c00002{bottom:646.605000px;}
.y996_c00002{bottom:646.920000px;}
.y49_c00002{bottom:646.965000px;}
.ye66_c00002{bottom:647.318520px;}
.y329_c00002{bottom:647.325000px;}
.y328_c00002{bottom:647.328600px;}
.y768_c00002{bottom:647.681040px;}
.y72f_c00002{bottom:647.683920px;}
.ya5c_c00002{bottom:648.000000px;}
.y1336_c00002{bottom:648.041040px;}
.y8b6_c00002{bottom:648.045000px;}
.y11f6_c00002{bottom:648.045720px;}
.y1275_c00002{bottom:648.046800px;}
.y100b_c00002{bottom:648.049680px;}
.ya56_c00002{bottom:648.360000px;}
.y5b4_c00002{bottom:648.405000px;}
.y5b3_c00002{bottom:648.409680px;}
.y85c_c00002{bottom:648.758160px;}
.y509_c00002{bottom:648.764640px;}
.y6c5_c00002{bottom:648.765000px;}
.y52e_c00002{bottom:649.125000px;}
.yb74_c00002{bottom:649.485000px;}
.y90b_c00002{bottom:649.489320px;}
.y1ed_c00002{bottom:649.845000px;}
.y5f6_c00002{bottom:649.846800px;}
.y4e1_c00002{bottom:650.205000px;}
.y4b3_c00002{bottom:650.563920px;}
.y4b4_c00002{bottom:650.565000px;}
.y388_c00002{bottom:650.925000px;}
.y754_c00002{bottom:651.285000px;}
.ya18_c00002{bottom:651.600000px;}
.yd9_c00002{bottom:651.645000px;}
.y6f8_c00002{bottom:652.005000px;}
.y598_c00002{bottom:652.365000px;}
.y274_c00002{bottom:652.725000px;}
.y7bc_c00002{bottom:652.726800px;}
.ya0_c00002{bottom:653.085000px;}
.y1173_c00002{bottom:653.085720px;}
.y1060_c00002{bottom:653.086800px;}
.y145c_c00002{bottom:653.087520px;}
.yf8b_c00002{bottom:653.089680px;}
.y94c_c00002{bottom:653.400000px;}
.y8f6_c00002{bottom:653.445000px;}
.yf29_c00002{bottom:654.165000px;}
.yf28_c00002{bottom:654.168240px;}
.y1c_c00002{bottom:654.525000px;}
.ybc1_c00002{bottom:654.885000px;}
.y1ac_c00002{bottom:655.245000px;}
.y1368_c00002{bottom:655.603920px;}
.y344_c00002{bottom:655.605000px;}
.y1290_c00002{bottom:655.605720px;}
.y112d_c00002{bottom:655.606800px;}
.yf5a_c00002{bottom:655.609680px;}
.y1e2_c00002{bottom:655.965000px;}
.yf12_c00002{bottom:656.325000px;}
.ye1d_c00002{bottom:656.681400px;}
.y2b1_c00002{bottom:657.045000px;}
.y68f_c00002{bottom:657.405000px;}
.ycc4_c00002{bottom:657.765000px;}
.ycf1_c00002{bottom:658.125000px;}
.y1420_c00002{bottom:658.125720px;}
.yad2_c00002{bottom:658.440000px;}
.yeea_c00002{bottom:658.474920px;}
.yf0b_c00002{bottom:658.478520px;}
.y55a_c00002{bottom:658.485000px;}
.y110_c00002{bottom:658.845000px;}
.y92d_c00002{bottom:659.565000px;}
.yc55_c00002{bottom:659.925000px;}
.yac9_c00002{bottom:660.240000px;}
.y30a_c00002{bottom:660.285000px;}
.yab4_c00002{bottom:660.600000px;}
.y144c_c00002{bottom:660.642840px;}
.y8d3_c00002{bottom:660.643200px;}
.yfdf_c00002{bottom:660.643920px;}
.ybf6_c00002{bottom:660.645000px;}
.y10fd_c00002{bottom:660.645720px;}
.yfbb_c00002{bottom:660.646800px;}
.ye91_c00002{bottom:661.003920px;}
.y452_c00002{bottom:661.005000px;}
.yc40_c00002{bottom:661.365000px;}
.y1258_c00002{bottom:661.366800px;}
.y3bb_c00002{bottom:661.725000px;}
.y147d_c00002{bottom:661.729680px;}
.ya55_c00002{bottom:662.040000px;}
.ybc_c00002{bottom:662.085000px;}
.y46f_c00002{bottom:662.445000px;}
.y3d2_c00002{bottom:663.163920px;}
.y8a0_c00002{bottom:663.165000px;}
.y110b_c00002{bottom:663.165720px;}
.y1036_c00002{bottom:663.166800px;}
.y10d2_c00002{bottom:663.167520px;}
.yb4d_c00002{bottom:663.525000px;}
.yb23_c00002{bottom:663.885000px;}
.ye04_c00002{bottom:664.240320px;}
.yc22_c00002{bottom:664.245000px;}
.y832_c00002{bottom:664.600680px;}
.yc6d_c00002{bottom:664.605000px;}
.y995_c00002{bottom:664.920000px;}
.y15b_c00002{bottom:664.965000px;}
.y625_c00002{bottom:665.325000px;}
.y1335_c00002{bottom:665.326800px;}
.y11f5_c00002{bottom:665.683920px;}
.y172_c00002{bottom:665.685000px;}
.y12fc_c00002{bottom:665.686800px;}
.yeba_c00002{bottom:665.692200px;}
.ya17_c00002{bottom:666.000000px;}
.y85b_c00002{bottom:666.042120px;}
.yd0e_c00002{bottom:666.045000px;}
.y508_c00002{bottom:666.048600px;}
.y7f1_c00002{bottom:666.405000px;}
.y88d_c00002{bottom:666.765000px;}
.y7cf_c00002{bottom:667.125000px;}
.y5f5_c00002{bottom:667.485000px;}
.y145_c00002{bottom:667.845000px;}
.y94b_c00002{bottom:668.160000px;}
.y3f2_c00002{bottom:668.205000px;}
.y787_c00002{bottom:668.565000px;}
.yd5d_c00002{bottom:668.925000px;}
.yddb_c00002{bottom:669.285000px;}
.y4c4_c00002{bottom:669.645000px;}
.y43b_c00002{bottom:669.999960px;}
.ydb1_c00002{bottom:670.003200px;}
.y28a_c00002{bottom:670.005000px;}
.y410_c00002{bottom:670.365000px;}
.y1213_c00002{bottom:670.367520px;}
.y1181_c00002{bottom:670.721040px;}
.ye65_c00002{bottom:670.721760px;}
.y12e1_c00002{bottom:670.723560px;}
.y105f_c00002{bottom:670.723920px;}
.y211_c00002{bottom:670.725000px;}
.y107b_c00002{bottom:670.725720px;}
.y48f_c00002{bottom:671.085000px;}
.y41c_c00002{bottom:671.445000px;}
.yf27_c00002{bottom:671.806440px;}
.yd25_c00002{bottom:672.165000px;}
.y327_c00002{bottom:672.169680px;}
.y5d5_c00002{bottom:672.525000px;}
.y6f7_c00002{bottom:672.885000px;}
.y1009_c00002{bottom:673.241040px;}
.y112c_c00002{bottom:673.243920px;}
.y100a_c00002{bottom:673.245000px;}
.y12ac_c00002{bottom:673.245720px;}
.y597_c00002{bottom:673.605000px;}
.y273_c00002{bottom:673.965000px;}
.y8db_c00002{bottom:674.325000px;}
.yab3_c00002{bottom:674.640000px;}
.yad1_c00002{bottom:675.000000px;}
.yee0_c00002{bottom:675.045000px;}
.y1c6_c00002{bottom:675.405000px;}
.y52d_c00002{bottom:675.765000px;}
.y788_c00002{bottom:676.125000px;}
.y343_c00002{bottom:676.485000px;}
.ye90_c00002{bottom:676.841400px;}
.y1e1_c00002{bottom:676.845000px;}
.ya54_c00002{bottom:677.160000px;}
.y4c5_c00002{bottom:677.205000px;}
.y6c4_c00002{bottom:677.565000px;}
.ye9d_c00002{bottom:677.567520px;}
.ye54_c00002{bottom:677.918160px;}
.y92c_c00002{bottom:677.925000px;}
.yfba_c00002{bottom:678.281040px;}
.y1093_c00002{bottom:678.283560px;}
.y10fc_c00002{bottom:678.283920px;}
.y2f0_c00002{bottom:678.285000px;}
.y129c_c00002{bottom:678.285720px;}
.y2b0_c00002{bottom:678.645000px;}
.y994_c00002{bottom:678.960000px;}
.y77b_c00002{bottom:679.005000px;}
.y1257_c00002{bottom:679.005720px;}
.y3a4_c00002{bottom:679.365000px;}
.ya16_c00002{bottom:679.680000px;}
.yba2_c00002{bottom:679.725000px;}
.y295_c00002{bottom:680.085000px;}
.yd8_c00002{bottom:680.089680px;}
.y1ab_c00002{bottom:680.445000px;}
.y1367_c00002{bottom:680.445720px;}
.y139c_c00002{bottom:680.446800px;}
.y1aa_c00002{bottom:680.448600px;}
.y128f_c00002{bottom:680.801040px;}
.y13b6_c00002{bottom:680.801760px;}
.yf59_c00002{bottom:680.803920px;}
.ycf0_c00002{bottom:680.805000px;}
.y1035_c00002{bottom:680.805720px;}
.yb22_c00002{bottom:681.165000px;}
.yee9_c00002{bottom:681.518520px;}
.ybe1_c00002{bottom:681.525000px;}
.y94a_c00002{bottom:681.840000px;}
.yf0a_c00002{bottom:681.881760px;}
.y13f7_c00002{bottom:681.883920px;}
.y71b_c00002{bottom:681.885000px;}
.yb87_c00002{bottom:682.245000px;}
.y401_c00002{bottom:682.605000px;}
.y48_c00002{bottom:682.965000px;}
.y1334_c00002{bottom:682.966800px;}
.y141f_c00002{bottom:683.321040px;}
.y13d3_c00002{bottom:683.321760px;}
.y12fb_c00002{bottom:683.323920px;}
.y46e_c00002{bottom:683.325000px;}
.y8b5_c00002{bottom:683.679600px;}
.y85a_c00002{bottom:683.680320px;}
.y507_c00002{bottom:683.686800px;}
.y88c_c00002{bottom:684.045000px;}
.y659_c00002{bottom:684.405000px;}
.y7b_c00002{bottom:684.765000px;}
.y5e3_c00002{bottom:685.125000px;}
.yfde_c00002{bottom:685.485000px;}
.yfdd_c00002{bottom:685.486800px;}
.y15a_c00002{bottom:685.845000px;}
.y4e0_c00002{bottom:686.205000px;}
.yc71_c00002{bottom:686.925000px;}
.y387_c00002{bottom:686.925720px;}
.y753_c00002{bottom:687.285000px;}
.yc6c_c00002{bottom:687.645000px;}
.y9d7_c00002{bottom:688.005000px;}
.y1180_c00002{bottom:688.005720px;}
.y110a_c00002{bottom:688.006800px;}
.y12e0_c00002{bottom:688.007520px;}
.y1359_c00002{bottom:688.008600px;}
.y1148_c00002{bottom:688.009680px;}
.y3d1_c00002{bottom:688.011480px;}
.ycac_c00002{bottom:688.365000px;}
.ycd0_c00002{bottom:688.725000px;}
.y9f_c00002{bottom:689.085000px;}
.y786_c00002{bottom:689.445000px;}
.ye03_c00002{bottom:689.801400px;}
.y66d_c00002{bottom:689.805000px;}
.y767_c00002{bottom:690.165000px;}
.y1b_c00002{bottom:690.525000px;}
.y1008_c00002{bottom:690.525720px;}
.y11f4_c00002{bottom:690.529680px;}
.yd18_c00002{bottom:690.885000px;}
.ya53_c00002{bottom:691.200000px;}
.ybbf_c00002{bottom:691.245000px;}
.y41b_c00002{bottom:691.965000px;}
.ydda_c00002{bottom:692.325000px;}
.y4a0_c00002{bottom:692.685000px;}
.y831_c00002{bottom:692.705880px;}
.y5d4_c00002{bottom:693.045000px;}
.ydaf_c00002{bottom:693.311760px;}
.yddc_c00002{bottom:693.405000px;}
.ya15_c00002{bottom:693.720000px;}
.yb6c_c00002{bottom:693.765000px;}
.y6f6_c00002{bottom:694.125000px;}
.y596_c00002{bottom:694.485000px;}
.y8d2_c00002{bottom:694.841400px;}
.y10f_c00002{bottom:694.845000px;}
.y7bb_c00002{bottom:695.205000px;}
.y92b_c00002{bottom:695.565000px;}
.yfb9_c00002{bottom:695.565720px;}
.yf8a_c00002{bottom:695.566800px;}
.y1092_c00002{bottom:695.567520px;}
.y1443_c00002{bottom:695.569680px;}
.y993_c00002{bottom:695.880000px;}
.y6e1_c00002{bottom:695.924640px;}
.y1c5_c00002{bottom:696.285000px;}
.y949_c00002{bottom:696.600000px;}
.yc05_c00002{bottom:696.645000px;}
.yf26_c00002{bottom:696.647520px;}
.y451_c00002{bottom:697.005000px;}
.y325_c00002{bottom:697.361040px;}
.y326_c00002{bottom:697.365000px;}
.y267_c00002{bottom:697.725000px;}
.y1366_c00002{bottom:698.083920px;}
.ybb_c00002{bottom:698.085000px;}
.y13b5_c00002{bottom:698.085720px;}
.y112b_c00002{bottom:698.086800px;}
.y128e_c00002{bottom:698.089680px;}
.y72e_c00002{bottom:698.805000px;}
.y72d_c00002{bottom:698.809680px;}
.yd04_c00002{bottom:699.165000px;}
.y2af_c00002{bottom:699.525000px;}
.yd51_c00002{bottom:699.545160px;}
.yb86_c00002{bottom:699.885000px;}
.ye8f_c00002{bottom:699.887520px;}
.y3a3_c00002{bottom:700.605000px;}
.y1333_c00002{bottom:700.605720px;}
.y141e_c00002{bottom:700.609680px;}
.ye53_c00002{bottom:700.961760px;}
.y8b4_c00002{bottom:700.963560px;}
.y859_c00002{bottom:700.964280px;}
.y294_c00002{bottom:700.965000px;}
.y171_c00002{bottom:701.317800px;}
.y506_c00002{bottom:701.325000px;}
.y88b_c00002{bottom:701.685000px;}
.y210_c00002{bottom:702.045000px;}
.ybe0_c00002{bottom:702.405000px;}
.ybf5_c00002{bottom:702.765000px;}
.yf11_c00002{bottom:703.121400px;}
.yc70_c00002{bottom:703.125000px;}
.y10fb_c00002{bottom:703.126800px;}
.yfdc_c00002{bottom:703.129680px;}
.y578_c00002{bottom:703.485000px;}
.y47_c00002{bottom:703.845000px;}
.y1256_c00002{bottom:704.201040px;}
.yac_c00002{bottom:704.205000px;}
.y147c_c00002{bottom:704.209680px;}
.y46d_c00002{bottom:704.565000px;}
.y133_c00002{bottom:704.925000px;}
.ye1c_c00002{bottom:705.277080px;}
.yee8_c00002{bottom:705.281400px;}
.yd7_c00002{bottom:705.285000px;}
.y1a9_c00002{bottom:705.289680px;}
.ya52_c00002{bottom:705.600000px;}
.y10ab_c00002{bottom:705.643920px;}
.y7a_c00002{bottom:705.645000px;}
.yf58_c00002{bottom:705.645720px;}
.y1034_c00002{bottom:705.646800px;}
.y6c3_c00002{bottom:706.005000px;}
.ycee_c00002{bottom:706.365000px;}
.y69c_c00002{bottom:706.725000px;}
.y13f6_c00002{bottom:706.729680px;}
.y255_c00002{bottom:707.085000px;}
.y616_c00002{bottom:707.445000px;}
.ya14_c00002{bottom:708.120000px;}
.y289_c00002{bottom:708.165000px;}
.y12fa_c00002{bottom:708.166800px;}
.yc29_c00002{bottom:708.885000px;}
.ybbe_c00002{bottom:709.245000px;}
.yc3c_c00002{bottom:709.605000px;}
.y992_c00002{bottom:709.920000px;}
.y356_c00002{bottom:709.965000px;}
.y991_c00002{bottom:710.280000px;}
.y645_c00002{bottom:710.325000px;}
.y948_c00002{bottom:710.640000px;}
.yc65_c00002{bottom:710.680680px;}
.yd5c_c00002{bottom:711.045000px;}
.y6bc_c00002{bottom:711.405000px;}
.yb6d_c00002{bottom:711.765000px;}
.y386_c00002{bottom:711.766800px;}
.y5f4_c00002{bottom:712.483920px;}
.y7ba_c00002{bottom:712.841040px;}
.y1e0_c00002{bottom:712.845000px;}
.y1147_c00002{bottom:713.201040px;}
.y107a_c00002{bottom:713.202840px;}
.yfb8_c00002{bottom:713.203920px;}
.y92a_c00002{bottom:713.205000px;}
.yf89_c00002{bottom:713.205720px;}
.y3d0_c00002{bottom:713.206800px;}
.y1237_c00002{bottom:713.207520px;}
.y6e0_c00002{bottom:713.562840px;}
.yc36_c00002{bottom:713.565000px;}
.y824_c00002{bottom:714.202800px;}
.y2ef_c00002{bottom:714.285000px;}
.yf25_c00002{bottom:714.285720px;}
.y323_c00002{bottom:714.642840px;}
.y324_c00002{bottom:714.645000px;}
.y6f5_c00002{bottom:715.005000px;}
.y595_c00002{bottom:715.365000px;}
.y1007_c00002{bottom:715.721040px;}
.y112a_c00002{bottom:715.723920px;}
.y752_c00002{bottom:715.725000px;}
.y1438_c00002{bottom:715.725720px;}
.y11f3_c00002{bottom:715.727520px;}
.y2d3_c00002{bottom:716.085000px;}
.ye9c_c00002{bottom:716.438160px;}
.yce5_c00002{bottom:716.445000px;}
.ydae_c00002{bottom:716.715000px;}
.ye36_c00002{bottom:716.801760px;}
.yd82_c00002{bottom:717.161760px;}
.y309_c00002{bottom:717.165000px;}
.y23c_c00002{bottom:717.525000px;}
.yb4c_c00002{bottom:717.885000px;}
.yd45_c00002{bottom:718.245000px;}
.y8b3_c00002{bottom:718.601760px;}
.y858_c00002{bottom:718.602480px;}
.y1c4_c00002{bottom:718.605000px;}
.yf3_c00002{bottom:718.965000px;}
.y81a_c00002{bottom:719.325000px;}
.yba1_c00002{bottom:719.685000px;}
.yd03_c00002{bottom:720.045000px;}
.ya51_c00002{bottom:720.360000px;}
.y2ae_c00002{bottom:720.405000px;}
.y141c_c00002{bottom:720.761040px;}
.y10f9_c00002{bottom:720.763920px;}
.y10fa_c00002{bottom:720.765000px;}
.y5e2_c00002{bottom:721.125000px;}
.y3a2_c00002{bottom:721.485000px;}
.y1255_c00002{bottom:721.489680px;}
.ya13_c00002{bottom:721.800000px;}
.y159_c00002{bottom:721.845000px;}
.y4df_c00002{bottom:722.205000px;}
.yc85_c00002{bottom:722.565000px;}
.y1365_c00002{bottom:722.925000px;}
.y1364_c00002{bottom:722.927520px;}
.y139b_c00002{bottom:722.929680px;}
.y1033_c00002{bottom:723.281040px;}
.yf57_c00002{bottom:723.283920px;}
.y7f0_c00002{bottom:723.285000px;}
.y128d_c00002{bottom:723.285720px;}
.y72b_c00002{bottom:724.000680px;}
.y72c_c00002{bottom:724.005000px;}
.y577_c00002{bottom:724.365000px;}
.ybfc_c00002{bottom:724.725000px;}
.y43a_c00002{bottom:725.079960px;}
.y46_c00002{bottom:725.085000px;}
.y132_c00002{bottom:725.445000px;}
.y1332_c00002{bottom:725.446800px;}
.y13d2_c00002{bottom:725.801040px;}
.y12f8_c00002{bottom:725.801760px;}
.y1347_c00002{bottom:725.803920px;}
.y12f9_c00002{bottom:725.805000px;}
.yf10_c00002{bottom:726.165000px;}
.y505_c00002{bottom:726.166800px;}
.y1a_c00002{bottom:726.525000px;}
.ybf4_c00002{bottom:726.885000px;}
.ycdb_c00002{bottom:727.605000px;}
.yd7e_c00002{bottom:727.961760px;}
.y254_c00002{bottom:727.965000px;}
.yfdb_c00002{bottom:728.321040px;}
.y12e8_c00002{bottom:728.322840px;}
.y4b2_c00002{bottom:728.325000px;}
.ye1b_c00002{bottom:728.680320px;}
.y8d1_c00002{bottom:728.683200px;}
.yb6b_c00002{bottom:728.685000px;}
.y5d3_c00002{bottom:729.045000px;}
.y147b_c00002{bottom:729.401040px;}
.y384_c00002{bottom:729.403920px;}
.y385_c00002{bottom:729.405000px;}
.y415_c00002{bottom:729.765000px;}
.y7b9_c00002{bottom:730.125000px;}
.yd6_c00002{bottom:730.485000px;}
.y1212_c00002{bottom:730.485720px;}
.y1079_c00002{bottom:730.486800px;}
.yf88_c00002{bottom:730.489680px;}
.y144f_c00002{bottom:730.490400px;}
.y1146_c00002{bottom:730.491480px;}
.y10e_c00002{bottom:730.845000px;}
.y3cf_c00002{bottom:730.846800px;}
.y6df_c00002{bottom:731.201040px;}
.y20f_c00002{bottom:731.205000px;}
.y947_c00002{bottom:731.880000px;}
.y13f5_c00002{bottom:731.923920px;}
.yd5b_c00002{bottom:731.925000px;}
.y661_c00002{bottom:732.285000px;}
.y913_c00002{bottom:732.645000px;}
.ybbd_c00002{bottom:733.005000px;}
.y137c_c00002{bottom:733.006800px;}
.y1006_c00002{bottom:733.009680px;}
.y11f2_c00002{bottom:733.011480px;}
.y450_c00002{bottom:733.365000px;}
.y823_c00002{bottom:733.705800px;}
.y479_c00002{bottom:733.725000px;}
.yba_c00002{bottom:734.085000px;}
.ya50_c00002{bottom:734.400000px;}
.ybbc_c00002{bottom:734.445000px;}
.y321_c00002{bottom:734.802840px;}
.y322_c00002{bottom:734.805000px;}
.y8c3_c00002{bottom:735.165000px;}
.y98b_c00002{bottom:735.480000px;}
.y4a7_c00002{bottom:735.525000px;}
.y830_c00002{bottom:735.545160px;}
.y6f4_c00002{bottom:735.885000px;}
.ya12_c00002{bottom:736.200000px;}
.y8b2_c00002{bottom:736.239960px;}
.y857_c00002{bottom:736.240680px;}
.ye02_c00002{bottom:736.245000px;}
.y594_c00002{bottom:736.605000px;}
.y2d2_c00002{bottom:736.965000px;}
.y5f2_c00002{bottom:737.322840px;}
.y5f3_c00002{bottom:737.325000px;}
.yfb7_c00002{bottom:738.045000px;}
.y10e6_c00002{bottom:738.045720px;}
.yfb6_c00002{bottom:738.046800px;}
.y11ba_c00002{bottom:738.047520px;}
.y14ad_c00002{bottom:738.048600px;}
.y141b_c00002{bottom:738.049680px;}
.y23b_c00002{bottom:738.405000px;}
.yc64_c00002{bottom:738.756360px;}
.y91f_c00002{bottom:738.765000px;}
.yd9f_c00002{bottom:739.079280px;}
.ye8e_c00002{bottom:739.123920px;}
.y1c3_c00002{bottom:739.125000px;}
.yf24_c00002{bottom:739.126800px;}
.y342_c00002{bottom:739.485000px;}
.ye9b_c00002{bottom:739.841400px;}
.y18d_c00002{bottom:739.845000px;}
.y308_c00002{bottom:740.205000px;}
.ydad_c00002{bottom:740.477880px;}
.ye64_c00002{bottom:740.538720px;}
.y46c_c00002{bottom:740.565000px;}
.y12c1_c00002{bottom:740.565720px;}
.y12ab_c00002{bottom:740.566800px;}
.y1129_c00002{bottom:740.568600px;}
.y1032_c00002{bottom:740.569680px;}
.y2ad_c00002{bottom:741.285000px;}
.y644_c00002{bottom:741.645000px;}
.ycf6_c00002{bottom:742.005000px;}
.y3a1_c00002{bottom:742.365000px;}
.yd50_c00002{bottom:742.740840px;}
.y1331_c00002{bottom:743.083920px;}
.y158_c00002{bottom:743.085000px;}
.y12f7_c00002{bottom:743.085720px;}
.y13d1_c00002{bottom:743.089680px;}
.y503_c00002{bottom:743.801040px;}
.y504_c00002{bottom:743.805000px;}
.y288_c00002{bottom:744.165000px;}
.ybdf_c00002{bottom:744.525000px;}
.ybf3_c00002{bottom:745.245000px;}
.yfda_c00002{bottom:745.605000px;}
.y10f8_c00002{bottom:745.606800px;}
.yfd9_c00002{bottom:745.609680px;}
.y35e_c00002{bottom:745.965000px;}
.y131_c00002{bottom:746.325000px;}
.ycab_c00002{bottom:746.685000px;}
.y1254_c00002{bottom:746.686800px;}
.y147a_c00002{bottom:746.689680px;}
.yedf_c00002{bottom:747.045000px;}
.y6bb_c00002{bottom:747.405000px;}
.y79_c00002{bottom:747.765000px;}
.ye52_c00002{bottom:748.107000px;}
.y11c7_c00002{bottom:748.122840px;}
.y11cb_c00002{bottom:748.123920px;}
.yf56_c00002{bottom:748.125000px;}
.y1078_c00002{bottom:748.125720px;}
.yf55_c00002{bottom:748.126800px;}
.y10aa_c00002{bottom:748.129680px;}
.y118e_c00002{bottom:748.130400px;}
.y3ce_c00002{bottom:748.483920px;}
.y6de_c00002{bottom:748.485000px;}
.ya4f_c00002{bottom:748.800000px;}
.y253_c00002{bottom:748.845000px;}
.y624_c00002{bottom:749.205000px;}
.y98a_c00002{bottom:749.520000px;}
.y72a_c00002{bottom:749.565000px;}
.y990_c00002{bottom:749.880000px;}
.y1df_c00002{bottom:749.925000px;}
.ya11_c00002{bottom:750.240000px;}
.y2ee_c00002{bottom:750.285000px;}
.y1346_c00002{bottom:750.645000px;}
.y1345_c00002{bottom:750.646800px;}
.y137b_c00002{bottom:750.649680px;}
.y77a_c00002{bottom:751.005000px;}
.y763_c00002{bottom:751.365000px;}
.yf0f_c00002{bottom:751.718520px;}
.ybbb_c00002{bottom:751.725000px;}
.y10d_c00002{bottom:752.085000px;}
.yd3b_c00002{bottom:752.087520px;}
.y439_c00002{bottom:752.445000px;}
.y946_c00002{bottom:752.760000px;}
.y3f1_c00002{bottom:752.805000px;}
.y66c_c00002{bottom:753.165000px;}
.y822_c00002{bottom:753.208800px;}
.y8b1_c00002{bottom:753.523920px;}
.y856_c00002{bottom:753.524640px;}
.y70f_c00002{bottom:753.525000px;}
.yb4b_c00002{bottom:753.885000px;}
.ye1a_c00002{bottom:754.241400px;}
.y383_c00002{bottom:754.245000px;}
.y382_c00002{bottom:754.246800px;}
.ye8d_c00002{bottom:754.601760px;}
.y19_c00002{bottom:754.602840px;}
.y633_c00002{bottom:754.605000px;}
.y320_c00002{bottom:754.963920px;}
.yf2_c00002{bottom:754.965000px;}
.y69b_c00002{bottom:755.325000px;}
.y1211_c00002{bottom:755.681040px;}
.yfb5_c00002{bottom:755.683920px;}
.y117f_c00002{bottom:755.684640px;}
.yd5_c00002{bottom:755.685000px;}
.y11b9_c00002{bottom:755.685720px;}
.y1145_c00002{bottom:755.686800px;}
.yf87_c00002{bottom:755.687520px;}
.ycc3_c00002{bottom:756.045000px;}
.y4a6_c00002{bottom:756.405000px;}
.y1a8_c00002{bottom:756.765000px;}
.yf23_c00002{bottom:756.765720px;}
.y13f4_c00002{bottom:756.769320px;}
.y5e1_c00002{bottom:757.125000px;}
.y5f1_c00002{bottom:757.485000px;}
.y5f0_c00002{bottom:757.491840px;}
.y2d1_c00002{bottom:757.845000px;}
.y750_c00002{bottom:758.201040px;}
.y1283_c00002{bottom:758.203920px;}
.y751_c00002{bottom:758.205000px;}
.y1005_c00002{bottom:758.205720px;}
.y1128_c00002{bottom:758.206800px;}
.y7ca_c00002{bottom:758.925000px;}
.y23a_c00002{bottom:759.285000px;}
.ye01_c00002{bottom:759.640320px;}
.yc83_c00002{bottom:759.645000px;}
.y400_c00002{bottom:760.365000px;}
.y80b_c00002{bottom:760.725000px;}
.y45_c00002{bottom:761.085000px;}
.y502_c00002{bottom:761.090250px;}
.y1c2_c00002{bottom:761.445000px;}
.yc93_c00002{bottom:761.805000px;}
.yd02_c00002{bottom:762.165000px;}
.yd9e_c00002{bottom:762.482520px;}
.y20e_c00002{bottom:762.525000px;}
.ye9a_c00002{bottom:762.881760px;}
.y643_c00002{bottom:762.885000px;}
.y989_c00002{bottom:763.200000px;}
.y1442_c00002{bottom:763.241760px;}
.y10f7_c00002{bottom:763.243920px;}
.y6c2_c00002{bottom:763.245000px;}
.y12e7_c00002{bottom:763.245720px;}
.ye63_c00002{bottom:763.582320px;}
.y3a0_c00002{bottom:763.605000px;}
.ydac_c00002{bottom:763.881120px;}
.y98f_c00002{bottom:763.920000px;}
.y157_c00002{bottom:763.965000px;}
.ya10_c00002{bottom:764.280000px;}
.y1253_c00002{bottom:764.323920px;}
.y48e_c00002{bottom:764.325000px;}
.yb6a_c00002{bottom:764.685000px;}
.yeb7_c00002{bottom:765.041400px;}
.y5b2_c00002{bottom:765.045000px;}
.y287_c00002{bottom:765.405000px;}
.y1031_c00002{bottom:765.761040px;}
.yf53_c00002{bottom:765.763920px;}
.yf54_c00002{bottom:765.765000px;}
.y128c_c00002{bottom:765.765720px;}
.yced_c00002{bottom:766.125000px;}
.y170_c00002{bottom:766.485000px;}
.y16f_c00002{bottom:766.486800px;}
.y355_c00002{bottom:766.845000px;}
.ybca_c00002{bottom:767.925000px;}
.y12f6_c00002{bottom:768.281040px;}
.y1344_c00002{bottom:768.283920px;}
.y6ba_c00002{bottom:768.285000px;}
.y78_c00002{bottom:768.645000px;}
.y44f_c00002{bottom:769.365000px;}
.y7b8_c00002{bottom:769.725000px;}
.yb9_c00002{bottom:770.085000px;}
.y71a_c00002{bottom:770.445000px;}
.yede_c00002{bottom:770.447520px;}
.yfd8_c00002{bottom:770.801040px;}
.yb85_c00002{bottom:770.805000px;}
.ye51_c00002{bottom:771.150600px;}
.y8b0_c00002{bottom:771.162120px;}
.y855_c00002{bottom:771.162840px;}
.yb21_c00002{bottom:771.165000px;}
.y766_c00002{bottom:771.167880px;}
.y380_c00002{bottom:771.881040px;}
.y5d2_c00002{bottom:771.884850px;}
.y381_c00002{bottom:771.885000px;}
.y18_c00002{bottom:772.241040px;}
.y593_c00002{bottom:772.605000px;}
.y10c_c00002{bottom:772.965000px;}
.y11a1_c00002{bottom:772.966800px;}
.y1210_c00002{bottom:772.969680px;}
.y10c3_c00002{bottom:773.321040px;}
.y117e_c00002{bottom:773.322840px;}
.y12cb_c00002{bottom:773.323920px;}
.y3cd_c00002{bottom:773.325000px;}
.yf86_c00002{bottom:773.325720px;}
.y6dc_c00002{bottom:773.681040px;}
.y6dd_c00002{bottom:773.685000px;}
.y945_c00002{bottom:774.000000px;}
.ybba_c00002{bottom:774.045000px;}
.yce4_c00002{bottom:774.405000px;}
.yee7_c00002{bottom:774.765000px;}
.yceb_c00002{bottom:775.125000px;}
.yf09_c00002{bottom:775.479600px;}
.y4de_c00002{bottom:775.480890px;}
.y341_c00002{bottom:775.485000px;}
.y13f3_c00002{bottom:775.489680px;}
.y137a_c00002{bottom:775.841040px;}
.y1127_c00002{bottom:775.843920px;}
.y18c_c00002{bottom:775.845000px;}
.yca5_c00002{bottom:776.205000px;}
.y46b_c00002{bottom:776.565000px;}
.y729_c00002{bottom:776.925000px;}
.y988_c00002{bottom:777.240000px;}
.y4a5_c00002{bottom:777.285000px;}
.y5ef_c00002{bottom:777.289680px;}
.y98e_c00002{bottom:777.600000px;}
.ycf5_c00002{bottom:778.005000px;}
.ye8c_c00002{bottom:778.007520px;}
.ya0f_c00002{bottom:778.320000px;}
.y2ed_c00002{bottom:778.365000px;}
.yd23_c00002{bottom:778.725000px;}
.y501_c00002{bottom:778.728450px;}
.y82f_c00002{bottom:778.740840px;}
.y1ec_c00002{bottom:779.085000px;}
.y31f_c00002{bottom:779.805000px;}
.y31e_c00002{bottom:779.806800px;}
.y438_c00002{bottom:780.165000px;}
.y239_c00002{bottom:780.525000px;}
.yfb4_c00002{bottom:780.525720px;}
.y1091_c00002{bottom:780.526800px;}
.y105e_c00002{bottom:780.529680px;}
.y7c8_c00002{bottom:780.884850px;}
.y7c9_c00002{bottom:780.885000px;}
.ybf2_c00002{bottom:781.245000px;}
.y3ff_c00002{bottom:781.605000px;}
.yf22_c00002{bottom:781.606800px;}
.yc63_c00002{bottom:781.952040px;}
.y44_c00002{bottom:781.965000px;}
.y130_c00002{bottom:782.325000px;}
.y1030_c00002{bottom:783.045000px;}
.y11e6_c00002{bottom:783.045720px;}
.y1004_c00002{bottom:783.046800px;}
.y102f_c00002{bottom:783.049680px;}
.y2ac_c00002{bottom:783.405000px;}
.y16d_c00002{bottom:784.120320px;}
.y16e_c00002{bottom:784.125000px;}
.y825_c00002{bottom:784.391550px;}
.y39f_c00002{bottom:784.485000px;}
.ye00_c00002{bottom:784.841760px;}
.yd4_c00002{bottom:784.845000px;}
.yd9d_c00002{bottom:785.526120px;}
.yc53_c00002{bottom:785.565000px;}
.y12f5_c00002{bottom:785.569530px;}
.yd4f_c00002{bottom:785.580120px;}
.ydd9_c00002{bottom:785.925000px;}
.y929_c00002{bottom:786.285000px;}
.yd01_c00002{bottom:786.645000px;}
.ydab_c00002{bottom:786.924720px;}
.ye62_c00002{bottom:786.985560px;}
.y779_c00002{bottom:787.005000px;}
.y4c0_c00002{bottom:787.365000px;}
.yeb9_c00002{bottom:788.081760px;}
.y1de_c00002{bottom:788.085000px;}
.yfd7_c00002{bottom:788.085720px;}
.y10f6_c00002{bottom:788.086800px;}
.y3f0_c00002{bottom:788.445000px;}
.y8af_c00002{bottom:788.800320px;}
.y854_c00002{bottom:788.801040px;}
.y1252_c00002{bottom:789.161760px;}
.y37f_c00002{bottom:789.165000px;}
.y37e_c00002{bottom:789.166800px;}
.y1479_c00002{bottom:789.169680px;}
.y17_c00002{bottom:789.525000px;}
.y602_c00002{bottom:789.885000px;}
.yba0_c00002{bottom:790.245000px;}
.yf52_c00002{bottom:790.605000px;}
.y1157_c00002{bottom:790.605720px;}
.yf51_c00002{bottom:790.606800px;}
.y1077_c00002{bottom:790.607520px;}
.yf85_c00002{bottom:790.609680px;}
.y20c_c00002{bottom:790.964850px;}
.yf1_c00002{bottom:790.965000px;}
.y6db_c00002{bottom:790.966800px;}
.y987_c00002{bottom:791.280000px;}
.y819_c00002{bottom:791.325000px;}
.y98d_c00002{bottom:791.640000px;}
.ybb9_c00002{bottom:791.685000px;}
.y6c1_c00002{bottom:792.045000px;}
.y4dd_c00002{bottom:792.764850px;}
.y1330_c00002{bottom:793.123920px;}
.y5e0_c00002{bottom:793.125000px;}
.y74f_c00002{bottom:793.126650px;}
.y1379_c00002{bottom:793.129680px;}
.y576_c00002{bottom:793.485000px;}
.y10b_c00002{bottom:793.845000px;}
.ye8b_c00002{bottom:793.849680px;}
.y632_c00002{bottom:794.205000px;}
.ye50_c00002{bottom:794.553840px;}
.yca3_c00002{bottom:794.925000px;}
.y944_c00002{bottom:795.240000px;}
.y9e6_c00002{bottom:795.285000px;}
.yd6d_c00002{bottom:795.634200px;}
.y84f_c00002{bottom:795.645000px;}
.yc84_c00002{bottom:796.005000px;}
.y340_c00002{bottom:796.365000px;}
.y5b1_c00002{bottom:796.725000px;}
.y46a_c00002{bottom:797.084640px;}
.y9e_c00002{bottom:797.085000px;}
.y31c_c00002{bottom:797.443920px;}
.y31d_c00002{bottom:797.445000px;}
.yd7d_c00002{bottom:797.805000px;}
.y7b6_c00002{bottom:798.160320px;}
.yfb3_c00002{bottom:798.163920px;}
.y7b7_c00002{bottom:798.165000px;}
.y120f_c00002{bottom:798.165720px;}
.y1144_c00002{bottom:798.166800px;}
.y1090_c00002{bottom:798.167520px;}
.y20d_c00002{bottom:798.525000px;}
.y3cc_c00002{bottom:798.885000px;}
.yf21_c00002{bottom:799.243920px;}
.ycaa_c00002{bottom:799.245000px;}
.yd22_c00002{bottom:799.605000px;}
.y156_c00002{bottom:799.965000px;}
.y1126_c00002{bottom:800.683920px;}
.yc92_c00002{bottom:800.685000px;}
.y1274_c00002{bottom:800.685720px;}
.y149a_c00002{bottom:800.686800px;}
.y286_c00002{bottom:801.405000px;}
.y7c7_c00002{bottom:801.764850px;}
.y7c6_c00002{bottom:801.765000px;}
.y728_c00002{bottom:802.125000px;}
.y3fe_c00002{bottom:802.485000px;}
.y43_c00002{bottom:802.845000px;}
.y765_c00002{bottom:803.201400px;}
.y16c_c00002{bottom:803.205000px;}
.y16b_c00002{bottom:803.211480px;}
.y12f_c00002{bottom:803.565000px;}
.y2ec_c00002{bottom:803.566800px;}
.y500_c00002{bottom:803.569530px;}
.y2ab_c00002{bottom:804.285000px;}
.y986_c00002{bottom:805.320000px;}
.y437_c00002{bottom:805.365000px;}
.y98c_c00002{bottom:805.680000px;}
.y1172_c00002{bottom:805.721040px;}
.y105c_c00002{bottom:805.722840px;}
.yfd6_c00002{bottom:805.723920px;}
.y105d_c00002{bottom:805.725000px;}
.y10f5_c00002{bottom:805.725720px;}
.y8ae_c00002{bottom:806.084280px;}
.yb8_c00002{bottom:806.085000px;}
.yb84_c00002{bottom:806.445000px;}
.y37c_c00002{bottom:806.799600px;}
.y1251_c00002{bottom:806.799960px;}
.y37d_c00002{bottom:806.805000px;}
.yd0d_c00002{bottom:807.165000px;}
.y5d1_c00002{bottom:807.524850px;}
.y88a_c00002{bottom:807.525000px;}
.ye3b_c00002{bottom:807.885000px;}
.ya0e_c00002{bottom:808.200000px;}
.y11c6_c00002{bottom:808.241040px;}
.y1156_c00002{bottom:808.243920px;}
.ydff_c00002{bottom:808.245000px;}
.yf50_c00002{bottom:808.245720px;}
.y6da_c00002{bottom:808.605000px;}
.y6d9_c00002{bottom:808.606800px;}
.yd9c_c00002{bottom:808.929360px;}
.y428_c00002{bottom:808.965000px;}
.yedd_c00002{bottom:809.325000px;}
.y3ef_c00002{bottom:809.685000px;}
.ye8a_c00002{bottom:809.687160px;}
.ycc2_c00002{bottom:810.045000px;}
.ydaa_c00002{bottom:810.327960px;}
.ye61_c00002{bottom:810.388800px;}
.y70e_c00002{bottom:810.405000px;}
.y12f4_c00002{bottom:810.761040px;}
.y141d_c00002{bottom:810.763920px;}
.y74e_c00002{bottom:810.764850px;}
.y66b_c00002{bottom:810.765000px;}
.ybf1_c00002{bottom:811.125000px;}
.yeb6_c00002{bottom:811.481760px;}
.y559_c00002{bottom:811.485000px;}
.y18b_c00002{bottom:811.845000px;}
.y8c2_c00002{bottom:812.205000px;}
.y642_c00002{bottom:812.565000px;}
.y4a4_c00002{bottom:813.285000px;}
.yd3_c00002{bottom:813.645000px;}
.y6f3_c00002{bottom:814.005000px;}
.y1478_c00002{bottom:814.361040px;}
.y575_c00002{bottom:814.365000px;}
.y469_c00002{bottom:814.722840px;}
.y16_c00002{bottom:814.725000px;}
.y1eb_c00002{bottom:815.085000px;}
.y11a0_c00002{bottom:815.446800px;}
.y120e_c00002{bottom:815.449680px;}
.yf84_c00002{bottom:815.801040px;}
.y10a9_c00002{bottom:815.802840px;}
.y1143_c00002{bottom:815.803920px;}
.yd5a_c00002{bottom:815.805000px;}
.y108f_c00002{bottom:815.805720px;}
.y238_c00002{bottom:816.525000px;}
.y943_c00002{bottom:816.840000px;}
.ybb7_c00002{bottom:816.885000px;}
.y7b5_c00002{bottom:817.245000px;}
.y7b4_c00002{bottom:817.249320px;}
.ye4f_c00002{bottom:817.597440px;}
.y33f_c00002{bottom:817.605000px;}
.y459_c00002{bottom:817.965000px;}
.y132f_c00002{bottom:817.969680px;}
.y1378_c00002{bottom:818.321040px;}
.y1273_c00002{bottom:818.323920px;}
.y785_c00002{bottom:818.325000px;}
.y985_c00002{bottom:819.360000px;}
.y68e_c00002{bottom:819.405000px;}
.y984_c00002{bottom:819.720000px;}
.y20b_c00002{bottom:819.764850px;}
.y20a_c00002{bottom:819.765000px;}
.yd17_c00002{bottom:820.125000px;}
.y39e_c00002{bottom:820.485000px;}
.y2d0_c00002{bottom:820.845000px;}
.y2eb_c00002{bottom:821.200320px;}
.y1a7_c00002{bottom:821.205000px;}
.yc91_c00002{bottom:821.565000px;}
.y82e_c00002{bottom:821.580120px;}
.ybc9_c00002{bottom:821.925000px;}
.ya0d_c00002{bottom:822.240000px;}
.y285_c00002{bottom:822.285000px;}
.y7c5_c00002{bottom:822.645000px;}
.y778_c00002{bottom:823.005000px;}
.yfb2_c00002{bottom:823.006800px;}
.y10f4_c00002{bottom:823.009680px;}
.y1171_c00002{bottom:823.011480px;}
.y3fd_c00002{bottom:823.365000px;}
.y8ad_c00002{bottom:823.722480px;}
.ye19_c00002{bottom:824.065410px;}
.y1c1_c00002{bottom:824.085000px;}
.yf20_c00002{bottom:824.092920px;}
.yc62_c00002{bottom:824.434920px;}
.ycec_c00002{bottom:824.445000px;}
.y5b0_c00002{bottom:824.805000px;}
.yb54_c00002{bottom:825.165000px;}
.y77_c00002{bottom:825.525000px;}
.y139a_c00002{bottom:825.525720px;}
.y1003_c00002{bottom:825.526800px;}
.yf4f_c00002{bottom:825.529680px;}
.y1125_c00002{bottom:825.531480px;}
.y6d7_c00002{bottom:826.241040px;}
.y6d8_c00002{bottom:826.245000px;}
.yb7_c00002{bottom:826.965000px;}
.y5ee_c00002{bottom:827.325000px;}
.y3ca_c00002{bottom:827.685000px;}
.yd0c_c00002{bottom:828.045000px;}
.y12f3_c00002{bottom:828.049680px;}
.yf08_c00002{bottom:828.397800px;}
.yb20_c00002{bottom:828.405000px;}
.yd4e_c00002{bottom:828.419400px;}
.y4ff_c00002{bottom:828.764850px;}
.y4fe_c00002{bottom:828.769680px;}
.y5df_c00002{bottom:829.125000px;}
.yccf_c00002{bottom:829.485000px;}
.y10a_c00002{bottom:829.845000px;}
.y3ee_c00002{bottom:830.565000px;}
.yfd5_c00002{bottom:830.566800px;}
.yd6c_c00002{bottom:830.917800px;}
.ye3a_c00002{bottom:830.925000px;}
.yd00_c00002{bottom:831.285000px;}
.y37b_c00002{bottom:831.640680px;}
.y1250_c00002{bottom:831.641040px;}
.y70d_c00002{bottom:831.645000px;}
.y1477_c00002{bottom:831.649680px;}
.y15_c00002{bottom:832.005000px;}
.y14_c00002{bottom:832.006800px;}
.yd9b_c00002{bottom:832.332600px;}
.y19b_c00002{bottom:832.365000px;}
.y8c1_c00002{bottom:832.725000px;}
.y119f_c00002{bottom:833.083920px;}
.y9d_c00002{bottom:833.085000px;}
.y10c2_c00002{bottom:833.085720px;}
.y102e_c00002{bottom:833.086800px;}
.yf83_c00002{bottom:833.089680px;}
.ye60_c00002{bottom:833.432400px;}
.y1d8_c00002{bottom:833.445000px;}
.yda9_c00002{bottom:833.731200px;}
.y19e_c00002{bottom:833.805000px;}
.yca9_c00002{bottom:834.165000px;}
.y983_c00002{bottom:834.480000px;}
.y658_c00002{bottom:834.525000px;}
.y6f2_c00002{bottom:834.885000px;}
.yeb8_c00002{bottom:834.888240px;}
.y3cb_c00002{bottom:835.245000px;}
.y574_c00002{bottom:835.605000px;}
.y13d0_c00002{bottom:835.605720px;}
.y16a_c00002{bottom:835.609680px;}
.y1377_c00002{bottom:835.610400px;}
.y155_c00002{bottom:835.965000px;}
.y7b3_c00002{bottom:835.966440px;}
.y928_c00002{bottom:837.045000px;}
.ycda_c00002{bottom:837.764850px;}
.yc54_c00002{bottom:838.125000px;}
.y942_c00002{bottom:838.440000px;}
.y33e_c00002{bottom:838.485000px;}
.y42_c00002{bottom:838.845000px;}
.y12e_c00002{bottom:839.565000px;}
.y2e9_c00002{bottom:840.281040px;}
.y2ea_c00002{bottom:840.285000px;}
.y120d_c00002{bottom:840.641040px;}
.y105b_c00002{bottom:840.642840px;}
.yfb1_c00002{bottom:840.645000px;}
.y129b_c00002{bottom:840.645720px;}
.y1142_c00002{bottom:840.646800px;}
.yfb0_c00002{bottom:840.649680px;}
.ye4e_c00002{bottom:841.000680px;}
.yd16_c00002{bottom:841.005000px;}
.y8ac_c00002{bottom:841.360680px;}
.y39d_c00002{bottom:841.365000px;}
.yd21_c00002{bottom:841.724850px;}
.y641_c00002{bottom:841.725000px;}
.yf1f_c00002{bottom:841.731120px;}
.y2cf_c00002{bottom:842.085000px;}
.yd2_c00002{bottom:842.445000px;}
.y132e_c00002{bottom:843.161040px;}
.y284_c00002{bottom:843.165000px;}
.y12aa_c00002{bottom:843.165720px;}
.y1360_c00002{bottom:843.166800px;}
.y1124_c00002{bottom:843.169680px;}
.y6d6_c00002{bottom:843.525000px;}
.y6d5_c00002{bottom:843.529680px;}
.y3fc_c00002{bottom:844.605000px;}
.yee6_c00002{bottom:844.607520px;}
.y1dd_c00002{bottom:844.965000px;}
.y7c4_c00002{bottom:845.325000px;}
.ycc1_c00002{bottom:845.685000px;}
.y80a_c00002{bottom:846.045000px;}
.y660_c00002{bottom:846.405000px;}
.y784_c00002{bottom:846.761040px;}
.yb9f_c00002{bottom:846.764850px;}
.ybf0_c00002{bottom:847.125000px;}
.y31b_c00002{bottom:847.485000px;}
.ye18_c00002{bottom:847.828290px;}
.yb6_c00002{bottom:847.845000px;}
.yfd4_c00002{bottom:848.203920px;}
.yca2_c00002{bottom:848.205000px;}
.y145b_c00002{bottom:848.205720px;}
.y10f3_c00002{bottom:848.206800px;}
.y13c1_c00002{bottom:848.207520px;}
.y982_c00002{bottom:848.520000px;}
.ye89_c00002{bottom:848.555130px;}
.y818_c00002{bottom:848.565000px;}
.y124f_c00002{bottom:848.923920px;}
.y209_c00002{bottom:848.925000px;}
.y6c0_c00002{bottom:849.285000px;}
.y5d0_c00002{bottom:849.644850px;}
.y13_c00002{bottom:849.645000px;}
.y12_c00002{bottom:849.646800px;}
.yc82_c00002{bottom:850.005000px;}
.y4a3_c00002{bottom:850.365000px;}
.y1399_c00002{bottom:850.721040px;}
.yf4e_c00002{bottom:850.723920px;}
.yb1f_c00002{bottom:850.725000px;}
.y102d_c00002{bottom:850.725720px;}
.y11c5_c00002{bottom:850.726800px;}
.y1ea_c00002{bottom:851.085000px;}
.yf03_c00002{bottom:851.441400px;}
.y3ed_c00002{bottom:851.445000px;}
.ya0c_c00002{bottom:851.760000px;}
.ybb8_c00002{bottom:851.805000px;}
.ya0a_c00002{bottom:852.120000px;}
.ybb6_c00002{bottom:852.165000px;}
.y237_c00002{bottom:852.525000px;}
.y5ed_c00002{bottom:852.529680px;}
.y12f1_c00002{bottom:853.243920px;}
.y12f2_c00002{bottom:853.245000px;}
.y558_c00002{bottom:853.605000px;}
.y4fd_c00002{bottom:853.960680px;}
.y3c1_c00002{bottom:853.965000px;}
.yf07_c00002{bottom:854.318520px;}
.ye39_c00002{bottom:854.321400px;}
.y86f_c00002{bottom:854.325000px;}
.ydfe_c00002{bottom:854.685000px;}
.yd9a_c00002{bottom:855.376200px;}
.y8c0_c00002{bottom:855.405000px;}
.ycd9_c00002{bottom:855.764850px;}
.y6f1_c00002{bottom:856.125000px;}
.ye35_c00002{bottom:856.481760px;}
.y3c9_c00002{bottom:856.485000px;}
.yda8_c00002{bottom:856.774800px;}
.ye5f_c00002{bottom:856.835640px;}
.y272_c00002{bottom:856.845000px;}
.y1476_c00002{bottom:856.846800px;}
.yd81_c00002{bottom:857.201400px;}
.y37a_c00002{bottom:857.205000px;}
.y379_c00002{bottom:857.211840px;}
.y2e8_c00002{bottom:857.565000px;}
.y119e_c00002{bottom:857.925000px;}
.y120c_c00002{bottom:857.925720px;}
.y119d_c00002{bottom:857.929680px;}
.y105a_c00002{bottom:858.281040px;}
.y1354_c00002{bottom:858.282840px;}
.y1109_c00002{bottom:858.283920px;}
.yd15_c00002{bottom:858.285000px;}
.y122b_c00002{bottom:858.285570px;}
.y1141_c00002{bottom:858.286440px;}
.y8ab_c00002{bottom:858.644640px;}
.yeb5_c00002{bottom:858.645000px;}
.y777_c00002{bottom:859.005000px;}
.y941_c00002{bottom:859.319850px;}
.yb17_c00002{bottom:859.365000px;}
.ybc8_c00002{bottom:859.725000px;}
.y41_c00002{bottom:860.085000px;}
.y821_c00002{bottom:860.125500px;}
.y12d_c00002{bottom:860.445000px;}
.y132d_c00002{bottom:860.449680px;}
.y74d_c00002{bottom:860.800680px;}
.y13cf_c00002{bottom:860.801040px;}
.y168_c00002{bottom:860.803920px;}
.y169_c00002{bottom:860.805000px;}
.y1376_c00002{bottom:860.805720px;}
.y2aa_c00002{bottom:861.525000px;}
.y7b2_c00002{bottom:861.883560px;}
.y76_c00002{bottom:861.885000px;}
.yc04_c00002{bottom:862.245000px;}
.y981_c00002{bottom:862.560000px;}
.yd20_c00002{bottom:862.604850px;}
.y39c_c00002{bottom:862.605000px;}
.y27b_c00002{bottom:862.965000px;}
.y783_c00002{bottom:864.045000px;}
.ye4d_c00002{bottom:864.403920px;}
.y283_c00002{bottom:864.405000px;}
.y847_c00002{bottom:864.409320px;}
.y82d_c00002{bottom:864.419400px;}
.y5de_c00002{bottom:865.125000px;}
.ya0b_c00002{bottom:865.440000px;}
.y3fb_c00002{bottom:865.485000px;}
.ya09_c00002{bottom:865.800000px;}
.yfaf_c00002{bottom:865.841040px;}
.y10e5_c00002{bottom:865.841760px;}
.y109_c00002{bottom:865.845000px;}
.y10f2_c00002{bottom:865.845720px;}
.yca4_c00002{bottom:866.205000px;}
.yd6b_c00002{bottom:866.557800px;}
.y91e_c00002{bottom:866.565000px;}
.yf1e_c00002{bottom:866.572200px;}
.yc61_c00002{bottom:866.917800px;}
.y10_c00002{bottom:867.281040px;}
.y11_c00002{bottom:867.285000px;}
.y70c_c00002{bottom:867.645000px;}
.yb1e_c00002{bottom:868.005000px;}
.y1363_c00002{bottom:868.009680px;}
.y1398_c00002{bottom:868.011480px;}
.y1002_c00002{bottom:868.361040px;}
.y102c_c00002{bottom:868.363920px;}
.yc15_c00002{bottom:868.365000px;}
.y11c4_c00002{bottom:868.365720px;}
.y6d4_c00002{bottom:868.725000px;}
.y9c_c00002{bottom:869.085000px;}
.y817_c00002{bottom:869.445000px;}
.yd7c_c00002{bottom:869.801760px;}
.yc81_c00002{bottom:869.805000px;}
.y640_c00002{bottom:870.165000px;}
.y5cf_c00002{bottom:870.524850px;}
.y4b1_c00002{bottom:870.525000px;}
.yce3_c00002{bottom:870.885000px;}
.ye17_c00002{bottom:871.231530px;}
.y4dc_c00002{bottom:871.605000px;}
.yd4d_c00002{bottom:871.615080px;}
.ye88_c00002{bottom:871.958370px;}
.y154_c00002{bottom:871.965000px;}
.ycd5_c00002{bottom:872.325000px;}
.y3ec_c00002{bottom:872.685000px;}
.yd59_c00002{bottom:873.045000px;}
.y145a_c00002{bottom:873.046800px;}
.yfd3_c00002{bottom:873.049680px;}
.y77f_c00002{bottom:873.405000px;}
.yc52_c00002{bottom:873.764850px;}
.y66a_c00002{bottom:873.765000px;}
.yc51_c00002{bottom:874.125000px;}
.y1475_c00002{bottom:874.483920px;}
.y89f_c00002{bottom:874.485000px;}
.y468_c00002{bottom:874.841040px;}
.y35d_c00002{bottom:874.845000px;}
.y8d0_c00002{bottom:875.205000px;}
.y120b_c00002{bottom:875.563920px;}
.yc35_c00002{bottom:875.565000px;}
.y10c1_c00002{bottom:875.565720px;}
.yf4d_c00002{bottom:875.566800px;}
.y12df_c00002{bottom:875.567520px;}
.yf82_c00002{bottom:875.569530px;}
.y8aa_c00002{bottom:876.282840px;}
.yb83_c00002{bottom:876.645000px;}
.y378_c00002{bottom:877.005000px;}
.y208_c00002{bottom:877.365000px;}
.yf06_c00002{bottom:877.721760px;}
.y5ec_c00002{bottom:877.725000px;}
.yd1_c00002{bottom:878.085000px;}
.y12f0_c00002{bottom:878.089680px;}
.yc3f_c00002{bottom:878.445000px;}
.y8bf_c00002{bottom:878.805000px;}
.ydd8_c00002{bottom:879.159600px;}
.yd14_c00002{bottom:879.165000px;}
.yd99_c00002{bottom:879.498720px;}
.y31a_c00002{bottom:879.525000px;}
.ye5e_c00002{bottom:879.879240px;}
.ye4c_c00002{bottom:879.881760px;}
.yb69_c00002{bottom:879.885000px;}
.yda7_c00002{bottom:880.178040px;}
.y7b0_c00002{bottom:880.240320px;}
.y7b1_c00002{bottom:880.245000px;}
.y940_c00002{bottom:880.560000px;}
.y236_c00002{bottom:880.605000px;}
.y235_c00002{bottom:880.606440px;}
.y40_c00002{bottom:880.965000px;}
.y271_c00002{bottom:881.325000px;}
.yc90_c00002{bottom:881.685000px;}
.ycc0_c00002{bottom:882.045000px;}
.y68d_c00002{bottom:882.405000px;}
.ycbf_c00002{bottom:882.764850px;}
.y119c_c00002{bottom:883.121760px;}
.y2e7_c00002{bottom:883.125000px;}
.y10e4_c00002{bottom:883.125720px;}
.yfae_c00002{bottom:883.126650px;}
.y1140_c00002{bottom:883.127520px;}
.y10f1_c00002{bottom:883.129680px;}
.y39b_c00002{bottom:883.485000px;}
.yee5_c00002{bottom:883.830960px;}
.yf0_c00002{bottom:883.845000px;}
.y91d_c00002{bottom:884.205000px;}
.yf_c00002{bottom:884.565000px;}
.y980_c00002{bottom:884.880000px;}
.yeb4_c00002{bottom:884.915280px;}
.y3c8_c00002{bottom:884.925000px;}
.y282_c00002{bottom:885.285000px;}
.y132c_c00002{bottom:885.643920px;}
.y167_c00002{bottom:885.645000px;}
.y1001_c00002{bottom:885.645720px;}
.y135f_c00002{bottom:885.646800px;}
.y1123_c00002{bottom:885.649680px;}
.y74b_c00002{bottom:886.363920px;}
.y74c_c00002{bottom:886.365000px;}
.yca8_c00002{bottom:886.725000px;}
.y108_c00002{bottom:887.085000px;}
.yb9e_c00002{bottom:887.445000px;}
.y592_c00002{bottom:888.525000px;}
.y727_c00002{bottom:889.245000px;}
.y782_c00002{bottom:889.246800px;}
.y557_c00002{bottom:889.605000px;}
.y144_c00002{bottom:889.965000px;}
.y816_c00002{bottom:890.325000px;}
.y1392_c00002{bottom:890.685000px;}
.y1391_c00002{bottom:890.686800px;}
.y7e7_c00002{bottom:891.045000px;}
.y790_c00002{bottom:891.405000px;}
.y5ce_c00002{bottom:891.764850px;}
.yf1d_c00002{bottom:891.767520px;}
.y467_c00002{bottom:892.125000px;}
.y466_c00002{bottom:892.126650px;}
.y573_c00002{bottom:892.485000px;}
.y3e4_c00002{bottom:892.845000px;}
.yf4c_c00002{bottom:893.203920px;}
.y436_c00002{bottom:893.205000px;}
.y1282_c00002{bottom:893.205720px;}
.y102b_c00002{bottom:893.206800px;}
.y3eb_c00002{bottom:893.565000px;}
.y8a9_c00002{bottom:893.566800px;}
.yb82_c00002{bottom:893.925000px;}
.y86e_c00002{bottom:894.645000px;}
.y776_c00002{bottom:895.005000px;}
.yf05_c00002{bottom:895.357440px;}
.ye87_c00002{bottom:895.361610px;}
.ybc7_c00002{bottom:895.365000px;}
.y93f_c00002{bottom:895.680000px;}
.y93d_c00002{bottom:896.040000px;}
.y75_c00002{bottom:896.085000px;}
.y12c_c00002{bottom:896.445000px;}
.ye16_c00002{bottom:896.792610px;}
.y2a9_c00002{bottom:897.162840px;}
.y6b9_c00002{bottom:897.525000px;}
.yf02_c00002{bottom:897.885000px;}
.yfd2_c00002{bottom:898.241040px;}
.y234_c00002{bottom:898.244640px;}
.ycf4_c00002{bottom:898.245000px;}
.y97f_c00002{bottom:898.920000px;}
.y27a_c00002{bottom:898.965000px;}
.y7af_c00002{bottom:899.323920px;}
.y6f0_c00002{bottom:899.325000px;}
.y1474_c00002{bottom:899.326800px;}
.yc34_c00002{bottom:899.685000px;}
.y4db_c00002{bottom:900.045000px;}
.yd13_c00002{bottom:900.405000px;}
.y119b_c00002{bottom:900.405720px;}
.y120a_c00002{bottom:900.411480px;}
.y10a8_c00002{bottom:900.761040px;}
.y134d_c00002{bottom:900.762840px;}
.yfad_c00002{bottom:900.763920px;}
.yd1f_c00002{bottom:900.764850px;}
.yd1e_c00002{bottom:900.765000px;}
.yf81_c00002{bottom:900.765720px;}
.y1059_c00002{bottom:900.767520px;}
.ydfd_c00002{bottom:901.121760px;}
.y5dd_c00002{bottom:901.125000px;}
.y3fa_c00002{bottom:901.485000px;}
.y3f_c00002{bottom:901.845000px;}
.yd6a_c00002{bottom:902.197800px;}
.y33d_c00002{bottom:902.205000px;}
.ydd7_c00002{bottom:902.562840px;}
.ye99_c00002{bottom:902.563920px;}
.yc8f_c00002{bottom:902.565000px;}
.y8be_c00002{bottom:902.925000px;}
.yd98_c00002{bottom:903.261600px;}
.ye4b_c00002{bottom:903.278520px;}
.y13ce_c00002{bottom:903.281040px;}
.y1000_c00002{bottom:903.283920px;}
.ycff_c00002{bottom:903.285000px;}
.yda6_c00002{bottom:903.581280px;}
.y65f_c00002{bottom:903.645000px;}
.y631_c00002{bottom:904.005000px;}
.y39a_c00002{bottom:904.365000px;}
.yedc_c00002{bottom:904.723920px;}
.y377_c00002{bottom:904.725000px;}
.y376_c00002{bottom:904.731840px;}
.y8f5_c00002{bottom:905.084280px;}
.y9b_c00002{bottom:905.085000px;}
.yeb3_c00002{bottom:905.441400px;}
.y270_c00002{bottom:905.445000px;}
.y207_c00002{bottom:906.165000px;}
.y657_c00002{bottom:906.525000px;}
.yee4_c00002{bottom:906.874560px;}
.y781_c00002{bottom:906.885000px;}
.y4fb_c00002{bottom:907.243920px;}
.y4fc_c00002{bottom:907.245000px;}
.y82c_c00002{bottom:907.615080px;}
.y107_c00002{bottom:907.965000px;}
.y10e3_c00002{bottom:908.321040px;}
.y1441_c00002{bottom:908.321760px;}
.yb9d_c00002{bottom:908.325000px;}
.y1390_c00002{bottom:908.325720px;}
.yb68_c00002{bottom:908.685000px;}
.yc50_c00002{bottom:909.045000px;}
.yc60_c00002{bottom:909.400680px;}
.yb67_c00002{bottom:909.405000px;}
.y93e_c00002{bottom:909.720000px;}
.ye_c00002{bottom:909.764850px;}
.y465_c00002{bottom:909.780120px;}
.y93c_c00002{bottom:910.080000px;}
.y89e_c00002{bottom:910.125000px;}
.y556_c00002{bottom:910.485000px;}
.yeae_c00002{bottom:910.489320px;}
.y1122_c00002{bottom:910.841040px;}
.y11e5_c00002{bottom:910.842690px;}
.y102a_c00002{bottom:910.843920px;}
.y143_c00002{bottom:910.845000px;}
.y13af_c00002{bottom:910.845720px;}
.y74a_c00002{bottom:911.205000px;}
.y815_c00002{bottom:911.565000px;}
.y6d3_c00002{bottom:911.568450px;}
.y35c_c00002{bottom:911.925000px;}
.y2e6_c00002{bottom:912.645000px;}
.y2e5_c00002{bottom:912.648600px;}
.y44e_c00002{bottom:913.365000px;}
.y3c7_c00002{bottom:913.725000px;}
.yd0_c00002{bottom:914.085000px;}
.y166_c00002{bottom:914.445000px;}
.yd4c_c00002{bottom:914.454360px;}
.y2a8_c00002{bottom:914.801040px;}
.yd58_c00002{bottom:914.805000px;}
.yfd1_c00002{bottom:915.525000px;}
.y233_c00002{bottom:915.528600px;}
.yfd0_c00002{bottom:915.529320px;}
.yd0b_c00002{bottom:915.885000px;}
.y7e6_c00002{bottom:916.245000px;}
.y7e5_c00002{bottom:916.246800px;}
.yf1c_c00002{bottom:916.608600px;}
.y1473_c00002{bottom:916.963920px;}
.y74_c00002{bottom:916.965000px;}
.y97e_c00002{bottom:917.280000px;}
.y12b_c00002{bottom:917.325000px;}
.y726_c00002{bottom:918.045000px;}
.y10c0_c00002{bottom:918.046800px;}
.y1353_c00002{bottom:918.048600px;}
.yf80_c00002{bottom:918.049680px;}
.y1058_c00002{bottom:918.051480px;}
.ye98_c00002{bottom:918.401400px;}
.ybde_c00002{bottom:918.405000px;}
.ye86_c00002{bottom:918.764850px;}
.yc03_c00002{bottom:919.125000px;}
.y6ad_c00002{bottom:919.485000px;}
.y18a_c00002{bottom:919.845000px;}
.y63f_c00002{bottom:920.205000px;}
.y13cd_c00002{bottom:920.565000px;}
.y13cc_c00002{bottom:920.569530px;}
.ycbe_c00002{bottom:920.925000px;}
.yf04_c00002{bottom:921.278160px;}
.yd12_c00002{bottom:921.285000px;}
.yca7_c00002{bottom:921.645000px;}
.ye15_c00002{bottom:922.353690px;}
.yb16_c00002{bottom:922.365000px;}
.y8f4_c00002{bottom:922.722480px;}
.ycce_c00002{bottom:922.725000px;}
.y3e_c00002{bottom:923.085000px;}
.y303_c00002{bottom:923.445000px;}
.ya08_c00002{bottom:923.760000px;}
.yc80_c00002{bottom:923.805000px;}
.y7ad_c00002{bottom:924.162840px;}
.y7ae_c00002{bottom:924.165000px;}
.y435_c00002{bottom:924.525000px;}
.y375_c00002{bottom:924.529680px;}
.y93b_c00002{bottom:924.840000px;}
.yc7e_c00002{bottom:925.245000px;}
.y119a_c00002{bottom:925.246800px;}
.yfac_c00002{bottom:925.605000px;}
.y10e2_c00002{bottom:925.605720px;}
.yfab_c00002{bottom:925.606800px;}
.y1170_c00002{bottom:925.609680px;}
.yb5_c00002{bottom:925.965000px;}
.ye34_c00002{bottom:926.325000px;}
.yda5_c00002{bottom:926.624880px;}
.yd97_c00002{bottom:926.664840px;}
.ye4a_c00002{bottom:926.681760px;}
.y889_c00002{bottom:927.045000px;}
.y281_c00002{bottom:927.405000px;}
.y89d_c00002{bottom:927.764850px;}
.y5cd_c00002{bottom:927.765000px;}
.yead_c00002{bottom:928.125000px;}
.yfff_c00002{bottom:928.125570px;}
.y11e4_c00002{bottom:928.126650px;}
.y1121_c00002{bottom:928.129680px;}
.y927_c00002{bottom:928.485000px;}
.y106_c00002{bottom:928.845000px;}
.y252_c00002{bottom:929.205000px;}
.ybb5_c00002{bottom:929.565000px;}
.yee3_c00002{bottom:930.277800px;}
.yedb_c00002{bottom:930.285000px;}
.yce2_c00002{bottom:930.645000px;}
.y775_c00002{bottom:931.005000px;}
.y97d_c00002{bottom:931.320000px;}
.y555_c00002{bottom:931.365000px;}
.y820_c00002{bottom:931.504050px;}
.y142_c00002{bottom:932.085000px;}
.y4fa_c00002{bottom:932.089680px;}
.y814_c00002{bottom:932.445000px;}
.y232_c00002{bottom:933.166800px;}
.yfcf_c00002{bottom:933.167520px;}
.y6b8_c00002{bottom:933.525000px;}
.y7e3_c00002{bottom:933.883920px;}
.y7e4_c00002{bottom:933.885000px;}
.yb66_c00002{bottom:934.245000px;}
.yd_c00002{bottom:934.605000px;}
.yc_c00002{bottom:934.609680px;}
.y464_c00002{bottom:934.621200px;}
.y206_c00002{bottom:934.964850px;}
.ycf_c00002{bottom:934.965000px;}
.y65e_c00002{bottom:935.325000px;}
.y132b_c00002{bottom:935.683920px;}
.y3ea_c00002{bottom:935.685000px;}
.y1029_c00002{bottom:935.685720px;}
.y1352_c00002{bottom:935.686800px;}
.yf4b_c00002{bottom:935.689680px;}
.ybdd_c00002{bottom:936.045000px;}
.y6d2_c00002{bottom:936.409530px;}
.y669_c00002{bottom:936.764850px;}
.y749_c00002{bottom:936.765000px;}
.y5dc_c00002{bottom:937.125000px;}
.yd69_c00002{bottom:937.481400px;}
.ya07_c00002{bottom:937.800000px;}
.y73_c00002{bottom:937.845000px;}
.y93a_c00002{bottom:938.880000px;}
.y809_c00002{bottom:938.925000px;}
.yca6_c00002{bottom:939.285000px;}
.y319_c00002{bottom:939.645000px;}
.y630_c00002{bottom:940.005000px;}
.y8f3_c00002{bottom:940.360680px;}
.y399_c00002{bottom:940.365000px;}
.y9a_c00002{bottom:941.085000px;}
.ybfb_c00002{bottom:941.445000px;}
.ye85_c00002{bottom:941.801760px;}
.yf1b_c00002{bottom:941.803920px;}
.yc7f_c00002{bottom:941.805000px;}
.y1472_c00002{bottom:941.806800px;}
.y2e4_c00002{bottom:942.165000px;}
.y3c6_c00002{bottom:942.525000px;}
.y1199_c00002{bottom:942.885000px;}
.y1198_c00002{bottom:942.893280px;}
.y1076_c00002{bottom:943.243920px;}
.yf7f_c00002{bottom:943.245000px;}
.y12ca_c00002{bottom:943.245720px;}
.y1057_c00002{bottom:943.246800px;}
.yb15_c00002{bottom:943.605000px;}
.y3d_c00002{bottom:943.965000px;}
.y7ac_c00002{bottom:944.325000px;}
.yf01_c00002{bottom:945.045000px;}
.y888_c00002{bottom:945.405000px;}
.y11e2_c00002{bottom:945.763770px;}
.y11e3_c00002{bottom:945.764850px;}
.yb81_c00002{bottom:946.485000px;}
.yb4_c00002{bottom:946.845000px;}
.y725_c00002{bottom:947.205000px;}
.ycd8_c00002{bottom:947.565000px;}
.ye14_c00002{bottom:947.914770px;}
.ydfc_c00002{bottom:947.921400px;}
.ydd2_c00002{bottom:947.925000px;}
.y280_c00002{bottom:948.285000px;}
.y5cc_c00002{bottom:948.645000px;}
.y44d_c00002{bottom:949.365000px;}
.yd96_c00002{bottom:949.708440px;}
.yc0c_c00002{bottom:949.724850px;}
.y374_c00002{bottom:949.725000px;}
.y373_c00002{bottom:949.726800px;}
.yda4_c00002{bottom:950.028120px;}
.ydd6_c00002{bottom:950.064690px;}
.y105_c00002{bottom:950.085000px;}
.yb9c_c00002{bottom:950.445000px;}
.y82b_c00002{bottom:950.454360px;}
.y116f_c00002{bottom:950.801040px;}
.y231_c00002{bottom:950.805000px;}
.yfce_c00002{bottom:950.805720px;}
.yeb2_c00002{bottom:951.878160px;}
.yeac_c00002{bottom:951.885000px;}
.yc5f_c00002{bottom:952.239960px;}
.y554_c00002{bottom:952.605000px;}
.y939_c00002{bottom:952.920000px;}
.y3c0_c00002{bottom:952.965000px;}
.y1362_c00002{bottom:952.969680px;}
.yeda_c00002{bottom:953.318160px;}
.yffe_c00002{bottom:953.320890px;}
.y1120_c00002{bottom:953.323920px;}
.y12a_c00002{bottom:953.325000px;}
.y11c3_c00002{bottom:953.325720px;}
.yb65_c00002{bottom:954.045000px;}
.ybda_c00002{bottom:954.405000px;}
.y91c_c00002{bottom:955.125000px;}
.y189_c00002{bottom:955.845000px;}
.ybdc_c00002{bottom:956.205000px;}
.yca1_c00002{bottom:956.565000px;}
.yd57_c00002{bottom:956.925000px;}
.y4f9_c00002{bottom:957.281040px;}
.y2a6_c00002{bottom:957.283560px;}
.y2a7_c00002{bottom:957.285000px;}
.y8f2_c00002{bottom:957.644640px;}
.yd0a_c00002{bottom:957.645000px;}
.yd4b_c00002{bottom:957.650040px;}
.y572_c00002{bottom:958.365000px;}
.y97c_c00002{bottom:958.680000px;}
.y33c_c00002{bottom:958.725000px;}
.y354_c00002{bottom:959.085000px;}
.y1470_c00002{bottom:959.439240px;}
.y1471_c00002{bottom:959.445000px;}
.ya_c00002{bottom:959.799960px;}
.yb_c00002{bottom:959.805000px;}
.y463_c00002{bottom:959.816520px;}
.y4da_c00002{bottom:960.525000px;}
.y132a_c00002{bottom:960.525720px;}
.y1197_c00002{bottom:960.531480px;}
.yf4a_c00002{bottom:960.881040px;}
.yf7e_c00002{bottom:960.883920px;}
.yc7d_c00002{bottom:960.885000px;}
.yfaa_c00002{bottom:960.885720px;}
.y62f_c00002{bottom:961.245000px;}
.y6d1_c00002{bottom:961.604850px;}
.y398_c00002{bottom:961.605000px;}
.y613_c00002{bottom:961.965000px;}
.y7ef_c00002{bottom:962.685000px;}
.yc4e_c00002{bottom:963.045000px;}
.y5eb_c00002{bottom:963.405000px;}
.y205_c00002{bottom:963.764850px;}
.y204_c00002{bottom:963.765000px;}
.y808_c00002{bottom:964.121040px;}
.y3e9_c00002{bottom:964.125000px;}
.ye97_c00002{bottom:964.840680px;}
.y1c0_c00002{bottom:964.845000px;}
.ye84_c00002{bottom:965.205000px;}
.yc3b_c00002{bottom:965.565000px;}
.y748_c00002{bottom:965.925000px;}
.yf1a_c00002{bottom:966.645000px;}
.y774_c00002{bottom:967.005000px;}
.y372_c00002{bottom:967.361760px;}
.ybb4_c00002{bottom:967.725000px;}
.yb3_c00002{bottom:968.085000px;}
.y113f_c00002{bottom:968.085720px;}
.y10e1_c00002{bottom:968.086800px;}
.y11b8_c00002{bottom:968.087520px;}
.y1075_c00002{bottom:968.088600px;}
.y13c0_c00002{bottom:968.089320px;}
.y116e_c00002{bottom:968.089680px;}
.y668_c00002{bottom:968.444850px;}
.y813_c00002{bottom:968.445000px;}
.y7ab_c00002{bottom:969.165000px;}
.y27f_c00002{bottom:969.525000px;}
.ycfe_c00002{bottom:970.245000px;}
.yb9b_c00002{bottom:970.604850px;}
.y5cb_c00002{bottom:970.605000px;}
.yffd_c00002{bottom:970.609680px;}
.yce_c00002{bottom:970.965000px;}
.ye13_c00002{bottom:971.318010px;}
.yc33_c00002{bottom:971.325000px;}
.yf00_c00002{bottom:971.325360px;}
.y2e3_c00002{bottom:971.685000px;}
.yb64_c00002{bottom:972.405000px;}
.y91b_c00002{bottom:972.764850px;}
.yd95_c00002{bottom:973.111680px;}
.yd68_c00002{bottom:973.121400px;}
.yb63_c00002{bottom:973.125000px;}
.yda3_c00002{bottom:973.431360px;}
.y97b_c00002{bottom:973.440000px;}
.ydd5_c00002{bottom:973.467930px;}
.ybdb_c00002{bottom:973.485000px;}
.y72_c00002{bottom:973.845000px;}
.y553_c00002{bottom:974.205000px;}
.y129_c00002{bottom:974.565000px;}
.y4f8_c00002{bottom:974.569530px;}
.y458_c00002{bottom:974.925000px;}
.yeb1_c00002{bottom:975.281400px;}
.y8f1_c00002{bottom:975.282840px;}
.yeab_c00002{bottom:975.287010px;}
.y230_c00002{bottom:975.645000px;}
.y22f_c00002{bottom:975.646800px;}
.yc02_c00002{bottom:976.005000px;}
.ye33_c00002{bottom:976.361760px;}
.y6ac_c00002{bottom:976.365000px;}
.yed9_c00002{bottom:976.721400px;}
.y99_c00002{bottom:977.085000px;}
.yc2f_c00002{bottom:977.445000px;}
.yd56_c00002{bottom:978.165000px;}
.yf49_c00002{bottom:978.165720px;}
.y10d1_c00002{bottom:978.166800px;}
.y1397_c00002{bottom:978.167520px;}
.y108e_c00002{bottom:978.169680px;}
.y8bd_c00002{bottom:978.525000px;}
.y724_c00002{bottom:978.885000px;}
.yc7c_c00002{bottom:979.245000px;}
.yd09_c00002{bottom:979.604850px;}
.yb14_c00002{bottom:979.605000px;}
.y462_c00002{bottom:979.609680px;}
.y3c_c00002{bottom:979.965000px;}
.y5db_c00002{bottom:980.325000px;}
.ye96_c00002{bottom:980.678160px;}
.yc4f_c00002{bottom:980.685000px;}
.y89c_c00002{bottom:981.045000px;}
.y434_c00002{bottom:981.405000px;}
.ycbd_c00002{bottom:981.764850px;}
.y2a5_c00002{bottom:982.124640px;}
.y397_c00002{bottom:982.485000px;}
.y571_c00002{bottom:982.845000px;}
.ycd7_c00002{bottom:983.205000px;}
.y7e2_c00002{bottom:983.925000px;}
.y7e1_c00002{bottom:983.929680px;}
.y146f_c00002{bottom:984.280320px;}
.yc3e_c00002{bottom:984.285000px;}
.y44c_c00002{bottom:985.365000px;}
.y1329_c00002{bottom:985.366800px;}
.y81f_c00002{bottom:985.516050px;}
.y1056_c00002{bottom:985.723920px;}
.y3e8_c00002{bottom:985.725000px;}
.y10e0_c00002{bottom:985.725720px;}
.yfa9_c00002{bottom:985.726800px;}
.y13bf_c00002{bottom:985.727520px;}
.y153_c00002{bottom:986.085000px;}
.y612_c00002{bottom:986.445000px;}
.y6d0_c00002{bottom:986.449680px;}
.y9_c00002{bottom:987.165000px;}
.y8_c00002{bottom:987.176520px;}
.y97a_c00002{bottom:987.480000px;}
.y7aa_c00002{bottom:988.245000px;}
.y7a9_c00002{bottom:988.246800px;}
.ye83_c00002{bottom:988.261560px;}
.ybb3_c00002{bottom:988.604850px;}
.yb2_c00002{bottom:988.965000px;}
.y4d9_c00002{bottom:989.325000px;}
.y656_c00002{bottom:990.405000px;}
.yb9a_c00002{bottom:990.764850px;}
.ybd9_c00002{bottom:991.485000px;}
.ycd_c00002{bottom:991.845000px;}
.y203_c00002{bottom:992.205000px;}
.yc32_c00002{bottom:992.565000px;}
.y8f0_c00002{bottom:992.566800px;}
.y22d_c00002{bottom:993.281040px;}
.yfcd_c00002{bottom:993.282840px;}
.y22e_c00002{bottom:993.285000px;}
.yb62_c00002{bottom:993.645000px;}
.y82a_c00002{bottom:993.650040px;}
.ydd1_c00002{bottom:994.353690px;}
.ye12_c00002{bottom:994.361610px;}
.y747_c00002{bottom:994.365000px;}
.yc5e_c00002{bottom:994.722840px;}
.y371_c00002{bottom:994.726800px;}
.y71_c00002{bottom:995.085000px;}
.y128_c00002{bottom:995.445000px;}
.y1272_c00002{bottom:995.801040px;}
.yffb_c00002{bottom:995.803920px;}
.y111f_c00002{bottom:995.804640px;}
.yffc_c00002{bottom:995.805000px;}
.y11c2_c00002{bottom:995.805720px;}
.ye30_c00002{bottom:996.155280px;}
.yca0_c00002{bottom:996.165000px;}
.yda2_c00002{bottom:996.474960px;}
.ydd4_c00002{bottom:996.511530px;}
.yd94_c00002{bottom:996.514920px;}
.y68c_c00002{bottom:996.525000px;}
.yc7b_c00002{bottom:997.245000px;}
.y6ab_c00002{bottom:997.605000px;}
.y62e_c00002{bottom:997.965000px;}
.y62a_c00002{bottom:998.325000px;}
.yc4d_c00002{bottom:998.685000px;}
.yb80_c00002{bottom:999.045000px;}
.y719_c00002{bottom:999.405000px;}
.y4f7_c00002{bottom:999.762840px;}
.y318_c00002{bottom:999.764850px;}
.y317_c00002{bottom:999.765000px;}
.yb13_c00002{bottom:1000.485000px;}
.yd4a_c00002{bottom:1000.489320px;}
.y3a_c00002{bottom:1000.845000px;}
.y2e2_c00002{bottom:1001.205000px;}
.y979_c00002{bottom:1001.520000px;}
.ycd6_c00002{bottom:1001.565000px;}
.yc3d_c00002{bottom:1002.645000px;}
.y773_c00002{bottom:1003.005000px;}
.y1328_c00002{bottom:1003.009680px;}
.yf48_c00002{bottom:1003.361040px;}
.y129a_c00002{bottom:1003.361760px;}
.yf7d_c00002{bottom:1003.363920px;}
.y395_c00002{bottom:1003.365000px;}
.y10bf_c00002{bottom:1003.365720px;}
.ye95_c00002{bottom:1003.721760px;}
.yce1_c00002{bottom:1003.725000px;}
.y6ef_c00002{bottom:1004.085000px;}
.y460_c00002{bottom:1004.801040px;}
.y461_c00002{bottom:1004.805000px;}
.y887_c00002{bottom:1005.165000px;}
.ye32_c00002{bottom:1005.519240px;}
.y27e_c00002{bottom:1005.525000px;}
.y62b_c00002{bottom:1005.885000px;}
.y7a8_c00002{bottom:1005.891840px;}
.ye82_c00002{bottom:1005.897240px;}
.y807_c00002{bottom:1006.604850px;}
.yc0b_c00002{bottom:1006.605000px;}
.y152_c00002{bottom:1006.965000px;}
.y3e7_c00002{bottom:1007.325000px;}
.y91a_c00002{bottom:1008.045000px;}
.y3b_c00002{bottom:1008.405000px;}
.yd67_c00002{bottom:1008.761400px;}
.y7df_c00002{bottom:1009.123920px;}
.y7e0_c00002{bottom:1009.125000px;}
.yd7b_c00002{bottom:1009.485000px;}
.y2a4_c00002{bottom:1009.843920px;}
.yb1_c00002{bottom:1009.845000px;}
.y8ef_c00002{bottom:1010.205000px;}
.y22c_c00002{bottom:1010.565000px;}
.yfcc_c00002{bottom:1010.566800px;}
.y1281_c00002{bottom:1010.567520px;}
.y113e_c00002{bottom:1010.568600px;}
.y138f_c00002{bottom:1010.569530px;}
.y116d_c00002{bottom:1010.571480px;}
.y396_c00002{bottom:1010.925000px;}
.y655_c00002{bottom:1011.645000px;}
.yb61_c00002{bottom:1012.005000px;}
.y370_c00002{bottom:1012.365000px;}
.y36f_c00002{bottom:1012.369680px;}
.y7_c00002{bottom:1012.371840px;}
.yb60_c00002{bottom:1012.725000px;}
.y98_c00002{bottom:1013.085000px;}
.y433_c00002{bottom:1013.445000px;}
.ycfd_c00002{bottom:1014.885000px;}
.y552_c00002{bottom:1015.965000px;}
.y127_c00002{bottom:1016.325000px;}
.y89b_c00002{bottom:1016.685000px;}
.y4f6_c00002{bottom:1017.401040px;}
.y432_c00002{bottom:1017.405000px;}
.ydd0_c00002{bottom:1017.756930px;}
.ye11_c00002{bottom:1017.764850px;}
.y6aa_c00002{bottom:1018.485000px;}
.yc26_c00002{bottom:1018.845000px;}
.y6f_c00002{bottom:1019.205000px;}
.ye49_c00002{bottom:1019.565000px;}
.yda1_c00002{bottom:1019.878200px;}
.ydd3_c00002{bottom:1019.914770px;}
.yd93_c00002{bottom:1019.918160px;}
.yefe_c00002{bottom:1019.921760px;}
.yd80_c00002{bottom:1019.925000px;}
.y65d_c00002{bottom:1020.645000px;}
.yf47_c00002{bottom:1020.645720px;}
.y11c1_c00002{bottom:1020.646800px;}
.yffa_c00002{bottom:1020.649680px;}
.y4d8_c00002{bottom:1021.005000px;}
.ye31_c00002{bottom:1021.356720px;}
.y44b_c00002{bottom:1021.365000px;}
.y33b_c00002{bottom:1021.725000px;}
.yeb0_c00002{bottom:1021.729320px;}
.y39_c00002{bottom:1022.085000px;}
.y629_c00002{bottom:1022.445000px;}
.ye81_c00002{bottom:1023.892560px;}
.y394_c00002{bottom:1024.605000px;}
.y68b_c00002{bottom:1024.965000px;}
.y7a7_c00002{bottom:1025.685000px;}
.y7a6_c00002{bottom:1025.686800px;}
.y70_c00002{bottom:1026.764850px;}
.ye94_c00002{bottom:1027.125000px;}
.y570_c00002{bottom:1027.485000px;}
.y151_c00002{bottom:1027.845000px;}
.y22b_c00002{bottom:1028.205000px;}
.yf7c_c00002{bottom:1028.205720px;}
.y22a_c00002{bottom:1028.206800px;}
.y122a_c00002{bottom:1028.207520px;}
.y1055_c00002{bottom:1028.209680px;}
.yb99_c00002{bottom:1029.285000px;}
.y3f9_c00002{bottom:1029.645000px;}
.y886_c00002{bottom:1030.005000px;}
.y2e1_c00002{bottom:1030.365000px;}
.yf19_c00002{bottom:1030.728450px;}
.y812_c00002{bottom:1031.445000px;}
.y8bc_c00002{bottom:1031.805000px;}
.y6_c00002{bottom:1032.165000px;}
.y5_c00002{bottom:1032.165720px;}
.yd7a_c00002{bottom:1032.525000px;}
.yb5f_c00002{bottom:1033.245000px;}
.y7de_c00002{bottom:1033.965000px;}
.ybb2_c00002{bottom:1034.325000px;}
.y2a3_c00002{bottom:1034.685000px;}
.y2a2_c00002{bottom:1034.689680px;}
.y89a_c00002{bottom:1035.045000px;}
.yeff_c00002{bottom:1035.047160px;}
.ybd8_c00002{bottom:1035.405000px;}
.y138e_c00002{bottom:1035.762840px;}
.yc9f_c00002{bottom:1035.764850px;}
.yc7a_c00002{bottom:1036.125000px;}
.y6ce_c00002{bottom:1036.483920px;}
.y6cf_c00002{bottom:1036.485000px;}
.y829_c00002{bottom:1036.489320px;}
.y551_c00002{bottom:1036.845000px;}
.yc5d_c00002{bottom:1037.205720px;}
.y36e_c00002{bottom:1037.560680px;}
.y1028_c00002{bottom:1038.283920px;}
.y11c0_c00002{bottom:1038.285000px;}
.y772_c00002{bottom:1039.005000px;}
.yeaf_c00002{bottom:1039.365000px;}
.y81e_c00002{bottom:1039.528050px;}
.y45e_c00002{bottom:1039.722840px;}
.y45f_c00002{bottom:1039.725000px;}
.y6e_c00002{bottom:1040.085000px;}
.y6a9_c00002{bottom:1040.445000px;}
.y7ee_c00002{bottom:1040.805000px;}
.y44a_c00002{bottom:1042.245000px;}
.ye80_c00002{bottom:1042.247520px;}
.yb12_c00002{bottom:1042.605000px;}
.y38_c00002{bottom:1042.965000px;}
.yda0_c00002{bottom:1043.281440px;}
.ydcf_c00002{bottom:1043.318010px;}
.yd92_c00002{bottom:1043.321400px;}
.y7a5_c00002{bottom:1043.325000px;}
.y7a4_c00002{bottom:1043.331840px;}
.yd49_c00002{bottom:1043.685000px;}
.yd66_c00002{bottom:1044.045000px;}
.y806_c00002{bottom:1045.125000px;}
.y1327_c00002{bottom:1045.489680px;}
.yf46_c00002{bottom:1045.841040px;}
.yf7b_c00002{bottom:1045.843920px;}
.yb0_c00002{bottom:1045.845000px;}
.y229_c00002{bottom:1045.845720px;}
.yb98_c00002{bottom:1046.565000px;}
.y3bf_c00002{bottom:1046.925000px;}
.y654_c00002{bottom:1047.645000px;}
.y97_c00002{bottom:1049.085000px;}
.yc14_c00002{bottom:1049.445000px;}
.ycbc_c00002{bottom:1049.805000px;}
.ye93_c00002{bottom:1050.164490px;}
.yed8_c00002{bottom:1050.165000px;}
.yed7_c00002{bottom:1050.167520px;}
.y3f8_c00002{bottom:1050.525000px;}
.yb5e_c00002{bottom:1050.885000px;}
.yc8e_c00002{bottom:1051.245000px;}
.yb1d_c00002{bottom:1051.604850px;}
.ybb1_c00002{bottom:1051.965000px;}
.y126_c00002{bottom:1052.325000px;}
.yc31_c00002{bottom:1052.325360px;}
.y899_c00002{bottom:1052.685000px;}
.ybd7_c00002{bottom:1053.045000px;}
.y1054_c00002{bottom:1053.401040px;}
.y68a_c00002{bottom:1053.402840px;}
.yc79_c00002{bottom:1053.405000px;}
.yce0_c00002{bottom:1054.125000px;}
.yf18_c00002{bottom:1055.569530px;}
.yd79_c00002{bottom:1055.929320px;}
.y718_c00002{bottom:1056.285000px;}
.y307_c00002{bottom:1056.645000px;}
.y316_c00002{bottom:1057.005000px;}
.ye7f_c00002{bottom:1058.085000px;}
.ye7e_c00002{bottom:1058.089890px;}
.y8bb_c00002{bottom:1059.165000px;}
.y2e0_c00002{bottom:1059.879600px;}
.y4_c00002{bottom:1059.885000px;}
.y62d_c00002{bottom:1060.965000px;}
.y550_c00002{bottom:1061.325000px;}
.y36d_c00002{bottom:1063.125000px;}
.y228_c00002{bottom:1063.129680px;}
.y56f_c00002{bottom:1063.485000px;}
.y37_c00002{bottom:1063.845000px;}
.y6d_c00002{bottom:1064.205000px;}
.ye92_c00002{bottom:1066.001970px;}
.ybd5_c00002{bottom:1066.005000px;}
.yd91_c00002{bottom:1066.361610px;}
.y885_c00002{bottom:1066.365000px;}
.y884_c00002{bottom:1066.725000px;}
.yb97_c00002{bottom:1067.085000px;}
.y86d_c00002{bottom:1067.445000px;}
.ybd6_c00002{bottom:1068.525000px;}
.ybb0_c00002{bottom:1069.245000px;}
.yc4c_c00002{bottom:1069.604850px;}
.y898_c00002{bottom:1069.965000px;}
.yf7a_c00002{bottom:1070.685000px;}
.y689_c00002{bottom:1070.686800px;}
.y302_c00002{bottom:1071.405000px;}
.yd78_c00002{bottom:1073.565000px;}
.yd77_c00002{bottom:1073.567730px;}
.ye7d_c00002{bottom:1073.927370px;}
.y771_c00002{bottom:1075.005000px;}
.y828_c00002{bottom:1079.685000px;}
.yc5c_c00002{bottom:1080.045000px;}
.yf17_c00002{bottom:1080.764850px;}
.y805_c00002{bottom:1082.565000px;}
.yaf_c00002{bottom:1082.925000px;}
.y6cd_c00002{bottom:1084.005000px;}
.y653_c00002{bottom:1084.365000px;}
.y3_c00002{bottom:1085.085000px;}
.y393_c00002{bottom:1085.445000px;}
.y2df_c00002{bottom:1086.885000px;}
.y883_c00002{bottom:1087.245000px;}
.y86c_c00002{bottom:1087.604850px;}
.y125_c00002{bottom:1088.325000px;}
.yed6_c00002{bottom:1089.405000px;}
.yd76_c00002{bottom:1089.764850px;}
.y6a8_c00002{bottom:1092.645000px;}
.y81d_c00002{bottom:1093.540050px;}
.y770_c00002{bottom:1096.245000px;}
.y359_c00002{bottom:1117.125000px;}
.y2_c00002{bottom:1138.365000px;}
.y827_c00002{bottom:1140.165000px;}
.y81c_c00002{bottom:1147.552050px;}
.h5b_c00002{height:19.255500px;}
.h10_c00002{height:19.255605px;}
.h6b_c00002{height:26.092800px;}
.h5d_c00002{height:26.274375px;}
.h30_c00002{height:26.640000px;}
.h85_c00002{height:26.995781px;}
.h1b_c00002{height:27.000000px;}
.h29_c00002{height:27.360000px;}
.h88_c00002{height:27.792000px;}
.h40_c00002{height:28.080000px;}
.h41_c00002{height:28.647338px;}
.h2f_c00002{height:29.160000px;}
.h1f_c00002{height:29.520000px;}
.h65_c00002{height:31.672266px;}
.h68_c00002{height:32.113125px;}
.h31_c00002{height:32.400000px;}
.hf_c00002{height:32.616000px;}
.h52_c00002{height:32.760000px;}
.h8b_c00002{height:33.230912px;}
.ha3_c00002{height:33.619803px;}
.h35_c00002{height:34.920000px;}
.h37_c00002{height:35.225280px;}
.h6c_c00002{height:35.640000px;}
.h8d_c00002{height:36.994219px;}
.h63_c00002{height:37.814486px;}
.h12_c00002{height:37.834560px;}
.h39_c00002{height:38.520000px;}
.h28_c00002{height:38.998972px;}
.h1a_c00002{height:39.350391px;}
.h7d_c00002{height:39.898125px;}
.h22_c00002{height:39.984609px;}
.h9c_c00002{height:40.417031px;}
.h48_c00002{height:40.993594px;}
.h18_c00002{height:41.132160px;}
.h49_c00002{height:41.328000px;}
.hd_c00002{height:42.398060px;}
.h6d_c00002{height:42.480000px;}
.h96_c00002{height:42.624000px;}
.h46_c00002{height:43.053120px;}
.h64_c00002{height:43.148160px;}
.h80_c00002{height:43.189453px;}
.h72_c00002{height:43.560000px;}
.h5a_c00002{height:43.790625px;}
.h78_c00002{height:44.280000px;}
.h76_c00002{height:44.689847px;}
.h71_c00002{height:44.805234px;}
.h67_c00002{height:44.812800px;}
.h84_c00002{height:44.992969px;}
.h34_c00002{height:45.000000px;}
.h17_c00002{height:45.578880px;}
.h5c_c00002{height:46.320000px;}
.h4a_c00002{height:46.470937px;}
.h6_c00002{height:46.981634px;}
.h16_c00002{height:47.160000px;}
.h36_c00002{height:47.205000px;}
.h43_c00002{height:47.232000px;}
.h2d_c00002{height:47.520000px;}
.h19_c00002{height:47.988281px;}
.h38_c00002{height:48.240000px;}
.he_c00002{height:48.271680px;}
.h8a_c00002{height:48.284640px;}
.h8f_c00002{height:48.285240px;}
.h8e_c00002{height:48.286080px;}
.h94_c00002{height:48.293280px;}
.h97_c00002{height:48.297600px;}
.h98_c00002{height:48.299040px;}
.h93_c00002{height:48.303360px;}
.h92_c00002{height:48.306240px;}
.h95_c00002{height:48.309120px;}
.h90_c00002{height:48.378240px;}
.h3f_c00002{height:48.600000px;}
.h91_c00002{height:48.644640px;}
.h4f_c00002{height:48.656250px;}
.h82_c00002{height:48.685631px;}
.h20_c00002{height:48.761719px;}
.h8c_c00002{height:49.757309px;}
.h3b_c00002{height:50.765625px;}
.h1c_c00002{height:51.565208px;}
.h44_c00002{height:51.840000px;}
.h3a_c00002{height:52.031250px;}
.h3e_c00002{height:52.200000px;}
.h4c_c00002{height:52.453125px;}
.h32_c00002{height:52.920000px;}
.h7_c00002{height:53.490240px;}
.h2e_c00002{height:53.494560px;}
.h9d_c00002{height:53.499480px;}
.h2c_c00002{height:53.503200px;}
.h27_c00002{height:53.506080px;}
.h5_c00002{height:53.608320px;}
.h79_c00002{height:53.880744px;}
.h1d_c00002{height:54.000000px;}
.h24_c00002{height:55.136477px;}
.h3c_c00002{height:55.258191px;}
.h15_c00002{height:55.584000px;}
.h2a_c00002{height:55.661926px;}
.h8_c00002{height:55.667109px;}
.h2b_c00002{height:55.684389px;}
.h6e_c00002{height:56.160000px;}
.h11_c00002{height:56.640000px;}
.h9f_c00002{height:57.077280px;}
.h9a_c00002{height:57.093120px;}
.h9_c00002{height:57.096000px;}
.h5e_c00002{height:57.097440px;}
.h9e_c00002{height:57.100320px;}
.h4_c00002{height:57.294676px;}
.h42_c00002{height:57.600000px;}
.h14_c00002{height:58.708800px;}
.h99_c00002{height:58.730400px;}
.ha2_c00002{height:58.845788px;}
.h9b_c00002{height:58.853210px;}
.ha0_c00002{height:59.040000px;}
.h51_c00002{height:60.120000px;}
.h26_c00002{height:60.515646px;}
.ha1_c00002{height:60.857039px;}
.h45_c00002{height:61.878250px;}
.h87_c00002{height:62.478720px;}
.h7e_c00002{height:63.344531px;}
.h56_c00002{height:63.954000px;}
.ha_c00002{height:64.226250px;}
.h23_c00002{height:64.400972px;}
.hb_c00002{height:64.401590px;}
.h83_c00002{height:65.221920px;}
.h7c_c00002{height:65.230560px;}
.h3_c00002{height:65.232000px;}
.h81_c00002{height:65.376000px;}
.h21_c00002{height:67.239607px;}
.h33_c00002{height:67.388038px;}
.h1e_c00002{height:67.886719px;}
.h13_c00002{height:68.073960px;}
.hc_c00002{height:68.074560px;}
.h3d_c00002{height:68.075160px;}
.h25_c00002{height:70.169650px;}
.h47_c00002{height:73.281600px;}
.h86_c00002{height:73.370880px;}
.h57_c00002{height:75.582000px;}
.h50_c00002{height:75.669120px;}
.h4e_c00002{height:85.942014px;}
.h4b_c00002{height:86.106240px;}
.h59_c00002{height:86.123520px;}
.h7f_c00002{height:86.140800px;}
.h89_c00002{height:86.149440px;}
.h55_c00002{height:93.024000px;}
.h4d_c00002{height:97.848000px;}
.h75_c00002{height:98.640000px;}
.h58_c00002{height:116.280000px;}
.h5f_c00002{height:150.840000px;}
.h54_c00002{height:162.792000px;}
.h74_c00002{height:183.600000px;}
.h7b_c00002{height:251.280000px;}
.h7a_c00002{height:267.840000px;}
.h70_c00002{height:311.040000px;}
.h60_c00002{height:311.760000px;}
.h69_c00002{height:361.080000px;}
.h77_c00002{height:379.080000px;}
.h61_c00002{height:390.240000px;}
.h73_c00002{height:686.880000px;}
.h6f_c00002{height:761.040000px;}
.h6a_c00002{height:949.680000px;}
.h62_c00002{height:964.800000px;}
.h66_c00002{height:1013.400000px;}
.h2_c00002{height:1201.365000px;}
.h53_c00002{height:1261.500000px;}
.h0_c00002{height:1262.835000px;}
.h1_c00002{height:1263.000000px;}
.w40_c00002{width:8.340000px;}
.w42_c00002{width:16.680000px;}
.w3_c00002{width:25.020000px;}
.w52_c00002{width:52.560000px;}
.w5d_c00002{width:54.000000px;}
.w48_c00002{width:73.800000px;}
.w5b_c00002{width:82.440000px;}
.w62_c00002{width:86.760000px;}
.w44_c00002{width:88.560000px;}
.w5e_c00002{width:91.080000px;}
.w59_c00002{width:92.520000px;}
.w56_c00002{width:95.040000px;}
.w4b_c00002{width:105.120000px;}
.w4f_c00002{width:110.160000px;}
.w4c_c00002{width:116.280000px;}
.w51_c00002{width:118.440000px;}
.w5f_c00002{width:120.240000px;}
.w67_c00002{width:124.560000px;}
.w4a_c00002{width:124.920000px;}
.w5a_c00002{width:126.720000px;}
.w58_c00002{width:127.080000px;}
.w5c_c00002{width:127.800000px;}
.w74_c00002{width:128.880000px;}
.w63_c00002{width:131.760000px;}
.w6d_c00002{width:135.000000px;}
.w57_c00002{width:137.160000px;}
.w43_c00002{width:137.520000px;}
.w55_c00002{width:139.680000px;}
.w60_c00002{width:142.920000px;}
.w64_c00002{width:145.800000px;}
.w4d_c00002{width:148.320000px;}
.w61_c00002{width:151.200000px;}
.w75_c00002{width:154.080000px;}
.w54_c00002{width:156.240000px;}
.w69_c00002{width:158.760000px;}
.w2e_c00002{width:167.760000px;}
.wd_c00002{width:168.840000px;}
.w49_c00002{width:169.200000px;}
.w53_c00002{width:169.560000px;}
.w6a_c00002{width:177.840000px;}
.w45_c00002{width:180.000000px;}
.w76_c00002{width:184.680000px;}
.w47_c00002{width:187.920000px;}
.w4e_c00002{width:188.280000px;}
.w78_c00002{width:200.520000px;}
.w6f_c00002{width:203.760000px;}
.w66_c00002{width:211.680000px;}
.w68_c00002{width:212.040000px;}
.w7a_c00002{width:218.520000px;}
.w70_c00002{width:222.480000px;}
.w50_c00002{width:228.600000px;}
.w79_c00002{width:232.560000px;}
.w72_c00002{width:233.280000px;}
.w23_c00002{width:234.720000px;}
.w46_c00002{width:237.240000px;}
.w73_c00002{width:243.720000px;}
.w6c_c00002{width:244.080000px;}
.w27_c00002{width:249.840000px;}
.w38_c00002{width:259.560000px;}
.w77_c00002{width:273.240000px;}
.w6b_c00002{width:275.400000px;}
.w1e_c00002{width:276.840000px;}
.w22_c00002{width:277.560000px;}
.w65_c00002{width:278.280000px;}
.w71_c00002{width:286.200000px;}
.w6e_c00002{width:297.000000px;}
.w1a_c00002{width:297.360000px;}
.w24_c00002{width:303.840000px;}
.w21_c00002{width:321.480000px;}
.w41_c00002{width:323.280000px;}
.w37_c00002{width:331.920000px;}
.w3c_c00002{width:336.600000px;}
.w13_c00002{width:338.400000px;}
.w33_c00002{width:350.640000px;}
.w15_c00002{width:357.480000px;}
.w28_c00002{width:371.160000px;}
.w2d_c00002{width:374.400000px;}
.w1c_c00002{width:381.240000px;}
.w3d_c00002{width:385.920000px;}
.w1b_c00002{width:401.400000px;}
.w12_c00002{width:403.920000px;}
.w20_c00002{width:410.400000px;}
.w1f_c00002{width:411.480000px;}
.wb_c00002{width:421.560000px;}
.w3b_c00002{width:438.480000px;}
.w17_c00002{width:448.560000px;}
.w19_c00002{width:467.280000px;}
.we_c00002{width:474.840000px;}
.wc_c00002{width:489.960000px;}
.wf_c00002{width:492.840000px;}
.wa_c00002{width:493.200000px;}
.w39_c00002{width:501.840000px;}
.w10_c00002{width:531.360000px;}
.w1d_c00002{width:543.960000px;}
.w6_c00002{width:546.840000px;}
.w14_c00002{width:548.280000px;}
.w7_c00002{width:548.640000px;}
.w35_c00002{width:563.400000px;}
.w16_c00002{width:564.480000px;}
.w26_c00002{width:574.920000px;}
.w3a_c00002{width:593.280000px;}
.w8_c00002{width:604.080000px;}
.w36_c00002{width:621.000000px;}
.w2b_c00002{width:625.320000px;}
.w2c_c00002{width:627.480000px;}
.w9_c00002{width:635.400000px;}
.w5_c00002{width:642.600000px;}
.w34_c00002{width:642.960000px;}
.w25_c00002{width:643.680000px;}
.w4_c00002{width:644.040000px;}
.w2a_c00002{width:644.400000px;}
.w11_c00002{width:646.560000px;}
.w18_c00002{width:654.840000px;}
.w2f_c00002{width:658.800000px;}
.w30_c00002{width:659.160000px;}
.w29_c00002{width:735.480000px;}
.w32_c00002{width:744.840000px;}
.w31_c00002{width:760.320000px;}
.w2_c00002{width:863.955000px;}
.w3f_c00002{width:892.500000px;}
.w3e_c00002{width:892.920000px;}
.w0_c00002{width:892.935000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
.x16c_c00002{left:3.240150px;}
.x1a3_c00002{left:5.609850px;}
.x1b0_c00002{left:7.325700px;}
.xe7_c00002{left:9.363900px;}
.x205_c00002{left:10.560150px;}
.x1c1_c00002{left:11.805750px;}
.x197_c00002{left:12.963750px;}
.x1_c00002{left:14.490000px;}
.x9e_c00002{left:17.253900px;}
.x1a7_c00002{left:19.212450px;}
.x1b1_c00002{left:21.359700px;}
.x18b_c00002{left:22.713300px;}
.x1b9_c00002{left:23.813100px;}
.x1b6_c00002{left:26.435250px;}
.x1da_c00002{left:27.915000px;}
.x1ef_c00002{left:29.578650px;}
.x1e3_c00002{left:30.883950px;}
.x1e6_c00002{left:32.549100px;}
.x1d6_c00002{left:34.459950px;}
.x11c_c00002{left:37.174800px;}
.x1e5_c00002{left:39.223650px;}
.x206_c00002{left:40.446300px;}
.x11d_c00002{left:41.749650px;}
.x210_c00002{left:42.914550px;}
.x1ea_c00002{left:44.218500px;}
.x1d5_c00002{left:45.769350px;}
.x207_c00002{left:46.918800px;}
.x1d7_c00002{left:47.959650px;}
.x1ff_c00002{left:49.270500px;}
.x1b5_c00002{left:50.571750px;}
.x1ba_c00002{left:52.330650px;}
.x1fa_c00002{left:53.758050px;}
.x201_c00002{left:55.258350px;}
.x1dd_c00002{left:56.272500px;}
.x1f3_c00002{left:57.929250px;}
.x196_c00002{left:60.151500px;}
.x1f1_c00002{left:62.068200px;}
.x1f7_c00002{left:63.342900px;}
.x1f5_c00002{left:65.052750px;}
.x1f8_c00002{left:66.658200px;}
.x1f2_c00002{left:67.933050px;}
.x1d1_c00002{left:69.210000px;}
.x1a4_c00002{left:70.954950px;}
.x1ed_c00002{left:72.552900px;}
.x1eb_c00002{left:74.203050px;}
.x16d_c00002{left:75.261000px;}
.x1f9_c00002{left:76.724250px;}
.x11a_c00002{left:78.430950px;}
.x1f0_c00002{left:79.587300px;}
.x203_c00002{left:80.614950px;}
.x1ec_c00002{left:81.702000px;}
.x1e9_c00002{left:83.382150px;}
.x1cd_c00002{left:84.491400px;}
.x119_c00002{left:86.514000px;}
.x1e8_c00002{left:87.537600px;}
.x176_c00002{left:88.644600px;}
.x1f6_c00002{left:90.462000px;}
.x1e4_c00002{left:91.722300px;}
.x200_c00002{left:93.260700px;}
.xff_c00002{left:94.766550px;}
.x1ee_c00002{left:95.892600px;}
.x1fb_c00002{left:97.091850px;}
.x1a1_c00002{left:98.160300px;}
.x1b7_c00002{left:99.221100px;}
.x1dc_c00002{left:100.317300px;}
.x1e7_c00002{left:101.727450px;}
.x1b8_c00002{left:103.716300px;}
.x202_c00002{left:104.949000px;}
.x1c2_c00002{left:106.342500px;}
.x1ce_c00002{left:107.710650px;}
.x20d_c00002{left:108.862650px;}
.x1f4_c00002{left:110.455950px;}
.x20a_c00002{left:111.747000px;}
.x2_c00002{left:113.040150px;}
.x2c_c00002{left:114.962220px;}
.x20b_c00002{left:116.872200px;}
.x7d_c00002{left:118.034850px;}
.x1e0_c00002{left:119.610000px;}
.x1fc_c00002{left:120.865500px;}
.x1cc_c00002{left:122.040150px;}
.x5c_c00002{left:123.048000px;}
.x118_c00002{left:124.290000px;}
.x100_c00002{left:126.090000px;}
.xa0_c00002{left:127.170000px;}
.x13c_c00002{left:128.864850px;}
.x1d0_c00002{left:130.050000px;}
.x1a5_c00002{left:131.130000px;}
.x1e_c00002{left:133.034550px;}
.x20e_c00002{left:134.187150px;}
.x16b_c00002{left:135.867150px;}
.x4f_c00002{left:137.629050px;}
.x19b_c00002{left:139.013250px;}
.xa9_c00002{left:140.037600px;}
.x215_c00002{left:141.047550px;}
.x17c_c00002{left:142.087650px;}
.x137_c00002{left:143.410050px;}
.x1d8_c00002{left:144.738900px;}
.xe9_c00002{left:146.083800px;}
.xe_c00002{left:147.223350px;}
.x135_c00002{left:148.995150px;}
.xe6_c00002{left:150.527400px;}
.x1d_c00002{left:152.204550px;}
.x9c_c00002{left:154.043700px;}
.xbb_c00002{left:155.533800px;}
.x117_c00002{left:157.681650px;}
.x83_c00002{left:158.878800px;}
.x3_c00002{left:160.541400px;}
.x43_c00002{left:161.999250px;}
.x4b_c00002{left:163.794450px;}
.x84_c00002{left:165.262950px;}
.x8b_c00002{left:166.344300px;}
.x1c4_c00002{left:167.705250px;}
.x175_c00002{left:168.862800px;}
.xa1_c00002{left:170.775000px;}
.xaf_c00002{left:172.197150px;}
.x187_c00002{left:174.023100px;}
.x101_c00002{left:175.277100px;}
.xea_c00002{left:176.325750px;}
.x44_c00002{left:178.019100px;}
.x153_c00002{left:179.728950px;}
.x88_c00002{left:181.348800px;}
.x15c_c00002{left:183.179100px;}
.x190_c00002{left:184.263000px;}
.x164_c00002{left:185.563050px;}
.x50_c00002{left:186.588150px;}
.x21c_c00002{left:187.844250px;}
.xf_c00002{left:188.906550px;}
.x133_c00002{left:190.542900px;}
.x180_c00002{left:191.921250px;}
.x5a_c00002{left:193.049250px;}
.x12_c00002{left:194.696400px;}
.x19f_c00002{left:196.702200px;}
.x5b_c00002{left:198.053100px;}
.x159_c00002{left:199.080000px;}
.x45_c00002{left:200.236050px;}
.x1a0_c00002{left:201.372150px;}
.x33_c00002{left:202.757820px;}
.x40_c00002{left:204.028500px;}
.xfe_c00002{left:205.290000px;}
.x174_c00002{left:206.396100px;}
.x212_c00002{left:207.400650px;}
.xf8_c00002{left:208.480950px;}
.x218_c00002{left:209.482500px;}
.x89_c00002{left:210.492900px;}
.x1cf_c00002{left:211.547250px;}
.xf9_c00002{left:212.650650px;}
.x19c_c00002{left:213.846750px;}
.x24_c00002{left:215.062500px;}
.x1cb_c00002{left:216.178350px;}
.x65_c00002{left:217.212450px;}
.xc2_c00002{left:219.273600px;}
.x219_c00002{left:220.275150px;}
.x68_c00002{left:221.397150px;}
.xd3_c00002{left:223.054350px;}
.x1df_c00002{left:224.100900px;}
.x66_c00002{left:225.551850px;}
.x9d_c00002{left:227.014950px;}
.x112_c00002{left:228.076200px;}
.xb0_c00002{left:229.735050px;}
.x15b_c00002{left:231.107700px;}
.x108_c00002{left:232.276650px;}
.x4_c00002{left:233.512650px;}
.x171_c00002{left:235.357950px;}
.x10_c00002{left:236.410050px;}
.xaa_c00002{left:238.114050px;}
.xbc_c00002{left:240.193650px;}
.xc8_c00002{left:241.406250px;}
.x14c_c00002{left:242.444850px;}
.x20c_c00002{left:243.494700px;}
.x131_c00002{left:244.675050px;}
.x13_c00002{left:245.712600px;}
.x211_c00002{left:246.814800px;}
.xeb_c00002{left:248.095050px;}
.xd6_c00002{left:249.671550px;}
.x170_c00002{left:251.061750px;}
.x94_c00002{left:252.220050px;}
.x167_c00002{left:253.683450px;}
.xd5_c00002{left:255.160050px;}
.x13a_c00002{left:256.318350px;}
.x38_c00002{left:257.632740px;}
.x147_c00002{left:259.078500px;}
.x17a_c00002{left:260.134950px;}
.x5_c00002{left:261.916650px;}
.xab_c00002{left:263.088450px;}
.x165_c00002{left:264.789900px;}
.x8e_c00002{left:266.511750px;}
.x130_c00002{left:267.712650px;}
.xd9_c00002{left:268.878300px;}
.x191_c00002{left:269.904450px;}
.x46_c00002{left:271.080000px;}
.xe2_c00002{left:272.527950px;}
.x103_c00002{left:274.012200px;}
.x1d9_c00002{left:275.091450px;}
.x109_c00002{left:276.093000px;}
.x11_c00002{left:278.077800px;}
.x12b_c00002{left:279.251250px;}
.x51_c00002{left:280.370700px;}
.x186_c00002{left:281.494950px;}
.x2d_c00002{left:282.866850px;}
.x69_c00002{left:284.710350px;}
.x1a2_c00002{left:285.930000px;}
.xca_c00002{left:287.170500px;}
.xba_c00002{left:288.943350px;}
.x9a_c00002{left:290.986500px;}
.xfc_c00002{left:292.299000px;}
.x72_c00002{left:293.349600px;}
.x34_c00002{left:294.990600px;}
.xa2_c00002{left:296.441850px;}
.x136_c00002{left:297.714900px;}
.x179_c00002{left:299.085150px;}
.xcb_c00002{left:300.166200px;}
.xe3_c00002{left:301.786350px;}
.x57_c00002{left:303.008400px;}
.x126_c00002{left:304.242150px;}
.x14d_c00002{left:305.453250px;}
.x1a6_c00002{left:306.675600px;}
.xb2_c00002{left:307.751550px;}
.x20f_c00002{left:308.847600px;}
.x75_c00002{left:309.847800px;}
.x139_c00002{left:311.072700px;}
.x58_c00002{left:313.016250px;}
.x1f_c00002{left:314.930100px;}
.xdb_c00002{left:316.156200px;}
.x13e_c00002{left:317.470050px;}
.x20_c00002{left:319.291200px;}
.x185_c00002{left:320.430450px;}
.xc1_c00002{left:321.881400px;}
.x79_c00002{left:323.481000px;}
.x169_c00002{left:324.536550px;}
.x178_c00002{left:325.545450px;}
.x13f_c00002{left:327.357750px;}
.x181_c00002{left:328.778400px;}
.xac_c00002{left:329.940300px;}
.x14_c00002{left:331.330500px;}
.x148_c00002{left:333.306150px;}
.xf2_c00002{left:334.696950px;}
.x99_c00002{left:336.063300px;}
.x12c_c00002{left:337.227150px;}
.x21d_c00002{left:338.266050px;}
.x10f_c00002{left:339.346800px;}
.xce_c00002{left:341.466750px;}
.x1ca_c00002{left:342.531000px;}
.xda_c00002{left:343.693650px;}
.x59_c00002{left:344.965650px;}
.x27_c00002{left:346.193850px;}
.x140_c00002{left:347.337600px;}
.xa3_c00002{left:348.613350px;}
.x19_c00002{left:349.885950px;}
.x52_c00002{left:351.379800px;}
.xdc_c00002{left:353.118900px;}
.x17d_c00002{left:354.196650px;}
.x1d4_c00002{left:355.336350px;}
.x10a_c00002{left:356.530500px;}
.x39_c00002{left:358.172550px;}
.x1c5_c00002{left:359.313750px;}
.x5e_c00002{left:360.524700px;}
.x198_c00002{left:361.918200px;}
.x35_c00002{left:363.231450px;}
.x105_c00002{left:364.897650px;}
.xcf_c00002{left:366.441300px;}
.x160_c00002{left:367.749000px;}
.x7a_c00002{left:368.881050px;}
.x1ac_c00002{left:370.075950px;}
.xcd_c00002{left:371.104200px;}
.x85_c00002{left:372.182700px;}
.x1ae_c00002{left:373.208100px;}
.x2e_c00002{left:374.394600px;}
.x173_c00002{left:375.476100px;}
.x1a_c00002{left:376.510650px;}
.x157_c00002{left:377.881050px;}
.xae_c00002{left:378.935700px;}
.x8a_c00002{left:380.859750px;}
.x76_c00002{left:382.883700px;}
.x13d_c00002{left:384.150900px;}
.x28_c00002{left:385.208100px;}
.x3a_c00002{left:386.589150px;}
.xb6_c00002{left:388.006350px;}
.xb1_c00002{left:389.344500px;}
.x6a_c00002{left:390.501300px;}
.x129_c00002{left:392.172750px;}
.x6_c00002{left:393.501000px;}
.xad_c00002{left:395.441100px;}
.x5d_c00002{left:397.147650px;}
.x12d_c00002{left:398.228400px;}
.x102_c00002{left:399.379050px;}
.x67_c00002{left:401.078550px;}
.x12e_c00002{left:402.242400px;}
.x1bb_c00002{left:403.611600px;}
.x11e_c00002{left:404.879400px;}
.x11b_c00002{left:406.326300px;}
.x8f_c00002{left:407.923800px;}
.x41_c00002{left:409.224300px;}
.x73_c00002{left:410.311950px;}
.x125_c00002{left:411.365850px;}
.xec_c00002{left:413.238900px;}
.xc_c00002{left:414.695400px;}
.x1b4_c00002{left:415.851150px;}
.xb3_c00002{left:416.948400px;}
.xd7_c00002{left:418.352850px;}
.x7_c00002{left:420.125550px;}
.x12a_c00002{left:421.251000px;}
.xb7_c00002{left:423.015750px;}
.x1c3_c00002{left:424.361850px;}
.x5f_c00002{left:425.503800px;}
.x56_c00002{left:426.999000px;}
.x113_c00002{left:428.472600px;}
.x92_c00002{left:429.788100px;}
.x2b_c00002{left:431.715150px;}
.x209_c00002{left:432.781500px;}
.x18d_c00002{left:433.897650px;}
.x48_c00002{left:435.440550px;}
.x47_c00002{left:437.145150px;}
.x95_c00002{left:438.685950px;}
.x11f_c00002{left:440.127150px;}
.x18e_c00002{left:441.712200px;}
.x9f_c00002{left:442.819200px;}
.xfd_c00002{left:444.699900px;}
.xa8_c00002{left:445.932450px;}
.x15d_c00002{left:447.671250px;}
.x53_c00002{left:448.744200px;}
.x1c6_c00002{left:449.901450px;}
.x9b_c00002{left:451.660800px;}
.x132_c00002{left:453.018000px;}
.x166_c00002{left:454.384350px;}
.xb4_c00002{left:456.112800px;}
.xd_c00002{left:457.678050px;}
.x199_c00002{left:458.936550px;}
.x90_c00002{left:459.942900px;}
.xdd_c00002{left:461.719050px;}
.x60_c00002{left:462.892050px;}
.x6b_c00002{left:464.644050px;}
.x128_c00002{left:466.104150px;}
.x21a_c00002{left:467.132400px;}
.x36_c00002{left:468.259650px;}
.x21b_c00002{left:469.367100px;}
.x141_c00002{left:470.373000px;}
.x195_c00002{left:471.577950px;}
.x150_c00002{left:473.108700px;}
.x29_c00002{left:474.495450px;}
.x3b_c00002{left:475.876350px;}
.x16f_c00002{left:477.297000px;}
.x96_c00002{left:478.332600px;}
.x172_c00002{left:480.196650px;}
.x213_c00002{left:481.216500px;}
.x49_c00002{left:482.280300px;}
.x10b_c00002{left:483.495450px;}
.x7e_c00002{left:484.938300px;}
.x1bd_c00002{left:486.472350px;}
.x14b_c00002{left:487.498800px;}
.x143_c00002{left:488.980950px;}
.x177_c00002{left:490.142100px;}
.xd8_c00002{left:491.371950px;}
.x4e_c00002{left:492.672300px;}
.x216_c00002{left:493.718700px;}
.x21_c00002{left:494.729700px;}
.xc7_c00002{left:496.551600px;}
.x14a_c00002{left:497.865300px;}
.xef_c00002{left:499.097850px;}
.x134_c00002{left:500.276700px;}
.x106_c00002{left:501.947700px;}
.xbe_c00002{left:503.087100px;}
.x12f_c00002{left:505.080000px;}
.x4a_c00002{left:506.098350px;}
.x61_c00002{left:507.604950px;}
.x115_c00002{left:508.690350px;}
.x42_c00002{left:510.238350px;}
.xd1_c00002{left:511.335600px;}
.xb8_c00002{left:512.626500px;}
.x54_c00002{left:513.723300px;}
.x188_c00002{left:514.850850px;}
.x182_c00002{left:516.214950px;}
.x2a_c00002{left:517.236000px;}
.x120_c00002{left:518.718000px;}
.xa4_c00002{left:519.781050px;}
.x1c9_c00002{left:520.913100px;}
.xde_c00002{left:522.209850px;}
.x7f_c00002{left:524.117100px;}
.xb9_c00002{left:525.925800px;}
.x3c_c00002{left:527.634900px;}
.xd2_c00002{left:529.597050px;}
.x17e_c00002{left:530.846250px;}
.xe4_c00002{left:532.299300px;}
.x2f_c00002{left:533.899650px;}
.x80_c00002{left:535.040850px;}
.x149_c00002{left:536.596500px;}
.x17_c00002{left:537.972300px;}
.x62_c00002{left:538.998750px;}
.x7b_c00002{left:540.225300px;}
.x1af_c00002{left:542.099100px;}
.x86_c00002{left:543.110250px;}
.x25_c00002{left:544.175550px;}
.x158_c00002{left:545.422800px;}
.x16e_c00002{left:547.373250px;}
.x8_c00002{left:548.613600px;}
.x93_c00002{left:550.067850px;}
.x15a_c00002{left:551.182650px;}
.x122_c00002{left:552.280200px;}
.x114_c00002{left:554.277900px;}
.x6c_c00002{left:555.480900px;}
.x77_c00002{left:557.023350px;}
.x22_c00002{left:558.737250px;}
.x81_c00002{left:560.015250px;}
.xf5_c00002{left:561.556950px;}
.xc9_c00002{left:563.024400px;}
.x1c7_c00002{left:564.031200px;}
.x64_c00002{left:565.056150px;}
.x19a_c00002{left:566.377800px;}
.x1aa_c00002{left:567.519300px;}
.x18_c00002{left:568.762500px;}
.x145_c00002{left:570.460350px;}
.x3d_c00002{left:572.188050px;}
.x30_c00002{left:573.669750px;}
.x23_c00002{left:575.525700px;}
.x1c0_c00002{left:576.893250px;}
.x10c_c00002{left:578.062500px;}
.x184_c00002{left:579.094500px;}
.xcc_c00002{left:580.274400px;}
.x15e_c00002{left:581.575500px;}
.x1b_c00002{left:583.010700px;}
.xf0_c00002{left:584.146650px;}
.x7c_c00002{left:585.625200px;}
.x144_c00002{left:587.142300px;}
.x192_c00002{left:588.347850px;}
.x10d_c00002{left:589.398600px;}
.x1d3_c00002{left:590.537850px;}
.x9_c00002{left:591.596250px;}
.x151_c00002{left:593.096550px;}
.x163_c00002{left:594.896550px;}
.x63_c00002{left:595.986300px;}
.x15_c00002{left:597.769050px;}
.x13b_c00002{left:599.106750px;}
.x1d2_c00002{left:600.129600px;}
.xbf_c00002{left:601.576950px;}
.x14f_c00002{left:603.443100px;}
.x55_c00002{left:605.002500px;}
.x1be_c00002{left:606.399450px;}
.x16_c00002{left:607.534050px;}
.x17b_c00002{left:608.803050px;}
.xa6_c00002{left:610.183950px;}
.x168_c00002{left:611.382150px;}
.x37_c00002{left:613.029750px;}
.x26_c00002{left:614.274150px;}
.x138_c00002{left:615.424800px;}
.x31_c00002{left:616.437000px;}
.x1a9_c00002{left:617.467950px;}
.xf6_c00002{left:618.561750px;}
.x107_c00002{left:619.920000px;}
.x116_c00002{left:621.204600px;}
.x1ab_c00002{left:622.220250px;}
.x74_c00002{left:623.839650px;}
.xc5_c00002{left:625.205850px;}
.xf3_c00002{left:626.689050px;}
.x1c_c00002{left:628.333650px;}
.x1bc_c00002{left:630.180150px;}
.x6d_c00002{left:631.362300px;}
.x156_c00002{left:632.798250px;}
.x14e_c00002{left:634.006350px;}
.xf7_c00002{left:635.067150px;}
.x10e_c00002{left:636.395850px;}
.xf1_c00002{left:638.363100px;}
.xa7_c00002{left:640.153200px;}
.xc0_c00002{left:641.485050px;}
.x104_c00002{left:642.594000px;}
.x1fe_c00002{left:643.854150px;}
.x4c_c00002{left:645.022650px;}
.x82_c00002{left:646.109550px;}
.x121_c00002{left:647.459100px;}
.xfa_c00002{left:648.895650px;}
.xc3_c00002{left:650.436000px;}
.x162_c00002{left:651.672300px;}
.x6f_c00002{left:653.638950px;}
.xe8_c00002{left:654.804600px;}
.x142_c00002{left:656.886900px;}
.x1c8_c00002{left:657.956100px;}
.x1bf_c00002{left:659.144550px;}
.xa5_c00002{left:660.147600px;}
.x18f_c00002{left:661.152450px;}
.x18a_c00002{left:662.984550px;}
.x19e_c00002{left:664.313850px;}
.xe1_c00002{left:666.276450px;}
.xf4_c00002{left:667.692600px;}
.x189_c00002{left:669.270600px;}
.x127_c00002{left:670.422750px;}
.x111_c00002{left:672.191550px;}
.x70_c00002{left:673.647900px;}
.xc4_c00002{left:675.410550px;}
.xd4_c00002{left:677.401200px;}
.x87_c00002{left:678.464250px;}
.xbd_c00002{left:680.472000px;}
.x193_c00002{left:681.661350px;}
.x15f_c00002{left:683.219250px;}
.x1ad_c00002{left:684.366900px;}
.x97_c00002{left:686.213700px;}
.x152_c00002{left:687.447150px;}
.xc6_c00002{left:688.711650px;}
.xee_c00002{left:690.397050px;}
.x8c_c00002{left:691.422750px;}
.x110_c00002{left:693.366900px;}
.x183_c00002{left:694.540950px;}
.x8d_c00002{left:695.750550px;}
.x161_c00002{left:696.894300px;}
.x1b3_c00002{left:698.139450px;}
.x6e_c00002{left:699.685500px;}
.x214_c00002{left:700.959600px;}
.xdf_c00002{left:702.102450px;}
.x194_c00002{left:703.769550px;}
.x1e2_c00002{left:705.409050px;}
.xa_c00002{left:706.573650px;}
.x146_c00002{left:708.368850px;}
.x71_c00002{left:709.467000px;}
.x1b2_c00002{left:711.225600px;}
.xfb_c00002{left:712.338150px;}
.x4d_c00002{left:713.401200px;}
.x123_c00002{left:715.110000px;}
.x3e_c00002{left:716.585400px;}
.x91_c00002{left:718.440750px;}
.xed_c00002{left:720.366600px;}
.x124_c00002{left:722.382600px;}
.xb5_c00002{left:723.390450px;}
.x154_c00002{left:724.605750px;}
.x98_c00002{left:725.860500px;}
.x18c_c00002{left:727.057200px;}
.x1db_c00002{left:728.523450px;}
.x155_c00002{left:729.742950px;}
.x16a_c00002{left:731.284350px;}
.xe0_c00002{left:732.898650px;}
.xe5_c00002{left:734.565750px;}
.x208_c00002{left:736.386150px;}
.x19d_c00002{left:737.394600px;}
.x1a8_c00002{left:738.720000px;}
.x17f_c00002{left:741.225600px;}
.xd0_c00002{left:742.890000px;}
.xb_c00002{left:746.220300px;}
.x32_c00002{left:748.464900px;}
.x78_c00002{left:750.390000px;}
.x217_c00002{left:751.508100px;}
.x1fd_c00002{left:755.393850px;}
.x3f_c00002{left:759.914612px;}
.x21e_c00002{left:761.070600px;}
.x1e1_c00002{left:768.255000px;}
.x204_c00002{left:773.370000px;}
.x1de_c00002{left:776.595000px;}
@media print{
.v4_c00002{vertical-align:-27.707270pt;}
.v8_c00002{vertical-align:-24.320000pt;}
.v5_c00002{vertical-align:-21.760000pt;}
.va_c00002{vertical-align:-16.640000pt;}
.v6_c00002{vertical-align:-12.801280pt;}
.v1_c00002{vertical-align:-10.240000pt;}
.vb_c00002{vertical-align:-7.680000pt;}
.v7_c00002{vertical-align:-0.960000pt;}
.v0_c00002{vertical-align:0.000000pt;}
.v9_c00002{vertical-align:16.640000pt;}
.v2_c00002{vertical-align:21.760000pt;}
.v3_c00002{vertical-align:27.707270pt;}
.ls448_c00002{letter-spacing:-10.666667pt;}
.ls3d1_c00002{letter-spacing:-0.443520pt;}
.ls56_c00002{letter-spacing:-0.164528pt;}
.ls37_c00002{letter-spacing:-0.159616pt;}
.ls54a_c00002{letter-spacing:-0.153600pt;}
.ls3fa_c00002{letter-spacing:-0.012800pt;}
.ls3f8_c00002{letter-spacing:-0.006400pt;}
.ls22_c00002{letter-spacing:0.000000pt;}
.ls3f7_c00002{letter-spacing:0.006400pt;}
.ls47f_c00002{letter-spacing:0.010667pt;}
.ls3f9_c00002{letter-spacing:0.012800pt;}
.ls672_c00002{letter-spacing:0.019200pt;}
.lsdd_c00002{letter-spacing:0.019413pt;}
.ls47a_c00002{letter-spacing:0.020480pt;}
.ls3d9_c00002{letter-spacing:0.024213pt;}
.ls279_c00002{letter-spacing:0.025600pt;}
.ls17b_c00002{letter-spacing:0.025813pt;}
.ls245_c00002{letter-spacing:0.032000pt;}
.ls684_c00002{letter-spacing:0.033067pt;}
.ls1a0_c00002{letter-spacing:0.035947pt;}
.ls788_c00002{letter-spacing:0.042133pt;}
.ls435_c00002{letter-spacing:0.042347pt;}
.ls3ca_c00002{letter-spacing:0.042748pt;}
.ls179_c00002{letter-spacing:0.044267pt;}
.ls72_c00002{letter-spacing:0.045013pt;}
.ls70b_c00002{letter-spacing:0.046613pt;}
.ls3be_c00002{letter-spacing:0.047147pt;}
.ls45a_c00002{letter-spacing:0.053867pt;}
.ls3c8_c00002{letter-spacing:0.056998pt;}
.ls73a_c00002{letter-spacing:0.058240pt;}
.ls74c_c00002{letter-spacing:0.059392pt;}
.ls776_c00002{letter-spacing:0.061220pt;}
.ls3bf_c00002{letter-spacing:0.063147pt;}
.ls206_c00002{letter-spacing:0.063467pt;}
.ls6ee_c00002{letter-spacing:0.064000pt;}
.ls637_c00002{letter-spacing:0.067733pt;}
.ls74b_c00002{letter-spacing:0.070528pt;}
.ls3c6_c00002{letter-spacing:0.071247pt;}
.ls17a_c00002{letter-spacing:0.073280pt;}
.ls1dd_c00002{letter-spacing:0.074240pt;}
.ls4c2_c00002{letter-spacing:0.075947pt;}
.ls480_c00002{letter-spacing:0.079680pt;}
.ls47c_c00002{letter-spacing:0.085013pt;}
.ls3c7_c00002{letter-spacing:0.085497pt;}
.lsbe_c00002{letter-spacing:0.087680pt;}
.ls238_c00002{letter-spacing:0.093547pt;}
.ls78d_c00002{letter-spacing:0.095573pt;}
.ls69c_c00002{letter-spacing:0.096000pt;}
.ls3cb_c00002{letter-spacing:0.099746pt;}
.ls421_c00002{letter-spacing:0.102400pt;}
.ls73_c00002{letter-spacing:0.102613pt;}
.ls53a_c00002{letter-spacing:0.104496pt;}
.ls54d_c00002{letter-spacing:0.105600pt;}
.ls294_c00002{letter-spacing:0.105813pt;}
.ls375_c00002{letter-spacing:0.106667pt;}
.ls242_c00002{letter-spacing:0.108480pt;}
.ls27a_c00002{letter-spacing:0.111360pt;}
.ls2fb_c00002{letter-spacing:0.114347pt;}
.ls77a_c00002{letter-spacing:0.114987pt;}
.ls2c0_c00002{letter-spacing:0.116800pt;}
.ls3b3_c00002{letter-spacing:0.117013pt;}
.ls86_c00002{letter-spacing:0.117547pt;}
.ls15a_c00002{letter-spacing:0.118080pt;}
.ls516_c00002{letter-spacing:0.118272pt;}
.ls764_c00002{letter-spacing:0.120153pt;}
.ls6af_c00002{letter-spacing:0.120533pt;}
.ls73f_c00002{letter-spacing:0.120747pt;}
.ls310_c00002{letter-spacing:0.121164pt;}
.ls5_c00002{letter-spacing:0.121714pt;}
.ls437_c00002{letter-spacing:0.121813pt;}
.ls51c_c00002{letter-spacing:0.121912pt;}
.ls283_c00002{letter-spacing:0.126080pt;}
.ls539_c00002{letter-spacing:0.126266pt;}
.ls43_c00002{letter-spacing:0.128000pt;}
.ls7ae_c00002{letter-spacing:0.129920pt;}
.ls37c_c00002{letter-spacing:0.131939pt;}
.ls51d_c00002{letter-spacing:0.139392pt;}
.ls554_c00002{letter-spacing:0.140267pt;}
.ls54c_c00002{letter-spacing:0.141013pt;}
.ls78e_c00002{letter-spacing:0.141056pt;}
.ls550_c00002{letter-spacing:0.141547pt;}
.ls7b3_c00002{letter-spacing:0.142080pt;}
.ls3c9_c00002{letter-spacing:0.142495pt;}
.ls50d_c00002{letter-spacing:0.143682pt;}
.ls760_c00002{letter-spacing:0.144768pt;}
.ls50f_c00002{letter-spacing:0.145353pt;}
.ls50c_c00002{letter-spacing:0.145903pt;}
.ls73e_c00002{letter-spacing:0.149223pt;}
.ls460_c00002{letter-spacing:0.149547pt;}
.ls74a_c00002{letter-spacing:0.152192pt;}
.ls32e_c00002{letter-spacing:0.153600pt;}
.ls48d_c00002{letter-spacing:0.156267pt;}
.ls528_c00002{letter-spacing:0.156744pt;}
.ls3d7_c00002{letter-spacing:0.156876pt;}
.ls6ae_c00002{letter-spacing:0.159467pt;}
.ls773_c00002{letter-spacing:0.161024pt;}
.ls507_c00002{letter-spacing:0.162880pt;}
.ls7c4_c00002{letter-spacing:0.163328pt;}
.ls508_c00002{letter-spacing:0.163413pt;}
.ls53b_c00002{letter-spacing:0.163947pt;}
.ls364_c00002{letter-spacing:0.164800pt;}
.lsb8_c00002{letter-spacing:0.165013pt;}
.ls551_c00002{letter-spacing:0.165120pt;}
.ls523_c00002{letter-spacing:0.165452pt;}
.ls7b1_c00002{letter-spacing:0.165760pt;}
.ls2b3_c00002{letter-spacing:0.166400pt;}
.ls51b_c00002{letter-spacing:0.169806pt;}
.ls762_c00002{letter-spacing:0.170861pt;}
.ls578_c00002{letter-spacing:0.171947pt;}
.ls456_c00002{letter-spacing:0.173013pt;}
.lsb7_c00002{letter-spacing:0.173547pt;}
.ls73d_c00002{letter-spacing:0.177387pt;}
.ls9b_c00002{letter-spacing:0.177813pt;}
.ls8e_c00002{letter-spacing:0.177920pt;}
.ls777_c00002{letter-spacing:0.178176pt;}
.ls705_c00002{letter-spacing:0.178347pt;}
.ls271_c00002{letter-spacing:0.179413pt;}
.ls1f_c00002{letter-spacing:0.179968pt;}
.ls775_c00002{letter-spacing:0.183660pt;}
.ls7b9_c00002{letter-spacing:0.184704pt;}
.ls1e_c00002{letter-spacing:0.185507pt;}
.ls4d3_c00002{letter-spacing:0.188480pt;}
.ls405_c00002{letter-spacing:0.188928pt;}
.ls1b_c00002{letter-spacing:0.189440pt;}
.ls530_c00002{letter-spacing:0.190080pt;}
.ls4d4_c00002{letter-spacing:0.193067pt;}
.ls53e_c00002{letter-spacing:0.194171pt;}
.ls40f_c00002{letter-spacing:0.194176pt;}
.ls6c5_c00002{letter-spacing:0.195200pt;}
.ls758_c00002{letter-spacing:0.195270pt;}
.ls517_c00002{letter-spacing:0.195930pt;}
.ls6ab_c00002{letter-spacing:0.196800pt;}
.ls55a_c00002{letter-spacing:0.198528pt;}
.ls3c1_c00002{letter-spacing:0.198613pt;}
.ls553_c00002{letter-spacing:0.199253pt;}
.ls132_c00002{letter-spacing:0.200533pt;}
.ls7c0_c00002{letter-spacing:0.203648pt;}
.ls336_c00002{letter-spacing:0.204672pt;}
.ls72e_c00002{letter-spacing:0.204800pt;}
.ls744_c00002{letter-spacing:0.205034pt;}
.ls70f_c00002{letter-spacing:0.206080pt;}
.ls6a6_c00002{letter-spacing:0.206507pt;}
.ls47e_c00002{letter-spacing:0.207040pt;}
.ls7a6_c00002{letter-spacing:0.208384pt;}
.ls1_c00002{letter-spacing:0.209920pt;}
.ls559_c00002{letter-spacing:0.211200pt;}
.lsb0_c00002{letter-spacing:0.212053pt;}
.ls1d0_c00002{letter-spacing:0.212587pt;}
.ls4c5_c00002{letter-spacing:0.213013pt;}
.ls42_c00002{letter-spacing:0.213120pt;}
.ls5c2_c00002{letter-spacing:0.213333pt;}
.ls794_c00002{letter-spacing:0.213440pt;}
.ls556_c00002{letter-spacing:0.213973pt;}
.ls795_c00002{letter-spacing:0.214080pt;}
.ls27e_c00002{letter-spacing:0.215168pt;}
.lsa9_c00002{letter-spacing:0.215424pt;}
.ls407_c00002{letter-spacing:0.216000pt;}
.lse6_c00002{letter-spacing:0.216381pt;}
.ls28a_c00002{letter-spacing:0.219413pt;}
.ls557_c00002{letter-spacing:0.219648pt;}
.ls41_c00002{letter-spacing:0.219679pt;}
.ls53c_c00002{letter-spacing:0.219899pt;}
.ls2f7_c00002{letter-spacing:0.220416pt;}
.ls3b4_c00002{letter-spacing:0.221790pt;}
.ls51f_c00002{letter-spacing:0.222054pt;}
.ls66d_c00002{letter-spacing:0.222720pt;}
.ls5e4_c00002{letter-spacing:0.223253pt;}
.ls569_c00002{letter-spacing:0.223680pt;}
.ls50a_c00002{letter-spacing:0.223872pt;}
.ls233_c00002{letter-spacing:0.224000pt;}
.ls75a_c00002{letter-spacing:0.224561pt;}
.ls7a_c00002{letter-spacing:0.225280pt;}
.ls8d3_c00002{letter-spacing:0.225664pt;}
.ls23b_c00002{letter-spacing:0.226880pt;}
.ls552_c00002{letter-spacing:0.227413pt;}
.ls7ad_c00002{letter-spacing:0.228145pt;}
.ls70_c00002{letter-spacing:0.229013pt;}
.ls789_c00002{letter-spacing:0.230187pt;}
.ls623_c00002{letter-spacing:0.230293pt;}
.ls3e6_c00002{letter-spacing:0.230912pt;}
.ls7b0_c00002{letter-spacing:0.232064pt;}
.ls767_c00002{letter-spacing:0.232128pt;}
.ls229_c00002{letter-spacing:0.233280pt;}
.ls555_c00002{letter-spacing:0.233707pt;}
.ls6f8_c00002{letter-spacing:0.234133pt;}
.ls7cb_c00002{letter-spacing:0.234324pt;}
.ls49f_c00002{letter-spacing:0.235627pt;}
.ls26_c00002{letter-spacing:0.236160pt;}
.lsbc_c00002{letter-spacing:0.236480pt;}
.ls50b_c00002{letter-spacing:0.236544pt;}
.ls757_c00002{letter-spacing:0.236800pt;}
.ls509_c00002{letter-spacing:0.237227pt;}
.ls443_c00002{letter-spacing:0.237568pt;}
.ls3e7_c00002{letter-spacing:0.238019pt;}
.ls1a2_c00002{letter-spacing:0.238613pt;}
.ls626_c00002{letter-spacing:0.239467pt;}
.ls30f_c00002{letter-spacing:0.239910pt;}
.ls3e1_c00002{letter-spacing:0.240213pt;}
.ls29f_c00002{letter-spacing:0.241408pt;}
.lsba_c00002{letter-spacing:0.242347pt;}
.ls608_c00002{letter-spacing:0.242878pt;}
.lsd0_c00002{letter-spacing:0.242880pt;}
.ls31_c00002{letter-spacing:0.243428pt;}
.ls513_c00002{letter-spacing:0.243824pt;}
.ls61a_c00002{letter-spacing:0.243947pt;}
.ls78b_c00002{letter-spacing:0.244088pt;}
.ls522_c00002{letter-spacing:0.244528pt;}
.ls481_c00002{letter-spacing:0.244608pt;}
.ls82c_c00002{letter-spacing:0.246656pt;}
.ls53d_c00002{letter-spacing:0.248178pt;}
.ls48c_c00002{letter-spacing:0.248533pt;}
.ls7dd_c00002{letter-spacing:0.248838pt;}
.lsaf_c00002{letter-spacing:0.248960pt;}
.ls19f_c00002{letter-spacing:0.251008pt;}
.ls787_c00002{letter-spacing:0.251307pt;}
.lsce_c00002{letter-spacing:0.251904pt;}
.lsf2_c00002{letter-spacing:0.254247pt;}
.ls27d_c00002{letter-spacing:0.255193pt;}
.ls81d_c00002{letter-spacing:0.257152pt;}
.ls2ab_c00002{letter-spacing:0.258667pt;}
.ls74e_c00002{letter-spacing:0.258733pt;}
.ls183_c00002{letter-spacing:0.259657pt;}
.ls6f9_c00002{letter-spacing:0.260267pt;}
.lsad_c00002{letter-spacing:0.261888pt;}
.ls115_c00002{letter-spacing:0.262080pt;}
.lse_c00002{letter-spacing:0.262400pt;}
.ls78c_c00002{letter-spacing:0.264213pt;}
.ls5a6_c00002{letter-spacing:0.265066pt;}
.ls4c4_c00002{letter-spacing:0.265280pt;}
.ls80b_c00002{letter-spacing:0.267648pt;}
.ls1f8_c00002{letter-spacing:0.268267pt;}
.ls52f_c00002{letter-spacing:0.269948pt;}
.ls66_c00002{letter-spacing:0.270476pt;}
.ls2a4_c00002{letter-spacing:0.272896pt;}
.ls14d_c00002{letter-spacing:0.273115pt;}
.ls39c_c00002{letter-spacing:0.278144pt;}
.ls761_c00002{letter-spacing:0.278260pt;}
.ls376_c00002{letter-spacing:0.279467pt;}
.ls5d0_c00002{letter-spacing:0.281295pt;}
.ls95_c00002{letter-spacing:0.281813pt;}
.lsa1_c00002{letter-spacing:0.282240pt;}
.lsab_c00002{letter-spacing:0.283008pt;}
.lsa2_c00002{letter-spacing:0.283093pt;}
.ls32_c00002{letter-spacing:0.283392pt;}
.ls5b1_c00002{letter-spacing:0.283627pt;}
.ls3d_c00002{letter-spacing:0.284160pt;}
.ls397_c00002{letter-spacing:0.287680pt;}
.ls151_c00002{letter-spacing:0.288000pt;}
.lsd6_c00002{letter-spacing:0.288640pt;}
.ls146_c00002{letter-spacing:0.290347pt;}
.ls8a1_c00002{letter-spacing:0.290926pt;}
.ls8a2_c00002{letter-spacing:0.291476pt;}
.ls51e_c00002{letter-spacing:0.291718pt;}
.ls4e6_c00002{letter-spacing:0.291806pt;}
.ls2d_c00002{letter-spacing:0.292114pt;}
.ls5b6_c00002{letter-spacing:0.292356pt;}
.ls741_c00002{letter-spacing:0.292905pt;}
.ls162_c00002{letter-spacing:0.293760pt;}
.lsb6_c00002{letter-spacing:0.293867pt;}
.ls1d6_c00002{letter-spacing:0.293888pt;}
.ls7b8_c00002{letter-spacing:0.296000pt;}
.ls239_c00002{letter-spacing:0.296747pt;}
.ls7eb_c00002{letter-spacing:0.297523pt;}
.ls7cf_c00002{letter-spacing:0.298368pt;}
.ls470_c00002{letter-spacing:0.298880pt;}
.ls10_c00002{letter-spacing:0.299136pt;}
.lsd2_c00002{letter-spacing:0.300480pt;}
.ls4d2_c00002{letter-spacing:0.301013pt;}
.ls163_c00002{letter-spacing:0.302801pt;}
.ls7ff_c00002{letter-spacing:0.302933pt;}
.ls7a4_c00002{letter-spacing:0.303104pt;}
.ls11_c00002{letter-spacing:0.304384pt;}
.ls91_c00002{letter-spacing:0.304747pt;}
.ls57f_c00002{letter-spacing:0.305813pt;}
.lsaa_c00002{letter-spacing:0.308352pt;}
.ls340_c00002{letter-spacing:0.309333pt;}
.ls24e_c00002{letter-spacing:0.309632pt;}
.ls4e9_c00002{letter-spacing:0.310293pt;}
.ls4e7_c00002{letter-spacing:0.310827pt;}
.ls7c2_c00002{letter-spacing:0.312432pt;}
.ls7a5_c00002{letter-spacing:0.312576pt;}
.ls545_c00002{letter-spacing:0.313488pt;}
.ls184_c00002{letter-spacing:0.313752pt;}
.ls131_c00002{letter-spacing:0.314880pt;}
.ls683_c00002{letter-spacing:0.315733pt;}
.ls7d0_c00002{letter-spacing:0.317312pt;}
.ls785_c00002{letter-spacing:0.317314pt;}
.ls28_c00002{letter-spacing:0.317842pt;}
.ls244_c00002{letter-spacing:0.320128pt;}
.ls444_c00002{letter-spacing:0.322048pt;}
.ls378_c00002{letter-spacing:0.324571pt;}
.ls595_c00002{letter-spacing:0.325120pt;}
.ls558_c00002{letter-spacing:0.325248pt;}
.ls812_c00002{letter-spacing:0.325376pt;}
.ls594_c00002{letter-spacing:0.325653pt;}
.ls607_c00002{letter-spacing:0.326187pt;}
.ls7c6_c00002{letter-spacing:0.326784pt;}
.ls51a_c00002{letter-spacing:0.329472pt;}
.ls30_c00002{letter-spacing:0.330624pt;}
.ls766_c00002{letter-spacing:0.331520pt;}
.ls39_c00002{letter-spacing:0.331959pt;}
.ls125_c00002{letter-spacing:0.332267pt;}
.ls601_c00002{letter-spacing:0.333013pt;}
.ls262_c00002{letter-spacing:0.333867pt;}
.ls446_c00002{letter-spacing:0.334080pt;}
.ls3ff_c00002{letter-spacing:0.335390pt;}
.ls3f1_c00002{letter-spacing:0.335872pt;}
.ls42b_c00002{letter-spacing:0.336747pt;}
.ls30a_c00002{letter-spacing:0.338133pt;}
.ls521_c00002{letter-spacing:0.339612pt;}
.lsbb_c00002{letter-spacing:0.339947pt;}
.ls6c_c00002{letter-spacing:0.340799pt;}
.ls1cf_c00002{letter-spacing:0.340992pt;}
.ls332_c00002{letter-spacing:0.341120pt;}
.ls754_c00002{letter-spacing:0.341723pt;}
.ls352_c00002{letter-spacing:0.346880pt;}
.ls7ba_c00002{letter-spacing:0.350464pt;}
.ls7ac_c00002{letter-spacing:0.351487pt;}
.lse5_c00002{letter-spacing:0.351616pt;}
.ls1a7_c00002{letter-spacing:0.352213pt;}
.ls69f_c00002{letter-spacing:0.354133pt;}
.lsac_c00002{letter-spacing:0.354816pt;}
.ls1d_c00002{letter-spacing:0.355200pt;}
.ls214_c00002{letter-spacing:0.355307pt;}
.ls14f_c00002{letter-spacing:0.356236pt;}
.ls8e3_c00002{letter-spacing:0.356864pt;}
.ls737_c00002{letter-spacing:0.357013pt;}
.ls535_c00002{letter-spacing:0.357028pt;}
.ls615_c00002{letter-spacing:0.357547pt;}
.ls710_c00002{letter-spacing:0.357653pt;}
.ls42c_c00002{letter-spacing:0.358080pt;}
.ls2b4_c00002{letter-spacing:0.358933pt;}
.ls7c8_c00002{letter-spacing:0.359936pt;}
.ls2f9_c00002{letter-spacing:0.361280pt;}
.ls431_c00002{letter-spacing:0.361813pt;}
.ls417_c00002{letter-spacing:0.362112pt;}
.lsa5_c00002{letter-spacing:0.362174pt;}
.lsf0_c00002{letter-spacing:0.362437pt;}
.ls7c7_c00002{letter-spacing:0.362688pt;}
.ls35c_c00002{letter-spacing:0.363947pt;}
.ls8f_c00002{letter-spacing:0.364672pt;}
.ls536_c00002{letter-spacing:0.364812pt;}
.ls26d_c00002{letter-spacing:0.365013pt;}
.ls518_c00002{letter-spacing:0.365736pt;}
.ls393_c00002{letter-spacing:0.366132pt;}
.ls3d6_c00002{letter-spacing:0.366242pt;}
.ls459_c00002{letter-spacing:0.366613pt;}
.ls3e5_c00002{letter-spacing:0.367360pt;}
.ls15e_c00002{letter-spacing:0.368111pt;}
.ls292_c00002{letter-spacing:0.368213pt;}
.ls628_c00002{letter-spacing:0.368747pt;}
.ls1d1_c00002{letter-spacing:0.369408pt;}
.ls692_c00002{letter-spacing:0.370347pt;}
.lsdc_c00002{letter-spacing:0.370880pt;}
.ls704_c00002{letter-spacing:0.371200pt;}
.ls28f_c00002{letter-spacing:0.371413pt;}
.ls419_c00002{letter-spacing:0.372608pt;}
.ls627_c00002{letter-spacing:0.373013pt;}
.ls259_c00002{letter-spacing:0.374400pt;}
.ls6f_c00002{letter-spacing:0.374613pt;}
.ls700_c00002{letter-spacing:0.375147pt;}
.ls7a9_c00002{letter-spacing:0.375895pt;}
.ls6a4_c00002{letter-spacing:0.376747pt;}
.ls177_c00002{letter-spacing:0.377813pt;}
.ls49_c00002{letter-spacing:0.377856pt;}
.ls4b0_c00002{letter-spacing:0.378347pt;}
.ls230_c00002{letter-spacing:0.378666pt;}
.ls5ce_c00002{letter-spacing:0.378880pt;}
.ls150_c00002{letter-spacing:0.379985pt;}
.ls58_c00002{letter-spacing:0.383104pt;}
.ls561_c00002{letter-spacing:0.384000pt;}
.ls685_c00002{letter-spacing:0.385600pt;}
.ls6f4_c00002{letter-spacing:0.385923pt;}
.ls75f_c00002{letter-spacing:0.388160pt;}
.ls215_c00002{letter-spacing:0.388352pt;}
.ls21a_c00002{letter-spacing:0.389013pt;}
.ls46_c00002{letter-spacing:0.389485pt;}
.ls73b_c00002{letter-spacing:0.389973pt;}
.ls5b5_c00002{letter-spacing:0.389991pt;}
.ls78a_c00002{letter-spacing:0.390541pt;}
.ls3f0_c00002{letter-spacing:0.393600pt;}
.ls6bb_c00002{letter-spacing:0.394895pt;}
.ls5bb_c00002{letter-spacing:0.397013pt;}
.ls287_c00002{letter-spacing:0.398613pt;}
.ls890_c00002{letter-spacing:0.398848pt;}
.ls6a5_c00002{letter-spacing:0.399360pt;}
.ls40_c00002{letter-spacing:0.400304pt;}
.ls7ca_c00002{letter-spacing:0.400981pt;}
.ls3eb_c00002{letter-spacing:0.404096pt;}
.ls261_c00002{letter-spacing:0.404267pt;}
.ls39a_c00002{letter-spacing:0.404800pt;}
.ls7c1_c00002{letter-spacing:0.406315pt;}
.ls411_c00002{letter-spacing:0.409280pt;}
.ls8bd_c00002{letter-spacing:0.409344pt;}
.ls38_c00002{letter-spacing:0.409600pt;}
.ls809_c00002{letter-spacing:0.411123pt;}
.ls81_c00002{letter-spacing:0.413013pt;}
.ls573_c00002{letter-spacing:0.414336pt;}
.ls3e3_c00002{letter-spacing:0.414592pt;}
.ls374_c00002{letter-spacing:0.415467pt;}
.ls124_c00002{letter-spacing:0.415680pt;}
.ls2d9_c00002{letter-spacing:0.419840pt;}
.ls22e_c00002{letter-spacing:0.421942pt;}
.ls645_c00002{letter-spacing:0.422400pt;}
.ls7bb_c00002{letter-spacing:0.423104pt;}
.ls1d4_c00002{letter-spacing:0.424747pt;}
.ls2f_c00002{letter-spacing:0.425088pt;}
.ls32c_c00002{letter-spacing:0.425813pt;}
.ls3bd_c00002{letter-spacing:0.426240pt;}
.ls519_c00002{letter-spacing:0.426624pt;}
.ls161_c00002{letter-spacing:0.427484pt;}
.ls3ef_c00002{letter-spacing:0.430336pt;}
.ls145_c00002{letter-spacing:0.432213pt;}
.ls22f_c00002{letter-spacing:0.432761pt;}
.ls5cf_c00002{letter-spacing:0.435413pt;}
.ls577_c00002{letter-spacing:0.437547pt;}
.ls2c_c00002{letter-spacing:0.438171pt;}
.ls763_c00002{letter-spacing:0.438808pt;}
.ls76f_c00002{letter-spacing:0.439358pt;}
.ls655_c00002{letter-spacing:0.439467pt;}
.ls532_c00002{letter-spacing:0.439754pt;}
.ls4f0_c00002{letter-spacing:0.439798pt;}
.ls1f9_c00002{letter-spacing:0.440533pt;}
.ls3e8_c00002{letter-spacing:0.440832pt;}
.ls5c1_c00002{letter-spacing:0.443307pt;}
.lsdf_c00002{letter-spacing:0.443580pt;}
.ls5c0_c00002{letter-spacing:0.444373pt;}
.ls185_c00002{letter-spacing:0.445515pt;}
.ls130_c00002{letter-spacing:0.446080pt;}
.ls584_c00002{letter-spacing:0.447467pt;}
.ls65_c00002{letter-spacing:0.449067pt;}
.ls6ad_c00002{letter-spacing:0.450667pt;}
.lsb_c00002{letter-spacing:0.451328pt;}
.ls266_c00002{letter-spacing:0.454272pt;}
.ls7b_c00002{letter-spacing:0.456576pt;}
.ls19e_c00002{letter-spacing:0.459392pt;}
.lsd_c00002{letter-spacing:0.459809pt;}
.ls73c_c00002{letter-spacing:0.461013pt;}
.lsee_c00002{letter-spacing:0.461824pt;}
.lsb2_c00002{letter-spacing:0.464128pt;}
.ls16e_c00002{letter-spacing:0.466516pt;}
.ls158_c00002{letter-spacing:0.467065pt;}
.lsc_c00002{letter-spacing:0.467072pt;}
.ls159_c00002{letter-spacing:0.468055pt;}
.ls5af_c00002{letter-spacing:0.468253pt;}
.ls7af_c00002{letter-spacing:0.468864pt;}
.ls16f_c00002{letter-spacing:0.470628pt;}
.ls30c_c00002{letter-spacing:0.471147pt;}
.ls113_c00002{letter-spacing:0.472000pt;}
.ls12_c00002{letter-spacing:0.472320pt;}
.ls333_c00002{letter-spacing:0.472747pt;}
.ls4d0_c00002{letter-spacing:0.473280pt;}
.ls498_c00002{letter-spacing:0.473387pt;}
.lsb1_c00002{letter-spacing:0.473530pt;}
.ls31d_c00002{letter-spacing:0.475413pt;}
.ls20a_c00002{letter-spacing:0.476037pt;}
.lsf_c00002{letter-spacing:0.477568pt;}
.ls5bf_c00002{letter-spacing:0.478080pt;}
.ls774_c00002{letter-spacing:0.478412pt;}
.ls35f_c00002{letter-spacing:0.478830pt;}
.ls382_c00002{letter-spacing:0.479380pt;}
.ls4ed_c00002{letter-spacing:0.481447pt;}
.ls170_c00002{letter-spacing:0.481469pt;}
.ls85_c00002{letter-spacing:0.482678pt;}
.ls139_c00002{letter-spacing:0.482816pt;}
.ls624_c00002{letter-spacing:0.482987pt;}
.ls7c5_c00002{letter-spacing:0.483072pt;}
.ls15c_c00002{letter-spacing:0.483448pt;}
.ls381_c00002{letter-spacing:0.484108pt;}
.ls349_c00002{letter-spacing:0.486080pt;}
.ls53_c00002{letter-spacing:0.486856pt;}
.ls6_c00002{letter-spacing:0.487956pt;}
.ls7c_c00002{letter-spacing:0.488064pt;}
.ls7b7_c00002{letter-spacing:0.488176pt;}
.ls45_c00002{letter-spacing:0.488506pt;}
.ls221_c00002{letter-spacing:0.490347pt;}
.ls434_c00002{letter-spacing:0.492266pt;}
.lsf1_c00002{letter-spacing:0.493312pt;}
.ls384_c00002{letter-spacing:0.493547pt;}
.ls38c_c00002{letter-spacing:0.494613pt;}
.ls227_c00002{letter-spacing:0.497280pt;}
.ls8d6_c00002{letter-spacing:0.497675pt;}
.ls68f_c00002{letter-spacing:0.497813pt;}
.ls67_c00002{letter-spacing:0.498560pt;}
.ls25b_c00002{letter-spacing:0.499200pt;}
.ls27c_c00002{letter-spacing:0.500270pt;}
.ls691_c00002{letter-spacing:0.500480pt;}
.ls5bc_c00002{letter-spacing:0.501013pt;}
.ls135_c00002{letter-spacing:0.502080pt;}
.ls232_c00002{letter-spacing:0.503085pt;}
.ls251_c00002{letter-spacing:0.503808pt;}
.ls5bd_c00002{letter-spacing:0.505280pt;}
.ls5b2_c00002{letter-spacing:0.508494pt;}
.ls188_c00002{letter-spacing:0.509056pt;}
.ls90_c00002{letter-spacing:0.511488pt;}
.ls136_c00002{letter-spacing:0.512000pt;}
.ls772_c00002{letter-spacing:0.512584pt;}
.ls52_c00002{letter-spacing:0.513904pt;}
.ls39b_c00002{letter-spacing:0.514304pt;}
.ls765_c00002{letter-spacing:0.516117pt;}
.ls738_c00002{letter-spacing:0.516267pt;}
.ls563_c00002{letter-spacing:0.518400pt;}
.ls24_c00002{letter-spacing:0.519552pt;}
.lsa0_c00002{letter-spacing:0.520320pt;}
.ls497_c00002{letter-spacing:0.520853pt;}
.ls207_c00002{letter-spacing:0.522667pt;}
.ls3_c00002{letter-spacing:0.524800pt;}
.ls46d_c00002{letter-spacing:0.527147pt;}
.ls936_c00002{letter-spacing:0.530048pt;}
.ls2f8_c00002{letter-spacing:0.530432pt;}
.ls13a_c00002{letter-spacing:0.531200pt;}
.ls5fe_c00002{letter-spacing:0.532480pt;}
.ls395_c00002{letter-spacing:0.533547pt;}
.ls286_c00002{letter-spacing:0.535147pt;}
.ls2ee_c00002{letter-spacing:0.535296pt;}
.ls2e_c00002{letter-spacing:0.535542pt;}
.ls21d_c00002{letter-spacing:0.536213pt;}
.ls8b4_c00002{letter-spacing:0.536334pt;}
.ls7d2_c00002{letter-spacing:0.536883pt;}
.ls7ab_c00002{letter-spacing:0.536993pt;}
.ls25a_c00002{letter-spacing:0.539136pt;}
.ls22b_c00002{letter-spacing:0.539947pt;}
.ls46e_c00002{letter-spacing:0.540480pt;}
.ls697_c00002{letter-spacing:0.540544pt;}
.ls182_c00002{letter-spacing:0.540951pt;}
.ls17f_c00002{letter-spacing:0.541547pt;}
.ls17e_c00002{letter-spacing:0.542080pt;}
.ls284_c00002{letter-spacing:0.543680pt;}
.ls11d_c00002{letter-spacing:0.545792pt;}
.ls686_c00002{letter-spacing:0.546133pt;}
.ls3f_c00002{letter-spacing:0.546757pt;}
.ls39f_c00002{letter-spacing:0.551040pt;}
.ls756_c00002{letter-spacing:0.551639pt;}
.ls4c3_c00002{letter-spacing:0.551680pt;}
.ls164_c00002{letter-spacing:0.552166pt;}
.ls63b_c00002{letter-spacing:0.555729pt;}
.ls28c_c00002{letter-spacing:0.556288pt;}
.ls4ab_c00002{letter-spacing:0.561536pt;}
.ls3f5_c00002{letter-spacing:0.563200pt;}
.ls23a_c00002{letter-spacing:0.565547pt;}
.lsa8_c00002{letter-spacing:0.566784pt;}
.ls6ec_c00002{letter-spacing:0.567999pt;}
.ls31a_c00002{letter-spacing:0.570880pt;}
.ls3ec_c00002{letter-spacing:0.572032pt;}
.ls7a8_c00002{letter-spacing:0.576000pt;}
.ls15b_c00002{letter-spacing:0.577280pt;}
.ls67a_c00002{letter-spacing:0.579072pt;}
.ls8b_c00002{letter-spacing:0.584228pt;}
.ls92e_c00002{letter-spacing:0.585261pt;}
.ls278_c00002{letter-spacing:0.585280pt;}
.ls6c4_c00002{letter-spacing:0.587200pt;}
.ls3c0_c00002{letter-spacing:0.591147pt;}
.ls165_c00002{letter-spacing:0.593280pt;}
.ls3c2_c00002{letter-spacing:0.595947pt;}
.ls200_c00002{letter-spacing:0.598272pt;}
.ls355_c00002{letter-spacing:0.598613pt;}
.ls354_c00002{letter-spacing:0.602880pt;}
.ls23c_c00002{letter-spacing:0.605547pt;}
.ls822_c00002{letter-spacing:0.608768pt;}
.ls155_c00002{letter-spacing:0.611319pt;}
.ls160_c00002{letter-spacing:0.611539pt;}
.ls4f1_c00002{letter-spacing:0.613227pt;}
.ls2b_c00002{letter-spacing:0.614016pt;}
.ls631_c00002{letter-spacing:0.614933pt;}
.ls42d_c00002{letter-spacing:0.615680pt;}
.ls50_c00002{letter-spacing:0.616000pt;}
.ls303_c00002{letter-spacing:0.616107pt;}
.ls3a3_c00002{letter-spacing:0.617280pt;}
.ls265_c00002{letter-spacing:0.619008pt;}
.ls47_c00002{letter-spacing:0.619264pt;}
.ls290_c00002{letter-spacing:0.619947pt;}
.lsd4_c00002{letter-spacing:0.621547pt;}
.ls904_c00002{letter-spacing:0.622094pt;}
.ls94_c00002{letter-spacing:0.623147pt;}
.ls241_c00002{letter-spacing:0.623680pt;}
.ls3ea_c00002{letter-spacing:0.624512pt;}
.ls2fa_c00002{letter-spacing:0.625813pt;}
.ls603_c00002{letter-spacing:0.627200pt;}
.ls3e4_c00002{letter-spacing:0.629760pt;}
.ls13_c00002{letter-spacing:0.632913pt;}
.ls7e5_c00002{letter-spacing:0.634189pt;}
.ls186_c00002{letter-spacing:0.635008pt;}
.ls49e_c00002{letter-spacing:0.635948pt;}
.ls5b8_c00002{letter-spacing:0.638059pt;}
.lsf8_c00002{letter-spacing:0.638323pt;}
.ls670_c00002{letter-spacing:0.638400pt;}
.lsb3_c00002{letter-spacing:0.639360pt;}
.ls455_c00002{letter-spacing:0.640000pt;}
.ls8d_c00002{letter-spacing:0.640256pt;}
.lsfe_c00002{letter-spacing:0.649142pt;}
.ls32d_c00002{letter-spacing:0.650347pt;}
.ls15d_c00002{letter-spacing:0.650880pt;}
.ls14c_c00002{letter-spacing:0.653100pt;}
.ls7cd_c00002{letter-spacing:0.654720pt;}
.ls144_c00002{letter-spacing:0.656000pt;}
.ls96_c00002{letter-spacing:0.658347pt;}
.ls3a_c00002{letter-spacing:0.659037pt;}
.ls14_c00002{letter-spacing:0.661248pt;}
.ls28e_c00002{letter-spacing:0.665813pt;}
.ls88e_c00002{letter-spacing:0.666496pt;}
.ls619_c00002{letter-spacing:0.666880pt;}
.ls5cd_c00002{letter-spacing:0.667947pt;}
.ls1d2_c00002{letter-spacing:0.670080pt;}
.ls31f_c00002{letter-spacing:0.671744pt;}
.ls30d_c00002{letter-spacing:0.673813pt;}
.ls6e_c00002{letter-spacing:0.681599pt;}
.ls21b_c00002{letter-spacing:0.681813pt;}
.lsea_c00002{letter-spacing:0.682240pt;}
.ls3b0_c00002{letter-spacing:0.682347pt;}
.ls7aa_c00002{letter-spacing:0.683446pt;}
.lsd1_c00002{letter-spacing:0.685547pt;}
.ls8dc_c00002{letter-spacing:0.687488pt;}
.ls399_c00002{letter-spacing:0.688213pt;}
.ls454_c00002{letter-spacing:0.689280pt;}
.ls178_c00002{letter-spacing:0.690880pt;}
.ls68_c00002{letter-spacing:0.693547pt;}
.ls913_c00002{letter-spacing:0.697827pt;}
.ls83b_c00002{letter-spacing:0.697984pt;}
.ls31c_c00002{letter-spacing:0.702080pt;}
.ls231_c00002{letter-spacing:0.703237pt;}
.ls3c3_c00002{letter-spacing:0.704000pt;}
.ls34_c00002{letter-spacing:0.708480pt;}
.ls3b6_c00002{letter-spacing:0.713728pt;}
.ls69_c00002{letter-spacing:0.722880pt;}
.ls240_c00002{letter-spacing:0.724224pt;}
.ls288_c00002{letter-spacing:0.728747pt;}
.ls3c5_c00002{letter-spacing:0.729280pt;}
.ls8c_c00002{letter-spacing:0.730284pt;}
.ls5b7_c00002{letter-spacing:0.731604pt;}
.ls1d5_c00002{letter-spacing:0.734080pt;}
.ls2ef_c00002{letter-spacing:0.734720pt;}
.ls701_c00002{letter-spacing:0.737813pt;}
.ls7f2_c00002{letter-spacing:0.739968pt;}
.ls3d8_c00002{letter-spacing:0.741013pt;}
.ls1d3_c00002{letter-spacing:0.741547pt;}
.ls21c_c00002{letter-spacing:0.744213pt;}
.ls7ef_c00002{letter-spacing:0.745216pt;}
.ls5d8_c00002{letter-spacing:0.748800pt;}
.ls442_c00002{letter-spacing:0.750080pt;}
.ls591_c00002{letter-spacing:0.751680pt;}
.ls92_c00002{letter-spacing:0.753280pt;}
.ls62_c00002{letter-spacing:0.755413pt;}
.ls889_c00002{letter-spacing:0.757332pt;}
.ls7e9_c00002{letter-spacing:0.760960pt;}
.ls669_c00002{letter-spacing:0.766208pt;}
.ls31b_c00002{letter-spacing:0.768000pt;}
.ls14e_c00002{letter-spacing:0.771845pt;}
.ls886_c00002{letter-spacing:0.776704pt;}
.ls398_c00002{letter-spacing:0.781952pt;}
.ls15f_c00002{letter-spacing:0.789657pt;}
.ls7b4_c00002{letter-spacing:0.790613pt;}
.ls426_c00002{letter-spacing:0.797696pt;}
.ls662_c00002{letter-spacing:0.804720pt;}
.ls87a_c00002{letter-spacing:0.808192pt;}
.ls8ff_c00002{letter-spacing:0.818688pt;}
.ls7de_c00002{letter-spacing:0.829184pt;}
.ls6dd_c00002{letter-spacing:0.832000pt;}
.ls54_c00002{letter-spacing:0.839680pt;}
.ls8da_c00002{letter-spacing:0.844928pt;}
.ls4b1_c00002{letter-spacing:0.853333pt;}
.ls35_c00002{letter-spacing:0.855424pt;}
.ls81b_c00002{letter-spacing:0.860672pt;}
.ls138_c00002{letter-spacing:0.865522pt;}
.ls6cb_c00002{letter-spacing:0.871168pt;}
.ls88a_c00002{letter-spacing:0.876416pt;}
.ls70a_c00002{letter-spacing:0.881664pt;}
.ls89_c00002{letter-spacing:0.881751pt;}
.ls380_c00002{letter-spacing:0.892160pt;}
.ls813_c00002{letter-spacing:0.892570pt;}
.ls2de_c00002{letter-spacing:0.902656pt;}
.ls716_c00002{letter-spacing:0.928896pt;}
.ls10b_c00002{letter-spacing:0.939392pt;}
.ls56b_c00002{letter-spacing:0.944640pt;}
.ls580_c00002{letter-spacing:0.947200pt;}
.ls84a_c00002{letter-spacing:0.949888pt;}
.ls9e_c00002{letter-spacing:0.960384pt;}
.ls212_c00002{letter-spacing:0.965632pt;}
.ls572_c00002{letter-spacing:0.966400pt;}
.ls8ef_c00002{letter-spacing:0.970880pt;}
.ls6ed_c00002{letter-spacing:0.995351pt;}
.ls6d_c00002{letter-spacing:1.002368pt;}
.ls8fd_c00002{letter-spacing:1.007616pt;}
.ls83d_c00002{letter-spacing:1.012864pt;}
.ls544_c00002{letter-spacing:1.027544pt;}
.ls8cb_c00002{letter-spacing:1.049600pt;}
.ls88b_c00002{letter-spacing:1.065344pt;}
.ls8d0_c00002{letter-spacing:1.075840pt;}
.ls877_c00002{letter-spacing:1.096832pt;}
.ls196_c00002{letter-spacing:1.102080pt;}
.ls3de_c00002{letter-spacing:1.117824pt;}
.ls56e_c00002{letter-spacing:1.126400pt;}
.ls94d_c00002{letter-spacing:1.128320pt;}
.ls56d_c00002{letter-spacing:1.132800pt;}
.ls860_c00002{letter-spacing:1.138816pt;}
.ls4bc_c00002{letter-spacing:1.145600pt;}
.ls803_c00002{letter-spacing:1.152227pt;}
.ls5a4_c00002{letter-spacing:1.154560pt;}
.ls718_c00002{letter-spacing:1.159808pt;}
.ls8ac_c00002{letter-spacing:1.163046pt;}
.ls11a_c00002{letter-spacing:1.170304pt;}
.ls8a3_c00002{letter-spacing:1.180800pt;}
.ls2cf_c00002{letter-spacing:1.196544pt;}
.ls56c_c00002{letter-spacing:1.203200pt;}
.ls315_c00002{letter-spacing:1.207040pt;}
.ls579_c00002{letter-spacing:1.209600pt;}
.ls817_c00002{letter-spacing:1.233280pt;}
.ls5ef_c00002{letter-spacing:1.248000pt;}
.ls372_c00002{letter-spacing:1.254272pt;}
.ls4cf_c00002{letter-spacing:1.259520pt;}
.ls490_c00002{letter-spacing:1.264768pt;}
.ls7d8_c00002{letter-spacing:1.265826pt;}
.ls882_c00002{letter-spacing:1.270016pt;}
.ls4f2_c00002{letter-spacing:1.280000pt;}
.ls6ca_c00002{letter-spacing:1.280512pt;}
.ls4f4_c00002{letter-spacing:1.286400pt;}
.ls37a_c00002{letter-spacing:1.291008pt;}
.ls90b_c00002{letter-spacing:1.298283pt;}
.ls8f6_c00002{letter-spacing:1.301504pt;}
.ls377_c00002{letter-spacing:1.312000pt;}
.ls102_c00002{letter-spacing:1.322496pt;}
.ls211_c00002{letter-spacing:1.327744pt;}
.ls120_c00002{letter-spacing:1.338240pt;}
.ls5be_c00002{letter-spacing:1.344000pt;}
.ls5a3_c00002{letter-spacing:1.346969pt;}
.lsfc_c00002{letter-spacing:1.348736pt;}
.ls6fb_c00002{letter-spacing:1.356800pt;}
.ls630_c00002{letter-spacing:1.364480pt;}
.ls4d7_c00002{letter-spacing:1.369600pt;}
.ls8eb_c00002{letter-spacing:1.369728pt;}
.lsfd_c00002{letter-spacing:1.385472pt;}
.ls4a5_c00002{letter-spacing:1.390720pt;}
.ls143_c00002{letter-spacing:1.395655pt;}
.ls6f3_c00002{letter-spacing:1.408000pt;}
.ls360_c00002{letter-spacing:1.416960pt;}
.ls6d4_c00002{letter-spacing:1.443200pt;}
.ls6fa_c00002{letter-spacing:1.446400pt;}
.ls1f4_c00002{letter-spacing:1.453696pt;}
.lsc0_c00002{letter-spacing:1.469440pt;}
.ls68d_c00002{letter-spacing:1.500928pt;}
.ls373_c00002{letter-spacing:1.506176pt;}
.ls14a_c00002{letter-spacing:1.517303pt;}
.ls847_c00002{letter-spacing:1.520074pt;}
.ls896_c00002{letter-spacing:1.521920pt;}
.ls695_c00002{letter-spacing:1.527168pt;}
.ls820_c00002{letter-spacing:1.537664pt;}
.ls345_c00002{letter-spacing:1.553408pt;}
.ls48e_c00002{letter-spacing:1.561600pt;}
.ls5d4_c00002{letter-spacing:1.569152pt;}
.ls1cb_c00002{letter-spacing:1.579648pt;}
.ls3ed_c00002{letter-spacing:1.590144pt;}
.ls356_c00002{letter-spacing:1.600000pt;}
.ls441_c00002{letter-spacing:1.605888pt;}
.ls440_c00002{letter-spacing:1.611136pt;}
.ls3dd_c00002{letter-spacing:1.626880pt;}
.ls8c6_c00002{letter-spacing:1.642624pt;}
.ls3e0_c00002{letter-spacing:1.647872pt;}
.ls634_c00002{letter-spacing:1.663616pt;}
.ls824_c00002{letter-spacing:1.668864pt;}
.ls2b2_c00002{letter-spacing:1.674112pt;}
.ls3a5_c00002{letter-spacing:1.679360pt;}
.ls8f5_c00002{letter-spacing:1.682359pt;}
.ls8dd_c00002{letter-spacing:1.698588pt;}
.ls75_c00002{letter-spacing:1.720226pt;}
.ls66a_c00002{letter-spacing:1.728000pt;}
.ls831_c00002{letter-spacing:1.731840pt;}
.ls8f4_c00002{letter-spacing:1.736454pt;}
.ls141_c00002{letter-spacing:1.741864pt;}
.ls328_c00002{letter-spacing:1.742336pt;}
.ls6cf_c00002{letter-spacing:1.773824pt;}
.ls6ce_c00002{letter-spacing:1.784320pt;}
.ls13e_c00002{letter-spacing:1.812187pt;}
.ls167_c00002{letter-spacing:1.831552pt;}
.ls313_c00002{letter-spacing:1.836800pt;}
.ls6c9_c00002{letter-spacing:1.842048pt;}
.ls390_c00002{letter-spacing:1.852544pt;}
.ls587_c00002{letter-spacing:1.857792pt;}
.ls7f7_c00002{letter-spacing:1.863040pt;}
.ls57b_c00002{letter-spacing:1.868800pt;}
.ls87_c00002{letter-spacing:1.873536pt;}
.ls818_c00002{letter-spacing:1.884032pt;}
.ls4e1_c00002{letter-spacing:1.888000pt;}
.ls83_c00002{letter-spacing:1.889280pt;}
.ls3e2_c00002{letter-spacing:1.898740pt;}
.ls4b8_c00002{letter-spacing:1.900800pt;}
.ls2dc_c00002{letter-spacing:1.915520pt;}
.ls712_c00002{letter-spacing:1.920000pt;}
.ls41a_c00002{letter-spacing:1.926016pt;}
.ls86e_c00002{letter-spacing:1.931264pt;}
.ls2aa_c00002{letter-spacing:1.936512pt;}
.ls2a3_c00002{letter-spacing:1.941760pt;}
.ls41b_c00002{letter-spacing:1.947008pt;}
.ls6b_c00002{letter-spacing:1.952256pt;}
.ls848_c00002{letter-spacing:1.957504pt;}
.ls703_c00002{letter-spacing:1.964800pt;}
.ls734_c00002{letter-spacing:1.971200pt;}
.ls708_c00002{letter-spacing:1.984000pt;}
.ls6d1_c00002{letter-spacing:1.994240pt;}
.ls97_c00002{letter-spacing:2.003200pt;}
.ls8b1_c00002{letter-spacing:2.006930pt;}
.ls6d2_c00002{letter-spacing:2.009984pt;}
.ls880_c00002{letter-spacing:2.015232pt;}
.ls901_c00002{letter-spacing:2.025728pt;}
.ls7f1_c00002{letter-spacing:2.039387pt;}
.ls721_c00002{letter-spacing:2.041600pt;}
.ls388_c00002{letter-spacing:2.046720pt;}
.ls2c9_c00002{letter-spacing:2.051968pt;}
.ls4cb_c00002{letter-spacing:2.060800pt;}
.ls90c_c00002{letter-spacing:2.062464pt;}
.ls3a8_c00002{letter-spacing:2.072960pt;}
.ls295_c00002{letter-spacing:2.083456pt;}
.ls13f_c00002{letter-spacing:2.093482pt;}
.ls20b_c00002{letter-spacing:2.099200pt;}
.ls6de_c00002{letter-spacing:2.112000pt;}
.ls80_c00002{letter-spacing:2.120192pt;}
.ls8aa_c00002{letter-spacing:2.131349pt;}
.lscd_c00002{letter-spacing:2.141184pt;}
.ls934_c00002{letter-spacing:2.146432pt;}
.ls6da_c00002{letter-spacing:2.151680pt;}
.ls4df_c00002{letter-spacing:2.156800pt;}
.ls90d_c00002{letter-spacing:2.162176pt;}
.ls379_c00002{letter-spacing:2.176000pt;}
.ls902_c00002{letter-spacing:2.185444pt;}
.ls11e_c00002{letter-spacing:2.193664pt;}
.ls281_c00002{letter-spacing:2.204160pt;}
.ls20e_c00002{letter-spacing:2.209408pt;}
.ls667_c00002{letter-spacing:2.214656pt;}
.ls722_c00002{letter-spacing:2.220800pt;}
.ls3b5_c00002{letter-spacing:2.230400pt;}
.ls900_c00002{letter-spacing:2.234130pt;}
.ls5d5_c00002{letter-spacing:2.235648pt;}
.ls34d_c00002{letter-spacing:2.240000pt;}
.ls5d1_c00002{letter-spacing:2.256640pt;}
.ls19c_c00002{letter-spacing:2.261888pt;}
.ls117_c00002{letter-spacing:2.272384pt;}
.ls86f_c00002{letter-spacing:2.282815pt;}
.ls586_c00002{letter-spacing:2.284800pt;}
.ls6bd_c00002{letter-spacing:2.288128pt;}
.ls821_c00002{letter-spacing:2.293376pt;}
.ls3b2_c00002{letter-spacing:2.304000pt;}
.ls8b5_c00002{letter-spacing:2.319616pt;}
.ls85b_c00002{letter-spacing:2.340608pt;}
.ls2bd_c00002{letter-spacing:2.351104pt;}
.ls6cc_c00002{letter-spacing:2.361600pt;}
.ls114_c00002{letter-spacing:2.414080pt;}
.ls317_c00002{letter-spacing:2.424576pt;}
.ls944_c00002{letter-spacing:2.435072pt;}
.ls733_c00002{letter-spacing:2.438400pt;}
.ls386_c00002{letter-spacing:2.440320pt;}
.ls1e9_c00002{letter-spacing:2.445568pt;}
.ls643_c00002{letter-spacing:2.451200pt;}
.ls3ba_c00002{letter-spacing:2.456064pt;}
.ls45d_c00002{letter-spacing:2.457600pt;}
.ls1e8_c00002{letter-spacing:2.466560pt;}
.lse2_c00002{letter-spacing:2.482304pt;}
.ls142_c00002{letter-spacing:2.493786pt;}
.ls8c3_c00002{letter-spacing:2.503296pt;}
.ls6fd_c00002{letter-spacing:2.513792pt;}
.ls92b_c00002{letter-spacing:2.529536pt;}
.lsfb_c00002{letter-spacing:2.534784pt;}
.lsfa_c00002{letter-spacing:2.540032pt;}
.ls327_c00002{letter-spacing:2.545280pt;}
.ls4cc_c00002{letter-spacing:2.553600pt;}
.ls195_c00002{letter-spacing:2.561024pt;}
.lsed_c00002{letter-spacing:2.571520pt;}
.ls2e0_c00002{letter-spacing:2.576768pt;}
.ls79_c00002{letter-spacing:2.580338pt;}
.ls5d3_c00002{letter-spacing:2.587264pt;}
.ls4aa_c00002{letter-spacing:2.613504pt;}
.ls2f0_c00002{letter-spacing:2.618752pt;}
.ls44_c00002{letter-spacing:2.624000pt;}
.ls85f_c00002{letter-spacing:2.634496pt;}
.ls2ba_c00002{letter-spacing:2.639744pt;}
.ls4a_c00002{letter-spacing:2.644992pt;}
.ls830_c00002{letter-spacing:2.655488pt;}
.ls61f_c00002{letter-spacing:2.656000pt;}
.ls948_c00002{letter-spacing:2.665984pt;}
.lsc2_c00002{letter-spacing:2.668800pt;}
.ls924_c00002{letter-spacing:2.671232pt;}
.ls5e5_c00002{letter-spacing:2.684966pt;}
.ls917_c00002{letter-spacing:2.686976pt;}
.ls6df_c00002{letter-spacing:2.688000pt;}
.ls385_c00002{letter-spacing:2.692224pt;}
.ls48a_c00002{letter-spacing:2.700800pt;}
.ls842_c00002{letter-spacing:2.707968pt;}
.ls826_c00002{letter-spacing:2.718464pt;}
.ls825_c00002{letter-spacing:2.723712pt;}
.ls3cf_c00002{letter-spacing:2.728960pt;}
.ls3f6_c00002{letter-spacing:2.734208pt;}
.ls3d2_c00002{letter-spacing:2.744704pt;}
.ls665_c00002{letter-spacing:2.745600pt;}
.ls70d_c00002{letter-spacing:2.752000pt;}
.ls71a_c00002{letter-spacing:2.755200pt;}
.ls719_c00002{letter-spacing:2.760448pt;}
.ls910_c00002{letter-spacing:2.764262pt;}
.ls664_c00002{letter-spacing:2.777600pt;}
.ls64e_c00002{letter-spacing:2.780160pt;}
.ls36d_c00002{letter-spacing:2.781440pt;}
.ls931_c00002{letter-spacing:2.791936pt;}
.ls930_c00002{letter-spacing:2.797184pt;}
.ls527_c00002{letter-spacing:2.805333pt;}
.ls529_c00002{letter-spacing:2.805867pt;}
.ls243_c00002{letter-spacing:2.816000pt;}
.ls5c3_c00002{letter-spacing:2.831467pt;}
.lsf4_c00002{letter-spacing:2.839168pt;}
.ls4f9_c00002{letter-spacing:2.841600pt;}
.ls56a_c00002{letter-spacing:2.846080pt;}
.ls469_c00002{letter-spacing:2.848000pt;}
.ls2e3_c00002{letter-spacing:2.860160pt;}
.ls5d7_c00002{letter-spacing:2.880000pt;}
.ls2fd_c00002{letter-spacing:2.886400pt;}
.ls878_c00002{letter-spacing:2.902144pt;}
.ls503_c00002{letter-spacing:2.906453pt;}
.ls511_c00002{letter-spacing:2.909952pt;}
.ls937_c00002{letter-spacing:2.912640pt;}
.ls7d7_c00002{letter-spacing:2.938880pt;}
.ls501_c00002{letter-spacing:2.941056pt;}
.ls646_c00002{letter-spacing:2.944000pt;}
.ls194_c00002{letter-spacing:2.944128pt;}
.ls63c_c00002{letter-spacing:2.950400pt;}
.ls505_c00002{letter-spacing:2.954880pt;}
.ls8c5_c00002{letter-spacing:2.959872pt;}
.ls2d7_c00002{letter-spacing:2.965120pt;}
.ls4ff_c00002{letter-spacing:2.965248pt;}
.ls493_c00002{letter-spacing:2.969600pt;}
.ls502_c00002{letter-spacing:2.972160pt;}
.ls331_c00002{letter-spacing:2.975616pt;}
.ls199_c00002{letter-spacing:2.986112pt;}
.ls33c_c00002{letter-spacing:3.008000pt;}
.ls45f_c00002{letter-spacing:3.028096pt;}
.ls72a_c00002{letter-spacing:3.033600pt;}
.ls482_c00002{letter-spacing:3.046400pt;}
.ls5ab_c00002{letter-spacing:3.050966pt;}
.ls2ce_c00002{letter-spacing:3.054336pt;}
.ls6e6_c00002{letter-spacing:3.059200pt;}
.ls6e1_c00002{letter-spacing:3.072000pt;}
.ls363_c00002{letter-spacing:3.085824pt;}
.ls361_c00002{letter-spacing:3.096320pt;}
.ls13d_c00002{letter-spacing:3.099652pt;}
.ls916_c00002{letter-spacing:3.101568pt;}
.ls13c_c00002{letter-spacing:3.105061pt;}
.ls86d_c00002{letter-spacing:3.117312pt;}
.ls70e_c00002{letter-spacing:3.136000pt;}
.ls485_c00002{letter-spacing:3.138304pt;}
.ls25e_c00002{letter-spacing:3.143552pt;}
.ls1ee_c00002{letter-spacing:3.148800pt;}
.ls1ed_c00002{letter-spacing:3.154048pt;}
.ls82b_c00002{letter-spacing:3.164544pt;}
.ls55f_c00002{letter-spacing:3.168000pt;}
.ls649_c00002{letter-spacing:3.180288pt;}
.ls100_c00002{letter-spacing:3.193600pt;}
.ls1bd_c00002{letter-spacing:3.213252pt;}
.ls65c_c00002{letter-spacing:3.216213pt;}
.ls65a_c00002{letter-spacing:3.216747pt;}
.ls851_c00002{letter-spacing:3.224071pt;}
.ls175_c00002{letter-spacing:3.243264pt;}
.ls466_c00002{letter-spacing:3.244800pt;}
.ls853_c00002{letter-spacing:3.245709pt;}
.ls173_c00002{letter-spacing:3.248512pt;}
.ls157_c00002{letter-spacing:3.251118pt;}
.ls4d5_c00002{letter-spacing:3.253760pt;}
.ls846_c00002{letter-spacing:3.256528pt;}
.ls3fb_c00002{letter-spacing:3.283575pt;}
.ls3d0_c00002{letter-spacing:3.306240pt;}
.ls2ad_c00002{letter-spacing:3.321984pt;}
.ls673_c00002{letter-spacing:3.327232pt;}
.ls3c_c00002{letter-spacing:3.328831pt;}
.ls674_c00002{letter-spacing:3.332480pt;}
.ls884_c00002{letter-spacing:3.342976pt;}
.ls3b_c00002{letter-spacing:3.351788pt;}
.ls8b3_c00002{letter-spacing:3.353472pt;}
.ls5df_c00002{letter-spacing:3.358720pt;}
.ls8a4_c00002{letter-spacing:3.363968pt;}
.ls84c_c00002{letter-spacing:3.384960pt;}
.ls6f5_c00002{letter-spacing:3.392000pt;}
.ls6f6_c00002{letter-spacing:3.411200pt;}
.ls2e8_c00002{letter-spacing:3.421696pt;}
.ls675_c00002{letter-spacing:3.429632pt;}
.ls542_c00002{letter-spacing:3.444014pt;}
.ls929_c00002{letter-spacing:3.445861pt;}
.ls2e4_c00002{letter-spacing:3.447936pt;}
.lscc_c00002{letter-spacing:3.474176pt;}
.ls69a_c00002{letter-spacing:3.475200pt;}
.ls67c_c00002{letter-spacing:3.489920pt;}
.ls7e7_c00002{letter-spacing:3.494546pt;}
.ls1e0_c00002{letter-spacing:3.500416pt;}
.ls18a_c00002{letter-spacing:3.505664pt;}
.ls5b_c00002{letter-spacing:3.516160pt;}
.ls483_c00002{letter-spacing:3.526400pt;}
.ls654_c00002{letter-spacing:3.531904pt;}
.ls694_c00002{letter-spacing:3.537152pt;}
.ls871_c00002{letter-spacing:3.542400pt;}
.ls8e8_c00002{letter-spacing:3.547648pt;}
.ls8f2_c00002{letter-spacing:3.584384pt;}
.ls7ee_c00002{letter-spacing:3.589632pt;}
.ls4b5_c00002{letter-spacing:3.600128pt;}
.ls2c7_c00002{letter-spacing:3.605376pt;}
.ls4b4_c00002{letter-spacing:3.610624pt;}
.ls433_c00002{letter-spacing:3.616000pt;}
.ls89f_c00002{letter-spacing:3.631616pt;}
.ls4fb_c00002{letter-spacing:3.636864pt;}
.ls2be_c00002{letter-spacing:3.647360pt;}
.ls52a_c00002{letter-spacing:3.649536pt;}
.ls68a_c00002{letter-spacing:3.652608pt;}
.ls943_c00002{letter-spacing:3.657856pt;}
.ls512_c00002{letter-spacing:3.657984pt;}
.ls525_c00002{letter-spacing:3.659413pt;}
.ls526_c00002{letter-spacing:3.659947pt;}
.ls2b5_c00002{letter-spacing:3.673600pt;}
.ls4fc_c00002{letter-spacing:3.681920pt;}
.ls3a6_c00002{letter-spacing:3.682304pt;}
.ls504_c00002{letter-spacing:3.682347pt;}
.ls500_c00002{letter-spacing:3.682880pt;}
.ls4e4_c00002{letter-spacing:3.683328pt;}
.ls2b8_c00002{letter-spacing:3.689344pt;}
.ls54f_c00002{letter-spacing:3.704448pt;}
.ls50e_c00002{letter-spacing:3.706240pt;}
.ls506_c00002{letter-spacing:3.706773pt;}
.ls531_c00002{letter-spacing:3.708672pt;}
.ls5ca_c00002{letter-spacing:3.712000pt;}
.ls60_c00002{letter-spacing:3.715584pt;}
.ls5cc_c00002{letter-spacing:3.724800pt;}
.ls5c5_c00002{letter-spacing:3.726080pt;}
.ls520_c00002{letter-spacing:3.729792pt;}
.ls326_c00002{letter-spacing:3.736576pt;}
.ls3d4_c00002{letter-spacing:3.752320pt;}
.ls510_c00002{letter-spacing:3.753600pt;}
.ls515_c00002{letter-spacing:3.755136pt;}
.ls538_c00002{letter-spacing:3.767808pt;}
.ls274_c00002{letter-spacing:3.769600pt;}
.ls347_c00002{letter-spacing:3.773312pt;}
.ls272_c00002{letter-spacing:3.776000pt;}
.ls514_c00002{letter-spacing:3.776256pt;}
.ls52b_c00002{letter-spacing:3.777493pt;}
.ls52d_c00002{letter-spacing:3.778027pt;}
.ls4fe_c00002{letter-spacing:3.778453pt;}
.ls495_c00002{letter-spacing:3.778560pt;}
.ls89e_c00002{letter-spacing:3.781251pt;}
.ls2df_c00002{letter-spacing:3.783808pt;}
.lse1_c00002{letter-spacing:3.794304pt;}
.ls4e5_c00002{letter-spacing:3.801600pt;}
.ls4ce_c00002{letter-spacing:3.808000pt;}
.ls4fd_c00002{letter-spacing:3.824960pt;}
.ls914_c00002{letter-spacing:3.825792pt;}
.ls53f_c00002{letter-spacing:3.826944pt;}
.ls935_c00002{letter-spacing:3.836288pt;}
.ls702_c00002{letter-spacing:3.840000pt;}
.ls52e_c00002{letter-spacing:3.848064pt;}
.ls58b_c00002{letter-spacing:3.848427pt;}
.ls5a7_c00002{letter-spacing:3.852288pt;}
.ls707_c00002{letter-spacing:3.862528pt;}
.ls52c_c00002{letter-spacing:3.872747pt;}
.ls3db_c00002{letter-spacing:3.873024pt;}
.ls534_c00002{letter-spacing:3.873280pt;}
.ls533_c00002{letter-spacing:3.873408pt;}
.ls706_c00002{letter-spacing:3.883520pt;}
.ls54e_c00002{letter-spacing:3.886080pt;}
.ls6a3_c00002{letter-spacing:3.888768pt;}
.ls280_c00002{letter-spacing:3.894016pt;}
.ls4e3_c00002{letter-spacing:3.894528pt;}
.ls54b_c00002{letter-spacing:3.895253pt;}
.ls77_c00002{letter-spacing:3.899264pt;}
.ls74_c00002{letter-spacing:3.904512pt;}
.ls339_c00002{letter-spacing:3.909760pt;}
.ls8db_c00002{letter-spacing:3.921898pt;}
.ls24b_c00002{letter-spacing:3.936000pt;}
.ls250_c00002{letter-spacing:3.946496pt;}
.ls64d_c00002{letter-spacing:3.951744pt;}
.ls20f_c00002{letter-spacing:3.962240pt;}
.ls524_c00002{letter-spacing:3.966336pt;}
.ls346_c00002{letter-spacing:3.967488pt;}
.ls7a7_c00002{letter-spacing:3.978240pt;}
.ls598_c00002{letter-spacing:3.981403pt;}
.ls343_c00002{letter-spacing:3.988480pt;}
.ls2e5_c00002{letter-spacing:3.993728pt;}
.ls827_c00002{letter-spacing:3.997631pt;}
.ls2e1_c00002{letter-spacing:4.014720pt;}
.ls76_c00002{letter-spacing:4.019269pt;}
.ls2ff_c00002{letter-spacing:4.019968pt;}
.ls264_c00002{letter-spacing:4.025216pt;}
.ls8e7_c00002{letter-spacing:4.030464pt;}
.ls66b_c00002{letter-spacing:4.032000pt;}
.ls2d8_c00002{letter-spacing:4.040960pt;}
.ls585_c00002{letter-spacing:4.057600pt;}
.ls2f2_c00002{letter-spacing:4.061952pt;}
.ls6a_c00002{letter-spacing:4.067200pt;}
.ls651_c00002{letter-spacing:4.096000pt;}
.ls172_c00002{letter-spacing:4.102400pt;}
.ls1c9_c00002{letter-spacing:4.103936pt;}
.ls1ff_c00002{letter-spacing:4.109184pt;}
.ls8d5_c00002{letter-spacing:4.119680pt;}
.ls8bc_c00002{letter-spacing:4.124928pt;}
.ls4ba_c00002{letter-spacing:4.134400pt;}
.ls98_c00002{letter-spacing:4.140672pt;}
.ls468_c00002{letter-spacing:4.140800pt;}
.ls1eb_c00002{letter-spacing:4.145920pt;}
.ls7b2_c00002{letter-spacing:4.148736pt;}
.ls64c_c00002{letter-spacing:4.151168pt;}
.ls7bf_c00002{letter-spacing:4.153472pt;}
.ls33b_c00002{letter-spacing:4.156416pt;}
.ls20_c00002{letter-spacing:4.162944pt;}
.ls8a9_c00002{letter-spacing:4.165326pt;}
.ls77d_c00002{letter-spacing:4.167680pt;}
.ls79c_c00002{letter-spacing:4.177152pt;}
.ls7c9_c00002{letter-spacing:4.181888pt;}
.ls806_c00002{letter-spacing:4.182656pt;}
.ls78_c00002{letter-spacing:4.187904pt;}
.ls4f6_c00002{letter-spacing:4.193152pt;}
.ls770_c00002{letter-spacing:4.196096pt;}
.ls42e_c00002{letter-spacing:4.198400pt;}
.ls430_c00002{letter-spacing:4.203648pt;}
.ls7a1_c00002{letter-spacing:4.205568pt;}
.ls793_c00002{letter-spacing:4.210304pt;}
.ls750_c00002{letter-spacing:4.215040pt;}
.ls6ac_c00002{letter-spacing:4.224000pt;}
.ls79e_c00002{letter-spacing:4.224512pt;}
.ls796_c00002{letter-spacing:4.229248pt;}
.ls18b_c00002{letter-spacing:4.229888pt;}
.ls779_c00002{letter-spacing:4.233984pt;}
.ls7ce_c00002{letter-spacing:4.238720pt;}
.ls79b_c00002{letter-spacing:4.243456pt;}
.ls3dc_c00002{letter-spacing:4.245632pt;}
.ls4c6_c00002{letter-spacing:4.250880pt;}
.ls7b6_c00002{letter-spacing:4.252928pt;}
.ls6b2_c00002{letter-spacing:4.256000pt;}
.ls781_c00002{letter-spacing:4.262400pt;}
.ls25c_c00002{letter-spacing:4.262697pt;}
.ls778_c00002{letter-spacing:4.267136pt;}
.ls38b_c00002{letter-spacing:4.268107pt;}
.ls786_c00002{letter-spacing:4.271872pt;}
.ls61_c00002{letter-spacing:4.292864pt;}
.ls316_c00002{letter-spacing:4.298112pt;}
.ls79d_c00002{letter-spacing:4.300288pt;}
.ls314_c00002{letter-spacing:4.303360pt;}
.ls771_c00002{letter-spacing:4.305024pt;}
.ls77c_c00002{letter-spacing:4.309760pt;}
.ls32a_c00002{letter-spacing:4.313600pt;}
.ls7b5_c00002{letter-spacing:4.323968pt;}
.ls3e_c00002{letter-spacing:4.338176pt;}
.ls80f_c00002{letter-spacing:4.340096pt;}
.ls19_c00002{letter-spacing:4.342675pt;}
.ls5cb_c00002{letter-spacing:4.352000pt;}
.ls780_c00002{letter-spacing:4.357120pt;}
.ls78f_c00002{letter-spacing:4.368896pt;}
.ls782_c00002{letter-spacing:4.376064pt;}
.ls2dd_c00002{letter-spacing:4.392576pt;}
.ls724_c00002{letter-spacing:4.392960pt;}
.ls7a0_c00002{letter-spacing:4.393581pt;}
.lse9_c00002{letter-spacing:4.403072pt;}
.ls799_c00002{letter-spacing:4.404480pt;}
.ls10d_c00002{letter-spacing:4.408320pt;}
.ls237_c00002{letter-spacing:4.412373pt;}
.ls217_c00002{letter-spacing:4.412907pt;}
.ls4a9_c00002{letter-spacing:4.412928pt;}
.ls42a_c00002{letter-spacing:4.416533pt;}
.ls905_c00002{letter-spacing:4.429312pt;}
.ls1a_c00002{letter-spacing:4.435912pt;}
.ls400_c00002{letter-spacing:4.439808pt;}
.ls168_c00002{letter-spacing:4.441600pt;}
.ls791_c00002{letter-spacing:4.447104pt;}
.ls798_c00002{letter-spacing:4.451840pt;}
.ls23d_c00002{letter-spacing:4.452864pt;}
.ls35d_c00002{letter-spacing:4.455552pt;}
.ls8_c00002{letter-spacing:4.460800pt;}
.ls6c1_c00002{letter-spacing:4.480000pt;}
.ls792_c00002{letter-spacing:4.480256pt;}
.ls79a_c00002{letter-spacing:4.499200pt;}
.ls80a_c00002{letter-spacing:4.502784pt;}
.ls26a_c00002{letter-spacing:4.508032pt;}
.ls942_c00002{letter-spacing:4.513280pt;}
.ls790_c00002{letter-spacing:4.513408pt;}
.ls7a3_c00002{letter-spacing:4.518144pt;}
.ls391_c00002{letter-spacing:4.534272pt;}
.ls28d_c00002{letter-spacing:4.548170pt;}
.ls8be_c00002{letter-spacing:4.554811pt;}
.ls5d6_c00002{letter-spacing:4.560853pt;}
.ls1ec_c00002{letter-spacing:4.565760pt;}
.ls1f0_c00002{letter-spacing:4.571008pt;}
.ls4d6_c00002{letter-spacing:4.577664pt;}
.ls805_c00002{letter-spacing:4.586752pt;}
.ls21e_c00002{letter-spacing:4.589907pt;}
.ls16a_c00002{letter-spacing:4.592000pt;}
.ls714_c00002{letter-spacing:4.592640pt;}
.ls661_c00002{letter-spacing:4.601600pt;}
.ls2e6_c00002{letter-spacing:4.602496pt;}
.ls659_c00002{letter-spacing:4.608000pt;}
.ls4bd_c00002{letter-spacing:4.617600pt;}
.ls1c7_c00002{letter-spacing:4.618240pt;}
.ls7a2_c00002{letter-spacing:4.622336pt;}
.ls4c0_c00002{letter-spacing:4.622592pt;}
.ls93b_c00002{letter-spacing:4.623488pt;}
.ls1ab_c00002{letter-spacing:4.632000pt;}
.ls1ca_c00002{letter-spacing:4.639232pt;}
.ls119_c00002{letter-spacing:4.644480pt;}
.ls118_c00002{letter-spacing:4.649728pt;}
.lse7_c00002{letter-spacing:4.660224pt;}
.lsd7_c00002{letter-spacing:4.662528pt;}
.ls4ee_c00002{letter-spacing:4.662827pt;}
.ls4ec_c00002{letter-spacing:4.663360pt;}
.ls59_c00002{letter-spacing:4.665472pt;}
.ls55_c00002{letter-spacing:4.670720pt;}
.ls24d_c00002{letter-spacing:4.681216pt;}
.ls1b0_c00002{letter-spacing:4.685760pt;}
.ls35e_c00002{letter-spacing:4.686464pt;}
.ls1b4_c00002{letter-spacing:4.688896pt;}
.ls1af_c00002{letter-spacing:4.693227pt;}
.ls258_c00002{letter-spacing:4.696960pt;}
.ls1e7_c00002{letter-spacing:4.700053pt;}
.ls140_c00002{letter-spacing:4.700868pt;}
.ls1e6_c00002{letter-spacing:4.702208pt;}
.ls5ff_c00002{letter-spacing:4.702464pt;}
.ls45e_c00002{letter-spacing:4.707456pt;}
.ls4db_c00002{letter-spacing:4.709440pt;}
.ls593_c00002{letter-spacing:4.709760pt;}
.ls49b_c00002{letter-spacing:4.710293pt;}
.ls592_c00002{letter-spacing:4.710827pt;}
.ls1aa_c00002{letter-spacing:4.711467pt;}
.ls29_c00002{letter-spacing:4.712704pt;}
.lsf5_c00002{letter-spacing:4.717952pt;}
.ls129_c00002{letter-spacing:4.718548pt;}
.ls9_c00002{letter-spacing:4.723200pt;}
.ls6ea_c00002{letter-spacing:4.727424pt;}
.ls2a0_c00002{letter-spacing:4.728448pt;}
.ls5f0_c00002{letter-spacing:4.730027pt;}
.ls12f_c00002{letter-spacing:4.733696pt;}
.ls1b6_c00002{letter-spacing:4.738347pt;}
.ls5fb_c00002{letter-spacing:4.738944pt;}
.ls57_c00002{letter-spacing:4.742400pt;}
.ls311_c00002{letter-spacing:4.744192pt;}
.ls537_c00002{letter-spacing:4.747392pt;}
.ls1c5_c00002{letter-spacing:4.754347pt;}
.ls2d6_c00002{letter-spacing:4.756800pt;}
.ls4ea_c00002{letter-spacing:4.758080pt;}
.ls4ef_c00002{letter-spacing:4.758613pt;}
.ls27_c00002{letter-spacing:4.759936pt;}
.ls1c6_c00002{letter-spacing:4.765184pt;}
.ls1b5_c00002{letter-spacing:4.765269pt;}
.ls0_c00002{letter-spacing:4.775680pt;}
.ls3a0_c00002{letter-spacing:4.786176pt;}
.ls429_c00002{letter-spacing:4.787328pt;}
.ls2a8_c00002{letter-spacing:4.791424pt;}
.ls1b1_c00002{letter-spacing:4.796672pt;}
.ls941_c00002{letter-spacing:4.798239pt;}
.ls44f_c00002{letter-spacing:4.800000pt;}
.ls189_c00002{letter-spacing:4.801920pt;}
.ls492_c00002{letter-spacing:4.803947pt;}
.ls49a_c00002{letter-spacing:4.804480pt;}
.ls1a4_c00002{letter-spacing:4.806024pt;}
.ls614_c00002{letter-spacing:4.809058pt;}
.ls58e_c00002{letter-spacing:4.813867pt;}
.ls58c_c00002{letter-spacing:4.814400pt;}
.ls596_c00002{letter-spacing:4.814933pt;}
.ls1a8_c00002{letter-spacing:4.817707pt;}
.ls36_c00002{letter-spacing:4.827264pt;}
.ls2_c00002{letter-spacing:4.828160pt;}
.ls709_c00002{letter-spacing:4.834240pt;}
.ls1ae_c00002{letter-spacing:4.837440pt;}
.ls94a_c00002{letter-spacing:4.838656pt;}
.ls1b8_c00002{letter-spacing:4.842027pt;}
.ls235_c00002{letter-spacing:4.842240pt;}
.ls1a9_c00002{letter-spacing:4.845035pt;}
.ls17d_c00002{letter-spacing:4.847189pt;}
.ls5e6_c00002{letter-spacing:4.849152pt;}
.ls713_c00002{letter-spacing:4.849707pt;}
.ls564_c00002{letter-spacing:4.852267pt;}
.ls617_c00002{letter-spacing:4.852335pt;}
.ls566_c00002{letter-spacing:4.852800pt;}
.ls25_c00002{letter-spacing:4.854400pt;}
.ls61e_c00002{letter-spacing:4.855259pt;}
.ls612_c00002{letter-spacing:4.857744pt;}
.lseb_c00002{letter-spacing:4.868563pt;}
.ls2b6_c00002{letter-spacing:4.875392pt;}
.ls1e4_c00002{letter-spacing:4.876907pt;}
.ls1ac_c00002{letter-spacing:4.877227pt;}
.ls4_c00002{letter-spacing:4.880640pt;}
.ls484_c00002{letter-spacing:4.885888pt;}
.lsb5_c00002{letter-spacing:4.888354pt;}
.ls5fa_c00002{letter-spacing:4.891136pt;}
.ls1a3_c00002{letter-spacing:4.893500pt;}
.ls720_c00002{letter-spacing:4.896000pt;}
.ls4b2_c00002{letter-spacing:4.896384pt;}
.ls499_c00002{letter-spacing:4.900053pt;}
.ls4e8_c00002{letter-spacing:4.900587pt;}
.ls5ae_c00002{letter-spacing:4.901120pt;}
.ls4dd_c00002{letter-spacing:4.901440pt;}
.lsa_c00002{letter-spacing:4.901632pt;}
.ls622_c00002{letter-spacing:4.906430pt;}
.ls575_c00002{letter-spacing:4.906880pt;}
.ls48_c00002{letter-spacing:4.912128pt;}
.ls4eb_c00002{letter-spacing:4.914027pt;}
.ls5b4_c00002{letter-spacing:4.914560pt;}
.ls58d_c00002{letter-spacing:4.915093pt;}
.ls1b3_c00002{letter-spacing:4.915627pt;}
.ls282_c00002{letter-spacing:4.917376pt;}
.ls7e_c00002{letter-spacing:4.922624pt;}
.ls403_c00002{letter-spacing:4.927872pt;}
.ls401_c00002{letter-spacing:4.933120pt;}
.ls402_c00002{letter-spacing:4.943616pt;}
.ls604_c00002{letter-spacing:4.947520pt;}
.ls4f_c00002{letter-spacing:4.948864pt;}
.ls620_c00002{letter-spacing:4.949706pt;}
.ls1d9_c00002{letter-spacing:4.952064pt;}
.ls404_c00002{letter-spacing:4.964608pt;}
.lsa4_c00002{letter-spacing:4.975104pt;}
.ls128_c00002{letter-spacing:4.975830pt;}
.lsa3_c00002{letter-spacing:4.985600pt;}
.ls5ee_c00002{letter-spacing:4.992000pt;}
.ls22d_c00002{letter-spacing:4.994133pt;}
.ls4dc_c00002{letter-spacing:4.994987pt;}
.ls5fc_c00002{letter-spacing:4.996096pt;}
.ls6b3_c00002{letter-spacing:4.998400pt;}
.ls24f_c00002{letter-spacing:5.001344pt;}
.ls60a_c00002{letter-spacing:5.003801pt;}
.ls205_c00002{letter-spacing:5.022336pt;}
.ls61d_c00002{letter-spacing:5.025439pt;}
.ls863_c00002{letter-spacing:5.032832pt;}
.ls362_c00002{letter-spacing:5.038080pt;}
.ls565_c00002{letter-spacing:5.041707pt;}
.ls4a4_c00002{letter-spacing:5.043328pt;}
.ls60d_c00002{letter-spacing:5.052487pt;}
.ls2bb_c00002{letter-spacing:5.059072pt;}
.ls33e_c00002{letter-spacing:5.064320pt;}
.ls5e_c00002{letter-spacing:5.068715pt;}
.ls24c_c00002{letter-spacing:5.080064pt;}
.ls89c_c00002{letter-spacing:5.085312pt;}
.ls5a_c00002{letter-spacing:5.090560pt;}
.ls613_c00002{letter-spacing:5.101172pt;}
.ls2fe_c00002{letter-spacing:5.106304pt;}
.ls865_c00002{letter-spacing:5.111552pt;}
.ls1e3_c00002{letter-spacing:5.117781pt;}
.ls48b_c00002{letter-spacing:5.120000pt;}
.ls8ec_c00002{letter-spacing:5.122048pt;}
.ls2e7_c00002{letter-spacing:5.127296pt;}
.ls668_c00002{letter-spacing:5.136107pt;}
.ls58a_c00002{letter-spacing:5.136960pt;}
.ls5b3_c00002{letter-spacing:5.137493pt;}
.ls174_c00002{letter-spacing:5.137792pt;}
.ls3ee_c00002{letter-spacing:5.139039pt;}
.ls1b9_c00002{letter-spacing:5.143040pt;}
.ls862_c00002{letter-spacing:5.144448pt;}
.ls7f6_c00002{letter-spacing:5.153536pt;}
.ls312_c00002{letter-spacing:5.156587pt;}
.ls7f3_c00002{letter-spacing:5.158784pt;}
.ls154_c00002{letter-spacing:5.166720pt;}
.ls1c1_c00002{letter-spacing:5.169280pt;}
.ls424_c00002{letter-spacing:5.171200pt;}
.ls7e1_c00002{letter-spacing:5.174528pt;}
.ls7ed_c00002{letter-spacing:5.179776pt;}
.ls47d_c00002{letter-spacing:5.184000pt;}
.ls149_c00002{letter-spacing:5.184533pt;}
.ls717_c00002{letter-spacing:5.185024pt;}
.ls8f1_c00002{letter-spacing:5.195520pt;}
.ls41f_c00002{letter-spacing:5.196800pt;}
.ls611_c00002{letter-spacing:5.198544pt;}
.ls91d_c00002{letter-spacing:5.211264pt;}
.ls427_c00002{letter-spacing:5.221760pt;}
.ls14b_c00002{letter-spacing:5.224320pt;}
.ls7ea_c00002{letter-spacing:5.242752pt;}
.ls618_c00002{letter-spacing:5.247229pt;}
.ls5e9_c00002{letter-spacing:5.248000pt;}
.ls21f_c00002{letter-spacing:5.254400pt;}
.ls90e_c00002{letter-spacing:5.258496pt;}
.ls228_c00002{letter-spacing:5.262933pt;}
.ls38d_c00002{letter-spacing:5.274133pt;}
.ls606_c00002{letter-spacing:5.278933pt;}
.ls5b0_c00002{letter-spacing:5.279488pt;}
.ls2d1_c00002{letter-spacing:5.280000pt;}
.lsde_c00002{letter-spacing:5.281067pt;}
.ls1c4_c00002{letter-spacing:5.284267pt;}
.ls2ca_c00002{letter-spacing:5.284736pt;}
.ls275_c00002{letter-spacing:5.285333pt;}
.lsc9_c00002{letter-spacing:5.286400pt;}
.ls137_c00002{letter-spacing:5.286933pt;}
.ls3a4_c00002{letter-spacing:5.287467pt;}
.ls1ba_c00002{letter-spacing:5.292800pt;}
.ls891_c00002{letter-spacing:5.295232pt;}
.ls3af_c00002{letter-spacing:5.295467pt;}
.ls616_c00002{letter-spacing:5.295915pt;}
.ls93_c00002{letter-spacing:5.296000pt;}
.ls589_c00002{letter-spacing:5.296533pt;}
.ls293_c00002{letter-spacing:5.297600pt;}
.ls329_c00002{letter-spacing:5.298133pt;}
.ls153_c00002{letter-spacing:5.299200pt;}
.ls12c_c00002{letter-spacing:5.300267pt;}
.ls40a_c00002{letter-spacing:5.300480pt;}
.lsd3_c00002{letter-spacing:5.300800pt;}
.ls133_c00002{letter-spacing:5.301333pt;}
.ls19a_c00002{letter-spacing:5.303467pt;}
.ls22a_c00002{letter-spacing:5.304533pt;}
.ls34a_c00002{letter-spacing:5.305067pt;}
.ls26e_c00002{letter-spacing:5.305600pt;}
.ls9c_c00002{letter-spacing:5.306133pt;}
.ls134_c00002{letter-spacing:5.306667pt;}
.ls476_c00002{letter-spacing:5.307733pt;}
.ls71_c00002{letter-spacing:5.308267pt;}
.ls4a8_c00002{letter-spacing:5.308800pt;}
.ls1a1_c00002{letter-spacing:5.309333pt;}
.ls30b_c00002{letter-spacing:5.309867pt;}
.ls219_c00002{letter-spacing:5.310400pt;}
.ls218_c00002{letter-spacing:5.310933pt;}
.ls1db_c00002{letter-spacing:5.310976pt;}
.ls15_c00002{letter-spacing:5.311467pt;}
.ls21_c00002{letter-spacing:5.312000pt;}
.ls285_c00002{letter-spacing:5.313600pt;}
.ls277_c00002{letter-spacing:5.314133pt;}
.ls234_c00002{letter-spacing:5.314667pt;}
.ls63_c00002{letter-spacing:5.315733pt;}
.lsae_c00002{letter-spacing:5.316800pt;}
.ls1a6_c00002{letter-spacing:5.317867pt;}
.lse3_c00002{letter-spacing:5.318400pt;}
.ls17c_c00002{letter-spacing:5.319467pt;}
.ls121_c00002{letter-spacing:5.320533pt;}
.ls289_c00002{letter-spacing:5.321067pt;}
.lsb9_c00002{letter-spacing:5.322133pt;}
.ls396_c00002{letter-spacing:5.324267pt;}
.ls29a_c00002{letter-spacing:5.324800pt;}
.ls28b_c00002{letter-spacing:5.325333pt;}
.ls353_c00002{letter-spacing:5.325867pt;}
.ls394_c00002{letter-spacing:5.326400pt;}
.ls291_c00002{letter-spacing:5.326933pt;}
.ls3bc_c00002{letter-spacing:5.327467pt;}
.ls226_c00002{letter-spacing:5.328533pt;}
.ls16d_c00002{letter-spacing:5.330667pt;}
.lse8_c00002{letter-spacing:5.331200pt;}
.ls209_c00002{letter-spacing:5.331733pt;}
.ls65b_c00002{letter-spacing:5.334400pt;}
.ls2d5_c00002{letter-spacing:5.337600pt;}
.ls1de_c00002{letter-spacing:5.339733pt;}
.ls428_c00002{letter-spacing:5.341333pt;}
.ls870_c00002{letter-spacing:5.342464pt;}
.lsc1_c00002{letter-spacing:5.344000pt;}
.ls9f_c00002{letter-spacing:5.347200pt;}
.ls88d_c00002{letter-spacing:5.347712pt;}
.ls423_c00002{letter-spacing:5.349867pt;}
.lsc5_c00002{letter-spacing:5.356800pt;}
.lsbd_c00002{letter-spacing:5.364800pt;}
.ls91e_c00002{letter-spacing:5.371648pt;}
.lsc7_c00002{letter-spacing:5.376000pt;}
.ls27b_c00002{letter-spacing:5.382400pt;}
.ls82d_c00002{letter-spacing:5.384448pt;}
.ls29e_c00002{letter-spacing:5.388800pt;}
.ls938_c00002{letter-spacing:5.389696pt;}
.ls32b_c00002{letter-spacing:5.440000pt;}
.ls621_c00002{letter-spacing:5.441972pt;}
.lse4_c00002{letter-spacing:5.444800pt;}
.ls1da_c00002{letter-spacing:5.457920pt;}
.ls2bf_c00002{letter-spacing:5.458200pt;}
.ls447_c00002{letter-spacing:5.460480pt;}
.lscf_c00002{letter-spacing:5.474385pt;}
.ls176_c00002{letter-spacing:5.474935pt;}
.ls23_c00002{letter-spacing:5.475484pt;}
.ls306_c00002{letter-spacing:5.478912pt;}
.ls370_c00002{letter-spacing:5.484160pt;}
.lsf9_c00002{letter-spacing:5.489408pt;}
.lsb4_c00002{letter-spacing:5.493626pt;}
.ls216_c00002{letter-spacing:5.495825pt;}
.ls236_c00002{letter-spacing:5.496375pt;}
.ls123_c00002{letter-spacing:5.499673pt;}
.ls72f_c00002{letter-spacing:5.504000pt;}
.ls950_c00002{letter-spacing:5.510400pt;}
.ls92d_c00002{letter-spacing:5.512295pt;}
.ls906_c00002{letter-spacing:5.515648pt;}
.ls3fc_c00002{letter-spacing:5.544752pt;}
.ls5a5_c00002{letter-spacing:5.547136pt;}
.ls4c7_c00002{letter-spacing:5.555200pt;}
.ls8ca_c00002{letter-spacing:5.562880pt;}
.ls16c_c00002{letter-spacing:5.568000pt;}
.ls270_c00002{letter-spacing:5.569067pt;}
.ls57c_c00002{letter-spacing:5.574400pt;}
.ls3d3_c00002{letter-spacing:5.578624pt;}
.ls33_c00002{letter-spacing:5.594368pt;}
.ls99_c00002{letter-spacing:5.599616pt;}
.ls93f_c00002{letter-spacing:5.606324pt;}
.ls338_c00002{letter-spacing:5.610112pt;}
.ls335_c00002{letter-spacing:5.615360pt;}
.ls2c8_c00002{letter-spacing:5.620608pt;}
.ls12e_c00002{letter-spacing:5.620800pt;}
.ls26c_c00002{letter-spacing:5.625856pt;}
.ls7e8_c00002{letter-spacing:5.631104pt;}
.ls3f4_c00002{letter-spacing:5.631467pt;}
.ls5dc_c00002{letter-spacing:5.632000pt;}
.ls8c8_c00002{letter-spacing:5.646848pt;}
.ls1a5_c00002{letter-spacing:5.662592pt;}
.ls3ce_c00002{letter-spacing:5.663979pt;}
.ls33f_c00002{letter-spacing:5.667840pt;}
.ls103_c00002{letter-spacing:5.688832pt;}
.ls334_c00002{letter-spacing:5.696000pt;}
.ls152_c00002{letter-spacing:5.702400pt;}
.ls122_c00002{letter-spacing:5.709824pt;}
.ls181_c00002{letter-spacing:5.713600pt;}
.ls908_c00002{letter-spacing:5.720320pt;}
.ls474_c00002{letter-spacing:5.734400pt;}
.ls698_c00002{letter-spacing:5.740800pt;}
.ls7f5_c00002{letter-spacing:5.751808pt;}
.ls1c3_c00002{letter-spacing:5.755733pt;}
.ls4a2_c00002{letter-spacing:5.767552pt;}
.ls2a5_c00002{letter-spacing:5.772800pt;}
.ls3cc_c00002{letter-spacing:5.806080pt;}
.ls644_c00002{letter-spacing:5.811200pt;}
.ls452_c00002{letter-spacing:5.812992pt;}
.ls33d_c00002{letter-spacing:5.824000pt;}
.ls3cd_c00002{letter-spacing:5.826816pt;}
.ls449_c00002{letter-spacing:5.840640pt;}
.ls494_c00002{letter-spacing:5.843200pt;}
.ls8cf_c00002{letter-spacing:5.862016pt;}
.ls4b_c00002{letter-spacing:5.867264pt;}
.ls4bf_c00002{letter-spacing:5.882112pt;}
.ls55b_c00002{letter-spacing:5.888000pt;}
.ls816_c00002{letter-spacing:5.893504pt;}
.ls44a_c00002{letter-spacing:5.895936pt;}
.ls6b6_c00002{letter-spacing:5.898752pt;}
.ls2c5_c00002{letter-spacing:5.904000pt;}
.ls44c_c00002{letter-spacing:5.909760pt;}
.ls44e_c00002{letter-spacing:5.916672pt;}
.ls568_c00002{letter-spacing:5.930496pt;}
.ls2d3_c00002{letter-spacing:5.930667pt;}
.ls3b1_c00002{letter-spacing:5.942400pt;}
.ls600_c00002{letter-spacing:5.951232pt;}
.ls30e_c00002{letter-spacing:5.951467pt;}
.ls420_c00002{letter-spacing:5.952000pt;}
.ls59b_c00002{letter-spacing:5.966695pt;}
.ls6a9_c00002{letter-spacing:5.977472pt;}
.ls301_c00002{letter-spacing:6.016000pt;}
.ls39d_c00002{letter-spacing:6.035200pt;}
.ls7dc_c00002{letter-spacing:6.042428pt;}
.ls3a2_c00002{letter-spacing:6.045696pt;}
.ls412_c00002{letter-spacing:6.064066pt;}
.ls3df_c00002{letter-spacing:6.066688pt;}
.lsc4_c00002{letter-spacing:6.071936pt;}
.ls4d8_c00002{letter-spacing:6.073600pt;}
.ls940_c00002{letter-spacing:6.077184pt;}
.ls5ec_c00002{letter-spacing:6.080000pt;}
.ls82f_c00002{letter-spacing:6.082432pt;}
.ls127_c00002{letter-spacing:6.087680pt;}
.ls1cd_c00002{letter-spacing:6.096523pt;}
.ls23f_c00002{letter-spacing:6.098176pt;}
.ls8d9_c00002{letter-spacing:6.103424pt;}
.ls84_c00002{letter-spacing:6.108672pt;}
.ls7d4_c00002{letter-spacing:6.113920pt;}
.ls5ac_c00002{letter-spacing:6.118161pt;}
.ls81e_c00002{letter-spacing:6.119168pt;}
.ls101_c00002{letter-spacing:6.129664pt;}
.ls727_c00002{letter-spacing:6.131200pt;}
.ls2fc_c00002{letter-spacing:6.144533pt;}
.ls38f_c00002{letter-spacing:6.150400pt;}
.ls3aa_c00002{letter-spacing:6.192640pt;}
.ls610_c00002{letter-spacing:6.193894pt;}
.ls3a9_c00002{letter-spacing:6.197888pt;}
.ls461_c00002{letter-spacing:6.208000pt;}
.ls3e9_c00002{letter-spacing:6.266112pt;}
.ls7d1_c00002{letter-spacing:6.276608pt;}
.ls191_c00002{letter-spacing:6.281856pt;}
.ls202_c00002{letter-spacing:6.287104pt;}
.ls201_c00002{letter-spacing:6.292352pt;}
.ls8a_c00002{letter-spacing:6.296675pt;}
.ls82_c00002{letter-spacing:6.297600pt;}
.ls6b8_c00002{letter-spacing:6.302848pt;}
.ls810_c00002{letter-spacing:6.308096pt;}
.ls8f0_c00002{letter-spacing:6.312904pt;}
.ls2f1_c00002{letter-spacing:6.313344pt;}
.ls3a1_c00002{letter-spacing:6.323840pt;}
.ls41d_c00002{letter-spacing:6.329088pt;}
.ls8b9_c00002{letter-spacing:6.339584pt;}
.ls324_c00002{letter-spacing:6.355328pt;}
.ls323_c00002{letter-spacing:6.360576pt;}
.ls325_c00002{letter-spacing:6.381568pt;}
.ls7e2_c00002{letter-spacing:6.392064pt;}
.ls51_c00002{letter-spacing:6.400000pt;}
.ls320_c00002{letter-spacing:6.402560pt;}
.ls64a_c00002{letter-spacing:6.418304pt;}
.ls1cc_c00002{letter-spacing:6.434048pt;}
.ls1b7_c00002{letter-spacing:6.455040pt;}
.ls570_c00002{letter-spacing:6.460288pt;}
.ls34b_c00002{letter-spacing:6.464000pt;}
.ls193_c00002{letter-spacing:6.469779pt;}
.ls192_c00002{letter-spacing:6.475189pt;}
.ls4d_c00002{letter-spacing:6.491776pt;}
.ls10f_c00002{letter-spacing:6.518016pt;}
.ls6c0_c00002{letter-spacing:6.533760pt;}
.ls800_c00002{letter-spacing:6.539008pt;}
.ls8ce_c00002{letter-spacing:6.544256pt;}
.ls3d5_c00002{letter-spacing:6.554752pt;}
.ls8f7_c00002{letter-spacing:6.570496pt;}
.ls6d3_c00002{letter-spacing:6.586240pt;}
.ls8ae_c00002{letter-spacing:6.591488pt;}
.ls5f2_c00002{letter-spacing:6.592000pt;}
.ls7d3_c00002{letter-spacing:6.597120pt;}
.ls854_c00002{letter-spacing:6.601984pt;}
.ls9d_c00002{letter-spacing:6.612480pt;}
.ls11b_c00002{letter-spacing:6.628224pt;}
.ls636_c00002{letter-spacing:6.643200pt;}
.ls3f3_c00002{letter-spacing:6.643968pt;}
.ls432_c00002{letter-spacing:6.646666pt;}
.ls1dc_c00002{letter-spacing:6.659712pt;}
.ls69b_c00002{letter-spacing:6.662400pt;}
.ls1d8_c00002{letter-spacing:6.664960pt;}
.ls5b9_c00002{letter-spacing:6.675200pt;}
.lsf6_c00002{letter-spacing:6.685952pt;}
.ls6d0_c00002{letter-spacing:6.688000pt;}
.ls438_c00002{letter-spacing:6.691200pt;}
.ls147_c00002{letter-spacing:6.697243pt;}
.ls10e_c00002{letter-spacing:6.718617pt;}
.ls46c_c00002{letter-spacing:6.720000pt;}
.ls88_c00002{letter-spacing:6.722688pt;}
.ls4b7_c00002{letter-spacing:6.739200pt;}
.ls43e_c00002{letter-spacing:6.743040pt;}
.ls5e1_c00002{letter-spacing:6.769920pt;}
.ls260_c00002{letter-spacing:6.784000pt;}
.ls7e6_c00002{letter-spacing:6.806656pt;}
.ls105_c00002{letter-spacing:6.832896pt;}
.ls2cd_c00002{letter-spacing:6.843392pt;}
.ls677_c00002{letter-spacing:6.848000pt;}
.lsc3_c00002{letter-spacing:6.854400pt;}
.ls43a_c00002{letter-spacing:6.865920pt;}
.ls337_c00002{letter-spacing:6.874880pt;}
.lsd8_c00002{letter-spacing:6.880000pt;}
.ls88c_c00002{letter-spacing:6.880128pt;}
.ls2b1_c00002{letter-spacing:6.885376pt;}
.ls8d7_c00002{letter-spacing:6.890624pt;}
.ls47b_c00002{letter-spacing:6.901120pt;}
.ls2b0_c00002{letter-spacing:6.958848pt;}
.ls300_c00002{letter-spacing:6.964096pt;}
.ls927_c00002{letter-spacing:6.969344pt;}
.ls3f2_c00002{letter-spacing:6.974592pt;}
.ls156_c00002{letter-spacing:6.979840pt;}
.ls879_c00002{letter-spacing:6.990336pt;}
.ls43f_c00002{letter-spacing:7.013897pt;}
.ls18_c00002{letter-spacing:7.023353pt;}
.ls17_c00002{letter-spacing:7.023903pt;}
.ls16_c00002{letter-spacing:7.024453pt;}
.ls213_c00002{letter-spacing:7.037568pt;}
.ls26f_c00002{letter-spacing:7.041385pt;}
.ls473_c00002{letter-spacing:7.078400pt;}
.ls383_c00002{letter-spacing:7.084800pt;}
.ls6d7_c00002{letter-spacing:7.090048pt;}
.ls389_c00002{letter-spacing:7.095296pt;}
.ls8c1_c00002{letter-spacing:7.097283pt;}
.ls7d9_c00002{letter-spacing:7.111040pt;}
.ls85a_c00002{letter-spacing:7.124331pt;}
.ls246_c00002{letter-spacing:7.142528pt;}
.ls25d_c00002{letter-spacing:7.153024pt;}
.ls6bc_c00002{letter-spacing:7.174016pt;}
.ls7f0_c00002{letter-spacing:7.184512pt;}
.ls62a_c00002{letter-spacing:7.189760pt;}
.ls111_c00002{letter-spacing:7.221248pt;}
.ls625_c00002{letter-spacing:7.232000pt;}
.ls2bc_c00002{letter-spacing:7.236992pt;}
.ls8c2_c00002{letter-spacing:7.242240pt;}
.ls2ac_c00002{letter-spacing:7.278976pt;}
.ls330_c00002{letter-spacing:7.284224pt;}
.ls2e2_c00002{letter-spacing:7.289472pt;}
.ls2da_c00002{letter-spacing:7.294720pt;}
.ls8bf_c00002{letter-spacing:7.299968pt;}
.ls475_c00002{letter-spacing:7.308800pt;}
.ls41e_c00002{letter-spacing:7.310464pt;}
.ls451_c00002{letter-spacing:7.315968pt;}
.ls44d_c00002{letter-spacing:7.319360pt;}
.ls19b_c00002{letter-spacing:7.331456pt;}
.ls739_c00002{letter-spacing:7.340267pt;}
.ls8c4_c00002{letter-spacing:7.341952pt;}
.ls1e2_c00002{letter-spacing:7.347200pt;}
.ls453_c00002{letter-spacing:7.349760pt;}
.ls6e9_c00002{letter-spacing:7.360000pt;}
.ls204_c00002{letter-spacing:7.362944pt;}
.ls8c0_c00002{letter-spacing:7.378688pt;}
.ls5f_c00002{letter-spacing:7.399680pt;}
.ls83a_c00002{letter-spacing:7.405625pt;}
.ls8d8_c00002{letter-spacing:7.410176pt;}
.ls32f_c00002{letter-spacing:7.411200pt;}
.ls6bf_c00002{letter-spacing:7.424000pt;}
.ls62e_c00002{letter-spacing:7.432673pt;}
.ls62d_c00002{letter-spacing:7.438083pt;}
.ls112_c00002{letter-spacing:7.443492pt;}
.ls1f5_c00002{letter-spacing:7.467904pt;}
.lsca_c00002{letter-spacing:7.468800pt;}
.ls126_c00002{letter-spacing:7.479534pt;}
.ls5c8_c00002{letter-spacing:7.483648pt;}
.ls6c2_c00002{letter-spacing:7.488000pt;}
.ls20d_c00002{letter-spacing:7.488896pt;}
.ls7db_c00002{letter-spacing:7.494144pt;}
.ls445_c00002{letter-spacing:7.496576pt;}
.ls308_c00002{letter-spacing:7.504640pt;}
.ls588_c00002{letter-spacing:7.514773pt;}
.ls166_c00002{letter-spacing:7.525632pt;}
.ls567_c00002{letter-spacing:7.532267pt;}
.ls1bc_c00002{letter-spacing:7.541376pt;}
.ls1bb_c00002{letter-spacing:7.546624pt;}
.ls6fe_c00002{letter-spacing:7.548587pt;}
.ls450_c00002{letter-spacing:7.552512pt;}
.ls909_c00002{letter-spacing:7.557120pt;}
.ls8ea_c00002{letter-spacing:7.562368pt;}
.ls68e_c00002{letter-spacing:7.582080pt;}
.lsf7_c00002{letter-spacing:7.588608pt;}
.ls6a1_c00002{letter-spacing:7.593856pt;}
.ls72c_c00002{letter-spacing:7.616000pt;}
.ls489_c00002{letter-spacing:7.628800pt;}
.ls478_c00002{letter-spacing:7.656640pt;}
.ls34e_c00002{letter-spacing:7.667328pt;}
.ls4a1_c00002{letter-spacing:7.672576pt;}
.ls4a7_c00002{letter-spacing:7.677824pt;}
.ls6ff_c00002{letter-spacing:7.678080pt;}
.ls4be_c00002{letter-spacing:7.678720pt;}
.ls67d_c00002{letter-spacing:7.680000pt;}
.ls688_c00002{letter-spacing:7.692800pt;}
.ls732_c00002{letter-spacing:7.692907pt;}
.ls736_c00002{letter-spacing:7.698240pt;}
.ls8d4_c00002{letter-spacing:7.704064pt;}
.ls8f3_c00002{letter-spacing:7.708558pt;}
.ls90a_c00002{letter-spacing:7.709312pt;}
.ls44b_c00002{letter-spacing:7.712960pt;}
.ls93c_c00002{letter-spacing:7.714560pt;}
.ls85d_c00002{letter-spacing:7.730196pt;}
.ls1f7_c00002{letter-spacing:7.744000pt;}
.ls106_c00002{letter-spacing:7.746048pt;}
.ls33a_c00002{letter-spacing:7.751296pt;}
.ls224_c00002{letter-spacing:7.767040pt;}
.ls487_c00002{letter-spacing:7.776000pt;}
.ls888_c00002{letter-spacing:7.777536pt;}
.ls5de_c00002{letter-spacing:7.784423pt;}
.ls5fd_c00002{letter-spacing:7.802880pt;}
.ls949_c00002{letter-spacing:7.819520pt;}
.ls321_c00002{letter-spacing:7.830016pt;}
.ls6d9_c00002{letter-spacing:7.851008pt;}
.ls2a9_c00002{letter-spacing:7.856256pt;}
.ls4bb_c00002{letter-spacing:7.865600pt;}
.ls2a1_c00002{letter-spacing:7.872000pt;}
.ls3ae_c00002{letter-spacing:7.877248pt;}
.ls414_c00002{letter-spacing:7.887072pt;}
.ls82a_c00002{letter-spacing:7.887744pt;}
.ls31e_c00002{letter-spacing:7.898240pt;}
.ls894_c00002{letter-spacing:7.919232pt;}
.ls11c_c00002{letter-spacing:7.924480pt;}
.ls7d5_c00002{letter-spacing:7.929728pt;}
.ls85e_c00002{letter-spacing:7.966464pt;}
.ls43c_c00002{letter-spacing:7.966933pt;}
.ls439_c00002{letter-spacing:7.967467pt;}
.ls43d_c00002{letter-spacing:7.968000pt;}
.ls351_c00002{letter-spacing:7.971712pt;}
.ls477_c00002{letter-spacing:7.976960pt;}
.ls861_c00002{letter-spacing:7.997952pt;}
.ls462_c00002{letter-spacing:8.000000pt;}
.ls7f_c00002{letter-spacing:8.003200pt;}
.ls43b_c00002{letter-spacing:8.011200pt;}
.ls8fa_c00002{letter-spacing:8.018944pt;}
.ls7_c00002{letter-spacing:8.029440pt;}
.lsd9_c00002{letter-spacing:8.064000pt;}
.ls81f_c00002{letter-spacing:8.066176pt;}
.ls1ef_c00002{letter-spacing:8.071424pt;}
.ls198_c00002{letter-spacing:8.076672pt;}
.ls472_c00002{letter-spacing:8.076800pt;}
.ls1ea_c00002{letter-spacing:8.081920pt;}
.ls4a3_c00002{letter-spacing:8.092416pt;}
.ls7d_c00002{letter-spacing:8.102400pt;}
.ls4e_c00002{letter-spacing:8.108160pt;}
.ls61b_c00002{letter-spacing:8.128000pt;}
.ls8a5_c00002{letter-spacing:8.165888pt;}
.ls276_c00002{letter-spacing:8.179186pt;}
.ls463_c00002{letter-spacing:8.192000pt;}
.ls87d_c00002{letter-spacing:8.192128pt;}
.ls8af_c00002{letter-spacing:8.197376pt;}
.ls660_c00002{letter-spacing:8.202027pt;}
.ls919_c00002{letter-spacing:8.202624pt;}
.ls94f_c00002{letter-spacing:8.207872pt;}
.ls80e_c00002{letter-spacing:8.213120pt;}
.ls247_c00002{letter-spacing:8.222462pt;}
.ls371_c00002{letter-spacing:8.228864pt;}
.ls465_c00002{letter-spacing:8.239360pt;}
.ls5c4_c00002{letter-spacing:8.249856pt;}
.ls6db_c00002{letter-spacing:8.255104pt;}
.ls63e_c00002{letter-spacing:8.256000pt;}
.ls5f4_c00002{letter-spacing:8.291840pt;}
.ls71d_c00002{letter-spacing:8.294400pt;}
.ls410_c00002{letter-spacing:8.344320pt;}
.ls41c_c00002{letter-spacing:8.370560pt;}
.ls87f_c00002{letter-spacing:8.375808pt;}
.ls36b_c00002{letter-spacing:8.384000pt;}
.ls7e3_c00002{letter-spacing:8.386304pt;}
.ls36e_c00002{letter-spacing:8.435200pt;}
.ls2ea_c00002{letter-spacing:8.448000pt;}
.ls833_c00002{letter-spacing:8.449280pt;}
.ls36f_c00002{letter-spacing:8.480768pt;}
.ls8ad_c00002{letter-spacing:8.486016pt;}
.ls947_c00002{letter-spacing:8.496512pt;}
.ls838_c00002{letter-spacing:8.538496pt;}
.ls253_c00002{letter-spacing:8.576000pt;}
.ls39e_c00002{letter-spacing:8.606720pt;}
.ls415_c00002{letter-spacing:8.632960pt;}
.ls254_c00002{letter-spacing:8.640000pt;}
.ls8d1_c00002{letter-spacing:8.653952pt;}
.ls425_c00002{letter-spacing:8.665600pt;}
.ls2ae_c00002{letter-spacing:8.674944pt;}
.ls27f_c00002{letter-spacing:8.680192pt;}
.ls357_c00002{letter-spacing:8.690688pt;}
.ls366_c00002{letter-spacing:8.704000pt;}
.ls19d_c00002{letter-spacing:8.727424pt;}
.ls6f0_c00002{letter-spacing:8.729600pt;}
.ls801_c00002{letter-spacing:8.730957pt;}
.ls6a7_c00002{letter-spacing:8.793600pt;}
.ls3b8_c00002{letter-spacing:8.800357pt;}
.ls322_c00002{letter-spacing:8.811392pt;}
.ls5f6_c00002{letter-spacing:8.832000pt;}
.ls676_c00002{letter-spacing:8.832384pt;}
.ls8d2_c00002{letter-spacing:8.842880pt;}
.ls811_c00002{letter-spacing:8.844556pt;}
.ls635_c00002{letter-spacing:8.848128pt;}
.ls220_c00002{letter-spacing:8.858624pt;}
.ls4ad_c00002{letter-spacing:8.869120pt;}
.ls4af_c00002{letter-spacing:8.879616pt;}
.ls7e4_c00002{letter-spacing:8.895360pt;}
.ls11f_c00002{letter-spacing:8.916352pt;}
.ls5c7_c00002{letter-spacing:8.958336pt;}
.ls4d1_c00002{letter-spacing:8.960000pt;}
.ls62f_c00002{letter-spacing:8.974080pt;}
.ls5c9_c00002{letter-spacing:9.024000pt;}
.ls223_c00002{letter-spacing:9.026560pt;}
.ls225_c00002{letter-spacing:9.052800pt;}
.ls7d6_c00002{letter-spacing:9.058048pt;}
.ls633_c00002{letter-spacing:9.063296pt;}
.ls7f9_c00002{letter-spacing:9.068544pt;}
.ls903_c00002{letter-spacing:9.073792pt;}
.ls912_c00002{letter-spacing:9.079040pt;}
.ls926_c00002{letter-spacing:9.115032pt;}
.ls7be_c00002{letter-spacing:9.135744pt;}
.ls24a_c00002{letter-spacing:9.189248pt;}
.ls4c8_c00002{letter-spacing:9.203200pt;}
.ls249_c00002{letter-spacing:9.236480pt;}
.ls4f5_c00002{letter-spacing:9.262720pt;}
.ls341_c00002{letter-spacing:9.273216pt;}
.ls305_c00002{letter-spacing:9.283712pt;}
.ls915_c00002{letter-spacing:9.288960pt;}
.ls850_c00002{letter-spacing:9.309952pt;}
.ls839_c00002{letter-spacing:9.320448pt;}
.ls7df_c00002{letter-spacing:9.331413pt;}
.ls1f1_c00002{letter-spacing:9.341440pt;}
.ls368_c00002{letter-spacing:9.344000pt;}
.ls730_c00002{letter-spacing:9.346240pt;}
.ls1f3_c00002{letter-spacing:9.346688pt;}
.ls208_c00002{letter-spacing:9.407278pt;}
.ls367_c00002{letter-spacing:9.408000pt;}
.ls257_c00002{letter-spacing:9.446400pt;}
.ls3a7_c00002{letter-spacing:9.451648pt;}
.ls25f_c00002{letter-spacing:9.456896pt;}
.ls7fe_c00002{letter-spacing:9.462144pt;}
.ls8e2_c00002{letter-spacing:9.493632pt;}
.ls2b7_c00002{letter-spacing:9.498880pt;}
.ls269_c00002{letter-spacing:9.509376pt;}
.ls37f_c00002{letter-spacing:9.514624pt;}
.ls1e1_c00002{letter-spacing:9.530368pt;}
.ls369_c00002{letter-spacing:9.536000pt;}
.ls3ac_c00002{letter-spacing:9.561856pt;}
.ls8ba_c00002{letter-spacing:9.564022pt;}
.ls84d_c00002{letter-spacing:9.567104pt;}
.ls549_c00002{letter-spacing:9.580032pt;}
.ls8b7_c00002{letter-spacing:9.585660pt;}
.ls715_c00002{letter-spacing:9.593600pt;}
.ls5e7_c00002{letter-spacing:9.600000pt;}
.ls108_c00002{letter-spacing:9.645824pt;}
.ls5d_c00002{letter-spacing:9.656320pt;}
.ls436_c00002{letter-spacing:9.664000pt;}
.ls267_c00002{letter-spacing:9.666816pt;}
.ls190_c00002{letter-spacing:9.703552pt;}
.ls728_c00002{letter-spacing:9.728000pt;}
.ls823_c00002{letter-spacing:9.735040pt;}
.ls406_c00002{letter-spacing:9.745536pt;}
.ls416_c00002{letter-spacing:9.777024pt;}
.ls7bc_c00002{letter-spacing:9.783041pt;}
.ls418_c00002{letter-spacing:9.798016pt;}
.ls408_c00002{letter-spacing:9.800960pt;}
.ls409_c00002{letter-spacing:9.813760pt;}
.ls81c_c00002{letter-spacing:9.845248pt;}
.ls93a_c00002{letter-spacing:9.850726pt;}
.ls16b_c00002{letter-spacing:9.855744pt;}
.ls304_c00002{letter-spacing:9.887232pt;}
.ls12a_c00002{letter-spacing:9.892480pt;}
.ls8a8_c00002{letter-spacing:9.913472pt;}
.ls23e_c00002{letter-spacing:9.926400pt;}
.ls819_c00002{letter-spacing:9.965952pt;}
.ls263_c00002{letter-spacing:9.971200pt;}
.ls297_c00002{letter-spacing:9.976448pt;}
.ls45b_c00002{letter-spacing:10.023680pt;}
.ls7f8_c00002{letter-spacing:10.055168pt;}
.ls6b7_c00002{letter-spacing:10.060416pt;}
.ls849_c00002{letter-spacing:10.072516pt;}
.ls815_c00002{letter-spacing:10.097152pt;}
.ls457_c00002{letter-spacing:10.112000pt;}
.ls8f8_c00002{letter-spacing:10.123392pt;}
.ls548_c00002{letter-spacing:10.175616pt;}
.ls65d_c00002{letter-spacing:10.176000pt;}
.ls921_c00002{letter-spacing:10.212608pt;}
.ls91f_c00002{letter-spacing:10.217856pt;}
.ls8a7_c00002{letter-spacing:10.218573pt;}
.ls5a2_c00002{letter-spacing:10.261849pt;}
.ls804_c00002{letter-spacing:10.278078pt;}
.ls858_c00002{letter-spacing:10.280832pt;}
.ls4c_c00002{letter-spacing:10.291328pt;}
.ls210_c00002{letter-spacing:10.312320pt;}
.ls802_c00002{letter-spacing:10.328064pt;}
.ls923_c00002{letter-spacing:10.333312pt;}
.ls5c_c00002{letter-spacing:10.349056pt;}
.ls1ad_c00002{letter-spacing:10.391040pt;}
.ls496_c00002{letter-spacing:10.433024pt;}
.ls844_c00002{letter-spacing:10.443520pt;}
.ls3ab_c00002{letter-spacing:10.469760pt;}
.ls920_c00002{letter-spacing:10.532325pt;}
.ls1f6_c00002{letter-spacing:10.532736pt;}
.ls91a_c00002{letter-spacing:10.558976pt;}
.ls841_c00002{letter-spacing:10.632448pt;}
.ls8fe_c00002{letter-spacing:10.653440pt;}
.ls8a6_c00002{letter-spacing:10.656744pt;}
.ls6a2_c00002{letter-spacing:10.658688pt;}
.ls8de_c00002{letter-spacing:10.663936pt;}
.ls70c_c00002{letter-spacing:10.674432pt;}
.ls9a_c00002{letter-spacing:10.679680pt;}
.ls6ef_c00002{letter-spacing:10.732800pt;}
.ls89a_c00002{letter-spacing:10.737408pt;}
.ls1d7_c00002{letter-spacing:10.758400pt;}
.ls60e_c00002{letter-spacing:10.789888pt;}
.ls8fb_c00002{letter-spacing:10.795136pt;}
.ls1c0_c00002{letter-spacing:10.863360pt;}
.ls36a_c00002{letter-spacing:10.880000pt;}
.ls8e9_c00002{letter-spacing:10.884352pt;}
.ls26b_c00002{letter-spacing:10.900096pt;}
.ls540_c00002{letter-spacing:10.915477pt;}
.ls55e_c00002{letter-spacing:10.944000pt;}
.ls887_c00002{letter-spacing:10.973568pt;}
.ls2d0_c00002{letter-spacing:11.008000pt;}
.ls1df_c00002{letter-spacing:11.041792pt;}
.ls6e2_c00002{letter-spacing:11.072000pt;}
.ls6f2_c00002{letter-spacing:11.073280pt;}
.ls83f_c00002{letter-spacing:11.094272pt;}
.ls843_c00002{letter-spacing:11.099520pt;}
.ls93e_c00002{letter-spacing:11.104768pt;}
.lsdb_c00002{letter-spacing:11.110016pt;}
.ls6e4_c00002{letter-spacing:11.123200pt;}
.ls2e9_c00002{letter-spacing:11.136000pt;}
.ls94e_c00002{letter-spacing:11.170648pt;}
.ls8e4_c00002{letter-spacing:11.176057pt;}
.ls6e0_c00002{letter-spacing:11.183488pt;}
.ls648_c00002{letter-spacing:11.206400pt;}
.ls3bb_c00002{letter-spacing:11.214976pt;}
.ls10a_c00002{letter-spacing:11.220224pt;}
.ls885_c00002{letter-spacing:11.230720pt;}
.ls298_c00002{letter-spacing:11.232000pt;}
.ls5d9_c00002{letter-spacing:11.238400pt;}
.ls639_c00002{letter-spacing:11.264000pt;}
.ls3c4_c00002{letter-spacing:11.272704pt;}
.ls18f_c00002{letter-spacing:11.288448pt;}
.ls69e_c00002{letter-spacing:11.289600pt;}
.ls2af_c00002{letter-spacing:11.316705pt;}
.ls5ed_c00002{letter-spacing:11.328000pt;}
.ls38a_c00002{letter-spacing:11.393408pt;}
.ls609_c00002{letter-spacing:11.424895pt;}
.ls836_c00002{letter-spacing:11.430144pt;}
.ls680_c00002{letter-spacing:11.456000pt;}
.ls6b9_c00002{letter-spacing:11.503616pt;}
.ls946_c00002{letter-spacing:11.519360pt;}
.ls1f2_c00002{letter-spacing:11.535104pt;}
.ls89d_c00002{letter-spacing:11.540352pt;}
.ls91c_c00002{letter-spacing:11.561344pt;}
.ls7fc_c00002{letter-spacing:11.592590pt;}
.ls6cd_c00002{letter-spacing:11.592832pt;}
.ls36c_c00002{letter-spacing:11.598080pt;}
.ls2cb_c00002{letter-spacing:11.603328pt;}
.ls690_c00002{letter-spacing:11.629568pt;}
.ls67e_c00002{letter-spacing:11.648000pt;}
.ls1b2_c00002{letter-spacing:11.650560pt;}
.ls6e3_c00002{letter-spacing:11.712000pt;}
.ls57a_c00002{letter-spacing:11.724800pt;}
.ls67b_c00002{letter-spacing:11.763200pt;}
.ls7fd_c00002{letter-spacing:11.776513pt;}
.lsef_c00002{letter-spacing:11.808000pt;}
.ls2a7_c00002{letter-spacing:11.814380pt;}
.ls8a0_c00002{letter-spacing:11.819789pt;}
.ls68c_c00002{letter-spacing:11.840000pt;}
.ls945_c00002{letter-spacing:11.873885pt;}
.ls663_c00002{letter-spacing:11.878400pt;}
.ls640_c00002{letter-spacing:11.904000pt;}
.ls387_c00002{letter-spacing:11.970688pt;}
.ls881_c00002{letter-spacing:11.981184pt;}
.ls3b9_c00002{letter-spacing:12.012672pt;}
.ls63d_c00002{letter-spacing:12.017920pt;}
.ls37e_c00002{letter-spacing:12.023168pt;}
.ls8b8_c00002{letter-spacing:12.028416pt;}
.lsda_c00002{letter-spacing:12.059904pt;}
.lsd5_c00002{letter-spacing:12.070400pt;}
.ls5db_c00002{letter-spacing:12.096000pt;}
.ls422_c00002{letter-spacing:12.160000pt;}
.ls2a6_c00002{letter-spacing:12.176817pt;}
.ls6e5_c00002{letter-spacing:12.211200pt;}
.ls8ab_c00002{letter-spacing:12.214684pt;}
.ls918_c00002{letter-spacing:12.222592pt;}
.lsbf_c00002{letter-spacing:12.227840pt;}
.ls81a_c00002{letter-spacing:12.259328pt;}
.ls171_c00002{letter-spacing:12.262400pt;}
.ls318_c00002{letter-spacing:12.332800pt;}
.ls7cc_c00002{letter-spacing:12.346752pt;}
.ls37d_c00002{letter-spacing:12.393198pt;}
.ls471_c00002{letter-spacing:12.416000pt;}
.ls296_c00002{letter-spacing:12.416768pt;}
.ls309_c00002{letter-spacing:12.422016pt;}
.ls84e_c00002{letter-spacing:12.437760pt;}
.ls37b_c00002{letter-spacing:12.448256pt;}
.ls2a_c00002{letter-spacing:12.474496pt;}
.ls696_c00002{letter-spacing:12.495488pt;}
.ls6b5_c00002{letter-spacing:12.518400pt;}
.ls8ee_c00002{letter-spacing:12.547968pt;}
.ls647_c00002{letter-spacing:12.569600pt;}
.ls342_c00002{letter-spacing:12.595200pt;}
.ls55c_c00002{letter-spacing:12.608000pt;}
.ls252_c00002{letter-spacing:12.631936pt;}
.ls55d_c00002{letter-spacing:12.672000pt;}
.ls832_c00002{letter-spacing:12.684416pt;}
.ls5f7_c00002{letter-spacing:12.684800pt;}
.ls38e_c00002{letter-spacing:12.700160pt;}
.ls2f4_c00002{letter-spacing:12.726400pt;}
.ls874_c00002{letter-spacing:12.731648pt;}
.ls8c9_c00002{letter-spacing:12.752640pt;}
.lsc6_c00002{letter-spacing:12.800000pt;}
.lse0_c00002{letter-spacing:12.841856pt;}
.ls2b9_c00002{letter-spacing:12.852352pt;}
.ls34f_c00002{letter-spacing:12.864000pt;}
.ls58f_c00002{letter-spacing:12.910080pt;}
.ls18c_c00002{letter-spacing:12.920576pt;}
.ls29b_c00002{letter-spacing:12.928000pt;}
.ls2db_c00002{letter-spacing:12.973056pt;}
.ls29c_c00002{letter-spacing:12.992000pt;}
.ls735_c00002{letter-spacing:12.999296pt;}
.ls72d_c00002{letter-spacing:13.011200pt;}
.ls911_c00002{letter-spacing:13.015040pt;}
.ls2c6_c00002{letter-spacing:13.025536pt;}
.ls666_c00002{letter-spacing:13.030784pt;}
.ls932_c00002{letter-spacing:13.078016pt;}
.ls653_c00002{letter-spacing:13.107200pt;}
.ls7ec_c00002{letter-spacing:13.156736pt;}
.ls933_c00002{letter-spacing:13.245952pt;}
.ls1fb_c00002{letter-spacing:13.277440pt;}
.ls1fd_c00002{letter-spacing:13.282688pt;}
.ls18d_c00002{letter-spacing:13.318225pt;}
.ls319_c00002{letter-spacing:13.319424pt;}
.ls897_c00002{letter-spacing:13.366656pt;}
.ls64f_c00002{letter-spacing:13.376000pt;}
.ls62b_c00002{letter-spacing:13.382400pt;}
.ls82e_c00002{letter-spacing:13.387648pt;}
.ls268_c00002{letter-spacing:13.398144pt;}
.ls859_c00002{letter-spacing:13.448053pt;}
.ls75c_c00002{letter-spacing:13.473649pt;}
.ls852_c00002{letter-spacing:13.476864pt;}
.ls867_c00002{letter-spacing:13.487360pt;}
.ls907_c00002{letter-spacing:13.507558pt;}
.ls86a_c00002{letter-spacing:13.513600pt;}
.lsa7_c00002{letter-spacing:13.529344pt;}
.ls68b_c00002{letter-spacing:13.568000pt;}
.ls6c6_c00002{letter-spacing:13.629338pt;}
.ls6c8_c00002{letter-spacing:13.632000pt;}
.lsf3_c00002{letter-spacing:13.634304pt;}
.ls248_c00002{letter-spacing:13.644800pt;}
.ls1fe_c00002{letter-spacing:13.691481pt;}
.ls12b_c00002{letter-spacing:13.697280pt;}
.ls2c3_c00002{letter-spacing:13.747200pt;}
.ls899_c00002{letter-spacing:13.796992pt;}
.ls864_c00002{letter-spacing:13.865216pt;}
.ls4ae_c00002{letter-spacing:13.888000pt;}
.ls6d6_c00002{letter-spacing:13.901952pt;}
.ls928_c00002{letter-spacing:13.922944pt;}
.ls574_c00002{letter-spacing:13.952000pt;}
.ls4cd_c00002{letter-spacing:13.984000pt;}
.ls6aa_c00002{letter-spacing:14.001664pt;}
.lscb_c00002{letter-spacing:14.016000pt;}
.ls687_c00002{letter-spacing:14.028800pt;}
.ls302_c00002{letter-spacing:14.144000pt;}
.ls872_c00002{letter-spacing:14.148608pt;}
.ls8e0_c00002{letter-spacing:14.216832pt;}
.ls873_c00002{letter-spacing:14.248320pt;}
.ls46f_c00002{letter-spacing:14.272000pt;}
.ls4c1_c00002{letter-spacing:14.278400pt;}
.ls22c_c00002{letter-spacing:14.304000pt;}
.ls56f_c00002{letter-spacing:14.316544pt;}
.ls87e_c00002{letter-spacing:14.327040pt;}
.ls6be_c00002{letter-spacing:14.336000pt;}
.ls807_c00002{letter-spacing:14.340623pt;}
.ls8df_c00002{letter-spacing:14.348032pt;}
.ls91b_c00002{letter-spacing:14.356852pt;}
.ls6d5_c00002{letter-spacing:14.390016pt;}
.ls71f_c00002{letter-spacing:14.400512pt;}
.ls893_c00002{letter-spacing:14.416356pt;}
.ls8fc_c00002{letter-spacing:14.432000pt;}
.ls365_c00002{letter-spacing:14.447362pt;}
.ls808_c00002{letter-spacing:14.552704pt;}
.ls925_c00002{letter-spacing:14.563200pt;}
.ls883_c00002{letter-spacing:14.578944pt;}
.ls6a8_c00002{letter-spacing:14.617600pt;}
.ls64b_c00002{letter-spacing:14.631424pt;}
.ls642_c00002{letter-spacing:14.641920pt;}
.ls57e_c00002{letter-spacing:14.656000pt;}
.ls8f9_c00002{letter-spacing:14.694400pt;}
.ls60b_c00002{letter-spacing:14.735518pt;}
.ls93d_c00002{letter-spacing:14.746880pt;}
.ls8bb_c00002{letter-spacing:14.757376pt;}
.ls107_c00002{letter-spacing:14.767872pt;}
.ls3ad_c00002{letter-spacing:14.783616pt;}
.ls2ec_c00002{letter-spacing:14.784000pt;}
.ls8e1_c00002{letter-spacing:14.788864pt;}
.ls1be_c00002{letter-spacing:14.825600pt;}
.ls256_c00002{letter-spacing:14.848000pt;}
.ls255_c00002{letter-spacing:14.912000pt;}
.ls895_c00002{letter-spacing:14.924851pt;}
.ls8c7_c00002{letter-spacing:14.962048pt;}
.ls856_c00002{letter-spacing:14.967296pt;}
.ls632_c00002{letter-spacing:14.976000pt;}
.ls83c_c00002{letter-spacing:14.978946pt;}
.ls350_c00002{letter-spacing:14.983040pt;}
.ls1c2_c00002{letter-spacing:15.040000pt;}
.ls2c4_c00002{letter-spacing:15.110400pt;}
.ls2f3_c00002{letter-spacing:15.129984pt;}
.ls486_c00002{letter-spacing:15.171968pt;}
.ls581_c00002{letter-spacing:15.187200pt;}
.ls1ce_c00002{letter-spacing:15.192960pt;}
.lsff_c00002{letter-spacing:15.200736pt;}
.ls868_c00002{letter-spacing:15.219200pt;}
.ls85c_c00002{letter-spacing:15.240192pt;}
.ls203_c00002{letter-spacing:15.371392pt;}
.ls392_c00002{letter-spacing:15.408128pt;}
.ls458_c00002{letter-spacing:15.424000pt;}
.ls6d8_c00002{letter-spacing:15.429120pt;}
.ls8cd_c00002{letter-spacing:15.492096pt;}
.ls602_c00002{letter-spacing:15.552000pt;}
.ls4de_c00002{letter-spacing:15.555072pt;}
.ls5eb_c00002{letter-spacing:15.616000pt;}
.ls86c_c00002{letter-spacing:15.665280pt;}
.ls20c_c00002{letter-spacing:15.692800pt;}
.ls488_c00002{letter-spacing:15.699200pt;}
.ls84f_c00002{letter-spacing:15.744000pt;}
.ls1c8_c00002{letter-spacing:15.785984pt;}
.ls5a8_c00002{letter-spacing:15.796160pt;}
.ls5ad_c00002{letter-spacing:15.796480pt;}
.ls5ea_c00002{letter-spacing:15.808000pt;}
.ls6f1_c00002{letter-spacing:15.872000pt;}
.ls49d_c00002{letter-spacing:15.917184pt;}
.ls835_c00002{letter-spacing:15.943424pt;}
.ls2ed_c00002{letter-spacing:15.953920pt;}
.ls4d9_c00002{letter-spacing:15.964416pt;}
.ls80d_c00002{letter-spacing:15.969664pt;}
.ls10c_c00002{letter-spacing:16.006400pt;}
.ls46a_c00002{letter-spacing:16.038400pt;}
.ls8b6_c00002{letter-spacing:16.048384pt;}
.ls464_c00002{letter-spacing:16.064000pt;}
.ls1bf_c00002{letter-spacing:16.074624pt;}
.ls3b7_c00002{letter-spacing:16.142848pt;}
.ls6c7_c00002{letter-spacing:16.192000pt;}
.ls840_c00002{letter-spacing:16.237312pt;}
.ls855_c00002{letter-spacing:16.284544pt;}
.ls1e5_c00002{letter-spacing:16.310784pt;}
.ls42f_c00002{letter-spacing:16.384000pt;}
.lsec_c00002{letter-spacing:16.426240pt;}
.ls6ba_c00002{letter-spacing:16.431488pt;}
.ls814_c00002{letter-spacing:16.441984pt;}
.ls222_c00002{letter-spacing:16.512000pt;}
.ls4a6_c00002{letter-spacing:16.546944pt;}
.ls29d_c00002{letter-spacing:16.563200pt;}
.ls657_c00002{letter-spacing:16.583680pt;}
.ls57d_c00002{letter-spacing:16.640000pt;}
.ls5f9_c00002{letter-spacing:16.704000pt;}
.ls273_c00002{letter-spacing:16.720128pt;}
.ls90f_c00002{letter-spacing:16.746368pt;}
.ls65e_c00002{letter-spacing:16.755200pt;}
.ls87c_c00002{letter-spacing:16.819840pt;}
.ls1fa_c00002{letter-spacing:16.832000pt;}
.lsa6_c00002{letter-spacing:16.924800pt;}
.ls67f_c00002{letter-spacing:16.960000pt;}
.ls4ac_c00002{letter-spacing:17.017600pt;}
.ls638_c00002{letter-spacing:17.088000pt;}
.ls857_c00002{letter-spacing:17.108480pt;}
.ls8cc_c00002{letter-spacing:17.121114pt;}
.ls875_c00002{letter-spacing:17.160960pt;}
.ls876_c00002{letter-spacing:17.166208pt;}
.ls92c_c00002{letter-spacing:17.171456pt;}
.ls641_c00002{letter-spacing:17.216000pt;}
.ls828_c00002{letter-spacing:17.271168pt;}
.ls71c_c00002{letter-spacing:17.273600pt;}
.ls8ed_c00002{letter-spacing:17.444352pt;}
.ls2f5_c00002{letter-spacing:17.470592pt;}
.ls2a2_c00002{letter-spacing:17.528320pt;}
.ls63f_c00002{letter-spacing:17.536000pt;}
.ls110_c00002{letter-spacing:17.561600pt;}
.ls5f8_c00002{letter-spacing:17.702400pt;}
.ls7e0_c00002{letter-spacing:17.706752pt;}
.ls4c9_c00002{letter-spacing:17.721600pt;}
.ls4ca_c00002{letter-spacing:17.728000pt;}
.ls348_c00002{letter-spacing:17.748736pt;}
.ls467_c00002{letter-spacing:17.888000pt;}
.ls8e6_c00002{letter-spacing:17.948160pt;}
.ls892_c00002{letter-spacing:17.992045pt;}
.ls2f6_c00002{letter-spacing:18.002865pt;}
.ls576_c00002{letter-spacing:18.016000pt;}
.ls63a_c00002{letter-spacing:18.048000pt;}
.ls679_c00002{letter-spacing:18.051840pt;}
.ls837_c00002{letter-spacing:18.168576pt;}
.ls109_c00002{letter-spacing:18.242048pt;}
.ls7fb_c00002{letter-spacing:18.247296pt;}
.ls46b_c00002{letter-spacing:18.252800pt;}
.ls6e8_c00002{letter-spacing:18.368000pt;}
.ls939_c00002{letter-spacing:18.483456pt;}
.ls5aa_c00002{letter-spacing:18.554635pt;}
.ls40b_c00002{letter-spacing:18.562176pt;}
.ls40c_c00002{letter-spacing:18.567424pt;}
.ls40e_c00002{letter-spacing:18.572672pt;}
.ls40d_c00002{letter-spacing:18.577920pt;}
.ls2d4_c00002{letter-spacing:18.624000pt;}
.ls4e0_c00002{letter-spacing:18.675200pt;}
.ls8e5_c00002{letter-spacing:18.682880pt;}
.ls725_c00002{letter-spacing:18.803200pt;}
.ls87b_c00002{letter-spacing:18.835072pt;}
.ls797_c00002{letter-spacing:18.849280pt;}
.ls605_c00002{letter-spacing:18.913792pt;}
.ls187_c00002{letter-spacing:18.950528pt;}
.ls45c_c00002{letter-spacing:19.052800pt;}
.ls829_c00002{letter-spacing:19.060736pt;}
.ls2c2_c00002{letter-spacing:19.136000pt;}
.ls562_c00002{letter-spacing:19.142400pt;}
.ls169_c00002{letter-spacing:19.218176pt;}
.ls898_c00002{letter-spacing:19.260160pt;}
.ls2c1_c00002{letter-spacing:19.264000pt;}
.ls731_c00002{letter-spacing:19.270400pt;}
.ls4b3_c00002{letter-spacing:19.275904pt;}
.lsc8_c00002{letter-spacing:19.328000pt;}
.ls479_c00002{letter-spacing:19.365120pt;}
.ls5a9_c00002{letter-spacing:19.414748pt;}
.ls7fa_c00002{letter-spacing:19.449088pt;}
.ls582_c00002{letter-spacing:19.456000pt;}
.ls65f_c00002{letter-spacing:19.520000pt;}
.ls5e8_c00002{letter-spacing:19.648000pt;}
.ls104_c00002{letter-spacing:19.680000pt;}
.ls6e7_c00002{letter-spacing:19.712000pt;}
.ls5a0_c00002{letter-spacing:19.863738pt;}
.ls84b_c00002{letter-spacing:19.921408pt;}
.ls197_c00002{letter-spacing:19.931904pt;}
.ls18e_c00002{letter-spacing:19.942400pt;}
.ls4f7_c00002{letter-spacing:19.968000pt;}
.ls5dd_c00002{letter-spacing:19.982219pt;}
.ls83e_c00002{letter-spacing:20.026023pt;}
.ls6b0_c00002{letter-spacing:20.224000pt;}
.ls6a0_c00002{letter-spacing:20.243200pt;}
.ls2eb_c00002{letter-spacing:20.288000pt;}
.ls4b9_c00002{letter-spacing:20.371200pt;}
.ls590_c00002{letter-spacing:20.398976pt;}
.ls5e2_c00002{letter-spacing:20.422400pt;}
.ls4fa_c00002{letter-spacing:20.448000pt;}
.ls869_c00002{letter-spacing:20.467200pt;}
.ls307_c00002{letter-spacing:20.544000pt;}
.ls3fd_c00002{letter-spacing:20.572160pt;}
.ls48f_c00002{letter-spacing:20.703360pt;}
.ls658_c00002{letter-spacing:20.716800pt;}
.ls656_c00002{letter-spacing:20.736000pt;}
.ls2cc_c00002{letter-spacing:20.908032pt;}
.ls6c3_c00002{letter-spacing:21.024000pt;}
.ls344_c00002{letter-spacing:21.184000pt;}
.ls845_c00002{letter-spacing:21.275621pt;}
.ls299_c00002{letter-spacing:21.280000pt;}
.ls34c_c00002{letter-spacing:21.504000pt;}
.ls5d2_c00002{letter-spacing:21.513639pt;}
.ls5f3_c00002{letter-spacing:21.625600pt;}
.ls678_c00002{letter-spacing:21.632000pt;}
.ls71b_c00002{letter-spacing:21.687573pt;}
.ls66c_c00002{letter-spacing:22.208000pt;}
.ls599_c00002{letter-spacing:22.438666pt;}
.ls922_c00002{letter-spacing:22.519168pt;}
.ls671_c00002{letter-spacing:22.528000pt;}
.ls7da_c00002{letter-spacing:22.634624pt;}
.ls834_c00002{letter-spacing:22.650368pt;}
.ls4f3_c00002{letter-spacing:22.720000pt;}
.ls5ba_c00002{letter-spacing:22.892800pt;}
.ls94b_c00002{letter-spacing:23.106944pt;}
.ls8b0_c00002{letter-spacing:23.143680pt;}
.ls3da_c00002{letter-spacing:23.168000pt;}
.ls92a_c00002{letter-spacing:23.175168pt;}
.ls866_c00002{letter-spacing:23.301120pt;}
.ls80c_c00002{letter-spacing:23.327360pt;}
.ls66f_c00002{letter-spacing:23.360000pt;}
.ls3fe_c00002{letter-spacing:23.585484pt;}
.ls35b_c00002{letter-spacing:23.808000pt;}
.ls92f_c00002{letter-spacing:23.873152pt;}
.ls89b_c00002{letter-spacing:23.910054pt;}
.ls2d2_c00002{letter-spacing:23.936000pt;}
.ls723_c00002{letter-spacing:24.064000pt;}
.ls72b_c00002{letter-spacing:24.096000pt;}
.ls6eb_c00002{letter-spacing:24.256000pt;}
.ls71e_c00002{letter-spacing:24.320000pt;}
.ls7f4_c00002{letter-spacing:24.324480pt;}
.ls5f1_c00002{letter-spacing:24.384000pt;}
.ls689_c00002{letter-spacing:24.441600pt;}
.ls682_c00002{letter-spacing:24.448000pt;}
.ls547_c00002{letter-spacing:24.803328pt;}
.ls7bd_c00002{letter-spacing:25.053440pt;}
.ls59e_c00002{letter-spacing:25.110967pt;}
.ls8b2_c00002{letter-spacing:25.206144pt;}
.ls413_c00002{letter-spacing:25.262433pt;}
.ls560_c00002{letter-spacing:25.408000pt;}
.ls652_c00002{letter-spacing:25.536000pt;}
.ls6fc_c00002{letter-spacing:25.651200pt;}
.ls88f_c00002{letter-spacing:25.662720pt;}
.ls4da_c00002{letter-spacing:25.984000pt;}
.ls5da_c00002{letter-spacing:26.208000pt;}
.ls116_c00002{letter-spacing:26.400000pt;}
.ls13b_c00002{letter-spacing:26.602112pt;}
.ls1fc_c00002{letter-spacing:27.212800pt;}
.ls5c6_c00002{letter-spacing:27.793408pt;}
.ls59c_c00002{letter-spacing:27.803904pt;}
.ls726_c00002{letter-spacing:28.204800pt;}
.ls6dc_c00002{letter-spacing:28.332800pt;}
.ls681_c00002{letter-spacing:28.544000pt;}
.ls61c_c00002{letter-spacing:28.953600pt;}
.ls69d_c00002{letter-spacing:29.056000pt;}
.ls59f_c00002{letter-spacing:29.210368pt;}
.ls79f_c00002{letter-spacing:29.268480pt;}
.ls6b4_c00002{letter-spacing:29.529600pt;}
.ls693_c00002{letter-spacing:29.952000pt;}
.ls86b_c00002{letter-spacing:30.060544pt;}
.ls4f8_c00002{letter-spacing:30.329600pt;}
.ls4a0_c00002{letter-spacing:30.574848pt;}
.ls583_c00002{letter-spacing:30.848000pt;}
.ls94c_c00002{letter-spacing:31.494194pt;}
.ls59a_c00002{letter-spacing:32.646420pt;}
.ls729_c00002{letter-spacing:33.344000pt;}
.ls62c_c00002{letter-spacing:33.529600pt;}
.ls571_c00002{letter-spacing:35.264000pt;}
.ls6b1_c00002{letter-spacing:35.283200pt;}
.ls59d_c00002{letter-spacing:36.919680pt;}
.ls6f7_c00002{letter-spacing:37.209600pt;}
.ls711_c00002{letter-spacing:37.824000pt;}
.ls699_c00002{letter-spacing:38.099200pt;}
.ls75b_c00002{letter-spacing:38.175340pt;}
.ls49c_c00002{letter-spacing:38.761728pt;}
.ls629_c00002{letter-spacing:38.848000pt;}
.ls543_c00002{letter-spacing:39.024898pt;}
.ls66e_c00002{letter-spacing:40.988160pt;}
.ls541_c00002{letter-spacing:41.859352pt;}
.ls5e0_c00002{letter-spacing:45.696000pt;}
.ls64_c00002{letter-spacing:48.768000pt;}
.ls4b6_c00002{letter-spacing:48.896000pt;}
.ls7c3_c00002{letter-spacing:55.856384pt;}
.ls491_c00002{letter-spacing:56.993280pt;}
.ls5f5_c00002{letter-spacing:57.021440pt;}
.ls35a_c00002{letter-spacing:59.392000pt;}
.ls4e2_c00002{letter-spacing:65.350400pt;}
.ls546_c00002{letter-spacing:77.666644pt;}
.ls76b_c00002{letter-spacing:79.612160pt;}
.ls650_c00002{letter-spacing:82.112000pt;}
.ls769_c00002{letter-spacing:84.796120pt;}
.ls5a1_c00002{letter-spacing:88.796160pt;}
.ls597_c00002{letter-spacing:88.797227pt;}
.ls359_c00002{letter-spacing:94.976000pt;}
.ls1c_c00002{letter-spacing:95.584803pt;}
.ls358_c00002{letter-spacing:97.899020pt;}
.ls755_c00002{letter-spacing:101.345277pt;}
.ls60c_c00002{letter-spacing:102.526530pt;}
.ls74d_c00002{letter-spacing:104.030243pt;}
.ls759_c00002{letter-spacing:106.812844pt;}
.ls746_c00002{letter-spacing:112.329230pt;}
.ls75d_c00002{letter-spacing:112.378048pt;}
.ls76a_c00002{letter-spacing:115.700480pt;}
.ls768_c00002{letter-spacing:117.747980pt;}
.ls740_c00002{letter-spacing:117.796798pt;}
.ls74f_c00002{letter-spacing:120.579399pt;}
.ls748_c00002{letter-spacing:123.313183pt;}
.ls783_c00002{letter-spacing:123.623808pt;}
.ls180_c00002{letter-spacing:125.952000pt;}
.ls749_c00002{letter-spacing:125.998150pt;}
.ls76c_c00002{letter-spacing:126.017677pt;}
.ls743_c00002{letter-spacing:126.046967pt;}
.ls784_c00002{letter-spacing:127.635200pt;}
.ls76e_c00002{letter-spacing:128.780751pt;}
.ls77b_c00002{letter-spacing:130.334720pt;}
.ls76d_c00002{letter-spacing:131.514535pt;}
.ls742_c00002{letter-spacing:131.563353pt;}
.ls753_c00002{letter-spacing:131.612170pt;}
.ls148_c00002{letter-spacing:132.864000pt;}
.ls77e_c00002{letter-spacing:133.034240pt;}
.ls75e_c00002{letter-spacing:134.345954pt;}
.ls745_c00002{letter-spacing:137.079738pt;}
.ls5e3_c00002{letter-spacing:138.496000pt;}
.ls752_c00002{letter-spacing:139.764705pt;}
.ls77f_c00002{letter-spacing:140.952832pt;}
.ls12d_c00002{letter-spacing:172.800000pt;}
.ls751_c00002{letter-spacing:175.610880pt;}
.ls747_c00002{letter-spacing:181.015552pt;}
.ls60f_c00002{letter-spacing:188.749568pt;}
.wsa0_c00002{word-spacing:-29.021386pt;}
.ws131_c00002{word-spacing:-27.947520pt;}
.wsdc_c00002{word-spacing:-25.145856pt;}
.wsa3_c00002{word-spacing:-25.132032pt;}
.wsa2_c00002{word-spacing:-25.125120pt;}
.wsaa_c00002{word-spacing:-25.097472pt;}
.wsa5_c00002{word-spacing:-25.042176pt;}
.wsfa_c00002{word-spacing:-23.232000pt;}
.ws2c_c00002{word-spacing:-23.104000pt;}
.ws37_c00002{word-spacing:-21.356800pt;}
.ws36_c00002{word-spacing:-21.312000pt;}
.ws50_c00002{word-spacing:-21.179520pt;}
.wsef_c00002{word-spacing:-20.480422pt;}
.wsee_c00002{word-spacing:-20.285680pt;}
.wsec_c00002{word-spacing:-20.236994pt;}
.wseb_c00002{word-spacing:-20.090937pt;}
.wsf0_c00002{word-spacing:-20.063890pt;}
.wsea_c00002{word-spacing:-20.042252pt;}
.wsed_c00002{word-spacing:-19.896195pt;}
.ws86_c00002{word-spacing:-19.892236pt;}
.wse7_c00002{word-spacing:-19.868928pt;}
.ws87_c00002{word-spacing:-19.849488pt;}
.ws57_c00002{word-spacing:-19.727232pt;}
.ws23_c00002{word-spacing:-19.680000pt;}
.wsa8_c00002{word-spacing:-19.632768pt;}
.wse8_c00002{word-spacing:-19.585536pt;}
.ws1e_c00002{word-spacing:-19.538304pt;}
.ws1_c00002{word-spacing:-19.491072pt;}
.ws74_c00002{word-spacing:-19.464832pt;}
.ws0_c00002{word-spacing:-19.443840pt;}
.ws75_c00002{word-spacing:-19.391360pt;}
.ws2_c00002{word-spacing:-19.349376pt;}
.ws5e_c00002{word-spacing:-19.312640pt;}
.ws7_c00002{word-spacing:-19.302144pt;}
.wsa7_c00002{word-spacing:-19.296896pt;}
.ws48_c00002{word-spacing:-19.280697pt;}
.ws63_c00002{word-spacing:-19.260160pt;}
.ws22_c00002{word-spacing:-19.254912pt;}
.ws5f_c00002{word-spacing:-19.249664pt;}
.ws83_c00002{word-spacing:-19.228672pt;}
.ws35_c00002{word-spacing:-19.193222pt;}
.ws58_c00002{word-spacing:-19.152057pt;}
.ws5c_c00002{word-spacing:-19.110891pt;}
.ws65_c00002{word-spacing:-18.894775pt;}
.ws67_c00002{word-spacing:-18.720000pt;}
.wsf_c00002{word-spacing:-18.705024pt;}
.ws9e_c00002{word-spacing:-18.665088pt;}
.wscc_c00002{word-spacing:-18.625152pt;}
.ws1f_c00002{word-spacing:-18.620160pt;}
.wsf8_c00002{word-spacing:-18.605184pt;}
.wse9_c00002{word-spacing:-18.580224pt;}
.wsa4_c00002{word-spacing:-18.540288pt;}
.wsab_c00002{word-spacing:-18.500352pt;}
.wsa9_c00002{word-spacing:-18.495360pt;}
.wsfc_c00002{word-spacing:-18.455424pt;}
.ws10_c00002{word-spacing:-18.339574pt;}
.ws68_c00002{word-spacing:-18.330624pt;}
.ws78_c00002{word-spacing:-18.226304pt;}
.ws6a_c00002{word-spacing:-18.200064pt;}
.wsf9_c00002{word-spacing:-18.148921pt;}
.ws6b_c00002{word-spacing:-18.000640pt;}
.wsf3_c00002{word-spacing:-17.822208pt;}
.ws6c_c00002{word-spacing:-17.801216pt;}
.ws11_c00002{word-spacing:-17.792000pt;}
.ws123_c00002{word-spacing:-17.788416pt;}
.ws124_c00002{word-spacing:-17.684224pt;}
.wsf4_c00002{word-spacing:-17.680512pt;}
.ws110_c00002{word-spacing:-17.679488pt;}
.ws115_c00002{word-spacing:-17.646336pt;}
.ws112_c00002{word-spacing:-17.613184pt;}
.ws7d_c00002{word-spacing:-17.607040pt;}
.wsf5_c00002{word-spacing:-17.591296pt;}
.ws7a_c00002{word-spacing:-17.575552pt;}
.ws16_c00002{word-spacing:-17.504256pt;}
.ws7e_c00002{word-spacing:-17.475840pt;}
.ws10d_c00002{word-spacing:-17.471104pt;}
.ws10e_c00002{word-spacing:-17.433216pt;}
.ws10b_c00002{word-spacing:-17.400064pt;}
.ws10f_c00002{word-spacing:-17.362176pt;}
.ws18_c00002{word-spacing:-17.329024pt;}
.ws4d_c00002{word-spacing:-17.295274pt;}
.ws84_c00002{word-spacing:-17.056000pt;}
.ws4f_c00002{word-spacing:-16.992473pt;}
.ws4e_c00002{word-spacing:-16.933100pt;}
.ws4c_c00002{word-spacing:-16.873727pt;}
.ws2a_c00002{word-spacing:-16.867790pt;}
.ws136_c00002{word-spacing:-16.720810pt;}
.wsf7_c00002{word-spacing:-16.606080pt;}
.ws137_c00002{word-spacing:-16.127104pt;}
.ws69_c00002{word-spacing:-16.000000pt;}
.ws43_c00002{word-spacing:-15.920201pt;}
.ws138_c00002{word-spacing:-15.785984pt;}
.ws40_c00002{word-spacing:-15.768735pt;}
.ws130_c00002{word-spacing:-15.751936pt;}
.ws25_c00002{word-spacing:-15.720049pt;}
.wsc1_c00002{word-spacing:-15.709056pt;}
.ws44_c00002{word-spacing:-15.676773pt;}
.wsd_c00002{word-spacing:-15.671364pt;}
.wsac_c00002{word-spacing:-15.637248pt;}
.ws11b_c00002{word-spacing:-15.624064pt;}
.ws45_c00002{word-spacing:-15.622678pt;}
.wsc8_c00002{word-spacing:-15.616128pt;}
.wsc2_c00002{word-spacing:-15.590784pt;}
.wsc_c00002{word-spacing:-15.573992pt;}
.wsd1_c00002{word-spacing:-15.569664pt;}
.ws20_c00002{word-spacing:-15.552354pt;}
.wse3_c00002{word-spacing:-15.546945pt;}
.wsae_c00002{word-spacing:-15.544320pt;}
.ws21_c00002{word-spacing:-15.525307pt;}
.wsb4_c00002{word-spacing:-15.518976pt;}
.ws62_c00002{word-spacing:-15.514488pt;}
.ws77_c00002{word-spacing:-15.509078pt;}
.ws3c_c00002{word-spacing:-15.498259pt;}
.wsba_c00002{word-spacing:-15.497856pt;}
.wsaf_c00002{word-spacing:-15.478248pt;}
.ws9_c00002{word-spacing:-15.476621pt;}
.wsbd_c00002{word-spacing:-15.472512pt;}
.wsc5_c00002{word-spacing:-15.451392pt;}
.ws2b_c00002{word-spacing:-15.444864pt;}
.ws2e_c00002{word-spacing:-15.427936pt;}
.wsad_c00002{word-spacing:-15.426048pt;}
.ws42_c00002{word-spacing:-15.400888pt;}
.wscd_c00002{word-spacing:-15.400704pt;}
.ws11d_c00002{word-spacing:-15.392000pt;}
.ws3e_c00002{word-spacing:-15.379250pt;}
.ws139_c00002{word-spacing:-15.352202pt;}
.wsa_c00002{word-spacing:-15.330564pt;}
.ws61_c00002{word-spacing:-15.308926pt;}
.ws28_c00002{word-spacing:-15.297920pt;}
.ws46_c00002{word-spacing:-15.292698pt;}
.ws1c_c00002{word-spacing:-15.281879pt;}
.wsdf_c00002{word-spacing:-15.276469pt;}
.ws85_c00002{word-spacing:-15.260241pt;}
.ws135_c00002{word-spacing:-15.255936pt;}
.ws49_c00002{word-spacing:-15.250688pt;}
.ws60_c00002{word-spacing:-15.208704pt;}
.ws6_c00002{word-spacing:-15.203456pt;}
.ws76_c00002{word-spacing:-15.156224pt;}
.ws8_c00002{word-spacing:-15.108992pt;}
.ws132_c00002{word-spacing:-15.082752pt;}
.ws4a_c00002{word-spacing:-15.072256pt;}
.wse_c00002{word-spacing:-15.061760pt;}
.ws5d_c00002{word-spacing:-15.046016pt;}
.ws26_c00002{word-spacing:-15.038451pt;}
.ws59_c00002{word-spacing:-15.035520pt;}
.ws4b_c00002{word-spacing:-15.014528pt;}
.ws41_c00002{word-spacing:-14.967296pt;}
.wse2_c00002{word-spacing:-14.942926pt;}
.ws3d_c00002{word-spacing:-14.941056pt;}
.ws3f_c00002{word-spacing:-14.920064pt;}
.ws1d_c00002{word-spacing:-14.872832pt;}
.wsf2_c00002{word-spacing:-14.860596pt;}
.ws134_c00002{word-spacing:-14.851840pt;}
.ws13b_c00002{word-spacing:-14.841344pt;}
.ws71_c00002{word-spacing:-14.825600pt;}
.wse0_c00002{word-spacing:-14.773120pt;}
.wsfb_c00002{word-spacing:-14.690790pt;}
.wse5_c00002{word-spacing:-14.626560pt;}
.ws27_c00002{word-spacing:-14.589440pt;}
.wse6_c00002{word-spacing:-14.496768pt;}
.wsf6_c00002{word-spacing:-14.456832pt;}
.wse4_c00002{word-spacing:-14.416896pt;}
.ws6e_c00002{word-spacing:-14.376960pt;}
.ws6f_c00002{word-spacing:-14.332032pt;}
.wsde_c00002{word-spacing:-14.292096pt;}
.ws6d_c00002{word-spacing:-14.252160pt;}
.ws14_c00002{word-spacing:-14.230322pt;}
.ws103_c00002{word-spacing:-14.122923pt;}
.wsa6_c00002{word-spacing:-14.122368pt;}
.ws100_c00002{word-spacing:-14.118041pt;}
.ws126_c00002{word-spacing:-14.108278pt;}
.ws117_c00002{word-spacing:-14.083869pt;}
.ws104_c00002{word-spacing:-14.049697pt;}
.ws51_c00002{word-spacing:-14.044815pt;}
.ws102_c00002{word-spacing:-14.010643pt;}
.ws82_c00002{word-spacing:-14.001664pt;}
.ws17_c00002{word-spacing:-13.971589pt;}
.ws15_c00002{word-spacing:-13.965783pt;}
.ws11e_c00002{word-spacing:-13.947180pt;}
.ws101_c00002{word-spacing:-13.937416pt;}
.ws118_c00002{word-spacing:-13.913008pt;}
.ws13_c00002{word-spacing:-13.903244pt;}
.ws66_c00002{word-spacing:-13.877760pt;}
.ws114_c00002{word-spacing:-13.864190pt;}
.ws109_c00002{word-spacing:-13.849545pt;}
.ws106_c00002{word-spacing:-13.830018pt;}
.ws34_c00002{word-spacing:-13.805440pt;}
.ws19_c00002{word-spacing:-13.790964pt;}
.ws12a_c00002{word-spacing:-13.766555pt;}
.ws10a_c00002{word-spacing:-13.756791pt;}
.wsd0_c00002{word-spacing:-13.728000pt;}
.ws11f_c00002{word-spacing:-13.696512pt;}
.ws127_c00002{word-spacing:-13.663360pt;}
.ws125_c00002{word-spacing:-13.625472pt;}
.ws128_c00002{word-spacing:-13.592320pt;}
.ws70_c00002{word-spacing:-13.571285pt;}
.ws64_c00002{word-spacing:-13.554432pt;}
.ws29_c00002{word-spacing:-13.530752pt;}
.ws32_c00002{word-spacing:-13.521280pt;}
.ws5b_c00002{word-spacing:-13.417088pt;}
.ws38_c00002{word-spacing:-13.379200pt;}
.ws122_c00002{word-spacing:-13.346048pt;}
.ws121_c00002{word-spacing:-13.331840pt;}
.ws33_c00002{word-spacing:-13.166080pt;}
.wsb3_c00002{word-spacing:-12.579840pt;}
.wsb0_c00002{word-spacing:-12.572928pt;}
.wsb2_c00002{word-spacing:-12.548736pt;}
.wsc7_c00002{word-spacing:-12.543873pt;}
.wsb1_c00002{word-spacing:-12.517632pt;}
.wsb6_c00002{word-spacing:-12.469855pt;}
.wscf_c00002{word-spacing:-12.461147pt;}
.wscb_c00002{word-spacing:-12.443731pt;}
.ws3_c00002{word-spacing:-12.421961pt;}
.wsbb_c00002{word-spacing:-12.395837pt;}
.wsc3_c00002{word-spacing:-12.374067pt;}
.wsb7_c00002{word-spacing:-12.347943pt;}
.wsbc_c00002{word-spacing:-12.326173pt;}
.wsd3_c00002{word-spacing:-12.324018pt;}
.wsb5_c00002{word-spacing:-12.300049pt;}
.wsb9_c00002{word-spacing:-12.273925pt;}
.wsb8_c00002{word-spacing:-12.247801pt;}
.wsd2_c00002{word-spacing:-12.226031pt;}
.wsca_c00002{word-spacing:-12.169344pt;}
.wsd5_c00002{word-spacing:-12.104119pt;}
.wsc4_c00002{word-spacing:-12.097536pt;}
.wsbe_c00002{word-spacing:-12.072192pt;}
.wsce_c00002{word-spacing:-12.051072pt;}
.ws30_c00002{word-spacing:-12.025728pt;}
.ws99_c00002{word-spacing:-12.017920pt;}
.ws31_c00002{word-spacing:-12.004608pt;}
.wsc0_c00002{word-spacing:-11.979264pt;}
.ws2f_c00002{word-spacing:-11.958144pt;}
.wsbf_c00002{word-spacing:-11.882112pt;}
.wsd6_c00002{word-spacing:-11.860992pt;}
.wsc6_c00002{word-spacing:-11.742720pt;}
.ws88_c00002{word-spacing:-11.299200pt;}
.ws108_c00002{word-spacing:-10.820612pt;}
.ws89_c00002{word-spacing:-10.793829pt;}
.wsff_c00002{word-spacing:-10.786176pt;}
.ws111_c00002{word-spacing:-10.497536pt;}
.wsfd_c00002{word-spacing:-10.471552pt;}
.ws107_c00002{word-spacing:-10.464128pt;}
.ws129_c00002{word-spacing:-10.460416pt;}
.ws120_c00002{word-spacing:-10.449280pt;}
.wsfe_c00002{word-spacing:-10.389888pt;}
.ws24_c00002{word-spacing:-10.319360pt;}
.ws12_c00002{word-spacing:-10.159744pt;}
.ws97_c00002{word-spacing:-9.829504pt;}
.ws13a_c00002{word-spacing:-9.169787pt;}
.ws1a_c00002{word-spacing:-9.024000pt;}
.wsb_c00002{word-spacing:-8.896000pt;}
.wsd4_c00002{word-spacing:-6.963200pt;}
.ws3a_c00002{word-spacing:-5.440000pt;}
.ws3b_c00002{word-spacing:-5.376000pt;}
.ws9d_c00002{word-spacing:-5.235200pt;}
.ws96_c00002{word-spacing:-4.969856pt;}
.ws5_c00002{word-spacing:-4.933120pt;}
.ws73_c00002{word-spacing:-4.843904pt;}
.ws2d_c00002{word-spacing:-4.765184pt;}
.ws4_c00002{word-spacing:-4.513280pt;}
.ws116_c00002{word-spacing:-4.385536pt;}
.ws7b_c00002{word-spacing:-3.958181pt;}
.wsc9_c00002{word-spacing:-3.750912pt;}
.ws52_c00002{word-spacing:-3.613578pt;}
.ws79_c00002{word-spacing:-3.582792pt;}
.ws56_c00002{word-spacing:-3.191372pt;}
.ws53_c00002{word-spacing:-3.024798pt;}
.ws55_c00002{word-spacing:-2.994012pt;}
.ws47_c00002{word-spacing:-2.920484pt;}
.ws54_c00002{word-spacing:-2.703746pt;}
.ws72_c00002{word-spacing:-2.473951pt;}
.ws94_c00002{word-spacing:-0.708480pt;}
.ws8a_c00002{word-spacing:-0.676992pt;}
.ws133_c00002{word-spacing:-0.666496pt;}
.ws8e_c00002{word-spacing:-0.624512pt;}
.wsf1_c00002{word-spacing:-0.614016pt;}
.ws8c_c00002{word-spacing:-0.603520pt;}
.ws113_c00002{word-spacing:-0.595574pt;}
.ws80_c00002{word-spacing:-0.566784pt;}
.ws7c_c00002{word-spacing:-0.540951pt;}
.ws7f_c00002{word-spacing:-0.535296pt;}
.ws12e_c00002{word-spacing:-0.530432pt;}
.ws9b_c00002{word-spacing:-0.530048pt;}
.ws119_c00002{word-spacing:-0.516224pt;}
.ws93_c00002{word-spacing:-0.493312pt;}
.ws90_c00002{word-spacing:-0.482816pt;}
.ws95_c00002{word-spacing:-0.477568pt;}
.ws8d_c00002{word-spacing:-0.467072pt;}
.ws8b_c00002{word-spacing:-0.456576pt;}
.ws5a_c00002{word-spacing:-0.449122pt;}
.ws91_c00002{word-spacing:-0.446080pt;}
.ws9a_c00002{word-spacing:-0.425088pt;}
.ws8f_c00002{word-spacing:-0.419840pt;}
.ws10c_c00002{word-spacing:-0.414949pt;}
.ws92_c00002{word-spacing:-0.388352pt;}
.ws105_c00002{word-spacing:-0.380777pt;}
.ws12b_c00002{word-spacing:-0.378880pt;}
.ws12f_c00002{word-spacing:-0.374144pt;}
.wsd8_c00002{word-spacing:-0.367488pt;}
.ws11c_c00002{word-spacing:-0.359936pt;}
.ws11a_c00002{word-spacing:-0.350464pt;}
.wse1_c00002{word-spacing:-0.335872pt;}
.ws12c_c00002{word-spacing:-0.331520pt;}
.ws9f_c00002{word-spacing:-0.268497pt;}
.ws98_c00002{word-spacing:-0.267648pt;}
.ws9c_c00002{word-spacing:-0.262400pt;}
.wsdb_c00002{word-spacing:-0.261888pt;}
.wsd9_c00002{word-spacing:-0.253440pt;}
.wsda_c00002{word-spacing:-0.240768pt;}
.ws12d_c00002{word-spacing:-0.236800pt;}
.wsdd_c00002{word-spacing:-0.076800pt;}
.ws39_c00002{word-spacing:-0.064000pt;}
.ws81_c00002{word-spacing:-0.052480pt;}
.wsd7_c00002{word-spacing:-0.042240pt;}
.ws1b_c00002{word-spacing:0.000000pt;}
.wsa1_c00002{word-spacing:60.480000pt;}
._83_c00002{margin-left:-183.889920pt;}
._8e_c00002{margin-left:-136.952813pt;}
._8c_c00002{margin-left:-125.920042pt;}
._8d_c00002{margin-left:-112.651426pt;}
._8b_c00002{margin-left:-103.318458pt;}
._82_c00002{margin-left:-102.239826pt;}
._77_c00002{margin-left:-84.360960pt;}
._78_c00002{margin-left:-83.182080pt;}
._6b_c00002{margin-left:-77.457652pt;}
._65_c00002{margin-left:-65.356800pt;}
._91_c00002{margin-left:-51.399526pt;}
._66_c00002{margin-left:-41.667776pt;}
._68_c00002{margin-left:-39.592516pt;}
._5e_c00002{margin-left:-38.600576pt;}
._5f_c00002{margin-left:-37.677568pt;}
._88_c00002{margin-left:-34.726400pt;}
._75_c00002{margin-left:-33.106229pt;}
._74_c00002{margin-left:-32.024326pt;}
._94_c00002{margin-left:-31.028291pt;}
._62_c00002{margin-left:-30.134400pt;}
._80_c00002{margin-left:-28.339200pt;}
._7f_c00002{margin-left:-27.394560pt;}
._35_c00002{margin-left:-26.135040pt;}
._76_c00002{margin-left:-25.190185pt;}
._5a_c00002{margin-left:-24.198683pt;}
._59_c00002{margin-left:-23.232000pt;}
._42_c00002{margin-left:-21.913600pt;}
._3e_c00002{margin-left:-20.309760pt;}
._2c_c00002{margin-left:-19.207680pt;}
._2f_c00002{margin-left:-17.633280pt;}
._24_c00002{margin-left:-16.478720pt;}
._30_c00002{margin-left:-15.534080pt;}
._2e_c00002{margin-left:-14.274560pt;}
._25_c00002{margin-left:-13.271040pt;}
._26_c00002{margin-left:-12.200960pt;}
._1b_c00002{margin-left:-10.712576pt;}
._1c_c00002{margin-left:-9.405440pt;}
._19_c00002{margin-left:-8.470272pt;}
._5_c00002{margin-left:-7.257984pt;}
._c_c00002{margin-left:-6.262308pt;}
._8_c00002{margin-left:-5.143040pt;}
._17_c00002{margin-left:-3.824640pt;}
._18_c00002{margin-left:-2.477056pt;}
._1_c00002{margin-left:-1.175552pt;}
._2_c00002{width:0.939392pt;}
._f_c00002{width:2.202624pt;}
._e_c00002{width:3.122688pt;}
._6_c00002{width:4.173312pt;}
._0_c00002{width:5.312000pt;}
._7_c00002{width:6.338560pt;}
._3_c00002{width:7.294720pt;}
._4_c00002{width:8.260352pt;}
._d_c00002{width:9.659648pt;}
._16_c00002{width:11.332352pt;}
._15_c00002{width:12.352000pt;}
._1e_c00002{width:13.376000pt;}
._13_c00002{width:14.912000pt;}
._12_c00002{width:15.872000pt;}
._11_c00002{width:16.896000pt;}
._2d_c00002{width:17.814906pt;}
._1f_c00002{width:18.868614pt;}
._14_c00002{width:19.922846pt;}
._1a_c00002{width:21.110301pt;}
._20_c00002{width:22.720000pt;}
._a_c00002{width:24.128000pt;}
._b_c00002{width:25.199541pt;}
._1d_c00002{width:26.208919pt;}
._10_c00002{width:27.776000pt;}
._2b_c00002{width:28.680252pt;}
._23_c00002{width:29.888000pt;}
._21_c00002{width:31.424000pt;}
._32_c00002{width:33.050815pt;}
._43_c00002{width:34.816000pt;}
._3d_c00002{width:35.712000pt;}
._39_c00002{width:36.608000pt;}
._9_c00002{width:38.016000pt;}
._22_c00002{width:39.680000pt;}
._4a_c00002{width:40.768000pt;}
._41_c00002{width:41.984000pt;}
._6e_c00002{width:43.072000pt;}
._34_c00002{width:44.224000pt;}
._31_c00002{width:45.888000pt;}
._33_c00002{width:46.784000pt;}
._46_c00002{width:48.128000pt;}
._4f_c00002{width:49.920000pt;}
._4e_c00002{width:51.456358pt;}
._4b_c00002{width:52.775752pt;}
._49_c00002{width:54.080000pt;}
._85_c00002{width:55.232000pt;}
._7b_c00002{width:58.069104pt;}
._58_c00002{width:59.392000pt;}
._40_c00002{width:61.219872pt;}
._5b_c00002{width:63.330902pt;}
._70_c00002{width:64.845539pt;}
._67_c00002{width:66.224333pt;}
._64_c00002{width:67.355054pt;}
._63_c00002{width:69.903360pt;}
._60_c00002{width:70.848000pt;}
._89_c00002{width:73.600000pt;}
._4d_c00002{width:74.545750pt;}
._8a_c00002{width:75.865144pt;}
._86_c00002{width:76.800000pt;}
._6c_c00002{width:81.134080pt;}
._69_c00002{width:83.469140pt;}
._4c_c00002{width:85.034930pt;}
._61_c00002{width:87.909248pt;}
._48_c00002{width:89.664000pt;}
._47_c00002{width:94.976000pt;}
._93_c00002{width:95.902896pt;}
._3a_c00002{width:97.899020pt;}
._37_c00002{width:100.273929pt;}
._7a_c00002{width:108.702161pt;}
._81_c00002{width:110.228992pt;}
._84_c00002{width:113.166187pt;}
._8f_c00002{width:117.289095pt;}
._54_c00002{width:119.075290pt;}
._3b_c00002{width:122.944000pt;}
._90_c00002{width:124.083200pt;}
._3c_c00002{width:125.952000pt;}
._6a_c00002{width:127.184640pt;}
._29_c00002{width:128.970744pt;}
._56_c00002{width:131.609532pt;}
._5c_c00002{width:132.608000pt;}
._38_c00002{width:134.668800pt;}
._36_c00002{width:136.953076pt;}
._5d_c00002{width:142.462400pt;}
._50_c00002{width:144.275712pt;}
._3f_c00002{width:147.310318pt;}
._53_c00002{width:155.754438pt;}
._57_c00002{width:163.264000pt;}
._27_c00002{width:165.649892pt;}
._55_c00002{width:168.288679pt;}
._45_c00002{width:170.176000pt;}
._2a_c00002{width:171.416576pt;}
._6f_c00002{width:172.332593pt;}
._51_c00002{width:174.094012pt;}
._44_c00002{width:175.413406pt;}
._28_c00002{width:176.362468pt;}
._79_c00002{width:180.432324pt;}
._73_c00002{width:184.017145pt;}
._6d_c00002{width:187.305216pt;}
._71_c00002{width:190.292182pt;}
._7d_c00002{width:197.009920pt;}
._7e_c00002{width:200.224299pt;}
._87_c00002{width:201.893556pt;}
._7c_c00002{width:220.053504pt;}
._72_c00002{width:251.311506pt;}
._52_c00002{width:323.520000pt;}
._92_c00002{width:1474.026752pt;}
.fs1f_c00002{font-size:25.600000pt;}
.fs5_c00002{font-size:32.000000pt;}
.fs12_c00002{font-size:32.984845pt;}
.fs11_c00002{font-size:34.560000pt;}
.fs9_c00002{font-size:37.120000pt;}
.fs8_c00002{font-size:38.262420pt;}
.fse_c00002{font-size:42.240000pt;}
.fs4_c00002{font-size:43.539995pt;}
.fsb_c00002{font-size:47.360000pt;}
.fsa_c00002{font-size:48.817571pt;}
.fs7_c00002{font-size:49.920000pt;}
.fs10_c00002{font-size:51.456358pt;}
.fs2_c00002{font-size:52.480000pt;}
.fsc_c00002{font-size:53.333333pt;}
.fs3_c00002{font-size:54.095146pt;}
.fsd_c00002{font-size:57.600000pt;}
.fs1c_c00002{font-size:58.666667pt;}
.fsf_c00002{font-size:59.372721pt;}
.fs0_c00002{font-size:64.000000pt;}
.fs1_c00002{font-size:65.969690pt;}
.fs14_c00002{font-size:69.120000pt;}
.fs1d_c00002{font-size:69.333333pt;}
.fs13_c00002{font-size:71.247265pt;}
.fs19_c00002{font-size:74.240000pt;}
.fs16_c00002{font-size:76.800000pt;}
.fs17_c00002{font-size:79.163628pt;}
.fs6_c00002{font-size:84.480000pt;}
.fs1b_c00002{font-size:85.333333pt;}
.fs15_c00002{font-size:96.000000pt;}
.fs18_c00002{font-size:98.954535pt;}
.fs1e_c00002{font-size:106.666667pt;}
.fs1a_c00002{font-size:149.333333pt;}
.y141_c00002{bottom:-18.880000pt;}
.y0_c00002{bottom:0.000000pt;}
.ya4a_c00002{bottom:2.240000pt;}
.y4ea_c00002{bottom:2.280000pt;}
.ya3f_c00002{bottom:2.560000pt;}
.y36_c00002{bottom:2.773333pt;}
.y837_c00002{bottom:2.773467pt;}
.yb0a_c00002{bottom:2.880000pt;}
.ya05_c00002{bottom:3.200000pt;}
.y8ee_c00002{bottom:3.840000pt;}
.yb5d_c00002{bottom:5.120000pt;}
.y49f_c00002{bottom:6.080000pt;}
.yb4a_c00002{bottom:7.360000pt;}
.y5ae_c00002{bottom:8.640000pt;}
.y8e1_c00002{bottom:8.960000pt;}
.y978_c00002{bottom:9.280000pt;}
.y90a_c00002{bottom:11.200000pt;}
.y416_c00002{bottom:12.480000pt;}
.y19c_c00002{bottom:12.799867pt;}
.y140_c00002{bottom:12.800000pt;}
.y35a_c00002{bottom:13.120000pt;}
.yb0f_c00002{bottom:13.440000pt;}
.y652_c00002{bottom:13.760000pt;}
.y804_c00002{bottom:14.400000pt;}
.y413_c00002{bottom:14.720000pt;}
.y1d9_c00002{bottom:15.040000pt;}
.ya04_c00002{bottom:15.680000pt;}
.ya4e_c00002{bottom:16.000000pt;}
.y3ba_c00002{bottom:16.640000pt;}
.y78f_c00002{bottom:16.960000pt;}
.y41a_c00002{bottom:17.600000pt;}
.y81b_c00002{bottom:17.920000pt;}
.y8ed_c00002{bottom:19.520000pt;}
.y49e_c00002{bottom:19.840000pt;}
.yb5c_c00002{bottom:20.800000pt;}
.y9d4_c00002{bottom:21.760000pt;}
.y9d6_c00002{bottom:22.080000pt;}
.y19a_c00002{bottom:22.720000pt;}
.y4ec_c00002{bottom:23.040000pt;}
.y977_c00002{bottom:23.360000pt;}
.ybe9_c00002{bottom:24.960000pt;}
.yb0e_c00002{bottom:26.240000pt;}
.y8e0_c00002{bottom:27.200000pt;}
.ya3e_c00002{bottom:27.520000pt;}
.ya03_c00002{bottom:27.840000pt;}
.ya4d_c00002{bottom:28.160000pt;}
.y49c_c00002{bottom:28.480000pt;}
.yad_c00002{bottom:29.440000pt;}
.ya7f_c00002{bottom:29.760000pt;}
.yae_c00002{bottom:30.720000pt;}
.y846_c00002{bottom:30.737333pt;}
.y4a2_c00002{bottom:30.760000pt;}
.y836_c00002{bottom:30.884000pt;}
.y35_c00002{bottom:30.884071pt;}
.y3b8_c00002{bottom:31.040000pt;}
.y909_c00002{bottom:31.360000pt;}
.y4c1_c00002{bottom:31.680000pt;}
.y9d3_c00002{bottom:34.240000pt;}
.y9d5_c00002{bottom:34.560000pt;}
.y764_c00002{bottom:34.880000pt;}
.y5e8_c00002{bottom:35.200000pt;}
.y431_c00002{bottom:35.840000pt;}
.y306_c00002{bottom:36.480000pt;}
.y199_c00002{bottom:36.800000pt;}
.yb5b_c00002{bottom:37.120000pt;}
.yb0d_c00002{bottom:38.720000pt;}
.ya49_c00002{bottom:39.680000pt;}
.yac8_c00002{bottom:40.000000pt;}
.yaff_c00002{bottom:40.320000pt;}
.ya4c_c00002{bottom:40.640000pt;}
.yb09_c00002{bottom:40.960000pt;}
.yaa3_c00002{bottom:41.280000pt;}
.y803_c00002{bottom:42.240000pt;}
.y8ec_c00002{bottom:42.560000pt;}
.ya7e_c00002{bottom:44.160000pt;}
.ya02_c00002{bottom:44.800000pt;}
.y9d2_c00002{bottom:46.400000pt;}
.y9d1_c00002{bottom:46.720000pt;}
.y845_c00002{bottom:47.853333pt;}
.y1_c00002{bottom:48.000000pt;}
.y908_c00002{bottom:49.280000pt;}
.y79a_c00002{bottom:49.314560pt;}
.yc6b_c00002{bottom:49.316160pt;}
.y150_c00002{bottom:49.316480pt;}
.y202_c00002{bottom:49.318080pt;}
.yef_c00002{bottom:49.320000pt;}
.y744_c00002{bottom:49.321600pt;}
.yaac_c00002{bottom:49.600000pt;}
.yd42_c00002{bottom:49.640000pt;}
.yc4b_c00002{bottom:49.960000pt;}
.yc4a_c00002{bottom:50.600000pt;}
.y8df_c00002{bottom:50.880000pt;}
.yb0c_c00002{bottom:51.200000pt;}
.yc1d_c00002{bottom:51.238080pt;}
.y13ba_c00002{bottom:51.559040pt;}
.ye48_c00002{bottom:51.560000pt;}
.yf79_c00002{bottom:51.560640pt;}
.yfa8_c00002{bottom:51.561600pt;}
.y976_c00002{bottom:51.840000pt;}
.ye45_c00002{bottom:51.880000pt;}
.y975_c00002{bottom:52.160000pt;}
.yb2f_c00002{bottom:52.200000pt;}
.yac7_c00002{bottom:52.480000pt;}
.yf45_c00002{bottom:52.520000pt;}
.yf44_c00002{bottom:52.520640pt;}
.yafe_c00002{bottom:52.800000pt;}
.yb08_c00002{bottom:53.120000pt;}
.ydce_c00002{bottom:53.153920pt;}
.ydc4_c00002{bottom:53.156800pt;}
.yded_c00002{bottom:53.160000pt;}
.ya4b_c00002{bottom:53.440000pt;}
.y1229_c00002{bottom:53.476480pt;}
.y143e_c00002{bottom:53.480000pt;}
.y143d_c00002{bottom:53.484160pt;}
.yaa2_c00002{bottom:53.760000pt;}
.y11e1_c00002{bottom:53.799040pt;}
.y9e5_c00002{bottom:53.800000pt;}
.y1053_c00002{bottom:53.800640pt;}
.y14a1_c00002{bottom:53.801280pt;}
.y1074_c00002{bottom:53.801600pt;}
.y882_c00002{bottom:54.440000pt;}
.y34_c00002{bottom:54.760000pt;}
.y9ff_c00002{bottom:56.000000pt;}
.y1385_c00002{bottom:56.040000pt;}
.y1316_c00002{bottom:56.041600pt;}
.yefd_c00002{bottom:56.353920pt;}
.ye78_c00002{bottom:56.360000pt;}
.ya7d_c00002{bottom:56.640000pt;}
.ya01_c00002{bottom:56.960000pt;}
.yd53_c00002{bottom:57.640000pt;}
.yb49_c00002{bottom:58.240000pt;}
.y108d_c00002{bottom:58.276480pt;}
.y1235_c00002{bottom:58.279040pt;}
.y1447_c00002{bottom:58.279680pt;}
.y1236_c00002{bottom:58.280000pt;}
.y1448_c00002{bottom:58.280640pt;}
.y13f2_c00002{bottom:59.560000pt;}
.y9d0_c00002{bottom:59.840000pt;}
.ycbb_c00002{bottom:59.880000pt;}
.ybe8_c00002{bottom:60.160000pt;}
.yd1d_c00002{bottom:60.200000pt;}
.y117d_c00002{bottom:60.516480pt;}
.y1299_c00002{bottom:60.519040pt;}
.yab2_c00002{bottom:60.520000pt;}
.y13cb_c00002{bottom:60.520640pt;}
.ycba_c00002{bottom:60.840000pt;}
.y1415_c00002{bottom:61.480000pt;}
.y1414_c00002{bottom:61.481600pt;}
.yb3a_c00002{bottom:62.120000pt;}
.y42f_c00002{bottom:62.438080pt;}
.y113d_c00002{bottom:62.756480pt;}
.y1027_c00002{bottom:62.759040pt;}
.yd39_c00002{bottom:62.760000pt;}
.y392_c00002{bottom:63.400000pt;}
.yb11_c00002{bottom:63.680000pt;}
.yaab_c00002{bottom:64.320000pt;}
.yef8_c00002{bottom:64.360000pt;}
.y116c_c00002{bottom:64.360640pt;}
.y762_c00002{bottom:64.673600pt;}
.y7a3_c00002{bottom:64.674560pt;}
.y54f_c00002{bottom:64.677440pt;}
.yee_c00002{bottom:64.678080pt;}
.y353_c00002{bottom:64.679680pt;}
.ycc_c00002{bottom:64.680000pt;}
.y96_c00002{bottom:64.681600pt;}
.y972_c00002{bottom:64.960000pt;}
.y1326_c00002{bottom:64.999040pt;}
.y10d0_c00002{bottom:65.000000pt;}
.y8eb_c00002{bottom:65.600000pt;}
.y912_c00002{bottom:65.640000pt;}
.yb0b_c00002{bottom:65.920000pt;}
.yece_c00002{bottom:65.957440pt;}
.y614_c00002{bottom:65.960000pt;}
.yb05_c00002{bottom:66.240000pt;}
.yaa1_c00002{bottom:66.560000pt;}
.y611_c00002{bottom:66.920000pt;}
.y11b7_c00002{bottom:66.921600pt;}
.y1108_c00002{bottom:67.236480pt;}
.yf78_c00002{bottom:67.239040pt;}
.yfa7_c00002{bottom:67.240000pt;}
.yfa6_c00002{bottom:67.240640pt;}
.y457_c00002{bottom:67.880000pt;}
.yf43_c00002{bottom:67.884160pt;}
.ya00_c00002{bottom:68.160000pt;}
.y417_c00002{bottom:68.200000pt;}
.y9fe_c00002{bottom:68.480000pt;}
.y6b7_c00002{bottom:68.840000pt;}
.y1228_c00002{bottom:68.844160pt;}
.yc1c_c00002{bottom:69.160000pt;}
.y1375_c00002{bottom:69.161600pt;}
.y12c0_c00002{bottom:69.476480pt;}
.y1072_c00002{bottom:69.479040pt;}
.y14a0_c00002{bottom:69.479680pt;}
.y1073_c00002{bottom:69.480000pt;}
.y111e_c00002{bottom:69.480640pt;}
.y8de_c00002{bottom:69.760000pt;}
.ydfb_c00002{bottom:69.795200pt;}
.y6c_c00002{bottom:70.120000pt;}
.y1271_c00002{bottom:70.440000pt;}
.y907_c00002{bottom:70.720000pt;}
.y841_c00002{bottom:70.760000pt;}
.ya7c_c00002{bottom:71.040000pt;}
.y1343_c00002{bottom:71.401600pt;}
.y1384_c00002{bottom:71.719040pt;}
.y48d_c00002{bottom:71.720000pt;}
.y1315_c00002{bottom:71.720640pt;}
.ye47_c00002{bottom:72.040000pt;}
.y610_c00002{bottom:72.360000pt;}
.y9cf_c00002{bottom:72.640000pt;}
.yd8d_c00002{bottom:72.677120pt;}
.y9e4_c00002{bottom:72.680000pt;}
.ydcd_c00002{bottom:73.637120pt;}
.ydc3_c00002{bottom:73.640000pt;}
.y108c_c00002{bottom:73.641600pt;}
.y1446_c00002{bottom:73.643200pt;}
.y12d3_c00002{bottom:73.644160pt;}
.y11bf_c00002{bottom:73.645760pt;}
.ydec_c00002{bottom:73.960000pt;}
.y881_c00002{bottom:74.280000pt;}
.yc1b_c00002{bottom:74.600000pt;}
.y1495_c00002{bottom:74.916480pt;}
.yd65_c00002{bottom:75.240000pt;}
.yc9e_c00002{bottom:75.880000pt;}
.y11e0_c00002{bottom:75.880640pt;}
.y1052_c00002{bottom:75.881600pt;}
.y117c_c00002{bottom:75.884160pt;}
.ycb9_c00002{bottom:76.200000pt;}
.yb10_c00002{bottom:76.800000pt;}
.ye77_c00002{bottom:76.840000pt;}
.yefc_c00002{bottom:77.156800pt;}
.y1412_c00002{bottom:77.159040pt;}
.y1413_c00002{bottom:77.160000pt;}
.yafd_c00002{bottom:77.440000pt;}
.y971_c00002{bottom:77.760000pt;}
.yb06_c00002{bottom:78.080000pt;}
.y42e_c00002{bottom:78.116480pt;}
.y70b_c00002{bottom:78.120000pt;}
.y13a4_c00002{bottom:78.120640pt;}
.y14ac_c00002{bottom:78.121600pt;}
.y113c_c00002{bottom:78.124160pt;}
.yb04_c00002{bottom:78.400000pt;}
.y33_c00002{bottom:78.440000pt;}
.ya46_c00002{bottom:78.720000pt;}
.yb31_c00002{bottom:78.760000pt;}
.ya44_c00002{bottom:79.040000pt;}
.yab1_c00002{bottom:79.080000pt;}
.yaa0_c00002{bottom:79.680000pt;}
.y116b_c00002{bottom:79.724160pt;}
.yd55_c00002{bottom:80.038080pt;}
.ybd4_c00002{bottom:80.040000pt;}
.y54e_c00002{bottom:80.355840pt;}
.yed_c00002{bottom:80.356480pt;}
.y94_c00002{bottom:80.358080pt;}
.y8a4_c00002{bottom:80.359680pt;}
.y95_c00002{bottom:80.360000pt;}
.y1455_c00002{bottom:80.360640pt;}
.yccd_c00002{bottom:80.361600pt;}
.y1234_c00002{bottom:80.362240pt;}
.y10df_c00002{bottom:80.364160pt;}
.y761_c00002{bottom:80.676480pt;}
.y6b_c00002{bottom:80.680000pt;}
.y6a_c00002{bottom:80.681600pt;}
.yc49_c00002{bottom:81.320000pt;}
.y124e_c00002{bottom:81.636480pt;}
.y40f_c00002{bottom:81.640000pt;}
.yd75_c00002{bottom:81.642240pt;}
.y13f0_c00002{bottom:81.959040pt;}
.y13f1_c00002{bottom:81.960000pt;}
.ybe7_c00002{bottom:82.560000pt;}
.y7a2_c00002{bottom:82.596480pt;}
.y60f_c00002{bottom:82.600000pt;}
.y146e_c00002{bottom:82.600640pt;}
.y1155_c00002{bottom:82.601600pt;}
.yfa5_c00002{bottom:82.604160pt;}
.y391_c00002{bottom:82.920000pt;}
.y48c_c00002{bottom:83.241600pt;}
.ya7b_c00002{bottom:83.520000pt;}
.y456_c00002{bottom:83.560000pt;}
.y9fc_c00002{bottom:83.840000pt;}
.y63d_c00002{bottom:83.880000pt;}
.y911_c00002{bottom:84.200000pt;}
.y9ce_c00002{bottom:84.800000pt;}
.y1374_c00002{bottom:84.839040pt;}
.yef7_c00002{bottom:84.840000pt;}
.y1351_c00002{bottom:84.840640pt;}
.y1358_c00002{bottom:84.841600pt;}
.y1026_c00002{bottom:84.842240pt;}
.y111d_c00002{bottom:84.844160pt;}
.y9cd_c00002{bottom:85.120000pt;}
.y897_c00002{bottom:85.160000pt;}
.ycb_c00002{bottom:85.800000pt;}
.y844_c00002{bottom:86.440000pt;}
.yd41_c00002{bottom:86.760000pt;}
.y1342_c00002{bottom:87.076480pt;}
.yecd_c00002{bottom:87.080000pt;}
.y146b_c00002{bottom:87.084160pt;}
.yd64_c00002{bottom:87.720000pt;}
.y60e_c00002{bottom:88.040000pt;}
.y8ea_c00002{bottom:88.320000pt;}
.yc21_c00002{bottom:89.320000pt;}
.y108b_c00002{bottom:89.320640pt;}
.yfcb_c00002{bottom:89.321600pt;}
.y12e6_c00002{bottom:89.322240pt;}
.y12a9_c00002{bottom:89.324160pt;}
.y8a8_c00002{bottom:89.640000pt;}
.y973_c00002{bottom:89.920000pt;}
.y51c_c00002{bottom:89.960000pt;}
.y970_c00002{bottom:90.240000pt;}
.yf42_c00002{bottom:90.280000pt;}
.y1494_c00002{bottom:90.280640pt;}
.yb07_c00002{bottom:90.560000pt;}
.yb03_c00002{bottom:90.880000pt;}
.ya47_c00002{bottom:91.200000pt;}
.y1227_c00002{bottom:91.239040pt;}
.y9e3_c00002{bottom:91.240000pt;}
.ya45_c00002{bottom:91.520000pt;}
.y142f_c00002{bottom:91.556480pt;}
.y1050_c00002{bottom:91.559040pt;}
.y1051_c00002{bottom:91.560000pt;}
.y11f1_c00002{bottom:91.560640pt;}
.y12af_c00002{bottom:91.561600pt;}
.ya43_c00002{bottom:91.840000pt;}
.y1da_c00002{bottom:91.880000pt;}
.ya9f_c00002{bottom:92.480000pt;}
.ydfa_c00002{bottom:92.516160pt;}
.y8dd_c00002{bottom:92.800000pt;}
.y1270_c00002{bottom:92.836480pt;}
.ye46_c00002{bottom:92.840000pt;}
.yaaa_c00002{bottom:93.120000pt;}
.ye44_c00002{bottom:93.160000pt;}
.yb48_c00002{bottom:93.440000pt;}
.y42d_c00002{bottom:93.480000pt;}
.y70a_c00002{bottom:93.481600pt;}
.y14ab_c00002{bottom:93.799040pt;}
.y49a_c00002{bottom:93.800000pt;}
.y1314_c00002{bottom:93.801600pt;}
.y840_c00002{bottom:94.120000pt;}
.ydcc_c00002{bottom:94.437120pt;}
.ydc2_c00002{bottom:94.440000pt;}
.yd52_c00002{bottom:94.760000pt;}
.y835_c00002{bottom:95.080000pt;}
.y6b6_c00002{bottom:95.400000pt;}
.yd54_c00002{bottom:95.716480pt;}
.y54d_c00002{bottom:95.719360pt;}
.yec_c00002{bottom:95.720000pt;}
.y93_c00002{bottom:95.721600pt;}
.y3b6_c00002{bottom:95.722880pt;}
.y3be_c00002{bottom:95.723200pt;}
.y9fd_c00002{bottom:96.000000pt;}
.yd38_c00002{bottom:96.036480pt;}
.yff9_c00002{bottom:96.039040pt;}
.y760_c00002{bottom:96.040000pt;}
.y1233_c00002{bottom:96.040640pt;}
.y75f_c00002{bottom:96.041600pt;}
.y9fb_c00002{bottom:96.320000pt;}
.y69_c00002{bottom:96.360000pt;}
.y68_c00002{bottom:96.361600pt;}
.yb96_c00002{bottom:96.680000pt;}
.y124d_c00002{bottom:97.000000pt;}
.y124c_c00002{bottom:97.004160pt;}
.ye76_c00002{bottom:97.640000pt;}
.y6a7_c00002{bottom:97.960000pt;}
.y143c_c00002{bottom:97.960640pt;}
.y6a6_c00002{bottom:97.961600pt;}
.ybe6_c00002{bottom:98.240000pt;}
.y13ae_c00002{bottom:98.276480pt;}
.y1498_c00002{bottom:98.278080pt;}
.y1196_c00002{bottom:98.279040pt;}
.ybd3_c00002{bottom:98.280000pt;}
.y1154_c00002{bottom:98.280640pt;}
.y42c_c00002{bottom:98.920000pt;}
.yb39_c00002{bottom:99.240000pt;}
.y1411_c00002{bottom:99.241600pt;}
.y9ca_c00002{bottom:99.840000pt;}
.y1d7_c00002{bottom:100.200000pt;}
.y113a_c00002{bottom:100.516480pt;}
.y1357_c00002{bottom:100.519040pt;}
.y113b_c00002{bottom:100.520000pt;}
.y1025_c00002{bottom:100.520640pt;}
.y896_c00002{bottom:100.840000pt;}
.yca_c00002{bottom:101.160000pt;}
.ycd1_c00002{bottom:101.480000pt;}
.y2a1_c00002{bottom:101.800000pt;}
.y116a_c00002{bottom:102.120000pt;}
.y1169_c00002{bottom:102.122240pt;}
.y974_c00002{bottom:102.400000pt;}
.y1341_c00002{bottom:102.440000pt;}
.yac6_c00002{bottom:102.719867pt;}
.y96f_c00002{bottom:102.720000pt;}
.y10de_c00002{bottom:102.756480pt;}
.y1325_c00002{bottom:102.759040pt;}
.yb30_c00002{bottom:102.760000pt;}
.y910_c00002{bottom:103.080000pt;}
.yb02_c00002{bottom:103.360000pt;}
.y60d_c00002{bottom:103.400000pt;}
.ybaf_c00002{bottom:103.720000pt;}
.ya42_c00002{bottom:104.000000pt;}
.y13ef_c00002{bottom:104.040000pt;}
.y13ee_c00002{bottom:104.044160pt;}
.y48b_c00002{bottom:104.360000pt;}
.y11b6_c00002{bottom:104.680000pt;}
.y11b5_c00002{bottom:104.681600pt;}
.ya9e_c00002{bottom:104.960000pt;}
.y1107_c00002{bottom:104.996480pt;}
.y1202_c00002{bottom:104.998080pt;}
.yf77_c00002{bottom:104.999040pt;}
.yfca_c00002{bottom:104.999680pt;}
.yfa4_c00002{bottom:105.000000pt;}
.y12e5_c00002{bottom:105.000640pt;}
.y717_c00002{bottom:105.320000pt;}
.yd40_c00002{bottom:105.640000pt;}
.yf41_c00002{bottom:105.644160pt;}
.y1dc_c00002{bottom:105.960000pt;}
.yd63_c00002{bottom:106.600000pt;}
.y1373_c00002{bottom:106.920000pt;}
.y142e_c00002{bottom:106.920640pt;}
.y1372_c00002{bottom:106.921600pt;}
.y111c_c00002{bottom:107.236480pt;}
.y118d_c00002{bottom:107.239040pt;}
.y455_c00002{bottom:107.240000pt;}
.y12ae_c00002{bottom:107.240640pt;}
.yaa9_c00002{bottom:107.520000pt;}
.y412_c00002{bottom:107.560000pt;}
.ye2f_c00002{bottom:107.873920pt;}
.yc9d_c00002{bottom:107.880000pt;}
.yc3a_c00002{bottom:108.200000pt;}
.y126f_c00002{bottom:108.200640pt;}
.ya7a_c00002{bottom:108.480000pt;}
.y708_c00002{bottom:109.158080pt;}
.y709_c00002{bottom:109.160000pt;}
.y42b_c00002{bottom:109.161600pt;}
.y9fa_c00002{bottom:109.440000pt;}
.y1313_c00002{bottom:109.479040pt;}
.y124_c00002{bottom:109.480000pt;}
.yb47_c00002{bottom:109.760000pt;}
.y9e2_c00002{bottom:109.800000pt;}
.yb46_c00002{bottom:110.080000pt;}
.yd90_c00002{bottom:110.120000pt;}
.y6ee_c00002{bottom:110.760000pt;}
.y8e9_c00002{bottom:111.360000pt;}
.y188_c00002{bottom:111.394560pt;}
.y201_c00002{bottom:111.397120pt;}
.y54c_c00002{bottom:111.397760pt;}
.y293_c00002{bottom:111.398080pt;}
.y92_c00002{bottom:111.400000pt;}
.y3b5_c00002{bottom:111.401280pt;}
.y91_c00002{bottom:111.401600pt;}
.yd34_c00002{bottom:111.401920pt;}
.y10f0_c00002{bottom:111.716480pt;}
.y12a8_c00002{bottom:111.717120pt;}
.y12d2_c00002{bottom:111.719040pt;}
.y75e_c00002{bottom:111.720000pt;}
.y12ef_c00002{bottom:111.720640pt;}
.y67_c00002{bottom:112.040000pt;}
.y66_c00002{bottom:112.041600pt;}
.ye10_c00002{bottom:112.360000pt;}
.y9c9_c00002{bottom:112.640000pt;}
.y1493_c00002{bottom:112.676480pt;}
.y880_c00002{bottom:112.680000pt;}
.y87f_c00002{bottom:113.000000pt;}
.y6cc_c00002{bottom:113.320000pt;}
.y1226_c00002{bottom:113.324160pt;}
.y906_c00002{bottom:113.600000pt;}
.y40e_c00002{bottom:113.640000pt;}
.y104f_c00002{bottom:113.641600pt;}
.y135e_c00002{bottom:113.643520pt;}
.y1153_c00002{bottom:113.644160pt;}
.y13ca_c00002{bottom:113.645760pt;}
.yd8c_c00002{bottom:113.960000pt;}
.y9c7_c00002{bottom:114.240000pt;}
.y9cc_c00002{bottom:114.560000pt;}
.y48a_c00002{bottom:114.596480pt;}
.yb95_c00002{bottom:114.600000pt;}
.y1410_c00002{bottom:114.919040pt;}
.yd44_c00002{bottom:114.920000pt;}
.ydcb_c00002{bottom:115.222080pt;}
.ydf9_c00002{bottom:115.237120pt;}
.ydc1_c00002{bottom:115.240000pt;}
.yac5_c00002{bottom:115.520000pt;}
.ydeb_c00002{bottom:115.559040pt;}
.yd48_c00002{bottom:115.560000pt;}
.y418_c00002{bottom:115.880000pt;}
.y1139_c00002{bottom:115.884160pt;}
.y14aa_c00002{bottom:115.885760pt;}
.y895_c00002{bottom:116.200000pt;}
.yab0_c00002{bottom:116.520000pt;}
.y104_c00002{bottom:116.840000pt;}
.y4ed_c00002{bottom:117.160000pt;}
.y1168_c00002{bottom:117.485760pt;}
.y687_c00002{bottom:117.796480pt;}
.y688_c00002{bottom:117.800000pt;}
.ya9d_c00002{bottom:118.080000pt;}
.yb38_c00002{bottom:118.120000pt;}
.yff8_c00002{bottom:118.120640pt;}
.y10dd_c00002{bottom:118.121600pt;}
.y10a7_c00002{bottom:118.124160pt;}
.ye75_c00002{bottom:118.440000pt;}
.y8cf_c00002{bottom:118.760000pt;}
.y6a5_c00002{bottom:119.080000pt;}
.y124a_c00002{bottom:119.399040pt;}
.y124b_c00002{bottom:119.400000pt;}
.yaa8_c00002{bottom:119.680000pt;}
.yb7f_c00002{bottom:119.720000pt;}
.y390_c00002{bottom:120.040000pt;}
.ybe5_c00002{bottom:120.320000pt;}
.y143b_c00002{bottom:120.356480pt;}
.y1106_c00002{bottom:120.360000pt;}
.y11b4_c00002{bottom:120.360640pt;}
.y1195_c00002{bottom:120.361600pt;}
.y1105_c00002{bottom:120.364160pt;}
.y8dc_c00002{bottom:120.960000pt;}
.y3b7_c00002{bottom:121.000000pt;}
.ya79_c00002{bottom:121.280000pt;}
.y7dd_c00002{bottom:121.320000pt;}
.y9f9_c00002{bottom:121.600000pt;}
.y8a7_c00002{bottom:121.640000pt;}
.y142d_c00002{bottom:122.599040pt;}
.ybad_c00002{bottom:122.600000pt;}
.y1350_c00002{bottom:122.600640pt;}
.y1024_c00002{bottom:122.601600pt;}
.y111b_c00002{bottom:122.604160pt;}
.ycb8_c00002{bottom:122.920000pt;}
.y84e_c00002{bottom:124.200000pt;}
.y707_c00002{bottom:124.836480pt;}
.yc9_c00002{bottom:124.840000pt;}
.y1324_c00002{bottom:124.840640pt;}
.y9c8_c00002{bottom:125.120000pt;}
.y843_c00002{bottom:125.160000pt;}
.yb45_c00002{bottom:125.440000pt;}
.yb32_c00002{bottom:125.480000pt;}
.yed5_c00002{bottom:125.793280pt;}
.yc13_c00002{bottom:126.120000pt;}
.y13ed_c00002{bottom:126.440000pt;}
.y13ec_c00002{bottom:126.440640pt;}
.y9c6_c00002{bottom:126.720000pt;}
.yc39_c00002{bottom:126.760000pt;}
.y9cb_c00002{bottom:127.040000pt;}
.y200_c00002{bottom:127.075520pt;}
.y54b_c00002{bottom:127.076160pt;}
.yeb_c00002{bottom:127.076480pt;}
.y799_c00002{bottom:127.078080pt;}
.y2ce_c00002{bottom:127.078720pt;}
.y3b4_c00002{bottom:127.079680pt;}
.y90_c00002{bottom:127.080000pt;}
.yd33_c00002{bottom:127.080320pt;}
.yfa3_c00002{bottom:127.080640pt;}
.yf76_c00002{bottom:127.081600pt;}
.y108a_c00002{bottom:127.082240pt;}
.y10ef_c00002{bottom:127.084160pt;}
.y5ad_c00002{bottom:127.086080pt;}
.y75d_c00002{bottom:127.400000pt;}
.y64_c00002{bottom:127.716480pt;}
.y65_c00002{bottom:127.720000pt;}
.yac4_c00002{bottom:128.000000pt;}
.yf40_c00002{bottom:128.039040pt;}
.y2a0_c00002{bottom:128.040000pt;}
.y1492_c00002{bottom:128.044160pt;}
.yecc_c00002{bottom:128.360000pt;}
.ye2e_c00002{bottom:128.676800pt;}
.y9e1_c00002{bottom:128.680000pt;}
.yc48_c00002{bottom:129.000000pt;}
.y187_c00002{bottom:129.316480pt;}
.y60c_c00002{bottom:129.320000pt;}
.y1071_c00002{bottom:129.320640pt;}
.y12ad_c00002{bottom:129.321600pt;}
.y135d_c00002{bottom:129.321920pt;}
.y104e_c00002{bottom:129.324160pt;}
.ya41_c00002{bottom:129.600000pt;}
.y6ed_c00002{bottom:129.640000pt;}
.y489_c00002{bottom:129.960000pt;}
.y42a_c00002{bottom:130.280000pt;}
.y905_c00002{bottom:130.560000pt;}
.y126e_c00002{bottom:130.596480pt;}
.y716_c00002{bottom:130.600000pt;}
.y96e_c00002{bottom:130.880000pt;}
.yc0a_c00002{bottom:130.920000pt;}
.yb5a_c00002{bottom:131.199867pt;}
.ya9c_c00002{bottom:131.200000pt;}
.y1312_c00002{bottom:131.560000pt;}
.y1311_c00002{bottom:131.560640pt;}
.y1383_c00002{bottom:131.561600pt;}
.y14a9_c00002{bottom:131.564160pt;}
.y894_c00002{bottom:131.880000pt;}
.y1d6_c00002{bottom:132.200000pt;}
.yaa7_c00002{bottom:132.480000pt;}
.y8f_c00002{bottom:132.520000pt;}
.y75c_c00002{bottom:132.840000pt;}
.y686_c00002{bottom:133.160000pt;}
.y685_c00002{bottom:133.161600pt;}
.y69a_c00002{bottom:133.480000pt;}
.ya78_c00002{bottom:133.760000pt;}
.y10cf_c00002{bottom:133.799040pt;}
.y87e_c00002{bottom:133.800000pt;}
.y12d1_c00002{bottom:133.801600pt;}
.ybd2_c00002{bottom:134.120000pt;}
.y8e8_c00002{bottom:134.400000pt;}
.y5af_c00002{bottom:134.440000pt;}
.y9f6_c00002{bottom:134.720000pt;}
.y84c_c00002{bottom:134.760000pt;}
.y90f_c00002{bottom:135.080000pt;}
.y488_c00002{bottom:135.400000pt;}
.ybe4_c00002{bottom:135.680000pt;}
.ydca_c00002{bottom:135.705280pt;}
.y1225_c00002{bottom:135.716480pt;}
.ya06_c00002{bottom:135.720000pt;}
.y143a_c00002{bottom:135.721600pt;}
.y11df_c00002{bottom:136.036480pt;}
.y1458_c00002{bottom:136.038080pt;}
.y117b_c00002{bottom:136.039040pt;}
.ydf8_c00002{bottom:136.040000pt;}
.y1152_c00002{bottom:136.040640pt;}
.y1201_c00002{bottom:136.041600pt;}
.y32_c00002{bottom:136.360000pt;}
.yb37_c00002{bottom:136.680000pt;}
.yd74_c00002{bottom:137.000000pt;}
.y140f_c00002{bottom:137.004160pt;}
.y8ce_c00002{bottom:137.320000pt;}
.yd36_c00002{bottom:137.640000pt;}
.y13a3_c00002{bottom:138.276480pt;}
.y1361_c00002{bottom:138.279040pt;}
.ybac_c00002{bottom:138.280000pt;}
.y13b2_c00002{bottom:138.280640pt;}
.y1023_c00002{bottom:138.281600pt;}
.ye7c_c00002{bottom:138.284480pt;}
.y38f_c00002{bottom:138.600000pt;}
.y9c5_c00002{bottom:138.880000pt;}
.y6cb_c00002{bottom:138.920000pt;}
.y9c4_c00002{bottom:139.200000pt;}
.ycb6_c00002{bottom:139.240000pt;}
.y802_c00002{bottom:139.560000pt;}
.ycb7_c00002{bottom:139.880000pt;}
.y1167_c00002{bottom:139.881600pt;}
.y8a6_c00002{bottom:140.200000pt;}
.yac3_c00002{bottom:140.480000pt;}
.yff7_c00002{bottom:140.516480pt;}
.y10a6_c00002{bottom:140.519040pt;}
.y1a6_c00002{bottom:140.520000pt;}
.yd37_c00002{bottom:140.840000pt;}
.yb44_c00002{bottom:141.120000pt;}
.yb7e_c00002{bottom:141.160000pt;}
.y1249_c00002{bottom:141.480000pt;}
.y1248_c00002{bottom:141.484160pt;}
.y13eb_c00002{bottom:141.804160pt;}
.y742_c00002{bottom:142.120000pt;}
.ya40_c00002{bottom:142.400000pt;}
.y56e_c00002{bottom:142.438080pt;}
.y1ff_c00002{bottom:142.439040pt;}
.y3e6_c00002{bottom:142.439680pt;}
.y13e_c00002{bottom:142.440000pt;}
.y84d_c00002{bottom:142.441280pt;}
.y103_c00002{bottom:142.441600pt;}
.y1d3_c00002{bottom:142.443200pt;}
.yd32_c00002{bottom:142.443840pt;}
.y149d_c00002{bottom:142.756480pt;}
.y10be_c00002{bottom:142.758080pt;}
.yf75_c00002{bottom:142.759040pt;}
.y7a1_c00002{bottom:142.760000pt;}
.y1089_c00002{bottom:142.760640pt;}
.y75b_c00002{bottom:143.076480pt;}
.y63_c00002{bottom:143.080000pt;}
.y2cd_c00002{bottom:143.400000pt;}
.y2cc_c00002{bottom:143.403840pt;}
.ya96_c00002{bottom:143.680000pt;}
.yd62_c00002{bottom:143.720000pt;}
.ya9b_c00002{bottom:144.320000pt;}
.y60b_c00002{bottom:144.679680pt;}
.y186_c00002{bottom:144.680000pt;}
.y185_c00002{bottom:144.681600pt;}
.yaa6_c00002{bottom:144.960000pt;}
.y111a_c00002{bottom:144.996480pt;}
.y1070_c00002{bottom:144.999040pt;}
.yc12_c00002{bottom:145.000000pt;}
.y135c_c00002{bottom:145.000320pt;}
.y12c9_c00002{bottom:145.000640pt;}
.yc47_c00002{bottom:145.320000pt;}
.y197_c00002{bottom:145.640000pt;}
.y126d_c00002{bottom:145.960000pt;}
.yb59_c00002{bottom:146.560000pt;}
.y7dc_c00002{bottom:146.600000pt;}
.yef6_c00002{bottom:146.917120pt;}
.y926_c00002{bottom:146.920000pt;}
.y9f5_c00002{bottom:147.200000pt;}
.y1323_c00002{bottom:147.236480pt;}
.y1310_c00002{bottom:147.239040pt;}
.y9e0_c00002{bottom:147.240000pt;}
.y904_c00002{bottom:147.520000pt;}
.y8e_c00002{bottom:147.880000pt;}
.y6ec_c00002{bottom:148.200000pt;}
.ya77_c00002{bottom:148.480000pt;}
.yed4_c00002{bottom:148.514240pt;}
.y62_c00002{bottom:148.520000pt;}
.y684_c00002{bottom:148.840000pt;}
.y683_c00002{bottom:148.841600pt;}
.yecb_c00002{bottom:148.842240pt;}
.yd3f_c00002{bottom:149.160000pt;}
.y10ee_c00002{bottom:149.476480pt;}
.y12da_c00002{bottom:149.477120pt;}
.y12d0_c00002{bottom:149.479040pt;}
.yc09_c00002{bottom:149.480000pt;}
.y141a_c00002{bottom:149.480640pt;}
.y6a4_c00002{bottom:150.120000pt;}
.yf3f_c00002{bottom:150.121600pt;}
.y1491_c00002{bottom:150.436480pt;}
.yb94_c00002{bottom:150.440000pt;}
.ycdf_c00002{bottom:150.760000pt;}
.y834_c00002{bottom:151.080000pt;}
.y1224_c00002{bottom:151.081600pt;}
.yd8f_c00002{bottom:151.400000pt;}
.y11de_c00002{bottom:151.400640pt;}
.y1439_c00002{bottom:151.403200pt;}
.y104d_c00002{bottom:151.716480pt;}
.y1497_c00002{bottom:151.718080pt;}
.y1151_c00002{bottom:151.719040pt;}
.y51b_c00002{bottom:151.720000pt;}
.y128b_c00002{bottom:151.720640pt;}
.y35b_c00002{bottom:152.040000pt;}
.y96d_c00002{bottom:152.320000pt;}
.y699_c00002{bottom:152.360000pt;}
.ye7b_c00002{bottom:152.362240pt;}
.yac2_c00002{bottom:152.960000pt;}
.ybae_c00002{bottom:153.000000pt;}
.y4d7_c00002{bottom:153.320000pt;}
.y90e_c00002{bottom:153.640000pt;}
.y13a2_c00002{bottom:153.640640pt;}
.y14a8_c00002{bottom:153.956480pt;}
.y1138_c00002{bottom:153.959040pt;}
.y29f_c00002{bottom:153.960000pt;}
.y1022_c00002{bottom:153.960640pt;}
.y5ca_c00002{bottom:154.280000pt;}
.y9c3_c00002{bottom:154.560000pt;}
.ycb5_c00002{bottom:154.600000pt;}
.y9c2_c00002{bottom:154.880000pt;}
.y31_c00002{bottom:154.920000pt;}
.yb36_c00002{bottom:155.240000pt;}
.ya3c_c00002{bottom:155.520000pt;}
.yd8b_c00002{bottom:155.560000pt;}
.y1166_c00002{bottom:155.560640pt;}
.ya3a_c00002{bottom:155.840000pt;}
.y746_c00002{bottom:155.880000pt;}
.y10dc_c00002{bottom:155.881600pt;}
.y1232_c00002{bottom:155.882880pt;}
.yff6_c00002{bottom:155.884160pt;}
.y1454_c00002{bottom:155.884800pt;}
.y10ce_c00002{bottom:155.885760pt;}
.ya95_c00002{bottom:156.160000pt;}
.y1bf_c00002{bottom:156.200000pt;}
.ydc0_c00002{bottom:156.507840pt;}
.ydc9_c00002{bottom:156.508160pt;}
.yb2d_c00002{bottom:156.520000pt;}
.yb7d_c00002{bottom:157.160000pt;}
.y8e7_c00002{bottom:157.440000pt;}
.y4b0_c00002{bottom:157.480000pt;}
.yc9c_c00002{bottom:157.800000pt;}
.yea7_c00002{bottom:158.111040pt;}
.y1fe_c00002{bottom:158.117440pt;}
.y251_c00002{bottom:158.118080pt;}
.y11b3_c00002{bottom:158.119040pt;}
.y45a_c00002{bottom:158.119680pt;}
.y102_c00002{bottom:158.120000pt;}
.y117a_c00002{bottom:158.120640pt;}
.y101_c00002{bottom:158.121600pt;}
.y13a7_c00002{bottom:158.124160pt;}
.y301_c00002{bottom:158.440000pt;}
.ybfa_c00002{bottom:158.760000pt;}
.y61_c00002{bottom:158.761600pt;}
.y8a5_c00002{bottom:159.080000pt;}
.yd31_c00002{bottom:159.081600pt;}
.y140d_c00002{bottom:159.396480pt;}
.y140e_c00002{bottom:159.400000pt;}
.y9f4_c00002{bottom:159.680000pt;}
.y7ed_c00002{bottom:159.720000pt;}
.y9f8_c00002{bottom:160.000000pt;}
.y2ca_c00002{bottom:160.039680pt;}
.y2cb_c00002{bottom:160.040000pt;}
.y5ac_c00002{bottom:160.356480pt;}
.y60a_c00002{bottom:160.358080pt;}
.y184_c00002{bottom:160.360000pt;}
.y134f_c00002{bottom:160.360640pt;}
.y13b1_c00002{bottom:160.361600pt;}
.y13c9_c00002{bottom:160.362240pt;}
.y1119_c00002{bottom:160.364160pt;}
.y741_c00002{bottom:160.680000pt;}
.ya76_c00002{bottom:160.960000pt;}
.y486_c00002{bottom:161.316480pt;}
.y487_c00002{bottom:161.320000pt;}
.yc88_c00002{bottom:161.640000pt;}
.y126c_c00002{bottom:161.644160pt;}
.yb58_c00002{bottom:162.240000pt;}
.yb43_c00002{bottom:162.560000pt;}
.y1340_c00002{bottom:162.596480pt;}
.y925_c00002{bottom:162.600000pt;}
.y146a_c00002{bottom:162.600640pt;}
.y10a5_c00002{bottom:162.602240pt;}
.y1322_c00002{bottom:162.604160pt;}
.y903_c00002{bottom:162.880000pt;}
.ybef_c00002{bottom:162.920000pt;}
.y36c_c00002{bottom:163.240000pt;}
.y8d_c00002{bottom:163.560000pt;}
.y300_c00002{bottom:163.880000pt;}
.y1247_c00002{bottom:163.880640pt;}
.y13ea_c00002{bottom:164.199040pt;}
.y1d5_c00002{bottom:164.200000pt;}
.y681_c00002{bottom:164.516480pt;}
.y682_c00002{bottom:164.520000pt;}
.yf74_c00002{bottom:164.840000pt;}
.y12d9_c00002{bottom:164.840640pt;}
.yf73_c00002{bottom:164.841600pt;}
.yfa2_c00002{bottom:164.844160pt;}
.yd43_c00002{bottom:165.480000pt;}
.y183_c00002{bottom:165.800000pt;}
.ybd1_c00002{bottom:166.120000pt;}
.yb01_c00002{bottom:166.400000pt;}
.y83f_c00002{bottom:166.440000pt;}
.yafb_c00002{bottom:166.720000pt;}
.yb33_c00002{bottom:166.760000pt;}
.y1223_c00002{bottom:166.760640pt;}
.y628_c00002{bottom:167.080000pt;}
.y106f_c00002{bottom:167.080640pt;}
.y135b_c00002{bottom:167.081280pt;}
.y118c_c00002{bottom:167.081600pt;}
.y104c_c00002{bottom:167.084160pt;}
.y9c1_c00002{bottom:167.360000pt;}
.yc6a_c00002{bottom:167.400000pt;}
.yd3e_c00002{bottom:167.720000pt;}
.yc08_c00002{bottom:168.040000pt;}
.ya39_c00002{bottom:168.320000pt;}
.y87d_c00002{bottom:168.360000pt;}
.ya3d_c00002{bottom:168.640000pt;}
.y87c_c00002{bottom:168.680000pt;}
.ya94_c00002{bottom:169.280000pt;}
.yed3_c00002{bottom:169.317120pt;}
.y429_c00002{bottom:169.320000pt;}
.y1382_c00002{bottom:169.320640pt;}
.y130f_c00002{bottom:169.321600pt;}
.y14a7_c00002{bottom:169.324160pt;}
.ya9a_c00002{bottom:169.600000pt;}
.y7f9_c00002{bottom:169.640000pt;}
.y51a_c00002{bottom:169.960000pt;}
.yaa5_c00002{bottom:170.240000pt;}
.y2bf_c00002{bottom:170.600000pt;}
.y698_c00002{bottom:170.920000pt;}
.y1165_c00002{bottom:170.924160pt;}
.y4f5_c00002{bottom:171.240000pt;}
.y96c_c00002{bottom:171.520000pt;}
.y165_c00002{bottom:171.560000pt;}
.y10db_c00002{bottom:171.560640pt;}
.y1231_c00002{bottom:171.561280pt;}
.y1419_c00002{bottom:171.561600pt;}
.y10cd_c00002{bottom:171.564160pt;}
.y7db_c00002{bottom:171.880000pt;}
.y90d_c00002{bottom:172.200000pt;}
.y9f3_c00002{bottom:172.480000pt;}
.ycb4_c00002{bottom:172.520000pt;}
.ybe3_c00002{bottom:172.800000pt;}
.y5c9_c00002{bottom:172.840000pt;}
.ya75_c00002{bottom:173.120000pt;}
.y30_c00002{bottom:173.480000pt;}
.y62c_c00002{bottom:173.794560pt;}
.y1fd_c00002{bottom:173.795840pt;}
.y5da_c00002{bottom:173.796160pt;}
.y250_c00002{bottom:173.796480pt;}
.yff_c00002{bottom:173.798080pt;}
.y10bd_c00002{bottom:173.799040pt;}
.y100_c00002{bottom:173.800000pt;}
.y144b_c00002{bottom:173.800640pt;}
.y1437_c00002{bottom:173.801600pt;}
.y8c_c00002{bottom:173.806080pt;}
.y2fe_c00002{bottom:174.118080pt;}
.y2ff_c00002{bottom:174.120000pt;}
.y798_c00002{bottom:174.436160pt;}
.y5f_c00002{bottom:174.436480pt;}
.y60_c00002{bottom:174.440000pt;}
.y842_c00002{bottom:174.760000pt;}
.y140c_c00002{bottom:174.764160pt;}
.y5ea_c00002{bottom:175.080000pt;}
.yc9b_c00002{bottom:175.400000pt;}
.yd1c_c00002{bottom:175.720000pt;}
.y56d_c00002{bottom:175.721600pt;}
.y13a1_c00002{bottom:176.036480pt;}
.y1137_c00002{bottom:176.039040pt;}
.ycfc_c00002{bottom:176.040000pt;}
.y13c8_c00002{bottom:176.040640pt;}
.y1021_c00002{bottom:176.041600pt;}
.y4af_c00002{bottom:176.360000pt;}
.y485_c00002{bottom:176.680000pt;}
.ydbf_c00002{bottom:176.991040pt;}
.ydc8_c00002{bottom:176.991360pt;}
.y706_c00002{bottom:177.000000pt;}
.y2c9_c00002{bottom:177.003840pt;}
.y123_c00002{bottom:177.320000pt;}
.y122_c00002{bottom:177.324160pt;}
.yb57_c00002{bottom:177.600000pt;}
.y196_c00002{bottom:177.640000pt;}
.y6b4_c00002{bottom:177.958080pt;}
.y6b5_c00002{bottom:177.960000pt;}
.yb42_c00002{bottom:178.240000pt;}
.y1469_c00002{bottom:178.279040pt;}
.yd73_c00002{bottom:178.280000pt;}
.y10a4_c00002{bottom:178.280640pt;}
.yff5_c00002{bottom:178.281600pt;}
.y936_c00002{bottom:178.600000pt;}
.yb00_c00002{bottom:178.880000pt;}
.yea6_c00002{bottom:178.913920pt;}
.y7c3_c00002{bottom:178.920000pt;}
.yafa_c00002{bottom:179.200000pt;}
.ydf7_c00002{bottom:179.226880pt;}
.y13d_c00002{bottom:179.240000pt;}
.ydea_c00002{bottom:179.560000pt;}
.y67f_c00002{bottom:179.879680pt;}
.y680_c00002{bottom:179.880000pt;}
.yb2c_c00002{bottom:180.200000pt;}
.y11b2_c00002{bottom:180.205760pt;}
.y8e6_c00002{bottom:180.480000pt;}
.y1179_c00002{bottom:180.516480pt;}
.yf72_c00002{bottom:180.519040pt;}
.yc87_c00002{bottom:180.520000pt;}
.y1088_c00002{bottom:180.520640pt;}
.ya3b_c00002{bottom:180.800000pt;}
.y651_c00002{bottom:180.840000pt;}
.ya37_c00002{bottom:181.120000pt;}
.y182_c00002{bottom:181.160000pt;}
.y715_c00002{bottom:181.480000pt;}
.ya93_c00002{bottom:181.760000pt;}
.y29e_c00002{bottom:181.800000pt;}
.y484_c00002{bottom:182.120000pt;}
.ya99_c00002{bottom:182.400000pt;}
.yeaa_c00002{bottom:182.440000pt;}
.yaa4_c00002{bottom:182.720000pt;}
.y12c8_c00002{bottom:182.756480pt;}
.y106e_c00002{bottom:182.759040pt;}
.y135a_c00002{bottom:182.759680pt;}
.yc38_c00002{bottom:182.760000pt;}
.ya90_c00002{bottom:183.040000pt;}
.y4ef_c00002{bottom:183.080000pt;}
.y4bd_c00002{bottom:183.400000pt;}
.yeca_c00002{bottom:183.722240pt;}
.y1be_c00002{bottom:184.040000pt;}
.y96b_c00002{bottom:184.640000pt;}
.y87b_c00002{bottom:184.680000pt;}
.y9f7_c00002{bottom:184.960000pt;}
.y1381_c00002{bottom:184.999040pt;}
.y87a_c00002{bottom:185.000000pt;}
.y130e_c00002{bottom:185.000640pt;}
.ya38_c00002{bottom:185.280000pt;}
.ycde_c00002{bottom:185.320000pt;}
.y4d6_c00002{bottom:185.640000pt;}
.ya74_c00002{bottom:185.920000pt;}
.yaaf_c00002{bottom:185.960000pt;}
.y1246_c00002{bottom:185.961600pt;}
.y601_c00002{bottom:186.280000pt;}
.y13e9_c00002{bottom:186.282240pt;}
.yb92_c00002{bottom:186.600000pt;}
.yb93_c00002{bottom:186.920000pt;}
.y705_c00002{bottom:186.921600pt;}
.ye7a_c00002{bottom:186.922240pt;}
.y10ed_c00002{bottom:187.236480pt;}
.yfc9_c00002{bottom:187.239040pt;}
.yea_c00002{bottom:187.240000pt;}
.yfa1_c00002{bottom:187.240640pt;}
.y75a_c00002{bottom:187.560000pt;}
.y198_c00002{bottom:187.880000pt;}
.yf3e_c00002{bottom:187.882240pt;}
.y7f8_c00002{bottom:188.200000pt;}
.yef5_c00002{bottom:188.202240pt;}
.y627_c00002{bottom:188.520000pt;}
.y902_c00002{bottom:188.800000pt;}
.y519_c00002{bottom:188.840000pt;}
.y1222_c00002{bottom:188.841600pt;}
.y9c0_c00002{bottom:189.120000pt;}
.y279_c00002{bottom:189.158080pt;}
.y1fc_c00002{bottom:189.159360pt;}
.y5d9_c00002{bottom:189.159680pt;}
.y13c_c00002{bottom:189.160000pt;}
.y11dd_c00002{bottom:189.160640pt;}
.yfe_c00002{bottom:189.161600pt;}
.y9bd_c00002{bottom:189.440000pt;}
.y104b_c00002{bottom:189.476480pt;}
.y1436_c00002{bottom:189.479040pt;}
.y697_c00002{bottom:189.480000pt;}
.y149c_c00002{bottom:189.480640pt;}
.y2fd_c00002{bottom:189.481600pt;}
.y811_c00002{bottom:189.484160pt;}
.y5e_c00002{bottom:189.800000pt;}
.yed2_c00002{bottom:190.120000pt;}
.yd30_c00002{bottom:190.439680pt;}
.y86b_c00002{bottom:190.440000pt;}
.yc20_c00002{bottom:190.760000pt;}
.y36b_c00002{bottom:191.080000pt;}
.y5ab_c00002{bottom:191.398080pt;}
.y8b_c00002{bottom:191.400000pt;}
.y609_c00002{bottom:191.401600pt;}
.yaf9_c00002{bottom:191.680000pt;}
.y1020_c00002{bottom:191.716480pt;}
.y12bf_c00002{bottom:191.719040pt;}
.y7ec_c00002{bottom:191.720000pt;}
.y14a6_c00002{bottom:191.720640pt;}
.y8ba_c00002{bottom:192.040000pt;}
.y797_c00002{bottom:192.358080pt;}
.y2f_c00002{bottom:192.360000pt;}
.y740_c00002{bottom:192.680000pt;}
.yc46_c00002{bottom:193.000000pt;}
.y1164_c00002{bottom:193.319040pt;}
.y745_c00002{bottom:193.320000pt;}
.y2c8_c00002{bottom:193.640000pt;}
.yb41_c00002{bottom:193.920000pt;}
.y1230_c00002{bottom:193.957120pt;}
.yff3_c00002{bottom:193.959040pt;}
.yff4_c00002{bottom:193.960000pt;}
.ya36_c00002{bottom:194.240000pt;}
.y63c_c00002{bottom:194.280000pt;}
.ya92_c00002{bottom:194.560000pt;}
.y13b_c00002{bottom:194.600000pt;}
.y6ca_c00002{bottom:194.920000pt;}
.ya98_c00002{bottom:195.200000pt;}
.y5d_c00002{bottom:195.240000pt;}
.ya97_c00002{bottom:195.520000pt;}
.y801_c00002{bottom:195.560000pt;}
.ya8f_c00002{bottom:195.840000pt;}
.y4d5_c00002{bottom:195.880000pt;}
.y10bc_c00002{bottom:195.881600pt;}
.y1298_c00002{bottom:195.882880pt;}
.y1087_c00002{bottom:195.884160pt;}
.y1d4_c00002{bottom:196.200000pt;}
.y893_c00002{bottom:196.520000pt;}
.yd8a_c00002{bottom:196.836800pt;}
.yd8e_c00002{bottom:196.837440pt;}
.y8a_c00002{bottom:196.840000pt;}
.y96a_c00002{bottom:197.120000pt;}
.y140b_c00002{bottom:197.159040pt;}
.y7da_c00002{bottom:197.160000pt;}
.y9f2_c00002{bottom:197.440000pt;}
.y6e9_c00002{bottom:197.480000pt;}
.ydbe_c00002{bottom:197.793920pt;}
.ydc7_c00002{bottom:197.794240pt;}
.y483_c00002{bottom:197.800000pt;}
.y9df_c00002{bottom:198.120000pt;}
.y1371_c00002{bottom:198.120640pt;}
.y13c7_c00002{bottom:198.121600pt;}
.y1136_c00002{bottom:198.124160pt;}
.y142c_c00002{bottom:198.125760pt;}
.y83e_c00002{bottom:198.440000pt;}
.y853_c00002{bottom:198.760000pt;}
.y1a5_c00002{bottom:199.080000pt;}
.yd72_c00002{bottom:199.400000pt;}
.yea5_c00002{bottom:199.716800pt;}
.y121_c00002{bottom:199.720000pt;}
.y120_c00002{bottom:199.721600pt;}
.ydf6_c00002{bottom:200.029760pt;}
.ya48_c00002{bottom:200.040000pt;}
.ya73_c00002{bottom:200.320000pt;}
.y133f_c00002{bottom:200.356480pt;}
.ybd0_c00002{bottom:200.360000pt;}
.y10a3_c00002{bottom:200.361600pt;}
.y227_c00002{bottom:200.680000pt;}
.ye74_c00002{bottom:200.993920pt;}
.ye79_c00002{bottom:201.000000pt;}
.y33a_c00002{bottom:201.320000pt;}
.y9bf_c00002{bottom:201.600000pt;}
.y63e_c00002{bottom:201.640000pt;}
.y1245_c00002{bottom:201.640640pt;}
.y9bc_c00002{bottom:201.920000pt;}
.y4bc_c00002{bottom:201.960000pt;}
.y13e8_c00002{bottom:201.960640pt;}
.y67e_c00002{bottom:202.275520pt;}
.yef4_c00002{bottom:202.280000pt;}
.y1bd_c00002{bottom:202.600000pt;}
.y12d8_c00002{bottom:202.600640pt;}
.yf71_c00002{bottom:202.601600pt;}
.yfa0_c00002{bottom:202.604160pt;}
.y1d2_c00002{bottom:202.920000pt;}
.y77e_c00002{bottom:203.240000pt;}
.yea9_c00002{bottom:203.241920pt;}
.y8e5_c00002{bottom:203.520000pt;}
.y879_c00002{bottom:203.560000pt;}
.yf3d_c00002{bottom:203.560640pt;}
.y1490_c00002{bottom:203.564160pt;}
.ycdd_c00002{bottom:203.880000pt;}
.yb2e_c00002{bottom:204.200000pt;}
.y1221_c00002{bottom:204.519040pt;}
.yaae_c00002{bottom:204.520000pt;}
.y54a_c00002{bottom:204.834560pt;}
.yfc_c00002{bottom:204.836480pt;}
.y1fb_c00002{bottom:204.837760pt;}
.y3f7_c00002{bottom:204.838080pt;}
.yfd_c00002{bottom:204.840000pt;}
.y118b_c00002{bottom:204.840640pt;}
.y1457_c00002{bottom:204.841600pt;}
.y591_c00002{bottom:204.842240pt;}
.y104a_c00002{bottom:204.844160pt;}
.yaec_c00002{bottom:205.120000pt;}
.y2fc_c00002{bottom:205.160000pt;}
.y5b_c00002{bottom:205.476480pt;}
.y5c_c00002{bottom:205.480000pt;}
.yd2f_c00002{bottom:206.118080pt;}
.y414_c00002{bottom:206.120000pt;}
.y126b_c00002{bottom:206.121600pt;}
.y938_c00002{bottom:206.440000pt;}
.yd3a_c00002{bottom:206.760000pt;}
.ya35_c00002{bottom:207.040000pt;}
.y88_c00002{bottom:207.076480pt;}
.y56c_c00002{bottom:207.078080pt;}
.y89_c00002{bottom:207.080000pt;}
.y1321_c00002{bottom:207.080640pt;}
.y130d_c00002{bottom:207.081600pt;}
.y101f_c00002{bottom:207.084160pt;}
.y6a3_c00002{bottom:207.086080pt;}
.y518_c00002{bottom:207.400000pt;}
.ya91_c00002{bottom:207.680000pt;}
.y482_c00002{bottom:207.720000pt;}
.y481_c00002{bottom:207.721600pt;}
.ya8e_c00002{bottom:208.000000pt;}
.y38e_c00002{bottom:208.040000pt;}
.y4ae_c00002{bottom:208.360000pt;}
.yc45_c00002{bottom:208.680000pt;}
.yc11_c00002{bottom:209.000000pt;}
.y5a9_c00002{bottom:209.316480pt;}
.yfc8_c00002{bottom:209.318080pt;}
.y5aa_c00002{bottom:209.320000pt;}
.y122f_c00002{bottom:209.320640pt;}
.y10da_c00002{bottom:209.321600pt;}
.y12cf_c00002{bottom:209.322240pt;}
.y13ab_c00002{bottom:209.324160pt;}
.yb56_c00002{bottom:209.600000pt;}
.y2c7_c00002{bottom:209.636160pt;}
.y195_c00002{bottom:209.640000pt;}
.y9f1_c00002{bottom:209.920000pt;}
.y626_c00002{bottom:209.960000pt;}
.y969_c00002{bottom:210.240000pt;}
.y796_c00002{bottom:210.278720pt;}
.y292_c00002{bottom:210.280000pt;}
.y2fb_c00002{bottom:210.600000pt;}
.y2e_c00002{bottom:210.920000pt;}
.y45d_c00002{bottom:211.240000pt;}
.y6b3_c00002{bottom:211.556480pt;}
.y10bb_c00002{bottom:211.560000pt;}
.y1435_c00002{bottom:211.560640pt;}
.y1297_c00002{bottom:211.561280pt;}
.y144a_c00002{bottom:211.561600pt;}
.y10ba_c00002{bottom:211.564160pt;}
.y810_c00002{bottom:211.879040pt;}
.y49b_c00002{bottom:211.880000pt;}
.y901_c00002{bottom:212.160000pt;}
.y5e9_c00002{bottom:212.200000pt;}
.y608_c00002{bottom:212.520000pt;}
.y63b_c00002{bottom:212.840000pt;}
.yd61_c00002{bottom:213.160000pt;}
.y13a0_c00002{bottom:213.796480pt;}
.y13c6_c00002{bottom:213.799040pt;}
.yc98_c00002{bottom:213.800000pt;}
.y12be_c00002{bottom:213.802240pt;}
.y142b_c00002{bottom:213.804160pt;}
.y9be_c00002{bottom:214.080000pt;}
.y800_c00002{bottom:214.120000pt;}
.y9bb_c00002{bottom:214.400000pt;}
.yc9a_c00002{bottom:214.440000pt;}
.y4d4_c00002{bottom:214.760000pt;}
.y4ee_c00002{bottom:215.080000pt;}
.y11e_c00002{bottom:215.396480pt;}
.y11f_c00002{bottom:215.400000pt;}
.y1163_c00002{bottom:215.404160pt;}
.ye0f_c00002{bottom:215.720000pt;}
.y1453_c00002{bottom:216.039040pt;}
.y6e8_c00002{bottom:216.040000pt;}
.yff2_c00002{bottom:216.040640pt;}
.y7c2_c00002{bottom:216.360000pt;}
.y9de_c00002{bottom:216.680000pt;}
.ye43_c00002{bottom:217.000000pt;}
.y19d_c00002{bottom:217.320000pt;}
.y1a4_c00002{bottom:217.640000pt;}
.yaeb_c00002{bottom:217.920000pt;}
.ybaa_c00002{bottom:217.960000pt;}
.ydbd_c00002{bottom:218.277120pt;}
.ydc6_c00002{bottom:218.277440pt;}
.yf70_c00002{bottom:218.279040pt;}
.y361_c00002{bottom:218.280000pt;}
.y11b1_c00002{bottom:218.280640pt;}
.y1104_c00002{bottom:218.281600pt;}
.y1445_c00002{bottom:218.282240pt;}
.yb91_c00002{bottom:218.600000pt;}
.y36a_c00002{bottom:218.920000pt;}
.y140a_c00002{bottom:219.240000pt;}
.y1409_c00002{bottom:219.244160pt;}
.ya34_c00002{bottom:219.520000pt;}
.y339_c00002{bottom:219.880000pt;}
.y3b3_c00002{bottom:220.193600pt;}
.y549_c00002{bottom:220.198080pt;}
.y24f_c00002{bottom:220.200000pt;}
.y1fa_c00002{bottom:220.201280pt;}
.y13a_c00002{bottom:220.201600pt;}
.y499_c00002{bottom:220.203200pt;}
.y590_c00002{bottom:220.205760pt;}
.y1370_c00002{bottom:220.516480pt;}
.y138d_c00002{bottom:220.518080pt;}
.y118a_c00002{bottom:220.519040pt;}
.y181_c00002{bottom:220.520000pt;}
.y1135_c00002{bottom:220.520640pt;}
.y2fa_c00002{bottom:220.521600pt;}
.y59_c00002{bottom:220.833600pt;}
.y5a_c00002{bottom:220.840000pt;}
.yde9_c00002{bottom:221.156480pt;}
.y6bf_c00002{bottom:221.480000pt;}
.yd2e_c00002{bottom:221.481600pt;}
.ya8d_c00002{bottom:221.760000pt;}
.yefb_c00002{bottom:221.794240pt;}
.ye73_c00002{bottom:221.796800pt;}
.y126a_c00002{bottom:221.797120pt;}
.y449_c00002{bottom:221.800000pt;}
.ya88_c00002{bottom:222.400000pt;}
.y87_c00002{bottom:222.440000pt;}
.y86_c00002{bottom:222.441600pt;}
.y968_c00002{bottom:222.720000pt;}
.ydf5_c00002{bottom:222.750720pt;}
.y130c_c00002{bottom:222.759040pt;}
.yc1f_c00002{bottom:222.760000pt;}
.y9ee_c00002{bottom:223.040000pt;}
.y226_c00002{bottom:223.080000pt;}
.y225_c00002{bottom:223.084160pt;}
.y480_c00002{bottom:223.400000pt;}
.y7eb_c00002{bottom:223.720000pt;}
.y1244_c00002{bottom:223.721600pt;}
.y13e7_c00002{bottom:224.041600pt;}
.y7d5_c00002{bottom:224.360000pt;}
.y419_c00002{bottom:224.680000pt;}
.y5a8_c00002{bottom:224.681600pt;}
.yb55_c00002{bottom:224.960000pt;}
.yfc7_c00002{bottom:224.996480pt;}
.y10ec_c00002{bottom:224.998080pt;}
.yf9e_c00002{bottom:224.999040pt;}
.yf9f_c00002{bottom:225.000000pt;}
.y12ce_c00002{bottom:225.000640pt;}
.yb40_c00002{bottom:225.280000pt;}
.yd35_c00002{bottom:225.320000pt;}
.yb3e_c00002{bottom:225.600000pt;}
.yfb_c00002{bottom:225.640000pt;}
.yf3c_c00002{bottom:225.956480pt;}
.y2c6_c00002{bottom:225.957440pt;}
.y937_c00002{bottom:225.960000pt;}
.y148f_c00002{bottom:225.960640pt;}
.ye9_c00002{bottom:226.280000pt;}
.y8e4_c00002{bottom:226.560000pt;}
.y38d_c00002{bottom:226.600000pt;}
.y1220_c00002{bottom:226.600640pt;}
.y67d_c00002{bottom:226.604160pt;}
.ya72_c00002{bottom:226.880000pt;}
.y11dc_c00002{bottom:226.920000pt;}
.y11db_c00002{bottom:226.924160pt;}
.y1118_c00002{bottom:227.236480pt;}
.y12de_c00002{bottom:227.238080pt;}
.y1396_c00002{bottom:227.239040pt;}
.yc1a_c00002{bottom:227.240000pt;}
.y11ca_c00002{bottom:227.240640pt;}
.y9ba_c00002{bottom:227.520000pt;}
.yb7c_c00002{bottom:227.880000pt;}
.yab_c00002{bottom:228.200000pt;}
.y5c8_c00002{bottom:228.840000pt;}
.y139f_c00002{bottom:229.160000pt;}
.y139e_c00002{bottom:229.165760pt;}
.y84b_c00002{bottom:229.480000pt;}
.y101e_c00002{bottom:229.480640pt;}
.yb1c_c00002{bottom:229.800000pt;}
.y73f_c00002{bottom:230.120000pt;}
.yc01_c00002{bottom:230.440000pt;}
.y11d_c00002{bottom:230.760000pt;}
.y11c_c00002{bottom:230.761600pt;}
.yaea_c00002{bottom:231.040000pt;}
.y14f_c00002{bottom:231.080000pt;}
.yed1_c00002{bottom:231.400000pt;}
.y122e_c00002{bottom:231.716480pt;}
.y10a2_c00002{bottom:231.719040pt;}
.y704_c00002{bottom:231.720000pt;}
.y7a0_c00002{bottom:231.723840pt;}
.ya33_c00002{bottom:232.000000pt;}
.y878_c00002{bottom:232.040000pt;}
.y29d_c00002{bottom:232.360000pt;}
.y714_c00002{bottom:232.680000pt;}
.ya89_c00002{bottom:232.960000pt;}
.yc25_c00002{bottom:233.000000pt;}
.y900_c00002{bottom:233.280000pt;}
.yc6f_c00002{bottom:233.320000pt;}
.yc8_c00002{bottom:233.640000pt;}
.y11b0_c00002{bottom:233.644160pt;}
.ye2d_c00002{bottom:233.953920pt;}
.y1194_c00002{bottom:233.956480pt;}
.y1296_c00002{bottom:233.957120pt;}
.y10b9_c00002{bottom:233.958080pt;}
.y1103_c00002{bottom:233.959040pt;}
.y291_c00002{bottom:233.960000pt;}
.y1178_c00002{bottom:233.960640pt;}
.y80f_c00002{bottom:233.964160pt;}
.ya8b_c00002{bottom:234.240000pt;}
.ya8c_c00002{bottom:234.560000pt;}
.y1bc_c00002{bottom:234.600000pt;}
.y9f0_c00002{bottom:234.880000pt;}
.y314_c00002{bottom:234.920000pt;}
.ya87_c00002{bottom:235.200000pt;}
.y8b9_c00002{bottom:235.240000pt;}
.y9ed_c00002{bottom:235.520000pt;}
.yde8_c00002{bottom:235.553920pt;}
.y2de_c00002{bottom:235.560000pt;}
.y967_c00002{bottom:235.840000pt;}
.y352_c00002{bottom:235.878080pt;}
.y52c_c00002{bottom:235.879360pt;}
.y1f9_c00002{bottom:235.879680pt;}
.y266_c00002{bottom:235.880000pt;}
.y13c5_c00002{bottom:235.880640pt;}
.y265_c00002{bottom:235.881600pt;}
.y58f_c00002{bottom:235.884160pt;}
.y134c_c00002{bottom:236.196480pt;}
.y3b2_c00002{bottom:236.198080pt;}
.y1134_c00002{bottom:236.199040pt;}
.y2f9_c00002{bottom:236.200000pt;}
.y12c7_c00002{bottom:236.200640pt;}
.yb90_c00002{bottom:236.520000pt;}
.y58_c00002{bottom:236.840000pt;}
.yc78_c00002{bottom:237.160000pt;}
.y1269_c00002{bottom:237.160640pt;}
.ycf3_c00002{bottom:237.480000pt;}
.y1162_c00002{bottom:237.796480pt;}
.ye42_c00002{bottom:237.800000pt;}
.y85_c00002{bottom:238.120000pt;}
.y548_c00002{bottom:238.121600pt;}
.y1452_c00002{bottom:238.125760pt;}
.yc8d_c00002{bottom:238.440000pt;}
.y338_c00002{bottom:238.760000pt;}
.y26f_c00002{bottom:239.080000pt;}
.ydc5_c00002{bottom:239.080320pt;}
.y517_c00002{bottom:239.400000pt;}
.y1243_c00002{bottom:239.400640pt;}
.y13e6_c00002{bottom:239.719040pt;}
.y759_c00002{bottom:239.720000pt;}
.y9b9_c00002{bottom:240.000000pt;}
.yc07_c00002{bottom:240.040000pt;}
.y623_c00002{bottom:240.358080pt;}
.y4ad_c00002{bottom:240.360000pt;}
.yfc6_c00002{bottom:240.360640pt;}
.y10eb_c00002{bottom:240.361600pt;}
.yf6f_c00002{bottom:240.362240pt;}
.y13b9_c00002{bottom:240.364160pt;}
.y448_c00002{bottom:240.680000pt;}
.yb3f_c00002{bottom:240.960000pt;}
.ya71_c00002{bottom:241.280000pt;}
.y139_c00002{bottom:241.320000pt;}
.yf3b_c00002{bottom:241.324160pt;}
.y194_c00002{bottom:241.640000pt;}
.y1408_c00002{bottom:241.640640pt;}
.yaad_c00002{bottom:241.960000pt;}
.y121f_c00002{bottom:242.279040pt;}
.yccc_c00002{bottom:242.280000pt;}
.y6b1_c00002{bottom:242.598080pt;}
.y6b2_c00002{bottom:242.600000pt;}
.y1459_c00002{bottom:242.600640pt;}
.y1189_c00002{bottom:242.601600pt;}
.y1049_c00002{bottom:242.604160pt;}
.y1356_c00002{bottom:242.604800pt;}
.yefa_c00002{bottom:242.916800pt;}
.y2d_c00002{bottom:242.920000pt;}
.y2c5_c00002{bottom:242.921600pt;}
.ydf4_c00002{bottom:243.233920pt;}
.y794_c00002{bottom:243.236480pt;}
.y795_c00002{bottom:243.240000pt;}
.yae9_c00002{bottom:243.520000pt;}
.y57_c00002{bottom:243.560000pt;}
.yef3_c00002{bottom:243.877120pt;}
.y8cd_c00002{bottom:243.880000pt;}
.y164_c00002{bottom:244.200000pt;}
.ya31_c00002{bottom:244.480000pt;}
.yc30_c00002{bottom:244.520000pt;}
.y369_c00002{bottom:244.840000pt;}
.y1320_c00002{bottom:244.840640pt;}
.y130b_c00002{bottom:244.844160pt;}
.yc99_c00002{bottom:245.160000pt;}
.y224_c00002{bottom:245.480000pt;}
.y223_c00002{bottom:245.486080pt;}
.y45c_c00002{bottom:245.800000pt;}
.y8e3_c00002{bottom:246.080000pt;}
.yc19_c00002{bottom:246.120000pt;}
.y11b_c00002{bottom:246.440000pt;}
.y4d3_c00002{bottom:246.760000pt;}
.ya8a_c00002{bottom:247.040000pt;}
.y4c3_c00002{bottom:247.080000pt;}
.y1418_c00002{bottom:247.080640pt;}
.y10d9_c00002{bottom:247.081600pt;}
.yf9d_c00002{bottom:247.082240pt;}
.y12a7_c00002{bottom:247.084160pt;}
.y9ef_c00002{bottom:247.360000pt;}
.y892_c00002{bottom:247.400000pt;}
.y9ec_c00002{bottom:247.680000pt;}
.y7d9_c00002{bottom:248.040000pt;}
.y148e_c00002{bottom:248.041600pt;}
.y966_c00002{bottom:248.320000pt;}
.y79f_c00002{bottom:248.360000pt;}
.y79e_c00002{bottom:248.361600pt;}
.ya32_c00002{bottom:248.640000pt;}
.y73e_c00002{bottom:248.680000pt;}
.y67b_c00002{bottom:248.999040pt;}
.y67c_c00002{bottom:249.000000pt;}
.y11da_c00002{bottom:249.319040pt;}
.yfa_c00002{bottom:249.320000pt;}
.y1295_c00002{bottom:249.320640pt;}
.y106d_c00002{bottom:249.321600pt;}
.y1449_c00002{bottom:249.322240pt;}
.y1193_c00002{bottom:249.324160pt;}
.y14e_c00002{bottom:249.640000pt;}
.y780_c00002{bottom:249.960000pt;}
.yb73_c00002{bottom:250.280000pt;}
.y877_c00002{bottom:250.600000pt;}
.y876_c00002{bottom:250.920000pt;}
.y263_c00002{bottom:251.556480pt;}
.y52b_c00002{bottom:251.557760pt;}
.y1f8_c00002{bottom:251.558080pt;}
.y264_c00002{bottom:251.560000pt;}
.y101d_c00002{bottom:251.561600pt;}
.y138c_c00002{bottom:251.562240pt;}
.y142a_c00002{bottom:251.564160pt;}
.ycd2_c00002{bottom:251.880000pt;}
.y9b2_c00002{bottom:252.160000pt;}
.yc7_c00002{bottom:252.200000pt;}
.y9b8_c00002{bottom:252.480000pt;}
.yd2d_c00002{bottom:252.519360pt;}
.y47f_c00002{bottom:252.520000pt;}
.y8ff_c00002{bottom:252.800000pt;}
.y180_c00002{bottom:252.840000pt;}
.y1161_c00002{bottom:253.160000pt;}
.y1160_c00002{bottom:253.164160pt;}
.y1bb_c00002{bottom:253.480000pt;}
.ya70_c00002{bottom:253.760000pt;}
.y84_c00002{bottom:253.796480pt;}
.y133e_c00002{bottom:253.799040pt;}
.y547_c00002{bottom:253.800000pt;}
.y12ee_c00002{bottom:253.800640pt;}
.y10a1_c00002{bottom:253.801600pt;}
.yff1_c00002{bottom:253.804160pt;}
.y58e_c00002{bottom:253.806080pt;}
.y3b1_c00002{bottom:254.120000pt;}
.yb8e_c00002{bottom:254.440000pt;}
.ye2c_c00002{bottom:254.756800pt;}
.yb8f_c00002{bottom:254.760000pt;}
.yb2b_c00002{bottom:255.080000pt;}
.y78e_c00002{bottom:255.400000pt;}
.y7ea_c00002{bottom:255.720000pt;}
.y622_c00002{bottom:255.721600pt;}
.yde7_c00002{bottom:256.037120pt;}
.yfc5_c00002{bottom:256.039040pt;}
.y5a7_c00002{bottom:256.040000pt;}
.yf6e_c00002{bottom:256.040640pt;}
.y1177_c00002{bottom:256.041600pt;}
.y1150_c00002{bottom:256.042240pt;}
.y80e_c00002{bottom:256.360000pt;}
.yae8_c00002{bottom:256.640000pt;}
.ye0e_c00002{bottom:256.985280pt;}
.y278_c00002{bottom:257.000000pt;}
.y1407_c00002{bottom:257.004160pt;}
.ya30_c00002{bottom:257.280000pt;}
.yc28_c00002{bottom:257.320000pt;}
.y26e_c00002{bottom:257.640000pt;}
.y45b_c00002{bottom:257.960000pt;}
.y6b0_c00002{bottom:258.276480pt;}
.y1133_c00002{bottom:258.279040pt;}
.ye8_c00002{bottom:258.280000pt;}
.y1188_c00002{bottom:258.280640pt;}
.y12c6_c00002{bottom:258.281600pt;}
.y2c4_c00002{bottom:258.600000pt;}
.yea8_c00002{bottom:258.917120pt;}
.y4ac_c00002{bottom:258.920000pt;}
.y2dd_c00002{bottom:259.240000pt;}
.y1268_c00002{bottom:259.556480pt;}
.yb53_c00002{bottom:259.560000pt;}
.ydbc_c00002{bottom:259.872960pt;}
.y4bf_c00002{bottom:259.880000pt;}
.y9eb_c00002{bottom:260.160000pt;}
.yaa_c00002{bottom:260.200000pt;}
.y131f_c00002{bottom:260.519040pt;}
.yc69_c00002{bottom:260.520000pt;}
.ya85_c00002{bottom:260.800000pt;}
.y5c7_c00002{bottom:260.840000pt;}
.y516_c00002{bottom:261.160000pt;}
.y965_c00002{bottom:261.440000pt;}
.yd71_c00002{bottom:261.476800pt;}
.ycfb_c00002{bottom:261.480000pt;}
.y1242_c00002{bottom:261.481600pt;}
.yb1b_c00002{bottom:261.800000pt;}
.y13e5_c00002{bottom:261.800640pt;}
.yb35_c00002{bottom:262.120000pt;}
.y86a_c00002{bottom:262.440000pt;}
.y10cc_c00002{bottom:262.756480pt;}
.y10d8_c00002{bottom:262.759040pt;}
.y8cc_c00002{bottom:262.760000pt;}
.yf9c_c00002{bottom:262.760640pt;}
.y222_c00002{bottom:263.080000pt;}
.y63a_c00002{bottom:263.400000pt;}
.yf39_c00002{bottom:263.716480pt;}
.yf3a_c00002{bottom:263.720000pt;}
.y148d_c00002{bottom:263.720640pt;}
.y8e2_c00002{bottom:264.000000pt;}
.ydf3_c00002{bottom:264.036800pt;}
.y2c3_c00002{bottom:264.040000pt;}
.y79d_c00002{bottom:264.041600pt;}
.y65c_c00002{bottom:264.360000pt;}
.y121e_c00002{bottom:264.364160pt;}
.y9b1_c00002{bottom:264.640000pt;}
.yef2_c00002{bottom:264.676800pt;}
.y703_c00002{bottom:264.680000pt;}
.y9b7_c00002{bottom:264.960000pt;}
.y1048_c00002{bottom:264.996480pt;}
.y13b4_c00002{bottom:264.998720pt;}
.y106c_c00002{bottom:264.999040pt;}
.y138_c00002{bottom:265.000000pt;}
.y1355_c00002{bottom:265.000640pt;}
.y2f8_c00002{bottom:265.320000pt;}
.y615_c00002{bottom:265.640000pt;}
.y723_c00002{bottom:265.960000pt;}
.ya6f_c00002{bottom:266.240000pt;}
.y2be_c00002{bottom:266.600000pt;}
.y262_c00002{bottom:266.920000pt;}
.y52a_c00002{bottom:266.921280pt;}
.y1f7_c00002{bottom:266.921600pt;}
.y743_c00002{bottom:266.923200pt;}
.y12bd_c00002{bottom:267.236480pt;}
.y101c_c00002{bottom:267.239040pt;}
.yb2a_c00002{bottom:267.240000pt;}
.y138b_c00002{bottom:267.240640pt;}
.y73d_c00002{bottom:267.560000pt;}
.y852_c00002{bottom:267.880000pt;}
.yd2c_c00002{bottom:268.197760pt;}
.y14d_c00002{bottom:268.200000pt;}
.ybf9_c00002{bottom:268.520000pt;}
.y56_c00002{bottom:268.840000pt;}
.y83_c00002{bottom:269.158080pt;}
.y2c_c00002{bottom:269.160000pt;}
.y546_c00002{bottom:269.161600pt;}
.y13aa_c00002{bottom:269.477120pt;}
.y12ed_c00002{bottom:269.479040pt;}
.y6a2_c00002{bottom:269.480000pt;}
.y10a0_c00002{bottom:269.480640pt;}
.yae7_c00002{bottom:269.760000pt;}
.y7ff_c00002{bottom:270.120000pt;}
.y3b0_c00002{bottom:270.440000pt;}
.y7f7_c00002{bottom:270.759040pt;}
.y337_c00002{bottom:270.760000pt;}
.y4be_c00002{bottom:271.080000pt;}
.y67a_c00002{bottom:271.084160pt;}
.y5a6_c00002{bottom:271.393600pt;}
.y621_c00002{bottom:271.398080pt;}
.y58d_c00002{bottom:271.400000pt;}
.y58c_c00002{bottom:271.401600pt;}
.y1192_c00002{bottom:271.716480pt;}
.y1395_c00002{bottom:271.717120pt;}
.y1176_c00002{bottom:271.719040pt;}
.y17f_c00002{bottom:271.720000pt;}
.y114f_c00002{bottom:271.720640pt;}
.y1ba_c00002{bottom:272.040000pt;}
.y351_c00002{bottom:272.360000pt;}
.y9ea_c00002{bottom:272.640000pt;}
.y8da_c00002{bottom:272.680000pt;}
.y368_c00002{bottom:273.000000pt;}
.yed0_c00002{bottom:273.002560pt;}
.y7d8_c00002{bottom:273.320000pt;}
.ya84_c00002{bottom:273.600000pt;}
.y193_c00002{bottom:273.640000pt;}
.y6af_c00002{bottom:273.641600pt;}
.y13c4_c00002{bottom:273.644160pt;}
.y964_c00002{bottom:273.920000pt;}
.y1432_c00002{bottom:273.956480pt;}
.y12c5_c00002{bottom:273.959040pt;}
.y4e9_c00002{bottom:273.960000pt;}
.y1429_c00002{bottom:273.960640pt;}
.y793_c00002{bottom:274.280000pt;}
.yd08_c00002{bottom:274.600000pt;}
.y7d4_c00002{bottom:274.920000pt;}
.y1267_c00002{bottom:274.924160pt;}
.ye2b_c00002{bottom:275.240000pt;}
.y115e_c00002{bottom:275.556480pt;}
.y115f_c00002{bottom:275.560000pt;}
.y3af_c00002{bottom:275.880000pt;}
.yff0_c00002{bottom:276.199040pt;}
.y163_c00002{bottom:276.200000pt;}
.y8fe_c00002{bottom:276.480000pt;}
.yc1e_c00002{bottom:276.520000pt;}
.y607_c00002{bottom:276.840000pt;}
.yde6_c00002{bottom:276.842240pt;}
.y9b0_c00002{bottom:277.120000pt;}
.y1241_c00002{bottom:277.159040pt;}
.y38c_c00002{bottom:277.160000pt;}
.y9b6_c00002{bottom:277.440000pt;}
.y13e4_c00002{bottom:277.479040pt;}
.y290_c00002{bottom:277.480000pt;}
.ye0d_c00002{bottom:277.788160pt;}
.y447_c00002{bottom:277.800000pt;}
.y917_c00002{bottom:278.120000pt;}
.y11af_c00002{bottom:278.120640pt;}
.yf6d_c00002{bottom:278.121600pt;}
.y12e4_c00002{bottom:278.123200pt;}
.y10ea_c00002{bottom:278.124160pt;}
.y13b8_c00002{bottom:278.125760pt;}
.ybcf_c00002{bottom:278.440000pt;}
.y4d2_c00002{bottom:278.760000pt;}
.y1e8_c00002{bottom:279.080000pt;}
.yf38_c00002{bottom:279.084160pt;}
.y1406_c00002{bottom:279.396480pt;}
.yd89_c00002{bottom:279.397120pt;}
.y515_c00002{bottom:279.400000pt;}
.y2c2_c00002{bottom:279.720000pt;}
.ydbb_c00002{bottom:280.356160pt;}
.yec9_c00002{bottom:280.357440pt;}
.y869_c00002{bottom:280.360000pt;}
.y1187_c00002{bottom:280.361600pt;}
.y13b3_c00002{bottom:280.362240pt;}
.y1132_c00002{bottom:280.364160pt;}
.y1047_c00002{bottom:280.365760pt;}
.y358_c00002{bottom:280.680000pt;}
.y83d_c00002{bottom:281.320000pt;}
.y1a3_c00002{bottom:281.640000pt;}
.yae6_c00002{bottom:281.920000pt;}
.yd6f_c00002{bottom:281.957120pt;}
.yd70_c00002{bottom:281.960000pt;}
.y639_c00002{bottom:282.280000pt;}
.y40d_c00002{bottom:282.598080pt;}
.y529_c00002{bottom:282.599680pt;}
.y1f6_c00002{bottom:282.600000pt;}
.y277_c00002{bottom:282.601600pt;}
.y12bc_c00002{bottom:282.604160pt;}
.y350_c00002{bottom:282.920000pt;}
.y919_c00002{bottom:283.240000pt;}
.y702_c00002{bottom:283.560000pt;}
.ya2f_c00002{bottom:283.840000pt;}
.yd2b_c00002{bottom:283.876160pt;}
.yc6e_c00002{bottom:283.880000pt;}
.yc6_c00002{bottom:284.200000pt;}
.ydf2_c00002{bottom:284.520000pt;}
.y82_c00002{bottom:284.836480pt;}
.y56b_c00002{bottom:284.840000pt;}
.y1209_c00002{bottom:284.840640pt;}
.yf9b_c00002{bottom:284.841600pt;}
.y12a6_c00002{bottom:284.844160pt;}
.yc77_c00002{bottom:285.160000pt;}
.y9e9_c00002{bottom:285.440000pt;}
.y80d_c00002{bottom:285.480000pt;}
.y1e9_c00002{bottom:285.800000pt;}
.y148c_c00002{bottom:285.801600pt;}
.yef9_c00002{bottom:286.117120pt;}
.yb52_c00002{bottom:286.120000pt;}
.ya82_c00002{bottom:286.400000pt;}
.y3ae_c00002{bottom:286.436480pt;}
.y84a_c00002{bottom:286.440000pt;}
.yea4_c00002{bottom:286.442240pt;}
.ya83_c00002{bottom:286.720000pt;}
.y7ce_c00002{bottom:286.760000pt;}
.y620_c00002{bottom:286.761600pt;}
.y963_c00002{bottom:287.040000pt;}
.y11d9_c00002{bottom:287.079040pt;}
.y14c_c00002{bottom:287.080000pt;}
.y1394_c00002{bottom:287.080640pt;}
.y1294_c00002{bottom:287.081600pt;}
.y10b8_c00002{bottom:287.082240pt;}
.y1117_c00002{bottom:287.084160pt;}
.y2dc_c00002{bottom:287.400000pt;}
.yecf_c00002{bottom:287.402240pt;}
.y221_c00002{bottom:287.720000pt;}
.y220_c00002{bottom:287.721600pt;}
.y1f5_c00002{bottom:288.040000pt;}
.y4f4_c00002{bottom:288.360000pt;}
.yc44_c00002{bottom:288.680000pt;}
.yc43_c00002{bottom:289.000000pt;}
.y336_c00002{bottom:289.320000pt;}
.y101b_c00002{bottom:289.321600pt;}
.y1428_c00002{bottom:289.324160pt;}
.y9af_c00002{bottom:289.600000pt;}
.y29c_c00002{bottom:289.640000pt;}
.y9b5_c00002{bottom:289.920000pt;}
.y477_c00002{bottom:289.960000pt;}
.y17e_c00002{bottom:290.280000pt;}
.ye7_c00002{bottom:290.600000pt;}
.y2a_c00002{bottom:290.914560pt;}
.y2b_c00002{bottom:290.920000pt;}
.y115d_c00002{bottom:290.924160pt;}
.y9dd_c00002{bottom:291.240000pt;}
.y12ec_c00002{bottom:291.560000pt;}
.y1468_c00002{bottom:291.560640pt;}
.y109f_c00002{bottom:291.561600pt;}
.ybe2_c00002{bottom:291.880000pt;}
.ya9_c00002{bottom:292.200000pt;}
.y58b_c00002{bottom:292.520000pt;}
.yb3d_c00002{bottom:292.800000pt;}
.y5c6_c00002{bottom:292.840000pt;}
.ybee_c00002{bottom:293.160000pt;}
.y667_c00002{bottom:293.480000pt;}
.y1102_c00002{bottom:293.798080pt;}
.yf6c_c00002{bottom:293.800000pt;}
.y1086_c00002{bottom:293.800640pt;}
.y114e_c00002{bottom:293.801600pt;}
.yf6b_c00002{bottom:293.804160pt;}
.ybce_c00002{bottom:294.120000pt;}
.y11a_c00002{bottom:294.760000pt;}
.y1405_c00002{bottom:294.764160pt;}
.yae5_c00002{bottom:295.040000pt;}
.y162_c00002{bottom:295.080000pt;}
.y8fd_c00002{bottom:295.360000pt;}
.y2c1_c00002{bottom:295.400000pt;}
.y758_c00002{bottom:295.720000pt;}
.y136f_c00002{bottom:296.039040pt;}
.y28f_c00002{bottom:296.040000pt;}
.y12c4_c00002{bottom:296.040640pt;}
.y128a_c00002{bottom:296.041600pt;}
.y1186_c00002{bottom:296.044160pt;}
.ya2e_c00002{bottom:296.320000pt;}
.y4ab_c00002{bottom:296.360000pt;}
.y478_c00002{bottom:296.680000pt;}
.yaf5_c00002{bottom:297.280000pt;}
.y1266_c00002{bottom:297.316480pt;}
.yc97_c00002{bottom:297.320000pt;}
.y1e7_c00002{bottom:297.640000pt;}
.y9e8_c00002{bottom:297.920000pt;}
.y722_c00002{bottom:297.960000pt;}
.ye0c_c00002{bottom:298.271360pt;}
.y24d_c00002{bottom:298.276480pt;}
.y528_c00002{bottom:298.278080pt;}
.y1380_c00002{bottom:298.279040pt;}
.y24e_c00002{bottom:298.280000pt;}
.y2bd_c00002{bottom:298.600000pt;}
.y367_c00002{bottom:298.920000pt;}
.ya81_c00002{bottom:299.200000pt;}
.yd2a_c00002{bottom:299.239680pt;}
.yb29_c00002{bottom:299.240000pt;}
.y1240_c00002{bottom:299.245760pt;}
.y962_c00002{bottom:299.520000pt;}
.y73c_c00002{bottom:299.560000pt;}
.y13e3_c00002{bottom:299.564160pt;}
.y8cb_c00002{bottom:299.880000pt;}
.yd88_c00002{bottom:300.193920pt;}
.y545_c00002{bottom:300.198080pt;}
.y1a2_c00002{bottom:300.200000pt;}
.y56a_c00002{bottom:300.201600pt;}
.y11ae_c00002{bottom:300.516480pt;}
.y122d_c00002{bottom:300.518080pt;}
.y11be_c00002{bottom:300.519040pt;}
.yea3_c00002{bottom:300.520000pt;}
.y10e9_c00002{bottom:300.520640pt;}
.yf9a_c00002{bottom:300.521600pt;}
.y10d7_c00002{bottom:300.522240pt;}
.y638_c00002{bottom:300.840000pt;}
.y514_c00002{bottom:301.160000pt;}
.yf37_c00002{bottom:301.476480pt;}
.yec8_c00002{bottom:301.476800pt;}
.y47e_c00002{bottom:301.480000pt;}
.y148b_c00002{bottom:301.480640pt;}
.y9ae_c00002{bottom:301.760000pt;}
.y3ad_c00002{bottom:301.800000pt;}
.y701_c00002{bottom:302.120000pt;}
.y9b4_c00002{bottom:302.400000pt;}
.y121d_c00002{bottom:302.439040pt;}
.y606_c00002{bottom:302.440000pt;}
.y605_c00002{bottom:302.441600pt;}
.y1280_c00002{bottom:302.758080pt;}
.y106b_c00002{bottom:302.759040pt;}
.y5a5_c00002{bottom:302.760000pt;}
.y10b7_c00002{bottom:302.760640pt;}
.y5a4_c00002{bottom:302.761600pt;}
.y3e5_c00002{bottom:303.080000pt;}
.ye41_c00002{bottom:303.083520pt;}
.y21f_c00002{bottom:303.400000pt;}
.y1f4_c00002{bottom:303.720000pt;}
.y313_c00002{bottom:304.040000pt;}
.y7c1_c00002{bottom:304.360000pt;}
.y58a_c00002{bottom:304.680000pt;}
.y589_c00002{bottom:304.681600pt;}
.y130a_c00002{bottom:304.996480pt;}
.y101a_c00002{bottom:304.999040pt;}
.y849_c00002{bottom:305.000000pt;}
.y12bb_c00002{bottom:305.000640pt;}
.y792_c00002{bottom:305.320000pt;}
.y81_c00002{bottom:305.640000pt;}
.y4e8_c00002{bottom:305.960000pt;}
.yef1_c00002{bottom:306.271360pt;}
.yb72_c00002{bottom:306.280000pt;}
.y34f_c00002{bottom:306.600000pt;}
.y7d3_c00002{bottom:306.920000pt;}
.y12a5_c00002{bottom:307.236480pt;}
.y3ac_c00002{bottom:307.240000pt;}
.y109e_c00002{bottom:307.240640pt;}
.yae4_c00002{bottom:307.520000pt;}
.ye72_c00002{bottom:307.541760pt;}
.y13f_c00002{bottom:307.880000pt;}
.yb3c_c00002{bottom:308.160000pt;}
.y6eb_c00002{bottom:308.200000pt;}
.yb8d_c00002{bottom:308.520000pt;}
.y17d_c00002{bottom:308.840000pt;}
.y4bb_c00002{bottom:309.160000pt;}
.y11d8_c00002{bottom:309.164160pt;}
.y1101_c00002{bottom:309.476480pt;}
.y1116_c00002{bottom:309.479040pt;}
.y1b9_c00002{bottom:309.480000pt;}
.y12e3_c00002{bottom:309.480640pt;}
.yaf4_c00002{bottom:309.760000pt;}
.y446_c00002{bottom:309.800000pt;}
.y9dc_c00002{bottom:310.120000pt;}
.y9e7_c00002{bottom:310.400000pt;}
.yc10_c00002{bottom:310.440000pt;}
.y791_c00002{bottom:310.760000pt;}
.ya86_c00002{bottom:311.040000pt;}
.y55_c00002{bottom:311.080000pt;}
.ya80_c00002{bottom:311.360000pt;}
.yba9_c00002{bottom:311.400000pt;}
.yde5_c00002{bottom:311.717120pt;}
.y1427_c00002{bottom:311.718080pt;}
.y1289_c00002{bottom:311.719040pt;}
.yccb_c00002{bottom:311.720000pt;}
.y1431_c00002{bottom:311.720640pt;}
.yd07_c00002{bottom:312.040000pt;}
.y961_c00002{bottom:312.640000pt;}
.y1265_c00002{bottom:312.680000pt;}
.y1264_c00002{bottom:312.685760pt;}
.yc96_c00002{bottom:313.000000pt;}
.y83c_c00002{bottom:313.320000pt;}
.y115c_c00002{bottom:313.321600pt;}
.y24c_c00002{bottom:313.640000pt;}
.y24b_c00002{bottom:313.641600pt;}
.y1467_c00002{bottom:313.956480pt;}
.yfef_c00002{bottom:313.959040pt;}
.yc27_c00002{bottom:313.960000pt;}
.y9ad_c00002{bottom:314.240000pt;}
.y757_c00002{bottom:314.280000pt;}
.y38b_c00002{bottom:314.600000pt;}
.y9b3_c00002{bottom:314.880000pt;}
.yd29_c00002{bottom:314.918080pt;}
.y28e_c00002{bottom:314.920000pt;}
.y8b8_c00002{bottom:315.240000pt;}
.y2db_c00002{bottom:315.560000pt;}
.y8fc_c00002{bottom:315.840000pt;}
.y569_c00002{bottom:315.880000pt;}
.y11ad_c00002{bottom:315.880640pt;}
.yf6a_c00002{bottom:316.196480pt;}
.y13b7_c00002{bottom:316.198080pt;}
.y10cb_c00002{bottom:316.199040pt;}
.yc5_c00002{bottom:316.200000pt;}
.yf99_c00002{bottom:316.200640pt;}
.ye2a_c00002{bottom:316.807680pt;}
.y34d_c00002{bottom:316.836480pt;}
.y34e_c00002{bottom:316.840000pt;}
.yf36_c00002{bottom:316.844160pt;}
.y1404_c00002{bottom:317.156480pt;}
.y148a_c00002{bottom:317.159040pt;}
.yc5b_c00002{bottom:317.160000pt;}
.y3ab_c00002{bottom:317.480000pt;}
.y3aa_c00002{bottom:317.481600pt;}
.y679_c00002{bottom:318.115520pt;}
.y543_c00002{bottom:318.118080pt;}
.y544_c00002{bottom:318.120000pt;}
.y80_c00002{bottom:318.121600pt;}
.y136e_c00002{bottom:318.124160pt;}
.y1185_c00002{bottom:318.436480pt;}
.y11f0_c00002{bottom:318.437120pt;}
.y5a2_c00002{bottom:318.438080pt;}
.y1046_c00002{bottom:318.439040pt;}
.y5a3_c00002{bottom:318.440000pt;}
.y1200_c00002{bottom:318.440640pt;}
.y868_c00002{bottom:318.760000pt;}
.ye0b_c00002{bottom:319.074240pt;}
.y14b_c00002{bottom:319.080000pt;}
.y600_c00002{bottom:319.400000pt;}
.y119_c00002{bottom:320.040000pt;}
.y3e3_c00002{bottom:320.041280pt;}
.yae3_c00002{bottom:320.320000pt;}
.ycf2_c00002{bottom:320.360000pt;}
.y12ba_c00002{bottom:320.364160pt;}
.y1309_c00002{bottom:320.365760pt;}
.yd87_c00002{bottom:320.677120pt;}
.y700_c00002{bottom:320.680000pt;}
.yea2_c00002{bottom:320.992960pt;}
.y29_c00002{bottom:321.000000pt;}
.y568_c00002{bottom:321.320000pt;}
.y29b_c00002{bottom:321.640000pt;}
.y123f_c00002{bottom:321.641600pt;}
.y13e1_c00002{bottom:321.956480pt;}
.yec7_c00002{bottom:321.957120pt;}
.y13e2_c00002{bottom:321.960000pt;}
.y513_c00002{bottom:322.280000pt;}
.yaf3_c00002{bottom:322.560000pt;}
.ycea_c00002{bottom:322.600000pt;}
.y13a9_c00002{bottom:322.600640pt;}
.y12cd_c00002{bottom:322.601600pt;}
.y1208_c00002{bottom:322.602240pt;}
.y12a4_c00002{bottom:322.604160pt;}
.ya2a_c00002{bottom:322.880000pt;}
.y312_c00002{bottom:322.920000pt;}
.ye71_c00002{bottom:323.217920pt;}
.y935_c00002{bottom:323.240000pt;}
.y427_c00002{bottom:323.556480pt;}
.y604_c00002{bottom:323.560000pt;}
.yb3b_c00002{bottom:323.840000pt;}
.y7d7_c00002{bottom:323.880000pt;}
.ya8_c00002{bottom:324.200000pt;}
.y61f_c00002{bottom:324.520000pt;}
.y61e_c00002{bottom:324.521600pt;}
.ybab_c00002{bottom:324.840000pt;}
.y1393_c00002{bottom:324.840640pt;}
.y10b6_c00002{bottom:324.841600pt;}
.y13be_c00002{bottom:324.842240pt;}
.y1434_c00002{bottom:324.843200pt;}
.y106a_c00002{bottom:324.844160pt;}
.y960_c00002{bottom:325.120000pt;}
.y366_c00002{bottom:325.160000pt;}
.y21e_c00002{bottom:325.480000pt;}
.y4d1_c00002{bottom:325.800000pt;}
.y4d0_c00002{bottom:325.801600pt;}
.ydf1_c00002{bottom:326.120000pt;}
.y891_c00002{bottom:326.440000pt;}
.yb8c_c00002{bottom:326.760000pt;}
.y9ac_c00002{bottom:327.040000pt;}
.yef0_c00002{bottom:327.074240pt;}
.y161_c00002{bottom:327.080000pt;}
.y14a5_c00002{bottom:327.080640pt;}
.y1426_c00002{bottom:327.081600pt;}
.y138a_c00002{bottom:327.082240pt;}
.y1019_c00002{bottom:327.084160pt;}
.y9aa_c00002{bottom:327.360000pt;}
.y3bd_c00002{bottom:327.400000pt;}
.y17c_c00002{bottom:327.720000pt;}
.y1b8_c00002{bottom:328.040000pt;}
.y4aa_c00002{bottom:328.360000pt;}
.y445_c00002{bottom:328.680000pt;}
.y115b_c00002{bottom:328.993600pt;}
.y79c_c00002{bottom:329.000000pt;}
.y527_c00002{bottom:329.316160pt;}
.y261_c00002{bottom:329.316480pt;}
.y24a_c00002{bottom:329.320000pt;}
.y109d_c00002{bottom:329.321600pt;}
.y1466_c00002{bottom:329.324160pt;}
.y54_c00002{bottom:329.640000pt;}
.y721_c00002{bottom:329.960000pt;}
.ybed_c00002{bottom:330.280000pt;}
.yd28_c00002{bottom:330.596480pt;}
.y2bc_c00002{bottom:330.600000pt;}
.ycb3_c00002{bottom:330.920000pt;}
.yb28_c00002{bottom:331.240000pt;}
.y567_c00002{bottom:331.558080pt;}
.yf69_c00002{bottom:331.560000pt;}
.yf68_c00002{bottom:331.560640pt;}
.y1115_c00002{bottom:331.561600pt;}
.y13a6_c00002{bottom:331.562240pt;}
.yf98_c00002{bottom:331.564160pt;}
.y3b9_c00002{bottom:331.880000pt;}
.y1a1_c00002{bottom:332.200000pt;}
.y34c_c00002{bottom:332.201600pt;}
.yde4_c00002{bottom:332.520000pt;}
.y1403_c00002{bottom:332.520640pt;}
.ye5d_c00002{bottom:332.834240pt;}
.yc5a_c00002{bottom:332.840000pt;}
.yae2_c00002{bottom:333.120000pt;}
.y3a9_c00002{bottom:333.160000pt;}
.y2f7_c00002{bottom:333.480000pt;}
.y5c5_c00002{bottom:333.481600pt;}
.y8fb_c00002{bottom:333.760000pt;}
.y13c3_c00002{bottom:333.799040pt;}
.yc76_c00002{bottom:333.800000pt;}
.y11ef_c00002{bottom:333.800640pt;}
.y127f_c00002{bottom:333.801600pt;}
.y1184_c00002{bottom:333.804160pt;}
.y5a1_c00002{bottom:334.116480pt;}
.y916_c00002{bottom:334.120000pt;}
.y713_c00002{bottom:334.440000pt;}
.y249_c00002{bottom:334.760000pt;}
.yaf2_c00002{bottom:335.040000pt;}
.yc4_c00002{bottom:335.080000pt;}
.y1263_c00002{bottom:335.081600pt;}
.ya2b_c00002{bottom:335.360000pt;}
.y3e2_c00002{bottom:335.719680pt;}
.y4a1_c00002{bottom:335.720000pt;}
.y541_c00002{bottom:336.036480pt;}
.y542_c00002{bottom:336.040000pt;}
.yfee_c00002{bottom:336.041600pt;}
.y137f_c00002{bottom:336.044160pt;}
.ycfa_c00002{bottom:336.360000pt;}
.y73b_c00002{bottom:336.680000pt;}
.y498_c00002{bottom:337.000000pt;}
.y123e_c00002{bottom:337.318720pt;}
.y8ca_c00002{bottom:337.320000pt;}
.y13e0_c00002{bottom:337.324160pt;}
.ye29_c00002{bottom:337.610560pt;}
.y14a_c00002{bottom:337.640000pt;}
.ya6e_c00002{bottom:337.920000pt;}
.y4e7_c00002{bottom:337.960000pt;}
.y95f_c00002{bottom:338.240000pt;}
.y11ac_c00002{bottom:338.276480pt;}
.y12d7_c00002{bottom:338.279040pt;}
.y637_c00002{bottom:338.280000pt;}
.y1207_c00002{bottom:338.280640pt;}
.y10ca_c00002{bottom:338.281600pt;}
.y11bd_c00002{bottom:338.282240pt;}
.y3a8_c00002{bottom:338.600000pt;}
.y426_c00002{bottom:338.920000pt;}
.yf35_c00002{bottom:339.236480pt;}
.y7f_c00002{bottom:339.240000pt;}
.y1489_c00002{bottom:339.244160pt;}
.y9ab_c00002{bottom:339.520000pt;}
.ye6_c00002{bottom:339.560000pt;}
.y9a9_c00002{bottom:339.840000pt;}
.y335_c00002{bottom:339.880000pt;}
.y121c_c00002{bottom:340.192640pt;}
.ye0a_c00002{bottom:340.196800pt;}
.y61d_c00002{bottom:340.198080pt;}
.y29a_c00002{bottom:340.200000pt;}
.y136d_c00002{bottom:340.516480pt;}
.y10b5_c00002{bottom:340.519040pt;}
.y2da_c00002{bottom:340.520000pt;}
.y1045_c00002{bottom:340.520640pt;}
.y11c9_c00002{bottom:340.521600pt;}
.y476_c00002{bottom:340.840000pt;}
.y8b7_c00002{bottom:341.160000pt;}
.y1d1_c00002{bottom:341.480000pt;}
.y4cf_c00002{bottom:341.481600pt;}
.yea1_c00002{bottom:341.795840pt;}
.y6be_c00002{bottom:341.800000pt;}
.y875_c00002{bottom:342.120000pt;}
.y678_c00002{bottom:342.440000pt;}
.y1f3_c00002{bottom:342.760000pt;}
.y1389_c00002{bottom:342.760640pt;}
.y1308_c00002{bottom:342.761600pt;}
.y27_c00002{bottom:343.078400pt;}
.ye38_c00002{bottom:343.079040pt;}
.y28_c00002{bottom:343.080000pt;}
.yc68_c00002{bottom:343.400000pt;}
.yb71_c00002{bottom:343.720000pt;}
.ye70_c00002{bottom:344.020800pt;}
.y7e9_c00002{bottom:344.040000pt;}
.ydb8_c00002{bottom:344.359040pt;}
.y666_c00002{bottom:344.360000pt;}
.y526_c00002{bottom:344.679680pt;}
.y248_c00002{bottom:344.680000pt;}
.y260_c00002{bottom:344.681600pt;}
.y109c_c00002{bottom:344.999040pt;}
.yb51_c00002{bottom:345.000000pt;}
.y115a_c00002{bottom:345.000640pt;}
.y12a3_c00002{bottom:345.002240pt;}
.yc8c_c00002{bottom:345.320000pt;}
.y304_c00002{bottom:345.640000pt;}
.y118_c00002{bottom:345.960000pt;}
.yae1_c00002{bottom:346.240000pt;}
.y756_c00002{bottom:346.280000pt;}
.y1b7_c00002{bottom:346.600000pt;}
.ydba_c00002{bottom:346.601920pt;}
.y28d_c00002{bottom:346.920000pt;}
.y566_c00002{bottom:346.921600pt;}
.y114d_c00002{bottom:347.236480pt;}
.y1293_c00002{bottom:347.238080pt;}
.yf67_c00002{bottom:347.239040pt;}
.y444_c00002{bottom:347.240000pt;}
.y1114_c00002{bottom:347.240640pt;}
.yaf1_c00002{bottom:347.520000pt;}
.y6c9_c00002{bottom:347.560000pt;}
.y21c_c00002{bottom:347.879040pt;}
.y21d_c00002{bottom:347.880000pt;}
.yeef_c00002{bottom:348.196800pt;}
.y53_c00002{bottom:348.200000pt;}
.yc95_c00002{bottom:348.520000pt;}
.ya29_c00002{bottom:348.800000pt;}
.yc59_c00002{bottom:348.840000pt;}
.y7e_c00002{bottom:349.160000pt;}
.y1018_c00002{bottom:349.476480pt;}
.y127e_c00002{bottom:349.479040pt;}
.y5a0_c00002{bottom:349.480000pt;}
.y6a1_c00002{bottom:349.800000pt;}
.y247_c00002{bottom:350.120000pt;}
.y7fe_c00002{bottom:350.440000pt;}
.y95e_c00002{bottom:350.720000pt;}
.y1262_c00002{bottom:350.759040pt;}
.ybec_c00002{bottom:350.760000pt;}
.y26d_c00002{bottom:351.080000pt;}
.y3e1_c00002{bottom:351.083200pt;}
.y540_c00002{bottom:351.400000pt;}
.y53f_c00002{bottom:351.401600pt;}
.yfec_c00002{bottom:351.719040pt;}
.yfed_c00002{bottom:351.720000pt;}
.y1465_c00002{bottom:351.720640pt;}
.y2f6_c00002{bottom:352.040000pt;}
.y696_c00002{bottom:352.360000pt;}
.y6ff_c00002{bottom:352.680000pt;}
.y9a8_c00002{bottom:352.960000pt;}
.y365_c00002{bottom:353.000000pt;}
.yde3_c00002{bottom:353.317120pt;}
.ycd4_c00002{bottom:353.320000pt;}
.yc3_c00002{bottom:353.640000pt;}
.y11ab_c00002{bottom:353.640640pt;}
.y11d7_c00002{bottom:353.641600pt;}
.y123d_c00002{bottom:353.645760pt;}
.yfc4_c00002{bottom:353.956480pt;}
.ye5c_c00002{bottom:353.956800pt;}
.y10d6_c00002{bottom:353.957120pt;}
.yf96_c00002{bottom:353.959040pt;}
.yf97_c00002{bottom:353.960000pt;}
.y10e8_c00002{bottom:353.960640pt;}
.y934_c00002{bottom:354.280000pt;}
.y7d_c00002{bottom:354.600000pt;}
.y1402_c00002{bottom:354.916480pt;}
.y59f_c00002{bottom:354.920000pt;}
.y47d_c00002{bottom:355.240000pt;}
.y497_c00002{bottom:355.560000pt;}
.y61c_c00002{bottom:355.876480pt;}
.y8c9_c00002{bottom:355.880000pt;}
.y136c_c00002{bottom:355.884160pt;}
.y11ee_c00002{bottom:356.196480pt;}
.y1044_c00002{bottom:356.199040pt;}
.ya7_c00002{bottom:356.200000pt;}
.y1433_c00002{bottom:356.200640pt;}
.y924_c00002{bottom:356.520000pt;}
.y636_c00002{bottom:356.840000pt;}
.y4ce_c00002{bottom:357.160000pt;}
.y6e7_c00002{bottom:357.480000pt;}
.yb1a_c00002{bottom:357.800000pt;}
.ye5_c00002{bottom:358.120000pt;}
.y1307_c00002{bottom:358.436480pt;}
.y12b9_c00002{bottom:358.439040pt;}
.yc00_c00002{bottom:358.440000pt;}
.y131e_c00002{bottom:358.440640pt;}
.y64f_c00002{bottom:358.760000pt;}
.yae0_c00002{bottom:359.040000pt;}
.y160_c00002{bottom:359.080000pt;}
.y475_c00002{bottom:359.400000pt;}
.y13df_c00002{bottom:359.719040pt;}
.y17b_c00002{bottom:359.720000pt;}
.ye40_c00002{bottom:360.035840pt;}
.y4f3_c00002{bottom:360.040000pt;}
.yaf0_c00002{bottom:360.320000pt;}
.ye28_c00002{bottom:360.331520pt;}
.y525_c00002{bottom:360.358080pt;}
.y1d0_c00002{bottom:360.360000pt;}
.y25f_c00002{bottom:360.361600pt;}
.y12a2_c00002{bottom:360.365760pt;}
.y1159_c00002{bottom:360.679040pt;}
.y9db_c00002{bottom:360.680000pt;}
.ya28_c00002{bottom:360.960000pt;}
.yb50_c00002{bottom:361.000000pt;}
.ya2d_c00002{bottom:361.280000pt;}
.y424_c00002{bottom:361.316480pt;}
.y425_c00002{bottom:361.320000pt;}
.y1488_c00002{bottom:361.636480pt;}
.y3c3_c00002{bottom:361.640000pt;}
.y720_c00002{bottom:361.960000pt;}
.y121b_c00002{bottom:362.273600pt;}
.y3a7_c00002{bottom:362.280000pt;}
.y2bb_c00002{bottom:362.600000pt;}
.y10b4_c00002{bottom:362.601600pt;}
.y1113_c00002{bottom:362.604160pt;}
.y114c_c00002{bottom:362.605760pt;}
.ya6d_c00002{bottom:362.880000pt;}
.y603_c00002{bottom:362.920000pt;}
.y2c0_c00002{bottom:363.240000pt;}
.y95d_c00002{bottom:363.840000pt;}
.yc8b_c00002{bottom:363.880000pt;}
.y1a0_c00002{bottom:364.200000pt;}
.y133d_c00002{bottom:364.836480pt;}
.y1017_c00002{bottom:364.840000pt;}
.y14a4_c00002{bottom:364.840640pt;}
.y1016_c00002{bottom:364.844160pt;}
.ye6f_c00002{bottom:365.143360pt;}
.y26_c00002{bottom:365.160000pt;}
.y25_c00002{bottom:365.167360pt;}
.y9a7_c00002{bottom:365.440000pt;}
.y1b6_c00002{bottom:365.480000pt;}
.y246_c00002{bottom:365.800000pt;}
.ybeb_c00002{bottom:366.760000pt;}
.y3e0_c00002{bottom:366.761600pt;}
.y52_c00002{bottom:367.080000pt;}
.y12eb_c00002{bottom:367.080640pt;}
.y1464_c00002{bottom:367.084160pt;}
.ydb9_c00002{bottom:367.085120pt;}
.y53e_c00002{bottom:367.085440pt;}
.y40c_c00002{bottom:367.400000pt;}
.ycca_c00002{bottom:367.720000pt;}
.y565_c00002{bottom:368.040000pt;}
.ycf9_c00002{bottom:368.360000pt;}
.yeee_c00002{bottom:368.675200pt;}
.y8d9_c00002{bottom:368.680000pt;}
.yc2e_c00002{bottom:369.000000pt;}
.y11d6_c00002{bottom:369.319040pt;}
.y83b_c00002{bottom:369.320000pt;}
.y1085_c00002{bottom:369.320640pt;}
.y1191_c00002{bottom:369.321600pt;}
.yf66_c00002{bottom:369.323200pt;}
.yfc3_c00002{bottom:369.324160pt;}
.y192_c00002{bottom:369.640000pt;}
.y21a_c00002{bottom:369.959040pt;}
.y21b_c00002{bottom:369.960000pt;}
.y5ff_c00002{bottom:370.280000pt;}
.y1401_c00002{bottom:370.281600pt;}
.y2f5_c00002{bottom:370.600000pt;}
.y695_c00002{bottom:370.920000pt;}
.y5c4_c00002{bottom:371.240000pt;}
.y5c3_c00002{bottom:371.241600pt;}
.yadf_c00002{bottom:371.520000pt;}
.yc18_c00002{bottom:371.560000pt;}
.y11ff_c00002{bottom:371.560640pt;}
.y12c3_c00002{bottom:371.561600pt;}
.y127d_c00002{bottom:371.562240pt;}
.y12dd_c00002{bottom:371.564160pt;}
.y334_c00002{bottom:371.880000pt;}
.yc2_c00002{bottom:372.200000pt;}
.y588_c00002{bottom:372.520000pt;}
.yad8_c00002{bottom:372.800000pt;}
.y7f6_c00002{bottom:372.840000pt;}
.y1261_c00002{bottom:372.840640pt;}
.y6c8_c00002{bottom:373.160000pt;}
.ya27_c00002{bottom:373.440000pt;}
.y311_c00002{bottom:373.480000pt;}
.ya2c_c00002{bottom:373.760000pt;}
.y6bd_c00002{bottom:373.800000pt;}
.y1306_c00002{bottom:373.800640pt;}
.yfeb_c00002{bottom:373.801600pt;}
.y915_c00002{bottom:374.120000pt;}
.y496_c00002{bottom:374.440000pt;}
.y7d6_c00002{bottom:374.760000pt;}
.y137_c00002{bottom:375.080000pt;}
.y3f6_c00002{bottom:375.400000pt;}
.ya6c_c00002{bottom:375.680000pt;}
.yd60_c00002{bottom:375.720000pt;}
.y524_c00002{bottom:376.036480pt;}
.y1206_c00002{bottom:376.038080pt;}
.y245_c00002{bottom:376.040000pt;}
.y1417_c00002{bottom:376.040640pt;}
.yf95_c00002{bottom:376.041600pt;}
.y12d6_c00002{bottom:376.044160pt;}
.y95c_c00002{bottom:376.320000pt;}
.y923_c00002{bottom:376.360000pt;}
.y423_c00002{bottom:376.680000pt;}
.y422_c00002{bottom:376.681600pt;}
.ye4_c00002{bottom:377.000000pt;}
.yd27_c00002{bottom:377.001600pt;}
.y1487_c00002{bottom:377.004160pt;}
.ybff_c00002{bottom:377.320000pt;}
.y117_c00002{bottom:377.640000pt;}
.y9a6_c00002{bottom:377.920000pt;}
.y512_c00002{bottom:377.960000pt;}
.y121a_c00002{bottom:378.279040pt;}
.y7c_c00002{bottom:378.280000pt;}
.y10b3_c00002{bottom:378.280640pt;}
.y134e_c00002{bottom:378.281600pt;}
.y13bd_c00002{bottom:378.282240pt;}
.y1043_c00002{bottom:378.284160pt;}
.y564_c00002{bottom:378.286080pt;}
.y7fd_c00002{bottom:378.600000pt;}
.y1cf_c00002{bottom:378.920000pt;}
.y9da_c00002{bottom:379.240000pt;}
.y430_c00002{bottom:379.880000pt;}
.y3c2_c00002{bottom:380.200000pt;}
.y137e_c00002{bottom:380.519040pt;}
.y3c5_c00002{bottom:380.520000pt;}
.y12b8_c00002{bottom:380.520640pt;}
.y131d_c00002{bottom:380.521600pt;}
.ye27_c00002{bottom:380.814720pt;}
.yf16_c00002{bottom:380.838080pt;}
.yb7b_c00002{bottom:380.840000pt;}
.y2ba_c00002{bottom:381.160000pt;}
.ye09_c00002{bottom:381.476800pt;}
.y244_c00002{bottom:381.480000pt;}
.y7d2_c00002{bottom:381.800000pt;}
.y13de_c00002{bottom:381.800640pt;}
.yea0_c00002{bottom:382.115840pt;}
.ybea_c00002{bottom:382.120000pt;}
.y3df_c00002{bottom:382.440000pt;}
.ye3f_c00002{bottom:382.756800pt;}
.y1158_c00002{bottom:382.759040pt;}
.y587_c00002{bottom:382.760000pt;}
.y12a1_c00002{bottom:382.761600pt;}
.y26b_c00002{bottom:383.080000pt;}
.y78d_c00002{bottom:383.400000pt;}
.yc75_c00002{bottom:383.720000pt;}
.yec6_c00002{bottom:384.034240pt;}
.y1b5_c00002{bottom:384.040000pt;}
.yade_c00002{bottom:384.320000pt;}
.y40b_c00002{bottom:384.360000pt;}
.y53d_c00002{bottom:384.679360pt;}
.y443_c00002{bottom:384.680000pt;}
.y1084_c00002{bottom:384.999040pt;}
.y1112_c00002{bottom:385.000000pt;}
.y1111_c00002{bottom:385.000640pt;}
.yf65_c00002{bottom:385.001600pt;}
.yaef_c00002{bottom:385.280000pt;}
.y1e6_c00002{bottom:385.640000pt;}
.ya26_c00002{bottom:385.920000pt;}
.ye6e_c00002{bottom:385.946240pt;}
.yce9_c00002{bottom:385.960000pt;}
.y1400_c00002{bottom:385.960640pt;}
.ya25_c00002{bottom:386.240000pt;}
.y59e_c00002{bottom:386.280000pt;}
.ye37_c00002{bottom:386.600000pt;}
.y5c1_c00002{bottom:386.916480pt;}
.y5c2_c00002{bottom:386.920000pt;}
.y1014_c00002{bottom:387.236480pt;}
.y11ed_c00002{bottom:387.239040pt;}
.y1015_c00002{bottom:387.240000pt;}
.y127c_c00002{bottom:387.240640pt;}
.y73a_c00002{bottom:387.560000pt;}
.y83a_c00002{bottom:387.880000pt;}
.ydb7_c00002{bottom:387.882880pt;}
.ya6b_c00002{bottom:388.160000pt;}
.ydf0_c00002{bottom:388.196800pt;}
.ya6_c00002{bottom:388.200000pt;}
.y1260_c00002{bottom:388.519040pt;}
.y833_c00002{bottom:388.520000pt;}
.y5fe_c00002{bottom:388.840000pt;}
.y95b_c00002{bottom:389.120000pt;}
.y677_c00002{bottom:389.160000pt;}
.y676_c00002{bottom:389.163200pt;}
.y1463_c00002{bottom:389.476480pt;}
.yeed_c00002{bottom:389.478080pt;}
.y1305_c00002{bottom:389.479040pt;}
.y890_c00002{bottom:389.480000pt;}
.yfea_c00002{bottom:389.480640pt;}
.y26c_c00002{bottom:389.800000pt;}
.y9a5_c00002{bottom:390.080000pt;}
.y333_c00002{bottom:390.438080pt;}
.y64e_c00002{bottom:390.760000pt;}
.yc1_c00002{bottom:391.080000pt;}
.y25e_c00002{bottom:391.400000pt;}
.y25d_c00002{bottom:391.401600pt;}
.y11aa_c00002{bottom:391.402240pt;}
.y11d5_c00002{bottom:391.404160pt;}
.y10c9_c00002{bottom:391.716480pt;}
.y1069_c00002{bottom:391.717120pt;}
.yf93_c00002{bottom:391.719040pt;}
.y1499_c00002{bottom:391.719680pt;}
.yf94_c00002{bottom:391.720000pt;}
.yfc2_c00002{bottom:391.720640pt;}
.y219_c00002{bottom:392.040000pt;}
.y421_c00002{bottom:392.360000pt;}
.y24_c00002{bottom:392.363840pt;}
.y914_c00002{bottom:392.680000pt;}
.yf34_c00002{bottom:392.680640pt;}
.ycb2_c00002{bottom:393.000000pt;}
.y8c8_c00002{bottom:393.320000pt;}
.y136_c00002{bottom:393.640000pt;}
.y136b_c00002{bottom:393.644160pt;}
.y11fe_c00002{bottom:393.956480pt;}
.y10b2_c00002{bottom:393.959040pt;}
.y71f_c00002{bottom:393.960000pt;}
.y13bc_c00002{bottom:393.960640pt;}
.yb70_c00002{bottom:394.280000pt;}
.yb8b_c00002{bottom:394.600000pt;}
.y40a_c00002{bottom:394.601600pt;}
.y665_c00002{bottom:394.920000pt;}
.ye26_c00002{bottom:395.212160pt;}
.ycef_c00002{bottom:395.240000pt;}
.ye3_c00002{bottom:395.560000pt;}
.y563_c00002{bottom:395.880000pt;}
.y562_c00002{bottom:395.881600pt;}
.y59d_c00002{bottom:396.198080pt;}
.y1425_c00002{bottom:396.199040pt;}
.y19f_c00002{bottom:396.200000pt;}
.y131c_c00002{bottom:396.200640pt;}
.yaf8_c00002{bottom:396.480000pt;}
.y17a_c00002{bottom:396.840000pt;}
.yadd_c00002{bottom:397.440000pt;}
.y13dd_c00002{bottom:397.479040pt;}
.y4f2_c00002{bottom:397.480000pt;}
.yaee_c00002{bottom:397.760000pt;}
.y7c0_c00002{bottom:397.800000pt;}
.yad7_c00002{bottom:398.080000pt;}
.y586_c00002{bottom:398.120000pt;}
.y585_c00002{bottom:398.121600pt;}
.yada_c00002{bottom:398.400000pt;}
.y12d5_c00002{bottom:398.436480pt;}
.y146d_c00002{bottom:398.438080pt;}
.y109b_c00002{bottom:398.439040pt;}
.y6c7_c00002{bottom:398.440000pt;}
.y12a0_c00002{bottom:398.440640pt;}
.yb7a_c00002{bottom:398.760000pt;}
.y51_c00002{bottom:399.080000pt;}
.y1486_c00002{bottom:399.399040pt;}
.yb79_c00002{bottom:399.400000pt;}
.ycc9_c00002{bottom:399.720000pt;}
.y7e8_c00002{bottom:400.040000pt;}
.y53c_c00002{bottom:400.357760pt;}
.y6a0_c00002{bottom:400.360000pt;}
.y1219_c00002{bottom:400.364160pt;}
.ya6a_c00002{bottom:400.640000pt;}
.y1183_c00002{bottom:400.676480pt;}
.yf64_c00002{bottom:400.677120pt;}
.y1042_c00002{bottom:400.678080pt;}
.y1110_c00002{bottom:400.679040pt;}
.y8d8_c00002{bottom:400.680000pt;}
.y1440_c00002{bottom:400.680640pt;}
.yc2d_c00002{bottom:401.000000pt;}
.yc8a_c00002{bottom:401.320000pt;}
.y95a_c00002{bottom:401.600000pt;}
.y191_c00002{bottom:401.640000pt;}
.y4e6_c00002{bottom:401.960000pt;}
.y5c0_c00002{bottom:402.280000pt;}
.y5bf_c00002{bottom:402.281600pt;}
.y1b4_c00002{bottom:402.600000pt;}
.y12b7_c00002{bottom:402.601600pt;}
.y137d_c00002{bottom:402.604160pt;}
.y2b9_c00002{bottom:402.920000pt;}
.y442_c00002{bottom:403.240000pt;}
.yd86_c00002{bottom:403.560000pt;}
.yd85_c00002{bottom:403.560320pt;}
.y305_c00002{bottom:403.880000pt;}
.y360_c00002{bottom:404.200000pt;}
.y3de_c00002{bottom:404.520000pt;}
.y3dd_c00002{bottom:404.521600pt;}
.yec1_c00002{bottom:404.834240pt;}
.ye9f_c00002{bottom:404.836800pt;}
.yec5_c00002{bottom:404.837120pt;}
.y88f_c00002{bottom:404.840000pt;}
.y1462_c00002{bottom:404.840640pt;}
.y12ea_c00002{bottom:404.841600pt;}
.yfe9_c00002{bottom:404.844160pt;}
.y243_c00002{bottom:405.160000pt;}
.y9a4_c00002{bottom:405.440000pt;}
.y867_c00002{bottom:405.475840pt;}
.y310_c00002{bottom:405.480000pt;}
.yd6e_c00002{bottom:405.800000pt;}
.y332_c00002{bottom:406.116480pt;}
.y495_c00002{bottom:406.440000pt;}
.ye6d_c00002{bottom:407.068800pt;}
.y1f2_c00002{bottom:407.080000pt;}
.y1068_c00002{bottom:407.080640pt;}
.y25c_c00002{bottom:407.081600pt;}
.y12dc_c00002{bottom:407.083200pt;}
.yfc1_c00002{bottom:407.084160pt;}
.y635_c00002{bottom:407.400000pt;}
.y5fd_c00002{bottom:407.720000pt;}
.y8a3_c00002{bottom:408.040000pt;}
.ydb6_c00002{bottom:408.354240pt;}
.y13ff_c00002{bottom:408.356480pt;}
.y79b_c00002{bottom:408.360000pt;}
.y3c4_c00002{bottom:408.680000pt;}
.yc24_c00002{bottom:409.000000pt;}
.y61b_c00002{bottom:409.320000pt;}
.y1288_c00002{bottom:409.320640pt;}
.y11ec_c00002{bottom:409.321600pt;}
.y11fd_c00002{bottom:409.324160pt;}
.yc0_c00002{bottom:409.640000pt;}
.yaf6_c00002{bottom:409.920000pt;}
.y511_c00002{bottom:409.960000pt;}
.y409_c00002{bottom:410.280000pt;}
.yad9_c00002{bottom:410.560000pt;}
.y874_c00002{bottom:410.600000pt;}
.yad5_c00002{bottom:410.880000pt;}
.y1ce_c00002{bottom:410.920000pt;}
.yaf7_c00002{bottom:411.200000pt;}
.yb8a_c00002{bottom:411.240000pt;}
.y560_c00002{bottom:411.558080pt;}
.y675_c00002{bottom:411.559040pt;}
.y561_c00002{bottom:411.560000pt;}
.y1304_c00002{bottom:411.564160pt;}
.y59c_c00002{bottom:411.876480pt;}
.y8c7_c00002{bottom:411.880000pt;}
.y6ea_c00002{bottom:412.200000pt;}
.ya24_c00002{bottom:412.480000pt;}
.y135_c00002{bottom:412.520000pt;}
.ya69_c00002{bottom:413.120000pt;}
.y474_c00002{bottom:413.160000pt;}
.y6e6_c00002{bottom:413.480000pt;}
.y583_c00002{bottom:413.796480pt;}
.y1175_c00002{bottom:413.798080pt;}
.y584_c00002{bottom:413.800000pt;}
.y1416_c00002{bottom:413.800640pt;}
.y12cc_c00002{bottom:413.801600pt;}
.y11d4_c00002{bottom:413.802240pt;}
.y123c_c00002{bottom:413.804160pt;}
.ye2_c00002{bottom:414.120000pt;}
.y959_c00002{bottom:414.720000pt;}
.y420_c00002{bottom:414.760000pt;}
.yf33_c00002{bottom:414.761600pt;}
.y27d_c00002{bottom:415.080000pt;}
.y47c_c00002{bottom:415.400000pt;}
.y179_c00002{bottom:415.720000pt;}
.ye25_c00002{bottom:416.015040pt;}
.ye5b_c00002{bottom:416.031360pt;}
.y53b_c00002{bottom:416.036160pt;}
.y4ba_c00002{bottom:416.040000pt;}
.yf63_c00002{bottom:416.040640pt;}
.y1041_c00002{bottom:416.041600pt;}
.y10b1_c00002{bottom:416.044160pt;}
.y65b_c00002{bottom:416.360000pt;}
.y218_c00002{bottom:416.680000pt;}
.y5e7_c00002{bottom:417.000000pt;}
.yb78_c00002{bottom:417.320000pt;}
.y50_c00002{bottom:417.640000pt;}
.y9a3_c00002{bottom:417.920000pt;}
.yf0e_c00002{bottom:417.955840pt;}
.y5be_c00002{bottom:417.960000pt;}
.y78c_c00002{bottom:418.280000pt;}
.y12b6_c00002{bottom:418.280640pt;}
.y131b_c00002{bottom:418.281600pt;}
.y1013_c00002{bottom:418.284160pt;}
.yce8_c00002{bottom:418.600000pt;}
.y69f_c00002{bottom:418.920000pt;}
.y739_c00002{bottom:419.560000pt;}
.y13dc_c00002{bottom:419.561600pt;}
.y23_c00002{bottom:419.880000pt;}
.y3dc_c00002{bottom:420.198080pt;}
.ya5_c00002{bottom:420.200000pt;}
.y1461_c00002{bottom:420.519040pt;}
.y4e5_c00002{bottom:420.520000pt;}
.y12e9_c00002{bottom:420.520640pt;}
.y109a_c00002{bottom:420.521600pt;}
.y866_c00002{bottom:420.839360pt;}
.y8f9_c00002{bottom:420.840000pt;}
.y2b8_c00002{bottom:421.160000pt;}
.y1b3_c00002{bottom:421.480000pt;}
.y1485_c00002{bottom:421.481600pt;}
.y441_c00002{bottom:421.800000pt;}
.yc17_c00002{bottom:422.440000pt;}
.yadc_c00002{bottom:422.720000pt;}
.y1218_c00002{bottom:422.756480pt;}
.ye08_c00002{bottom:422.757120pt;}
.y1083_c00002{bottom:422.759040pt;}
.y25b_c00002{bottom:422.760000pt;}
.y10d5_c00002{bottom:422.760640pt;}
.y110f_c00002{bottom:422.761600pt;}
.y10c8_c00002{bottom:422.762240pt;}
.yaed_c00002{bottom:423.040000pt;}
.y357_c00002{bottom:423.080000pt;}
.yad6_c00002{bottom:423.359867pt;}
.y4f1_c00002{bottom:423.400000pt;}
.yad4_c00002{bottom:423.680000pt;}
.yba8_c00002{bottom:423.720000pt;}
.y4cc_c00002{bottom:424.036160pt;}
.y4cd_c00002{bottom:424.040000pt;}
.yd84_c00002{bottom:424.043520pt;}
.y4a9_c00002{bottom:424.360000pt;}
.ya23_c00002{bottom:424.960000pt;}
.y127b_c00002{bottom:424.999040pt;}
.y494_c00002{bottom:425.000000pt;}
.y11eb_c00002{bottom:425.000640pt;}
.y14a3_c00002{bottom:425.001600pt;}
.yec0_c00002{bottom:425.317440pt;}
.y839_c00002{bottom:425.320000pt;}
.ya68_c00002{bottom:425.600000pt;}
.y149_c00002{bottom:425.640000pt;}
.y71e_c00002{bottom:425.960000pt;}
.yeec_c00002{bottom:426.276800pt;}
.y5fc_c00002{bottom:426.280000pt;}
.yb89_c00002{bottom:426.600000pt;}
.y712_c00002{bottom:426.920000pt;}
.y55f_c00002{bottom:426.921600pt;}
.y958_c00002{bottom:427.200000pt;}
.yfe8_c00002{bottom:427.238080pt;}
.y59b_c00002{bottom:427.240000pt;}
.ye6c_c00002{bottom:427.552000pt;}
.yb19_c00002{bottom:427.560000pt;}
.y411_c00002{bottom:427.880000pt;}
.y116_c00002{bottom:428.200000pt;}
.y932_c00002{bottom:428.520000pt;}
.y510_c00002{bottom:428.840000pt;}
.ydb5_c00002{bottom:429.157120pt;}
.y582_c00002{bottom:429.160000pt;}
.y581_c00002{bottom:429.161600pt;}
.y11d3_c00002{bottom:429.165760pt;}
.y1067_c00002{bottom:429.476480pt;}
.ydef_c00002{bottom:429.477120pt;}
.yf92_c00002{bottom:429.479040pt;}
.y1cd_c00002{bottom:429.480000pt;}
.y1444_c00002{bottom:429.480640pt;}
.y146c_c00002{bottom:429.482240pt;}
.y364_c00002{bottom:429.800000pt;}
.yf32_c00002{bottom:430.439040pt;}
.yc0f_c00002{bottom:430.440000pt;}
.y851_c00002{bottom:430.760000pt;}
.yf9_c00002{bottom:431.080000pt;}
.y53a_c00002{bottom:431.399680pt;}
.y1040_c00002{bottom:431.719040pt;}
.yc74_c00002{bottom:431.720000pt;}
.y11fc_c00002{bottom:431.720640pt;}
.yd06_c00002{bottom:432.040000pt;}
.y6e5_c00002{bottom:432.360000pt;}
.yee2_c00002{bottom:432.677120pt;}
.y8d7_c00002{bottom:432.680000pt;}
.y125f_c00002{bottom:432.996480pt;}
.yc2c_c00002{bottom:433.000000pt;}
.y7f5_c00002{bottom:433.320000pt;}
.y7f4_c00002{bottom:433.323200pt;}
.y190_c00002{bottom:433.640000pt;}
.y674_c00002{bottom:433.644160pt;}
.y131a_c00002{bottom:433.956480pt;}
.y1303_c00002{bottom:433.959040pt;}
.y315_c00002{bottom:433.960000pt;}
.y1424_c00002{bottom:433.960640pt;}
.y178_c00002{bottom:434.280000pt;}
.y5d8_c00002{bottom:434.600000pt;}
.y61a_c00002{bottom:434.920000pt;}
.y9d9_c00002{bottom:435.240000pt;}
.y13db_c00002{bottom:435.244160pt;}
.yadb_c00002{bottom:435.520000pt;}
.y6fe_c00002{bottom:435.560000pt;}
.y3db_c00002{bottom:435.561600pt;}
.yad3_c00002{bottom:435.840000pt;}
.yb27_c00002{bottom:435.880000pt;}
.y13a8_c00002{bottom:436.196480pt;}
.y123b_c00002{bottom:436.197120pt;}
.y1099_c00002{bottom:436.199040pt;}
.y4f_c00002{bottom:436.200000pt;}
.y129f_c00002{bottom:436.200640pt;}
.ye24_c00002{bottom:436.498240pt;}
.ye5a_c00002{bottom:436.514560pt;}
.y865_c00002{bottom:436.517760pt;}
.ycb1_c00002{bottom:436.840000pt;}
.y1484_c00002{bottom:437.159040pt;}
.yb77_c00002{bottom:437.160000pt;}
.ya22_c00002{bottom:437.440000pt;}
.y30f_c00002{bottom:437.480000pt;}
.ya67_c00002{bottom:437.760000pt;}
.y242_c00002{bottom:437.800000pt;}
.y523_c00002{bottom:438.120000pt;}
.y522_c00002{bottom:438.121280pt;}
.y13c2_c00002{bottom:438.121600pt;}
.y1217_c00002{bottom:438.124160pt;}
.y9a2_c00002{bottom:438.400000pt;}
.yf62_c00002{bottom:438.436480pt;}
.y13a5_c00002{bottom:438.437120pt;}
.y10d4_c00002{bottom:438.439040pt;}
.y41e_c00002{bottom:438.440000pt;}
.y10c7_c00002{bottom:438.440640pt;}
.y34b_c00002{bottom:438.760000pt;}
.y26a_c00002{bottom:439.080000pt;}
.y13fe_c00002{bottom:439.399040pt;}
.y408_c00002{bottom:439.400000pt;}
.y2b7_c00002{bottom:439.720000pt;}
.y1b2_c00002{bottom:440.040000pt;}
.y957_c00002{bottom:440.320000pt;}
.y5bd_c00002{bottom:440.360000pt;}
.y133c_c00002{bottom:440.361600pt;}
.y12b5_c00002{bottom:440.676480pt;}
.yf0d_c00002{bottom:440.676800pt;}
.y11ea_c00002{bottom:440.679040pt;}
.ycae_c00002{bottom:440.680000pt;}
.y1012_c00002{bottom:440.680640pt;}
.y217_c00002{bottom:441.000000pt;}
.ycd3_c00002{bottom:441.320000pt;}
.ybf_c00002{bottom:441.640000pt;}
.y2d9_c00002{bottom:441.960000pt;}
.y873_c00002{bottom:442.280000pt;}
.y1460_c00002{bottom:442.600000pt;}
.yfe7_c00002{bottom:442.601600pt;}
.y145f_c00002{bottom:442.603200pt;}
.y28c_c00002{bottom:442.920000pt;}
.yb4f_c00002{bottom:443.240000pt;}
.y493_c00002{bottom:443.560000pt;}
.y330_c00002{bottom:443.878080pt;}
.y331_c00002{bottom:443.880000pt;}
.y148_c00002{bottom:444.200000pt;}
.y738_c00002{bottom:444.518080pt;}
.y3f5_c00002{bottom:444.520000pt;}
.y473_c00002{bottom:444.840000pt;}
.y11a9_c00002{bottom:444.840640pt;}
.y1082_c00002{bottom:444.841600pt;}
.yfc0_c00002{bottom:444.844160pt;}
.y11bc_c00002{bottom:444.845760pt;}
.y41f_c00002{bottom:445.160000pt;}
.y80c_c00002{bottom:445.480000pt;}
.y664_c00002{bottom:445.800000pt;}
.ye1_c00002{bottom:446.120000pt;}
.yec4_c00002{bottom:446.436800pt;}
.yebf_c00002{bottom:446.440000pt;}
.y4cb_c00002{bottom:446.760000pt;}
.y539_c00002{bottom:447.078080pt;}
.y22_c00002{bottom:447.080000pt;}
.y1430_c00002{bottom:447.080640pt;}
.y127a_c00002{bottom:447.081600pt;}
.y1287_c00002{bottom:447.082240pt;}
.y11fb_c00002{bottom:447.084160pt;}
.y50f_c00002{bottom:447.400000pt;}
.y64d_c00002{bottom:447.721600pt;}
.y4b9_c00002{bottom:448.040000pt;}
.y1cc_c00002{bottom:448.360000pt;}
.ye6b_c00002{bottom:448.674560pt;}
.y5e6_c00002{bottom:449.000000pt;}
.y7f3_c00002{bottom:449.001600pt;}
.y6c6_c00002{bottom:449.320000pt;}
.y1319_c00002{bottom:449.320640pt;}
.y1388_c00002{bottom:449.324160pt;}
.ya21_c00002{bottom:449.600000pt;}
.yf8_c00002{bottom:449.640000pt;}
.yabc_c00002{bottom:449.920000pt;}
.y78b_c00002{bottom:449.960000pt;}
.ya66_c00002{bottom:450.240000pt;}
.ydee_c00002{bottom:450.280000pt;}
.yd5f_c00002{bottom:450.600000pt;}
.y9a1_c00002{bottom:450.880000pt;}
.ybcd_c00002{bottom:450.920000pt;}
.yd83_c00002{bottom:451.237120pt;}
.y3da_c00002{bottom:451.240000pt;}
.y3d9_c00002{bottom:451.241600pt;}
.yc2b_c00002{bottom:451.560000pt;}
.y123a_c00002{bottom:451.560640pt;}
.yf91_c00002{bottom:451.561600pt;}
.y12d4_c00002{bottom:451.564160pt;}
.y25a_c00002{bottom:451.880000pt;}
.y864_c00002{bottom:452.196160pt;}
.y299_c00002{bottom:452.200000pt;}
.ya4_c00002{bottom:452.520000pt;}
.yf31_c00002{bottom:452.524160pt;}
.y956_c00002{bottom:452.800000pt;}
.y5d7_c00002{bottom:452.840000pt;}
.y177_c00002{bottom:453.160000pt;}
.ycc8_c00002{bottom:453.480000pt;}
.y13b0_c00002{bottom:453.798080pt;}
.y521_c00002{bottom:453.799680pt;}
.y440_c00002{bottom:453.800000pt;}
.y103f_c00002{bottom:453.800640pt;}
.y1131_c00002{bottom:453.801600pt;}
.yf61_c00002{bottom:453.802240pt;}
.y10b0_c00002{bottom:453.804160pt;}
.y6fd_c00002{bottom:454.120000pt;}
.yba7_c00002{bottom:454.760000pt;}
.y4e_c00002{bottom:455.080000pt;}
.y47b_c00002{bottom:455.400000pt;}
.yb26_c00002{bottom:455.720000pt;}
.y673_c00002{bottom:456.040000pt;}
.y134b_c00002{bottom:456.041600pt;}
.y1011_c00002{bottom:456.044160pt;}
.y241_c00002{bottom:456.360000pt;}
.yde2_c00002{bottom:456.680000pt;}
.y69e_c00002{bottom:457.000000pt;}
.y34a_c00002{bottom:457.320000pt;}
.ye23_c00002{bottom:457.620800pt;}
.ye59_c00002{bottom:457.637120pt;}
.y269_c00002{bottom:457.640000pt;}
.y13da_c00002{bottom:457.640640pt;}
.y4e4_c00002{bottom:457.960000pt;}
.y5fb_c00002{bottom:458.280000pt;}
.yfe6_c00002{bottom:458.280640pt;}
.y1098_c00002{bottom:458.281600pt;}
.yf15_c00002{bottom:458.594880pt;}
.y1b1_c00002{bottom:458.600000pt;}
.y694_c00002{bottom:458.920000pt;}
.y7fc_c00002{bottom:459.240000pt;}
.y32f_c00002{bottom:459.241600pt;}
.y931_c00002{bottom:459.560000pt;}
.y933_c00002{bottom:459.880000pt;}
.y76f_c00002{bottom:459.881600pt;}
.yac1_c00002{bottom:460.160000pt;}
.y737_c00002{bottom:460.196480pt;}
.y15f_c00002{bottom:460.200000pt;}
.y11a8_c00002{bottom:460.519040pt;}
.y580_c00002{bottom:460.520000pt;}
.y114b_c00002{bottom:460.520640pt;}
.y10c6_c00002{bottom:460.521600pt;}
.y12db_c00002{bottom:460.522240pt;}
.y1081_c00002{bottom:460.524160pt;}
.yc57_c00002{bottom:460.840000pt;}
.yc42_c00002{bottom:461.160000pt;}
.y6e4_c00002{bottom:461.480000pt;}
.y13fd_c00002{bottom:461.481600pt;}
.yc41_c00002{bottom:461.800000pt;}
.ya20_c00002{bottom:462.400000pt;}
.y492_c00002{bottom:462.440000pt;}
.ya1f_c00002{bottom:462.720000pt;}
.y538_c00002{bottom:462.756480pt;}
.y11e9_c00002{bottom:462.759040pt;}
.y8c6_c00002{bottom:462.760000pt;}
.y1286_c00002{bottom:462.760640pt;}
.y14a2_c00002{bottom:462.761600pt;}
.ya65_c00002{bottom:463.040000pt;}
.y147_c00002{bottom:463.080000pt;}
.y64b_c00002{bottom:463.399040pt;}
.y64c_c00002{bottom:463.400000pt;}
.yd26_c00002{bottom:463.720000pt;}
.y216_c00002{bottom:463.726400pt;}
.y8a2_c00002{bottom:464.040000pt;}
.y5bc_c00002{bottom:464.679040pt;}
.y41d_c00002{bottom:464.680000pt;}
.y922_c00002{bottom:465.000000pt;}
.y1db_c00002{bottom:465.320000pt;}
.y115_c00002{bottom:465.640000pt;}
.y955_c00002{bottom:465.920000pt;}
.y57f_c00002{bottom:465.960000pt;}
.y472_c00002{bottom:466.280000pt;}
.ybcc_c00002{bottom:466.600000pt;}
.y1cb_c00002{bottom:466.920000pt;}
.y3d8_c00002{bottom:466.920640pt;}
.y11d2_c00002{bottom:467.236480pt;}
.yf90_c00002{bottom:467.239040pt;}
.y2d8_c00002{bottom:467.240000pt;}
.y1174_c00002{bottom:467.240640pt;}
.y1066_c00002{bottom:467.241600pt;}
.y1451_c00002{bottom:467.242240pt;}
.y9a0_c00002{bottom:467.520000pt;}
.y863_c00002{bottom:467.559680pt;}
.y8fa_c00002{bottom:467.560000pt;}
.y407_c00002{bottom:467.880000pt;}
.yf7_c00002{bottom:468.200000pt;}
.y134_c00002{bottom:468.520000pt;}
.y78a_c00002{bottom:468.840000pt;}
.y4ca_c00002{bottom:469.160000pt;}
.y520_c00002{bottom:469.163200pt;}
.y11fa_c00002{bottom:469.476480pt;}
.ye6a_c00002{bottom:469.477440pt;}
.y11c8_c00002{bottom:469.479040pt;}
.y30e_c00002{bottom:469.480000pt;}
.yf60_c00002{bottom:469.480640pt;}
.yc06_c00002{bottom:470.120000pt;}
.ydb4_c00002{bottom:470.432320pt;}
.y125e_c00002{bottom:470.438400pt;}
.yc89_c00002{bottom:470.440000pt;}
.y71d_c00002{bottom:470.760000pt;}
.y298_c00002{bottom:471.080000pt;}
.yb25_c00002{bottom:471.400000pt;}
.y1318_c00002{bottom:471.716480pt;}
.y1387_c00002{bottom:471.719040pt;}
.y176_c00002{bottom:471.720000pt;}
.y1423_c00002{bottom:471.720640pt;}
.y38a_c00002{bottom:472.040000pt;}
.y7bf_c00002{bottom:472.360000pt;}
.y4b8_c00002{bottom:473.000000pt;}
.y13d9_c00002{bottom:473.004160pt;}
.ybe_c00002{bottom:473.640000pt;}
.y1239_c00002{bottom:473.956480pt;}
.yee1_c00002{bottom:473.957120pt;}
.y1096_c00002{bottom:473.959040pt;}
.y1097_c00002{bottom:473.960000pt;}
.y145e_c00002{bottom:473.960640pt;}
.yba5_c00002{bottom:474.280000pt;}
.yac0_c00002{bottom:474.880000pt;}
.yf30_c00002{bottom:474.916480pt;}
.y1483_c00002{bottom:474.919040pt;}
.y21_c00002{bottom:474.920000pt;}
.yabb_c00002{bottom:475.200000pt;}
.y930_c00002{bottom:475.240000pt;}
.ya64_c00002{bottom:475.520000pt;}
.y76e_c00002{bottom:475.559040pt;}
.y736_c00002{bottom:475.560000pt;}
.yad0_c00002{bottom:475.840000pt;}
.y57e_c00002{bottom:475.880000pt;}
.y57d_c00002{bottom:475.881600pt;}
.y1216_c00002{bottom:475.884160pt;}
.y103e_c00002{bottom:476.196480pt;}
.y1456_c00002{bottom:476.197120pt;}
.y10af_c00002{bottom:476.199040pt;}
.y1f1_c00002{bottom:476.200000pt;}
.y1190_c00002{bottom:476.200640pt;}
.y47a_c00002{bottom:476.520000pt;}
.yc56_c00002{bottom:476.840000pt;}
.y2b6_c00002{bottom:477.160000pt;}
.y13fc_c00002{bottom:477.160640pt;}
.y2f4_c00002{bottom:477.480000pt;}
.y693_c00002{bottom:477.800000pt;}
.ye22_c00002{bottom:478.104000pt;}
.y672_c00002{bottom:478.119040pt;}
.ye0_c00002{bottom:478.120000pt;}
.y133b_c00002{bottom:478.121600pt;}
.y954_c00002{bottom:478.400000pt;}
.y1010_c00002{bottom:478.436480pt;}
.y12b4_c00002{bottom:478.437120pt;}
.y1302_c00002{bottom:478.439040pt;}
.y918_c00002{bottom:478.440000pt;}
.ybc6_c00002{bottom:478.760000pt;}
.y15e_c00002{bottom:479.080000pt;}
.y50e_c00002{bottom:479.400000pt;}
.yf14_c00002{bottom:479.717440pt;}
.yc73_c00002{bottom:479.720000pt;}
.y99f_c00002{bottom:480.000000pt;}
.y65a_c00002{bottom:480.360000pt;}
.yfe5_c00002{bottom:480.676480pt;}
.y363_c00002{bottom:480.680000pt;}
.y5e5_c00002{bottom:481.000000pt;}
.y7fb_c00002{bottom:481.320000pt;}
.y146_c00002{bottom:481.640000pt;}
.yc67_c00002{bottom:481.960000pt;}
.ybcb_c00002{bottom:482.280000pt;}
.y3d7_c00002{bottom:482.284160pt;}
.ybf8_c00002{bottom:482.600000pt;}
.y11d1_c00002{bottom:482.600640pt;}
.y11a7_c00002{bottom:482.602240pt;}
.y11bb_c00002{bottom:482.916480pt;}
.y1064_c00002{bottom:482.919040pt;}
.y1065_c00002{bottom:482.920000pt;}
.y13ad_c00002{bottom:482.920640pt;}
.y862_c00002{bottom:483.238080pt;}
.yafc_c00002{bottom:483.560000pt;}
.ybfe_c00002{bottom:483.880000pt;}
.y259_c00002{bottom:484.200000pt;}
.ya3_c00002{bottom:484.520000pt;}
.y8f8_c00002{bottom:484.840000pt;}
.y51f_c00002{bottom:484.841600pt;}
.y11e8_c00002{bottom:484.844160pt;}
.y11f9_c00002{bottom:484.845760pt;}
.yb76_c00002{bottom:485.160000pt;}
.y619_c00002{bottom:485.480000pt;}
.y64a_c00002{bottom:485.481600pt;}
.y1ca_c00002{bottom:485.800000pt;}
.y9d8_c00002{bottom:486.120000pt;}
.y406_c00002{bottom:486.440000pt;}
.y5ba_c00002{bottom:486.756160pt;}
.y5bb_c00002{bottom:486.760000pt;}
.y4d_c00002{bottom:487.080000pt;}
.y1317_c00002{bottom:487.084160pt;}
.yaba_c00002{bottom:487.359867pt;}
.y215_c00002{bottom:487.400000pt;}
.yebe_c00002{bottom:487.711040pt;}
.yec3_c00002{bottom:487.716800pt;}
.y471_c00002{bottom:487.720000pt;}
.yba6_c00002{bottom:488.040000pt;}
.ya63_c00002{bottom:488.320000pt;}
.y30d_c00002{bottom:488.360000pt;}
.yb6f_c00002{bottom:488.680000pt;}
.ya1e_c00002{bottom:488.960000pt;}
.yd1b_c00002{bottom:489.000000pt;}
.y349_c00002{bottom:489.320000pt;}
.yf8f_c00002{bottom:489.320640pt;}
.y10e7_c00002{bottom:489.321600pt;}
.yfbf_c00002{bottom:489.322240pt;}
.y144e_c00002{bottom:489.324160pt;}
.y297_c00002{bottom:489.640000pt;}
.y4e3_c00002{bottom:489.960000pt;}
.yacf_c00002{bottom:490.240000pt;}
.y5d6_c00002{bottom:490.280000pt;}
.yf2f_c00002{bottom:490.284160pt;}
.y32e_c00002{bottom:490.596480pt;}
.y1b0_c00002{bottom:490.600000pt;}
.y711_c00002{bottom:490.920000pt;}
.ydb3_c00002{bottom:491.235200pt;}
.y7be_c00002{bottom:491.240000pt;}
.y953_c00002{bottom:491.520000pt;}
.y6fc_c00002{bottom:491.560000pt;}
.y143f_c00002{bottom:491.560640pt;}
.yf5f_c00002{bottom:491.561600pt;}
.y13bb_c00002{bottom:491.562240pt;}
.y149b_c00002{bottom:491.563200pt;}
.y103d_c00002{bottom:491.564160pt;}
.y59a_c00002{bottom:491.880000pt;}
.y4c2_c00002{bottom:492.200000pt;}
.y2d7_c00002{bottom:492.520000pt;}
.y4c9_c00002{bottom:492.840000pt;}
.y28b_c00002{bottom:493.480000pt;}
.y537_c00002{bottom:493.796480pt;}
.y133a_c00002{bottom:493.799040pt;}
.y240_c00002{bottom:493.800000pt;}
.y12b3_c00002{bottom:493.800640pt;}
.y134a_c00002{bottom:493.801600pt;}
.y100f_c00002{bottom:493.804160pt;}
.ycdc_c00002{bottom:494.120000pt;}
.y125d_c00002{bottom:494.121600pt;}
.y848_c00002{bottom:494.440000pt;}
.y8c5_c00002{bottom:494.760000pt;}
.y1f0_c00002{bottom:495.080000pt;}
.y4b7_c00002{bottom:495.081600pt;}
.y13d8_c00002{bottom:495.394240pt;}
.y838_c00002{bottom:495.400000pt;}
.y2b5_c00002{bottom:496.040000pt;}
.y1095_c00002{bottom:496.041600pt;}
.yfe4_c00002{bottom:496.044160pt;}
.y663_c00002{bottom:496.360000pt;}
.y8d6_c00002{bottom:496.676800pt;}
.y57c_c00002{bottom:497.000000pt;}
.y1482_c00002{bottom:497.001600pt;}
.yd24_c00002{bottom:497.320000pt;}
.y114_c00002{bottom:497.640000pt;}
.y76d_c00002{bottom:497.641600pt;}
.y735_c00002{bottom:497.956480pt;}
.y69d_c00002{bottom:497.960000pt;}
.y10c5_c00002{bottom:498.278080pt;}
.y11d0_c00002{bottom:498.279040pt;}
.yde1_c00002{bottom:498.280000pt;}
.y11a6_c00002{bottom:498.280640pt;}
.y10ae_c00002{bottom:498.281600pt;}
.yde0_c00002{bottom:498.281920pt;}
.y114a_c00002{bottom:498.284160pt;}
.y861_c00002{bottom:498.601600pt;}
.ye21_c00002{bottom:498.906880pt;}
.y6e3_c00002{bottom:498.920000pt;}
.ye58_c00002{bottom:499.227840pt;}
.y13fb_c00002{bottom:499.241600pt;}
.ycb0_c00002{bottom:499.560000pt;}
.yab9_c00002{bottom:499.840000pt;}
.ycf8_c00002{bottom:499.880000pt;}
.yf6_c00002{bottom:500.200000pt;}
.y671_c00002{bottom:500.204160pt;}
.ya62_c00002{bottom:500.480000pt;}
.y51e_c00002{bottom:500.516480pt;}
.y3f4_c00002{bottom:500.520000pt;}
.y1285_c00002{bottom:500.520640pt;}
.y1301_c00002{bottom:500.521600pt;}
.y11f8_c00002{bottom:500.524160pt;}
.ycc7_c00002{bottom:500.840000pt;}
.y649_c00002{bottom:501.160000pt;}
.y648_c00002{bottom:501.161600pt;}
.ya1c_c00002{bottom:501.440000pt;}
.yb75_c00002{bottom:501.480000pt;}
.ybf7_c00002{bottom:501.800000pt;}
.y99d_c00002{bottom:502.080000pt;}
.y99e_c00002{bottom:502.400000pt;}
.yd7f_c00002{bottom:502.440000pt;}
.ybfd_c00002{bottom:502.760000pt;}
.y258_c00002{bottom:503.080000pt;}
.ydf_c00002{bottom:503.400000pt;}
.y175_c00002{bottom:503.720000pt;}
.y952_c00002{bottom:504.000000pt;}
.yd10_c00002{bottom:504.040000pt;}
.y1c9_c00002{bottom:504.360000pt;}
.yace_c00002{bottom:504.640000pt;}
.y3d6_c00002{bottom:504.680000pt;}
.yf8e_c00002{bottom:504.999040pt;}
.yd47_c00002{bottom:505.000000pt;}
.yfbe_c00002{bottom:505.000640pt;}
.y1080_c00002{bottom:505.001600pt;}
.y405_c00002{bottom:505.320000pt;}
.y4c_c00002{bottom:505.640000pt;}
.y32d_c00002{bottom:505.960000pt;}
.y32c_c00002{bottom:505.968320pt;}
.y7cd_c00002{bottom:506.280000pt;}
.yb24_c00002{bottom:506.600000pt;}
.y20_c00002{bottom:506.920000pt;}
.y11e7_c00002{bottom:507.239040pt;}
.y57b_c00002{bottom:507.240000pt;}
.y1130_c00002{bottom:507.240640pt;}
.y1292_c00002{bottom:507.241600pt;}
.yf5e_c00002{bottom:507.242240pt;}
.y77d_c00002{bottom:507.560000pt;}
.y348_c00002{bottom:507.880000pt;}
.yebd_c00002{bottom:508.194240pt;}
.y296_c00002{bottom:508.200000pt;}
.y362_c00002{bottom:508.520000pt;}
.y5fa_c00002{bottom:508.838080pt;}
.ye3e_c00002{bottom:508.840000pt;}
.y536_c00002{bottom:509.160000pt;}
.y535_c00002{bottom:509.163200pt;}
.y5b9_c00002{bottom:509.479040pt;}
.y389_c00002{bottom:509.480000pt;}
.y7d1_c00002{bottom:509.800000pt;}
.y125c_c00002{bottom:509.806400pt;}
.y6fb_c00002{bottom:510.120000pt;}
.y599_c00002{bottom:510.440000pt;}
.y13d7_c00002{bottom:510.757760pt;}
.y4b6_c00002{bottom:510.760000pt;}
.ye69_c00002{bottom:511.067520pt;}
.ydb0_c00002{bottom:511.076800pt;}
.y27c_c00002{bottom:511.080000pt;}
.y50d_c00002{bottom:511.400000pt;}
.y144d_c00002{bottom:511.716480pt;}
.y145d_c00002{bottom:511.718080pt;}
.y1094_c00002{bottom:511.719040pt;}
.ybc5_c00002{bottom:511.720000pt;}
.yabf_c00002{bottom:512.000000pt;}
.yc72_c00002{bottom:512.040000pt;}
.yab8_c00002{bottom:512.320000pt;}
.y23f_c00002{bottom:512.360000pt;}
.yf2e_c00002{bottom:512.676480pt;}
.y57a_c00002{bottom:512.680000pt;}
.y1481_c00002{bottom:512.680640pt;}
.ydb2_c00002{bottom:512.997120pt;}
.y5e4_c00002{bottom:513.000000pt;}
.ya61_c00002{bottom:513.279867pt;}
.y734_c00002{bottom:513.320000pt;}
.y76c_c00002{bottom:513.321600pt;}
.ya1d_c00002{bottom:513.600000pt;}
.y1e5_c00002{bottom:513.640000pt;}
.y1215_c00002{bottom:513.644160pt;}
.ya1b_c00002{bottom:513.920000pt;}
.y103b_c00002{bottom:513.956480pt;}
.y110e_c00002{bottom:513.959040pt;}
.y103c_c00002{bottom:513.960000pt;}
.y10d3_c00002{bottom:513.960640pt;}
.y860_c00002{bottom:514.279680pt;}
.y214_c00002{bottom:514.280000pt;}
.y2b4_c00002{bottom:514.600000pt;}
.y99c_c00002{bottom:514.880000pt;}
.y692_c00002{bottom:514.920000pt;}
.ycaf_c00002{bottom:515.240000pt;}
.y872_c00002{bottom:515.560000pt;}
.y921_c00002{bottom:515.880000pt;}
.y1339_c00002{bottom:515.884160pt;}
.y12b2_c00002{bottom:516.196480pt;}
.y1300_c00002{bottom:516.197120pt;}
.y100e_c00002{bottom:516.199040pt;}
.y113_c00002{bottom:516.200000pt;}
.ya2_c00002{bottom:516.520000pt;}
.y647_c00002{bottom:516.840000pt;}
.y951_c00002{bottom:517.120000pt;}
.yc94_c00002{bottom:517.160000pt;}
.y6e2_c00002{bottom:517.480000pt;}
.y2d6_c00002{bottom:517.800000pt;}
.y4c8_c00002{bottom:518.120000pt;}
.yfe3_c00002{bottom:518.436480pt;}
.ycad_c00002{bottom:518.440000pt;}
.yacd_c00002{bottom:519.040000pt;}
.yf5_c00002{bottom:519.080000pt;}
.y470_c00002{bottom:519.400000pt;}
.ye20_c00002{bottom:519.709760pt;}
.ye57_c00002{bottom:519.711040pt;}
.yce7_c00002{bottom:519.720000pt;}
.yd5e_c00002{bottom:520.040000pt;}
.y30c_c00002{bottom:520.360000pt;}
.y11cf_c00002{bottom:520.360640pt;}
.y11a5_c00002{bottom:520.361600pt;}
.y1205_c00002{bottom:520.676480pt;}
.y13ac_c00002{bottom:520.678080pt;}
.y1063_c00002{bottom:520.679040pt;}
.y107f_c00002{bottom:520.680000pt;}
.y1450_c00002{bottom:520.680640pt;}
.ycf7_c00002{bottom:521.000000pt;}
.y491_c00002{bottom:521.320000pt;}
.y257_c00002{bottom:521.640000pt;}
.y174_c00002{bottom:522.280000pt;}
.y670_c00002{bottom:522.599040pt;}
.y1af_c00002{bottom:522.600000pt;}
.y139d_c00002{bottom:522.604160pt;}
.y1284_c00002{bottom:522.916480pt;}
.y1279_c00002{bottom:522.918080pt;}
.y112f_c00002{bottom:522.919040pt;}
.y15d_c00002{bottom:522.920000pt;}
.yf5d_c00002{bottom:522.920640pt;}
.y7bd_c00002{bottom:523.240000pt;}
.y454_c00002{bottom:523.560000pt;}
.y404_c00002{bottom:523.880000pt;}
.y276_c00002{bottom:524.200000pt;}
.y5f9_c00002{bottom:524.201600pt;}
.yabe_c00002{bottom:524.480000pt;}
.y662_c00002{bottom:524.520000pt;}
.yab7_c00002{bottom:524.800000pt;}
.y7cc_c00002{bottom:524.840000pt;}
.y534_c00002{bottom:524.841600pt;}
.yd3d_c00002{bottom:525.160000pt;}
.ya60_c00002{bottom:525.440000pt;}
.yde_c00002{bottom:525.480000pt;}
.ydd_c00002{bottom:525.481600pt;}
.y1f_c00002{bottom:525.800000pt;}
.yd1a_c00002{bottom:526.120000pt;}
.ya5b_c00002{bottom:526.400000pt;}
.ye07_c00002{bottom:526.428800pt;}
.y7f2_c00002{bottom:526.440000pt;}
.y3d5_c00002{bottom:526.751680pt;}
.y8d5_c00002{bottom:526.758400pt;}
.y347_c00002{bottom:526.760000pt;}
.y1ef_c00002{bottom:527.080000pt;}
.yfbd_c00002{bottom:527.081600pt;}
.y1238_c00002{bottom:527.082240pt;}
.y1100_c00002{bottom:527.084160pt;}
.y99b_c00002{bottom:527.360000pt;}
.y13d6_c00002{bottom:527.721920pt;}
.y2f3_c00002{bottom:528.040000pt;}
.yf2d_c00002{bottom:528.044160pt;}
.y755_c00002{bottom:528.360000pt;}
.y32b_c00002{bottom:528.364160pt;}
.yb88_c00002{bottom:528.680000pt;}
.y76b_c00002{bottom:528.996480pt;}
.yebc_c00002{bottom:528.997120pt;}
.y6fa_c00002{bottom:529.000000pt;}
.y733_c00002{bottom:529.001600pt;}
.y55e_c00002{bottom:529.320000pt;}
.y10ad_c00002{bottom:529.320640pt;}
.y136a_c00002{bottom:529.321600pt;}
.y103a_c00002{bottom:529.324160pt;}
.y950_c00002{bottom:529.600000pt;}
.y18f_c00002{bottom:529.640000pt;}
.yeeb_c00002{bottom:529.641920pt;}
.y85f_c00002{bottom:529.958080pt;}
.y50c_c00002{bottom:529.959360pt;}
.y13fa_c00002{bottom:530.600640pt;}
.y23e_c00002{bottom:530.920000pt;}
.yc86_c00002{bottom:531.240000pt;}
.y5b7_c00002{bottom:531.556160pt;}
.y5b8_c00002{bottom:531.560000pt;}
.y12ff_c00002{bottom:531.560640pt;}
.y1349_c00002{bottom:531.561600pt;}
.y12b1_c00002{bottom:531.564160pt;}
.ycc6_c00002{bottom:531.880000pt;}
.y1e4_c00002{bottom:532.200000pt;}
.yddf_c00002{bottom:532.840000pt;}
.y125b_c00002{bottom:533.158400pt;}
.y43f_c00002{bottom:533.160000pt;}
.y43e_c00002{bottom:533.161280pt;}
.y4b5_c00002{bottom:533.164160pt;}
.yacc_c00002{bottom:533.439867pt;}
.y871_c00002{bottom:533.480000pt;}
.ye68_c00002{bottom:533.788480pt;}
.y691_c00002{bottom:533.800000pt;}
.yfe2_c00002{bottom:533.801600pt;}
.y129e_c00002{bottom:533.804160pt;}
.ybc3_c00002{bottom:534.120000pt;}
.yc23_c00002{bottom:534.440000pt;}
.yc0e_c00002{bottom:534.760000pt;}
.y1480_c00002{bottom:534.761600pt;}
.y112_c00002{bottom:535.080000pt;}
.y920_c00002{bottom:535.720000pt;}
.y11a4_c00002{bottom:536.035520pt;}
.y11ce_c00002{bottom:536.039040pt;}
.yce6_c00002{bottom:536.040000pt;}
.y1496_c00002{bottom:536.040640pt;}
.y149f_c00002{bottom:536.041280pt;}
.y110d_c00002{bottom:536.041600pt;}
.y1182_c00002{bottom:536.044160pt;}
.y1c8_c00002{bottom:536.360000pt;}
.yb6e_c00002{bottom:536.680000pt;}
.yab6_c00002{bottom:536.960000pt;}
.yd46_c00002{bottom:537.000000pt;}
.y6ae_c00002{bottom:537.320000pt;}
.y4b_c00002{bottom:537.640000pt;}
.y3f3_c00002{bottom:537.960000pt;}
.ya5f_c00002{bottom:538.240000pt;}
.y1338_c00002{bottom:538.276480pt;}
.y789_c00002{bottom:538.280000pt;}
.y100d_c00002{bottom:538.280640pt;}
.y1278_c00002{bottom:538.281600pt;}
.y11f7_c00002{bottom:538.284160pt;}
.yba4_c00002{bottom:538.600000pt;}
.ya5a_c00002{bottom:538.880000pt;}
.y646_c00002{bottom:538.916160pt;}
.y49d_c00002{bottom:538.920000pt;}
.y618_c00002{bottom:539.240000pt;}
.y90c_c00002{bottom:539.240640pt;}
.y77c_c00002{bottom:539.560000pt;}
.y5f8_c00002{bottom:539.879040pt;}
.y3a6_c00002{bottom:539.880000pt;}
.ye1f_c00002{bottom:540.192960pt;}
.y256_c00002{bottom:540.200000pt;}
.ya1a_c00002{bottom:540.480000pt;}
.ye56_c00002{bottom:540.513920pt;}
.y532_c00002{bottom:540.516480pt;}
.y533_c00002{bottom:540.520000pt;}
.ydc_c00002{bottom:541.160000pt;}
.ydb_c00002{bottom:541.161600pt;}
.yd0f_c00002{bottom:541.480000pt;}
.yd11_c00002{bottom:541.800000pt;}
.y213_c00002{bottom:542.120000pt;}
.yb18_c00002{bottom:542.440000pt;}
.y94f_c00002{bottom:542.720000pt;}
.y403_c00002{bottom:542.760000pt;}
.y1062_c00002{bottom:542.760640pt;}
.y107e_c00002{bottom:542.761600pt;}
.y1149_c00002{bottom:542.762240pt;}
.yf8d_c00002{bottom:542.764160pt;}
.y275_c00002{bottom:543.080000pt;}
.y2d5_c00002{bottom:543.400000pt;}
.y4c7_c00002{bottom:543.720000pt;}
.yf0c_c00002{bottom:544.040000pt;}
.y1e_c00002{bottom:544.360000pt;}
.y76a_c00002{bottom:544.361600pt;}
.y732_c00002{bottom:544.676480pt;}
.y66f_c00002{bottom:544.680000pt;}
.y66e_c00002{bottom:544.684160pt;}
.y10ac_c00002{bottom:544.999040pt;}
.y51d_c00002{bottom:545.000000pt;}
.y112e_c00002{bottom:545.000640pt;}
.yf5c_c00002{bottom:545.001600pt;}
.y346_c00002{bottom:545.320000pt;}
.y85e_c00002{bottom:545.321600pt;}
.y50b_c00002{bottom:545.322880pt;}
.y268_c00002{bottom:545.640000pt;}
.y4e2_c00002{bottom:545.960000pt;}
.y7fa_c00002{bottom:546.280000pt;}
.y2b3_c00002{bottom:546.600000pt;}
.y2f2_c00002{bottom:546.920000pt;}
.ye06_c00002{bottom:547.231680pt;}
.y1422_c00002{bottom:547.239040pt;}
.y1348_c00002{bottom:547.240000pt;}
.y55d_c00002{bottom:547.560000pt;}
.yacb_c00002{bottom:547.840000pt;}
.y4eb_c00002{bottom:547.880000pt;}
.y4f0_c00002{bottom:548.200000pt;}
.ya1_c00002{bottom:548.520000pt;}
.y43d_c00002{bottom:548.839680pt;}
.y8f7_c00002{bottom:548.840000pt;}
.y13d5_c00002{bottom:549.160000pt;}
.y13d4_c00002{bottom:549.160320pt;}
.y3d4_c00002{bottom:549.475520pt;}
.yfe1_c00002{bottom:549.479040pt;}
.ybc4_c00002{bottom:549.480000pt;}
.y10ff_c00002{bottom:549.480640pt;}
.yab5_c00002{bottom:549.760000pt;}
.y23d_c00002{bottom:549.800000pt;}
.yec2_c00002{bottom:549.802880pt;}
.y99a_c00002{bottom:550.080000pt;}
.ye3c_c00002{bottom:550.119040pt;}
.ye3d_c00002{bottom:550.120000pt;}
.yf2b_c00002{bottom:550.438080pt;}
.y147f_c00002{bottom:550.439040pt;}
.yf2c_c00002{bottom:550.440000pt;}
.ya5e_c00002{bottom:550.720000pt;}
.y32a_c00002{bottom:550.760000pt;}
.y3bc_c00002{bottom:551.080000pt;}
.ya59_c00002{bottom:551.360000pt;}
.y1ae_c00002{bottom:551.398080pt;}
.y11a3_c00002{bottom:551.399040pt;}
.y870_c00002{bottom:551.400000pt;}
.y118f_c00002{bottom:551.716480pt;}
.y122c_c00002{bottom:551.719040pt;}
.y1039_c00002{bottom:551.720000pt;}
.y1038_c00002{bottom:551.720640pt;}
.y8a1_c00002{bottom:552.040000pt;}
.y690_c00002{bottom:552.360000pt;}
.yb34_c00002{bottom:552.363840pt;}
.y71c_c00002{bottom:552.680000pt;}
.y13f9_c00002{bottom:552.681600pt;}
.y30b_c00002{bottom:553.000000pt;}
.y826_c00002{bottom:553.035867pt;}
.yc0d_c00002{bottom:553.320000pt;}
.ydde_c00002{bottom:553.631680pt;}
.y111_c00002{bottom:553.640000pt;}
.y1337_c00002{bottom:553.640640pt;}
.y12fe_c00002{bottom:553.956480pt;}
.y12b0_c00002{bottom:553.959040pt;}
.y1277_c00002{bottom:553.960000pt;}
.y1276_c00002{bottom:553.960640pt;}
.y5b5_c00002{bottom:554.279040pt;}
.y5b6_c00002{bottom:554.280000pt;}
.ye67_c00002{bottom:554.591360pt;}
.y92f_c00002{bottom:554.600000pt;}
.y710_c00002{bottom:554.920000pt;}
.y94e_c00002{bottom:555.200000pt;}
.y490_c00002{bottom:555.240000pt;}
.y453_c00002{bottom:555.560000pt;}
.y531_c00002{bottom:555.880000pt;}
.y530_c00002{bottom:555.881600pt;}
.y129d_c00002{bottom:556.196480pt;}
.y4a_c00002{bottom:556.200000pt;}
.yf4_c00002{bottom:556.520000pt;}
.yda_c00002{bottom:556.840000pt;}
.y125a_c00002{bottom:556.841600pt;}
.y8d4_c00002{bottom:557.156800pt;}
.yd3c_c00002{bottom:557.160000pt;}
.yd05_c00002{bottom:557.480000pt;}
.y617_c00002{bottom:558.120000pt;}
.y11cd_c00002{bottom:558.121600pt;}
.y1204_c00002{bottom:558.436480pt;}
.y149e_c00002{bottom:558.437120pt;}
.y1061_c00002{bottom:558.439040pt;}
.y107d_c00002{bottom:558.440000pt;}
.y107c_c00002{bottom:558.440640pt;}
.y8c4_c00002{bottom:558.760000pt;}
.y1ee_c00002{bottom:559.080000pt;}
.yba3_c00002{bottom:559.400000pt;}
.y173_c00002{bottom:559.720000pt;}
.yaca_c00002{bottom:560.000000pt;}
.y769_c00002{bottom:560.038080pt;}
.y731_c00002{bottom:560.040000pt;}
.y730_c00002{bottom:560.040640pt;}
.y7d0_c00002{bottom:560.360000pt;}
.y1369_c00002{bottom:560.364160pt;}
.y100c_c00002{bottom:560.676480pt;}
.yf5b_c00002{bottom:560.679040pt;}
.y88e_c00002{bottom:560.680000pt;}
.y12c2_c00002{bottom:560.680640pt;}
.y85d_c00002{bottom:560.995520pt;}
.y6f9_c00002{bottom:561.000000pt;}
.y50a_c00002{bottom:561.001280pt;}
.ye55_c00002{bottom:561.316800pt;}
.y850_c00002{bottom:561.320000pt;}
.y18e_c00002{bottom:561.640000pt;}
.yabd_c00002{bottom:561.920000pt;}
.y5f7_c00002{bottom:561.960000pt;}
.y999_c00002{bottom:562.240000pt;}
.y7cb_c00002{bottom:562.280000pt;}
.y997_c00002{bottom:562.560000pt;}
.ye1e_c00002{bottom:562.913920pt;}
.yf13_c00002{bottom:562.916800pt;}
.y1d_c00002{bottom:562.920000pt;}
.ya5d_c00002{bottom:563.200000pt;}
.ya57_c00002{bottom:563.520000pt;}
.yd19_c00002{bottom:563.560000pt;}
.ya58_c00002{bottom:563.840000pt;}
.y345_c00002{bottom:563.880000pt;}
.y1e3_c00002{bottom:564.200000pt;}
.yc37_c00002{bottom:564.520000pt;}
.yf8c_c00002{bottom:565.156480pt;}
.y10fe_c00002{bottom:565.159040pt;}
.y2b2_c00002{bottom:565.160000pt;}
.yfbc_c00002{bottom:565.160640pt;}
.y2f1_c00002{bottom:565.480000pt;}
.yf2a_c00002{bottom:565.801600pt;}
.ybc2_c00002{bottom:566.120000pt;}
.y579_c00002{bottom:566.440000pt;}
.y55b_c00002{bottom:566.760000pt;}
.ya19_c00002{bottom:567.040000pt;}
.y1ad_c00002{bottom:567.076480pt;}
.y35f_c00002{bottom:567.080000pt;}
.y1291_c00002{bottom:567.081600pt;}
.y1037_c00002{bottom:567.084160pt;}
.y10c4_c00002{bottom:567.085760pt;}
.ybc0_c00002{bottom:567.400000pt;}
.ye05_c00002{bottom:567.714880pt;}
.y212_c00002{bottom:568.040000pt;}
.y94d_c00002{bottom:568.320000pt;}
.y13f8_c00002{bottom:568.359040pt;}
.y1c7_c00002{bottom:568.360000pt;}
.y2d4_c00002{bottom:568.680000pt;}
.y650_c00002{bottom:569.000000pt;}
.ycc5_c00002{bottom:569.320000pt;}
.y1421_c00002{bottom:569.321600pt;}
.y1386_c00002{bottom:569.324160pt;}
.y12fd_c00002{bottom:569.325760pt;}
.ybd_c00002{bottom:569.640000pt;}
.y4c6_c00002{bottom:569.960000pt;}
.yc66_c00002{bottom:570.278400pt;}
.yebb_c00002{bottom:570.280000pt;}
.y92e_c00002{bottom:570.600000pt;}
.y4a8_c00002{bottom:570.920000pt;}
.y43c_c00002{bottom:570.920640pt;}
.yc58_c00002{bottom:571.240000pt;}
.y52f_c00002{bottom:571.560000pt;}
.yfe0_c00002{bottom:571.561600pt;}
.y3a5_c00002{bottom:571.880000pt;}
.y634_c00002{bottom:572.200000pt;}
.y1259_c00002{bottom:572.518080pt;}
.y15c_c00002{bottom:572.520000pt;}
.y147e_c00002{bottom:572.525760pt;}
.yb4e_c00002{bottom:572.840000pt;}
.ye9e_c00002{bottom:573.167680pt;}
.y11a2_c00002{bottom:573.473600pt;}
.y55c_c00002{bottom:573.480000pt;}
.y1214_c00002{bottom:573.799040pt;}
.y3d3_c00002{bottom:573.800000pt;}
.y1203_c00002{bottom:573.800640pt;}
.y110c_c00002{bottom:573.801600pt;}
.y11cc_c00002{bottom:573.802240pt;}
.y12e2_c00002{bottom:573.804160pt;}
.yddd_c00002{bottom:574.114880pt;}
.yc2a_c00002{bottom:574.120000pt;}
.yc16_c00002{bottom:574.440000pt;}
.y998_c00002{bottom:574.720000pt;}
.y402_c00002{bottom:574.760000pt;}
.y996_c00002{bottom:575.040000pt;}
.y49_c00002{bottom:575.080000pt;}
.ye66_c00002{bottom:575.394240pt;}
.y329_c00002{bottom:575.400000pt;}
.y328_c00002{bottom:575.403200pt;}
.y768_c00002{bottom:575.716480pt;}
.y72f_c00002{bottom:575.719040pt;}
.ya5c_c00002{bottom:576.000000pt;}
.y1336_c00002{bottom:576.036480pt;}
.y8b6_c00002{bottom:576.040000pt;}
.y11f6_c00002{bottom:576.040640pt;}
.y1275_c00002{bottom:576.041600pt;}
.y100b_c00002{bottom:576.044160pt;}
.ya56_c00002{bottom:576.320000pt;}
.y5b4_c00002{bottom:576.360000pt;}
.y5b3_c00002{bottom:576.364160pt;}
.y85c_c00002{bottom:576.673920pt;}
.y509_c00002{bottom:576.679680pt;}
.y6c5_c00002{bottom:576.680000pt;}
.y52e_c00002{bottom:577.000000pt;}
.yb74_c00002{bottom:577.320000pt;}
.y90b_c00002{bottom:577.323840pt;}
.y1ed_c00002{bottom:577.640000pt;}
.y5f6_c00002{bottom:577.641600pt;}
.y4e1_c00002{bottom:577.960000pt;}
.y4b3_c00002{bottom:578.279040pt;}
.y4b4_c00002{bottom:578.280000pt;}
.y388_c00002{bottom:578.600000pt;}
.y754_c00002{bottom:578.920000pt;}
.ya18_c00002{bottom:579.200000pt;}
.yd9_c00002{bottom:579.240000pt;}
.y6f8_c00002{bottom:579.560000pt;}
.y598_c00002{bottom:579.880000pt;}
.y274_c00002{bottom:580.200000pt;}
.y7bc_c00002{bottom:580.201600pt;}
.ya0_c00002{bottom:580.520000pt;}
.y1173_c00002{bottom:580.520640pt;}
.y1060_c00002{bottom:580.521600pt;}
.y145c_c00002{bottom:580.522240pt;}
.yf8b_c00002{bottom:580.524160pt;}
.y94c_c00002{bottom:580.800000pt;}
.y8f6_c00002{bottom:580.840000pt;}
.yf29_c00002{bottom:581.480000pt;}
.yf28_c00002{bottom:581.482880pt;}
.y1c_c00002{bottom:581.800000pt;}
.ybc1_c00002{bottom:582.120000pt;}
.y1ac_c00002{bottom:582.440000pt;}
.y1368_c00002{bottom:582.759040pt;}
.y344_c00002{bottom:582.760000pt;}
.y1290_c00002{bottom:582.760640pt;}
.y112d_c00002{bottom:582.761600pt;}
.yf5a_c00002{bottom:582.764160pt;}
.y1e2_c00002{bottom:583.080000pt;}
.yf12_c00002{bottom:583.400000pt;}
.ye1d_c00002{bottom:583.716800pt;}
.y2b1_c00002{bottom:584.040000pt;}
.y68f_c00002{bottom:584.360000pt;}
.ycc4_c00002{bottom:584.680000pt;}
.ycf1_c00002{bottom:585.000000pt;}
.y1420_c00002{bottom:585.000640pt;}
.yad2_c00002{bottom:585.280000pt;}
.yeea_c00002{bottom:585.311040pt;}
.yf0b_c00002{bottom:585.314240pt;}
.y55a_c00002{bottom:585.320000pt;}
.y110_c00002{bottom:585.640000pt;}
.y92d_c00002{bottom:586.280000pt;}
.yc55_c00002{bottom:586.600000pt;}
.yac9_c00002{bottom:586.880000pt;}
.y30a_c00002{bottom:586.920000pt;}
.yab4_c00002{bottom:587.200000pt;}
.y144c_c00002{bottom:587.238080pt;}
.y8d3_c00002{bottom:587.238400pt;}
.yfdf_c00002{bottom:587.239040pt;}
.ybf6_c00002{bottom:587.240000pt;}
.y10fd_c00002{bottom:587.240640pt;}
.yfbb_c00002{bottom:587.241600pt;}
.ye91_c00002{bottom:587.559040pt;}
.y452_c00002{bottom:587.560000pt;}
.yc40_c00002{bottom:587.880000pt;}
.y1258_c00002{bottom:587.881600pt;}
.y3bb_c00002{bottom:588.200000pt;}
.y147d_c00002{bottom:588.204160pt;}
.ya55_c00002{bottom:588.480000pt;}
.ybc_c00002{bottom:588.520000pt;}
.y46f_c00002{bottom:588.840000pt;}
.y3d2_c00002{bottom:589.479040pt;}
.y8a0_c00002{bottom:589.480000pt;}
.y110b_c00002{bottom:589.480640pt;}
.y1036_c00002{bottom:589.481600pt;}
.y10d2_c00002{bottom:589.482240pt;}
.yb4d_c00002{bottom:589.800000pt;}
.yb23_c00002{bottom:590.120000pt;}
.ye04_c00002{bottom:590.435840pt;}
.yc22_c00002{bottom:590.440000pt;}
.y832_c00002{bottom:590.756160pt;}
.yc6d_c00002{bottom:590.760000pt;}
.y995_c00002{bottom:591.040000pt;}
.y15b_c00002{bottom:591.080000pt;}
.y625_c00002{bottom:591.400000pt;}
.y1335_c00002{bottom:591.401600pt;}
.y11f5_c00002{bottom:591.719040pt;}
.y172_c00002{bottom:591.720000pt;}
.y12fc_c00002{bottom:591.721600pt;}
.yeba_c00002{bottom:591.726400pt;}
.ya17_c00002{bottom:592.000000pt;}
.y85b_c00002{bottom:592.037440pt;}
.yd0e_c00002{bottom:592.040000pt;}
.y508_c00002{bottom:592.043200pt;}
.y7f1_c00002{bottom:592.360000pt;}
.y88d_c00002{bottom:592.680000pt;}
.y7cf_c00002{bottom:593.000000pt;}
.y5f5_c00002{bottom:593.320000pt;}
.y145_c00002{bottom:593.640000pt;}
.y94b_c00002{bottom:593.920000pt;}
.y3f2_c00002{bottom:593.960000pt;}
.y787_c00002{bottom:594.280000pt;}
.yd5d_c00002{bottom:594.600000pt;}
.yddb_c00002{bottom:594.920000pt;}
.y4c4_c00002{bottom:595.240000pt;}
.y43b_c00002{bottom:595.555520pt;}
.ydb1_c00002{bottom:595.558400pt;}
.y28a_c00002{bottom:595.560000pt;}
.y410_c00002{bottom:595.880000pt;}
.y1213_c00002{bottom:595.882240pt;}
.y1181_c00002{bottom:596.196480pt;}
.ye65_c00002{bottom:596.197120pt;}
.y12e1_c00002{bottom:596.198720pt;}
.y105f_c00002{bottom:596.199040pt;}
.y211_c00002{bottom:596.200000pt;}
.y107b_c00002{bottom:596.200640pt;}
.y48f_c00002{bottom:596.520000pt;}
.y41c_c00002{bottom:596.840000pt;}
.yf27_c00002{bottom:597.161280pt;}
.yd25_c00002{bottom:597.480000pt;}
.y327_c00002{bottom:597.484160pt;}
.y5d5_c00002{bottom:597.800000pt;}
.y6f7_c00002{bottom:598.120000pt;}
.y1009_c00002{bottom:598.436480pt;}
.y112c_c00002{bottom:598.439040pt;}
.y100a_c00002{bottom:598.440000pt;}
.y12ac_c00002{bottom:598.440640pt;}
.y597_c00002{bottom:598.760000pt;}
.y273_c00002{bottom:599.080000pt;}
.y8db_c00002{bottom:599.400000pt;}
.yab3_c00002{bottom:599.680000pt;}
.yad1_c00002{bottom:600.000000pt;}
.yee0_c00002{bottom:600.040000pt;}
.y1c6_c00002{bottom:600.360000pt;}
.y52d_c00002{bottom:600.680000pt;}
.y788_c00002{bottom:601.000000pt;}
.y343_c00002{bottom:601.320000pt;}
.ye90_c00002{bottom:601.636800pt;}
.y1e1_c00002{bottom:601.640000pt;}
.ya54_c00002{bottom:601.920000pt;}
.y4c5_c00002{bottom:601.960000pt;}
.y6c4_c00002{bottom:602.280000pt;}
.ye9d_c00002{bottom:602.282240pt;}
.ye54_c00002{bottom:602.593920pt;}
.y92c_c00002{bottom:602.600000pt;}
.yfba_c00002{bottom:602.916480pt;}
.y1093_c00002{bottom:602.918720pt;}
.y10fc_c00002{bottom:602.919040pt;}
.y2f0_c00002{bottom:602.920000pt;}
.y129c_c00002{bottom:602.920640pt;}
.y2b0_c00002{bottom:603.240000pt;}
.y994_c00002{bottom:603.520000pt;}
.y77b_c00002{bottom:603.560000pt;}
.y1257_c00002{bottom:603.560640pt;}
.y3a4_c00002{bottom:603.880000pt;}
.ya16_c00002{bottom:604.160000pt;}
.yba2_c00002{bottom:604.200000pt;}
.y295_c00002{bottom:604.520000pt;}
.yd8_c00002{bottom:604.524160pt;}
.y1ab_c00002{bottom:604.840000pt;}
.y1367_c00002{bottom:604.840640pt;}
.y139c_c00002{bottom:604.841600pt;}
.y1aa_c00002{bottom:604.843200pt;}
.y128f_c00002{bottom:605.156480pt;}
.y13b6_c00002{bottom:605.157120pt;}
.yf59_c00002{bottom:605.159040pt;}
.ycf0_c00002{bottom:605.160000pt;}
.y1035_c00002{bottom:605.160640pt;}
.yb22_c00002{bottom:605.480000pt;}
.yee9_c00002{bottom:605.794240pt;}
.ybe1_c00002{bottom:605.800000pt;}
.y94a_c00002{bottom:606.080000pt;}
.yf0a_c00002{bottom:606.117120pt;}
.y13f7_c00002{bottom:606.119040pt;}
.y71b_c00002{bottom:606.120000pt;}
.yb87_c00002{bottom:606.440000pt;}
.y401_c00002{bottom:606.760000pt;}
.y48_c00002{bottom:607.080000pt;}
.y1334_c00002{bottom:607.081600pt;}
.y141f_c00002{bottom:607.396480pt;}
.y13d3_c00002{bottom:607.397120pt;}
.y12fb_c00002{bottom:607.399040pt;}
.y46e_c00002{bottom:607.400000pt;}
.y8b5_c00002{bottom:607.715200pt;}
.y85a_c00002{bottom:607.715840pt;}
.y507_c00002{bottom:607.721600pt;}
.y88c_c00002{bottom:608.040000pt;}
.y659_c00002{bottom:608.360000pt;}
.y7b_c00002{bottom:608.680000pt;}
.y5e3_c00002{bottom:609.000000pt;}
.yfde_c00002{bottom:609.320000pt;}
.yfdd_c00002{bottom:609.321600pt;}
.y15a_c00002{bottom:609.640000pt;}
.y4e0_c00002{bottom:609.960000pt;}
.yc71_c00002{bottom:610.600000pt;}
.y387_c00002{bottom:610.600640pt;}
.y753_c00002{bottom:610.920000pt;}
.yc6c_c00002{bottom:611.240000pt;}
.y9d7_c00002{bottom:611.560000pt;}
.y1180_c00002{bottom:611.560640pt;}
.y110a_c00002{bottom:611.561600pt;}
.y12e0_c00002{bottom:611.562240pt;}
.y1359_c00002{bottom:611.563200pt;}
.y1148_c00002{bottom:611.564160pt;}
.y3d1_c00002{bottom:611.565760pt;}
.ycac_c00002{bottom:611.880000pt;}
.ycd0_c00002{bottom:612.200000pt;}
.y9f_c00002{bottom:612.520000pt;}
.y786_c00002{bottom:612.840000pt;}
.ye03_c00002{bottom:613.156800pt;}
.y66d_c00002{bottom:613.160000pt;}
.y767_c00002{bottom:613.480000pt;}
.y1b_c00002{bottom:613.800000pt;}
.y1008_c00002{bottom:613.800640pt;}
.y11f4_c00002{bottom:613.804160pt;}
.yd18_c00002{bottom:614.120000pt;}
.ya53_c00002{bottom:614.400000pt;}
.ybbf_c00002{bottom:614.440000pt;}
.y41b_c00002{bottom:615.080000pt;}
.ydda_c00002{bottom:615.400000pt;}
.y4a0_c00002{bottom:615.720000pt;}
.y831_c00002{bottom:615.738560pt;}
.y5d4_c00002{bottom:616.040000pt;}
.ydaf_c00002{bottom:616.277120pt;}
.yddc_c00002{bottom:616.360000pt;}
.ya15_c00002{bottom:616.640000pt;}
.yb6c_c00002{bottom:616.680000pt;}
.y6f6_c00002{bottom:617.000000pt;}
.y596_c00002{bottom:617.320000pt;}
.y8d2_c00002{bottom:617.636800pt;}
.y10f_c00002{bottom:617.640000pt;}
.y7bb_c00002{bottom:617.960000pt;}
.y92b_c00002{bottom:618.280000pt;}
.yfb9_c00002{bottom:618.280640pt;}
.yf8a_c00002{bottom:618.281600pt;}
.y1092_c00002{bottom:618.282240pt;}
.y1443_c00002{bottom:618.284160pt;}
.y993_c00002{bottom:618.560000pt;}
.y6e1_c00002{bottom:618.599680pt;}
.y1c5_c00002{bottom:618.920000pt;}
.y949_c00002{bottom:619.200000pt;}
.yc05_c00002{bottom:619.240000pt;}
.yf26_c00002{bottom:619.242240pt;}
.y451_c00002{bottom:619.560000pt;}
.y325_c00002{bottom:619.876480pt;}
.y326_c00002{bottom:619.880000pt;}
.y267_c00002{bottom:620.200000pt;}
.y1366_c00002{bottom:620.519040pt;}
.ybb_c00002{bottom:620.520000pt;}
.y13b5_c00002{bottom:620.520640pt;}
.y112b_c00002{bottom:620.521600pt;}
.y128e_c00002{bottom:620.524160pt;}
.y72e_c00002{bottom:621.160000pt;}
.y72d_c00002{bottom:621.164160pt;}
.yd04_c00002{bottom:621.480000pt;}
.y2af_c00002{bottom:621.800000pt;}
.yd51_c00002{bottom:621.817920pt;}
.yb86_c00002{bottom:622.120000pt;}
.ye8f_c00002{bottom:622.122240pt;}
.y3a3_c00002{bottom:622.760000pt;}
.y1333_c00002{bottom:622.760640pt;}
.y141e_c00002{bottom:622.764160pt;}
.ye53_c00002{bottom:623.077120pt;}
.y8b4_c00002{bottom:623.078720pt;}
.y859_c00002{bottom:623.079360pt;}
.y294_c00002{bottom:623.080000pt;}
.y171_c00002{bottom:623.393600pt;}
.y506_c00002{bottom:623.400000pt;}
.y88b_c00002{bottom:623.720000pt;}
.y210_c00002{bottom:624.040000pt;}
.ybe0_c00002{bottom:624.360000pt;}
.ybf5_c00002{bottom:624.680000pt;}
.yf11_c00002{bottom:624.996800pt;}
.yc70_c00002{bottom:625.000000pt;}
.y10fb_c00002{bottom:625.001600pt;}
.yfdc_c00002{bottom:625.004160pt;}
.y578_c00002{bottom:625.320000pt;}
.y47_c00002{bottom:625.640000pt;}
.y1256_c00002{bottom:625.956480pt;}
.yac_c00002{bottom:625.960000pt;}
.y147c_c00002{bottom:625.964160pt;}
.y46d_c00002{bottom:626.280000pt;}
.y133_c00002{bottom:626.600000pt;}
.ye1c_c00002{bottom:626.912960pt;}
.yee8_c00002{bottom:626.916800pt;}
.yd7_c00002{bottom:626.920000pt;}
.y1a9_c00002{bottom:626.924160pt;}
.ya52_c00002{bottom:627.200000pt;}
.y10ab_c00002{bottom:627.239040pt;}
.y7a_c00002{bottom:627.240000pt;}
.yf58_c00002{bottom:627.240640pt;}
.y1034_c00002{bottom:627.241600pt;}
.y6c3_c00002{bottom:627.560000pt;}
.ycee_c00002{bottom:627.880000pt;}
.y69c_c00002{bottom:628.200000pt;}
.y13f6_c00002{bottom:628.204160pt;}
.y255_c00002{bottom:628.520000pt;}
.y616_c00002{bottom:628.840000pt;}
.ya14_c00002{bottom:629.440000pt;}
.y289_c00002{bottom:629.480000pt;}
.y12fa_c00002{bottom:629.481600pt;}
.yc29_c00002{bottom:630.120000pt;}
.ybbe_c00002{bottom:630.440000pt;}
.yc3c_c00002{bottom:630.760000pt;}
.y992_c00002{bottom:631.040000pt;}
.y356_c00002{bottom:631.080000pt;}
.y991_c00002{bottom:631.360000pt;}
.y645_c00002{bottom:631.400000pt;}
.y948_c00002{bottom:631.680000pt;}
.yc65_c00002{bottom:631.716160pt;}
.yd5c_c00002{bottom:632.040000pt;}
.y6bc_c00002{bottom:632.360000pt;}
.yb6d_c00002{bottom:632.680000pt;}
.y386_c00002{bottom:632.681600pt;}
.y5f4_c00002{bottom:633.319040pt;}
.y7ba_c00002{bottom:633.636480pt;}
.y1e0_c00002{bottom:633.640000pt;}
.y1147_c00002{bottom:633.956480pt;}
.y107a_c00002{bottom:633.958080pt;}
.yfb8_c00002{bottom:633.959040pt;}
.y92a_c00002{bottom:633.960000pt;}
.yf89_c00002{bottom:633.960640pt;}
.y3d0_c00002{bottom:633.961600pt;}
.y1237_c00002{bottom:633.962240pt;}
.y6e0_c00002{bottom:634.278080pt;}
.yc36_c00002{bottom:634.280000pt;}
.y824_c00002{bottom:634.846933pt;}
.y2ef_c00002{bottom:634.920000pt;}
.yf25_c00002{bottom:634.920640pt;}
.y323_c00002{bottom:635.238080pt;}
.y324_c00002{bottom:635.240000pt;}
.y6f5_c00002{bottom:635.560000pt;}
.y595_c00002{bottom:635.880000pt;}
.y1007_c00002{bottom:636.196480pt;}
.y112a_c00002{bottom:636.199040pt;}
.y752_c00002{bottom:636.200000pt;}
.y1438_c00002{bottom:636.200640pt;}
.y11f3_c00002{bottom:636.202240pt;}
.y2d3_c00002{bottom:636.520000pt;}
.ye9c_c00002{bottom:636.833920pt;}
.yce5_c00002{bottom:636.840000pt;}
.ydae_c00002{bottom:637.080000pt;}
.ye36_c00002{bottom:637.157120pt;}
.yd82_c00002{bottom:637.477120pt;}
.y309_c00002{bottom:637.480000pt;}
.y23c_c00002{bottom:637.800000pt;}
.yb4c_c00002{bottom:638.120000pt;}
.yd45_c00002{bottom:638.440000pt;}
.y8b3_c00002{bottom:638.757120pt;}
.y858_c00002{bottom:638.757760pt;}
.y1c4_c00002{bottom:638.760000pt;}
.yf3_c00002{bottom:639.080000pt;}
.y81a_c00002{bottom:639.400000pt;}
.yba1_c00002{bottom:639.720000pt;}
.yd03_c00002{bottom:640.040000pt;}
.ya51_c00002{bottom:640.320000pt;}
.y2ae_c00002{bottom:640.360000pt;}
.y141c_c00002{bottom:640.676480pt;}
.y10f9_c00002{bottom:640.679040pt;}
.y10fa_c00002{bottom:640.680000pt;}
.y5e2_c00002{bottom:641.000000pt;}
.y3a2_c00002{bottom:641.320000pt;}
.y1255_c00002{bottom:641.324160pt;}
.ya13_c00002{bottom:641.600000pt;}
.y159_c00002{bottom:641.640000pt;}
.y4df_c00002{bottom:641.960000pt;}
.yc85_c00002{bottom:642.280000pt;}
.y1365_c00002{bottom:642.600000pt;}
.y1364_c00002{bottom:642.602240pt;}
.y139b_c00002{bottom:642.604160pt;}
.y1033_c00002{bottom:642.916480pt;}
.yf57_c00002{bottom:642.919040pt;}
.y7f0_c00002{bottom:642.920000pt;}
.y128d_c00002{bottom:642.920640pt;}
.y72b_c00002{bottom:643.556160pt;}
.y72c_c00002{bottom:643.560000pt;}
.y577_c00002{bottom:643.880000pt;}
.ybfc_c00002{bottom:644.200000pt;}
.y43a_c00002{bottom:644.515520pt;}
.y46_c00002{bottom:644.520000pt;}
.y132_c00002{bottom:644.840000pt;}
.y1332_c00002{bottom:644.841600pt;}
.y13d2_c00002{bottom:645.156480pt;}
.y12f8_c00002{bottom:645.157120pt;}
.y1347_c00002{bottom:645.159040pt;}
.y12f9_c00002{bottom:645.160000pt;}
.yf10_c00002{bottom:645.480000pt;}
.y505_c00002{bottom:645.481600pt;}
.y1a_c00002{bottom:645.800000pt;}
.ybf4_c00002{bottom:646.120000pt;}
.ycdb_c00002{bottom:646.760000pt;}
.yd7e_c00002{bottom:647.077120pt;}
.y254_c00002{bottom:647.080000pt;}
.yfdb_c00002{bottom:647.396480pt;}
.y12e8_c00002{bottom:647.398080pt;}
.y4b2_c00002{bottom:647.400000pt;}
.ye1b_c00002{bottom:647.715840pt;}
.y8d1_c00002{bottom:647.718400pt;}
.yb6b_c00002{bottom:647.720000pt;}
.y5d3_c00002{bottom:648.040000pt;}
.y147b_c00002{bottom:648.356480pt;}
.y384_c00002{bottom:648.359040pt;}
.y385_c00002{bottom:648.360000pt;}
.y415_c00002{bottom:648.680000pt;}
.y7b9_c00002{bottom:649.000000pt;}
.yd6_c00002{bottom:649.320000pt;}
.y1212_c00002{bottom:649.320640pt;}
.y1079_c00002{bottom:649.321600pt;}
.yf88_c00002{bottom:649.324160pt;}
.y144f_c00002{bottom:649.324800pt;}
.y1146_c00002{bottom:649.325760pt;}
.y10e_c00002{bottom:649.640000pt;}
.y3cf_c00002{bottom:649.641600pt;}
.y6df_c00002{bottom:649.956480pt;}
.y20f_c00002{bottom:649.960000pt;}
.y947_c00002{bottom:650.560000pt;}
.y13f5_c00002{bottom:650.599040pt;}
.yd5b_c00002{bottom:650.600000pt;}
.y661_c00002{bottom:650.920000pt;}
.y913_c00002{bottom:651.240000pt;}
.ybbd_c00002{bottom:651.560000pt;}
.y137c_c00002{bottom:651.561600pt;}
.y1006_c00002{bottom:651.564160pt;}
.y11f2_c00002{bottom:651.565760pt;}
.y450_c00002{bottom:651.880000pt;}
.y823_c00002{bottom:652.182933pt;}
.y479_c00002{bottom:652.200000pt;}
.yba_c00002{bottom:652.520000pt;}
.ya50_c00002{bottom:652.800000pt;}
.ybbc_c00002{bottom:652.840000pt;}
.y321_c00002{bottom:653.158080pt;}
.y322_c00002{bottom:653.160000pt;}
.y8c3_c00002{bottom:653.480000pt;}
.y98b_c00002{bottom:653.760000pt;}
.y4a7_c00002{bottom:653.800000pt;}
.y830_c00002{bottom:653.817920pt;}
.y6f4_c00002{bottom:654.120000pt;}
.ya12_c00002{bottom:654.400000pt;}
.y8b2_c00002{bottom:654.435520pt;}
.y857_c00002{bottom:654.436160pt;}
.ye02_c00002{bottom:654.440000pt;}
.y594_c00002{bottom:654.760000pt;}
.y2d2_c00002{bottom:655.080000pt;}
.y5f2_c00002{bottom:655.398080pt;}
.y5f3_c00002{bottom:655.400000pt;}
.yfb7_c00002{bottom:656.040000pt;}
.y10e6_c00002{bottom:656.040640pt;}
.yfb6_c00002{bottom:656.041600pt;}
.y11ba_c00002{bottom:656.042240pt;}
.y14ad_c00002{bottom:656.043200pt;}
.y141b_c00002{bottom:656.044160pt;}
.y23b_c00002{bottom:656.360000pt;}
.yc64_c00002{bottom:656.672320pt;}
.y91f_c00002{bottom:656.680000pt;}
.yd9f_c00002{bottom:656.959360pt;}
.ye8e_c00002{bottom:656.999040pt;}
.y1c3_c00002{bottom:657.000000pt;}
.yf24_c00002{bottom:657.001600pt;}
.y342_c00002{bottom:657.320000pt;}
.ye9b_c00002{bottom:657.636800pt;}
.y18d_c00002{bottom:657.640000pt;}
.y308_c00002{bottom:657.960000pt;}
.ydad_c00002{bottom:658.202560pt;}
.ye64_c00002{bottom:658.256640pt;}
.y46c_c00002{bottom:658.280000pt;}
.y12c1_c00002{bottom:658.280640pt;}
.y12ab_c00002{bottom:658.281600pt;}
.y1129_c00002{bottom:658.283200pt;}
.y1032_c00002{bottom:658.284160pt;}
.y2ad_c00002{bottom:658.920000pt;}
.y644_c00002{bottom:659.240000pt;}
.ycf6_c00002{bottom:659.560000pt;}
.y3a1_c00002{bottom:659.880000pt;}
.yd50_c00002{bottom:660.214080pt;}
.y1331_c00002{bottom:660.519040pt;}
.y158_c00002{bottom:660.520000pt;}
.y12f7_c00002{bottom:660.520640pt;}
.y13d1_c00002{bottom:660.524160pt;}
.y503_c00002{bottom:661.156480pt;}
.y504_c00002{bottom:661.160000pt;}
.y288_c00002{bottom:661.480000pt;}
.ybdf_c00002{bottom:661.800000pt;}
.ybf3_c00002{bottom:662.440000pt;}
.yfda_c00002{bottom:662.760000pt;}
.y10f8_c00002{bottom:662.761600pt;}
.yfd9_c00002{bottom:662.764160pt;}
.y35e_c00002{bottom:663.080000pt;}
.y131_c00002{bottom:663.400000pt;}
.ycab_c00002{bottom:663.720000pt;}
.y1254_c00002{bottom:663.721600pt;}
.y147a_c00002{bottom:663.724160pt;}
.yedf_c00002{bottom:664.040000pt;}
.y6bb_c00002{bottom:664.360000pt;}
.y79_c00002{bottom:664.680000pt;}
.ye52_c00002{bottom:664.984000pt;}
.y11c7_c00002{bottom:664.998080pt;}
.y11cb_c00002{bottom:664.999040pt;}
.yf56_c00002{bottom:665.000000pt;}
.y1078_c00002{bottom:665.000640pt;}
.yf55_c00002{bottom:665.001600pt;}
.y10aa_c00002{bottom:665.004160pt;}
.y118e_c00002{bottom:665.004800pt;}
.y3ce_c00002{bottom:665.319040pt;}
.y6de_c00002{bottom:665.320000pt;}
.ya4f_c00002{bottom:665.600000pt;}
.y253_c00002{bottom:665.640000pt;}
.y624_c00002{bottom:665.960000pt;}
.y98a_c00002{bottom:666.240000pt;}
.y72a_c00002{bottom:666.280000pt;}
.y990_c00002{bottom:666.560000pt;}
.y1df_c00002{bottom:666.600000pt;}
.ya11_c00002{bottom:666.880000pt;}
.y2ee_c00002{bottom:666.920000pt;}
.y1346_c00002{bottom:667.240000pt;}
.y1345_c00002{bottom:667.241600pt;}
.y137b_c00002{bottom:667.244160pt;}
.y77a_c00002{bottom:667.560000pt;}
.y763_c00002{bottom:667.880000pt;}
.yf0f_c00002{bottom:668.194240pt;}
.ybbb_c00002{bottom:668.200000pt;}
.y10d_c00002{bottom:668.520000pt;}
.yd3b_c00002{bottom:668.522240pt;}
.y439_c00002{bottom:668.840000pt;}
.y946_c00002{bottom:669.120000pt;}
.y3f1_c00002{bottom:669.160000pt;}
.y66c_c00002{bottom:669.480000pt;}
.y822_c00002{bottom:669.518933pt;}
.y8b1_c00002{bottom:669.799040pt;}
.y856_c00002{bottom:669.799680pt;}
.y70f_c00002{bottom:669.800000pt;}
.yb4b_c00002{bottom:670.120000pt;}
.ye1a_c00002{bottom:670.436800pt;}
.y383_c00002{bottom:670.440000pt;}
.y382_c00002{bottom:670.441600pt;}
.ye8d_c00002{bottom:670.757120pt;}
.y19_c00002{bottom:670.758080pt;}
.y633_c00002{bottom:670.760000pt;}
.y320_c00002{bottom:671.079040pt;}
.yf2_c00002{bottom:671.080000pt;}
.y69b_c00002{bottom:671.400000pt;}
.y1211_c00002{bottom:671.716480pt;}
.yfb5_c00002{bottom:671.719040pt;}
.y117f_c00002{bottom:671.719680pt;}
.yd5_c00002{bottom:671.720000pt;}
.y11b9_c00002{bottom:671.720640pt;}
.y1145_c00002{bottom:671.721600pt;}
.yf87_c00002{bottom:671.722240pt;}
.ycc3_c00002{bottom:672.040000pt;}
.y4a6_c00002{bottom:672.360000pt;}
.y1a8_c00002{bottom:672.680000pt;}
.yf23_c00002{bottom:672.680640pt;}
.y13f4_c00002{bottom:672.683840pt;}
.y5e1_c00002{bottom:673.000000pt;}
.y5f1_c00002{bottom:673.320000pt;}
.y5f0_c00002{bottom:673.326080pt;}
.y2d1_c00002{bottom:673.640000pt;}
.y750_c00002{bottom:673.956480pt;}
.y1283_c00002{bottom:673.959040pt;}
.y751_c00002{bottom:673.960000pt;}
.y1005_c00002{bottom:673.960640pt;}
.y1128_c00002{bottom:673.961600pt;}
.y7ca_c00002{bottom:674.600000pt;}
.y23a_c00002{bottom:674.920000pt;}
.ye01_c00002{bottom:675.235840pt;}
.yc83_c00002{bottom:675.240000pt;}
.y400_c00002{bottom:675.880000pt;}
.y80b_c00002{bottom:676.200000pt;}
.y45_c00002{bottom:676.520000pt;}
.y502_c00002{bottom:676.524667pt;}
.y1c2_c00002{bottom:676.840000pt;}
.yc93_c00002{bottom:677.160000pt;}
.yd02_c00002{bottom:677.480000pt;}
.yd9e_c00002{bottom:677.762240pt;}
.y20e_c00002{bottom:677.800000pt;}
.ye9a_c00002{bottom:678.117120pt;}
.y643_c00002{bottom:678.120000pt;}
.y989_c00002{bottom:678.400000pt;}
.y1442_c00002{bottom:678.437120pt;}
.y10f7_c00002{bottom:678.439040pt;}
.y6c2_c00002{bottom:678.440000pt;}
.y12e7_c00002{bottom:678.440640pt;}
.ye63_c00002{bottom:678.739840pt;}
.y3a0_c00002{bottom:678.760000pt;}
.ydac_c00002{bottom:679.005440pt;}
.y98f_c00002{bottom:679.040000pt;}
.y157_c00002{bottom:679.080000pt;}
.ya10_c00002{bottom:679.360000pt;}
.y1253_c00002{bottom:679.399040pt;}
.y48e_c00002{bottom:679.400000pt;}
.yb6a_c00002{bottom:679.720000pt;}
.yeb7_c00002{bottom:680.036800pt;}
.y5b2_c00002{bottom:680.040000pt;}
.y287_c00002{bottom:680.360000pt;}
.y1031_c00002{bottom:680.676480pt;}
.yf53_c00002{bottom:680.679040pt;}
.yf54_c00002{bottom:680.680000pt;}
.y128c_c00002{bottom:680.680640pt;}
.yced_c00002{bottom:681.000000pt;}
.y170_c00002{bottom:681.320000pt;}
.y16f_c00002{bottom:681.321600pt;}
.y355_c00002{bottom:681.640000pt;}
.ybca_c00002{bottom:682.600000pt;}
.y12f6_c00002{bottom:682.916480pt;}
.y1344_c00002{bottom:682.919040pt;}
.y6ba_c00002{bottom:682.920000pt;}
.y78_c00002{bottom:683.240000pt;}
.y44f_c00002{bottom:683.880000pt;}
.y7b8_c00002{bottom:684.200000pt;}
.yb9_c00002{bottom:684.520000pt;}
.y71a_c00002{bottom:684.840000pt;}
.yede_c00002{bottom:684.842240pt;}
.yfd8_c00002{bottom:685.156480pt;}
.yb85_c00002{bottom:685.160000pt;}
.ye51_c00002{bottom:685.467200pt;}
.y8b0_c00002{bottom:685.477440pt;}
.y855_c00002{bottom:685.478080pt;}
.yb21_c00002{bottom:685.480000pt;}
.y766_c00002{bottom:685.482560pt;}
.y380_c00002{bottom:686.116480pt;}
.y5d2_c00002{bottom:686.119867pt;}
.y381_c00002{bottom:686.120000pt;}
.y18_c00002{bottom:686.436480pt;}
.y593_c00002{bottom:686.760000pt;}
.y10c_c00002{bottom:687.080000pt;}
.y11a1_c00002{bottom:687.081600pt;}
.y1210_c00002{bottom:687.084160pt;}
.y10c3_c00002{bottom:687.396480pt;}
.y117e_c00002{bottom:687.398080pt;}
.y12cb_c00002{bottom:687.399040pt;}
.y3cd_c00002{bottom:687.400000pt;}
.yf86_c00002{bottom:687.400640pt;}
.y6dc_c00002{bottom:687.716480pt;}
.y6dd_c00002{bottom:687.720000pt;}
.y945_c00002{bottom:688.000000pt;}
.ybba_c00002{bottom:688.040000pt;}
.yce4_c00002{bottom:688.360000pt;}
.yee7_c00002{bottom:688.680000pt;}
.yceb_c00002{bottom:689.000000pt;}
.yf09_c00002{bottom:689.315200pt;}
.y4de_c00002{bottom:689.316347pt;}
.y341_c00002{bottom:689.320000pt;}
.y13f3_c00002{bottom:689.324160pt;}
.y137a_c00002{bottom:689.636480pt;}
.y1127_c00002{bottom:689.639040pt;}
.y18c_c00002{bottom:689.640000pt;}
.yca5_c00002{bottom:689.960000pt;}
.y46b_c00002{bottom:690.280000pt;}
.y729_c00002{bottom:690.600000pt;}
.y988_c00002{bottom:690.880000pt;}
.y4a5_c00002{bottom:690.920000pt;}
.y5ef_c00002{bottom:690.924160pt;}
.y98e_c00002{bottom:691.200000pt;}
.ycf5_c00002{bottom:691.560000pt;}
.ye8c_c00002{bottom:691.562240pt;}
.ya0f_c00002{bottom:691.840000pt;}
.y2ed_c00002{bottom:691.880000pt;}
.yd23_c00002{bottom:692.200000pt;}
.y501_c00002{bottom:692.203067pt;}
.y82f_c00002{bottom:692.214080pt;}
.y1ec_c00002{bottom:692.520000pt;}
.y31f_c00002{bottom:693.160000pt;}
.y31e_c00002{bottom:693.161600pt;}
.y438_c00002{bottom:693.480000pt;}
.y239_c00002{bottom:693.800000pt;}
.yfb4_c00002{bottom:693.800640pt;}
.y1091_c00002{bottom:693.801600pt;}
.y105e_c00002{bottom:693.804160pt;}
.y7c8_c00002{bottom:694.119867pt;}
.y7c9_c00002{bottom:694.120000pt;}
.ybf2_c00002{bottom:694.440000pt;}
.y3ff_c00002{bottom:694.760000pt;}
.yf22_c00002{bottom:694.761600pt;}
.yc63_c00002{bottom:695.068480pt;}
.y44_c00002{bottom:695.080000pt;}
.y130_c00002{bottom:695.400000pt;}
.y1030_c00002{bottom:696.040000pt;}
.y11e6_c00002{bottom:696.040640pt;}
.y1004_c00002{bottom:696.041600pt;}
.y102f_c00002{bottom:696.044160pt;}
.y2ac_c00002{bottom:696.360000pt;}
.y16d_c00002{bottom:696.995840pt;}
.y16e_c00002{bottom:697.000000pt;}
.y825_c00002{bottom:697.236933pt;}
.y39f_c00002{bottom:697.320000pt;}
.ye00_c00002{bottom:697.637120pt;}
.yd4_c00002{bottom:697.640000pt;}
.yd9d_c00002{bottom:698.245440pt;}
.yc53_c00002{bottom:698.280000pt;}
.y12f5_c00002{bottom:698.284027pt;}
.yd4f_c00002{bottom:698.293440pt;}
.ydd9_c00002{bottom:698.600000pt;}
.y929_c00002{bottom:698.920000pt;}
.yd01_c00002{bottom:699.240000pt;}
.ydab_c00002{bottom:699.488640pt;}
.ye62_c00002{bottom:699.542720pt;}
.y779_c00002{bottom:699.560000pt;}
.y4c0_c00002{bottom:699.880000pt;}
.yeb9_c00002{bottom:700.517120pt;}
.y1de_c00002{bottom:700.520000pt;}
.yfd7_c00002{bottom:700.520640pt;}
.y10f6_c00002{bottom:700.521600pt;}
.y3f0_c00002{bottom:700.840000pt;}
.y8af_c00002{bottom:701.155840pt;}
.y854_c00002{bottom:701.156480pt;}
.y1252_c00002{bottom:701.477120pt;}
.y37f_c00002{bottom:701.480000pt;}
.y37e_c00002{bottom:701.481600pt;}
.y1479_c00002{bottom:701.484160pt;}
.y17_c00002{bottom:701.800000pt;}
.y602_c00002{bottom:702.120000pt;}
.yba0_c00002{bottom:702.440000pt;}
.yf52_c00002{bottom:702.760000pt;}
.y1157_c00002{bottom:702.760640pt;}
.yf51_c00002{bottom:702.761600pt;}
.y1077_c00002{bottom:702.762240pt;}
.yf85_c00002{bottom:702.764160pt;}
.y20c_c00002{bottom:703.079867pt;}
.yf1_c00002{bottom:703.080000pt;}
.y6db_c00002{bottom:703.081600pt;}
.y987_c00002{bottom:703.360000pt;}
.y819_c00002{bottom:703.400000pt;}
.y98d_c00002{bottom:703.680000pt;}
.ybb9_c00002{bottom:703.720000pt;}
.y6c1_c00002{bottom:704.040000pt;}
.y4dd_c00002{bottom:704.679867pt;}
.y1330_c00002{bottom:704.999040pt;}
.y5e0_c00002{bottom:705.000000pt;}
.y74f_c00002{bottom:705.001467pt;}
.y1379_c00002{bottom:705.004160pt;}
.y576_c00002{bottom:705.320000pt;}
.y10b_c00002{bottom:705.640000pt;}
.ye8b_c00002{bottom:705.644160pt;}
.y632_c00002{bottom:705.960000pt;}
.ye50_c00002{bottom:706.270080pt;}
.yca3_c00002{bottom:706.600000pt;}
.y944_c00002{bottom:706.880000pt;}
.y9e6_c00002{bottom:706.920000pt;}
.yd6d_c00002{bottom:707.230400pt;}
.y84f_c00002{bottom:707.240000pt;}
.yc84_c00002{bottom:707.560000pt;}
.y340_c00002{bottom:707.880000pt;}
.y5b1_c00002{bottom:708.200000pt;}
.y46a_c00002{bottom:708.519680pt;}
.y9e_c00002{bottom:708.520000pt;}
.y31c_c00002{bottom:708.839040pt;}
.y31d_c00002{bottom:708.840000pt;}
.yd7d_c00002{bottom:709.160000pt;}
.y7b6_c00002{bottom:709.475840pt;}
.yfb3_c00002{bottom:709.479040pt;}
.y7b7_c00002{bottom:709.480000pt;}
.y120f_c00002{bottom:709.480640pt;}
.y1144_c00002{bottom:709.481600pt;}
.y1090_c00002{bottom:709.482240pt;}
.y20d_c00002{bottom:709.800000pt;}
.y3cc_c00002{bottom:710.120000pt;}
.yf21_c00002{bottom:710.439040pt;}
.ycaa_c00002{bottom:710.440000pt;}
.yd22_c00002{bottom:710.760000pt;}
.y156_c00002{bottom:711.080000pt;}
.y1126_c00002{bottom:711.719040pt;}
.yc92_c00002{bottom:711.720000pt;}
.y1274_c00002{bottom:711.720640pt;}
.y149a_c00002{bottom:711.721600pt;}
.y286_c00002{bottom:712.360000pt;}
.y7c7_c00002{bottom:712.679867pt;}
.y7c6_c00002{bottom:712.680000pt;}
.y728_c00002{bottom:713.000000pt;}
.y3fe_c00002{bottom:713.320000pt;}
.y43_c00002{bottom:713.640000pt;}
.y765_c00002{bottom:713.956800pt;}
.y16c_c00002{bottom:713.960000pt;}
.y16b_c00002{bottom:713.965760pt;}
.y12f_c00002{bottom:714.280000pt;}
.y2ec_c00002{bottom:714.281600pt;}
.y500_c00002{bottom:714.284027pt;}
.y2ab_c00002{bottom:714.920000pt;}
.y986_c00002{bottom:715.840000pt;}
.y437_c00002{bottom:715.880000pt;}
.y98c_c00002{bottom:716.160000pt;}
.y1172_c00002{bottom:716.196480pt;}
.y105c_c00002{bottom:716.198080pt;}
.yfd6_c00002{bottom:716.199040pt;}
.y105d_c00002{bottom:716.200000pt;}
.y10f5_c00002{bottom:716.200640pt;}
.y8ae_c00002{bottom:716.519360pt;}
.yb8_c00002{bottom:716.520000pt;}
.yb84_c00002{bottom:716.840000pt;}
.y37c_c00002{bottom:717.155200pt;}
.y1251_c00002{bottom:717.155520pt;}
.y37d_c00002{bottom:717.160000pt;}
.yd0d_c00002{bottom:717.480000pt;}
.y5d1_c00002{bottom:717.799867pt;}
.y88a_c00002{bottom:717.800000pt;}
.ye3b_c00002{bottom:718.120000pt;}
.ya0e_c00002{bottom:718.400000pt;}
.y11c6_c00002{bottom:718.436480pt;}
.y1156_c00002{bottom:718.439040pt;}
.ydff_c00002{bottom:718.440000pt;}
.yf50_c00002{bottom:718.440640pt;}
.y6da_c00002{bottom:718.760000pt;}
.y6d9_c00002{bottom:718.761600pt;}
.yd9c_c00002{bottom:719.048320pt;}
.y428_c00002{bottom:719.080000pt;}
.yedd_c00002{bottom:719.400000pt;}
.y3ef_c00002{bottom:719.720000pt;}
.ye8a_c00002{bottom:719.721920pt;}
.ycc2_c00002{bottom:720.040000pt;}
.ydaa_c00002{bottom:720.291520pt;}
.ye61_c00002{bottom:720.345600pt;}
.y70e_c00002{bottom:720.360000pt;}
.y12f4_c00002{bottom:720.676480pt;}
.y141d_c00002{bottom:720.679040pt;}
.y74e_c00002{bottom:720.679867pt;}
.y66b_c00002{bottom:720.680000pt;}
.ybf1_c00002{bottom:721.000000pt;}
.yeb6_c00002{bottom:721.317120pt;}
.y559_c00002{bottom:721.320000pt;}
.y18b_c00002{bottom:721.640000pt;}
.y8c2_c00002{bottom:721.960000pt;}
.y642_c00002{bottom:722.280000pt;}
.y4a4_c00002{bottom:722.920000pt;}
.yd3_c00002{bottom:723.240000pt;}
.y6f3_c00002{bottom:723.560000pt;}
.y1478_c00002{bottom:723.876480pt;}
.y575_c00002{bottom:723.880000pt;}
.y469_c00002{bottom:724.198080pt;}
.y16_c00002{bottom:724.200000pt;}
.y1eb_c00002{bottom:724.520000pt;}
.y11a0_c00002{bottom:724.841600pt;}
.y120e_c00002{bottom:724.844160pt;}
.yf84_c00002{bottom:725.156480pt;}
.y10a9_c00002{bottom:725.158080pt;}
.y1143_c00002{bottom:725.159040pt;}
.yd5a_c00002{bottom:725.160000pt;}
.y108f_c00002{bottom:725.160640pt;}
.y238_c00002{bottom:725.800000pt;}
.y943_c00002{bottom:726.080000pt;}
.ybb7_c00002{bottom:726.120000pt;}
.y7b5_c00002{bottom:726.440000pt;}
.y7b4_c00002{bottom:726.443840pt;}
.ye4f_c00002{bottom:726.753280pt;}
.y33f_c00002{bottom:726.760000pt;}
.y459_c00002{bottom:727.080000pt;}
.y132f_c00002{bottom:727.084160pt;}
.y1378_c00002{bottom:727.396480pt;}
.y1273_c00002{bottom:727.399040pt;}
.y785_c00002{bottom:727.400000pt;}
.y985_c00002{bottom:728.320000pt;}
.y68e_c00002{bottom:728.360000pt;}
.y984_c00002{bottom:728.640000pt;}
.y20b_c00002{bottom:728.679867pt;}
.y20a_c00002{bottom:728.680000pt;}
.yd17_c00002{bottom:729.000000pt;}
.y39e_c00002{bottom:729.320000pt;}
.y2d0_c00002{bottom:729.640000pt;}
.y2eb_c00002{bottom:729.955840pt;}
.y1a7_c00002{bottom:729.960000pt;}
.yc91_c00002{bottom:730.280000pt;}
.y82e_c00002{bottom:730.293440pt;}
.ybc9_c00002{bottom:730.600000pt;}
.ya0d_c00002{bottom:730.880000pt;}
.y285_c00002{bottom:730.920000pt;}
.y7c5_c00002{bottom:731.240000pt;}
.y778_c00002{bottom:731.560000pt;}
.yfb2_c00002{bottom:731.561600pt;}
.y10f4_c00002{bottom:731.564160pt;}
.y1171_c00002{bottom:731.565760pt;}
.y3fd_c00002{bottom:731.880000pt;}
.y8ad_c00002{bottom:732.197760pt;}
.ye19_c00002{bottom:732.502587pt;}
.y1c1_c00002{bottom:732.520000pt;}
.yf20_c00002{bottom:732.527040pt;}
.yc62_c00002{bottom:732.831040pt;}
.ycec_c00002{bottom:732.840000pt;}
.y5b0_c00002{bottom:733.160000pt;}
.yb54_c00002{bottom:733.480000pt;}
.y77_c00002{bottom:733.800000pt;}
.y139a_c00002{bottom:733.800640pt;}
.y1003_c00002{bottom:733.801600pt;}
.yf4f_c00002{bottom:733.804160pt;}
.y1125_c00002{bottom:733.805760pt;}
.y6d7_c00002{bottom:734.436480pt;}
.y6d8_c00002{bottom:734.440000pt;}
.yb7_c00002{bottom:735.080000pt;}
.y5ee_c00002{bottom:735.400000pt;}
.y3ca_c00002{bottom:735.720000pt;}
.yd0c_c00002{bottom:736.040000pt;}
.y12f3_c00002{bottom:736.044160pt;}
.yf08_c00002{bottom:736.353600pt;}
.yb20_c00002{bottom:736.360000pt;}
.yd4e_c00002{bottom:736.372800pt;}
.y4ff_c00002{bottom:736.679867pt;}
.y4fe_c00002{bottom:736.684160pt;}
.y5df_c00002{bottom:737.000000pt;}
.yccf_c00002{bottom:737.320000pt;}
.y10a_c00002{bottom:737.640000pt;}
.y3ee_c00002{bottom:738.280000pt;}
.yfd5_c00002{bottom:738.281600pt;}
.yd6c_c00002{bottom:738.593600pt;}
.ye3a_c00002{bottom:738.600000pt;}
.yd00_c00002{bottom:738.920000pt;}
.y37b_c00002{bottom:739.236160pt;}
.y1250_c00002{bottom:739.236480pt;}
.y70d_c00002{bottom:739.240000pt;}
.y1477_c00002{bottom:739.244160pt;}
.y15_c00002{bottom:739.560000pt;}
.y14_c00002{bottom:739.561600pt;}
.yd9b_c00002{bottom:739.851200pt;}
.y19b_c00002{bottom:739.880000pt;}
.y8c1_c00002{bottom:740.200000pt;}
.y119f_c00002{bottom:740.519040pt;}
.y9d_c00002{bottom:740.520000pt;}
.y10c2_c00002{bottom:740.520640pt;}
.y102e_c00002{bottom:740.521600pt;}
.yf83_c00002{bottom:740.524160pt;}
.ye60_c00002{bottom:740.828800pt;}
.y1d8_c00002{bottom:740.840000pt;}
.yda9_c00002{bottom:741.094400pt;}
.y19e_c00002{bottom:741.160000pt;}
.yca9_c00002{bottom:741.480000pt;}
.y983_c00002{bottom:741.760000pt;}
.y658_c00002{bottom:741.800000pt;}
.y6f2_c00002{bottom:742.120000pt;}
.yeb8_c00002{bottom:742.122880pt;}
.y3cb_c00002{bottom:742.440000pt;}
.y574_c00002{bottom:742.760000pt;}
.y13d0_c00002{bottom:742.760640pt;}
.y16a_c00002{bottom:742.764160pt;}
.y1377_c00002{bottom:742.764800pt;}
.y155_c00002{bottom:743.080000pt;}
.y7b3_c00002{bottom:743.081280pt;}
.y928_c00002{bottom:744.040000pt;}
.ycda_c00002{bottom:744.679867pt;}
.yc54_c00002{bottom:745.000000pt;}
.y942_c00002{bottom:745.280000pt;}
.y33e_c00002{bottom:745.320000pt;}
.y42_c00002{bottom:745.640000pt;}
.y12e_c00002{bottom:746.280000pt;}
.y2e9_c00002{bottom:746.916480pt;}
.y2ea_c00002{bottom:746.920000pt;}
.y120d_c00002{bottom:747.236480pt;}
.y105b_c00002{bottom:747.238080pt;}
.yfb1_c00002{bottom:747.240000pt;}
.y129b_c00002{bottom:747.240640pt;}
.y1142_c00002{bottom:747.241600pt;}
.yfb0_c00002{bottom:747.244160pt;}
.ye4e_c00002{bottom:747.556160pt;}
.yd16_c00002{bottom:747.560000pt;}
.y8ac_c00002{bottom:747.876160pt;}
.y39d_c00002{bottom:747.880000pt;}
.yd21_c00002{bottom:748.199867pt;}
.y641_c00002{bottom:748.200000pt;}
.yf1f_c00002{bottom:748.205440pt;}
.y2cf_c00002{bottom:748.520000pt;}
.yd2_c00002{bottom:748.840000pt;}
.y132e_c00002{bottom:749.476480pt;}
.y284_c00002{bottom:749.480000pt;}
.y12aa_c00002{bottom:749.480640pt;}
.y1360_c00002{bottom:749.481600pt;}
.y1124_c00002{bottom:749.484160pt;}
.y6d6_c00002{bottom:749.800000pt;}
.y6d5_c00002{bottom:749.804160pt;}
.y3fc_c00002{bottom:750.760000pt;}
.yee6_c00002{bottom:750.762240pt;}
.y1dd_c00002{bottom:751.080000pt;}
.y7c4_c00002{bottom:751.400000pt;}
.ycc1_c00002{bottom:751.720000pt;}
.y80a_c00002{bottom:752.040000pt;}
.y660_c00002{bottom:752.360000pt;}
.y784_c00002{bottom:752.676480pt;}
.yb9f_c00002{bottom:752.679867pt;}
.ybf0_c00002{bottom:753.000000pt;}
.y31b_c00002{bottom:753.320000pt;}
.ye18_c00002{bottom:753.625147pt;}
.yb6_c00002{bottom:753.640000pt;}
.yfd4_c00002{bottom:753.959040pt;}
.yca2_c00002{bottom:753.960000pt;}
.y145b_c00002{bottom:753.960640pt;}
.y10f3_c00002{bottom:753.961600pt;}
.y13c1_c00002{bottom:753.962240pt;}
.y982_c00002{bottom:754.240000pt;}
.ye89_c00002{bottom:754.271227pt;}
.y818_c00002{bottom:754.280000pt;}
.y124f_c00002{bottom:754.599040pt;}
.y209_c00002{bottom:754.600000pt;}
.y6c0_c00002{bottom:754.920000pt;}
.y5d0_c00002{bottom:755.239867pt;}
.y13_c00002{bottom:755.240000pt;}
.y12_c00002{bottom:755.241600pt;}
.yc82_c00002{bottom:755.560000pt;}
.y4a3_c00002{bottom:755.880000pt;}
.y1399_c00002{bottom:756.196480pt;}
.yf4e_c00002{bottom:756.199040pt;}
.yb1f_c00002{bottom:756.200000pt;}
.y102d_c00002{bottom:756.200640pt;}
.y11c5_c00002{bottom:756.201600pt;}
.y1ea_c00002{bottom:756.520000pt;}
.yf03_c00002{bottom:756.836800pt;}
.y3ed_c00002{bottom:756.840000pt;}
.ya0c_c00002{bottom:757.120000pt;}
.ybb8_c00002{bottom:757.160000pt;}
.ya0a_c00002{bottom:757.440000pt;}
.ybb6_c00002{bottom:757.480000pt;}
.y237_c00002{bottom:757.800000pt;}
.y5ed_c00002{bottom:757.804160pt;}
.y12f1_c00002{bottom:758.439040pt;}
.y12f2_c00002{bottom:758.440000pt;}
.y558_c00002{bottom:758.760000pt;}
.y4fd_c00002{bottom:759.076160pt;}
.y3c1_c00002{bottom:759.080000pt;}
.yf07_c00002{bottom:759.394240pt;}
.ye39_c00002{bottom:759.396800pt;}
.y86f_c00002{bottom:759.400000pt;}
.ydfe_c00002{bottom:759.720000pt;}
.yd9a_c00002{bottom:760.334400pt;}
.y8c0_c00002{bottom:760.360000pt;}
.ycd9_c00002{bottom:760.679867pt;}
.y6f1_c00002{bottom:761.000000pt;}
.ye35_c00002{bottom:761.317120pt;}
.y3c9_c00002{bottom:761.320000pt;}
.yda8_c00002{bottom:761.577600pt;}
.ye5f_c00002{bottom:761.631680pt;}
.y272_c00002{bottom:761.640000pt;}
.y1476_c00002{bottom:761.641600pt;}
.yd81_c00002{bottom:761.956800pt;}
.y37a_c00002{bottom:761.960000pt;}
.y379_c00002{bottom:761.966080pt;}
.y2e8_c00002{bottom:762.280000pt;}
.y119e_c00002{bottom:762.600000pt;}
.y120c_c00002{bottom:762.600640pt;}
.y119d_c00002{bottom:762.604160pt;}
.y105a_c00002{bottom:762.916480pt;}
.y1354_c00002{bottom:762.918080pt;}
.y1109_c00002{bottom:762.919040pt;}
.yd15_c00002{bottom:762.920000pt;}
.y122b_c00002{bottom:762.920507pt;}
.y1141_c00002{bottom:762.921280pt;}
.y8ab_c00002{bottom:763.239680pt;}
.yeb5_c00002{bottom:763.240000pt;}
.y777_c00002{bottom:763.560000pt;}
.y941_c00002{bottom:763.839867pt;}
.yb17_c00002{bottom:763.880000pt;}
.ybc8_c00002{bottom:764.200000pt;}
.y41_c00002{bottom:764.520000pt;}
.y821_c00002{bottom:764.556000pt;}
.y12d_c00002{bottom:764.840000pt;}
.y132d_c00002{bottom:764.844160pt;}
.y74d_c00002{bottom:765.156160pt;}
.y13cf_c00002{bottom:765.156480pt;}
.y168_c00002{bottom:765.159040pt;}
.y169_c00002{bottom:765.160000pt;}
.y1376_c00002{bottom:765.160640pt;}
.y2aa_c00002{bottom:765.800000pt;}
.y7b2_c00002{bottom:766.118720pt;}
.y76_c00002{bottom:766.120000pt;}
.yc04_c00002{bottom:766.440000pt;}
.y981_c00002{bottom:766.720000pt;}
.yd20_c00002{bottom:766.759867pt;}
.y39c_c00002{bottom:766.760000pt;}
.y27b_c00002{bottom:767.080000pt;}
.y783_c00002{bottom:768.040000pt;}
.ye4d_c00002{bottom:768.359040pt;}
.y283_c00002{bottom:768.360000pt;}
.y847_c00002{bottom:768.363840pt;}
.y82d_c00002{bottom:768.372800pt;}
.y5de_c00002{bottom:769.000000pt;}
.ya0b_c00002{bottom:769.280000pt;}
.y3fb_c00002{bottom:769.320000pt;}
.ya09_c00002{bottom:769.600000pt;}
.yfaf_c00002{bottom:769.636480pt;}
.y10e5_c00002{bottom:769.637120pt;}
.y109_c00002{bottom:769.640000pt;}
.y10f2_c00002{bottom:769.640640pt;}
.yca4_c00002{bottom:769.960000pt;}
.yd6b_c00002{bottom:770.273600pt;}
.y91e_c00002{bottom:770.280000pt;}
.yf1e_c00002{bottom:770.286400pt;}
.yc61_c00002{bottom:770.593600pt;}
.y10_c00002{bottom:770.916480pt;}
.y11_c00002{bottom:770.920000pt;}
.y70c_c00002{bottom:771.240000pt;}
.yb1e_c00002{bottom:771.560000pt;}
.y1363_c00002{bottom:771.564160pt;}
.y1398_c00002{bottom:771.565760pt;}
.y1002_c00002{bottom:771.876480pt;}
.y102c_c00002{bottom:771.879040pt;}
.yc15_c00002{bottom:771.880000pt;}
.y11c4_c00002{bottom:771.880640pt;}
.y6d4_c00002{bottom:772.200000pt;}
.y9c_c00002{bottom:772.520000pt;}
.y817_c00002{bottom:772.840000pt;}
.yd7c_c00002{bottom:773.157120pt;}
.yc81_c00002{bottom:773.160000pt;}
.y640_c00002{bottom:773.480000pt;}
.y5cf_c00002{bottom:773.799867pt;}
.y4b1_c00002{bottom:773.800000pt;}
.yce3_c00002{bottom:774.120000pt;}
.ye17_c00002{bottom:774.428027pt;}
.y4dc_c00002{bottom:774.760000pt;}
.yd4d_c00002{bottom:774.768960pt;}
.ye88_c00002{bottom:775.074107pt;}
.y154_c00002{bottom:775.080000pt;}
.ycd5_c00002{bottom:775.400000pt;}
.y3ec_c00002{bottom:775.720000pt;}
.yd59_c00002{bottom:776.040000pt;}
.y145a_c00002{bottom:776.041600pt;}
.yfd3_c00002{bottom:776.044160pt;}
.y77f_c00002{bottom:776.360000pt;}
.yc52_c00002{bottom:776.679867pt;}
.y66a_c00002{bottom:776.680000pt;}
.yc51_c00002{bottom:777.000000pt;}
.y1475_c00002{bottom:777.319040pt;}
.y89f_c00002{bottom:777.320000pt;}
.y468_c00002{bottom:777.636480pt;}
.y35d_c00002{bottom:777.640000pt;}
.y8d0_c00002{bottom:777.960000pt;}
.y120b_c00002{bottom:778.279040pt;}
.yc35_c00002{bottom:778.280000pt;}
.y10c1_c00002{bottom:778.280640pt;}
.yf4d_c00002{bottom:778.281600pt;}
.y12df_c00002{bottom:778.282240pt;}
.yf82_c00002{bottom:778.284027pt;}
.y8aa_c00002{bottom:778.918080pt;}
.yb83_c00002{bottom:779.240000pt;}
.y378_c00002{bottom:779.560000pt;}
.y208_c00002{bottom:779.880000pt;}
.yf06_c00002{bottom:780.197120pt;}
.y5ec_c00002{bottom:780.200000pt;}
.yd1_c00002{bottom:780.520000pt;}
.y12f0_c00002{bottom:780.524160pt;}
.yc3f_c00002{bottom:780.840000pt;}
.y8bf_c00002{bottom:781.160000pt;}
.ydd8_c00002{bottom:781.475200pt;}
.yd14_c00002{bottom:781.480000pt;}
.yd99_c00002{bottom:781.776640pt;}
.y31a_c00002{bottom:781.800000pt;}
.ye5e_c00002{bottom:782.114880pt;}
.ye4c_c00002{bottom:782.117120pt;}
.yb69_c00002{bottom:782.120000pt;}
.yda7_c00002{bottom:782.380480pt;}
.y7b0_c00002{bottom:782.435840pt;}
.y7b1_c00002{bottom:782.440000pt;}
.y940_c00002{bottom:782.720000pt;}
.y236_c00002{bottom:782.760000pt;}
.y235_c00002{bottom:782.761280pt;}
.y40_c00002{bottom:783.080000pt;}
.y271_c00002{bottom:783.400000pt;}
.yc90_c00002{bottom:783.720000pt;}
.ycc0_c00002{bottom:784.040000pt;}
.y68d_c00002{bottom:784.360000pt;}
.ycbf_c00002{bottom:784.679867pt;}
.y119c_c00002{bottom:784.997120pt;}
.y2e7_c00002{bottom:785.000000pt;}
.y10e4_c00002{bottom:785.000640pt;}
.yfae_c00002{bottom:785.001467pt;}
.y1140_c00002{bottom:785.002240pt;}
.y10f1_c00002{bottom:785.004160pt;}
.y39b_c00002{bottom:785.320000pt;}
.yee5_c00002{bottom:785.627520pt;}
.yf0_c00002{bottom:785.640000pt;}
.y91d_c00002{bottom:785.960000pt;}
.yf_c00002{bottom:786.280000pt;}
.y980_c00002{bottom:786.560000pt;}
.yeb4_c00002{bottom:786.591360pt;}
.y3c8_c00002{bottom:786.600000pt;}
.y282_c00002{bottom:786.920000pt;}
.y132c_c00002{bottom:787.239040pt;}
.y167_c00002{bottom:787.240000pt;}
.y1001_c00002{bottom:787.240640pt;}
.y135f_c00002{bottom:787.241600pt;}
.y1123_c00002{bottom:787.244160pt;}
.y74b_c00002{bottom:787.879040pt;}
.y74c_c00002{bottom:787.880000pt;}
.yca8_c00002{bottom:788.200000pt;}
.y108_c00002{bottom:788.520000pt;}
.yb9e_c00002{bottom:788.840000pt;}
.y592_c00002{bottom:789.800000pt;}
.y727_c00002{bottom:790.440000pt;}
.y782_c00002{bottom:790.441600pt;}
.y557_c00002{bottom:790.760000pt;}
.y144_c00002{bottom:791.080000pt;}
.y816_c00002{bottom:791.400000pt;}
.y1392_c00002{bottom:791.720000pt;}
.y1391_c00002{bottom:791.721600pt;}
.y7e7_c00002{bottom:792.040000pt;}
.y790_c00002{bottom:792.360000pt;}
.y5ce_c00002{bottom:792.679867pt;}
.yf1d_c00002{bottom:792.682240pt;}
.y467_c00002{bottom:793.000000pt;}
.y466_c00002{bottom:793.001467pt;}
.y573_c00002{bottom:793.320000pt;}
.y3e4_c00002{bottom:793.640000pt;}
.yf4c_c00002{bottom:793.959040pt;}
.y436_c00002{bottom:793.960000pt;}
.y1282_c00002{bottom:793.960640pt;}
.y102b_c00002{bottom:793.961600pt;}
.y3eb_c00002{bottom:794.280000pt;}
.y8a9_c00002{bottom:794.281600pt;}
.yb82_c00002{bottom:794.600000pt;}
.y86e_c00002{bottom:795.240000pt;}
.y776_c00002{bottom:795.560000pt;}
.yf05_c00002{bottom:795.873280pt;}
.ye87_c00002{bottom:795.876987pt;}
.ybc7_c00002{bottom:795.880000pt;}
.y93f_c00002{bottom:796.160000pt;}
.y93d_c00002{bottom:796.480000pt;}
.y75_c00002{bottom:796.520000pt;}
.y12c_c00002{bottom:796.840000pt;}
.ye16_c00002{bottom:797.148987pt;}
.y2a9_c00002{bottom:797.478080pt;}
.y6b9_c00002{bottom:797.800000pt;}
.yf02_c00002{bottom:798.120000pt;}
.yfd2_c00002{bottom:798.436480pt;}
.y234_c00002{bottom:798.439680pt;}
.ycf4_c00002{bottom:798.440000pt;}
.y97f_c00002{bottom:799.040000pt;}
.y27a_c00002{bottom:799.080000pt;}
.y7af_c00002{bottom:799.399040pt;}
.y6f0_c00002{bottom:799.400000pt;}
.y1474_c00002{bottom:799.401600pt;}
.yc34_c00002{bottom:799.720000pt;}
.y4db_c00002{bottom:800.040000pt;}
.yd13_c00002{bottom:800.360000pt;}
.y119b_c00002{bottom:800.360640pt;}
.y120a_c00002{bottom:800.365760pt;}
.y10a8_c00002{bottom:800.676480pt;}
.y134d_c00002{bottom:800.678080pt;}
.yfad_c00002{bottom:800.679040pt;}
.yd1f_c00002{bottom:800.679867pt;}
.yd1e_c00002{bottom:800.680000pt;}
.yf81_c00002{bottom:800.680640pt;}
.y1059_c00002{bottom:800.682240pt;}
.ydfd_c00002{bottom:800.997120pt;}
.y5dd_c00002{bottom:801.000000pt;}
.y3fa_c00002{bottom:801.320000pt;}
.y3f_c00002{bottom:801.640000pt;}
.yd6a_c00002{bottom:801.953600pt;}
.y33d_c00002{bottom:801.960000pt;}
.ydd7_c00002{bottom:802.278080pt;}
.ye99_c00002{bottom:802.279040pt;}
.yc8f_c00002{bottom:802.280000pt;}
.y8be_c00002{bottom:802.600000pt;}
.yd98_c00002{bottom:802.899200pt;}
.ye4b_c00002{bottom:802.914240pt;}
.y13ce_c00002{bottom:802.916480pt;}
.y1000_c00002{bottom:802.919040pt;}
.ycff_c00002{bottom:802.920000pt;}
.yda6_c00002{bottom:803.183360pt;}
.y65f_c00002{bottom:803.240000pt;}
.y631_c00002{bottom:803.560000pt;}
.y39a_c00002{bottom:803.880000pt;}
.yedc_c00002{bottom:804.199040pt;}
.y377_c00002{bottom:804.200000pt;}
.y376_c00002{bottom:804.206080pt;}
.y8f5_c00002{bottom:804.519360pt;}
.y9b_c00002{bottom:804.520000pt;}
.yeb3_c00002{bottom:804.836800pt;}
.y270_c00002{bottom:804.840000pt;}
.y207_c00002{bottom:805.480000pt;}
.y657_c00002{bottom:805.800000pt;}
.yee4_c00002{bottom:806.110720pt;}
.y781_c00002{bottom:806.120000pt;}
.y4fb_c00002{bottom:806.439040pt;}
.y4fc_c00002{bottom:806.440000pt;}
.y82c_c00002{bottom:806.768960pt;}
.y107_c00002{bottom:807.080000pt;}
.y10e3_c00002{bottom:807.396480pt;}
.y1441_c00002{bottom:807.397120pt;}
.yb9d_c00002{bottom:807.400000pt;}
.y1390_c00002{bottom:807.400640pt;}
.yb68_c00002{bottom:807.720000pt;}
.yc50_c00002{bottom:808.040000pt;}
.yc60_c00002{bottom:808.356160pt;}
.yb67_c00002{bottom:808.360000pt;}
.y93e_c00002{bottom:808.640000pt;}
.ye_c00002{bottom:808.679867pt;}
.y465_c00002{bottom:808.693440pt;}
.y93c_c00002{bottom:808.960000pt;}
.y89e_c00002{bottom:809.000000pt;}
.y556_c00002{bottom:809.320000pt;}
.yeae_c00002{bottom:809.323840pt;}
.y1122_c00002{bottom:809.636480pt;}
.y11e5_c00002{bottom:809.637947pt;}
.y102a_c00002{bottom:809.639040pt;}
.y143_c00002{bottom:809.640000pt;}
.y13af_c00002{bottom:809.640640pt;}
.y74a_c00002{bottom:809.960000pt;}
.y815_c00002{bottom:810.280000pt;}
.y6d3_c00002{bottom:810.283067pt;}
.y35c_c00002{bottom:810.600000pt;}
.y2e6_c00002{bottom:811.240000pt;}
.y2e5_c00002{bottom:811.243200pt;}
.y44e_c00002{bottom:811.880000pt;}
.y3c7_c00002{bottom:812.200000pt;}
.yd0_c00002{bottom:812.520000pt;}
.y166_c00002{bottom:812.840000pt;}
.yd4c_c00002{bottom:812.848320pt;}
.y2a8_c00002{bottom:813.156480pt;}
.yd58_c00002{bottom:813.160000pt;}
.yfd1_c00002{bottom:813.800000pt;}
.y233_c00002{bottom:813.803200pt;}
.yfd0_c00002{bottom:813.803840pt;}
.yd0b_c00002{bottom:814.120000pt;}
.y7e6_c00002{bottom:814.440000pt;}
.y7e5_c00002{bottom:814.441600pt;}
.yf1c_c00002{bottom:814.763200pt;}
.y1473_c00002{bottom:815.079040pt;}
.y74_c00002{bottom:815.080000pt;}
.y97e_c00002{bottom:815.360000pt;}
.y12b_c00002{bottom:815.400000pt;}
.y726_c00002{bottom:816.040000pt;}
.y10c0_c00002{bottom:816.041600pt;}
.y1353_c00002{bottom:816.043200pt;}
.yf80_c00002{bottom:816.044160pt;}
.y1058_c00002{bottom:816.045760pt;}
.ye98_c00002{bottom:816.356800pt;}
.ybde_c00002{bottom:816.360000pt;}
.ye86_c00002{bottom:816.679867pt;}
.yc03_c00002{bottom:817.000000pt;}
.y6ad_c00002{bottom:817.320000pt;}
.y18a_c00002{bottom:817.640000pt;}
.y63f_c00002{bottom:817.960000pt;}
.y13cd_c00002{bottom:818.280000pt;}
.y13cc_c00002{bottom:818.284027pt;}
.ycbe_c00002{bottom:818.600000pt;}
.yf04_c00002{bottom:818.913920pt;}
.yd12_c00002{bottom:818.920000pt;}
.yca7_c00002{bottom:819.240000pt;}
.ye15_c00002{bottom:819.869947pt;}
.yb16_c00002{bottom:819.880000pt;}
.y8f4_c00002{bottom:820.197760pt;}
.ycce_c00002{bottom:820.200000pt;}
.y3e_c00002{bottom:820.520000pt;}
.y303_c00002{bottom:820.840000pt;}
.ya08_c00002{bottom:821.120000pt;}
.yc80_c00002{bottom:821.160000pt;}
.y7ad_c00002{bottom:821.478080pt;}
.y7ae_c00002{bottom:821.480000pt;}
.y435_c00002{bottom:821.800000pt;}
.y375_c00002{bottom:821.804160pt;}
.y93b_c00002{bottom:822.080000pt;}
.yc7e_c00002{bottom:822.440000pt;}
.y119a_c00002{bottom:822.441600pt;}
.yfac_c00002{bottom:822.760000pt;}
.y10e2_c00002{bottom:822.760640pt;}
.yfab_c00002{bottom:822.761600pt;}
.y1170_c00002{bottom:822.764160pt;}
.yb5_c00002{bottom:823.080000pt;}
.ye34_c00002{bottom:823.400000pt;}
.yda5_c00002{bottom:823.666560pt;}
.yd97_c00002{bottom:823.702080pt;}
.ye4a_c00002{bottom:823.717120pt;}
.y889_c00002{bottom:824.040000pt;}
.y281_c00002{bottom:824.360000pt;}
.y89d_c00002{bottom:824.679867pt;}
.y5cd_c00002{bottom:824.680000pt;}
.yead_c00002{bottom:825.000000pt;}
.yfff_c00002{bottom:825.000507pt;}
.y11e4_c00002{bottom:825.001467pt;}
.y1121_c00002{bottom:825.004160pt;}
.y927_c00002{bottom:825.320000pt;}
.y106_c00002{bottom:825.640000pt;}
.y252_c00002{bottom:825.960000pt;}
.ybb5_c00002{bottom:826.280000pt;}
.yee3_c00002{bottom:826.913600pt;}
.yedb_c00002{bottom:826.920000pt;}
.yce2_c00002{bottom:827.240000pt;}
.y775_c00002{bottom:827.560000pt;}
.y97d_c00002{bottom:827.840000pt;}
.y555_c00002{bottom:827.880000pt;}
.y820_c00002{bottom:828.003600pt;}
.y142_c00002{bottom:828.520000pt;}
.y4fa_c00002{bottom:828.524160pt;}
.y814_c00002{bottom:828.840000pt;}
.y232_c00002{bottom:829.481600pt;}
.yfcf_c00002{bottom:829.482240pt;}
.y6b8_c00002{bottom:829.800000pt;}
.y7e3_c00002{bottom:830.119040pt;}
.y7e4_c00002{bottom:830.120000pt;}
.yb66_c00002{bottom:830.440000pt;}
.yd_c00002{bottom:830.760000pt;}
.yc_c00002{bottom:830.764160pt;}
.y464_c00002{bottom:830.774400pt;}
.y206_c00002{bottom:831.079867pt;}
.ycf_c00002{bottom:831.080000pt;}
.y65e_c00002{bottom:831.400000pt;}
.y132b_c00002{bottom:831.719040pt;}
.y3ea_c00002{bottom:831.720000pt;}
.y1029_c00002{bottom:831.720640pt;}
.y1352_c00002{bottom:831.721600pt;}
.yf4b_c00002{bottom:831.724160pt;}
.ybdd_c00002{bottom:832.040000pt;}
.y6d2_c00002{bottom:832.364027pt;}
.y669_c00002{bottom:832.679867pt;}
.y749_c00002{bottom:832.680000pt;}
.y5dc_c00002{bottom:833.000000pt;}
.yd69_c00002{bottom:833.316800pt;}
.ya07_c00002{bottom:833.600000pt;}
.y73_c00002{bottom:833.640000pt;}
.y93a_c00002{bottom:834.560000pt;}
.y809_c00002{bottom:834.600000pt;}
.yca6_c00002{bottom:834.920000pt;}
.y319_c00002{bottom:835.240000pt;}
.y630_c00002{bottom:835.560000pt;}
.y8f3_c00002{bottom:835.876160pt;}
.y399_c00002{bottom:835.880000pt;}
.y9a_c00002{bottom:836.520000pt;}
.ybfb_c00002{bottom:836.840000pt;}
.ye85_c00002{bottom:837.157120pt;}
.yf1b_c00002{bottom:837.159040pt;}
.yc7f_c00002{bottom:837.160000pt;}
.y1472_c00002{bottom:837.161600pt;}
.y2e4_c00002{bottom:837.480000pt;}
.y3c6_c00002{bottom:837.800000pt;}
.y1199_c00002{bottom:838.120000pt;}
.y1198_c00002{bottom:838.127360pt;}
.y1076_c00002{bottom:838.439040pt;}
.yf7f_c00002{bottom:838.440000pt;}
.y12ca_c00002{bottom:838.440640pt;}
.y1057_c00002{bottom:838.441600pt;}
.yb15_c00002{bottom:838.760000pt;}
.y3d_c00002{bottom:839.080000pt;}
.y7ac_c00002{bottom:839.400000pt;}
.yf01_c00002{bottom:840.040000pt;}
.y888_c00002{bottom:840.360000pt;}
.y11e2_c00002{bottom:840.678907pt;}
.y11e3_c00002{bottom:840.679867pt;}
.yb81_c00002{bottom:841.320000pt;}
.yb4_c00002{bottom:841.640000pt;}
.y725_c00002{bottom:841.960000pt;}
.ycd8_c00002{bottom:842.280000pt;}
.ye14_c00002{bottom:842.590907pt;}
.ydfc_c00002{bottom:842.596800pt;}
.ydd2_c00002{bottom:842.600000pt;}
.y280_c00002{bottom:842.920000pt;}
.y5cc_c00002{bottom:843.240000pt;}
.y44d_c00002{bottom:843.880000pt;}
.yd96_c00002{bottom:844.185280pt;}
.yc0c_c00002{bottom:844.199867pt;}
.y374_c00002{bottom:844.200000pt;}
.y373_c00002{bottom:844.201600pt;}
.yda4_c00002{bottom:844.469440pt;}
.ydd6_c00002{bottom:844.501947pt;}
.y105_c00002{bottom:844.520000pt;}
.yb9c_c00002{bottom:844.840000pt;}
.y82b_c00002{bottom:844.848320pt;}
.y116f_c00002{bottom:845.156480pt;}
.y231_c00002{bottom:845.160000pt;}
.yfce_c00002{bottom:845.160640pt;}
.yeb2_c00002{bottom:846.113920pt;}
.yeac_c00002{bottom:846.120000pt;}
.yc5f_c00002{bottom:846.435520pt;}
.y554_c00002{bottom:846.760000pt;}
.y939_c00002{bottom:847.040000pt;}
.y3c0_c00002{bottom:847.080000pt;}
.y1362_c00002{bottom:847.084160pt;}
.yeda_c00002{bottom:847.393920pt;}
.yffe_c00002{bottom:847.396347pt;}
.y1120_c00002{bottom:847.399040pt;}
.y12a_c00002{bottom:847.400000pt;}
.y11c3_c00002{bottom:847.400640pt;}
.yb65_c00002{bottom:848.040000pt;}
.ybda_c00002{bottom:848.360000pt;}
.y91c_c00002{bottom:849.000000pt;}
.y189_c00002{bottom:849.640000pt;}
.ybdc_c00002{bottom:849.960000pt;}
.yca1_c00002{bottom:850.280000pt;}
.yd57_c00002{bottom:850.600000pt;}
.y4f9_c00002{bottom:850.916480pt;}
.y2a6_c00002{bottom:850.918720pt;}
.y2a7_c00002{bottom:850.920000pt;}
.y8f2_c00002{bottom:851.239680pt;}
.yd0a_c00002{bottom:851.240000pt;}
.yd4b_c00002{bottom:851.244480pt;}
.y572_c00002{bottom:851.880000pt;}
.y97c_c00002{bottom:852.160000pt;}
.y33c_c00002{bottom:852.200000pt;}
.y354_c00002{bottom:852.520000pt;}
.y1470_c00002{bottom:852.834880pt;}
.y1471_c00002{bottom:852.840000pt;}
.ya_c00002{bottom:853.155520pt;}
.yb_c00002{bottom:853.160000pt;}
.y463_c00002{bottom:853.170240pt;}
.y4da_c00002{bottom:853.800000pt;}
.y132a_c00002{bottom:853.800640pt;}
.y1197_c00002{bottom:853.805760pt;}
.yf4a_c00002{bottom:854.116480pt;}
.yf7e_c00002{bottom:854.119040pt;}
.yc7d_c00002{bottom:854.120000pt;}
.yfaa_c00002{bottom:854.120640pt;}
.y62f_c00002{bottom:854.440000pt;}
.y6d1_c00002{bottom:854.759867pt;}
.y398_c00002{bottom:854.760000pt;}
.y613_c00002{bottom:855.080000pt;}
.y7ef_c00002{bottom:855.720000pt;}
.yc4e_c00002{bottom:856.040000pt;}
.y5eb_c00002{bottom:856.360000pt;}
.y205_c00002{bottom:856.679867pt;}
.y204_c00002{bottom:856.680000pt;}
.y808_c00002{bottom:856.996480pt;}
.y3e9_c00002{bottom:857.000000pt;}
.ye97_c00002{bottom:857.636160pt;}
.y1c0_c00002{bottom:857.640000pt;}
.ye84_c00002{bottom:857.960000pt;}
.yc3b_c00002{bottom:858.280000pt;}
.y748_c00002{bottom:858.600000pt;}
.yf1a_c00002{bottom:859.240000pt;}
.y774_c00002{bottom:859.560000pt;}
.y372_c00002{bottom:859.877120pt;}
.ybb4_c00002{bottom:860.200000pt;}
.yb3_c00002{bottom:860.520000pt;}
.y113f_c00002{bottom:860.520640pt;}
.y10e1_c00002{bottom:860.521600pt;}
.y11b8_c00002{bottom:860.522240pt;}
.y1075_c00002{bottom:860.523200pt;}
.y13c0_c00002{bottom:860.523840pt;}
.y116e_c00002{bottom:860.524160pt;}
.y668_c00002{bottom:860.839867pt;}
.y813_c00002{bottom:860.840000pt;}
.y7ab_c00002{bottom:861.480000pt;}
.y27f_c00002{bottom:861.800000pt;}
.ycfe_c00002{bottom:862.440000pt;}
.yb9b_c00002{bottom:862.759867pt;}
.y5cb_c00002{bottom:862.760000pt;}
.yffd_c00002{bottom:862.764160pt;}
.yce_c00002{bottom:863.080000pt;}
.ye13_c00002{bottom:863.393787pt;}
.yc33_c00002{bottom:863.400000pt;}
.yf00_c00002{bottom:863.400320pt;}
.y2e3_c00002{bottom:863.720000pt;}
.yb64_c00002{bottom:864.360000pt;}
.y91b_c00002{bottom:864.679867pt;}
.yd95_c00002{bottom:864.988160pt;}
.yd68_c00002{bottom:864.996800pt;}
.yb63_c00002{bottom:865.000000pt;}
.yda3_c00002{bottom:865.272320pt;}
.y97b_c00002{bottom:865.280000pt;}
.ydd5_c00002{bottom:865.304827pt;}
.ybdb_c00002{bottom:865.320000pt;}
.y72_c00002{bottom:865.640000pt;}
.y553_c00002{bottom:865.960000pt;}
.y129_c00002{bottom:866.280000pt;}
.y4f8_c00002{bottom:866.284027pt;}
.y458_c00002{bottom:866.600000pt;}
.yeb1_c00002{bottom:866.916800pt;}
.y8f1_c00002{bottom:866.918080pt;}
.yeab_c00002{bottom:866.921787pt;}
.y230_c00002{bottom:867.240000pt;}
.y22f_c00002{bottom:867.241600pt;}
.yc02_c00002{bottom:867.560000pt;}
.ye33_c00002{bottom:867.877120pt;}
.y6ac_c00002{bottom:867.880000pt;}
.yed9_c00002{bottom:868.196800pt;}
.y99_c00002{bottom:868.520000pt;}
.yc2f_c00002{bottom:868.840000pt;}
.yd56_c00002{bottom:869.480000pt;}
.yf49_c00002{bottom:869.480640pt;}
.y10d1_c00002{bottom:869.481600pt;}
.y1397_c00002{bottom:869.482240pt;}
.y108e_c00002{bottom:869.484160pt;}
.y8bd_c00002{bottom:869.800000pt;}
.y724_c00002{bottom:870.120000pt;}
.yc7c_c00002{bottom:870.440000pt;}
.yd09_c00002{bottom:870.759867pt;}
.yb14_c00002{bottom:870.760000pt;}
.y462_c00002{bottom:870.764160pt;}
.y3c_c00002{bottom:871.080000pt;}
.y5db_c00002{bottom:871.400000pt;}
.ye96_c00002{bottom:871.713920pt;}
.yc4f_c00002{bottom:871.720000pt;}
.y89c_c00002{bottom:872.040000pt;}
.y434_c00002{bottom:872.360000pt;}
.ycbd_c00002{bottom:872.679867pt;}
.y2a5_c00002{bottom:872.999680pt;}
.y397_c00002{bottom:873.320000pt;}
.y571_c00002{bottom:873.640000pt;}
.ycd7_c00002{bottom:873.960000pt;}
.y7e2_c00002{bottom:874.600000pt;}
.y7e1_c00002{bottom:874.604160pt;}
.y146f_c00002{bottom:874.915840pt;}
.yc3e_c00002{bottom:874.920000pt;}
.y44c_c00002{bottom:875.880000pt;}
.y1329_c00002{bottom:875.881600pt;}
.y81f_c00002{bottom:876.014267pt;}
.y1056_c00002{bottom:876.199040pt;}
.y3e8_c00002{bottom:876.200000pt;}
.y10e0_c00002{bottom:876.200640pt;}
.yfa9_c00002{bottom:876.201600pt;}
.y13bf_c00002{bottom:876.202240pt;}
.y153_c00002{bottom:876.520000pt;}
.y612_c00002{bottom:876.840000pt;}
.y6d0_c00002{bottom:876.844160pt;}
.y9_c00002{bottom:877.480000pt;}
.y8_c00002{bottom:877.490240pt;}
.y97a_c00002{bottom:877.760000pt;}
.y7aa_c00002{bottom:878.440000pt;}
.y7a9_c00002{bottom:878.441600pt;}
.ye83_c00002{bottom:878.454720pt;}
.ybb3_c00002{bottom:878.759867pt;}
.yb2_c00002{bottom:879.080000pt;}
.y4d9_c00002{bottom:879.400000pt;}
.y656_c00002{bottom:880.360000pt;}
.yb9a_c00002{bottom:880.679867pt;}
.ybd9_c00002{bottom:881.320000pt;}
.ycd_c00002{bottom:881.640000pt;}
.y203_c00002{bottom:881.960000pt;}
.yc32_c00002{bottom:882.280000pt;}
.y8f0_c00002{bottom:882.281600pt;}
.y22d_c00002{bottom:882.916480pt;}
.yfcd_c00002{bottom:882.918080pt;}
.y22e_c00002{bottom:882.920000pt;}
.yb62_c00002{bottom:883.240000pt;}
.y82a_c00002{bottom:883.244480pt;}
.ydd1_c00002{bottom:883.869947pt;}
.ye12_c00002{bottom:883.876987pt;}
.y747_c00002{bottom:883.880000pt;}
.yc5e_c00002{bottom:884.198080pt;}
.y371_c00002{bottom:884.201600pt;}
.y71_c00002{bottom:884.520000pt;}
.y128_c00002{bottom:884.840000pt;}
.y1272_c00002{bottom:885.156480pt;}
.yffb_c00002{bottom:885.159040pt;}
.y111f_c00002{bottom:885.159680pt;}
.yffc_c00002{bottom:885.160000pt;}
.y11c2_c00002{bottom:885.160640pt;}
.ye30_c00002{bottom:885.471360pt;}
.yca0_c00002{bottom:885.480000pt;}
.yda2_c00002{bottom:885.755520pt;}
.ydd4_c00002{bottom:885.788027pt;}
.yd94_c00002{bottom:885.791040pt;}
.y68c_c00002{bottom:885.800000pt;}
.yc7b_c00002{bottom:886.440000pt;}
.y6ab_c00002{bottom:886.760000pt;}
.y62e_c00002{bottom:887.080000pt;}
.y62a_c00002{bottom:887.400000pt;}
.yc4d_c00002{bottom:887.720000pt;}
.yb80_c00002{bottom:888.040000pt;}
.y719_c00002{bottom:888.360000pt;}
.y4f7_c00002{bottom:888.678080pt;}
.y318_c00002{bottom:888.679867pt;}
.y317_c00002{bottom:888.680000pt;}
.yb13_c00002{bottom:889.320000pt;}
.yd4a_c00002{bottom:889.323840pt;}
.y3a_c00002{bottom:889.640000pt;}
.y2e2_c00002{bottom:889.960000pt;}
.y979_c00002{bottom:890.240000pt;}
.ycd6_c00002{bottom:890.280000pt;}
.yc3d_c00002{bottom:891.240000pt;}
.y773_c00002{bottom:891.560000pt;}
.y1328_c00002{bottom:891.564160pt;}
.yf48_c00002{bottom:891.876480pt;}
.y129a_c00002{bottom:891.877120pt;}
.yf7d_c00002{bottom:891.879040pt;}
.y395_c00002{bottom:891.880000pt;}
.y10bf_c00002{bottom:891.880640pt;}
.ye95_c00002{bottom:892.197120pt;}
.yce1_c00002{bottom:892.200000pt;}
.y6ef_c00002{bottom:892.520000pt;}
.y460_c00002{bottom:893.156480pt;}
.y461_c00002{bottom:893.160000pt;}
.y887_c00002{bottom:893.480000pt;}
.ye32_c00002{bottom:893.794880pt;}
.y27e_c00002{bottom:893.800000pt;}
.y62b_c00002{bottom:894.120000pt;}
.y7a8_c00002{bottom:894.126080pt;}
.ye82_c00002{bottom:894.130880pt;}
.y807_c00002{bottom:894.759867pt;}
.yc0b_c00002{bottom:894.760000pt;}
.y152_c00002{bottom:895.080000pt;}
.y3e7_c00002{bottom:895.400000pt;}
.y91a_c00002{bottom:896.040000pt;}
.y3b_c00002{bottom:896.360000pt;}
.yd67_c00002{bottom:896.676800pt;}
.y7df_c00002{bottom:896.999040pt;}
.y7e0_c00002{bottom:897.000000pt;}
.yd7b_c00002{bottom:897.320000pt;}
.y2a4_c00002{bottom:897.639040pt;}
.yb1_c00002{bottom:897.640000pt;}
.y8ef_c00002{bottom:897.960000pt;}
.y22c_c00002{bottom:898.280000pt;}
.yfcc_c00002{bottom:898.281600pt;}
.y1281_c00002{bottom:898.282240pt;}
.y113e_c00002{bottom:898.283200pt;}
.y138f_c00002{bottom:898.284027pt;}
.y116d_c00002{bottom:898.285760pt;}
.y396_c00002{bottom:898.600000pt;}
.y655_c00002{bottom:899.240000pt;}
.yb61_c00002{bottom:899.560000pt;}
.y370_c00002{bottom:899.880000pt;}
.y36f_c00002{bottom:899.884160pt;}
.y7_c00002{bottom:899.886080pt;}
.yb60_c00002{bottom:900.200000pt;}
.y98_c00002{bottom:900.520000pt;}
.y433_c00002{bottom:900.840000pt;}
.ycfd_c00002{bottom:902.120000pt;}
.y552_c00002{bottom:903.080000pt;}
.y127_c00002{bottom:903.400000pt;}
.y89b_c00002{bottom:903.720000pt;}
.y4f6_c00002{bottom:904.356480pt;}
.y432_c00002{bottom:904.360000pt;}
.ydd0_c00002{bottom:904.672827pt;}
.ye11_c00002{bottom:904.679867pt;}
.y6aa_c00002{bottom:905.320000pt;}
.yc26_c00002{bottom:905.640000pt;}
.y6f_c00002{bottom:905.960000pt;}
.ye49_c00002{bottom:906.280000pt;}
.yda1_c00002{bottom:906.558400pt;}
.ydd3_c00002{bottom:906.590907pt;}
.yd93_c00002{bottom:906.593920pt;}
.yefe_c00002{bottom:906.597120pt;}
.yd80_c00002{bottom:906.600000pt;}
.y65d_c00002{bottom:907.240000pt;}
.yf47_c00002{bottom:907.240640pt;}
.y11c1_c00002{bottom:907.241600pt;}
.yffa_c00002{bottom:907.244160pt;}
.y4d8_c00002{bottom:907.560000pt;}
.ye31_c00002{bottom:907.872640pt;}
.y44b_c00002{bottom:907.880000pt;}
.y33b_c00002{bottom:908.200000pt;}
.yeb0_c00002{bottom:908.203840pt;}
.y39_c00002{bottom:908.520000pt;}
.y629_c00002{bottom:908.840000pt;}
.ye81_c00002{bottom:910.126720pt;}
.y394_c00002{bottom:910.760000pt;}
.y68b_c00002{bottom:911.080000pt;}
.y7a7_c00002{bottom:911.720000pt;}
.y7a6_c00002{bottom:911.721600pt;}
.y70_c00002{bottom:912.679867pt;}
.ye94_c00002{bottom:913.000000pt;}
.y570_c00002{bottom:913.320000pt;}
.y151_c00002{bottom:913.640000pt;}
.y22b_c00002{bottom:913.960000pt;}
.yf7c_c00002{bottom:913.960640pt;}
.y22a_c00002{bottom:913.961600pt;}
.y122a_c00002{bottom:913.962240pt;}
.y1055_c00002{bottom:913.964160pt;}
.yb99_c00002{bottom:914.920000pt;}
.y3f9_c00002{bottom:915.240000pt;}
.y886_c00002{bottom:915.560000pt;}
.y2e1_c00002{bottom:915.880000pt;}
.yf19_c00002{bottom:916.203067pt;}
.y812_c00002{bottom:916.840000pt;}
.y8bc_c00002{bottom:917.160000pt;}
.y6_c00002{bottom:917.480000pt;}
.y5_c00002{bottom:917.480640pt;}
.yd7a_c00002{bottom:917.800000pt;}
.yb5f_c00002{bottom:918.440000pt;}
.y7de_c00002{bottom:919.080000pt;}
.ybb2_c00002{bottom:919.400000pt;}
.y2a3_c00002{bottom:919.720000pt;}
.y2a2_c00002{bottom:919.724160pt;}
.y89a_c00002{bottom:920.040000pt;}
.yeff_c00002{bottom:920.041920pt;}
.ybd8_c00002{bottom:920.360000pt;}
.y138e_c00002{bottom:920.678080pt;}
.yc9f_c00002{bottom:920.679867pt;}
.yc7a_c00002{bottom:921.000000pt;}
.y6ce_c00002{bottom:921.319040pt;}
.y6cf_c00002{bottom:921.320000pt;}
.y829_c00002{bottom:921.323840pt;}
.y551_c00002{bottom:921.640000pt;}
.yc5d_c00002{bottom:921.960640pt;}
.y36e_c00002{bottom:922.276160pt;}
.y1028_c00002{bottom:922.919040pt;}
.y11c0_c00002{bottom:922.920000pt;}
.y772_c00002{bottom:923.560000pt;}
.yeaf_c00002{bottom:923.880000pt;}
.y81e_c00002{bottom:924.024933pt;}
.y45e_c00002{bottom:924.198080pt;}
.y45f_c00002{bottom:924.200000pt;}
.y6e_c00002{bottom:924.520000pt;}
.y6a9_c00002{bottom:924.840000pt;}
.y7ee_c00002{bottom:925.160000pt;}
.y44a_c00002{bottom:926.440000pt;}
.ye80_c00002{bottom:926.442240pt;}
.yb12_c00002{bottom:926.760000pt;}
.y38_c00002{bottom:927.080000pt;}
.yda0_c00002{bottom:927.361280pt;}
.ydcf_c00002{bottom:927.393787pt;}
.yd92_c00002{bottom:927.396800pt;}
.y7a5_c00002{bottom:927.400000pt;}
.y7a4_c00002{bottom:927.406080pt;}
.yd49_c00002{bottom:927.720000pt;}
.yd66_c00002{bottom:928.040000pt;}
.y806_c00002{bottom:929.000000pt;}
.y1327_c00002{bottom:929.324160pt;}
.yf46_c00002{bottom:929.636480pt;}
.yf7b_c00002{bottom:929.639040pt;}
.yb0_c00002{bottom:929.640000pt;}
.y229_c00002{bottom:929.640640pt;}
.yb98_c00002{bottom:930.280000pt;}
.y3bf_c00002{bottom:930.600000pt;}
.y654_c00002{bottom:931.240000pt;}
.y97_c00002{bottom:932.520000pt;}
.yc14_c00002{bottom:932.840000pt;}
.ycbc_c00002{bottom:933.160000pt;}
.ye93_c00002{bottom:933.479547pt;}
.yed8_c00002{bottom:933.480000pt;}
.yed7_c00002{bottom:933.482240pt;}
.y3f8_c00002{bottom:933.800000pt;}
.yb5e_c00002{bottom:934.120000pt;}
.yc8e_c00002{bottom:934.440000pt;}
.yb1d_c00002{bottom:934.759867pt;}
.ybb1_c00002{bottom:935.080000pt;}
.y126_c00002{bottom:935.400000pt;}
.yc31_c00002{bottom:935.400320pt;}
.y899_c00002{bottom:935.720000pt;}
.ybd7_c00002{bottom:936.040000pt;}
.y1054_c00002{bottom:936.356480pt;}
.y68a_c00002{bottom:936.358080pt;}
.yc79_c00002{bottom:936.360000pt;}
.yce0_c00002{bottom:937.000000pt;}
.yf18_c00002{bottom:938.284027pt;}
.yd79_c00002{bottom:938.603840pt;}
.y718_c00002{bottom:938.920000pt;}
.y307_c00002{bottom:939.240000pt;}
.y316_c00002{bottom:939.560000pt;}
.ye7f_c00002{bottom:940.520000pt;}
.ye7e_c00002{bottom:940.524347pt;}
.y8bb_c00002{bottom:941.480000pt;}
.y2e0_c00002{bottom:942.115200pt;}
.y4_c00002{bottom:942.120000pt;}
.y62d_c00002{bottom:943.080000pt;}
.y550_c00002{bottom:943.400000pt;}
.y36d_c00002{bottom:945.000000pt;}
.y228_c00002{bottom:945.004160pt;}
.y56f_c00002{bottom:945.320000pt;}
.y37_c00002{bottom:945.640000pt;}
.y6d_c00002{bottom:945.960000pt;}
.ye92_c00002{bottom:947.557307pt;}
.ybd5_c00002{bottom:947.560000pt;}
.yd91_c00002{bottom:947.876987pt;}
.y885_c00002{bottom:947.880000pt;}
.y884_c00002{bottom:948.200000pt;}
.yb97_c00002{bottom:948.520000pt;}
.y86d_c00002{bottom:948.840000pt;}
.ybd6_c00002{bottom:949.800000pt;}
.ybb0_c00002{bottom:950.440000pt;}
.yc4c_c00002{bottom:950.759867pt;}
.y898_c00002{bottom:951.080000pt;}
.yf7a_c00002{bottom:951.720000pt;}
.y689_c00002{bottom:951.721600pt;}
.y302_c00002{bottom:952.360000pt;}
.yd78_c00002{bottom:954.280000pt;}
.yd77_c00002{bottom:954.282427pt;}
.ye7d_c00002{bottom:954.602107pt;}
.y771_c00002{bottom:955.560000pt;}
.y828_c00002{bottom:959.720000pt;}
.yc5c_c00002{bottom:960.040000pt;}
.yf17_c00002{bottom:960.679867pt;}
.y805_c00002{bottom:962.280000pt;}
.yaf_c00002{bottom:962.600000pt;}
.y6cd_c00002{bottom:963.560000pt;}
.y653_c00002{bottom:963.880000pt;}
.y3_c00002{bottom:964.520000pt;}
.y393_c00002{bottom:964.840000pt;}
.y2df_c00002{bottom:966.120000pt;}
.y883_c00002{bottom:966.440000pt;}
.y86c_c00002{bottom:966.759867pt;}
.y125_c00002{bottom:967.400000pt;}
.yed6_c00002{bottom:968.360000pt;}
.yd76_c00002{bottom:968.679867pt;}
.y6a8_c00002{bottom:971.240000pt;}
.y81d_c00002{bottom:972.035600pt;}
.y770_c00002{bottom:974.440000pt;}
.y359_c00002{bottom:993.000000pt;}
.y2_c00002{bottom:1011.880000pt;}
.y827_c00002{bottom:1013.480000pt;}
.y81c_c00002{bottom:1020.046267pt;}
.h5b_c00002{height:17.116000pt;}
.h10_c00002{height:17.116093pt;}
.h6b_c00002{height:23.193600pt;}
.h5d_c00002{height:23.355000pt;}
.h30_c00002{height:23.680000pt;}
.h85_c00002{height:23.996250pt;}
.h1b_c00002{height:24.000000pt;}
.h29_c00002{height:24.320000pt;}
.h88_c00002{height:24.704000pt;}
.h40_c00002{height:24.960000pt;}
.h41_c00002{height:25.464300pt;}
.h2f_c00002{height:25.920000pt;}
.h1f_c00002{height:26.240000pt;}
.h65_c00002{height:28.153125pt;}
.h68_c00002{height:28.545000pt;}
.h31_c00002{height:28.800000pt;}
.hf_c00002{height:28.992000pt;}
.h52_c00002{height:29.120000pt;}
.h8b_c00002{height:29.538588pt;}
.ha3_c00002{height:29.884270pt;}
.h35_c00002{height:31.040000pt;}
.h37_c00002{height:31.311360pt;}
.h6c_c00002{height:31.680000pt;}
.h8d_c00002{height:32.883750pt;}
.h63_c00002{height:33.612876pt;}
.h12_c00002{height:33.630720pt;}
.h39_c00002{height:34.240000pt;}
.h28_c00002{height:34.665753pt;}
.h1a_c00002{height:34.978125pt;}
.h7d_c00002{height:35.465000pt;}
.h22_c00002{height:35.541875pt;}
.h9c_c00002{height:35.926250pt;}
.h48_c00002{height:36.438750pt;}
.h18_c00002{height:36.561920pt;}
.h49_c00002{height:36.736000pt;}
.hd_c00002{height:37.687165pt;}
.h6d_c00002{height:37.760000pt;}
.h96_c00002{height:37.888000pt;}
.h46_c00002{height:38.269440pt;}
.h64_c00002{height:38.353920pt;}
.h80_c00002{height:38.390625pt;}
.h72_c00002{height:38.720000pt;}
.h5a_c00002{height:38.925000pt;}
.h78_c00002{height:39.360000pt;}
.h76_c00002{height:39.724309pt;}
.h71_c00002{height:39.826875pt;}
.h67_c00002{height:39.833600pt;}
.h84_c00002{height:39.993750pt;}
.h34_c00002{height:40.000000pt;}
.h17_c00002{height:40.514560pt;}
.h5c_c00002{height:41.173333pt;}
.h4a_c00002{height:41.307500pt;}
.h6_c00002{height:41.761453pt;}
.h16_c00002{height:41.920000pt;}
.h36_c00002{height:41.960000pt;}
.h43_c00002{height:41.984000pt;}
.h2d_c00002{height:42.240000pt;}
.h19_c00002{height:42.656250pt;}
.h38_c00002{height:42.880000pt;}
.he_c00002{height:42.908160pt;}
.h8a_c00002{height:42.919680pt;}
.h8f_c00002{height:42.920213pt;}
.h8e_c00002{height:42.920960pt;}
.h94_c00002{height:42.927360pt;}
.h97_c00002{height:42.931200pt;}
.h98_c00002{height:42.932480pt;}
.h93_c00002{height:42.936320pt;}
.h92_c00002{height:42.938880pt;}
.h95_c00002{height:42.941440pt;}
.h90_c00002{height:43.002880pt;}
.h3f_c00002{height:43.200000pt;}
.h91_c00002{height:43.239680pt;}
.h4f_c00002{height:43.250000pt;}
.h82_c00002{height:43.276117pt;}
.h20_c00002{height:43.343750pt;}
.h8c_c00002{height:44.228719pt;}
.h3b_c00002{height:45.125000pt;}
.h1c_c00002{height:45.835741pt;}
.h44_c00002{height:46.080000pt;}
.h3a_c00002{height:46.250000pt;}
.h3e_c00002{height:46.400000pt;}
.h4c_c00002{height:46.625000pt;}
.h32_c00002{height:47.040000pt;}
.h7_c00002{height:47.546880pt;}
.h2e_c00002{height:47.550720pt;}
.h9d_c00002{height:47.555093pt;}
.h2c_c00002{height:47.558400pt;}
.h27_c00002{height:47.560960pt;}
.h5_c00002{height:47.651840pt;}
.h79_c00002{height:47.893995pt;}
.h1d_c00002{height:48.000000pt;}
.h24_c00002{height:49.010202pt;}
.h3c_c00002{height:49.118392pt;}
.h15_c00002{height:49.408000pt;}
.h2a_c00002{height:49.477268pt;}
.h8_c00002{height:49.481875pt;}
.h2b_c00002{height:49.497235pt;}
.h6e_c00002{height:49.920000pt;}
.h11_c00002{height:50.346667pt;}
.h9f_c00002{height:50.735360pt;}
.h9a_c00002{height:50.749440pt;}
.h9_c00002{height:50.752000pt;}
.h5e_c00002{height:50.753280pt;}
.h9e_c00002{height:50.755840pt;}
.h4_c00002{height:50.928601pt;}
.h42_c00002{height:51.200000pt;}
.h14_c00002{height:52.185600pt;}
.h99_c00002{height:52.204800pt;}
.ha2_c00002{height:52.307367pt;}
.h9b_c00002{height:52.313964pt;}
.ha0_c00002{height:52.480000pt;}
.h51_c00002{height:53.440000pt;}
.h26_c00002{height:53.791685pt;}
.ha1_c00002{height:54.095146pt;}
.h45_c00002{height:55.002889pt;}
.h87_c00002{height:55.536640pt;}
.h7e_c00002{height:56.306250pt;}
.h56_c00002{height:56.848000pt;}
.ha_c00002{height:57.090000pt;}
.h23_c00002{height:57.245308pt;}
.hb_c00002{height:57.245858pt;}
.h83_c00002{height:57.975040pt;}
.h7c_c00002{height:57.982720pt;}
.h3_c00002{height:57.984000pt;}
.h81_c00002{height:58.112000pt;}
.h21_c00002{height:59.768539pt;}
.h33_c00002{height:59.900479pt;}
.h1e_c00002{height:60.343750pt;}
.h13_c00002{height:60.510187pt;}
.hc_c00002{height:60.510720pt;}
.h3d_c00002{height:60.511253pt;}
.h25_c00002{height:62.373023pt;}
.h47_c00002{height:65.139200pt;}
.h86_c00002{height:65.218560pt;}
.h57_c00002{height:67.184000pt;}
.h50_c00002{height:67.261440pt;}
.h4e_c00002{height:76.392901pt;}
.h4b_c00002{height:76.538880pt;}
.h59_c00002{height:76.554240pt;}
.h7f_c00002{height:76.569600pt;}
.h89_c00002{height:76.577280pt;}
.h55_c00002{height:82.688000pt;}
.h4d_c00002{height:86.976000pt;}
.h75_c00002{height:87.680000pt;}
.h58_c00002{height:103.360000pt;}
.h5f_c00002{height:134.080000pt;}
.h54_c00002{height:144.704000pt;}
.h74_c00002{height:163.200000pt;}
.h7b_c00002{height:223.360000pt;}
.h7a_c00002{height:238.080000pt;}
.h70_c00002{height:276.480000pt;}
.h60_c00002{height:277.120000pt;}
.h69_c00002{height:320.960000pt;}
.h77_c00002{height:336.960000pt;}
.h61_c00002{height:346.880000pt;}
.h73_c00002{height:610.560000pt;}
.h6f_c00002{height:676.480000pt;}
.h6a_c00002{height:844.160000pt;}
.h62_c00002{height:857.600000pt;}
.h66_c00002{height:900.800000pt;}
.h2_c00002{height:1067.880000pt;}
.h53_c00002{height:1121.333333pt;}
.h0_c00002{height:1122.520000pt;}
.h1_c00002{height:1122.666667pt;}
.w40_c00002{width:7.413333pt;}
.w42_c00002{width:14.826667pt;}
.w3_c00002{width:22.240000pt;}
.w52_c00002{width:46.720000pt;}
.w5d_c00002{width:48.000000pt;}
.w48_c00002{width:65.600000pt;}
.w5b_c00002{width:73.280000pt;}
.w62_c00002{width:77.120000pt;}
.w44_c00002{width:78.720000pt;}
.w5e_c00002{width:80.960000pt;}
.w59_c00002{width:82.240000pt;}
.w56_c00002{width:84.480000pt;}
.w4b_c00002{width:93.440000pt;}
.w4f_c00002{width:97.920000pt;}
.w4c_c00002{width:103.360000pt;}
.w51_c00002{width:105.280000pt;}
.w5f_c00002{width:106.880000pt;}
.w67_c00002{width:110.720000pt;}
.w4a_c00002{width:111.040000pt;}
.w5a_c00002{width:112.640000pt;}
.w58_c00002{width:112.960000pt;}
.w5c_c00002{width:113.600000pt;}
.w74_c00002{width:114.560000pt;}
.w63_c00002{width:117.120000pt;}
.w6d_c00002{width:120.000000pt;}
.w57_c00002{width:121.920000pt;}
.w43_c00002{width:122.240000pt;}
.w55_c00002{width:124.160000pt;}
.w60_c00002{width:127.040000pt;}
.w64_c00002{width:129.600000pt;}
.w4d_c00002{width:131.840000pt;}
.w61_c00002{width:134.400000pt;}
.w75_c00002{width:136.960000pt;}
.w54_c00002{width:138.880000pt;}
.w69_c00002{width:141.120000pt;}
.w2e_c00002{width:149.120000pt;}
.wd_c00002{width:150.080000pt;}
.w49_c00002{width:150.400000pt;}
.w53_c00002{width:150.720000pt;}
.w6a_c00002{width:158.080000pt;}
.w45_c00002{width:160.000000pt;}
.w76_c00002{width:164.160000pt;}
.w47_c00002{width:167.040000pt;}
.w4e_c00002{width:167.360000pt;}
.w78_c00002{width:178.240000pt;}
.w6f_c00002{width:181.120000pt;}
.w66_c00002{width:188.160000pt;}
.w68_c00002{width:188.480000pt;}
.w7a_c00002{width:194.240000pt;}
.w70_c00002{width:197.760000pt;}
.w50_c00002{width:203.200000pt;}
.w79_c00002{width:206.720000pt;}
.w72_c00002{width:207.360000pt;}
.w23_c00002{width:208.640000pt;}
.w46_c00002{width:210.880000pt;}
.w73_c00002{width:216.640000pt;}
.w6c_c00002{width:216.960000pt;}
.w27_c00002{width:222.080000pt;}
.w38_c00002{width:230.720000pt;}
.w77_c00002{width:242.880000pt;}
.w6b_c00002{width:244.800000pt;}
.w1e_c00002{width:246.080000pt;}
.w22_c00002{width:246.720000pt;}
.w65_c00002{width:247.360000pt;}
.w71_c00002{width:254.400000pt;}
.w6e_c00002{width:264.000000pt;}
.w1a_c00002{width:264.320000pt;}
.w24_c00002{width:270.080000pt;}
.w21_c00002{width:285.760000pt;}
.w41_c00002{width:287.360000pt;}
.w37_c00002{width:295.040000pt;}
.w3c_c00002{width:299.200000pt;}
.w13_c00002{width:300.800000pt;}
.w33_c00002{width:311.680000pt;}
.w15_c00002{width:317.760000pt;}
.w28_c00002{width:329.920000pt;}
.w2d_c00002{width:332.800000pt;}
.w1c_c00002{width:338.880000pt;}
.w3d_c00002{width:343.040000pt;}
.w1b_c00002{width:356.800000pt;}
.w12_c00002{width:359.040000pt;}
.w20_c00002{width:364.800000pt;}
.w1f_c00002{width:365.760000pt;}
.wb_c00002{width:374.720000pt;}
.w3b_c00002{width:389.760000pt;}
.w17_c00002{width:398.720000pt;}
.w19_c00002{width:415.360000pt;}
.we_c00002{width:422.080000pt;}
.wc_c00002{width:435.520000pt;}
.wf_c00002{width:438.080000pt;}
.wa_c00002{width:438.400000pt;}
.w39_c00002{width:446.080000pt;}
.w10_c00002{width:472.320000pt;}
.w1d_c00002{width:483.520000pt;}
.w6_c00002{width:486.080000pt;}
.w14_c00002{width:487.360000pt;}
.w7_c00002{width:487.680000pt;}
.w35_c00002{width:500.800000pt;}
.w16_c00002{width:501.760000pt;}
.w26_c00002{width:511.040000pt;}
.w3a_c00002{width:527.360000pt;}
.w8_c00002{width:536.960000pt;}
.w36_c00002{width:552.000000pt;}
.w2b_c00002{width:555.840000pt;}
.w2c_c00002{width:557.760000pt;}
.w9_c00002{width:564.800000pt;}
.w5_c00002{width:571.200000pt;}
.w34_c00002{width:571.520000pt;}
.w25_c00002{width:572.160000pt;}
.w4_c00002{width:572.480000pt;}
.w2a_c00002{width:572.800000pt;}
.w11_c00002{width:574.720000pt;}
.w18_c00002{width:582.080000pt;}
.w2f_c00002{width:585.600000pt;}
.w30_c00002{width:585.920000pt;}
.w29_c00002{width:653.760000pt;}
.w32_c00002{width:662.080000pt;}
.w31_c00002{width:675.840000pt;}
.w2_c00002{width:767.960000pt;}
.w3f_c00002{width:793.333333pt;}
.w3e_c00002{width:793.706667pt;}
.w0_c00002{width:793.720000pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{left:0.000000pt;}
.x16c_c00002{left:2.880133pt;}
.x1a3_c00002{left:4.986533pt;}
.x1b0_c00002{left:6.511733pt;}
.xe7_c00002{left:8.323467pt;}
.x205_c00002{left:9.386800pt;}
.x1c1_c00002{left:10.494000pt;}
.x197_c00002{left:11.523333pt;}
.x1_c00002{left:12.880000pt;}
.x9e_c00002{left:15.336800pt;}
.x1a7_c00002{left:17.077733pt;}
.x1b1_c00002{left:18.986400pt;}
.x18b_c00002{left:20.189600pt;}
.x1b9_c00002{left:21.167200pt;}
.x1b6_c00002{left:23.498000pt;}
.x1da_c00002{left:24.813333pt;}
.x1ef_c00002{left:26.292133pt;}
.x1e3_c00002{left:27.452400pt;}
.x1e6_c00002{left:28.932533pt;}
.x1d6_c00002{left:30.631067pt;}
.x11c_c00002{left:33.044267pt;}
.x1e5_c00002{left:34.865467pt;}
.x206_c00002{left:35.952267pt;}
.x11d_c00002{left:37.110800pt;}
.x210_c00002{left:38.146267pt;}
.x1ea_c00002{left:39.305333pt;}
.x1d5_c00002{left:40.683867pt;}
.x207_c00002{left:41.705600pt;}
.x1d7_c00002{left:42.630800pt;}
.x1ff_c00002{left:43.796000pt;}
.x1b5_c00002{left:44.952667pt;}
.x1ba_c00002{left:46.516133pt;}
.x1fa_c00002{left:47.784933pt;}
.x201_c00002{left:49.118533pt;}
.x1dd_c00002{left:50.020000pt;}
.x1f3_c00002{left:51.492667pt;}
.x196_c00002{left:53.468000pt;}
.x1f1_c00002{left:55.171733pt;}
.x1f7_c00002{left:56.304800pt;}
.x1f5_c00002{left:57.824667pt;}
.x1f8_c00002{left:59.251733pt;}
.x1f2_c00002{left:60.384933pt;}
.x1d1_c00002{left:61.520000pt;}
.x1a4_c00002{left:63.071067pt;}
.x1ed_c00002{left:64.491467pt;}
.x1eb_c00002{left:65.958267pt;}
.x16d_c00002{left:66.898667pt;}
.x1f9_c00002{left:68.199333pt;}
.x11a_c00002{left:69.716400pt;}
.x1f0_c00002{left:70.744267pt;}
.x203_c00002{left:71.657733pt;}
.x1ec_c00002{left:72.624000pt;}
.x1e9_c00002{left:74.117467pt;}
.x1cd_c00002{left:75.103467pt;}
.x119_c00002{left:76.901333pt;}
.x1e8_c00002{left:77.811200pt;}
.x176_c00002{left:78.795200pt;}
.x1f6_c00002{left:80.410667pt;}
.x1e4_c00002{left:81.530933pt;}
.x200_c00002{left:82.898400pt;}
.xff_c00002{left:84.236933pt;}
.x1ee_c00002{left:85.237867pt;}
.x1fb_c00002{left:86.303867pt;}
.x1a1_c00002{left:87.253600pt;}
.x1b7_c00002{left:88.196533pt;}
.x1dc_c00002{left:89.170933pt;}
.x1e7_c00002{left:90.424400pt;}
.x1b8_c00002{left:92.192267pt;}
.x202_c00002{left:93.288000pt;}
.x1c2_c00002{left:94.526667pt;}
.x1ce_c00002{left:95.742800pt;}
.x20d_c00002{left:96.766800pt;}
.x1f4_c00002{left:98.183067pt;}
.x20a_c00002{left:99.330667pt;}
.x2_c00002{left:100.480133pt;}
.x2c_c00002{left:102.188640pt;}
.x20b_c00002{left:103.886400pt;}
.x7d_c00002{left:104.919867pt;}
.x1e0_c00002{left:106.320000pt;}
.x1fc_c00002{left:107.436000pt;}
.x1cc_c00002{left:108.480133pt;}
.x5c_c00002{left:109.376000pt;}
.x118_c00002{left:110.480000pt;}
.x100_c00002{left:112.080000pt;}
.xa0_c00002{left:113.040000pt;}
.x13c_c00002{left:114.546533pt;}
.x1d0_c00002{left:115.600000pt;}
.x1a5_c00002{left:116.560000pt;}
.x1e_c00002{left:118.252933pt;}
.x20e_c00002{left:119.277467pt;}
.x16b_c00002{left:120.770800pt;}
.x4f_c00002{left:122.336933pt;}
.x19b_c00002{left:123.567333pt;}
.xa9_c00002{left:124.477867pt;}
.x215_c00002{left:125.375600pt;}
.x17c_c00002{left:126.300133pt;}
.x137_c00002{left:127.475600pt;}
.x1d8_c00002{left:128.656800pt;}
.xe9_c00002{left:129.852267pt;}
.xe_c00002{left:130.865200pt;}
.x135_c00002{left:132.440133pt;}
.xe6_c00002{left:133.802133pt;}
.x1d_c00002{left:135.292933pt;}
.x9c_c00002{left:136.927733pt;}
.xbb_c00002{left:138.252267pt;}
.x117_c00002{left:140.161467pt;}
.x83_c00002{left:141.225600pt;}
.x3_c00002{left:142.703467pt;}
.x43_c00002{left:143.999333pt;}
.x4b_c00002{left:145.595067pt;}
.x84_c00002{left:146.900400pt;}
.x8b_c00002{left:147.861600pt;}
.x1c4_c00002{left:149.071333pt;}
.x175_c00002{left:150.100267pt;}
.xa1_c00002{left:151.800000pt;}
.xaf_c00002{left:153.064133pt;}
.x187_c00002{left:154.687200pt;}
.x101_c00002{left:155.801867pt;}
.xea_c00002{left:156.734000pt;}
.x44_c00002{left:158.239200pt;}
.x153_c00002{left:159.759067pt;}
.x88_c00002{left:161.198933pt;}
.x15c_c00002{left:162.825867pt;}
.x190_c00002{left:163.789333pt;}
.x164_c00002{left:164.944933pt;}
.x50_c00002{left:165.856133pt;}
.x21c_c00002{left:166.972667pt;}
.xf_c00002{left:167.916933pt;}
.x133_c00002{left:169.371467pt;}
.x180_c00002{left:170.596667pt;}
.x5a_c00002{left:171.599333pt;}
.x12_c00002{left:173.063467pt;}
.x19f_c00002{left:174.846400pt;}
.x5b_c00002{left:176.047200pt;}
.x159_c00002{left:176.960000pt;}
.x45_c00002{left:177.987600pt;}
.x1a0_c00002{left:178.997467pt;}
.x33_c00002{left:180.229173pt;}
.x40_c00002{left:181.358667pt;}
.xfe_c00002{left:182.480000pt;}
.x174_c00002{left:183.463200pt;}
.x212_c00002{left:184.356133pt;}
.xf8_c00002{left:185.316400pt;}
.x218_c00002{left:186.206667pt;}
.x89_c00002{left:187.104800pt;}
.x1cf_c00002{left:188.042000pt;}
.xf9_c00002{left:189.022800pt;}
.x19c_c00002{left:190.086000pt;}
.x24_c00002{left:191.166667pt;}
.x1cb_c00002{left:192.158533pt;}
.x65_c00002{left:193.077733pt;}
.xc2_c00002{left:194.909867pt;}
.x219_c00002{left:195.800133pt;}
.x68_c00002{left:196.797467pt;}
.xd3_c00002{left:198.270533pt;}
.x1df_c00002{left:199.200800pt;}
.x66_c00002{left:200.490533pt;}
.x9d_c00002{left:201.791067pt;}
.x112_c00002{left:202.734400pt;}
.xb0_c00002{left:204.208933pt;}
.x15b_c00002{left:205.429067pt;}
.x108_c00002{left:206.468133pt;}
.x4_c00002{left:207.566800pt;}
.x171_c00002{left:209.207067pt;}
.x10_c00002{left:210.142267pt;}
.xaa_c00002{left:211.656933pt;}
.xbc_c00002{left:213.505467pt;}
.xc8_c00002{left:214.583333pt;}
.x14c_c00002{left:215.506533pt;}
.x20c_c00002{left:216.439733pt;}
.x131_c00002{left:217.488933pt;}
.x13_c00002{left:218.411200pt;}
.x211_c00002{left:219.390933pt;}
.xeb_c00002{left:220.528933pt;}
.xd6_c00002{left:221.930267pt;}
.x170_c00002{left:223.166000pt;}
.x94_c00002{left:224.195600pt;}
.x167_c00002{left:225.496400pt;}
.xd5_c00002{left:226.808933pt;}
.x13a_c00002{left:227.838533pt;}
.x38_c00002{left:229.006880pt;}
.x147_c00002{left:230.292000pt;}
.x17a_c00002{left:231.231067pt;}
.x5_c00002{left:232.814800pt;}
.xab_c00002{left:233.856400pt;}
.x165_c00002{left:235.368800pt;}
.x8e_c00002{left:236.899333pt;}
.x130_c00002{left:237.966800pt;}
.xd9_c00002{left:239.002933pt;}
.x191_c00002{left:239.915067pt;}
.x46_c00002{left:240.960000pt;}
.xe2_c00002{left:242.247067pt;}
.x103_c00002{left:243.566400pt;}
.x1d9_c00002{left:244.525733pt;}
.x109_c00002{left:245.416000pt;}
.x11_c00002{left:247.180267pt;}
.x12b_c00002{left:248.223333pt;}
.x51_c00002{left:249.218400pt;}
.x186_c00002{left:250.217733pt;}
.x2d_c00002{left:251.437200pt;}
.x69_c00002{left:253.075867pt;}
.x1a2_c00002{left:254.160000pt;}
.xca_c00002{left:255.262667pt;}
.xba_c00002{left:256.838533pt;}
.x9a_c00002{left:258.654667pt;}
.xfc_c00002{left:259.821333pt;}
.x72_c00002{left:260.755200pt;}
.x34_c00002{left:262.213867pt;}
.xa2_c00002{left:263.503867pt;}
.x136_c00002{left:264.635467pt;}
.x179_c00002{left:265.853467pt;}
.xcb_c00002{left:266.814400pt;}
.xe3_c00002{left:268.254533pt;}
.x57_c00002{left:269.340800pt;}
.x126_c00002{left:270.437467pt;}
.x14d_c00002{left:271.514000pt;}
.x1a6_c00002{left:272.600533pt;}
.xb2_c00002{left:273.556933pt;}
.x20f_c00002{left:274.531200pt;}
.x75_c00002{left:275.420267pt;}
.x139_c00002{left:276.509067pt;}
.x58_c00002{left:278.236667pt;}
.x1f_c00002{left:279.937867pt;}
.xdb_c00002{left:281.027733pt;}
.x13e_c00002{left:282.195600pt;}
.x20_c00002{left:283.814400pt;}
.x185_c00002{left:284.827067pt;}
.xc1_c00002{left:286.116800pt;}
.x79_c00002{left:287.538667pt;}
.x169_c00002{left:288.476933pt;}
.x178_c00002{left:289.373733pt;}
.x13f_c00002{left:290.984667pt;}
.x181_c00002{left:292.247467pt;}
.xac_c00002{left:293.280267pt;}
.x14_c00002{left:294.516000pt;}
.x148_c00002{left:296.272133pt;}
.xf2_c00002{left:297.508400pt;}
.x99_c00002{left:298.722933pt;}
.x12c_c00002{left:299.757467pt;}
.x21d_c00002{left:300.680933pt;}
.x10f_c00002{left:301.641600pt;}
.xce_c00002{left:303.526000pt;}
.x1ca_c00002{left:304.472000pt;}
.xda_c00002{left:305.505467pt;}
.x59_c00002{left:306.636133pt;}
.x27_c00002{left:307.727867pt;}
.x140_c00002{left:308.744533pt;}
.xa3_c00002{left:309.878533pt;}
.x19_c00002{left:311.009733pt;}
.x52_c00002{left:312.337600pt;}
.xdc_c00002{left:313.883467pt;}
.x17d_c00002{left:314.841467pt;}
.x1d4_c00002{left:315.854533pt;}
.x10a_c00002{left:316.916000pt;}
.x39_c00002{left:318.375600pt;}
.x1c5_c00002{left:319.390000pt;}
.x5e_c00002{left:320.466400pt;}
.x198_c00002{left:321.705067pt;}
.x35_c00002{left:322.872400pt;}
.x105_c00002{left:324.353467pt;}
.xcf_c00002{left:325.725600pt;}
.x160_c00002{left:326.888000pt;}
.x7a_c00002{left:327.894267pt;}
.x1ac_c00002{left:328.956400pt;}
.xcd_c00002{left:329.870400pt;}
.x85_c00002{left:330.829067pt;}
.x1ae_c00002{left:331.740533pt;}
.x2e_c00002{left:332.795200pt;}
.x173_c00002{left:333.756533pt;}
.x1a_c00002{left:334.676133pt;}
.x157_c00002{left:335.894267pt;}
.xae_c00002{left:336.831733pt;}
.x8a_c00002{left:338.542000pt;}
.x76_c00002{left:340.341067pt;}
.x13d_c00002{left:341.467467pt;}
.x28_c00002{left:342.407200pt;}
.x3a_c00002{left:343.634800pt;}
.xb6_c00002{left:344.894533pt;}
.xb1_c00002{left:346.084000pt;}
.x6a_c00002{left:347.112267pt;}
.x129_c00002{left:348.598000pt;}
.x6_c00002{left:349.778667pt;}
.xad_c00002{left:351.503200pt;}
.x5d_c00002{left:353.020133pt;}
.x12d_c00002{left:353.980800pt;}
.x102_c00002{left:355.003600pt;}
.x67_c00002{left:356.514267pt;}
.x12e_c00002{left:357.548800pt;}
.x1bb_c00002{left:358.765867pt;}
.x11e_c00002{left:359.892800pt;}
.x11b_c00002{left:361.178933pt;}
.x8f_c00002{left:362.598933pt;}
.x41_c00002{left:363.754933pt;}
.x73_c00002{left:364.721733pt;}
.x125_c00002{left:365.658533pt;}
.xec_c00002{left:367.323467pt;}
.xc_c00002{left:368.618133pt;}
.x1b4_c00002{left:369.645467pt;}
.xb3_c00002{left:370.620800pt;}
.xd7_c00002{left:371.869200pt;}
.x7_c00002{left:373.444933pt;}
.x12a_c00002{left:374.445333pt;}
.xb7_c00002{left:376.014000pt;}
.x1c3_c00002{left:377.210533pt;}
.x5f_c00002{left:378.225600pt;}
.x56_c00002{left:379.554667pt;}
.x113_c00002{left:380.864533pt;}
.x92_c00002{left:382.033867pt;}
.x2b_c00002{left:383.746800pt;}
.x209_c00002{left:384.694667pt;}
.x18d_c00002{left:385.686800pt;}
.x48_c00002{left:387.058267pt;}
.x47_c00002{left:388.573467pt;}
.x95_c00002{left:389.943067pt;}
.x11f_c00002{left:391.224133pt;}
.x18e_c00002{left:392.633067pt;}
.x9f_c00002{left:393.617067pt;}
.xfd_c00002{left:395.288800pt;}
.xa8_c00002{left:396.384400pt;}
.x15d_c00002{left:397.930000pt;}
.x53_c00002{left:398.883733pt;}
.x1c6_c00002{left:399.912400pt;}
.x9b_c00002{left:401.476267pt;}
.x132_c00002{left:402.682667pt;}
.x166_c00002{left:403.897200pt;}
.xb4_c00002{left:405.433600pt;}
.xd_c00002{left:406.824933pt;}
.x199_c00002{left:407.943600pt;}
.x90_c00002{left:408.838133pt;}
.xdd_c00002{left:410.416933pt;}
.x60_c00002{left:411.459600pt;}
.x6b_c00002{left:413.016933pt;}
.x128_c00002{left:414.314800pt;}
.x21a_c00002{left:415.228800pt;}
.x36_c00002{left:416.230800pt;}
.x21b_c00002{left:417.215200pt;}
.x141_c00002{left:418.109333pt;}
.x195_c00002{left:419.180400pt;}
.x150_c00002{left:420.541067pt;}
.x29_c00002{left:421.773733pt;}
.x3b_c00002{left:423.001200pt;}
.x16f_c00002{left:424.264000pt;}
.x96_c00002{left:425.184533pt;}
.x172_c00002{left:426.841467pt;}
.x213_c00002{left:427.748000pt;}
.x49_c00002{left:428.693600pt;}
.x10b_c00002{left:429.773733pt;}
.x7e_c00002{left:431.056267pt;}
.x1bd_c00002{left:432.419867pt;}
.x14b_c00002{left:433.332267pt;}
.x143_c00002{left:434.649733pt;}
.x177_c00002{left:435.681867pt;}
.xd8_c00002{left:436.775067pt;}
.x4e_c00002{left:437.930933pt;}
.x216_c00002{left:438.861067pt;}
.x21_c00002{left:439.759733pt;}
.xc7_c00002{left:441.379200pt;}
.x14a_c00002{left:442.546933pt;}
.xef_c00002{left:443.642533pt;}
.x134_c00002{left:444.690400pt;}
.x106_c00002{left:446.175733pt;}
.xbe_c00002{left:447.188533pt;}
.x12f_c00002{left:448.960000pt;}
.x4a_c00002{left:449.865200pt;}
.x61_c00002{left:451.204400pt;}
.x115_c00002{left:452.169200pt;}
.x42_c00002{left:453.545200pt;}
.xd1_c00002{left:454.520533pt;}
.xb8_c00002{left:455.668000pt;}
.x54_c00002{left:456.642933pt;}
.x188_c00002{left:457.645200pt;}
.x182_c00002{left:458.857733pt;}
.x2a_c00002{left:459.765333pt;}
.x120_c00002{left:461.082667pt;}
.xa4_c00002{left:462.027600pt;}
.x1c9_c00002{left:463.033867pt;}
.xde_c00002{left:464.186533pt;}
.x7f_c00002{left:465.881867pt;}
.xb9_c00002{left:467.489600pt;}
.x3c_c00002{left:469.008800pt;}
.xd2_c00002{left:470.752933pt;}
.x17e_c00002{left:471.863333pt;}
.xe4_c00002{left:473.154933pt;}
.x2f_c00002{left:474.577467pt;}
.x80_c00002{left:475.591867pt;}
.x149_c00002{left:476.974667pt;}
.x17_c00002{left:478.197600pt;}
.x62_c00002{left:479.110000pt;}
.x7b_c00002{left:480.200267pt;}
.x1af_c00002{left:481.865867pt;}
.x86_c00002{left:482.764667pt;}
.x25_c00002{left:483.711600pt;}
.x158_c00002{left:484.820267pt;}
.x16e_c00002{left:486.554000pt;}
.x8_c00002{left:487.656533pt;}
.x93_c00002{left:488.949200pt;}
.x15a_c00002{left:489.940133pt;}
.x122_c00002{left:490.915733pt;}
.x114_c00002{left:492.691467pt;}
.x6c_c00002{left:493.760800pt;}
.x77_c00002{left:495.131867pt;}
.x22_c00002{left:496.655333pt;}
.x81_c00002{left:497.791333pt;}
.xf5_c00002{left:499.161733pt;}
.xc9_c00002{left:500.466133pt;}
.x1c7_c00002{left:501.361067pt;}
.x64_c00002{left:502.272133pt;}
.x19a_c00002{left:503.446933pt;}
.x1aa_c00002{left:504.461600pt;}
.x18_c00002{left:505.566667pt;}
.x145_c00002{left:507.075867pt;}
.x3d_c00002{left:508.611600pt;}
.x30_c00002{left:509.928667pt;}
.x23_c00002{left:511.578400pt;}
.x1c0_c00002{left:512.794000pt;}
.x10c_c00002{left:513.833333pt;}
.x184_c00002{left:514.750667pt;}
.xcc_c00002{left:515.799467pt;}
.x15e_c00002{left:516.956000pt;}
.x1b_c00002{left:518.231733pt;}
.xf0_c00002{left:519.241467pt;}
.x7c_c00002{left:520.555733pt;}
.x144_c00002{left:521.904267pt;}
.x192_c00002{left:522.975867pt;}
.x10d_c00002{left:523.909867pt;}
.x1d3_c00002{left:524.922533pt;}
.x9_c00002{left:525.863333pt;}
.x151_c00002{left:527.196933pt;}
.x163_c00002{left:528.796933pt;}
.x63_c00002{left:529.765600pt;}
.x15_c00002{left:531.350267pt;}
.x13b_c00002{left:532.539333pt;}
.x1d2_c00002{left:533.448533pt;}
.xbf_c00002{left:534.735067pt;}
.x14f_c00002{left:536.393867pt;}
.x55_c00002{left:537.780000pt;}
.x1be_c00002{left:539.021733pt;}
.x16_c00002{left:540.030267pt;}
.x17b_c00002{left:541.158267pt;}
.xa6_c00002{left:542.385733pt;}
.x168_c00002{left:543.450800pt;}
.x37_c00002{left:544.915333pt;}
.x26_c00002{left:546.021467pt;}
.x138_c00002{left:547.044267pt;}
.x31_c00002{left:547.944000pt;}
.x1a9_c00002{left:548.860400pt;}
.xf6_c00002{left:549.832667pt;}
.x107_c00002{left:551.040000pt;}
.x116_c00002{left:552.181867pt;}
.x1ab_c00002{left:553.084667pt;}
.x74_c00002{left:554.524133pt;}
.xc5_c00002{left:555.738533pt;}
.xf3_c00002{left:557.056933pt;}
.x1c_c00002{left:558.518800pt;}
.x1bc_c00002{left:560.160133pt;}
.x6d_c00002{left:561.210933pt;}
.x156_c00002{left:562.487333pt;}
.x14e_c00002{left:563.561200pt;}
.xf7_c00002{left:564.504133pt;}
.x10e_c00002{left:565.685200pt;}
.xf1_c00002{left:567.433867pt;}
.xa7_c00002{left:569.025067pt;}
.xc0_c00002{left:570.208933pt;}
.x104_c00002{left:571.194667pt;}
.x1fe_c00002{left:572.314800pt;}
.x4c_c00002{left:573.353467pt;}
.x82_c00002{left:574.319600pt;}
.x121_c00002{left:575.519200pt;}
.xfa_c00002{left:576.796133pt;}
.xc3_c00002{left:578.165333pt;}
.x162_c00002{left:579.264267pt;}
.x6f_c00002{left:581.012400pt;}
.xe8_c00002{left:582.048533pt;}
.x142_c00002{left:583.899467pt;}
.x1c8_c00002{left:584.849867pt;}
.x1bf_c00002{left:585.906267pt;}
.xa5_c00002{left:586.797867pt;}
.x18f_c00002{left:587.691067pt;}
.x18a_c00002{left:589.319600pt;}
.x19e_c00002{left:590.501200pt;}
.xe1_c00002{left:592.245733pt;}
.xf4_c00002{left:593.504533pt;}
.x189_c00002{left:594.907200pt;}
.x127_c00002{left:595.931333pt;}
.x111_c00002{left:597.503600pt;}
.x70_c00002{left:598.798133pt;}
.xc4_c00002{left:600.364933pt;}
.xd4_c00002{left:602.134400pt;}
.x87_c00002{left:603.079333pt;}
.xbd_c00002{left:604.864000pt;}
.x193_c00002{left:605.921200pt;}
.x15f_c00002{left:607.306000pt;}
.x1ad_c00002{left:608.326133pt;}
.x97_c00002{left:609.967733pt;}
.x152_c00002{left:611.064133pt;}
.xc6_c00002{left:612.188133pt;}
.xee_c00002{left:613.686267pt;}
.x8c_c00002{left:614.598000pt;}
.x110_c00002{left:616.326133pt;}
.x183_c00002{left:617.369733pt;}
.x8d_c00002{left:618.444933pt;}
.x161_c00002{left:619.461600pt;}
.x1b3_c00002{left:620.568400pt;}
.x6e_c00002{left:621.942667pt;}
.x214_c00002{left:623.075200pt;}
.xdf_c00002{left:624.091067pt;}
.x194_c00002{left:625.572933pt;}
.x1e2_c00002{left:627.030267pt;}
.xa_c00002{left:628.065467pt;}
.x146_c00002{left:629.661200pt;}
.x71_c00002{left:630.637333pt;}
.x1b2_c00002{left:632.200533pt;}
.xfb_c00002{left:633.189467pt;}
.x4d_c00002{left:634.134400pt;}
.x123_c00002{left:635.653333pt;}
.x3e_c00002{left:636.964800pt;}
.x91_c00002{left:638.614000pt;}
.xed_c00002{left:640.325867pt;}
.x124_c00002{left:642.117867pt;}
.xb5_c00002{left:643.013733pt;}
.x154_c00002{left:644.094000pt;}
.x98_c00002{left:645.209333pt;}
.x18c_c00002{left:646.273067pt;}
.x1db_c00002{left:647.576400pt;}
.x155_c00002{left:648.660400pt;}
.x16a_c00002{left:650.030533pt;}
.xe0_c00002{left:651.465467pt;}
.xe5_c00002{left:652.947333pt;}
.x208_c00002{left:654.565467pt;}
.x19d_c00002{left:655.461867pt;}
.x1a8_c00002{left:656.640000pt;}
.x17f_c00002{left:658.867200pt;}
.xd0_c00002{left:660.346667pt;}
.xb_c00002{left:663.306933pt;}
.x32_c00002{left:665.302133pt;}
.x78_c00002{left:667.013333pt;}
.x217_c00002{left:668.007200pt;}
.x1fd_c00002{left:671.461200pt;}
.x3f_c00002{left:675.479655pt;}
.x21e_c00002{left:676.507200pt;}
.x1e1_c00002{left:682.893333pt;}
.x204_c00002{left:687.440000pt;}
.x1de_c00002{left:690.306667pt;}
}




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